From 98c38d3fe7d4aeb648d21583b306ded7f0c5f2ba Mon Sep 17 00:00:00 2001 From: "asamuzaK (Kazz)" Date: Mon, 19 Aug 2024 21:27:29 +0900 Subject: [PATCH 01/11] Temporarily comment out subtests Due to a Node.js v22 vm issue (https://github.com/nodejs/node/issues/54436), some subtests are failing that should pass, and some passing that should fail. Instead of trying to add per-subtest per-Node-version disable/enable functionality, let's just mark the whole test as failing for now, leaving the intended subtests in commented out. --- test/web-platform-tests/to-run.yaml | 47 ++++++++++++++--------------- 1 file changed, 23 insertions(+), 24 deletions(-) diff --git a/test/web-platform-tests/to-run.yaml b/test/web-platform-tests/to-run.yaml index 7c99a7817..a76646d00 100644 --- a/test/web-platform-tests/to-run.yaml +++ b/test/web-platform-tests/to-run.yaml @@ -750,29 +750,29 @@ window-open-noreferrer.html: [fail, Depends on BroadcastChannel] window-open-popup-behavior.html: [fail, Depends on BroadcastChannel] window-open-windowfeatures-values.html: [fail, Depends on BroadcastChannel] window-opener-unconfigurable.window.html: [fail, Not implemented] -window-properties.https.html: - "Window attribute: name": [fail, Incorrectly implemented as a data property] - "Window attribute: onmousewheel": [fail, Not implemented] - "Window attribute: onmove": [fail, Unknown] - "Window attribute: opener": [fail, Not implemented] - "Window attribute: status": [fail, Incorrectly implemented as a data property] - "Window method: createImageBitmap": [fail, Not implemented] - "Window method: matchMedia": [fail, Not implemented] - "Window readonly attribute: applicationCache": [fail, Not implemented] - "Window replaceable attribute: devicePixelRatio": [fail, Incorrectly implemented as a data property] - "Window replaceable attribute: innerHeight": [fail, Incorrectly implemented as a data property] - "Window replaceable attribute: innerWidth": [fail, Incorrectly implemented as a data property] - "Window replaceable attribute: outerHeight": [fail, Incorrectly implemented as a data property] - "Window replaceable attribute: outerWidth": [fail, Incorrectly implemented as a data property] - "Window replaceable attribute: pageXOffset": [fail, Incorrectly implemented as a data property] - "Window replaceable attribute: pageYOffset": [fail, Incorrectly implemented as a data property] - "Window replaceable attribute: screenLeft": [fail, Incorrectly implemented as a data property] - "Window replaceable attribute: screenTop": [fail, Incorrectly implemented as a data property] - "Window replaceable attribute: screenX": [fail, Incorrectly implemented as a data property] - "Window replaceable attribute: screenY": [fail, Incorrectly implemented as a data property] - "Window replaceable attribute: scrollX": [fail, Incorrectly implemented as a data property] - "Window replaceable attribute: scrollY": [fail, Incorrectly implemented as a data property] - "constructor": [fail, Unknown] +window-properties.https.html: [fail, Incorrectly implemented or not implemented] + #"Window attribute: name": [fail, Incorrectly implemented as a data property] + #"Window attribute: onmousewheel": [fail, Not implemented] + #"Window attribute: onmove": [fail, Unknown] + #"Window attribute: opener": [fail, Not implemented] + #"Window attribute: status": [fail, Incorrectly implemented as a data property] + #"Window method: createImageBitmap": [fail, Not implemented] + #"Window method: matchMedia": [fail, Not implemented] + #"Window readonly attribute: applicationCache": [fail, Not implemented] + #"Window replaceable attribute: devicePixelRatio": [fail, Incorrectly implemented as a data property] + #"Window replaceable attribute: innerHeight": [fail, Incorrectly implemented as a data property] + #"Window replaceable attribute: innerWidth": [fail, Incorrectly implemented as a data property] + #"Window replaceable attribute: outerHeight": [fail, Incorrectly implemented as a data property] + #"Window replaceable attribute: outerWidth": [fail, Incorrectly implemented as a data property] + #"Window replaceable attribute: pageXOffset": [fail, Incorrectly implemented as a data property] + #"Window replaceable attribute: pageYOffset": [fail, Incorrectly implemented as a data property] + #"Window replaceable attribute: screenLeft": [fail, Incorrectly implemented as a data property] + #"Window replaceable attribute: screenTop": [fail, Incorrectly implemented as a data property] + #"Window replaceable attribute: screenX": [fail, Incorrectly implemented as a data property] + #"Window replaceable attribute: screenY": [fail, Incorrectly implemented as a data property] + #"Window replaceable attribute: scrollX": [fail, Incorrectly implemented as a data property] + #"Window replaceable attribute: scrollY": [fail, Incorrectly implemented as a data property] + #"constructor": [fail, Unknown] window-prototype-chain.html: "Window.prototype": [fail, Unknown] "Global scope polluter": [fail, Depends on the named properties object] @@ -784,7 +784,6 @@ window-reuse-in-nested-browsing-contexts.tentative.html: 'synchronously navigate iframe with initial src == "".': [fail, Unknown] 'synchronously navigate iframe with initial src == "about:blank".': [fail, Unknown] - --- DIR: html/browsers/the-windowproxy-exotic-object From 439a43e2f1af624d162f3676a21cc6d5794be6c8 Mon Sep 17 00:00:00 2001 From: Chengzhong Wu Date: Sat, 24 Aug 2024 09:36:36 +0100 Subject: [PATCH 02/11] Setup Window prototype in vm context This includes a revert of commit 98c38d3fe7d4aeb648d21583b306ded7f0c5f2ba. The new version works on both the latest Node versions and the older ones. This also introduces the intermediate WindowProperties object, although we don't properly put the named properties there yet. --- lib/jsdom/browser/Window.js | 14 +++++++- test/web-platform-tests/run-wpts.js | 3 +- test/web-platform-tests/to-run.yaml | 52 ++++++++++++++--------------- test/web-platform-tests/utils.js | 8 +++-- 4 files changed, 46 insertions(+), 31 deletions(-) diff --git a/lib/jsdom/browser/Window.js b/lib/jsdom/browser/Window.js index 5fca3efe4..1e7af74c8 100644 --- a/lib/jsdom/browser/Window.js +++ b/lib/jsdom/browser/Window.js @@ -133,7 +133,15 @@ function setupWindow(windowInstance, { runScripts }) { value: windowConstructor }); - const windowPrototype = Object.create(EventTargetConstructor.prototype); + const windowProperties = Object.create(EventTargetConstructor.prototype); + Object.defineProperties(windowProperties, { + [Symbol.toStringTag]: { + value: "WindowProperties", + configurable: true + } + }); + + const windowPrototype = Object.create(windowProperties); Object.defineProperties(windowPrototype, { constructor: { value: windowConstructor, @@ -148,6 +156,10 @@ function setupWindow(windowInstance, { runScripts }) { windowConstructor.prototype = windowPrototype; Object.setPrototypeOf(windowInstance, windowPrototype); + if (runScripts === "outside-only" || runScripts === "dangerously") { + const global = vm.runInContext("this", windowInstance); + Object.setPrototypeOf(global, windowPrototype); + } EventTarget.setup(windowInstance, windowInstance); mixin(windowInstance, WindowEventHandlersImpl.prototype); diff --git a/test/web-platform-tests/run-wpts.js b/test/web-platform-tests/run-wpts.js index 01e285527..5afd1ad60 100644 --- a/test/web-platform-tests/run-wpts.js +++ b/test/web-platform-tests/run-wpts.js @@ -10,7 +10,8 @@ const { resolveReason, killSubprocess } = require("./utils.js"); const validInnerReasons = new Set([ "fail", - "fail-with-canvas" + "fail-with-canvas", + "fail-lt-node22" ]); const validReasons = new Set([ diff --git a/test/web-platform-tests/to-run.yaml b/test/web-platform-tests/to-run.yaml index a76646d00..0a582922f 100644 --- a/test/web-platform-tests/to-run.yaml +++ b/test/web-platform-tests/to-run.yaml @@ -750,40 +750,38 @@ window-open-noreferrer.html: [fail, Depends on BroadcastChannel] window-open-popup-behavior.html: [fail, Depends on BroadcastChannel] window-open-windowfeatures-values.html: [fail, Depends on BroadcastChannel] window-opener-unconfigurable.window.html: [fail, Not implemented] -window-properties.https.html: [fail, Incorrectly implemented or not implemented] - #"Window attribute: name": [fail, Incorrectly implemented as a data property] - #"Window attribute: onmousewheel": [fail, Not implemented] - #"Window attribute: onmove": [fail, Unknown] - #"Window attribute: opener": [fail, Not implemented] - #"Window attribute: status": [fail, Incorrectly implemented as a data property] - #"Window method: createImageBitmap": [fail, Not implemented] - #"Window method: matchMedia": [fail, Not implemented] - #"Window readonly attribute: applicationCache": [fail, Not implemented] - #"Window replaceable attribute: devicePixelRatio": [fail, Incorrectly implemented as a data property] - #"Window replaceable attribute: innerHeight": [fail, Incorrectly implemented as a data property] - #"Window replaceable attribute: innerWidth": [fail, Incorrectly implemented as a data property] - #"Window replaceable attribute: outerHeight": [fail, Incorrectly implemented as a data property] - #"Window replaceable attribute: outerWidth": [fail, Incorrectly implemented as a data property] - #"Window replaceable attribute: pageXOffset": [fail, Incorrectly implemented as a data property] - #"Window replaceable attribute: pageYOffset": [fail, Incorrectly implemented as a data property] - #"Window replaceable attribute: screenLeft": [fail, Incorrectly implemented as a data property] - #"Window replaceable attribute: screenTop": [fail, Incorrectly implemented as a data property] - #"Window replaceable attribute: screenX": [fail, Incorrectly implemented as a data property] - #"Window replaceable attribute: screenY": [fail, Incorrectly implemented as a data property] - #"Window replaceable attribute: scrollX": [fail, Incorrectly implemented as a data property] - #"Window replaceable attribute: scrollY": [fail, Incorrectly implemented as a data property] - #"constructor": [fail, Unknown] +window-properties.https.html: + "Window attribute: name": [fail, Incorrectly implemented as a data property] + "Window attribute: onmousewheel": [fail, Not implemented] + "Window attribute: onmove": [fail, Unknown] + "Window attribute: opener": [fail, Not implemented] + "Window attribute: status": [fail, Incorrectly implemented as a data property] + "Window method: createImageBitmap": [fail, Not implemented] + "Window method: matchMedia": [fail, Not implemented] + "Window readonly attribute: applicationCache": [fail, Not implemented] + "Window replaceable attribute: devicePixelRatio": [fail, Incorrectly implemented as a data property] + "Window replaceable attribute: innerHeight": [fail, Incorrectly implemented as a data property] + "Window replaceable attribute: innerWidth": [fail, Incorrectly implemented as a data property] + "Window replaceable attribute: outerHeight": [fail, Incorrectly implemented as a data property] + "Window replaceable attribute: outerWidth": [fail, Incorrectly implemented as a data property] + "Window replaceable attribute: pageXOffset": [fail, Incorrectly implemented as a data property] + "Window replaceable attribute: pageYOffset": [fail, Incorrectly implemented as a data property] + "Window replaceable attribute: screenLeft": [fail, Incorrectly implemented as a data property] + "Window replaceable attribute: screenTop": [fail, Incorrectly implemented as a data property] + "Window replaceable attribute: screenX": [fail, Incorrectly implemented as a data property] + "Window replaceable attribute: screenY": [fail, Incorrectly implemented as a data property] + "Window replaceable attribute: scrollX": [fail, Incorrectly implemented as a data property] + "Window replaceable attribute: scrollY": [fail, Incorrectly implemented as a data property] + "constructor": [fail-lt-node22, Incorrectly implemented VM global prototype properties] window-prototype-chain.html: - "Window.prototype": [fail, Unknown] - "Global scope polluter": [fail, Depends on the named properties object] - "EventTarget.prototype": [fail, Depends on the named properties object] - "Object.prototype": [fail, Depends on the named properties object] + "Object.prototype": [fail, Tests Object.prototype which jsdom has trouble with due to VM globals] window-reuse-in-nested-browsing-contexts.tentative.html: "synchronously navigate iframe with no initial src.": [fail, Unknown] "after the first iframe load event, navigate iframe with no initial src.": [fail, Unknown] 'synchronously navigate iframe with initial src == "".': [fail, Unknown] 'synchronously navigate iframe with initial src == "about:blank".': [fail, Unknown] + --- DIR: html/browsers/the-windowproxy-exotic-object diff --git a/test/web-platform-tests/utils.js b/test/web-platform-tests/utils.js index e7d7a3c89..b6c2f29a9 100644 --- a/test/web-platform-tests/utils.js +++ b/test/web-platform-tests/utils.js @@ -7,7 +7,7 @@ const { Canvas } = require("../../lib/jsdom/utils.js"); const hasCanvas = Boolean(Canvas); -const nodeMajorVersion = process.versions.node.split(".")[0]; +const nodeMajorVersion = Number.parseInt(process.versions.node.split(".")[0]); exports.resolveReason = reason => { if (["fail-slow", "timeout", "flaky"].includes(reason)) { @@ -18,10 +18,14 @@ exports.resolveReason = reason => { return "skip"; } - if (reason === "fail-node18" && nodeMajorVersion === "18") { + if (reason === "fail-node18" && nodeMajorVersion === 18) { return "skip"; } + if (reason === "fail-lt-node22" && nodeMajorVersion < 22) { + return "expect-fail"; + } + if (reason === "fail" || (reason === "fail-with-canvas" && hasCanvas)) { return "expect-fail"; From 065abcb3ff55340ead1c45cd6fde54c4fcc3f774 Mon Sep 17 00:00:00 2001 From: "asamuzaK (Kazz)" Date: Sat, 3 Aug 2024 15:29:08 +0900 Subject: [PATCH 03/11] Roll web platform tests This also audits the tests currently marked as flaky and updates their expectations, and raises the timeout to try to deal with Element-matches.html somehow taking longer now. --- test/web-platform-tests/run-single-wpt.js | 2 +- test/web-platform-tests/tests | 2 +- test/web-platform-tests/to-run.yaml | 163 +- test/web-platform-tests/wpt-manifest.json | 340527 +++++++++++-------- 4 files changed, 196092 insertions(+), 144602 deletions(-) diff --git a/test/web-platform-tests/run-single-wpt.js b/test/web-platform-tests/run-single-wpt.js index c4c5f2219..600b1ab6c 100644 --- a/test/web-platform-tests/run-single-wpt.js +++ b/test/web-platform-tests/run-single-wpt.js @@ -21,7 +21,7 @@ module.exports = urlPrefixFactory => { title, expectPromise: true, // WPT also takes care of timeouts (maximum 60 seconds), this is an extra failsafe: - timeout: 70_000, + timeout: 90_000, slow: 10_000, fn() { return createJSDOM(urlPrefixFactory(), testPath, expectFail); diff --git a/test/web-platform-tests/tests b/test/web-platform-tests/tests index 8082bfb90..d0b68d4dc 160000 --- a/test/web-platform-tests/tests +++ b/test/web-platform-tests/tests @@ -1 +1 @@ -Subproject commit 8082bfb906829f64853167c9fc2ef58b3cb1fd75 +Subproject commit d0b68d4dc15568c96530f5b801d95a3a0c99b7ca diff --git a/test/web-platform-tests/to-run.yaml b/test/web-platform-tests/to-run.yaml index 0a582922f..ef0c43993 100644 --- a/test/web-platform-tests/to-run.yaml +++ b/test/web-platform-tests/to-run.yaml @@ -4,9 +4,11 @@ Blob-methods-from-detached-frame.html: [timeout, Unknown] BlobURL/cross-partition.tentative.https.html: [timeout, Unknown] FileReader/workers.html: [fail, Needs Worker implementation] blob/Blob-array-buffer.any.html: [fail, Depends on TextEncoder] +blob/Blob-bytes.any.html: [fail, Depends on TextEncoder] blob/Blob-constructor.any.html: "Blob interface object": [fail, "Blob is not a function"] "Passing a FrozenArray as the blobParts array should work (FrozenArray).": [fail, Depends on MessagePort] + "Passing a Float16Array as element of the blobParts array should work.": [fail, Float16Array not implemented] blob/Blob-stream.any.html: [fail, Unknown] blob/Blob-text.any.html: [fail, Depends on TextEncoder] file/send-file-form*: [fail, DataTransfer not implemented] @@ -35,6 +37,8 @@ DIR: WebCryptoAPI "*/**": [fail, Not implemented] algorithm-discards-context.https.window.html: [fail-slow, Tests non-implemented methods] +getRandomValues.any.html: + "Float16 arrays": [fail, Float16Array not implemented] idlharness.https.any.html: [fail, Unknown] --- @@ -62,7 +66,16 @@ simple-requests.htm: [timeout, Maybe https://github.com/jsdom/jsdom/issues/1833 DIR: css/css-scoping -css-scoping-shadow-dynamic-remove-style-detached.html: [fail, Unknown] +css-scoping-shadow-dynamic-remove-style-detached.html: [fail-slow, Unknown] +font-face-001.html: [fail, Not implemented] +font-face-002.html: [fail, Not implemented] +font-face-003.html: [fail, Not implemented] +font-face-004.html: [fail, Not implemented] +font-face-005.html: [fail, Not implemented] +font-face-006.html: [fail, Not implemented] +font-face-007.html: [fail, Not implemented] +font-face-008.html: [fail, Not implemented] +font-face-009.html: [fail, Not implemented] host-context-parsing.html: [fail, Unknown] host-descendant-invalidation.html: [fail, Unknown] host-dom-001.html: [fail, Unknown] @@ -92,6 +105,7 @@ DIR: css/cssom-view CaretPosition-001.html: [fail, Unknown] DOMRectList.html: [fail, Unknown] +Element-currentCSSZoom.html: [fail, Not implemented] GetBoundingRect.html: [fail, Not implemented] HTMLBody-ScrollArea_quirksmode.html: [fail, Unknown] MediaQueryList**: [fail, Not implemented] @@ -122,9 +136,12 @@ elementsFromPoint**: [fail, Not implemented] getBoundingClientRect-empty-inline.html: [fail, document.fonts is not implemented] getBoundingClientRect-shy.html: [fail, Not implemented] getBoundingClientRect-svg.html: [fail, Not implemented] +getBoundingClientRect-zoom.html: [fail, Not implemented] getClientRects-br-*: [fail, Not implemented] getClientRects-inline-atomic-child.html: [fail, Not implemented] +getClientRects-zoom.html: [fail, Not implemented] idlharness.html: [fail, Depends on Fetch] +image-x-y-zoom.html: [fail, Unknown] inheritance.html: [fail, inherit not implemented (or not properly implemented)] matchMedia-display-none-iframe.html: [fail, Not implemented] matchMedia.html: [fail, Unknown] @@ -135,6 +152,7 @@ offsetParent_element_test.html: [fail, Unknown] offsetTop-offsetLeft-nested-offsetParents.html: [fail, Not implemented] offsetTop-offsetLeft-with-zoom.html: [fail, Unknown] offsetTopLeft-border-box.html: [fail, Unknown] +offsetTopLeft-table-caption.html: [fail, Unknown] offsetTopLeftInScrollableParent.html: [fail, Unknown] outer-svg.html: [fail, clientTop not implemented] parsing/scroll-behavior-computed.html: [fail, scroll-behavior not implemented] @@ -142,15 +160,24 @@ parsing/scroll-behavior-invalid.html: [fail, scroll-behavior not implemented] position-sticky-root-scroller-with-scroll-behavior.html: [fail, Unknown] pt-to-px-width.html: [fail, Not implemented] range-bounding-client-rect-with-display-contents.html: [fail, Not implemented] +range-bounding-client-rect-with-nested-text.html: [fail, Not implemented] scroll-**: [timeout, Scroll methods not implemented] scrollIntoView**: [fail, Scroll methods not implemented] scrollLeft-of-scroller-with-wider-scrollbar.html: [fail, Unknown] +scrollWidthHeight-negative-margin-001.html: [fail, Unknown] +scrollWidthHeight-negative-margin-002.html: [fail, Unknown] scrollWidthHeight.xht: [fail, Unknown] scrollWidthHeightWhenNotScrollable.xht: [fail, Unknown] scrolling-no-browsing-context.html: [fail, Unknown] scrolling-quirks-vs-nonquirks.html: [timeout, Unknown] scrollingElement.html: [fail, Unknown] +scrollintoview-containingblock-chain.html: [fail, Not implemented] +scrollintoview-zero-height-item.html: [fail, Not implemented] scrollintoview.html: [fail, Unknown] +smooth-scroll-in-load-event.html: [fail, Not implemented] +smooth-scroll-nonstop.html: [fail-slow, Not implemented] +smooth-scrollIntoView-with-smooth-fragment-scroll.html: [fail-slow, Unknown] +subpixel-sizes-and-offsets.tentative.html: [fail, Unknown] table-client-props.html: [fail, Needs layout] table-offset-props.html: [fail, Needs layout] table-scroll-props.html: [fail, Needs layout] @@ -270,6 +297,7 @@ invalidation/media-loading-pseudo-classes-in-has.html: [fail-slow, Unknown] invalidation/media-pseudo-classes-in-has.html: [fail-slow, Unknown] invalidation/not-002.html: [fail, Unknown] invalidation/not-pseudo-containing-complex-in-has.html: [fail, Unknown] +invalidation/nth-child-whole-subtree.html: [fail, Unknown] invalidation/part-dir.html: [fail, Unknown] invalidation/part-lang.html: [fail, Unknown] invalidation/quirks-mode-stylesheet-dynamic-add-001.html: [fail, Unknown] @@ -292,6 +320,7 @@ missing-right-token.html: [fail, Unknown] not-complex.html: [fail, Unknown] not-specificity.html: [fail, Unknown] nth-of-type-namespace.html: [fail, Unknown] +parsing/invalid-pseudos.html: [fail, Unknown] parsing/parse-anplusb.html: [fail, Unknown] parsing/parse-attribute.html: [fail, Unknown] parsing/parse-child.html: [fail, Unknown] @@ -323,7 +352,7 @@ x-pseudo-element.html: [fail, Unknown] DIR: custom-elements -CustomElementRegistry-getName.tentative.html: [fail, Unknown] +CustomElementRegistry-getName.html: [fail, Unknown] CustomElementRegistry.html: 'customElements.define must get "prototype", "disabledFeatures", and "formAssociated" property of the constructor': [fail, formAssociated not implemented] 'customElements.define must get "observedAttributes" property on the constructor prototype when "attributeChangedCallback" is present': [fail, formAssociated not implemented] @@ -341,6 +370,8 @@ Document-createElement.html: "document.createElement must report an exception thrown by a custom built-in element constructor": [fail, Unknown] ElementInternals-accessibility.html: "ariaActiveDescendantElement is defined in ElementInternals": [fail, Element reflection not implemented] + "ariaBrailleLabel is defined in ElementInternals": [fail, Element reflection not implemented] + "ariaBrailleRoleDescription is defined in ElementInternals": [fail, Element reflection not implemented] "ariaControlsElements is defined in ElementInternals": [fail, Element reflection not implemented] "ariaDescribedByElements is defined in ElementInternals": [fail, Element reflection not implemented] "ariaDetailsElements is defined in ElementInternals": [fail, Element reflection not implemented] @@ -354,10 +385,13 @@ HTMLElement-constructor.html: adopted-callback.html: [fail, "Failing test due to https://github.com/whatwg/dom/issues/813"] attribute-changed-callback.html: "attributedChangedCallback must be enqueued for style attribute change by mutating inline style declaration": [fail, attributeChangedCallback doesn't work with CSSStyleDeclaration, https://github.com/jsdom/cssstyle/issues/113] +connected-callbacks-html-fragment-parsing.html: [fail-slow, Unknown] cross-realm-callback-report-exception.html: [fail, No relevant realm support for callbacks in webidl2js] custom-element-reaction-queue.html: "Upgrading a custom element must invoke attributeChangedCallback and connectedCallback before start upgrading another element": [fail, document.write() implementation is not spec compliant] "Mutating a undefined custom element while upgrading a custom element must not enqueue or invoke reactions on the mutated element": [fail, document.write() implementation is not spec compliant] +element-internals-aria-element-reflection.html: + "Getting previously-unset ARIA element reflection properties on ElementInternals should return null.": [fail, Unknown] form-associated/**: [fail-slow, Not implemented] htmlconstructor/newtarget-customized-builtins.html: [fail, unknown] htmlconstructor/newtarget.html: [fail, Currently impossible to get the active function associated realm] @@ -374,6 +408,7 @@ pseudo-class-defined-customized-builtins.html: [fail-slow, :defined is not defin pseudo-class-defined.html: [timeout, :defined is not defined and throws] reactions/Animation.html: [fail, Animation not implemented] reactions/AriaMixin-element-attributes.html: [fail, Element reflection not implemented] +reactions/AriaMixin-string-attributes.html: [fail, Unknown] reactions/CSSStyleDeclaration.html: [fail, CSSStyleDeclaration is not implemented using webidl2js, https://github.com/jsdom/cssstyle/issues/113] reactions/Document.html: "execCommand on Document must enqueue a disconnected reaction when deleting a custom element from a contenteditable element": [fail, document.execCommand() is not implemented, https://github.com/jsdom/jsdom/issues/1539] @@ -384,11 +419,12 @@ reactions/customized-builtins/HTMLAreaElement.html: [fail, HTMLAreaElement doesn reactions/customized-builtins/HTMLButtonElement.html: [fail, HTMLButtonElement doesn't implement formAction formEnctype and formMethod] reactions/customized-builtins/HTMLImageElement.html: [fail, HTMLImageElement doesn't implement referrerPolicy and decoder] scoped-registry/*.tentative.html: [fail, Not implemented] -state/tentative/**: [fail, Not implemented] +state/**: [fail, CustomStateSet not implemented] throw-on-dynamic-markup-insertion-counter-construct-xml-parser.xhtml: [timeout, document.open() and document.close() implementation is not spec compliant] throw-on-dynamic-markup-insertion-counter-construct.html: [timeout, document.open() and document.close() implementation is not spec compliant] throw-on-dynamic-markup-insertion-counter-reactions-xml-parser.xhtml: [timeout, document.open() and document.close() implementation is not spec compliant] throw-on-dynamic-markup-insertion-counter-reactions.html: [timeout, document.open() and document.close() implementation is not spec compliant] +upgrading/upgrade-custom-element-error-event.html: [fail, Unknown] --- @@ -406,6 +442,7 @@ DIR: dom/events Event-dispatch-click.tentative.html: [fail, Test is wrong, https://github.com/web-platform-tests/wpt/issues/27819] Event-dispatch-single-activation-behavior.html: [fail, Unknown] +Event-dispatch-throwing-multiple-globals.html: [fail-slow, Unknown] Event-timestamp-high-resolution.html: [fail, Not implemented] Event-timestamp-high-resolution.https.html: [fail, Not implemented] EventListener-handleEvent-cross-realm.html: [fail, No relevant realm support for callbacks in webidl2js] @@ -420,6 +457,7 @@ event-global-set-before-handleEvent-lookup.window.html: [fail, unknown iframe is mouse-event-retarget.html: [fail, Requires a layout engine] passive-by-default.html: [fail, Pointer events not implemented] relatedTarget.window.html: [fail, Unknown] +scrolling/scrollend-fires-to-text-input.html: [fail-slow, Unknown] scrolling/scrollend-with-snap-on-fractional-offset.html: [fail, Unknown] webkit-animation-end-event.html: [fail-slow, WebKit-prefixed events not implemented] webkit-animation-iteration-event.html: [fail-slow, WebKit-prefixed events not implemented] @@ -456,13 +494,30 @@ ParentNode-querySelector-All-xht.xht: [fail-slow, ::slotted() pseudo-class is no ParentNode-querySelector-All.html: [fail-slow, ::slotted() pseudo-class is not supported] ProcessingInstruction-escapes-1.xhtml: [fail, Unknown] adoption.window.html: [fail, "We do not implement https://github.com/whatwg/dom/pull/754 due to https://github.com/whatwg/dom/issues/813"] +insertion-removing-steps/*.tentative.html: [fail, Unknown] +insertion-removing-steps/Node-appendChild-script-with-mutation-observer-takeRecords.html: [fail, Unknown] +insertion-removing-steps/insertion-removing-steps-iframe.window.html: + "Insertion steps: load event fires synchronously *after* iframe DOM insertion, as part of the iframe element's insertion steps": [fail, Unknown] +insertion-removing-steps/insertion-removing-steps-script.window.html: [fail, Unknown] +moveBefore/tentative/**: [fail-slow, Unknown] remove-and-adopt-thcrash.html: [fail, window.open not implemented] --- DIR: dom/ranges +Range-cloneContents.html: [fail-slow, Unknown] +Range-cloneRange.html: [fail, Unknown] +Range-collapse.html: [fail, Unknown] +Range-commonAncestorContainer.html: [fail, Unknown] Range-compareBoundaryPoints.html: [timeout, Passes locally sometimes but has 8666 subtests and times out the CI runner] +Range-comparePoint.html: [fail-slow, Unknown] +Range-deleteContents.html: [fail-slow, Unknown] +Range-extractContents.html: [fail-slow, Unknown] Range-insertNode.html: [fail-slow, Unknown] +Range-isPointInRange.html: [fail-slow, Unknown] +Range-selectNode.html: [fail, Unknown] +Range-set.html: [fail-slow, Unknown] +Range-surroundContents.html: [fail-slow, Unknown] --- @@ -532,7 +587,8 @@ event-order/pushState-inside-popstate.html: [fail, We don't support navigation v event-order/same-document-traverse-immediate.html: [fail, We don't support navigation via location] event-order/same-document-traverse-wait.html: [fail, We don't support navigation via location] history-traversal-navigates-multiple-frames.html: [fail, Unknown] -pagereveal/tentative/**: [fail-slow, Not implemented] +pagereveal/**: [fail-slow, Unknown] +pageswap/**: [fail, BroadcastChannel not implemented] persisted-user-state-restoration/resume-timer-on-history-back.html: [timeout, Unknown] persisted-user-state-restoration/scroll-restoration-basic.html: [fail, Not implemented] persisted-user-state-restoration/scroll-restoration-fragment-scrolling-cross-origin.html: [timeout, Unknown] @@ -617,6 +673,7 @@ fragment-and-encoding-2.html: [fail, Unknown] fragment-and-encoding.html: [fail, Unknown] scroll-frag-non-utf8-encoded-document.html: [fail, We don't update scrollTop because we don't calculate layout] scroll-frag-percent-encoded.html: [fail, We don't update scrollTop because we don't calculate layout] +scroll-position-inline-nearest.html: [fail, We don't update scrollY because we don't calculate layout] scroll-position-vertical-lr.html: [fail, We don't update scrollX because we don't calculate layout] scroll-position-vertical-rl.html: [fail, We don't update scrollX because we don't calculate layout] scroll-position.html: [fail, We don't update scrollY because we don't calculate layout] @@ -665,6 +722,9 @@ traverse_the_history_write_onload_2.html: [timeout, Unknown] DIR: html/browsers/history/the-location-interface allow_prototype_cycle_through_location.sub.html: [fail, Unknown] +assign-replace-from-iframe.html: [fail-slow, Unknown] +assign-replace-from-top-to-nested-iframe.html: [fail-slow, Unknown] +assign-with-nested-iframe.html: [fail-slow, Unknown] assign_after_load.html: [timeout, Unknown] assign_before_load.html: [timeout, Unknown] location-non-configurable-toString-valueOf.html: [fail, Not implemented] @@ -689,6 +749,7 @@ per-global.window.html: [fail, Unknown] reload_document_open_write.html: [timeout, Unknown] reload_document_write.html: [timeout, Unknown] reload_document_write_onload.html: [timeout, Unknown] +replace-with-nested-iframe.html: [fail-slow, Unknown] same-hash.html: [timeout, Unknown] scripted_click_assign_during_load.html: [timeout, Unknown] scripted_click_location_assign_during_load.html: [timeout, Unknown] @@ -729,20 +790,11 @@ security-window/window-security.https.html: [fail, Exoticness of Window not impl self-et-al.window.html: [fail, Depends on window.open() and window.closed] window-indexed-access-vs-named-access.html: [fail, Unknown] 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 - at Window.close (lib/jsdom/browser/Window.js:752:15) - at test/web-platform-tests/run-single-wpt.js:192:22 - at processTicksAndRejections (node:internal/process/task_queues:76:11) -"] -window-indexed-properties.html: [flaky, " - Errors in `process.nextTick` callback: - Uncaught TypeError: this[i].close is not a function - at Window.close (lib/jsdom/browser/Window.js:752:15) - at test/web-platform-tests/run-single-wpt.js:192:22 - at processTicksAndRejections (node:internal/process/task_queues:76:11) -"] +window-indexed-properties-strict.html: + "Indexed properties of the window object (strict mode) 1": [fail, Unknown] + "Indexed properties of the window object (strict mode) 2": [fail, Unknown] + "Borderline numeric key: 2 ** 32 - 2 is an index (strict mode)": [fail, Unknown] +window-indexed-properties.html: [flaky, Unknown] window-open-defaults.window.html: [fail, Depends on window.open()] window-open-invalid-url.html: [fail, Unknown] window-open-noopener.html**: [fail-slow, Unknown] @@ -820,7 +872,6 @@ nested-browsing-contexts/window-top-null.html: [fail, Unknown] noreferrer-null-opener.html: [timeout, Unknown] noreferrer-window-name.html: [timeout, Depends on URL.createObjectURL] opener-string.window.html: [fail, Unknown] -post-message/*: [timeout, Unknown] targeting-cross-origin-nested-browsing-contexts.html: [timeout, Unknown] targeting-with-embedded-null-in-target.html: [timeout, Unknown] @@ -839,6 +890,7 @@ DIR: html/canvas/element/drawing-images-to-the-canvas 2d.drawImage.broken.html: [fail, Not implemented] 2d.drawImage.clip.html: [fail, Not implemented] 2d.drawImage.composite.html: [fail, Not implemented] +2d.drawImage.detachedcanvas.html: [fail, Not implemented] 2d.drawImage.floatsource.html: [fail, Not implemented] 2d.drawImage.incomplete.*.html: [fail, Not implemented] 2d.drawImage.negativedest.html: [fail, Not implemented] @@ -857,6 +909,9 @@ DIR: html/canvas/element/drawing-images-to-the-canvas DIR: html/dom +aria-attribute-reflection.html: + "aria-braillelabel attribute reflects.": [fail, Unknown] + "aria-brailleroledescription attribute reflects.": [fail, Unknown] aria-element-reflection-disconnected.html: [fail, Unknown] aria-element-reflection.html: [fail, WAI-ARIA not implemented] documents/dom-tree-accessors/Document.currentScript.html: [fail-slow, Unknown] @@ -873,6 +928,7 @@ documents/dom-tree-accessors/nameditem-names.html: [fail, Unknown] documents/resource-metadata-management/document-cookie.html: [fail, Unknown] documents/resource-metadata-management/document-lastModified-01.html: [fail, Unknown] documents/resource-metadata-management/document-lastModified.html: [fail, Unknown] +elements/global-attributes/cdata-dir_auto.html: [fail-slow, Unknown] elements/global-attributes/dataset-prototype.html: [fail, Tests Object.prototype which jsdom has trouble with due to VM globals] elements/global-attributes/dir-assorted.window.html: [fail, Unknown] elements/global-attributes/dir-auto-div-append-child.html: [fail, Not implemented] @@ -885,6 +941,8 @@ elements/global-attributes/lang-attribute.window.html: [fail, Unknown] elements/global-attributes/the-anchor-attribute-001.tentative.html: [fail, Unknown] elements/global-attributes/the-anchor-attribute-002.tentative.html: [fail, Unknown] elements/global-attributes/the-anchor-attribute-003.tentative.html: [fail, Unknown] +elements/global-attributes/the-anchor-attribute-004.tentative.html: [fail, Unknown] +elements/global-attributes/the-anchor-attribute-xml.tentative.html: [fail, Unknown] elements/global-attributes/the-lang-attribute-001.html: [fail, Unknown] elements/global-attributes/the-lang-attribute-002.html: [fail, Unknown] elements/global-attributes/the-lang-attribute-003.html: [fail, Unknown] @@ -905,7 +963,7 @@ idlharness.https.html*: [fail, Unknown] reflection*.html: [fail-slow, Unknown] render-blocking/*: [fail-slow, Not implemented] self-origin.sub.html: [fail, needs URL.createObjectURL] -usvstring-reflection.https.html: [fail, We don't support navigation via location] +usvstring-reflection.https.html: [fail-slow, We don't support navigation via location] --- @@ -945,6 +1003,7 @@ document-level-focus-apis/document-has-system-focus.html: [fail-slow, window.ope processing-model/focus-fixup-rule-one-no-dialogs.html: [fail, Unknown] processing-model/preventScroll.html: [fail, Not implemented] processing-model/textarea-scroll-selection.html: [fail, Not implemented] +the-autofocus-attribute/autofocus-area.html: [fail, Not implemented] the-autofocus-attribute/autofocus-dialog.html: [fail, Not implemented] the-autofocus-attribute/autofocus-on-stable-document.html: [fail, Not implemented] the-autofocus-attribute/document-with-fragment-empty.html: [fail, Not implemented] @@ -975,6 +1034,7 @@ other-elements-attributes-and-apis/document-color-03.html: [fail, Legacy color a other-elements-attributes-and-apis/document-color-04.html: [fail, Legacy color attributes not implemented] the-marquee-element-0/marquee-events-historical.html: [timeout, is not implemented] the-marquee-element-0/marquee-loop.html: [fail, is not implemented] +the-marquee-element-0/marquee-overflow.html: [fail, is not implemented] the-marquee-element-0/marquee-scrollamount.html: [fail, is not implemented] the-marquee-element-0/marquee-scrolldelay.html: [fail, is not implemented] @@ -1001,6 +1061,7 @@ link-rel-attribute.html: [fail, CSS computed style computation] link-style-error-01.html: [fail, We don't fire error events] link-style-error-limited-quirks.html: [fail, We don't fire error events] link-style-error-quirks.html: [fail, We don't fire error events] +stylesheet-bad-mime-type.html: [fail, Unknown] stylesheet-not-removed-until-next-stylesheet-loads.html: [fail, Unknown] --- @@ -1027,6 +1088,7 @@ DIR: html/semantics/document-metadata/the-title-element DIR: html/semantics/embedded-content/media-elements/offsets-into-the-media-resource +currentTime-move-within-document.html: [fail-slow, Unknown] currentTime.html: [timeout, Loading metadata is not implemented] --- @@ -1047,6 +1109,7 @@ delay-load-event-detached.html: [needs-canvas] delay-load-event-until-move-to-empty-source.html: [fail-with-canvas, Unimplemented] delay-load-event.html: [timeout, Unknown] disconnected-image-loading-lazy.html: [fail, loading attr not implemented] +empty-src-no-current-request.html: [fail-slow, Unknown] environment-changes/**: [timeout, Unimplemented] historical-progress-event.window.html: [needs-canvas] image-base-url.html: [timeout, not implemented] @@ -1075,8 +1138,10 @@ source-media-outside-doc.html: [fail-slow, Unknown; possibly needs media queries srcset/**: [timeout, Unimplemented] update-media.html: [timeout, Unimplemented] update-src-complete.html: [needs-canvas] +update-the-image-data/current-request-microtask-002.html: [fail, Unknown] update-the-image-data/current-request-microtask.html: [fail, Unknown] update-the-image-data/fail-to-resolve.html: [timeout, Resource loader doesn't catch bad URLs at the right point in the process] +update-the-image-data/not-broken-while-load-task-scheduled.html: [fail, Unknown] update-the-source-set.html: [timeout, Unimplemented] usemap-casing.html: [fail-with-canvas, Can't seem to handle onload = () => ...] @@ -1154,6 +1219,7 @@ form-action-submission-with-base-url.html: [timeout, Unknown] form-action-submission.html: [timeout, Unknown] form-autocomplete.html: [fail, Unknown] form-elements-nameditem-01.html: [fail, Unknown] +form-indexed-element-shadow.html: [fail, Unknown] form-indexed-element.html: [fail, Unknown] form-nameditem.html: [fail, Unknown] form-requestsubmit.html: [timeout, form.elements doesn't include listed elements outside the form element] @@ -1173,6 +1239,8 @@ focus-dynamic-type-change.html: [fail-slow, Not implemented] hidden-charset-case-sensitive.html: [timeout, Unknown] image-click-form-data.html: [timeout, Unknown] input-seconds-leading-zeroes.html: [fail, Unknown] +input-stepdown-02.html: + "stepDown() on input with no initial value and positive min value": [fail, Unknown] input-submit-remove-jssubmit.html: [fail-slow, We do not support form target yet] input-type-button.html: [fail, Depends on offsetWidth] input-type-change-value.html: [fail, Unknown] @@ -1222,7 +1290,11 @@ inserted-or-removed.html: "If an OPTION says it is selected, it should be selected after it is inserted.": [fail, Not implemented] select-validity.html: [fail, Unknown] select-willvalidate-readonly-attribute.html: [fail, Not implemented] -show-picker-cross-origin-iframe.tentative.html: [timeout, Unknown] +show-picker-cross-origin-iframe.html: [fail-slow, Unknown] +stylable-select/option-computed-style.tentative.html: [fail, Unknown] +stylable-select/select-datalist-options-idl.tentative.html: [fail, Unknown] +stylable-select/select-parsing.tentative.html: [fail, Unknown] +stylable-select/selectedoptionelement-attr.tentative.html: [fail, Unknown] --- @@ -1278,7 +1350,6 @@ async_011.htm: [timeout, Unknown] css-module-assertions/**: [fail-slow, Unimplemented] css-module/**: [fail-slow, Unimplemented] data-url.html: [timeout, Unknown] -defer-script/*: [fail, Unknown] emptyish-script-elements.html: [fail, Unknown] execution-timing/005.html: [fail, Unknown] execution-timing/006.html: [fail, Unknown] @@ -1399,7 +1470,7 @@ script-for-event-xhtml.xhtml: [fail, Not implemented] script-for-event.html: [fail, Not implemented] script-not-executed-after-shutdown.html: [fail-slow, Unknown] script-onerror-insertion-point-1.html: [timeout, Unknown] -script-onerror-insertion-point-2.html: [flaky] +script-onerror-insertion-point-2.html: [fail-slow, Unknown] script-onload-insertion-point.html: [fail, Unknown] script-referrerpolicy-idl.html: [fail, Not implemented] script-supports.html: [fail, Not implemented] @@ -1545,6 +1616,7 @@ queue-microtask.window.html: [fail-slow, Unknown interaction with Mutation Obser DIR: html/webappapis/scripting/event-loops fully_active_document.window.html: [timeout, Unknown] +update-the-rendering-resize-autofocus.html: [fail-slow, Unknown] --- @@ -1574,8 +1646,8 @@ DIR: html/webappapis/system-state-and-capabilities/the-navigator-object clientinformation.window.html: [fail, window.clientInformation is not implemented] historical.https.window.html: [fail, Not implemented] -navigator-window-controls-overlay.html: [fail, Not implemented] -navigator_user_agent.https.html: [fail, Not implemented] +navigator-window-controls-overlay.tentative.html: [fail, navigator.windowControlsOverlay not implemented] +navigator_user_agent.https.tentative.html: [fail, navigator.userAgentData not implemented] per-global.window.html: [fail, window.clientInformation is not implemented] plugins-and-mimetypes.html: [fail, navigator.pdfViewerEnabled is not implemented] protocol.https.html: [fail, registerProtocolHandler() is not implemented] @@ -1602,32 +1674,44 @@ modify-line-flex-column.tentative.html: [fail, Not implemented] modify-line-flex-row.tentative.html: [fail, Not implemented] modify-line-grid-basic.tentative.html: [fail, Not implemented] modify.tentative.html: [fail, Not implemented] +move-paragraph-cross-editing-boundary.tentative.html: [fail, Unknown] +move-paragraphboundary-cross-editing-boundary.tentative.html: [fail, Unknown] +move-selection-range-into-different-root.tentative.html: [fail, Unknown] +onselectionchange-on-distinct-text-controls.html: [fail, Unknown] +onselectionchange-on-document.html: [fail, Unknown] script-and-style-elements.html: [fail, toString should return only the text within the selection that is visible to the user (https://www.w3.org/Bugs/Public/show_bug.cgi?id=10583, https://bugzilla.mozilla.org/show_bug.cgi?id=1535392) ] +selection-content-visibility-hidden.html: [fail, Unknown] +selection-nested-video.html: [fail-slow, Unknown] +selection-range-in-shadow-after-the-shadow-removed.tentative.html?mode=closed: [fail, Unknown] +selection-range-in-shadow-after-the-shadow-removed.tentative.html?mode=open: [fail, Unknown] +shadow-dom/tentative/**: [fail, Unknown] textcontrols/onselectionchange-content-attribute.html: [fail-slow, Unknown] textcontrols/selectionchange-bubble.html: [timeout, Unknown] +textcontrols/selectionchange-on-shadow-dom.html: [fail, Unknown] textcontrols/selectionchange.html: [fail, Firefox-only semantics not yet backed by a spec] --- DIR: shadow-dom +Document-caretPositionFromPoint.tentative.html: [fail, Unknown] Document-prototype-currentScript.html: [timeout, Test not up to date next with updating wpt it should work] 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/clonable.window.html: [fail, Not implemented] declarative/declarative-after-attachshadow.html: [fail, Not implemented] -declarative/declarative-shadow-dom-attachment.html: [fail, Not implemented] -declarative/declarative-shadow-dom-basic.html: [fail, Not implemented] -declarative/declarative-shadow-dom-opt-in.html: [fail-slow, Not implemented] +declarative/declarative-shadow-dom-*.html: [fail, Not implemented] +declarative/gethtml-ordering.html: [fail, Not implemented] +declarative/gethtml.html: [fail-slow, Not implemented] declarative/getinnerhtml.tentative.html: [fail, Not implemented] declarative/innerhtml-before-closing-tag.html: [fail, Not implemented] declarative/innerhtml-on-ordinary-template.html: [fail, Not implemented] declarative/move-template-before-closing-tag.html: [fail, Not implemented] declarative/script-access.html: [fail, Not implemented] +focus-within-shadow.html: [fail, Unknown] focus/ShadowRoot-delegatesFocus.html: [fail, DelegatesFocus is not implemented] focus/delegatesFocus-tabindex-change.html: [fail, DelegatesFocus is not implemented] focus/focus-pseudo-matches-on-shadow-host.html: [timeout, Seems to depend on autofocus] @@ -1640,9 +1724,7 @@ leaktests/window-frames.html: [fail, Window.name is not implemented] offsetParent-across-shadow-boundaries.html: [fail, offsetParent not implemented] offsetTop-offsetLeft-across-shadow-boundaries.html: [fail, offsetTop/offsetLeft not implemented] scroll-to-the-fragment-in-shadow-tree.html: [fail, Requires a layout engine] -selection-collapse-and-extend.tentative.html: [fail, Unknown] -selection-direction.tentative.html: [fail, Unknown] -selection-getComposedRanges.tentative.html: [fail, Unknown] +shadow-root-clonable.html: [fail, Unknown] 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] @@ -1666,6 +1748,7 @@ idlharness.window.html: [fail, Depends on fetch] interface/click-event.htm: [fail, Pointer events not implemented] legacy-domevents-tests/approved/ProcessingInstruction.DOMCharacterDataModified.html: [timeout, Mutation Events not implemented] legacy-domevents-tests/approved/domnodeinserted.html: [timeout, Mutation Events not implemented] +textInput/api.html: [fail, Unknown] --- @@ -1686,6 +1769,7 @@ url-constructor.any.html**: [fail, Depends on fetch] url-origin.any.html: [fail, Depends on fetch] url-setters-a-area.window.html**: [fail, Depends on fetch] url-setters.any.html**: [fail, Depends on fetch] +url-statics-parse.any.html: [fail, URL.parse not implemented] urlencoded-parser.any.html: [fail, Depends on fetch] --- @@ -1699,6 +1783,8 @@ Create-http-urls.any.html: [fail, Unknown] Create-non-absolute-url.any.html: [fail, Unknown] Create-on-worker-shutdown.any.html: [fail, Needs Worker implementation] Create-url-with-windows-1252-encoding.html: [fail, Unknown] +Send-binary-arraybufferview-float16.any.html?default: [fail, Float16Array not implemented] +Send-binary-arraybufferview-float16.any.html?wss: [fail, Float16Array not implemented] back-forward-cache-with-closed-websocket-connection-ccns.tentative.window.html: [timeout, Unknown] back-forward-cache-with-closed-websocket-connection.window.html: [timeout, Unknown] back-forward-cache-with-open-websocket-connection-ccns.tentative.window.html: [timeout, Unknown] @@ -1717,10 +1803,10 @@ unload-a-document/*: [timeout, Requires window.open] DIR: webstorage event_no_duplicates.html: [fail, Unknown] -localstorage-about-blank-3P-iframe-opens-3P-window.partitioned.tentative.html: [timeout, Unknown] -localstorage-basic-partitioned.tentative.sub.html: [timeout, Depends on window.open()] -localstorage-cross-origin-iframe.tentative.https.window.html: [timeout, Unknown] -sessionStorage-basic-partitioned.tentative.sub.html: [fail-slow, Depends on window.open()] +localstorage-about-blank-3P-iframe-opens-3P-window.partitioned.html: [fail-slow, Unknown] +localstorage-basic-partitioned.sub.html: [fail-slow, Unknown] +localstorage-cross-origin-iframe.https.window.html: [fail-slow, Unknown] +sessionStorage-basic-partitioned.sub.html: [fail-slow, Unknown] storage_local_window_open.window.html: [timeout, Depends on window.open()] storage_session_window_noopener.window.html: [fail, Depends on BroadcastChannel] storage_session_window_open.window.html: [timeout, Depends on window.open()] @@ -1752,8 +1838,8 @@ cors-expose-star.sub.any.html: [fail, Unknown] data-uri.htm: [fail, Unknown] event-error-order.sub.html: [fail, Unknown] event-timeout-order.any.html: [fail, Unknown] -event-upload-progress-crossorigin.any.html: [flaky, Used to pass before Node v20 but now sometimes gives "ERR_SOCKET_CLOSED_BEFORE_CONNECTION"] -event-upload-progress.any.html: [flaky, Used to *fail* before Node v20 but now sometimes gives "ERR_SOCKET_CLOSED_BEFORE_CONNECTION"] +event-upload-progress.any.html: + "Upload events registered on time (http://www1.web-platform.test:9000/xhr/resources/corsenabled.py)": [fail, Unknown] 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] @@ -1778,7 +1864,6 @@ open-url-worker-simple.htm: [timeout, Needs Worker implementation] overridemimetype-blob.html: [fail, Unknown] overridemimetype-edge-cases.window.html: [fail, Unknown] request-content-length.any.html: [fail, needs URL.createObjectURL] -response-body-errors.any.html: [flaky, Somehow an error is escaping to be unhandled; not clear why we aren't catching it] response-method.htm: [flaky, Usually fails with a parse error in Node.js v12 but occasionally passes as it did in previous versions] responseType-document-in-worker.html: [fail, Needs Worker implementation] responseXML-unavailable-in-worker.html: [fail, Needs Worker implementation] diff --git a/test/web-platform-tests/wpt-manifest.json b/test/web-platform-tests/wpt-manifest.json index 397dac297..7e4c82b7f 100644 --- a/test/web-platform-tests/wpt-manifest.json +++ b/test/web-platform-tests/wpt-manifest.json @@ -63,6 +63,20 @@ {} ] ], + "aria-modal-aria-hidden.html": [ + "520710381c7573faf41982f39ea446ac9cb249b7", + [ + null, + {} + ] + ], + "aria-owned-with-role-change.html": [ + "c5b2130969c018dce682e2d1a404570f5c26f4e9", + [ + null, + {} + ] + ], "aria-owns-destroyed-by-content-replacement.html": [ "b64ebaa6024f50f68249204d21b60b1a2109179b", [ @@ -84,6 +98,48 @@ {} ] ], + "aria-owns-inside-map.html": [ + "10da915c4798450a63e5f48c3fa4ac1f7c386c97", + [ + null, + {} + ] + ], + "aria-owns-new-cycle.html": [ + "fbf0aade1afed6d396ce75d76f6ed189a6894165", + [ + null, + {} + ] + ], + "aria-owns-overlapping.html": [ + "e98ad6fb76ee8a140948955b5292d389d3596ed4", + [ + null, + {} + ] + ], + "aria-owns-owned-becomes-aria-hidden.html": [ + "824ae3e1419e9516513983cf4adbeecbe3449653", + [ + null, + {} + ] + ], + "aria-owns-owner-becomes-aria-hidden.html": [ + "e80bc8a426d154c091fa50b8eb017897eff3f999", + [ + null, + {} + ] + ], + "aria-owns-presentation.html": [ + "138625a1534faca65cb00ff3d615dc4fb3fc080b", + [ + null, + {} + ] + ], "aria-owns-reparent.html": [ "2eaceb66f6957b0240a4f02b0c23b74e8ca4921a", [ @@ -98,6 +154,13 @@ {} ] ], + "aria-owns-with-role-change.html": [ + "13e1eaff6dd097c06d6275ebc9fe6646850454bf", + [ + null, + {} + ] + ], "bdo-table-cell.html": [ "ae12541f8d8cb97248a7a7f3a3683f753aa96377", [ @@ -161,6 +224,13 @@ {} ] ], + "detached-line.html": [ + "a6a7520c0d1ef4e90d4e7edb8aaaf9257e4bb23d", + [ + null, + {} + ] + ], "display-table-column.html": [ "6f34f27fa7efd3e22edc6c76ac9f343487f8b7d6", [ @@ -203,6 +273,13 @@ {} ] ], + "illegal-aria-owns-from-br.html": [ + "cb042b6f2bd0081f01be1040b9c2a94a4d2db148", + [ + null, + {} + ] + ], "illegal-optgroup-structure.html": [ "809f94261344a554dcef651c0315540eba6b4dcc", [ @@ -210,6 +287,13 @@ {} ] ], + "image-with-detached-text-child.html": [ + "64f5ab46939ab5af19db90405307259da4856046", + [ + null, + {} + ] + ], "img-map-pseudo.html": [ "443934e431b9ffe9a0bca469c1d97cb8edccf5c6", [ @@ -238,6 +322,13 @@ {} ] ], + "inert-br-child.html": [ + "9c9039c3abac39b10c730a75221a1752910d0ded", + [ + null, + {} + ] + ], "input-time-datalist.html": [ "b27b77a7675df099ae048af5fc4f3b594116ce9e", [ @@ -266,6 +357,20 @@ {} ] ], + "missing-parent-map.html": [ + "a6de311b5fbac56212c79e7e6115a04850777b8f", + [ + null, + {} + ] + ], + "missing-parent-multi-col.html": [ + "5899e98ba284d475fc0893cbf51dd092bf7cd8c0", + [ + null, + {} + ] + ], "missing-parent.html": [ "42ebb8814f55210438c4d6029dcf56d21bf8107c", [ @@ -301,6 +406,13 @@ {} ] ], + "remaining-invalid-objects.html": [ + "fe117040665cc04041b70af3dcfc3ef593923b76", + [ + null, + {} + ] + ], "removed-from-flat-tree.html": [ "bc5726fed367a22b551fd3e8e00329a35e822fe8", [ @@ -329,13 +441,6 @@ {} ] ], - "svg-mouse-listener.html": [ - "2de613e1d373d487f9cf5d55076c03b426e1b41e", - [ - null, - {} - ] - ], "table-ignored-child.html": [ "99f385f6eaf3ebdbc5b8c4517c9a7ec7fce50117", [ @@ -355,6 +460,64 @@ "css": { "CSS2": { "floats": { + "crashtests": { + "firefox-bug-1904409.html": [ + "131443d2438c32e6348d95957cfd3d21a807445c", + [ + null, + {} + ] + ], + "firefox-bug-1904419.html": [ + "192a799edc52a64b5a2b2595a2539b8530ba9b90", + [ + null, + {} + ] + ], + "firefox-bug-1904421.html": [ + "29e7dd3e8ad4a8b3ddff6b173de753fb33abc7d6", + [ + null, + {} + ] + ], + "firefox-bug-1904428.html": [ + "8d2265a7996c72cf38bd888c83ba43c23bb604e3", + [ + null, + {} + ] + ], + "firefox-bug-1906768.html": [ + "0300a90b206f2149414d5b00c31c1a45eacc15bc", + [ + null, + {} + ] + ], + "float-rewind-parallel-flow-1-crash.html": [ + "79d90b89b6523ccb64502d1b43b6b0a054148cd1", + [ + null, + {} + ] + ], + "float-rewind-parallel-flow-2-crash.html": [ + "c0c4daba84c79bfc1f0be3808c1a34b1fb472a38", + [ + null, + {} + ] + ], + "float-rewind-parallel-flow-3-crash.html": [ + "30e8d0dcfb9a31253ffd269e81976b6e1a5b3e6e", + [ + null, + {} + ] + ] + }, "floats-saturated-position-crash.html": [ "08a400df569c2f42670de1963724d0e028bac150", [ @@ -442,6 +605,17 @@ } }, "compositing": { + "background-blending": { + "crashtests": { + "bgblend-root-change.html": [ + "06db053574580316235397f9c98e2b9b017cfafe", + [ + null, + {} + ] + ] + } + }, "opacity-and-transform-animation-crash.html": [ "294a823cd8ee0b7e5f289d2b623d59c7ceaa9f18", [ @@ -459,42 +633,42 @@ }, "css-anchor-position": { "anchor-scroll-composited-scrolling-001-crash.html": [ - "005a27393a23b8efc70b2f52bd3c1f479d36b70c", + "e8ecde3a3e36702d8833c6caa0c94782243edba4", [ null, {} ] ], "anchor-scroll-composited-scrolling-002-crash.html": [ - "83ce1468252532d4ddc3c8b5bb31bf1b9fcef9cf", + "3300346474347e9dc1869cc50ca214c8a17557c0", [ null, {} ] ], "anchor-scroll-composited-scrolling-003-crash.html": [ - "594c844bfb5c7e374c19029ca02e84453ba5357a", + "ea15a9e2fcd845677fe4fb99df35e45cbaa2b325", [ null, {} ] ], "anchor-scroll-composited-scrolling-004-crash.html": [ - "226a1b099c3b120d4450dda13a6f0dffeacbf9ac", + "97e66bea26730b6d09e205d7ea5707597c15614e", [ null, {} ] ], "anchor-scroll-composited-scrolling-005-crash.html": [ - "639e2e064a79bfecac4eb131a4f3726e3d9bab3c", + "0c6bf68e60c29f0a5cc47c44e02a601f67f0669d", [ null, {} ] ], "chrome-1512373-2-crash.html": [ - "ac27d8c2647c138fff1d4a93862aeb3291864596", + "50d0aff5e92fea43360b7423d522db2e9e79e89b", [ null, {} @@ -506,6 +680,48 @@ null, {} ] + ], + "chrome-336164421-crash.html": [ + "c45b69059bd82a95a182d6769b60f67bd0850d25", + [ + null, + {} + ] + ], + "chrome-336322507-crash.html": [ + "922c53b97741938b5c754c81e95a90a7735f9911", + [ + null, + {} + ] + ], + "chrome-40286059-crash.html": [ + "cee9d2d97775dacbd7583edf143fd5b06de31bff", + [ + null, + {} + ] + ], + "grid-anchor-center-crash.html": [ + "bab4eed6b66dfb846ef451f14ced6eb2a0867cc1", + [ + null, + {} + ] + ], + "inline-grid-try-fallbacks-crash.html": [ + "544ccf1baac30cb80eb7506e86bf8c7910c2869d", + [ + null, + {} + ] + ], + "position-try-invalid-anchor-crash.html": [ + "27ea1942a346603afc64955cdcf11deeee13bb36", + [ + null, + {} + ] ] }, "css-animations": { @@ -517,6 +733,27 @@ ] ], "crashtests": { + "add-pseudo-while-animating-001.html": [ + "dc815658c5b22723965454495d227198e54fcf24", + [ + null, + {} + ] + ], + "cancel-update.html": [ + "1cb094692ec5869a78ca27f504153c19e88a4b22", + [ + null, + {} + ] + ], + "pseudo-element-animation-with-marker.html": [ + "ba7fc2371abfdc463f8ed36e6f1bb39fb9ef6ef5", + [ + null, + {} + ] + ], "replace-keyframes-animating-filter-001.html": [ "e6355376f722062c4adb257ff627c5756b185517", [ @@ -783,20 +1020,27 @@ {} ] ], - "firefox-bug1693616-001-crash.html": [ + "firefox-bug-1693616-001-crash.html": [ "5aadb70037c3b31abc7bd91ee1dc8dc412e0c3e1", [ null, {} ] ], - "firefox-bug1693616-002-crash.html": [ + "firefox-bug-1693616-002-crash.html": [ "01f836c805d0909a96f759d0b1d4e404fe7509fb", [ null, {} ] ], + "firefox-bug-1903652-crash.html": [ + "45dc078c5e84183a5e5f10a597be65bb03991745", + [ + null, + {} + ] + ], "flex-item-padding-block-in-inline-crash.html": [ "43418771150ce1b430b30c1055e2c5321dde6879", [ @@ -1270,32 +1514,18 @@ ] ] }, - "css-contain": { - "contain-crash.html": [ - "373e004c0507e764e1383b17a05e64537b6711ab", - [ - null, - {} - ] - ], - "contain-style-remove-element-crash.html": [ - "cbf079523ffe5431b3808795d56fa4be4f3f7849", - [ - null, - {} - ] - ], + "css-conditional": { "container-queries": { "crashtests": { "br-crash.html": [ - "6631ba2fd560d1454f992414a2ccf47bdcb26821", + "35d029706a8e393f390dc5eff00a9024c1783422", [ null, {} ] ], "canvas-as-container-crash.html": [ - "ae7fe8dc168774f8fdb3ca9b6720cc3821503dca", + "45bb49f18004bb9088b4a4aea2217319471d8498", [ null, {} @@ -1343,6 +1573,13 @@ {} ] ], + "chrome-bug-346264227-crash.html": [ + "ae7809016e699fe8b3524b38109bc301a1e59477", + [ + null, + {} + ] + ], "chrome-custom-highlight-crash.html": [ "61e5075ed4e1b485019d96b402bbf17926bd1098", [ @@ -1372,28 +1609,28 @@ ] ], "columns-in-table-001-crash.html": [ - "fe421500dade86b6fedbbf6289a668dcc5174f45", + "b66ca8d30bd4d05dff443c5977f3545318224992", [ null, {} ] ], "columns-in-table-002-crash.html": [ - "24b9f1aab20b5cfb5fcffa59e50359e80f85cfa6", + "1c6f2cfbb0ad8e94fa597f8c89ff7779ed3d813c", [ null, {} ] ], "container-in-canvas-crash.html": [ - "215c6a04db7ce591fc7df9be6bfdf7da4edc8302", + "af21a9541f76193f93dbbb074a7ada591328c006", [ null, {} ] ], "container-type-change-chrome-legacy-crash.html": [ - "609142a2c5f7fa16f241b6ac06842a62ed68be8c", + "d49b2ae8e6546d3bee94c9cd5a84eca9e19bde0b", [ null, {} @@ -1442,14 +1679,14 @@ ] ], "focus-inside-content-visibility-crash.html": [ - "1bf68d6686c2c902205faa912573e2b3c97f0ad8", + "eb2788d03f33d6f3b5a49c73a73f55217ac01e7f", [ null, {} ] ], "force-sibling-style-crash.html": [ - "093a01b809d97b00f797c3be14706cbb4d742ede", + "751a646931af06e3a61aada3c342c4df5036dc3c", [ null, {} @@ -1491,7 +1728,7 @@ ] ], "inline-multicol-inside-container-crash.html": [ - "7e209f7ffd389744f843fe97b8483404f8ace7e5", + "853f1744b3b490885bf98da2e3c316863e6e40f4", [ null, {} @@ -1512,28 +1749,35 @@ ] ], "input-column-group-container-crash.html": [ - "5e520a45cffb9c203085118efde823b6b40cdf60", + "bd1d77cd60dcc6d57ddb3c7395889bb74ced00b3", [ null, {} ] ], "input-placeholder-inline-size-crash.html": [ - "4b1284e5cb3d90a76a756a8d89a439c43d7e65e1", + "a5c7cf62b33af8f3cafbc26132b737987513c66e", [ null, {} ] ], "marker-gcs-after-disconnect-crash.html": [ - "3680c795122603312d8a5a63ea48bd69c402b204", + "b92213d98c81eca4bdd10d5fff2329e7351635d5", [ null, {} ] ], "math-block-container-child-crash.html": [ - "00b6836655e904f1f0d64f7e3f42afaf02fc351b", + "db6c8df7f310bd97e5be3cf59291e7c18222e3aa", + [ + null, + {} + ] + ], + "mathml-container-type-crash.html": [ + "538c1b5445184d04257aaefd14b46c4f68b5f1be", [ null, {} @@ -1547,7 +1791,7 @@ ] ], "pseudo-container-crash.html": [ - "f998c3a4464ca3eb3ce07687cf24d9dcdc9a16af", + "203e48e85f2e381e38a4b8388435b08de3348cc7", [ null, {} @@ -1631,7 +1875,23 @@ ] ] } - }, + } + }, + "css-contain": { + "contain-crash.html": [ + "373e004c0507e764e1383b17a05e64537b6711ab", + [ + null, + {} + ] + ], + "contain-style-remove-element-crash.html": [ + "cbf079523ffe5431b3808795d56fa4be4f3f7849", + [ + null, + {} + ] + ], "content-visibility": { "content-visibility-auto-applied-to-th-crash.html": [ "cde696e2f65d2c22bec8750c15ddb3ece3e1acf3", @@ -1647,6 +1907,13 @@ {} ] ], + "content-visibility-background-clip-crash.html": [ + "1fa645f45777fd82fd5f95dbdf8d83b53f1f0f14", + [ + null, + {} + ] + ], "content-visibility-continuations-crash.html": [ "e20d26fceedfc0071c61750776afa62c346d308e", [ @@ -1711,6 +1978,13 @@ {} ] ], + "fieldset.html": [ + "3d7b2486e2e6eb143caf5ba69a7cbea942b578ff", + [ + null, + {} + ] + ], "first-line-and-inline-block.html": [ "6d6c6605ee0486cd6329e2d81372ed25ad5d3f17", [ @@ -1733,6 +2007,13 @@ {} ] ], + "display-ruby-text-crash.html": [ + "85ccd459af78d92c2f67aeae221a2ea48aa4c019", + [ + null, + {} + ] + ], "hidden-execcommand-crash.html": [ "67e297e6520b49325dd6091ca474c0151af5e0ea", [ @@ -1959,9 +2240,23 @@ {} ] ] - } + }, + "quote-scoping-shadow-dom-crash.html": [ + "dd67e6195277a47db2cbce79f2aa01e697cd8ede", + [ + null, + {} + ] + ] }, "css-display": { + "display-contents-001-crash.html": [ + "376c3b549aad11dea1b144c989a69418c575a51f", + [ + null, + {} + ] + ], "display-none-root-hit-test-crash.html": [ "b2467fa58fdb965f4097c447ce8a93391d80ef7d", [ @@ -1971,6 +2266,15 @@ ] }, "css-flexbox": { + "animation": { + "flex-basis-content-crash.html": [ + "6c691b987f9b5d4cfeca094ff7d16b58ff073c8f", + [ + null, + {} + ] + ] + }, "button-column-wrap-crash.html": [ "0741735d4e357af037169937229c96209c457ac7", [ @@ -2048,6 +2352,22 @@ {} ] ], + "intrinsic-size": { + "col-wrap-crash.html": [ + "09222296c917513841a47be21f8d874e4fc7e6b3", + [ + null, + {} + ] + ] + }, + "min-height-min-content-crash.html": [ + "e611b8609a3d013c1a7dac6602918b3c17b17221", + [ + null, + {} + ] + ], "negative-available-size-crash.html": [ "837fdaeba9ef8baeb4f2bad281bb13551d6d8ff9", [ @@ -2090,13 +2410,6 @@ {} ] ], - "padding-overflow-crash.html": [ - "163be06a91758492002a8505c346103cf0a0b4cc", - [ - null, - {} - ] - ], "position-relative-with-scrollable-with-abspos-crash.html": [ "f0699f2046089da69c04c0085a2622290b8827b7", [ @@ -2179,7 +2492,14 @@ {} ] ] - } + }, + "variable-in-feature-crash.html": [ + "0d296b3d9ad76139094d4a48c95e8ea6374a596f", + [ + null, + {} + ] + ] }, "css-grid": { "abspos": { @@ -2214,6 +2534,13 @@ ] ] }, + "grid-table-cell-001-crash.html": [ + "7b9c09e3af75246028a7e5766354040758432072", + [ + null, + {} + ] + ], "parsing": { "grid-template-columns-crash.html": [ "61bdfd8177a7343ce19cc24f97749cdc3ce3274b", @@ -2308,6 +2635,13 @@ {} ] ], + "firefox-bug-1901624-crash.html": [ + "306bc15aa49ea3208353b954cb1367c01d36ce98", + [ + null, + {} + ] + ], "float-becomes-inflow-crash.html": [ "c820b093ce332abc2bce9c58456cb67fe268f637", [ @@ -2315,6 +2649,17 @@ {} ] ], + "initial-letter": { + "crashtests": { + "initial-letter-dynamic-crash.html": [ + "f20f6733114c95f48f010462ec85ccae3a236e7b", + [ + null, + {} + ] + ] + } + }, "inline-002-crash.html": [ "a10eee9907f3ca27b3265452aeb19e2b9710b55d", [ @@ -2468,6 +2813,13 @@ ] ] }, + "li-without-ul-counter-crash.html": [ + "e95c675eea4639c39f8b3a7ff0447bbcc9808187", + [ + null, + {} + ] + ], "list-item-counter-crash.html": [ "fc8a38c628026dc190d81e27150d8ebabb130ae2", [ @@ -2562,6 +2914,13 @@ {} ] ], + "block-in-inline-become-float.html": [ + "6d557b7c3ab1d76a519910053373147f2d16d8f8", + [ + null, + {} + ] + ], "body-becomes-spanner-html-becomes-vertical-rl.html": [ "7cd544b71cb8d214a68ed37da4903ff0b7474a1a", [ @@ -2800,6 +3159,13 @@ {} ] ], + "multicol-with-oof-in-multicol-with-oof-in-multicol.html": [ + "b1104e28dde1e1a8d393d182d402397019fdf035", + [ + null, + {} + ] + ], "negative-margin-on-column-spanner.html": [ "0e14943d0157c2f5c1611174ea104431da177ba3", [ @@ -3434,6 +3800,13 @@ null, {} ] + ], + "pseudo-where-crash.html": [ + "c069872c60be3368d919ebfe158601b195857512", + [ + null, + {} + ] ] }, "css-overflow": { @@ -3444,50 +3817,66 @@ {} ] ], - "outline-with-opacity-crash.html": [ - "556e3cfedcd31d696827211d5626f756fb25dd93", + "ellipsis-with-image-crash.html": [ + "42a18d0eb0ede5875e84f0cbf0012d5bc4814479", [ null, {} ] ], - "overflow-clip-001-crash.html": [ - "156343954deba47d0276ea482285048d773b74ab", + "line-clamp": { + "webkit-line-clamp-041-crash.html": [ + "3f4bf3c8ef578fa22469e81e504879aa5d713bf8", + [ + null, + {} + ] + ], + "webkit-line-clamp-042-crash.html": [ + "1a5fe2e246ff5abb8b4096223c8f0fd47a3968b2", + [ + null, + {} + ] + ] + }, + "multicol-in-orthogonal-writing-mode-crash.html": [ + "5a7378de2ea890fc2eefd91135c6cb299a7464ba", [ null, {} ] ], - "overflow-clip-002-crash.html": [ - "e60239655a07ca6ea3173356420c934ec10b2231", + "outline-with-opacity-crash.html": [ + "556e3cfedcd31d696827211d5626f756fb25dd93", [ null, {} ] ], - "shrink-to-fit-auto-overflow-relayout-crash.html": [ - "c0f0214ee186a0b13787f6f86bd199e7d6df7ac0", + "overflow-clip-001-crash.html": [ + "156343954deba47d0276ea482285048d773b74ab", [ null, {} ] ], - "table-header-group-overflow-crash.html": [ - "1b0774129da2601dff9d77d3fcec43949bd96fd2", + "overflow-clip-002-crash.html": [ + "e60239655a07ca6ea3173356420c934ec10b2231", [ null, {} ] ], - "webkit-line-clamp-041-crash.html": [ - "3f4bf3c8ef578fa22469e81e504879aa5d713bf8", + "shrink-to-fit-auto-overflow-relayout-crash.html": [ + "c0f0214ee186a0b13787f6f86bd199e7d6df7ac0", [ null, {} ] ], - "webkit-line-clamp-042-crash.html": [ - "1a5fe2e246ff5abb8b4096223c8f0fd47a3968b2", + "table-header-group-overflow-crash.html": [ + "1b0774129da2601dff9d77d3fcec43949bd96fd2", [ null, {} @@ -3509,8 +3898,29 @@ null, {} ] + ], + "root-element-remove-print.html": [ + "8497e8c4fd7694ad2fb48f4338b570dea5e26463", + [ + null, + {} + ] + ], + "tall-inline-block-in-float-in-table-cell-print.html": [ + "c70dce2160a9c206c850df7dcd518c97a7ec0443", + [ + null, + {} + ] ] - } + }, + "trailing-declaration-crash.html": [ + "54b9a13220112407d31097632e45fc94685d486e", + [ + null, + {} + ] + ] }, "css-paint-api": { "column-count-crash.https.html": [ @@ -3594,12 +4004,40 @@ ] ], "crashtests": { + "computed-property-universal-syntax.html": [ + "b87f03b2df3d536ef2459d6498e0cd121bc4f06c", + [ + null, + {} + ] + ], + "consume-color-contrast-crash.html": [ + "4fd342fb80367f9e20b7fc5f756863e88d44bd83", + [ + null, + {} + ] + ], "initial-in-audio-crash.html": [ "dfc2b850a51fcedc6d61af7a93430e2cda5c8954", [ null, {} ] + ], + "transition-to-none-crash-001.html": [ + "b7eaca3f0b19f4e62809abd6f7af38ff8fa57d22", + [ + null, + {} + ] + ], + "transition-to-none-crash-002.html": [ + "45548f809a3faa82921b447f98e08c3048e9aeb3", + [ + null, + {} + ] ] } }, @@ -3611,6 +4049,13 @@ {} ] ], + "chrome-first-letter-container-query-crash.html": [ + "6647e38731516ff001beccffb8a9969125a04a17", + [ + null, + {} + ] + ], "chrome-first-letter-inside-replaced-crash.html": [ "cf9e2d71633e5c5c45ba458b394c986a21acc13d", [ @@ -3632,6 +4077,20 @@ {} ] ], + "firefox-bug-1907238-crash.html": [ + "7bfa2538d974139d1533479f4331026dcaf0a234", + [ + null, + {} + ] + ], + "first-letter-bidi-pre-crash.html": [ + "fbff1c8f0bc5fd295be094d5a2db36315ef808f7", + [ + null, + {} + ] + ], "first-letter-crash.html": [ "683d2a77662149be28c581c5de6651e776653d65", [ @@ -3667,6 +4126,13 @@ {} ] ], + "get-computed-style-crash.html": [ + "60e097cc8d11518afeff76432d0b32e4bdd0a8af", + [ + null, + {} + ] + ], "highlight-painting-005-crash.html": [ "3f93fc3cbe4c7459cad625b0d363c5cdc6d130c5", [ @@ -3710,6 +4176,24 @@ ] ] }, + "css-ruby": { + "break-within-bases": { + "break-spaces-crash.html": [ + "d6b8f340844535bb45bd627a668bb32fa6d4a215", + [ + null, + {} + ] + ] + }, + "ruby-dynamic-removal-004-crash.html": [ + "be7c28956f6d1b16e734ff34feef5ae3d2648157", + [ + null, + {} + ] + ] + }, "css-scoping": { "chrome-1492368-crash.html": [ "04d48ef21532405548b80e23c482e848b3fc1ef6", @@ -3754,8 +4238,8 @@ ] }, "css-scrollbars": { - "multicol-in-orthogonal-writing-mode-crash.html": [ - "5a7378de2ea890fc2eefd91135c6cb299a7464ba", + "invalid-needs-layout-crash.html": [ + "0b0ae427897894f9f38a7ce9d88256e860b0d5ea", [ null, {} @@ -3857,6 +4341,13 @@ ] ], "crashtests": { + "caption-repaint-crash.html": [ + "6a024d0c1d7ef58da06a489d80d187bcb2a3e350", + [ + null, + {} + ] + ], "caption-with-multicol-table-cell.html": [ "2228ad69366f2a364a229a3cb178e5bf8414da56", [ @@ -4057,6 +4548,13 @@ ] ], "crashtests": { + "eol-spaces-bidi-min-content-crash.html": [ + "d8c3ec337b38d8b2cba6313d7cc3034b393b1406", + [ + null, + {} + ] + ], "line-break-float-crash.html": [ "bdf47c3e8ae024e596629dc4061cc7e075503150", [ @@ -4266,6 +4764,13 @@ }, "css-text-decor": { "crashtests": { + "text-decoration-first-line-multi-crash.html": [ + "f6176334ad6e6ef2662a8f89785f601f48a762cf", + [ + null, + {} + ] + ], "text-decoration-on-empty-first-line-crash.html": [ "058cf9f8371d6e95965edcdf12f62a15e2c7f4b9", [ @@ -4428,6 +4933,13 @@ }, "css-transitions": { "crashtests": { + "delete-image-set.html": [ + "b6ba763858f63535c8bc09370de7d567059b7f5e", + [ + null, + {} + ] + ], "transition-during-style-attr-mutation.html": [ "255794bfa86d8e24c2bad9a6e59d1f12338b1d00", [ @@ -4552,6 +5064,13 @@ {} ] ], + "premature-comment-crash.html": [ + "f25de032b1bcea555b680558d0e34ab87b41b96b", + [ + null, + {} + ] + ], "rem-length-degrees-crash.html": [ "c62a2e769d3049c8316b9e243c72451486c1376b", [ @@ -4585,7 +5104,7 @@ }, "css-view-transitions": { "document-element-detached-crash.html": [ - "cfdf769695dc11864229d0f4fe5d1dfc3712aec7", + "66a8db6b679775949a8edb706f75ad97a9de71ce", [ null, {} @@ -4598,13 +5117,36 @@ {} ] ], + "iframe-transition-destroyed-document-crash.html": [ + "13e743c3a1731bd20f3b8edabd8dbef86d418030", + [ + null, + {} + ] + ], "list-style-position-style-change-crash.html": [ - "5910d5d95a1027646f7228449fd234cff7079a84", + "2a033ddc7ef3fb081c238d0f934bce8050e16599", [ null, {} ] ], + "navigation": { + "opt-in-without-frame-crash.html": [ + "01c4d723498b7b4f2d3ca5b37d536377d2fa30d6", + [ + null, + {} + ] + ], + "reload-crash.html": [ + "a2bf11b31dc28129382837d7dd75f37544a51911", + [ + null, + {} + ] + ] + }, "root-element-cv-hidden-crash.html": [ "890194b7c171ea7a42fd083567637aacee4fd877", [ @@ -4613,20 +5155,38 @@ ] ], "root-element-display-none-crash.html": [ - "fc55719c7e87bccb9d2862464b19e19112e02711", + "d228be8581a711f2edba4e833f4e813f9d8b362b", [ null, {} ] ], "root-element-display-none-during-transition-crash.html": [ - "19f4143aa6a4c6c8ec63206d1e94fab56f6181c6", + "d67bb256fdb346e21a41da181f7a737cab0c914c", [ null, {} ] ] }, + "css-viewport": { + "zoom": { + "scroll-corner-crash.html": [ + "0ec88deb748ba83e5408f7c126c021827e940bcf", + [ + null, + {} + ] + ], + "scrollbar-crash.html": [ + "791022407fd624c6cd7b1c1fec17abb3444f89af", + [ + null, + {} + ] + ] + } + }, "css-will-change": { "will-change-contents-crash.html": [ "b2a05dac869a0e365ef668b2ed9c83ac98c98b89", @@ -4902,24 +5462,6 @@ ] ] }, - "printing": { - "crashtests": { - "root-element-remove-print.html": [ - "8497e8c4fd7694ad2fb48f4338b570dea5e26463", - [ - null, - {} - ] - ], - "tall-inline-block-in-float-in-table-cell-print.html": [ - "c70dce2160a9c206c850df7dcd518c97a7ec0443", - [ - null, - {} - ] - ] - } - }, "selectors": { "eof-right-after-selector-crash.html": [ "c387c755abe0b5b497052916cd034299b2b2bd96", @@ -4951,8 +5493,29 @@ {} ] ] - } + }, + "nth-of-namespace-class-invalidation-crash.html": [ + "4ad1cfe1c69c0b498ebdf628a94b59b8886371b2", + [ + null, + {} + ] + ] }, + "link-sharing-crash.html": [ + "3bcce92d49d67bd694028db2549b65eb5644fdca", + [ + null, + {} + ] + ], + "pseudo-where-crash.html": [ + "ad683ac8b9e0223666b6e3ccfc951a9817be0d32", + [ + null, + {} + ] + ], "spurious-brace-crash.html": [ "b1a462a9690ea40836c0d7cb0cdf9779b9702750", [ @@ -4967,24 +5530,6 @@ {} ] ] - }, - "zoom": { - "tentative": { - "scroll-corner-crash.html": [ - "0ec88deb748ba83e5408f7c126c021827e940bcf", - [ - null, - {} - ] - ], - "scrollbar-crash.html": [ - "791022407fd624c6cd7b1c1fec17abb3444f89af", - [ - null, - {} - ] - ] - } } }, "custom-elements": { @@ -5012,6 +5557,13 @@ }, "dom": { "abort": { + "abort-signal-any-crash.html": [ + "912c0d0ada738593700f453ff4810ece2d6e9af6", + [ + null, + {} + ] + ], "crashtests": { "timeout-close.html": [ "ee8544a7f57edb8cac05e94dbd836eac20a37b85", @@ -5060,6 +5612,24 @@ {} ] ], + "moveBefore": { + "tentative": { + "chrome-338071841-crash.html": [ + "26adfb1cbfae116e0a88a7ff2cbf24cdb9a5e7f7", + [ + null, + {} + ] + ], + "input-moveBefore-crash.html": [ + "a41d06b024ebce951d9b84c9759a29b5754d0e96", + [ + null, + {} + ] + ] + } + }, "node-appendchild-crash.html": [ "245de87f2d36ed39eec30cd627aa3c21bd4ff115", [ @@ -5124,6 +5694,20 @@ {} ] ], + "caret-display-list-002.html": [ + "23f0496efd60a8be111de489ca92de4a34874484", + [ + null, + {} + ] + ], + "caret-display-list.html": [ + "f7c7a740e18925dba2da8704700ee23a5359921f", + [ + null, + {} + ] + ], "change-input-type-of-focused-text-control-and-make-it-editing-host.html": [ "fec4ff13e8cbb45b6faa2a0872b47558003a58b7", [ @@ -5215,6 +5799,13 @@ {} ] ], + "delete-in-block-in-progress.html": [ + "233b834ab03ca7da9228fc3e293f91e5429a7e77", + [ + null, + {} + ] + ], "delete-in-dd-editing-host-after-selectall-with-focus.html": [ "585cd17bb82d8b763168cb14b52fe7d18ec457aa", [ @@ -5243,6 +5834,13 @@ {} ] ], + "designMode-caret-change.html": [ + "be80afd4ab8a474572d1732baecdcb1f052c57fb", + [ + null, + {} + ] + ], "designMode-document-will-be-blurred-by-focus-event-listener.html": [ "3cd6509c4b7044754a57f131c8b00de7af944ce8", [ @@ -5257,6 +5855,20 @@ {} ] ], + "designMode-on-of-lazy-loading-iframe.html": [ + "90a6c85c45c38ef8e106400dc0445e3fb582d13a", + [ + null, + {} + ] + ], + "enableInlineTableEditing-after-updating-selection-range-cross-shadow-dom-boundary.html": [ + "b248e03ea05fb85b89ab50e782d37ffec9075ea9", + [ + null, + {} + ] + ], "execCommand-at-load-with-changing-editing-host.html": [ "ec1dd30dc023205ce479df1038d08279c315ae62", [ @@ -5453,6 +6065,13 @@ {} ] ], + "insertimage-with-replacing-selection-in-picture-element.html": [ + "aaae4c7c9fd1ca95ca3b0e71dbed32bd2e660ccf", + [ + null, + {} + ] + ], "insertlinebreak-around-comment-node.html": [ "dc2d5e2bd4b43b382034e78dfea317d69fbf5738", [ @@ -5488,6 +6107,13 @@ {} ] ], + "insertparagraph-in-editable-dl-outside-body.html": [ + "4c04d9590754cc81ba6ca66bac9312c3a99d5615", + [ + null, + {} + ] + ], "insertparagraph-in-listitem-in-svg-followed-by-collapsible-spaces.html": [ "f5f981965ba99aaf1f9ab0965238222094114a77", [ @@ -5754,6 +6380,20 @@ {} ] ], + "replace-body-after-designMode-off-and-making-editing-host.html": [ + "1ec599eabff8408b7b3f9bde97ddc5f13de6209d", + [ + null, + {} + ] + ], + "replace-document-root-and-refocus-window.html": [ + "b2923054684382aa5c78d936008e4a7029ec3891", + [ + null, + {} + ] + ], "replace-document-root-with-object-and-mo.html": [ "bdad541422833382c831de19bc0c1973006448c1", [ @@ -5810,6 +6450,20 @@ {} ] ], + "set-output-value-to-empty-while-deleting-its-content.html": [ + "6ddf89205f78a26a55df73d85fcb5759b2a5efb8", + [ + null, + {} + ] + ], + "set-selection-range-after-updating-textarea-default-value.html": [ + "421306fc96142aeaee22279febfb5a896da905c6", + [ + null, + {} + ] + ], "textarea-will-be-blurred-by-focus-event-listener.html": [ "bcb145c309901ce49369ae539fc338f1efb35656", [ @@ -5968,6 +6622,17 @@ } }, "offscreen": { + "manual": { + "the-offscreen-canvas": { + "offscreencanvas-worker-font-load-crash.html": [ + "1baf7847deab9f46cce410f39087b3f9db389ca6", + [ + null, + {} + ] + ] + } + }, "set-proprietary-font-names-001-crash.html": [ "dfa661655ec6210a7e8ca7de415973cff628b706", [ @@ -6164,6 +6829,15 @@ {} ] ] + }, + "widgets": { + "input-checkbox-appearance-none-dynamic-crash.html": [ + "fb10f6a7fa63a62eee988778b902179ab38e3603", + [ + null, + {} + ] + ] } }, "semantics": { @@ -6236,6 +6910,13 @@ null, {} ] + ], + "srcdoc-removed-iframe-crash.html": [ + "ebf4e1330a772ecffb5500d493c3225cae018d79", + [ + null, + {} + ] ] }, "the-img-element": { @@ -6394,6 +7075,20 @@ null, {} ] + ], + "select-attribute-crash.html": [ + "5330411a5dcae0e9becb76bad1897c681dad7419", + [ + null, + {} + ] + ], + "select-in-table-crash.html": [ + "d1f1cee2177a1e58d635c8e96f257cee557a39ea", + [ + null, + {} + ] ] }, "the-selectlist-element": { @@ -6419,6 +7114,13 @@ null, {} ] + ], + "textarea-update-default-value-in-shadow-crash.html": [ + "f2b040434f41ea9c6e746544d73b76cd9f1ec622", + [ + null, + {} + ] ] } }, @@ -6528,30 +7230,18 @@ ] } }, - "popovers": { - "invoker-show-crash.html": [ - "7da57f9788f07c57c7e6d2c2a5d4cee94c7a3ee6", - [ - null, - {} - ] - ], - "popover-dialog-crash.html": [ - "e7579d5a3869958422fc07422fbb84124c8c635a", - [ - null, - {} - ] - ], - "popover-hint-crash.tentative.html": [ - "82f83538e93e364dc90b45aa41515a586ea2089b", + "invokers": { + "invoketarget-generic-eventtarget-crash.tentative.html": [ + "b2179640ddfb5a2d3a531327cf9419f54d771aba", [ null, {} ] - ], - "popover-manual-crash.html": [ - "535eb4c7d120186f620c376a149158900721fe12", + ] + }, + "popovers": { + "invoker-show-crash.html": [ + "7da57f9788f07c57c7e6d2c2a5d4cee94c7a3ee6", [ null, {} @@ -6753,6 +7443,20 @@ {} ] ], + "1092053.html": [ + "51b5858b6f33d06a486deaef99ad4564312efad9", + [ + null, + {} + ] + ], + "1140268-1.html": [ + "5e5510ba7fd920896c28c7d1f52ff4268af3ae16", + [ + null, + {} + ] + ], "1221888-1.html": [ "741daa7503fb5a997478bbcc252aeb7cbdd093cf", [ @@ -6774,6 +7478,27 @@ {} ] ], + "1397439-1.html": [ + "b617f8e0ed83d11f18e1dbbcab0d2bf445d3b7c5", + [ + null, + {} + ] + ], + "1403465.html": [ + "924392757b318ffa5d9e75fc0630247a4207c2ac", + [ + null, + {} + ] + ], + "1435015.html": [ + "329aaca22f8ef02c05750cc221fc03e577ac8e7f", + [ + null, + {} + ] + ], "151054-1.xml": [ "f634d089f3cebe9bb671f7b807edc333242c6063", [ @@ -6781,6 +7506,20 @@ {} ] ], + "1555757-1.html": [ + "04f2b27a6020aa542047e46920dfa7b749bb70b5", + [ + null, + {} + ] + ], + "1555757-2.html": [ + "eff048784a184a166efbc532e10190b8b67a2334", + [ + null, + {} + ] + ], "1600635.html": [ "d6ad31588539f4a84c0330a99644afefef605ddf", [ @@ -6788,6 +7527,20 @@ {} ] ], + "1701975-1.html": [ + "c7d54ca996f2af02863bf24e3a698fc2fa29a165", + [ + null, + {} + ] + ], + "243159-2.xhtml": [ + "ff0326816d8041ac9b1568b271390e456b8ead4e", + [ + null, + {} + ] + ], "289180-1.xml": [ "8d1f2e843c570ce5d427eb23bc911f2eabc75464", [ @@ -6795,6 +7548,13 @@ {} ] ], + "306902-1.xml": [ + "24e8c068a0d3e10f031eec95b7b10f90b05457fa", + [ + null, + {} + ] + ], "307826-1.xhtml": [ "02d436e8259f6f4f28589cb01e5e11405eae36ec", [ @@ -6879,6 +7639,13 @@ {} ] ], + "347506-1.xhtml": [ + "4119389a56d5a518d7cd6cd16dc9b0de03a4f54e", + [ + null, + {} + ] + ], "347507-1.xhtml": [ "274ae48ff2167c5961cab67da79c13be2d91b75e", [ @@ -6928,6 +7695,13 @@ {} ] ], + "355993-1.xhtml": [ + "cbbddf013aafd02f01a1134d2f921a5a51ec3ba8", + [ + null, + {} + ] + ], "364685-1.xhtml": [ "ab2b56a2f80352afe80ca7425f6575a28ac69869", [ @@ -6935,6 +7709,13 @@ {} ] ], + "364686-1.xhtml": [ + "add9238d8fa929a1150fbf14cb25c7dd60fe4803", + [ + null, + {} + ] + ], "366012-1.xhtml": [ "55f29f3ac3e440f99d1eca9f355fe8f0a8d10a76", [ @@ -6963,6 +7744,13 @@ {} ] ], + "368461-1.xhtml": [ + "d5baccf523eddfdb99fe3069e6eb7621e2e1248e", + [ + null, + {} + ] + ], "370791-1.xhtml": [ "d72eb5f709f43451894a3dbf5c408aecfc0186dd", [ @@ -6977,6 +7765,13 @@ {} ] ], + "370884-1.xhtml": [ + "3959d4b1781ed3dde767fbd30ae4407dbfd86f8f", + [ + null, + {} + ] + ], "372483-1.xhtml": [ "41edd7d9b71c03ec8dfb10a1650fe05d53c89477", [ @@ -7040,6 +7835,27 @@ {} ] ], + "382208-1.xhtml": [ + "88d2728bfe6656e29f177ddb42b6df535cdf6bbb", + [ + null, + {} + ] + ], + "382396-1.xhtml": [ + "89af7ea18ddb99cf38444bf1034465d858141b6c", + [ + null, + {} + ] + ], + "384649-1.xhtml": [ + "e2ba50cdeec72e3b2e2ab8d884022794ef230135", + [ + null, + {} + ] + ], "385226-1.xhtml": [ "b1d261eb380b250693318b24e93ad6add9b89971", [ @@ -7047,6 +7863,20 @@ {} ] ], + "385265-1.xhtml": [ + "7994653ffa78ecf1df691d96f6f63d03d7cf55ae", + [ + null, + {} + ] + ], + "385289-1.xhtml": [ + "8f0e871aaf4a5ca99c7abf57089a3f40b39f5634", + [ + null, + {} + ] + ], "393760-1.xhtml": [ "cb5c2d7a129df166d1445b558045fd131c68341d", [ @@ -7054,6 +7884,20 @@ {} ] ], + "394150-1.xhtml": [ + "ee54a8dd3b77542d22012f228ca00682341b9e53", + [ + null, + {} + ] + ], + "395450-1.xhtml": [ + "79510267bacc1e848b7a5d678ac64674d77cd2a6", + [ + null, + {} + ] + ], "397518-1.xhtml": [ "bc460ead11ca2779dd401c730f5f6493e7edf2e0", [ @@ -7068,6 +7912,20 @@ {} ] ], + "399676-1.xhtml": [ + "82b547e5eafe208ffe9a1f044a09c739242f42f6", + [ + null, + {} + ] + ], + "400445-1.xhtml": [ + "9cb71dbbd6e12f1fb7536eda562fbc4619f5002f", + [ + null, + {} + ] + ], "400475-1.xhtml": [ "13ff2fcb6303837499112433b1ba24f4b90e6108", [ @@ -7075,6 +7933,13 @@ {} ] ], + "400904-1.xhtml": [ + "a00f42fd0200f5c645d9e932d10606bc328b9057", + [ + null, + {} + ] + ], "402400-1.xhtml": [ "5212d67f163f04f294096bb035cc486f9f7fd1c8", [ @@ -7110,6 +7975,20 @@ {} ] ], + "410728-1.xml": [ + "deaeb8fc5536d56c9d67ec17b5e13b16f4bd7ae3", + [ + null, + {} + ] + ], + "411603-1.html": [ + "596565fbc38e3bce53ef812418673279f9324266", + [ + null, + {} + ] + ], "412237-1.xml": [ "2e8f13b73e0ea6a6969b8546428d2f66c8025657", [ @@ -7124,6 +8003,13 @@ {} ] ], + "413274-1.xhtml": [ + "19d8fab0fdee28beca010007fecc03a7f669af4d", + [ + null, + {} + ] + ], "416907-1.xhtml": [ "94a9abde2129a12ca0b83714f13204554b7acc2b", [ @@ -7131,6 +8017,13 @@ {} ] ], + "418007-1.xhtml": [ + "f07a693444eb1d4c035a2dc4ee2c808ca9f4bd01", + [ + null, + {} + ] + ], "420420-1.xhtml": [ "db17b277a781d4b37b371a3a686aac9772cc653a", [ @@ -7173,6 +8066,13 @@ {} ] ], + "467914-1.html": [ + "4f518f09df3274a6a6bf40e1967b168271117922", + [ + null, + {} + ] + ], "476547-1.xhtml": [ "0cece35eaa3945cae201d82e9bfe8c01732f9ce4", [ @@ -7187,6 +8087,13 @@ {} ] ], + "547843-1.xhtml": [ + "0ad086d90c39ff324972551c8d7b1925a388202a", + [ + null, + {} + ] + ], "557474-1.html": [ "1bf8d534ca259896654a9671fa0fddd7c8da6a9e", [ @@ -7208,6 +8115,13 @@ {} ] ], + "700031.xhtml": [ + "70f924279efa2b010e65cb8384f347d59081c065", + [ + null, + {} + ] + ], "713606-1.html": [ "a0d4939a83fb8754e74d22847df1d156315c38b8", [ @@ -7340,6 +8254,15 @@ ] } }, + "notifications": { + "global-teardown-crash.html": [ + "27db2ca3b60d65aaa95077755fc333909fcb9459", + [ + null, + {} + ] + ] + }, "print": { "crashtests": { "reload-crash.html": [ @@ -7369,6 +8292,15 @@ ] ] }, + "resize-observer": { + "multiple-observers-with-mutation-crash.html": [ + "c844854e5cfd316a381f86251acff020994f3f7a", + [ + null, + {} + ] + ] + }, "scroll-animations": { "crashtests": { "invalid-animation-range.html": [ @@ -7377,6 +8309,13 @@ null, {} ] + ], + "viewport-100vh.html": [ + "cc862bd29955ec0c6730614a4eb72e3565c46cd4", + [ + null, + {} + ] ] }, "scroll-timelines": { @@ -7421,6 +8360,13 @@ }, "selection": { "crashtests": { + "selectall-and-find-svg-text-on-selectstart.html": [ + "9f9dfbc9384aa5a330a4304f9c586f62983564ca", + [ + null, + {} + ] + ], "selection-clip-crash.html": [ "66d10b47424226f79f676a87288b667aed2911e1", [ @@ -7428,6 +8374,13 @@ {} ] ], + "selection-details-editor-ui.html": [ + "444306207a4617468447327b4a3e292cec0154d8", + [ + null, + {} + ] + ], "selection-modify-around-input.html": [ "24b9ae7d35bea3510bb21ca03787436db64cbc47", [ @@ -7435,6 +8388,55 @@ {} ] ], + "selection-modify-around-textarea.html": [ + "113dea5ffa077927f84ea52f5b3428137ea5a6e8", + [ + null, + {} + ] + ], + "selection-modify-line-boundary-around-empty-details.html": [ + "815a819c3367b7441be40b2294c9a2998bfcb632", + [ + null, + {} + ] + ], + "selection-modify-line-boundary-around-shadow.html": [ + "bfca0402a7096a61b17d8dfa68f736f76fd3dcfa", + [ + null, + {} + ] + ], + "selection-modify-line-from-contenteditable-to-textarea.html": [ + "41d377a9a60f30c8ccc8995832995c2d4450a902", + [ + null, + {} + ] + ], + "selection-modify-line-next-to-input-and-make-it-invisible.html": [ + "09e018f581905b35fcdb4ba70aade0de27785efb", + [ + null, + {} + ] + ], + "selection-modify-line-next-to-textarea.html": [ + "b685add01c004885a32e22211acad17843f1d132", + [ + null, + {} + ] + ], + "selection-modify-per-word-in-table-header-group.html": [ + "66a57381eda5db2c3bba532cad9f9ef8423072f3", + [ + null, + {} + ] + ], "table.html": [ "36eb803a5cbbe6b397ebb76659d1da7a8ae5d881", [ @@ -7533,6 +8535,13 @@ null, {} ] + ], + "cross-piping2.https.html": [ + "4616aef479c07bef440e5f80debbcde0ef66ab97", + [ + null, + {} + ] ] } }, @@ -7545,7 +8554,14 @@ {} ] ] - } + }, + "tee-detached-context-crash.html": [ + "9488da72732e003721fb7e04fef317c77538f4dc", + [ + null, + {} + ] + ] }, "transferable": { "gc-crash.html": [ @@ -7638,6 +8654,13 @@ {} ] ], + "chrome-bug-333487749.html": [ + "1613f4998a0056df23d015bf8ad17fb2faa391a0", + [ + null, + {} + ] + ], "firefox-bug-1688293.html": [ "9ab1a88312683a66798cb52693c2ba4389222ff4", [ @@ -7679,6 +8702,13 @@ null, {} ] + ], + "firefox-bug-1883804.html": [ + "83327b69d3cea496ab2e42bdf184d8d130a894a1", + [ + null, + {} + ] ] }, "extensibility": { @@ -7734,6 +8764,15 @@ ] }, "text": { + "crashtests": { + "textlength-zwj-crash.svg": [ + "547e919b7d00c4d4384b5dae6db89939ca2219f0", + [ + null, + {} + ] + ] + }, "reftests": { "text-display-contents-crash.html": [ "04b6a7e7cf8c6714f6c51c75ef6355102089428e", @@ -7792,6 +8831,13 @@ } }, "crashtests": { + "color-mix-crashtest.html": [ + "91d29464f50d12985e791d889abfc482a188f767", + [ + null, + {} + ] + ], "get-computed-timing-crash.html": [ "b666eea91f67d1f26cbc88f1f26d4008ceb76af6", [ @@ -7916,6 +8962,17 @@ ] ] } + }, + "the-oscillatornode-interface": { + "crashtests": { + "stop-before-start.html": [ + "89d22c0d18b3622f38975b30c312256d963738bb", + [ + null, + {} + ] + ] + } } } }, @@ -9354,6 +10411,13 @@ {} ] ], + "display-override-member-media-feature-tabbed-manual.tentative.html": [ + "04560071dfa4cc1590475b6ff87feab545b8255e", + [ + null, + {} + ] + ], "display-override-member-media-feature-window-controls-overlay-overrides-browser-manual.tentative.html": [ "0929b43dec89c0ad50fd733fa48eb68177e9b8fa", [ @@ -9714,7 +10778,7 @@ ] ], "console-countReset-logging-manual.html": [ - "7fe01f50edbfa180a575511dbbf6694f5f51e133", + "f0a9358fba5d74b82bb39000d5d42f18d6ea2795", [ null, {} @@ -9947,7 +11011,7 @@ ] ], "aria-describedby-manual.html": [ - "696c30a6b46633eaa36b39e0ef059008d79d15c2", + "8efd89131b06adb3add86a451ee11271181a429b", [ null, {} @@ -10696,7 +11760,7 @@ ] ], "button_with_aria-haspopup_dialog-manual.html": [ - "73f8663e61c1a8c5a6b80aab62dd9f5cd09527be", + "8600396025b01529334f2483abfef40ed523ee0b", [ null, {} @@ -10801,7 +11865,7 @@ ] ], "deletion-manual.html": [ - "4f6b0d7feb76d4fc21f6cf18c74b8adf849e6a9d", + "e94c0d076cd4f2a0776ea746009579beb04f3225", [ null, {} @@ -10940,6 +12004,13 @@ {} ] ], + "image-manual.html": [ + "348dbd4dd69aad9a8a64b2961ba6262f5884dffa", + [ + null, + {} + ] + ], "img-manual.html": [ "7ffdf715f7527b4fdde2f8f1c7afa4b64f295ff6", [ @@ -11011,7 +12082,7 @@ ] ], "insertion-manual.html": [ - "7b5fd8098512174207ed5118d84392a42fc9d780", + "65956ef13c0f58774cc197c04a341b1caaec07db", [ null, {} @@ -11074,7 +12145,7 @@ ] ], "mark-manual.html": [ - "8373fa133da91bc635082589a6b8e3e974256abd", + "c7c1909a8fb29e557c2ca83e5544af8a30abfff1", [ null, {} @@ -11346,6 +12417,20 @@ {} ] ], + "sectionfooter-manual.html": [ + "f007f8b116d6bf4cc86ae3877f4f3d13db75c243", + [ + null, + {} + ] + ], + "sectionheader-manual.html": [ + "24504622d6d22e52d7f67ce570f8052f7d079965", + [ + null, + {} + ] + ], "separator_focusable-manual.html": [ "67bf48919dd3b6b386b4caeeec0041d48eea8905", [ @@ -11396,7 +12481,7 @@ ] ], "suggestion-manual.html": [ - "f31bcab8defbb01a592ef78403a0645c72fabb03", + "75ec9828925f30e258c9fff7284d2e0c6c285257", [ null, {} @@ -18985,7 +20070,7 @@ ] ], "resize-014.html": [ - "fdbd77e38ae59444eabdc1fd35837dc511e293ae", + "c3e292438b5725626d324769d34d78ceda3692f0", [ null, {} @@ -19047,13 +20132,6 @@ {} ] ], - "text-overflow-017.html": [ - "561d4d0b6fe96195159ef15bdc877d3c1ae6c2dd", - [ - null, - {} - ] - ], "text-overflow-018.html": [ "848ebe690eb84406260daf7a1335822887490e61", [ @@ -19078,6 +20156,17 @@ ] ] }, + "css-view-transitions": { + "navigation": { + "transition-to-prerender-manual.html": [ + "7465065c5da0895d95e8a9f01135b0a243a5650e", + [ + null, + {} + ] + ] + } + }, "css-writing-modes": { "alt-display-vertical-001-manual.html": [ "2e9de77ccb0e24f562c9b3f5bf6bccc3acef8870", @@ -19761,6 +20850,22 @@ } } }, + "document-picture-in-picture": { + "hide-return-to-opener-button-manual.https.html": [ + "17cd6657ddae58350638f02813f736ed5b10597e", + [ + null, + {} + ] + ], + "prefer-initial-window-placement-manual.https.html": [ + "16ba7f4f59b2f6434ec289c14c8fbd6917b52fc9", + [ + null, + {} + ] + ] + }, "dpub-aam": { "manual": { "doc-abstract-manual.html": [ @@ -20049,6 +21154,13 @@ }, "editing": { "manual": { + "contenteditable-insertfromdrop-type-inputevent-data-manual.html": [ + "1836553b3b36c26eb0ee84d72f1418bf527216f8", + [ + null, + {} + ] + ], "delete-manual.html": [ "be8c773b1d5179788d1f5aa2777d959b6cee9118", [ @@ -20090,6 +21202,13 @@ null, {} ] + ], + "textarea-insertfromdrop-type-inputevent-data-manual.html": [ + "eee35a3822047dab86d24793de7d5c11793404ff", + [ + null, + {} + ] ] } }, @@ -20200,6 +21319,15 @@ ] ] }, + "event-timing": { + "interactionid-composition-manual.html": [ + "2b4f2aab0943c1f41f8a8ba9092029ce812df5f6", + [ + null, + {} + ] + ] + }, "feature-policy": { "experimental-features": { "vertical-scroll-disabled-frame-no-scroll-manual.tentative.html": [ @@ -20452,6 +21580,20 @@ {} ] ], + "gamepad-dual-rumble-effect-manual.https.html": [ + "4a1c5ba8c5b6c1ec378360e9363a0e6b10fd1e13", + [ + null, + {} + ] + ], + "gamepad-trigger-rumble-effect-manual.https.html": [ + "f436a60aaca70585bce98d3fab64b8990a940e95", + [ + null, + {} + ] + ], "getgamepads-polling-manual.html": [ "4330fec5a59340856ed24d37849f4896c0b584c6", [ @@ -20818,7 +21960,7 @@ "element": { "canvas-host": { "2d.canvas.host.scaled-manual.html": [ - "acf3f9c7b344711b38326671a6a8edd332692606", + "930432a39fea0b16e4620aa8b4b8e1226c81c334", [ null, {} @@ -21039,58 +22181,102 @@ ] ] }, + "drop": { + "events-contenteditable-manual.tentative.html": [ + "9e513eb836fc78cd086077bee723753adc91643e", + [ + null, + {} + ] + ], + "events-contenteditable-same-element-manual.tentative.html": [ + "907306301fa0b38b139b4753c374bd32f03f811d", + [ + null, + {} + ] + ], + "events-input-manual.tentative.html": [ + "2f9914cca957dbd5c90460f104f9dcfcc12346ef", + [ + null, + {} + ] + ], + "events-input-same-element-manual.tentative.html": [ + "8a578d51ad6b5aa1dbc597a2b91879a6fa1b854f", + [ + null, + {} + ] + ], + "events-textarea-manual.tentative.html": [ + "7fb8bf437f8e4e64df07fa8b743129544a966248", + [ + null, + {} + ] + ], + "events-textarea-same-element-manual.tentative.html": [ + "c856fd4fbead239aeac04fdbd0b3f2e071bb2114", + [ + null, + {} + ] + ] + }, "events": { "drag-event-div-manual.html": [ - "79c0c4332d00cb704d0459168345d2eb5fc55d8c", + "505b0049bee124d72a489538779daadd6e941ed4", [ null, {} ] ], "drag-event-manual.html": [ - "d278b864bb9186de17be5ae3931384d1677e5f91", + "d3f517ea1d5140fd61e8f36fc134a22585e41953", [ null, {} ] ], "dragend-event-manual.html": [ - "8bfb1fb7b6eea55fff19542ad6d3e23faf6e0acc", + "b4bb621e888d5a632fe0ff35e95036d5634e41db", [ null, {} ] ], "dragenter-event-manual.html": [ - "e81b32949ccc855fe4d24f5c1b85ec78bee08ec4", + "23b404b0b177e937ae2f593f637e30a5598e45f6", [ null, {} ] ], "dragleave-event-manual.html": [ - "f6a405915fc2cd6ac04662b186d554c26c8b90e0", + "a400fa3417cbbc891516ba157c76c756778dec77", [ null, {} ] ], "dragover-event-manual.html": [ - "f8d99241d59f6cfa262ad135331f959e5f087d75", + "f37a33cff65cef2f4c57a9eb8df4b0f48d4fbac6", [ null, {} ] ], "dragstart-event-manual.html": [ - "20786648da33df11c99e335b7157ea50cf246e47", + "9128401ffaae34c58c90bb53b3307c3d748e28a1", [ null, {} ] ], "drop-event-manual.html": [ - "2897bd57135e69202d726acfe7bf6b7c2694b728", + "8393e386966620e0f724eb310731de59213b9f19", [ null, {} @@ -21481,6 +22667,13 @@ {} ] ], + "dnd-datatransfer-setdragimage-manual.html": [ + "acd84503084efae655c8a575dea1e38fc9551bba", + [ + null, + {} + ] + ], "dndTransferCases-manual.html": [ "6081b5d42c34e94df8d2123384415b4a1bc23a19", [ @@ -21489,14 +22682,14 @@ ] ], "effectAllowed-manual.html": [ - "08540b906a577785d64113b89b31133fc9d31bdd", + "61443da2c02105a14772942906fdac7a567d9607", [ null, {} ] ], "files-manual.html": [ - "7de0b4bbce11ba2cbfaa7e8e0021ebde3d9979b3", + "ffafb66db4f4bc3d9371f934f2246124c3437b35", [ null, {} @@ -21517,14 +22710,14 @@ ] ], "setData-manual.html": [ - "f0f7cae6009b5d6be3716f104d6e90a2a9d2e1bb", + "1438e932ad0b034c52a0616af838a62ca913f418", [ null, {} ] ], "types-manual.html": [ - "1730c4bc738897d8bd6f0e74febba949e25a932a", + "3aa1404e296ace9c20ff55f85098b1c6d522f968", [ null, {} @@ -22920,20 +24113,6 @@ null, {} ] - ], - "tag-different-manual.https.html": [ - "e463e97670194be82386ffd249f858f8305d220e", - [ - null, - {} - ] - ], - "tag-same-manual.https.html": [ - "4454944c535a6fa0989b4728f58bc7394e711578", - [ - null, - {} - ] ] }, "orientation-event": { @@ -23067,7 +24246,7 @@ }, "payment-method-basic-card": { "billing-address-is-null-manual.https.html": [ - "3250e0a2c550e89b4744a34341e68cd2ae063cea", + "5eac71963eb478e9d4f1df2fc7bd5c0c1579bc0f", [ null, {} @@ -23082,6 +24261,52 @@ ] }, "payment-request": { + "PaymentAddress": { + "attributes-and-toJSON-method-manual.https.html": [ + "fc1ce3523e57a0a023041f21e18d4de37b390823", + [ + 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", @@ -23096,8 +24321,50 @@ null, {} ] + ], + "retry-shows-shippingAddress-member-manual.https.html": [ + "94e6fa5105b20a7127292de57adcfb20f3b806e8", + [ + null, + {} + ] ] }, + "algorithms-manual.https.html": [ + "b90c312aba3bf4978986defe00f5195c74b88b61", + [ + null, + {} + ] + ], + "billing-address-changed-manual.https.html": [ + "d03f7615187eb52cd6d980665aae9758d97b19f1", + [ + 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", [ @@ -23175,8 +24442,50 @@ null, {} ] + ], + "retry-method-manual.https.html": [ + "a5aab49e387d326c68bcca32d2ad5fe59385f517", + [ + null, + {} + ] + ], + "retry-method-warnings-manual.https.html": [ + "b68bf18309702c481c76adef0cddee24cbd1b543", + [ + null, + {} + ] + ], + "shippingAddress-attribute-manual.https.html": [ + "f9f0a6e4faf2f05912e4ee721c23dbb840fcf6c8", + [ + null, + {} + ] + ], + "shippingOption-attribute-manual.https.html": [ + "687d3a52de9f6bfdb10456147586008b18683eb2", + [ + null, + {} + ] ] }, + "shipping-address-changed-manual.https.html": [ + "aad57cd724c69ba665a8a6e47f390daa90f059f2", + [ + null, + {} + ] + ], + "show-method-optional-promise-resolves-manual.https.html": [ + "5360a9704af459f30180f938d12828f6dbf1b570", + [ + null, + {} + ] + ], "show-method-postmessage-manual.https.html": [ "0751920e375a2fa4a9a25b432a510808e03d7fef", [ @@ -23184,12 +24493,26 @@ {} ] ], + "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": [ + "300f04811fdf2d9bbdf8f8730a1ca620385f2408", + [ + null, + {} + ] ] }, "permissions-policy": { @@ -23303,6 +24626,15 @@ ] ] }, + "persistentDeviceId": { + "persistentdeviceid-is-unique-manual.tentative.html": [ + "f9f15cfaea85a1aaee1ade8799d4d774c1342b95", + [ + null, + {} + ] + ] + }, "pointerevent_multiple_primary_pointers_boundary_events-manual.html": [ "029aa26368413ea96b90823285a780b6798a12d9", [ @@ -23317,6 +24649,13 @@ {} ] ], + "pointerevent_predicted_coalesced_targets-manual.html": [ + "b46f743647335cfd8fa5cfa373d49b403e4f12f6", + [ + null, + {} + ] + ], "pointerevent_touch-action-rotated-divs_touch-manual.html": [ "194e933f91ab068ff3fb2abc7dd064316380de68", [ @@ -23972,7 +25311,7 @@ ] ], "animate-elem-30-t-manual.svg": [ - "d27f9a1d6dafdaff3ed4ee17f6616ca5bd1bf83b", + "bfc4cb48612a9aa38edc3f720d65f9726586a57c", [ null, {} @@ -24210,7 +25549,7 @@ ] ], "animate-elem-85-t-manual.svg": [ - "6c09ffb3b59f4c035a9cf4aaae1895bda9244663", + "c5ded325cd88498f9f65a3dc8e946747e004f67f", [ null, {} @@ -24301,7 +25640,7 @@ ] ], "animate-pservers-grad-01-b-manual.svg": [ - "98456fb0736ee3286148fa29f03b21e53ce7f2cd", + "15672bac5fc0f3dfa03422ce8194103416e4c591", [ null, {} @@ -27276,7 +28615,7 @@ ] ], "types-dom-01-b-manual.svg": [ - "60093ac542094ae8021e034dc52e1f7fd305f008", + "cf6e3d38f15859411a6cf52c65491831ebddab1a", [ null, {} @@ -27431,6 +28770,15 @@ ] ] } + }, + "textInput": { + "smiley-manual.html": [ + "7781f6e1b06b569e6389e19d152a0cbfb6d17d80", + [ + null, + {} + ] + ] } }, "vibration": { @@ -30033,7 +31381,7 @@ "abspos-overflow-hidden-001-print.html": [ "12d8a679ad7351090d743ebd0d59e9cbd39e9122", [ - "css/css-break/abspos-overflow-hidden-001-print.html", + null, [ [ "/css/css-break/abspos-overflow-hidden-001-print-ref.html", @@ -30162,7 +31510,7 @@ "break-inside-avoid-multicol-001-print.html": [ "a97ac9f5cdad2d191588dbdc6a2de80607a00a43", [ - "css/css-break/break-inside-avoid-multicol-001-print.html", + null, [ [ "/css/css-break/break-inside-avoid-multicol-001-print-ref.html", @@ -30172,6 +31520,19 @@ {} ] ], + "break-inside-avoid-multicol-iframe-crash-print.html": [ + "080ec5364736682cf2da450691abf05ae9da558b", + [ + "css/css-break/break-inside-avoid-multicol-iframe-crash-print.html", + [ + [ + "/common/blank.html", + "!=" + ] + ], + {} + ] + ], "break-nested-float-in-table-001-print.html": [ "e4e0a578e9a6c6d763fcb9e80d6ff8b91561f3e5", [ @@ -30189,7 +31550,7 @@ "multi-line-row-flex-fragmentation-063-print.html": [ "1225792abac5a223be7c98cb298e979c1ceda3d7", [ - "css/css-break/flexbox/multi-line-row-flex-fragmentation-063-print.html", + null, [ [ "/css/css-break/flexbox/multi-line-row-flex-fragmentation-063-print-ref.html", @@ -30202,7 +31563,7 @@ "multi-line-row-flex-fragmentation-064-print.html": [ "969c3a3010bc92631a77c356ff199937a1f4e19f", [ - "css/css-break/flexbox/multi-line-row-flex-fragmentation-064-print.html", + null, [ [ "/css/css-break/flexbox/multi-line-row-flex-fragmentation-064-print-ref.html", @@ -30215,7 +31576,7 @@ "multi-line-row-flex-fragmentation-075-print.html": [ "f1f3c79377b4a6315bab6c4903bd064c11af7819", [ - "css/css-break/flexbox/multi-line-row-flex-fragmentation-075-print.html", + null, [ [ "/css/css-break/flexbox/multi-line-row-flex-fragmentation-075-print-ref.html", @@ -30228,7 +31589,7 @@ "multi-line-row-flex-fragmentation-076-print.html": [ "a6caab736b52b1909c852ffe9f335a2695101dab", [ - "css/css-break/flexbox/multi-line-row-flex-fragmentation-076-print.html", + null, [ [ "/css/css-break/flexbox/multi-line-row-flex-fragmentation-076-print-ref.html", @@ -30241,7 +31602,7 @@ "multi-line-row-flex-fragmentation-080-print.html": [ "4fd577cc4213aab38e4e4d2cfcc05fee0ae7aada", [ - "css/css-break/flexbox/multi-line-row-flex-fragmentation-080-print.html", + null, [ [ "/css/css-break/flexbox/multi-line-row-flex-fragmentation-080-print-ref.html", @@ -30251,10 +31612,114 @@ {} ] ], + "multi-line-row-flex-fragmentation-081a-print.html": [ + "d773768bf0221faa34d9fd02e7b16fe2ede23a39", + [ + null, + [ + [ + "/css/css-break/flexbox/multi-line-row-flex-fragmentation-081-print-ref.html", + "==" + ] + ], + {} + ] + ], + "multi-line-row-flex-fragmentation-081b-print.html": [ + "7c4eeb2083b6092df51e41e6769a007236244c7a", + [ + null, + [ + [ + "/css/css-break/flexbox/multi-line-row-flex-fragmentation-081-print-ref.html", + "==" + ] + ], + {} + ] + ], + "multi-line-row-flex-fragmentation-081c-print.html": [ + "2181bc56b05660ebcc85fc023a05a40270958d4f", + [ + null, + [ + [ + "/css/css-break/flexbox/multi-line-row-flex-fragmentation-081-print-ref.html", + "==" + ] + ], + {} + ] + ], + "multi-line-row-flex-fragmentation-081d-print.html": [ + "b4d9f061420843ca009864061656f907f8d2d0d9", + [ + null, + [ + [ + "/css/css-break/flexbox/multi-line-row-flex-fragmentation-081-print-ref.html", + "==" + ] + ], + {} + ] + ], + "multi-line-row-flex-fragmentation-082a-print.html": [ + "18c732d242e6795b1f79be4ca83bdee49bc17739", + [ + null, + [ + [ + "/css/css-break/flexbox/multi-line-row-flex-fragmentation-082-print-ref.html", + "==" + ] + ], + {} + ] + ], + "multi-line-row-flex-fragmentation-082b-print.html": [ + "6f88af6cf68166981f45831506a70159152317ca", + [ + null, + [ + [ + "/css/css-break/flexbox/multi-line-row-flex-fragmentation-082-print-ref.html", + "==" + ] + ], + {} + ] + ], + "multi-line-row-flex-fragmentation-082c-print.html": [ + "116e8db2b334b66bfb054b7615cb59cacbf8b7eb", + [ + null, + [ + [ + "/css/css-break/flexbox/multi-line-row-flex-fragmentation-082-print-ref.html", + "==" + ] + ], + {} + ] + ], + "multi-line-row-flex-fragmentation-082d-print.html": [ + "e649304e7be773083c1a7de19ab53d348f850293", + [ + null, + [ + [ + "/css/css-break/flexbox/multi-line-row-flex-fragmentation-082-print-ref.html", + "==" + ] + ], + {} + ] + ], "single-line-column-flex-fragmentation-060-print.html": [ "15890801979709a152f580ad8f18d6af7e102b61", [ - "css/css-break/flexbox/single-line-column-flex-fragmentation-060-print.html", + null, [ [ "/css/css-break/flexbox/single-line-column-flex-fragmentation-060-print-ref.html", @@ -30267,7 +31732,7 @@ "single-line-column-flex-fragmentation-065-print.html": [ "14a5dc6ac0ca62134f9ca87afefe66235ba25514", [ - "css/css-break/flexbox/single-line-column-flex-fragmentation-065-print.html", + null, [ [ "/css/css-break/flexbox/single-line-column-flex-fragmentation-065-print-ref.html", @@ -30280,7 +31745,7 @@ "single-line-column-flex-fragmentation-066-print.html": [ "4ee00f3601d51bfe2eb1ef98b742f7253b5dcd92", [ - "css/css-break/flexbox/single-line-column-flex-fragmentation-066-print.html", + null, [ [ "/css/css-break/flexbox/single-line-column-flex-fragmentation-066-print-ref.html", @@ -30290,10 +31755,114 @@ {} ] ], + "single-line-column-flex-fragmentation-068a-print.html": [ + "5eebf664325184d52a4633774f5ff81c03ba64b6", + [ + null, + [ + [ + "/css/css-break/flexbox/single-line-column-flex-fragmentation-068-print-ref.html", + "==" + ] + ], + {} + ] + ], + "single-line-column-flex-fragmentation-068b-print.html": [ + "64a495e01cd7d310f5b8242ae3611e95594ccbbc", + [ + null, + [ + [ + "/css/css-break/flexbox/single-line-column-flex-fragmentation-068-print-ref.html", + "==" + ] + ], + {} + ] + ], + "single-line-column-flex-fragmentation-068c-print.html": [ + "6c004f3d1958f4b91202c4f9c9cb076f9a12f5ad", + [ + null, + [ + [ + "/css/css-break/flexbox/single-line-column-flex-fragmentation-068-print-ref.html", + "==" + ] + ], + {} + ] + ], + "single-line-column-flex-fragmentation-068d-print.html": [ + "7ccf5e9f3eced96a29311584875d9e0c150a9f32", + [ + null, + [ + [ + "/css/css-break/flexbox/single-line-column-flex-fragmentation-068-print-ref.html", + "==" + ] + ], + {} + ] + ], + "single-line-column-flex-fragmentation-069a-print.html": [ + "1d18987036b9f54baf3bed8d03b4254b9614c883", + [ + null, + [ + [ + "/css/css-break/flexbox/single-line-column-flex-fragmentation-069-print-ref.html", + "==" + ] + ], + {} + ] + ], + "single-line-column-flex-fragmentation-069b-print.html": [ + "b5312837a7a338ab4f144e9230966c4e710729e5", + [ + null, + [ + [ + "/css/css-break/flexbox/single-line-column-flex-fragmentation-069-print-ref.html", + "==" + ] + ], + {} + ] + ], + "single-line-column-flex-fragmentation-069c-print.html": [ + "76686cb481bc4bb6e37331ba18b22f079bf3889e", + [ + null, + [ + [ + "/css/css-break/flexbox/single-line-column-flex-fragmentation-069-print-ref.html", + "==" + ] + ], + {} + ] + ], + "single-line-column-flex-fragmentation-069d-print.html": [ + "7a740c35f53c468ec50f4989a47683a6156a35a2", + [ + null, + [ + [ + "/css/css-break/flexbox/single-line-column-flex-fragmentation-069-print-ref.html", + "==" + ] + ], + {} + ] + ], "single-line-row-flex-fragmentation-042-print.html": [ "f8a2934ac5a9d9a9f2b67867545dd37486cae38a", [ - "css/css-break/flexbox/single-line-row-flex-fragmentation-042-print.html", + null, [ [ "/css/css-break/flexbox/single-line-row-flex-fragmentation-042-print-ref.html", @@ -30306,7 +31875,7 @@ "single-line-row-flex-fragmentation-045-print.html": [ "f51d0d161f8f1f72d2ea5a0c303ce1969cbd26d5", [ - "css/css-break/flexbox/single-line-row-flex-fragmentation-045-print.html", + null, [ [ "/css/css-break/flexbox/single-line-row-flex-fragmentation-045-print-ref.html", @@ -30319,7 +31888,7 @@ "single-line-row-flex-fragmentation-046-print.html": [ "2c934c303db4b0b781b2646f187dec19fb45c3fa", [ - "css/css-break/flexbox/single-line-row-flex-fragmentation-046-print.html", + null, [ [ "/css/css-break/flexbox/single-line-row-flex-fragmentation-046-print-ref.html", @@ -30356,6 +31925,21 @@ {} ] ], + "grid": { + "monolithic-overflow-print.html": [ + "9b174caf96cb69c201115910fe746bd74153017b", + [ + null, + [ + [ + "/css/css-break/grid/monolithic-overflow-print-ref.html", + "==" + ] + ], + {} + ] + ] + }, "ink-overflow-001-print.html": [ "495153d3d423b014aa40aeed87ea0a899edce1f5", [ @@ -30382,6 +31966,19 @@ {} ] ], + "overflowing-block-002-print.html": [ + "3cba4b421fab252b1efbd28d19bbf3d470aafdce", + [ + null, + [ + [ + "/css/css-break/overflowing-block-002-print-ref.html", + "==" + ] + ], + {} + ] + ], "overflowing-block-print.html": [ "daa9e24f33a49546f852fe387814ec9aa8b56e90", [ @@ -30400,7 +31997,7 @@ "fixedpos-in-footer-forced-break-print.html": [ "43a54cbe7d94a6cca5d423b6c799e060fa4ad8d5", [ - "css/css-break/table/repeated-section/fixedpos-in-footer-forced-break-print.html", + null, [ [ "/css/css-break/table/repeated-section/fixedpos-in-footer-forced-break-print-ref.html", @@ -30410,8 +32007,203 @@ {} ] ] - } + }, + "table-fragmentation-001a-print.html": [ + "4f2123b6487cb81d8bc42e4654b35dc136c1a1c3", + [ + null, + [ + [ + "/css/css-break/table/table-fragmentation-001a-print-ref.html", + "==" + ] + ], + {} + ] + ], + "table-fragmentation-001b-print.html": [ + "d445206a2b8df031bd2f9a7d78d1f6874ac86913", + [ + null, + [ + [ + "/css/css-break/table/table-fragmentation-001a-print-ref.html", + "==" + ] + ], + {} + ] + ], + "table-fragmentation-001c-print.html": [ + "4615270c4000db50d56c1c95d6a2610e887212fb", + [ + null, + [ + [ + "/css/css-break/table/table-fragmentation-001c-print-ref.html", + "==" + ] + ], + {} + ] + ], + "table-fragmentation-001d-print.html": [ + "ad120c24818b6134a6d7fdac79cb14889697c186", + [ + null, + [ + [ + "/css/css-break/table/table-fragmentation-001c-print-ref.html", + "==" + ] + ], + {} + ] + ], + "table-fragmentation-002a-print.html": [ + "88ea8cd6977577d49ebba689ca88835c8933f19f", + [ + null, + [ + [ + "/css/css-break/table/table-fragmentation-002a-print-ref.html", + "==" + ] + ], + {} + ] + ], + "table-fragmentation-002b-print.html": [ + "97e102e3cd725e5e1eaa6f35d6361557f49a5e45", + [ + null, + [ + [ + "/css/css-break/table/table-fragmentation-002a-print-ref.html", + "==" + ] + ], + {} + ] + ], + "table-fragmentation-002c-print.html": [ + "29fccdef999087aa88d429e6cc0351cf4471f9ad", + [ + null, + [ + [ + "/css/css-break/table/table-fragmentation-002c-print-ref.html", + "==" + ] + ], + {} + ] + ], + "table-fragmentation-002d-print.html": [ + "67aa7624b76e2fddb1e406178ac91c6f0128f7ae", + [ + null, + [ + [ + "/css/css-break/table/table-fragmentation-002c-print-ref.html", + "==" + ] + ], + {} + ] + ], + "table-fragmentation-003a-print.html": [ + "c6190855b01b7a2e71e7cec577739654e930348d", + [ + null, + [ + [ + "/css/css-break/table/table-fragmentation-003a-print-ref.html", + "==" + ] + ], + {} + ] + ], + "table-fragmentation-003b-print.html": [ + "a1d3b21298e594d0dd14bd74b74a7319b9fd3c7c", + [ + null, + [ + [ + "/css/css-break/table/table-fragmentation-003a-print-ref.html", + "==" + ] + ], + {} + ] + ], + "table-fragmentation-003c-print.html": [ + "9c4f8d3873af50c72292ba9428f4afe455db20fb", + [ + null, + [ + [ + "/css/css-break/table/table-fragmentation-003c-print-ref.html", + "==" + ] + ], + {} + ] + ], + "table-fragmentation-003d-print.html": [ + "1903a68c58d4d5cc58ba2bec19154114bccd2e5e", + [ + null, + [ + [ + "/css/css-break/table/table-fragmentation-003c-print-ref.html", + "==" + ] + ], + {} + ] + ] }, + "transform-022-print.html": [ + "b8a097f225b686501c887d317d48ea0e135cce72", + [ + null, + [ + [ + "/css/css-break/transform-022-print-ref.html", + "==" + ] + ], + {} + ] + ], + "transform-023-print.html": [ + "7650571abe1825fb191d7219fdd6d17acc081940", + [ + null, + [ + [ + "/css/css-break/transform-023-print-ref.html", + "==" + ] + ], + {} + ] + ], + "transform-024-print.html": [ + "510b4c2e44f1987f3e260854635e21e346897e98", + [ + null, + [ + [ + "/css/css-break/transform-024-print-ref.html", + "==" + ] + ], + {} + ] + ], "underflow-from-next-page-print.html": [ "57fd12a831937dad52f99a6d3fc65248464a11f5", [ @@ -30428,7 +32220,7 @@ "zero-height-page-break-001-print.html": [ "3e3fb82628a1ab4bab53de8f1874ee5c605883e5", [ - "css/css-break/zero-height-page-break-001-print.html", + null, [ [ "/css/css-break/zero-height-page-break-001-print-ref.html", @@ -30450,6 +32242,23 @@ ] ] }, + "css-contain": { + "content-visibility": { + "content-visibility-auto-print.html": [ + "35bc333e87976b47971a303db1eb306ffdac5674", + [ + null, + [ + [ + "/css/css-contain/content-visibility/content-visibility-auto-print-ref.html", + "==" + ] + ], + {} + ] + ] + } + }, "css-flexbox": { "break-nested-float-in-flex-item-001-print.html": [ "2fbf939f6a54c9056b4bd39fe0466f0df25f0bb0", @@ -30519,6 +32328,21 @@ ] ] }, + "css-grid": { + "grid-fragmentation-between-rows-001-print.tentative.html": [ + "01fd97528fc5f470400b569f6169799d143d8259", + [ + null, + [ + [ + "/css/css-grid/grid-fragmentation-between-rows-001-print-ref.tentative.html", + "==" + ] + ], + {} + ] + ] + }, "css-multicol": { "auto-fill-auto-size-001-print.html": [ "6652fe18e9d41ea08b25b8436698c6149776e404", @@ -30549,7 +32373,7 @@ "column-balancing-paged-001-print.html": [ "933519ab5b01ded09f1173c9e45a1692a65daa99", [ - "css/css-multicol/column-balancing-paged-001-print.html", + null, [ [ "/css/css-multicol/column-balancing-paged-001-print-ref.html", @@ -30574,1772 +32398,2260 @@ ] }, "css-page": { - "layers-001-print.html": [ - "b097fbb8fc0f540c4701497196ad77a55e0ce818", + "background-image-only-for-print.html": [ + "f100f7eaeed55c5707e0918c01884cab6789a686", [ - "css/css-page/layers-001-print.html", + null, [ [ - "/css/css-page/layers-001-print-ref.html", + "/css/css-page/background-image-only-for-print-ref.html", "==" ] ], {} ] ], - "layers-002-print.html": [ - "fb30ba9eb3d063f36439a2f01f8a7d73695e89c2", + "fixedpos-001-print.html": [ + "04feb96e8474bb638254bc0babc22fa378178f48", [ - "css/css-page/layers-002-print.html", + null, [ [ - "/css/css-page/layers-002-print-ref.html", + "/css/css-page/fixedpos-001-print-ref.html", "==" ] ], {} ] ], - "layers-003-print.html": [ - "ace3d5c8c01e125a334645471482688e970b9e3b", + "fixedpos-002-print.html": [ + "c23c6be7d2a3bd2416b7c2765cd7654869918d54", [ - "css/css-page/layers-003-print.html", + null, [ [ - "/css/css-page/layers-003-print-ref.html", + "/css/css-page/fixedpos-002-print-ref.html", "==" ] ], {} ] ], - "layers-004-print.html": [ - "5e84d2a32266d98c855ec9914aca8609e525eb96", + "fixedpos-003-print.html": [ + "1b06257175fe3bc93a9205bbaa4c6ee38a778e9f", [ - "css/css-page/layers-004-print.html", + null, [ [ - "/css/css-page/layers-004-print-ref.html", + "/css/css-page/fixedpos-003-print-ref.html", "==" ] ], {} ] ], - "page-left-right-001-print.html": [ - "044696fcca27ec7ebe18edab3053dfbb65af6bbc", + "fixedpos-004-print.html": [ + "c138e9cd6aa591657f65cd80859a8e9e4f33e132", [ - "css/css-page/page-left-right-001-print.html", + null, [ [ - "/css/css-page/page-left-right-001-print-ref.html", + "/css/css-page/fixedpos-004-print-ref.html", "==" ] ], {} ] ], - "page-left-right-002-print.html": [ - "59e23479e6f28b64e6c55b502000d3622a15bca7", + "fixedpos-005-print.html": [ + "0a2edc71788aaa76305f1d17951e5499418709bd", [ - "css/css-page/page-left-right-002-print.html", + null, [ [ - "/css/css-page/page-left-right-002-print-ref.html", + "/css/css-page/fixedpos-005-print-ref.html", "==" ] ], {} ] ], - "page-name-abspos-001-print.html": [ - "df2f61493580c3273de0f77143a2cba86074f215", + "fixedpos-006-print.html": [ + "2386c166c81363a904c3e11dfac7dec4e0241029", [ - "css/css-page/page-name-abspos-001-print.html", + null, [ [ - "/css/css-page/page-name-abspos-001-print-ref.html", + "/css/css-page/fixedpos-006-print-ref.html", "==" ] ], {} ] ], - "page-name-abspos-002-print.html": [ - "f0accb36c2e8124cf6e9cb595901b82c1273bee1", + "fixedpos-007-print.html": [ + "8dcb700b96d89c508f9e6696292c79a382a472a2", [ - "css/css-page/page-name-abspos-002-print.html", + null, [ [ - "/css/css-page/page-name-abspos-002-print-ref.html", + "/css/css-page/fixedpos-007-print-ref.html", "==" ] ], {} ] ], - "page-name-abspos-003-print.html": [ - "0361f669ca989e2ae023b2103eb765a53d233a39", + "fixedpos-008-print.html": [ + "02b5d63cc7cd500e8dafa2d7a7e966d2dc90c521", [ - "css/css-page/page-name-abspos-003-print.html", + null, [ [ - "/css/css-page/page-name-abspos-003-print-ref.html", + "/css/css-page/fixedpos-008-print-ref.html", "==" ] ], {} ] ], - "page-name-canvas-001-print.html": [ - "64b879efbbc4baa3fa61e9ab10a61d1abd983b82", + "fixedpos-009-print.html": [ + "803a077c0a7148ac157612c4b3633585eb947aab", [ - "css/css-page/page-name-canvas-001-print.html", + null, [ [ - "/css/css-page/page-name-canvas-001-print-ref.html", + "/css/css-page/fixedpos-009-print-ref.html", "==" ] ], {} ] ], - "page-name-canvas-002-print.html": [ - "7a1bc7d9a00a4cb73da45fc50e0f16236e9f9082", + "fixedpos-010-print.html": [ + "cdd50828d865d6cb7e7fe71326eaa90fa1c88ac2", [ - "css/css-page/page-name-canvas-002-print.html", + null, [ [ - "/css/css-page/page-name-canvas-002-print-ref.html", + "/css/css-page/fixedpos-010-print-ref.html", "==" ] ], {} ] ], - "page-name-canvas-003-print.html": [ - "cbebc42153f9e7b04b87307f34cdfb36ada5d1e3", + "fixedpos-with-abspos-with-link-print.html": [ + "057ddc91460264bbef9bb36fa7be8d89f6d6458e", [ - "css/css-page/page-name-canvas-003-print.html", + null, [ [ - "/css/css-page/page-name-canvas-003-print-ref.html", + "/css/css-page/fixedpos-with-abspos-with-link-print-ref.html", "==" ] ], {} ] ], - "page-name-canvas-004-print.html": [ - "6343a509262d5c0d6e217e924f5009439206332c", + "fixedpos-with-iframe-print.html": [ + "5102d045c4202e4bc22c6c876fd3bbbcf620c4b0", [ - "css/css-page/page-name-canvas-004-print.html", + null, [ [ - "/css/css-page/page-name-canvas-004-print-ref.html", + "/css/css-page/fixedpos-with-iframe-print-ref.html", "==" ] ], {} ] ], - "page-name-display-none-child-print.html": [ - "f42aae35c0a5093ae7c561d717ede2eb22a66a76", + "fixedpos-with-link-with-inline-child-print.html": [ + "694e5376cbfab7ee52c1f27b9bf0fd23a2a91375", [ - "css/css-page/page-name-display-none-child-print.html", + null, [ [ - "/css/css-page/page-name-display-none-child-print-ref.html", + "/css/css-page/fixedpos-with-link-with-inline-child-print-ref.html", "==" ] ], {} ] ], - "page-name-fixed-pos-001-print.html": [ - "495c66ce2e8f78509b1ec8557e60fd0b1ff962d3", + "layers-001-print.html": [ + "b097fbb8fc0f540c4701497196ad77a55e0ce818", [ - "css/css-page/page-name-fixed-pos-001-print.html", + null, [ [ - "/css/css-page/page-name-fixed-pos-001-print-ref.html", + "/css/css-page/layers-001-print-ref.html", "==" ] ], {} ] ], - "page-name-flex-001-print.html": [ - "9b932e69d2dd89ecb53f7dc5aa7f56169ad3dc99", + "layers-002-print.html": [ + "fb30ba9eb3d063f36439a2f01f8a7d73695e89c2", [ - "css/css-page/page-name-flex-001-print.html", + null, [ [ - "/css/css-page/page-name-flex-001-print-ref.html", + "/css/css-page/layers-002-print-ref.html", "==" ] ], {} ] ], - "page-name-flex-002-print.html": [ - "a25e22d6fbd364e9d05421b09447af7f0f2be171", + "layers-003-print.html": [ + "ace3d5c8c01e125a334645471482688e970b9e3b", [ - "css/css-page/page-name-flex-002-print.html", + null, [ [ - "/css/css-page/page-name-flex-002-print-ref.html", + "/css/css-page/layers-003-print-ref.html", "==" ] ], {} ] ], - "page-name-flex-003-print.html": [ - "2cfbb6fb7cacd74f23944308b889c8597456388a", + "layers-004-print.html": [ + "5e84d2a32266d98c855ec9914aca8609e525eb96", [ - "css/css-page/page-name-flex-003-print.html", + null, [ [ - "/css/css-page/page-name-flex-003-print-ref.html", + "/css/css-page/layers-004-print-ref.html", "==" ] ], {} ] ], - "page-name-flex-004-print.html": [ - "aa20ad1cb7d2ab60490086a81120c1c6a9d18fbb", + "margin-boxes": { + "alignment-001-print.html": [ + "ad9c78baa6c0e9a392452d0f543c5511719f5d34", + [ + null, + [ + [ + "/css/css-page/margin-boxes/alignment-001-print-ref.html", + "==" + ] + ], + {} + ] + ], + "auto-margins-001-print.html": [ + "cf2501385f10483999811024195a79f9f19225f7", + [ + null, + [ + [ + "/css/css-page/margin-boxes/auto-margins-001-print-ref.html", + "==" + ] + ], + {} + ] + ], + "auto-margins-002-print.html": [ + "5b424941cadd75afad2083a619871a9d5aa80749", + [ + null, + [ + [ + "/css/css-page/margin-boxes/auto-margins-002-print-ref.html", + "==" + ] + ], + {} + ] + ], + "auto-margins-003-print.html": [ + "4fe7192a56f2400c71342c3e6b3d6dd7dc62289c", + [ + null, + [ + [ + "/css/css-page/margin-boxes/auto-margins-003-print-ref.html", + "==" + ] + ], + {} + ] + ], + "background-001-print.html": [ + "66560fce099c6848670fcb0d766435fb2afadf28", + [ + null, + [ + [ + "/css/css-page/margin-boxes/background-001-print-ref.html", + "==" + ] + ], + {} + ] + ], + "content-001-print.html": [ + "11b5bd6f44d5e01e0296ca37caee0ec2004e0bfc", + [ + null, + [ + [ + "/css/css-page/margin-boxes/content-001-print-ref.html", + "==" + ] + ], + {} + ] + ], + "content-002-print.html": [ + "9a777c85ec6aed796c4f8962e25ec4b8ea797dfc", + [ + null, + [ + [ + "/css/css-page/margin-boxes/content-002-print-ref.html", + "==" + ] + ], + {} + ] + ], + "content-003-print.html": [ + "8e87e418219cacf12f0a5e16d29c239c855e7d9f", + [ + null, + [ + [ + "/css/css-page/margin-boxes/content-003-print-ref.html", + "==" + ] + ], + {} + ] + ], + "content-004-print.html": [ + "cf593fb93cc4293c29556daad6b7a19cb34579dd", + [ + null, + [ + [ + "/css/css-page/margin-boxes/content-004-print-ref.html", + "==" + ] + ], + {} + ] + ], + "content-005-print.html": [ + "faca453fef8ce4928d3efda2fff8e402af9f0b82", + [ + null, + [ + [ + "/css/css-page/margin-boxes/content-005-print-ref.html", + "==" + ] + ], + {} + ] + ], + "content-006-print.html": [ + "68ece6326ae8795ef5a08a04faf564a202f7b602", + [ + null, + [ + [ + "/css/css-page/margin-boxes/content-005-print-ref.html", + "==" + ] + ], + {} + ] + ], + "dimensions-001-print.html": [ + "20d4e3059e0df47c0e4f782bfce782c0184789f1", + [ + null, + [ + [ + "/css/css-page/margin-boxes/dimensions-001-print-ref.html", + "==" + ] + ], + {} + ] + ], + "dimensions-002-print.html": [ + "4637a39ed516dc7b26d3bb11a634dc5e3f1262b5", + [ + null, + [ + [ + "/css/css-page/margin-boxes/dimensions-002-print-ref.html", + "==" + ] + ], + {} + ] + ], + "dimensions-003-print.html": [ + "fe9f26da5d7c4dc008cd58539ba4ffc23adc309b", + [ + null, + [ + [ + "/css/css-page/margin-boxes/dimensions-003-print-ref.html", + "==" + ] + ], + {} + ] + ], + "dimensions-004-print.html": [ + "80bcc43fb39b84fb291fb822de9a58bf26181a1c", + [ + null, + [ + [ + "/css/css-page/margin-boxes/dimensions-004-print-ref.html", + "==" + ] + ], + {} + ] + ], + "dimensions-005-print.html": [ + "2823424f39a1ce99f39af781e830378bb62f738a", + [ + null, + [ + [ + "/css/css-page/margin-boxes/dimensions-005-print-ref.html", + "==" + ] + ], + {} + ] + ], + "dimensions-006-print.html": [ + "6ea477f2c84d63b599d673ccbd943ae5ba62be26", + [ + null, + [ + [ + "/css/css-page/margin-boxes/dimensions-006-print-ref.html", + "==" + ] + ], + {} + ] + ], + "dimensions-007-print.html": [ + "cf7e5f507543f0ea8b523e83493d91cdb5b0e94b", + [ + null, + [ + [ + "/css/css-page/margin-boxes/dimensions-007-print-ref.html", + "==" + ] + ], + {} + ] + ], + "dimensions-008-print.html": [ + "8bdf0cdac0bb5796f3e6c99c0f3ded01f13527ee", + [ + null, + [ + [ + "/css/css-page/margin-boxes/dimensions-008-print-ref.html", + "==" + ] + ], + {} + ] + ], + "dimensions-009-print.html": [ + "602cc5680ec315dc8335a8ed294a14f0286b580b", + [ + null, + [ + [ + "/css/css-page/margin-boxes/dimensions-009-print-ref.html", + "==" + ] + ], + {} + ] + ], + "dimensions-010-print.html": [ + "1ebaa6d9288b89bb90c62fa5f99406e2e8fb91bb", + [ + null, + [ + [ + "/css/css-page/margin-boxes/dimensions-010-print-ref.html", + "==" + ] + ], + {} + ] + ], + "dimensions-011-print.html": [ + "e51d1fbd75eea07e2b8bc3106b3a344b944181e6", + [ + null, + [ + [ + "/css/css-page/margin-boxes/dimensions-011-print-ref.html", + "==" + ] + ], + {} + ] + ], + "dimensions-012-print.html": [ + "6b4ac2c28c723f6db09d16c50df301b0884b9af2", + [ + null, + [ + [ + "/css/css-page/margin-boxes/dimensions-012-print-ref.html", + "==" + ] + ], + {} + ] + ], + "dimensions-013-print.html": [ + "4540b07190673da2fe0bbb616fb66a46512acae1", + [ + null, + [ + [ + "/css/css-page/margin-boxes/dimensions-013-print-ref.html", + "==" + ] + ], + {} + ] + ], + "dimensions-014-print.html": [ + "d126f2d0c91c5daba93e78c5075adb7499059c9f", + [ + null, + [ + [ + "/css/css-page/margin-boxes/dimensions-013-print-ref.html", + "==" + ] + ], + {} + ] + ], + "inapplicable-properties-print.html": [ + "f5f7f8ea247a76726f74fcab0d3de187a91f8557", + [ + null, + [ + [ + "/css/css-page/margin-boxes/inapplicable-properties-print-ref.html", + "==" + ] + ], + {} + ] + ], + "overconstrained-001-print.html": [ + "549443ebc3226a2a954c82719a3cf7b25f62230a", + [ + null, + [ + [ + "/css/css-page/margin-boxes/overconstrained-001-print-ref.html", + "==" + ] + ], + {} + ] + ], + "paint-order-001-print.html": [ + "839762f0b9a7de87cba63e13be87d6af66bddd53", + [ + null, + [ + [ + "/css/css-page/margin-boxes/paint-order-001-print-ref.html", + "==" + ] + ], + {} + ] + ] + }, + "media-queries-001-print.html": [ + "01b2a00e470263b6371313b5107c7add544d858c", [ - "css/css-page/page-name-flex-004-print.html", + null, [ [ - "/css/css-page/page-name-flex-004-print-ref.html", + "/css/css-page/media-queries-001-print-ref.html", "==" ] ], {} ] ], - "page-name-float-001-print.html": [ - "4233bac5c06258603e02fd317eee8b767885c7a8", + "media-queries-002-print.html": [ + "5f71f3d17a762a770d971fdc59b4765910b5b815", [ - "css/css-page/page-name-float-001-print.html", + null, [ [ - "/css/css-page/page-name-float-001-print-ref.html", + "/css/css-page/reference/filled-green-100px-square-print-ref.html", "==" ] ], {} ] ], - "page-name-float-002-print.html": [ - "db4f0b28ce0c4f5b238f29b2211275b2eab4db4f", + "media-queries-003-print.html": [ + "2c125296ad28772c004a32e0a4329341b32e045a", [ - "css/css-page/page-name-float-002-print.html", + null, [ [ - "/css/css-page/page-name-float-002-print-ref.html", + "/css/css-page/media-queries-003-print-ref.html", "==" ] ], {} ] ], - "page-name-img-001-print.html": [ - "7864b869d9c40facd642ec503b750b636fbab13f", + "monolithic-overflow-001-print.html": [ + "f4121c3422582aad0bf12837270e696d06e68555", [ - "css/css-page/page-name-img-001-print.html", + null, [ [ - "/css/css-page/page-name-img-001-print-ref.html", + "/css/css-page/monolithic-overflow-001-print-ref.html", "==" ] ], {} ] ], - "page-name-img-002-print.html": [ - "3857986ca94cf8fbef558ab73e8b210de3e2c2b5", + "monolithic-overflow-002-print.html": [ + "8f76af16a9ea7a9a53d142d655d59c43100346d0", [ - "css/css-page/page-name-img-002-print.html", + null, [ [ - "/css/css-page/page-name-img-002-print-ref.html", + "/css/css-page/monolithic-overflow-002-print-ref.html", "==" ] ], {} ] ], - "page-name-img-003-print.html": [ - "26790f0e7a3f51c39368662ed33d4bc1833e3686", + "monolithic-overflow-003-print.html": [ + "76905b180a1232597b28c05ee3aac45690de13fa", [ - "css/css-page/page-name-img-003-print.html", + null, [ [ - "/css/css-page/page-name-img-003-print-ref.html", + "/css/css-page/reference/monolithic-overflow-4-pages-print-ref.html", "==" ] ], {} ] ], - "page-name-img-004-print.html": [ - "13fbeb01b5c377fcb91fc900bf289b8c9636cf01", + "monolithic-overflow-004-print.html": [ + "ea5a659bd8416a46fa3c2d1c69b68f7ea7f158bb", [ - "css/css-page/page-name-img-004-print.html", + null, [ [ - "/css/css-page/page-name-img-004-print-ref.html", + "/css/css-page/reference/monolithic-overflow-4-pages-print-ref.html", "==" ] ], {} ] ], - "page-name-inline-block-001-print.html": [ - "365a24146a4c3cc70ce65eb558846dc24306027b", + "monolithic-overflow-005-print.html": [ + "bb0fc212fc0d8940363e7de9d1a3771fd90f2c57", [ - "css/css-page/page-name-inline-block-001-print.html", + null, [ [ - "/css/css-page/page-name-inline-block-001-print-ref.html", + "/css/css-page/reference/monolithic-overflow-4-pages-print-ref.html", "==" ] ], {} ] ], - "page-name-inline-block-002-print.html": [ - "cb65afa924bb5490efa25f2ebd437fb6b18d138c", + "monolithic-overflow-006-print.html": [ + "1cbcdbbe1e5a036a6eae8408731a15028aaae125", [ - "css/css-page/page-name-inline-block-002-print.html", + null, [ [ - "/css/css-page/page-name-inline-block-002-print-ref.html", + "/css/css-page/reference/monolithic-overflow-4-pages-print-ref.html", "==" ] ], {} ] ], - "page-name-inline-block-003-print.html": [ - "994f506999aa4092d330c4c761220c666185a187", + "monolithic-overflow-007-print.html": [ + "14a6f051fec8489d957b14639bc3ccfcb0b644bd", [ - "css/css-page/page-name-inline-block-003-print.html", + null, [ [ - "/css/css-page/page-name-inline-block-003-print-ref.html", + "/css/css-page/reference/monolithic-overflow-4-pages-print-ref.html", "==" ] ], {} ] ], - "page-name-margin-001-print.html": [ - "9514339e4545d3100d5abf1a7a5736b01a188167", + "monolithic-overflow-008-print.html": [ + "ff302dc30caa1999f9e09168feb5ac56c08af552", [ - "css/css-page/page-name-margin-001-print.html", + null, [ [ - "/css/css-page/page-name-margin-001-print-ref.html", + "/css/css-page/reference/monolithic-overflow-4-pages-print-ref.html", "==" ] ], {} ] ], - "page-name-margin-002-print.html": [ - "0ab67f306927dca60147d4fd30f9417a8ee5e590", + "monolithic-overflow-009-print.html": [ + "bdff66e791c0fde0065578e1179085e76297d1d4", [ - "css/css-page/page-name-margin-002-print.html", + null, [ [ - "/css/css-page/page-name-margin-002-print-ref.html", + "/css/css-page/reference/monolithic-overflow-4-pages-print-ref.html", "==" ] ], {} ] ], - "page-name-orthogonal-writing-001-print.html": [ - "c84b3e5ee96ac0c4ce139c150a8fa412e0bef9c1", + "monolithic-overflow-010-print.html": [ + "a75c932d30b4133244ccfd7f695ff03a4870b3c3", [ - "css/css-page/page-name-orthogonal-writing-001-print.html", + null, [ [ - "/css/css-page/page-name-orthogonal-writing-001-print-ref.html", + "/css/css-page/reference/monolithic-overflow-4-pages-print-ref.html", "==" ] ], {} ] ], - "page-name-orthogonal-writing-002-print.html": [ - "a720090ba6e9301e5a3bbd8150f29634f536a974", + "monolithic-overflow-011-print.html": [ + "973a3aff4dccd49117247708413bf910b8406518", [ - "css/css-page/page-name-orthogonal-writing-002-print.html", + null, [ [ - "/css/css-page/page-name-orthogonal-writing-002-print-ref.html", + "/css/css-page/reference/monolithic-overflow-4-pages-print-ref.html", "==" ] ], {} ] ], - "page-name-orthogonal-writing-003-print.html": [ - "6d24c324081c013dd2d83dee8a175ccae06e3f2d", + "monolithic-overflow-012-print.html": [ + "53ed74bc7289cffacd1ec7f34b9d4e14060de6b5", [ - "css/css-page/page-name-orthogonal-writing-003-print.html", + null, [ [ - "/css/css-page/page-name-orthogonal-writing-003-print-ref.html", + "/css/css-page/monolithic-overflow-012-print-ref.html", "==" ] ], {} ] ], - "page-name-orthogonal-writing-004-print.html": [ - "8e6176584ddb7d7b64802eb79bf4cbee4fdfceae", + "monolithic-overflow-013-print.html": [ + "b9a174879d77d139688031724fa1b1a5093e78d3", [ - "css/css-page/page-name-orthogonal-writing-004-print.html", + null, [ [ - "/css/css-page/page-name-orthogonal-writing-004-print-ref.html", + "/css/css-page/monolithic-overflow-013-print-ref.html", "==" ] ], {} ] ], - "page-name-propagated-001-print.html": [ - "3efaf7695bebd91a5c0897249dcbc3ec58646162", + "monolithic-overflow-014-print.html": [ + "d12ddf4c6847ed3b6ac980e4c327ae4b77a7d148", [ - "css/css-page/page-name-propagated-001-print.html", + null, [ [ - "/css/css-page/page-name-propagated-001-print-ref.html", + "/css/css-page/monolithic-overflow-014-print-ref.html", "==" ] ], {} ] ], - "page-name-propagated-002-print.html": [ - "d88596c1225838701deb42efe22100cf0166256c", + "monolithic-overflow-015-print.html": [ + "d52605605c93eece74a0c4e78669aeb5a8ffbbdb", [ - "css/css-page/page-name-propagated-002-print.html", + null, [ [ - "/css/css-page/page-name-propagated-002-print-ref.html", + "/css/css-page/monolithic-overflow-015-print-ref.html", "==" ] ], {} ] ], - "page-name-propagated-003-print.html": [ - "969bbe6e2d976c022ac464dd0c94849f3dbe5cad", + "monolithic-overflow-016-print.html": [ + "029523e924afb21bf190420f95062214127fae61", [ - "css/css-page/page-name-propagated-003-print.html", + null, [ [ - "/css/css-page/page-name-propagated-003-print-ref.html", + "/css/css-page/monolithic-overflow-016-print-ref.html", "==" ] ], {} ] ], - "page-name-propagated-004-print.html": [ - "49600ef6d5fd908b36db947ae2f6b157cdc1fb71", + "monolithic-overflow-017-print.html": [ + "c8ce9060fffcee8a79f265e1182e0c0cd9c2e7ae", [ - "css/css-page/page-name-propagated-004-print.html", + null, [ [ - "/css/css-page/page-name-propagated-004-print-ref.html", + "/css/css-page/monolithic-overflow-017-print-ref.html", "==" ] ], {} ] ], - "page-name-propagated-005-print.html": [ - "12bd274f2fcd7ac926d4923d274cd6f25b8741c6", + "monolithic-overflow-018-print.html": [ + "93da11dc62e73e2a98a275ec71f56579e1f1a604", [ - "css/css-page/page-name-propagated-005-print.html", + null, [ [ - "/css/css-page/page-name-propagated-005-print-ref.html", + "/css/css-page/monolithic-overflow-018-print-ref.html", "==" ] ], {} ] ], - "page-name-propagated-006-print.html": [ - "18be3827ce22609ac2ace1ee435023f1d151e103", + "monolithic-overflow-019-print.html": [ + "3740b5d5b0b954f403954e2120db6a0ca32ce1c5", [ - "css/css-page/page-name-propagated-006-print.html", + null, [ [ - "/css/css-page/page-name-propagated-006-print-ref.html", + "/css/css-page/monolithic-overflow-019-print-ref.html", "==" ] ], {} ] ], - "page-name-propagated-007-print.html": [ - "c27ad9f3263e8bf82814f7abee6bc76c08fd2f3d", + "monolithic-overflow-020-print.html": [ + "403d932d643b81a620df3eba64156d1431d14579", [ - "css/css-page/page-name-propagated-007-print.html", + null, [ [ - "/css/css-page/page-name-propagated-007-print-ref.html", + "/css/css-page/monolithic-overflow-020-print-ref.html", "==" ] ], {} ] ], - "page-name-propagated-008-print.html": [ - "3f7fab4caa4f51853f7cc5e95f6a3fd884fc1430", + "monolithic-overflow-021-print.html": [ + "584c4943dcf16e1713c93a6b482b858076163842", [ - "css/css-page/page-name-propagated-008-print.html", + null, [ [ - "/css/css-page/page-name-propagated-008-print-ref.html", + "/css/css-page/monolithic-overflow-021-print-ref.html", "==" ] ], {} ] ], - "page-name-propagated-009-print.html": [ - "eb0d1dbe89095037882e7e11da0c380e591081fd", + "monolithic-overflow-022-print.html": [ + "d37c74ad8ac33a3f767e962dee71858f491c0071", [ - "css/css-page/page-name-propagated-009-print.html", + null, [ [ - "/css/css-page/page-name-propagated-009-print-ref.html", + "/css/css-page/monolithic-overflow-022-print-ref.html", "==" ] ], {} ] ], - "page-name-siblings-001-print.html": [ - "b4fa8457e7b6791fc59b88742e1dd2e27375d5f4", + "monolithic-overflow-023-print.html": [ + "c047d4865751892503c5b8341b5c3a79eb7ad5f5", [ - "css/css-page/page-name-siblings-001-print.html", + null, [ [ - "/css/css-page/page-name-siblings-print-ref.html", + "/css/css-page/monolithic-overflow-023-print-ref.html", "==" ] ], {} ] ], - "page-name-siblings-002-print.html": [ - "28f5e0b571753fafbf77c747e9fc9096752b3295", + "monolithic-overflow-024-print.html": [ + "6153bc98ae0534573817663c232fb4dbadf10116", [ - "css/css-page/page-name-siblings-002-print.html", + null, [ [ - "/css/css-page/page-name-siblings-print-ref.html", + "/css/css-page/monolithic-overflow-024-print-ref.html", "==" ] ], {} ] ], - "page-name-siblings-003-print.html": [ - "44346a649ffb73c77a6fb506073b509f65f3d9ac", + "monolithic-overflow-025-print.html": [ + "3fefbc37e2ecd38e2a88847c9132c49398d322fe", [ - "css/css-page/page-name-siblings-003-print.html", + null, [ [ - "/css/css-page/page-name-siblings-print-ref.html", + "/css/css-page/monolithic-overflow-025-print-ref.html", "==" ] ], {} ] ], - "page-name-siblings-004-print.html": [ - "51e12ba2518e103d65081ef058fef89bc752933c", + "monolithic-overflow-026-print.html": [ + "966391e43bbc015075eee64c6203641157ac7059", [ - "css/css-page/page-name-siblings-004-print.html", + null, [ [ - "/css/css-page/page-name-siblings-print-ref.html", + "/css/css-page/monolithic-overflow-026-print-ref.html", "==" ] ], {} ] ], - "page-name-siblings-005-print.html": [ - "9ad77ad5dca24d532bb2f9ca08fcc237fb1316e7", + "monolithic-overflow-027-print.html": [ + "c7cfd37e2e882a3d6a860fd854001e44b699c7c5", [ - "css/css-page/page-name-siblings-005-print.html", + null, [ [ - "/css/css-page/page-name-siblings-print-ref.html", + "/css/css-page/monolithic-overflow-027-print-ref.html", "==" ] ], {} ] ], - "page-name-zero-height-001-print.html": [ - "8a108c9b4519dd7ce3e7bce596f670a63054f180", + "monolithic-overflow-028-print.html": [ + "c549db6410daef1ec89f71348b3da4b462c3111e", [ - "css/css-page/page-name-zero-height-001-print.html", + null, [ [ - "/css/css-page/page-name-zero-height-001-print-ref.html", + "/css/css-page/monolithic-overflow-028-print-ref.html", "==" ] ], {} ] ], - "page-orientation-on-landscape-001-print.html": [ - "6832a5537d96aed1b37ec72e18ef6aa102646471", + "monolithic-overflow-029-print.html": [ + "c869d87d6839fe230d039d39142da710b8dd0d3d", [ - "css/css-page/page-orientation-on-landscape-001-print.html", + null, [ [ - "/css/css-page/page-orientation-portrait-ref.html", + "/css/css-page/monolithic-overflow-029-print-ref.html", "==" ] ], - { - "page_ranges": { - "/css/css-page/page-orientation-on-landscape-001-print.html": [ - [ - 2 - ] - ] - } - } + {} ] ], - "page-orientation-on-portrait-001-print.html": [ - "5ab3e1edfd1a260c8fa9c516d1357ed3a4238147", + "monolithic-overflow-030-print.html": [ + "e36f25434dfc2466b1d4dad840914d4909df4918", [ - "css/css-page/page-orientation-on-portrait-001-print.html", + null, [ [ - "/css/css-page/page-orientation-landscape-ref.html", + "/css/css-page/monolithic-overflow-030-print-ref.html", "==" ] ], - { - "page_ranges": { - "/css/css-page/page-orientation-on-portrait-001-print.html": [ - [ - 2 - ] - ] - } - } + {} ] ], - "page-orientation-on-square-001-print.html": [ - "06e4f00d3c43fed651f958d6ccf578e4ca717f99", + "monolithic-overflow-031-print.html": [ + "c17849006222a5c71c2d0d53c4c521baccd8ec1a", [ - "css/css-page/page-orientation-on-square-001-print.html", + null, [ [ - "/css/css-page/page-orientation-square-ref.html", + "/css/css-page/monolithic-overflow-031-print-ref.html", "==" ] ], - { - "page_ranges": { - "/css/css-page/page-orientation-on-square-001-print.html": [ - [ - 2 - ] - ] - } - } + {} ] ], - "page-rule-specificity-001-print.html": [ - "dc28ad75db381a3297080bd867397a0f51a30220", + "monolithic-overflow-032-print.tentative.html": [ + "ad7ccf029f683c9b3b857d401357292418b7f208", [ - "css/css-page/page-rule-specificity-001-print.html", + null, [ [ - "/css/css-page/page-rule-specificity-print-landscape-ref.html", + "/css/css-page/monolithic-overflow-032-print-ref.html", "==" ] ], - { - "page_ranges": { - "/css/css-page/page-rule-specificity-001-print.html": [ - [ - 2 - ] - ] - } - } + {} ] ], - "page-rule-specificity-002-print.html": [ - "01d9b2b92d8e0175981520aad9706708dd2edff8", + "page-background-001-print.html": [ + "e1bc2196940047d8948f819c32d65aedd0e76416", [ - "css/css-page/page-rule-specificity-002-print.html", + null, [ [ - "/css/css-page/page-rule-specificity-print-landscape-ref.html", + "/css/css-page/page-background-001-print-ref.html", "==" ] ], - { - "page_ranges": { - "/css/css-page/page-rule-specificity-002-print.html": [ - [ - 2 - ] - ] - } - } + {} ] ], - "page-rule-specificity-003-print.html": [ - "eda6c7ee51bdd5ea60a06bdf98e99b384d80ec22", + "page-background-002-print.html": [ + "240d468ce4438ee29a6afb74aee1539b897b5ea5", [ - "css/css-page/page-rule-specificity-003-print.html", + null, [ [ - "/css/css-page/page-rule-specificity-print-portrait-ref.html", + "/css/css-page/page-background-002-print-ref.html", "==" ] ], - { - "page_ranges": { - "/css/css-page/page-rule-specificity-003-print.html": [ - [ - 2 - ] - ] - } - } + {} ] ], - "pseudo-first-margin-001-print.html": [ - "c2c04514f39b0869605ae8bf1b5d3c9ce9435261", + "page-background-003-print.html": [ + "fbc72ecd7d77bd0a2382149019495736e7be34ce", [ - "css/css-page/pseudo-first-margin-001-print.html", + null, [ [ - "/css/css-page/pseudo-first-margin-print-ref.html", + "/css/css-page/page-background-003-print-ref.html", "==" ] ], {} ] ], - "pseudo-first-margin-002-print.html": [ - "a453b6ba32d721aa081f91e3aeda40ff036f6377", + "page-background-image-print.html": [ + "633cd4ec6c9027902782f271c2161394cf6cb5e6", [ - "css/css-page/pseudo-first-margin-002-print.html", + null, [ [ - "/css/css-page/pseudo-first-margin-print-ref.html", + "/css/css-page/page-background-image-print-ref.html", "==" ] ], {} ] ], - "pseudo-first-margin-003-print.html": [ - "9bb953bfa0a9f4a30567ada713300dca4508ef17", + "page-box-000-print.html": [ + "aee317ab9752b33c91bc35d3cca5c57dd2212c9f", [ - "css/css-page/pseudo-first-margin-003-print.html", + null, [ [ - "/css/css-page/pseudo-first-margin-print-ref.html", + "/css/css-page/page-box-000-print-ref.html", "==" ] ], {} ] ], - "pseudo-first-margin-004-print.html": [ - "34183e3b0edc5a5d7cf4235f3d792c06743b2733", + "page-box-001-print.html": [ + "35c2f06c93bfa3f5f162d945393d7acbea1250dc", [ - "css/css-page/pseudo-first-margin-004-print.html", + null, [ [ - "/css/css-page/pseudo-first-margin-print-ref.html", + "/css/css-page/page-box-001-print-ref.html", "==" ] ], {} ] - ] - }, - "css-position": { - "position-fixed-overflow-print.html": [ - "cf5cf2ea530d7bec477e640356d4e3f2dac42f89", + ], + "page-box-002-print.html": [ + "3b87b6903dd321b1c56df812b6ef1458c3c4a8ce", [ null, [ [ - "/css/css-position/position-fixed-overflow-print-ref.html", + "/css/css-page/page-box-002-print-ref.html", "==" ] ], {} ] ], - "position-fixed-video-controls-print.html": [ - "685762c377ac3a4ca65035f3578e58c6275ac63e", + "page-box-003-print.html": [ + "44cc13555b543b8a4d9db28dcac6282438f74c51", [ null, [ [ - "/css/reference/blank.html", - "!=" + "/css/css-page/page-box-003-print-ref.html", + "==" ] ], {} ] ], - "sticky": { - "position-sticky-offset-print.html": [ - "3954bbcf4418b8af87dca12949efc7e6f59c963e", + "page-box-004-print.html": [ + "91ea66090da1bbe822c3612361543d210daf2f7d", + [ + null, [ - "css/css-position/sticky/position-sticky-offset-print.html", [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] + "/css/css-page/page-box-004-print-ref.html", + "==" + ] + ], + {} ] - } - }, - "css-tables": { - "tfoot-crash-print.html": [ - "00fa0070c507de945ae0653a3f5fcbb4e206185f", + ], + "page-box-005-print.html": [ + "02811b38fea2836dd84bf48f06ff0e2ebf8dc2b6", [ null, [ [ - "/common/blank.html", - "!=" + "/css/css-page/page-box-005-print-ref.html", + "==" ] ], {} ] - ] - }, - "css-values": { - "viewport-units-001-print.html": [ - "3bff494e535b9101a11222a40a382384415eee3f", + ], + "page-box-006-print.html": [ + "eb6c2098978d199cffd697c48979298e335621ad", [ null, [ [ - "/css/css-values/viewport-units-001-print-ref.html", + "/css/css-page/page-box-006-print-ref.html", "==" ] ], {} ] - ] - }, - "printing": { - "animated-image-print.html": [ - "7c7665366d4585a74a15b35bf869ec6a839e58a0", + ], + "page-box-007-print.html": [ + "2ed198b32ef540c37af6f965da9db33afff526b1", [ null, [ [ - "/css/reference/blank.html", - "!=" + "/css/css-page/page-box-007-print-ref.html", + "==" ] ], {} ] ], - "animations-print.html": [ - "8839fd971e09a8cd245665cef8d01ba5bb766db6", + "page-box-008-print.html": [ + "c05f0e24af08b0e497de5a91ae869315e82092c0", [ null, [ [ - "/css/printing/animations-print-ref.html", + "/css/css-page/page-box-008-print-ref.html", "==" ] ], {} ] ], - "animations-shadow-print.html": [ - "0e80e9c45c5a284f745a176fe94e2dc28fe7522e", + "page-box-009-print.html": [ + "dc9ced3bdf9ea7cdc23988a9fc3fba1420262300", [ null, [ [ - "/css/printing/animations-shadow-print-ref.html", + "/css/css-page/page-box-009-print-ref.html", "==" ] ], {} ] ], - "background-image-print.html": [ - "8d294107406e902bae7b368a8e34100221cea2d2", + "page-box-010-print.html": [ + "66e192a14e84238d99e57159dc04ccd8bfea24a4", [ null, [ [ - "/css/printing/background-image-print-ref.html", + "/css/css-page/page-box-010-print-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 3 - ], - [ - 0, - 400 - ] - ] - ] + {} + ] + ], + "page-left-right-001-print.html": [ + "044696fcca27ec7ebe18edab3053dfbb65af6bbc", + [ + null, + [ + [ + "/css/css-page/page-left-right-001-print-ref.html", + "==" ] - } + ], + {} ] ], - "emoji-print.html": [ - "689c337acba6f84d088b3e8ed5cffe9c3ef6dd5c", + "page-left-right-002-print.html": [ + "59e23479e6f28b64e6c55b502000d3622a15bca7", [ - "css/printing/emoji-print.html", + null, [ [ - "/css/reference/blank.html", - "!=" + "/css/css-page/page-left-right-002-print-ref.html", + "==" ] ], {} ] ], - "existing-transition-in-media-print.tentative.html": [ - "3b83bdd5b08a58ae72ba2d794d1bc9e73977c7ed", + "page-margin-001-print.html": [ + "c59b3c642760b3eeb548fad799ed147b77e27ff2", [ null, [ [ - "/css/printing/transition-in-media-print-ref.html", + "/css/css-page/page-margin-001-print-ref.html", "==" ] ], {} ] ], - "fixedpos-001-print.html": [ - "04feb96e8474bb638254bc0babc22fa378178f48", + "page-margin-002-print.html": [ + "944d7efcfd08fbd2508d4d8d78e9dbb30c210487", [ - "css/printing/fixedpos-001-print.html", + null, [ [ - "/css/printing/fixedpos-001-print-ref.html", + "/css/css-page/page-margin-002-print-ref.html", "==" ] ], {} ] ], - "fixedpos-002-print.html": [ - "c23c6be7d2a3bd2416b7c2765cd7654869918d54", + "page-margin-003-print.html": [ + "e7410c02e09b595ee39ab0dd0ed162827d2469c7", [ - "css/printing/fixedpos-002-print.html", + null, [ [ - "/css/printing/fixedpos-002-print-ref.html", + "/css/css-page/page-margin-003-print-ref.html", "==" ] ], {} ] ], - "fixedpos-003-print.html": [ - "1b06257175fe3bc93a9205bbaa4c6ee38a778e9f", + "page-margin-004-print.html": [ + "cb9343dcf17b69fb5c52d2bef830f260798092c5", [ - "css/printing/fixedpos-003-print.html", + null, [ [ - "/css/printing/fixedpos-003-print-ref.html", + "/css/css-page/page-margin-004-print-ref.html", "==" ] ], {} ] ], - "fixedpos-004-print.html": [ - "c138e9cd6aa591657f65cd80859a8e9e4f33e132", + "page-margin-005-print.html": [ + "8ca80bc69724ee8f8b1801af2b08d4ac923466a1", [ - "css/printing/fixedpos-004-print.html", + null, [ [ - "/css/printing/fixedpos-004-print-ref.html", + "/css/css-page/page-margin-005-print-ref.html", "==" ] ], {} ] ], - "fixedpos-005-print.html": [ - "0a2edc71788aaa76305f1d17951e5499418709bd", + "page-margin-006-print.html": [ + "43621acf80920276c11349e4f3677ee03c6204ca", [ - "css/printing/fixedpos-005-print.html", + null, [ [ - "/css/printing/fixedpos-005-print-ref.html", + "/css/css-page/page-margin-006-print-ref.html", "==" ] ], {} ] ], - "fixedpos-006-print.html": [ - "2386c166c81363a904c3e11dfac7dec4e0241029", + "page-margin-007-print.html": [ + "c2045d0dac22111a4e1ee209cc9b7cec86a5efd2", [ - "css/printing/fixedpos-006-print.html", + null, [ [ - "/css/printing/fixedpos-006-print-ref.html", + "/css/css-page/page-margin-007-print-ref.html", "==" ] ], {} ] ], - "fixedpos-007-print.html": [ - "8dcb700b96d89c508f9e6696292c79a382a472a2", + "page-margin-auto-and-non-zero-print.html": [ + "6287c2a1032c791d78fa9fb64f99e1c4335f1543", [ - "css/printing/fixedpos-007-print.html", + null, [ [ - "/css/printing/fixedpos-007-print-ref.html", + "/css/css-page/page-margin-auto-and-non-zero-print-ref.html", "==" ] ], {} ] ], - "fixedpos-008-print.html": [ - "02b5d63cc7cd500e8dafa2d7a7e966d2dc90c521", + "page-margin-auto-negative-print.tentative.html": [ + "452056a1003e7b9d7a56601e72683d3d6f60f2a0", [ - "css/printing/fixedpos-008-print.html", + null, [ [ - "/css/printing/fixedpos-008-print-ref.html", + "/css/css-page/page-margin-auto-negative-print-ref.tentative.html", "==" ] ], {} ] ], - "fixedpos-with-abspos-with-link-print.html": [ - "057ddc91460264bbef9bb36fa7be8d89f6d6458e", + "page-margin-auto-print.html": [ + "1c94ec4e4980cb3a8297920a94b82d24b837975c", [ - "css/printing/fixedpos-with-abspos-with-link-print.html", + null, [ [ - "/css/printing/fixedpos-with-abspos-with-link-print-ref.html", + "/css/css-page/page-margin-auto-print-ref.html", "==" ] ], {} ] ], - "fixedpos-with-iframe-print.html": [ - "5102d045c4202e4bc22c6c876fd3bbbcf620c4b0", + "page-margin-negative-print.tentative.html": [ + "205a13f7a589ff0403641fc3f5c8d391cf209043", [ - "css/printing/fixedpos-with-iframe-print.html", + null, [ [ - "/css/printing/fixedpos-with-iframe-print-ref.html", + "/css/css-page/page-margin-negative-print-ref.tentative.html", "==" ] ], {} ] ], - "fixedpos-with-link-with-inline-child-print.html": [ - "694e5376cbfab7ee52c1f27b9bf0fd23a2a91375", + "page-name-000-print.html": [ + "f01d5cac48cb6291cef35b79605d708f9e61835b", [ - "css/printing/fixedpos-with-link-with-inline-child-print.html", + null, [ [ - "/css/printing/fixedpos-with-link-with-inline-child-print-ref.html", + "/css/css-page/page-name-000-print-ref.html", "==" ] ], {} ] ], - "fragmented-inline-block-001-print.html": [ - "848635431ecfc5ae3835cdc1f8398b1c04c95ed9", + "page-name-001-print.html": [ + "9427db4fe730e645430e1c5a57bfd34b45bf4582", [ null, [ [ - "/css/reference/blank.html", - "!=" + "/css/css-page/page-name-001-ref.html", + "==" ] ], - { - "page_ranges": { - "/css/printing/fragmented-inline-block-001-print.html": [ - [ - 10 - ] - ] - } - } + {} ] ], - "fragmented-inline-block-002-print.html": [ - "c5390aad6c09085b76ffb2d5355f7f4a2def001d", + "page-name-002-print.html": [ + "060b93b0bf9ac4fbe380810f3e5dc981faa645a2", [ null, [ [ - "/css/printing/fragmented-inline-block-002-print-ref.html", + "/css/css-page/page-name-002-print-ref.html", "==" ] ], {} ] ], - "input-file-print.html": [ - "a0700244632712c2453d62fd79e49344b7c73f0f", + "page-name-003-print.html": [ + "9ef4db8c7541bb97371bf819398131ca85a2b32a", [ null, [ [ - "/css/printing/input-file-print-ref.html", + "/css/css-page/page-name-003-print-ref.html", "==" ] ], {} ] ], - "media-queries-001-print.html": [ - "01b2a00e470263b6371313b5107c7add544d858c", + "page-name-abspos-001-print.html": [ + "df2f61493580c3273de0f77143a2cba86074f215", [ - "css/printing/media-queries-001-print.html", + null, [ [ - "/css/printing/media-queries-001-print-ref.html", + "/css/css-page/page-name-abspos-001-print-ref.html", "==" ] ], {} ] ], - "media-queries-002-print.html": [ - "5f71f3d17a762a770d971fdc59b4765910b5b815", + "page-name-abspos-002-print.html": [ + "f0accb36c2e8124cf6e9cb595901b82c1273bee1", [ - "css/printing/media-queries-002-print.html", + null, [ [ - "/css/printing/reference/filled-green-100px-square-print-ref.html", + "/css/css-page/page-name-abspos-002-print-ref.html", "==" ] ], {} ] ], - "media-queries-003-print.html": [ - "2c125296ad28772c004a32e0a4329341b32e045a", + "page-name-abspos-003-print.html": [ + "0361f669ca989e2ae023b2103eb765a53d233a39", [ - "css/printing/media-queries-003-print.html", + null, [ [ - "/css/printing/media-queries-003-print-ref.html", + "/css/css-page/page-name-abspos-003-print-ref.html", "==" ] ], {} ] ], - "monolithic-overflow-001-print.html": [ - "f4121c3422582aad0bf12837270e696d06e68555", + "page-name-and-break-001-print.html": [ + "04de5f7073b64fdb84fccc24e9b1fff9d85c9954", [ - "css/printing/monolithic-overflow-001-print.html", + null, [ [ - "/css/printing/monolithic-overflow-001-print-ref.html", + "/css/css-page/page-name-and-break-print-ref.html", "==" ] ], {} ] ], - "monolithic-overflow-002-print.html": [ - "8f76af16a9ea7a9a53d142d655d59c43100346d0", + "page-name-and-break-002-print.html": [ + "3dd755b027888a0b947b5c00d178bf8f24c6c731", [ - "css/printing/monolithic-overflow-002-print.html", + null, [ [ - "/css/printing/monolithic-overflow-002-print-ref.html", + "/css/css-page/page-name-and-break-print-ref.html", "==" ] ], {} ] ], - "monolithic-overflow-003-print.html": [ - "76905b180a1232597b28c05ee3aac45690de13fa", + "page-name-and-break-003-print.html": [ + "b7e8a20e1d0057e5f1aff86cc6bde06f43695bf2", [ - "css/printing/monolithic-overflow-003-print.html", + null, [ [ - "/css/printing/reference/monolithic-overflow-4-pages-print-ref.html", + "/css/css-page/page-name-and-break-print-ref.html", "==" ] ], {} ] ], - "monolithic-overflow-004-print.html": [ - "ea5a659bd8416a46fa3c2d1c69b68f7ea7f158bb", + "page-name-and-break-004-print.html": [ + "2e252ea4eb5aeb7fd2bc0fa28131a36a5215d64a", [ - "css/printing/monolithic-overflow-004-print.html", + null, [ [ - "/css/printing/reference/monolithic-overflow-4-pages-print-ref.html", + "/css/css-page/page-name-and-break-print-ref.html", "==" ] ], {} ] ], - "monolithic-overflow-005-print.html": [ - "bb0fc212fc0d8940363e7de9d1a3771fd90f2c57", + "page-name-canvas-001-print.html": [ + "64b879efbbc4baa3fa61e9ab10a61d1abd983b82", [ - "css/printing/monolithic-overflow-005-print.html", + null, [ [ - "/css/printing/reference/monolithic-overflow-4-pages-print-ref.html", + "/css/css-page/page-name-canvas-001-print-ref.html", "==" ] ], {} ] ], - "monolithic-overflow-006-print.html": [ - "1cbcdbbe1e5a036a6eae8408731a15028aaae125", + "page-name-canvas-002-print.html": [ + "7a1bc7d9a00a4cb73da45fc50e0f16236e9f9082", [ - "css/printing/monolithic-overflow-006-print.html", + null, [ [ - "/css/printing/reference/monolithic-overflow-4-pages-print-ref.html", + "/css/css-page/page-name-canvas-002-print-ref.html", "==" ] ], {} ] ], - "monolithic-overflow-007-print.html": [ - "14a6f051fec8489d957b14639bc3ccfcb0b644bd", + "page-name-canvas-003-print.html": [ + "cbebc42153f9e7b04b87307f34cdfb36ada5d1e3", [ - "css/printing/monolithic-overflow-007-print.html", + null, [ [ - "/css/printing/reference/monolithic-overflow-4-pages-print-ref.html", + "/css/css-page/page-name-canvas-003-print-ref.html", "==" ] ], {} ] ], - "monolithic-overflow-008-print.html": [ - "ff302dc30caa1999f9e09168feb5ac56c08af552", + "page-name-canvas-004-print.html": [ + "6343a509262d5c0d6e217e924f5009439206332c", [ - "css/printing/monolithic-overflow-008-print.html", + null, [ [ - "/css/printing/reference/monolithic-overflow-4-pages-print-ref.html", + "/css/css-page/page-name-canvas-004-print-ref.html", "==" ] ], {} ] ], - "monolithic-overflow-009-print.html": [ - "bdff66e791c0fde0065578e1179085e76297d1d4", + "page-name-display-none-child-print.html": [ + "f42aae35c0a5093ae7c561d717ede2eb22a66a76", [ - "css/printing/monolithic-overflow-009-print.html", + null, [ [ - "/css/printing/reference/monolithic-overflow-4-pages-print-ref.html", + "/css/css-page/page-name-display-none-child-print-ref.html", "==" ] ], {} ] ], - "monolithic-overflow-010-print.html": [ - "a75c932d30b4133244ccfd7f695ff03a4870b3c3", + "page-name-fixed-pos-001-print.html": [ + "495c66ce2e8f78509b1ec8557e60fd0b1ff962d3", [ - "css/printing/monolithic-overflow-010-print.html", + null, [ [ - "/css/printing/reference/monolithic-overflow-4-pages-print-ref.html", + "/css/css-page/page-name-fixed-pos-001-print-ref.html", "==" ] ], {} ] ], - "monolithic-overflow-011-print.html": [ - "973a3aff4dccd49117247708413bf910b8406518", + "page-name-flex-001-print.html": [ + "9b932e69d2dd89ecb53f7dc5aa7f56169ad3dc99", [ - "css/printing/monolithic-overflow-011-print.html", + null, [ [ - "/css/printing/reference/monolithic-overflow-4-pages-print-ref.html", + "/css/css-page/page-name-flex-001-print-ref.html", "==" ] ], {} ] ], - "monolithic-overflow-012-print.html": [ - "53ed74bc7289cffacd1ec7f34b9d4e14060de6b5", + "page-name-flex-002-print.html": [ + "a25e22d6fbd364e9d05421b09447af7f0f2be171", [ - "css/printing/monolithic-overflow-012-print.html", + null, [ [ - "/css/printing/monolithic-overflow-012-print-ref.html", + "/css/css-page/page-name-flex-002-print-ref.html", "==" ] ], {} ] ], - "monolithic-overflow-013-print.html": [ - "b9a174879d77d139688031724fa1b1a5093e78d3", + "page-name-flex-003-print.html": [ + "2cfbb6fb7cacd74f23944308b889c8597456388a", [ - "css/printing/monolithic-overflow-013-print.html", + null, [ [ - "/css/printing/monolithic-overflow-013-print-ref.html", + "/css/css-page/page-name-flex-003-print-ref.html", "==" ] ], {} ] ], - "monolithic-overflow-014-print.html": [ - "d12ddf4c6847ed3b6ac980e4c327ae4b77a7d148", + "page-name-flex-004-print.html": [ + "aa20ad1cb7d2ab60490086a81120c1c6a9d18fbb", [ - "css/printing/monolithic-overflow-014-print.html", + null, [ [ - "/css/printing/monolithic-overflow-014-print-ref.html", + "/css/css-page/page-name-flex-004-print-ref.html", "==" ] ], {} ] ], - "monolithic-overflow-015-print.html": [ - "d52605605c93eece74a0c4e78669aeb5a8ffbbdb", + "page-name-float-001-print.html": [ + "4233bac5c06258603e02fd317eee8b767885c7a8", [ - "css/printing/monolithic-overflow-015-print.html", + null, [ [ - "/css/printing/monolithic-overflow-015-print-ref.html", + "/css/css-page/page-name-float-001-print-ref.html", "==" ] ], {} ] ], - "monolithic-overflow-016-print.html": [ - "029523e924afb21bf190420f95062214127fae61", + "page-name-float-002-print.html": [ + "db4f0b28ce0c4f5b238f29b2211275b2eab4db4f", [ - "css/printing/monolithic-overflow-016-print.html", + null, [ [ - "/css/printing/monolithic-overflow-016-print-ref.html", + "/css/css-page/page-name-float-002-print-ref.html", "==" ] ], {} ] ], - "monolithic-overflow-017-print.html": [ - "c8ce9060fffcee8a79f265e1182e0c0cd9c2e7ae", + "page-name-img-001-print.html": [ + "7864b869d9c40facd642ec503b750b636fbab13f", [ - "css/printing/monolithic-overflow-017-print.html", + null, [ [ - "/css/printing/monolithic-overflow-017-print-ref.html", + "/css/css-page/page-name-img-001-print-ref.html", "==" ] ], {} ] ], - "monolithic-overflow-018-print.html": [ - "93da11dc62e73e2a98a275ec71f56579e1f1a604", + "page-name-img-002-print.html": [ + "3857986ca94cf8fbef558ab73e8b210de3e2c2b5", [ - "css/printing/monolithic-overflow-018-print.html", + null, [ [ - "/css/printing/monolithic-overflow-018-print-ref.html", + "/css/css-page/page-name-img-002-print-ref.html", "==" ] ], {} ] ], - "monolithic-overflow-019-print.html": [ - "3740b5d5b0b954f403954e2120db6a0ca32ce1c5", + "page-name-img-003-print.html": [ + "26790f0e7a3f51c39368662ed33d4bc1833e3686", [ - "css/printing/monolithic-overflow-019-print.html", + null, [ [ - "/css/printing/monolithic-overflow-019-print-ref.html", + "/css/css-page/page-name-img-003-print-ref.html", "==" ] ], {} ] ], - "monolithic-overflow-020-print.html": [ - "403d932d643b81a620df3eba64156d1431d14579", + "page-name-img-004-print.html": [ + "13fbeb01b5c377fcb91fc900bf289b8c9636cf01", [ - "css/printing/monolithic-overflow-020-print.html", + null, [ [ - "/css/printing/monolithic-overflow-020-print-ref.html", + "/css/css-page/page-name-img-004-print-ref.html", "==" ] ], {} ] ], - "monolithic-overflow-021-print.html": [ - "584c4943dcf16e1713c93a6b482b858076163842", + "page-name-inline-block-001-print.html": [ + "365a24146a4c3cc70ce65eb558846dc24306027b", [ - "css/printing/monolithic-overflow-021-print.html", + null, [ [ - "/css/printing/monolithic-overflow-021-print-ref.html", + "/css/css-page/page-name-inline-block-001-print-ref.html", "==" ] ], {} ] ], - "monolithic-overflow-022-print.html": [ - "d37c74ad8ac33a3f767e962dee71858f491c0071", + "page-name-inline-block-002-print.html": [ + "cb65afa924bb5490efa25f2ebd437fb6b18d138c", [ - "css/printing/monolithic-overflow-022-print.html", + null, [ [ - "/css/printing/monolithic-overflow-022-print-ref.html", + "/css/css-page/page-name-inline-block-002-print-ref.html", "==" ] ], {} ] ], - "monolithic-overflow-023-print.html": [ - "c047d4865751892503c5b8341b5c3a79eb7ad5f5", + "page-name-inline-block-003-print.html": [ + "994f506999aa4092d330c4c761220c666185a187", [ - "css/printing/monolithic-overflow-023-print.html", + null, [ [ - "/css/printing/monolithic-overflow-023-print-ref.html", + "/css/css-page/page-name-inline-block-003-print-ref.html", "==" ] ], {} ] ], - "monolithic-overflow-024-print.html": [ - "6153bc98ae0534573817663c232fb4dbadf10116", + "page-name-margin-001-print.html": [ + "9514339e4545d3100d5abf1a7a5736b01a188167", [ - "css/printing/monolithic-overflow-024-print.html", + null, [ [ - "/css/printing/monolithic-overflow-024-print-ref.html", + "/css/css-page/page-name-margin-001-print-ref.html", "==" ] ], {} ] ], - "monolithic-overflow-025-print.html": [ - "3fefbc37e2ecd38e2a88847c9132c49398d322fe", + "page-name-margin-002-print.html": [ + "0ab67f306927dca60147d4fd30f9417a8ee5e590", [ - "css/printing/monolithic-overflow-025-print.html", + null, [ [ - "/css/printing/monolithic-overflow-025-print-ref.html", + "/css/css-page/page-name-margin-002-print-ref.html", "==" ] ], {} ] ], - "monolithic-overflow-026-print.html": [ - "966391e43bbc015075eee64c6203641157ac7059", + "page-name-orthogonal-writing-001-print.html": [ + "c84b3e5ee96ac0c4ce139c150a8fa412e0bef9c1", [ - "css/printing/monolithic-overflow-026-print.html", + null, [ [ - "/css/printing/monolithic-overflow-026-print-ref.html", + "/css/css-page/page-name-orthogonal-writing-001-print-ref.html", "==" ] ], {} ] ], - "negative-overflow-print.html": [ - "158fecc5f69d6fb25b355993c55885d3ee3f82de", + "page-name-orthogonal-writing-002-print.html": [ + "a720090ba6e9301e5a3bbd8150f29634f536a974", [ - "css/printing/negative-overflow-print.html", + null, [ [ - "/css/printing/negative-overflow-print-ref.html", + "/css/css-page/page-name-orthogonal-writing-002-print-ref.html", "==" ] ], {} ] ], - "no-resize-event-print.html": [ - "85a44b556cd263d1026f3e6a83b6bfa97263400e", + "page-name-orthogonal-writing-003-print.html": [ + "6d24c324081c013dd2d83dee8a175ccae06e3f2d", [ - "css/printing/no-resize-event-print.html", + null, [ [ - "/css/printing/no-resize-event-ref.html", + "/css/css-page/page-name-orthogonal-writing-003-print-ref.html", "==" ] ], {} ] ], - "page-margin-001-print.html": [ - "c59b3c642760b3eeb548fad799ed147b77e27ff2", + "page-name-orthogonal-writing-004-print.html": [ + "8e6176584ddb7d7b64802eb79bf4cbee4fdfceae", [ - "css/printing/page-margin-001-print.html", + null, [ [ - "/css/printing/page-margin-001-print-ref.html", + "/css/css-page/page-name-orthogonal-writing-004-print-ref.html", "==" ] ], {} ] ], - "page-margin-002-print.html": [ - "944d7efcfd08fbd2508d4d8d78e9dbb30c210487", + "page-name-propagated-001-print.html": [ + "3efaf7695bebd91a5c0897249dcbc3ec58646162", [ - "css/printing/page-margin-002-print.html", + null, [ [ - "/css/printing/page-margin-002-print-ref.html", + "/css/css-page/page-name-propagated-001-print-ref.html", "==" ] ], {} ] ], - "page-margin-003-print.html": [ - "e7410c02e09b595ee39ab0dd0ed162827d2469c7", + "page-name-propagated-002-print.html": [ + "d88596c1225838701deb42efe22100cf0166256c", [ - "css/printing/page-margin-003-print.html", + null, [ [ - "/css/printing/page-margin-003-print-ref.html", + "/css/css-page/page-name-propagated-002-print-ref.html", "==" ] ], {} ] ], - "page-margin-004-print.html": [ - "cb9343dcf17b69fb5c52d2bef830f260798092c5", + "page-name-propagated-003-print.html": [ + "969bbe6e2d976c022ac464dd0c94849f3dbe5cad", [ - "css/printing/page-margin-004-print.html", + null, [ [ - "/css/printing/page-margin-004-print-ref.html", + "/css/css-page/page-name-propagated-003-print-ref.html", "==" ] ], {} ] ], - "page-margin-005-print.html": [ - "8ca80bc69724ee8f8b1801af2b08d4ac923466a1", + "page-name-propagated-004-print.html": [ + "49600ef6d5fd908b36db947ae2f6b157cdc1fb71", [ - "css/printing/page-margin-005-print.html", + null, [ [ - "/css/printing/page-margin-005-print-ref.html", + "/css/css-page/page-name-propagated-004-print-ref.html", "==" ] ], {} ] ], - "page-margin-006-print.html": [ - "43621acf80920276c11349e4f3677ee03c6204ca", + "page-name-propagated-005-print.html": [ + "12bd274f2fcd7ac926d4923d274cd6f25b8741c6", [ - "css/printing/page-margin-006-print.html", + null, [ [ - "/css/printing/page-margin-006-print-ref.html", + "/css/css-page/page-name-propagated-005-print-ref.html", "==" ] ], {} ] ], - "page-name-001-print.html": [ - "56281bb4ed5f8b3e34401420b10504ed6c0e00fd", + "page-name-propagated-006-print.html": [ + "18be3827ce22609ac2ace1ee435023f1d151e103", [ - "css/printing/page-name-001-print.html", + null, [ [ - "/css/printing/page-name-001-print-ref.html", + "/css/css-page/page-name-propagated-006-print-ref.html", "==" ] ], {} ] ], - "page-name-002-print.html": [ - "060b93b0bf9ac4fbe380810f3e5dc981faa645a2", + "page-name-propagated-007-print.html": [ + "c27ad9f3263e8bf82814f7abee6bc76c08fd2f3d", [ - "css/printing/page-name-002-print.html", + null, [ [ - "/css/printing/page-name-002-print-ref.html", + "/css/css-page/page-name-propagated-007-print-ref.html", "==" ] ], {} ] ], - "page-name-003-print.html": [ - "9ef4db8c7541bb97371bf819398131ca85a2b32a", + "page-name-propagated-008-print.html": [ + "3f7fab4caa4f51853f7cc5e95f6a3fd884fc1430", [ - "css/printing/page-name-003-print.html", + null, [ [ - "/css/printing/page-name-003-print-ref.html", + "/css/css-page/page-name-propagated-008-print-ref.html", "==" ] ], {} ] ], - "page-name-and-break-001-print.html": [ - "04de5f7073b64fdb84fccc24e9b1fff9d85c9954", + "page-name-propagated-009-print.html": [ + "eb0d1dbe89095037882e7e11da0c380e591081fd", [ - "css/printing/page-name-and-break-001-print.html", + null, [ [ - "/css/printing/page-name-and-break-print-ref.html", + "/css/css-page/page-name-propagated-009-print-ref.html", "==" ] ], {} ] ], - "page-name-and-break-002-print.html": [ - "3dd755b027888a0b947b5c00d178bf8f24c6c731", + "page-name-siblings-001-print.html": [ + "b4fa8457e7b6791fc59b88742e1dd2e27375d5f4", [ - "css/printing/page-name-and-break-002-print.html", + null, [ [ - "/css/printing/page-name-and-break-print-ref.html", + "/css/css-page/page-name-siblings-print-ref.html", "==" ] ], {} ] ], - "page-name-and-break-003-print.html": [ - "b7e8a20e1d0057e5f1aff86cc6bde06f43695bf2", + "page-name-siblings-002-print.html": [ + "28f5e0b571753fafbf77c747e9fc9096752b3295", [ - "css/printing/page-name-and-break-003-print.html", + null, [ [ - "/css/printing/page-name-and-break-print-ref.html", + "/css/css-page/page-name-siblings-print-ref.html", "==" ] ], {} ] ], - "page-name-and-break-004-print.html": [ - "2e252ea4eb5aeb7fd2bc0fa28131a36a5215d64a", + "page-name-siblings-003-print.html": [ + "44346a649ffb73c77a6fb506073b509f65f3d9ac", [ - "css/printing/page-name-and-break-004-print.html", + null, [ [ - "/css/printing/page-name-and-break-print-ref.html", + "/css/css-page/page-name-siblings-print-ref.html", "==" ] ], {} ] ], - "page-overflow-crash-print.html": [ - "e295c569d2d634867bab43741baf23c905918fc3", + "page-name-siblings-004-print.html": [ + "51e12ba2518e103d65081ef058fef89bc752933c", [ null, [ [ - "/css/reference/blank.html", + "/css/css-page/page-name-siblings-print-ref.html", + "==" + ] + ], + {} + ] + ], + "page-name-siblings-005-print.html": [ + "9ad77ad5dca24d532bb2f9ca08fcc237fb1316e7", + [ + null, + [ + [ + "/css/css-page/page-name-siblings-print-ref.html", + "==" + ] + ], + {} + ] + ], + "page-name-unnamed-trailing-001-print.html": [ + "61baa23603ff041ce9dce92e6e1f01b9d2a4f086", + [ + null, + [ + [ + "/css/css-page/page-name-unnamed-trailing-001-print-ref.html", + "==" + ] + ], + {} + ] + ], + "page-name-zero-height-001-print.html": [ + "8a108c9b4519dd7ce3e7bce596f670a63054f180", + [ + null, + [ + [ + "/css/css-page/page-name-zero-height-001-print-ref.html", + "==" + ] + ], + {} + ] + ], + "page-orientation-on-landscape-001-print.html": [ + "6832a5537d96aed1b37ec72e18ef6aa102646471", + [ + null, + [ + [ + "/css/css-page/page-orientation-portrait-ref.html", + "==" + ] + ], + { + "page_ranges": { + "/css/css-page/page-orientation-on-landscape-001-print.html": [ + [ + 2 + ] + ] + } + } + ] + ], + "page-orientation-on-portrait-001-print.html": [ + "5ab3e1edfd1a260c8fa9c516d1357ed3a4238147", + [ + null, + [ + [ + "/css/css-page/page-orientation-landscape-ref.html", + "==" + ] + ], + { + "page_ranges": { + "/css/css-page/page-orientation-on-portrait-001-print.html": [ + [ + 2 + ] + ] + } + } + ] + ], + "page-orientation-on-portrait-002-print.html": [ + "51b4a980fbdf631aa46f857e03939ab5acd702ac", + [ + null, + [ + [ + "/css/css-page/page-orientation-on-portrait-002-notref.html", "!=" ] ], {} ] ], + "page-orientation-on-portrait-003-print.html": [ + "9cf505bbd9798a9f9404a69c1e052bab45ca34a2", + [ + null, + [ + [ + "/css/css-page/page-orientation-on-portrait-003-notref.html", + "!=" + ] + ], + {} + ] + ], + "page-orientation-on-square-001-print.html": [ + "06e4f00d3c43fed651f958d6ccf578e4ca717f99", + [ + null, + [ + [ + "/css/css-page/page-orientation-square-ref.html", + "==" + ] + ], + { + "page_ranges": { + "/css/css-page/page-orientation-on-square-001-print.html": [ + [ + 2 + ] + ] + } + } + ] + ], + "page-rule-specificity-001-print.html": [ + "dc28ad75db381a3297080bd867397a0f51a30220", + [ + null, + [ + [ + "/css/css-page/page-rule-specificity-print-landscape-ref.html", + "==" + ] + ], + { + "page_ranges": { + "/css/css-page/page-rule-specificity-001-print.html": [ + [ + 2 + ] + ] + } + } + ] + ], + "page-rule-specificity-002-print.html": [ + "01d9b2b92d8e0175981520aad9706708dd2edff8", + [ + null, + [ + [ + "/css/css-page/page-rule-specificity-print-landscape-ref.html", + "==" + ] + ], + { + "page_ranges": { + "/css/css-page/page-rule-specificity-002-print.html": [ + [ + 2 + ] + ] + } + } + ] + ], + "page-rule-specificity-003-print.html": [ + "eda6c7ee51bdd5ea60a06bdf98e99b384d80ec22", + [ + null, + [ + [ + "/css/css-page/page-rule-specificity-print-portrait-ref.html", + "==" + ] + ], + { + "page_ranges": { + "/css/css-page/page-rule-specificity-003-print.html": [ + [ + 2 + ] + ] + } + } + ] + ], "page-size-001-print.html": [ "19d72b0231f4240206f14564103a61c08008e17d", [ - "css/printing/page-size-001-print.html", + null, [ [ - "/css/printing/page-size-001-print-ref.html", + "/css/css-page/page-size-001-print-ref.html", "==" ] ], @@ -32349,10 +34661,10 @@ "page-size-002-print.html": [ "243c382ca2c50fec306460c04865f83ddaca7c44", [ - "css/printing/page-size-002-print.html", + null, [ [ - "/css/printing/page-size-002-print-ref.html", + "/css/css-page/page-size-002-print-ref.html", "==" ] ], @@ -32362,10 +34674,10 @@ "page-size-003-print.html": [ "805ff0e568a1b52fce857893a7d5a13078559730", [ - "css/printing/page-size-003-print.html", + null, [ [ - "/css/printing/page-size-003-print-ref.html", + "/css/css-page/page-size-003-print-ref.html", "==" ] ], @@ -32375,10 +34687,10 @@ "page-size-004-print.html": [ "125d7636d265c61eb604dc67811efb1d5df572c3", [ - "css/printing/page-size-004-print.html", + null, [ [ - "/css/printing/page-size-004-print-ref.html", + "/css/css-page/page-size-004-print-ref.html", "==" ] ], @@ -32388,10 +34700,10 @@ "page-size-005-print.html": [ "37876ae230edae36fa350657da278037aef00709", [ - "css/printing/page-size-005-print.html", + null, [ [ - "/css/printing/page-size-005-print-ref.html", + "/css/css-page/page-size-005-print-ref.html", "==" ] ], @@ -32401,10 +34713,10 @@ "page-size-006-print.html": [ "1da29d334d7a361c15e9d63718d216d83070df85", [ - "css/printing/page-size-006-print.html", + null, [ [ - "/css/printing/page-size-006-print-ref.html", + "/css/css-page/page-size-006-print-ref.html", "==" ] ], @@ -32414,10 +34726,10 @@ "page-size-007-print.html": [ "50ab2f4d1090e2fac5c26eaf601985e1ad0f7f1e", [ - "css/printing/page-size-007-print.html", + null, [ [ - "/css/printing/page-size-007-print-ref.html", + "/css/css-page/page-size-007-print-ref.html", "==" ] ], @@ -32427,10 +34739,10 @@ "page-size-008-print.html": [ "683bdc3a50a45abbac6cada7ff4863a705262ba5", [ - "css/printing/page-size-008-print.html", + null, [ [ - "/css/printing/page-size-008-print-ref.html", + "/css/css-page/page-size-008-print-ref.html", "==" ] ], @@ -32440,10 +34752,10 @@ "page-size-009-print.html": [ "48ead4eab3896c7b71bad144aeb2e2c518c81ce2", [ - "css/printing/page-size-009-print.html", + null, [ [ - "/css/printing/page-size-009-print-ref.html", + "/css/css-page/page-size-009-print-ref.html", "==" ] ], @@ -32453,10 +34765,10 @@ "page-size-010-print.html": [ "21205e06a0333d494f38b5e6d0f4eda59df46a20", [ - "css/printing/page-size-010-print.html", + null, [ [ - "/css/printing/page-size-010-print-ref.html", + "/css/css-page/page-size-010-print-ref.html", "==" ] ], @@ -32466,10 +34778,49 @@ "page-size-011-print.html": [ "2747605806685fe631ed2e6166f71b7523f40ad1", [ - "css/printing/page-size-011-print.html", + null, + [ + [ + "/css/css-page/page-size-011-print-ref.html", + "==" + ] + ], + {} + ] + ], + "page-size-012-print.html": [ + "737b37cbc3dbe30f83e9cae3eaf4582f5cf2e04d", + [ + null, + [ + [ + "/css/css-page/page-size-012-print-ref.html", + "==" + ] + ], + {} + ] + ], + "page-size-013-print.html": [ + "5768e2d54cb08871755db09c5babf5fa9846b67b", + [ + null, [ [ - "/css/printing/page-size-011-print-ref.html", + "/css/css-page/page-size-013-print-ref.html", + "==" + ] + ], + {} + ] + ], + "page-size-014-print.html": [ + "f224bafaa87a1fd84c2ed5166f830b7f5f0c98d4", + [ + null, + [ + [ + "/css/css-page/page-size-014-print-ref.html", "==" ] ], @@ -32479,36 +34830,62 @@ "page-visibility-hidden-001-print.html": [ "0de5c5ae825f4e84de4f7f82da02c55d4deddcb8", [ - "css/printing/page-visibility-hidden-001-print.html", + null, [ [ - "/css/printing/page-visibility-hidden-001-print-ref.html", + "/css/css-page/page-visibility-hidden-001-print-ref.html", "==" ] ], {} ] ], - "paused-animations-print.html": [ - "03ef1bab3c3430891ed9f37ca913c1339d36e682", + "pseudo-first-margin-001-print.html": [ + "c2c04514f39b0869605ae8bf1b5d3c9ce9435261", [ null, [ [ - "/css/printing/paused-animations-print-ref.html", + "/css/css-page/pseudo-first-margin-print-ref.html", "==" ] ], {} ] ], - "pseudo-animations-print.html": [ - "40585ba2c489459d77c6ddb080ca6bbe36ebb7ea", + "pseudo-first-margin-002-print.html": [ + "a453b6ba32d721aa081f91e3aeda40ff036f6377", [ null, [ [ - "/css/printing/pseudo-animations-print-ref.html", + "/css/css-page/pseudo-first-margin-print-ref.html", + "==" + ] + ], + {} + ] + ], + "pseudo-first-margin-003-print.html": [ + "9bb953bfa0a9f4a30567ada713300dca4508ef17", + [ + null, + [ + [ + "/css/css-page/pseudo-first-margin-print-ref.html", + "==" + ] + ], + {} + ] + ], + "pseudo-first-margin-004-print.html": [ + "34183e3b0edc5a5d7cf4235f3d792c06743b2733", + [ + null, + [ + [ + "/css/css-page/pseudo-first-margin-print-ref.html", "==" ] ], @@ -32516,12 +34893,12 @@ ] ], "remote-origin-iframe-print.html": [ - "aba10a2a39952885caa1a04a08e19ed44b02020f", + "73b3878386f76aaabc8e1318fbbdfe84034742fa", [ - "css/printing/remote-origin-iframe-print.html", + null, [ [ - "/css/printing/remote-origin-iframe-print-ref.html", + "/css/css-page/remote-origin-iframe-print-ref.html", "==" ] ], @@ -32531,10 +34908,10 @@ "root-element-display-none-print.html": [ "d6802f62251a3457858933b4a71b12b7032c4282", [ - "css/printing/root-element-display-none-print.html", + null, [ [ - "/css/printing/reference/blank-print-ref.html", + "/css/css-page/reference/blank-print-ref.html", "==" ] ], @@ -32544,16 +34921,16 @@ "subpixel-page-size-001-print.html": [ "9054cd4513f73edd4a8674a106ba7e6358b2e91b", [ - "css/printing/subpixel-page-size-001-print.html", + null, [ [ - "/css/printing/subpixel-page-size-001-print-ref.html", + "/css/css-page/subpixel-page-size-001-print-ref.html", "==" ] ], { "page_ranges": { - "/css/printing/subpixel-page-size-001-print.html": [ + "/css/css-page/subpixel-page-size-001-print.html": [ [ 2 ] @@ -32565,16 +34942,16 @@ "subpixel-page-size-002-print.html": [ "463cb21f25d7c2acf500d31729508375fa7e4cdf", [ - "css/printing/subpixel-page-size-002-print.html", + null, [ [ - "/css/printing/subpixel-page-size-002-print-ref.html", + "/css/css-page/subpixel-page-size-002-print-ref.html", "==" ] ], { "page_ranges": { - "/css/printing/subpixel-page-size-002-print.html": [ + "/css/css-page/subpixel-page-size-002-print.html": [ [ 2 ] @@ -32582,46 +34959,301 @@ } } ] + ] + }, + "css-position": { + "position-fixed-overflow-print.html": [ + "cf5cf2ea530d7bec477e640356d4e3f2dac42f89", + [ + null, + [ + [ + "/css/css-position/position-fixed-overflow-print-ref.html", + "==" + ] + ], + {} + ] + ], + "position-fixed-video-controls-print.html": [ + "685762c377ac3a4ca65035f3578e58c6275ac63e", + [ + null, + [ + [ + "/css/reference/blank.html", + "!=" + ] + ], + {} + ] + ], + "sticky": { + "position-sticky-offset-print.html": [ + "3954bbcf4418b8af87dca12949efc7e6f59c963e", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ] + } + }, + "css-tables": { + "tfoot-crash-print.html": [ + "00fa0070c507de945ae0653a3f5fcbb4e206185f", + [ + null, + [ + [ + "/common/blank.html", + "!=" + ] + ], + {} + ] + ] + }, + "css-values": { + "viewport-units-001-print.html": [ + "3bff494e535b9101a11222a40a382384415eee3f", + [ + null, + [ + [ + "/css/css-values/viewport-units-001-print-ref.html", + "==" + ] + ], + {} + ] + ] + }, + "printing": { + "animated-image-print.html": [ + "7c7665366d4585a74a15b35bf869ec6a839e58a0", + [ + null, + [ + [ + "/css/reference/blank.html", + "!=" + ] + ], + {} + ] + ], + "animations-print.html": [ + "8839fd971e09a8cd245665cef8d01ba5bb766db6", + [ + null, + [ + [ + "/css/printing/animations-print-ref.html", + "==" + ] + ], + {} + ] + ], + "animations-shadow-print.html": [ + "0e80e9c45c5a284f745a176fe94e2dc28fe7522e", + [ + null, + [ + [ + "/css/printing/animations-shadow-print-ref.html", + "==" + ] + ], + {} + ] + ], + "background-image-print.html": [ + "8d294107406e902bae7b368a8e34100221cea2d2", + [ + null, + [ + [ + "/css/printing/background-image-print-ref.html", + "==" + ] + ], + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 3 + ], + [ + 0, + 400 + ] + ] + ] + ] + } + ] + ], + "emoji-print.html": [ + "689c337acba6f84d088b3e8ed5cffe9c3ef6dd5c", + [ + null, + [ + [ + "/css/reference/blank.html", + "!=" + ] + ], + {} + ] + ], + "existing-transition-in-media-print.tentative.html": [ + "3b83bdd5b08a58ae72ba2d794d1bc9e73977c7ed", + [ + null, + [ + [ + "/css/printing/transition-in-media-print-ref.html", + "==" + ] + ], + {} + ] + ], + "fragmented-inline-block-001-print.html": [ + "848635431ecfc5ae3835cdc1f8398b1c04c95ed9", + [ + null, + [ + [ + "/css/reference/blank.html", + "!=" + ] + ], + { + "page_ranges": { + "/css/printing/fragmented-inline-block-001-print.html": [ + [ + 10 + ] + ] + } + } + ] + ], + "fragmented-inline-block-002-print.html": [ + "c5390aad6c09085b76ffb2d5355f7f4a2def001d", + [ + null, + [ + [ + "/css/printing/fragmented-inline-block-002-print-ref.html", + "==" + ] + ], + {} + ] ], - "transform-001-print.html": [ - "f19b889d07ba01219b14b4a3c11c8ab545d10e20", + "input-file-print.html": [ + "a0700244632712c2453d62fd79e49344b7c73f0f", [ - "css/printing/transform-001-print.html", + null, [ [ - "/css/printing/transform-001-print-ref.html", + "/css/printing/input-file-print-ref.html", "==" ] ], {} ] ], - "transform-002-print.html": [ - "3ab37bf5bd867dac5518a64569af2dcefc797e13", + "negative-overflow-print.html": [ + "158fecc5f69d6fb25b355993c55885d3ee3f82de", [ - "css/printing/transform-002-print.html", + null, [ [ - "/css/printing/transform-002-print-ref.html", + "/css/printing/negative-overflow-print-ref.html", "==" ] ], {} ] ], - "transform-003-print.html": [ - "c8effbb8f35c80bed2fa64f8853e62bd12589fbb", + "no-resize-event-print.html": [ + "85a44b556cd263d1026f3e6a83b6bfa97263400e", [ - "css/printing/transform-003-print.html", + null, [ [ - "/css/printing/transform-003-print-ref.html", + "/css/printing/no-resize-event-ref.html", "==" ] ], {} ] ], + "page-overflow-crash-print.html": [ + "e295c569d2d634867bab43741baf23c905918fc3", + [ + null, + [ + [ + "/css/reference/blank.html", + "!=" + ] + ], + {} + ] + ], + "paused-animations-print.html": [ + "03ef1bab3c3430891ed9f37ca913c1339d36e682", + [ + null, + [ + [ + "/css/printing/paused-animations-print-ref.html", + "==" + ] + ], + {} + ] + ], + "pseudo-animations-print.html": [ + "40585ba2c489459d77c6ddb080ca6bbe36ebb7ea", + [ + null, + [ + [ + "/css/printing/pseudo-animations-print-ref.html", + "==" + ] + ], + {} + ] + ], + "table-overflow-quirks-frameset-crash-print.html": [ + "a79b8149011b3eb3873dbcfb5d27434c25015109", + [ + null, + [ + [ + "/css/reference/blank.html", + "!=" + ] + ], + {} + ] + ], "transition-in-media-print.tentative.html": [ "54bac1f48124a27689dc2f614003d462fe2dd477", [ @@ -32638,7 +35270,7 @@ "zero-size-001-print.tentative.html": [ "98f77a7b8635a688ac6641e1d0bc58290f20f1cc", [ - "css/printing/zero-size-001-print.tentative.html", + null, [ [ "/css/printing/zero-size-print-ref.html", @@ -32651,7 +35283,7 @@ "zero-size-002-print.tentative.html": [ "e243c34e7c01ee2d7de0018582829690c0e4f05e", [ - "css/printing/zero-size-002-print.tentative.html", + null, [ [ "/css/printing/zero-size-print-ref.html", @@ -32664,7 +35296,7 @@ "zero-size-003-print.tentative.html": [ "c514f72360f63bff53e1e249155ac5b321f64b3e", [ - "css/printing/zero-size-003-print.tentative.html", + null, [ [ "/css/printing/zero-size-print-ref.html", @@ -32710,7 +35342,7 @@ "iframe-cross-origin-scaled-print.sub.html": [ "2442563082398c7d563bac0a2a6cce9cefddd136", [ - "html/browsers/windows/iframe-cross-origin-scaled-print.sub.html", + null, [ [ "/html/browsers/windows/iframe-nested-scaled-print-ref.html", @@ -32895,6 +35527,47 @@ {} ] ] + }, + "the-object-element": { + "object-image-display-none-loading-for-print.html": [ + "40158cb3de4cf39b6449b7f28b03cb221ac199d7", + [ + null, + [ + [ + "/html/semantics/embedded-content/the-object-element/object-image-display-none-loading-for-print-ref.html", + "==" + ] + ], + {} + ] + ], + "object-image-only-for-print.html": [ + "b51a1bb1d332d87b30304c1f9faf8b5ce57c5b59", + [ + null, + [ + [ + "/html/semantics/embedded-content/the-object-element/object-image-only-for-print-ref.html", + "==" + ] + ], + {} + ] + ], + "object-svg-only-for-print.html": [ + "7bb804c2e2eda08493fe05bf4ff27431789b6247", + [ + null, + [ + [ + "/html/semantics/embedded-content/the-object-element/object-image-only-for-print-ref.html", + "==" + ] + ], + {} + ] + ] } } } @@ -32996,6 +35669,19 @@ ], {} ] + ], + "reftest_wait_0-print.html": [ + "fec62a3cae00655a95f7bc569d2eb1f43eac6062", + [ + null, + [ + [ + "/infrastructure/reftest/green.html", + "==" + ] + ], + {} + ] ] } }, @@ -33005,7 +35691,7 @@ "animation-timeline-none-with-progress-print.tentative.html": [ "c37c1b95ef531a206a52bdfda1f76694d6ace066", [ - "scroll-animations/css/printing/animation-timeline-none-with-progress-print.tentative.html", + null, [ [ "/scroll-animations/css/printing/animation-timeline-none-with-progress-ref.html", @@ -33047,7 +35733,7 @@ "scroll-timeline-default-print.tentative.html": [ "3f25cc93dba6a6f8c360e416b328f897cab29e99", [ - "scroll-animations/css/printing/scroll-timeline-default-print.tentative.html", + null, [ [ "/scroll-animations/css/printing/scroll-timeline-default-print-ref.html", @@ -33060,7 +35746,7 @@ "scroll-timeline-specified-scroller-print.html": [ "dd4add49b0f0946cfbd5e4889c20ce21086af4d7", [ - "scroll-animations/css/printing/scroll-timeline-specified-scroller-print.html", + null, [ [ "/scroll-animations/css/printing/scroll-timeline-specified-scroller-ref.html", @@ -33093,7 +35779,7 @@ "svg-use-symbol-animateMotion-print.html": [ "aa658117b66be49aa3a9830f2d6d710327383025", [ - "svg/layout/svg-use-symbol-animateMotion-print.html", + null, [ [ "/svg/layout/svg-use-symbol-animateMotion-print-ref.html", @@ -33106,7 +35792,7 @@ "svg-use-symbol-animateTransform-print.html": [ "f979d8317cead2da988d35c20c476a4176ba5f90", [ - "svg/layout/svg-use-symbol-animateTransform-print.html", + null, [ [ "/svg/layout/svg-use-symbol-animateTransform-print-ref.html", @@ -33119,7 +35805,7 @@ "svg-use-symbol-opacity-print.html": [ "339939b0c3de7114a95d0a0721e962733fb851f1", [ - "svg/layout/svg-use-symbol-opacity-print.html", + null, [ [ "/svg/layout/svg-use-symbol-opacity-print-ref.html", @@ -33132,7 +35818,7 @@ "svg-use-symbol-path-print.html": [ "c671a8413af2401727e7adfd79ad1157ad49f7a3", [ - "svg/layout/svg-use-symbol-path-print.html", + null, [ [ "/svg/layout/svg-use-symbol-path-print-ref.html", @@ -33145,7 +35831,7 @@ "svg-use-symbol-width-2-print.html": [ "ec08fd98b4dd9a81929227db8e07df293219fe89", [ - "svg/layout/svg-use-symbol-width-2-print.html", + null, [ [ "/svg/layout/svg-use-symbol-width-print-ref.html", @@ -33418,7 +36104,7 @@ "worklet-animation-with-scroll-timeline-and-display-none.https.html": [ "0bba0039da9e1b1e7e8b849ba56e332084b2e175", [ - "animation-worklet/worklet-animation-with-scroll-timeline-and-display-none.https.html", + null, [ [ "/animation-worklet/worklet-animation-with-scroll-timeline-ref.html", @@ -33431,7 +36117,7 @@ "worklet-animation-with-scroll-timeline-and-overflow-hidden.https.html": [ "c2332bd6ce129455cfb63392df80a5c18909eb12", [ - "animation-worklet/worklet-animation-with-scroll-timeline-and-overflow-hidden.https.html", + null, [ [ "/animation-worklet/worklet-animation-with-scroll-timeline-and-overflow-hidden-ref.html", @@ -33444,7 +36130,7 @@ "worklet-animation-with-scroll-timeline-root-scroller.https.html": [ "60560a938ab61b4a556bc649e4a29daf10c4131d", [ - "animation-worklet/worklet-animation-with-scroll-timeline-root-scroller.https.html", + null, [ [ "/animation-worklet/worklet-animation-with-scroll-timeline-root-scroller-ref.html", @@ -33457,7 +36143,7 @@ "worklet-animation-with-scroll-timeline.https.html": [ "99bd171d92b8acbc7a38854761433ac79af7593d", [ - "animation-worklet/worklet-animation-with-scroll-timeline.https.html", + null, [ [ "/animation-worklet/worklet-animation-with-scroll-timeline-ref.html", @@ -33487,7 +36173,7 @@ "animated-avif-timeout.html": [ "0970c994d34c9624ee07f0f7c44c3f5df93b1321", [ - "avif/animated-avif-timeout.html", + null, [ [ "/avif/animated-avif-timeout-ref.html", @@ -33502,7 +36188,7 @@ "webkit-background-origin-text.html": [ "38dfbc86ba8c2dbffe4f9e424b60ecefb2247168", [ - "compat/webkit-background-origin-text.html", + null, [ [ "/compat/webkit-background-origin-text-ref.html", @@ -33622,7 +36308,7 @@ "webkit-linear-gradient-line-bottom.html": [ "8e840f102552303ecca014768433a7a9977ddd5e", [ - "compat/webkit-linear-gradient-line-bottom.html", + null, [ [ "/compat/green-ref.html", @@ -33651,7 +36337,7 @@ "webkit-linear-gradient-line-left.html": [ "22c2e0b04ce4b007d6f01588e245eefb1ea60933", [ - "compat/webkit-linear-gradient-line-left.html", + null, [ [ "/compat/green-ref.html", @@ -33680,7 +36366,7 @@ "webkit-linear-gradient-line-right.html": [ "68e129d39e4189b1437ca0ef897fc955a5544f1e", [ - "compat/webkit-linear-gradient-line-right.html", + null, [ [ "/compat/green-ref.html", @@ -33709,7 +36395,7 @@ "webkit-linear-gradient-line-top.html": [ "61d205a700480d55b0064bf6e4bba351c5b68625", [ - "compat/webkit-linear-gradient-line-top.html", + null, [ [ "/compat/green-ref.html", @@ -33921,7 +36607,7 @@ ] }, "contenteditable": { - "synthetic-height.tentative.html": [ + "synthetic-height.html": [ "4d466bff412e6de924b9886ef808b49f7ff2b44d", [ null, @@ -34084,7 +36770,7 @@ "abspos-containing-block-initial-007.xht": [ "0b70e1e63e7bd8edf806bfd961ed37124886388f", [ - "css/CSS2/abspos/abspos-containing-block-initial-007.xht", + null, [ [ "/css/CSS2/abspos/abspos-containing-block-initial-007-ref.xht", @@ -34201,7 +36887,7 @@ "static-fixed-inside-abspos.html": [ "e3c3aa450d42505557b1f3eefd0aee8ea63fa4d6", [ - "css/CSS2/abspos/static-fixed-inside-abspos.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -34214,7 +36900,7 @@ "static-inside-inline-block.html": [ "327e8e6dacdeabb4d2d57ab700d80f966ccde76b", [ - "css/CSS2/abspos/static-inside-inline-block.html", + null, [ [ "/css/CSS2/abspos/static-inside-inline-block-ref.html", @@ -35919,7 +38605,7 @@ "background-attachment-applies-to-009.xht": [ "bca1f64bc3f67cddc12cc20ec27bf1682b48b3de", [ - "css/CSS2/backgrounds/background-attachment-applies-to-009.xht", + null, [ [ "/css/CSS2/backgrounds/background-attachment-applies-to-001-ref.xht", @@ -35987,7 +38673,7 @@ "background-attachment-applies-to-015.xht": [ "f23325e0a2807879d4ca8f444869df60f599172d", [ - "css/CSS2/backgrounds/background-attachment-applies-to-015.xht", + null, [ [ "/css/CSS2/backgrounds/background-attachment-applies-to-001-ref.xht", @@ -36029,7 +38715,7 @@ "background-bg-pos-206.xht": [ "c142ea4448dc3f838d72e59fb6487f4a99db97dc", [ - "css/CSS2/backgrounds/background-bg-pos-206.xht", + null, [ [ "/css/CSS2/backgrounds/background-bg-pos-204-ref.xht", @@ -36081,1702 +38767,6 @@ {} ] ], - "background-color-001.xht": [ - "bd952404d74cdd96025fe1fd3403b491b516de7a", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-001-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-002.xht": [ - "f9e7e77eac47a308941407034121932a047a3abb", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-002-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-003.xht": [ - "d804cddc690acf152bb5a37c9f73f3df0fad850e", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-003-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-004.xht": [ - "f08f1a48df9a6857b0348c08b44723703a6c1566", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-004-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-005.xht": [ - "616339f3f8074e5ebd3f49bf2c948c023eb93d3c", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-005-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-006.xht": [ - "137c5917e914a51be5b2e831714da6b32de0bf09", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-006-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-007.xht": [ - "9b0b3e776fa1a5c56a05df675d1a9459576e9b43", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-001-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-008.xht": [ - "ca10f24176bb4c51147df5d31e29acaca4a7eef7", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-001-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-009.xht": [ - "3e61aa61ff2dcffe08059807ecd6cc59fd474078", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-009-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-010.xht": [ - "3939ed5260153e7262ead92378946b0907e215c7", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-010-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-011.xht": [ - "a93623083440b38fb4ce141d53cc5fa577acf471", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-011-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-012.xht": [ - "22979cf43f0932c92c279e63a74b849cd2e774c4", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-012-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-013.xht": [ - "454cf14c3443d5fc3ef65628f76bc026c80be1db", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-013-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-014.xht": [ - "8fb0710baea1ecbe7eccdb26dd24c96b80e7e99c", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-014-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-015.xht": [ - "db83e5bccf6bafb098da2addcd458b3658c20785", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-015-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-016.xht": [ - "362219e26daf9553530a81b2f9d37e7ae90e3275", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-016-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-017.xht": [ - "ea1bace5ab82fd9f3d80e7401f0e7c7f5ad957f8", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-017-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-018.xht": [ - "150ed16267e484f1d1bcce703bf2ef18b1f29c24", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-013-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-019.xht": [ - "5a9863aafaf758134b41110542f7c519ec765469", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-019-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-020.xht": [ - "863be8b6cabfbea8f715414c87adb0c544f27d97", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-020-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-021.xht": [ - "0a7d39c4a89147d1211e219d1e6ae319c2c5322b", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-021-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-022.xht": [ - "3fb3f8a297a67f2f2d3fdc942a69bf569e4b370b", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-022-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-023.xht": [ - "703421aa51ff4313e9d15514e00231e0e2bde829", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-013-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-024.xht": [ - "8bac3c5147bfcc1edeb04ff726a1b59502ccfcba", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-001-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-025.xht": [ - "8a4cb82271b06d57c41faf4af7df6dae66e960e7", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-025-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-026.xht": [ - "7d4ea13bcd76662a5227b5a72bab2358ae3474bc", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-026-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-027.xht": [ - "3aa1c983020b3873fa42eeecfb5cac81a9dd0ce6", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-027-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-028.xht": [ - "1601d98e4091be789270c1fad6fef4377a2524fe", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-028-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-029.xht": [ - "122fa11fcce7e1a74956fbed1f5e477b1e7bb32e", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-029-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-030.xht": [ - "050ad81401d6037963b8157193b89a7c34de9e51", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-001-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-031.xht": [ - "2f70a07272ed04b5769501f728229bbf5e08a5d0", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-001-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-032.xht": [ - "5743e2b8e749541214f71b1982e3e732f286a04e", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-032-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-033.xht": [ - "e6a12193d75fedf25c7c060b56690e7ab394a0ae", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-033-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-034.xht": [ - "278fcfce84365f8f68da3a609ee03bf3bb7cf9be", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-034-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-035.xht": [ - "0c8afb3de1f6ee5454496f65e81d273afffcb721", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-035-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-036.xht": [ - "f9cf11a73b1e39808a4d26c437fd81654273cf0f", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-013-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-037.xht": [ - "32daca17b8270a429fce930834464e9f90024e22", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-037-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-038.xht": [ - "76d4c9cb1fb4ea275572dca1eb64db21f5c04858", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-038-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-039.xht": [ - "944c66c62296b466e6eac0245bc03fca8c305b53", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-039-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-040.xht": [ - "998e8a8902e698818fb206dab15de06c22e3dadd", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-040-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-041.xht": [ - "0ce51cca13bf22f0aa6f9a92891730a73a026894", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-041-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-042.xht": [ - "e8b3157665d2a04f17d793da13d24d89f892698a", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-042-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-043.xht": [ - "cbc4b0033ae15451576eb3bcea1ffa4dd380ac99", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-043-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-044.xht": [ - "a115c6d86d46ef64a7adb008fa90a154680a2c84", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-044-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-045.xht": [ - "4b98028bbaf456564f1d608b04229e44ddb45db2", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-045-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-046.xht": [ - "c32901c8cdaa7ed7d6ed45e102553c0dd007e2d5", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-001-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-047.xht": [ - "d02be6a049aa2eac78460c718b4ace828da663dc", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-002-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-048.xht": [ - "8b2b528230210417a8d9ad3ba2da87623a8f6f32", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-002-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-049.xht": [ - "df0b832c22b58c536f936c1eb8fbde634d7597f5", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-049-020202-ref.xht", - "==" - ], - [ - "/css/CSS2/backgrounds/background-color-049-030303-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-050.xht": [ - "b202b35f80a1be186fd3650bf394fb29bc004d76", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-002-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-051.xht": [ - "558ec9acc9e19464c021f89410357775d341c5e1", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-002-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-052.xht": [ - "f8bc813559dc366a3ac87354dcdff35239b165c0", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-052-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-053.xht": [ - "1ea427b28cc9db176364ae97733c9c44a8263d6e", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-052-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-054.xht": [ - "27b1ea4d075c915f906f07102a5cdb2d135dbd06", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-054-fcfcfc-ref.xht", - "==" - ], - [ - "/css/CSS2/backgrounds/background-color-054-fdfdfd-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-055.xht": [ - "d8a148340fbff576ae333f43e03a0c8e57f271b1", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-006-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-056.xht": [ - "21eccce3d5d4e1a3b41a52b1e3ee936f64ec3880", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-006-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-057.xht": [ - "5645c50bf549ce45f7d03f18d343be173d87d646", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-006-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-058.xht": [ - "020f3fd2d70813c26035411d60e76e0bf6e87a49", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-002-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-059.xht": [ - "d40c24df756317b2ef2133eccc4270ba91d328ad", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-002-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-060.xht": [ - "99d8156ef3d67667308a62a567402b4013c6f678", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-003-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-061.xht": [ - "b0a262ea5a415c10611684fa1c7bd5936e7859a7", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-002-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-062.xht": [ - "17e0cfe63342e692d7fb9522f946787a5a4cec2f", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-002-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-063.xht": [ - "ac2a142808c703ed991f54e9f4e12fcc48b045fc", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-063-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-064.xht": [ - "e5bff1b70dae46eee542e105dd90e74a3297b33d", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-063-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-065.xht": [ - "12118419b89c71721855dfc650b93730947293c3", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-005-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-066.xht": [ - "a35205fb832fe85250a1b1002c09d06a4d0c18ff", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-006-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-067.xht": [ - "4f3f9cbc2335f2befaa91c56c053e514f2a72b30", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-006-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-068.xht": [ - "44087395082528bb5ea9e93545d1ae4e4001babe", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-006-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-069.xht": [ - "d8c1a5991c4a48050c45bd232640707b608d86f9", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-002-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-070.xht": [ - "5982e24d4b6853de0e721f8ed208c62cd4805e63", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-070-020000-ref.xht", - "==" - ], - [ - "/css/CSS2/backgrounds/background-color-070-030000-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-071.xht": [ - "2b04f969d7954cb7fcccd11e5debacfcbcb51de9", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-002-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-072.xht": [ - "b8d56425199c8818a66dba2bf29abf6838d7c17a", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-002-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-073.xht": [ - "3ccae5540b180bda7072b9f755c67812f8a8acd3", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-073-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-074.xht": [ - "c37912b9ddfef61c04f8956a2aa65ebf6636c779", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-073-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-075.xht": [ - "0a1bc875f9fe6a8f90165a0753c5debf14a85601", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-075-fc0000-ref.xht", - "==" - ], - [ - "/css/CSS2/backgrounds/background-color-075-fd0000-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-076.xht": [ - "0dc3c451b11d8a638030b69e244668454432d760", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-012-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-077.xht": [ - "f5a8449a583cea52e0dd393091794549c7cd3c1e", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-012-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-078.xht": [ - "4fd825bd7548f061d2e1b991fbba391f79406988", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-012-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-079.xht": [ - "62a6ad79b43bd4d9e8b41a25adf7669a1ecd5dae", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-002-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-080.xht": [ - "e0a77a7e64ddbc938c89eea35ea1278b9337cf0a", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-009-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-081.xht": [ - "a558636a550f7233a18292228df80b54962f6222", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-002-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-082.xht": [ - "65dccc485f915239fcf5edc2871f0570088eef7f", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-002-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-083.xht": [ - "46a0a56508011ded0fa0df9b088016728bbbd8c8", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-083-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-084.xht": [ - "a25685035c6cf6b7c0823bf3776a88dedb089545", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-083-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-085.xht": [ - "e20926d643b2e8d2f27c137f82d2bea923c71062", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-011-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-086.xht": [ - "95ed2890329ec30bb90daa0a2ddafefec54e3c6a", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-012-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-087.xht": [ - "3b732620618623299283f47f4e3951f1f9498d56", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-012-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-088.xht": [ - "7a4cadfa70e2369bb0a640de4f6aae0ba64ef614", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-012-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-089.xht": [ - "d21b7fe0c1331f5f830e323381147eed0a047031", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-002-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-090.xht": [ - "59f63dde33b405d2e6dc4ec5e26aff09408368f9", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-090-000200-ref.xht", - "==" - ], - [ - "/css/CSS2/backgrounds/background-color-090-000300-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-091.xht": [ - "2d6ce461887b89258497c7b56bcd5fc90b279071", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-002-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-092.xht": [ - "5c9a4e08a077dd70c496ee2ddc2b4f8e2ceb41cd", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-002-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-093.xht": [ - "dae3822cae775b40058544e0dea557a000a603fb", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-093-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-094.xht": [ - "a5b31906b88ba67bf5de735b4607e6c24235580a", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-093-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-095.xht": [ - "ad19592bb80c2139098d720407a01a6df2075179", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-095-00fc00-ref.xht", - "==" - ], - [ - "/css/CSS2/backgrounds/background-color-095-00fd00-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-096.xht": [ - "baa9de190cdc59f0ffaba4e3dc2c5b79e873f6eb", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-017-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-097.xht": [ - "37d949ac4e9f95511bfacbacafba59f74fdc4d6a", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-017-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-098.xht": [ - "7a258faa4c559eb1b14d17b1e09e0ad129f9b89f", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-017-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-099.xht": [ - "c13af740a7568e20087dbcec0762d3c3f1c64428", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-002-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-100.xht": [ - "86544845c941afd9b0f834003a8ca2f64fe1055a", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-014-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-101.xht": [ - "7bb78cedf5c4f33665e45d91ca48ad8a2f34bb58", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-002-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-102.xht": [ - "3ae143328deae7d98b85542476a099303bcd6374", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-002-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-103.xht": [ - "93306085ce2b23022caa6043df778fa5237ff67e", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-103-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-104.xht": [ - "049f2bbf0858c76601a17be466e21089b22b500c", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-103-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-105.xht": [ - "f6847924d037d69739dc3829dbcc3deb15b439ad", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-016-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-106.xht": [ - "9bcabb32d80efcb603dd714b770bfe60b063c86c", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-017-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-107.xht": [ - "b690bfd48693f85f6f477de288de997380af7582", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-017-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-108.xht": [ - "14f2e5664ecf9b4ce24564123d569320c4a3d406", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-017-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-109.xht": [ - "224c8285f93d2b69bc624950b04236a15dc29099", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-002-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-110.xht": [ - "1c298ccc97a57b7a2db1740b16b0f7421315c214", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-110-000002-ref.xht", - "==" - ], - [ - "/css/CSS2/backgrounds/background-color-110-000003-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-111.xht": [ - "b1c1d4a347588e5dc515a35a6cb6ee1dcb0945ad", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-002-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-112.xht": [ - "094c0dbcac92d7dc0d58f77a8ddd348f0ec5fa92", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-002-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-113.xht": [ - "b8245d5476f2c9afa9413ffc393b065c540606c7", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-113-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-114.xht": [ - "cd27c6e5216d586d74ebc084436a6be72c392487", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-113-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-115.xht": [ - "25903e56b768469c70a3ce7030be533f6d4423da", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-115-0000fc-ref.xht", - "==" - ], - [ - "/css/CSS2/backgrounds/background-color-115-0000fd-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-116.xht": [ - "db6901457f7e0ab8c9e670290e0aeec7cc912958", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-022-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-117.xht": [ - "75b7f5b93a88216b11291d2ffd1b3f38ad82d024", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-022-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-118.xht": [ - "f97e581e7adb0dcad9387046f326a1303e6c40ea", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-022-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-119.xht": [ - "f70540f3b5ab43d3517925563ffbbba1fc2acbb5", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-002-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-120.xht": [ - "f220efe5712ef5a9cda1df6e53d2e08dfd548787", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-019-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-121.xht": [ - "0ef996e7672840df14babe863cc277c367344dce", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-002-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-122.xht": [ - "a244421750ec82a294c416cfc18706ee1085b931", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-002-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-123.xht": [ - "c8a7dd9ccf48219e1cf211abb0b3cbf1b2354832", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-123-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-124.xht": [ - "896f2eb2e00c002683435e59a1a82820ad6f2530", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-123-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-125.xht": [ - "8630cfee44d69433c237124e5a8bc8820f2d31e1", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-021-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-126.xht": [ - "4a86576053743c44e13cea952d614eb4cf0fa747", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-022-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-127.xht": [ - "98bc089214e8afe2a5bdc52edc39db4d81361646", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-022-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-128.xht": [ - "b673363127bd6f9c2f4d6901d5e3cb3a708ba3b0", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-022-ref.xht", - "==" - ] - ], - {} - ] - ], "background-color-129.xht": [ "a1d79af99a46587d193f7469089e5d5b9dd9b3ff", [ @@ -37790,214 +38780,6 @@ {} ] ], - "background-color-130.xht": [ - "7373a3f8fb6b0c091758569d231f98db26707305", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-002-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-131.xht": [ - "942862b0e9972e16f1d20594589a99dee072ed4a", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-022-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-132.xht": [ - "898cc691af73d0183573f30cf30fd54b9a8a88e9", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-132-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-133.xht": [ - "06552a649c0b40bb4f3e1bd7823e16178aa45274", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-063-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-134.xht": [ - "08511a73bc5f211a3e012eec16d5dfc3782a9653", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-103-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-135.xht": [ - "64a92f9003fcc32ec4b613d29d31a38e3d961624", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-135-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-136.xht": [ - "a9aed049195d0765658d81744544a9db42da67cb", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-136-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-137.xht": [ - "a965f8cbd2513284846fcf9139e86e1604b1ca9c", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-123-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-138.xht": [ - "e438b2eea3fd0c05160ff18b5ce4cf4cab916382", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-138-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-139.xht": [ - "28f21aeb18f00ad178127e094b089999976e7538", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-139-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-140.xht": [ - "40dd3502142480ef09b60600f0edcb5af848878d", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-140-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-141.xht": [ - "b393f22b43feed6c87c4e3f5c9a2640d4b5d216f", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-012-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-142.xht": [ - "db2aaa463082912d3b44325c15a117cedb8df3a2", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-142-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-143.xht": [ - "b0c0e2e1bc427baa004a688ce93d45a451a5335a", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-143-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-144.xht": [ - "f1668fd6d33ec93b5b51c5817821d3b77bcb14ef", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-006-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-color-145.xht": [ - "3afa2192b835c50e4394c78fe1912ddfdbb3c929", - [ - null, - [ - [ - "/css/CSS2/backgrounds/background-color-145-ref.xht", - "==" - ] - ], - {} - ] - ], "background-color-174.xht": [ "35aa83c6cbe7edfed86f9b08452f02f92726d9b1", [ @@ -38417,7 +39199,7 @@ "background-image-cover-attachment-001.xht": [ "6c1370c1ba1d8ac5795b5b32db1427642550b8d9", [ - "css/CSS2/backgrounds/background-image-cover-attachment-001.xht", + null, [ [ "/css/CSS2/backgrounds/background-image-cover-attachment-001-ref.xht", @@ -42516,2131 +43298,2140 @@ {} ] ], - "border-bottom-color-001.xht": [ - "5214c335c852a5f6833684ecd00247b9ef3b52cb", + "border-bottom-color-129.xht": [ + "f7c6f4e59dbe96b264474c0fb5011d41241bb011", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/CSS2/borders/border-bottom-color-129-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-002.xht": [ - "c52d2aebaea8d0eb766cc00d91e16598ea348c63", + "border-bottom-color-174.xht": [ + "23d915c1f8ca2a96511c8929c09564f061ae0ee9", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-bottom-color-003.xht": [ - "48b032439c3b9d7eb009684d6c538615c5fa7a58", + "border-bottom-color-175.xht": [ + "8fda23b6531ae264414c367ffb433c2c422e2fc9", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-003-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-bottom-color-004.xht": [ - "60d1e4cbf734a789fd028c0537f6a270d03023b3", + "border-bottom-color-applies-to-001.xht": [ + "7b0e9e3ed5cec90637e085cd851687b8c38434af", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-004-ref.xht", + "/css/CSS2/borders/border-bottom-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-005.xht": [ - "c7310c062352ffaeac7e93bbf4113ec1c0d68fd0", + "border-bottom-color-applies-to-002.xht": [ + "1a9d7440733786753573bd0acc530d48bc8e2f66", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-005-ref.xht", + "/css/CSS2/borders/border-bottom-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-006.xht": [ - "fbd7527b5ccf5180a268a1a7349d2249dfde5211", + "border-bottom-color-applies-to-003.xht": [ + "ba581ccbb49e25f9f48b2ea1253c6b25db31a1fd", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-006-ref.xht", + "/css/CSS2/borders/border-bottom-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-007.xht": [ - "d9ae994c826ed7d8354e072156c9bd05fee9816d", + "border-bottom-color-applies-to-004.xht": [ + "540f9a7eaa09926b62ceef950a62f4c0a5f44410", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/borders/border-bottom-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-008.xht": [ - "0f5105d209ebfec36036c461dbce84879ca74438", + "border-bottom-color-applies-to-005.xht": [ + "8ac205e34e672091e35022d9b1bb6ce20098c036", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/borders/border-bottom-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-009.xht": [ - "461e6e273a73be89bf2750a367a7307167211d7f", + "border-bottom-color-applies-to-006.xht": [ + "137fa46aa9a339f9f903c03dbc23ac25118daaed", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-009-ref.xht", + "/css/CSS2/borders/border-bottom-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-010.xht": [ - "990f57bc7478421c9013d2e7cce4e9306cf9abcb", + "border-bottom-color-applies-to-007.xht": [ + "620696c0d6e76b3dbb5f735ed03bbfebdcf11d91", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-010-ref.xht", + "/css/CSS2/borders/border-bottom-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-011.xht": [ - "94ee90e473134f410c6724cb7d57f0d243078e0a", + "border-bottom-color-applies-to-009.xht": [ + "3526d1692c5b9c541f453148e8421ad0fee205a6", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-011-ref.xht", + "/css/CSS2/borders/border-bottom-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-012.xht": [ - "fddac3965f4f4db3fcee1de162f6436c51ac9fa2", + "border-bottom-color-applies-to-012.xht": [ + "4af784e63f79a3aaf59768d9f3d6b12647df6e88", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-012-ref.xht", + "/css/CSS2/borders/border-bottom-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-013.xht": [ - "455b89d596bb2c8d2a24fdabb387b06d00533889", + "border-bottom-color-applies-to-013.xht": [ + "cee658422f39bc2c8bf612e58fd63e4cca2e99d9", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/borders/border-bottom-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-014.xht": [ - "fc00268dabd4d4250591715d40ba561dccdea406", + "border-bottom-color-applies-to-014.xht": [ + "f6d3dc6405d5c8ba49b1b7d2121292ec10897f15", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-014-ref.xht", + "/css/CSS2/borders/border-bottom-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-015.xht": [ - "8bc3c80da5e066217226241690dfc2e90d7a7298", + "border-bottom-color-applies-to-015.xht": [ + "a1e275dd2ba1864b9b6c28c0fafe11c9332f2e11", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-015-ref.xht", + "/css/CSS2/borders/border-bottom-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-016.xht": [ - "40d3b77435f6275673087eb907fb5dbda7f5ae04", + "border-bottom-style-001.xht": [ + "886ea1129dacb0726aaadce9e449383e04435e8c", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-016-ref.xht", + "/css/CSS2/reference/ref-nothing-below.xht", "==" ] ], {} ] ], - "border-bottom-color-017.xht": [ - "cbfaee79a60e6a090c04b4e045d1d634ce8329be", + "border-bottom-style-002.xht": [ + "0967874bf1ac87f2902ed04489b3425bae578f4b", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-017-ref.xht", + "/css/CSS2/reference/ref-nothing-below.xht", "==" ] ], {} ] ], - "border-bottom-color-018.xht": [ - "ecaea1c746a257f1acf1948d12d514af0e75c8b3", + "border-bottom-style-005.xht": [ + "4246a79beead431ecd66246a942f6daf7c2236e0", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/borders/border-bottom-style-005-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-019.xht": [ - "267ed5396d5f2680cdbf6b493c7994d656e983ae", + "border-bottom-width-001.xht": [ + "d0b0ab4f093189998d59e9123c26e36784c595cf", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-019-ref.xht", + "/css/CSS2/borders/border-bottom-width-001-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-020.xht": [ - "fb8cfb20aa6629cf6e52a939f13d678d5428ea46", + "border-bottom-width-002.xht": [ + "d48732ebbb5a999f17d716a49f430090c3d778f6", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-020-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-bottom-color-021.xht": [ - "c84d76f87229633b2ea35a6b0a786ad5e8ed4fce", + "border-bottom-width-003.xht": [ + "b673b78bd4ac12889066515b48994c8c407dcd95", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-021-ref.xht", + "/css/CSS2/borders/border-bottom-width-003-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-022.xht": [ - "0090ddeac17de71b9d4fbfabe58f1b4147b10bb5", + "border-bottom-width-004.xht": [ + "448ea92c84cfa9e19b8652ceae269fa727209e57", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-022-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-bottom-color-023.xht": [ - "d10a27757354760fe229af47125c5496e700c627", + "border-bottom-width-005.xht": [ + "034b224c13bd2de3bf6f2f45e0f403ba44ff7bc6", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-bottom-color-024.xht": [ - "6cd95188f40a8116f3c57fdf31a69023ee0ab2eb", + "border-bottom-width-006.xht": [ + "c92b582aff0b865497c46d2ce869b84395dc2504", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/borders/border-bottom-width-006-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-025.xht": [ - "4c5b3d1ce0735a88f02fb0ad55ccdba88144208e", + "border-bottom-width-007.xht": [ + "b0bdc3d3bd4b6e5bff141468bb56e35c431276fd", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/CSS2/borders/border-bottom-width-006-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-026.xht": [ - "0e539bb602ac3dcbe0aacef0eb87b39bfca2b157", + "border-bottom-width-012.xht": [ + "926295c4a0528ea136d597dad47fa585e6cd6f9f", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-026-ref.xht", + "/css/CSS2/borders/border-bottom-width-012-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-027.xht": [ - "f1a65812e541a1c5a77847179b7e6ef1145fdb01", + "border-bottom-width-013.xht": [ + "396d7c78b01f0e6c1b97864521d0bad686786ea3", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-027-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-bottom-color-028.xht": [ - "c25c89a184e37ecc2cbe2cc3fb8d262b7fecb296", + "border-bottom-width-015.xht": [ + "f0a12666ba74e5f172048d5cc751017bc77073b0", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-028-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-bottom-color-029.xht": [ - "623072dcd9fd0049fcd49aeae89c25e14b5bb881", + "border-bottom-width-016.xht": [ + "e8d27f0b3bff76901c572bd812db2982630a5145", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-006-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-bottom-color-030.xht": [ - "abf930e3261020290b178607a6de46c8889fa197", + "border-bottom-width-017.xht": [ + "a995e0cb57868b556f329c9d794b017e95594873", [ null, [ [ - "/css/CSS2/reference/ref-transparent-or-black-square-black.xht", + "/css/CSS2/borders/border-bottom-width-006-ref.xht", "==" - ], + ] + ], + {} + ] + ], + "border-bottom-width-018.xht": [ + "526433a85c140fee3ac74c6cecff1e8f0da46026", + [ + null, + [ [ - "/css/CSS2/reference/ref-transparent-or-black-square-transparent.xht", + "/css/CSS2/borders/border-bottom-width-006-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-031.xht": [ - "60f312342834ea8325b7d88fa3de7ce648daf407", + "border-bottom-width-023.xht": [ + "382227d0830f56fcdac8991555291b0d10411608", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/borders/border-bottom-width-012-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-032.xht": [ - "a14a91b225ae004d2ef69eb0ffffbde8f6b670ac", + "border-bottom-width-024.xht": [ + "8e5c3e7fc7a31e9410cad9a1880f117b6e8e459b", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-032-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-bottom-color-033.xht": [ - "0eeaae8387a520c42f6867dec6d592ab39c73668", + "border-bottom-width-025.xht": [ + "6d254f58b4461d34d3dda50593a5656e244bcb6e", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-010-ref.xht", + "/css/CSS2/borders/border-bottom-width-025-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-034.xht": [ - "41ed5b423b1f9ebae78759718d81a5b8866d56de", + "border-bottom-width-026.xht": [ + "771ad25d25d2e6f0881b75e8dfc43b0a95d60081", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-034-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-bottom-color-035.xht": [ - "43c7d2f0304fcba507392cce34cd0fe4ff225c45", + "border-bottom-width-027.xht": [ + "da4de777c61163f8084dbfbbb3400b7da7af82bb", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-012-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-bottom-color-036.xht": [ - "5bb1979c268ba34ef16f95fc6a8de10d85b3275b", + "border-bottom-width-028.xht": [ + "a8d905af53e9db4dfb1702a60061e5c266e0935f", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/borders/border-bottom-width-006-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-037.xht": [ - "aaa0547d71527d21642943dccaea6f1014e5cf57", + "border-bottom-width-029.xht": [ + "4df5edbc61a683ef56c841af25fafc414064ffe5", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-037-ref.xht", + "/css/CSS2/borders/border-bottom-width-006-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-038.xht": [ - "df795d75eea21e5f75c157b28db1544e36e78bcc", + "border-bottom-width-034.xht": [ + "733fa9532f209239a7bbb82bc0f2e30033731241", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-038-ref.xht", + "/css/CSS2/borders/border-bottom-width-012-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-039.xht": [ - "e454a366ee7cb9624402376c004784bb4155e4f0", + "border-bottom-width-035.xht": [ + "1ff4c76f810b1d8e7696a9fb175a2dc5fe5b2236", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-039-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-bottom-color-040.xht": [ - "9343aaabfd2abc7c340fb2a1acbc9c9b9dd3c462", + "border-bottom-width-037.xht": [ + "cabde04299dd2980a6a5b6ce1952e5776075d3b5", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-017-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-bottom-color-041.xht": [ - "2c0b7daa5c565ed750e1cd5ad325a01973010014", + "border-bottom-width-038.xht": [ + "9a7b5296e0f9e0989d1a4163194bb5e2976a00f1", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-bottom-color-042.xht": [ - "0ac99a15b74375f85558b383ad29e53525e9ab3e", + "border-bottom-width-039.xht": [ + "c3f033df70cd96d3a73615820357e33874c64585", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-042-ref.xht", + "/css/CSS2/borders/border-bottom-width-006-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-043.xht": [ - "09205f4373352a1c012d58e02dd7b0ba50338d76", + "border-bottom-width-040.xht": [ + "7d8e29aec4b3b05e7e1667f9ce679b1e3c5b66c9", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-020-ref.xht", + "/css/CSS2/borders/border-bottom-width-006-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-044.xht": [ - "4e847ed453e6dd0ecb5b1c198d3d9b0cdd2f6635", + "border-bottom-width-045.xht": [ + "1539184717a259578524b3a3811305cc962003dd", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-044-ref.xht", + "/css/CSS2/borders/border-bottom-width-012-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-045.xht": [ - "b6f39cc51e479858f8802c8655ab8dc52fa1b3d2", + "border-bottom-width-046.xht": [ + "da92381e7ad7227d62bdf61719799ca6df9b0f51", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-022-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-bottom-color-046.xht": [ - "81ff35d9de35c587bc40ddd4e942185f0f691abd", + "border-bottom-width-048.xht": [ + "2b4fcee02f9c0af7a6e91fb48d821e45aff655b5", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-bottom-color-047.xht": [ - "080709fc2519451d1ff84f8bcd66b27d251c0612", + "border-bottom-width-049.xht": [ + "da836966024158454b36741996b437232a33f1ce", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-bottom-color-048.xht": [ - "800d3761af821befc122e02370cd7d09376d0aaa", + "border-bottom-width-050.xht": [ + "b8890c03e1797ae64e38b949e0e28ea454b83700", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/CSS2/borders/border-bottom-width-006-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-049.xht": [ - "0b2e262b7d74c4e6a3a024ba0b4f67df7841f143", + "border-bottom-width-051.xht": [ + "cfc9222842042753922f8c9b77262db970864da1", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-049-ref.xht", + "/css/CSS2/borders/border-bottom-width-006-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-050.xht": [ - "d70f8b5f29e347d2bddb0276b1abe6156252bb83", + "border-bottom-width-056.xht": [ + "3c9d40113eac543d9e2fd9267843ebbe2b5b4be4", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/CSS2/borders/border-bottom-width-012-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-051.xht": [ - "70a6c63782ca683902c20304e85c5a4ccec21867", + "border-bottom-width-057.xht": [ + "4c9ad5e84be6c1d7bff03223b1727ccc3520a992", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-bottom-color-052.xht": [ - "a90c57a47dde5a935c8aad17dd39e0217c375986", + "border-bottom-width-058.xht": [ + "0162a03d901f021073be859bfb840577e7721ad8", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-052-ref.xht", + "/css/CSS2/borders/border-bottom-width-058-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-053.xht": [ - "cfc23e2c1d376b39e6ae95f388bb049a3d9950c9", + "border-bottom-width-059.xht": [ + "977c22a75817e23996fee885287182babc22afa9", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-052-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-bottom-color-054.xht": [ - "7366be47d2d704cde9bbc80e1bc2fe58d13bde49", + "border-bottom-width-060.xht": [ + "61b787b5e17c76198f1c0f1d75a41b8723c77632", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-054-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-bottom-color-055.xht": [ - "8be065dfd7c9908f5a7063503b37e4c76ac4333c", + "border-bottom-width-061.xht": [ + "325432cab259f48f1a96aecb8c4241ca46d9bde0", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-006-ref.xht", + "/css/CSS2/borders/border-bottom-width-061-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-056.xht": [ - "df3d7b47ffb3cd83a1f7b64b417b31d1adf3de6c", + "border-bottom-width-062.xht": [ + "3dbac6d5022d23123949fdfcfb1b72c73802b611", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-006-ref.xht", + "/css/CSS2/borders/border-bottom-width-061-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-057.xht": [ - "5e362672fb838b2f540c90e04bad98f8b28322c2", + "border-bottom-width-067.xht": [ + "2facd5f8ed36d8fae8be089a2ebf9e68f5b64251", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-006-ref.xht", + "/css/CSS2/borders/border-bottom-width-012-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-058.xht": [ - "79ee6561375a8cf3c7ba6c56a58599b397432e69", + "border-bottom-width-068.xht": [ + "45bb8d4257b150a30d1502d76d16d9e63c63d323", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-bottom-color-059.xht": [ - "d860b0bd2675065e160a50a9a342888a35819be4", + "border-bottom-width-069.xht": [ + "19ea226053c3b67747d2ad9a64a0f8de12dd8813", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/CSS2/borders/border-bottom-width-069-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-060.xht": [ - "2a7f41483e90bf9f56292dbeb88cd624499a0541", + "border-bottom-width-070.xht": [ + "957a0a53c5183278f58748b35188f259ce0597d4", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-003-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-bottom-color-061.xht": [ - "97a0001a8be5781f6a51157f59b00fc18204b4e3", + "border-bottom-width-071.xht": [ + "a84f62a735d865e1161c3aca51f53bd910e4feef", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-bottom-color-062.xht": [ - "9b9eca3d2c5905ac3426c6401e8705a83314b648", + "border-bottom-width-072.xht": [ + "26774903f71fdd5e700feac7cce77c28cba7fda8", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/CSS2/borders/border-bottom-width-072-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-063.xht": [ - "a6295e1ad2877fd2bb626ed133775aa50bb05846", + "border-bottom-width-073.xht": [ + "ecd3f1ef36bcccdcf9be01b062064c0f8369d47c", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-063-ref.xht", + "/css/CSS2/borders/border-bottom-width-072-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-064.xht": [ - "89148be4ae969cd1ab082e2b714b45a0a39c5373", + "border-bottom-width-078.xht": [ + "5afcefa11720a873dcc3112991bc3a1e0ab967ce", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-063-ref.xht", + "/css/CSS2/borders/border-bottom-width-012-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-065.xht": [ - "d11d1ba641a8520881a020216af0dfd1a1dc7a85", + "border-bottom-width-079.xht": [ + "ecc54552ce458bf7b452724b2d080e6538b075d8", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-005-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-bottom-color-066.xht": [ - "7bad2cf389db219a905205f55d26b3ede93d9815", + "border-bottom-width-080.xht": [ + "cc3a0b0bbe7ec33b744617a0432aa11d3ae329e8", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-006-ref.xht", + "/css/CSS2/borders/border-bottom-width-025-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-067.xht": [ - "f53683a2be998f1bc9b4c0544ed8a0bd1f91b978", + "border-bottom-width-081.xht": [ + "d5d0b69095b2b9491665aa3e9e74a427c76e3895", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-006-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-bottom-color-068.xht": [ - "491d57534ee5aecb1db742adf6a6fa48de1affa6", + "border-bottom-width-082.xht": [ + "6aea0d104cb5efab209b519091a9ed8314dffec2", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-006-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-bottom-color-069.xht": [ - "3717d36ea8327349bd3d0e6d4353ff6fb53d8bce", + "border-bottom-width-083.xht": [ + "047915300982a6fd24eaf082e430ecc4a334457a", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/CSS2/borders/border-bottom-width-006-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-070.xht": [ - "bdedc861907e11049dea02658324ff0778ee5e9d", + "border-bottom-width-084.xht": [ + "f81d05ec20bd6295bd20ba2558e2d827618d1a66", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-070-ref.xht", + "/css/CSS2/borders/border-bottom-width-006-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-071.xht": [ - "e17c1dff338a757fafccff2919467d76fd22c14d", + "border-bottom-width-089.xht": [ + "384ada637950a9d7f52d66054323eaad40357b12", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-bottom-color-072.xht": [ - "b6113b805f57a8d228118dd4e7c322854f4218e4", + "border-bottom-width-090.xht": [ + "e01e5f0972725277c60eeaf02b770f391fbb5ab1", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-bottom-color-073.xht": [ - "b60a4d847043096135b4becf84269b4550661ea6", + "border-bottom-width-091.xht": [ + "ec95aa65394437fa8d8eefd9ccc64cd138093eb2", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-073-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-bottom-color-074.xht": [ - "851efab04878debe92e3694036788ab664de9be0", + "border-bottom-width-095.xht": [ + "30f46f03978a4cf644d46c71a58f776893f8787c", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-073-ref.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "border-bottom-color-075.xht": [ - "c8b5873b21176d894c09fd251dd91ae5bf53860d", + "border-bottom-width-applies-to-001.xht": [ + "c7c51c26e850dfe1f1ac57b9e00de7f49866b25e", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-075-ref.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "border-bottom-color-076.xht": [ - "766e371b1f2a770604dc99725bba7657d8e67f2f", + "border-bottom-width-applies-to-002.xht": [ + "40299286df51bb66d7c7dee974c28f3002c7ffdd", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-012-ref.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "border-bottom-color-077.xht": [ - "4ce0ec8ee7b4fb1268f8186d22ca36197109a06d", + "border-bottom-width-applies-to-003.xht": [ + "af6f35bc0ef5d25f388e40990edbb898d6f8be58", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-012-ref.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "border-bottom-color-078.xht": [ - "7435831018afd3a98cc6d71883c2cc7a7f519886", + "border-bottom-width-applies-to-004.xht": [ + "3a0844cd74298f2da5acbe0796a210a45cdae9ca", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-012-ref.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "border-bottom-color-079.xht": [ - "7256c711d6e481b9961c5803fbf2d54e02372665", + "border-bottom-width-applies-to-005.xht": [ + "ef0753559f3f1c30750f95cc7959003d08600a2d", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "border-bottom-color-080.xht": [ - "46c60e78be665ff4969638733c70aa07edd5dc9c", + "border-bottom-width-applies-to-006.xht": [ + "16590c8179507beba2c3785ea4d3e4f72f9ec7c0", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-009-ref.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "border-bottom-color-081.xht": [ - "843848cb37a469b7d8bc337a526ee216c6baf1ef", + "border-bottom-width-applies-to-007.xht": [ + "dcfa201e65a0999ea02dacc599c472ecd80286ae", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "border-bottom-color-082.xht": [ - "66e533b34b2ff290147031b724054a1f49975f0e", + "border-bottom-width-applies-to-009.xht": [ + "6bc9c85eea66bd68e61e2ea0f5bc867ec2b25b3a", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "border-bottom-color-083.xht": [ - "7b6241ac990ca9485651eab55e74bb6ef928422f", + "border-bottom-width-applies-to-012.xht": [ + "b8a07d09e7da91274781c7aee8b85353cad47046", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-083-ref.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "border-bottom-color-084.xht": [ - "2ac69013ba4e4dab17ad3a91afaf5989abf809d7", + "border-bottom-width-applies-to-013.xht": [ + "24649882a19af03f32dc427c32233187f6a93da8", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-083-ref.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "border-bottom-color-085.xht": [ - "bf2b53bd7166d2f5313164728b25b9a4051c2fff", + "border-bottom-width-applies-to-014.xht": [ + "802d8eb372ca9f4c531c8320d24ef7c6e76aead5", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-011-ref.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "border-bottom-color-086.xht": [ - "f052625a4a33792e8e557f9b78b99b48eecd6b2f", + "border-bottom-width-applies-to-015.xht": [ + "fb8e2a2c975ceff1a0be06ef0d192ee1b1f74ec5", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-012-ref.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "border-bottom-color-087.xht": [ - "111155f7065966b79db4ff73411b90b222edc575", + "border-color-001.xht": [ + "3f850b5f72311a977058e39da568576b4e6cebad", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-012-ref.xht", + "/css/CSS2/borders/border-color-001-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-088.xht": [ - "ca55585278f9e3eae4fd3559984cf03845899b09", + "border-color-005.xht": [ + "aee28b34775f253bd4b6d4417180338d2528c4a6", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-012-ref.xht", + "/css/CSS2/borders/border-color-005-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-089.xht": [ - "0d715dda9bd30a4b798596994263de57abf45942", + "border-color-006.xht": [ + "a1abebc1216a15d4b5373170e2efa8791e33d27d", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/CSS2/borders/border-color-006-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-090.xht": [ - "4cdd83f3bf82008091f1fbf35cd955904f068c53", + "border-color-010.xht": [ + "58de67eb60e27e84918f32beb4db84b264f54413", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-090-ref.xht", + "/css/CSS2/borders/border-color-010-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-091.xht": [ - "60c8815119b27169f3be11d5b518c666b8f22a63", + "border-color-011.xht": [ + "7a66f5a22d7b66b2c87b31948213257633782764", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/CSS2/borders/border-color-011-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-092.xht": [ - "7027950d7189f4d8c780cbeaeb41cf5eb64e00d2", + "border-color-012.xht": [ + "3063cf1f002706a248cef51fcd35a7f5af5b8b6d", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/CSS2/borders/border-color-012-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-093.xht": [ - "e4f629ea464aee5e642d20a4e3ba7798b8991de3", + "border-color-applies-to-001.xht": [ + "53d5e3ae6dd935aa94b09a48d889a1f14e07ce04", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-093-ref.xht", + "/css/CSS2/borders/border-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-094.xht": [ - "e9d58db30212ba8b7815575842b4aa070fe130aa", + "border-color-applies-to-002.xht": [ + "a8adb2f9937ca4acd88fa5e2e7dc983cfe2abd89", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-093-ref.xht", + "/css/CSS2/borders/border-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-095.xht": [ - "4ddfedfeecb98dd3cad5ab627121f6b760fc293f", + "border-color-applies-to-003.xht": [ + "e6d7d63223b1953aa6f4b88965c3407c04debb1c", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-095-ref.xht", + "/css/CSS2/borders/border-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-096.xht": [ - "245605da62c60bd450582ba0772ed2c34a645de0", + "border-color-applies-to-004.xht": [ + "8deb7a430a96573087f383d99585ab4d7170fe39", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-017-ref.xht", + "/css/CSS2/borders/border-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-097.xht": [ - "cd33161b37da2b68179882db9791561004c24c29", + "border-color-applies-to-005.xht": [ + "454010ef8ff2eef73a186c4f8f9cfdff495adee0", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-017-ref.xht", + "/css/CSS2/borders/border-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-098.xht": [ - "6d039dd127a24a537cf55b4101c9775247c18a08", + "border-color-applies-to-006.xht": [ + "583ef70e6aac930923b5d579d8f3de4563bc4d76", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-017-ref.xht", + "/css/CSS2/borders/border-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-099.xht": [ - "5f6ae6bc8917240082935d52bfe85f5e74bae360", + "border-color-applies-to-007.xht": [ + "ce7a3e3445a4861aa730abc9d745c9c313baa443", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/CSS2/borders/border-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-100.xht": [ - "44075c7547e35ade9b01953ea457404ccfbe7e73", + "border-color-applies-to-009.xht": [ + "9b6de22ca9082a4d9999c8baed32bbd34cb6a0c2", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-100-ref.xht", + "/css/CSS2/borders/border-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-101.xht": [ - "8947bc54deb348148394165f1b5fa59752cf7a6a", + "border-color-applies-to-012.xht": [ + "3f9af412e5f183db8a172cda2e74e55876e91c70", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/CSS2/borders/border-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-102.xht": [ - "3f4516e94221fc23e99ddbd4ead63daccddda940", + "border-color-applies-to-013.xht": [ + "1b240e08743c4f27312033f0661bf4443c3dbb8e", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/CSS2/borders/border-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-103.xht": [ - "8127a908fc4c14564c5ec100f8282d1c500babc9", + "border-color-applies-to-014.xht": [ + "cac9b1a9b82d59415f41df72ba16c08e7a763b4f", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-103-ref.xht", + "/css/CSS2/borders/border-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-104.xht": [ - "0b4f3b105edb31860dd2abf32b03e5ec4d0a5ba1", + "border-color-applies-to-015.xht": [ + "5f19d45c58c4f45be40579cceae369e37e0e18c3", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-103-ref.xht", + "/css/CSS2/borders/border-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-105.xht": [ - "8e0ec2858968260594fddd51b9e1266a4c2025c7", + "border-color-shorthand-001.xht": [ + "d24f9d584f61699cd273b7ebb9268169223b856a", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-016-ref.xht", + "/css/CSS2/borders/border-color-shorthand-001-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-106.xht": [ - "bd9fc7497f8a444092e781d2ddcdfd7a4ffb9c9f", + "border-conflict-style-101.xht": [ + "dcb0be58830a1ea0afde4bc2b42e62d54a6db7b1", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-017-ref.xht", + "/css/CSS2/borders/border-conflict-style-101-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-107.xht": [ - "72a38a3682678b5391f9fbf2125159ebee8c6241", + "border-conflict-style-102.xht": [ + "92708edab77e3d4b26dada9e3bb5f284eb68ed9f", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-017-ref.xht", + "/css/CSS2/borders/border-conflict-style-101-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-108.xht": [ - "d69d720085e08903b1dc84b3d278c753830959d3", + "border-conflict-style-103.xht": [ + "650225a71c8d7a041fd28a1ac9f884d2fb50fcdc", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-017-ref.xht", + "/css/CSS2/borders/border-conflict-style-101-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-109.xht": [ - "053febc6f12ab57940d607eb28c8a19d6cb5f1f4", + "border-conflict-style-104.xht": [ + "72c380716a22c6c27fea0bbf25b298693508d638", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/CSS2/borders/border-conflict-style-101-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-110.xht": [ - "736365f6d0acd17dddc6c17704385799b0977b48", + "border-conflict-style-105.xht": [ + "420c4543d33ce11dcdb3d78bd7216e3c2880d48c", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-110-ref.xht", + "/css/CSS2/borders/border-conflict-style-101-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-111.xht": [ - "7d8523838b1b5df9e5c47b9859c6b3c27deef6f8", + "border-conflict-style-106.xht": [ + "4b27a7d6f9f5e66dbb343349589d10261f86a6bd", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/CSS2/borders/border-conflict-style-101-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-112.xht": [ - "5c70578bb2f65280c6b064b28913c4610aaa101d", + "border-dynamic-001.xht": [ + "dc73fecbfa648689495586e9baa02e7c3f480ca6", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/CSS2/borders/border-dynamic-001-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-113.xht": [ - "347344ebdc6cf6982c80db06cae3e9af0385e062", + "border-dynamic-002.xht": [ + "2bef11b5a9340ee2b7f7d53ab840852eba868812", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-113-ref.xht", + "/css/CSS2/borders/border-dynamic-001-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-114.xht": [ - "c28375c7de6a272327051aca477dadc909ae4167", + "border-left-001.xht": [ + "1841b67c01de7ab7048304fa6dbb3101ebec5a3d", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-113-ref.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "border-bottom-color-115.xht": [ - "41f46477f1c770c99f0a4f8f0d88b1d7065871d9", + "border-left-003.xht": [ + "4cd0d253768a9ce56939a88cb73145fd4edcb7f0", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-115-ref.xht", + "/css/CSS2/borders/border-left-003-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-116.xht": [ - "b8f182522b8d6b1cac51c19ed38f66c564c73371", + "border-left-005.xht": [ + "a1ad9d99195f73877935923a00c6a1b74e70338f", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-022-ref.xht", + "/css/CSS2/borders/border-left-005-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-117.xht": [ - "034f0f5b8276c544b1427377b3efd3be4a7c8444", + "border-left-006.xht": [ + "453d1258488e80e1afbd20afa32f4cf8f27e2c0c", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-022-ref.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "border-bottom-color-118.xht": [ - "25990d11c51ff9532e1b94f1561bcd7472c333bc", + "border-left-008.xht": [ + "ff7ea9e4ae54e47a19e902c968dc07019384d93e", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-022-ref.xht", + "/css/CSS2/borders/border-left-005-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-119.xht": [ - "25ccc228bcded0ce364891288841e316841768c4", + "border-left-018.xht": [ + "779c1c48f387cc65b01e8c1d12c88b3696487f87", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/CSS2/borders/border-left-018-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-120.xht": [ - "6cf2c68e430c3058e596ff35f138340c702c5d9f", + "border-left-applies-to-001.xht": [ + "8be243f550b7e8d8521cad3f7b473604cb96417d", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-019-ref.xht", + "/css/CSS2/borders/border-left-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-121.xht": [ - "4f6ae4f5be701b4ebde1ccaa4052ec97f254ab64", + "border-left-applies-to-002.xht": [ + "313695734d61572a62778090d12c1639e52de7d4", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/CSS2/borders/border-left-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-122.xht": [ - "b742b0634cf2e0f0e58400bf2480aae05e28d75f", + "border-left-applies-to-003.xht": [ + "dd97d209d2f43ff1754bf0eaf196d4c5ef0a6a2e", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/CSS2/borders/border-left-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-123.xht": [ - "a95ef02b51c5fa5b4050cd400a859b4d8db31ca2", + "border-left-applies-to-004.xht": [ + "c1e483bfab1f425fb7af3e7156333e7e406ba563", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-123-ref.xht", + "/css/CSS2/borders/border-left-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-124.xht": [ - "957b9e7cd9442c9ab9803243e8bc7e079f50d244", + "border-left-applies-to-005.xht": [ + "75e084ecfe99a523a28072b1c0e879af54974e30", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-123-ref.xht", + "/css/CSS2/borders/border-left-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-125.xht": [ - "370eb8ac6593d4c52ece4929f03c1fefaad6fc4d", + "border-left-applies-to-006.xht": [ + "3c1555a1ab30d9c86a93f72f53e8c2aa1b11b608", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-021-ref.xht", + "/css/CSS2/borders/border-left-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-126.xht": [ - "ab183be63b8396134718d0a60b8c97472c36fa88", + "border-left-applies-to-007.xht": [ + "fa69ebe2ee65309778d9531b11f11630e53f2b00", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-022-ref.xht", + "/css/CSS2/borders/border-left-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-127.xht": [ - "b03e50992008bdcc031c8228c71555ebeb11730a", + "border-left-applies-to-009.xht": [ + "3f14c06a6e9b99724992d32acfe46a3c43edfbb3", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-022-ref.xht", + "/css/CSS2/borders/border-left-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-128.xht": [ - "94462cacdd93cddf3436762459c040c222e0131b", + "border-left-applies-to-012.xht": [ + "dffffa23f75fc9d625a05b4d48859075357ebff6", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-022-ref.xht", + "/css/CSS2/borders/border-left-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-129.xht": [ - "f7c6f4e59dbe96b264474c0fb5011d41241bb011", + "border-left-applies-to-013.xht": [ + "faed9e3dfddb3a497b4c8017b08f65a0b3313d20", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-129-ref.xht", + "/css/CSS2/borders/border-left-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-130.xht": [ - "a8c1583484f48fda173a405a241140e610da2d91", + "border-left-applies-to-014.xht": [ + "3a30e0021202e1043b97296c33cf1bdecf48e41a", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/CSS2/borders/border-left-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-131.xht": [ - "aa987cb49fa839b041350c238432e937910e6cd8", + "border-left-applies-to-015.xht": [ + "d9ab50594a3a0f70d267580ca04f58b10c33a135", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-131-ref.xht", + "/css/CSS2/borders/border-left-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-132.xht": [ - "ac7a228d7bf461391dad40302b080582343d725d", + "border-left-color-129.xht": [ + "dfd7518334e60a300daf749375b4449e55d03121", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-132-ref.xht", + "/css/CSS2/borders/border-bottom-color-129-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-133.xht": [ - "06c1c9ebbabad60bfe65f0e5ec34fb6fde77a04c", + "border-left-color-174.xht": [ + "92212021e46015ba8d76885194e974eb39c7bd3b", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-133-ref.xht", + "/css/CSS2/borders/border-left-color-174-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-134.xht": [ - "97d168bc59d6a6701a35033a305853f024c128c1", + "border-left-color-175.xht": [ + "83b217298efbab8c8b717b36d9ad5f3058a20769", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-134-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-bottom-color-135.xht": [ - "85ce19a0b1f77421b0e64728bbf7300d4c6a69cb", + "border-left-color-applies-to-001.xht": [ + "638cdbf114fc2fc93db7460d64bf5386de600691", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-135-ref.xht", + "/css/CSS2/borders/border-left-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-136.xht": [ - "3444b985167c38f39e8376860a01fb671e4b2adf", + "border-left-color-applies-to-002.xht": [ + "e49ada3b8fde03a5f71d35ffc49d32cb030761d6", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-136-ref.xht", + "/css/CSS2/borders/border-left-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-137.xht": [ - "b3fd414209d89e357b17fd87316c57eada6027af", + "border-left-color-applies-to-003.xht": [ + "9671d1c1113ab3054b00233182375cd1a1a45dc1", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-137-ref.xht", + "/css/CSS2/borders/border-left-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-138.xht": [ - "6ffa065e6956123b1cf889a76e0d6e72d6d571a5", + "border-left-color-applies-to-004.xht": [ + "f67dc8c058164bc6e70bd0630fe350cc373db2c8", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-138-ref.xht", + "/css/CSS2/borders/border-left-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-139.xht": [ - "1754a3349f776505f8ab9380c44b0f29f004ae10", + "border-left-color-applies-to-005.xht": [ + "e6cf0da70ced152fe75d93e9cb338d9180a193e4", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-139-ref.xht", + "/css/CSS2/borders/border-left-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-140.xht": [ - "baf090540044a34ce10c72f73144a3f2801211b2", + "border-left-color-applies-to-006.xht": [ + "aa1f47469af34cc2e91db4be84ae6b31f0b748b7", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-140-ref.xht", + "/css/CSS2/borders/border-left-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-141.xht": [ - "c6655232140fd4bb6e80da33a9b006fe2421d95f", + "border-left-color-applies-to-007.xht": [ + "bbad8c1a4b59dd8b7829ac11e420cc19c02c9718", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-141-ref.xht", + "/css/CSS2/borders/border-left-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-142.xht": [ - "e53654dfc519d64808849a6f6fbd0dc8970e18b2", + "border-left-color-applies-to-009.xht": [ + "a7b4825f3ead8ea19e82edc94d0cf22d02ff98aa", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-142-ref.xht", + "/css/CSS2/borders/border-left-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-143.xht": [ - "2a7188025ca1bba1a1f12f36a1281374af46bd65", + "border-left-color-applies-to-012.xht": [ + "ec02d07cae73a6fd700c17b7754253bd145e57ea", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-143-ref.xht", + "/css/CSS2/borders/border-left-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-144.xht": [ - "d1061878de90a634e554ccd6a5ee905637c6fd37", + "border-left-color-applies-to-013.xht": [ + "2b8aac76938f577fb388f0b05821aec1f473525b", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-144-ref.xht", + "/css/CSS2/borders/border-left-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-145.xht": [ - "4ac7c5917c97b8ccff10f0cb4e2af1895829bab3", + "border-left-color-applies-to-014.xht": [ + "2b10ae04f73c45eb79785d08b0a413a1e5c96e19", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-145-ref.xht", + "/css/CSS2/borders/border-left-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-174.xht": [ - "23d915c1f8ca2a96511c8929c09564f061ae0ee9", + "border-left-color-applies-to-015.xht": [ + "0693d2ba6ced429726bceb259d6d6d0838c58ebb", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/borders/border-left-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-175.xht": [ - "8fda23b6531ae264414c367ffb433c2c422e2fc9", + "border-left-style-001.xht": [ + "3d56f5789e462b2d1814ec227e324d9c45503afa", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/reference/ref-nothing-below.xht", "==" ] ], {} ] ], - "border-bottom-color-applies-to-001.xht": [ - "7b0e9e3ed5cec90637e085cd851687b8c38434af", + "border-left-style-002.xht": [ + "bc615d806b0883f795d82a3fc655980a1241256d", [ null, [ [ - "/css/CSS2/borders/border-bottom-applies-to-001-ref.xht", + "/css/CSS2/reference/ref-nothing-below.xht", "==" ] ], {} ] ], - "border-bottom-color-applies-to-002.xht": [ - "1a9d7440733786753573bd0acc530d48bc8e2f66", + "border-left-style-005.xht": [ + "486f434ba334bc2ed076cd7038eec706bcacb2e8", [ null, [ [ - "/css/CSS2/borders/border-bottom-applies-to-001-ref.xht", + "/css/CSS2/borders/border-left-style-005-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-applies-to-003.xht": [ - "ba581ccbb49e25f9f48b2ea1253c6b25db31a1fd", + "border-left-width-001.xht": [ + "95b4e0d7afc6eea0bb17edd1b7992f333ce37a0e", [ null, [ [ - "/css/CSS2/borders/border-bottom-applies-to-001-ref.xht", + "/css/CSS2/borders/border-left-width-001-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-applies-to-004.xht": [ - "540f9a7eaa09926b62ceef950a62f4c0a5f44410", + "border-left-width-002.xht": [ + "c9e471df793cc6f1a70547e47394b24f270109a1", [ null, [ [ - "/css/CSS2/borders/border-bottom-applies-to-001-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-bottom-color-applies-to-005.xht": [ - "8ac205e34e672091e35022d9b1bb6ce20098c036", + "border-left-width-003.xht": [ + "fe08bf167db8129aabba354a7bc8bd66802bf83f", [ null, [ [ - "/css/CSS2/borders/border-bottom-applies-to-001-ref.xht", + "/css/CSS2/borders/border-left-width-003-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-applies-to-006.xht": [ - "137fa46aa9a339f9f903c03dbc23ac25118daaed", + "border-left-width-004.xht": [ + "f61279a86880418156f4a220236c3750bba88999", [ null, [ [ - "/css/CSS2/borders/border-bottom-applies-to-001-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-bottom-color-applies-to-007.xht": [ - "620696c0d6e76b3dbb5f735ed03bbfebdcf11d91", + "border-left-width-005.xht": [ + "556e5d3a88de1b9e46c368a1a799d7a3c572628e", [ null, [ [ - "/css/CSS2/borders/border-bottom-applies-to-001-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-bottom-color-applies-to-009.xht": [ - "3526d1692c5b9c541f453148e8421ad0fee205a6", + "border-left-width-006.xht": [ + "5c1410c54f61300a92b12b0042e1126f05b47b86", [ null, [ [ - "/css/CSS2/borders/border-bottom-applies-to-001-ref.xht", + "/css/CSS2/borders/border-left-width-006-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-applies-to-012.xht": [ - "4af784e63f79a3aaf59768d9f3d6b12647df6e88", + "border-left-width-007.xht": [ + "c11bbf717f20a46779e956db620636810e4f99a0", [ null, [ [ - "/css/CSS2/borders/border-bottom-applies-to-001-ref.xht", + "/css/CSS2/borders/border-left-width-006-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-applies-to-013.xht": [ - "cee658422f39bc2c8bf612e58fd63e4cca2e99d9", + "border-left-width-012.xht": [ + "c92d6928f52d6d9ca5cd085e40edd0f4f571419e", [ null, [ [ - "/css/CSS2/borders/border-bottom-applies-to-001-ref.xht", + "/css/CSS2/borders/border-left-width-001-ref.xht", "==" ] ], {} ] ], - "border-bottom-color-applies-to-014.xht": [ - "f6d3dc6405d5c8ba49b1b7d2121292ec10897f15", + "border-left-width-013.xht": [ + "4fd32ca873595fb4347e71b888de5b840680ecbf", [ null, [ [ - "/css/CSS2/borders/border-bottom-applies-to-001-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-bottom-color-applies-to-015.xht": [ - "a1e275dd2ba1864b9b6c28c0fafe11c9332f2e11", + "border-left-width-015.xht": [ + "93bd8b8850d72ee16e676ed72a45580e31aa58ea", [ null, [ [ - "/css/CSS2/borders/border-bottom-applies-to-001-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-bottom-style-001.xht": [ - "886ea1129dacb0726aaadce9e449383e04435e8c", + "border-left-width-016.xht": [ + "2bab93db4d3d60c38b6d2ed35957343dbdf06795", [ null, [ [ - "/css/CSS2/reference/ref-nothing-below.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-bottom-style-002.xht": [ - "0967874bf1ac87f2902ed04489b3425bae578f4b", + "border-left-width-017.xht": [ + "7723b7703ab5d62f9ac92c704f03f0b5d15131ac", [ null, [ [ - "/css/CSS2/reference/ref-nothing-below.xht", + "/css/CSS2/borders/border-left-width-006-ref.xht", "==" ] ], {} ] ], - "border-bottom-style-005.xht": [ - "4246a79beead431ecd66246a942f6daf7c2236e0", + "border-left-width-018.xht": [ + "3d8f544c85ef65ce1dd4ed2bf8400db876b4ac16", [ null, [ [ - "/css/CSS2/borders/border-bottom-style-005-ref.xht", + "/css/CSS2/borders/border-left-width-006-ref.xht", "==" ] ], {} ] ], - "border-bottom-width-001.xht": [ - "d0b0ab4f093189998d59e9123c26e36784c595cf", + "border-left-width-023.xht": [ + "38dd3cc94726c9a0da1861bdabf4870ebd3be1f1", [ null, [ [ - "/css/CSS2/borders/border-bottom-width-001-ref.xht", + "/css/CSS2/borders/border-left-width-001-ref.xht", "==" ] ], {} ] ], - "border-bottom-width-002.xht": [ - "d48732ebbb5a999f17d716a49f430090c3d778f6", + "border-left-width-024.xht": [ + "975cccfaf874859938a272fb35c7616a868ce0c6", [ null, [ @@ -44652,21 +45443,21 @@ {} ] ], - "border-bottom-width-003.xht": [ - "b673b78bd4ac12889066515b48994c8c407dcd95", + "border-left-width-025.xht": [ + "e025c892b6abf405ccd316fd5e9f2e0cd41c598d", [ null, [ [ - "/css/CSS2/borders/border-bottom-width-003-ref.xht", + "/css/CSS2/borders/border-left-width-025-ref.xht", "==" ] ], {} ] ], - "border-bottom-width-004.xht": [ - "448ea92c84cfa9e19b8652ceae269fa727209e57", + "border-left-width-026.xht": [ + "e929cfeaa1fdcb10882c45ba83cae5756cdad44e", [ null, [ @@ -44678,8 +45469,8 @@ {} ] ], - "border-bottom-width-005.xht": [ - "034b224c13bd2de3bf6f2f45e0f403ba44ff7bc6", + "border-left-width-027.xht": [ + "cc34e1aa1ec4962ca942d5199bb7c917478beb62", [ null, [ @@ -44691,47 +45482,47 @@ {} ] ], - "border-bottom-width-006.xht": [ - "c92b582aff0b865497c46d2ce869b84395dc2504", + "border-left-width-028.xht": [ + "9f25dbdb5b317c90d58d8dc6ef125285f9f6e624", [ null, [ [ - "/css/CSS2/borders/border-bottom-width-006-ref.xht", + "/css/CSS2/borders/border-left-width-006-ref.xht", "==" ] ], {} ] ], - "border-bottom-width-007.xht": [ - "b0bdc3d3bd4b6e5bff141468bb56e35c431276fd", + "border-left-width-029.xht": [ + "f63713aff3daeea7b4b9a3e450f5ce409298c598", [ null, [ [ - "/css/CSS2/borders/border-bottom-width-006-ref.xht", + "/css/CSS2/borders/border-left-width-006-ref.xht", "==" ] ], {} ] ], - "border-bottom-width-012.xht": [ - "926295c4a0528ea136d597dad47fa585e6cd6f9f", + "border-left-width-034.xht": [ + "f5c846b1843130f370665da7baec1d8473ee9b18", [ null, [ [ - "/css/CSS2/borders/border-bottom-width-012-ref.xht", + "/css/CSS2/borders/border-left-width-001-ref.xht", "==" ] ], {} ] ], - "border-bottom-width-013.xht": [ - "396d7c78b01f0e6c1b97864521d0bad686786ea3", + "border-left-width-035.xht": [ + "a51e8ff434992a631e0d629e7d7878cdb3c636dd", [ null, [ @@ -44743,8 +45534,8 @@ {} ] ], - "border-bottom-width-015.xht": [ - "f0a12666ba74e5f172048d5cc751017bc77073b0", + "border-left-width-037.xht": [ + "d0480970b217159e9602a41d30d34c091b8d2f48", [ null, [ @@ -44756,8 +45547,8 @@ {} ] ], - "border-bottom-width-016.xht": [ - "e8d27f0b3bff76901c572bd812db2982630a5145", + "border-left-width-038.xht": [ + "444ac121de27b39850d7db76ea4897e49d80eb04", [ null, [ @@ -44769,47 +45560,47 @@ {} ] ], - "border-bottom-width-017.xht": [ - "a995e0cb57868b556f329c9d794b017e95594873", + "border-left-width-039.xht": [ + "dfb6976e1565ba813ff03d81790a86f9961ffbb6", [ null, [ [ - "/css/CSS2/borders/border-bottom-width-006-ref.xht", + "/css/CSS2/borders/border-left-width-006-ref.xht", "==" ] ], {} ] ], - "border-bottom-width-018.xht": [ - "526433a85c140fee3ac74c6cecff1e8f0da46026", + "border-left-width-040.xht": [ + "eca959c0038d98900bc8bd82a225ee6753f0d1ba", [ null, [ [ - "/css/CSS2/borders/border-bottom-width-006-ref.xht", + "/css/CSS2/borders/border-left-width-006-ref.xht", "==" ] ], {} ] ], - "border-bottom-width-023.xht": [ - "382227d0830f56fcdac8991555291b0d10411608", + "border-left-width-045.xht": [ + "3d275c3e7e661ba8610bb3cea761a5697e22f15e", [ null, [ [ - "/css/CSS2/borders/border-bottom-width-012-ref.xht", + "/css/CSS2/borders/border-left-width-001-ref.xht", "==" ] ], {} ] ], - "border-bottom-width-024.xht": [ - "8e5c3e7fc7a31e9410cad9a1880f117b6e8e459b", + "border-left-width-046.xht": [ + "d7b94572f37a90056b579eba4a5e51ee3755af74", [ null, [ @@ -44821,21 +45612,21 @@ {} ] ], - "border-bottom-width-025.xht": [ - "6d254f58b4461d34d3dda50593a5656e244bcb6e", + "border-left-width-048.xht": [ + "11072159e2691d301e6c5d0136869458ba3eba8d", [ null, [ [ - "/css/CSS2/borders/border-bottom-width-025-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-bottom-width-026.xht": [ - "771ad25d25d2e6f0881b75e8dfc43b0a95d60081", + "border-left-width-049.xht": [ + "5a46037691f5640f28e4d7f85cb0456bbb7b3b71", [ null, [ @@ -44847,73 +45638,73 @@ {} ] ], - "border-bottom-width-027.xht": [ - "da4de777c61163f8084dbfbbb3400b7da7af82bb", + "border-left-width-050.xht": [ + "954a0bbb1668d22f82c9f3f443b744224306cd76", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/borders/border-left-width-006-ref.xht", "==" ] ], {} ] ], - "border-bottom-width-028.xht": [ - "a8d905af53e9db4dfb1702a60061e5c266e0935f", + "border-left-width-051.xht": [ + "b5070f1e2d1290e35861379495b51a4d6ee73420", [ null, [ [ - "/css/CSS2/borders/border-bottom-width-006-ref.xht", + "/css/CSS2/borders/border-left-width-006-ref.xht", "==" ] ], {} ] ], - "border-bottom-width-029.xht": [ - "4df5edbc61a683ef56c841af25fafc414064ffe5", + "border-left-width-056.xht": [ + "4df2073ff93a452da06d8ad5e2602d61d2a24747", [ null, [ [ - "/css/CSS2/borders/border-bottom-width-006-ref.xht", + "/css/CSS2/borders/border-left-width-001-ref.xht", "==" ] ], {} ] ], - "border-bottom-width-034.xht": [ - "733fa9532f209239a7bbb82bc0f2e30033731241", + "border-left-width-057.xht": [ + "81086e664329f32019f3be8f1f348674b401ef79", [ null, [ [ - "/css/CSS2/borders/border-bottom-width-012-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-bottom-width-035.xht": [ - "1ff4c76f810b1d8e7696a9fb175a2dc5fe5b2236", + "border-left-width-058.xht": [ + "b93d04eda5b607d791219b2fe59cfb9526ddaa22", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/borders/border-left-width-006-ref.xht", "==" ] ], {} ] ], - "border-bottom-width-037.xht": [ - "cabde04299dd2980a6a5b6ce1952e5776075d3b5", + "border-left-width-059.xht": [ + "74ff92b5217396f743724f34c62363ecca497294", [ null, [ @@ -44925,8 +45716,8 @@ {} ] ], - "border-bottom-width-038.xht": [ - "9a7b5296e0f9e0989d1a4163194bb5e2976a00f1", + "border-left-width-060.xht": [ + "84e7cd28444cde2da337ff1b64f399b177d08443", [ null, [ @@ -44938,47 +45729,47 @@ {} ] ], - "border-bottom-width-039.xht": [ - "c3f033df70cd96d3a73615820357e33874c64585", + "border-left-width-061.xht": [ + "f7cb8e67c16580c1944725289547ca0e99300737", [ null, [ [ - "/css/CSS2/borders/border-bottom-width-006-ref.xht", + "/css/CSS2/borders/border-left-width-061-ref.xht", "==" ] ], {} ] ], - "border-bottom-width-040.xht": [ - "7d8e29aec4b3b05e7e1667f9ce679b1e3c5b66c9", + "border-left-width-062.xht": [ + "3b0dbc89ee9c6ae4a7a33e14973e50ff6ebbe9bf", [ null, [ [ - "/css/CSS2/borders/border-bottom-width-006-ref.xht", + "/css/CSS2/borders/border-left-width-061-ref.xht", "==" ] ], {} ] ], - "border-bottom-width-045.xht": [ - "1539184717a259578524b3a3811305cc962003dd", + "border-left-width-067.xht": [ + "255ab413add67fa6c205004259d7a382320369b5", [ null, [ [ - "/css/CSS2/borders/border-bottom-width-012-ref.xht", + "/css/CSS2/borders/border-left-width-001-ref.xht", "==" ] ], {} ] ], - "border-bottom-width-046.xht": [ - "da92381e7ad7227d62bdf61719799ca6df9b0f51", + "border-left-width-068.xht": [ + "22f9ee0be061941fa96c55d650dfc2452a42537d", [ null, [ @@ -44990,21 +45781,21 @@ {} ] ], - "border-bottom-width-048.xht": [ - "2b4fcee02f9c0af7a6e91fb48d821e45aff655b5", + "border-left-width-069.xht": [ + "f8c246e3575d532695f57f1b869fca6a85efb7d5", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/borders/border-left-width-069-ref.xht", "==" ] ], {} ] ], - "border-bottom-width-049.xht": [ - "da836966024158454b36741996b437232a33f1ce", + "border-left-width-070.xht": [ + "36db58e16eeed58c345bc64173c5a1c658b21be3", [ null, [ @@ -45016,86 +45807,86 @@ {} ] ], - "border-bottom-width-050.xht": [ - "b8890c03e1797ae64e38b949e0e28ea454b83700", + "border-left-width-071.xht": [ + "fe966d78e8f14efb28d721b1fb1fe7f6aa71fbde", [ null, [ [ - "/css/CSS2/borders/border-bottom-width-006-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-bottom-width-051.xht": [ - "cfc9222842042753922f8c9b77262db970864da1", + "border-left-width-072.xht": [ + "a3371031c39c3fcc0a64ab61e60a50fe4f26e13e", [ null, [ [ - "/css/CSS2/borders/border-bottom-width-006-ref.xht", + "/css/CSS2/borders/border-left-width-072-ref.xht", "==" ] ], {} ] ], - "border-bottom-width-056.xht": [ - "3c9d40113eac543d9e2fd9267843ebbe2b5b4be4", + "border-left-width-073.xht": [ + "9a68a6770747b3cf92cb975147673a0202b7189c", [ null, [ [ - "/css/CSS2/borders/border-bottom-width-012-ref.xht", + "/css/CSS2/borders/border-left-width-072-ref.xht", "==" ] ], {} ] ], - "border-bottom-width-057.xht": [ - "4c9ad5e84be6c1d7bff03223b1727ccc3520a992", + "border-left-width-078.xht": [ + "c9dcbee1969f03982aa5aa59a6c56c07bfc56368", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/borders/border-left-width-001-ref.xht", "==" ] ], {} ] ], - "border-bottom-width-058.xht": [ - "0162a03d901f021073be859bfb840577e7721ad8", + "border-left-width-079.xht": [ + "edf723b3dd3bb743339f607cbee90c5801adcdfd", [ null, [ [ - "/css/CSS2/borders/border-bottom-width-058-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-bottom-width-059.xht": [ - "977c22a75817e23996fee885287182babc22afa9", + "border-left-width-080.xht": [ + "aa10ac99a42be2b4a5c048ffbf213551a287a726", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/borders/border-left-width-025-ref.xht", "==" ] ], {} ] ], - "border-bottom-width-060.xht": [ - "61b787b5e17c76198f1c0f1d75a41b8723c77632", + "border-left-width-081.xht": [ + "227cc6ae50cc8a51e42c8cf8b85c02c9ced3f16f", [ null, [ @@ -45107,47 +45898,47 @@ {} ] ], - "border-bottom-width-061.xht": [ - "325432cab259f48f1a96aecb8c4241ca46d9bde0", + "border-left-width-082.xht": [ + "142f3985d65aece65d4e7be7afc3df9e6bda45c5", [ null, [ [ - "/css/CSS2/borders/border-bottom-width-061-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-bottom-width-062.xht": [ - "3dbac6d5022d23123949fdfcfb1b72c73802b611", + "border-left-width-083.xht": [ + "b11d82edc6ba106b71ff01982a9c7dfc4e3cb9b7", [ null, [ [ - "/css/CSS2/borders/border-bottom-width-061-ref.xht", + "/css/CSS2/borders/border-left-width-006-ref.xht", "==" ] ], {} ] ], - "border-bottom-width-067.xht": [ - "2facd5f8ed36d8fae8be089a2ebf9e68f5b64251", + "border-left-width-084.xht": [ + "3572ede6f2b62dd250edf51efdb782662a78577e", [ null, [ [ - "/css/CSS2/borders/border-bottom-width-012-ref.xht", + "/css/CSS2/borders/border-left-width-006-ref.xht", "==" ] ], {} ] ], - "border-bottom-width-068.xht": [ - "45bb8d4257b150a30d1502d76d16d9e63c63d323", + "border-left-width-089.xht": [ + "47eca23a90bf854e02ead43f9c974887ba5a2599", [ null, [ @@ -45159,21 +45950,21 @@ {} ] ], - "border-bottom-width-069.xht": [ - "19ea226053c3b67747d2ad9a64a0f8de12dd8813", + "border-left-width-090.xht": [ + "092c9fd642dc14ec2e6b508e4a57630441434883", [ null, [ [ - "/css/CSS2/borders/border-bottom-width-069-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-bottom-width-070.xht": [ - "957a0a53c5183278f58748b35188f259ce0597d4", + "border-left-width-091.xht": [ + "63a68eddd63f93a78709d22ad83899e8520fdef0", [ null, [ @@ -45185,1390 +45976,1386 @@ {} ] ], - "border-bottom-width-071.xht": [ - "a84f62a735d865e1161c3aca51f53bd910e4feef", + "border-left-width-095.xht": [ + "b0b76a9448b0a6bfb9736af4e7e94faaa3f76f06", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/borders/border-left-width-095-ref.xht", "==" ] ], {} ] ], - "border-bottom-width-072.xht": [ - "26774903f71fdd5e700feac7cce77c28cba7fda8", + "border-left-width-applies-to-001.xht": [ + "a9eed77a1bbc4506296ce90cc026ff44ecedefea", [ null, [ [ - "/css/CSS2/borders/border-bottom-width-072-ref.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "border-bottom-width-073.xht": [ - "ecd3f1ef36bcccdcf9be01b062064c0f8369d47c", + "border-left-width-applies-to-002.xht": [ + "1a903310832d26b1a1aa10ddae83c1795a4faf82", [ null, [ [ - "/css/CSS2/borders/border-bottom-width-072-ref.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "border-bottom-width-078.xht": [ - "5afcefa11720a873dcc3112991bc3a1e0ab967ce", + "border-left-width-applies-to-003.xht": [ + "5a0734f37028d1bfc11165de828e2825da7d01f2", [ null, [ [ - "/css/CSS2/borders/border-bottom-width-012-ref.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "border-bottom-width-079.xht": [ - "ecc54552ce458bf7b452724b2d080e6538b075d8", + "border-left-width-applies-to-004.xht": [ + "3db9fe19c580b2d82a125a7446ccd5a01ea0293f", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "border-bottom-width-080.xht": [ - "cc3a0b0bbe7ec33b744617a0432aa11d3ae329e8", + "border-left-width-applies-to-005.xht": [ + "9e1d8a657c7c277898cd630b5e20598e5134b483", [ null, [ [ - "/css/CSS2/borders/border-bottom-width-025-ref.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "border-bottom-width-081.xht": [ - "d5d0b69095b2b9491665aa3e9e74a427c76e3895", + "border-left-width-applies-to-006.xht": [ + "85c82d4b2133974ef872cb6329e67e7b745173cb", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "border-bottom-width-082.xht": [ - "6aea0d104cb5efab209b519091a9ed8314dffec2", + "border-left-width-applies-to-007.xht": [ + "c7807dd5cd17b33a27ca61b0d4600533b42de3c8", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "border-bottom-width-083.xht": [ - "047915300982a6fd24eaf082e430ecc4a334457a", + "border-left-width-applies-to-009.xht": [ + "556b17d7b304a00c930ef2ba5b86e3c6b3726b4c", [ null, [ [ - "/css/CSS2/borders/border-bottom-width-006-ref.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "border-bottom-width-084.xht": [ - "f81d05ec20bd6295bd20ba2558e2d827618d1a66", + "border-left-width-applies-to-012.xht": [ + "d8f0b3c6d83de2e61c20165f94f73841998a94bd", [ null, [ [ - "/css/CSS2/borders/border-bottom-width-006-ref.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "border-bottom-width-089.xht": [ - "384ada637950a9d7f52d66054323eaad40357b12", + "border-left-width-applies-to-013.xht": [ + "a5bd8ee4cdddccca3fd7e3f16bd50b9d5222b79e", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "border-bottom-width-090.xht": [ - "e01e5f0972725277c60eeaf02b770f391fbb5ab1", + "border-left-width-applies-to-014.xht": [ + "81bd1852834b2923299668091abc82ba2f4bd430", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "border-bottom-width-091.xht": [ - "ec95aa65394437fa8d8eefd9ccc64cd138093eb2", + "border-left-width-applies-to-015.xht": [ + "fd2efbf5012c9a7d3f83ae92833d1cc95d9447c3", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "border-bottom-width-095.xht": [ - "30f46f03978a4cf644d46c71a58f776893f8787c", + "border-right-001.xht": [ + "cc44448eedc7bff14b8a2e6a5b0bd2d69f39d9b6", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/borders/border-right-001-ref.xht", "==" ] ], {} ] ], - "border-bottom-width-applies-to-001.xht": [ - "c7c51c26e850dfe1f1ac57b9e00de7f49866b25e", + "border-right-003.xht": [ + "216ae69469fabdbec4fdcdaa3545020a1b2a3f92", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/borders/border-right-003-ref.xht", "==" ] ], {} ] ], - "border-bottom-width-applies-to-002.xht": [ - "40299286df51bb66d7c7dee974c28f3002c7ffdd", + "border-right-005.xht": [ + "3cd72033c5448508529475723a9c5cf174bd5a07", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/borders/border-right-005-ref.xht", "==" ] ], {} ] ], - "border-bottom-width-applies-to-003.xht": [ - "af6f35bc0ef5d25f388e40990edbb898d6f8be58", + "border-right-006.xht": [ + "a2acf67a971db92bead0b7538a78929ae5621cf3", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/borders/border-right-001-ref.xht", "==" ] ], {} ] ], - "border-bottom-width-applies-to-004.xht": [ - "3a0844cd74298f2da5acbe0796a210a45cdae9ca", + "border-right-008.xht": [ + "2e0b0f2f682619d22c8f582e93e8b81ea8a62169", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/borders/border-right-005-ref.xht", "==" ] ], {} ] ], - "border-bottom-width-applies-to-005.xht": [ - "ef0753559f3f1c30750f95cc7959003d08600a2d", + "border-right-018.xht": [ + "1ceae246aa658cae7bce19b8118629bd68c0aa68", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/borders/border-right-018-ref.xht", "==" ] ], {} ] ], - "border-bottom-width-applies-to-006.xht": [ - "16590c8179507beba2c3785ea4d3e4f72f9ec7c0", + "border-right-applies-to-001.xht": [ + "82455ce951d53892a1203afc4274ecf2d73defd8", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/borders/border-left-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-bottom-width-applies-to-007.xht": [ - "dcfa201e65a0999ea02dacc599c472ecd80286ae", + "border-right-applies-to-002.xht": [ + "639d01f6bc0692ba29f5674e2cf6d37dc2387844", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/borders/border-left-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-bottom-width-applies-to-009.xht": [ - "6bc9c85eea66bd68e61e2ea0f5bc867ec2b25b3a", + "border-right-applies-to-003.xht": [ + "7886891484d66e8e1598ad75ef1b85c9ad5b9718", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/borders/border-left-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-bottom-width-applies-to-012.xht": [ - "b8a07d09e7da91274781c7aee8b85353cad47046", + "border-right-applies-to-004.xht": [ + "59076ee9f67d9ef7449fd6f722087338add302ff", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/borders/border-left-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-bottom-width-applies-to-013.xht": [ - "24649882a19af03f32dc427c32233187f6a93da8", + "border-right-applies-to-005.xht": [ + "0d8a3176dd92974d80b9f7947a77f5eb2381b8ae", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/borders/border-left-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-bottom-width-applies-to-014.xht": [ - "802d8eb372ca9f4c531c8320d24ef7c6e76aead5", + "border-right-applies-to-006.xht": [ + "a20ceae4ff6668158c65aab410697f6c5a167a58", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/borders/border-left-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-bottom-width-applies-to-015.xht": [ - "fb8e2a2c975ceff1a0be06ef0d192ee1b1f74ec5", + "border-right-applies-to-007.xht": [ + "312a6f0887c8adf6b5ca620fcc175da26ad0080c", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/borders/border-left-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-color-001.xht": [ - "3f850b5f72311a977058e39da568576b4e6cebad", + "border-right-applies-to-009.xht": [ + "abdfa3c4431d43406ab5d6fc79e10c130af84bc6", [ null, [ [ - "/css/CSS2/borders/border-color-001-ref.xht", + "/css/CSS2/borders/border-left-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-color-005.xht": [ - "aee28b34775f253bd4b6d4417180338d2528c4a6", + "border-right-applies-to-012.xht": [ + "744f1bcec315c79bf319d927045077d60a2c257b", [ null, [ [ - "/css/CSS2/borders/border-color-005-ref.xht", + "/css/CSS2/borders/border-left-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-color-006.xht": [ - "a1abebc1216a15d4b5373170e2efa8791e33d27d", + "border-right-applies-to-013.xht": [ + "a66c719b6b50b9d1ff1d06e015e5081cc7af6794", [ null, [ [ - "/css/CSS2/borders/border-color-006-ref.xht", + "/css/CSS2/borders/border-left-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-color-010.xht": [ - "58de67eb60e27e84918f32beb4db84b264f54413", + "border-right-applies-to-014.xht": [ + "005999f8925e23ba5283ef754ee30b57a4ac18a4", [ null, [ [ - "/css/CSS2/borders/border-color-010-ref.xht", + "/css/CSS2/borders/border-left-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-color-011.xht": [ - "7a66f5a22d7b66b2c87b31948213257633782764", + "border-right-applies-to-015.xht": [ + "a6125e916b5ef44587aa56ebdc8b0729271f3823", [ null, [ [ - "/css/CSS2/borders/border-color-011-ref.xht", + "/css/CSS2/borders/border-left-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-color-012.xht": [ - "3063cf1f002706a248cef51fcd35a7f5af5b8b6d", + "border-right-color-129.xht": [ + "814bf8a4328575892aa0872329537fe599de0bbf", [ null, [ [ - "/css/CSS2/borders/border-color-012-ref.xht", + "/css/CSS2/borders/border-right-color-129-ref.xht", "==" ] ], {} ] ], - "border-color-applies-to-001.xht": [ - "53d5e3ae6dd935aa94b09a48d889a1f14e07ce04", + "border-right-color-174.xht": [ + "0e3bdb2e93a0469190147cdf047e5e2f7c669470", [ null, [ [ - "/css/CSS2/borders/border-applies-to-001-ref.xht", + "/css/CSS2/borders/border-left-color-174-ref.xht", "==" ] ], {} ] ], - "border-color-applies-to-002.xht": [ - "a8adb2f9937ca4acd88fa5e2e7dc983cfe2abd89", + "border-right-color-175.xht": [ + "af3b77c473eb40074ec9c3d7011fbcba2e424e0b", [ null, [ [ - "/css/CSS2/borders/border-applies-to-001-ref.xht", + "/css/CSS2/borders/border-right-color-175-ref.xht", "==" ] ], {} ] ], - "border-color-applies-to-003.xht": [ - "e6d7d63223b1953aa6f4b88965c3407c04debb1c", + "border-right-color-applies-to-001.xht": [ + "0584bb0715f073ea1b6161a111c768dc25e73cb8", [ null, [ [ - "/css/CSS2/borders/border-applies-to-001-ref.xht", + "/css/CSS2/borders/border-left-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-color-applies-to-004.xht": [ - "8deb7a430a96573087f383d99585ab4d7170fe39", + "border-right-color-applies-to-002.xht": [ + "64b721a9e174d1bf2abeba6dde3addd80cb5af9e", [ null, [ [ - "/css/CSS2/borders/border-applies-to-001-ref.xht", + "/css/CSS2/borders/border-left-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-color-applies-to-005.xht": [ - "454010ef8ff2eef73a186c4f8f9cfdff495adee0", + "border-right-color-applies-to-003.xht": [ + "2b974c1cc4837c6890ca8006f3e432bdd519d0c1", [ null, [ [ - "/css/CSS2/borders/border-applies-to-001-ref.xht", + "/css/CSS2/borders/border-left-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-color-applies-to-006.xht": [ - "583ef70e6aac930923b5d579d8f3de4563bc4d76", + "border-right-color-applies-to-004.xht": [ + "8b38a92c1c00cf4f149dea8e48330fca2c57155a", [ null, [ [ - "/css/CSS2/borders/border-applies-to-001-ref.xht", + "/css/CSS2/borders/border-left-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-color-applies-to-007.xht": [ - "ce7a3e3445a4861aa730abc9d745c9c313baa443", + "border-right-color-applies-to-005.xht": [ + "5f25b89ea7f677c625284dd0a448a54c8a77cc12", [ null, [ [ - "/css/CSS2/borders/border-applies-to-001-ref.xht", + "/css/CSS2/borders/border-left-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-color-applies-to-009.xht": [ - "9b6de22ca9082a4d9999c8baed32bbd34cb6a0c2", + "border-right-color-applies-to-006.xht": [ + "df10cf2033276e3041830505dbecb38ec2550aff", [ null, [ [ - "/css/CSS2/borders/border-applies-to-001-ref.xht", + "/css/CSS2/borders/border-left-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-color-applies-to-012.xht": [ - "3f9af412e5f183db8a172cda2e74e55876e91c70", + "border-right-color-applies-to-007.xht": [ + "c598af5e6a13ff09d6688f38a1355a8984243714", [ null, [ [ - "/css/CSS2/borders/border-applies-to-001-ref.xht", + "/css/CSS2/borders/border-left-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-color-applies-to-013.xht": [ - "1b240e08743c4f27312033f0661bf4443c3dbb8e", + "border-right-color-applies-to-009.xht": [ + "8eed2a40543e7a587706c11ac5be9c5c2e9bb23b", [ null, [ [ - "/css/CSS2/borders/border-applies-to-001-ref.xht", + "/css/CSS2/borders/border-left-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-color-applies-to-014.xht": [ - "cac9b1a9b82d59415f41df72ba16c08e7a763b4f", + "border-right-color-applies-to-012.xht": [ + "e0698afcee64b83cf0146c66704233c5b973aba3", [ null, [ [ - "/css/CSS2/borders/border-applies-to-001-ref.xht", + "/css/CSS2/borders/border-left-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-color-applies-to-015.xht": [ - "5f19d45c58c4f45be40579cceae369e37e0e18c3", + "border-right-color-applies-to-013.xht": [ + "f04440cc1eaeb71537aa4a4a4785154cc7808a01", [ null, [ [ - "/css/CSS2/borders/border-applies-to-001-ref.xht", + "/css/CSS2/borders/border-left-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-color-shorthand-001.xht": [ - "d24f9d584f61699cd273b7ebb9268169223b856a", + "border-right-color-applies-to-014.xht": [ + "01e665ec40a95da17b0707f0c05add0d63575e6f", [ null, [ [ - "/css/CSS2/borders/border-color-shorthand-001-ref.xht", + "/css/CSS2/borders/border-left-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-conflict-style-101.xht": [ - "dcb0be58830a1ea0afde4bc2b42e62d54a6db7b1", + "border-right-color-applies-to-015.xht": [ + "a07ef69ce59885e3805ea0dcccfa241490b60391", [ null, [ [ - "/css/CSS2/borders/border-conflict-style-101-ref.xht", + "/css/CSS2/borders/border-left-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-conflict-style-102.xht": [ - "92708edab77e3d4b26dada9e3bb5f284eb68ed9f", + "border-right-style-001.xht": [ + "03885260143d40d02f1bf7b4b13cba3f659f7a06", [ null, [ [ - "/css/CSS2/borders/border-conflict-style-101-ref.xht", + "/css/CSS2/reference/ref-nothing-below.xht", "==" ] ], {} ] ], - "border-conflict-style-103.xht": [ - "650225a71c8d7a041fd28a1ac9f884d2fb50fcdc", + "border-right-style-002.xht": [ + "5e4e179935be9e50f97510e15ccce6e283ae86c4", [ null, [ [ - "/css/CSS2/borders/border-conflict-style-101-ref.xht", + "/css/CSS2/reference/ref-nothing-below.xht", "==" ] ], {} ] ], - "border-conflict-style-104.xht": [ - "72c380716a22c6c27fea0bbf25b298693508d638", + "border-right-style-005.xht": [ + "4f782cb285bf81b303db2c14a2c59120a2ed1b6e", [ null, [ [ - "/css/CSS2/borders/border-conflict-style-101-ref.xht", + "/css/CSS2/borders/border-right-style-005-ref.xht", "==" ] ], {} ] ], - "border-conflict-style-105.xht": [ - "420c4543d33ce11dcdb3d78bd7216e3c2880d48c", + "border-right-width-001.xht": [ + "3469082442c7b44e7833c25cd810abfe6b9eae41", [ null, [ [ - "/css/CSS2/borders/border-conflict-style-101-ref.xht", + "/css/CSS2/borders/border-left-width-001-ref.xht", "==" ] ], {} ] ], - "border-conflict-style-106.xht": [ - "4b27a7d6f9f5e66dbb343349589d10261f86a6bd", + "border-right-width-002.xht": [ + "a24ec76dc1179c77f1b4bb25e9c4759589c99db1", [ null, [ [ - "/css/CSS2/borders/border-conflict-style-101-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-dynamic-001.xht": [ - "dc73fecbfa648689495586e9baa02e7c3f480ca6", + "border-right-width-003.xht": [ + "d3f4ade0fe4891565b5fb8c864ff5d7e41f5d190", [ null, [ [ - "/css/CSS2/borders/border-dynamic-001-ref.xht", + "/css/CSS2/borders/border-left-width-003-ref.xht", "==" ] ], {} ] ], - "border-dynamic-002.xht": [ - "2bef11b5a9340ee2b7f7d53ab840852eba868812", + "border-right-width-004.xht": [ + "d32791c783da238c13d2c55b810ab270d7fca136", [ null, [ [ - "/css/CSS2/borders/border-dynamic-001-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-left-001.xht": [ - "1841b67c01de7ab7048304fa6dbb3101ebec5a3d", + "border-right-width-005.xht": [ + "11e926fa45b7dca431701e2ff745c64c538206a8", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-left-003.xht": [ - "4cd0d253768a9ce56939a88cb73145fd4edcb7f0", + "border-right-width-006.xht": [ + "63d4a83194c8ab360f484caaf68ba87d695d27f5", [ null, [ [ - "/css/CSS2/borders/border-left-003-ref.xht", + "/css/CSS2/borders/border-left-width-006-ref.xht", "==" ] ], {} ] ], - "border-left-005.xht": [ - "a1ad9d99195f73877935923a00c6a1b74e70338f", + "border-right-width-007.xht": [ + "7f82ddd89f8a761f95e186ed03fef942ee89a505", [ null, [ [ - "/css/CSS2/borders/border-left-005-ref.xht", + "/css/CSS2/borders/border-left-width-006-ref.xht", "==" ] ], {} ] ], - "border-left-006.xht": [ - "453d1258488e80e1afbd20afa32f4cf8f27e2c0c", + "border-right-width-012.xht": [ + "342203f15a4c771ba288cb5c663af50bceb830a4", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/borders/border-left-width-001-ref.xht", "==" ] ], {} ] ], - "border-left-008.xht": [ - "ff7ea9e4ae54e47a19e902c968dc07019384d93e", + "border-right-width-013.xht": [ + "a52fc420804f17cb2023d1e1653858ed7b0cf5d0", [ null, [ [ - "/css/CSS2/borders/border-left-005-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-left-018.xht": [ - "779c1c48f387cc65b01e8c1d12c88b3696487f87", + "border-right-width-015.xht": [ + "f2198816dfa39b06351a0331be245a5786c8edf5", [ null, [ [ - "/css/CSS2/borders/border-left-018-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-left-applies-to-001.xht": [ - "8be243f550b7e8d8521cad3f7b473604cb96417d", + "border-right-width-016.xht": [ + "72661c44e960088a8eb71f7cbd9fd579fd78f2ff", [ null, [ [ - "/css/CSS2/borders/border-left-applies-to-001-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-left-applies-to-002.xht": [ - "313695734d61572a62778090d12c1639e52de7d4", + "border-right-width-017.xht": [ + "c9c1489daf2c9dba3ca28f76d1f3200bc4070678", [ null, [ [ - "/css/CSS2/borders/border-left-applies-to-001-ref.xht", + "/css/CSS2/borders/border-left-width-006-ref.xht", "==" ] ], {} ] ], - "border-left-applies-to-003.xht": [ - "dd97d209d2f43ff1754bf0eaf196d4c5ef0a6a2e", + "border-right-width-018.xht": [ + "94dc1cbc534f357886b34b8b3bfb4b7a8a6e72df", [ null, [ [ - "/css/CSS2/borders/border-left-applies-to-001-ref.xht", + "/css/CSS2/borders/border-left-width-006-ref.xht", "==" ] ], {} ] ], - "border-left-applies-to-004.xht": [ - "c1e483bfab1f425fb7af3e7156333e7e406ba563", + "border-right-width-023.xht": [ + "a6de68bb42da898d4cb05eeebec928416d27b10e", [ null, [ [ - "/css/CSS2/borders/border-left-applies-to-001-ref.xht", + "/css/CSS2/borders/border-left-width-001-ref.xht", "==" ] ], {} ] ], - "border-left-applies-to-005.xht": [ - "75e084ecfe99a523a28072b1c0e879af54974e30", + "border-right-width-024.xht": [ + "9fd2cdeece5d69a14f5e7190d85a872d98a9f359", [ null, [ [ - "/css/CSS2/borders/border-left-applies-to-001-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-left-applies-to-006.xht": [ - "3c1555a1ab30d9c86a93f72f53e8c2aa1b11b608", + "border-right-width-025.xht": [ + "05692680738d21d9c156368a64ae8ec5f3428456", [ null, [ [ - "/css/CSS2/borders/border-left-applies-to-001-ref.xht", + "/css/CSS2/borders/border-left-width-025-ref.xht", "==" ] ], {} ] ], - "border-left-applies-to-007.xht": [ - "fa69ebe2ee65309778d9531b11f11630e53f2b00", + "border-right-width-026.xht": [ + "08ba61e17b02011de1b50be541030f07be9eadd6", [ null, [ [ - "/css/CSS2/borders/border-left-applies-to-001-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-left-applies-to-009.xht": [ - "3f14c06a6e9b99724992d32acfe46a3c43edfbb3", + "border-right-width-027.xht": [ + "0cc454778eec146905d613439db8b0795181b47d", [ null, [ [ - "/css/CSS2/borders/border-left-applies-to-001-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-left-applies-to-012.xht": [ - "dffffa23f75fc9d625a05b4d48859075357ebff6", + "border-right-width-028.xht": [ + "4e0e18a6d39b19b806dcb0f449c40f20cffdb69a", [ null, [ [ - "/css/CSS2/borders/border-left-applies-to-001-ref.xht", + "/css/CSS2/borders/border-left-width-006-ref.xht", "==" ] ], {} ] ], - "border-left-applies-to-013.xht": [ - "faed9e3dfddb3a497b4c8017b08f65a0b3313d20", + "border-right-width-029.xht": [ + "48e5fdd71120dc9ab8abc2ebf530983dd1850873", [ null, [ [ - "/css/CSS2/borders/border-left-applies-to-001-ref.xht", + "/css/CSS2/borders/border-left-width-006-ref.xht", "==" ] ], {} ] ], - "border-left-applies-to-014.xht": [ - "3a30e0021202e1043b97296c33cf1bdecf48e41a", + "border-right-width-034.xht": [ + "4f9e87195d317a05a5d6ab563ea99368ecc3410b", [ null, [ [ - "/css/CSS2/borders/border-left-applies-to-001-ref.xht", + "/css/CSS2/borders/border-left-width-001-ref.xht", "==" ] ], {} ] ], - "border-left-applies-to-015.xht": [ - "d9ab50594a3a0f70d267580ca04f58b10c33a135", + "border-right-width-035.xht": [ + "36343f9a9da3e37f30336f566f433ad3443a7615", [ null, [ [ - "/css/CSS2/borders/border-left-applies-to-001-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-left-color-001.xht": [ - "26f026c1cb0446917408e756ad3b0ded8eed1dc4", + "border-right-width-037.xht": [ + "8979789c64b76f9d352461fed27d7b0cbe9eca32", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-left-color-002.xht": [ - "0a7aeffc3c6ae6c16879973bd3302ebfb69c5234", + "border-right-width-038.xht": [ + "9fb2c8eaad3e4630f40194c607615b7b08ebfcc6", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-left-color-003.xht": [ - "7c7485bdba1fb718ef1eec41ca794f49ca871056", + "border-right-width-039.xht": [ + "6645aa14916dab671409ba4a08ebb76303a18838", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-003-ref.xht", + "/css/CSS2/borders/border-left-width-006-ref.xht", "==" ] ], {} ] ], - "border-left-color-004.xht": [ - "fe6e8e63a64298e34899fedf812fffce48c81eb3", + "border-right-width-040.xht": [ + "c7ee6a0c62abb0cb5e55f8915733c1a8f3824374", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-004-ref.xht", + "/css/CSS2/borders/border-left-width-006-ref.xht", "==" ] ], {} ] ], - "border-left-color-005.xht": [ - "d458a713567bb0fadc0a2a16fe61da00401c5ceb", + "border-right-width-045.xht": [ + "0e8449e97aa1f51a9481ea581f6da441638e612b", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-005-ref.xht", + "/css/CSS2/borders/border-left-width-001-ref.xht", "==" ] ], {} ] ], - "border-left-color-006.xht": [ - "2aeb4e00fb4bdb0e980068c66863487fb768626e", + "border-right-width-046.xht": [ + "9c256043907883eaba6e48533fa2167bb8cdbe99", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-006-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-left-color-007.xht": [ - "96793387bf1a5745ee520c99657ed7dc7c0bc2b5", + "border-right-width-048.xht": [ + "928bfa227d963dce4d53f1df4355618bfe0fa959", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-left-color-008.xht": [ - "b95241d8008a31c65f4f7a13c7c84323fe9c4c09", + "border-right-width-049.xht": [ + "1087e7fb687bfb1dfbbe044b87023f622db69d80", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-left-color-009.xht": [ - "7d167052c13642032ae2bb018284721cf4e71348", + "border-right-width-050.xht": [ + "e425ddb23d0995bb3f2f52c8c11246a571bf81d1", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-009-ref.xht", + "/css/CSS2/borders/border-left-width-006-ref.xht", "==" ] ], {} ] ], - "border-left-color-010.xht": [ - "1f41c35badb5df314df0f536547c10ef57eceabc", + "border-right-width-051.xht": [ + "90c8b92dd3a1cd67129d8b41d32199baee9b02e7", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-010-ref.xht", + "/css/CSS2/borders/border-left-width-006-ref.xht", "==" ] ], {} ] ], - "border-left-color-011.xht": [ - "19acbe2f35af58bc4d54d84b6782d6590887a355", + "border-right-width-056.xht": [ + "22821be3ae9a8da7141964b90062342a4e55098c", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-011-ref.xht", + "/css/CSS2/borders/border-left-width-001-ref.xht", "==" ] ], {} ] ], - "border-left-color-012.xht": [ - "784a876d4eae2f524ebf644664bc41ad921ba23e", + "border-right-width-057.xht": [ + "d9caf7146b145c83391df9367d3d1e941a7ca54a", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-012-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-left-color-013.xht": [ - "cb89214e1e4fff0960dce35103b33895e5f54cac", + "border-right-width-058.xht": [ + "a733e72b117a74f9defa5fd43e1ffdfc640d8123", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/borders/border-left-width-006-ref.xht", "==" ] ], {} ] ], - "border-left-color-014.xht": [ - "c407698f8137ff182cbac753c664d66367dde8fd", + "border-right-width-059.xht": [ + "66e329d128822726ea400a35bdf39d1c4c5858dc", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-014-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-left-color-015.xht": [ - "0d502b9f9e1214b1c77e9390997a196d03a7a95c", + "border-right-width-060.xht": [ + "843d235722b3e96e70decef4e5252a533efbf1bb", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-015-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-left-color-016.xht": [ - "41c308d15b8bf6f5318dc19da665ae81d5769554", + "border-right-width-061.xht": [ + "f2f0aa82be2e2cff6d71c175cb073e6f2a0037dc", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-016-ref.xht", + "/css/CSS2/borders/border-left-width-061-ref.xht", "==" ] ], {} ] ], - "border-left-color-017.xht": [ - "d8cbe8b1e1f6442de0314c1e8c61c93eaa5b8e1b", + "border-right-width-062.xht": [ + "e86776eda249e3a4a5f12f73c77d4a7be44ef2c2", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-017-ref.xht", + "/css/CSS2/borders/border-left-width-061-ref.xht", "==" ] ], {} ] ], - "border-left-color-018.xht": [ - "49fea3c70d5b6c585f6553a516715a77cbba6314", + "border-right-width-067.xht": [ + "ad524209b30d0f67cf74da78105657412a6016f6", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/borders/border-left-width-001-ref.xht", "==" ] ], {} ] ], - "border-left-color-019.xht": [ - "583852437d916891a16ef8381e917b18e5c24eef", + "border-right-width-068.xht": [ + "03d164cb34bd884925f6252779b543a87419c29c", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-019-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-left-color-020.xht": [ - "ddfb8b49cd5be36df7128fafa124a37837526c1d", + "border-right-width-069.xht": [ + "9b9dc1ec71787bd578c2efd525fa958c16248136", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-020-ref.xht", + "/css/CSS2/borders/border-left-width-069-ref.xht", "==" ] ], {} ] ], - "border-left-color-021.xht": [ - "f0c16a7b5b92a708d6a2cc460dcb1dafea06df9e", + "border-right-width-070.xht": [ + "8877c5de1fbb1e7910f4d86aeffc18b0ead0e7bb", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-021-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-left-color-022.xht": [ - "129f5f1a8cf7b32740ab0982689016631eb98995", + "border-right-width-071.xht": [ + "df5c2861d744b7d3b2fdf27d2f093e0aa49f836c", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-022-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-left-color-023.xht": [ - "ed969cff29e1c139c226f36db17ff3ac0ba13ef0", + "border-right-width-072.xht": [ + "9b9affd6b16916fad86f65926e1a13d1c5d3e4e4", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/borders/border-left-width-072-ref.xht", "==" ] ], {} ] ], - "border-left-color-024.xht": [ - "fb1bf0d78c6c401c65ca2b78921a03f921f365b6", + "border-right-width-073.xht": [ + "df2a2617b958839d640c4ce11b004d5128874226", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/borders/border-left-width-072-ref.xht", "==" ] ], {} ] ], - "border-left-color-025.xht": [ - "2d1e9950b9ce5b878aa6d3e19b286b3e42605775", + "border-right-width-078.xht": [ + "92c9fbdeeac76a3ddb20157391545086354c9411", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/CSS2/borders/border-left-width-001-ref.xht", "==" ] ], {} ] ], - "border-left-color-026.xht": [ - "4abf4266979371b8c46f7ab5926074d9342d4298", + "border-right-width-079.xht": [ + "c83bca26b9cd45d29e503fff13a2a62a93f30b89", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-026-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-left-color-027.xht": [ - "c28aa21bf52fa46ec25fe5cf5ae16b2b10e6c269", + "border-right-width-080.xht": [ + "79a2ad83541ea2744118bea13c77339623519502", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-027-ref.xht", + "/css/CSS2/borders/border-left-width-025-ref.xht", "==" ] ], {} ] ], - "border-left-color-028.xht": [ - "386c42a244e5168a303bdcc6df41d3859b4b6eed", + "border-right-width-081.xht": [ + "00e92b41fbc76f194432038ff995f0f0f5e53479", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-028-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-left-color-029.xht": [ - "f2624c1dff0f1fc6031c16a35d7a9599eb45f80e", + "border-right-width-082.xht": [ + "40fea86ff314beec8827ffe3247bbb8b4fd60557", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-006-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-left-color-030.xht": [ - "fc62a4b144273f2265e5379e57e1a8b6ddf73d96", + "border-right-width-083.xht": [ + "8b23ae9add4e07fc2e143414cc8b607ce3c773c4", [ null, [ [ - "/css/CSS2/reference/ref-transparent-or-black-square-black.xht", - "==" - ], - [ - "/css/CSS2/reference/ref-transparent-or-black-square-transparent.xht", + "/css/CSS2/borders/border-left-width-006-ref.xht", "==" ] ], {} ] ], - "border-left-color-031.xht": [ - "c31e9d9eaa310d862e8b6204617bc7c7f9b777aa", + "border-right-width-084.xht": [ + "c5000a1d6e829f1a2c798095f09c0e071f4f110d", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/borders/border-left-width-006-ref.xht", "==" ] ], {} ] ], - "border-left-color-032.xht": [ - "2478e7880a1fe2c8931e260d790f45095aad302b", + "border-right-width-089.xht": [ + "9010def205b4d1ba0a6c1268a94dc567bbc32459", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-032-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-left-color-033.xht": [ - "79ec0085baff5767ee905244b8905e925ee455f7", + "border-right-width-090.xht": [ + "24381d003b8ab07048caf062cc3872d38179bfd3", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-010-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-left-color-034.xht": [ - "2282d05879465d6ee1ab90459a4611594521db39", + "border-right-width-091.xht": [ + "7afff86301e294e0eeb91e87d6e29b80630fd25c", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-034-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-left-color-035.xht": [ - "25acf6d8ad2cf3dbe9dde7bc198fa418802ee4cb", + "border-right-width-095.xht": [ + "04e6ea9547f3a379f1e01bbebabe730f0925d18f", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-012-ref.xht", + "/css/CSS2/borders/border-right-width-095-ref.xht", "==" ] ], {} ] ], - "border-left-color-036.xht": [ - "b268910e59e4069faf50734a1cb57a2a96d0259e", + "border-right-width-applies-to-001.xht": [ + "d3cda4a81466d612ac25e93b7017809540b113a3", [ null, [ @@ -46580,60 +47367,60 @@ {} ] ], - "border-left-color-037.xht": [ - "73cf82df6bf81148521a33ce20cad610b8291eea", + "border-right-width-applies-to-002.xht": [ + "9d52ee5c5f0c9ddb4fd74cd7d1822ae64616d679", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-037-ref.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "border-left-color-038.xht": [ - "cffdd3fa1061bef6e9f85a6cc85bee68e9dbf34b", + "border-right-width-applies-to-003.xht": [ + "c03d2e5fd81d3b941219405c65192cffc116e780", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-038-ref.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "border-left-color-039.xht": [ - "ffada9e7a159c31a287cebe0b6f527228cedd375", + "border-right-width-applies-to-004.xht": [ + "4b5812a8efec7343f0a1adabaea73e9bef08ef14", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-039-ref.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "border-left-color-040.xht": [ - "edd44d2af91da6d2be7970121fc2723b857a4035", + "border-right-width-applies-to-005.xht": [ + "6ba84ffde5b88a0c57e76910a9143f884c1f7c26", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-017-ref.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "border-left-color-041.xht": [ - "8a19c644befaeb76919c083b23ac29bf661c96b3", + "border-right-width-applies-to-006.xht": [ + "cc0b59fca711e9f5cb1bd9eb2d7d1c21e5b07357", [ null, [ @@ -46645,60 +47432,60 @@ {} ] ], - "border-left-color-042.xht": [ - "eeaa75b5aced09bd601da6c7059a38ddc97fb035", + "border-right-width-applies-to-007.xht": [ + "c5934be7123f45dba54f236161bf5383d4df82f2", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-042-ref.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "border-left-color-043.xht": [ - "12cddbd1cb0a3e5fcb91bdc383d48fdc5fe43090", + "border-right-width-applies-to-009.xht": [ + "c90b6e13f08297b614b781410a67b71b14677db0", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-020-ref.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "border-left-color-044.xht": [ - "9232b04ff64f58fc0fa984a5af6f77ed14c95a23", + "border-right-width-applies-to-012.xht": [ + "2f47dfa83bead3df13635fc2d14caa1cbd9dda9c", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-044-ref.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "border-left-color-045.xht": [ - "d8afc8a85c023def13d8de4b448abe112e22819f", + "border-right-width-applies-to-013.xht": [ + "cf87a3f3a4eda2ea864fe41066aca752d70e29f3", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-022-ref.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "border-left-color-046.xht": [ - "0e585c32770a2ad1d74f4957640d1e11f6c25653", + "border-right-width-applies-to-014.xht": [ + "47114d7d66acdb28f5737057b3a686b8883ef5f7", [ null, [ @@ -46710,1581 +47497,1581 @@ {} ] ], - "border-left-color-047.xht": [ - "bb0b50b9cbc0b47408dad1008a73954d52bc2d27", + "border-right-width-applies-to-015.xht": [ + "cb782a04e662ffa43e1193d9c64e0a6e169f4bba", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "border-left-color-048.xht": [ - "2526461f94f5b47bc4d3ebebbd111402e07be496", + "border-shorthands-001.xht": [ + "9fc94370cbe3ea77d2b9750ba5c702fd693f0af5", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/CSS2/borders/border-shorthands-001-ref.xht", "==" ] ], {} ] ], - "border-left-color-049.xht": [ - "be71e45ac7347b70c2cba790effff81e8dfdf846", + "border-shorthands-002.xht": [ + "45320df88c7b0ff1bfaefab31a9be269b5f93616", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-049-ref.xht", + "/css/CSS2/borders/border-shorthands-001-ref.xht", "==" ] ], {} ] ], - "border-left-color-050.xht": [ - "62696bbc2f02e4b96b4040cd9d09de747e646098", + "border-shorthands-003.xht": [ + "c88673000fc330f4668d64f22eb270bddbb0bf6b", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/CSS2/borders/border-shorthands-003-ref.xht", "==" ] ], {} ] ], - "border-left-color-051.xht": [ - "e4a74328aae250894ff8ffec1a84e0d0bf7f405e", + "border-style-applies-to-016.xht": [ + "e098bfcca8571a8bd53218a8c3a86c141f755c0c", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/CSS2/borders/border-conflict-style-101-ref.xht", "==" ] ], {} ] ], - "border-left-color-052.xht": [ - "a2469a75741ce32e2c493df6284acdcd2aacf163", + "border-style-applies-to-017.xht": [ + "0a6ac697c7a837a93f44a355a632f7c49794a4ec", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-052-ref.xht", + "/css/CSS2/borders/border-conflict-style-101-ref.xht", "==" ] ], {} ] ], - "border-left-color-053.xht": [ - "e0826207e6b46d9001610b57c71a8f804ce5079d", + "border-style-applies-to-018.xht": [ + "d84d187627147911204ef554a2b3789e2e8dbac4", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-052-ref.xht", + "/css/CSS2/borders/border-conflict-style-101-ref.xht", "==" ] ], {} ] ], - "border-left-color-054.xht": [ - "056a3f792d818f43e076d86e691768e2e1053b92", + "border-style-applies-to-019.xht": [ + "3c60c91fb004bed3540cfc70bbd0b831b22bbec2", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-054-ref.xht", + "/css/CSS2/borders/border-conflict-style-101-ref.xht", "==" ] ], {} ] ], - "border-left-color-055.xht": [ - "51428320a3805e8ce4b5caf46c34ec12c553c87b", + "border-style-applies-to-020.xht": [ + "6af0e6d95c034e9fa29d13bce4786e743821087d", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-006-ref.xht", + "/css/CSS2/borders/border-conflict-style-101-ref.xht", "==" ] ], {} ] ], - "border-left-color-056.xht": [ - "97567200bd7dbfee3ebcb9eea6b40d18432f5df7", + "border-style-applies-to-021.xht": [ + "cead7f762603483a20abccc376651bd6ab861c01", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-006-ref.xht", + "/css/CSS2/borders/border-conflict-style-101-ref.xht", "==" ] ], {} ] ], - "border-left-color-057.xht": [ - "fde87d18988bcabf17a10fa2d282c0001c3be746", + "border-style-applies-to-022.xht": [ + "3429750a07c34facb5b5aebd1ea0805305c69914", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-006-ref.xht", + "/css/CSS2/borders/border-conflict-style-101-ref.xht", "==" ] ], {} ] ], - "border-left-color-058.xht": [ - "f11c3efe0945de769dfc9f1d77bbe2262601fc45", + "border-style-applies-to-023.xht": [ + "f8c87e7ad83118989af10c803c42bd4ec4cc150f", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/CSS2/borders/border-conflict-style-101-ref.xht", "==" ] ], {} ] ], - "border-left-color-059.xht": [ - "a47824414b2b791e8a58bb3decc45b308519fa04", + "border-style-applies-to-024.xht": [ + "3d46c0dabc5493950944510687b4b5283b6955e6", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/CSS2/borders/border-conflict-style-101-ref.xht", "==" ] ], {} ] ], - "border-left-color-060.xht": [ - "5819fd3506a172cad0900de8bbcba1770c46c074", + "border-style-applies-to-025.xht": [ + "d2f21c3c6cec223af9d0b57091987cb3b3c9ba0f", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-003-ref.xht", + "/css/CSS2/borders/border-conflict-style-101-ref.xht", "==" ] ], {} ] ], - "border-left-color-061.xht": [ - "99debe1088c6330b93847d3febcee8f78aba9015", + "border-style-applies-to-026.xht": [ + "5295c13a5d0dd597522d1fc4f3fdfa39ab3235c9", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/CSS2/borders/border-conflict-style-101-ref.xht", "==" ] ], {} ] ], - "border-left-color-062.xht": [ - "99cb289e5c48bb4fb0f161b6d19c027ea3dedbf1", + "border-style-applies-to-027.xht": [ + "0f8692d03884db0f37e5264f862afc8274895d66", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/CSS2/borders/border-conflict-style-101-ref.xht", "==" ] ], {} ] ], - "border-left-color-063.xht": [ - "653414a387dd60471be5c8e02eb69e17e814d53b", + "border-style-initial-001.xht": [ + "4ac676927cb6afea6061094a8554e88b7389cfc9", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-063-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-left-color-064.xht": [ - "b894e3c3c7f26b5535c174ad959b130032ca1767", + "border-top-001.xht": [ + "26591d278977d0e89d2aba8107fdb365ac1c2855", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-063-ref.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "border-left-color-065.xht": [ - "11b46615e89cda801455bff565fcd73b9f770439", + "border-top-005.xht": [ + "52fcf8ac0fa76a20ed8f3f22264216e4753badce", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-005-ref.xht", + "/css/CSS2/borders/border-top-005-ref.xht", "==" ] ], {} ] ], - "border-left-color-066.xht": [ - "89b0058e0caaec44492d2c084943bb91b0b5c87b", + "border-top-006.xht": [ + "3ae3278d66fd4aefe9e7e4c476a048b2dd6e3d47", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-006-ref.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "border-left-color-067.xht": [ - "b595cea5f538bc3e9390ff42e2dcced3f5bfbaa6", + "border-top-008.xht": [ + "6a37fcac0b414b6c435f9c01995f463f9a648072", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-006-ref.xht", + "/css/CSS2/borders/border-top-005-ref.xht", "==" ] ], {} ] ], - "border-left-color-068.xht": [ - "b582d0df9e595f03661fcacb1303d7eb71c2c6f8", + "border-top-018.xht": [ + "004eb29e24c03814137e5b259d946d7ed4c1c242", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-006-ref.xht", + "/css/CSS2/borders/border-top-018-ref.xht", "==" ] ], {} ] ], - "border-left-color-069.xht": [ - "9662a942ca4970ccee8d75889d3f368cc625734a", + "border-top-applies-to-001.xht": [ + "e0b5d96d4b5bb93aab2019f56a7e892418821996", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/CSS2/borders/border-bottom-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-left-color-070.xht": [ - "abfd0c62f08bd312564d4fdc647e9d648a5a6624", + "border-top-applies-to-002.xht": [ + "fb26510e71a600a721237b069f72fbe482c7e933", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-070-ref.xht", + "/css/CSS2/borders/border-bottom-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-left-color-071.xht": [ - "f1b227975951c0bd77607706b27fffe8c6c4bea3", + "border-top-applies-to-003.xht": [ + "a8b47758729281efa02c73fa10e1a99c4020094f", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/CSS2/borders/border-bottom-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-left-color-072.xht": [ - "ba018039852b9ea7e99032db35d674d37145dd4f", + "border-top-applies-to-004.xht": [ + "5e6c693e1188f940ffc9a72e36096a6f8a7f7d8d", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/CSS2/borders/border-bottom-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-left-color-073.xht": [ - "612d7002d4ee1836a34a02ac0df91d5e46bef72a", + "border-top-applies-to-005.xht": [ + "8cd91c58fe193ef75e9658da3c445115cacf953d", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-073-ref.xht", + "/css/CSS2/borders/border-bottom-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-left-color-074.xht": [ - "4f49db32766228931a4f41407ff0395c469799e4", + "border-top-applies-to-006.xht": [ + "4c2cca6645edab2e18a9d32aaa87ada91995a3b5", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-073-ref.xht", + "/css/CSS2/borders/border-bottom-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-left-color-075.xht": [ - "242b6ac67814166913361ccc135883beec71c9c5", + "border-top-applies-to-007.xht": [ + "860c4fa178356eda3e1a0e075efee9b04ec1d891", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-075-ref.xht", + "/css/CSS2/borders/border-bottom-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-left-color-076.xht": [ - "02980b5942bd662fd6074a1b2b2b792d842cea8e", + "border-top-applies-to-009.xht": [ + "04c3110b4e39258504a70eb7baed0ccdd4a16df9", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-012-ref.xht", + "/css/CSS2/borders/border-bottom-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-left-color-077.xht": [ - "da72352d1c968b453c71803c61e78fd046615546", + "border-top-applies-to-012.xht": [ + "db9ea7a28d12e996bfef9f106490be4e3562d159", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-012-ref.xht", + "/css/CSS2/borders/border-bottom-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-left-color-078.xht": [ - "6d1cd48952c64066aa3681dbcd90fda8d7cd4d5b", + "border-top-applies-to-013.xht": [ + "b70e17ce4802d475f4fa83cae477cea6ff49a3b2", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-012-ref.xht", + "/css/CSS2/borders/border-bottom-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-left-color-079.xht": [ - "b7f8caf46d52b3e052e9380e74028c72a40e6f78", + "border-top-applies-to-014.xht": [ + "4d6a63839d80d8ebeb80f38399e29d43ba2854ce", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/CSS2/borders/border-bottom-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-left-color-080.xht": [ - "a9878d0981912c62521dec81a5b837d172dc9336", + "border-top-applies-to-015.xht": [ + "954a219d71a80f0b8d15eebdb1eb5552122881ce", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-009-ref.xht", + "/css/CSS2/borders/border-bottom-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-left-color-081.xht": [ - "95de7e74d9df07fc89a8cd0a0e5aef8cf2892ec3", + "border-top-color-129.xht": [ + "d83c31d03c67652517eb893239be5a1dafefa484", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/CSS2/borders/border-bottom-color-129-ref.xht", "==" ] ], {} ] ], - "border-left-color-082.xht": [ - "a0373884ef9807f007cdc15220f58a579a1e3f63", + "border-top-color-174.xht": [ + "fa51cad8412f3b50c03225333be7dd8c2880e31a", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-left-color-083.xht": [ - "c2123960b09467c1ff07b229c07c83398068b46b", + "border-top-color-175.xht": [ + "61bc99e16a29455c6ea1d1b561936e9dd2782910", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-083-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-left-color-084.xht": [ - "f1ba9781eb10f39d8bfcbb6ba150b229368495d9", + "border-top-color-applies-to-001.xht": [ + "1baa664f426f79a7b5ae372fd7d2391d39f720ae", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-083-ref.xht", + "/css/CSS2/borders/border-bottom-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-left-color-085.xht": [ - "d3482935a0e083c750bf5a77b3e106a666557012", + "border-top-color-applies-to-002.xht": [ + "438ddfa73a75f1e3419c4acfe9ee78b4a9440319", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-011-ref.xht", + "/css/CSS2/borders/border-bottom-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-left-color-086.xht": [ - "85a79765cc8ccb2283bacfad9217fb18116fd14b", + "border-top-color-applies-to-003.xht": [ + "4fa1619c699721bbcf4adc2a4d0fd3e26c424796", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-012-ref.xht", + "/css/CSS2/borders/border-bottom-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-left-color-087.xht": [ - "9d2489a719f98cae989f8d3f0df34ea1f644b8a2", + "border-top-color-applies-to-004.xht": [ + "6d6f28ab6bb08290e2333615bad2432980e1f975", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-012-ref.xht", + "/css/CSS2/borders/border-bottom-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-left-color-088.xht": [ - "ff2bfa664e28d0215f3733f045bac33b986a567b", + "border-top-color-applies-to-005.xht": [ + "b31cab2c160d87843aa5341070cb4f2c62522a1b", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-012-ref.xht", + "/css/CSS2/borders/border-bottom-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-left-color-089.xht": [ - "a0dc7872e366508099d64e2798b6a5146483791f", + "border-top-color-applies-to-006.xht": [ + "72901342b0ecbffe9526d3d5475b36233615c4de", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/CSS2/borders/border-bottom-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-left-color-090.xht": [ - "5c1908aeac479c263cc254c550712a242745f5fa", + "border-top-color-applies-to-007.xht": [ + "502b5c5ad5323d1a214392c610b9174a023112c2", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-090-ref.xht", + "/css/CSS2/borders/border-bottom-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-left-color-091.xht": [ - "e639eb7a98c0542fd6c575ed2abff4f5bb77f62f", + "border-top-color-applies-to-009.xht": [ + "6c0a8cb9776bc20625670e555f4c79054bed6e13", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/CSS2/borders/border-bottom-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-left-color-092.xht": [ - "0a78434d04abf0e8b029cad360cfd62ed9d3d82d", + "border-top-color-applies-to-012.xht": [ + "1fa27005d539a21e8f2361783e9f8d3a3295a377", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/CSS2/borders/border-bottom-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-left-color-093.xht": [ - "18d995441d48e4bb886dbf613c010feecd80b807", + "border-top-color-applies-to-013.xht": [ + "dc6c81ea37f5e4b70c344a0a978ed84068793b2d", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-093-ref.xht", + "/css/CSS2/borders/border-bottom-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-left-color-094.xht": [ - "2940b09fee9a9fc5fcb786f623eb82ae3caae67f", + "border-top-color-applies-to-014.xht": [ + "5d097f7f804fdf1a268be8cfa3130db224a83be4", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-093-ref.xht", + "/css/CSS2/borders/border-bottom-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-left-color-095.xht": [ - "3bef2686acde811579495e0adb455ccd83459b8a", + "border-top-color-applies-to-015.xht": [ + "d8a728ab3bdfca18b783c6539bfeb751a8df62cc", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-095-ref.xht", + "/css/CSS2/borders/border-bottom-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-left-color-096.xht": [ - "fc75c29a7d3b65a4b46793e10a43d5ae459a8657", + "border-top-style-001.xht": [ + "885ae7a0349afc678d2e0585ed86d8c66370ce66", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-017-ref.xht", + "/css/CSS2/reference/ref-nothing-below.xht", "==" ] ], {} ] ], - "border-left-color-097.xht": [ - "5b90142132bc94e35a9b948af7dbfb0a026bee91", + "border-top-style-002.xht": [ + "164d479fd9e85c0fed53c11470e7567fdfdc0124", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-017-ref.xht", + "/css/CSS2/reference/ref-nothing-below.xht", "==" ] ], {} ] ], - "border-left-color-098.xht": [ - "e38bccc776e22423a1eaae146891593ae89d94d5", + "border-top-style-005.xht": [ + "454e8f6371304dbb43636c79f9d00deb70e49667", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-017-ref.xht", + "/css/CSS2/borders/border-bottom-style-005-ref.xht", "==" ] ], {} ] ], - "border-left-color-099.xht": [ - "ff193dccfe48440dc1e4aebbf0b77d0d1926ca3e", + "border-top-width-001.xht": [ + "6cc8fe18493525ac75096241b965d7fe465caa3f", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/CSS2/borders/border-top-width-001-ref.xht", "==" ] ], {} ] ], - "border-left-color-100.xht": [ - "b2acc607165a5470d32ad577f89615cddf561110", + "border-top-width-002.xht": [ + "c047d4456bc23e8bdc2b6e419a64e18d3c7e1697", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-100-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-left-color-101.xht": [ - "cd7503fa5aa811bb5397326579864151a2d82d02", + "border-top-width-003.xht": [ + "158d36cd026ff4b09d2c4264b1716dbca8b68493", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/CSS2/borders/border-bottom-width-003-ref.xht", "==" ] ], {} ] ], - "border-left-color-102.xht": [ - "3174a878f541292a277b498cd54c97c296aad889", + "border-top-width-004.xht": [ + "109610dee8828d78a65ae7f810be83577b5b03e1", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-left-color-103.xht": [ - "e2378fc5a19eb8b33ae00dc4bcbce7fccd322a3b", + "border-top-width-005.xht": [ + "ae191f7290b216143f468e1cacd9dfddef883105", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-103-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-left-color-104.xht": [ - "5adabc8d38c51dfc34e1f87f8cc1d6e387446952", + "border-top-width-006.xht": [ + "2722da7a5e32cc4279bc1a98fd8a977b8e29be21", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-103-ref.xht", + "/css/CSS2/borders/border-bottom-width-006-ref.xht", "==" ] ], {} ] ], - "border-left-color-105.xht": [ - "65c36432bf1a7ffe5faf8b322c96948500e6d37c", + "border-top-width-007.xht": [ + "8f7175fc2fd5485bdce2de7c6a52fbcd5b6a0a05", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-016-ref.xht", + "/css/CSS2/borders/border-bottom-width-006-ref.xht", "==" ] ], {} ] ], - "border-left-color-106.xht": [ - "f992b2bcfafba239b2437de9d05a52f831014fab", + "border-top-width-012.xht": [ + "d177de1502c39e8274edecde9963b07c5cea5bc4", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-017-ref.xht", + "/css/CSS2/borders/border-top-width-012-ref.xht", "==" ] ], {} ] ], - "border-left-color-107.xht": [ - "7c3e41eefbe2bdc89e2a1b26ea8457c98c73ef84", + "border-top-width-013.xht": [ + "e6d534c5c1d2f251e4b3cd5b031153aa757ced8f", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-017-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-left-color-108.xht": [ - "4c3abbb5fe18e5e95fc3e8e706caf7d2d57383d9", + "border-top-width-015.xht": [ + "f07fa5289e0a1ad50d335b35618982d55d4ab3e2", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-017-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-left-color-109.xht": [ - "0023bef43b414dd80244fb47bcc7a8caff075ca6", + "border-top-width-016.xht": [ + "5cd607d791787ee01714b38439277bf48d7db9d6", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-left-color-110.xht": [ - "c947fe8abeb135ac97c0460e0a61c7f9e6803816", + "border-top-width-017.xht": [ + "1cc81279d7b9432f4d684d76dd5098e43f8e7c22", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-110-ref.xht", + "/css/CSS2/borders/border-bottom-width-006-ref.xht", "==" ] ], {} ] ], - "border-left-color-111.xht": [ - "4c4bf57ea2d7e3edcb439b0b61707c85f7cf4c25", + "border-top-width-018.xht": [ + "c4b1a9f2a5444fcfbc93a94183255a936e46f164", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/CSS2/borders/border-bottom-width-006-ref.xht", "==" ] ], {} ] ], - "border-left-color-112.xht": [ - "1d944cf3828d5705be7789fb8ba0096bc792a9bf", + "border-top-width-023.xht": [ + "7576bc0113d10e9d90ba8f32d684c505b927887d", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/CSS2/borders/border-top-width-012-ref.xht", "==" ] ], {} ] ], - "border-left-color-113.xht": [ - "67b32763daa8523d9d4718c8d3601b6e79abde6a", + "border-top-width-024.xht": [ + "2a2f338fdd099f9d4e3f0e76998fa246006a096f", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-113-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-left-color-114.xht": [ - "e10886c88845a003a4b89c19b6b4b9eb8e980f58", + "border-top-width-025.xht": [ + "8640c00db1c430846cf2204e2ff69957c03bc0cf", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-113-ref.xht", + "/css/CSS2/borders/border-bottom-width-025-ref.xht", "==" ] ], {} ] ], - "border-left-color-115.xht": [ - "72f95ecb55ca778bc60646f940b3bebc88c48480", + "border-top-width-026.xht": [ + "9961cf06a14a658e671c86060aeca9b27f4f8e5b", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-115-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-left-color-116.xht": [ - "bb0714dedfc31935999ce038f09e3490c698dd39", + "border-top-width-027.xht": [ + "51ea2aa1f94571c55502bad523a6d3eb5f1e9bd2", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-022-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-left-color-117.xht": [ - "d35664a9324f27c5f97f5b8991287f64b6ea0424", + "border-top-width-028.xht": [ + "164b29f24dd6772e91e539eb27db3d46f7e9fb72", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-022-ref.xht", + "/css/CSS2/borders/border-bottom-width-006-ref.xht", "==" ] ], {} ] ], - "border-left-color-118.xht": [ - "64043cdc3de3a37dd7f746b5b9fbf6b5b2493285", + "border-top-width-029.xht": [ + "04a68e82c9490da810451061f9473a023d46f15d", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-022-ref.xht", + "/css/CSS2/borders/border-bottom-width-006-ref.xht", "==" ] ], {} ] ], - "border-left-color-119.xht": [ - "5fe0875aa49d4f71a8f26254b749a263815cfeb9", + "border-top-width-034.xht": [ + "6afc210e3a952b6bb1b41495103c588b14b6a004", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/CSS2/borders/border-top-width-012-ref.xht", "==" ] ], {} ] ], - "border-left-color-120.xht": [ - "7d7a31cef2ceeb386b11f527443784e64f4bc431", + "border-top-width-035.xht": [ + "22d6f88f9f315c38278c8b1b7a60154e2f4c7d86", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-019-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-left-color-121.xht": [ - "0f2141de644dfd089c60bb8b8f40d48987db725b", + "border-top-width-037.xht": [ + "45f93b043713974fb55a199d9afcceec62d9277e", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-left-color-122.xht": [ - "690c32632b49764f6528c7725a5af2820ff3f4a8", + "border-top-width-038.xht": [ + "73da8659d1d6844fe5fd5d63671571f5fa7bd5ba", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-left-color-123.xht": [ - "5ca990e89d4e1aadaeefe6f10540e600cf0516da", + "border-top-width-039.xht": [ + "5517d11ac8c8cdeccbd038c6760fd117376349c1", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-123-ref.xht", + "/css/CSS2/borders/border-bottom-width-006-ref.xht", "==" ] ], {} ] ], - "border-left-color-124.xht": [ - "8977d437a9e883154615d6e78fca0b096caf53ff", + "border-top-width-040.xht": [ + "7a31c3ff838ee54df5496f32d3e055ce655642a1", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-123-ref.xht", + "/css/CSS2/borders/border-bottom-width-006-ref.xht", "==" ] ], {} ] ], - "border-left-color-125.xht": [ - "e20a77fd4a756b5b0043711d2644ea8560650f41", + "border-top-width-045.xht": [ + "7b74a3765dddf01700717258cd7ae580dfeb4d34", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-021-ref.xht", + "/css/CSS2/borders/border-top-width-012-ref.xht", "==" ] ], {} ] ], - "border-left-color-126.xht": [ - "ed1ae10382a02f8633ac2833f385c1615caa576b", + "border-top-width-046.xht": [ + "58fda27650a78ba803c38ecdcd219116285a81da", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-022-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-left-color-127.xht": [ - "3f3d1f4c3be4c7a98d9a2fa9bdf6e2f27885b5dd", + "border-top-width-048.xht": [ + "85f1cb6f294c514a84fd6fc00a3dd52185bec2b9", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-022-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-left-color-128.xht": [ - "2dcfe622b4d9fe4e8dea4129cbc12ef25aca508d", + "border-top-width-049.xht": [ + "5b874c9b000d3b14d91076fc8dc3b95ad71e963f", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-022-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-left-color-129.xht": [ - "dfd7518334e60a300daf749375b4449e55d03121", + "border-top-width-050.xht": [ + "f5e4da2aad693f0789a720c19b8ace4bf7e52a13", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-129-ref.xht", + "/css/CSS2/borders/border-bottom-width-006-ref.xht", "==" ] ], {} ] ], - "border-left-color-130.xht": [ - "8afb06935b4b653cb5ca0eea10cfdacb0b80db16", + "border-top-width-051.xht": [ + "9a47c31afecd4f225636de484f8fd79c97f9d121", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/CSS2/borders/border-bottom-width-006-ref.xht", "==" ] ], {} ] ], - "border-left-color-131.xht": [ - "6302912a84d4ade39969b83dd1bd0ce3545c250b", + "border-top-width-056.xht": [ + "0c1350e24a3040753683aedbd88ace4e5260f31f", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-131-ref.xht", + "/css/CSS2/borders/border-top-width-012-ref.xht", "==" ] ], {} ] ], - "border-left-color-132.xht": [ - "c554a0640a1c58fbc2269c8dc2584a4111b5788a", + "border-top-width-057.xht": [ + "eb28cd026e2c4a364426c519eb55eb69ac19829e", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-132-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-left-color-133.xht": [ - "58657b2f73239b990ea307bb7cdaa73e2c04f878", + "border-top-width-058.xht": [ + "86ecc12008da631a34d938cff8edab8e148ebf77", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-133-ref.xht", + "/css/CSS2/borders/border-bottom-width-058-ref.xht", "==" ] ], {} ] ], - "border-left-color-134.xht": [ - "3b104fea833d198aa7aa92ff4082c13dcc4b7539", + "border-top-width-059.xht": [ + "eb9e327c1d41d3286ae0652023d775d1009f52f2", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-134-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-left-color-135.xht": [ - "9c7926722424ae59ca138ed70239c67f3fe6f5dd", + "border-top-width-060.xht": [ + "8992a73014cf372743dd71cf7a217375cb2e3e75", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-135-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-left-color-136.xht": [ - "a73581363beef378b6f0f166a8edde8ddd990895", + "border-top-width-061.xht": [ + "8fbec41cf1666b894e08c190b756d6dea1a4fae7", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-136-ref.xht", + "/css/CSS2/borders/border-bottom-width-061-ref.xht", "==" ] ], {} ] ], - "border-left-color-137.xht": [ - "72741c9907295dd59309c0fd8c1dfd64bc4313eb", + "border-top-width-062.xht": [ + "b0b8362a4a3a91c92cfa91f723887ff2c3cd1f84", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-137-ref.xht", + "/css/CSS2/borders/border-bottom-width-061-ref.xht", "==" ] ], {} ] ], - "border-left-color-138.xht": [ - "274cbeb0351d2b165211de975c552caea089e69e", + "border-top-width-067.xht": [ + "f375f52a7f4e3621f5c6594ff704d14d5dc7a601", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-138-ref.xht", + "/css/CSS2/borders/border-top-width-012-ref.xht", "==" ] ], {} ] ], - "border-left-color-139.xht": [ - "f852c736fbe4c0221277c2bcb20e0a7166eebe29", + "border-top-width-068.xht": [ + "b18b7a6cf898b1955dbc34d1e1e2ae561873d44f", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-139-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-left-color-140.xht": [ - "a0f472fe44240a6eb16e01257745841cd393c8fb", + "border-top-width-069.xht": [ + "467a007bbdf70192b56a1602445b7710650a6419", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-140-ref.xht", + "/css/CSS2/borders/border-bottom-width-069-ref.xht", "==" ] ], {} ] ], - "border-left-color-141.xht": [ - "d894273cd9fd098e2345d3cfa759ac82d1db19b6", + "border-top-width-070.xht": [ + "c95c21b184454f1d24194bd2b942f0e80fced580", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-141-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-left-color-142.xht": [ - "5d42b9610fe3dc43c5785528a69604b935c79146", + "border-top-width-071.xht": [ + "ba054b8e5ddc1e8fb078d0a864f3704c47138628", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-142-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-left-color-143.xht": [ - "fe9098124a694be4ff40396c527214001bdac6e4", + "border-top-width-072.xht": [ + "775723c09325a320398b8df3d76ccd6396e16cb9", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-143-ref.xht", + "/css/CSS2/borders/border-bottom-width-072-ref.xht", "==" ] ], {} ] ], - "border-left-color-144.xht": [ - "93acb3b39eaf1113463de5ff7d3026e8f3ff8f82", + "border-top-width-073.xht": [ + "36c44298ae233c318a03a0a7989649fc63c6cbda", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-144-ref.xht", + "/css/CSS2/borders/border-bottom-width-072-ref.xht", "==" ] ], {} ] ], - "border-left-color-145.xht": [ - "866e6988e62f2a2c1192a874cef697f47c6d77e3", + "border-top-width-078.xht": [ + "fadd6aef647abdc3a368370345c79c670d47be9f", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-145-ref.xht", + "/css/CSS2/borders/border-top-width-012-ref.xht", "==" ] ], {} ] ], - "border-left-color-174.xht": [ - "92212021e46015ba8d76885194e974eb39c7bd3b", + "border-top-width-079.xht": [ + "325957d2302bb43ed463d63d11ae8af11034406e", [ null, [ [ - "/css/CSS2/borders/border-left-color-174-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-left-color-175.xht": [ - "83b217298efbab8c8b717b36d9ad5f3058a20769", + "border-top-width-080.xht": [ + "3259487ea00f55ad93bfb7baa32c445ba78cedb7", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/borders/border-bottom-width-025-ref.xht", "==" ] ], {} ] ], - "border-left-color-applies-to-001.xht": [ - "638cdbf114fc2fc93db7460d64bf5386de600691", + "border-top-width-081.xht": [ + "326d840983cbf1d3688c99df9ccf5e092ec24843", [ null, [ [ - "/css/CSS2/borders/border-left-applies-to-001-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-left-color-applies-to-002.xht": [ - "e49ada3b8fde03a5f71d35ffc49d32cb030761d6", + "border-top-width-082.xht": [ + "e90fa01cc1a1726bdc78593f0197a30ba6cb6e45", [ null, [ [ - "/css/CSS2/borders/border-left-applies-to-001-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-left-color-applies-to-003.xht": [ - "9671d1c1113ab3054b00233182375cd1a1a45dc1", + "border-top-width-083.xht": [ + "81d803a4300776304871a7246f0d43a2a560fdd3", [ null, [ [ - "/css/CSS2/borders/border-left-applies-to-001-ref.xht", + "/css/CSS2/borders/border-bottom-width-006-ref.xht", "==" ] ], {} ] ], - "border-left-color-applies-to-004.xht": [ - "f67dc8c058164bc6e70bd0630fe350cc373db2c8", + "border-top-width-084.xht": [ + "25eecee5c1c579ef9cbb4b3a71e96378994b6cfe", [ null, [ [ - "/css/CSS2/borders/border-left-applies-to-001-ref.xht", + "/css/CSS2/borders/border-bottom-width-006-ref.xht", "==" ] ], {} ] ], - "border-left-color-applies-to-005.xht": [ - "e6cf0da70ced152fe75d93e9cb338d9180a193e4", + "border-top-width-089.xht": [ + "efebf986a1f7641ca54642a63861ddfb7346cdc9", [ null, [ [ - "/css/CSS2/borders/border-left-applies-to-001-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-left-color-applies-to-006.xht": [ - "aa1f47469af34cc2e91db4be84ae6b31f0b748b7", + "border-top-width-090.xht": [ + "b7f48a02f637966b0d381a583ce12d01bf7113c7", [ null, [ [ - "/css/CSS2/borders/border-left-applies-to-001-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-left-color-applies-to-007.xht": [ - "bbad8c1a4b59dd8b7829ac11e420cc19c02c9718", + "border-top-width-091.xht": [ + "c08bc263cf31f30ee5308fccd4e0e8791c196268", [ null, [ [ - "/css/CSS2/borders/border-left-applies-to-001-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-left-color-applies-to-009.xht": [ - "a7b4825f3ead8ea19e82edc94d0cf22d02ff98aa", + "border-top-width-095.xht": [ + "7083354fa4e02793a8e9911441ef3acfdb473799", [ null, [ [ - "/css/CSS2/borders/border-left-applies-to-001-ref.xht", + "/css/CSS2/borders/border-top-width-095-ref.xht", "==" ] ], {} ] ], - "border-left-color-applies-to-012.xht": [ - "ec02d07cae73a6fd700c17b7754253bd145e57ea", + "border-top-width-applies-to-001.xht": [ + "f2a6518a187603010a4f29ae806c0bd40c2fd8b8", [ null, [ [ - "/css/CSS2/borders/border-left-applies-to-001-ref.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "border-left-color-applies-to-013.xht": [ - "2b8aac76938f577fb388f0b05821aec1f473525b", + "border-top-width-applies-to-002.xht": [ + "02c5c3a243d0941f182964867606362becb29836", [ null, [ [ - "/css/CSS2/borders/border-left-applies-to-001-ref.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "border-left-color-applies-to-014.xht": [ - "2b10ae04f73c45eb79785d08b0a413a1e5c96e19", + "border-top-width-applies-to-003.xht": [ + "c37174cd40121d6bb7655f3221892b6c81f14d31", [ null, [ [ - "/css/CSS2/borders/border-left-applies-to-001-ref.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "border-left-color-applies-to-015.xht": [ - "0693d2ba6ced429726bceb259d6d6d0838c58ebb", + "border-top-width-applies-to-004.xht": [ + "a176ec969ac4b1d412225bf20226ab2b6b3a6f98", [ null, [ [ - "/css/CSS2/borders/border-left-applies-to-001-ref.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "border-left-style-001.xht": [ - "3d56f5789e462b2d1814ec227e324d9c45503afa", + "border-top-width-applies-to-005.xht": [ + "82694ed2d913af4472d6d50899abe6ab1b5f862f", [ null, [ [ - "/css/CSS2/reference/ref-nothing-below.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "border-left-style-002.xht": [ - "bc615d806b0883f795d82a3fc655980a1241256d", + "border-top-width-applies-to-006.xht": [ + "b2b0ca905fc38ef408155509805eadde7f7009fc", [ null, [ [ - "/css/CSS2/reference/ref-nothing-below.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "border-left-style-005.xht": [ - "486f434ba334bc2ed076cd7038eec706bcacb2e8", + "border-top-width-applies-to-007.xht": [ + "9fb6d28b3698e0db00129a73ba86318159118e9c", [ null, [ [ - "/css/CSS2/borders/border-left-style-005-ref.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "border-left-width-001.xht": [ - "95b4e0d7afc6eea0bb17edd1b7992f333ce37a0e", + "border-top-width-applies-to-009.xht": [ + "4851537fa55eef07939b6a7c14f04d111cc9b2e2", [ null, [ [ - "/css/CSS2/borders/border-left-width-001-ref.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "border-left-width-002.xht": [ - "c9e471df793cc6f1a70547e47394b24f270109a1", + "border-top-width-applies-to-012.xht": [ + "f28ad49b3ff8ffbd850219bc84257bbd23777f86", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "border-left-width-003.xht": [ - "fe08bf167db8129aabba354a7bc8bd66802bf83f", + "border-top-width-applies-to-013.xht": [ + "4321228b757a7b91b926b7152596c67cf5725ce3", [ null, [ [ - "/css/CSS2/borders/border-left-width-003-ref.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "border-left-width-004.xht": [ - "f61279a86880418156f4a220236c3750bba88999", + "border-top-width-applies-to-014.xht": [ + "2623c38d1648762136cdeeec078a8e6687783e97", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "border-left-width-005.xht": [ - "556e5d3a88de1b9e46c368a1a799d7a3c572628e", + "border-top-width-applies-to-015.xht": [ + "18b03d705e2c5e0ed6e2844a4a50a397f87c0382", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "border-left-width-006.xht": [ - "5c1410c54f61300a92b12b0042e1126f05b47b86", + "border-width-001.xht": [ + "a55ba5d6c8bbe6c5ba0760f5bb160fc1afa3cc28", [ null, [ @@ -48296,138 +49083,138 @@ {} ] ], - "border-left-width-007.xht": [ - "c11bbf717f20a46779e956db620636810e4f99a0", + "border-width-002.xht": [ + "0ca526c53db5b1ecf850ced799899852a25a436c", [ null, [ [ - "/css/CSS2/borders/border-left-width-006-ref.xht", + "/css/CSS2/borders/border-width-002-ref.xht", "==" ] ], {} ] ], - "border-left-width-012.xht": [ - "c92d6928f52d6d9ca5cd085e40edd0f4f571419e", + "border-width-003.xht": [ + "2b6b2ceac5e98419967ccefb74cfb64f9837245f", [ null, [ [ - "/css/CSS2/borders/border-left-width-001-ref.xht", + "/css/CSS2/borders/border-width-003-ref.xht", "==" ] ], {} ] ], - "border-left-width-013.xht": [ - "4fd32ca873595fb4347e71b888de5b840680ecbf", + "border-width-004.xht": [ + "d95baa3329ce75b532cc03221b14d13496c3ce37", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/borders/border-width-004-ref.xht", "==" ] ], {} ] ], - "border-left-width-015.xht": [ - "93bd8b8850d72ee16e676ed72a45580e31aa58ea", + "border-width-005.xht": [ + "cf75d869c2f78a6f6b9e1ce0ace6bafc185bdb0f", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/borders/border-width-005-ref.xht", "==" ] ], {} ] ], - "border-left-width-016.xht": [ - "2bab93db4d3d60c38b6d2ed35957343dbdf06795", + "border-width-006.xht": [ + "9881f08d6977f76bd07efe756018863b5ef2b2b0", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/borders/border-width-006-ref.xht", "==" ] ], {} ] ], - "border-left-width-017.xht": [ - "7723b7703ab5d62f9ac92c704f03f0b5d15131ac", + "border-width-007.xht": [ + "b1fec98e3a05f591342a0ab79b8203cd081afa27", [ null, [ [ - "/css/CSS2/borders/border-left-width-006-ref.xht", + "/css/CSS2/borders/border-width-007-ref.xht", "==" ] ], {} ] ], - "border-left-width-018.xht": [ - "3d8f544c85ef65ce1dd4ed2bf8400db876b4ac16", + "border-width-008.xht": [ + "f82e185b5a2845c832a1d1754ab025a0cd25ddbd", [ null, [ [ - "/css/CSS2/borders/border-left-width-006-ref.xht", + "/css/CSS2/borders/border-width-008-ref.xht", "==" ] ], {} ] ], - "border-left-width-023.xht": [ - "38dd3cc94726c9a0da1861bdabf4870ebd3be1f1", + "border-width-009.xht": [ + "91180bb8cbc89adf7f870ee02399c021b52d65c1", [ null, [ [ - "/css/CSS2/borders/border-left-width-001-ref.xht", + "/css/CSS2/borders/border-width-009-ref.xht", "==" ] ], {} ] ], - "border-left-width-024.xht": [ - "975cccfaf874859938a272fb35c7616a868ce0c6", + "border-width-010.xht": [ + "96aff75d59143e856a0e97bcbfdd842a7f04bb9e", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/borders/border-width-010-ref.xht", "==" ] ], {} ] ], - "border-left-width-025.xht": [ - "e025c892b6abf405ccd316fd5e9f2e0cd41c598d", + "border-width-011.xht": [ + "ae8d514ab3c19bd0640574b254404de285f7214a", [ null, [ [ - "/css/CSS2/borders/border-left-width-025-ref.xht", + "/css/CSS2/reference/ref-this-text-should-be-green.xht", "==" ] ], {} ] ], - "border-left-width-026.xht": [ - "e929cfeaa1fdcb10882c45ba83cae5756cdad44e", + "border-width-012.xht": [ + "18d0b648f4c5ee26a2448ca542b93e6528cb45cc", [ null, [ @@ -48439,8 +49226,8 @@ {} ] ], - "border-left-width-027.xht": [ - "cc34e1aa1ec4962ca942d5199bb7c917478beb62", + "border-width-013.xht": [ + "026733c1f242154fa644695c3d9492a7bc681a93", [ null, [ @@ -48452,320 +49239,332 @@ {} ] ], - "border-left-width-028.xht": [ - "9f25dbdb5b317c90d58d8dc6ef125285f9f6e624", + "border-width-014.xht": [ + "4f44d8452bb0853582f0172da766ade8cb928422", [ null, [ [ - "/css/CSS2/borders/border-left-width-006-ref.xht", + "/css/CSS2/borders/border-width-014-ref.xht", "==" ] ], {} ] ], - "border-left-width-029.xht": [ - "f63713aff3daeea7b4b9a3e450f5ce409298c598", + "border-width-applies-to-008.xht": [ + "d310ebb65cf9fa84b7a6640ff13b1cbd1f6fffb4", [ null, [ [ - "/css/CSS2/borders/border-left-width-006-ref.xht", + "/css/CSS2/borders/border-width-applies-to-008-ref.xht", "==" ] ], {} ] ], - "border-left-width-034.xht": [ - "f5c846b1843130f370665da7baec1d8473ee9b18", + "border-width-applies-to-009.xht": [ + "79b79bf11be893dbab839f2919b0cd05ff5b9155", [ null, [ [ - "/css/CSS2/borders/border-left-width-001-ref.xht", + "/css/CSS2/borders/border-width-applies-to-009-ref.xht", "==" ] ], {} ] ], - "border-left-width-035.xht": [ - "a51e8ff434992a631e0d629e7d7878cdb3c636dd", + "border-width-applies-to-012.xht": [ + "cc5dcc4a602a4418ef45cf28f28ee29cd819d973", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/borders/border-width-applies-to-009-ref.xht", "==" ] ], {} ] ], - "border-left-width-037.xht": [ - "d0480970b217159e9602a41d30d34c091b8d2f48", + "border-width-applies-to-015.xht": [ + "432bc8e562d7046f23a4dc28eb271c98ad0d170f", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/borders/border-width-applies-to-009-ref.xht", "==" ] ], {} ] ], - "border-left-width-038.xht": [ - "444ac121de27b39850d7db76ea4897e49d80eb04", + "border-width-shorthand-001.xht": [ + "5da4dd9a724e930765f81ffdf8d17049b10bc7c7", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/borders/border-width-shorthand-001-ref.xht", "==" ] ], {} ] ], - "border-left-width-039.xht": [ - "dfb6976e1565ba813ff03d81790a86f9961ffbb6", + "border-width-shorthand-002.xht": [ + "71998fb3b13f3097d1dbb147e66672209379204c", [ null, [ [ - "/css/CSS2/borders/border-left-width-006-ref.xht", + "/css/CSS2/borders/border-width-shorthand-002-ref.xht", "==" ] ], {} ] ], - "border-left-width-040.xht": [ - "eca959c0038d98900bc8bd82a225ee6753f0d1ba", + "border-width-shorthand-003.xht": [ + "f779aa6e30769699eaeb623394e0dfc11e4ede89", [ null, [ [ - "/css/CSS2/borders/border-left-width-006-ref.xht", + "/css/CSS2/borders/border-width-shorthand-003-ref.xht", "==" ] ], {} ] ], - "border-left-width-045.xht": [ - "3d275c3e7e661ba8610bb3cea761a5697e22f15e", + "border-width-shorthand-004.xht": [ + "46952d3434225e55709ba34088a85259fce40c24", [ null, [ [ - "/css/CSS2/borders/border-left-width-001-ref.xht", + "/css/CSS2/borders/border-width-shorthand-004-ref.xht", "==" ] ], {} ] ], - "border-left-width-046.xht": [ - "d7b94572f37a90056b579eba4a5e51ee3755af74", + "groove-default.html": [ + "c9028b9a2f4ce57857335862e1f81a30f8f1e535", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", - "==" + "/css/CSS2/borders/groove-ridge-default-notref.html", + "!=" ] ], {} ] ], - "border-left-width-048.xht": [ - "11072159e2691d301e6c5d0136869458ba3eba8d", + "ridge-default.html": [ + "4bd0bdf3aef8137b2a14e16ea2461c85b61fe4a6", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", - "==" + "/css/CSS2/borders/groove-ridge-default-notref.html", + "!=" ] ], {} ] ], - "border-left-width-049.xht": [ - "5a46037691f5640f28e4d7f85cb0456bbb7b3b71", + "shand-border-000.xht": [ + "6db5a72228da15df9d120b07c7ec9677d279f3ce", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/borders/shand-border-000-ref.xht", "==" ] ], {} ] ], - "border-left-width-050.xht": [ - "954a0bbb1668d22f82c9f3f443b744224306cd76", + "shand-border-001.xht": [ + "11bd85b5b01af4caf4853bfaddd407c53f7a82eb", [ null, [ [ - "/css/CSS2/borders/border-left-width-006-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] - ], - "border-left-width-051.xht": [ - "b5070f1e2d1290e35861379495b51a4d6ee73420", + ] + }, + "box": { + "ltr-basic.xht": [ + "fb5a4a9670be5e91dbfe52a5f8a2a9085743d428", [ null, [ [ - "/css/CSS2/borders/border-left-width-006-ref.xht", + "/css/CSS2/box/left-ltr-ref.xht", "==" ] ], {} ] ], - "border-left-width-056.xht": [ - "4df2073ff93a452da06d8ad5e2602d61d2a24747", + "ltr-ib.xht": [ + "79a772437b2e2e826fe27f50617a9d48fe53d90a", [ null, [ [ - "/css/CSS2/borders/border-left-width-001-ref.xht", + "/css/CSS2/box/left-ltr-ref.xht", "==" ] ], {} ] ], - "border-left-width-057.xht": [ - "81086e664329f32019f3be8f1f348674b401ef79", + "ltr-span-only-ib.xht": [ + "eefdc820a795919b9cbab78e2802e2c51985c8e6", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/box/right-ltr-ref.xht", "==" ] ], {} ] ], - "border-left-width-058.xht": [ - "b93d04eda5b607d791219b2fe59cfb9526ddaa22", + "ltr-span-only.xht": [ + "7340bba732d296b266670d1033ed1f9c455f8a7f", [ null, [ [ - "/css/CSS2/borders/border-left-width-006-ref.xht", + "/css/CSS2/box/right-ltr-ref.xht", "==" ] ], {} ] ], - "border-left-width-059.xht": [ - "74ff92b5217396f743724f34c62363ecca497294", + "rtl-basic.xht": [ + "5bb0a7f43789fb28d0e23e9ac689a12ee0870ec0", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/box/right-rtl-ref.xht", "==" ] ], {} ] ], - "border-left-width-060.xht": [ - "84e7cd28444cde2da337ff1b64f399b177d08443", + "rtl-ib.xht": [ + "4815b46f7896128a66f069ac489b22d0add2334d", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/box/right-rtl-ref.xht", "==" ] ], {} ] ], - "border-left-width-061.xht": [ - "f7cb8e67c16580c1944725289547ca0e99300737", + "rtl-linebreak.xht": [ + "978f3e38e1ea30f08e1796398771645c04ec3ec4", [ null, [ [ - "/css/CSS2/borders/border-left-width-061-ref.xht", + "/css/CSS2/box/rtl-linebreak-ref.xht", "==" + ], + [ + "/css/CSS2/box/rtl-linebreak-notref1.xht", + "!=" + ], + [ + "/css/CSS2/box/rtl-linebreak-notref2.xht", + "!=" ] ], {} ] ], - "border-left-width-062.xht": [ - "3b0dbc89ee9c6ae4a7a33e14973e50ff6ebbe9bf", + "rtl-span-only-ib.xht": [ + "4976c62fcaab01c76713b12068de86e0b48bce05", [ null, [ [ - "/css/CSS2/borders/border-left-width-061-ref.xht", + "/css/CSS2/box/left-rtl-ref.xht", "==" ] ], {} ] ], - "border-left-width-067.xht": [ - "255ab413add67fa6c205004259d7a382320369b5", + "rtl-span-only.xht": [ + "1445b2958606954f8fc568720c0bb21e95794ac5", [ null, [ [ - "/css/CSS2/borders/border-left-width-001-ref.xht", + "/css/CSS2/box/left-rtl-ref.xht", "==" ] ], {} ] - ], - "border-left-width-068.xht": [ - "22f9ee0be061941fa96c55d650dfc2452a42537d", + ] + }, + "box-display": { + "anonymous-box-generation-001.xht": [ + "40c9922c87a1e92902d4844bfb1ddeaa138741bf", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/box-display/anonymous-box-generation-001-ref.xht", "==" ] ], {} ] ], - "border-left-width-069.xht": [ - "f8c246e3575d532695f57f1b869fca6a85efb7d5", + "anonymous-boxes-inheritance-001.xht": [ + "e0c6be8bce565a803872dd4d2e792f7f12611665", [ null, [ [ - "/css/CSS2/borders/border-left-width-069-ref.xht", + "/css/CSS2/box-display/anonymous-boxes-inheritance-001-ref.xht", "==" ] ], {} ] ], - "border-left-width-070.xht": [ - "36db58e16eeed58c345bc64173c5a1c658b21be3", + "anonymous-inline-whitespace-001.xht": [ + "02c1e3801229c9e72b1568f84909292c83b6cc4d", [ null, [ @@ -48777,38647 +49576,38675 @@ {} ] ], - "border-left-width-071.xht": [ - "fe966d78e8f14efb28d721b1fb1fe7f6aa71fbde", + "block-in-inline-001.xht": [ + "aed4f2ce28f2b9a2ff5994b473e88818af37d99b", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/box-display/block-in-inline-001-ref.xht", "==" ] ], {} ] ], - "border-left-width-072.xht": [ - "a3371031c39c3fcc0a64ab61e60a50fe4f26e13e", + "block-in-inline-002.xht": [ + "884dd16bea9ec638f9d9a699aabffb2d90335b0c", [ null, [ [ - "/css/CSS2/borders/border-left-width-072-ref.xht", + "/css/CSS2/box-display/block-in-inline-001-ref.xht", "==" ] ], {} ] ], - "border-left-width-073.xht": [ - "9a68a6770747b3cf92cb975147673a0202b7189c", + "block-in-inline-003.xht": [ + "fe3ab4d4827a454510a138cb1b5a439292d5c5d9", [ null, [ [ - "/css/CSS2/borders/border-left-width-072-ref.xht", + "/css/CSS2/box-display/block-in-inline-003-ref.xht", "==" ] ], {} ] ], - "border-left-width-079.xht": [ - "edf723b3dd3bb743339f607cbee90c5801adcdfd", + "block-in-inline-007.xht": [ + "da2d6a9c0eb7a40f63eb3519f11d0a3f7d80b0d4", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/box-display/block-in-inline-007-ref.xht", "==" ] ], {} ] ], - "border-left-width-080.xht": [ - "aa10ac99a42be2b4a5c048ffbf213551a287a726", + "block-in-inline-008.xht": [ + "94317e5b052170ecb59be6b10c7647cd57da169e", [ null, [ [ - "/css/CSS2/borders/border-left-width-025-ref.xht", + "/css/CSS2/box-display/block-in-inline-008-ref.xht", "==" ] ], {} ] ], - "border-left-width-081.xht": [ - "227cc6ae50cc8a51e42c8cf8b85c02c9ced3f16f", + "block-in-inline-relpos-001.xht": [ + "a5d6d27373361ce80d48559b2ca463555985b53e", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/box-display/block-in-inline-relpos-001-ref.xht", "==" ] ], {} ] ], - "border-left-width-082.xht": [ - "142f3985d65aece65d4e7be7afc3df9e6bda45c5", + "block-in-inline-relpos-002.xht": [ + "bc3580083c55ba2dd72c7b34d883a1e0019abd4f", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/box-display/block-in-inline-relpos-001-ref.xht", "==" ] ], {} ] ], - "border-left-width-083.xht": [ - "b11d82edc6ba106b71ff01982a9c7dfc4e3cb9b7", + "box-generation-001.xht": [ + "6d821f5c98ac7bdaefe6bfc2b08cf5aca7c2f34c", [ null, [ [ - "/css/CSS2/borders/border-left-width-006-ref.xht", + "/css/CSS2/box-display/box-generation-001-ref.xht", "==" ] ], {} ] ], - "border-left-width-084.xht": [ - "3572ede6f2b62dd250edf51efdb782662a78577e", + "box-generation-002.xht": [ + "cc6562e9e308854a2242988ba022caf708e34c94", [ null, [ [ - "/css/CSS2/borders/border-left-width-006-ref.xht", + "/css/CSS2/box-display/box-generation-002-ref.xht", "==" ] ], {} ] ], - "border-left-width-089.xht": [ - "47eca23a90bf854e02ead43f9c974887ba5a2599", + "containing-block-001.xht": [ + "a323a79b170606aeb91d51349e2756b085e1821e", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-left-width-090.xht": [ - "092c9fd642dc14ec2e6b508e4a57630441434883", + "containing-block-002.xht": [ + "2856a48654a5cd039094ed971d6a73c5810b9765", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-left-width-091.xht": [ - "63a68eddd63f93a78709d22ad83899e8520fdef0", + "containing-block-003.xht": [ + "a7bec9509e8ccf7101eb5f0ec3c74cc5c66f84ab", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-left-width-095.xht": [ - "b0b76a9448b0a6bfb9736af4e7e94faaa3f76f06", + "containing-block-004.xht": [ + "dc571931a5b53c611201d24dd2f9bf74fd6679d2", [ null, [ [ - "/css/CSS2/borders/border-left-width-095-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-left-width-applies-to-001.xht": [ - "a9eed77a1bbc4506296ce90cc026ff44ecedefea", + "containing-block-005.xht": [ + "575a1cc1ec4b7ae6bbf2bb18973272f6bed7e458", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-left-width-applies-to-002.xht": [ - "1a903310832d26b1a1aa10ddae83c1795a4faf82", + "containing-block-006.xht": [ + "ef1717b311f9262c12c37ede00ef4ecf97bf4451", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-left-width-applies-to-003.xht": [ - "5a0734f37028d1bfc11165de828e2825da7d01f2", + "containing-block-007.xht": [ + "be6e8ac5540e760a4bfe4d8171070e9e77ffefc2", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/box-display/containing-block-007-ref.xht", "==" ] ], {} ] ], - "border-left-width-applies-to-004.xht": [ - "3db9fe19c580b2d82a125a7446ccd5a01ea0293f", + "containing-block-008.xht": [ + "d64fcabd5b426154ffd5442c7091c2c70169f96a", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/box-display/containing-block-008-ref.xht", "==" ] ], {} ] ], - "border-left-width-applies-to-005.xht": [ - "9e1d8a657c7c277898cd630b5e20598e5134b483", + "containing-block-009.xht": [ + "3f81afcb37ced6eccce69f168102cdd1bc5ea590", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/box-display/containing-block-009-ref.xht", "==" ] ], {} ] ], - "border-left-width-applies-to-006.xht": [ - "85c82d4b2133974ef872cb6329e67e7b745173cb", + "containing-block-010.xht": [ + "08db1f60aa2bd4f4f8d612d10cb8b1940fb4ab81", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/box-display/containing-block-008-ref.xht", "==" ] ], {} ] ], - "border-left-width-applies-to-007.xht": [ - "c7807dd5cd17b33a27ca61b0d4600533b42de3c8", + "containing-block-019.xht": [ + "7df6b7f4cb5697bfe2b553d577fa8296837ad994", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/box-display/containing-block-019-ref.xht", "==" ] ], {} ] ], - "border-left-width-applies-to-009.xht": [ - "556b17d7b304a00c930ef2ba5b86e3c6b3726b4c", + "containing-block-020.xht": [ + "cc8668e035129b592244276c77c4428306160412", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/box-display/containing-block-020-ref.xht", "==" ] ], {} ] ], - "border-left-width-applies-to-012.xht": [ - "d8f0b3c6d83de2e61c20165f94f73841998a94bd", + "containing-block-021.xht": [ + "fd36da88da20461de4e1bb559f9bf2b60486f030", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/box-display/containing-block-019-ref.xht", "==" ] ], {} ] ], - "border-left-width-applies-to-013.xht": [ - "a5bd8ee4cdddccca3fd7e3f16bd50b9d5222b79e", + "containing-block-022.xht": [ + "2fe09098bfffc5b0d5ceb45ff89552b2e131ec1b", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/box-display/containing-block-020-ref.xht", "==" ] ], {} ] ], - "border-left-width-applies-to-014.xht": [ - "81bd1852834b2923299668091abc82ba2f4bd430", + "containing-block-023.xht": [ + "dcda232631d867cb2c0aa9a127f15e3fb7938970", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/box-display/containing-block-023-ref.xht", "==" ] ], {} ] ], - "border-left-width-applies-to-015.xht": [ - "fd2efbf5012c9a7d3f83ae92833d1cc95d9447c3", + "containing-block-026.xht": [ + "a30501d5b02fc51a92063303f49073cc6316c561", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-right-001.xht": [ - "cc44448eedc7bff14b8a2e6a5b0bd2d69f39d9b6", + "containing-block-027.xht": [ + "839ed069a1cb5a3ad808f054c57d3074c5647f65", [ null, [ [ - "/css/CSS2/borders/border-right-001-ref.xht", + "/css/CSS2/box-display/containing-block-027-ref.xht", "==" ] ], {} ] ], - "border-right-003.xht": [ - "216ae69469fabdbec4fdcdaa3545020a1b2a3f92", + "containing-block-028.xht": [ + "028057ae0991334714a3eb659c00d34a03c8d989", [ null, [ [ - "/css/CSS2/borders/border-right-003-ref.xht", + "/css/CSS2/box-display/containing-block-028-ref.xht", "==" ] ], {} ] ], - "border-right-005.xht": [ - "3cd72033c5448508529475723a9c5cf174bd5a07", + "containing-block-029.xht": [ + "027c735645a82b4392e8714d895acbcfea6a2f11", [ null, [ [ - "/css/CSS2/borders/border-right-005-ref.xht", + "/css/CSS2/box-display/containing-block-029-ref.xht", "==" ] ], {} ] ], - "border-right-006.xht": [ - "a2acf67a971db92bead0b7538a78929ae5621cf3", + "containing-block-030.xht": [ + "3f02d8f21495692d15cae085621be88ccc7b2cf7", [ null, [ [ - "/css/CSS2/borders/border-right-001-ref.xht", + "/css/CSS2/box-display/containing-block-030-ref.xht", "==" ] ], {} ] ], - "border-right-008.xht": [ - "2e0b0f2f682619d22c8f582e93e8b81ea8a62169", + "delete-block-in-inlines-beginning-001.xht": [ + "ccbe7429dbe4cde5c9fb60024ba04c28e8e0904d", [ null, [ [ - "/css/CSS2/borders/border-right-005-ref.xht", + "/css/CSS2/box-display/delete-block-in-inlines-beginning-001-ref.xht", "==" ] ], {} ] ], - "border-right-018.xht": [ - "1ceae246aa658cae7bce19b8118629bd68c0aa68", + "delete-block-in-inlines-end-001.xht": [ + "c08f497fe799e2a145f4f8b5f45ad59a473e2de0", [ null, [ [ - "/css/CSS2/borders/border-right-018-ref.xht", + "/css/CSS2/box-display/delete-block-in-inlines-beginning-001-ref.xht", "==" ] ], {} ] ], - "border-right-applies-to-001.xht": [ - "82455ce951d53892a1203afc4274ecf2d73defd8", + "delete-block-in-inlines-middle-001.xht": [ + "d7a15693c18aac11e3446c084e0266b4ef965e89", [ null, [ [ - "/css/CSS2/borders/border-left-applies-to-001-ref.xht", + "/css/CSS2/box-display/delete-block-in-inlines-beginning-001-ref.xht", "==" ] ], {} ] ], - "border-right-applies-to-002.xht": [ - "639d01f6bc0692ba29f5674e2cf6d37dc2387844", + "delete-inline-in-blocks-beginning-001.xht": [ + "474a86175773244b2ade0f82604e38828a2e1118", [ null, [ [ - "/css/CSS2/borders/border-left-applies-to-001-ref.xht", + "/css/CSS2/box-display/delete-inline-in-blocks-beginning-001-ref.xht", "==" ] ], {} ] ], - "border-right-applies-to-003.xht": [ - "7886891484d66e8e1598ad75ef1b85c9ad5b9718", + "delete-inline-in-blocks-end-001.xht": [ + "03411f0d05cc28e28c6ac9e29be0aeb01d5923ed", [ null, [ [ - "/css/CSS2/borders/border-left-applies-to-001-ref.xht", + "/css/CSS2/box-display/delete-inline-in-blocks-beginning-001-ref.xht", "==" ] ], {} ] ], - "border-right-applies-to-004.xht": [ - "59076ee9f67d9ef7449fd6f722087338add302ff", + "delete-inline-in-blocks-middle-001.xht": [ + "a2a80f8c1847ae9b920073f8c6390da416c4e70a", [ null, [ [ - "/css/CSS2/borders/border-left-applies-to-001-ref.xht", + "/css/CSS2/box-display/delete-inline-in-blocks-beginning-001-ref.xht", "==" ] ], {} ] ], - "border-right-applies-to-005.xht": [ - "0d8a3176dd92974d80b9f7947a77f5eb2381b8ae", + "delete-inline-in-blocks-middle-002.xht": [ + "d524189054c10d15050292a194b32e4713f93372", [ null, [ [ - "/css/CSS2/borders/border-left-applies-to-001-ref.xht", + "/css/CSS2/box-display/delete-inline-in-blocks-middle-002-ref.xht", "==" ] ], {} ] ], - "border-right-applies-to-006.xht": [ - "a20ceae4ff6668158c65aab410697f6c5a167a58", + "delete-inline-in-blocks-middle-003.xht": [ + "fdb53b0eb2f7802842a706316bbf8e2c55ddf2be", [ null, [ [ - "/css/CSS2/borders/border-left-applies-to-001-ref.xht", + "/css/CSS2/box-display/delete-inline-in-blocks-middle-002-ref.xht", "==" ] ], {} ] ], - "border-right-applies-to-007.xht": [ - "312a6f0887c8adf6b5ca620fcc175da26ad0080c", + "descendant-display-none-001.xht": [ + "e68b219ff1a31645be9780bea143f54f9702e290", [ null, [ [ - "/css/CSS2/borders/border-left-applies-to-001-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-right-applies-to-009.xht": [ - "abdfa3c4431d43406ab5d6fc79e10c130af84bc6", + "descendant-display-override-001.xht": [ + "de2c9a74f210995f7fc5e9398ad38fd275b1e81e", [ null, [ [ - "/css/CSS2/borders/border-left-applies-to-001-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-right-applies-to-012.xht": [ - "744f1bcec315c79bf319d927045077d60a2c257b", + "display-001.xht": [ + "385619e9ed60b5e74912a78909d14a39c24ab21c", [ null, [ [ - "/css/CSS2/borders/border-left-applies-to-001-ref.xht", + "/css/CSS2/box-display/display-001-ref.xht", "==" ] ], {} ] ], - "border-right-applies-to-013.xht": [ - "a66c719b6b50b9d1ff1d06e015e5081cc7af6794", + "display-002.xht": [ + "81020d33e467b7fbafe1f3bcc60fe658e2c8b10e", [ null, [ [ - "/css/CSS2/borders/border-left-applies-to-001-ref.xht", + "/css/CSS2/box-display/display-002-ref.xht", "==" ] ], {} ] ], - "border-right-applies-to-014.xht": [ - "005999f8925e23ba5283ef754ee30b57a4ac18a4", + "display-005.xht": [ + "44fbe1dfb21a0d2befa7dfadf5e99fefe5489092", [ null, [ [ - "/css/CSS2/borders/border-left-applies-to-001-ref.xht", + "/css/CSS2/box-display/display-001-ref.xht", "==" ] ], {} ] ], - "border-right-applies-to-015.xht": [ - "a6125e916b5ef44587aa56ebdc8b0729271f3823", + "display-006.xht": [ + "3ebe813d06db313f9c7106a60f3e05a4c43014f6", [ null, [ [ - "/css/CSS2/borders/border-left-applies-to-001-ref.xht", + "/css/CSS2/box-display/display-001-ref.xht", "==" ] ], {} ] ], - "border-right-color-001.xht": [ - "4087d1bc125d5b44b15068bda4af3baa5fe997a9", + "display-007.xht": [ + "9b3f7242c027384a366109293265a15a47f65db5", [ null, [ [ - "/css/CSS2/borders/border-right-color-001-ref.xht", + "/css/CSS2/box-display/display-001-ref.xht", "==" ] ], {} ] ], - "border-right-color-002.xht": [ - "38f25ddccdcd7255f317f39e7ac427671c42f3a4", + "display-008.xht": [ + "bafe117ff8dddadaa085ba1373f70a452eeeb34d", [ null, [ [ - "/css/CSS2/borders/border-right-color-001-ref.xht", + "/css/CSS2/box-display/display-008-ref.xht", "==" ] ], {} ] ], - "border-right-color-003.xht": [ - "581a4850cb42d0a334c3c6dbc4c24b330c075f41", + "display-009.xht": [ + "e7bc7f80d3cd7af3c81dfe6e681954a612a7684d", [ null, [ [ - "/css/CSS2/borders/border-right-color-003-ref.xht", + "/css/CSS2/box-display/display-008-ref.xht", "==" ] ], {} ] ], - "border-right-color-004.xht": [ - "3fcc99af60737312fba7241e8c64904188644c67", + "display-010.xht": [ + "06ce55894345fc6b0d1d60f086b9082bc19eddc5", [ null, [ [ - "/css/CSS2/borders/border-right-color-004-ref.xht", + "/css/CSS2/box-display/display-010-ref.xht", "==" ] ], {} ] ], - "border-right-color-005.xht": [ - "c499b0c25bd4b01c7d56d5c3b44801ad5908deda", + "display-011.xht": [ + "405290fe4b19fa226079cda2a04236b54b3427b2", [ null, [ [ - "/css/CSS2/borders/border-right-color-005-ref.xht", + "/css/CSS2/box-display/display-002-ref.xht", "==" ] ], {} ] ], - "border-right-color-006.xht": [ - "f201e2c0ef34d62407e51741e4a029c833e39dfe", + "display-012.xht": [ + "fccc1c44c7790f12189f1c2d28c74a45e7c8c682", [ null, [ [ - "/css/CSS2/borders/border-right-color-006-ref.xht", + "/css/CSS2/box-display/display-012-ref.xht", "==" ] ], {} ] ], - "border-right-color-007.xht": [ - "559bf165d3bf53a1646363fa84c5ee46bcbf285b", + "display-013.xht": [ + "43a52c9c5bbdcaaf4e85dcaf7097bab61b596cef", [ null, [ [ - "/css/CSS2/borders/border-right-color-007-ref.xht", + "/css/CSS2/box-display/display-012-ref.xht", "==" ] ], {} ] ], - "border-right-color-008.xht": [ - "46dcfc9b2ce8b3a436077781a9b6b3d9afd814aa", + "display-014.xht": [ + "7cb0591c6e576cb631b96270040df7024dcde26c", [ null, [ [ - "/css/CSS2/borders/border-right-color-007-ref.xht", + "/css/CSS2/box-display/display-001-ref.xht", "==" ] ], {} ] ], - "border-right-color-009.xht": [ - "ce933a7422e90d1ed8583e7a4d8823ff43737b18", + "display-015.xht": [ + "9a2c3e426800828817adb4d323a7a696ae902dab", [ null, [ [ - "/css/CSS2/borders/border-right-color-009-ref.xht", + "/css/CSS2/box-display/display-002-ref.xht", "==" ] ], {} ] ], - "border-right-color-010.xht": [ - "157bb855ac79071491c7e3282f5d5b60aec25a5a", + "display-016.xht": [ + "4367c5f57508c329238b4f39bbf3ad8aac62c99f", [ null, [ [ - "/css/CSS2/borders/border-right-color-010-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-right-color-011.xht": [ - "41cdaef5d999ba9c91b7aa5a547a67aeeb518979", + "display-017.xht": [ + "30d5522eb511eaa2dae3bc8134a1e655665e6fd4", [ null, [ [ - "/css/CSS2/borders/border-right-color-011-ref.xht", + "/css/CSS2/box-display/display-002-ref.xht", "==" ] ], {} ] ], - "border-right-color-012.xht": [ - "d7ee72e9693a13165f7bd16a48451b32f87ed1e3", + "display-018.xht": [ + "d16d648f26b3529d602ed20b4018e6b005c83219", [ null, [ [ - "/css/CSS2/borders/border-right-color-012-ref.xht", + "/css/CSS2/box-display/display-018-ref.xht", "==" ] ], {} ] ], - "border-right-color-013.xht": [ - "3f1404de97979417ae26c610a317bd1b687b4052", + "display-change-001.xht": [ + "ec33b9f23188395136c476cab38fcdf214c70210", [ null, [ [ - "/css/CSS2/borders/border-right-color-007-ref.xht", + "/css/CSS2/box-display/display-change-001-ref.xht", "==" ] ], {} ] ], - "border-right-color-014.xht": [ - "b301ae08dd84a92b9fcc9a24fb339952f40d991d", + "display-none-001.xht": [ + "f7760f7ba14054f02bf7db020c3e693330741ea6", [ null, [ [ - "/css/CSS2/borders/border-right-color-014-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-right-color-015.xht": [ - "266bcf8a2c77bdb6c3b4f09ba60658ef6c203070", + "display-none-002.xht": [ + "9887d38a61c3bdf2c7995a14134130e50a98cbed", [ null, [ [ - "/css/CSS2/borders/border-right-color-015-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-right-color-016.xht": [ - "6285de0db2bbb6f640fd87342f15616def90c6f7", + "display-none-003.xht": [ + "f57a6056811e2fef05d2cdc250edc4a831e0d2bf", [ null, [ [ - "/css/CSS2/borders/border-right-color-016-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-right-color-017.xht": [ - "55685f8c4fa241806412c5d5d7f3641bf097cbb6", + "insert-block-in-blocks-n-inlines-begin-001.xht": [ + "28f5fbd630cd2e63d78f59156770071602e1c917", [ null, [ [ - "/css/CSS2/borders/border-right-color-017-ref.xht", + "/css/CSS2/box-display/insert-block-in-blocks-n-inlines-begin-001-ref.xht", "==" ] ], {} ] ], - "border-right-color-018.xht": [ - "24e9e462afba7f0833684bb12526f41701ec19ac", + "insert-block-in-blocks-n-inlines-begin-002.xht": [ + "dc10e08ec51ac4e0bb48e6fcbdcc7fe939fef9bd", [ null, [ [ - "/css/CSS2/borders/border-right-color-007-ref.xht", + "/css/CSS2/box-display/insert-block-in-blocks-n-inlines-begin-002-ref.xht", "==" ] ], {} ] ], - "border-right-color-019.xht": [ - "b775fd216c22400706b7222c130852c8c1b35b04", + "insert-block-in-blocks-n-inlines-begin-003.xht": [ + "8b39ff8b5be4858545f8079001d7a77b83c1e7ca", [ null, [ [ - "/css/CSS2/borders/border-right-color-019-ref.xht", + "/css/CSS2/box-display/insert-block-in-blocks-n-inlines-begin-003-ref.xht", "==" ] ], {} ] ], - "border-right-color-020.xht": [ - "b7cbe633ce682dd578a27d11689ee99f5cb2491e", + "insert-block-in-blocks-n-inlines-end-001.xht": [ + "28a25231c457257bcfc904a67685ed5e83771b25", [ null, [ [ - "/css/CSS2/borders/border-right-color-020-ref.xht", + "/css/CSS2/box-display/insert-block-in-blocks-n-inlines-end-001-ref.xht", "==" ] ], {} ] ], - "border-right-color-021.xht": [ - "5b61cc5b1ef7962e519564258d733a8ad4d599bb", + "insert-block-in-blocks-n-inlines-end-002.xht": [ + "b24b74231a2a3c9f1a3326683cc13e639b7399f7", [ null, [ [ - "/css/CSS2/borders/border-right-color-021-ref.xht", + "/css/CSS2/box-display/insert-block-in-blocks-n-inlines-end-002-ref.xht", "==" ] ], {} ] ], - "border-right-color-022.xht": [ - "d6e81b59f3deb5f4d84d8ced8c2530a2c6dd53b2", + "insert-block-in-blocks-n-inlines-end-003.xht": [ + "fed83aa6e88f3b6c10633847746136056d5e35ab", [ null, [ [ - "/css/CSS2/borders/border-right-color-022-ref.xht", + "/css/CSS2/box-display/insert-block-in-blocks-n-inlines-end-003-ref.xht", "==" ] ], {} ] ], - "border-right-color-023.xht": [ - "f79b7c77b43f115b408bb57da83006baa2a58358", + "insert-block-in-blocks-n-inlines-middle-001.xht": [ + "35aff524abe89ca1967cdfdcc73f1d5d49ecf5e0", [ null, [ [ - "/css/CSS2/borders/border-right-color-007-ref.xht", + "/css/CSS2/box-display/insert-block-in-blocks-n-inlines-middle-001-ref.xht", "==" ] ], {} ] ], - "border-right-color-024.xht": [ - "00537c0214719730bc92e72ed2c8dd14167aba46", + "insert-block-in-blocks-n-inlines-middle-002.xht": [ + "dbc4941f675afc43595fbeb9a8923c3a32fd9c80", [ null, [ [ - "/css/CSS2/borders/border-right-color-007-ref.xht", + "/css/CSS2/box-display/insert-block-in-blocks-n-inlines-middle-002-ref.xht", "==" ] ], {} ] ], - "border-right-color-025.xht": [ - "ff127fbf0c17ce4fff8cf96279e1da923106ff1b", + "insert-block-in-blocks-n-inlines-middle-003.xht": [ + "73aa60b0a8cc238dcd0cd71f1d9af5552a92a0a0", [ null, [ [ - "/css/CSS2/borders/border-right-color-001-ref.xht", + "/css/CSS2/box-display/insert-block-in-blocks-n-inlines-middle-003-ref.xht", "==" ] ], {} ] ], - "border-right-color-026.xht": [ - "6b03c4fd4acbfabac250f20ace144c3181c2916e", + "insert-block-in-inlines-beginning-001.xht": [ + "ca8f49e35835a0c08233e4dff5630ae3b77b7f30", [ null, [ [ - "/css/CSS2/borders/border-right-color-026-ref.xht", + "/css/CSS2/box-display/insert-block-in-inlines-beginning-001-ref.xht", "==" ] ], {} ] ], - "border-right-color-027.xht": [ - "d50ad625c7a118281c7d6b3ff588d9e5aaf14e7b", + "insert-block-in-inlines-end-001.xht": [ + "c196757e7012bb5a401ad2205393c1a774d0060a", [ null, [ [ - "/css/CSS2/borders/border-right-color-027-ref.xht", + "/css/CSS2/box-display/insert-block-in-inlines-end-001-ref.xht", "==" ] ], {} ] ], - "border-right-color-028.xht": [ - "31fb4c0089427ba7761a0884a452bd4047b4fb53", + "insert-block-in-inlines-middle-001.xht": [ + "9d79d637e90407895416758a28328278fb54f9b4", [ null, [ [ - "/css/CSS2/borders/border-right-color-028-ref.xht", + "/css/CSS2/box-display/insert-block-in-inlines-middle-001-ref.xht", "==" ] ], {} ] ], - "border-right-color-029.xht": [ - "758e1c74516a1ba935d09e51aadb63a155cdd61d", + "insert-inline-in-blocks-beginning-001.xht": [ + "c57a91b2254f17a707c34cf20154411e119d9757", [ null, [ [ - "/css/CSS2/borders/border-right-color-006-ref.xht", + "/css/CSS2/box-display/insert-inline-in-blocks-beginning-001-ref.xht", "==" ] ], {} ] ], - "border-right-color-030.xht": [ - "bbfdc56965e48f8bba1a19fbb846dd450f07c72c", + "insert-inline-in-blocks-end-001.xht": [ + "fb3fb51fc16e495289361e7cea103e41bce48399", [ null, [ [ - "/css/CSS2/reference/ref-transparent-or-black-square-black.xht", - "==" - ], - [ - "/css/CSS2/reference/ref-transparent-or-black-square-transparent.xht", + "/css/CSS2/box-display/insert-inline-in-blocks-end-001-ref.xht", "==" ] ], {} ] ], - "border-right-color-031.xht": [ - "340c68d9eb7053f75ad758e464304977a2a351eb", + "insert-inline-in-blocks-middle-001.xht": [ + "f7de7048c19e58260039ec828e79d3b7db0c6146", [ null, [ [ - "/css/CSS2/borders/border-right-color-007-ref.xht", + "/css/CSS2/box-display/insert-inline-in-blocks-middle-001-ref.xht", "==" ] ], {} ] ], - "border-right-color-032.xht": [ - "4c36647aa8ad1566697a697ad7ca950fa3f3c048", + "insert-inline-in-blocks-middle-002.xht": [ + "a09f06434959f8e567019824512ff1b267c354bb", [ null, [ [ - "/css/CSS2/borders/border-right-color-032-ref.xht", + "/css/CSS2/box-display/insert-inline-in-blocks-middle-002-ref.xht", "==" ] ], {} ] ], - "border-right-color-033.xht": [ - "2ac7e710c9b9a6364eca304fa42a82b393dcdf14", + "insert-inline-in-blocks-n-inlines-begin-001.xht": [ + "32d3ba544ac8c37534591827bb1ce60592e9c6d2", [ null, [ [ - "/css/CSS2/borders/border-right-color-010-ref.xht", + "/css/CSS2/box-display/insert-inline-in-blocks-n-inlines-begin-001-ref.xht", "==" ] ], {} ] ], - "border-right-color-034.xht": [ - "dd7f9121ee354736c052f4a37f9dc37c0dfd09e3", + "insert-inline-in-blocks-n-inlines-begin-002.xht": [ + "7f1dd2938409c24a74b58fe455540fbb118e9267", [ null, [ [ - "/css/CSS2/borders/border-right-color-034-ref.xht", + "/css/CSS2/box-display/insert-inline-in-blocks-n-inlines-begin-002-ref.xht", "==" ] ], {} ] ], - "border-right-color-035.xht": [ - "686141399e2e7a012d5aea20fd178ed0721216a3", + "insert-inline-in-blocks-n-inlines-begin-003.xht": [ + "b9399e426fdb5ed8f995465339baca44ba919945", [ null, [ [ - "/css/CSS2/borders/border-right-color-012-ref.xht", + "/css/CSS2/box-display/insert-inline-in-blocks-n-inlines-begin-003-ref.xht", "==" ] ], {} ] ], - "border-right-color-036.xht": [ - "bfb55ce7a8c68c39212f11d94f543b6d5594ad8c", + "insert-inline-in-blocks-n-inlines-end-001.xht": [ + "88997fa4ae167a6416726299b97feece15d04ef2", [ null, [ [ - "/css/CSS2/borders/border-right-color-007-ref.xht", + "/css/CSS2/box-display/insert-inline-in-blocks-n-inlines-end-001-ref.xht", "==" ] ], {} ] ], - "border-right-color-037.xht": [ - "2213a09f7034f1a72c6f0ec608e1b7d453ca355f", + "insert-inline-in-blocks-n-inlines-end-002.xht": [ + "72855d3a459c4b18215feedab4dee21c1253d7e7", [ null, [ [ - "/css/CSS2/borders/border-right-color-037-ref.xht", + "/css/CSS2/box-display/insert-inline-in-blocks-n-inlines-end-002-ref.xht", "==" ] ], {} ] ], - "border-right-color-038.xht": [ - "55648d7029d91b69275a88369d4c69cc72fbc5c2", + "insert-inline-in-blocks-n-inlines-end-003.xht": [ + "bd982b78d637861efebe731613a17475804647ec", [ null, [ [ - "/css/CSS2/borders/border-right-color-038-ref.xht", + "/css/CSS2/box-display/insert-inline-in-blocks-n-inlines-end-003-ref.xht", "==" ] ], {} ] ], - "border-right-color-039.xht": [ - "45ca2a27e02bfc0013f1c97fb52199264a0f57ed", + "insert-inline-in-blocks-n-inlines-middle-001.xht": [ + "fde80e5f05c8fafe6f3edc2a9161c58077fa52e7", [ null, [ [ - "/css/CSS2/borders/border-right-color-039-ref.xht", + "/css/CSS2/box-display/insert-inline-in-blocks-n-inlines-middle-001-ref.xht", "==" ] ], {} ] ], - "border-right-color-040.xht": [ - "21c5dd266cc907a8d98d47010641319b486cc029", + "insert-inline-in-blocks-n-inlines-middle-002.xht": [ + "b0073b1da79f59354e8b9b4abef9c9fd478e51ac", [ null, [ [ - "/css/CSS2/borders/border-right-color-017-ref.xht", + "/css/CSS2/box-display/insert-inline-in-blocks-n-inlines-middle-002-ref.xht", "==" ] ], {} ] ], - "border-right-color-041.xht": [ - "ecbb6000978e4d856a31a48f9e2ef23dbc4bcfc9", + "insert-inline-in-blocks-n-inlines-middle-003.xht": [ + "277d27c72c464936c39979c5569175fec3116c33", [ null, [ [ - "/css/CSS2/borders/border-right-color-007-ref.xht", + "/css/CSS2/box-display/insert-inline-in-blocks-n-inlines-middle-003-ref.xht", "==" ] ], {} ] ], - "border-right-color-042.xht": [ - "aa3e8852013236c1da5029b4940c560938458833", + "root-box-002.xht": [ + "f7c43460e88d8a077bbe5f105bc5b4208796b1bc", [ null, [ [ - "/css/CSS2/borders/border-right-color-042-ref.xht", + "/css/CSS2/box-display/root-box-002-ref.xht", "==" ] ], {} ] ], - "border-right-color-043.xht": [ - "00bd2611d11cd7c87cbcfdfb478bd966eb49dacc", + "root-box-003.xht": [ + "088b3b257d12f9a3a3ba5657f655e6d17414b62e", [ null, [ [ - "/css/CSS2/borders/border-right-color-020-ref.xht", + "/css/CSS2/box-display/root-box-003-ref.xht", "==" ] ], {} ] ], - "border-right-color-044.xht": [ - "514c2733394d90109645bc610838a74bd40cab86", + "root-canvas-001.xht": [ + "87d747ee5e6981701ed3df8da3b26dbd8f2e2e9e", [ null, [ [ - "/css/CSS2/borders/border-right-color-044-ref.xht", + "/css/CSS2/box-display/root-canvas-001-ref.xht", "==" ] ], {} ] - ], - "border-right-color-045.xht": [ - "05379e3420a777fbf547ebd134dc2702d86bfb61", + ] + }, + "cascade": { + "at-import-002.xht": [ + "262cf425154fac6dca65eb22c35096b5b7e87ae3", [ null, [ [ - "/css/CSS2/borders/border-right-color-022-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "border-right-color-046.xht": [ - "3ec588fcb2c8681001303b343732029b0acf5575", + "at-import-003.xht": [ + "6cd010c088134bfc813e7a79d858eabd3bc46c5a", [ null, [ [ - "/css/CSS2/borders/border-right-color-007-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "border-right-color-047.xht": [ - "7f68609fd0f6dca1cb6fbe42a9010416f9891d4d", + "at-import-004.xht": [ + "e7ad90c77f79bed4cacbd4f01b159cf786b8e063", [ null, [ [ - "/css/CSS2/borders/border-right-color-001-ref.xht", + "/css/CSS2/reference/no-red-filler-text-ref.xht", "==" ] ], {} ] ], - "border-right-color-048.xht": [ - "dd67378791f0bbdea8bee11263cd96a5e8aa7556", + "at-import-005.xht": [ + "7e2e08396e7f61828c70c868f2d1e55ad649e6c3", [ null, [ [ - "/css/CSS2/borders/border-right-color-001-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "border-right-color-049.xht": [ - "eb1b16792b44af0e73d80311fb72dda7df263963", + "at-import-006.xht": [ + "9da0e2d98ed0c39c8854f728e390f2ff48e392cd", [ null, [ [ - "/css/CSS2/borders/border-right-color-049-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "border-right-color-050.xht": [ - "2eee1e154c89edbd9e5d214bbbd79d091a5ebf6f", + "at-import-007.xht": [ + "0704cec90525712c10e46a81cc26639226c69b3d", [ null, [ [ - "/css/CSS2/borders/border-right-color-001-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "border-right-color-051.xht": [ - "cafa86efa1a3e59b6e612e87af03941e0261c684", + "at-import-009.xht": [ + "a3198aaa2cb581ee702982d4b9b13113504fc444", [ null, [ [ - "/css/CSS2/borders/border-right-color-001-ref.xht", + "/css/CSS2/reference/ref-this-text-should-be-green.xht", "==" ] ], {} ] ], - "border-right-color-052.xht": [ - "15aef97fe0cc32353b7ca0fbbd3ebd1e3430b0d0", + "at-import-010.xht": [ + "6ec33fe7006f79fa74a84a74d61905db44ed03a6", [ null, [ [ - "/css/CSS2/borders/border-right-color-052-ref.xht", + "/css/CSS2/reference/ref-this-text-should-be-green.xht", "==" ] ], {} ] ], - "border-right-color-053.xht": [ - "63c0eabaf93b19ec322a788173a76407b09b2b82", + "at-import-011.xht": [ + "b1370dda271a8c6e81f941f32497e5c9f4a13d43", [ null, [ [ - "/css/CSS2/borders/border-right-color-052-ref.xht", + "/css/CSS2/reference/ref-this-text-should-be-green.xht", "==" ] ], {} ] ], - "border-right-color-054.xht": [ - "5c36d8594733c95cfcd113fbe8ec0a2e18325948", + "cascade-005.xht": [ + "e6011975c90bfb7601482457d101c083fd442262", [ null, [ [ - "/css/CSS2/borders/border-right-color-054-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "border-right-color-055.xht": [ - "43c9d48d468c22950b519aeaf974e6f48cf00694", + "cascade-007.xht": [ + "2ca08df99516fb608e8ac75cfa4111c55c1477e3", [ null, [ [ - "/css/CSS2/borders/border-right-color-006-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "border-right-color-056.xht": [ - "58fa4339fab0998d152aec2405769e70d2e75543", + "cascade-009.xht": [ + "48500e75e7cab80f2482796962bfe9a37cb572bb", [ null, [ [ - "/css/CSS2/borders/border-right-color-006-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "border-right-color-057.xht": [ - "beee6bf75457c0a9e90725d28dc2158fc5c86a2f", + "cascade-009a.xht": [ + "21bf13c9028c34ae0e9a3d79b25c13dd07d7e773", [ null, [ [ - "/css/CSS2/borders/border-right-color-006-ref.xht", + "/css/CSS2/cascade/cascade-009a-ref.xht", "==" ] ], {} ] ], - "border-right-color-058.xht": [ - "173c5b89131e00e6a6ba8f20f57565ac308855b4", + "cascade-009b.xht": [ + "791d173c82bab6a90203758a4f0c1d1db061b585", [ null, [ [ - "/css/CSS2/borders/border-right-color-001-ref.xht", + "/css/CSS2/cascade/cascade-009b-ref.xht", "==" ] ], {} ] ], - "border-right-color-059.xht": [ - "f1f7e081a4297242e9f57be014a549f8127afa4c", + "cascade-012.xht": [ + "44ef7cddcd8b5ca070ee2392b630b750f9fd151f", [ null, [ [ - "/css/CSS2/borders/border-right-color-001-ref.xht", + "/css/CSS2/cascade/cascade-012-ref.xht", "==" ] ], {} ] ], - "border-right-color-060.xht": [ - "fddadc9220fe88314ea249da8f9f65afe35da940", + "html-attribute-009.xht": [ + "1e915f1dc81328124de863e101e8252d73efc468", [ null, [ [ - "/css/CSS2/borders/border-right-color-003-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "border-right-color-061.xht": [ - "8ebc0e8e441a4db0e59a640db82991400062e092", + "html-attribute-028.xht": [ + "936a213ba39aa210062c133d7f1411b83b5b1016", [ null, [ [ - "/css/CSS2/borders/border-right-color-001-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "border-right-color-062.xht": [ - "619398223f60a50ca3635070c5ac0971575c0c56", + "html-precedence-001.xht": [ + "de4b834c38f02c6797432f6431907ffe7b37ded0", [ null, [ [ - "/css/CSS2/borders/border-right-color-001-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "border-right-color-063.xht": [ - "c7579fe12369291e8ff146f8b597b993c3f1cd8e", + "inherit-computed-001.html": [ + "08f4848f32ed9ae30ff495eb77f4ce64f3fd1906", [ null, [ [ - "/css/CSS2/borders/border-right-color-063-ref.xht", + "/css/CSS2/cascade/inherit-computed-001-ref.html", "==" ] ], {} ] ], - "border-right-color-064.xht": [ - "aa60d72c5bd1a94d14dbdef5ea5b41c6cdf2c56b", + "inherit-computed-002.html": [ + "867a8badc2c4432f5ff4c7a488689e136e8f9f31", [ null, [ [ - "/css/CSS2/borders/border-right-color-063-ref.xht", + "/css/CSS2/cascade/inherit-computed-002-ref.html", "==" ] ], {} ] ], - "border-right-color-065.xht": [ - "b2d44c145ee0acaa0db9c0eb3e1eb655c6a95187", + "sort-by-order-001.xht": [ + "83c43f99756f6e1d47f1fc4a21e7fe0a5682cc59", [ null, [ [ - "/css/CSS2/borders/border-right-color-005-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-right-color-066.xht": [ - "06b6154ddc183a0217ddfa4dbaef791429db8c65", + "specificity-001.xht": [ + "d0044ad1b4784e69e1c84b97752e5f7794798dbc", [ null, [ [ - "/css/CSS2/borders/border-right-color-006-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "border-right-color-067.xht": [ - "969de38edeb55fb06cdd5af8091cc1bbfc41dac8", + "specificity-002.xht": [ + "293232ec12d846acddc965ec0085e8442a0f4d09", [ null, [ [ - "/css/CSS2/borders/border-right-color-006-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "border-right-color-068.xht": [ - "f5ba13465f3162d16fa2976a986db70b38109fe5", + "specificity-003.xht": [ + "e17733e26420acad77544d3254d4fa8bd871c952", [ null, [ [ - "/css/CSS2/borders/border-right-color-006-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "border-right-color-069.xht": [ - "89755e42d71eb3786df4cedc1e803173760801ab", + "specificity-004.xht": [ + "edb41a5a42253248403eeaaa299d9a55a7574ac9", [ null, [ [ - "/css/CSS2/borders/border-right-color-001-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "border-right-color-070.xht": [ - "39fe330e99d901b512d21b7bf4f4822ddf17e6dd", + "specificity-005.xht": [ + "58c02517390927a21b1962b67d91133cc44774bd", [ null, [ [ - "/css/CSS2/borders/border-right-color-070-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "border-right-color-071.xht": [ - "de7c70a97a87d506ee96dd1d14c110374af9b708", + "specificity-006.xht": [ + "d178b8941bbb5890b193ffe2530818314c2674b2", [ null, [ [ - "/css/CSS2/borders/border-right-color-001-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "border-right-color-072.xht": [ - "2bad196d90c2330248571e49ba696ea823e4e24a", + "specificity-007.xht": [ + "3d4bd830c5f40974221533a20627ab0fa417ff4e", [ null, [ [ - "/css/CSS2/borders/border-right-color-001-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "border-right-color-073.xht": [ - "b8a8f62e0648ea390700d73ddd692e5399c9c7a0", + "specificity-008.xht": [ + "fbf5eac1cb8be3e029578e55d07a54e9809fe690", [ null, [ [ - "/css/CSS2/borders/border-right-color-073-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "border-right-color-074.xht": [ - "d541d7b1d763e8917f89e7770a9564349d006f75", + "specificity-011.xht": [ + "3c3952bd87ce06d40b185fbbf2dc52f160e395a9", [ null, [ [ - "/css/CSS2/borders/border-right-color-073-ref.xht", + "/css/CSS2/cascade/specificity-011-ref.xht", "==" ] ], {} ] ], - "border-right-color-075.xht": [ - "c6b160f51248676a41615740f771bdc0f4cf2a55", + "specificity-013.xht": [ + "a0089b0f67bd093224c54b6d9a4c0b9e8170ea6d", [ null, [ [ - "/css/CSS2/borders/border-right-color-075-ref.xht", + "/css/CSS2/cascade/specificity-013-ref.xht", "==" ] ], {} ] - ], - "border-right-color-076.xht": [ - "5691834f8909e5f175c091a7b7420797fa718930", + ] + }, + "cascade-import": { + "cascade-import-001.xht": [ + "470d81571c0ddfea2b5a85272b2de30335e40eda", [ null, [ [ - "/css/CSS2/borders/border-right-color-012-ref.xht", + "/css/CSS2/syntax/character-encoding-041-ref.xht", "==" ] ], {} ] ], - "border-right-color-077.xht": [ - "935012999b09470e02857791f7970bbcd41d840f", + "cascade-import-dynamic-001.xht": [ + "e7e73a46a083319d67b8210e30afdfbf0263c810", [ null, [ [ - "/css/CSS2/borders/border-right-color-012-ref.xht", + "/css/CSS2/reference/ref-this-text-should-be-green.xht", "==" ] ], {} ] ], - "border-right-color-078.xht": [ - "a5abe31cb9326cf1a412f936cc2cbea69f126ef7", + "cascade-import-dynamic-002.xht": [ + "0ace1ca13cb0dc2aae9d3e193995f157ab30037e", [ null, [ [ - "/css/CSS2/borders/border-right-color-012-ref.xht", + "/css/CSS2/reference/ref-this-text-should-be-green.xht", "==" ] ], {} ] ], - "border-right-color-079.xht": [ - "c9056e5444d106af89fdf2fd207da936534b54cc", + "cascade-import-dynamic-003.xht": [ + "fd72e336ea12d2c643666187f38559ebc0d889c5", [ null, [ [ - "/css/CSS2/borders/border-right-color-001-ref.xht", + "/css/CSS2/reference/ref-this-text-should-be-green.xht", "==" ] ], {} ] ], - "border-right-color-080.xht": [ - "2ea1e3f45d1e127110c7d9162f1a39e71502eed1", + "cascade-import-dynamic-004.xht": [ + "006e4cc4d8e349107ebe88da0f79419aeb0e7d7a", [ null, [ [ - "/css/CSS2/borders/border-right-color-009-ref.xht", + "/css/CSS2/reference/ref-this-text-should-be-green.xht", "==" ] ], {} ] ], - "border-right-color-081.xht": [ - "6ba4a3a56e4dc69ddf129772c8e59115f0d86fff", + "cascade-import-dynamic-005.xht": [ + "21eb1460b81aa6f67ef54e964031e56bbd4070d1", [ null, [ [ - "/css/CSS2/borders/border-right-color-001-ref.xht", + "/css/CSS2/reference/ref-this-text-should-be-green.xht", "==" ] ], {} ] ], - "border-right-color-082.xht": [ - "07a590b77369e59d4dd6765f640b1d74c654d0b7", + "cascade-import-dynamic-006.xht": [ + "7d146e1341ab49da951f69dab48cf0a781fbfad7", [ null, [ [ - "/css/CSS2/borders/border-right-color-001-ref.xht", + "/css/CSS2/reference/ref-this-text-should-be-green.xht", "==" ] ], {} ] ], - "border-right-color-083.xht": [ - "0dcaad552bf1c5d7768b67ff8ec0994a212a9e62", + "cascade-import-dynamic-control.xht": [ + "8460793e711a9f22c8eede5c6e30dd86de454ee6", [ null, [ [ - "/css/CSS2/borders/border-right-color-083-ref.xht", + "/css/CSS2/reference/ref-this-text-should-be-green.xht", "==" ] ], {} ] - ], - "border-right-color-084.xht": [ - "cb7939c96fdb02496c522a450d2417b5df61d1d0", + ] + }, + "colors": { + "color-129.xht": [ + "cb0e6e0d3fb6d1aee2a58bcc1f617e19a9fa8760", [ null, [ [ - "/css/CSS2/borders/border-right-color-083-ref.xht", + "/css/CSS2/colors/color-129-ref.xht", "==" ] ], {} ] ], - "border-right-color-085.xht": [ - "2bda8e50a36a20c3e9810a601e3e0f3a64ce530f", + "color-174.xht": [ + "93bff69ec385f2d454a149c09e356febacd56e62", [ null, [ [ - "/css/CSS2/borders/border-right-color-011-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-right-color-086.xht": [ - "fc63b3682580bfc7968614594fcea087ffc69a8e", + "color-175.xht": [ + "e082f3be76fdbbd6c2a4b45be570feadaafb4e19", [ null, [ [ - "/css/CSS2/borders/border-right-color-012-ref.xht", + "/css/CSS2/colors/color-175-ref.xht", "==" ] ], {} ] ], - "border-right-color-087.xht": [ - "0ae0d20abbaefeafbe10db081a7e06e30fb0f72f", + "color-176.xht": [ + "af01bb36a4d127549a911dceaa1cb8ebd7207ca1", [ null, [ [ - "/css/CSS2/borders/border-right-color-012-ref.xht", + "/css/CSS2/reference/ref-this-text-should-be-green.xht", "==" ] ], {} ] ], - "border-right-color-088.xht": [ - "a8f994420a80ca616b2e027fa3fa71e08087abab", + "color-177.xht": [ + "acc7f01af7c43eebb7ab348ccc6f1b7a5c9ac840", [ null, [ [ - "/css/CSS2/borders/border-right-color-012-ref.xht", + "/css/CSS2/colors/color-175-ref.xht", "==" ] ], {} ] ], - "border-right-color-089.xht": [ - "80fa71740d551174fcf0ee7f5beb3af5ffb702a7", + "color-applies-to-001.xht": [ + "5d7dfb1be098bc577654d65406d3c022999342ea", [ null, [ [ - "/css/CSS2/borders/border-right-color-001-ref.xht", + "/css/CSS2/colors/color-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-right-color-090.xht": [ - "7becc80679dea2ce1d9e02e2dbca03fa0f51a5bc", + "color-applies-to-002.xht": [ + "830cbb25038030c6e15a08a1965e0dd61b370c65", [ null, [ [ - "/css/CSS2/borders/border-right-color-090-ref.xht", + "/css/CSS2/colors/color-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-right-color-091.xht": [ - "5a9cf2db4c150e49e9b8a6a26e63498ae1e8dc20", + "color-applies-to-003.xht": [ + "e60baaa549987f016611f916c8c62c331bac20da", [ null, [ [ - "/css/CSS2/borders/border-right-color-001-ref.xht", + "/css/CSS2/colors/color-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-right-color-092.xht": [ - "f58c03894f8fdee09bf73857dd0fac61c43ee270", + "color-applies-to-004.xht": [ + "7cc6c0fe95cce17a1602b73b62831f8ab960cc5c", [ null, [ [ - "/css/CSS2/borders/border-right-color-001-ref.xht", + "/css/CSS2/colors/color-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-right-color-093.xht": [ - "f1e213819d1aff7870b6a20c63f2ff85b4c50a25", + "color-applies-to-005.xht": [ + "a24c90c72b6fd2cee7c6a4d9e2374e98d11ec72c", [ null, [ [ - "/css/CSS2/borders/border-right-color-093-ref.xht", + "/css/CSS2/colors/color-applies-to-005-ref.xht", "==" ] ], {} ] ], - "border-right-color-094.xht": [ - "ecdc6185e8214119b4f4723676ebab7f4227791b", + "color-applies-to-006.xht": [ + "6ab6c05aefc31fcf63d60846b9206493badeb7cf", [ null, [ [ - "/css/CSS2/borders/border-right-color-093-ref.xht", + "/css/CSS2/colors/color-applies-to-005-ref.xht", "==" ] ], {} ] ], - "border-right-color-095.xht": [ - "9ea964ea20554024a3a92a7fefaf15cf5fcac2cf", + "color-applies-to-007.xht": [ + "0072e8852ce86cbcf9f30a4b86ffb35501010d54", [ null, [ [ - "/css/CSS2/borders/border-right-color-095-ref.xht", + "/css/CSS2/colors/color-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-right-color-096.xht": [ - "f4eddd2d7d073fb394490466025a554fbbf01dc5", + "color-applies-to-008.xht": [ + "ff93a026438dd6a2c31248e93a03c78ce7668c67", [ null, [ [ - "/css/CSS2/borders/border-right-color-017-ref.xht", + "/css/CSS2/colors/color-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-right-color-097.xht": [ - "6a2cc7ceb93018ba3b842e85e7b2549093bc123e", + "color-applies-to-009.xht": [ + "b4eef6f59200423eca421c46c5a1f18dad98e93b", [ null, [ [ - "/css/CSS2/borders/border-right-color-017-ref.xht", + "/css/CSS2/colors/color-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-right-color-098.xht": [ - "d1337caf27c13d7104e1ff921725aeb2d2cd3f69", + "color-applies-to-012.xht": [ + "1824f953ca51eeea8da8a6ba3795f05017da665c", [ null, [ [ - "/css/CSS2/borders/border-right-color-017-ref.xht", + "/css/CSS2/colors/color-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-right-color-099.xht": [ - "dc4f07102c048c38c47e3381f6a747cc773f9a72", + "color-applies-to-013.xht": [ + "4a3fdadd9166ce9a63ba19ae2bef3ab5d2f50e85", [ null, [ [ - "/css/CSS2/borders/border-right-color-001-ref.xht", + "/css/CSS2/colors/color-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-right-color-100.xht": [ - "21df7be61bca37605df1efc4f7300c1382a3ffe5", + "color-applies-to-014.xht": [ + "41772b0781f7cc83dfb283d07db04a0a98742550", [ null, [ [ - "/css/CSS2/borders/border-right-color-100-ref.xht", + "/css/CSS2/colors/color-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-right-color-101.xht": [ - "c16287a2e98eb3d33a7ca81696050e64bbca5149", + "color-applies-to-015.xht": [ + "a365889658b1106815d645d0421188b647622205", [ null, [ [ - "/css/CSS2/borders/border-right-color-001-ref.xht", + "/css/CSS2/colors/color-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-right-color-102.xht": [ - "431ce5f3d2a86b608520be896315fc0f35b9945c", + "colors-007.xht": [ + "142df128a05d6f9c4077c08be5d249342e0884c2", [ null, [ [ - "/css/CSS2/borders/border-right-color-001-ref.xht", + "/css/CSS2/colors/colors-007-ref.xht", "==" ] ], {} ] - ], - "border-right-color-103.xht": [ - "ef6d2e70d5c16f693a63a4bb74dd4bdb4dd5cc26", + ] + }, + "css-e-notation-test-1.html": [ + "1391f4b9deb0aa709a592975b4905dd83a632464", + [ + null, + [ + [ + "/css/CSS2/css-e-notation-ref-1.html", + "==" + ] + ], + {} + ] + ], + "css-e-notation-test-2.html": [ + "8bbceab0bec052d5f68457888d9f8082afe62785", + [ + null, + [ + [ + "/css/CSS2/css-e-notation-ref-2.html", + "==" + ] + ], + {} + ] + ], + "css1": { + "c11-import-000.xht": [ + "f214001d11c66c4c33f623b3e6adf7780001f10c", [ null, [ [ - "/css/CSS2/borders/border-right-color-103-ref.xht", + "/css/CSS2/css1/c11-import-000-ref.xht", "==" ] ], {} ] ], - "border-right-color-104.xht": [ - "84c1157c68b68008801a743c06c4f4a4cb5b0c14", + "c12-grouping-000.xht": [ + "0cea3173dc73642fafb9091f604584ea07247711", [ null, [ [ - "/css/CSS2/borders/border-right-color-103-ref.xht", + "/css/CSS2/css1/c12-grouping-000-ref.xht", "==" ] ], {} ] ], - "border-right-color-105.xht": [ - "d8bf01aab21b136161c2e4aa8730f66b1f9c0500", + "c13-inheritance-000.xht": [ + "a5ddcaab18f0651861bbbfd259058086276ba8ee", [ null, [ [ - "/css/CSS2/borders/border-right-color-016-ref.xht", + "/css/CSS2/css1/c13-inheritance-000-ref.xht", "==" ] ], {} ] ], - "border-right-color-106.xht": [ - "b521a12c53ee8e5bf8a3b5463d534e3571618b9d", + "c14-classes-000.xht": [ + "a6e33c6ebab2ad103feb447121919f1c47d3c36f", [ null, [ [ - "/css/CSS2/borders/border-right-color-017-ref.xht", + "/css/CSS2/css1/c14-classes-000-ref.xht", "==" ] ], {} ] ], - "border-right-color-107.xht": [ - "c57d3e9a4a70aa27488f59bf264bd4e7fd006b74", + "c15-ids-000.xht": [ + "a018acce83eadb50004dad17030c7afd8012cdf3", [ null, [ [ - "/css/CSS2/borders/border-right-color-017-ref.xht", + "/css/CSS2/css1/c12-grouping-000-ref.xht", "==" ] ], {} ] ], - "border-right-color-108.xht": [ - "1deacdee72fb600e26e8b78c51a6bf32532c44f7", + "c15-ids-001.xht": [ + "4c8fd7a1f6c9aa198522f7d5b84d65c17f28f267", [ null, [ [ - "/css/CSS2/borders/border-right-color-017-ref.xht", + "/css/CSS2/css1/c15-ids-001-ref.xht", "==" ] ], {} ] ], - "border-right-color-109.xht": [ - "9cb68f11186daf3166822be9fb736287109525d8", + "c16-descendant-000.xht": [ + "97c6c5f2bfc8c6b7be4ee310737067e24732eb8a", [ null, [ [ - "/css/CSS2/borders/border-right-color-001-ref.xht", + "/css/CSS2/css1/c16-descendant-000-ref.xht", "==" ] ], {} ] ], - "border-right-color-110.xht": [ - "0c967489b30b9dcb5e1be0405f9975bd3d8435e3", + "c16-descendant-001.xht": [ + "6dbd9073ec4329809fcc21f7072d7ef611970bf6", [ null, [ [ - "/css/CSS2/borders/border-right-color-110-ref.xht", + "/css/CSS2/css1/c16-descendant-001-ref.xht", "==" ] ], {} ] ], - "border-right-color-111.xht": [ - "b92381fa3c531b4501974406fb24f03934a7104e", + "c16-descendant-002.xht": [ + "d7383e786e4f0cf55a6e5f03a0a4e27d0327eac9", [ null, [ [ - "/css/CSS2/borders/border-right-color-001-ref.xht", + "/css/CSS2/reference/ref-this-text-should-be-green.xht", "==" ] ], {} ] ], - "border-right-color-112.xht": [ - "cc2c354ac449fbd55bf1cbc1b54bf52055005398", + "c17-comments-000.xht": [ + "6a8357f46d8db3c8536c045bf7a2f1848fe19049", [ null, [ [ - "/css/CSS2/borders/border-right-color-001-ref.xht", + "/css/CSS2/css1/c17-comments-000-ref.xht", "==" ] ], {} ] ], - "border-right-color-113.xht": [ - "2162aae1ae8e288f78c9a1db12266e99c262e508", + "c17-comments-001.xht": [ + "617b52a529812c0d35ce09134a4782e195d23021", [ null, [ [ - "/css/CSS2/borders/border-right-color-113-ref.xht", + "/css/CSS2/css1/c17-comments-001-ref.xht", "==" ] ], {} ] ], - "border-right-color-114.xht": [ - "bbccbfc41aefd612dba1419d15f2851b91eddb6c", + "c25-pseudo-elmnt-000.xht": [ + "26fa2b25796b7abd6017cd4ea1b65bb0148815fe", [ null, [ [ - "/css/CSS2/borders/border-right-color-113-ref.xht", + "/css/CSS2/css1/c25-pseudo-elmnt-000-ref.xht", "==" ] ], {} ] ], - "border-right-color-115.xht": [ - "7eae3cef73b5312af61d26e8613c7b0b756e4ec3", + "c31-important-000.xht": [ + "424ca56dd06407432de31bc4096f2d1c7721adc8", [ null, [ [ - "/css/CSS2/borders/border-right-color-115-ref.xht", + "/css/CSS2/css1/c12-grouping-000-ref.xht", "==" ] ], {} ] ], - "border-right-color-116.xht": [ - "377ba1a2751174ca398f0b21174a9e7c58e8654e", + "c32-cascading-000.xht": [ + "c70eced3e6c5c01385051b8f69ed09249d18a426", [ null, [ [ - "/css/CSS2/borders/border-right-color-022-ref.xht", + "/css/CSS2/css1/c32-cascading-000-ref.xht", "==" ] ], {} ] ], - "border-right-color-117.xht": [ - "72936fc9970189c28b9c5de1569d77a27aeb7d00", + "c412-blockw-000.xht": [ + "2fd1b32120f730033915d3c409206bdd77dc02c5", [ null, [ [ - "/css/CSS2/borders/border-right-color-022-ref.xht", + "/css/CSS2/css1/c412-blockw-000-ref.xht", "==" ] ], {} ] ], - "border-right-color-118.xht": [ - "5f478019bb9f01dfe832b3bd42d7b916cf12fc18", + "c412-hz-box-000.xht": [ + "d425fb3d923e4250128609dbb0e4b0ce5acf8a07", [ null, [ [ - "/css/CSS2/borders/border-right-color-022-ref.xht", + "/css/CSS2/css1/c412-hz-box-000-ref.xht", "==" ] ], {} ] ], - "border-right-color-119.xht": [ - "15a6c383562b78aa871a8f4cec17d4a68920d40d", + "c414-flt-fit-000.xht": [ + "15a53e4aa02b1ec7ec69a42f1df4eeca02f98999", [ null, [ [ - "/css/CSS2/borders/border-right-color-001-ref.xht", + "/css/CSS2/css1/c414-flt-fit-000-ref.xht", "==" ] ], {} ] ], - "border-right-color-120.xht": [ - "b931421c41506c849005e1b0e2af208da072a756", + "c414-flt-fit-001.xht": [ + "9032cab91ff424c0e89994451cae77872b9cb686", [ null, [ [ - "/css/CSS2/borders/border-right-color-019-ref.xht", + "/css/CSS2/css1/c414-flt-fit-001-ref.xht", "==" ] ], {} ] ], - "border-right-color-121.xht": [ - "9d6a0490937e0554c52db1159d6a8005923e21ad", + "c414-flt-fit-002.xht": [ + "997913c6f80e0ad1e323281ade4c14de8130d82b", [ null, [ [ - "/css/CSS2/borders/border-right-color-001-ref.xht", + "/css/CSS2/css1/c414-flt-fit-002-ref.xht", "==" ] ], {} ] ], - "border-right-color-122.xht": [ - "d7ed39a397dad36f46a8469756bb2ef5a5e5a791", + "c414-flt-fit-003.xht": [ + "2a14208c9a62eda3a3075eb9f451f933815fa318", [ null, [ [ - "/css/CSS2/borders/border-right-color-001-ref.xht", + "/css/CSS2/css1/c414-flt-fit-003-ref.xht", "==" ] ], {} ] ], - "border-right-color-123.xht": [ - "01d93e04defb26c98affce10a09ddc7ae736b00c", + "c414-flt-fit-004.xht": [ + "451471c67b5d9a786817ad200477afb93d85acde", [ null, [ [ - "/css/CSS2/borders/border-right-color-123-ref.xht", + "/css/CSS2/css1/c414-flt-fit-004-ref.xht", "==" ] ], {} ] ], - "border-right-color-124.xht": [ - "52641446cd3108baf22460defff2e6c39865bd33", + "c414-flt-fit-005.xht": [ + "1cb824995df078b1122101d406fd5e0a2c4e9871", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-123-ref.xht", + "/css/CSS2/css1/c414-flt-fit-005-ref.xht", "==" ] ], {} ] ], - "border-right-color-125.xht": [ - "79f3d8db25e232f21c1205eda0ea7bbff106e988", + "c414-flt-fit-006.xht": [ + "6f688769e403b4dda6c91ad413bb935ed58efc1a", [ null, [ [ - "/css/CSS2/borders/border-right-color-021-ref.xht", + "/css/CSS2/css1/c414-flt-fit-006-ref.xht", "==" ] ], {} ] ], - "border-right-color-126.xht": [ - "e5ad494f9eeb0ece539fa74be85242cee7ae37db", + "c414-flt-wrap-001.xht": [ + "04ed209a5649f42e9fdd3fc4b422fcedfbf0dd3c", [ null, [ [ - "/css/CSS2/borders/border-right-color-022-ref.xht", + "/css/CSS2/css1/c414-flt-wrap-001-ref.xht", "==" ] ], {} ] ], - "border-right-color-127.xht": [ - "c8a281242cadd83d68abff2c476d76dd8454ae56", + "c42-ibx-ht-000.xht": [ + "fe30367030c8be3f424ede8dddafd0936d8a67c1", [ null, [ [ - "/css/CSS2/borders/border-right-color-022-ref.xht", + "/css/CSS2/css1/c42-ibx-ht-000-ref.xht", "==" ] ], {} ] ], - "border-right-color-128.xht": [ - "88f4a4eaa2f48885991ce9e04cfc2a0aa504ca9c", + "c42-ibx-pad-000.xht": [ + "38e84af17b57eaab0227934b21fae1da90c19ae2", [ null, [ [ - "/css/CSS2/borders/border-right-color-022-ref.xht", + "/css/CSS2/css1/c42-ibx-pad-000-ref.xht", "==" ] ], {} ] ], - "border-right-color-129.xht": [ - "814bf8a4328575892aa0872329537fe599de0bbf", + "c43-rpl-bbx-002.xht": [ + "cc6808352a7b89122468edf625cde47f929fd0c4", [ null, [ [ - "/css/CSS2/borders/border-right-color-129-ref.xht", + "/css/CSS2/css1/c43-rpl-bbx-002-ref.xht", "==" ] ], {} ] ], - "border-right-color-130.xht": [ - "b36a02df10b18cbd159da0adad8b6cb7bb058fff", + "c43-rpl-ibx-000.xht": [ + "45ef15f58e0f22d02360f2a946dfecbb1e5b96ff", [ null, [ [ - "/css/CSS2/borders/border-right-color-001-ref.xht", + "/css/CSS2/css1/c43-rpl-ibx-000-ref.xht", "==" ] ], {} ] ], - "border-right-color-131.xht": [ - "6a78aa45abb82bc2499f44f60b916bcb0aa67b64", + "c44-ln-box-000.xht": [ + "f225ed468e34a817a1b7d41766650a3f759eb08f", [ null, [ [ - "/css/CSS2/borders/border-right-color-131-ref.xht", + "/css/CSS2/css1/c44-ln-box-000-ref.xht", "==" ] ], {} ] ], - "border-right-color-132.xht": [ - "0338b8fdbedfc9f6a13a707d6794ff3f2b74e3d3", + "c44-ln-box-001.xht": [ + "0e9099378523f7fc762b1ff765a58f04ab6cf864", [ null, [ [ - "/css/CSS2/borders/border-right-color-132-ref.xht", + "/css/CSS2/css1/c44-ln-box-001-ref.xht", "==" ] ], {} ] ], - "border-right-color-133.xht": [ - "c9fa8d20c78a40d722eaded4ad208be0f0d7edfd", + "c44-ln-box-002.xht": [ + "abb35ef7bde530d2f10da02e364be746ece3b7f3", [ null, [ [ - "/css/CSS2/borders/border-right-color-133-ref.xht", + "/css/CSS2/css1/c44-ln-box-002-ref.xht", "==" ] ], {} ] ], - "border-right-color-134.xht": [ - "06cf78a6c7b8dbc8c71a04f4e64ea739b7ad5624", + "c44-ln-box-003.xht": [ + "eb20083f8c01161a19bf6ea11026a99e6611c8ba", [ null, [ [ - "/css/CSS2/borders/border-right-color-134-ref.xht", + "/css/CSS2/css1/c44-ln-box-002-ref.xht", "==" ] ], {} ] ], - "border-right-color-135.xht": [ - "3384ba8216038ad1c3a479e9f2a551ae53ecd904", + "c45-bg-canvas-000.xht": [ + "600b65fdc8295d6dd68fc442c35a56725c9fc4c3", [ null, [ [ - "/css/CSS2/borders/border-right-color-135-ref.xht", + "/css/CSS2/css1/c45-bg-canvas-000-ref.xht", "==" ] ], {} ] ], - "border-right-color-136.xht": [ - "181d76b3ee2f638b3b8149a29cc4ff92ac8e7cd6", + "c526-font-sz-001.xht": [ + "387e916bff93b415a7480b9e957eff9088d70b2f", [ null, [ [ - "/css/CSS2/borders/border-right-color-136-ref.xht", + "/css/CSS2/css1/c526-font-sz-001-ref.xht", "==" ] ], {} ] ], - "border-right-color-137.xht": [ - "c5b67ca8914b78e3e34669f494c4dbcde263f8f2", + "c526-font-sz-002.xht": [ + "218c28e31272884c36333c904ca6ff1b48068892", [ null, [ [ - "/css/CSS2/borders/border-right-color-137-ref.xht", + "/css/CSS2/css1/c526-font-sz-002-ref.xht", "==" ] ], {} ] ], - "border-right-color-138.xht": [ - "9805de2b191fb5f1ed921f7c181fb84e346e91bf", + "c526-font-sz-003.xht": [ + "816287dda96bd52e2700da808daf9a38acf85988", [ null, [ [ - "/css/CSS2/borders/border-right-color-138-ref.xht", + "/css/CSS2/css1/c526-font-sz-003-ref.xht", "==" ] ], {} ] ], - "border-right-color-139.xht": [ - "5c41321307f95e3d52e2bc179abaf7277ceffd51", + "c531-color-000.xht": [ + "1568eff2eda8bab6242cc57dcb8dfd015814c945", [ null, [ [ - "/css/CSS2/borders/border-right-color-139-ref.xht", + "/css/CSS2/css1/c531-color-000-ref.xht", "==" ] ], {} ] ], - "border-right-color-140.xht": [ - "9b3af4f86c8c17ee11e4f1fd8adbd2ae7a6358f7", + "c532-bgcolor-000.xht": [ + "5436d312fca02fe2be0c30700ab34acf7edd9112", [ null, [ [ - "/css/CSS2/borders/border-right-color-140-ref.xht", + "/css/CSS2/css1/c532-bgcolor-000-ref.xht", "==" ] ], {} ] ], - "border-right-color-141.xht": [ - "3d04bb8263fea95278c33e190d95707550182212", + "c532-bgcolor-001.xht": [ + "8ea2987175de24ff41b08292ef261f383bef135f", [ null, [ [ - "/css/CSS2/borders/border-right-color-141-ref.xht", + "/css/CSS2/reference/ref-this-text-should-be-green.xht", "==" ] ], {} ] ], - "border-right-color-142.xht": [ - "013d4c42fcdd1c1bafbf2e885b3539d39d003e55", + "c533-bgimage-000.xht": [ + "1cfd5320b5f015d905887c44635112d454e43b29", [ null, [ [ - "/css/CSS2/borders/border-right-color-142-ref.xht", + "/css/CSS2/css1/c533-bgimage-000-ref.xht", "==" ] ], {} ] ], - "border-right-color-143.xht": [ - "1f5f9caf7803c34a06a320052fd5040f20def481", + "c533-bgimage-001.xht": [ + "8505c53044e07908826a1f92058d14cdb64fc883", [ null, [ [ - "/css/CSS2/borders/border-right-color-143-ref.xht", + "/css/CSS2/reference/ref-this-text-should-be-green.xht", "==" ] ], {} ] ], - "border-right-color-144.xht": [ - "0ed286552e0eced2915005f5ecafbcf90f72e3c8", + "c534-bgre-000.xht": [ + "cd546ba75a662efe09ce96d4db45d29127355877", [ null, [ [ - "/css/CSS2/borders/border-right-color-144-ref.xht", + "/css/CSS2/css1/c534-bgre-000-ref.xht", "==" ] ], {} ] ], - "border-right-color-145.xht": [ - "436fa7dde0856431076a880b5b9c70c6cbef2e31", + "c534-bgre-001.xht": [ + "9a93878fae904b1fb1b1dd3b42f757f7736e849d", [ null, [ [ - "/css/CSS2/borders/border-right-color-145-ref.xht", + "/css/CSS2/css1/c534-bgre-000-ref.xht", "==" ] ], {} ] ], - "border-right-color-174.xht": [ - "0e3bdb2e93a0469190147cdf047e5e2f7c669470", + "c534-bgreps-000.xht": [ + "5f22d22280e74fb1911174c81192ac2e496d3828", [ null, [ [ - "/css/CSS2/borders/border-left-color-174-ref.xht", + "/css/CSS2/css1/c534-bgreps-000-ref.xht", "==" ] ], {} ] ], - "border-right-color-175.xht": [ - "af3b77c473eb40074ec9c3d7011fbcba2e424e0b", + "c534-bgreps-001.xht": [ + "50dab70528ebd173663e4b7794fc58a213f684b3", [ null, [ [ - "/css/CSS2/borders/border-right-color-175-ref.xht", + "/css/CSS2/css1/c534-bgreps-000-ref.xht", "==" ] ], {} ] ], - "border-right-color-applies-to-001.xht": [ - "0584bb0715f073ea1b6161a111c768dc25e73cb8", + "c534-bgreps-002.xht": [ + "e424052214487b1af72b30abe8efdfaa2124cd8a", [ null, [ [ - "/css/CSS2/borders/border-left-applies-to-001-ref.xht", + "/css/CSS2/css1/c534-bgreps-000-ref.xht", "==" ] ], {} ] ], - "border-right-color-applies-to-002.xht": [ - "64b721a9e174d1bf2abeba6dde3addd80cb5af9e", + "c534-bgreps-003.xht": [ + "5653e9bfd9837c42e46b36c531c8a95a8d8d0ba6", [ null, [ [ - "/css/CSS2/borders/border-left-applies-to-001-ref.xht", + "/css/CSS2/css1/c534-bgreps-000-ref.xht", "==" ] ], {} ] ], - "border-right-color-applies-to-003.xht": [ - "2b974c1cc4837c6890ca8006f3e432bdd519d0c1", + "c534-bgreps-004.xht": [ + "4e92c2621ea670bcf3fee6ed1cb5144cbd587e5f", [ null, [ [ - "/css/CSS2/borders/border-left-applies-to-001-ref.xht", + "/css/CSS2/css1/c534-bgreps-000-ref.xht", "==" ] ], {} ] ], - "border-right-color-applies-to-004.xht": [ - "8b38a92c1c00cf4f149dea8e48330fca2c57155a", + "c534-bgreps-005.xht": [ + "1987859c395234e17635f57178183499fa411577", [ null, [ [ - "/css/CSS2/borders/border-left-applies-to-001-ref.xht", + "/css/CSS2/css1/c534-bgreps-000-ref.xht", "==" ] ], {} ] ], - "border-right-color-applies-to-005.xht": [ - "5f25b89ea7f677c625284dd0a448a54c8a77cc12", + "c536-bgpos-000.xht": [ + "0b8ec1f67de120533594967ca32c5838f8a0db52", [ null, [ [ - "/css/CSS2/borders/border-left-applies-to-001-ref.xht", + "/css/CSS2/css1/c536-bgpos-000-ref.xht", "==" ] ], {} ] ], - "border-right-color-applies-to-006.xht": [ - "df10cf2033276e3041830505dbecb38ec2550aff", + "c536-bgpos-001.xht": [ + "bec5a16db36eb34884daa0c2e696e4d4cd9a6e26", [ null, [ [ - "/css/CSS2/borders/border-left-applies-to-001-ref.xht", + "/css/CSS2/css1/c536-bgpos-001-ref.xht", "==" ] ], {} ] ], - "border-right-color-applies-to-007.xht": [ - "c598af5e6a13ff09d6688f38a1355a8984243714", + "c541-word-sp-000.xht": [ + "92130a1bb282d95459effa70aca1030ec1a1d8b4", [ null, [ [ - "/css/CSS2/borders/border-left-applies-to-001-ref.xht", + "/css/CSS2/css1/c541-word-sp-000-ref.xht", "==" ] ], {} ] ], - "border-right-color-applies-to-009.xht": [ - "8eed2a40543e7a587706c11ac5be9c5c2e9bb23b", + "c541-word-sp-001.xht": [ + "3287719b0a1e3abe987e97823109670c61d68ef2", [ null, [ [ - "/css/CSS2/borders/border-left-applies-to-001-ref.xht", + "/css/CSS2/css1/c541-word-sp-001-ref.xht", "==" ] ], {} ] ], - "border-right-color-applies-to-012.xht": [ - "e0698afcee64b83cf0146c66704233c5b973aba3", + "c542-letter-sp-000.xht": [ + "4fa5f81a3c9efe8f494c5037d5d11836099e8d55", [ null, [ [ - "/css/CSS2/borders/border-left-applies-to-001-ref.xht", + "/css/CSS2/css1/c542-letter-sp-000-ref.xht", "==" ] ], {} ] ], - "border-right-color-applies-to-013.xht": [ - "f04440cc1eaeb71537aa4a4a4785154cc7808a01", + "c542-letter-sp-001.xht": [ + "9c489e9067dabef8cbbcda9695096a1e6ea8f91b", [ null, [ [ - "/css/CSS2/borders/border-left-applies-to-001-ref.xht", + "/css/CSS2/css1/c542-letter-sp-001-ref.xht", "==" ] ], {} ] ], - "border-right-color-applies-to-014.xht": [ - "01e665ec40a95da17b0707f0c05add0d63575e6f", + "c544-valgn-001.xht": [ + "83ea2ef4157f4e1fa60a2bf73669985f134ab309", [ null, [ [ - "/css/CSS2/borders/border-left-applies-to-001-ref.xht", + "/css/CSS2/css1/c544-valgn-001-ref.xht", "==" ] ], {} ] ], - "border-right-color-applies-to-015.xht": [ - "a07ef69ce59885e3805ea0dcccfa241490b60391", + "c545-txttrans-000.xht": [ + "31f708335e1ffdd283a33946b4133d75bbb681ea", [ null, [ [ - "/css/CSS2/borders/border-left-applies-to-001-ref.xht", + "/css/CSS2/css1/c545-txttrans-000-ref.xht", "==" ] ], {} ] ], - "border-right-style-001.xht": [ - "03885260143d40d02f1bf7b4b13cba3f659f7a06", + "c547-indent-000.xht": [ + "1d4fb02c9f60fecba79ec28f627c8db688a7a2b8", [ null, [ [ - "/css/CSS2/reference/ref-nothing-below.xht", + "/css/CSS2/css1/c547-indent-000-ref.xht", "==" ] ], {} ] ], - "border-right-style-002.xht": [ - "5e4e179935be9e50f97510e15ccce6e283ae86c4", + "c547-indent-001.xht": [ + "ed58f887e76b97da591b0aca8993700df090c4e2", [ null, [ [ - "/css/CSS2/reference/ref-nothing-below.xht", + "/css/CSS2/css1/c547-indent-001-ref.xht", "==" ] ], {} ] ], - "border-right-style-005.xht": [ - "4f782cb285bf81b303db2c14a2c59120a2ed1b6e", + "c548-leadin-000.xht": [ + "79e41971df00e9abdfd36a6057ee3a7a458fea37", [ null, [ [ - "/css/CSS2/borders/border-right-style-005-ref.xht", + "/css/CSS2/css1/c548-leadin-000-ref.xht", "==" ] ], {} ] ], - "border-right-width-001.xht": [ - "3469082442c7b44e7833c25cd810abfe6b9eae41", + "c548-ln-ht-000.xht": [ + "9069d6be72e6715d9b526a093efd5ec5dc85adb1", [ null, [ [ - "/css/CSS2/borders/border-left-width-001-ref.xht", + "/css/CSS2/css1/c548-ln-ht-000-ref.xht", "==" ] ], {} ] ], - "border-right-width-002.xht": [ - "a24ec76dc1179c77f1b4bb25e9c4759589c99db1", + "c548-ln-ht-001.xht": [ + "21bd6ce58a4b205c509e0ebc3ced04a2bc5ae11f", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/css1/c548-ln-ht-001-ref.xht", "==" ] ], {} ] ], - "border-right-width-003.xht": [ - "d3f4ade0fe4891565b5fb8c864ff5d7e41f5d190", + "c548-ln-ht-002.xht": [ + "952453c1d51ce57a835bb5f5a0093f5bac86f42b", [ null, [ [ - "/css/CSS2/borders/border-left-width-003-ref.xht", + "/css/CSS2/css1/c548-ln-ht-001-ref.xht", "==" ] ], {} ] ], - "border-right-width-004.xht": [ - "d32791c783da238c13d2c55b810ab270d7fca136", + "c548-ln-ht-003.xht": [ + "174c5fa8e532b2760a3029ce7961ce8708bd7419", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/css1/c548-ln-ht-003-ref.xht", "==" ] ], {} ] ], - "border-right-width-005.xht": [ - "11e926fa45b7dca431701e2ff745c64c538206a8", + "c548-ln-ht-004.xht": [ + "3768c9e6598565a33128fd1247cd2556d9f819d5", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/css1/c548-ln-ht-004-ref.xht", "==" ] ], {} ] ], - "border-right-width-006.xht": [ - "63d4a83194c8ab360f484caaf68ba87d695d27f5", + "c5501-imrgn-t-000.xht": [ + "882ad4211a3233393bf4842964db3c79811dc8ca", [ null, [ [ - "/css/CSS2/borders/border-left-width-006-ref.xht", + "/css/CSS2/css1/c5501-imrgn-t-000-ref.xht", "==" ] ], {} ] ], - "border-right-width-007.xht": [ - "7f82ddd89f8a761f95e186ed03fef942ee89a505", + "c5501-mrgn-t-000.xht": [ + "3ec63a62a6da5a2b9abe7a25fcd257b19d81db25", [ null, [ [ - "/css/CSS2/borders/border-left-width-006-ref.xht", + "/css/CSS2/css1/c5501-mrgn-t-000-ref.xht", "==" ] ], {} ] ], - "border-right-width-012.xht": [ - "342203f15a4c771ba288cb5c663af50bceb830a4", + "c5502-imrgn-r-000.xht": [ + "68f1f1f15aef67bc0f91fcfb0fa2f80ed35d27c8", [ null, [ [ - "/css/CSS2/borders/border-left-width-001-ref.xht", + "/css/CSS2/css1/c5502-imrgn-r-000-ref.xht", "==" ] ], {} ] ], - "border-right-width-013.xht": [ - "a52fc420804f17cb2023d1e1653858ed7b0cf5d0", + "c5502-imrgn-r-001.xht": [ + "8c45fb55427700450f88b6cf44353c690e55dc10", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/css1/c5502-imrgn-r-001-ref.xht", "==" ] ], {} ] ], - "border-right-width-015.xht": [ - "f2198816dfa39b06351a0331be245a5786c8edf5", + "c5502-imrgn-r-002.xht": [ + "a65f5cfbff84879e7ff6793f50d20fed42617802", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/css1/c5502-imrgn-r-002-ref.xht", "==" ] ], {} ] ], - "border-right-width-016.xht": [ - "72661c44e960088a8eb71f7cbd9fd579fd78f2ff", + "c5502-imrgn-r-003.xht": [ + "795cdc4cf05f254846319c2645760d13abb47933", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/css1/c5502-imrgn-r-003-ref.xht", "==" ] ], {} ] ], - "border-right-width-017.xht": [ - "c9c1489daf2c9dba3ca28f76d1f3200bc4070678", + "c5502-imrgn-r-004.xht": [ + "56b2b6fcdd750ba608d5d29aed04b04b006c67c1", [ null, [ [ - "/css/CSS2/borders/border-left-width-006-ref.xht", + "/css/CSS2/css1/c5502-imrgn-r-004-ref.xht", "==" ] ], {} ] ], - "border-right-width-018.xht": [ - "94dc1cbc534f357886b34b8b3bfb4b7a8a6e72df", + "c5502-imrgn-r-005.xht": [ + "73f9f4135b38013d11790c18c0ef0ef818d616f3", [ null, [ [ - "/css/CSS2/borders/border-left-width-006-ref.xht", + "/css/CSS2/css1/c5502-imrgn-r-005-ref.xht", "==" ] ], {} ] ], - "border-right-width-023.xht": [ - "a6de68bb42da898d4cb05eeebec928416d27b10e", + "c5502-imrgn-r-006.xht": [ + "9e600359346c5e59bd45ceb7c2bdb1d43729e524", [ null, [ [ - "/css/CSS2/borders/border-left-width-001-ref.xht", + "/css/CSS2/css1/c5502-imrgn-r-006-ref.xht", "==" ] ], {} ] ], - "border-right-width-024.xht": [ - "9fd2cdeece5d69a14f5e7190d85a872d98a9f359", + "c5502-mrgn-r-000.xht": [ + "2fc45712dd663f39d470c78d8314e53008263cc0", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/css1/c5502-mrgn-r-000-ref.xht", "==" ] ], {} ] ], - "border-right-width-025.xht": [ - "05692680738d21d9c156368a64ae8ec5f3428456", + "c5502-mrgn-r-001.xht": [ + "8436101036859b90b0c1446329163d68d88247b0", [ null, [ [ - "/css/CSS2/borders/border-left-width-025-ref.xht", + "/css/CSS2/css1/c5502-mrgn-r-001-ref.xht", "==" ] ], {} ] ], - "border-right-width-026.xht": [ - "08ba61e17b02011de1b50be541030f07be9eadd6", + "c5502-mrgn-r-003.xht": [ + "087d5a3edd84b06bfc2ede7f64dde8d1f4466b40", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/css1/c5502-mrgn-r-003-ref.xht", "==" ] ], {} ] ], - "border-right-width-027.xht": [ - "0cc454778eec146905d613439db8b0795181b47d", + "c5503-imrgn-b-000.xht": [ + "f206087af21865bcf2ce8778de2cec0e247af9b3", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/css1/c5501-imrgn-t-000-ref.xht", "==" ] ], {} ] ], - "border-right-width-028.xht": [ - "4e0e18a6d39b19b806dcb0f449c40f20cffdb69a", + "c5503-mrgn-b-000.xht": [ + "8bd1a2a9ac8b883f16ae87e2bc91b3dc081886f5", [ null, [ [ - "/css/CSS2/borders/border-left-width-006-ref.xht", + "/css/CSS2/css1/c5503-mrgn-b-000-ref.xht", "==" ] ], {} ] ], - "border-right-width-029.xht": [ - "48e5fdd71120dc9ab8abc2ebf530983dd1850873", + "c5504-imrgn-l-000.xht": [ + "0ed52db0496727849981534bb30b4cb856683b4c", [ null, [ [ - "/css/CSS2/borders/border-left-width-006-ref.xht", + "/css/CSS2/css1/c5502-imrgn-r-000-ref.xht", "==" ] ], {} ] ], - "border-right-width-034.xht": [ - "4f9e87195d317a05a5d6ab563ea99368ecc3410b", + "c5504-imrgn-l-001.xht": [ + "a08e7dad71eeaa8db385011b63f85bc3aa660967", [ null, [ [ - "/css/CSS2/borders/border-left-width-001-ref.xht", + "/css/CSS2/css1/c5502-imrgn-r-001-ref.xht", "==" ] ], {} ] ], - "border-right-width-035.xht": [ - "36343f9a9da3e37f30336f566f433ad3443a7615", + "c5504-imrgn-l-002.xht": [ + "1a875f5c178d434b748a8419733b41eb09752d14", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/css1/c5504-imrgn-l-002-ref.xht", "==" ] ], {} ] ], - "border-right-width-037.xht": [ - "8979789c64b76f9d352461fed27d7b0cbe9eca32", + "c5504-imrgn-l-003.xht": [ + "36225165aa7ba628133de29096dfda8d00b5b821", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/css1/c5502-imrgn-r-003-ref.xht", "==" ] ], {} ] ], - "border-right-width-038.xht": [ - "9fb2c8eaad3e4630f40194c607615b7b08ebfcc6", + "c5504-imrgn-l-004.xht": [ + "633d3ae7dee6af371ac0c1f35531991660f5b8c8", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/css1/c5502-imrgn-r-004-ref.xht", "==" ] ], {} ] ], - "border-right-width-039.xht": [ - "6645aa14916dab671409ba4a08ebb76303a18838", + "c5504-imrgn-l-005.xht": [ + "0c19cbe20eb4d53c0ad0336e706411dc7a43a5ac", [ null, [ [ - "/css/CSS2/borders/border-left-width-006-ref.xht", + "/css/CSS2/css1/c5504-imrgn-l-005-ref.xht", "==" ] ], {} ] ], - "border-right-width-040.xht": [ - "c7ee6a0c62abb0cb5e55f8915733c1a8f3824374", + "c5504-imrgn-l-006.xht": [ + "c3e36451566aa73ddeb48d2133b572d2ed379117", [ null, [ [ - "/css/CSS2/borders/border-left-width-006-ref.xht", + "/css/CSS2/css1/c5504-imrgn-l-006-ref.xht", "==" ] ], {} ] ], - "border-right-width-045.xht": [ - "0e8449e97aa1f51a9481ea581f6da441638e612b", + "c5504-mrgn-l-000.xht": [ + "505e8a8426f6121bb3dfe064be232b3f166a84a1", [ null, [ [ - "/css/CSS2/borders/border-left-width-001-ref.xht", + "/css/CSS2/css1/c5504-mrgn-l-000-ref.xht", "==" ] ], {} ] ], - "border-right-width-046.xht": [ - "9c256043907883eaba6e48533fa2167bb8cdbe99", + "c5504-mrgn-l-001.xht": [ + "c005d30e58e319148de78457aabc99ff30ed374b", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/css1/c5504-mrgn-l-001-ref.xht", "==" ] ], {} ] ], - "border-right-width-048.xht": [ - "928bfa227d963dce4d53f1df4355618bfe0fa959", + "c5504-mrgn-l-003.xht": [ + "a64f480d06cf5aea3e6fe4260d3899590f3f556f", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/css1/c5504-mrgn-l-003-ref.xht", "==" ] ], {} ] ], - "border-right-width-049.xht": [ - "1087e7fb687bfb1dfbbe044b87023f622db69d80", + "c5505-imrgn-000.xht": [ + "8f735f89eed38368e6a4ee622fc4809f633f5738", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/css1/c5505-imrgn-000-ref.xht", "==" ] ], {} ] ], - "border-right-width-050.xht": [ - "e425ddb23d0995bb3f2f52c8c11246a571bf81d1", + "c5505-mrgn-000.xht": [ + "b40bcf222664be2a38128755eee5be8eadbca8be", [ null, [ [ - "/css/CSS2/borders/border-left-width-006-ref.xht", + "/css/CSS2/css1/c5505-mrgn-000-ref.xht", "==" ] ], {} ] ], - "border-right-width-051.xht": [ - "90c8b92dd3a1cd67129d8b41d32199baee9b02e7", + "c5505-mrgn-001.xht": [ + "1bb2bc69b48f03edf9b67e3c4d907c7633af31b8", [ null, [ [ - "/css/CSS2/borders/border-left-width-006-ref.xht", + "/css/CSS2/css1/c5505-mrgn-001-ref.xht", "==" ] ], {} ] ], - "border-right-width-056.xht": [ - "22821be3ae9a8da7141964b90062342a4e55098c", + "c5505-mrgn-003.xht": [ + "dfc6afd7cd7d7ba8b5b2fc5a5621d02a79c86d4e", [ null, [ [ - "/css/CSS2/borders/border-left-width-001-ref.xht", + "/css/CSS2/css1/c5505-mrgn-003-ref.xht", "==" ] ], {} ] ], - "border-right-width-057.xht": [ - "d9caf7146b145c83391df9367d3d1e941a7ca54a", + "c5506-ipadn-t-000.xht": [ + "9b3a7817e97bc1475b927fac27f994be14cac1d1", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/css1/c5506-ipadn-t-000-ref.xht", "==" ] ], {} ] ], - "border-right-width-058.xht": [ - "a733e72b117a74f9defa5fd43e1ffdfc640d8123", + "c5506-ipadn-t-001.xht": [ + "be11c9f66a29ed360488135d1aafb6b68899ed28", [ null, [ [ - "/css/CSS2/borders/border-left-width-006-ref.xht", + "/css/CSS2/css1/c5506-ipadn-t-000-ref.xht", "==" ] ], {} ] ], - "border-right-width-059.xht": [ - "66e329d128822726ea400a35bdf39d1c4c5858dc", + "c5506-ipadn-t-002.xht": [ + "9d85ce53b1beeed440b2400575183e30d0319481", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/css1/c5506-ipadn-t-002-ref.xht", "==" ] ], {} ] ], - "border-right-width-060.xht": [ - "843d235722b3e96e70decef4e5252a533efbf1bb", + "c5506-padn-t-000.xht": [ + "1364456b350fab5796e5fd52652e867ae10cd40d", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/css1/c5506-padn-t-000-ref.xht", "==" ] ], {} ] ], - "border-right-width-061.xht": [ - "f2f0aa82be2e2cff6d71c175cb073e6f2a0037dc", + "c5507-ipadn-r-000.xht": [ + "a51c63f2995700abaf112a666484cdd656db448a", [ null, [ [ - "/css/CSS2/borders/border-left-width-061-ref.xht", + "/css/CSS2/css1/c5502-imrgn-r-000-ref.xht", "==" ] ], {} ] ], - "border-right-width-062.xht": [ - "e86776eda249e3a4a5f12f73c77d4a7be44ef2c2", + "c5507-ipadn-r-001.xht": [ + "cb01ad37e3f01a404fdd38db839d7013cc1112c1", [ null, [ [ - "/css/CSS2/borders/border-left-width-061-ref.xht", + "/css/CSS2/css1/c5502-imrgn-r-001-ref.xht", "==" ] ], {} ] ], - "border-right-width-067.xht": [ - "ad524209b30d0f67cf74da78105657412a6016f6", + "c5507-ipadn-r-002.xht": [ + "c3bec3f3c037008003d0e1a79ddc181ed3913d09", [ null, [ [ - "/css/CSS2/borders/border-left-width-001-ref.xht", + "/css/CSS2/css1/c5502-imrgn-r-002-ref.xht", "==" ] ], {} ] ], - "border-right-width-068.xht": [ - "03d164cb34bd884925f6252779b543a87419c29c", + "c5507-ipadn-r-003.xht": [ + "9934a0925e8eff4f5adfcde84406745fcaa39c65", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/css1/c5502-imrgn-r-003-ref.xht", "==" ] ], {} ] ], - "border-right-width-069.xht": [ - "9b9dc1ec71787bd578c2efd525fa958c16248136", + "c5507-ipadn-r-004.xht": [ + "c00687437e1118a9b8b3fe56eea74211e0e1c733", [ null, [ [ - "/css/CSS2/borders/border-left-width-069-ref.xht", + "/css/CSS2/css1/c5507-ipadn-r-004-ref.xht", "==" ] ], {} ] ], - "border-right-width-070.xht": [ - "8877c5de1fbb1e7910f4d86aeffc18b0ead0e7bb", + "c5507-padn-r-000.xht": [ + "a9b9b0b07a124ed8b8c2dda7faad3a1f3af4e77a", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/css1/c5507-padn-r-000-ref.xht", "==" ] ], {} ] ], - "border-right-width-071.xht": [ - "df5c2861d744b7d3b2fdf27d2f093e0aa49f836c", + "c5507-padn-r-001.xht": [ + "57c4f025921a87d1525ee472be79ef699a84d364", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/css1/c5507-padn-r-001-ref.xht", "==" ] ], {} ] ], - "border-right-width-072.xht": [ - "9b9affd6b16916fad86f65926e1a13d1c5d3e4e4", + "c5507-padn-r-002.xht": [ + "4ee8a6da1fd9dfe76ccc7c0e2b8ec3b978c96a75", [ null, [ [ - "/css/CSS2/borders/border-left-width-072-ref.xht", + "/css/CSS2/css1/c5507-padn-r-002-ref.xht", "==" ] ], {} ] ], - "border-right-width-073.xht": [ - "df2a2617b958839d640c4ce11b004d5128874226", + "c5507-padn-r-003.xht": [ + "1348247c166cb56780f93568f29be890759c2cfc", [ null, [ [ - "/css/CSS2/borders/border-left-width-072-ref.xht", + "/css/CSS2/css1/c5507-padn-r-003-ref.xht", "==" ] ], {} ] ], - "border-right-width-078.xht": [ - "92c9fbdeeac76a3ddb20157391545086354c9411", + "c5508-ipadn-b-000.xht": [ + "62a4cdb85a64680fc541159810ee844f92a07617", [ null, [ [ - "/css/CSS2/borders/border-left-width-001-ref.xht", + "/css/CSS2/css1/c5508-ipadn-b-000-ref.xht", "==" ] ], {} ] ], - "border-right-width-079.xht": [ - "c83bca26b9cd45d29e503fff13a2a62a93f30b89", + "c5508-ipadn-b-001.xht": [ + "c3bf23518dc36b7f6232d253718a21de1cf20a15", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/css1/c5508-ipadn-b-000-ref.xht", "==" ] ], {} ] ], - "border-right-width-080.xht": [ - "79a2ad83541ea2744118bea13c77339623519502", + "c5508-ipadn-b-002.xht": [ + "aeae02259d46663feec319374f80e04e33702f75", [ null, [ [ - "/css/CSS2/borders/border-left-width-025-ref.xht", + "/css/CSS2/css1/c5506-ipadn-t-000-ref.xht", "==" ] ], {} ] ], - "border-right-width-081.xht": [ - "00e92b41fbc76f194432038ff995f0f0f5e53479", + "c5508-ipadn-b-003.xht": [ + "7c73a2c59f5b49cbb195b181436355cfc9f4f7eb", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/css1/c5508-ipadn-b-003-ref.xht", "==" ] ], {} ] ], - "border-right-width-082.xht": [ - "40fea86ff314beec8827ffe3247bbb8b4fd60557", + "c5509-ipadn-l-000.xht": [ + "51837e8d03d53760f9ac158a2e91cd4a356a4a7d", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/css1/c5502-imrgn-r-000-ref.xht", "==" ] ], {} ] ], - "border-right-width-083.xht": [ - "8b23ae9add4e07fc2e143414cc8b607ce3c773c4", + "c5509-ipadn-l-001.xht": [ + "f04d7236b0493371e46a1929cabff0b8085c86a6", [ null, [ [ - "/css/CSS2/borders/border-left-width-006-ref.xht", + "/css/CSS2/css1/c5502-imrgn-r-001-ref.xht", "==" ] ], {} ] ], - "border-right-width-084.xht": [ - "c5000a1d6e829f1a2c798095f09c0e071f4f110d", + "c5509-ipadn-l-002.xht": [ + "9570eb5d6ee572fee2da32d7691e2ac094ecdb35", [ null, [ [ - "/css/CSS2/borders/border-left-width-006-ref.xht", + "/css/CSS2/css1/c5504-imrgn-l-002-ref.xht", "==" ] ], {} ] ], - "border-right-width-089.xht": [ - "9010def205b4d1ba0a6c1268a94dc567bbc32459", + "c5509-ipadn-l-003.xht": [ + "d603b4964b07f6ad50bf66f8e9cfd68f54d7e831", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/css1/c5502-imrgn-r-003-ref.xht", "==" ] ], {} ] ], - "border-right-width-090.xht": [ - "24381d003b8ab07048caf062cc3872d38179bfd3", + "c5509-ipadn-l-004.xht": [ + "300814f6bbf072945dde1f9d2637a984797cffac", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/css1/c5509-ipadn-l-004-ref.xht", "==" ] ], {} ] ], - "border-right-width-091.xht": [ - "7afff86301e294e0eeb91e87d6e29b80630fd25c", + "c5509-padn-l-000.xht": [ + "0bce119d5e892263ec119d5692a6b9f824f0a08c", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/css1/c5507-padn-r-000-ref.xht", "==" ] ], {} ] ], - "border-right-width-095.xht": [ - "04e6ea9547f3a379f1e01bbebabe730f0925d18f", + "c5509-padn-l-001.xht": [ + "9f02d2e7b89aefecb961267ef94940c13d34a165", [ null, [ [ - "/css/CSS2/borders/border-right-width-095-ref.xht", + "/css/CSS2/css1/c5509-padn-l-001-ref.xht", "==" ] ], {} ] ], - "border-right-width-applies-to-001.xht": [ - "d3cda4a81466d612ac25e93b7017809540b113a3", + "c5509-padn-l-002.xht": [ + "17fabf4d9e39315cbbea709cb3cd8b4bd185a58e", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/css1/c5509-padn-l-002-ref.xht", "==" ] ], {} ] ], - "border-right-width-applies-to-002.xht": [ - "9d52ee5c5f0c9ddb4fd74cd7d1822ae64616d679", + "c5509-padn-l-003.xht": [ + "341f048913e2139aa97d5c8fa19187a965392811", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/css1/c5509-padn-l-003-ref.xht", "==" ] ], {} ] ], - "border-right-width-applies-to-003.xht": [ - "c03d2e5fd81d3b941219405c65192cffc116e780", + "c5510-ipadn-000.xht": [ + "3376a3f1f49e70803aabc58a188d45806bb3e80d", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/css1/c5510-ipadn-000-ref.xht", "==" ] ], {} ] ], - "border-right-width-applies-to-004.xht": [ - "4b5812a8efec7343f0a1adabaea73e9bef08ef14", + "c5510-padn-000.xht": [ + "72ba3fc9631c3e80eb1fc418d4790226d38c1af0", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/css1/c5510-padn-000-ref.xht", "==" ] ], {} ] ], - "border-right-width-applies-to-005.xht": [ - "6ba84ffde5b88a0c57e76910a9143f884c1f7c26", + "c5510-padn-001.xht": [ + "5b025c08698decbddf705f6d29b3b3ca226761fb", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/css1/c5510-padn-001-ref.xht", "==" ] ], {} ] ], - "border-right-width-applies-to-006.xht": [ - "cc0b59fca711e9f5cb1bd9eb2d7d1c21e5b07357", + "c5510-padn-002.xht": [ + "af2e9daaf14ebd454f40f91cdf9c7842cc5476d5", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/css1/c5510-padn-002-ref.xht", "==" ] ], {} ] ], - "border-right-width-applies-to-007.xht": [ - "c5934be7123f45dba54f236161bf5383d4df82f2", + "c5511-brdr-tw-001.xht": [ + "6985014c1ad15f5c32f728a710d932c3707a2344", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/css1/c5511-brdr-tw-001-ref.xht", "==" ] ], {} ] ], - "border-right-width-applies-to-009.xht": [ - "c90b6e13f08297b614b781410a67b71b14677db0", + "c5511-brdr-tw-002.xht": [ + "ed243c9fbe59221512b6fff581f77db22c0c12a5", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-right-width-applies-to-012.xht": [ - "2f47dfa83bead3df13635fc2d14caa1cbd9dda9c", + "c5511-brdr-tw-003.xht": [ + "4f8950098bdf7edb747f77c6fc8db126616a59e0", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/css1/c5511-brdr-tw-003-ref.xht", "==" ] ], {} ] ], - "border-right-width-applies-to-013.xht": [ - "cf87a3f3a4eda2ea864fe41066aca752d70e29f3", + "c5511-ibrdr-tw-000.xht": [ + "28b6c3d632c0e9c820b4a446976db8d7f20d2b74", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/css1/c5511-ibrdr-tw-000-ref.xht", "==" ] ], {} ] ], - "border-right-width-applies-to-014.xht": [ - "47114d7d66acdb28f5737057b3a686b8883ef5f7", + "c5512-brdr-rw-001.xht": [ + "4671ff3131e1cd15dff3692bef7d4b802ccb4d49", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/css1/c5512-brdr-rw-001-ref.xht", "==" ] ], {} ] ], - "border-right-width-applies-to-015.xht": [ - "cb782a04e662ffa43e1193d9c64e0a6e169f4bba", + "c5512-brdr-rw-002.xht": [ + "20e2ffe7dd7fc6c79efaa31a042c76180ca226a6", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-shorthands-001.xht": [ - "9fc94370cbe3ea77d2b9750ba5c702fd693f0af5", + "c5512-brdr-rw-003.xht": [ + "61de0155d85eeac8bc19e8d8c05c5912571ddb57", [ null, [ [ - "/css/CSS2/borders/border-shorthands-001-ref.xht", + "/css/CSS2/css1/c5512-brdr-rw-003-ref.xht", "==" ] ], {} ] ], - "border-shorthands-002.xht": [ - "45320df88c7b0ff1bfaefab31a9be269b5f93616", + "c5512-ibrdr-rw-000.xht": [ + "8267414f0c196437bb906131503e7f886901df74", [ null, [ [ - "/css/CSS2/borders/border-shorthands-001-ref.xht", + "/css/CSS2/css1/c5512-ibrdr-rw-000-ref.xht", "==" ] ], {} ] ], - "border-shorthands-003.xht": [ - "c88673000fc330f4668d64f22eb270bddbb0bf6b", + "c5513-brdr-bw-001.xht": [ + "7d25713eb055b939062d12e076fff8873f597a36", [ null, [ [ - "/css/CSS2/borders/border-shorthands-003-ref.xht", + "/css/CSS2/css1/c5513-brdr-bw-001-ref.xht", "==" ] ], {} ] ], - "border-style-applies-to-016.xht": [ - "e098bfcca8571a8bd53218a8c3a86c141f755c0c", + "c5513-brdr-bw-002.xht": [ + "b7dca34ca028380ceeeafcdb6177193f371da968", [ null, [ [ - "/css/CSS2/borders/border-conflict-style-101-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-style-applies-to-017.xht": [ - "0a6ac697c7a837a93f44a355a632f7c49794a4ec", + "c5513-brdr-bw-003.xht": [ + "f43c11afac0dc9a3e8b0327b078b127f25dc16e7", [ null, [ [ - "/css/CSS2/borders/border-conflict-style-101-ref.xht", + "/css/CSS2/css1/c5513-brdr-bw-003-ref.xht", "==" ] ], {} ] ], - "border-style-applies-to-018.xht": [ - "d84d187627147911204ef554a2b3789e2e8dbac4", + "c5513-ibrdr-bw-000.xht": [ + "a23278081980f10025c010879f82a9de1ddf7a07", [ null, [ [ - "/css/CSS2/borders/border-conflict-style-101-ref.xht", + "/css/CSS2/css1/c5513-ibrdr-bw-000-ref.xht", "==" ] ], {} ] ], - "border-style-applies-to-019.xht": [ - "3c60c91fb004bed3540cfc70bbd0b831b22bbec2", + "c5514-brdr-lw-001.xht": [ + "054fd2cb77463275d11f84175215f4fc9741ee62", [ null, [ [ - "/css/CSS2/borders/border-conflict-style-101-ref.xht", + "/css/CSS2/css1/c5514-brdr-lw-001-ref.xht", "==" ] ], {} ] ], - "border-style-applies-to-020.xht": [ - "6af0e6d95c034e9fa29d13bce4786e743821087d", + "c5514-brdr-lw-002.xht": [ + "916af8308058754fa2c575ce984c491123ac72f4", [ null, [ [ - "/css/CSS2/borders/border-conflict-style-101-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-style-applies-to-021.xht": [ - "cead7f762603483a20abccc376651bd6ab861c01", + "c5514-brdr-lw-003.xht": [ + "e63afac097839d05433eb7f85b3597fbe8139d4e", [ null, [ [ - "/css/CSS2/borders/border-conflict-style-101-ref.xht", + "/css/CSS2/css1/c5514-brdr-lw-003-ref.xht", "==" ] ], {} ] ], - "border-style-applies-to-022.xht": [ - "3429750a07c34facb5b5aebd1ea0805305c69914", + "c5514-ibrdr-lw-000.xht": [ + "e78533829b8a3ceeedc3da6149532b931a244796", [ null, [ [ - "/css/CSS2/borders/border-conflict-style-101-ref.xht", + "/css/CSS2/css1/c5514-ibrdr-lw-000-ref.xht", "==" ] ], {} ] ], - "border-style-applies-to-023.xht": [ - "f8c87e7ad83118989af10c803c42bd4ec4cc150f", + "c5515-brdr-w-001.xht": [ + "1a7210c6cc7634f1f0866aac0b0affbca85f0e40", [ null, [ [ - "/css/CSS2/borders/border-conflict-style-101-ref.xht", + "/css/CSS2/css1/c5515-brdr-w-001-ref.xht", "==" ] ], {} ] ], - "border-style-applies-to-024.xht": [ - "3d46c0dabc5493950944510687b4b5283b6955e6", + "c5515-brdr-w-002.xht": [ + "2b8c9d72b1d699204bcddec4b00ddcb6dc64a401", [ null, [ [ - "/css/CSS2/borders/border-conflict-style-101-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "border-style-applies-to-025.xht": [ - "d2f21c3c6cec223af9d0b57091987cb3b3c9ba0f", + "c5515-ibrdr-000.xht": [ + "bde0f4a71617569b2b5f59e20379e1302383ba87", [ null, [ [ - "/css/CSS2/borders/border-conflict-style-101-ref.xht", + "/css/CSS2/css1/c5515-ibrdr-000-ref.xht", "==" ] ], {} ] ], - "border-style-applies-to-026.xht": [ - "5295c13a5d0dd597522d1fc4f3fdfa39ab3235c9", + "c5516-brdr-c-000.xht": [ + "a21c5ea39c642ef518689908a78ce69b3b6a597a", [ null, [ [ - "/css/CSS2/borders/border-conflict-style-101-ref.xht", + "/css/CSS2/css1/c5516-brdr-c-000-ref.xht", "==" ] ], {} ] ], - "border-style-applies-to-027.xht": [ - "0f8692d03884db0f37e5264f862afc8274895d66", + "c5516-ibrdr-c-000.xht": [ + "c2001cb2b51022c26eaca8fb9f795f0412b2fd0f", [ null, [ [ - "/css/CSS2/borders/border-conflict-style-101-ref.xht", + "/css/CSS2/css1/c5516-ibrdr-c-000-ref.xht", "==" ] ], {} ] ], - "border-style-initial-001.xht": [ - "4ac676927cb6afea6061094a8554e88b7389cfc9", + "c5522-brdr-001.xht": [ + "54a4f4f253a123376d0317d7bce265807d0178d3", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/css1/c5522-brdr-001-ref.xht", "==" ] ], {} ] ], - "border-top-001.xht": [ - "26591d278977d0e89d2aba8107fdb365ac1c2855", + "c5525-fltblck-000.xht": [ + "f48ff0626ecd843d84e83b86b977f240e2146a90", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/css1/c5525-fltblck-000-ref.xht", "==" ] ], {} ] ], - "border-top-005.xht": [ - "52fcf8ac0fa76a20ed8f3f22264216e4753badce", + "c5525-fltinln-000.xht": [ + "47320f40218185c106559b9fe3375e79bd545e9e", [ null, [ [ - "/css/CSS2/borders/border-top-005-ref.xht", + "/css/CSS2/css1/c5525-fltinln-000-ref.xht", "==" ] ], {} ] ], - "border-top-006.xht": [ - "3ae3278d66fd4aefe9e7e4c476a048b2dd6e3d47", + "c5525-fltmrgn-000.xht": [ + "bc63cb0333493b7bb97703f846904d15cec0e23e", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/css1/c5525-fltmrgn-000-ref.xht", "==" ] ], {} ] ], - "border-top-008.xht": [ - "6a37fcac0b414b6c435f9c01995f463f9a648072", + "c5525-fltmult-000.xht": [ + "2faf77aefd17d5fae4c6cf18ac03474643dc933c", [ null, [ [ - "/css/CSS2/borders/border-top-005-ref.xht", + "/css/CSS2/css1/c5525-fltmult-000-ref.xht", "==" ] ], {} ] ], - "border-top-018.xht": [ - "004eb29e24c03814137e5b259d946d7ed4c1c242", + "c5525-fltwidth-001.xht": [ + "d875e2f74e36dd8b6c410070dc91330631b8df1c", [ null, [ [ - "/css/CSS2/borders/border-top-018-ref.xht", + "/css/CSS2/css1/c5525-fltwidth-001-ref.xht", "==" ] ], {} ] ], - "border-top-applies-to-001.xht": [ - "e0b5d96d4b5bb93aab2019f56a7e892418821996", + "c5525-fltwidth-003.xht": [ + "b1193857a05749c4e1e337d9cd37fd2cd005134f", [ null, [ [ - "/css/CSS2/borders/border-bottom-applies-to-001-ref.xht", + "/css/CSS2/css1/c5525-fltwidth-003-ref.xht", "==" ] ], {} ] ], - "border-top-applies-to-002.xht": [ - "fb26510e71a600a721237b069f72fbe482c7e933", + "c5526-fltclr-000.xht": [ + "4402f418a7a7693724e40bb5140aea046cda6dae", [ null, [ [ - "/css/CSS2/borders/border-bottom-applies-to-001-ref.xht", + "/css/CSS2/css1/c5526-fltclr-000-ref.xht", "==" ] ], {} ] ], - "border-top-applies-to-003.xht": [ - "a8b47758729281efa02c73fa10e1a99c4020094f", + "c561-list-displ-000.xht": [ + "5193beff7588fe8ec822147e26b8bc9a88063b7b", [ null, [ [ - "/css/CSS2/borders/border-bottom-applies-to-001-ref.xht", + "/css/CSS2/css1/c561-list-displ-000-ref.xht", "==" ] ], {} ] ], - "border-top-applies-to-004.xht": [ - "5e6c693e1188f940ffc9a72e36096a6f8a7f7d8d", + "c562-white-sp-000.xht": [ + "da9159ce9a7edaafdc0d543b0076d19ecac122c7", [ null, [ [ - "/css/CSS2/borders/border-bottom-applies-to-001-ref.xht", + "/css/CSS2/css1/c562-white-sp-000-ref.xht", "==" ] ], {} ] ], - "border-top-applies-to-005.xht": [ - "8cd91c58fe193ef75e9658da3c445115cacf953d", + "c563-list-type-000.xht": [ + "da7cb33751e5244a9aa29007d510fd1a977f6711", [ null, [ [ - "/css/CSS2/borders/border-bottom-applies-to-001-ref.xht", + "/css/CSS2/css1/c563-list-type-000-ref.xht", "==" ] ], {} ] ], - "border-top-applies-to-006.xht": [ - "4c2cca6645edab2e18a9d32aaa87ada91995a3b5", + "c61-ex-len-000.xht": [ + "052d99966548a6178fbf64bc1623f2756e58443e", [ null, [ [ - "/css/CSS2/borders/border-bottom-applies-to-001-ref.xht", + "/css/CSS2/css1/c61-ex-len-000-ref.xht", "==" ] ], {} ] ], - "border-top-applies-to-007.xht": [ - "860c4fa178356eda3e1a0e075efee9b04ec1d891", + "c61-rel-len-000.xht": [ + "85ec103d09e9f837296c2056a599f43aeeeb1d58", [ null, [ [ - "/css/CSS2/borders/border-bottom-applies-to-001-ref.xht", + "/css/CSS2/css1/c61-rel-len-000-ref.xht", "==" ] ], {} ] ], - "border-top-applies-to-009.xht": [ - "04c3110b4e39258504a70eb7baed0ccdd4a16df9", + "c62-percent-000.xht": [ + "bd3ae005422707065a09948401946d1f636b522b", [ null, [ [ - "/css/CSS2/borders/border-bottom-applies-to-001-ref.xht", + "/css/CSS2/css1/c62-percent-000-ref.xht", "==" ] ], {} ] ], - "border-top-applies-to-012.xht": [ - "db9ea7a28d12e996bfef9f106490be4e3562d159", + "c64-uri-000.xht": [ + "334c7bff0528493922ef150e835cec19b6c34dd5", [ null, [ [ - "/css/CSS2/borders/border-bottom-applies-to-001-ref.xht", + "/css/CSS2/css1/c64-uri-000-ref.xht", "==" ] ], {} ] ], - "border-top-applies-to-013.xht": [ - "b70e17ce4802d475f4fa83cae477cea6ff49a3b2", + "c71-fwd-parsing-000.xht": [ + "a3b69ed68e89d02dc72df61d8ace10af9b753067", [ null, [ [ - "/css/CSS2/borders/border-bottom-applies-to-001-ref.xht", + "/css/CSS2/css1/c71-fwd-parsing-000-ref.xht", "==" ] ], {} ] ], - "border-top-applies-to-014.xht": [ - "4d6a63839d80d8ebeb80f38399e29d43ba2854ce", + "c71-fwd-parsing-001.xht": [ + "69d32ec1fb2a17da0e0d22dc4ec0d1312dff872d", [ null, [ [ - "/css/CSS2/borders/border-bottom-applies-to-001-ref.xht", + "/css/CSS2/css1/c71-fwd-parsing-001-ref.xht", "==" ] ], {} ] ], - "border-top-applies-to-015.xht": [ - "954a219d71a80f0b8d15eebdb1eb5552122881ce", + "c71-fwd-parsing-002.xht": [ + "2384613e3335540d926c0e20e7c11e58d641c6b8", [ null, [ [ - "/css/CSS2/borders/border-bottom-applies-to-001-ref.xht", + "/css/CSS2/css1/c71-fwd-parsing-002-ref.xht", "==" ] ], {} ] ], - "border-top-color-001.xht": [ - "e6c57d190f321d117510a71b38ecd5097999719f", + "c71-fwd-parsing-003.xht": [ + "9d6a3e7b3e4882d8c19fb556cc26c42f8791be0c", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/CSS2/css1/c71-fwd-parsing-003-ref.xht", "==" ] ], {} ] ], - "border-top-color-002.xht": [ - "a0586e2303b6d97edd8cf0e34d0ffe77626d7233", + "c71-fwd-parsing-004.xht": [ + "ce65e30c6f5af2b246c06c55e650a476c6111abb", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/CSS2/css1/c71-fwd-parsing-004-ref.xht", "==" ] ], {} ] - ], - "border-top-color-003.xht": [ - "ed88dab192efc85d2dcdf9212e685532f138efe1", + ] + }, + "css21-errata": { + "s-11-1-1b-001.html": [ + "86f48dbc8cbb0de0df9cea491369aaf847f26ecc", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-003-ref.xht", + "/css/CSS2/css21-errata/s-11-1-1b-001-ref.html", "==" ] ], {} ] ], - "border-top-color-004.xht": [ - "1820e18d510dfae31cc780cb44c963b864f59506", + "s-11-1-1b-002.html": [ + "7ebccffca072f3b02dcf49d3c2aea913ac4fb026", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-004-ref.xht", + "/css/CSS2/css21-errata/s-11-1-1b-002-ref.html", "==" ] ], {} ] ], - "border-top-color-005.xht": [ - "a4b1cc954a1fca8d36f44f745714569b78a080cb", + "s-11-1-1b-003.html": [ + "5661287503c9304bcfdcb91332b111d9e4203f9f", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-005-ref.xht", + "/css/CSS2/css21-errata/s-11-1-1b-001-ref.html", "==" ] ], {} ] ], - "border-top-color-006.xht": [ - "20211f87c1b282f3d4998548cd1edbfc0efffe16", + "s-11-1-1b-004.html": [ + "bc0938815cc96e2b903e4c6379c2b98c428ace4a", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-006-ref.xht", + "/css/CSS2/css21-errata/s-11-1-1b-001-ref.html", "==" ] ], {} ] ], - "border-top-color-007.xht": [ - "09144da5d55704a96136378cb7025cddd9e2ed4c", + "s-11-1-1b-005.html": [ + "acf915ddf8cb8a2fb80ab1ef4448924b2c9c5e07", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/css21-errata/s-11-1-1b-005-ref.html", "==" ] ], {} ] ], - "border-top-color-008.xht": [ - "5276a60a68b92e695652d13e1e9cb9fb08e59caa", + "s-11-1-1b-006.html": [ + "be662d34852e1904809f55ec48edb75ffa46d13b", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/css21-errata/s-11-1-1b-005-ref.html", "==" ] ], {} ] ], - "border-top-color-009.xht": [ - "648ca024425f233935834b60f070d0f1b2ca5eff", + "s-11-1-1b-007.html": [ + "51e2f3c9d8046da26e4b75a35af6f467bb4686d7", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-009-ref.xht", + "/css/CSS2/css21-errata/s-11-1-1b-007-ref.html", "==" ] ], {} ] ], - "border-top-color-010.xht": [ - "06fbe25343b5a08541a2d792cf8e2f74acbef452", + "s-11-1-1b-008.html": [ + "bb31be92e52cee9b7bab4b894d60052d82d65d65", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-010-ref.xht", + "/css/CSS2/css21-errata/s-11-1-1b-001-ref.html", "==" ] ], {} ] ], - "border-top-color-011.xht": [ - "837515754c769580070c5ca2c9eacd5a2f5d248b", + "s-11-1-1b-009.html": [ + "ddca9c847f143c3fade185b926f48847b2acec0d", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-011-ref.xht", + "/css/CSS2/css21-errata/s-11-1-1b-001-ref.html", "==" ] ], {} ] - ], - "border-top-color-012.xht": [ - "32c361745e562970ba28bde8199dabc109962b3e", + ] + }, + "csswg-issues": { + "submitted": { + "css2.1": { + "abspos-non-replaced-width-margin-000.xht": [ + "4c4554b8dd09ce31fa3e7a9072a6d4b38603b844", + [ + null, + [ + [ + "/css/CSS2/csswg-issues/submitted/css2.1/abspos-non-replaced-width-margin-000-ref.xht", + "==" + ] + ], + {} + ] + ], + "abspos-replaced-width-margin-000.xht": [ + "f7b0f9c4da5325af4c1db9ea7cd887e042967645", + [ + null, + [ + [ + "/css/CSS2/csswg-issues/submitted/css2.1/abspos-replaced-width-margin-000-ref.xht", + "==" + ] + ], + {} + ] + ], + "anonymous-boxes-001.xht": [ + "12667338052c608cf1b52e3a5116e87621d7d908", + [ + null, + [ + [ + "/css/CSS2/csswg-issues/submitted/css2.1/reference/ref-green-box-100x100.xht", + "==" + ] + ], + {} + ] + ] + } + } + }, + "floats": { + "adjoining-floats-dynamic.html": [ + "3446d972d72ec8832ab8ac320a84dff609676ae3", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-012-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-top-color-013.xht": [ - "c7cd936db3cb0dbeb20a65822b807e9e13531078", + "block-in-inline-become-float.html": [ + "2a415e18380fb022403b7b721a9fe0138082b783", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-top-color-014.xht": [ - "a0564b695abf19cc1b42584758ac560e4149b651", + "float-in-inline-anonymous-block-with-overflow-hidden.html": [ + "948394e7f9b348c72a13cc64f4852a988b2fa59c", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-014-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-top-color-015.xht": [ - "f58d07b3af7bd44c5218394fbea0829426d6dfc0", + "float-in-nested-multicol-001.html": [ + "8e1a257e389d0fdc6a4a69f63b81f32378a7b944", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-015-ref.xht", - "==" + "/css/reference/blank.html", + "!=" ] ], {} ] ], - "border-top-color-016.xht": [ - "44faf8054aec8790b2a419c7f480103cd463b83e", + "float-no-content-beside-001.html": [ + "f073453ecaf5a884ed11606d05b1b5066f2e50e3", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-016-ref.xht", + "/css/CSS2/floats/float-no-content-beside-001-ref.html", "==" ] ], {} ] ], - "border-top-color-017.xht": [ - "d3432b22dde4b6314963df45a9c7d8c4d54d759f", + "float-nowrap-1.html": [ + "656b9398e6b771b5cf0545a1a40bcb36a115301b", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-017-ref.xht", - "==" + "/css/CSS2/floats/float-nowrap-1-notref.html", + "!=" ] ], {} ] ], - "border-top-color-018.xht": [ - "74b580fc8016f5cdc9ab775511ad9845cb228d3b", + "float-nowrap-2.html": [ + "fc8e11fadc5e66bc49bbddea99aeed0c4019bec0", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/floats/float-nowrap-1.html", "==" ] ], {} ] ], - "border-top-color-019.xht": [ - "32f13db98d8a52cc94dc8e1ea0ba227b84475984", + "float-nowrap-3-ref.html": [ + "e7556a213662453f22cdcbee2adf3b21e00d6ce6", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-019-ref.xht", - "==" + "/css/CSS2/floats/float-nowrap-4.html", + "!=" ] ], {} ] ], - "border-top-color-020.xht": [ - "a94c07437b13ae8cf3d4bc808a268144a6fa68cc", + "float-nowrap-3.html": [ + "dbc643c8ca97230ab252769b4278065aec844160", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-020-ref.xht", + "/css/CSS2/floats/float-nowrap-3-ref.html", "==" ] ], {} ] ], - "border-top-color-021.xht": [ - "cd69045349066062cc5ed3211e1944cd78a7cdbc", + "float-nowrap-4.html": [ + "c7b5f8801c9fd26ef204cfd171d7592c9943fd00", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-021-ref.xht", + "/css/CSS2/floats/float-nowrap-4-ref.html", + "==" + ], + [ + "/css/CSS2/floats/float-nowrap-4-ref2.html", "==" ] ], {} ] ], - "border-top-color-022.xht": [ - "ad05d5ed864dacad88ccbf96b05e0269b6d8ce47", + "float-nowrap-5.html": [ + "f4403cfb838126b726ef70906d2f8df7bb733f48", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-022-ref.xht", + "/css/CSS2/floats/float-nowrap-5-ref.html", "==" ] ], {} ] ], - "border-top-color-023.xht": [ - "3d4f1f38dd16d00a7177480b7042ae83a4cc34b3", + "float-nowrap-6.html": [ + "7c6bf9c0db6a112e364760b3320dcff3265be5c8", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/floats/float-nowrap-5-ref.html", "==" ] ], {} ] ], - "border-top-color-024.xht": [ - "1785a0e0980ce620ee1c13093acc4c3c883fe203", + "float-nowrap-7.html": [ + "bef462d995608e13ae943329022220c55a1f315e", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/floats/float-nowrap-1.html", "==" ] ], {} ] ], - "border-top-color-025.xht": [ - "bf57265d28152ee1a9d96f179e7a26227d4056d9", + "float-nowrap-8.html": [ + "8c2653193d643a452a416f9e41eb8d8397ab0058", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/CSS2/floats/float-nowrap-1.html", "==" ] ], {} ] ], - "border-top-color-026.xht": [ - "3328cdfcbb5f8753770bf8a647da5554c9633ea7", + "float-nowrap-9.html": [ + "b4a6b2923097f9f9957d940db42d335b22e73def", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-026-ref.xht", + "/css/CSS2/floats/float-nowrap-3-ref.html", "==" ] ], {} ] ], - "border-top-color-027.xht": [ - "3c1e3ef1c57af0f6182ae5712c447e0528fb535c", + "float-nowrap-hyphen-rewind-1.html": [ + "9c629ef2872838bad74623f8ed8750e180a5a3c2", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-027-ref.xht", + "/css/CSS2/floats/float-nowrap-hyphen-rewind-1-ref.html", + "==" + ], + [ + "/css/CSS2/floats/float-nowrap-hyphen-rewind-1-ref2.html", "==" ] ], {} ] ], - "border-top-color-028.xht": [ - "f5a401490d013b0d357fda1ea7d98c2620a6c83e", + "float-paint-relayout.html": [ + "0499e3e9a260b069adec05f1abc66feccc178bcc", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-028-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-top-color-029.xht": [ - "82c77779d37043dfa94e421c501dd4fbe31411b9", + "float-root.html": [ + "944ae7ad5f46296d1ce65088421e25b79eed40af", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-006-ref.xht", + "/css/CSS2/floats/float-root-ref.html", "==" ] ], {} ] ], - "border-top-color-030.xht": [ - "260ba20f0c2809867bde980870cf68cffab87c79", + "float-table-align-left-quirk.html": [ + "60e219078a046209ed6bc20ce80d0fb22587b28d", [ null, [ [ - "/css/CSS2/reference/ref-transparent-or-black-square-black.xht", - "==" - ], - [ - "/css/CSS2/reference/ref-transparent-or-black-square-transparent.xht", + "/css/CSS2/floats/float-table-align-left-quirk-ref.html", "==" ] ], {} ] ], - "border-top-color-031.xht": [ - "7473b23a618e7779dae372cfa0323bba70978b8e", + "float-under-flatten-under-preserve-3d.html": [ + "18b6bbc122a5a67ced5a93fc0a00fec10d113ba2", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-top-color-032.xht": [ - "be58b93222f9ea66e0d461897964ed2085ad1f10", + "float-with-absolutely-positioned-child-with-static-inset.html": [ + "7d022306a861e8be7635bb2d0a8d7db60ba147c9", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-032-ref.xht", + "/css/CSS2/floats/float-with-absolutely-positioned-child-with-static-inset-ref.html", "==" ] ], {} ] ], - "border-top-color-033.xht": [ - "4769d075b531f6984df955cf2561ccbe52c54c24", + "floated-table-wider-than-specified.html": [ + "f93d50e43dd3eb49d5c8964200b7fe4ebb5bd6c8", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-010-ref.xht", + "/css/reference/ref-filled-green-200px-square.html", "==" ] ], {} ] ], - "border-top-color-034.xht": [ - "f7a6214c4e86a841c4e5581a3c60f1b4796f799d", + "floats-in-table-caption-001.html": [ + "a1dc7e9d525204a6d762f982c5553a47692654d8", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-034-ref.xht", + "/css/CSS2/floats/floats-in-table-caption-001-ref.html", "==" ] ], {} ] ], - "border-top-color-035.xht": [ - "906a8fecc461c75e57b54e840e8fb89bdfcfd9cd", + "floats-line-wrap-shifted-001.html": [ + "5eb1a8f2b14da34a7a853d4f1863c4c1b10a94ac", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-012-ref.xht", + "/css/CSS2/floats/floats-line-wrap-shifted-001-ref.html", "==" ] ], {} ] ], - "border-top-color-036.xht": [ - "d5e1636a48f4d8fff82483990644c1876e784973", + "floats-placement-001.html": [ + "f02213474459f0d89518a956b07426707cafe346", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-top-color-037.xht": [ - "72e4cf8e81c597f7cee08a9460ced8e820b27622", + "floats-placement-002.html": [ + "871775901ea50b530b8509269471d52c00fefd3f", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-037-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-top-color-038.xht": [ - "be42ca45f69366bc28ef8e9e45354c23e67173af", + "floats-placement-003.html": [ + "47509172c9f69c11d80ba4d2883348128dbeaa16", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-038-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-top-color-039.xht": [ - "85ffdd2ad641c343fb230a4a5daad1be58b6d8a8", + "floats-placement-004.html": [ + "bbfc9196c867206bef20bc9e16a79325c7b77ab0", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-039-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-top-color-040.xht": [ - "75c8eedbef875ebc36ab4deecefe41954037a4c4", + "floats-placement-005.html": [ + "e224a6b773bc09a18b127a467c4b4685c45115fc", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-017-ref.xht", + "/css/CSS2/floats/floats-placement-005-ref.html", "==" ] ], {} ] ], - "border-top-color-041.xht": [ - "7747250d40b587bb35409837c8b88b436b57ef41", + "floats-placement-006.html": [ + "038e40848afd5ec8e59984882bb1b37b621f812f", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-top-color-042.xht": [ - "d8427077ff5fba5e74a4326e83c918f73e252893", + "floats-placement-007.html": [ + "d7e3ef685fc25984c1590eb437e81fd9575aaae3", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-042-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-top-color-043.xht": [ - "e880ebe9236a29aaf8a290b12a7682f0046bbcaa", + "floats-placement-008.html": [ + "90d919dddc105648b917ceba39082229996e7530", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-020-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-top-color-044.xht": [ - "e4777694d87cd6c70c63c21f6e47ce94243b42c3", + "floats-placement-vertical-001a.xht": [ + "61815e9ad37198b14ff4327185d9274b357b33de", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-044-ref.xht", + "/css/CSS2/floats/floats-placement-vertical-001-ref.xht", "==" ] ], {} ] ], - "border-top-color-045.xht": [ - "22781787d07ea660e45681af4086f3a0fc521dca", + "floats-placement-vertical-001b.xht": [ + "8a2e7247b2e817952c9fd940472cd96f1bb8869c", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-022-ref.xht", + "/css/CSS2/floats/floats-placement-vertical-001-ref.xht", "==" ] ], {} ] ], - "border-top-color-046.xht": [ - "6cbb483aab0e2a977e44fbcbddd1bb2a565a0fd9", + "floats-placement-vertical-001c.xht": [ + "2784c590275dfca7a0f01fb78eb4822d000e7181", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/floats/floats-placement-vertical-001-ref.xht", "==" ] ], {} ] ], - "border-top-color-047.xht": [ - "b8c46a7c3984a21c9ec65a36ec2b659eb4e0ff3e", + "floats-placement-vertical-003.xht": [ + "9c4ea527401d3e33cb3f5e7d54cafb408983778d", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/CSS2/floats/floats-placement-vertical-003-ref.xht", "==" ] ], {} ] ], - "border-top-color-048.xht": [ - "97fac87bcfca460dea5ef380151f2f383cbd9969", + "floats-placement-vertical-004-ref.xht": [ + "9e2cd4682e1c5dacc46009da0590e48a46e9fa1b", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/CSS2/floats/floats-placement-vertical-004-ref2.xht", "==" ] ], {} ] ], - "border-top-color-049.xht": [ - "b2504d2f14f35d49eaacffdad1799ae20b87ee4b", + "floats-placement-vertical-004-ref2.xht": [ + "97b26306dec41f07be8225eef98e7dc86b27a95b", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-049-ref.xht", + "/css/CSS2/floats/floats-placement-vertical-004-ref.xht", "==" ] ], {} ] ], - "border-top-color-050.xht": [ - "864b6131f6d1486794a4a502376a43a2d74a1a6b", + "floats-placement-vertical-004.xht": [ + "143cca2e0760a89c0ae962d1f99e230e6e9d7c13", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/CSS2/floats/floats-placement-vertical-004-ref.xht", "==" ] ], {} ] ], - "border-top-color-051.xht": [ - "ed5b7e59cfdc9fcadf2c76222d58c830f3fed75a", + "floats-rule3-outside-left-001.xht": [ + "9c63c0ebdda83bbdf7c23576508f63237bfe066f", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/CSS2/floats/floats-rule3-outside-left-001-ref.xht", "==" ] ], {} ] ], - "border-top-color-052.xht": [ - "c762d23b099775b153c4393dbcd917278143a114", + "floats-rule3-outside-left-002.xht": [ + "053251a3d249b293c02af60d410b91b181a3c7f3", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-052-ref.xht", + "/css/CSS2/floats/floats-rule3-outside-left-002-ref.xht", "==" ] ], {} ] ], - "border-top-color-053.xht": [ - "df03a90f13df96b760268efb600c25b17897d151", + "floats-rule3-outside-right-001.xht": [ + "47c2e66868efb8f50d412bf56dd36c70b9175914", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-052-ref.xht", + "/css/CSS2/floats/floats-rule3-outside-right-001-ref.xht", "==" ] ], {} ] ], - "border-top-color-054.xht": [ - "26fabdbf1c2792b032b46108b770119105ca23a6", + "floats-rule3-outside-right-002.xht": [ + "ff8552de68fd2045c7e37db2eba21be68053cd37", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-054-ref.xht", + "/css/CSS2/floats/floats-rule3-outside-right-002-ref.xht", "==" ] ], {} ] ], - "border-top-color-055.xht": [ - "2e7d05c681f58e11396dad1a625b85e57332fb9d", + "floats-rule7-outside-left-001.xht": [ + "d0fb1c730a7f58a5c6056dbffe5fe75605ff4f5d", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-006-ref.xht", + "/css/CSS2/floats/floats-rule7-outside-left-001-ref.xht", "==" ] ], {} ] ], - "border-top-color-056.xht": [ - "346f51e84a51fbd892970d89d197863f87ed1b66", + "floats-rule7-outside-right-001.xht": [ + "fd8cff64979f7c32341dfd18544b1bce5f8e7335", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-006-ref.xht", + "/css/CSS2/floats/floats-rule7-outside-right-001-ref.xht", "==" ] ], {} ] ], - "border-top-color-057.xht": [ - "b4ddb791b84fec3cfb59a651c0e8f46f57571e88", + "floats-wrap-bfc-001-left-overflow.xht": [ + "d99861b680a562589715b577668573a37e938001", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-006-ref.xht", + "/css/CSS2/floats/floats-wrap-bfc-001-left-overflow-ref.xht", "==" ] ], {} ] ], - "border-top-color-058.xht": [ - "2a7a298844ab6b78c999d6d4ca232efa9874e5b5", + "floats-wrap-bfc-001-left-table.xht": [ + "2bafffd85440ed17e40e317921d8b7e427e4d331", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/CSS2/floats/floats-wrap-bfc-001-left-table-ref.xht", "==" ] ], {} ] ], - "border-top-color-059.xht": [ - "76244e57cb35d81e5618986d6e1bef8a4feddefd", + "floats-wrap-bfc-001-right-overflow.xht": [ + "183bb78918eee93a37ee2686a58b1711267e6278", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/CSS2/floats/floats-wrap-bfc-001-right-overflow-ref.xht", "==" ] ], {} ] ], - "border-top-color-060.xht": [ - "bfb3102972c1c411013131cb7cd0baa1147a7fa9", + "floats-wrap-bfc-001-right-table.xht": [ + "c67193d3a321e20a2118caeb8a965a034d6e4614", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-003-ref.xht", + "/css/CSS2/floats/floats-wrap-bfc-001-right-table-ref.xht", "==" ] ], {} ] ], - "border-top-color-061.xht": [ - "40dd7763849c794966ce6ac973de35f4088bc98b", + "floats-wrap-bfc-002-left-overflow.xht": [ + "3cb59caa782eef63d6c9d38b16d0a659fb2d5980", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/CSS2/floats/floats-wrap-bfc-002-left-ref.xht", "==" ] ], {} ] ], - "border-top-color-062.xht": [ - "95994d2a706c02ff2733e871cdd82fe8d3e5cab1", + "floats-wrap-bfc-002-left-table.xht": [ + "9a7bfe68ddd4499387aed1d329096f6c2a20e50b", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/CSS2/floats/floats-wrap-bfc-002-left-ref.xht", "==" ] ], {} ] ], - "border-top-color-063.xht": [ - "c64dcdd633b1410e62c83fb3fa4a779b37a6e8cb", + "floats-wrap-bfc-002-right-overflow.xht": [ + "1ff4fa6a1ae06d473e3427b498a6334ce5329a70", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-063-ref.xht", + "/css/CSS2/floats/floats-wrap-bfc-002-right-ref.xht", "==" ] ], {} ] ], - "border-top-color-064.xht": [ - "815ea1b1666cebad96f6fa8c0602381f19188873", + "floats-wrap-bfc-002-right-table.xht": [ + "894287a0b7628db09d0ef6203b6b25c853d338ea", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-063-ref.xht", + "/css/CSS2/floats/floats-wrap-bfc-002-right-ref.xht", "==" ] ], {} ] ], - "border-top-color-065.xht": [ - "1678fe4bc1829f91f6a7525a3383e529bdbca357", + "floats-wrap-bfc-003-left-overflow.xht": [ + "1f6889c93d480a983c60a532fe300f000b614861", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-005-ref.xht", + "/css/CSS2/floats/floats-wrap-bfc-003-left-overflow-ref.xht", "==" ] ], {} ] ], - "border-top-color-066.xht": [ - "dbd5d2078007a988541876f7e3c7c84c08d60e8f", + "floats-wrap-bfc-003-left-table.xht": [ + "dcb6c04f14ce08160b96c93eb4640fe3fd78f761", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-006-ref.xht", + "/css/CSS2/floats/floats-wrap-bfc-003-left-table-ref.xht", "==" ] ], {} ] ], - "border-top-color-067.xht": [ - "c1d71320656b2c77ecb35667f036ca7149fb2a3c", + "floats-wrap-bfc-003-right-overflow.xht": [ + "fce87aef22e40ee7052fa6a1763186d15b9d777f", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-006-ref.xht", + "/css/CSS2/floats/floats-wrap-bfc-003-right-overflow-ref.xht", "==" ] ], {} ] ], - "border-top-color-068.xht": [ - "e156363fce7ee1a1098cc24042027ed459f86848", + "floats-wrap-bfc-003-right-table.xht": [ + "10fac3bd928c4d5d0fc967534240b824f1f264b1", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-006-ref.xht", + "/css/CSS2/floats/floats-wrap-bfc-003-right-table-ref.xht", "==" ] ], {} ] ], - "border-top-color-069.xht": [ - "16b97eb603f3050232c147b0d92c0693761b1eeb", + "floats-wrap-bfc-004.xht": [ + "39653b83ebbd15462b47edb98309d3434816b259", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/CSS2/floats/floats-wrap-bfc-004-ref.xht", "==" ] ], {} ] ], - "border-top-color-070.xht": [ - "89af64ed46fbcb17c275fa4c54b3cdc5c1fe5ce6", + "floats-wrap-bfc-005.xht": [ + "6122eb0fa2382d6ea45a00b1e4025b5de42e69ee", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-070-ref.xht", + "/css/CSS2/floats/floats-wrap-bfc-005-ref.xht", "==" ] ], {} ] ], - "border-top-color-071.xht": [ - "7702654314befcf10108f7e72fd716baf5e11cdb", + "floats-wrap-bfc-006.xht": [ + "4f302d6e6d00a1de492dd3a225904b9401de2d59", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/CSS2/floats/floats-wrap-bfc-006-ref.xht", "==" ] ], {} ] ], - "border-top-color-072.xht": [ - "5980426786946969cb9236072f64b40155c7fe08", + "floats-wrap-bfc-007.xht": [ + "77483b25d6fafd081376c8e25ac2623e9816687b", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/CSS2/floats/floats-wrap-bfc-007-ref.xht", "==" ] ], {} ] ], - "border-top-color-073.xht": [ - "2cad35940d645553ac2a033c76498ee3a2433035", + "floats-wrap-bfc-008.html": [ + "5da80756d5f00f19afca1c05af462cac3af62a67", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-073-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-top-color-074.xht": [ - "1930873282592386a734ede9c7e7b8968421f1a0", + "floats-wrap-bfc-outside-001.xht": [ + "5ba6a9750e7bafcb0a1fa1e5e420f337943a232a", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-073-ref.xht", + "/css/CSS2/floats/floats-wrap-bfc-outside-001-ref.xht", "==" ] ], {} ] ], - "border-top-color-075.xht": [ - "fe12a2630f0112af36995678d3e83f71cc4de50d", + "floats-wrap-bfc-with-margin-001.html": [ + "cc344f0fd580191af444b9d9ef2b469abd1a8fda", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-075-ref.xht", + "/css/CSS2/floats/floats-wrap-bfc-with-margin-001-ref.html", "==" ] ], {} ] ], - "border-top-color-076.xht": [ - "7bcb5816304a152890386987b10db80ff7155980", + "floats-wrap-bfc-with-margin-001a.tentative.html": [ + "9aa6b69ab7545a3a172d3d19d2ac4d6f0e52737b", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-012-ref.xht", + "/css/CSS2/floats/floats-wrap-bfc-with-margin-001-ref.html", "==" ] ], {} ] ], - "border-top-color-077.xht": [ - "c0efd26700df75f345bd2464937b528054707444", + "floats-wrap-bfc-with-margin-002.tentative.html": [ + "9c10f2cccf6a97d652d8b2db89a77cd5a9db3bb6", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-012-ref.xht", + "/css/CSS2/floats/floats-wrap-bfc-with-margin-002-ref.html", "==" ] ], {} ] ], - "border-top-color-078.xht": [ - "9e6751218efbbddb323a49a01174267040732269", + "floats-wrap-bfc-with-margin-003.tentative.html": [ + "f69a11002dd957cc03295844b7f7ae5f4e7263af", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-012-ref.xht", + "/css/CSS2/floats/floats-wrap-bfc-with-margin-003-ref.html", "==" ] ], {} ] ], - "border-top-color-079.xht": [ - "13e29bb0f3ca3d50549f005fd6cf4ee86a5b2d99", + "floats-wrap-bfc-with-margin-004.html": [ + "cab9e00087931f9b887efb767f2af29c4e7e91b2", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-top-color-080.xht": [ - "d623aa5cbb6151c81fdb941a094ed81ae9c3b9b5", + "floats-wrap-bfc-with-margin-005.html": [ + "5c0bc4f931a7374e525ed8fffd458c69009656ce", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-009-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-top-color-081.xht": [ - "4fa97584f8cb46633b223d4e3adc48d8f287e4e6", + "floats-wrap-bfc-with-margin-006.tentative.html": [ + "fa337713259eab84315012ee3a1f598014fa0cb8", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-top-color-082.xht": [ - "9e31b55dda5d2dde267dd5ac0b112b88a5da9dd6", + "floats-wrap-bfc-with-margin-007.tentative.html": [ + "552b3bc3dacd6b0ae9d8f1caae1ecde902efbdf1", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-top-color-083.xht": [ - "ef436507126aaf1b63d5c92d100dcf10284fbefb", + "floats-wrap-bfc-with-margin-008.tentative.html": [ + "34c0ee86113e9b818f2014fb49412b580a2b47ce", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-083-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-top-color-084.xht": [ - "0a0ebf0605a1d073240433e1a73766ee17b3cdc1", + "floats-wrap-bfc-with-margin-009.tentative.html": [ + "61db4b1fa3eaa9ebe5fa210d00c24d4cdaf24dec", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-083-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-top-color-085.xht": [ - "a9946411c0a11ea61669a7497fee4951f5551ee1", + "floats-wrap-bfc-with-margin-010.html": [ + "1cc9690602fd6b6beb383aef8a80e7ee8be926e3", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-011-ref.xht", + "/css/CSS2/floats/floats-wrap-bfc-with-margin-010-ref.html", "==" ] ], {} ] ], - "border-top-color-086.xht": [ - "8ccb35d35e47b30093311704ed8b7547b85f373f", + "floats-wrap-top-below-bfc-001l.xht": [ + "17bec33eb143ce14f13c439e83f433c3fef74fdd", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-012-ref.xht", + "/css/CSS2/floats/floats-wrap-top-below-001l-ref.xht", "==" + ], + [ + "/css/CSS2/floats/floats-wrap-top-below-001l-notref.xht", + "!=" ] ], {} ] ], - "border-top-color-087.xht": [ - "64212bda34cec9980da7f6dc192f5f48e4fd49d1", + "floats-wrap-top-below-bfc-001r.xht": [ + "65e6ca1b42c8c1a21b79950916464df713ac9c99", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-012-ref.xht", + "/css/CSS2/floats/floats-wrap-top-below-001r-ref.xht", "==" + ], + [ + "/css/CSS2/floats/floats-wrap-top-below-001r-notref.xht", + "!=" ] ], {} ] ], - "border-top-color-088.xht": [ - "d8d06a41cab8ef8f6459fde8cfacf06e05179025", + "floats-wrap-top-below-bfc-002l.xht": [ + "ab439ae3f6def62ab7f05479ef234853f0826d5d", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-012-ref.xht", + "/css/CSS2/floats/floats-wrap-top-below-002l-ref.xht", "==" ] ], {} ] ], - "border-top-color-089.xht": [ - "78e7a186ae26f3851f164c6b648dcc0450ce1845", + "floats-wrap-top-below-bfc-002r.xht": [ + "123e621cfeb35aea08e81dbb337775cedda9c098", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/CSS2/floats/floats-wrap-top-below-002r-ref.xht", "==" ] ], {} ] ], - "border-top-color-090.xht": [ - "fe013a42cb311230a52b38701592005c7c674394", + "floats-wrap-top-below-bfc-003l.xht": [ + "7386535c80a242df2f4685c022b7a1d2b4a9e932", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-090-ref.xht", + "/css/CSS2/floats/floats-wrap-top-below-003l-ref.xht", "==" ] ], {} ] ], - "border-top-color-091.xht": [ - "b590c99bfe4105d565ae59fe261d87cb76adb7b5", + "floats-wrap-top-below-bfc-003r.xht": [ + "1c1a517c3752e0f9c8d2c9ef661730badf90a099", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/CSS2/floats/floats-wrap-top-below-003r-ref.xht", "==" ] ], {} ] ], - "border-top-color-092.xht": [ - "2b065a14211da81914167bf1c2ea4586c7c95d48", + "floats-wrap-top-below-inline-001l.xht": [ + "bfa3f95c7dec7fa30eaef1b4a29fcfcf27e79915", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/CSS2/floats/floats-wrap-top-below-001l-ref.xht", "==" + ], + [ + "/css/CSS2/floats/floats-wrap-top-below-001l-notref.xht", + "!=" ] ], {} ] ], - "border-top-color-093.xht": [ - "62793e3588011d5c2b011c81774c866fadaf6e38", + "floats-wrap-top-below-inline-001r.xht": [ + "c0ee2cd2071d9888e6384808143d23046971b31c", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-093-ref.xht", + "/css/CSS2/floats/floats-wrap-top-below-001r-ref.xht", "==" + ], + [ + "/css/CSS2/floats/floats-wrap-top-below-001r-notref.xht", + "!=" ] ], {} ] ], - "border-top-color-094.xht": [ - "abdaab867a3e1f5f9db29991bcc792d458b03333", + "floats-wrap-top-below-inline-002l.xht": [ + "68a51e25b683995dd0492073b195e13ba0693002", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-093-ref.xht", + "/css/CSS2/floats/floats-wrap-top-below-002l-ref.xht", "==" ] ], {} ] ], - "border-top-color-095.xht": [ - "3e506b7f4f24608408fb0416290f247f4ea9b743", + "floats-wrap-top-below-inline-002r.xht": [ + "4dd653af74bd07db4768ca8ac4cb3290820849ae", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-095-ref.xht", + "/css/CSS2/floats/floats-wrap-top-below-002r-ref.xht", "==" ] ], {} ] ], - "border-top-color-096.xht": [ - "d404742575cba7b5db8f8ac084ca3de55219bd45", + "floats-wrap-top-below-inline-003l.xht": [ + "98d9b417add8382a064af3f7d3283e252f7141b6", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-017-ref.xht", + "/css/CSS2/floats/floats-wrap-top-below-003l-ref.xht", "==" ] ], {} ] ], - "border-top-color-097.xht": [ - "c9522e10c3f23e5f21b7e59db55e347f25986aab", + "floats-wrap-top-below-inline-003r.xht": [ + "1fb2633c722cc6ed848d6c1edfe2d5f5c263f0a1", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-017-ref.xht", + "/css/CSS2/floats/floats-wrap-top-below-003r-ref.xht", "==" ] ], {} ] ], - "border-top-color-098.xht": [ - "6e338aa63b1f13e517733957aae77e78f11095cc", + "floats-zero-height-wrap-001.xht": [ + "c748a32ad2b82e3ae3d806988aee7790e9a9e9cc", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-017-ref.xht", + "/css/CSS2/floats/floats-zero-height-wrap-001-ref.xht", "==" ] ], {} ] ], - "border-top-color-099.xht": [ - "0b293b1786ab3fab25ed10aacc4980ea2bbd6a17", + "floats-zero-height-wrap-002.xht": [ + "5a24f252720254a15515bba8921c313958853a3f", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/CSS2/floats/floats-zero-height-wrap-001-ref.xht", "==" ] ], {} ] ], - "border-top-color-100.xht": [ - "15a5c0db3b1cd4f0755a2a9318e4fd265741d1c7", + "intrinsic-size-float-and-line.html": [ + "060312454915307da67988ac52dc41e558479dd1", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-100-ref.xht", + "/css/reference/ref-filled-green-200px-square.html", "==" ] ], {} ] ], - "border-top-color-101.xht": [ - "3c177a1eff7d80b956a4785163d660952524f3b1", + "negative-block-margin-pushing-float-out-of-block-formatting-context.html": [ + "0ebe54c1904e0c2487ebe15c4d60e9e93672d859", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/CSS2/floats/negative-block-margin-pushing-float-out-of-block-formatting-context-ref.html", "==" ] ], {} ] ], - "border-top-color-102.xht": [ - "d47febcc06fca7c2b26d5448c802113ff3937b1c", + "negative-margin-float-positioning.html": [ + "8b4aef22f71f8695ebbc5b6dc83ad5639945618d", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "border-top-color-103.xht": [ - "0c5ca240b51c33a1377f89378b2f1105c6f608ea", + "new-fc-beside-adjoining-float-2.html": [ + "2d27a28a0533eece2ec6b1ee933028da8fb99c4f", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-103-ref.xht", + "/css/reference/ref-filled-green-200px-square.html", "==" ] ], {} ] ], - "border-top-color-104.xht": [ - "eece7594177827433584131a0359fed555cd2ea8", + "new-fc-beside-adjoining-float.html": [ + "91adbfce2d32ec1f46853b4af60b14c74468a842", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-103-ref.xht", + "/css/reference/ref-filled-green-200px-square.html", "==" ] ], {} ] ], - "border-top-color-105.xht": [ - "15d8940946843b84a54fc94ce63c970f76d46550", + "new-fc-beside-float-with-margin-rtl.html": [ + "5a564f7831c9c19ff7c464c676981c62a53c9a88", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-016-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-top-color-106.xht": [ - "a5ecaab7d6d7d0a71aee70aa4d590a3016a904c2", + "new-fc-beside-float-with-margin.html": [ + "ead8e548be95df87220881a8e66e5f3a47c93f9b", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-017-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-top-color-107.xht": [ - "06997f0fc516fa49da5c54fe72d17485e28cdc3f", + "new-fc-relayout.html": [ + "97d8b9a2ff1f3be8aeab2c26817e7542511c59cb", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-017-ref.xht", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "border-top-color-108.xht": [ - "cc32b636cffb3a624d97fe15a6f1c909f27924d1", + "new-fc-separates-from-float-2.html": [ + "fd0deab18e0ee8baf17764804825767b6c516c2c", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-017-ref.xht", + "/css/reference/ref-filled-green-200px-square.html", "==" ] ], {} ] ], - "border-top-color-109.xht": [ - "1652b30d6c765357e7f30ea9125445df05777f73", + "new-fc-separates-from-float-3.html": [ + "4c37be4ba2f4a96ae764c86cf8152517c38f204c", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-top-color-110.xht": [ - "e9b0dc220a1c135e7920327be16af4b9b7f3a8a3", + "new-fc-separates-from-float.html": [ + "89ee7516ecf22f895de3b8e88047d5b767fea96a", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-110-ref.xht", + "/css/reference/ref-filled-green-200px-square.html", "==" ] ], {} ] ], - "border-top-color-111.xht": [ - "a0dcfe07b7e765988c3da0b78fc3a102baa54f4e", + "overflow-scroll-float-paint-order.html": [ + "79ab770eec3bfb864c57c2a05a648114cff8ce45", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/CSS2/floats/overflow-scroll-float-paint-order-ref.html", "==" ] ], {} ] ], - "border-top-color-112.xht": [ - "5270285044de142ff310a2863a728855dcb96fee", + "overhanging-float-paint-order.html": [ + "6075d0a2c9812e7631bd8235adea7ea7ebbea800", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/CSS2/floats/overhanging-float-paint-order-ref.html", "==" ] ], {} ] ], - "border-top-color-113.xht": [ - "fe70f535d5ba80269be52d94f22a76458173e1c4", + "remove-block-between-inline-and-float.html": [ + "21235d550dc83532be86788294bcc891a81c4caa", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-113-ref.xht", + "/css/reference/ref-filled-green-200px-square.html", "==" ] ], {} ] ], - "border-top-color-114.xht": [ - "4983c20b9e32be7f0ad5958cceff469eadd20007", + "zero-available-space-float-positioning.html": [ + "62ace6daa036929b46a8e9c1cc516fda403b7131", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-113-ref.xht", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "border-top-color-115.xht": [ - "a81edd4a1950115243525609990dff27fec151b9", + "zero-width-floats-positioning.tentative.html": [ + "18f8f6e2046693faf5b46e107a2dd3fa3aca8558", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-115-ref.xht", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "border-top-color-116.xht": [ - "056b3d948fdf87fea16a3a9248763b314f6d57cb", + "zero-width-floats.html": [ + "affecab513217305903291accc3005cf60d81b69", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-022-ref.xht", + "/css/reference/ref-filled-green-200px-square.html", "==" ] ], {} ] - ], - "border-top-color-117.xht": [ - "64a0a73a8141ae55104ae1240999d38da85e8333", + ] + }, + "floats-clear": { + "adjacent-floats-001.xht": [ + "47bfd21ba9d66d8b1dff19024d94fc19df07cb39", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-022-ref.xht", + "/css/CSS2/floats-clear/adjacent-floats-001-ref.xht", "==" ] ], {} ] ], - "border-top-color-118.xht": [ - "ac5a7c6d68186eb374ba7d550aea5e4ae3d867c5", + "adjoining-float-before-clearance.html": [ + "13041a27496b19d58c2559bb6c99c4d71f9b08bd", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-022-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-top-color-119.xht": [ - "301c61535d6cfb879e225cf3f8a4bb0f42025e5f", + "adjoining-float-nested-forced-clearance-002.html": [ + "ed8ffd26fa61a77974babe15a23c87bcfd301588", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "border-top-color-120.xht": [ - "a39c1f0563f43e0d9ae5d17eec58f70d7c110bcb", + "adjoining-float-nested-forced-clearance-003.html": [ + "4c080d2b7fab684e3003ac6e01188087df75e646", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-019-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-top-color-121.xht": [ - "6777c26c02b665496f96cc3c3001cfd302c00993", + "adjoining-float-nested-forced-clearance-004.html": [ + "bda89a9f6fed366fe942e10f106b4264928ff268", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "border-top-color-122.xht": [ - "fb58975cac1817dcef5f81a82eaad44ceb5afe3e", + "adjoining-float-nested-forced-clearance.html": [ + "426b47537bf1069121c82dbbb8d4d034ff437244", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-top-color-123.xht": [ - "0bc975a10c0e214035d9ee7cf7df7a08cb720298", + "adjoining-float-new-fc.html": [ + "587bbf51b7da9a1d620f35e0b2ece720ddd4ee1e", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-123-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-top-color-124.xht": [ - "904193d04413d9dbf2ff9d77fdc11377878e8e05", + "clear-001.xht": [ + "e6922414284ec2e2c4961c9e684c2cb7135b4aea", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-123-ref.xht", + "/css/CSS2/floats-clear/clear-001-ref.xht", "==" ] ], {} ] ], - "border-top-color-125.xht": [ - "a3d4dcd1441d2830e086f7854f1da82b63a8cbc8", + "clear-002.xht": [ + "f64848f910d52d4a035162028362a26eb004f268", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-021-ref.xht", + "/css/CSS2/floats-clear/clear-002-ref.xht", "==" ] ], {} ] ], - "border-top-color-126.xht": [ - "a4ce60bac7a58fe6a1a24a2473692dc35cb78a48", + "clear-003.xht": [ + "7e5d19baa26f3cf136f58a28f876aa08497e2e9a", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-022-ref.xht", + "/css/CSS2/floats-clear/clear-003-ref.xht", "==" ] ], {} ] ], - "border-top-color-127.xht": [ - "e2962c0b04d0fd1525e6af65f224eec83eaee6e4", + "clear-004.xht": [ + "32ecd2a89786efa43fb66f6d6eee0b43e4b169b2", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-022-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-top-color-128.xht": [ - "5c6506c989e8cacda1ae541c9429cf1333465843", + "clear-005.xht": [ + "5298239a25ce6ef72449527fec4d7d8f212ffc6c", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-022-ref.xht", + "/css/CSS2/floats-clear/clear-001-ref.xht", "==" ] ], {} ] ], - "border-top-color-129.xht": [ - "d83c31d03c67652517eb893239be5a1dafefa484", + "clear-after-top-margin.html": [ + "95b445657cc4d79566f572b281093b4ee9752f4d", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-129-ref.xht", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "border-top-color-130.xht": [ - "467b4117ba573c5ddfb9d3d81df1c7af8e95888b", + "clear-applies-to-000.xht": [ + "7b7cb9e76d7577812c4c85806f077cc70f1813cc", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-001-ref.xht", + "/css/CSS2/floats-clear/clear-applies-to-000-ref.xht", "==" ] ], {} ] ], - "border-top-color-131.xht": [ - "fd43bab6271097cf980a033c1b7cedd9a255b026", + "clear-applies-to-001.xht": [ + "ff423f0bd59173cd1c23b0d4156a5d9338543b43", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-131-ref.xht", + "/css/CSS2/floats-clear/clear-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-top-color-132.xht": [ - "dabc5cc564f5a872bd05a4509ce4174b4f2b0d03", + "clear-applies-to-002.xht": [ + "4ecd5cdb8dfd711f78772e6a7f03efd5b2b90a0f", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-132-ref.xht", + "/css/CSS2/floats-clear/clear-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-top-color-133.xht": [ - "3ede926a92444d50e8438cbd70163f8b550fd7b0", + "clear-applies-to-003.xht": [ + "8372b314daf8c51304351f7ee1c81f489c36b60c", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-133-ref.xht", + "/css/CSS2/floats-clear/clear-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-top-color-134.xht": [ - "32586f2eff3a6964316e675182d530f2de21a265", + "clear-applies-to-004.xht": [ + "ce773dc5da7df0550cc07e8bc72463c54a3cd844", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-134-ref.xht", + "/css/CSS2/floats-clear/clear-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-top-color-135.xht": [ - "44b64f6346d82c52c25708a1a96815f0e7727a1a", + "clear-applies-to-005.xht": [ + "c155bbf57b96bf297d8ec74147ff466063f99943", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-135-ref.xht", + "/css/CSS2/floats-clear/clear-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-top-color-136.xht": [ - "5e03740f464bf46d2a34f1cf73282047b5f6ece1", + "clear-applies-to-006.xht": [ + "ea2027ff6afca6ec9aaf464f6c040a079bbd9bf3", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-136-ref.xht", + "/css/CSS2/floats-clear/clear-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-top-color-137.xht": [ - "175ca69e95ebabaf84958e233ed2c80080f7c2cf", + "clear-applies-to-007.xht": [ + "a15268b53c7b7cc82299a46c6485b7d05b653c3c", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-137-ref.xht", + "/css/CSS2/floats-clear/clear-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-top-color-138.xht": [ - "853b02e354e2dd4085149d5c05d56335749d975b", + "clear-applies-to-008.xht": [ + "1ff09c6cc198eaab4d5a278b70982c00a6f1d41e", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-138-ref.xht", + "/css/CSS2/floats-clear/clear-applies-to-008-ref.xht", "==" ] ], {} ] ], - "border-top-color-139.xht": [ - "b78baedf5a76a4c046d6b1293b40f2fb4275bac7", + "clear-applies-to-009.xht": [ + "d9facbeedd1a5fd3a94ba9c263026c98ca92169b", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-139-ref.xht", + "/css/CSS2/floats-clear/clear-applies-to-009-ref.xht", "==" ] ], {} ] ], - "border-top-color-140.xht": [ - "d738cfc4463044d3dd69c847448861eb3fffa118", + "clear-applies-to-012.xht": [ + "a1d2a032a8602c59589fb099c478a6982c48db18", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-140-ref.xht", + "/css/CSS2/floats-clear/clear-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-top-color-141.xht": [ - "6b9d0339de57e1629dcc64ae2e0da8dc8a0ca553", + "clear-applies-to-013.xht": [ + "ec65a778f80a73e3995c9146d3ae58376fe49322", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-141-ref.xht", + "/css/CSS2/floats-clear/clear-applies-to-009-ref.xht", "==" ] ], {} ] ], - "border-top-color-142.xht": [ - "ba90093fd975bb5397da3121cdd1f10e83a6465e", + "clear-applies-to-014.xht": [ + "5844658e1a11e8485139df2637c087b89a0651d7", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-142-ref.xht", + "/css/CSS2/floats-clear/clear-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-top-color-143.xht": [ - "a6b9a3901fafc90f62905ee853830932eb52bcf9", + "clear-applies-to-015.xht": [ + "591fd95506ef5adaf2f45e1ac0bc30aa714c6ada", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-143-ref.xht", + "/css/CSS2/floats-clear/clear-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-top-color-144.xht": [ - "589c6c46676320e6bad600a7ffed60623e226b13", + "clear-clearance-calculation-001.xht": [ + "e3df4575555e22e23b308f29cbbba8207747a58f", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-144-ref.xht", + "/css/CSS2/floats-clear/clear-clearance-calculation-001-ref.xht", "==" ] ], {} ] ], - "border-top-color-145.xht": [ - "04f2aea55cc899f61ac1ba97653b43875a213d9e", + "clear-clearance-calculation-002.xht": [ + "3ec8887a526c77a939cad8eee4c8c98470772542", [ null, [ [ - "/css/CSS2/borders/border-bottom-color-145-ref.xht", + "/css/CSS2/floats-clear/clear-clearance-calculation-002-ref.xht", "==" ] ], {} ] ], - "border-top-color-174.xht": [ - "fa51cad8412f3b50c03225333be7dd8c2880e31a", + "clear-clearance-calculation-003.xht": [ + "79362e199d6ba8808c77f23a50b31ccbfc6f0f15", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/floats-clear/clear-clearance-calculation-003-ref.xht", "==" ] ], {} ] ], - "border-top-color-175.xht": [ - "61bc99e16a29455c6ea1d1b561936e9dd2782910", + "clear-clearance-calculation-004.xht": [ + "945dfd99da9274a18f863dde12b53924f21c4bed", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/floats-clear/clear-clearance-calculation-004-ref.xht", "==" ] ], {} ] ], - "border-top-color-applies-to-001.xht": [ - "1baa664f426f79a7b5ae372fd7d2391d39f720ae", + "clear-clearance-calculation-005.xht": [ + "5d1416c9d0f96fd603077d1dd813d0b0d3cc6377", [ null, [ [ - "/css/CSS2/borders/border-bottom-applies-to-001-ref.xht", + "/css/CSS2/floats-clear/clear-clearance-calculation-005-ref.xht", "==" ] ], {} ] ], - "border-top-color-applies-to-002.xht": [ - "438ddfa73a75f1e3419c4acfe9ee78b4a9440319", + "clear-default-inheritance-001.xht": [ + "57064dccd0313bf3a9ef72d67fa97fa3837920b4", [ null, [ [ - "/css/CSS2/borders/border-bottom-applies-to-001-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-top-color-applies-to-003.xht": [ - "4fa1619c699721bbcf4adc2a4d0fd3e26c424796", + "clear-float-001.xht": [ + "436ff4b0b56eca3b10ecc5f79426482a9bd183ee", [ null, [ [ - "/css/CSS2/borders/border-bottom-applies-to-001-ref.xht", + "/css/CSS2/floats-clear/clear-float-001-ref.xht", "==" ] ], {} ] ], - "border-top-color-applies-to-004.xht": [ - "6d6f28ab6bb08290e2333615bad2432980e1f975", + "clear-float-002.xht": [ + "27d7e15717f4e0eb140368b2eef5c292ab949f28", [ null, [ [ - "/css/CSS2/borders/border-bottom-applies-to-001-ref.xht", + "/css/CSS2/floats-clear/clear-float-002-ref.xht", "==" ] ], {} ] ], - "border-top-color-applies-to-005.xht": [ - "b31cab2c160d87843aa5341070cb4f2c62522a1b", + "clear-float-003.xht": [ + "12e9e05ce6c7a3e6ae410ee53678c656eaeaa341", [ null, [ [ - "/css/CSS2/borders/border-bottom-applies-to-001-ref.xht", + "/css/CSS2/floats-clear/clear-float-003-ref.xht", "==" ] ], {} ] ], - "border-top-color-applies-to-006.xht": [ - "72901342b0ecbffe9526d3d5475b36233615c4de", + "clear-float-004.xht": [ + "35c0ab4f175c8349881ee8e98c02e9db62c3130e", [ null, [ [ - "/css/CSS2/borders/border-bottom-applies-to-001-ref.xht", + "/css/CSS2/floats-clear/clear-float-004-ref.xht", "==" ] ], {} ] ], - "border-top-color-applies-to-007.xht": [ - "502b5c5ad5323d1a214392c610b9174a023112c2", + "clear-float-005.xht": [ + "141caf269872b258596dfd8d7811d80919f2b8ac", [ null, [ [ - "/css/CSS2/borders/border-bottom-applies-to-001-ref.xht", + "/css/CSS2/floats-clear/clear-float-005-ref.xht", "==" ] ], {} ] ], - "border-top-color-applies-to-009.xht": [ - "6c0a8cb9776bc20625670e555f4c79054bed6e13", + "clear-float-006.xht": [ + "a8d0f32162120b40c646ed8b38fdfd81165d2ce7", [ null, [ [ - "/css/CSS2/borders/border-bottom-applies-to-001-ref.xht", + "/css/CSS2/floats-clear/clear-float-006-ref.xht", "==" ] ], {} ] ], - "border-top-color-applies-to-012.xht": [ - "1fa27005d539a21e8f2361783e9f8d3a3295a377", + "clear-float-007.xht": [ + "0fa95b26409c14877424011e723aacb19f1d91aa", [ null, [ [ - "/css/CSS2/borders/border-bottom-applies-to-001-ref.xht", + "/css/CSS2/floats-clear/adjacent-floats-001-ref.xht", "==" ] ], {} ] ], - "border-top-color-applies-to-013.xht": [ - "dc6c81ea37f5e4b70c344a0a978ed84068793b2d", + "clear-float-008.xht": [ + "6d93e608dca54717856275b43f9fd0424241872b", [ null, [ [ - "/css/CSS2/borders/border-bottom-applies-to-001-ref.xht", + "/css/CSS2/floats-clear/adjacent-floats-001-ref.xht", "==" ] ], {} ] ], - "border-top-color-applies-to-014.xht": [ - "5d097f7f804fdf1a268be8cfa3130db224a83be4", - [ + "clear-float-009.xht": [ + "7c2cdb9c8e3ef6dd9d881c5b4928a88f0e0c803c", + [ null, [ [ - "/css/CSS2/borders/border-bottom-applies-to-001-ref.xht", + "/css/CSS2/floats-clear/clear-float-009-ref.xht", "==" ] ], {} ] ], - "border-top-color-applies-to-015.xht": [ - "d8a728ab3bdfca18b783c6539bfeb751a8df62cc", + "clear-initial-001.xht": [ + "d4757c923ea2d80fb768b941f7ee0f1cb74b6b64", [ null, [ [ - "/css/CSS2/borders/border-bottom-applies-to-001-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-top-style-001.xht": [ - "885ae7a0349afc678d2e0585ed86d8c66370ce66", + "clear-inline-001.xht": [ + "3cb531808945d3fd1c78f55a2e868c314350d262", [ null, [ [ - "/css/CSS2/reference/ref-nothing-below.xht", + "/css/CSS2/floats-clear/clear-inline-001-ref.xht", "==" ] ], {} ] ], - "border-top-style-002.xht": [ - "164d479fd9e85c0fed53c11470e7567fdfdc0124", + "clear-on-child-with-margins-2.html": [ + "594fee03f48859fb15ece07cb82293297ca1d87d", [ null, [ [ - "/css/CSS2/reference/ref-nothing-below.xht", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "border-top-style-005.xht": [ - "454e8f6371304dbb43636c79f9d00deb70e49667", + "clear-on-child-with-margins.html": [ + "f65f314a2f8aa285a001ae8c4751bc9ceb6e1115", [ null, [ [ - "/css/CSS2/borders/border-bottom-style-005-ref.xht", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "border-top-width-001.xht": [ - "6cc8fe18493525ac75096241b965d7fe465caa3f", + "clear-on-parent-and-child.html": [ + "d7dc26f30a8c1f636945441a783c45c4c0837152", [ null, [ [ - "/css/CSS2/borders/border-top-width-001-ref.xht", + "/css/reference/ref-filled-green-200px-square.html", "==" ] ], {} ] ], - "border-top-width-002.xht": [ - "c047d4456bc23e8bdc2b6e419a64e18d3c7e1697", + "clear-on-parent-with-margins-no-clearance.html": [ + "f3d3c1891a1a42f3b464fb79006e7bec8f1ac081", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "border-top-width-003.xht": [ - "158d36cd026ff4b09d2c4264b1716dbca8b68493", + "clear-on-parent-with-margins.html": [ + "9b331d5e4ca65f155395ae389629978252cc4f89", [ null, [ [ - "/css/CSS2/borders/border-bottom-width-003-ref.xht", + "/css/reference/ref-filled-green-200px-square.html", "==" ] ], {} ] ], - "border-top-width-004.xht": [ - "109610dee8828d78a65ae7f810be83577b5b03e1", + "clear-on-parent.html": [ + "755cd7880950a8837921c1e6175ce66fc8af8ff0", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/reference/ref-filled-green-200px-square.html", "==" ] ], {} ] ], - "border-top-width-005.xht": [ - "ae191f7290b216143f468e1cacd9dfddef883105", + "clear-on-replaced-element.html": [ + "e5566b38326da17455d54c3d06d498f72bc4c693", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 2 + ], + [ + 0, + 1500 + ] + ] + ] + ] + } ] ], - "border-top-width-006.xht": [ - "2722da7a5e32cc4279bc1a98fd8a977b8e29be21", + "clear-with-top-margin-after-cleared-empty-block.html": [ + "5d0fba7981f3f688b22442c1e8bef2ff8b146f5e", [ null, [ [ - "/css/CSS2/borders/border-bottom-width-006-ref.xht", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "border-top-width-007.xht": [ - "8f7175fc2fd5485bdce2de7c6a52fbcd5b6a0a05", + "clearance-006.xht": [ + "44cded188ccce19272ef69a2b22ce94968788f67", [ null, [ [ - "/css/CSS2/borders/border-bottom-width-006-ref.xht", + "/css/CSS2/floats-clear/clearance-006-ref.xht", "==" ] ], {} ] ], - "border-top-width-012.xht": [ - "d177de1502c39e8274edecde9963b07c5cea5bc4", + "float-003.xht": [ + "7c18aa8f44b5e82994348a15d8279d0ad78f5d56", [ null, [ [ - "/css/CSS2/borders/border-top-width-012-ref.xht", + "/css/CSS2/floats-clear/float-003-ref.xht", "==" ] ], {} ] ], - "border-top-width-013.xht": [ - "e6d534c5c1d2f251e4b3cd5b031153aa757ced8f", + "float-005.xht": [ + "6b5dac999cc7d48e6620860fb6907fb3a4fdc120", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/floats-clear/float-005-ref.xht", "==" ] ], {} ] ], - "border-top-width-015.xht": [ - "f07fa5289e0a1ad50d335b35618982d55d4ab3e2", + "float-006.xht": [ + "d72832437ecbf775f849051b9c6dd1f249a0cd90", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/floats-clear/float-006-ref.xht", "==" ] ], {} ] ], - "border-top-width-016.xht": [ - "5cd607d791787ee01714b38439277bf48d7db9d6", + "float-applies-to-001.xht": [ + "9f6bce16b875e89db5441563e72b3754e71b8e59", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/reference/float-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-top-width-017.xht": [ - "1cc81279d7b9432f4d684d76dd5098e43f8e7c22", + "float-applies-to-001a.xht": [ + "3cb57aa420712445934014d39ce3eea82b8f940f", [ null, [ [ - "/css/CSS2/borders/border-bottom-width-006-ref.xht", + "/css/CSS2/reference/float-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-top-width-018.xht": [ - "c4b1a9f2a5444fcfbc93a94183255a936e46f164", + "float-applies-to-002.xht": [ + "d762ff6a51df6737881298f7dfae4aa41d7057cd", [ null, [ [ - "/css/CSS2/borders/border-bottom-width-006-ref.xht", + "/css/CSS2/reference/float-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-top-width-023.xht": [ - "7576bc0113d10e9d90ba8f32d684c505b927887d", + "float-applies-to-003.xht": [ + "7b3c06bee7ec5fa76fb715a98b23b1538db53da6", [ null, [ [ - "/css/CSS2/borders/border-top-width-012-ref.xht", + "/css/CSS2/reference/float-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-top-width-024.xht": [ - "2a2f338fdd099f9d4e3f0e76998fa246006a096f", + "float-applies-to-004.xht": [ + "02e48f1ff6a62c8fea393df40ad959e282780e69", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/reference/float-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-top-width-025.xht": [ - "8640c00db1c430846cf2204e2ff69957c03bc0cf", + "float-applies-to-004a.xht": [ + "34995444648a3e212de6e06e2bfa44af568a7b38", [ null, [ [ - "/css/CSS2/borders/border-bottom-width-025-ref.xht", + "/css/CSS2/reference/float-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-top-width-026.xht": [ - "9961cf06a14a658e671c86060aeca9b27f4f8e5b", + "float-applies-to-005.xht": [ + "dc92539b950aa791f044f3fab2785e0b8b6e220d", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/reference/float-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-top-width-027.xht": [ - "51ea2aa1f94571c55502bad523a6d3eb5f1e9bd2", + "float-applies-to-006.xht": [ + "e140b0827058af614e8dba4fe88af4ec22ca77a3", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/reference/float-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-top-width-028.xht": [ - "164b29f24dd6772e91e539eb27db3d46f7e9fb72", + "float-applies-to-007.xht": [ + "22772d87e611d4d398e9c100b3cfa400ebfdc99e", [ null, [ [ - "/css/CSS2/borders/border-bottom-width-006-ref.xht", + "/css/CSS2/reference/float-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-top-width-029.xht": [ - "04a68e82c9490da810451061f9473a023d46f15d", + "float-applies-to-008.xht": [ + "b192b5210299b66f2f57cd85a65df99001a9f0b9", [ null, [ [ - "/css/CSS2/borders/border-bottom-width-006-ref.xht", + "/css/CSS2/floats-clear/float-applies-to-008-ref.xht", "==" ] ], {} ] ], - "border-top-width-034.xht": [ - "6afc210e3a952b6bb1b41495103c588b14b6a004", + "float-applies-to-008a.xht": [ + "b01abc3b4667680d8fdc4b5ea3b1606ea8eda25f", [ null, [ [ - "/css/CSS2/borders/border-top-width-012-ref.xht", + "/css/CSS2/reference/float-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-top-width-035.xht": [ - "22d6f88f9f315c38278c8b1b7a60154e2f4c7d86", + "float-applies-to-009.xht": [ + "9063523826b49e244aaa6f4c90ea5f82c15fe64e", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/reference/float-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-top-width-037.xht": [ - "45f93b043713974fb55a199d9afcceec62d9277e", + "float-applies-to-012.xht": [ + "3d4bdb8cba58058d4fde3c4574e61fe4238e22eb", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/reference/float-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-top-width-038.xht": [ - "73da8659d1d6844fe5fd5d63671571f5fa7bd5ba", + "float-applies-to-013.xht": [ + "d07104172621581c5f65a7167422ac2e2c6202ea", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/reference/float-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-top-width-039.xht": [ - "5517d11ac8c8cdeccbd038c6760fd117376349c1", + "float-applies-to-014.xht": [ + "c2d39ecd2da4fe078a164c09ef7ce0c8aa76d5a5", [ null, [ [ - "/css/CSS2/borders/border-bottom-width-006-ref.xht", + "/css/CSS2/reference/float-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-top-width-040.xht": [ - "7a31c3ff838ee54df5496f32d3e055ce655642a1", + "float-applies-to-015.xht": [ + "f1b237f45599e244e5f59a08c3d7159dadbe2069", [ null, [ [ - "/css/CSS2/borders/border-bottom-width-006-ref.xht", + "/css/CSS2/reference/float-applies-to-001-ref.xht", "==" ] ], {} ] ], - "border-top-width-045.xht": [ - "7b74a3765dddf01700717258cd7ae580dfeb4d34", + "float-non-replaced-height-001.xht": [ + "027429ce3844553afba88b46d72919d664ee7746", [ null, [ [ - "/css/CSS2/borders/border-top-width-012-ref.xht", + "/css/CSS2/floats-clear/float-non-replaced-height-001-ref.xht", "==" ] ], {} ] ], - "border-top-width-046.xht": [ - "58fda27650a78ba803c38ecdcd219116285a81da", + "float-non-replaced-width-001.xht": [ + "62ff2de22e77e916c33f5e7f04f414026c5730d8", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/floats-clear/float-non-replaced-width-001-ref.xht", "==" ] ], {} ] ], - "border-top-width-048.xht": [ - "85f1cb6f294c514a84fd6fc00a3dd52185bec2b9", + "float-non-replaced-width-002.xht": [ + "8d37183a82a22b6255f854303a1f93fa992f4f1a", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/floats-clear/float-non-replaced-width-002-ref.xht", "==" ] ], {} ] ], - "border-top-width-049.xht": [ - "5b874c9b000d3b14d91076fc8dc3b95ad71e963f", + "float-non-replaced-width-003.xht": [ + "23e6b2520a3e458df75e1a4917fc6b269560847f", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/floats-clear/float-non-replaced-width-003-ref.xht", "==" ] ], {} ] ], - "border-top-width-050.xht": [ - "f5e4da2aad693f0789a720c19b8ace4bf7e52a13", + "float-non-replaced-width-004.xht": [ + "2af1928e00c846d3b198446c5badf29337897948", [ null, [ [ - "/css/CSS2/borders/border-bottom-width-006-ref.xht", + "/css/CSS2/floats-clear/float-non-replaced-width-002-ref.xht", "==" ] ], {} ] ], - "border-top-width-051.xht": [ - "9a47c31afecd4f225636de484f8fd79c97f9d121", + "float-non-replaced-width-005.xht": [ + "39b0918a7a82584cc7c14a5684b32bf8d4690d0e", [ null, [ [ - "/css/CSS2/borders/border-bottom-width-006-ref.xht", + "/css/CSS2/floats-clear/float-non-replaced-width-001-ref.xht", "==" ] ], {} ] ], - "border-top-width-056.xht": [ - "0c1350e24a3040753683aedbd88ace4e5260f31f", + "float-non-replaced-width-007.xht": [ + "2cf7865dd40b4fa8d151b442b1d88f9e87ec7d2a", [ null, [ [ - "/css/CSS2/borders/border-top-width-012-ref.xht", + "/css/CSS2/positioning/absolute-non-replaced-width-017-ref.xht", "==" ] ], {} ] ], - "border-top-width-057.xht": [ - "eb28cd026e2c4a364426c519eb55eb69ac19829e", + "float-non-replaced-width-008.xht": [ + "aca4ede4984caf2615d9b58a71a5de373beb3c7b", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/positioning/absolute-non-replaced-width-017-ref.xht", "==" ] ], {} ] ], - "border-top-width-058.xht": [ - "86ecc12008da631a34d938cff8edab8e148ebf77", + "float-non-replaced-width-009.xht": [ + "1382e4c091a124f55f72225b2ba90dfbfa51e7d3", [ null, [ [ - "/css/CSS2/borders/border-bottom-width-058-ref.xht", + "/css/CSS2/positioning/absolute-non-replaced-width-017-ref.xht", "==" ] ], {} ] ], - "border-top-width-059.xht": [ - "eb9e327c1d41d3286ae0652023d775d1009f52f2", + "float-non-replaced-width-010.xht": [ + "d09e24eee94bbee477adcd0dfc303ed244ad17b0", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/positioning/absolute-non-replaced-width-017-ref.xht", "==" ] ], {} ] ], - "border-top-width-060.xht": [ - "8992a73014cf372743dd71cf7a217375cb2e3e75", + "float-non-replaced-width-011.xht": [ + "5e436fbe8b3f09e5f6763b3d01294d39a63b8592", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/positioning/absolute-non-replaced-width-017-ref.xht", "==" ] ], {} ] ], - "border-top-width-061.xht": [ - "8fbec41cf1666b894e08c190b756d6dea1a4fae7", + "float-non-replaced-width-012.xht": [ + "24015935d55b72eaaaf8aaed2cfa25758955988f", [ null, [ [ - "/css/CSS2/borders/border-bottom-width-061-ref.xht", + "/css/CSS2/positioning/absolute-non-replaced-width-017-ref.xht", "==" ] ], {} ] ], - "border-top-width-062.xht": [ - "b0b8362a4a3a91c92cfa91f723887ff2c3cd1f84", + "float-replaced-height-001.xht": [ + "a4d8e3d3219af6485278c1e5667b6cd29f2c99c4", [ null, [ [ - "/css/CSS2/borders/border-bottom-width-061-ref.xht", + "/css/CSS2/floats-clear/float-replaced-height-001-ref.xht", "==" ] ], {} ] ], - "border-top-width-067.xht": [ - "f375f52a7f4e3621f5c6594ff704d14d5dc7a601", + "float-replaced-height-002.xht": [ + "ca49db816f7a71682a1caf43a70ac9ac8630c7fd", [ null, [ [ - "/css/CSS2/borders/border-top-width-012-ref.xht", + "/css/CSS2/floats-clear/float-replaced-height-002-ref.xht", "==" ] ], {} ] ], - "border-top-width-068.xht": [ - "b18b7a6cf898b1955dbc34d1e1e2ae561873d44f", + "float-replaced-height-003.xht": [ + "ca7facb74b5e4d3f1a3d019b1e8d024d68494864", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/floats-clear/float-replaced-height-003-ref.xht", "==" ] ], {} ] ], - "border-top-width-069.xht": [ - "467a007bbdf70192b56a1602445b7710650a6419", + "float-replaced-height-004.xht": [ + "7710028dd6a51e99fcb1f30e8416b1332b4ee8ff", [ null, [ [ - "/css/CSS2/borders/border-bottom-width-069-ref.xht", + "/css/CSS2/floats-clear/float-replaced-height-004-ref.xht", "==" ] ], {} ] ], - "border-top-width-070.xht": [ - "c95c21b184454f1d24194bd2b942f0e80fced580", + "float-replaced-height-005.xht": [ + "8e72c67a68ed1d5025e1f7e5367ba74aa623a02c", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/floats-clear/float-replaced-height-005-ref.xht", "==" ] ], {} ] ], - "border-top-width-071.xht": [ - "ba054b8e5ddc1e8fb078d0a864f3704c47138628", + "float-replaced-height-006.xht": [ + "2d76339eac7bfc3921cb94fab84e7aaabbd6dc5b", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/floats-clear/float-replaced-height-006-ref.xht", "==" ] ], {} ] ], - "border-top-width-072.xht": [ - "775723c09325a320398b8df3d76ccd6396e16cb9", + "float-replaced-height-007.xht": [ + "469c8decdba8a307975d360e880a3634d14d9a05", [ null, [ [ - "/css/CSS2/borders/border-bottom-width-072-ref.xht", + "/css/CSS2/floats-clear/float-replaced-height-004-ref.xht", "==" ] ], {} ] ], - "border-top-width-073.xht": [ - "36c44298ae233c318a03a0a7989649fc63c6cbda", + "float-replaced-width-001.xht": [ + "d6e353f942f7a1519db1f7c31f5d163fd1e78cee", [ null, [ [ - "/css/CSS2/borders/border-bottom-width-072-ref.xht", + "/css/CSS2/floats-clear/float-non-replaced-width-001-ref.xht", "==" ] ], {} ] ], - "border-top-width-078.xht": [ - "fadd6aef647abdc3a368370345c79c670d47be9f", + "float-replaced-width-002.xht": [ + "cb6050b78b132f5140b1b12673e0a9fa27e30555", [ null, [ [ - "/css/CSS2/borders/border-top-width-012-ref.xht", + "/css/CSS2/floats-clear/float-non-replaced-width-002-ref.xht", "==" ] ], {} ] ], - "border-top-width-079.xht": [ - "325957d2302bb43ed463d63d11ae8af11034406e", + "float-replaced-width-003.xht": [ + "ac4e3aa804f79d87489c325ab02d6740b37cc51f", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/floats-clear/float-non-replaced-width-003-ref.xht", "==" ] ], {} ] ], - "border-top-width-080.xht": [ - "3259487ea00f55ad93bfb7baa32c445ba78cedb7", + "float-replaced-width-004.xht": [ + "3f1bdc735397e3ccd5782cda0dfb914953033727", [ null, [ [ - "/css/CSS2/borders/border-bottom-width-025-ref.xht", + "/css/CSS2/floats-clear/float-non-replaced-width-002-ref.xht", "==" ] ], {} ] ], - "border-top-width-081.xht": [ - "326d840983cbf1d3688c99df9ccf5e092ec24843", + "float-replaced-width-005.xht": [ + "8553d6afc13e38aed10fb49ecfdbe24e1187252d", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/floats-clear/float-non-replaced-width-001-ref.xht", "==" ] ], {} ] ], - "border-top-width-082.xht": [ - "e90fa01cc1a1726bdc78593f0197a30ba6cb6e45", + "float-replaced-width-006.xht": [ + "aee917141ec37b1da47f55fd8aabaca440041abe", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/floats-clear/float-replaced-width-006-ref.xht", "==" ] ], {} ] ], - "border-top-width-083.xht": [ - "81d803a4300776304871a7246f0d43a2a560fdd3", + "float-replaced-width-007.xht": [ + "7ab350ea0213c6dac9b3bf4652100544890795a9", [ null, [ [ - "/css/CSS2/borders/border-bottom-width-006-ref.xht", + "/css/CSS2/floats-clear/float-replaced-width-007-ref.xht", "==" ] ], {} ] ], - "border-top-width-084.xht": [ - "25eecee5c1c579ef9cbb4b3a71e96378994b6cfe", + "float-replaced-width-008.xht": [ + "b4500ba692b0d2f7b9f25ab8154ef66602140ab4", [ null, [ [ - "/css/CSS2/borders/border-bottom-width-006-ref.xht", + "/css/CSS2/floats-clear/float-replaced-width-008-ref.xht", "==" ] ], {} ] ], - "border-top-width-089.xht": [ - "efebf986a1f7641ca54642a63861ddfb7346cdc9", + "float-replaced-width-009.xht": [ + "b407448e91592013a9cfe7a747a10919b8a65e44", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/floats-clear/float-replaced-width-009-ref.xht", "==" ] ], {} ] ], - "border-top-width-090.xht": [ - "b7f48a02f637966b0d381a583ce12d01bf7113c7", + "float-replaced-width-011.xht": [ + "2cd206620a6a7a57f618f49e08d18451138dc1ff", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/floats-clear/float-replaced-width-011-ref.xht", "==" ] ], {} ] ], - "border-top-width-091.xht": [ - "c08bc263cf31f30ee5308fccd4e0e8791c196268", + "floats-001.xht": [ + "a78c804b14a0e442ff6852394c52406bc3588091", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/floats-clear/floats-001-ref.xht", "==" ] ], {} ] ], - "border-top-width-095.xht": [ - "7083354fa4e02793a8e9911441ef3acfdb473799", + "floats-002.xht": [ + "435241d81e437363ffbca499d605df18f35660de", [ null, [ [ - "/css/CSS2/borders/border-top-width-095-ref.xht", + "/css/CSS2/floats-clear/floats-002-ref.xht", "==" ] ], {} ] ], - "border-top-width-applies-to-001.xht": [ - "f2a6518a187603010a4f29ae806c0bd40c2fd8b8", + "floats-003.xht": [ + "f42bc691c6fd53b55e26dd6410819f49d6a782df", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/floats-clear/adjacent-floats-001-ref.xht", "==" ] ], {} ] ], - "border-top-width-applies-to-002.xht": [ - "02c5c3a243d0941f182964867606362becb29836", + "floats-004.xht": [ + "572ab756c1ae3717f35a72b28e546e953603dedf", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/floats-clear/floats-004-ref.xht", "==" ] ], {} ] ], - "border-top-width-applies-to-003.xht": [ - "c37174cd40121d6bb7655f3221892b6c81f14d31", + "floats-005.xht": [ + "239f6e344167fccbe660f51093bae89826344e3d", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/floats-clear/floats-005-ref.xht", "==" ] ], {} ] ], - "border-top-width-applies-to-004.xht": [ - "a176ec969ac4b1d412225bf20226ab2b6b3a6f98", + "floats-006.xht": [ + "02c442b9b8fcad9a8aa506f179c4e230aecb22f4", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/floats-clear/floats-006-ref.xht", "==" ] ], {} ] ], - "border-top-width-applies-to-005.xht": [ - "82694ed2d913af4472d6d50899abe6ab1b5f862f", + "floats-007.xht": [ + "49b81826af7b449805263155bd8d363bc0d43620", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/floats-clear/floats-007-ref.xht", "==" ] ], {} ] ], - "border-top-width-applies-to-006.xht": [ - "b2b0ca905fc38ef408155509805eadde7f7009fc", + "floats-008.xht": [ + "c85e45da26363b162a24e4ab9fb1a6707417d185", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/floats-clear/clear-float-004-ref.xht", "==" ] ], {} ] ], - "border-top-width-applies-to-007.xht": [ - "9fb6d28b3698e0db00129a73ba86318159118e9c", + "floats-009.xht": [ + "eab2dd4408e18b187fe25f06729dd6100ac71dca", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/floats-clear/floats-009-ref.xht", "==" ] ], {} ] ], - "border-top-width-applies-to-009.xht": [ - "4851537fa55eef07939b6a7c14f04d111cc9b2e2", + "floats-014.xht": [ + "91893cdf3c42e1bd5e6bec211f357ae15519ff80", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/floats-clear/floats-014-ref.xht", "==" ] ], {} ] ], - "border-top-width-applies-to-012.xht": [ - "f28ad49b3ff8ffbd850219bc84257bbd23777f86", + "floats-015.xht": [ + "bd92a4e437b3eab84a634712cfc478062a0522b4", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/floats-clear/floats-014-ref.xht", "==" ] ], {} ] ], - "border-top-width-applies-to-013.xht": [ - "4321228b757a7b91b926b7152596c67cf5725ce3", + "floats-019.xht": [ + "6353907297d8ff49d8996f14924f67654bd90c9c", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/floats-clear/floats-019-ref.xht", "==" ] ], {} ] ], - "border-top-width-applies-to-014.xht": [ - "2623c38d1648762136cdeeec078a8e6687783e97", + "floats-022.xht": [ + "b9fd54f946fed040261c7fd2999e610fa2698675", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/floats-clear/floats-022-ref.xht", "==" ] ], {} ] ], - "border-top-width-applies-to-015.xht": [ - "18b03d705e2c5e0ed6e2844a4a50a397f87c0382", + "floats-023.xht": [ + "2bf1786557653bf456322b70bae8598ada65e551", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/floats-clear/floats-023-ref.xht", "==" ] ], {} ] ], - "border-width-001.xht": [ - "a55ba5d6c8bbe6c5ba0760f5bb160fc1afa3cc28", + "floats-024.xht": [ + "2540308f0581f71901ef9b6f934ee3e4963c66ee", [ null, [ [ - "/css/CSS2/borders/border-left-width-006-ref.xht", + "/css/CSS2/floats-clear/floats-024-ref.xht", "==" ] ], {} ] ], - "border-width-002.xht": [ - "0ca526c53db5b1ecf850ced799899852a25a436c", + "floats-025.xht": [ + "c6c680b2a08633fc61034f2df098318269054fe8", [ null, [ [ - "/css/CSS2/borders/border-width-002-ref.xht", + "/css/CSS2/floats-clear/floats-025-ref.xht", "==" ] ], {} ] ], - "border-width-003.xht": [ - "2b6b2ceac5e98419967ccefb74cfb64f9837245f", + "floats-026.xht": [ + "eed0ae8d7390ece653b951baf67df8c0d74de0ed", [ null, [ [ - "/css/CSS2/borders/border-width-003-ref.xht", + "/css/CSS2/floats-clear/floats-026-ref.xht", "==" ] ], {} ] ], - "border-width-004.xht": [ - "d95baa3329ce75b532cc03221b14d13496c3ce37", + "floats-027.xht": [ + "ccea2ad092281edaa1550793e23b2cd2fbca141d", [ null, [ [ - "/css/CSS2/borders/border-width-004-ref.xht", + "/css/CSS2/floats-clear/floats-027-ref.xht", "==" ] ], {} ] ], - "border-width-005.xht": [ - "cf75d869c2f78a6f6b9e1ce0ace6bafc185bdb0f", + "floats-028.xht": [ + "bef6f421eb84892287aa8d4d3f8b1895ff0edc65", [ null, [ [ - "/css/CSS2/borders/border-width-005-ref.xht", + "/css/CSS2/floats-clear/floats-028-ref.xht", "==" ] ], {} ] ], - "border-width-006.xht": [ - "9881f08d6977f76bd07efe756018863b5ef2b2b0", + "floats-029.xht": [ + "5c35a93bdfbf6785250a8f4156c0a4086505d3b9", [ null, [ [ - "/css/CSS2/borders/border-width-006-ref.xht", + "/css/CSS2/floats-clear/floats-029-ref.xht", "==" ] ], {} ] ], - "border-width-007.xht": [ - "b1fec98e3a05f591342a0ab79b8203cd081afa27", + "floats-030.xht": [ + "a25c524d257d0a1767d7f79263304426c7947937", [ null, [ [ - "/css/CSS2/borders/border-width-007-ref.xht", + "/css/CSS2/floats-clear/floats-030-ref.xht", "==" ] ], {} ] ], - "border-width-008.xht": [ - "f82e185b5a2845c832a1d1754ab025a0cd25ddbd", + "floats-031.xht": [ + "ee794fe9fca58923e7e90ae0bdf861ce694a7b85", [ null, [ [ - "/css/CSS2/borders/border-width-008-ref.xht", + "/css/CSS2/floats-clear/floats-031-ref.xht", "==" ] ], {} ] ], - "border-width-009.xht": [ - "91180bb8cbc89adf7f870ee02399c021b52d65c1", + "floats-036.xht": [ + "1d90b428ffbbe28a3aaecc369b6018f886bdcdfd", [ null, [ [ - "/css/CSS2/borders/border-width-009-ref.xht", + "/css/CSS2/floats-clear/floats-036-ref.xht", "==" ] ], {} ] ], - "border-width-010.xht": [ - "96aff75d59143e856a0e97bcbfdd842a7f04bb9e", + "floats-038.xht": [ + "e95d39b38b5b99c5720531aa08cb3b0b4dc85ad7", [ null, [ [ - "/css/CSS2/borders/border-width-010-ref.xht", + "/css/CSS2/floats-clear/floats-038-ref.xht", "==" ] ], {} ] ], - "border-width-011.xht": [ - "ae8d514ab3c19bd0640574b254404de285f7214a", + "floats-039.xht": [ + "03b77c952ea2cf25e5ba743cea5db62c189f1a45", [ null, [ [ - "/css/CSS2/reference/ref-this-text-should-be-green.xht", + "/css/CSS2/floats-clear/floats-038-ref.xht", "==" ] ], {} ] ], - "border-width-012.xht": [ - "18d0b648f4c5ee26a2448ca542b93e6528cb45cc", + "floats-040.xht": [ + "9588e154379c900cb3d28bdd9b8bf4e06d856b69", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/floats-clear/floats-038-ref.xht", "==" ] ], {} ] ], - "border-width-013.xht": [ - "026733c1f242154fa644695c3d9492a7bc681a93", + "floats-041.xht": [ + "37b15dfa296354e0d9caa1076a6b8cce6fd6f6dc", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/floats-clear/floats-041-ref.xht", "==" ] ], {} ] ], - "border-width-014.xht": [ - "4f44d8452bb0853582f0172da766ade8cb928422", + "floats-043.xht": [ + "aa004c469c6087ef188c50efafb1572c7d819bc7", [ null, [ [ - "/css/CSS2/borders/border-width-014-ref.xht", + "/css/CSS2/floats-clear/floats-043-ref.xht", "==" ] ], {} ] ], - "border-width-applies-to-008.xht": [ - "d310ebb65cf9fa84b7a6640ff13b1cbd1f6fffb4", + "floats-101.xht": [ + "7b3d721e1c5870153b39c6787026778dffc5ba2b", [ null, [ [ - "/css/CSS2/borders/border-width-applies-to-008-ref.xht", + "/css/CSS2/floats-clear/floats-101-ref.xht", "==" ] ], {} ] ], - "border-width-applies-to-009.xht": [ - "79b79bf11be893dbab839f2919b0cd05ff5b9155", + "floats-111.xht": [ + "4f8f14703ded8050d75b72bf64bbe76cffa3e43e", [ null, [ [ - "/css/CSS2/borders/border-width-applies-to-009-ref.xht", + "/css/CSS2/floats-clear/floats-111-ref.xht", "==" ] ], {} ] ], - "border-width-applies-to-012.xht": [ - "cc5dcc4a602a4418ef45cf28f28ee29cd819d973", + "floats-112.xht": [ + "ec58b3371367416ec1a557a2e4a430dee77f1349", [ null, [ [ - "/css/CSS2/borders/border-width-applies-to-009-ref.xht", + "/css/CSS2/floats-clear/floats-112-ref.xht", "==" ] ], {} ] ], - "border-width-applies-to-015.xht": [ - "432bc8e562d7046f23a4dc28eb271c98ad0d170f", + "floats-113.xht": [ + "976caef6767ea0f020af270d2523370c5dd1e01d", [ null, [ [ - "/css/CSS2/borders/border-width-applies-to-009-ref.xht", + "/css/CSS2/floats-clear/floats-113-ref.xht", "==" ] ], {} ] ], - "border-width-shorthand-001.xht": [ - "5da4dd9a724e930765f81ffdf8d17049b10bc7c7", + "floats-114.xht": [ + "feb189a422b8f2f1a9efc9aa75bc58c6fd34e7f9", [ null, [ [ - "/css/CSS2/borders/border-width-shorthand-001-ref.xht", + "/css/CSS2/floats-clear/floats-114-ref.xht", "==" ] ], {} ] ], - "border-width-shorthand-002.xht": [ - "71998fb3b13f3097d1dbb147e66672209379204c", + "floats-115.xht": [ + "b426fcd6105759d9b8315d5ba17e4112c357274c", [ null, [ [ - "/css/CSS2/borders/border-width-shorthand-002-ref.xht", + "/css/CSS2/floats-clear/floats-115-ref.xht", "==" ] ], {} ] ], - "border-width-shorthand-003.xht": [ - "f779aa6e30769699eaeb623394e0dfc11e4ede89", + "floats-116.xht": [ + "507d74fb54894006a8387746a27172382e67052c", [ null, [ [ - "/css/CSS2/borders/border-width-shorthand-003-ref.xht", + "/css/CSS2/floats-clear/floats-116-ref.xht", "==" ] ], {} ] ], - "border-width-shorthand-004.xht": [ - "46952d3434225e55709ba34088a85259fce40c24", + "floats-117.xht": [ + "43183603a024485215df3cd9f4a77a5b4246a172", [ null, [ [ - "/css/CSS2/borders/border-width-shorthand-004-ref.xht", + "/css/CSS2/floats-clear/floats-116-ref.xht", "==" ] ], {} ] ], - "groove-default.html": [ - "c9028b9a2f4ce57857335862e1f81a30f8f1e535", + "floats-118.xht": [ + "efd369b47d36621cf797457b33a346532296d026", [ null, [ [ - "/css/CSS2/borders/groove-ridge-default-notref.html", - "!=" + "/css/CSS2/floats-clear/floats-118-ref.xht", + "==" ] ], {} ] ], - "ridge-default.html": [ - "4bd0bdf3aef8137b2a14e16ea2461c85b61fe4a6", + "floats-119.xht": [ + "4c8b4cbc97221af7d9a9f3918bdb66ceac2c672e", [ null, [ [ - "/css/CSS2/borders/groove-ridge-default-notref.html", - "!=" + "/css/CSS2/floats-clear/floats-119-ref.xht", + "==" ] ], {} ] ], - "shand-border-000.xht": [ - "6db5a72228da15df9d120b07c7ec9677d279f3ce", + "floats-120.xht": [ + "c68c1930bded89fd36c7c71ab7695159f4169c3a", [ null, [ [ - "/css/CSS2/borders/shand-border-000-ref.xht", + "/css/CSS2/floats-clear/floats-119-ref.xht", "==" ] ], {} ] ], - "shand-border-001.xht": [ - "11bd85b5b01af4caf4853bfaddd407c53f7a82eb", + "floats-121.xht": [ + "96df9be181fac0d93b6dc5e4edb52e01ed0dd429", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/floats-clear/floats-121-ref.xht", "==" ] ], {} ] - ] - }, - "box": { - "ltr-basic.xht": [ - "fb5a4a9670be5e91dbfe52a5f8a2a9085743d428", + ], + "floats-122.xht": [ + "783783222ae5b51a2b75899b24e53b977e540e6c", [ null, [ [ - "/css/CSS2/box/left-ltr-ref.xht", + "/css/CSS2/floats-clear/floats-122-ref.xht", "==" ] ], {} ] ], - "ltr-ib.xht": [ - "79a772437b2e2e826fe27f50617a9d48fe53d90a", + "floats-123.xht": [ + "c05d6f040444ab63cec799b8ec3894aad1582cc5", [ null, [ [ - "/css/CSS2/box/left-ltr-ref.xht", + "/css/CSS2/floats-clear/floats-123-ref.xht", "==" ] ], {} ] ], - "ltr-span-only-ib.xht": [ - "eefdc820a795919b9cbab78e2802e2c51985c8e6", + "floats-124.xht": [ + "3a0a3e9535060711f69b420b59833d93139cd7db", [ null, [ [ - "/css/CSS2/box/right-ltr-ref.xht", + "/css/CSS2/floats-clear/floats-124-ref.xht", "==" ] ], {} ] ], - "ltr-span-only.xht": [ - "7340bba732d296b266670d1033ed1f9c455f8a7f", + "floats-125.xht": [ + "1468dd9d3192e744759f338ebc81b0f6dfa13520", [ null, [ [ - "/css/CSS2/box/right-ltr-ref.xht", + "/css/CSS2/floats-clear/floats-125-ref.xht", "==" ] ], {} ] ], - "rtl-basic.xht": [ - "5bb0a7f43789fb28d0e23e9ac689a12ee0870ec0", + "floats-132.xht": [ + "ed947eff263022bb22cd2e2a18ce36d7752b2541", [ null, [ [ - "/css/CSS2/box/right-rtl-ref.xht", + "/css/CSS2/floats-clear/floats-132-ref.xht", "==" ] ], {} ] ], - "rtl-ib.xht": [ - "4815b46f7896128a66f069ac489b22d0add2334d", + "floats-133.xht": [ + "45599baa9cc2eb66e3fb642a43786eb3c3522e59", [ null, [ [ - "/css/CSS2/box/right-rtl-ref.xht", + "/css/CSS2/floats-clear/floats-133-ref.xht", "==" ] ], {} ] ], - "rtl-linebreak.xht": [ - "978f3e38e1ea30f08e1796398771645c04ec3ec4", + "floats-134.xht": [ + "b19f0a6dab7bdf64ace7cac43463c3c9f026ec60", [ null, [ [ - "/css/CSS2/box/rtl-linebreak-ref.xht", + "/css/CSS2/floats-clear/floats-133-ref.xht", "==" - ], - [ - "/css/CSS2/box/rtl-linebreak-notref1.xht", - "!=" - ], - [ - "/css/CSS2/box/rtl-linebreak-notref2.xht", - "!=" ] ], {} ] ], - "rtl-span-only-ib.xht": [ - "4976c62fcaab01c76713b12068de86e0b48bce05", + "floats-135.xht": [ + "ff2924a037f4828683485580cd07509c06e6bb77", [ null, [ [ - "/css/CSS2/box/left-rtl-ref.xht", + "/css/CSS2/floats-clear/floats-135-ref.xht", "==" ] ], {} ] ], - "rtl-span-only.xht": [ - "1445b2958606954f8fc568720c0bb21e95794ac5", + "floats-136.xht": [ + "207426af57c6c72db0a2f004fea5369587c1eb32", [ null, [ [ - "/css/CSS2/box/left-rtl-ref.xht", + "/css/CSS2/floats-clear/floats-136-ref.xht", "==" ] ], {} ] - ] - }, - "box-display": { - "anonymous-box-generation-001.xht": [ - "40c9922c87a1e92902d4844bfb1ddeaa138741bf", + ], + "floats-138.xht": [ + "7d5746d1f32aa7f300728b23338220357c072e6f", [ null, [ [ - "/css/CSS2/box-display/anonymous-box-generation-001-ref.xht", + "/css/CSS2/floats-clear/floats-138-ref.xht", "==" ] ], {} ] ], - "anonymous-boxes-inheritance-001.xht": [ - "e0c6be8bce565a803872dd4d2e792f7f12611665", + "floats-139.xht": [ + "f130e44acfaf16445af461a2a7b64703714d1ce3", [ null, [ [ - "/css/CSS2/box-display/anonymous-boxes-inheritance-001-ref.xht", + "/css/CSS2/floats-clear/floats-139-ref.xht", "==" ] ], {} ] ], - "anonymous-inline-whitespace-001.xht": [ - "02c1e3801229c9e72b1568f84909292c83b6cc4d", + "floats-141.xht": [ + "15fb41f75748bebfc182087d29d64f4df5bba059", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/floats-clear/floats-141-ref.xht", "==" ] ], {} ] ], - "block-in-inline-001.xht": [ - "aed4f2ce28f2b9a2ff5994b473e88818af37d99b", + "floats-142.xht": [ + "c64f88969917e5a3307b24b788adca7b73c92413", [ null, [ [ - "/css/CSS2/box-display/block-in-inline-001-ref.xht", + "/css/CSS2/floats-clear/floats-142-ref.xht", "==" ] ], {} ] ], - "block-in-inline-002.xht": [ - "884dd16bea9ec638f9d9a699aabffb2d90335b0c", + "floats-143.xht": [ + "6eb7e7107e24f0b31dcc4575fd1ff48ace34281f", [ null, [ [ - "/css/CSS2/box-display/block-in-inline-001-ref.xht", + "/css/CSS2/floats-clear/floats-143-ref.xht", "==" ] ], {} ] ], - "block-in-inline-003.xht": [ - "fe3ab4d4827a454510a138cb1b5a439292d5c5d9", + "floats-144.xht": [ + "89e33dc5dcff08ecf50596220bc8c6265c33ddc0", [ null, [ [ - "/css/CSS2/box-display/block-in-inline-003-ref.xht", + "/css/CSS2/floats-clear/floats-144-ref.xht", "==" ] ], {} ] ], - "block-in-inline-007.xht": [ - "da2d6a9c0eb7a40f63eb3519f11d0a3f7d80b0d4", + "floats-145.xht": [ + "b5b5bf2c1f9f3508c3488874fd457b6b26fa8593", [ null, [ [ - "/css/CSS2/box-display/block-in-inline-007-ref.xht", + "/css/CSS2/floats-clear/floats-145-ref.xht", "==" ] ], {} ] ], - "block-in-inline-008.xht": [ - "94317e5b052170ecb59be6b10c7647cd57da169e", + "floats-146.xht": [ + "9aa4be34f0e6207430c833dae02c83a52318fa4e", [ null, [ [ - "/css/CSS2/box-display/block-in-inline-008-ref.xht", + "/css/CSS2/floats-clear/floats-146-ref.xht", "==" ] ], {} ] ], - "block-in-inline-relpos-001.xht": [ - "a5d6d27373361ce80d48559b2ca463555985b53e", + "floats-147.xht": [ + "e75a7e84d8cb3adf9317a92d88e56b7af60bc722", [ null, [ [ - "/css/CSS2/box-display/block-in-inline-relpos-001-ref.xht", + "/css/CSS2/floats-clear/floats-147-ref.xht", "==" ] ], {} ] ], - "block-in-inline-relpos-002.xht": [ - "bc3580083c55ba2dd72c7b34d883a1e0019abd4f", + "floats-149.xht": [ + "cae42669536cf00e267a3feaf4bb2d4a6a968e68", [ null, [ [ - "/css/CSS2/box-display/block-in-inline-relpos-001-ref.xht", + "/css/CSS2/floats-clear/floats-149-ref.xht", "==" ] ], {} ] ], - "box-generation-001.xht": [ - "6d821f5c98ac7bdaefe6bfc2b08cf5aca7c2f34c", + "floats-150.xht": [ + "69764388d38e38b82a26acc839fc3e00b21c007c", [ null, [ [ - "/css/CSS2/box-display/box-generation-001-ref.xht", + "/css/CSS2/floats-clear/floats-150-ref.xht", "==" ] ], {} ] ], - "box-generation-002.xht": [ - "cc6562e9e308854a2242988ba022caf708e34c94", + "floats-152.xht": [ + "42df8c1645521c4b57680866e976953cbce18903", [ null, [ [ - "/css/CSS2/box-display/box-generation-002-ref.xht", + "/css/CSS2/floats-clear/floats-150-ref.xht", "==" ] ], {} ] ], - "containing-block-001.xht": [ - "a323a79b170606aeb91d51349e2756b085e1821e", + "floats-153.xht": [ + "67129c4da2a2ef6ef8f42c6a26e9ffcbf8749da3", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/floats-clear/floats-153-ref.xht", "==" ] ], {} ] ], - "containing-block-002.xht": [ - "2856a48654a5cd039094ed971d6a73c5810b9765", + "floats-154.xht": [ + "5d704febdf714f4b7e9294677f9b26285596bf73", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/floats-clear/floats-154-ref.xht", "==" ] ], {} ] ], - "containing-block-003.xht": [ - "a7bec9509e8ccf7101eb5f0ec3c74cc5c66f84ab", + "floats-bfc-001.xht": [ + "aa97aeed04dfc708dec04ef728fae1ededd715dd", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/floats-clear/floats-bfc-001-ref.xht", "==" ] ], {} ] ], - "containing-block-004.xht": [ - "dc571931a5b53c611201d24dd2f9bf74fd6679d2", + "floats-bfc-002.xht": [ + "3292e3b65047952679c36f1d4dd323b11b2ed69e", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/floats-clear/floats-bfc-001-ref.xht", "==" ] ], {} ] ], - "containing-block-005.xht": [ - "575a1cc1ec4b7ae6bbf2bb18973272f6bed7e458", + "floats-clear-multicol-000.html": [ + "3598a2f7aba955b5ba3e6ee1739bfd468d2b28ea", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/floats-clear/floats-clear-multicol-000-ref.html", "==" ] ], {} ] ], - "containing-block-006.xht": [ - "ef1717b311f9262c12c37ede00ef4ecf97bf4451", + "floats-clear-multicol-001.html": [ + "dbcb3b557b918b6b63a9005cd8ff0de6f7c4f8c1", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/floats-clear/floats-clear-multicol-000-ref.html", "==" ] ], {} ] ], - "containing-block-007.xht": [ - "be6e8ac5540e760a4bfe4d8171070e9e77ffefc2", + "floats-clear-multicol-002.html": [ + "877ffed2c2f37f2bc3d7808cfdbe3ebed313d91c", [ null, [ [ - "/css/CSS2/box-display/containing-block-007-ref.xht", + "/css/CSS2/floats-clear/floats-clear-multicol-000-ref.html", "==" ] ], {} ] ], - "containing-block-008.xht": [ - "d64fcabd5b426154ffd5442c7091c2c70169f96a", + "floats-clear-multicol-003.html": [ + "3f951b67f9fcf3c6384ff29c058ee249b36a047c", [ null, [ [ - "/css/CSS2/box-display/containing-block-008-ref.xht", + "/css/CSS2/floats-clear/floats-clear-multicol-000-ref.html", "==" ] ], {} ] ], - "containing-block-009.xht": [ - "3f81afcb37ced6eccce69f168102cdd1bc5ea590", + "floats-clear-multicol-balancing-000.html": [ + "b034ceab493971d0bd37d4fc185c80677165019a", [ null, [ [ - "/css/CSS2/box-display/containing-block-009-ref.xht", + "/css/CSS2/floats-clear/floats-clear-multicol-balancing-000-ref.html", "==" ] ], {} ] ], - "containing-block-010.xht": [ - "08db1f60aa2bd4f4f8d612d10cb8b1940fb4ab81", + "floats-clear-multicol-balancing-001.html": [ + "5944343c603363864d3509489903db530b1f3f9c", [ null, [ [ - "/css/CSS2/box-display/containing-block-008-ref.xht", + "/css/CSS2/floats-clear/floats-clear-multicol-balancing-000-ref.html", "==" ] ], {} ] ], - "containing-block-019.xht": [ - "7df6b7f4cb5697bfe2b553d577fa8296837ad994", + "floats-clear-multicol-balancing-002.html": [ + "99f86d1d455bb4527b390d7dbb2960198d27d098", [ null, [ [ - "/css/CSS2/box-display/containing-block-019-ref.xht", + "/css/CSS2/floats-clear/floats-clear-multicol-balancing-000-ref.html", "==" ] ], {} ] ], - "containing-block-020.xht": [ - "cc8668e035129b592244276c77c4428306160412", + "floats-clear-multicol-balancing-003.html": [ + "4bc32d833da7c6e1c73e728490a2b4993b4dac95", [ null, [ [ - "/css/CSS2/box-display/containing-block-020-ref.xht", + "/css/CSS2/floats-clear/floats-clear-multicol-balancing-000-ref.html", "==" ] ], {} ] ], - "containing-block-021.xht": [ - "fd36da88da20461de4e1bb559f9bf2b60486f030", + "margin-collapse-018.xht": [ + "f509ad1ac4f8d7c7af8b4cc86e0089fbb001762b", [ null, [ [ - "/css/CSS2/box-display/containing-block-019-ref.xht", + "/css/CSS2/floats-clear/clearance-006-ref.xht", "==" ] ], {} ] ], - "containing-block-022.xht": [ - "2fe09098bfffc5b0d5ceb45ff89552b2e131ec1b", + "margin-collapse-023.xht": [ + "e54c0a203facd15bc72e7fee41bd52044d906ba2", [ null, [ [ - "/css/CSS2/box-display/containing-block-020-ref.xht", + "/css/CSS2/floats-clear/clearance-006-ref.xht", "==" ] ], {} ] ], - "containing-block-023.xht": [ - "dcda232631d867cb2c0aa9a127f15e3fb7938970", + "margin-collapse-024.xht": [ + "2d64922f614edf965f8e98af28eaa972e9929b49", [ null, [ [ - "/css/CSS2/box-display/containing-block-023-ref.xht", + "/css/CSS2/floats-clear/margin-collapse-024-ref.xht", "==" ] ], {} ] ], - "containing-block-026.xht": [ - "a30501d5b02fc51a92063303f49073cc6316c561", + "margin-collapse-027.xht": [ + "fd9a53bd522773038a4f6aefa815072b0bc8e8c0", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/floats-clear/clearance-006-ref.xht", "==" ] ], {} ] ], - "containing-block-027.xht": [ - "839ed069a1cb5a3ad808f054c57d3074c5647f65", + "margin-collapse-031.xht": [ + "13e70e0b3ac9bbceca4733a94c402fcaaabb7b13", [ null, [ [ - "/css/CSS2/box-display/containing-block-027-ref.xht", + "/css/CSS2/floats-clear/margin-collapse-031-ref.xht", "==" ] ], {} ] ], - "containing-block-028.xht": [ - "028057ae0991334714a3eb659c00d34a03c8d989", + "margin-collapse-033.xht": [ + "a86d89c2460988d429b5eb6f7acfd61ba22d682a", [ null, [ [ - "/css/CSS2/box-display/containing-block-028-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "containing-block-029.xht": [ - "027c735645a82b4392e8714d895acbcfea6a2f11", + "margin-collapse-034.xht": [ + "2cc0d1df539ea97193f9905ddd240fd88cf8810f", [ null, [ [ - "/css/CSS2/box-display/containing-block-029-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "containing-block-030.xht": [ - "3f02d8f21495692d15cae085621be88ccc7b2cf7", + "margin-collapse-035.xht": [ + "16168971c2480e314b59c34af23a2a2b748e2ae7", [ null, [ [ - "/css/CSS2/box-display/containing-block-030-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "delete-block-in-inlines-beginning-001.xht": [ - "ccbe7429dbe4cde5c9fb60024ba04c28e8e0904d", + "margin-collapse-121.xht": [ + "8b6141ea3766eed8a38360391523c7baeb747d3f", [ null, [ [ - "/css/CSS2/box-display/delete-block-in-inlines-beginning-001-ref.xht", + "/css/CSS2/floats-clear/margin-collapse-121-ref.xht", "==" ] ], {} ] ], - "delete-block-in-inlines-end-001.xht": [ - "c08f497fe799e2a145f4f8b5f45ad59a473e2de0", + "margin-collapse-122.xht": [ + "17081a2cfe7c792fc1757a05bbbe175ac7b2ee89", [ null, [ [ - "/css/CSS2/box-display/delete-block-in-inlines-beginning-001-ref.xht", + "/css/CSS2/floats-clear/margin-collapse-121-ref.xht", "==" ] ], {} ] ], - "delete-block-in-inlines-middle-001.xht": [ - "d7a15693c18aac11e3446c084e0266b4ef965e89", + "margin-collapse-123.xht": [ + "db83b3417840f2be7b5f95e7aa596452fb930dfb", [ null, [ [ - "/css/CSS2/box-display/delete-block-in-inlines-beginning-001-ref.xht", + "/css/CSS2/floats-clear/margin-collapse-123-ref.xht", "==" ] ], {} ] ], - "delete-inline-in-blocks-beginning-001.xht": [ - "474a86175773244b2ade0f82604e38828a2e1118", + "margin-collapse-125.xht": [ + "42b39e5f9d8f52def76188b12e471b61bdae4fe6", [ null, [ [ - "/css/CSS2/box-display/delete-inline-in-blocks-beginning-001-ref.xht", + "/css/CSS2/floats-clear/margin-collapse-125-ref.xht", "==" ] ], {} ] ], - "delete-inline-in-blocks-end-001.xht": [ - "03411f0d05cc28e28c6ac9e29be0aeb01d5923ed", + "margin-collapse-134.xht": [ + "a777b655cecc89c2111633f9a5286b160a25bc7f", [ null, [ [ - "/css/CSS2/box-display/delete-inline-in-blocks-beginning-001-ref.xht", + "/css/CSS2/floats-clear/margin-collapse-134-ref.xht", "==" ] ], {} ] ], - "delete-inline-in-blocks-middle-001.xht": [ - "a2a80f8c1847ae9b920073f8c6390da416c4e70a", + "margin-collapse-135.xht": [ + "85647a02a0340b5096aad53e7e9b01828399e9e3", [ null, [ [ - "/css/CSS2/box-display/delete-inline-in-blocks-beginning-001-ref.xht", + "/css/CSS2/floats-clear/margin-collapse-135-ref.xht", "==" ] ], {} ] ], - "delete-inline-in-blocks-middle-002.xht": [ - "d524189054c10d15050292a194b32e4713f93372", + "margin-collapse-142.xht": [ + "07fdd758a39de2d52d29814d324819133e7ad788", [ null, [ [ - "/css/CSS2/box-display/delete-inline-in-blocks-middle-002-ref.xht", + "/css/CSS2/floats-clear/margin-collapse-142-ref.xht", "==" ] ], {} ] ], - "delete-inline-in-blocks-middle-003.xht": [ - "fdb53b0eb2f7802842a706316bbf8e2c55ddf2be", + "margin-collapse-157.xht": [ + "ab3ca14b172658afc2042e05cc17f966c7d8d223", [ null, [ [ - "/css/CSS2/box-display/delete-inline-in-blocks-middle-002-ref.xht", + "/css/CSS2/floats-clear/margin-collapse-157-ref.xht", "==" ] ], {} ] ], - "descendant-display-none-001.xht": [ - "e68b219ff1a31645be9780bea143f54f9702e290", + "margin-collapse-158.xht": [ + "31a0a9f6551dfe47e0cf124432e76f936159105f", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/floats-clear/margin-collapse-158-ref.xht", "==" ] ], {} ] ], - "descendant-display-override-001.xht": [ - "de2c9a74f210995f7fc5e9398ad38fd275b1e81e", + "margin-collapse-165.xht": [ + "14a7ccd5f52feee67b5329479eae50a2e19bdc24", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/floats-clear/margin-collapse-165-ref.xht", "==" ] ], {} ] ], - "display-001.xht": [ - "385619e9ed60b5e74912a78909d14a39c24ab21c", + "margin-collapse-166.xht": [ + "7bbd95db7e5f0cc212bad40fbfad1d76968d2a8c", [ null, [ [ - "/css/CSS2/box-display/display-001-ref.xht", + "/css/CSS2/floats-clear/margin-collapse-165-ref.xht", "==" ] ], {} ] ], - "display-002.xht": [ - "81020d33e467b7fbafe1f3bcc60fe658e2c8b10e", + "margin-collapse-clear-002.xht": [ + "c9fd8961d5f42cd9ca96fdfa718391238184c90f", [ null, [ [ - "/css/CSS2/box-display/display-002-ref.xht", + "/css/CSS2/floats-clear/margin-collapse-clear-002-ref.xht", "==" ] ], {} ] ], - "display-005.xht": [ - "44fbe1dfb21a0d2befa7dfadf5e99fefe5489092", + "margin-collapse-clear-003.xht": [ + "f789279aa9778818fa7866956388365c56a79e8a", [ null, [ [ - "/css/CSS2/box-display/display-001-ref.xht", + "/css/CSS2/floats-clear/margin-collapse-clear-003-ref.xht", "==" ] ], {} ] ], - "display-006.xht": [ - "3ebe813d06db313f9c7106a60f3e05a4c43014f6", + "margin-collapse-clear-008.xht": [ + "f8709d9d57df5b1bf5c3e41195c8dc6c1e90550d", [ null, [ [ - "/css/CSS2/box-display/display-001-ref.xht", + "/css/CSS2/floats-clear/margin-collapse-clear-002-ref.xht", "==" ] ], {} ] ], - "display-007.xht": [ - "9b3f7242c027384a366109293265a15a47f65db5", + "margin-collapse-clear-009.xht": [ + "621d968d9b2ab6731196e1e35d8a678586dd0f30", [ null, [ [ - "/css/CSS2/box-display/display-001-ref.xht", + "/css/CSS2/floats-clear/margin-collapse-clear-003-ref.xht", "==" ] ], {} ] ], - "display-008.xht": [ - "bafe117ff8dddadaa085ba1373f70a452eeeb34d", + "margin-collapse-clear-012.xht": [ + "6e48ae4f92a6029dae323a73a651932a0d9dc037", [ null, [ [ - "/css/CSS2/box-display/display-008-ref.xht", + "/css/CSS2/floats-clear/margin-collapse-clear-012-ref.xht", "==" ] ], {} ] ], - "display-009.xht": [ - "e7bc7f80d3cd7af3c81dfe6e681954a612a7684d", + "margin-collapse-clear-013.xht": [ + "bfeddbf02055036ef523a1fcd51b45947cced99a", [ null, [ [ - "/css/CSS2/box-display/display-008-ref.xht", + "/css/CSS2/floats-clear/margin-collapse-clear-012-ref.xht", "==" ] ], {} ] ], - "display-010.xht": [ - "06ce55894345fc6b0d1d60f086b9082bc19eddc5", + "margin-collapse-clear-014.xht": [ + "4dc2282184ae6f62323dd56b29ea9525db2f96b8", [ null, [ [ - "/css/CSS2/box-display/display-010-ref.xht", + "/css/CSS2/floats-clear/margin-collapse-clear-014-ref.xht", "==" ] ], {} ] ], - "display-011.xht": [ - "405290fe4b19fa226079cda2a04236b54b3427b2", + "margin-collapse-clear-015.xht": [ + "ba279bf375ac8cbf78ca850d9af867b9c15d4d98", [ null, [ [ - "/css/CSS2/box-display/display-002-ref.xht", + "/css/CSS2/floats-clear/margin-collapse-clear-015-ref.xht", "==" ] ], {} ] ], - "display-012.xht": [ - "fccc1c44c7790f12189f1c2d28c74a45e7c8c682", + "margin-collapse-clear-016.xht": [ + "717ce1ca6ffe3376e4b431df1c38fd3102e63519", [ null, [ [ - "/css/CSS2/box-display/display-012-ref.xht", + "/css/CSS2/floats-clear/margin-collapse-clear-016-ref.xht", "==" ] ], {} ] ], - "display-013.xht": [ - "43a52c9c5bbdcaaf4e85dcaf7097bab61b596cef", + "margin-collapse-clear-017.xht": [ + "6e0dbf05c53150942139fff0e4636f1a6c177554", [ null, [ [ - "/css/CSS2/box-display/display-012-ref.xht", + "/css/CSS2/floats-clear/margin-collapse-clear-017-ref.xht", "==" ] ], {} ] ], - "display-014.xht": [ - "7cb0591c6e576cb631b96270040df7024dcde26c", + "negative-clearance-after-adjoining-float.html": [ + "698f38079033ac26d746aa4f3b7402bc431dd262", [ null, [ [ - "/css/CSS2/box-display/display-001-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "display-015.xht": [ - "9a2c3e426800828817adb4d323a7a696ae902dab", + "negative-clearance-after-bottom-margin.html": [ + "fb0663945ebf46e347f078a5da0d612d8885bf3a", [ null, [ [ - "/css/CSS2/box-display/display-002-ref.xht", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "display-016.xht": [ - "4367c5f57508c329238b4f39bbf3ad8aac62c99f", + "nested-clearance-new-formatting-context.html": [ + "5e43b25067082c386f76988e043e9ce994311ed4", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/reference/ref-filled-green-200px-square.html", "==" ] ], {} ] ], - "display-017.xht": [ - "30d5522eb511eaa2dae3bc8134a1e655665e6fd4", + "no-clearance-adjoining-opposite-float.html": [ + "01a457ee1fb69fbcd368029a19767b9403a9bd45", [ null, [ [ - "/css/CSS2/box-display/display-002-ref.xht", + "/css/reference/nothing.html", "==" ] ], {} ] ], - "display-018.xht": [ - "d16d648f26b3529d602ed20b4018e6b005c83219", + "no-clearance-due-to-large-margin-after-left-right.html": [ + "bc459d06cde542f8be6f6d3b3553bf2ff72cab35", [ null, [ [ - "/css/CSS2/box-display/display-018-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "display-change-001.xht": [ - "ec33b9f23188395136c476cab38fcdf214c70210", + "no-clearance-due-to-large-margin.html": [ + "cabb1ac850430bbfd96144b6ca080ad6402b7506", [ null, [ [ - "/css/CSS2/box-display/display-change-001-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "display-none-001.xht": [ - "f7760f7ba14054f02bf7db020c3e693330741ea6", + "remove-block-before-self-collapsing-sibling-with-clearance.html": [ + "c7a4006ff4a331b063e7016def43c687fd37eee2", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "display-none-002.xht": [ - "9887d38a61c3bdf2c7995a14134130e50a98cbed", + "second-float-inside-empty-cleared-block-after-margin.html": [ + "ee8bebc53b6b33e821cb4296281fb59c26f7a9fe", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "display-none-003.xht": [ - "f57a6056811e2fef05d2cdc250edc4a831e0d2bf", + "second-float-inside-empty-cleared-block.html": [ + "a383e9a6a21e82fbd0f190d0e21c203ff3f17605", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] - ], - "insert-block-in-blocks-n-inlines-begin-001.xht": [ - "28f5fbd630cd2e63d78f59156770071602e1c917", + ] + }, + "fonts": { + "font-003.xht": [ + "18a6355b6e3d0734b99ec7e0eeab46b88bb7db98", [ null, [ [ - "/css/CSS2/box-display/insert-block-in-blocks-n-inlines-begin-001-ref.xht", + "/css/CSS2/fonts/font-003-ref.html", "==" ] ], {} ] ], - "insert-block-in-blocks-n-inlines-begin-002.xht": [ - "dc10e08ec51ac4e0bb48e6fcbdcc7fe939fef9bd", + "font-011.xht": [ + "b780f85ac3877047965c769d6cca36f97e66e155", [ null, [ [ - "/css/CSS2/box-display/insert-block-in-blocks-n-inlines-begin-002-ref.xht", + "/css/CSS2/reference/no_red_bold_italic_small-caps_ahem.html", "==" ] ], {} ] ], - "insert-block-in-blocks-n-inlines-begin-003.xht": [ - "8b39ff8b5be4858545f8079001d7a77b83c1e7ca", + "font-012.xht": [ + "f805335215f166de6ecbdd4ae5b182f47c178263", [ null, [ [ - "/css/CSS2/box-display/insert-block-in-blocks-n-inlines-begin-003-ref.xht", + "/css/CSS2/reference/no_red_bold_italic_small-caps_ahem.html", "==" ] ], {} ] ], - "insert-block-in-blocks-n-inlines-end-001.xht": [ - "28a25231c457257bcfc904a67685ed5e83771b25", + "font-013.xht": [ + "67b427d1e5d61814ee5f6f8d82b85b5302193b11", [ null, [ [ - "/css/CSS2/box-display/insert-block-in-blocks-n-inlines-end-001-ref.xht", + "/css/CSS2/reference/no_red_bold_italic_small-caps_ahem.html", "==" ] ], {} ] ], - "insert-block-in-blocks-n-inlines-end-002.xht": [ - "b24b74231a2a3c9f1a3326683cc13e639b7399f7", + "font-014.xht": [ + "125ff9d9aadbe9274b4177943ee334854ef9eb40", [ null, [ [ - "/css/CSS2/box-display/insert-block-in-blocks-n-inlines-end-002-ref.xht", + "/css/CSS2/reference/no_red_bold_italic_small-caps_ahem.html", "==" ] ], {} ] ], - "insert-block-in-blocks-n-inlines-end-003.xht": [ - "fed83aa6e88f3b6c10633847746136056d5e35ab", + "font-015.xht": [ + "fca28a748455138f37efa40b12c6fb63cb710fb3", [ null, [ [ - "/css/CSS2/box-display/insert-block-in-blocks-n-inlines-end-003-ref.xht", + "/css/CSS2/reference/no_red_bold_italic_small-caps_ahem.html", "==" ] ], {} ] ], - "insert-block-in-blocks-n-inlines-middle-001.xht": [ - "35aff524abe89ca1967cdfdcc73f1d5d49ecf5e0", + "font-016.xht": [ + "5e24d1653f76088b95ac1d6d95574c162afeccb7", [ null, [ [ - "/css/CSS2/box-display/insert-block-in-blocks-n-inlines-middle-001-ref.xht", + "/css/CSS2/reference/no_red_bold_italic_small-caps_ahem.html", "==" ] ], {} ] ], - "insert-block-in-blocks-n-inlines-middle-002.xht": [ - "dbc4941f675afc43595fbeb9a8923c3a32fd9c80", + "font-029.xht": [ + "bad2252124ed6f08f9d0a3048b2bf074fa4ab109", [ null, [ [ - "/css/CSS2/box-display/insert-block-in-blocks-n-inlines-middle-002-ref.xht", + "/css/CSS2/reference/no_red_bold_italic_small-caps_ahem.html", "==" ] ], {} ] ], - "insert-block-in-blocks-n-inlines-middle-003.xht": [ - "73aa60b0a8cc238dcd0cd71f1d9af5552a92a0a0", + "font-030.xht": [ + "f087230126905ddb1d2f6a6acd0f243da611d69d", [ null, [ [ - "/css/CSS2/box-display/insert-block-in-blocks-n-inlines-middle-003-ref.xht", + "/css/CSS2/reference/no_red_bold_italic_small-caps_ahem.html", "==" ] ], {} ] ], - "insert-block-in-inlines-beginning-001.xht": [ - "ca8f49e35835a0c08233e4dff5630ae3b77b7f30", + "font-031.xht": [ + "53183a6e1c55bba5e70d4119e470d24faf01748c", [ null, [ [ - "/css/CSS2/box-display/insert-block-in-inlines-beginning-001-ref.xht", + "/css/CSS2/reference/no_red_bold_italic_small-caps_ahem.html", "==" ] ], {} ] ], - "insert-block-in-inlines-end-001.xht": [ - "c196757e7012bb5a401ad2205393c1a774d0060a", + "font-032.xht": [ + "92a9ad21c986c96372552ceb0c481f438fc6790e", [ null, [ [ - "/css/CSS2/box-display/insert-block-in-inlines-end-001-ref.xht", + "/css/CSS2/reference/no_red_bold_italic_small-caps_ahem.html", "==" ] ], {} ] ], - "insert-block-in-inlines-middle-001.xht": [ - "9d79d637e90407895416758a28328278fb54f9b4", + "font-042.xht": [ + "597cf9f12d189c8463ca3888aa27bda3a2c0e221", [ null, [ [ - "/css/CSS2/box-display/insert-block-in-inlines-middle-001-ref.xht", + "/css/CSS2/reference/no_red_bold_italic_small-caps_ahem.html", "==" ] ], {} ] ], - "insert-inline-in-blocks-beginning-001.xht": [ - "c57a91b2254f17a707c34cf20154411e119d9757", + "font-043.xht": [ + "b860b2be488157885bd11410fe15f3d85b66b261", [ null, [ [ - "/css/CSS2/box-display/insert-inline-in-blocks-beginning-001-ref.xht", + "/css/CSS2/reference/no_red_bold_italic_small-caps_ahem.html", "==" ] ], {} ] ], - "insert-inline-in-blocks-end-001.xht": [ - "fb3fb51fc16e495289361e7cea103e41bce48399", + "font-051.xht": [ + "fc23ab4c7787aecef8ed9e23d3dff25619577726", [ null, [ [ - "/css/CSS2/box-display/insert-inline-in-blocks-end-001-ref.xht", + "/css/CSS2/fonts/font-051-ref.xht", "==" ] ], {} ] ], - "insert-inline-in-blocks-middle-001.xht": [ - "f7de7048c19e58260039ec828e79d3b7db0c6146", + "font-146.xht": [ + "03af5f5669bcff7938f98e69ca40415be0520df0", [ null, [ [ - "/css/CSS2/box-display/insert-inline-in-blocks-middle-001-ref.xht", + "/css/CSS2/fonts/font-146-ref.xht", "==" ] ], {} ] ], - "insert-inline-in-blocks-middle-002.xht": [ - "a09f06434959f8e567019824512ff1b267c354bb", + "font-148.xht": [ + "4f5a3f1d20ca9b84334da9ead4cc705b4f829e9f", [ null, [ [ - "/css/CSS2/box-display/insert-inline-in-blocks-middle-002-ref.xht", + "/css/CSS2/fonts/font-148-ref.xht", "==" ] ], {} ] ], - "insert-inline-in-blocks-n-inlines-begin-001.xht": [ - "32d3ba544ac8c37534591827bb1ce60592e9c6d2", + "font-applies-to-001.xht": [ + "58ec79b7ed92a1d8a511ea87cb1247a62e990012", [ null, [ [ - "/css/CSS2/box-display/insert-inline-in-blocks-n-inlines-begin-001-ref.xht", + "/css/CSS2/fonts/font-applies-to-001-ref.xht", "==" ] ], {} ] ], - "insert-inline-in-blocks-n-inlines-begin-002.xht": [ - "7f1dd2938409c24a74b58fe455540fbb118e9267", + "font-applies-to-002.xht": [ + "6218c3d2af7378de2310f5f6a4e8c6624d7068d5", [ null, [ [ - "/css/CSS2/box-display/insert-inline-in-blocks-n-inlines-begin-002-ref.xht", + "/css/CSS2/fonts/font-applies-to-001-ref.xht", "==" ] ], {} ] ], - "insert-inline-in-blocks-n-inlines-begin-003.xht": [ - "b9399e426fdb5ed8f995465339baca44ba919945", + "font-applies-to-005.xht": [ + "7231ef02e5e4e51f1553faf4c6fb1f3c09074400", [ null, [ [ - "/css/CSS2/box-display/insert-inline-in-blocks-n-inlines-begin-003-ref.xht", + "/css/CSS2/fonts/font-applies-to-001-ref.xht", "==" ] ], {} ] ], - "insert-inline-in-blocks-n-inlines-end-001.xht": [ - "88997fa4ae167a6416726299b97feece15d04ef2", + "font-applies-to-006.xht": [ + "5e28f48b14b454b5403405d61e9a89ff01e5eaba", [ null, [ [ - "/css/CSS2/box-display/insert-inline-in-blocks-n-inlines-end-001-ref.xht", + "/css/CSS2/fonts/font-applies-to-001-ref.xht", "==" ] ], {} ] ], - "insert-inline-in-blocks-n-inlines-end-002.xht": [ - "72855d3a459c4b18215feedab4dee21c1253d7e7", + "font-applies-to-007.xht": [ + "f01e413b9cf720c5708c6addd96de9f92b3170fb", [ null, [ [ - "/css/CSS2/box-display/insert-inline-in-blocks-n-inlines-end-002-ref.xht", + "/css/CSS2/fonts/font-applies-to-001-ref.xht", "==" ] ], {} ] ], - "insert-inline-in-blocks-n-inlines-end-003.xht": [ - "bd982b78d637861efebe731613a17475804647ec", + "font-applies-to-008.xht": [ + "013732cdaab358318af9d4fa09276fb5b10e7097", [ null, [ [ - "/css/CSS2/box-display/insert-inline-in-blocks-n-inlines-end-003-ref.xht", + "/css/CSS2/fonts/font-applies-to-001-ref.xht", "==" ] ], {} ] ], - "insert-inline-in-blocks-n-inlines-middle-001.xht": [ - "fde80e5f05c8fafe6f3edc2a9161c58077fa52e7", + "font-applies-to-009.xht": [ + "976fa1c87e9a4b680c75b6d1fe602476284b7e71", [ null, [ [ - "/css/CSS2/box-display/insert-inline-in-blocks-n-inlines-middle-001-ref.xht", + "/css/CSS2/fonts/font-applies-to-001-ref.xht", "==" ] ], {} ] ], - "insert-inline-in-blocks-n-inlines-middle-002.xht": [ - "b0073b1da79f59354e8b9b4abef9c9fd478e51ac", + "font-applies-to-010.xht": [ + "7df2020f10983850f2877283e8145e57313d8bbc", [ null, [ [ - "/css/CSS2/box-display/insert-inline-in-blocks-n-inlines-middle-002-ref.xht", + "/css/CSS2/fonts/font-applies-to-001-ref.xht", "==" ] ], {} ] ], - "insert-inline-in-blocks-n-inlines-middle-003.xht": [ - "277d27c72c464936c39979c5569175fec3116c33", + "font-applies-to-011.xht": [ + "669bf667cf26bde94290d1be7dd254e76547ecb9", [ null, [ [ - "/css/CSS2/box-display/insert-inline-in-blocks-n-inlines-middle-003-ref.xht", + "/css/CSS2/fonts/font-applies-to-001-ref.xht", "==" ] ], {} ] ], - "root-box-002.xht": [ - "f7c43460e88d8a077bbe5f105bc5b4208796b1bc", + "font-applies-to-014.xht": [ + "7e3d755a990cede6058f9dc9e4cc7d22cc0e020c", [ null, [ [ - "/css/CSS2/box-display/root-box-002-ref.xht", + "/css/CSS2/fonts/font-applies-to-001-ref.xht", "==" ] ], {} ] ], - "root-box-003.xht": [ - "088b3b257d12f9a3a3ba5657f655e6d17414b62e", + "font-applies-to-015.xht": [ + "3bed6621d86c93e22cc2d0ce140d1075758a5c7f", [ null, [ [ - "/css/CSS2/box-display/root-box-003-ref.xht", + "/css/CSS2/fonts/font-applies-to-001-ref.xht", "==" ] ], {} ] ], - "root-canvas-001.xht": [ - "87d747ee5e6981701ed3df8da3b26dbd8f2e2e9e", + "font-applies-to-016.xht": [ + "08c8f262202a57addbf5d7d4b3e4120883da8641", [ null, [ [ - "/css/CSS2/box-display/root-canvas-001-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] - ] - }, - "cascade": { - "at-import-002.xht": [ - "262cf425154fac6dca65eb22c35096b5b7e87ae3", + ], + "font-applies-to-017.xht": [ + "087ef9ce3f6687aefafe5b8e6559811988e2e19c", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/fonts/font-applies-to-001-ref.xht", "==" ] ], {} ] ], - "at-import-003.xht": [ - "6cd010c088134bfc813e7a79d858eabd3bc46c5a", + "font-family-008.xht": [ + "f1e18cabe86d696fe3e8d1342e84652b50deadd3", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/fonts/font-family-008-ref.html", "==" ] ], {} ] ], - "at-import-004.xht": [ - "e7ad90c77f79bed4cacbd4f01b159cf786b8e063", + "font-family-009.xht": [ + "28e97ff78b22326f9a183207ca32e5ce6a73dfbe", [ null, [ [ - "/css/CSS2/reference/no-red-filler-text-ref.xht", + "/css/CSS2/fonts/font-family-009-ref.xht", "==" ] ], {} ] ], - "at-import-005.xht": [ - "7e2e08396e7f61828c70c868f2d1e55ad649e6c3", + "font-family-011.xht": [ + "9f830f7bacf2c791913b589a05908758da68bee5", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/fonts/font-family-011-ref.xht", "==" ] ], {} ] ], - "at-import-006.xht": [ - "9da0e2d98ed0c39c8854f728e390f2ff48e392cd", + "font-family-013.xht": [ + "022706d610ad24aef7b99fa7507144cdc4353798", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/fonts/font-family-013-ref.xht", "==" ] ], {} ] ], - "at-import-007.xht": [ - "0704cec90525712c10e46a81cc26639226c69b3d", + "font-family-014.xht": [ + "875c94f4218f9ffd68747006d47bb5920cbfdf1a", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/fonts/font-family-013-ref.xht", "==" ] ], {} ] ], - "at-import-009.xht": [ - "a3198aaa2cb581ee702982d4b9b13113504fc444", + "font-family-applies-to-001.xht": [ + "4b1843d849c9a40d17424780fbaf13b71ff7e399", [ null, [ [ - "/css/CSS2/reference/ref-this-text-should-be-green.xht", + "/css/CSS2/fonts/font-family-applies-to-001-ref.xht", "==" ] ], {} ] ], - "at-import-010.xht": [ - "6ec33fe7006f79fa74a84a74d61905db44ed03a6", + "font-family-applies-to-002.xht": [ + "918b67ad69438c04c8284335125464b0e1fa10e0", [ null, [ [ - "/css/CSS2/reference/ref-this-text-should-be-green.xht", + "/css/CSS2/fonts/font-family-applies-to-001-ref.xht", "==" ] ], {} ] ], - "at-import-011.xht": [ - "b1370dda271a8c6e81f941f32497e5c9f4a13d43", + "font-family-applies-to-005.xht": [ + "54735e50dfd16b66f590b68e474c7b925861de0f", [ null, [ [ - "/css/CSS2/reference/ref-this-text-should-be-green.xht", + "/css/CSS2/fonts/font-family-applies-to-001-ref.xht", "==" ] ], {} ] ], - "cascade-005.xht": [ - "e6011975c90bfb7601482457d101c083fd442262", + "font-family-applies-to-006.xht": [ + "82a16a7b4c5f6176fad9be1bc75b0805a08824d6", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/fonts/font-family-applies-to-001-ref.xht", "==" ] ], {} ] ], - "cascade-007.xht": [ - "2ca08df99516fb608e8ac75cfa4111c55c1477e3", + "font-family-applies-to-007.xht": [ + "10d23248847c9c883e212f426d9ebaa54c7b5925", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/fonts/font-family-applies-to-001-ref.xht", "==" ] ], {} ] ], - "cascade-009.xht": [ - "48500e75e7cab80f2482796962bfe9a37cb572bb", + "font-family-applies-to-008.xht": [ + "1f33ff2886c77bad629c820d7e6fad1d7a49969d", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/fonts/font-family-applies-to-001-ref.xht", "==" ] ], {} ] ], - "cascade-009a.xht": [ - "21bf13c9028c34ae0e9a3d79b25c13dd07d7e773", + "font-family-applies-to-009.xht": [ + "2c9eb70764b85de77a391ccf83d58e841a68c27d", [ null, [ [ - "/css/CSS2/cascade/cascade-009a-ref.xht", + "/css/CSS2/fonts/font-family-applies-to-001-ref.xht", "==" ] ], {} ] ], - "cascade-009b.xht": [ - "791d173c82bab6a90203758a4f0c1d1db061b585", + "font-family-applies-to-010.xht": [ + "2d23fbcc19d1ff5ec3365449aa230c2d9ab85c4b", [ null, [ [ - "/css/CSS2/cascade/cascade-009b-ref.xht", + "/css/CSS2/fonts/font-family-applies-to-001-ref.xht", "==" ] ], {} ] ], - "cascade-012.xht": [ - "44ef7cddcd8b5ca070ee2392b630b750f9fd151f", + "font-family-applies-to-011.xht": [ + "3b0ed8fe9838cfd03f9263612f2a4d7c77f2ae09", [ null, [ [ - "/css/CSS2/cascade/cascade-012-ref.xht", + "/css/CSS2/fonts/font-family-applies-to-001-ref.xht", "==" ] ], {} ] ], - "html-attribute-009.xht": [ - "1e915f1dc81328124de863e101e8252d73efc468", + "font-family-applies-to-014.xht": [ + "b3f16462e13130fa43bf41bb08fbc2ad9562b740", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/fonts/font-family-applies-to-001-ref.xht", "==" ] ], {} ] ], - "html-attribute-028.xht": [ - "936a213ba39aa210062c133d7f1411b83b5b1016", + "font-family-applies-to-015.xht": [ + "ffb1b1b3b79a82992ae5057a32196f8395a7bc7b", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/fonts/font-family-applies-to-001-ref.xht", "==" ] ], {} ] ], - "html-precedence-001.xht": [ - "de4b834c38f02c6797432f6431907ffe7b37ded0", + "font-family-applies-to-016.xht": [ + "9582d7828d2370e5dfb4bcf8198bd07828c861ed", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "inherit-computed-001.html": [ - "08f4848f32ed9ae30ff495eb77f4ce64f3fd1906", + "font-family-applies-to-017.xht": [ + "2290068ddfeadba208b0f0c6fb8790b0d8ecc290", [ null, [ [ - "/css/CSS2/cascade/inherit-computed-001-ref.html", + "/css/CSS2/fonts/font-family-applies-to-001-ref.xht", "==" ] ], {} ] ], - "inherit-computed-002.html": [ - "867a8badc2c4432f5ff4c7a488689e136e8f9f31", + "font-family-invalid-characters-001.xht": [ + "a0162da091fe177e0dfc200e7ba29fa85c68ca72", [ null, [ [ - "/css/CSS2/cascade/inherit-computed-002-ref.html", + "/css/CSS2/fonts/font-family-invalid-characters-001-ref.html", "==" ] ], {} ] ], - "sort-by-order-001.xht": [ - "83c43f99756f6e1d47f1fc4a21e7fe0a5682cc59", + "font-family-invalid-characters-002.xht": [ + "298d9c31a8fa16b08003e5ec5114c80310febd07", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/fonts/font-family-invalid-characters-002-ref.html", "==" ] ], {} ] ], - "specificity-001.xht": [ - "d0044ad1b4784e69e1c84b97752e5f7794798dbc", + "font-family-invalid-characters-003.xht": [ + "6f08f61d5fbee61428baa4e531979066ba8c5bf1", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/fonts/font-family-invalid-characters-002-ref.html", "==" ] ], {} ] ], - "specificity-002.xht": [ - "293232ec12d846acddc965ec0085e8442a0f4d09", + "font-family-invalid-characters-004.xht": [ + "dc54d8440dd71cc5e319b8411575883a12e4b899", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/fonts/font-family-invalid-characters-002-ref.html", "==" ] ], {} ] ], - "specificity-003.xht": [ - "e17733e26420acad77544d3254d4fa8bd871c952", + "font-family-invalid-characters-005.xht": [ + "f7c38ce83e674b154fb6bf4d2f44979eaa63fa7a", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/fonts/font-family-invalid-characters-005-ref.html", "==" ] ], {} ] ], - "specificity-004.xht": [ - "edb41a5a42253248403eeaaa299d9a55a7574ac9", + "font-family-invalid-characters-006.xht": [ + "83ecbb6ff8001028175869e101c05daa3a1a46fb", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/fonts/font-family-invalid-characters-006-ref.html", "==" ] ], {} ] ], - "specificity-005.xht": [ - "58c02517390927a21b1962b67d91133cc44774bd", + "font-family-rule-001.xht": [ + "5fe2809ff4c74a5b29ecbc0d47adea62b9e27778", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/fonts/font-family-rule-001-ref.html", "==" ] ], {} ] ], - "specificity-006.xht": [ - "d178b8941bbb5890b193ffe2530818314c2674b2", + "font-family-rule-002a.xht": [ + "f3ad0144a21ceb98a71ae96082fa5c7529fef829", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/fonts/font-family-rule-002a-ref.xht", "==" ] ], {} ] ], - "specificity-007.xht": [ - "3d4bd830c5f40974221533a20627ab0fa417ff4e", + "font-family-rule-005.xht": [ + "414f605216bd245b3a69824e91ecd3e36b87e952", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/fonts/font-family-rule-005-ref.html", "==" ] ], {} ] ], - "specificity-008.xht": [ - "fbf5eac1cb8be3e029578e55d07a54e9809fe690", + "font-family-valid-characters-001.xht": [ + "b385c3d54136e3ae146018dddc0da8ed0b18acb9", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/fonts/font-family-valid-characters-ref.html", "==" ] ], {} ] ], - "specificity-011.xht": [ - "3c3952bd87ce06d40b185fbbf2dc52f160e395a9", + "font-family-valid-characters-002.xht": [ + "fa54f1c492f440320d23270f16383093151b7c5b", [ null, [ [ - "/css/CSS2/cascade/specificity-011-ref.xht", + "/css/CSS2/fonts/font-family-valid-characters-ref.html", "==" ] ], {} ] ], - "specificity-013.xht": [ - "a0089b0f67bd093224c54b6d9a4c0b9e8170ea6d", + "font-matching-rule-009.xht": [ + "fc2e54b7c50a29b79826b8f9da61215699ed944c", [ null, [ [ - "/css/CSS2/cascade/specificity-013-ref.xht", + "/css/CSS2/fonts/font-weight-normal-ref.html", "==" ] ], {} ] - ] - }, - "cascade-import": { - "cascade-import-dynamic-001.xht": [ - "e7e73a46a083319d67b8210e30afdfbf0263c810", + ], + "font-size-001.xht": [ + "45bdc1704afbd4f5fe8038401882c28251dc1a6c", [ null, [ [ - "/css/CSS2/reference/ref-this-text-should-be-green.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "cascade-import-dynamic-002.xht": [ - "0ace1ca13cb0dc2aae9d3e193995f157ab30037e", + "font-size-002.xht": [ + "5f8b20d293a7ab7040e5f82a5c03822755e746a6", [ null, [ [ - "/css/CSS2/reference/ref-this-text-should-be-green.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "cascade-import-dynamic-003.xht": [ - "fd72e336ea12d2c643666187f38559ebc0d889c5", + "font-size-004.xht": [ + "abf7fe01bd492674bf87f2f0d12be0bc51f1eeca", [ null, [ [ - "/css/CSS2/reference/ref-this-text-should-be-green.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "cascade-import-dynamic-004.xht": [ - "006e4cc4d8e349107ebe88da0f79419aeb0e7d7a", + "font-size-005.xht": [ + "41e1181a57bc072e481f8e3eaaa37031c7fe5b52", [ null, [ [ - "/css/CSS2/reference/ref-this-text-should-be-green.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "cascade-import-dynamic-005.xht": [ - "21eb1460b81aa6f67ef54e964031e56bbd4070d1", + "font-size-012.xht": [ + "bb46e9a5defeb99f37e86d17801a6c93d1632f4f", [ null, [ [ - "/css/CSS2/reference/ref-this-text-should-be-green.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "cascade-import-dynamic-006.xht": [ - "7d146e1341ab49da951f69dab48cf0a781fbfad7", + "font-size-013.xht": [ + "ddd289005a017fca2d0dc6ce6063483c69aef021", [ null, [ [ - "/css/CSS2/reference/ref-this-text-should-be-green.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "cascade-import-dynamic-control.xht": [ - "8460793e711a9f22c8eede5c6e30dd86de454ee6", + "font-size-015.xht": [ + "e7980c65e6b981894262cef1b5221f22f8be7e1b", [ null, [ [ - "/css/CSS2/reference/ref-this-text-should-be-green.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] - ] - }, - "colors": { - "color-001.xht": [ - "cbbb323c4be3c76808bce5bebf94dd94054ba505", + ], + "font-size-016.xht": [ + "1489c90b9a1f4049e5039e354056af8178644635", [ null, [ [ - "/css/CSS2/colors/color-001-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "color-002.xht": [ - "3bca3b6987c4cee9215bcac532124df34553c9f6", + "font-size-023.xht": [ + "3f992f9b468700a81949ec4dafb01c4559376769", [ null, [ [ - "/css/CSS2/colors/color-002-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "color-003.xht": [ - "de955098e893ba7765b2a90aaa7c3522d085ddbd", + "font-size-024.xht": [ + "000ccee0b278497788a08c1702a0f820700527df", [ null, [ [ - "/css/CSS2/colors/color-003-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "color-004.xht": [ - "4026d9ee65ffedbdc325bc55001ecd23f665feb0", + "font-size-026.xht": [ + "bc044f2c6c97a3f92cf99fa882c25b4209fd2805", [ null, [ [ - "/css/CSS2/colors/color-004-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "color-005.xht": [ - "49f2d60d50e5a048f726f4bcac45c98e7a895c34", + "font-size-027.xht": [ + "f8e5fa2f624f0e74dbbde1afe17fdf7a796fa206", [ null, [ [ - "/css/CSS2/colors/color-005-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "color-006.xht": [ - "9fdd3e9b836a8e32632cbfcd7dca1bc1e274a16d", + "font-size-034.xht": [ + "db9c444386492211f5d2ae3ee816299096b99f5b", [ null, [ [ - "/css/CSS2/colors/color-006-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "color-007.xht": [ - "c7b745537e64a84cbab961177ab111752c9ac069", + "font-size-035.xht": [ + "f341914f1abb1128dee37ad1b39e9758ce03cd8d", [ null, [ [ - "/css/CSS2/colors/color-002-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "color-008.xht": [ - "519dbd7f1f4c384de4e9f3ff9033bc2a9119f179", + "font-size-037.xht": [ + "96c46102ea14661b4b010b9b61ef3d7f27f04320", [ null, [ [ - "/css/CSS2/colors/color-002-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "color-009.xht": [ - "0d82fccc085e505959df17ba1532c531fc97c85d", + "font-size-038.xht": [ + "56363a0b887ab3be3139d4d55f70a96a6bd3cb90", [ null, [ [ - "/css/CSS2/colors/color-009-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "color-010.xht": [ - "51241a507c1ee27e821f043124c9a29ad7907b29", + "font-size-045.xht": [ + "23b44b4629d834bdf3605b7402d788c1bef03a6f", [ null, [ [ - "/css/CSS2/colors/color-010-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "color-011.xht": [ - "2950e066130b0cec4682cc87767442a25c7c1bfd", + "font-size-046.xht": [ + "fd69ec9063928ad7f57d837ef304ab0099b0539b", [ null, [ [ - "/css/CSS2/colors/color-011-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "color-012.xht": [ - "54e33725d9456261b6f3e18c8d9ed6ba0c1d46d0", + "font-size-048.xht": [ + "baa332abfbaa89af74d24e7057eb1e3a1f7430f3", [ null, [ [ - "/css/CSS2/colors/color-012-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "color-013.xht": [ - "61b0a0edac9662a25ed4f568e45a2a6a1e4692e8", + "font-size-049.xht": [ + "7b9438b1098ce169d64796433ff5b4eb18b5c9ef", [ null, [ [ - "/css/CSS2/colors/color-002-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "color-014.xht": [ - "3de6f574738e3fa72f17b5462e6c8a683d24f58e", + "font-size-056.xht": [ + "5493edaf9dc8bfd84f7974f3a68512ba7a98d137", [ null, [ [ - "/css/CSS2/colors/color-014-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "color-015.xht": [ - "f5cba09b5c19c908888b9899011dcd16f8f81221", + "font-size-057.xht": [ + "564341f58b6f4c45280dcea91045c7c6a64b260b", [ null, [ [ - "/css/CSS2/colors/color-015-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "color-016.xht": [ - "643a98af835a66986a682b26604260cd8acfe6f8", + "font-size-059.xht": [ + "c255bb79d9ba9f7112fadc8b3f5851e4f0583ff7", [ null, [ [ - "/css/CSS2/colors/color-016-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "color-017.xht": [ - "1faddb628d196f062bc99b439dbab183b1c0e22b", + "font-size-060.xht": [ + "99e9a43252ffc2755555b46f259dfb3695bdaa7f", [ null, [ [ - "/css/CSS2/colors/color-017-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "color-018.xht": [ - "ecffe0f5d4c0adc6cb67ff7b8426846b1fbd6fac", + "font-size-067.xht": [ + "bcc6e0085d3f774ba8728100c1340535478d317d", [ null, [ [ - "/css/CSS2/colors/color-002-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "color-019.xht": [ - "2bf43bd69c14727a309bd92c70905265977b9789", + "font-size-068.xht": [ + "71e1863f3948137b3ce058dd6d204ccb0d67639f", [ null, [ [ - "/css/CSS2/colors/color-019-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "color-020.xht": [ - "7a33fccf87e3782b6f7e01b3bba53f88cffd9fce", + "font-size-070.xht": [ + "ccc938e2f5ff1b447ddf3b7694cbff74ef9bda1c", [ null, [ [ - "/css/CSS2/colors/color-020-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "color-021.xht": [ - "0ce481e0f93b9f333f72e60c7d521a8b70fe5188", + "font-size-071.xht": [ + "215967300a216b7c536009bf7f862fcbad3c46a7", [ null, [ [ - "/css/CSS2/colors/color-021-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "color-022.xht": [ - "44807afcac05a27b48b90e3e32da31e8f61d28d4", + "font-size-078.xht": [ + "2dfbe525a0a1670833f62162a9f4bc9a25e3c822", [ null, [ [ - "/css/CSS2/colors/color-022-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "color-023.xht": [ - "33220ab80db632ba21420c92aa0badd430d2f2dc", + "font-size-079.xht": [ + "534c53bc1774f5de2d9ed22337b2ee6d624a99b7", [ null, [ [ - "/css/CSS2/colors/color-002-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "color-024.xht": [ - "0e29e3ea53da530b728c16f9bf73145e0b51c039", + "font-size-081.xht": [ + "ea20bbdea9223b5ec67d845dd316d94ba79ed495", [ null, [ [ - "/css/CSS2/colors/color-002-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "color-025.xht": [ - "9795770761ba402f8cf1293335a8fada8199b24e", + "font-size-082.xht": [ + "882604c4ea3be9ca2177b9591ca9bc4bac9f3a3a", [ null, [ [ - "/css/CSS2/colors/color-002-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "color-026.xht": [ - "03b18efc870e27697ee85cd42bc672e03eba01c9", + "font-size-089.xht": [ + "d6e4b13081253e95743b26220268852c8c98ecea", [ null, [ [ - "/css/CSS2/colors/color-026-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "color-027.xht": [ - "bec008afcbaf7ec6135a769891e6b96449d22a8d", + "font-size-090.xht": [ + "14fd704d74140944995643f523398ba220278fbe", [ null, [ [ - "/css/CSS2/colors/color-027-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "color-028.xht": [ - "ae5e8fda5efd6c83ba2b4152e68dcee0c8177dbe", + "font-size-092.xht": [ + "fb73801a496e004dadabfdb4508226a47b71d417", [ null, [ [ - "/css/CSS2/colors/color-028-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "color-029.xht": [ - "1e996d38e614367c09b9ad8aeb4e70c24f25300e", + "font-size-093.xht": [ + "894d8a46d93233b044c39f490dea70f09912346c", [ null, [ [ - "/css/CSS2/colors/color-006-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "color-031.xht": [ - "9b2e3f01610968b351e15b3af884b099ffe6160d", + "font-size-100.xht": [ + "39f4e210e4d403cad1510a04f83f9ebd9bf8b44d", [ null, [ [ - "/css/CSS2/colors/color-002-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "color-032.xht": [ - "6c10a66f1b61425ac331bde63ce6266b802805fa", + "font-size-101.xht": [ + "605dbf92abed68b60c60ffcb70748cd0129e5cdf", [ null, [ [ - "/css/CSS2/colors/color-032-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "color-033.xht": [ - "eb4fb2eb0f660c2da84e4f60b47849a10c0e5eb8", + "font-size-102.xht": [ + "505165b2bc45be33dc2622ec43b5b5b323955b45", [ null, [ [ - "/css/CSS2/colors/color-033-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "color-034.xht": [ - "24535253c4467ca491943e4186a188df96b9ebe7", + "font-size-119.xht": [ + "48088e0cacf7dd5bbbc59d390d66967b85fddbc8", [ null, [ [ - "/css/CSS2/colors/color-034-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "color-035.xht": [ - "a8a55d0d4152af447a3a8a8ea8be07914ccc5c7d", + "font-size-120.xht": [ + "e6737dc9bebf6c88592e32309b2e82b9668386e8", [ null, [ [ - "/css/CSS2/colors/color-012-ref.xht", + "/css/CSS2/fonts/font-size-120-ref.xht", "==" ] ], {} ] ], - "color-036.xht": [ - "3b70d6d45372862a56b3b96958aec5c77ae1a8fb", + "font-size-121.xht": [ + "fd3c10fb77bccadf93eb9c3d1cee98bc535c8880", [ null, [ [ - "/css/CSS2/colors/color-002-ref.xht", + "/css/CSS2/fonts/font-size-121-ref.xht", "==" ] ], {} ] ], - "color-037.xht": [ - "6c55c51b5fd396021ca48bfdc238ef2c9285d31a", + "font-size-122.xht": [ + "7d2583bea6d8e59831ce0684ef28c83889f204d9", [ null, [ [ - "/css/CSS2/colors/color-037-ref.xht", + "/css/CSS2/fonts/font-size-122-ref.xht", "==" ] ], {} ] ], - "color-038.xht": [ - "f945274b9c71f4d4fc291a5a9574d0bddb89ccbd", + "font-size-123.xht": [ + "f4f73ceba2495823f0a223c535b4c975a19167b5", [ null, [ [ - "/css/CSS2/colors/color-015-ref.xht", + "/css/CSS2/fonts/font-size-123-ref.xht", "==" ] ], {} ] ], - "color-039.xht": [ - "0d57bedd70ef931ec67d53d5c983fafa85d3225a", + "font-size-124.xht": [ + "0954e2a7a3fc53b373561e3294d10fc3eb535748", [ null, [ [ - "/css/CSS2/colors/color-039-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "color-040.xht": [ - "75382609b7d5eed61eb8f54530419298a20fcc5d", + "font-size-applies-to-016.xht": [ + "314d810ad87ebdd7523f4c714ca9d78c2c9cd0cf", [ null, [ [ - "/css/CSS2/colors/color-017-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "color-041.xht": [ - "5f8b43825717d3297c54e61c92e8b7e1437a1797", + "font-style-applies-to-001.xht": [ + "c114b31ed3bad132256a2aecd0b797d3f652b986", [ null, [ [ - "/css/CSS2/colors/color-002-ref.xht", + "/css/CSS2/fonts/font-style-applies-to-001-ref.html", "==" ] ], {} ] ], - "color-042.xht": [ - "108311f383bc4f1bde80e6f6cd1db6b3397cbe13", + "font-style-applies-to-002.xht": [ + "19cffb15ab875eb87ea1d73aaaec37ef0a787fbb", [ null, [ [ - "/css/CSS2/colors/color-042-ref.xht", + "/css/CSS2/fonts/font-style-applies-to-001-ref.html", "==" ] ], {} ] ], - "color-043.xht": [ - "aa4c2500042e2c817472ad5ebe8071895030f581", + "font-style-applies-to-005.xht": [ + "981cc81ff4fa1840daa037ad082b07cd9772b8d6", [ null, [ [ - "/css/CSS2/colors/color-020-ref.xht", + "/css/reference/pass_if_filler_text_slanted.xht", "==" ] ], {} ] ], - "color-044.xht": [ - "5579b1ee13c3b3340899a06a6c9e721fb3361792", + "font-style-applies-to-006.xht": [ + "7714b0f50d26f18e4bf20e633275793e3fd55387", [ null, [ [ - "/css/CSS2/colors/color-044-ref.xht", + "/css/reference/pass_if_filler_text_slanted.xht", "==" ] ], {} ] ], - "color-045.xht": [ - "be7091e498878d4919d2bb3f6b2e81f0b4348abd", + "font-style-applies-to-007.xht": [ + "d4f5dbd057338ac14d5eed7d3c2ab55e01286917", [ null, [ [ - "/css/CSS2/colors/color-022-ref.xht", + "/css/reference/pass_if_filler_text_slanted.xht", "==" ] ], {} ] ], - "color-046.xht": [ - "9732adc739d49cf9fc0141ecedd7f4317c45082d", + "font-style-applies-to-008.xht": [ + "6ad71527446639dfbb40772c022d8132f5fdf3d3", [ null, [ [ - "/css/CSS2/colors/color-002-ref.xht", + "/css/reference/pass_if_filler_text_slanted.xht", "==" ] ], {} ] ], - "color-047.xht": [ - "db607cd7263f72901b62758709bacff4ca044457", + "font-style-applies-to-009.xht": [ + "99c0683efd38f870542c7b8cef43e94c33b0da47", [ null, [ [ - "/css/CSS2/colors/color-002-ref.xht", + "/css/reference/pass_if_filler_text_slanted.xht", "==" ] ], {} ] ], - "color-048.xht": [ - "1f63db1b0205f9340444dc305d2fd22882cff883", + "font-style-applies-to-010.xht": [ + "1185163c42aeace583e7ad687d0af1614bac594a", [ null, [ [ - "/css/CSS2/colors/color-002-ref.xht", + "/css/reference/pass_if_filler_text_slanted.xht", "==" ] ], {} ] ], - "color-049.xht": [ - "85f5500c05f2e9c73376f8f49b6f3e2cf352db23", + "font-style-applies-to-011.xht": [ + "36d7a7d3cefe2928425fa0cec0bc4fba163aa62f", [ null, [ [ - "/css/CSS2/colors/color-049-ref.xht", + "/css/reference/pass_if_filler_text_slanted.xht", "==" ] ], {} ] ], - "color-050.xht": [ - "ef04321c4cb9a2a7563ef8768d251dcc997394ca", + "font-style-applies-to-014.xht": [ + "8abb51d51edb7c29a18b3d548f3ca83b68cebef3", [ null, [ [ - "/css/CSS2/colors/color-002-ref.xht", + "/css/reference/pass_if_filler_text_slanted.xht", "==" ] ], {} ] ], - "color-051.xht": [ - "0d7033fcc878a0c194524c5917724fff95da3a63", + "font-style-applies-to-016.xht": [ + "ca3be4b3a82230b27b223d8ce827b93f49e9b935", [ null, [ [ - "/css/CSS2/colors/color-002-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "color-052.xht": [ - "de534c34967d5ebf964cfd112e21c107c4bff916", + "font-style-applies-to-017.xht": [ + "5c747f442d54d65c380156375b3730a3788dfa2a", [ null, [ [ - "/css/CSS2/colors/color-052-ref.xht", + "/css/CSS2/fonts/font-style-applies-to-001-ref.html", "==" ] ], {} ] ], - "color-053.xht": [ - "d56a8c69b1c17e2627ead5db82d28a849431f0c2", + "font-variant-001.xht": [ + "22a3554c44fa2eaebe16555f975e860aeeefe5cd", [ null, [ [ - "/css/CSS2/colors/color-052-ref.xht", + "/css/CSS2/fonts/font-variant-001-ref.html", "==" ] ], {} ] ], - "color-054.xht": [ - "1f02452e23f45cf9bf330a9f6c13b6e1d87b0c87", + "font-variant-applies-to-001.xht": [ + "65dc2192d5ded695c5c47ccc0f5f62a121d1b283", [ null, [ [ - "/css/CSS2/colors/color-054-ref.xht", + "/css/reference/pass_if_filler_text_match_smallcaps.xht", "==" ] ], {} ] ], - "color-055.xht": [ - "f3385e0b652ac9953ecb260b3b057940fdc2b56d", + "font-variant-applies-to-002.xht": [ + "2cd7f66b5b863798baa3c7cd2438511ee23aa873", [ null, [ [ - "/css/CSS2/colors/color-006-ref.xht", + "/css/reference/pass_if_filler_text_match_smallcaps.xht", "==" ] ], {} ] ], - "color-056.xht": [ - "3d1d8079b1ec2cf860c4f3e1d3e6a4044727981e", + "font-variant-applies-to-005.xht": [ + "2878b176a4da1a3061133ead7170e699385f05e5", [ null, [ [ - "/css/CSS2/colors/color-006-ref.xht", + "/css/reference/pass_if_filler_text_match_smallcaps.xht", "==" ] ], {} ] ], - "color-057.xht": [ - "d3369399128e22e04a657b8c3b8e702675046939", + "font-variant-applies-to-006.xht": [ + "f7447720063d5c511bffe4ad297991369132be37", [ null, [ [ - "/css/CSS2/colors/color-006-ref.xht", + "/css/reference/pass_if_filler_text_match_smallcaps.xht", "==" ] ], {} ] ], - "color-058.xht": [ - "891d93f156429174e6106ff41d11e649c4de68ac", + "font-variant-applies-to-007.xht": [ + "18f0df14e74c950dda6f068e50a54fcd8888d452", [ null, [ [ - "/css/CSS2/colors/color-002-ref.xht", + "/css/reference/pass_if_filler_text_match_smallcaps.xht", "==" ] ], {} ] ], - "color-059.xht": [ - "4e360860b4b542578646884f55dbecd31096145e", + "font-variant-applies-to-008.xht": [ + "569a1fb713da3208c77cadaa8cdb7ed4eab0396e", [ null, [ [ - "/css/CSS2/colors/color-002-ref.xht", + "/css/reference/pass_if_filler_text_match_smallcaps.xht", "==" ] ], {} ] ], - "color-060.xht": [ - "d63b315976ec410bac67d3d1cda0745ad6f457e0", + "font-variant-applies-to-009.xht": [ + "16b1df60603e29c7733024673bba03f372c41d49", [ null, [ [ - "/css/CSS2/colors/color-003-ref.xht", + "/css/reference/pass_if_filler_text_match_smallcaps.xht", "==" ] ], {} ] ], - "color-061.xht": [ - "9a8b1dd5192d19bbc803ffb9c6d9e69cb7126323", + "font-variant-applies-to-010.xht": [ + "017c4196f796fd40f9839ea6596334bdb76414aa", [ null, [ [ - "/css/CSS2/colors/color-002-ref.xht", + "/css/reference/pass_if_filler_text_match_smallcaps.xht", "==" ] ], {} ] ], - "color-062.xht": [ - "53445905e10bdfd29e1da3ddc76bb827de98515f", + "font-variant-applies-to-011.xht": [ + "45ba23c0cf89317fad47a4cb5c77905815bbae52", [ null, [ [ - "/css/CSS2/colors/color-002-ref.xht", + "/css/reference/pass_if_filler_text_match_smallcaps.xht", "==" ] ], {} ] ], - "color-063.xht": [ - "ce6d66b75ed48fe312b1c7855ac81487744ed70b", + "font-variant-applies-to-014.xht": [ + "33d8e03731acbe1c4bde174d9871526c1ddb8a01", [ null, [ [ - "/css/CSS2/colors/color-063-ref.xht", + "/css/reference/pass_if_filler_text_match_smallcaps.xht", "==" ] ], {} ] ], - "color-064.xht": [ - "8c144b91982ddda8b4b0c99ebdfb412ace232109", + "font-variant-applies-to-015.xht": [ + "43bd6a76082624f62fcebb095d15bc0e53091b07", [ null, [ [ - "/css/CSS2/colors/color-063-ref.xht", + "/css/reference/pass_if_filler_text_match_smallcaps.xht", "==" ] ], {} ] ], - "color-065.xht": [ - "366ceaef999c09eee5b85b13fd2311b758c59752", + "font-variant-applies-to-016.xht": [ + "9ba31589062986f7caf1f18b08f1d1810492adc5", [ null, [ [ - "/css/CSS2/colors/color-005-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "color-066.xht": [ - "d0ff349859abb363dc9381b97ef1ef03f83167a7", + "font-variant-applies-to-017.xht": [ + "c087c4b48a7ad277a356ae0f74987858db5f88e6", [ null, [ [ - "/css/CSS2/colors/color-006-ref.xht", + "/css/reference/pass_if_filler_text_match_smallcaps.xht", "==" ] ], {} ] ], - "color-067.xht": [ - "26e211a9124cc82646ed83e80e1f8358b32e67c1", + "font-weight-applies-to-001.xht": [ + "e351ec3dfc119f82f8081e9643a4511d5295ca8b", [ null, [ [ - "/css/CSS2/colors/color-006-ref.xht", + "/css/CSS2/fonts/font-weight-bold-ref.html", "==" ] ], {} ] ], - "color-068.xht": [ - "db83bf1e80544e2cdb5356fb845420de06d68526", + "font-weight-applies-to-002.xht": [ + "09dcd244289d7b8041bd1daebce5069de933fd15", [ null, [ [ - "/css/CSS2/colors/color-006-ref.xht", + "/css/CSS2/fonts/font-weight-bold-ref.html", "==" ] ], {} ] ], - "color-069.xht": [ - "9fa1f4a6a42deac159ba784ed7436cbaafaf0bb9", + "font-weight-applies-to-005.xht": [ + "5228c156d0f907ea5ab25bae5398ba4c45858a64", [ null, [ [ - "/css/CSS2/colors/color-002-ref.xht", + "/css/reference/pass_if_filler_text_match_bold.xht", "==" ] ], {} ] ], - "color-070.xht": [ - "fc77dc33dd64318f2086be3d97a5fdb766c2927d", + "font-weight-applies-to-006.xht": [ + "e9e68adb340e260ede5e9e7a945da9976d7e4b04", [ null, [ [ - "/css/CSS2/colors/color-070-ref.xht", + "/css/reference/pass_if_filler_text_match_bold.xht", "==" ] ], {} ] ], - "color-071.xht": [ - "73d0e3d455a41f40b9552736903a7eb63caf3258", + "font-weight-applies-to-007.xht": [ + "eda231162d24d27b11b078e1718d097afb68ea10", [ null, [ [ - "/css/CSS2/colors/color-002-ref.xht", + "/css/reference/pass_if_filler_text_match_bold.xht", "==" ] ], {} ] ], - "color-072.xht": [ - "cb15f2bebb4591079a420dbdb1add3c2d29b245a", + "font-weight-applies-to-008.xht": [ + "76522784fd2f1d77b1dbcf65ecfe4ea4e6760ab8", [ null, [ [ - "/css/CSS2/colors/color-002-ref.xht", + "/css/reference/pass_if_filler_text_match_bold.xht", "==" ] ], {} ] ], - "color-073.xht": [ - "e424b405e601faf4a3b63368d0eb6ed6d0864f78", + "font-weight-applies-to-009.xht": [ + "75866ee1c6680fc86640e7070b7f014150d20c61", [ null, [ [ - "/css/CSS2/colors/color-073-ref.xht", + "/css/reference/pass_if_filler_text_match_bold.xht", "==" ] ], {} ] ], - "color-074.xht": [ - "ab4f02a6e123a8ca64c940f6b1b3d9c08eb4f5e4", + "font-weight-applies-to-010.xht": [ + "a47c23603812dabf7ce637ee289d77713bda289a", [ null, [ [ - "/css/CSS2/colors/color-073-ref.xht", + "/css/reference/pass_if_filler_text_match_bold.xht", "==" ] ], {} ] ], - "color-075.xht": [ - "325ab22dbeddb302082f1ed010fdc40812b7464b", + "font-weight-applies-to-011.xht": [ + "f6704c676f8a4519c1b146ee85250312ab0e3536", [ null, [ [ - "/css/CSS2/colors/color-075-ref.xht", + "/css/reference/pass_if_filler_text_match_bold.xht", "==" ] ], {} ] ], - "color-076.xht": [ - "a7d7bc7bf04ad1015a895a63355b4b40bc27741f", + "font-weight-applies-to-014.xht": [ + "5fb06c80e3028b0887723fe14a5c582e23824e92", [ null, [ [ - "/css/CSS2/colors/color-012-ref.xht", + "/css/reference/pass_if_filler_text_match_bold.xht", "==" ] ], {} ] ], - "color-077.xht": [ - "d7d082028285830760c1d0286fd7795cef9ea2c0", + "font-weight-applies-to-015.xht": [ + "57fea5b7d26e8fc2767e3eb461b44cc2e997f6d2", [ null, [ [ - "/css/CSS2/colors/color-012-ref.xht", + "/css/reference/pass_if_filler_text_match_bold.xht", "==" ] ], {} ] ], - "color-078.xht": [ - "37d93a04f61308af2866f4566da88b63c52a7008", + "font-weight-applies-to-016.xht": [ + "c0471c20fd79c31fdf44a16c15a50c23aa689e2b", [ null, [ [ - "/css/CSS2/colors/color-012-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "color-079.xht": [ - "b3db446c8586571f0612d02a3d126f1ac1795eab", + "font-weight-applies-to-017.xht": [ + "76737f6cfb5a1acf219ace121068bf85809a7067", [ null, [ [ - "/css/CSS2/colors/color-002-ref.xht", + "/css/CSS2/fonts/font-weight-bold-ref.html", "==" ] ], {} ] ], - "color-080.xht": [ - "31aa42ef4eac8db8ccac33311b4276d7458d55d6", + "font-weight-rule-001.xht": [ + "ffc5cc7c1167bd80f59887f82a5dc5854aa93219", [ null, [ [ - "/css/CSS2/colors/color-009-ref.xht", + "/css/CSS2/fonts/font-weight-normal-ref.html", "==" ] ], {} ] ], - "color-081.xht": [ - "f69dd2bd6b7555186ff9911376e039dfd4dcade3", + "font-weight-rule-003.xht": [ + "c6491d75b313906eb3a678bd029cbb88f971d0cc", [ null, [ [ - "/css/CSS2/colors/color-002-ref.xht", + "/css/CSS2/fonts/font-weight-bold-ref.html", "==" ] ], {} ] ], - "color-082.xht": [ - "3401e0a7d12aa3b922c86121c4bb9c8673a934d3", + "font-weight-rule-004.xht": [ + "f4d2ea7f141ea4a011c8202ff2d918befa651b20", [ null, [ [ - "/css/CSS2/colors/color-002-ref.xht", + "/css/CSS2/fonts/font-weight-bold-ref.html", "==" ] ], {} ] ], - "color-083.xht": [ - "91b3bbb199e47a424d6a37b169316fb2c7408405", + "font-weight-rule-005.xht": [ + "b364741d270711eb5764dfe4d749e0d0fed0671c", [ null, [ [ - "/css/CSS2/colors/color-083-ref.xht", + "/css/CSS2/fonts/font-weight-900-ref.html", "==" ] ], {} ] ], - "color-084.xht": [ - "8b7fed81e3adda2a259d37e8dcd307947c7c9ec6", + "font-weight-rule-006.xht": [ + "2a6bfd226f2fd27d8650450b33db77db53a126dc", [ null, [ [ - "/css/CSS2/colors/color-083-ref.xht", + "/css/CSS2/fonts/font-weight-normal-ref.html", "==" ] ], {} ] ], - "color-085.xht": [ - "fd6e6dc64cc72dcf0cd7a82cb0234370875ab2b6", + "font-weight-rule-007.xht": [ + "2de62468488229177ac3a542df78cb6be928bbdb", [ null, [ [ - "/css/CSS2/colors/color-011-ref.xht", + "/css/CSS2/fonts/font-weight-100-ref.html", "==" ] ], {} ] ], - "color-086.xht": [ - "44d510c18bd38f66df7732fca0a50cb6d2227dea", + "font-weight-rule-008.xht": [ + "510e2d7c1c66d33ebb3fee73c1c28310518b4106", [ null, [ [ - "/css/CSS2/colors/color-012-ref.xht", + "/css/CSS2/fonts/font-weight-bold-ref.html", "==" ] ], {} ] ], - "color-087.xht": [ - "77043a40c5ec49f09fdd0073dcf86d64ad8da4d5", + "fonts-010.xht": [ + "cf5316fccb975bfe2c6a05577001eaf1a0956989", [ null, [ [ - "/css/CSS2/colors/color-012-ref.xht", + "/css/CSS2/fonts/fonts-010-ref.xht", "==" ] ], {} ] ], - "color-088.xht": [ - "29aa25a2d171e31f0bf8e908b25fe2cbe3b5ce85", + "fonts-011.xht": [ + "e218ea98268fd4ddfed3be9138bb136747df6d8a", [ null, [ [ - "/css/CSS2/colors/color-012-ref.xht", + "/css/CSS2/fonts/fonts-011-ref.xht", "==" ] ], {} ] ], - "color-089.xht": [ - "09b5aa3903fe5b08189181e95003525cab034b47", + "fonts-012.xht": [ + "af25d7b783bab5de976a41a287ae5b57f755c919", [ null, [ [ - "/css/CSS2/colors/color-002-ref.xht", + "/css/CSS2/fonts/fonts-012-ref.xht", "==" ] ], {} ] ], - "color-090.xht": [ - "0a28f0a37a4a5eb04661cc26c61a0f5aae435b8a", + "fonts-013.xht": [ + "7661c20b2c09ea349d8b632916f15bbee869644f", [ null, [ [ - "/css/CSS2/colors/color-090-ref.xht", + "/css/CSS2/fonts/fonts-013-ref.xht", "==" ] ], {} ] ], - "color-091.xht": [ - "5305543d2a3315c7e92ebacc239da98ac5c7f5fa", + "fonts-014.xht": [ + "dec823ebbf8190580ceecee725e79169bbf527ff", [ null, [ [ - "/css/CSS2/colors/color-002-ref.xht", + "/css/CSS2/fonts/fonts-013-ref.xht", "==" ] ], {} ] ], - "color-092.xht": [ - "4864039f72a367749466f08689cea2a73f60b81d", + "shand-font-000.xht": [ + "ff01cdb29a97d34e36c9dfff5d415b9c881dab0e", [ null, [ [ - "/css/CSS2/colors/color-002-ref.xht", + "/css/CSS2/fonts/shand-font-000-ref.xht", "==" ] ], {} ] ], - "color-093.xht": [ - "c79c1faac3e6e5a64cb5da71d7c7d09c6d7a21cb", + "shand-font-001.xht": [ + "6cdb234eca134f03c3f65b2fc2e91ea11141d381", [ null, [ [ - "/css/CSS2/colors/color-093-ref.xht", + "/css/CSS2/fonts/shand-font-000-ref.xht", "==" ] ], {} ] ], - "color-094.xht": [ - "09ff6583f457d9bf6a264748902c817127927319", + "shand-font-002.xht": [ + "cd054edfa1598a2c7fef2d586fa1b15b5a1ad24b", [ null, [ [ - "/css/CSS2/colors/color-093-ref.xht", + "/css/CSS2/fonts/shand-font-002-ref.xht", "==" ] ], {} ] ], - "color-095.xht": [ - "e133b672af09e58175d94670c7b8454ceab5428f", + "shand-font-003.xht": [ + "fdb2948a130ff2b69f12575658df3d9fe8f6338a", + [ + null, + [ + [ + "/css/CSS2/fonts/shand-font-002-ref.xht", + "==" + ] + ], + {} + ] + ] + }, + "generated-content": { + "after-content-display-001.xht": [ + "ea45942cfeddb94539ebb5ce75f72d98f3dffb1e", [ null, [ [ - "/css/CSS2/colors/color-095-ref.xht", + "/css/CSS2/generated-content/after-content-display-001-ref.xht", "==" ] ], {} ] ], - "color-096.xht": [ - "ceb224d62c5f8406f9b0891f178658fd7c1c47c1", + "after-content-display-002.xht": [ + "abbcff23beebf678eb81e4fa6ace8d35573da399", [ null, [ [ - "/css/CSS2/colors/color-017-ref.xht", + "/css/CSS2/generated-content/after-content-display-002-ref.xht", "==" ] ], {} ] ], - "color-097.xht": [ - "b0e245ddc3875fc610b32c71bf35f9f36ef32f38", + "after-content-display-003.xht": [ + "e1c300ea9becaa0ef6b6f2dfd07bb024e529fa89", [ null, [ [ - "/css/CSS2/colors/color-017-ref.xht", + "/css/CSS2/generated-content/after-content-display-003-ref.xht", "==" ] ], {} ] ], - "color-098.xht": [ - "4ebe5564397a042257a93d83fabe5d7f36a7b745", + "after-content-display-005.xht": [ + "2498d83e415985a19b4490a290d9cbc6e5a82573", [ null, [ [ - "/css/CSS2/colors/color-017-ref.xht", + "/css/CSS2/generated-content/after-content-display-001-ref.xht", "==" ] ], {} ] ], - "color-099.xht": [ - "3bcce2f1ed315e87f873a1a3e4e6209705428007", + "after-content-display-006.xht": [ + "58f55f3fae3ca15e0010f0a1739f48ee5528a071", [ null, [ [ - "/css/CSS2/colors/color-002-ref.xht", + "/css/CSS2/generated-content/after-content-display-002-ref.xht", "==" ] ], {} ] ], - "color-100.xht": [ - "d6bfba8aa16d8c4aec8ff45b4f1312552b948096", + "after-content-display-007.xht": [ + "e183cb475336e0b26eab882bbc080ff026476ed1", [ null, [ [ - "/css/CSS2/colors/color-014-ref.xht", + "/css/CSS2/generated-content/after-content-display-001-ref.xht", "==" ] ], {} ] ], - "color-101.xht": [ - "306f2b84e50707e939baba7a32acfc770d342351", + "after-content-display-008.xht": [ + "3423c58137f77493ad981f5d8b1a3ee449c1ab31", [ null, [ [ - "/css/CSS2/colors/color-002-ref.xht", + "/css/CSS2/generated-content/after-content-display-002-ref.xht", "==" ] ], {} ] ], - "color-102.xht": [ - "508431035bbdc036c2060b8fb2542cbff72dee5c", + "after-content-display-009.xht": [ + "f238a5af17e12d540ae369aa8aba52c2001be19f", [ null, [ [ - "/css/CSS2/colors/color-002-ref.xht", + "/css/CSS2/generated-content/after-content-display-002-ref.xht", "==" ] ], {} ] ], - "color-103.xht": [ - "15281e045a2f2b5779d1d752b3bd1fb18e3f322c", + "after-content-display-010.xht": [ + "1af512517577f56bcd65a46b3274ee608c836370", [ null, [ [ - "/css/CSS2/colors/color-103-ref.xht", + "/css/CSS2/generated-content/after-content-display-002-ref.xht", "==" ] ], {} ] ], - "color-104.xht": [ - "6079f5b44ea76d91e5d5a92be81c1fd2e360c933", + "after-content-display-011.xht": [ + "8f15dce1b785502a9ad6585ffd5d79c72392bf7d", [ null, [ [ - "/css/CSS2/colors/color-103-ref.xht", + "/css/CSS2/generated-content/after-content-display-002-ref.xht", "==" ] ], {} ] ], - "color-105.xht": [ - "076e67b78d3fd7a9317589bc4dd51dccbb6df71c", + "after-content-display-012.xht": [ + "d1f700dbe7a95377b78f021093ca6decca27c6bd", [ null, [ [ - "/css/CSS2/colors/color-016-ref.xht", + "/css/CSS2/generated-content/after-content-display-012-ref.xht", "==" ] ], {} ] ], - "color-106.xht": [ - "f53813104d51dbf3827f04f4c776aa7e248e29c6", + "after-content-display-013.xht": [ + "e79035060ba87c5ceb62a9991fdbcb9585b4a75c", [ null, [ [ - "/css/CSS2/colors/color-017-ref.xht", + "/css/CSS2/generated-content/after-content-display-012-ref.xht", "==" ] ], {} ] ], - "color-107.xht": [ - "3ba4d20b9ad3d414117321ea6aaa9f8ddeb010c4", + "after-content-display-014.xht": [ + "e9fae96186a01871999e877800e4ec8afb731481", [ null, [ [ - "/css/CSS2/colors/color-017-ref.xht", + "/css/CSS2/generated-content/after-content-display-002-ref.xht", "==" ] ], {} ] ], - "color-108.xht": [ - "a89e3ee562023bbacb249b2f03a12df241a66907", + "after-content-display-015.xht": [ + "41720a4a7006cacd786c061024845b73ccfd83b7", [ null, [ [ - "/css/CSS2/colors/color-017-ref.xht", + "/css/CSS2/generated-content/after-content-display-002-ref.xht", "==" ] ], {} ] ], - "color-109.xht": [ - "d0ffb7df9b422dc38516ea66a09622faeaaeb4a8", + "after-content-display-016.xht": [ + "6f53a052d6f104208ea345cbc452ff130a01aeba", [ null, [ [ - "/css/CSS2/colors/color-002-ref.xht", + "/css/CSS2/generated-content/after-content-display-012-ref.xht", "==" ] ], {} ] ], - "color-110.xht": [ - "c9be48fcc341b7da50b5074432fca2147155e608", + "after-content-display-017.xht": [ + "250534a4814e547368961a49b7a18835a5572b46", [ null, [ [ - "/css/CSS2/colors/color-110-ref.xht", + "/css/CSS2/generated-content/after-content-display-002-ref.xht", "==" ] ], {} ] ], - "color-111.xht": [ - "73090dea16a6f5762cd05b5f6d33dd7c9bae05e9", + "after-content-display-018.xht": [ + "8e3ac35fc818e4e27b8ed9ab3c69dd970ca659fa", [ null, [ [ - "/css/CSS2/colors/color-002-ref.xht", + "/css/CSS2/generated-content/after-content-display-001-ref.xht", "==" ] ], {} ] ], - "color-112.xht": [ - "c00cb43771d21a4871cfc9637b0b9b6dc483d43d", + "after-inheritable-001.xht": [ + "d9f06844453b216ff45b6245242e85c1f3b327ba", [ null, [ [ - "/css/CSS2/colors/color-002-ref.xht", + "/css/CSS2/generated-content/after-inheritable-001-ref.html", "==" ] ], {} ] ], - "color-113.xht": [ - "46315c97ae010a9ab2524c2824bdb6194f6ddfcf", + "after-inheritable-002.xht": [ + "c99290f862e6bddde3913ec8934d48b3c67a84a5", [ null, [ [ - "/css/CSS2/colors/color-113-ref.xht", + "/css/CSS2/generated-content/after-inheritable-002-ref.html", "==" ] ], {} ] ], - "color-114.xht": [ - "f1160978b7335781f9f0a875ebb18a6507c25c66", + "after-location-001.xht": [ + "b1e4974824c49b1e2c77202217ab8201554de7d1", [ null, [ [ - "/css/CSS2/colors/color-113-ref.xht", + "/css/CSS2/generated-content/after-location-001-ref.html", "==" ] ], {} ] ], - "color-115.xht": [ - "bd30598487c7327a2612c0a442ab173367330e64", + "before-after-001.xht": [ + "05351a04301b09643d6e42ec6b5eee959895cc84", [ null, [ [ - "/css/CSS2/colors/color-115-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "color-116.xht": [ - "5aa956c0d65e56420744ebed9e979d0b898692f3", + "before-after-002.xht": [ + "fcd24380d21602613021cc1fd2011d704ebe35a6", [ null, [ [ - "/css/CSS2/colors/color-022-ref.xht", + "/css/CSS2/generated-content/content-003-ref.html", "==" ] ], {} ] ], - "color-117.xht": [ - "fdff7c6edc141075ebbfee078dc453dc70f25de8", + "before-after-011.xht": [ + "60fb721b8ce0aace97dde2e30a273666ca8cc105", [ null, [ [ - "/css/CSS2/colors/color-022-ref.xht", + "/css/CSS2/generated-content/before-after-011-ref.xht", "==" ] ], {} ] ], - "color-118.xht": [ - "e52ff649676cbac2ef84222448c24e2842b6671f", + "before-after-display-types-001.xht": [ + "2ced98b971bfaee80dedb05d61731c6a5aecb5ba", [ null, [ [ - "/css/CSS2/colors/color-022-ref.xht", + "/css/CSS2/generated-content/before-after-display-types-001-ref.xht", "==" ] ], {} ] ], - "color-119.xht": [ - "e30e50be3726673a1e22520baf29cff1c1e8068c", + "before-after-dynamic-attr-001.xht": [ + "acde603c1d54ad5d894e4df2ad41edf151d39fb9", [ null, [ [ - "/css/CSS2/colors/color-002-ref.xht", + "/css/CSS2/generated-content/before-after-dynamic-attr-001-ref.xht", "==" ] ], {} ] ], - "color-120.xht": [ - "601b866f963832b07a366fb23d66210cd1148b99", + "before-after-dynamic-restyle-001.xht": [ + "bafa418f7cc80830166b00d80caffd2c90aa23bb", [ null, [ [ - "/css/CSS2/colors/color-019-ref.xht", + "/css/CSS2/generated-content/before-after-dynamic-restyle-001-ref.xht", "==" ] ], {} ] ], - "color-121.xht": [ - "1b7cc721a1596641f33b4f9a3079a7e62e0bf059", + "before-after-floated-001.xht": [ + "9a3cfc0c8915e6dabe3301450b2ed7dba633d04d", [ null, [ [ - "/css/CSS2/colors/color-002-ref.xht", + "/css/CSS2/generated-content/before-after-floated-001-ref.xht", "==" ] ], {} ] ], - "color-122.xht": [ - "36b9ab53767e781cac7c0040fdbc0a763617f88d", + "before-after-images-001.xht": [ + "2d359ba7127f7672f1368742284e38aa1cede441", [ null, [ [ - "/css/CSS2/colors/color-002-ref.xht", + "/css/CSS2/generated-content/before-after-images-001-ref.xht", "==" ] ], {} ] ], - "color-123.xht": [ - "b90e61fd4008665fbcaa8edaabe50bbe1b9da725", + "before-after-positioned-001.xht": [ + "37b22f31ffcff03dcda514cb11ba559412363468", [ null, [ [ - "/css/CSS2/colors/color-123-ref.xht", + "/css/CSS2/generated-content/before-after-positioned-001-ref.xht", "==" ] ], {} ] ], - "color-124.xht": [ - "59c84bd8a8eedcee7e63d599225dc1dda213ca34", + "before-after-positioned-002.html": [ + "30a2649d935ae60f22de40eda87fc6eaed9ccea8", [ null, [ [ - "/css/CSS2/colors/color-123-ref.xht", + "/css/CSS2/generated-content/before-after-positioned-002-ref.html", "==" ] ], {} ] ], - "color-125.xht": [ - "13fa480d977a70433a1c5b9db56e1f91d00ab282", + "before-after-positioned-003.html": [ + "f187b2bad0a1d28a7948801aee8f082888f268f5", [ null, [ [ - "/css/CSS2/colors/color-021-ref.xht", + "/css/CSS2/generated-content/before-after-positioned-002-ref.html", "==" ] ], {} ] ], - "color-126.xht": [ - "7699694de8192bbc116faa9e81475878bb1afc9b", + "before-after-positioned-004.html": [ + "99147574a8cf382e56d03c2765cba9e003213a8f", [ null, [ [ - "/css/CSS2/colors/color-022-ref.xht", + "/css/CSS2/generated-content/before-after-positioned-004-ref.html", "==" ] ], {} ] ], - "color-127.xht": [ - "ad173302715472145ec3de5fdc6317abb8a15c66", + "before-after-table-parts-001.xht": [ + "f9eb998ebc3d49377e6a3f45b40cd22ddd70287b", [ null, [ [ - "/css/CSS2/colors/color-022-ref.xht", + "/css/CSS2/generated-content/before-after-table-parts-001-ref.xht", "==" ] ], {} ] ], - "color-128.xht": [ - "74bd11b4aa5a21198672596effdb692bfe234868", + "before-after-table-whitespace-001.xht": [ + "f299398a5b189be1d80a7fc13d8f9ebe318f9be6", [ null, [ [ - "/css/CSS2/colors/color-022-ref.xht", + "/css/CSS2/generated-content/before-after-table-whitespace-001-ref.xht", "==" ] ], {} ] ], - "color-129.xht": [ - "cb0e6e0d3fb6d1aee2a58bcc1f617e19a9fa8760", + "before-content-display-001.xht": [ + "122dbde1c6b61443922820997945931cb5e0f4bc", [ null, [ [ - "/css/CSS2/colors/color-129-ref.xht", + "/css/CSS2/generated-content/after-content-display-001-ref.xht", "==" ] ], {} ] ], - "color-130.xht": [ - "9eb2cbb344e402d287e92ea12b578608de588afa", + "before-content-display-002.xht": [ + "610926ba50a8c810360ebf5808745a152c2b6c4c", [ null, [ [ - "/css/CSS2/colors/color-130-ref.xht", + "/css/CSS2/generated-content/after-content-display-002-ref.xht", "==" ] ], {} ] ], - "color-131.xht": [ - "010a0ddc1cfaabea7ff7c9943e847e998dab9ff2", + "before-content-display-003.xht": [ + "2ec13d1dec4c721b85d90011396009a540189ed0", [ null, [ [ - "/css/CSS2/colors/color-131-ref.xht", + "/css/CSS2/generated-content/before-content-display-003-ref.xht", "==" ] ], {} ] ], - "color-132.xht": [ - "c3fa91422f630fa30c9a5f5c8136615616fc691f", + "before-content-display-005.xht": [ + "199b1f9dff4df45bf110dc487bc748ad1af2dc89", [ null, [ [ - "/css/CSS2/colors/color-132-ref.xht", + "/css/CSS2/generated-content/after-content-display-001-ref.xht", "==" ] ], {} ] ], - "color-133.xht": [ - "7df487075910bf7d8f552083bea38b6fea196a60", + "before-content-display-006.xht": [ + "1bdb0da79f95ce65094da36dafa251f25e1e416d", [ null, [ [ - "/css/CSS2/colors/color-133-ref.xht", + "/css/CSS2/generated-content/after-content-display-002-ref.xht", "==" ] ], {} ] ], - "color-134.xht": [ - "6366437e6169e3e32a42c98631185869c5435419", + "before-content-display-007.xht": [ + "0e14e8c6310c87e3e1e90446d75fc245c458f17a", [ null, [ [ - "/css/CSS2/colors/color-134-ref.xht", + "/css/CSS2/generated-content/after-content-display-001-ref.xht", "==" ] ], {} ] ], - "color-135.xht": [ - "1ae5b5f62acc1f23df7136847f02604566210775", + "before-content-display-008.xht": [ + "6d4e660086718663f377369ca8bf31c6b401f50d", [ null, [ [ - "/css/CSS2/colors/color-135-ref.xht", + "/css/CSS2/generated-content/after-content-display-002-ref.xht", "==" ] ], {} ] ], - "color-136.xht": [ - "aadbc51389525a9593878ef7ab3d3fb7b3c3da0d", + "before-content-display-009.xht": [ + "91c02ddb3b713b3c35d41ecc485b99da42374c52", [ null, [ [ - "/css/CSS2/colors/color-136-ref.xht", + "/css/CSS2/generated-content/after-content-display-002-ref.xht", "==" ] ], {} ] ], - "color-137.xht": [ - "729e7faece2e3bb4909c122d0de11551ef5143cf", + "before-content-display-010.xht": [ + "92cdbd70fcce0eb8663420b3dc123c82d36c07dc", [ null, [ [ - "/css/CSS2/colors/color-137-ref.xht", + "/css/CSS2/generated-content/after-content-display-002-ref.xht", "==" ] ], {} ] ], - "color-138.xht": [ - "ad0ba8f164ac0f63160a5047bb62239e662fb3f2", + "before-content-display-011.xht": [ + "806649d69fae315e5e7bb2cdd453b290570251bb", [ null, [ [ - "/css/CSS2/colors/color-138-ref.xht", + "/css/CSS2/generated-content/after-content-display-002-ref.xht", "==" ] ], {} ] ], - "color-139.xht": [ - "9a5f2f154451549bc48e9a3a2e24b0ade54e1eab", + "before-content-display-012.xht": [ + "27567bb7201650ef5515cefc49b05166384093e2", [ null, [ [ - "/css/CSS2/colors/color-139-ref.xht", + "/css/CSS2/generated-content/after-content-display-012-ref.xht", "==" ] ], {} ] ], - "color-140.xht": [ - "7a3d95c0f6e5c4716c7f26aa6842a4928b55cec2", + "before-content-display-013.xht": [ + "b49618c8f32798631783df966bc7df521c15160d", [ null, [ [ - "/css/CSS2/colors/color-140-ref.xht", + "/css/CSS2/generated-content/after-content-display-012-ref.xht", "==" ] ], {} ] ], - "color-141.xht": [ - "e4f5d4d8cc6ee7f46dfbeedbe0c2d3d616d7e048", + "before-content-display-014.xht": [ + "eeb0847632447dbae204411f477c7fa88fbd9018", [ null, [ [ - "/css/CSS2/colors/color-141-ref.xht", + "/css/CSS2/generated-content/after-content-display-002-ref.xht", "==" ] ], {} ] ], - "color-142.xht": [ - "dbab988bced54f59c9f06a4cf4b10db339669441", + "before-content-display-015.xht": [ + "9808bfff86eebeb9d6fb08768dd018f524286239", [ null, [ [ - "/css/CSS2/colors/color-142-ref.xht", + "/css/CSS2/generated-content/after-content-display-002-ref.xht", "==" ] ], {} ] ], - "color-143.xht": [ - "0d80203ccbbd52f4ad7a6f0b80aadfd991571c3e", + "before-content-display-016.xht": [ + "88b0bdbfa0b8a3489f390035346c471ed5435f89", [ null, [ [ - "/css/CSS2/colors/color-143-ref.xht", + "/css/CSS2/generated-content/after-content-display-012-ref.xht", "==" ] ], {} ] ], - "color-144.xht": [ - "35c22c12c126569aa66f7eb032bbe3a216efe0c3", + "before-content-display-017.xht": [ + "8d0a59d3c216dda8bcb51471932ddcb2413a98f7", [ null, [ [ - "/css/CSS2/colors/color-144-ref.xht", + "/css/CSS2/generated-content/after-content-display-002-ref.xht", "==" ] ], {} ] ], - "color-145.xht": [ - "ba6467f94f7da3a76eb208d4d6d3c82ad94e9e4d", + "before-content-display-018.xht": [ + "35831c3abf411479b23f708c63505b3d7db7c199", [ null, [ [ - "/css/CSS2/colors/color-145-ref.xht", + "/css/CSS2/generated-content/after-content-display-001-ref.xht", "==" ] ], {} ] ], - "color-174.xht": [ - "93bff69ec385f2d454a149c09e356febacd56e62", + "before-inheritable-001.xht": [ + "bf9a22ffa938fac420afcd0c8ffaf5cb06eea856", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/generated-content/after-inheritable-001-ref.html", "==" ] ], {} ] ], - "color-175.xht": [ - "e082f3be76fdbbd6c2a4b45be570feadaafb4e19", + "before-inheritable-002.xht": [ + "d2d32efdc294e95e354490670bc25c36515083af", [ null, [ [ - "/css/CSS2/colors/color-175-ref.xht", + "/css/CSS2/generated-content/after-inheritable-002-ref.html", "==" ] ], {} ] ], - "color-176.xht": [ - "af01bb36a4d127549a911dceaa1cb8ebd7207ca1", + "before-location-001.xht": [ + "f8ac26c52e170865da298c7b90cad77d264acbb8", [ null, [ [ - "/css/CSS2/reference/ref-this-text-should-be-green.xht", + "/css/CSS2/generated-content/before-location-001-ref.html", "==" ] ], {} ] ], - "color-177.xht": [ - "acc7f01af7c43eebb7ab348ccc6f1b7a5c9ac840", + "bidi-generated-content-001.xht": [ + "11e106254f9bceb3f7e40e500b0294d4572fbfdd", [ null, [ [ - "/css/CSS2/colors/color-175-ref.xht", + "/css/CSS2/generated-content/bidi-generated-content-001-ref.html", "==" ] ], {} ] ], - "color-applies-to-001.xht": [ - "5d7dfb1be098bc577654d65406d3c022999342ea", + "bidi-generated-content-002.xht": [ + "f2c04930d78b49035628885a6385b9d658005b63", [ null, [ [ - "/css/CSS2/colors/color-applies-to-001-ref.xht", + "/css/CSS2/generated-content/bidi-generated-content-002-ref.html", "==" ] ], {} ] ], - "color-applies-to-002.xht": [ - "830cbb25038030c6e15a08a1965e0dd61b370c65", + "content-001.xht": [ + "da3acc30f1285d425b03108c0487a3d1664fcb55", [ null, [ [ - "/css/CSS2/colors/color-applies-to-001-ref.xht", + "/css/CSS2/generated-content/content-001-ref.html", "==" ] ], {} ] ], - "color-applies-to-003.xht": [ - "e60baaa549987f016611f916c8c62c331bac20da", + "content-002.xht": [ + "63676c9f4daabd8cd7116af44c03b7ca00cee645", [ null, [ [ - "/css/CSS2/colors/color-applies-to-001-ref.xht", + "/css/CSS2/generated-content/content-001-ref.html", "==" ] ], {} ] ], - "color-applies-to-004.xht": [ - "7cc6c0fe95cce17a1602b73b62831f8ab960cc5c", + "content-003.xht": [ + "2262466da6b738e73cc650f6cdc232c297f1a114", [ null, [ [ - "/css/CSS2/colors/color-applies-to-001-ref.xht", + "/css/CSS2/generated-content/content-003-ref.html", "==" ] ], {} ] ], - "color-applies-to-005.xht": [ - "a24c90c72b6fd2cee7c6a4d9e2374e98d11ec72c", + "content-004.xht": [ + "1388f76d475f5c208dee3c5c50128161f6facf86", [ null, [ [ - "/css/CSS2/colors/color-applies-to-005-ref.xht", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "color-applies-to-006.xht": [ - "6ab6c05aefc31fcf63d60846b9206493badeb7cf", + "content-005.xht": [ + "76a4efac956a8c55ca647ae56a7f95b4e234c407", [ null, [ [ - "/css/CSS2/colors/color-applies-to-005-ref.xht", + "/css/CSS2/generated-content/content-005-ref.html", "==" ] ], {} ] ], - "color-applies-to-007.xht": [ - "0072e8852ce86cbcf9f30a4b86ffb35501010d54", + "content-006.xht": [ + "dc79cffa06411cacc6bcb21794b1470c4573645c", [ null, [ [ - "/css/CSS2/colors/color-applies-to-001-ref.xht", + "/css/CSS2/generated-content/content-006-ref.html", "==" ] ], {} ] ], - "color-applies-to-008.xht": [ - "ff93a026438dd6a2c31248e93a03c78ce7668c67", + "content-007.xht": [ + "d0fccb76a29db9cd9a514880d327057190762ed6", [ null, [ [ - "/css/CSS2/colors/color-applies-to-001-ref.xht", + "/css/CSS2/generated-content/content-007-ref.html", "==" ] ], {} ] ], - "color-applies-to-009.xht": [ - "b4eef6f59200423eca421c46c5a1f18dad98e93b", + "content-009.xht": [ + "1685289920e08961ab921dca9a203bfaad502c41", [ null, [ [ - "/css/CSS2/colors/color-applies-to-001-ref.xht", + "/css/CSS2/generated-content/content-005-ref.html", "==" ] ], {} ] ], - "color-applies-to-012.xht": [ - "1824f953ca51eeea8da8a6ba3795f05017da665c", + "content-010.xht": [ + "188543d7de84e38d3d418e945b45291c95a2048e", [ null, [ [ - "/css/CSS2/colors/color-applies-to-001-ref.xht", + "/css/CSS2/generated-content/content-010-ref.html", "==" ] ], {} ] ], - "color-applies-to-013.xht": [ - "4a3fdadd9166ce9a63ba19ae2bef3ab5d2f50e85", + "content-011.xht": [ + "fc6c274069032b0d1665fa0b0175137504749712", [ null, [ [ - "/css/CSS2/colors/color-applies-to-001-ref.xht", + "/css/CSS2/generated-content/content-011-ref.html", "==" ] ], {} ] ], - "color-applies-to-014.xht": [ - "41772b0781f7cc83dfb283d07db04a0a98742550", + "content-012.xht": [ + "3c9aa6e54b8ebb7dd3cd974c3e48d335b9a7211f", [ null, [ [ - "/css/CSS2/colors/color-applies-to-001-ref.xht", + "/css/CSS2/generated-content/content-012-ref.html", "==" ] ], {} ] ], - "color-applies-to-015.xht": [ - "a365889658b1106815d645d0421188b647622205", + "content-013.xht": [ + "87a3ccd25aa3408ca8948de62e003abbc4a6fc85", [ null, [ [ - "/css/CSS2/colors/color-applies-to-001-ref.xht", + "/css/CSS2/generated-content/content-013-ref.html", "==" ] ], {} ] ], - "colors-007.xht": [ - "142df128a05d6f9c4077c08be5d249342e0884c2", + "content-014.xht": [ + "a1b60da6fa9e04abdbfc579f6291ea44d4ce7e97", [ null, [ [ - "/css/CSS2/colors/colors-007-ref.xht", + "/css/CSS2/generated-content/content-014-ref.html", "==" ] ], {} ] - ] - }, - "css-e-notation-test-1.html": [ - "1391f4b9deb0aa709a592975b4905dd83a632464", - [ - null, + ], + "content-015.xht": [ + "082219e753a009fc13cb3d90ffc1900ca63bfa38", [ - [ - "/css/CSS2/css-e-notation-ref-1.html", - "==" - ] - ], - {} - ] - ], - "css-e-notation-test-2.html": [ - "8bbceab0bec052d5f68457888d9f8082afe62785", - [ - null, - [ - [ - "/css/CSS2/css-e-notation-ref-2.html", - "==" - ] - ], - {} - ] - ], - "css1": { - "c11-import-000.xht": [ - "f214001d11c66c4c33f623b3e6adf7780001f10c", - [ - null, + null, [ [ - "/css/CSS2/css1/c11-import-000-ref.xht", + "/css/CSS2/generated-content/content-015-ref.html", "==" ] ], {} ] ], - "c12-grouping-000.xht": [ - "0cea3173dc73642fafb9091f604584ea07247711", + "content-016.xht": [ + "1513ce024091ba889c7f83a8fe34ce6ad11d00e4", [ null, [ [ - "/css/CSS2/css1/c12-grouping-000-ref.xht", + "/css/CSS2/generated-content/content-016-ref.html", "==" ] ], {} ] ], - "c13-inheritance-000.xht": [ - "a5ddcaab18f0651861bbbfd259058086276ba8ee", + "content-017.xht": [ + "8e41792b1e59e76a6c2694538b75deaaad1605c7", [ null, [ [ - "/css/CSS2/css1/c13-inheritance-000-ref.xht", + "/css/CSS2/generated-content/content-017-ref.html", "==" ] ], {} ] ], - "c14-classes-000.xht": [ - "a6e33c6ebab2ad103feb447121919f1c47d3c36f", + "content-018.xht": [ + "269d04f3185f8c0752b43442170ea9b6097de5b3", [ null, [ [ - "/css/CSS2/css1/c14-classes-000-ref.xht", + "/css/CSS2/generated-content/content-014-ref.html", "==" ] ], {} ] ], - "c15-ids-000.xht": [ - "a018acce83eadb50004dad17030c7afd8012cdf3", + "content-019.xht": [ + "07ad5767fb9447234c97fcd477418a7fc2be8763", [ null, [ [ - "/css/CSS2/css1/c12-grouping-000-ref.xht", + "/css/CSS2/generated-content/content-015-ref.html", "==" ] ], {} ] ], - "c15-ids-001.xht": [ - "4c8fd7a1f6c9aa198522f7d5b84d65c17f28f267", + "content-020.xht": [ + "a2f82d47b700c76b201533f10e813036d8b670a1", [ null, [ [ - "/css/CSS2/css1/c15-ids-001-ref.xht", + "/css/CSS2/generated-content/content-001-ref.html", "==" ] ], {} ] ], - "c16-descendant-000.xht": [ - "97c6c5f2bfc8c6b7be4ee310737067e24732eb8a", + "content-021.xht": [ + "48bc22d22f3b4e78cbc044209cea75b49f80d20f", [ null, [ [ - "/css/CSS2/css1/c16-descendant-000-ref.xht", + "/css/CSS2/generated-content/content-021-ref.html", "==" ] ], {} ] ], - "c16-descendant-001.xht": [ - "6dbd9073ec4329809fcc21f7072d7ef611970bf6", + "content-022.xht": [ + "6559e494807756c4b332863e7963e8f2df4978eb", [ null, [ [ - "/css/CSS2/css1/c16-descendant-001-ref.xht", + "/css/CSS2/generated-content/content-022-ref.html", "==" ] ], {} ] ], - "c16-descendant-002.xht": [ - "d7383e786e4f0cf55a6e5f03a0a4e27d0327eac9", + "content-023.xht": [ + "71e0f3b424c3213e5b0b2237186e515300ce9db9", [ null, [ [ - "/css/CSS2/reference/ref-this-text-should-be-green.xht", + "/css/CSS2/generated-content/content-023-ref.html", "==" ] ], {} ] ], - "c17-comments-000.xht": [ - "6a8357f46d8db3c8536c045bf7a2f1848fe19049", + "content-025.xht": [ + "8d247697776085bf189cec27066aa1e302d7384c", [ null, [ [ - "/css/CSS2/css1/c17-comments-000-ref.xht", + "/css/CSS2/generated-content/content-021-ref.html", "==" ] ], {} ] ], - "c17-comments-001.xht": [ - "617b52a529812c0d35ce09134a4782e195d23021", + "content-026.xht": [ + "59efafc59fbd8f2d2914f9962629e5a0be5fdaf2", [ null, [ [ - "/css/CSS2/css1/c17-comments-001-ref.xht", + "/css/CSS2/generated-content/content-026-ref.html", "==" ] ], {} ] ], - "c25-pseudo-elmnt-000.xht": [ - "26fa2b25796b7abd6017cd4ea1b65bb0148815fe", + "content-027.xht": [ + "2e2053daa76a9efd9badc24948e30e4435cd0546", [ null, [ [ - "/css/CSS2/css1/c25-pseudo-elmnt-000-ref.xht", + "/css/CSS2/generated-content/content-027-ref.html", "==" ] ], {} ] ], - "c31-important-000.xht": [ - "424ca56dd06407432de31bc4096f2d1c7721adc8", + "content-028.xht": [ + "9d9535d752a3503f0e5e5796fc22d6a8e44a76bd", [ null, [ [ - "/css/CSS2/css1/c12-grouping-000-ref.xht", + "/css/CSS2/generated-content/content-028-ref.html", "==" ] ], {} ] ], - "c32-cascading-000.xht": [ - "c70eced3e6c5c01385051b8f69ed09249d18a426", + "content-029.xht": [ + "1a3c087f43350725be2ae240ace409c8fe70cb9c", [ null, [ [ - "/css/CSS2/css1/c32-cascading-000-ref.xht", + "/css/CSS2/generated-content/content-029-ref.html", "==" ] ], {} ] ], - "c412-blockw-000.xht": [ - "2fd1b32120f730033915d3c409206bdd77dc02c5", + "content-030.xht": [ + "d49e5aad1cf559aa3147dbfa47cce22e1fd58884", [ null, [ [ - "/css/CSS2/css1/c412-blockw-000-ref.xht", + "/css/CSS2/generated-content/content-030-ref.html", "==" ] ], {} ] ], - "c412-hz-box-000.xht": [ - "d425fb3d923e4250128609dbb0e4b0ce5acf8a07", + "content-031.xht": [ + "b5dd7ee122c2e106eaf1b892380edcdee11de67f", [ null, [ [ - "/css/CSS2/css1/c412-hz-box-000-ref.xht", + "/css/CSS2/generated-content/content-031-ref.html", "==" ] ], {} ] ], - "c414-flt-fit-000.xht": [ - "15a53e4aa02b1ec7ec69a42f1df4eeca02f98999", + "content-032.xht": [ + "7dbe529526ad13c90bd5fc159b6914f28bd213e4", [ null, [ [ - "/css/CSS2/css1/c414-flt-fit-000-ref.xht", + "/css/CSS2/generated-content/content-032-ref.html", "==" ] ], {} ] ], - "c414-flt-fit-001.xht": [ - "9032cab91ff424c0e89994451cae77872b9cb686", + "content-033.xht": [ + "033f681eb35b9bf08b5bbb22dccf189bf47fe097", [ null, [ [ - "/css/CSS2/css1/c414-flt-fit-001-ref.xht", + "/css/CSS2/generated-content/content-033-ref.html", "==" ] ], {} ] ], - "c414-flt-fit-002.xht": [ - "997913c6f80e0ad1e323281ade4c14de8130d82b", + "content-034.xht": [ + "97d411ed370a7b0373ace048ea75b455f0c6bc78", [ null, [ [ - "/css/CSS2/css1/c414-flt-fit-002-ref.xht", + "/css/CSS2/generated-content/content-030-ref.html", "==" ] ], {} ] ], - "c414-flt-fit-003.xht": [ - "2a14208c9a62eda3a3075eb9f451f933815fa318", + "content-035.xht": [ + "9f722770b63c5e6e842fa940001aeef557debc95", [ null, [ [ - "/css/CSS2/css1/c414-flt-fit-003-ref.xht", + "/css/CSS2/generated-content/content-031-ref.html", "==" ] ], {} ] ], - "c414-flt-fit-004.xht": [ - "451471c67b5d9a786817ad200477afb93d85acde", + "content-036.xht": [ + "3f860e9ebd091e0b6e4943b732950aa1a70352c6", [ null, [ [ - "/css/CSS2/css1/c414-flt-fit-004-ref.xht", + "/css/CSS2/generated-content/content-001-ref.html", "==" ] ], {} ] ], - "c414-flt-fit-005.xht": [ - "1cb824995df078b1122101d406fd5e0a2c4e9871", + "content-037.xht": [ + "433d7dc52f0fd3d057b613c7d5b32e1f3cad299b", [ null, [ [ - "/css/CSS2/css1/c414-flt-fit-005-ref.xht", + "/css/CSS2/generated-content/content-037-ref.html", "==" ] ], {} ] ], - "c414-flt-fit-006.xht": [ - "6f688769e403b4dda6c91ad413bb935ed58efc1a", + "content-038.xht": [ + "5208f5c93195dd97c3eea080949aa38939f20f3c", [ null, [ [ - "/css/CSS2/css1/c414-flt-fit-006-ref.xht", + "/css/CSS2/generated-content/content-003-ref.html", "==" ] ], {} ] ], - "c414-flt-wrap-001.xht": [ - "04ed209a5649f42e9fdd3fc4b422fcedfbf0dd3c", + "content-039.xht": [ + "f62560b33789590bf35b8be78ac94347e2d5f3f5", [ null, [ [ - "/css/CSS2/css1/c414-flt-wrap-001-ref.xht", + "/css/CSS2/generated-content/content-003-ref.html", "==" ] ], {} ] ], - "c42-ibx-ht-000.xht": [ - "fe30367030c8be3f424ede8dddafd0936d8a67c1", + "content-040.xht": [ + "fa1ae9b3284eef86b639763769c6e71636dfc3b7", [ null, [ [ - "/css/CSS2/css1/c42-ibx-ht-000-ref.xht", + "/css/CSS2/generated-content/content-040-ref.html", "==" ] ], {} ] ], - "c42-ibx-pad-000.xht": [ - "38e84af17b57eaab0227934b21fae1da90c19ae2", + "content-041.xht": [ + "cee3fd8e5f296072d9d9df291ebfadae221247f1", [ null, [ [ - "/css/CSS2/css1/c42-ibx-pad-000-ref.xht", + "/css/CSS2/generated-content/content-041-ref.html", "==" ] ], {} ] ], - "c43-rpl-bbx-002.xht": [ - "cc6808352a7b89122468edf625cde47f929fd0c4", + "content-042.xht": [ + "e4aac947e1e6576522b84aeecfabad5c75af679f", [ null, [ [ - "/css/CSS2/css1/c43-rpl-bbx-002-ref.xht", + "/css/CSS2/generated-content/content-042-ref.html", "==" ] ], {} ] ], - "c43-rpl-ibx-000.xht": [ - "45ef15f58e0f22d02360f2a946dfecbb1e5b96ff", + "content-043.xht": [ + "2ba9f713678690d40abaaa09830377e9f5485945", [ null, [ [ - "/css/CSS2/css1/c43-rpl-ibx-000-ref.xht", + "/css/CSS2/generated-content/content-043-ref.html", "==" ] ], {} ] ], - "c44-ln-box-000.xht": [ - "f225ed468e34a817a1b7d41766650a3f759eb08f", + "content-046.xht": [ + "cb96a3b5be2477d45fdce945bb2056040b0c4057", [ null, [ [ - "/css/CSS2/css1/c44-ln-box-000-ref.xht", + "/css/CSS2/generated-content/content-037-ref.html", "==" ] ], {} ] ], - "c44-ln-box-001.xht": [ - "0e9099378523f7fc762b1ff765a58f04ab6cf864", + "content-047.xht": [ + "2189f952449e77230a89c6bef850087e2341b000", [ null, [ [ - "/css/CSS2/css1/c44-ln-box-001-ref.xht", + "/css/CSS2/generated-content/content-047-ref.html", "==" ] ], {} ] ], - "c44-ln-box-002.xht": [ - "abb35ef7bde530d2f10da02e364be746ece3b7f3", + "content-048.xht": [ + "59597ab9a735b459cb3f230fb219b32e513885b7", [ null, [ [ - "/css/CSS2/css1/c44-ln-box-002-ref.xht", + "/css/CSS2/generated-content/content-048-ref.html", "==" ] ], {} ] ], - "c44-ln-box-003.xht": [ - "eb20083f8c01161a19bf6ea11026a99e6611c8ba", + "content-050.xht": [ + "0b43248a53e5b42dd858a14515c10a15a8540e08", [ null, [ [ - "/css/CSS2/css1/c44-ln-box-002-ref.xht", + "/css/CSS2/generated-content/content-050-ref.html", "==" ] ], {} ] ], - "c45-bg-canvas-000.xht": [ - "600b65fdc8295d6dd68fc442c35a56725c9fc4c3", + "content-052.xht": [ + "9812d3134f639ff6a5efd7eb5a0fe40977778358", [ null, [ [ - "/css/CSS2/css1/c45-bg-canvas-000-ref.xht", + "/css/CSS2/generated-content/content-052-ref.html", "==" ] ], {} ] ], - "c526-font-sz-001.xht": [ - "387e916bff93b415a7480b9e957eff9088d70b2f", + "content-053.xht": [ + "f8ddb34981eab383aec8958e062f89fc01a4bdd7", [ null, [ [ - "/css/CSS2/css1/c526-font-sz-001-ref.xht", + "/css/CSS2/generated-content/content-053-ref.html", "==" ] ], {} ] ], - "c526-font-sz-002.xht": [ - "218c28e31272884c36333c904ca6ff1b48068892", + "content-054.xht": [ + "3a282056d2678f622fffc34d1261f2b408418c19", [ null, [ [ - "/css/CSS2/css1/c526-font-sz-002-ref.xht", + "/css/CSS2/generated-content/content-003-ref.html", "==" ] ], {} ] ], - "c526-font-sz-003.xht": [ - "816287dda96bd52e2700da808daf9a38acf85988", + "content-056.xht": [ + "0f7ee3b86fd116501e36b38288b616a291051697", [ null, [ [ - "/css/CSS2/css1/c526-font-sz-003-ref.xht", + "/css/CSS2/generated-content/content-003-ref.html", "==" ] ], {} ] ], - "c531-color-000.xht": [ - "1568eff2eda8bab6242cc57dcb8dfd015814c945", + "content-057.xht": [ + "5907a251b631a1b63be84cb187aac2eed565b5bf", [ null, [ [ - "/css/CSS2/css1/c531-color-000-ref.xht", + "/css/CSS2/generated-content/content-003-ref.html", "==" ] ], {} ] ], - "c532-bgcolor-000.xht": [ - "5436d312fca02fe2be0c30700ab34acf7edd9112", + "content-063.xht": [ + "2293fce5fe57068859343586fb7f929d0a91a5d9", [ null, [ [ - "/css/CSS2/css1/c532-bgcolor-000-ref.xht", + "/css/CSS2/generated-content/content-063-ref.html", "==" ] ], {} ] ], - "c532-bgcolor-001.xht": [ - "8ea2987175de24ff41b08292ef261f383bef135f", + "content-065.xht": [ + "3eb962bc1e63f2404059539e30874f811f52d6ac", [ null, [ [ - "/css/CSS2/reference/ref-this-text-should-be-green.xht", + "/css/CSS2/generated-content/content-053-ref.html", "==" ] ], {} ] ], - "c533-bgimage-000.xht": [ - "1cfd5320b5f015d905887c44635112d454e43b29", + "content-067.xht": [ + "9ab92e3397cb816718fce70a4af7662956533fe0", [ null, [ [ - "/css/CSS2/css1/c533-bgimage-000-ref.xht", + "/css/CSS2/generated-content/content-047-ref.html", "==" ] ], {} ] ], - "c533-bgimage-001.xht": [ - "8505c53044e07908826a1f92058d14cdb64fc883", + "content-068.xht": [ + "4c7578bf343c8cedc660efdb13c333c1422c2661", [ null, [ [ - "/css/CSS2/reference/ref-this-text-should-be-green.xht", + "/css/CSS2/generated-content/content-068-ref.html", "==" ] ], {} ] ], - "c534-bgre-000.xht": [ - "cd546ba75a662efe09ce96d4db45d29127355877", + "content-070.xht": [ + "dec76a02742c637dfcddd3a3cf7406c6e1929edd", [ null, [ [ - "/css/CSS2/css1/c534-bgre-000-ref.xht", + "/css/CSS2/generated-content/content-070-ref.html", "==" ] ], {} ] ], - "c534-bgre-001.xht": [ - "9a93878fae904b1fb1b1dd3b42f757f7736e849d", + "content-072.xht": [ + "05d18bd0946cf25ffcf43322810a36655f7fb2b4", [ null, [ [ - "/css/CSS2/css1/c534-bgre-000-ref.xht", + "/css/CSS2/generated-content/content-072-ref.html", "==" ] ], {} ] ], - "c534-bgreps-000.xht": [ - "5f22d22280e74fb1911174c81192ac2e496d3828", + "content-073.xht": [ + "c86d0dda433373bc418cbb87f308ad1dce39e1d5", [ null, [ [ - "/css/CSS2/css1/c534-bgreps-000-ref.xht", + "/css/CSS2/generated-content/content-073-ref.html", "==" ] ], {} ] ], - "c534-bgreps-001.xht": [ - "50dab70528ebd173663e4b7794fc58a213f684b3", + "content-075.xht": [ + "35cd1447c5e49354d9b3de7b7c90758630f157e8", [ null, [ [ - "/css/CSS2/css1/c534-bgreps-000-ref.xht", + "/css/CSS2/generated-content/content-075-ref.html", "==" ] ], {} ] ], - "c534-bgreps-002.xht": [ - "e424052214487b1af72b30abe8efdfaa2124cd8a", + "content-076.xht": [ + "a4bfdd0b9dbae1eb33e0aef5919bd01f56d1a82e", [ null, [ [ - "/css/CSS2/css1/c534-bgreps-000-ref.xht", + "/css/CSS2/generated-content/content-003-ref.html", "==" ] ], {} ] ], - "c534-bgreps-003.xht": [ - "5653e9bfd9837c42e46b36c531c8a95a8d8d0ba6", + "content-077.xht": [ + "0be87d4269af68fcd4ed9bc070fd8fb3c020418c", [ null, [ [ - "/css/CSS2/css1/c534-bgreps-000-ref.xht", + "/css/CSS2/generated-content/content-041-ref.html", "==" ] ], {} ] ], - "c534-bgreps-004.xht": [ - "4e92c2621ea670bcf3fee6ed1cb5144cbd587e5f", + "content-080.xht": [ + "ea4e72cb73235517bfe3357d62cee332313f9ac2", [ null, [ [ - "/css/CSS2/css1/c534-bgreps-000-ref.xht", + "/css/CSS2/generated-content/content-080-ref.html", "==" ] ], {} ] ], - "c534-bgreps-005.xht": [ - "1987859c395234e17635f57178183499fa411577", + "content-081.xht": [ + "937a691eb1bdfb9fa43dabb2e8bfa64c5ba102c3", [ null, [ [ - "/css/CSS2/css1/c534-bgreps-000-ref.xht", + "/css/CSS2/generated-content/content-081-ref.html", "==" ] ], {} ] ], - "c536-bgpos-000.xht": [ - "0b8ec1f67de120533594967ca32c5838f8a0db52", + "content-082.xht": [ + "a6a7afe1cfe37662df71534c3edf7efc4f6085dd", [ null, [ [ - "/css/CSS2/css1/c536-bgpos-000-ref.xht", + "/css/CSS2/generated-content/content-082-ref.html", "==" ] ], {} ] ], - "c536-bgpos-001.xht": [ - "bec5a16db36eb34884daa0c2e696e4d4cd9a6e26", + "content-083.xht": [ + "49e03bc852b84f2c614dc0a6b7f64cd9c54ae879", [ null, [ [ - "/css/CSS2/css1/c536-bgpos-001-ref.xht", + "/css/CSS2/generated-content/content-083-ref.html", "==" ] ], {} ] ], - "c541-word-sp-000.xht": [ - "92130a1bb282d95459effa70aca1030ec1a1d8b4", + "content-085.xht": [ + "ea3bca80478f7647230874b213a503c47c971bb3", [ null, [ [ - "/css/CSS2/css1/c541-word-sp-000-ref.xht", + "/css/CSS2/generated-content/content-047-ref.html", "==" ] ], {} ] ], - "c541-word-sp-001.xht": [ - "8b83eb8316c452716a70318390ecfd3a14b0e731", + "content-086.xht": [ + "94ca4dc57d3d431cc3e093b47f60b036cb527c4a", [ null, [ [ - "/css/CSS2/css1/c541-word-sp-001-ref.xht", + "/css/CSS2/generated-content/content-041-ref.html", "==" ] ], {} ] ], - "c542-letter-sp-000.xht": [ - "4fa5f81a3c9efe8f494c5037d5d11836099e8d55", + "content-089.xht": [ + "4090d04f7efdb27421046eaacc29ff2d0788102c", [ null, [ [ - "/css/CSS2/css1/c542-letter-sp-000-ref.xht", + "/css/CSS2/generated-content/content-089-ref.html", "==" ] ], {} ] ], - "c542-letter-sp-001.xht": [ - "9c489e9067dabef8cbbcda9695096a1e6ea8f91b", + "content-090.xht": [ + "982023deaad8ac27ca2e8342371cb675e2dceea4", [ null, [ [ - "/css/CSS2/css1/c542-letter-sp-001-ref.xht", + "/css/CSS2/generated-content/content-090-ref.html", "==" ] ], {} ] ], - "c544-valgn-001.xht": [ - "83ea2ef4157f4e1fa60a2bf73669985f134ab309", + "content-091.xht": [ + "1c1b35239ee1031e2106830e2f6cc96bd69558b5", [ null, [ [ - "/css/CSS2/css1/c544-valgn-001-ref.xht", + "/css/CSS2/generated-content/content-091-ref.html", "==" ] ], {} ] ], - "c545-txttrans-000.xht": [ - "31f708335e1ffdd283a33946b4133d75bbb681ea", + "content-096.xht": [ + "8fbd1fe5c85ad4b5d73be686b402f36a8b0d9bcc", [ null, [ [ - "/css/CSS2/css1/c545-txttrans-000-ref.xht", + "/css/CSS2/generated-content/content-096-ref.html", "==" ] ], {} ] ], - "c547-indent-000.xht": [ - "1d4fb02c9f60fecba79ec28f627c8db688a7a2b8", + "content-097.xht": [ + "bec72c932dfaa06cbd7fffc7e98b10d4c92922a7", [ null, [ [ - "/css/CSS2/css1/c547-indent-000-ref.xht", + "/css/CSS2/generated-content/content-097-ref.html", "==" ] ], {} ] ], - "c547-indent-001.xht": [ - "ed58f887e76b97da591b0aca8993700df090c4e2", + "content-099.xht": [ + "81ae3ebc11dfda77c6d91b7953021e18cc936870", [ null, [ [ - "/css/CSS2/css1/c547-indent-001-ref.xht", + "/css/CSS2/generated-content/content-041-ref.html", "==" ] ], {} ] ], - "c548-leadin-000.xht": [ - "79e41971df00e9abdfd36a6057ee3a7a458fea37", + "content-100.xht": [ + "733f22e829d0ab06e0b484155cd3f7dbed35d0b4", [ null, [ [ - "/css/CSS2/css1/c548-leadin-000-ref.xht", + "/css/CSS2/generated-content/content-100-ref.html", "==" ] ], {} ] ], - "c548-ln-ht-000.xht": [ - "9069d6be72e6715d9b526a093efd5ec5dc85adb1", + "content-103.xht": [ + "352c7aabb3fe4f2ed8d0c4dd11b3ce2c93ed4f8f", [ null, [ [ - "/css/CSS2/css1/c548-ln-ht-000-ref.xht", + "/css/CSS2/generated-content/content-103-ref.html", "==" ] ], {} ] ], - "c548-ln-ht-001.xht": [ - "21bd6ce58a4b205c509e0ebc3ced04a2bc5ae11f", + "content-105.xht": [ + "25eb7796f13915929b21f3974bb1aaa3622516c8", [ null, [ [ - "/css/CSS2/css1/c548-ln-ht-001-ref.xht", + "/css/reference/only_pass_parens_semicolon.html", "==" ] ], {} ] ], - "c548-ln-ht-002.xht": [ - "952453c1d51ce57a835bb5f5a0093f5bac86f42b", + "content-107.xht": [ + "f415ff338b0fe62b819ece383e121ab3317b4815", [ null, [ [ - "/css/CSS2/css1/c548-ln-ht-001-ref.xht", + "/css/reference/only_pass_parens_semicolon.html", "==" ] ], {} ] ], - "c548-ln-ht-003.xht": [ - "174c5fa8e532b2760a3029ce7961ce8708bd7419", + "content-108.xht": [ + "1887a6d443647255752546daaf3a88a16325d4d5", [ null, [ [ - "/css/CSS2/css1/c548-ln-ht-003-ref.xht", + "/css/reference/only_pass_parens_semicolon.html", "==" ] ], {} ] ], - "c548-ln-ht-004.xht": [ - "3768c9e6598565a33128fd1247cd2556d9f819d5", + "content-109.xht": [ + "030d38d41d0579939836fb32f13720c0000fd2e6", [ null, [ [ - "/css/CSS2/css1/c548-ln-ht-004-ref.xht", + "/css/reference/only_pass_parens_semicolon.html", "==" ] ], {} ] ], - "c5501-imrgn-t-000.xht": [ - "882ad4211a3233393bf4842964db3c79811dc8ca", + "content-110.xht": [ + "cf2cc1b286efc1a6c7e199cae746500bc849130b", [ null, [ [ - "/css/CSS2/css1/c5501-imrgn-t-000-ref.xht", + "/css/reference/only_pass_parens_semicolon.html", "==" ] ], {} ] ], - "c5501-mrgn-t-000.xht": [ - "3ec63a62a6da5a2b9abe7a25fcd257b19d81db25", + "content-111.xht": [ + "e97431cdf53767a41db12f410320ee0eba9b363b", [ null, [ [ - "/css/CSS2/css1/c5501-mrgn-t-000-ref.xht", + "/css/reference/only_pass_parens_semicolon.html", "==" ] ], {} ] ], - "c5502-imrgn-r-000.xht": [ - "68f1f1f15aef67bc0f91fcfb0fa2f80ed35d27c8", + "content-112.xht": [ + "f45e00a5a16a86546ee68c148e14bf8f28d51c25", [ null, [ [ - "/css/CSS2/css1/c5502-imrgn-r-000-ref.xht", + "/css/reference/only_pass_parens_semicolon.html", "==" ] ], {} ] ], - "c5502-imrgn-r-001.xht": [ - "8c45fb55427700450f88b6cf44353c690e55dc10", + "content-113.xht": [ + "559b7953d2302b23089870fa36e9dd9cadba8de8", [ null, [ [ - "/css/CSS2/css1/c5502-imrgn-r-001-ref.xht", + "/css/CSS2/generated-content/content-113-ref.html", "==" ] ], {} ] ], - "c5502-imrgn-r-002.xht": [ - "a65f5cfbff84879e7ff6793f50d20fed42617802", + "content-114.xht": [ + "67babfc45f123ad128fae901dbb1a7b27b19d20e", [ null, [ [ - "/css/CSS2/css1/c5502-imrgn-r-002-ref.xht", + "/css/reference/only_pass_parens_semicolon.html", "==" ] ], {} ] ], - "c5502-imrgn-r-003.xht": [ - "795cdc4cf05f254846319c2645760d13abb47933", + "content-115.xht": [ + "4472f25dcc673bf8a1aa4f004fb5347e63354851", [ null, [ [ - "/css/CSS2/css1/c5502-imrgn-r-003-ref.xht", + "/css/reference/only_pass_parens_semicolon.html", "==" ] ], {} ] ], - "c5502-imrgn-r-004.xht": [ - "56b2b6fcdd750ba608d5d29aed04b04b006c67c1", + "content-116.xht": [ + "3eca048b9d17cb8e82485e19790e128e8bae0671", [ null, [ [ - "/css/CSS2/css1/c5502-imrgn-r-004-ref.xht", + "/css/reference/only_pass_parens_semicolon.html", "==" ] ], {} ] ], - "c5502-imrgn-r-005.xht": [ - "73f9f4135b38013d11790c18c0ef0ef818d616f3", + "content-117.xht": [ + "dc89bacc3ff97d0d1c7237950e0199abd528aed2", [ null, [ [ - "/css/CSS2/css1/c5502-imrgn-r-005-ref.xht", + "/css/reference/only_pass_parens_semicolon.html", "==" ] ], {} ] ], - "c5502-imrgn-r-006.xht": [ - "9e600359346c5e59bd45ceb7c2bdb1d43729e524", + "content-118.xht": [ + "08fc22bb998ae245692143a7b25e405bd8c2f086", [ null, [ [ - "/css/CSS2/css1/c5502-imrgn-r-006-ref.xht", + "/css/reference/only_pass_parens_semicolon.html", "==" ] ], {} ] ], - "c5502-mrgn-r-000.xht": [ - "2fc45712dd663f39d470c78d8314e53008263cc0", + "content-119.xht": [ + "37f69d4a71a3baf339f04b7ad3e2f21b423ae23d", [ null, [ [ - "/css/CSS2/css1/c5502-mrgn-r-000-ref.xht", + "/css/reference/only_pass_parens_semicolon.html", "==" ] ], {} ] ], - "c5502-mrgn-r-001.xht": [ - "8436101036859b90b0c1446329163d68d88247b0", + "content-121.xht": [ + "f1f827f70fcbfb61a8554e0235b9fb54a8e975f0", [ null, [ [ - "/css/CSS2/css1/c5502-mrgn-r-001-ref.xht", + "/css/reference/only_pass_parens_semicolon.html", "==" ] ], {} ] ], - "c5502-mrgn-r-003.xht": [ - "087d5a3edd84b06bfc2ede7f64dde8d1f4466b40", + "content-122.xht": [ + "a32ce892c378ed62797105d591611747303207ed", [ null, [ [ - "/css/CSS2/css1/c5502-mrgn-r-003-ref.xht", + "/css/CSS2/generated-content/content-113-ref.html", "==" ] ], {} ] ], - "c5503-imrgn-b-000.xht": [ - "f206087af21865bcf2ce8778de2cec0e247af9b3", + "content-123.xht": [ + "85c5308c7e850434aeb604cc2dbc00ffe4995d5f", [ null, [ [ - "/css/CSS2/css1/c5501-imrgn-t-000-ref.xht", + "/css/CSS2/generated-content/content-047-ref.html", "==" ] ], {} ] ], - "c5503-mrgn-b-000.xht": [ - "8bd1a2a9ac8b883f16ae87e2bc91b3dc081886f5", + "content-126.xht": [ + "c3f8697b8ab11d2480a7b39edeb27a3210943d95", [ null, [ [ - "/css/CSS2/css1/c5503-mrgn-b-000-ref.xht", + "/css/CSS2/generated-content/content-126-ref.html", "==" ] ], {} ] ], - "c5504-imrgn-l-000.xht": [ - "0ed52db0496727849981534bb30b4cb856683b4c", + "content-127.xht": [ + "7fa3429e87c03b58700d3d738a14f2ab4aaee24e", [ null, [ [ - "/css/CSS2/css1/c5502-imrgn-r-000-ref.xht", + "/css/CSS2/generated-content/content-126-ref.html", "==" ] ], {} ] ], - "c5504-imrgn-l-001.xht": [ - "a08e7dad71eeaa8db385011b63f85bc3aa660967", + "content-129.xht": [ + "0346521aa131236d3a5f64ab14127cef68219ebb", [ null, [ [ - "/css/CSS2/css1/c5502-imrgn-r-001-ref.xht", + "/css/CSS2/generated-content/content-053-ref.html", "==" ] ], {} ] ], - "c5504-imrgn-l-002.xht": [ - "1a875f5c178d434b748a8419733b41eb09752d14", + "content-131.xht": [ + "1e142a90bb6ff31da839081e638cfde12de8ce4b", [ null, [ [ - "/css/CSS2/css1/c5504-imrgn-l-002-ref.xht", + "/css/CSS2/generated-content/content-047-ref.html", "==" ] ], {} ] ], - "c5504-imrgn-l-003.xht": [ - "36225165aa7ba628133de29096dfda8d00b5b821", + "content-132.xht": [ + "54636ed2bfdb21dd4617bf2f0c15cda0c89ba20f", [ null, [ [ - "/css/CSS2/css1/c5502-imrgn-r-003-ref.xht", + "/css/CSS2/generated-content/content-132-ref.html", "==" ] ], {} ] ], - "c5504-imrgn-l-004.xht": [ - "633d3ae7dee6af371ac0c1f35531991660f5b8c8", + "content-135.xht": [ + "e62a4c209559b14758245aa2b7185cdbb6ebfc34", [ null, [ [ - "/css/CSS2/css1/c5502-imrgn-r-004-ref.xht", + "/css/CSS2/generated-content/content-135-ref.html", "==" ] ], {} ] ], - "c5504-imrgn-l-005.xht": [ - "0c19cbe20eb4d53c0ad0336e706411dc7a43a5ac", + "content-136.xht": [ + "419fad5bf6b55c5a12cd65caf1396c06c1ed83aa", [ null, [ [ - "/css/CSS2/css1/c5504-imrgn-l-005-ref.xht", + "/css/CSS2/generated-content/content-136-ref.html", "==" ] ], {} ] ], - "c5504-imrgn-l-006.xht": [ - "c3e36451566aa73ddeb48d2133b572d2ed379117", + "content-138.xht": [ + "8c3910211ed471ef6e5b9d8a9f3430028a0871f2", [ null, [ [ - "/css/CSS2/css1/c5504-imrgn-l-006-ref.xht", + "/css/CSS2/generated-content/content-003-ref.html", "==" ] ], {} ] ], - "c5504-mrgn-l-000.xht": [ - "505e8a8426f6121bb3dfe064be232b3f166a84a1", + "content-141.xht": [ + "52ec51bb5044f56c17fb752ba055f430444c788a", [ null, [ [ - "/css/CSS2/css1/c5504-mrgn-l-000-ref.xht", + "/css/CSS2/generated-content/content-141-ref.html", "==" ] ], {} ] ], - "c5504-mrgn-l-001.xht": [ - "c005d30e58e319148de78457aabc99ff30ed374b", + "content-143.xht": [ + "922f8accb85584d4f800b083e4c33a0ee212a38c", [ null, [ [ - "/css/CSS2/css1/c5504-mrgn-l-001-ref.xht", + "/css/CSS2/generated-content/content-143-ref.html", "==" ] ], {} ] ], - "c5504-mrgn-l-003.xht": [ - "a64f480d06cf5aea3e6fe4260d3899590f3f556f", + "content-144.xht": [ + "18c506922346744c4df9b62c5ceee5c422d9afd0", [ null, [ [ - "/css/CSS2/css1/c5504-mrgn-l-003-ref.xht", + "/css/CSS2/generated-content/content-144-ref.html", "==" ] ], {} ] ], - "c5505-imrgn-000.xht": [ - "8f735f89eed38368e6a4ee622fc4809f633f5738", + "content-145.xht": [ + "08027dd3daea031370e046639319f00932b2a603", [ null, [ [ - "/css/CSS2/css1/c5505-imrgn-000-ref.xht", + "/css/CSS2/generated-content/content-091-ref.html", "==" ] ], {} ] ], - "c5505-mrgn-000.xht": [ - "b40bcf222664be2a38128755eee5be8eadbca8be", + "content-146.xht": [ + "6dd3f73526d86af1bedd122065d18b3d150dbc72", [ null, [ [ - "/css/CSS2/css1/c5505-mrgn-000-ref.xht", + "/css/CSS2/generated-content/content-003-ref.html", "==" ] ], {} ] ], - "c5505-mrgn-001.xht": [ - "1bb2bc69b48f03edf9b67e3c4d907c7633af31b8", + "content-147.xht": [ + "58e269b288227e4f87b63aa9bfd65f756ce55753", [ null, [ [ - "/css/CSS2/css1/c5505-mrgn-001-ref.xht", + "/css/CSS2/generated-content/content-147-ref.html", "==" ] ], {} ] ], - "c5505-mrgn-003.xht": [ - "dfc6afd7cd7d7ba8b5b2fc5a5621d02a79c86d4e", + "content-149.xht": [ + "ab98d48e1c806cccd1e53f2fe3af37243e2fba0d", [ null, [ [ - "/css/CSS2/css1/c5505-mrgn-003-ref.xht", + "/css/CSS2/generated-content/content-149-ref.html", "==" ] ], {} ] ], - "c5506-ipadn-t-000.xht": [ - "9b3a7817e97bc1475b927fac27f994be14cac1d1", + "content-150.xht": [ + "f8545a90d83e76147a04992de43543a2cb1bf646", [ null, [ [ - "/css/CSS2/css1/c5506-ipadn-t-000-ref.xht", + "/css/CSS2/generated-content/content-150-ref.html", "==" ] ], {} ] ], - "c5506-ipadn-t-001.xht": [ - "be11c9f66a29ed360488135d1aafb6b68899ed28", + "content-152.xht": [ + "5db11c602849a6ae1c80a50a849c8560487dad59", [ null, [ [ - "/css/CSS2/css1/c5506-ipadn-t-000-ref.xht", + "/css/CSS2/generated-content/content-047-ref.html", "==" ] ], {} ] ], - "c5506-ipadn-t-002.xht": [ - "9d85ce53b1beeed440b2400575183e30d0319481", + "content-153.xht": [ + "36c0344763ae2c082a636ea03d9528ca567e493f", [ null, [ [ - "/css/CSS2/css1/c5506-ipadn-t-002-ref.xht", + "/css/CSS2/generated-content/content-091-ref.html", "==" ] ], {} ] ], - "c5506-padn-t-000.xht": [ - "1364456b350fab5796e5fd52652e867ae10cd40d", + "content-155.xht": [ + "d7ab8392e0fe5d622e5aa261cb50ac6f513ea646", [ null, [ [ - "/css/CSS2/css1/c5506-padn-t-000-ref.xht", + "/css/CSS2/generated-content/content-155-ref.html", "==" ] ], {} ] ], - "c5507-ipadn-r-000.xht": [ - "a51c63f2995700abaf112a666484cdd656db448a", + "content-156.xht": [ + "26ff550a7a4a08fe5c5a0c2d680ec8310838d579", [ null, [ [ - "/css/CSS2/css1/c5502-imrgn-r-000-ref.xht", + "/css/CSS2/generated-content/content-156-ref.html", "==" ] ], {} ] ], - "c5507-ipadn-r-001.xht": [ - "cb01ad37e3f01a404fdd38db839d7013cc1112c1", + "content-157.xht": [ + "4ee73ab9db765ff2ea03678e999415c46ff5c450", [ null, [ [ - "/css/CSS2/css1/c5502-imrgn-r-001-ref.xht", + "/css/CSS2/generated-content/content-156-ref.html", "==" ] ], {} ] ], - "c5507-ipadn-r-002.xht": [ - "c3bec3f3c037008003d0e1a79ddc181ed3913d09", + "content-158.xht": [ + "1b4b21a38d5c9828048fa14078f25465ca811f58", [ null, [ [ - "/css/CSS2/css1/c5502-imrgn-r-002-ref.xht", + "/css/CSS2/generated-content/content-158-ref.html", "==" ] ], {} ] ], - "c5507-ipadn-r-003.xht": [ - "9934a0925e8eff4f5adfcde84406745fcaa39c65", + "content-159.xht": [ + "8a86f7aabf8a894e255dd6ee2249caeceb0ad892", [ null, [ [ - "/css/CSS2/css1/c5502-imrgn-r-003-ref.xht", + "/css/CSS2/generated-content/content-159-ref.html", "==" ] ], {} ] ], - "c5507-ipadn-r-004.xht": [ - "c00687437e1118a9b8b3fe56eea74211e0e1c733", + "content-171.xht": [ + "05eba6a2b9a935a6a6de426ef13eab7ea1f8d164", [ null, [ [ - "/css/CSS2/css1/c5507-ipadn-r-004-ref.xht", + "/css/CSS2/generated-content/content-171-ref.xht", "==" ] ], {} ] ], - "c5507-padn-r-000.xht": [ - "a9b9b0b07a124ed8b8c2dda7faad3a1f3af4e77a", + "content-172.xht": [ + "c1fb7bf21b10c5b9fba8b8aea99753127a624153", [ null, [ [ - "/css/CSS2/css1/c5507-padn-r-000-ref.xht", + "/css/CSS2/generated-content/content-172-ref.xht", "==" ] ], {} ] ], - "c5507-padn-r-001.xht": [ - "57c4f025921a87d1525ee472be79ef699a84d364", + "content-173.xht": [ + "5a39c8a6e11940bdc6cd18502756e9bc0cd611ed", [ null, [ [ - "/css/CSS2/css1/c5507-padn-r-001-ref.xht", + "/css/CSS2/generated-content/content-173-ref.xht", "==" ] ], {} ] ], - "c5507-padn-r-002.xht": [ - "4ee8a6da1fd9dfe76ccc7c0e2b8ec3b978c96a75", + "content-174.xht": [ + "8aff716e4cca12ca02f6e94752cd6f8f1fc7dd36", [ null, [ [ - "/css/CSS2/css1/c5507-padn-r-002-ref.xht", + "/css/CSS2/generated-content/content-174-ref.xht", "==" ] ], {} ] ], - "c5507-padn-r-003.xht": [ - "1348247c166cb56780f93568f29be890759c2cfc", + "content-175.xht": [ + "84e2b96d0e1ed428ccbc7cd2a07aadba205bde27", [ null, [ [ - "/css/CSS2/css1/c5507-padn-r-003-ref.xht", + "/css/CSS2/generated-content/content-175-ref.xht", "==" ] ], {} ] ], - "c5508-ipadn-b-000.xht": [ - "62a4cdb85a64680fc541159810ee844f92a07617", + "content-177.xht": [ + "66116d844df949251b9dcf2caff5fbb06d8b6405", [ null, [ [ - "/css/CSS2/css1/c5508-ipadn-b-000-ref.xht", + "/css/CSS2/generated-content/content-177-ref.xht", "==" ] ], {} ] ], - "c5508-ipadn-b-001.xht": [ - "c3bf23518dc36b7f6232d253718a21de1cf20a15", + "content-attr-001.xht": [ + "b40b5ba00b5dc06a03b4a6d4eae6a2da39765078", [ null, [ [ - "/css/CSS2/css1/c5508-ipadn-b-000-ref.xht", + "/css/CSS2/reference/ref-nothing-below.xht", "==" ] ], {} ] ], - "c5508-ipadn-b-002.xht": [ - "aeae02259d46663feec319374f80e04e33702f75", + "content-attr-case-001.html": [ + "2ba49f95584e1c7904fc077bd12e0e044182f2a4", [ null, [ [ - "/css/CSS2/css1/c5506-ipadn-t-000-ref.xht", + "/css/reference/pass_if_pass_below.html", "==" ] ], {} ] ], - "c5508-ipadn-b-003.xht": [ - "7c73a2c59f5b49cbb195b181436355cfc9f4f7eb", + "content-attr-case-002.xht": [ + "d3126bafcdaf2493a8e20bab762ba17aea7c8899", [ null, [ [ - "/css/CSS2/css1/c5508-ipadn-b-003-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "c5509-ipadn-l-000.xht": [ - "51837e8d03d53760f9ac158a2e91cd4a356a4a7d", + "content-auto-reset-001.xht": [ + "1eec9768b5f3cd4fd85d009bc88d09628ceeee94", [ null, [ [ - "/css/CSS2/css1/c5502-imrgn-r-000-ref.xht", + "/css/CSS2/generated-content/content-auto-reset-001-ref.html", "==" ] ], {} ] ], - "c5509-ipadn-l-001.xht": [ - "f04d7236b0493371e46a1929cabff0b8085c86a6", + "content-counter-000.xht": [ + "328ba64164bc44678f227954914f2ff7e64d1f4b", [ null, [ [ - "/css/CSS2/css1/c5502-imrgn-r-001-ref.xht", + "/css/CSS2/generated-content/content-counter-000-ref.xht", "==" ] ], {} ] ], - "c5509-ipadn-l-002.xht": [ - "9570eb5d6ee572fee2da32d7691e2ac094ecdb35", + "content-counter-001.xht": [ + "8f06e686e124b56fd2b471f72ab0617049d83c39", [ null, [ [ - "/css/CSS2/css1/c5504-imrgn-l-002-ref.xht", + "about:blank", "==" ] ], {} ] ], - "c5509-ipadn-l-003.xht": [ - "d603b4964b07f6ad50bf66f8e9cfd68f54d7e831", + "content-counter-002.xht": [ + "c5d12346265000ed44a6312832b0184582a171e6", [ null, [ [ - "/css/CSS2/css1/c5502-imrgn-r-003-ref.xht", + "/css/CSS2/generated-content/content-counter-002-ref.xht", "==" ] ], {} ] ], - "c5509-ipadn-l-004.xht": [ - "300814f6bbf072945dde1f9d2637a984797cffac", + "content-counter-003.xht": [ + "eb0f616c4b3e4cdc293f41c81d74dc4aad85e2a2", [ null, [ [ - "/css/CSS2/css1/c5509-ipadn-l-004-ref.xht", + "/css/CSS2/generated-content/content-counter-003-ref.xht", "==" ] ], {} ] ], - "c5509-padn-l-000.xht": [ - "0bce119d5e892263ec119d5692a6b9f824f0a08c", + "content-counter-004.xht": [ + "cda1a5481124058dd5a85b45767cc9b9c624d772", [ null, [ [ - "/css/CSS2/css1/c5507-padn-r-000-ref.xht", + "/css/CSS2/generated-content/content-counter-004-ref.xht", "==" ] ], {} ] ], - "c5509-padn-l-001.xht": [ - "9f02d2e7b89aefecb961267ef94940c13d34a165", + "content-counter-005.xht": [ + "bcbbca1c063f8f97921c256b4b196137590e7c0f", [ null, [ [ - "/css/CSS2/css1/c5509-padn-l-001-ref.xht", + "/css/CSS2/generated-content/content-counter-000-ref.xht", "==" ] ], {} ] ], - "c5509-padn-l-002.xht": [ - "17fabf4d9e39315cbbea709cb3cd8b4bd185a58e", + "content-counter-006.xht": [ + "be9110391058264d7aeec368871d69e8bc12125c", [ null, [ [ - "/css/CSS2/css1/c5509-padn-l-002-ref.xht", + "/css/CSS2/generated-content/content-counter-006-ref.xht", "==" ] ], {} ] ], - "c5509-padn-l-003.xht": [ - "341f048913e2139aa97d5c8fa19187a965392811", + "content-counter-007.xht": [ + "198f1f4e1cb14d23f89b2a12d155b73e92c2dd58", [ null, [ [ - "/css/CSS2/css1/c5509-padn-l-003-ref.xht", + "/css/CSS2/generated-content/content-counter-007-ref.xht", "==" ] ], {} ] ], - "c5510-ipadn-000.xht": [ - "3376a3f1f49e70803aabc58a188d45806bb3e80d", + "content-counter-008.xht": [ + "647978e9cd3c3ffbcaf50485fa76d5b9fe4727c6", [ null, [ [ - "/css/CSS2/css1/c5510-ipadn-000-ref.xht", + "/css/CSS2/generated-content/content-counter-008-ref.xht", "==" ] ], {} ] ], - "c5510-padn-000.xht": [ - "72ba3fc9631c3e80eb1fc418d4790226d38c1af0", + "content-counter-009.xht": [ + "f5ac6c23094f56b0e32a9716551aba916268f3e2", [ null, [ [ - "/css/CSS2/css1/c5510-padn-000-ref.xht", + "/css/CSS2/generated-content/content-counter-009-ref.xht", "==" ] ], {} ] ], - "c5510-padn-001.xht": [ - "5b025c08698decbddf705f6d29b3b3ca226761fb", + "content-counter-010.xht": [ + "05c1112f16d5cf84556878a8c0be5ebc100a15ce", [ null, [ [ - "/css/CSS2/css1/c5510-padn-001-ref.xht", + "/css/CSS2/generated-content/content-counter-010-ref.xht", "==" ] ], {} ] ], - "c5510-padn-002.xht": [ - "af2e9daaf14ebd454f40f91cdf9c7842cc5476d5", + "content-counter-011.xht": [ + "a103f713b97ffb6f33f0ff07cb0e8c3feee972c9", [ null, [ [ - "/css/CSS2/css1/c5510-padn-002-ref.xht", + "/css/CSS2/generated-content/content-counter-011-ref.xht", "==" ] ], {} ] ], - "c5511-brdr-tw-001.xht": [ - "6985014c1ad15f5c32f728a710d932c3707a2344", + "content-counter-012.xht": [ + "a65cf768770f2833817e0b91240deb69826cc625", [ null, [ [ - "/css/CSS2/css1/c5511-brdr-tw-001-ref.xht", + "/css/CSS2/generated-content/content-counter-011-ref.xht", "==" ] ], {} ] ], - "c5511-brdr-tw-002.xht": [ - "ed243c9fbe59221512b6fff581f77db22c0c12a5", + "content-counter-013.xht": [ + "4db0b345b5100a31252d7c70cbe6cba66d356483", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/generated-content/content-counter-013-ref.xht", "==" ] ], {} ] ], - "c5511-brdr-tw-003.xht": [ - "4f8950098bdf7edb747f77c6fc8db126616a59e0", + "content-counter-014.xht": [ + "86bed139450706d5522e9fe45b107f998145eebd", [ null, [ [ - "/css/CSS2/css1/c5511-brdr-tw-003-ref.xht", + "/css/CSS2/generated-content/content-counter-013-ref.xht", "==" ] ], {} ] ], - "c5511-ibrdr-tw-000.xht": [ - "28b6c3d632c0e9c820b4a446976db8d7f20d2b74", + "content-counter-015.xht": [ + "442e4ef636176781216caa7e2ec0ea0bb499e0a5", [ null, [ [ - "/css/CSS2/css1/c5511-ibrdr-tw-000-ref.xht", + "/css/CSS2/generated-content/content-counter-015-ref.xht", "==" ] ], {} ] ], - "c5512-brdr-rw-001.xht": [ - "4671ff3131e1cd15dff3692bef7d4b802ccb4d49", + "content-counter-016.xht": [ + "1449aa92cb1619180934cb784a49bbbf29eb7515", [ null, [ [ - "/css/CSS2/css1/c5512-brdr-rw-001-ref.xht", + "/css/CSS2/generated-content/content-counter-000-ref.xht", "==" ] ], {} ] ], - "c5512-brdr-rw-002.xht": [ - "20e2ffe7dd7fc6c79efaa31a042c76180ca226a6", + "content-inherit-002.xht": [ + "1080ab19c49ab553d0608dbc4063effff467045f", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/generated-content/content-inherit-002-ref.xht", "==" ] ], {} ] ], - "c5512-brdr-rw-003.xht": [ - "61de0155d85eeac8bc19e8d8c05c5912571ddb57", + "content-newline-001.xht": [ + "0aab447de7231fde6f81a1a4e7f39672b7987e8d", [ null, [ [ - "/css/CSS2/css1/c5512-brdr-rw-003-ref.xht", + "/css/CSS2/generated-content/content-newline-001-ref.html", "==" ] ], {} ] ], - "c5512-ibrdr-rw-000.xht": [ - "8267414f0c196437bb906131503e7f886901df74", + "content-white-space-001.xht": [ + "d1236c47bcc29943e37018a22651882f2bd8acdd", [ null, [ [ - "/css/CSS2/css1/c5512-ibrdr-rw-000-ref.xht", + "/css/CSS2/generated-content/content-white-space-001-ref.html", "==" ] ], {} ] ], - "c5513-brdr-bw-001.xht": [ - "7d25713eb055b939062d12e076fff8873f597a36", + "content-white-space-002.xht": [ + "f485c0bef2e4ebe483a20505a8a71a6857e1c140", [ null, [ [ - "/css/CSS2/css1/c5513-brdr-bw-001-ref.xht", + "/css/CSS2/generated-content/content-white-space-002-ref.html", "==" ] ], {} ] ], - "c5513-brdr-bw-002.xht": [ - "b7dca34ca028380ceeeafcdb6177193f371da968", + "content-white-space-003.xht": [ + "897aef3e616b2054317ae86f2f82226433da8aa2", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/generated-content/content-white-space-003-ref.html", "==" ] ], {} ] ], - "c5513-brdr-bw-003.xht": [ - "f43c11afac0dc9a3e8b0327b078b127f25dc16e7", + "content-white-space-004.xht": [ + "57eb58df43f80317e46cc1dfeb4bd3eea3ec10ab", [ null, [ [ - "/css/CSS2/css1/c5513-brdr-bw-003-ref.xht", + "/css/CSS2/generated-content/content-white-space-004-ref.html", "==" ] ], {} ] ], - "c5513-ibrdr-bw-000.xht": [ - "a23278081980f10025c010879f82a9de1ddf7a07", + "counters-hidden-000.xht": [ + "a3c62481f6b69907e229377deb05736f1381daa8", [ null, [ [ - "/css/CSS2/css1/c5513-ibrdr-bw-000-ref.xht", + "/css/CSS2/generated-content/counters-hidden-000-ref.html", "==" ] ], {} ] ], - "c5514-brdr-lw-001.xht": [ - "054fd2cb77463275d11f84175215f4fc9741ee62", + "counters-hidden-001.xht": [ + "b872609331360b45ee04efea6dfe6779eb79b854", [ null, [ [ - "/css/CSS2/css1/c5514-brdr-lw-001-ref.xht", + "/css/CSS2/generated-content/counters-hidden-000-ref.html", "==" ] ], {} ] ], - "c5514-brdr-lw-002.xht": [ - "916af8308058754fa2c575ce984c491123ac72f4", + "counters-hidden-002.xht": [ + "3253f3e7d99832e00f5b04f28e45eca1d80acf47", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/generated-content/counters-hidden-002-ref.html", "==" ] ], {} ] ], - "c5514-brdr-lw-003.xht": [ - "e63afac097839d05433eb7f85b3597fbe8139d4e", + "counters-multi-000.xht": [ + "1c9bab5a7dbba56500bb96e7e3ae9b4a163a8fa8", [ null, [ [ - "/css/CSS2/css1/c5514-brdr-lw-003-ref.xht", + "/css/CSS2/generated-content/counters-multi-000-ref.html", "==" ] ], {} ] ], - "c5514-ibrdr-lw-000.xht": [ - "e78533829b8a3ceeedc3da6149532b931a244796", + "counters-multi-001.xht": [ + "a67d6ce14c753c747e40dbc40e62f59ac3cffb55", [ null, [ [ - "/css/CSS2/css1/c5514-ibrdr-lw-000-ref.xht", + "/css/CSS2/generated-content/counters-multi-000-ref.html", "==" ] ], {} ] ], - "c5515-brdr-w-001.xht": [ - "1a7210c6cc7634f1f0866aac0b0affbca85f0e40", + "counters-order-000.xht": [ + "7fd5bb6b99ffdf3d2ace54d6a70e1379f8a6b230", [ null, [ [ - "/css/CSS2/css1/c5515-brdr-w-001-ref.xht", + "/css/CSS2/generated-content/counters-order-000-ref.html", "==" ] ], {} ] ], - "c5515-brdr-w-002.xht": [ - "2b8c9d72b1d699204bcddec4b00ddcb6dc64a401", + "counters-root-000.xht": [ + "d588241d5284567b025fa0e58462f8f74f6e6e0a", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/generated-content/counters-root-000-ref.html", "==" ] ], {} ] ], - "c5515-ibrdr-000.xht": [ - "bde0f4a71617569b2b5f59e20379e1302383ba87", + "multiple-content-values-001.xht": [ + "09da15a31531b5b4e30a5ff9f024c6d8c85e437a", [ null, [ [ - "/css/CSS2/css1/c5515-ibrdr-000-ref.xht", + "/css/reference/pass_if_pass_below.html", "==" ] ], {} ] ], - "c5516-brdr-c-000.xht": [ - "a21c5ea39c642ef518689908a78ce69b3b6a597a", + "other-attribute-001.xht": [ + "4aa2d1b7ac6f12fff7030122ce1d8e278d160ac9", [ null, [ [ - "/css/CSS2/css1/c5516-brdr-c-000-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "c5516-ibrdr-c-000.xht": [ - "c2001cb2b51022c26eaca8fb9f795f0412b2fd0f", + "quotes-035.xht": [ + "eb0bf2156397c3b6cd5fc2d744eec2dfe3a58886", [ null, [ [ - "/css/CSS2/css1/c5516-ibrdr-c-000-ref.xht", + "/css/CSS2/generated-content/quotes-035-ref.xht", "==" ] ], {} ] ], - "c5522-brdr-001.xht": [ - "54a4f4f253a123376d0317d7bce265807d0178d3", + "quotes-035a.xht": [ + "fc87f5e0d71327e5abe195b461bc4dd2a63475e9", [ null, [ [ - "/css/CSS2/css1/c5522-brdr-001-ref.xht", + "/css/CSS2/generated-content/quotes-035-ref.xht", "==" ] ], {} ] ], - "c5525-fltblck-000.xht": [ - "f48ff0626ecd843d84e83b86b977f240e2146a90", + "quotes-036.xht": [ + "f853ca2c69ea860fee6056e370dd7002fda61efe", [ null, [ [ - "/css/CSS2/css1/c5525-fltblck-000-ref.xht", + "/css/CSS2/generated-content/quotes-035-ref.xht", "==" ] ], {} ] ], - "c5525-fltinln-000.xht": [ - "47320f40218185c106559b9fe3375e79bd545e9e", + "quotes-applies-to-001.xht": [ + "ac2ea1a1bdb63d78da0c1fd3d58d43e7d60ba2cd", [ null, [ [ - "/css/CSS2/css1/c5525-fltinln-000-ref.xht", + "/css/reference/pass_if_pass_below.html", "==" ] ], {} ] ], - "c5525-fltmrgn-000.xht": [ - "bc63cb0333493b7bb97703f846904d15cec0e23e", + "quotes-applies-to-002.xht": [ + "24cf5ecedd52809c04778c340f000567c8924aea", [ null, [ [ - "/css/CSS2/css1/c5525-fltmrgn-000-ref.xht", + "/css/reference/pass_if_pass_below.html", "==" ] ], {} ] ], - "c5525-fltmult-000.xht": [ - "2faf77aefd17d5fae4c6cf18ac03474643dc933c", + "quotes-applies-to-003.xht": [ + "6da6c51053b4f1f5f5763e91a0d78d910b20c2d1", [ null, [ [ - "/css/CSS2/css1/c5525-fltmult-000-ref.xht", + "/css/reference/pass_if_pass_below.html", "==" ] ], {} ] ], - "c5525-fltwidth-001.xht": [ - "d875e2f74e36dd8b6c410070dc91330631b8df1c", + "quotes-applies-to-004.xht": [ + "684910744ce370086bf38e7394e50ee711bb8016", [ null, [ [ - "/css/CSS2/css1/c5525-fltwidth-001-ref.xht", + "/css/reference/pass_if_pass_below.html", "==" ] ], {} ] ], - "c5525-fltwidth-003.xht": [ - "b1193857a05749c4e1e337d9cd37fd2cd005134f", + "quotes-applies-to-007.xht": [ + "8591ed2f016a2a83e398654a7ee17db31e3c28c9", [ null, [ [ - "/css/CSS2/css1/c5525-fltwidth-003-ref.xht", + "/css/reference/pass_if_pass_below.html", "==" ] ], {} ] ], - "c5526-fltclr-000.xht": [ - "4402f418a7a7693724e40bb5140aea046cda6dae", + "quotes-applies-to-008.xht": [ + "3cad22af66700a4ddba41eea4381b9da9005ddce", [ null, [ [ - "/css/CSS2/css1/c5526-fltclr-000-ref.xht", + "/css/reference/pass_if_pass_below.html", "==" ] ], {} ] ], - "c561-list-displ-000.xht": [ - "5193beff7588fe8ec822147e26b8bc9a88063b7b", + "quotes-applies-to-009.xht": [ + "f881d20e91357f1edb80f46d3b6af04fd6dc78de", [ null, [ [ - "/css/CSS2/css1/c561-list-displ-000-ref.xht", + "/css/reference/pass_if_pass_below.html", "==" ] ], {} ] ], - "c562-white-sp-000.xht": [ - "da9159ce9a7edaafdc0d543b0076d19ecac122c7", + "quotes-applies-to-012.xht": [ + "beafc642670e38edc42176d8c5358495837700c9", [ null, [ [ - "/css/CSS2/css1/c562-white-sp-000-ref.xht", + "/css/reference/pass_if_pass_below.html", "==" ] ], {} ] ], - "c563-list-type-000.xht": [ - "da7cb33751e5244a9aa29007d510fd1a977f6711", + "quotes-applies-to-013.xht": [ + "9ff27c83a311d65c81a867f3f491bea205a52075", [ null, [ [ - "/css/CSS2/css1/c563-list-type-000-ref.xht", + "/css/reference/pass_if_pass_below.html", "==" ] ], {} ] ], - "c61-ex-len-000.xht": [ - "052d99966548a6178fbf64bc1623f2756e58443e", + "quotes-applies-to-014.xht": [ + "75f19776d16efe79f876c020cf49efc58cf0ab6e", [ null, [ [ - "/css/CSS2/css1/c61-ex-len-000-ref.xht", + "/css/reference/pass_if_pass_below.html", "==" ] ], {} ] ], - "c61-rel-len-000.xht": [ - "85ec103d09e9f837296c2056a599f43aeeeb1d58", + "quotes-applies-to-015.xht": [ + "a0b50797621f2a86c7017aa970d4656d20f01df3", [ null, [ [ - "/css/CSS2/css1/c61-rel-len-000-ref.xht", + "/css/reference/pass_if_pass_below.html", "==" ] ], {} ] - ], - "c62-percent-000.xht": [ - "bd3ae005422707065a09948401946d1f636b522b", + ] + }, + "inline-svg-100-percent-in-body.html": [ + "22275eaeda4817a967e5f196ba8bb9a5b00859fa", + [ + null, + [ + [ + "/css/CSS2/reference/inline-svg-100-percent-in-body-ref.html", + "==" + ] + ], + {} + ] + ], + "inline-svg-intrinsic-size-100-percent-1.html": [ + "e2ac4ce1b3f06a5f52f6f2cfe278d1f88e98e8d5", + [ + null, + [ + [ + "/css/CSS2/reference/60x60-green.html", + "==" + ] + ], + {} + ] + ], + "inline-svg-intrinsic-size-100-percent-2.html": [ + "f635d3cd53a41028a468fa465b6847b89d03cddf", + [ + null, + [ + [ + "/css/CSS2/reference/60x60-green.html", + "==" + ] + ], + {} + ] + ], + "inline-svg-margin-padding-border.html": [ + "4a3318f1cdc7c7cf3edb8bcab8cfdaef655bf765", + [ + null, + [ + [ + "/css/CSS2/reference/inline-svg-margin-padding-border-ref.html", + "==" + ] + ], + {} + ] + ], + "linebox": { + "anonymous-inline-inherit-001.html": [ + "77904d80e459037e029467479db2c101f0d383b8", [ null, [ [ - "/css/CSS2/css1/c62-percent-000-ref.xht", + "/css/CSS2/linebox/anonymous-inline-inherit-001-ref.html", "==" ] ], {} ] ], - "c63-color-000.xht": [ - "3286b1193dc32a7dafdedf85d9174c8b90a5dd8d", + "baseline-block-with-overflow-001.html": [ + "b0ca8835349b81ae26e3cbbda09ef57a2a370922", [ null, [ [ - "/css/CSS2/css1/c63-color-000-ref.xht", + "/css/CSS2/linebox/baseline-block-with-overflow-001-ref.html", "==" ] ], {} ] ], - "c64-uri-000.xht": [ - "334c7bff0528493922ef150e835cec19b6c34dd5", + "border-padding-bleed-001.xht": [ + "0f76472745a4e20b165f596a9dcba900724e72ad", [ null, [ [ - "/css/CSS2/css1/c64-uri-000-ref.xht", + "/css/CSS2/linebox/border-padding-bleed-001-ref.xht", "==" ] ], {} ] ], - "c71-fwd-parsing-000.xht": [ - "a3b69ed68e89d02dc72df61d8ace10af9b753067", + "border-padding-bleed-002.xht": [ + "7e3d64dd64d303a7ca3e6419c8d457f2e2ddccdd", [ null, [ [ - "/css/CSS2/css1/c71-fwd-parsing-000-ref.xht", + "/css/CSS2/linebox/border-padding-bleed-001-ref.xht", "==" ] ], {} ] ], - "c71-fwd-parsing-001.xht": [ - "69d32ec1fb2a17da0e0d22dc4ec0d1312dff872d", + "border-padding-bleed-003.xht": [ + "74dd19b2d42ea3cdc89ce9992a8771f711a3e0a2", [ null, [ [ - "/css/CSS2/css1/c71-fwd-parsing-001-ref.xht", + "/css/CSS2/linebox/border-padding-bleed-001-ref.xht", "==" ] ], {} ] ], - "c71-fwd-parsing-002.xht": [ - "2384613e3335540d926c0e20e7c11e58d641c6b8", + "empty-inline-001.xht": [ + "514cea7ed61455bf6453fd217f026cc2f97e90c6", [ null, [ [ - "/css/CSS2/css1/c71-fwd-parsing-002-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "c71-fwd-parsing-003.xht": [ - "9d6a3e7b3e4882d8c19fb556cc26c42f8791be0c", + "empty-inline-002.xht": [ + "3d2064c75a15ce54ee90022206024afd254c9d61", [ null, [ [ - "/css/CSS2/css1/c71-fwd-parsing-003-ref.xht", + "/css/CSS2/linebox/empty-inline-002-ref.xht", "==" ] ], {} ] ], - "c71-fwd-parsing-004.xht": [ - "ce65e30c6f5af2b246c06c55e650a476c6111abb", + "empty-inline-003.xht": [ + "2af8bf805f828d52073177838baa73db19438008", [ null, [ [ - "/css/CSS2/css1/c71-fwd-parsing-004-ref.xht", + "/css/CSS2/linebox/empty-inline-003-ref.xht", "==" ] ], {} ] - ] - }, - "css21-errata": { - "s-11-1-1b-001.html": [ - "86f48dbc8cbb0de0df9cea491369aaf847f26ecc", + ], + "fractional-line-height.html": [ + "0b748072b7edfbf57312a002b6961afdc72ee957", [ null, [ [ - "/css/CSS2/css21-errata/s-11-1-1b-001-ref.html", + "/css/reference/nothing.html", "==" ] ], {} ] ], - "s-11-1-1b-002.html": [ - "7ebccffca072f3b02dcf49d3c2aea913ac4fb026", + "iframe-in-block-in-inline.html": [ + "affbd303add40b6d86303a1d1bd4e70a70013345", [ null, [ [ - "/css/CSS2/css21-errata/s-11-1-1b-002-ref.html", + "/css/CSS2/linebox/iframe-in-block-in-inline-ref.html", "==" ] ], {} ] ], - "s-11-1-1b-003.html": [ - "5661287503c9304bcfdcb91332b111d9e4203f9f", + "iframe-in-wrapped-span.html": [ + "b2435a6e3010c94ab6d5fa4e1dd311a8fd27a24d", [ null, [ [ - "/css/CSS2/css21-errata/s-11-1-1b-001-ref.html", + "/css/CSS2/linebox/iframe-in-wrapped-span-ref.html", "==" ] ], {} ] ], - "s-11-1-1b-004.html": [ - "bc0938815cc96e2b903e4c6379c2b98c428ace4a", + "inline-box-001.xht": [ + "41a372a7fcd1d48f49dfd3edffaad5b66bb1db6d", [ null, [ [ - "/css/CSS2/css21-errata/s-11-1-1b-001-ref.html", + "/css/CSS2/linebox/inline-box-001-ref.xht", "==" ] ], {} ] ], - "s-11-1-1b-005.html": [ - "acf915ddf8cb8a2fb80ab1ef4448924b2c9c5e07", + "inline-box-002.xht": [ + "5de05aa519147e4183bec9a9b062ea801bef930b", [ null, [ [ - "/css/CSS2/css21-errata/s-11-1-1b-005-ref.html", + "/css/CSS2/linebox/inline-box-002-ref.xht", "==" ] ], {} ] ], - "s-11-1-1b-006.html": [ - "be662d34852e1904809f55ec48edb75ffa46d13b", + "inline-formatting-context-001.xht": [ + "ca4de2083cbcc6fe13eaf30edda7ca88bcf82dfa", [ null, [ [ - "/css/CSS2/css21-errata/s-11-1-1b-005-ref.html", + "/css/CSS2/linebox/inline-formatting-context-001-ref.xht", "==" ] ], {} ] ], - "s-11-1-1b-007.html": [ - "51e2f3c9d8046da26e4b75a35af6f467bb4686d7", + "inline-formatting-context-002.xht": [ + "27f6fe25882f5d04a418e1911c3d7645236a0a81", [ null, [ [ - "/css/CSS2/css21-errata/s-11-1-1b-007-ref.html", + "/css/CSS2/linebox/inline-formatting-context-002-ref.xht", "==" ] ], {} ] ], - "s-11-1-1b-008.html": [ - "bb31be92e52cee9b7bab4b894d60052d82d65d65", + "inline-formatting-context-003.xht": [ + "827349d8e6b08b2dc383a5ad546e09a9bbbadb12", [ null, [ [ - "/css/CSS2/css21-errata/s-11-1-1b-001-ref.html", + "/css/CSS2/linebox/inline-formatting-context-003-ref.xht", "==" ] ], {} ] ], - "s-11-1-1b-009.html": [ - "ddca9c847f143c3fade185b926f48847b2acec0d", + "inline-formatting-context-004.xht": [ + "ddd51a8dfee3960ab97a4b78b76b6d95ec781646", [ null, [ [ - "/css/CSS2/css21-errata/s-11-1-1b-001-ref.html", + "/css/CSS2/linebox/inline-formatting-context-002-ref.xht", "==" ] ], {} ] - ] - }, - "csswg-issues": { - "submitted": { - "css2.1": { - "abspos-non-replaced-width-margin-000.xht": [ - "4c4554b8dd09ce31fa3e7a9072a6d4b38603b844", - [ - null, - [ - [ - "/css/CSS2/csswg-issues/submitted/css2.1/abspos-non-replaced-width-margin-000-ref.xht", - "==" - ] - ], - {} - ] - ], - "abspos-replaced-width-margin-000.xht": [ - "f7b0f9c4da5325af4c1db9ea7cd887e042967645", - [ - null, - [ - [ - "/css/CSS2/csswg-issues/submitted/css2.1/abspos-replaced-width-margin-000-ref.xht", - "==" - ] - ], - {} - ] - ], - "anonymous-boxes-001.xht": [ - "12667338052c608cf1b52e3a5116e87621d7d908", - [ - null, - [ - [ - "/css/CSS2/csswg-issues/submitted/css2.1/reference/ref-green-box-100x100.xht", - "==" - ] - ], - {} - ] - ] - } - } - }, - "floats": { - "adjoining-floats-dynamic.html": [ - "3446d972d72ec8832ab8ac320a84dff609676ae3", + ], + "inline-formatting-context-005.xht": [ + "83c7b1b793400b5b97e3310d14b4d37e515e0397", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/linebox/inline-formatting-context-003-ref.xht", "==" ] ], {} ] ], - "float-in-inline-anonymous-block-with-overflow-hidden.html": [ - "948394e7f9b348c72a13cc64f4852a988b2fa59c", + "inline-formatting-context-006.xht": [ + "9b923833d3f2c7507418efbe01600183896184ea", [ - "css/CSS2/floats/float-in-inline-anonymous-block-with-overflow-hidden.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/linebox/inline-formatting-context-002-ref.xht", "==" ] ], {} ] ], - "float-in-nested-multicol-001.html": [ - "8e1a257e389d0fdc6a4a69f63b81f32378a7b944", + "inline-formatting-context-007.xht": [ + "0eae0b50b07cd3768b36a760302a2433fd79fb68", [ - "css/CSS2/floats/float-in-nested-multicol-001.html", + null, [ [ - "/css/reference/blank.html", - "!=" + "/css/CSS2/linebox/inline-formatting-context-003-ref.xht", + "==" ] ], {} ] ], - "float-no-content-beside-001.html": [ - "f073453ecaf5a884ed11606d05b1b5066f2e50e3", + "inline-formatting-context-008.xht": [ + "e2d3d7ba492a12fc72684c46357799d52d4670e9", [ null, [ [ - "/css/CSS2/floats/float-no-content-beside-001-ref.html", + "/css/CSS2/linebox/inline-formatting-context-008-ref.xht", "==" ] ], {} ] ], - "float-nowrap-1.html": [ - "656b9398e6b771b5cf0545a1a40bcb36a115301b", + "inline-formatting-context-009.xht": [ + "562d060644a294e975a6d5e6827214bc6737ad53", [ null, [ [ - "/css/CSS2/floats/float-nowrap-1-notref.html", - "!=" + "/css/CSS2/linebox/inline-formatting-context-009-ref.xht", + "==" ] ], {} ] ], - "float-nowrap-2.html": [ - "fc8e11fadc5e66bc49bbddea99aeed0c4019bec0", + "inline-formatting-context-011.xht": [ + "59bcc11a6652fa21092e33800bf4cae13684847e", [ null, [ [ - "/css/CSS2/floats/float-nowrap-1.html", + "/css/CSS2/linebox/inline-formatting-context-011-ref.xht", "==" ] ], {} ] ], - "float-nowrap-3-ref.html": [ - "e7556a213662453f22cdcbee2adf3b21e00d6ce6", + "inline-formatting-context-012.xht": [ + "2e87918967a10b044726129526c6daa04c46386a", [ null, [ [ - "/css/CSS2/floats/float-nowrap-4.html", - "!=" + "/css/CSS2/generated-content/after-content-display-002-ref.xht", + "==" ] ], {} ] ], - "float-nowrap-3.html": [ - "dbc643c8ca97230ab252769b4278065aec844160", + "inline-formatting-context-013.xht": [ + "3bd974c079ff929532e0f9a2e951e4943a878df8", [ null, [ [ - "/css/CSS2/floats/float-nowrap-3-ref.html", + "/css/CSS2/linebox/inline-formatting-context-013-ref.xht", "==" ] ], {} ] ], - "float-nowrap-4.html": [ - "c7b5f8801c9fd26ef204cfd171d7592c9943fd00", + "inline-formatting-context-015.xht": [ + "15aac62807162818439f65cfe0541c235e210870", [ - "css/CSS2/floats/float-nowrap-4.html", + null, [ [ - "/css/CSS2/floats/float-nowrap-4-ref.html", - "==" - ], - [ - "/css/CSS2/floats/float-nowrap-4-ref2.html", + "/css/CSS2/linebox/inline-formatting-context-015-ref.xht", "==" ] ], {} ] ], - "float-nowrap-5.html": [ - "f4403cfb838126b726ef70906d2f8df7bb733f48", + "inline-formatting-context-022.xht": [ + "da6b35126acdcef676cd462957a7059abff9a04b", [ null, [ [ - "/css/CSS2/floats/float-nowrap-5-ref.html", + "/css/CSS2/linebox/inline-formatting-context-022-ref.xht", "==" ] ], {} ] ], - "float-nowrap-6.html": [ - "7c6bf9c0db6a112e364760b3320dcff3265be5c8", + "inline-formatting-context-023.xht": [ + "49f8f5416972132afbf841d2f050b232cae49544", [ null, [ [ - "/css/CSS2/floats/float-nowrap-5-ref.html", + "/css/CSS2/linebox/inline-formatting-context-023-ref.xht", "==" ] ], {} ] ], - "float-nowrap-7.html": [ - "bef462d995608e13ae943329022220c55a1f315e", + "leading-001.xht": [ + "060ca310c4f0d07c89d3ccc9710aabfd0b9e79de", [ null, [ [ - "/css/CSS2/floats/float-nowrap-1.html", + "/css/CSS2/linebox/leading-001-ref.xht", "==" ] ], {} ] ], - "float-nowrap-8.html": [ - "8c2653193d643a452a416f9e41eb8d8397ab0058", + "line-box-height-002.xht": [ + "9c23382644a2c2df557d080034874eec9d50ed80", [ null, [ [ - "/css/CSS2/floats/float-nowrap-1.html", + "/css/CSS2/linebox/line-box-height-002-ref.xht", "==" ] ], {} ] ], - "float-nowrap-9.html": [ - "b4a6b2923097f9f9957d940db42d335b22e73def", + "line-breaking-font-size-zero-001.html": [ + "6378af39fa1758b8114d2b608cedfd62d84dd275", [ null, [ [ - "/css/CSS2/floats/float-nowrap-3-ref.html", + "/css/CSS2/linebox/line-breaking-font-size-zero-001-ref.html", "==" ] ], {} ] ], - "float-nowrap-hyphen-rewind-1.html": [ - "9c629ef2872838bad74623f8ed8750e180a5a3c2", + "line-height-002.xht": [ + "c2d79e96216848f39a217081536359ed1eca0c18", [ - "css/CSS2/floats/float-nowrap-hyphen-rewind-1.html", + null, [ [ - "/css/CSS2/floats/float-nowrap-hyphen-rewind-1-ref.html", - "==" - ], - [ - "/css/CSS2/floats/float-nowrap-hyphen-rewind-1-ref2.html", + "/css/CSS2/linebox/line-height-002-ref.xht", "==" ] ], {} ] ], - "float-paint-relayout.html": [ - "0499e3e9a260b069adec05f1abc66feccc178bcc", + "line-height-004.xht": [ + "54073f03a63e1b5ff2131e439169b9b09e10462d", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/linebox/line-height-002-ref.xht", "==" ] ], {} ] ], - "float-root.html": [ - "944ae7ad5f46296d1ce65088421e25b79eed40af", + "line-height-005.xht": [ + "771b73e089dafd20b266d9e458e738e567825e92", [ - "css/CSS2/floats/float-root.html", + null, [ [ - "/css/CSS2/floats/float-root-ref.html", + "/css/CSS2/linebox/line-height-002-ref.xht", "==" ] ], {} ] ], - "float-table-align-left-quirk.html": [ - "60e219078a046209ed6bc20ce80d0fb22587b28d", + "line-height-006.xht": [ + "23f97548d701fd85c19d204edb71c66515d74bea", [ null, [ [ - "/css/CSS2/floats/float-table-align-left-quirk-ref.html", + "/css/CSS2/linebox/line-height-006-ref.xht", "==" ] ], {} ] ], - "float-under-flatten-under-preserve-3d.html": [ - "18b6bbc122a5a67ced5a93fc0a00fec10d113ba2", + "line-height-007.xht": [ + "230959c92cf38876ffeb6c831dc61d00f0ca28f0", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/linebox/line-height-006-ref.xht", "==" ] ], {} ] ], - "float-with-absolutely-positioned-child-with-static-inset.html": [ - "7d022306a861e8be7635bb2d0a8d7db60ba147c9", + "line-height-013.xht": [ + "793ec3df6b45506a6fd244eee91b5a7f593d0c38", [ - "css/CSS2/floats/float-with-absolutely-positioned-child-with-static-inset.html", + null, [ [ - "/css/CSS2/floats/float-with-absolutely-positioned-child-with-static-inset-ref.html", + "/css/CSS2/linebox/line-height-002-ref.xht", "==" ] ], {} ] ], - "floated-table-wider-than-specified.html": [ - "f93d50e43dd3eb49d5c8964200b7fe4ebb5bd6c8", + "line-height-015.xht": [ + "06937a1c44b2aa40e84a502177e5adea666be9e4", [ null, [ [ - "/css/reference/ref-filled-green-200px-square.html", + "/css/CSS2/linebox/line-height-002-ref.xht", "==" ] ], {} ] ], - "floats-in-table-caption-001.html": [ - "a1dc7e9d525204a6d762f982c5553a47692654d8", + "line-height-016.xht": [ + "e321d8137cf210c3a4ef48326db2a7b0434084ca", [ null, [ [ - "/css/CSS2/floats/floats-in-table-caption-001-ref.html", + "/css/CSS2/linebox/line-height-002-ref.xht", "==" ] ], {} ] ], - "floats-line-wrap-shifted-001.html": [ - "5eb1a8f2b14da34a7a853d4f1863c4c1b10a94ac", + "line-height-017.xht": [ + "1da91497a72106be13ce646eedbe7f144dc578f4", [ null, [ [ - "/css/CSS2/floats/floats-line-wrap-shifted-001-ref.html", + "/css/CSS2/linebox/line-height-006-ref.xht", "==" ] ], {} ] ], - "floats-placement-001.html": [ - "f02213474459f0d89518a956b07426707cafe346", + "line-height-018.xht": [ + "4f17ebd5da89156f2abb4031ece760279d5ca8c4", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/linebox/line-height-006-ref.xht", "==" ] ], {} ] ], - "floats-placement-002.html": [ - "871775901ea50b530b8509269471d52c00fefd3f", + "line-height-024.xht": [ + "4875daa567a8003f325e4d805f15ff223d14e53d", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/linebox/line-height-002-ref.xht", "==" ] ], {} ] ], - "floats-placement-003.html": [ - "47509172c9f69c11d80ba4d2883348128dbeaa16", + "line-height-025.xht": [ + "98086a486595893759108bcc6fc94756326c903d", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/linebox/line-height-025-ref.xht", "==" ] ], {} ] ], - "floats-placement-004.html": [ - "bbfc9196c867206bef20bc9e16a79325c7b77ab0", + "line-height-026.xht": [ + "658d49943ccab387ab2decfa3b1a7382a3a2b0d3", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/linebox/line-height-002-ref.xht", "==" ] ], {} ] ], - "floats-placement-005.html": [ - "e224a6b773bc09a18b127a467c4b4685c45115fc", + "line-height-027.xht": [ + "cdb3e0861f587a3cc9fd843056e41b1a61e1b704", [ null, [ [ - "/css/CSS2/floats/floats-placement-005-ref.html", + "/css/CSS2/linebox/line-height-002-ref.xht", "==" ] ], {} ] ], - "floats-placement-006.html": [ - "038e40848afd5ec8e59984882bb1b37b621f812f", + "line-height-028.xht": [ + "7e30abac43407e948682f7651605eaac5dadbc0f", [ - "css/CSS2/floats/floats-placement-006.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/linebox/line-height-006-ref.xht", "==" ] ], {} ] ], - "floats-placement-007.html": [ - "d7e3ef685fc25984c1590eb437e81fd9575aaae3", + "line-height-029.xht": [ + "188e0149e5c61ee42e3c4a1704048fae74c0d761", [ - "css/CSS2/floats/floats-placement-007.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/linebox/line-height-006-ref.xht", "==" ] ], {} ] ], - "floats-placement-008.html": [ - "90d919dddc105648b917ceba39082229996e7530", + "line-height-035.xht": [ + "231e72d750bfa61f3f9cc987ce7e81e5a123319d", [ - "css/CSS2/floats/floats-placement-008.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/linebox/line-height-002-ref.xht", "==" ] ], {} ] ], - "floats-placement-vertical-001a.xht": [ - "61815e9ad37198b14ff4327185d9274b357b33de", + "line-height-037.xht": [ + "43c90531acfd09f6e4dff3172bb830cf855cdec2", [ null, [ [ - "/css/CSS2/floats/floats-placement-vertical-001-ref.xht", + "/css/CSS2/linebox/line-height-002-ref.xht", "==" ] ], {} ] ], - "floats-placement-vertical-001b.xht": [ - "8a2e7247b2e817952c9fd940472cd96f1bb8869c", + "line-height-038.xht": [ + "c59ff2ba5444f4618f42577180793c21360d43f2", [ null, [ [ - "/css/CSS2/floats/floats-placement-vertical-001-ref.xht", + "/css/CSS2/linebox/line-height-002-ref.xht", "==" ] ], {} ] ], - "floats-placement-vertical-001c.xht": [ - "2784c590275dfca7a0f01fb78eb4822d000e7181", + "line-height-039.xht": [ + "c9a018f47f104187e1d8e6ed7ea34a9cd7471f70", [ null, [ [ - "/css/CSS2/floats/floats-placement-vertical-001-ref.xht", + "/css/CSS2/linebox/line-height-006-ref.xht", "==" ] ], {} ] ], - "floats-placement-vertical-003.xht": [ - "9c4ea527401d3e33cb3f5e7d54cafb408983778d", + "line-height-040.xht": [ + "99c169eed60af54f2a365ba72b6e2938517a27d3", [ null, [ [ - "/css/CSS2/floats/floats-placement-vertical-003-ref.xht", + "/css/CSS2/linebox/line-height-006-ref.xht", "==" ] ], {} ] ], - "floats-placement-vertical-004-ref.xht": [ - "9e2cd4682e1c5dacc46009da0590e48a46e9fa1b", + "line-height-046.xht": [ + "93c3759dfa55aa8d2cf35a52a8a2fea3de93727a", [ null, [ [ - "/css/CSS2/floats/floats-placement-vertical-004-ref2.xht", + "/css/CSS2/linebox/line-height-002-ref.xht", "==" ] ], {} ] ], - "floats-placement-vertical-004-ref2.xht": [ - "97b26306dec41f07be8225eef98e7dc86b27a95b", + "line-height-048.xht": [ + "4df02a6e4a6d6fb4a4044f2589c962402661b553", [ null, [ [ - "/css/CSS2/floats/floats-placement-vertical-004-ref.xht", + "/css/CSS2/linebox/line-height-002-ref.xht", "==" ] ], {} ] ], - "floats-placement-vertical-004.xht": [ - "143cca2e0760a89c0ae962d1f99e230e6e9d7c13", + "line-height-049.xht": [ + "3fafac0094769bfacf767d75ea3a044d7e3c3228", [ null, [ [ - "/css/CSS2/floats/floats-placement-vertical-004-ref.xht", + "/css/CSS2/linebox/line-height-002-ref.xht", "==" ] ], {} ] ], - "floats-rule3-outside-left-001.xht": [ - "9c63c0ebdda83bbdf7c23576508f63237bfe066f", + "line-height-050.xht": [ + "6c67af3b4dd51da09a82c63fe3743bf36cf49702", [ null, [ [ - "/css/CSS2/floats/floats-rule3-outside-left-001-ref.xht", + "/css/CSS2/linebox/line-height-006-ref.xht", "==" ] ], {} ] ], - "floats-rule3-outside-left-002.xht": [ - "053251a3d249b293c02af60d410b91b181a3c7f3", + "line-height-051.xht": [ + "8cf9c4cdd9723a7f5dbc40680dc10d637ce8ebd5", [ null, [ [ - "/css/CSS2/floats/floats-rule3-outside-left-002-ref.xht", + "/css/CSS2/linebox/line-height-006-ref.xht", "==" ] ], {} ] ], - "floats-rule3-outside-right-001.xht": [ - "47c2e66868efb8f50d412bf56dd36c70b9175914", + "line-height-057.xht": [ + "d8732f7d2ea44225bb597920a499fdd58a2d4216", [ null, [ [ - "/css/CSS2/floats/floats-rule3-outside-right-001-ref.xht", + "/css/CSS2/linebox/line-height-002-ref.xht", "==" ] ], {} ] ], - "floats-rule3-outside-right-002.xht": [ - "ff8552de68fd2045c7e37db2eba21be68053cd37", + "line-height-058.xht": [ + "4421e233f7c5da7d9264bf3d1b8373d500ba0bac", [ null, [ [ - "/css/CSS2/floats/floats-rule3-outside-right-002-ref.xht", + "/css/CSS2/linebox/line-height-006-ref.xht", "==" ] ], {} ] ], - "floats-rule7-outside-left-001.xht": [ - "d0fb1c730a7f58a5c6056dbffe5fe75605ff4f5d", + "line-height-059.xht": [ + "507e46865d45741c700f5157941b2b6eda401313", [ null, [ [ - "/css/CSS2/floats/floats-rule7-outside-left-001-ref.xht", + "/css/CSS2/linebox/line-height-002-ref.xht", "==" ] ], {} ] ], - "floats-rule7-outside-right-001.xht": [ - "fd8cff64979f7c32341dfd18544b1bce5f8e7335", + "line-height-060.xht": [ + "302d820feeba08acda41153ace27280444184171", [ null, [ [ - "/css/CSS2/floats/floats-rule7-outside-right-001-ref.xht", + "/css/CSS2/linebox/line-height-002-ref.xht", "==" ] ], {} ] ], - "floats-wrap-bfc-001-left-overflow.xht": [ - "d99861b680a562589715b577668573a37e938001", + "line-height-061.xht": [ + "a50d02039727fa44e35005febc1c437d70529ba7", [ null, [ [ - "/css/CSS2/floats/floats-wrap-bfc-001-left-overflow-ref.xht", + "/css/CSS2/linebox/line-height-061-ref.xht", "==" ] ], {} ] ], - "floats-wrap-bfc-001-left-table.xht": [ - "2bafffd85440ed17e40e317921d8b7e427e4d331", + "line-height-062.xht": [ + "c3e06ef952065ac0ebdb4cf1fafe0a98352f2a2e", [ null, [ [ - "/css/CSS2/floats/floats-wrap-bfc-001-left-table-ref.xht", + "/css/CSS2/linebox/line-height-061-ref.xht", "==" ] ], {} ] ], - "floats-wrap-bfc-001-right-overflow.xht": [ - "183bb78918eee93a37ee2686a58b1711267e6278", + "line-height-068.xht": [ + "f475980c84e1880de69c24bddcee2f67bb0242ee", [ null, [ [ - "/css/CSS2/floats/floats-wrap-bfc-001-right-overflow-ref.xht", + "/css/CSS2/linebox/line-height-002-ref.xht", "==" ] ], {} ] ], - "floats-wrap-bfc-001-right-table.xht": [ - "c67193d3a321e20a2118caeb8a965a034d6e4614", + "line-height-069.xht": [ + "317c107d178215ec24edbf969a55c6121d02fdd8", [ null, [ [ - "/css/CSS2/floats/floats-wrap-bfc-001-right-table-ref.xht", + "/css/CSS2/linebox/line-height-069-ref.xht", "==" ] ], {} ] ], - "floats-wrap-bfc-002-left-overflow.xht": [ - "3cb59caa782eef63d6c9d38b16d0a659fb2d5980", + "line-height-070.xht": [ + "119cd8cc9927a0b911eb8c18756404aa1d5e4eb9", [ null, [ [ - "/css/CSS2/floats/floats-wrap-bfc-002-left-ref.xht", + "/css/CSS2/linebox/line-height-002-ref.xht", "==" ] ], {} ] ], - "floats-wrap-bfc-002-left-table.xht": [ - "9a7bfe68ddd4499387aed1d329096f6c2a20e50b", + "line-height-071.xht": [ + "4ee26475db21c07f618193784426d121ea7fdc0b", [ null, [ [ - "/css/CSS2/floats/floats-wrap-bfc-002-left-ref.xht", + "/css/CSS2/linebox/line-height-002-ref.xht", "==" ] ], {} ] ], - "floats-wrap-bfc-002-right-overflow.xht": [ - "1ff4fa6a1ae06d473e3427b498a6334ce5329a70", + "line-height-072.xht": [ + "2cd105fde367fd3f6b17428a1af96b1a78cf63d0", [ null, [ [ - "/css/CSS2/floats/floats-wrap-bfc-002-right-ref.xht", + "/css/CSS2/linebox/line-height-072-ref.xht", "==" ] ], {} ] ], - "floats-wrap-bfc-002-right-table.xht": [ - "894287a0b7628db09d0ef6203b6b25c853d338ea", + "line-height-073.xht": [ + "90d1a9949c6bd86e62eac10490f539681c13c1c0", [ null, [ [ - "/css/CSS2/floats/floats-wrap-bfc-002-right-ref.xht", + "/css/CSS2/linebox/line-height-072-ref.xht", "==" ] ], {} ] ], - "floats-wrap-bfc-003-left-overflow.xht": [ - "1f6889c93d480a983c60a532fe300f000b614861", + "line-height-079.xht": [ + "59f985f3d1c9b8259b2ecee2eec28aeb9a4bf350", [ null, [ [ - "/css/CSS2/floats/floats-wrap-bfc-003-left-overflow-ref.xht", + "/css/CSS2/linebox/line-height-002-ref.xht", "==" ] ], {} ] ], - "floats-wrap-bfc-003-left-table.xht": [ - "dcb6c04f14ce08160b96c93eb4640fe3fd78f761", + "line-height-080.xht": [ + "b2df826884beb8a76e1e18688242d05c53e92853", [ null, [ [ - "/css/CSS2/floats/floats-wrap-bfc-003-left-table-ref.xht", + "/css/CSS2/linebox/line-height-025-ref.xht", "==" ] ], {} ] ], - "floats-wrap-bfc-003-right-overflow.xht": [ - "fce87aef22e40ee7052fa6a1763186d15b9d777f", + "line-height-081.xht": [ + "b065789e77785d4e93cbb40c426ee7d8a94ed66d", [ null, [ [ - "/css/CSS2/floats/floats-wrap-bfc-003-right-overflow-ref.xht", + "/css/CSS2/linebox/line-height-002-ref.xht", "==" ] ], {} ] ], - "floats-wrap-bfc-003-right-table.xht": [ - "10fac3bd928c4d5d0fc967534240b824f1f264b1", + "line-height-082.xht": [ + "4dd0eaf8becb355261d3b597fa2a4eca842dfe84", [ null, [ [ - "/css/CSS2/floats/floats-wrap-bfc-003-right-table-ref.xht", + "/css/CSS2/linebox/line-height-002-ref.xht", "==" ] ], {} ] ], - "floats-wrap-bfc-004.xht": [ - "39653b83ebbd15462b47edb98309d3434816b259", + "line-height-083.xht": [ + "2736285a0960743a403db2c8a5d9a056621f5a64", [ null, [ [ - "/css/CSS2/floats/floats-wrap-bfc-004-ref.xht", + "/css/CSS2/linebox/line-height-006-ref.xht", "==" ] ], {} ] ], - "floats-wrap-bfc-005.xht": [ - "6122eb0fa2382d6ea45a00b1e4025b5de42e69ee", + "line-height-084.xht": [ + "7d4cab2a4d07ecdb178d71460d83160d62822b9e", [ null, [ [ - "/css/CSS2/floats/floats-wrap-bfc-005-ref.xht", + "/css/CSS2/linebox/line-height-006-ref.xht", "==" ] ], {} ] ], - "floats-wrap-bfc-006.xht": [ - "4f302d6e6d00a1de492dd3a225904b9401de2d59", + "line-height-090.xht": [ + "b1a176a3f205b8ece7ca59de9230c8ae154b0035", [ null, [ [ - "/css/CSS2/floats/floats-wrap-bfc-006-ref.xht", + "/css/CSS2/linebox/line-height-002-ref.xht", "==" ] ], {} ] ], - "floats-wrap-bfc-007.xht": [ - "77483b25d6fafd081376c8e25ac2623e9816687b", + "line-height-092.xht": [ + "ba66d29d9428f6ef3d0eb623bb2c73546ecb259e", [ null, [ [ - "/css/CSS2/floats/floats-wrap-bfc-007-ref.xht", + "/css/CSS2/linebox/line-height-002-ref.xht", "==" ] ], {} ] ], - "floats-wrap-bfc-008.html": [ - "5da80756d5f00f19afca1c05af462cac3af62a67", + "line-height-093.xht": [ + "9d1f3c96fa1dbd51918635f16a3f0a976f46cb87", [ - "css/CSS2/floats/floats-wrap-bfc-008.html", + null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/linebox/line-height-002-ref.xht", "==" ] ], {} ] ], - "floats-wrap-bfc-outside-001.xht": [ - "5ba6a9750e7bafcb0a1fa1e5e420f337943a232a", + "line-height-094.xht": [ + "5879c958189677ea11064cc9b2c38ec353e58c1e", [ null, [ [ - "/css/CSS2/floats/floats-wrap-bfc-outside-001-ref.xht", + "/css/CSS2/linebox/line-height-069-ref.xht", "==" ] ], {} ] ], - "floats-wrap-bfc-with-margin-001.html": [ - "cc344f0fd580191af444b9d9ef2b469abd1a8fda", + "line-height-095.xht": [ + "592d32730298648b53117e0c7d8bb180acdffac7", [ null, [ [ - "/css/CSS2/floats/floats-wrap-bfc-with-margin-001-ref.html", + "/css/CSS2/linebox/line-height-069-ref.xht", "==" ] ], {} ] ], - "floats-wrap-bfc-with-margin-001a.tentative.html": [ - "9aa6b69ab7545a3a172d3d19d2ac4d6f0e52737b", + "line-height-101.xht": [ + "1fe198f1a1886c6e2243bc2ee073588add329bd6", [ null, [ [ - "/css/CSS2/floats/floats-wrap-bfc-with-margin-001-ref.html", + "/css/CSS2/linebox/line-height-002-ref.xht", "==" ] ], {} ] ], - "floats-wrap-bfc-with-margin-002.tentative.html": [ - "9c10f2cccf6a97d652d8b2db89a77cd5a9db3bb6", + "line-height-102.xht": [ + "d4426b8024cd404dcd35b3a780d6bf1babae2998", [ null, [ [ - "/css/CSS2/floats/floats-wrap-bfc-with-margin-002-ref.html", + "/css/CSS2/linebox/line-height-102-ref.xht", "==" ] ], {} ] ], - "floats-wrap-bfc-with-margin-003.tentative.html": [ - "f69a11002dd957cc03295844b7f7ae5f4e7263af", + "line-height-103.xht": [ + "ec45d0f7dafc8f5b8d0e4a1915634a3bb3e96b65", [ null, [ [ - "/css/CSS2/floats/floats-wrap-bfc-with-margin-003-ref.html", + "/css/CSS2/linebox/line-height-002-ref.xht", "==" ] ], {} ] ], - "floats-wrap-bfc-with-margin-004.html": [ - "cab9e00087931f9b887efb767f2af29c4e7e91b2", + "line-height-104.xht": [ + "4801ca2a95a8be9856cf8001eb15fb23fb8f4d97", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/linebox/line-height-002-ref.xht", "==" ] ], {} ] ], - "floats-wrap-bfc-with-margin-005.html": [ - "5c0bc4f931a7374e525ed8fffd458c69009656ce", + "line-height-105.xht": [ + "848595dba0c64d4d5fee62286298f3da9988fdb4", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/linebox/line-height-105-ref.xht", "==" ] ], {} ] ], - "floats-wrap-bfc-with-margin-006.tentative.html": [ - "fa337713259eab84315012ee3a1f598014fa0cb8", + "line-height-106.xht": [ + "b2bc9e77164226f5b063a938cc5a83b3f4c2228f", [ - "css/CSS2/floats/floats-wrap-bfc-with-margin-006.tentative.html", + null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/linebox/line-height-105-ref.xht", "==" ] ], {} ] ], - "floats-wrap-bfc-with-margin-007.tentative.html": [ - "552b3bc3dacd6b0ae9d8f1caae1ecde902efbdf1", + "line-height-112.xht": [ + "6460895667d85cafe64e7cf34dcf274e04a659c9", [ - "css/CSS2/floats/floats-wrap-bfc-with-margin-007.tentative.html", + null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/linebox/line-height-006-ref.xht", "==" ] ], {} ] ], - "floats-wrap-bfc-with-margin-008.tentative.html": [ - "34c0ee86113e9b818f2014fb49412b580a2b47ce", + "line-height-121.xht": [ + "38cc70884117774ea2157da05420629f32bb3933", [ - "css/CSS2/floats/floats-wrap-bfc-with-margin-008.tentative.html", + null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/linebox/line-height-121-ref.xht", "==" ] ], {} ] ], - "floats-wrap-bfc-with-margin-009.tentative.html": [ - "61db4b1fa3eaa9ebe5fa210d00c24d4cdaf24dec", + "line-height-125.xht": [ + "47ca6eb8434151bbf4f28d81cfd55ea4de24e183", [ - "css/CSS2/floats/floats-wrap-bfc-with-margin-009.tentative.html", + null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/linebox/line-height-125-ref.xht", "==" ] ], {} ] ], - "floats-wrap-bfc-with-margin-010.html": [ - "1cc9690602fd6b6beb383aef8a80e7ee8be926e3", + "line-height-126.xht": [ + "bb979b8d91d78a70f00ab949c0c7ad4a01aff71f", [ - "css/CSS2/floats/floats-wrap-bfc-with-margin-010.html", + null, [ [ - "/css/CSS2/floats/floats-wrap-bfc-with-margin-010-ref.html", + "/css/CSS2/linebox/line-height-126-ref.xht", "==" ] ], {} ] ], - "floats-wrap-top-below-bfc-001l.xht": [ - "17bec33eb143ce14f13c439e83f433c3fef74fdd", + "line-height-127.xht": [ + "3b75153036d67e7878203f584570320dea0e9341", [ null, [ [ - "/css/CSS2/floats/floats-wrap-top-below-001l-ref.xht", + "/css/CSS2/linebox/line-height-127-ref.xht", "==" - ], - [ - "/css/CSS2/floats/floats-wrap-top-below-001l-notref.xht", - "!=" ] ], {} ] ], - "floats-wrap-top-below-bfc-001r.xht": [ - "65e6ca1b42c8c1a21b79950916464df713ac9c99", + "line-height-128.xht": [ + "8d6c34dc44dbde45fe1246423713a6683916cb59", [ null, [ [ - "/css/CSS2/floats/floats-wrap-top-below-001r-ref.xht", + "/css/CSS2/linebox/line-height-128-ref.xht", "==" - ], - [ - "/css/CSS2/floats/floats-wrap-top-below-001r-notref.xht", - "!=" ] ], {} ] ], - "floats-wrap-top-below-bfc-002l.xht": [ - "ab439ae3f6def62ab7f05479ef234853f0826d5d", + "line-height-129.xht": [ + "78f90fbd7e06c027710fdab0f636f84d29e55d21", [ null, [ [ - "/css/CSS2/floats/floats-wrap-top-below-002l-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "floats-wrap-top-below-bfc-002r.xht": [ - "123e621cfeb35aea08e81dbb337775cedda9c098", + "line-height-applies-to-001.xht": [ + "62625793860eed79e17eea04e1534e1f6bb69d6f", [ null, [ [ - "/css/CSS2/floats/floats-wrap-top-below-002r-ref.xht", + "/css/CSS2/linebox/line-height-applies-to-001-ref.xht", "==" ] ], {} ] ], - "floats-wrap-top-below-bfc-003l.xht": [ - "7386535c80a242df2f4685c022b7a1d2b4a9e932", + "line-height-applies-to-002.xht": [ + "98b2f5424ecd390dee3dd8f63cce7465c1dec239", [ null, [ [ - "/css/CSS2/floats/floats-wrap-top-below-003l-ref.xht", + "/css/CSS2/linebox/line-height-applies-to-001-ref.xht", "==" ] ], {} ] ], - "floats-wrap-top-below-bfc-003r.xht": [ - "1c1a517c3752e0f9c8d2c9ef661730badf90a099", + "line-height-applies-to-003.xht": [ + "af7bda03dc55670ddbfbbee191418d8ce3d46f3c", [ null, [ [ - "/css/CSS2/floats/floats-wrap-top-below-003r-ref.xht", + "/css/CSS2/linebox/line-height-applies-to-001-ref.xht", "==" ] ], {} ] ], - "floats-wrap-top-below-inline-001l.xht": [ - "bfa3f95c7dec7fa30eaef1b4a29fcfcf27e79915", + "line-height-applies-to-004.xht": [ + "d7fd1861381a5aaae1a1ba381c93ccbec398ba40", [ null, [ [ - "/css/CSS2/floats/floats-wrap-top-below-001l-ref.xht", + "/css/CSS2/linebox/line-height-applies-to-001-ref.xht", "==" - ], - [ - "/css/CSS2/floats/floats-wrap-top-below-001l-notref.xht", - "!=" ] ], {} ] ], - "floats-wrap-top-below-inline-001r.xht": [ - "c0ee2cd2071d9888e6384808143d23046971b31c", + "line-height-applies-to-005.xht": [ + "d312d0377e4c3e2e6b5016ae4bd85d1a48362158", [ null, [ [ - "/css/CSS2/floats/floats-wrap-top-below-001r-ref.xht", + "/css/CSS2/linebox/line-height-applies-to-005-ref.xht", "==" - ], - [ - "/css/CSS2/floats/floats-wrap-top-below-001r-notref.xht", - "!=" ] ], {} ] ], - "floats-wrap-top-below-inline-002l.xht": [ - "68a51e25b683995dd0492073b195e13ba0693002", + "line-height-applies-to-006.xht": [ + "61caf7d86663d88d7a4eeea1fcbccc59a9f079e7", [ null, [ [ - "/css/CSS2/floats/floats-wrap-top-below-002l-ref.xht", + "/css/CSS2/linebox/line-height-applies-to-005-ref.xht", "==" ] ], {} ] ], - "floats-wrap-top-below-inline-002r.xht": [ - "4dd653af74bd07db4768ca8ac4cb3290820849ae", + "line-height-applies-to-007.xht": [ + "43d6b077d33286686338fb0b9ee4366a9cd7e2e6", [ null, [ [ - "/css/CSS2/floats/floats-wrap-top-below-002r-ref.xht", + "/css/CSS2/linebox/line-height-applies-to-001-ref.xht", "==" ] ], {} ] ], - "floats-wrap-top-below-inline-003l.xht": [ - "98d9b417add8382a064af3f7d3283e252f7141b6", + "line-height-applies-to-008.xht": [ + "6e88cd99fcb2fe072f9382187bbaffb5f534abae", [ null, [ [ - "/css/CSS2/floats/floats-wrap-top-below-003l-ref.xht", + "/css/CSS2/linebox/line-height-applies-to-001-ref.xht", "==" ] ], {} ] ], - "floats-wrap-top-below-inline-003r.xht": [ - "1fb2633c722cc6ed848d6c1edfe2d5f5c263f0a1", + "line-height-applies-to-009.xht": [ + "99d587141d23b7d763142ddf45b8c0727bf5c3b0", [ null, [ [ - "/css/CSS2/floats/floats-wrap-top-below-003r-ref.xht", + "/css/CSS2/linebox/line-height-applies-to-001-ref.xht", "==" ] ], {} ] ], - "floats-zero-height-wrap-001.xht": [ - "c748a32ad2b82e3ae3d806988aee7790e9a9e9cc", + "line-height-applies-to-012.xht": [ + "e11ddd0cd3843eeb9485486c6b0e7b759520fdb5", [ null, [ [ - "/css/CSS2/floats/floats-zero-height-wrap-001-ref.xht", + "/css/CSS2/linebox/line-height-applies-to-001-ref.xht", "==" ] ], {} ] ], - "floats-zero-height-wrap-002.xht": [ - "5a24f252720254a15515bba8921c313958853a3f", + "line-height-applies-to-013.xht": [ + "fefe16d603f7d5ae940bf0db76e6d800ae30f374", [ null, [ [ - "/css/CSS2/floats/floats-zero-height-wrap-001-ref.xht", + "/css/CSS2/linebox/line-height-applies-to-001-ref.xht", "==" ] ], {} ] ], - "intrinsic-size-float-and-line.html": [ - "060312454915307da67988ac52dc41e558479dd1", + "line-height-applies-to-014.xht": [ + "8216c04f098c54492c4a24531e2ae903c3a9c541", [ null, [ [ - "/css/reference/ref-filled-green-200px-square.html", + "/css/CSS2/linebox/line-height-applies-to-001-ref.xht", "==" ] ], {} ] ], - "negative-block-margin-pushing-float-out-of-block-formatting-context.html": [ - "0ebe54c1904e0c2487ebe15c4d60e9e93672d859", + "line-height-applies-to-015.xht": [ + "3a40b32a4143a4ae58f87f1ba0e95e6d97f3d5a7", [ - "css/CSS2/floats/negative-block-margin-pushing-float-out-of-block-formatting-context.html", + null, [ [ - "/css/CSS2/floats/negative-block-margin-pushing-float-out-of-block-formatting-context-ref.html", + "/css/CSS2/linebox/line-height-applies-to-001-ref.xht", "==" ] ], {} ] ], - "negative-margin-float-positioning.html": [ - "8b4aef22f71f8695ebbc5b6dc83ad5639945618d", + "line-height-applies-to-016.xht": [ + "d1b788983a686f477311362ca9a9032c011f3aaf", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/CSS2/linebox/line-height-applies-to-016-ref.xht", "==" ] ], {} ] ], - "new-fc-beside-adjoining-float-2.html": [ - "2d27a28a0533eece2ec6b1ee933028da8fb99c4f", + "line-height-bleed-001.xht": [ + "ab7850dc21556ba7c6200af42ae2de1093fd48ef", [ null, [ [ - "/css/reference/ref-filled-green-200px-square.html", + "/css/CSS2/linebox/line-height-bleed-001-ref.xht", "==" ] ], {} ] ], - "new-fc-beside-adjoining-float.html": [ - "91adbfce2d32ec1f46853b4af60b14c74468a842", + "line-height-bleed-002.xht": [ + "9c69a86734a88aac76ba072995374123a2dde75d", [ null, [ [ - "/css/reference/ref-filled-green-200px-square.html", + "/css/CSS2/linebox/line-height-bleed-002-ref.xht", "==" ] ], {} ] ], - "new-fc-beside-float-with-margin-rtl.html": [ - "5a564f7831c9c19ff7c464c676981c62a53c9a88", + "line-height-oof-descendants-001.html": [ + "6663b1949a73d61ea9d91f3f019c4d4fd66c8cd9", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/linebox/line-height-oof-descendants-001-ref.html", "==" ] ], {} ] ], - "new-fc-beside-float-with-margin.html": [ - "ead8e548be95df87220881a8e66e5f3a47c93f9b", + "vertical-align-004.xht": [ + "0c5240cc8d18ba3869efad4fad18ad5cb0045e39", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/linebox/vertical-align-004-ref.xht", "==" ] ], {} ] ], - "new-fc-relayout.html": [ - "97d8b9a2ff1f3be8aeab2c26817e7542511c59cb", + "vertical-align-005.xht": [ + "0f300578daa41d3bf5d5eb9d818c69553137b853", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/CSS2/linebox/vertical-align-004-ref.xht", "==" ] ], {} ] ], - "new-fc-separates-from-float-2.html": [ - "fd0deab18e0ee8baf17764804825767b6c516c2c", + "vertical-align-006.xht": [ + "bd2f40b9ed1e341401ebfda35f7f43dd6006e512", [ null, [ [ - "/css/reference/ref-filled-green-200px-square.html", + "/css/CSS2/linebox/vertical-align-004-ref.xht", "==" ] ], {} ] ], - "new-fc-separates-from-float-3.html": [ - "4c37be4ba2f4a96ae764c86cf8152517c38f204c", + "vertical-align-007.xht": [ + "282f11c3c40a883ec955b94932cc7828b79c1569", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/linebox/vertical-align-007-ref.xht", "==" ] ], {} ] ], - "new-fc-separates-from-float.html": [ - "89ee7516ecf22f895de3b8e88047d5b767fea96a", + "vertical-align-008.xht": [ + "27acf92519267fc8fed40771b5423def08e69857", [ null, [ [ - "/css/reference/ref-filled-green-200px-square.html", + "/css/CSS2/linebox/vertical-align-007-ref.xht", "==" ] ], {} ] ], - "overflow-scroll-float-paint-order.html": [ - "79ab770eec3bfb864c57c2a05a648114cff8ce45", + "vertical-align-016.xht": [ + "d8d5a26b07e207facc392b2f8f95290d8c0aed51", [ null, [ [ - "/css/CSS2/floats/overflow-scroll-float-paint-order-ref.html", + "/css/CSS2/linebox/vertical-align-004-ref.xht", "==" ] ], {} ] ], - "overhanging-float-paint-order.html": [ - "6075d0a2c9812e7631bd8235adea7ea7ebbea800", + "vertical-align-017.xht": [ + "a6cb9d57d4379b31f65c23a30285d7fcd696a741", [ null, [ [ - "/css/CSS2/floats/overhanging-float-paint-order-ref.html", + "/css/CSS2/linebox/vertical-align-004-ref.xht", "==" ] ], {} ] ], - "remove-block-between-inline-and-float.html": [ - "21235d550dc83532be86788294bcc891a81c4caa", + "vertical-align-018.xht": [ + "ea9202407487d1d8588dbe771589a412a0f5a4eb", [ null, [ [ - "/css/reference/ref-filled-green-200px-square.html", + "/css/CSS2/linebox/vertical-align-004-ref.xht", "==" ] ], {} ] ], - "zero-available-space-float-positioning.html": [ - "62ace6daa036929b46a8e9c1cc516fda403b7131", + "vertical-align-019.xht": [ + "1391a88a4cf736e7f3823ca5f69a7b79f9e1593b", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/CSS2/linebox/vertical-align-007-ref.xht", "==" ] ], {} ] ], - "zero-width-floats-positioning.tentative.html": [ - "18f8f6e2046693faf5b46e107a2dd3fa3aca8558", + "vertical-align-020.xht": [ + "e4f8d8515069fd06560070a56085981d1be73fad", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/CSS2/linebox/vertical-align-007-ref.xht", "==" ] ], {} ] ], - "zero-width-floats.html": [ - "affecab513217305903291accc3005cf60d81b69", + "vertical-align-028.xht": [ + "eb15812971051d1c797d76729ab722d10f50e53d", [ null, [ [ - "/css/reference/ref-filled-green-200px-square.html", + "/css/CSS2/linebox/vertical-align-004-ref.xht", "==" ] ], {} ] - ] - }, - "floats-clear": { - "adjacent-floats-001.xht": [ - "47bfd21ba9d66d8b1dff19024d94fc19df07cb39", + ], + "vertical-align-029.xht": [ + "8dcadd3faf047262c13dfdbcf2e5b3042af8d87c", [ null, [ [ - "/css/CSS2/floats-clear/adjacent-floats-001-ref.xht", + "/css/CSS2/linebox/vertical-align-004-ref.xht", "==" ] ], {} ] ], - "adjoining-float-before-clearance.html": [ - "13041a27496b19d58c2559bb6c99c4d71f9b08bd", + "vertical-align-030.xht": [ + "71fd6122e1a80ae504a2072ce36d3ed4852ea867", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/linebox/vertical-align-004-ref.xht", "==" ] ], {} ] ], - "adjoining-float-nested-forced-clearance-002.html": [ - "ed8ffd26fa61a77974babe15a23c87bcfd301588", + "vertical-align-031.xht": [ + "e6e50bcdc51d1de9a05926c05977c7c596d0659d", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/CSS2/linebox/vertical-align-007-ref.xht", "==" ] ], {} ] ], - "adjoining-float-nested-forced-clearance-003.html": [ - "4c080d2b7fab684e3003ac6e01188087df75e646", + "vertical-align-032.xht": [ + "6f589064fe429d5c7a9947b31435f93116ee6996", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/linebox/vertical-align-007-ref.xht", "==" ] ], {} ] ], - "adjoining-float-nested-forced-clearance-004.html": [ - "bda89a9f6fed366fe942e10f106b4264928ff268", + "vertical-align-040.xht": [ + "03e333e3571025c24a12c83a7b12f7bec1aa103e", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/CSS2/linebox/vertical-align-004-ref.xht", "==" ] ], {} ] ], - "adjoining-float-nested-forced-clearance.html": [ - "426b47537bf1069121c82dbbb8d4d034ff437244", + "vertical-align-041.xht": [ + "f5ffb8646ff9e25f53db8a1f479279e1cce6d874", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/linebox/vertical-align-004-ref.xht", "==" ] ], {} ] ], - "adjoining-float-new-fc.html": [ - "587bbf51b7da9a1d620f35e0b2ece720ddd4ee1e", + "vertical-align-042.xht": [ + "701c8d5c9e5102f01e228da121ecb8e2c9b7b2a1", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/linebox/vertical-align-004-ref.xht", "==" ] ], {} ] ], - "clear-001.xht": [ - "e6922414284ec2e2c4961c9e684c2cb7135b4aea", + "vertical-align-043.xht": [ + "9753da54427aee5bcc5027b6a8c1362bcd682b42", [ null, [ [ - "/css/CSS2/floats-clear/clear-001-ref.xht", + "/css/CSS2/linebox/vertical-align-007-ref.xht", "==" ] ], {} ] ], - "clear-002.xht": [ - "f64848f910d52d4a035162028362a26eb004f268", + "vertical-align-044.xht": [ + "608a6ec88ff063211c87284e5cdf43a8590469c1", [ null, [ [ - "/css/CSS2/floats-clear/clear-002-ref.xht", + "/css/CSS2/linebox/vertical-align-007-ref.xht", "==" ] ], {} ] ], - "clear-003.xht": [ - "7e5d19baa26f3cf136f58a28f876aa08497e2e9a", + "vertical-align-052.xht": [ + "a0efd41f3ecddcc0a36d02b544337306853b3c66", [ null, [ [ - "/css/CSS2/floats-clear/clear-003-ref.xht", + "/css/CSS2/linebox/vertical-align-004-ref.xht", "==" ] ], {} ] ], - "clear-004.xht": [ - "32ecd2a89786efa43fb66f6d6eee0b43e4b169b2", + "vertical-align-053.xht": [ + "e061a83bfd24854129397f0b5f778be1077d771b", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/linebox/vertical-align-004-ref.xht", "==" ] ], {} ] ], - "clear-005.xht": [ - "5298239a25ce6ef72449527fec4d7d8f212ffc6c", + "vertical-align-054.xht": [ + "0e33ce13dd2e94d6f27e65e474e59b24d117bcd7", [ null, [ [ - "/css/CSS2/floats-clear/clear-001-ref.xht", + "/css/CSS2/linebox/vertical-align-004-ref.xht", "==" ] ], {} ] ], - "clear-after-top-margin.html": [ - "95b445657cc4d79566f572b281093b4ee9752f4d", + "vertical-align-055.xht": [ + "4a9d06c6031b5149932f69ae030af9250a9ecfbc", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/CSS2/linebox/vertical-align-007-ref.xht", "==" ] ], {} ] ], - "clear-applies-to-000.xht": [ - "7b7cb9e76d7577812c4c85806f077cc70f1813cc", + "vertical-align-056.xht": [ + "d47d51561011d42d184bdc9b574fa06a066daf46", [ null, [ [ - "/css/CSS2/floats-clear/clear-applies-to-000-ref.xht", + "/css/CSS2/linebox/vertical-align-007-ref.xht", "==" ] ], {} ] ], - "clear-applies-to-001.xht": [ - "ff423f0bd59173cd1c23b0d4156a5d9338543b43", + "vertical-align-064.xht": [ + "e0cfc059ab066b6408debe263024e00b99596002", [ null, [ [ - "/css/CSS2/floats-clear/clear-applies-to-001-ref.xht", + "/css/CSS2/linebox/vertical-align-004-ref.xht", "==" ] ], {} ] ], - "clear-applies-to-002.xht": [ - "4ecd5cdb8dfd711f78772e6a7f03efd5b2b90a0f", + "vertical-align-065.xht": [ + "8103243f21c2fa55efe340df2ed5f0ed299ebb0b", [ null, [ [ - "/css/CSS2/floats-clear/clear-applies-to-001-ref.xht", + "/css/CSS2/linebox/vertical-align-004-ref.xht", "==" ] ], {} ] ], - "clear-applies-to-003.xht": [ - "8372b314daf8c51304351f7ee1c81f489c36b60c", + "vertical-align-066.xht": [ + "4a208131a83a5ae49a32c6b29699f339c3545160", [ null, [ [ - "/css/CSS2/floats-clear/clear-applies-to-001-ref.xht", + "/css/CSS2/linebox/vertical-align-004-ref.xht", "==" ] ], {} ] ], - "clear-applies-to-004.xht": [ - "ce773dc5da7df0550cc07e8bc72463c54a3cd844", + "vertical-align-067.xht": [ + "ad701d5299959eec32ea5d6038af3437eaa1d0c1", [ null, [ [ - "/css/CSS2/floats-clear/clear-applies-to-001-ref.xht", + "/css/CSS2/linebox/vertical-align-007-ref.xht", "==" ] ], {} ] ], - "clear-applies-to-005.xht": [ - "c155bbf57b96bf297d8ec74147ff466063f99943", + "vertical-align-068.xht": [ + "81554acd366c2063503dadd1890b23eb3b8ba248", [ null, [ [ - "/css/CSS2/floats-clear/clear-applies-to-001-ref.xht", + "/css/CSS2/linebox/vertical-align-007-ref.xht", "==" ] ], {} ] ], - "clear-applies-to-006.xht": [ - "ea2027ff6afca6ec9aaf464f6c040a079bbd9bf3", + "vertical-align-076.xht": [ + "c3e6dd83b34f6dcee3dca541014909078b245857", [ null, [ [ - "/css/CSS2/floats-clear/clear-applies-to-001-ref.xht", + "/css/CSS2/linebox/vertical-align-004-ref.xht", "==" ] ], {} ] ], - "clear-applies-to-007.xht": [ - "a15268b53c7b7cc82299a46c6485b7d05b653c3c", + "vertical-align-077.xht": [ + "2169b9a0de253584dbae0fb526b46379480356c2", [ null, [ [ - "/css/CSS2/floats-clear/clear-applies-to-001-ref.xht", + "/css/CSS2/linebox/vertical-align-004-ref.xht", "==" ] ], {} ] ], - "clear-applies-to-008.xht": [ - "1ff09c6cc198eaab4d5a278b70982c00a6f1d41e", + "vertical-align-078.xht": [ + "75ea2be7c868bc9e447172e2034bba15804e1a68", [ null, [ [ - "/css/CSS2/floats-clear/clear-applies-to-008-ref.xht", + "/css/CSS2/linebox/vertical-align-004-ref.xht", "==" ] ], {} ] ], - "clear-applies-to-009.xht": [ - "d9facbeedd1a5fd3a94ba9c263026c98ca92169b", + "vertical-align-079.xht": [ + "beb0291a259ac342999423c449ad28fd0a5239cf", [ null, [ [ - "/css/CSS2/floats-clear/clear-applies-to-009-ref.xht", + "/css/CSS2/linebox/vertical-align-079-ref.xht", "==" ] ], {} ] ], - "clear-applies-to-012.xht": [ - "a1d2a032a8602c59589fb099c478a6982c48db18", + "vertical-align-080.xht": [ + "c293843ae43428250cec68f8c12520f7cc332755", [ null, [ [ - "/css/CSS2/floats-clear/clear-applies-to-001-ref.xht", + "/css/CSS2/linebox/vertical-align-079-ref.xht", "==" ] ], {} ] ], - "clear-applies-to-013.xht": [ - "ec65a778f80a73e3995c9146d3ae58376fe49322", + "vertical-align-088.xht": [ + "ab1695203e11ece55de055528c9363161107f4b7", [ null, [ [ - "/css/CSS2/floats-clear/clear-applies-to-009-ref.xht", + "/css/CSS2/linebox/vertical-align-004-ref.xht", "==" ] ], {} ] ], - "clear-applies-to-014.xht": [ - "5844658e1a11e8485139df2637c087b89a0651d7", + "vertical-align-089.xht": [ + "662a15cac7668990b853c18c05b61dd95d83e991", [ null, [ [ - "/css/CSS2/floats-clear/clear-applies-to-001-ref.xht", + "/css/CSS2/linebox/vertical-align-004-ref.xht", "==" ] ], {} ] ], - "clear-applies-to-015.xht": [ - "591fd95506ef5adaf2f45e1ac0bc30aa714c6ada", + "vertical-align-090.xht": [ + "1182dde9aedb2db353fbf423f862d2fb841e5c9a", [ null, [ [ - "/css/CSS2/floats-clear/clear-applies-to-001-ref.xht", + "/css/CSS2/linebox/vertical-align-004-ref.xht", "==" ] ], {} ] ], - "clear-clearance-calculation-001.xht": [ - "e3df4575555e22e23b308f29cbbba8207747a58f", + "vertical-align-091.xht": [ + "f7a22b452d77620f618b8945b7232f7ed5f66998", [ null, [ [ - "/css/CSS2/floats-clear/clear-clearance-calculation-001-ref.xht", + "/css/CSS2/linebox/vertical-align-007-ref.xht", "==" ] ], {} ] ], - "clear-clearance-calculation-002.xht": [ - "3ec8887a526c77a939cad8eee4c8c98470772542", + "vertical-align-092.xht": [ + "5cf4b9023b96dd8f685eabf5efc29347a4ab2189", [ null, [ [ - "/css/CSS2/floats-clear/clear-clearance-calculation-002-ref.xht", + "/css/CSS2/linebox/vertical-align-007-ref.xht", "==" ] ], {} ] ], - "clear-clearance-calculation-003.xht": [ - "79362e199d6ba8808c77f23a50b31ccbfc6f0f15", + "vertical-align-100.xht": [ + "b66e5d336eeac75c921e3c6a23da67ff6d9eb575", [ null, [ [ - "/css/CSS2/floats-clear/clear-clearance-calculation-003-ref.xht", + "/css/CSS2/linebox/vertical-align-004-ref.xht", "==" ] ], {} ] ], - "clear-clearance-calculation-004.xht": [ - "945dfd99da9274a18f863dde12b53924f21c4bed", + "vertical-align-101.xht": [ + "61b2541bade3a2c3ce8c98445f4d714d81be83fa", [ null, [ [ - "/css/CSS2/floats-clear/clear-clearance-calculation-004-ref.xht", + "/css/CSS2/linebox/vertical-align-004-ref.xht", "==" ] ], {} ] ], - "clear-clearance-calculation-005.xht": [ - "5d1416c9d0f96fd603077d1dd813d0b0d3cc6377", + "vertical-align-102.xht": [ + "fd1eb42aca4af1e5a8fcd51cbd57d98e221c4f48", [ null, [ [ - "/css/CSS2/floats-clear/clear-clearance-calculation-005-ref.xht", + "/css/CSS2/linebox/vertical-align-004-ref.xht", "==" ] ], {} ] ], - "clear-default-inheritance-001.xht": [ - "57064dccd0313bf3a9ef72d67fa97fa3837920b4", + "vertical-align-103.xht": [ + "665f03477a2ff103cac008cecf7c2735c58a9c50", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/linebox/vertical-align-103-ref.xht", "==" ] ], {} ] ], - "clear-float-001.xht": [ - "436ff4b0b56eca3b10ecc5f79426482a9bd183ee", + "vertical-align-104.xht": [ + "5cd2dabe2eaf587bde80a73d41634d92c3178588", [ null, [ [ - "/css/CSS2/floats-clear/clear-float-001-ref.xht", + "/css/CSS2/linebox/vertical-align-103-ref.xht", "==" ] ], {} ] ], - "clear-float-002.xht": [ - "27d7e15717f4e0eb140368b2eef5c292ab949f28", + "vertical-align-109.xht": [ + "d43e3c7b40b5d8b3c10141dcc777e83b3083976d", [ null, [ [ - "/css/CSS2/floats-clear/clear-float-002-ref.xht", + "/css/CSS2/linebox/vertical-align-004-ref.xht", "==" ] ], {} ] ], - "clear-float-003.xht": [ - "12e9e05ce6c7a3e6ae410ee53678c656eaeaa341", + "vertical-align-110.xht": [ + "de19a1b6ce19e8dc203d2da0984127dc6596494e", [ null, [ [ - "/css/CSS2/floats-clear/clear-float-003-ref.xht", + "/css/CSS2/linebox/vertical-align-004-ref.xht", "==" ] ], {} ] ], - "clear-float-004.xht": [ - "35c0ab4f175c8349881ee8e98c02e9db62c3130e", + "vertical-align-111.xht": [ + "076ff5621cebf1fc69bc20fa72a860824c024832", [ null, [ [ - "/css/CSS2/floats-clear/clear-float-004-ref.xht", + "/css/CSS2/linebox/vertical-align-004-ref.xht", "==" ] ], {} ] ], - "clear-float-005.xht": [ - "141caf269872b258596dfd8d7811d80919f2b8ac", + "vertical-align-117a.xht": [ + "ee85840bb8a846d1ca823b8e6924eafde791860f", [ null, [ [ - "/css/CSS2/floats-clear/clear-float-005-ref.xht", + "/css/CSS2/linebox/vertical-align-117a-ref.xht", "==" ] ], {} ] ], - "clear-float-006.xht": [ - "a8d0f32162120b40c646ed8b38fdfd81165d2ce7", + "vertical-align-118a.xht": [ + "9598cbdd3c9f0bcfd2bdd9350e1146b22fd945a9", [ null, [ [ - "/css/CSS2/floats-clear/clear-float-006-ref.xht", + "/css/CSS2/linebox/vertical-align-118a-ref.xht", "==" ] ], {} ] ], - "clear-float-007.xht": [ - "0fa95b26409c14877424011e723aacb19f1d91aa", + "vertical-align-121.xht": [ + "eac216efdffbb39d5bb122b626c70ab85494d465", [ null, [ [ - "/css/CSS2/floats-clear/adjacent-floats-001-ref.xht", + "/css/CSS2/linebox/vertical-align-121-ref.xht", "==" ] ], {} ] ], - "clear-float-008.xht": [ - "6d93e608dca54717856275b43f9fd0424241872b", + "vertical-align-122.xht": [ + "1d7c180f197b9262dd98aa162595b3eb914f60d1", [ null, [ [ - "/css/CSS2/floats-clear/adjacent-floats-001-ref.xht", + "/css/CSS2/linebox/vertical-align-122-ref.xht", "==" ] ], {} ] ], - "clear-float-009.xht": [ - "7c2cdb9c8e3ef6dd9d881c5b4928a88f0e0c803c", + "vertical-align-applies-to-001.xht": [ + "fca1480f7367209223f370ff01acbc45ef7b3778", [ null, [ [ - "/css/CSS2/floats-clear/clear-float-009-ref.xht", + "/css/CSS2/linebox/vertical-align-applies-to-001-ref.xht", "==" ] ], {} ] ], - "clear-initial-001.xht": [ - "d4757c923ea2d80fb768b941f7ee0f1cb74b6b64", + "vertical-align-applies-to-002.xht": [ + "44eda65ed813049a90ca27ec4aa8bf5bc69f1a0d", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/linebox/vertical-align-applies-to-001-ref.xht", "==" ] ], {} ] ], - "clear-inline-001.xht": [ - "3cb531808945d3fd1c78f55a2e868c314350d262", + "vertical-align-applies-to-003.xht": [ + "9ccd4e0ae2dcb57a07c92a1f0026a0c99e9c6efe", [ null, [ [ - "/css/CSS2/floats-clear/clear-inline-001-ref.xht", + "/css/CSS2/linebox/vertical-align-applies-to-001-ref.xht", "==" ] ], {} ] ], - "clear-on-child-with-margins-2.html": [ - "594fee03f48859fb15ece07cb82293297ca1d87d", + "vertical-align-applies-to-004.xht": [ + "f526a704d30f0cee561e3f64627dc0a25652116b", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/CSS2/linebox/vertical-align-applies-to-001-ref.xht", "==" ] ], {} ] ], - "clear-on-child-with-margins.html": [ - "f65f314a2f8aa285a001ae8c4751bc9ceb6e1115", + "vertical-align-applies-to-005.xht": [ + "624517ae3c816669b6481452bd0fb6aa1e774a71", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/CSS2/linebox/vertical-align-applies-to-001-ref.xht", "==" ] ], {} ] ], - "clear-on-parent-and-child.html": [ - "d7dc26f30a8c1f636945441a783c45c4c0837152", + "vertical-align-applies-to-006.xht": [ + "a5aacec7d54997f76ca38943ac5f12ad2bf5d2d2", [ null, [ [ - "/css/reference/ref-filled-green-200px-square.html", + "/css/CSS2/linebox/vertical-align-applies-to-001-ref.xht", "==" ] ], {} ] ], - "clear-on-parent-with-margins-no-clearance.html": [ - "f3d3c1891a1a42f3b464fb79006e7bec8f1ac081", + "vertical-align-applies-to-007.xht": [ + "b328b514de6b54c6e226c1d921a31a7377fbddf1", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/CSS2/linebox/vertical-align-applies-to-007-ref.xht", "==" ] ], {} ] ], - "clear-on-parent-with-margins.html": [ - "9b331d5e4ca65f155395ae389629978252cc4f89", + "vertical-align-applies-to-008.xht": [ + "d9d9176a2ddf0eb53fee167f0c33e188f6595f99", [ null, [ [ - "/css/reference/ref-filled-green-200px-square.html", + "/css/CSS2/linebox/vertical-align-applies-to-008-ref.xht", "==" ] ], {} ] ], - "clear-on-parent.html": [ - "755cd7880950a8837921c1e6175ce66fc8af8ff0", + "vertical-align-applies-to-009.xht": [ + "0270f4119bd583724bfe53d22c461c2806f7b020", [ null, [ [ - "/css/reference/ref-filled-green-200px-square.html", + "/css/CSS2/linebox/vertical-align-applies-to-001-ref.xht", "==" ] ], {} ] ], - "clear-on-replaced-element.html": [ - "e5566b38326da17455d54c3d06d498f72bc4c693", + "vertical-align-applies-to-012.xht": [ + "2cc4f8a01f622fbfcbaff7e1eb080db5a94305fa", [ - "css/CSS2/floats-clear/clear-on-replaced-element.html", + null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/linebox/vertical-align-applies-to-001-ref.xht", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 2 - ], - [ - 0, - 1500 - ] - ] - ] - ] - } + {} ] ], - "clear-with-top-margin-after-cleared-empty-block.html": [ - "5d0fba7981f3f688b22442c1e8bef2ff8b146f5e", + "vertical-align-applies-to-013.xht": [ + "a618891b727048886400f9cb7fccf631add56e1c", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/CSS2/linebox/vertical-align-applies-to-001-ref.xht", "==" ] ], {} ] ], - "clearance-006.xht": [ - "44cded188ccce19272ef69a2b22ce94968788f67", + "vertical-align-applies-to-014.xht": [ + "bec0080b2e75cd3159c7ec5e3e1c7a4e268b11c7", [ null, [ [ - "/css/CSS2/floats-clear/clearance-006-ref.xht", + "/css/CSS2/linebox/vertical-align-applies-to-001-ref.xht", "==" ] ], {} ] ], - "float-003.xht": [ - "7c18aa8f44b5e82994348a15d8279d0ad78f5d56", + "vertical-align-applies-to-015.xht": [ + "68f7c0705f1fdedc7751a1eaeb11b1960bb0d692", [ null, [ [ - "/css/CSS2/floats-clear/float-003-ref.xht", + "/css/CSS2/linebox/vertical-align-applies-to-001-ref.xht", "==" ] ], {} ] ], - "float-005.xht": [ - "6b5dac999cc7d48e6620860fb6907fb3a4fdc120", + "vertical-align-baseline-001.xht": [ + "916d649e8a88ee600408b8a989aa037d06ae1d8a", [ null, [ [ - "/css/CSS2/floats-clear/float-005-ref.xht", + "/css/CSS2/linebox/vertical-align-baseline-001-ref.xht", "==" ] ], {} ] ], - "float-006.xht": [ - "d72832437ecbf775f849051b9c6dd1f249a0cd90", + "vertical-align-baseline-002.xht": [ + "69c380bdd70ea5389cb3fba4369c7bf3b9e0a559", [ null, [ [ - "/css/CSS2/floats-clear/float-006-ref.xht", + "/css/CSS2/linebox/vertical-align-baseline-001-ref.xht", "==" ] ], {} ] ], - "float-applies-to-001.xht": [ - "9f6bce16b875e89db5441563e72b3754e71b8e59", + "vertical-align-baseline-003.xht": [ + "b6b5ea30dedd38f75ecc42875cc6a6e0e292a155", [ null, [ [ - "/css/CSS2/reference/float-applies-to-001-ref.xht", + "/css/CSS2/linebox/vertical-align-baseline-003-ref.xht", "==" ] ], {} ] ], - "float-applies-to-001a.xht": [ - "3cb57aa420712445934014d39ce3eea82b8f940f", + "vertical-align-baseline-004a.xht": [ + "dbb83cf965a1d59ebe01729ff526b5c89780eed5", [ null, [ [ - "/css/CSS2/reference/float-applies-to-001-ref.xht", + "/css/CSS2/linebox/vertical-align-baseline-004a-ref.xht", "==" ] ], {} ] ], - "float-applies-to-002.xht": [ - "d762ff6a51df6737881298f7dfae4aa41d7057cd", + "vertical-align-baseline-005a.xht": [ + "e2983d5b8e7cee0db64ed0a1124da6e995a0b4af", [ null, [ [ - "/css/CSS2/reference/float-applies-to-001-ref.xht", + "/css/CSS2/linebox/vertical-align-baseline-004a-ref.xht", "==" ] ], {} ] ], - "float-applies-to-003.xht": [ - "7b3c06bee7ec5fa76fb715a98b23b1538db53da6", + "vertical-align-baseline-006.xht": [ + "f338379bbbaffe443e695d101c549c6d35e39664", [ null, [ [ - "/css/CSS2/reference/float-applies-to-001-ref.xht", + "/css/CSS2/linebox/vertical-align-baseline-007-ref.xht", "==" ] ], {} ] ], - "float-applies-to-004.xht": [ - "02e48f1ff6a62c8fea393df40ad959e282780e69", + "vertical-align-baseline-007.xht": [ + "e2724259960d3d56f716658ac23af839dc9d2ada", [ null, [ [ - "/css/CSS2/reference/float-applies-to-001-ref.xht", + "/css/CSS2/linebox/vertical-align-baseline-007-ref.xht", "==" ] ], {} ] ], - "float-applies-to-004a.xht": [ - "34995444648a3e212de6e06e2bfa44af568a7b38", + "vertical-align-baseline-008.xht": [ + "eac3e33903eec15cd3c29c4505410c78709715b1", [ null, [ [ - "/css/CSS2/reference/float-applies-to-001-ref.xht", + "/css/CSS2/linebox/vertical-align-baseline-008-ref.xht", "==" ] ], {} ] ], - "float-applies-to-005.xht": [ - "dc92539b950aa791f044f3fab2785e0b8b6e220d", + "vertical-align-baseline-009.xht": [ + "a74543110d3d8f75429d34b85b8b7e28ae211aeb", [ null, [ [ - "/css/CSS2/reference/float-applies-to-001-ref.xht", + "/css/CSS2/linebox/vertical-align-baseline-007-ref.xht", "==" ] ], {} ] ], - "float-applies-to-006.xht": [ - "e140b0827058af614e8dba4fe88af4ec22ca77a3", + "vertical-align-baseline-010.xht": [ + "ffe3c8755b9d721e06b18fba804a8681e66f8cf8", [ null, [ [ - "/css/CSS2/reference/float-applies-to-001-ref.xht", + "/css/CSS2/linebox/vertical-align-baseline-007-ref.xht", "==" ] ], {} ] ], - "float-applies-to-007.xht": [ - "22772d87e611d4d398e9c100b3cfa400ebfdc99e", + "vertical-align-negative-leading-001.html": [ + "4ce5f6d2ad879c093139482e2d0a4672d8207f7d", [ null, [ [ - "/css/CSS2/reference/float-applies-to-001-ref.xht", + "/css/CSS2/linebox/vertical-align-negative-leading-001-ref.html", "==" ] ], {} ] ], - "float-applies-to-008.xht": [ - "b192b5210299b66f2f57cd85a65df99001a9f0b9", + "vertical-align-nested-top-001.html": [ + "3667ced2ca39adfdb1d90fa843ebce6249eecb4e", [ null, [ [ - "/css/CSS2/floats-clear/float-applies-to-008-ref.xht", + "/css/CSS2/linebox/vertical-align-nested-top-001-ref.html", "==" ] ], {} ] ], - "float-applies-to-008a.xht": [ - "b01abc3b4667680d8fdc4b5ea3b1606ea8eda25f", + "vertical-align-sub-001.xht": [ + "096ff0c3c88e0409e353fdef9b17f276ec8f100a", [ null, [ [ - "/css/CSS2/reference/float-applies-to-001-ref.xht", + "/css/CSS2/linebox/vertical-align-sub-001-ref.xht", "==" ] ], {} ] ], - "float-applies-to-009.xht": [ - "9063523826b49e244aaa6f4c90ea5f82c15fe64e", + "vertical-align-super-001.xht": [ + "b7415548ab095fd340eb44a32ad4969a7d103172", [ null, [ [ - "/css/CSS2/reference/float-applies-to-001-ref.xht", + "/css/CSS2/linebox/vertical-align-sub-001-ref.xht", "==" ] ], {} ] ], - "float-applies-to-012.xht": [ - "3d4bdb8cba58058d4fde3c4574e61fe4238e22eb", + "vertical-align-top-bottom-padding.html": [ + "21451a04fa5e9618276e0e518e82bbb7bb64b21d", [ null, [ [ - "/css/CSS2/reference/float-applies-to-001-ref.xht", + "/css/CSS2/linebox/vertical-align-top-bottom-padding-ref.html", "==" ] ], {} ] - ], - "float-applies-to-013.xht": [ - "d07104172621581c5f65a7167422ac2e2c6202ea", + ] + }, + "lists": { + "counter-increment-005.xht": [ + "c6f2367a21b01b692efb22efff8e528a2fc2b768", [ null, [ [ - "/css/CSS2/reference/float-applies-to-001-ref.xht", + "/css/CSS2/reference/pass-if-number-0-30px.xht", "==" ] ], {} ] ], - "float-applies-to-014.xht": [ - "c2d39ecd2da4fe078a164c09ef7ce0c8aa76d5a5", + "counter-increment-006.xht": [ + "9f6921cbb8d7a69ccba584638379744d632bd5f6", [ null, [ [ - "/css/CSS2/reference/float-applies-to-001-ref.xht", + "/css/CSS2/reference/pass-if-number-0-30px.xht", "==" ] ], {} ] ], - "float-applies-to-015.xht": [ - "f1b237f45599e244e5f59a08c3d7159dadbe2069", + "counter-increment-007.xht": [ + "a3fd93209cd0ab948af5a659b3ea2406c296ec27", [ null, [ [ - "/css/CSS2/reference/float-applies-to-001-ref.xht", + "/css/CSS2/reference/pass-if-number-0-30px.xht", "==" ] ], {} ] ], - "float-non-replaced-height-001.xht": [ - "027429ce3844553afba88b46d72919d664ee7746", + "counter-increment-008.xht": [ + "256f977dbf434efcd7e6a338633d4ad967c2e5d6", [ null, [ [ - "/css/CSS2/floats-clear/float-non-replaced-height-001-ref.xht", + "/css/reference/pass_if_number_10.html", "==" ] ], {} ] ], - "float-non-replaced-width-001.xht": [ - "62ff2de22e77e916c33f5e7f04f414026c5730d8", + "counter-increment-009.xht": [ + "c7278a3d020fce84beac2634fede23ca12fccb08", [ null, [ [ - "/css/CSS2/floats-clear/float-non-replaced-width-001-ref.xht", + "/css/reference/pass_if_number_10.html", "==" ] ], {} ] ], - "float-non-replaced-width-002.xht": [ - "8d37183a82a22b6255f854303a1f93fa992f4f1a", + "counter-increment-014.xht": [ + "f9894a023b56409d424ed1567f6b08eb0a3ffaa4", [ null, [ [ - "/css/CSS2/floats-clear/float-non-replaced-width-002-ref.xht", + "/css/CSS2/lists/counter-increment-014-ref.html", "==" ] ], {} ] ], - "float-non-replaced-width-003.xht": [ - "23e6b2520a3e458df75e1a4917fc6b269560847f", + "counter-increment-018.xht": [ + "ed469a582f25976888cdaaa010bfdf6fe00c1b16", [ null, [ [ - "/css/CSS2/floats-clear/float-non-replaced-width-003-ref.xht", + "/css/CSS2/reference/pass-if-number-0-30px.xht", "==" ] ], {} ] ], - "float-non-replaced-width-004.xht": [ - "2af1928e00c846d3b198446c5badf29337897948", + "counter-increment-019.xht": [ + "8b243c94e3520010f7bbc01577767a53562917dc", [ null, [ [ - "/css/CSS2/floats-clear/float-non-replaced-width-002-ref.xht", + "/css/CSS2/reference/pass-if-number-0-30px.xht", "==" ] ], {} ] ], - "float-non-replaced-width-005.xht": [ - "39b0918a7a82584cc7c14a5684b32bf8d4690d0e", + "counter-increment-020.xht": [ + "d6ec612ab4ae2442f3472b02e74d1f7d92501379", [ null, [ [ - "/css/CSS2/floats-clear/float-non-replaced-width-001-ref.xht", + "/css/CSS2/reference/pass-if-number-0-30px.xht", "==" ] ], {} ] ], - "float-non-replaced-width-007.xht": [ - "2cf7865dd40b4fa8d151b442b1d88f9e87ec7d2a", + "counter-increment-021.xht": [ + "b3234d68249ca0ed3e3567a580027cfbf6eb52fa", [ null, [ [ - "/css/CSS2/positioning/absolute-non-replaced-width-017-ref.xht", + "/css/CSS2/lists/counter-increment-021-ref.html", "==" ] ], {} ] ], - "float-non-replaced-width-008.xht": [ - "aca4ede4984caf2615d9b58a71a5de373beb3c7b", + "counter-increment-022.xht": [ + "09655dbb12e476f3ad91e3c191cf4c7e3ecbdfc4", [ null, [ [ - "/css/CSS2/positioning/absolute-non-replaced-width-017-ref.xht", + "/css/CSS2/lists/counter-increment-021-ref.html", "==" ] ], {} ] ], - "float-non-replaced-width-009.xht": [ - "1382e4c091a124f55f72225b2ba90dfbfa51e7d3", + "counter-increment-027.xht": [ + "fbd5c9a98a6ef5a5ac2311b79ea403bb47b0187d", [ null, [ [ - "/css/CSS2/positioning/absolute-non-replaced-width-017-ref.xht", + "/css/CSS2/lists/counter-increment-027-ref.html", "==" ] ], {} ] ], - "float-non-replaced-width-010.xht": [ - "d09e24eee94bbee477adcd0dfc303ed244ad17b0", + "counter-increment-031.xht": [ + "21a1fc20bee845178aeb33b3e44e4a77c6230e21", [ null, [ [ - "/css/CSS2/positioning/absolute-non-replaced-width-017-ref.xht", + "/css/CSS2/reference/pass-if-number-0-30px.xht", "==" ] ], {} ] ], - "float-non-replaced-width-011.xht": [ - "5e436fbe8b3f09e5f6763b3d01294d39a63b8592", + "counter-increment-032.xht": [ + "cf1e6f7bcd61852c3d8288e3d59ebfc1a2875a84", [ null, [ [ - "/css/CSS2/positioning/absolute-non-replaced-width-017-ref.xht", + "/css/CSS2/reference/pass-if-number-0-30px.xht", "==" ] ], {} ] ], - "float-non-replaced-width-012.xht": [ - "24015935d55b72eaaaf8aaed2cfa25758955988f", + "counter-increment-033.xht": [ + "3185559ec047807a860c09f4d7c42946707be485", [ null, [ [ - "/css/CSS2/positioning/absolute-non-replaced-width-017-ref.xht", + "/css/CSS2/reference/pass-if-number-0-30px.xht", "==" ] ], {} ] ], - "float-replaced-height-001.xht": [ - "a4d8e3d3219af6485278c1e5667b6cd29f2c99c4", + "counter-increment-034.xht": [ + "6a43e87800127ed626c9dfdb1931a9f5d3372589", [ null, [ [ - "/css/CSS2/floats-clear/float-replaced-height-001-ref.xht", + "/css/CSS2/lists/counter-increment-034-ref.html", "==" ] ], {} ] ], - "float-replaced-height-002.xht": [ - "ca49db816f7a71682a1caf43a70ac9ac8630c7fd", + "counter-increment-035.xht": [ + "4670a659a99690ae19766c34a693380b6544a315", [ null, [ [ - "/css/CSS2/floats-clear/float-replaced-height-002-ref.xht", + "/css/CSS2/lists/counter-increment-034-ref.html", "==" ] ], {} ] ], - "float-replaced-height-003.xht": [ - "ca7facb74b5e4d3f1a3d019b1e8d024d68494864", + "counter-increment-040.xht": [ + "60bdf782d790ff4028c45b75c022d2447c835073", [ null, [ [ - "/css/CSS2/floats-clear/float-replaced-height-003-ref.xht", + "/css/CSS2/lists/counter-increment-040-ref.html", "==" ] ], {} ] ], - "float-replaced-height-004.xht": [ - "7710028dd6a51e99fcb1f30e8416b1332b4ee8ff", + "counter-increment-044.xht": [ + "33c2ec56b37704a9014ff5fcfa57032df53bd0f1", [ null, [ [ - "/css/CSS2/floats-clear/float-replaced-height-004-ref.xht", + "/css/CSS2/reference/pass-if-number-0-30px.xht", "==" ] ], {} ] ], - "float-replaced-height-005.xht": [ - "8e72c67a68ed1d5025e1f7e5367ba74aa623a02c", + "counter-increment-045.xht": [ + "83fc873cefe908e25ba3914724cbd19e6ea20afa", [ null, [ [ - "/css/CSS2/floats-clear/float-replaced-height-005-ref.xht", + "/css/CSS2/reference/pass-if-number-0-30px.xht", "==" ] ], {} ] ], - "float-replaced-height-006.xht": [ - "2d76339eac7bfc3921cb94fab84e7aaabbd6dc5b", + "counter-increment-046.xht": [ + "5f026d49fad45292a734d28f9aa114a7bb2423f4", [ null, [ [ - "/css/CSS2/floats-clear/float-replaced-height-006-ref.xht", + "/css/CSS2/reference/pass-if-number-0-30px.xht", "==" ] ], {} ] ], - "float-replaced-height-007.xht": [ - "469c8decdba8a307975d360e880a3634d14d9a05", + "counter-increment-047.xht": [ + "524829acc6f4c5191b3e8058efe36c07d24ff64e", [ null, [ [ - "/css/CSS2/floats-clear/float-replaced-height-004-ref.xht", + "/css/CSS2/lists/counter-increment-047-ref.html", "==" ] ], {} ] ], - "float-replaced-width-001.xht": [ - "d6e353f942f7a1519db1f7c31f5d163fd1e78cee", + "counter-increment-048.xht": [ + "ba8579dca1ca687d7127b933d1b7be64917342ac", [ null, [ [ - "/css/CSS2/floats-clear/float-non-replaced-width-001-ref.xht", + "/css/CSS2/lists/counter-increment-047-ref.html", "==" ] ], {} ] ], - "float-replaced-width-002.xht": [ - "cb6050b78b132f5140b1b12673e0a9fa27e30555", + "counter-increment-053.xht": [ + "f6995146c41724ef106bbde5d42a1a00c400b8de", [ null, [ [ - "/css/CSS2/floats-clear/float-non-replaced-width-002-ref.xht", + "/css/CSS2/lists/counter-increment-053-ref.html", "==" ] ], {} ] ], - "float-replaced-width-003.xht": [ - "ac4e3aa804f79d87489c325ab02d6740b37cc51f", + "counter-increment-054.xht": [ + "4bee61008b0c5be53455e48892628a786183eb3b", [ null, [ [ - "/css/CSS2/floats-clear/float-non-replaced-width-003-ref.xht", + "/css/CSS2/lists/counter-increment-054-ref.html", "==" ] ], {} ] ], - "float-replaced-width-004.xht": [ - "3f1bdc735397e3ccd5782cda0dfb914953033727", + "counter-increment-055.xht": [ + "4b4b02226aa46930b13e4e153f20423183586e5b", [ null, [ [ - "/css/CSS2/floats-clear/float-non-replaced-width-002-ref.xht", + "/css/CSS2/lists/counter-increment-055-ref.html", "==" ] ], {} ] ], - "float-replaced-width-005.xht": [ - "8553d6afc13e38aed10fb49ecfdbe24e1187252d", + "counter-increment-applies-to-001.xht": [ + "d31c30b5bf2703fd831e87a6d0897f7fef94f11f", [ null, [ [ - "/css/CSS2/floats-clear/float-non-replaced-width-001-ref.xht", + "/css/reference/pass_if_number_5.xht", "==" ] ], {} ] ], - "float-replaced-width-006.xht": [ - "aee917141ec37b1da47f55fd8aabaca440041abe", + "counter-increment-applies-to-002.xht": [ + "f28563993bf5e4e0abee5c02f38fd61776fe68c6", [ null, [ [ - "/css/CSS2/floats-clear/float-replaced-width-006-ref.xht", + "/css/reference/pass_if_number_5.xht", "==" ] ], {} ] ], - "float-replaced-width-007.xht": [ - "7ab350ea0213c6dac9b3bf4652100544890795a9", + "counter-increment-applies-to-003.xht": [ + "64094d6624c76c74adfacc6f777021a0e328be52", [ null, [ [ - "/css/CSS2/floats-clear/float-replaced-width-007-ref.xht", + "/css/reference/pass_if_number_5.xht", "==" ] ], {} ] ], - "float-replaced-width-008.xht": [ - "b4500ba692b0d2f7b9f25ab8154ef66602140ab4", + "counter-increment-applies-to-004.xht": [ + "b6d47533083013b9969a00f1b20335514d0ab6d4", [ null, [ [ - "/css/CSS2/floats-clear/float-replaced-width-008-ref.xht", + "/css/reference/pass_if_number_5.xht", "==" ] ], {} ] ], - "float-replaced-width-009.xht": [ - "b407448e91592013a9cfe7a747a10919b8a65e44", + "counter-increment-applies-to-005.xht": [ + "1e79cd817ccc2391285f357a465fe761da0d5e27", [ null, [ [ - "/css/CSS2/floats-clear/float-replaced-width-009-ref.xht", + "/css/reference/pass_if_number_5.xht", "==" ] ], {} ] ], - "float-replaced-width-011.xht": [ - "2cd206620a6a7a57f618f49e08d18451138dc1ff", + "counter-increment-applies-to-006.xht": [ + "eee43d628eb5394a46c77b4146138e8a02fea15a", [ null, [ [ - "/css/CSS2/floats-clear/float-replaced-width-011-ref.xht", + "/css/reference/pass_if_number_5.xht", "==" ] ], {} ] ], - "floats-001.xht": [ - "a78c804b14a0e442ff6852394c52406bc3588091", + "counter-increment-applies-to-007.xht": [ + "e16a61efe0aab564ab582ef1bfd4766b4bf3766a", [ null, [ [ - "/css/CSS2/floats-clear/floats-001-ref.xht", + "/css/reference/pass_if_number_5.xht", "==" ] ], {} ] ], - "floats-002.xht": [ - "435241d81e437363ffbca499d605df18f35660de", + "counter-increment-applies-to-008.xht": [ + "214b9599b563569c78437f911fd083d102af28e3", [ null, [ [ - "/css/CSS2/floats-clear/floats-002-ref.xht", + "/css/reference/pass_if_number_5.xht", "==" ] ], {} ] ], - "floats-003.xht": [ - "f42bc691c6fd53b55e26dd6410819f49d6a782df", + "counter-increment-applies-to-009.xht": [ + "da02258969376accb62a0cd46205abc3e4f31955", [ null, [ [ - "/css/CSS2/floats-clear/adjacent-floats-001-ref.xht", + "/css/reference/pass_if_number_5.xht", "==" ] ], {} ] ], - "floats-004.xht": [ - "572ab756c1ae3717f35a72b28e546e953603dedf", + "counter-increment-applies-to-012.xht": [ + "cb64a80f26714183fcaa5d489b4195ce6d6c0451", [ null, [ [ - "/css/CSS2/floats-clear/floats-004-ref.xht", + "/css/reference/pass_if_number_5.xht", "==" ] ], {} ] ], - "floats-005.xht": [ - "239f6e344167fccbe660f51093bae89826344e3d", + "counter-increment-applies-to-013.xht": [ + "7852c855882a20dcd9ba408ef795d56e5991fb55", [ null, [ [ - "/css/CSS2/floats-clear/floats-005-ref.xht", + "/css/reference/pass_if_number_5.xht", "==" ] ], {} ] ], - "floats-006.xht": [ - "02c442b9b8fcad9a8aa506f179c4e230aecb22f4", + "counter-increment-applies-to-014.xht": [ + "e3dec29315530dbde635e41c206939ed53baf646", [ null, [ [ - "/css/CSS2/floats-clear/floats-006-ref.xht", + "/css/reference/pass_if_number_5.xht", "==" ] ], {} ] ], - "floats-007.xht": [ - "49b81826af7b449805263155bd8d363bc0d43620", + "counter-increment-applies-to-015.xht": [ + "d184e2ddb5c5c05f14a0cd7ee6cc3397d14e24f6", [ null, [ [ - "/css/CSS2/floats-clear/floats-007-ref.xht", + "/css/reference/pass_if_number_5.xht", "==" ] ], {} ] ], - "floats-008.xht": [ - "c85e45da26363b162a24e4ab9fb1a6707417d185", + "counter-increment-auto-reset-001.xht": [ + "ed0203b1aa989367961f87c68b3a902089c4d409", [ null, [ [ - "/css/CSS2/floats-clear/clear-float-004-ref.xht", + "/css/CSS2/generated-content/content-auto-reset-001-ref.html", "==" ] ], {} ] ], - "floats-009.xht": [ - "eab2dd4408e18b187fe25f06729dd6100ac71dca", + "counter-increment-display-001.xht": [ + "5118b827a69ac4521d168dabf16b9c7a5e504197", [ null, [ [ - "/css/CSS2/floats-clear/floats-009-ref.xht", + "/css/CSS2/generated-content/content-auto-reset-001-ref.html", "==" ] ], {} ] ], - "floats-014.xht": [ - "91893cdf3c42e1bd5e6bec211f357ae15519ff80", + "counter-increment-not-generated-001.xht": [ + "1828797e3ca65beb1dccf0083c0861626b3dee2e", [ null, [ [ - "/css/CSS2/floats-clear/floats-014-ref.xht", + "/css/CSS2/generated-content/content-auto-reset-001-ref.html", "==" ] ], {} ] ], - "floats-015.xht": [ - "bd92a4e437b3eab84a634712cfc478062a0522b4", + "counter-increment-visibility-001.xht": [ + "4a71e6f6a6763474e7a4284cfcca28c2b1a795e8", [ null, [ [ - "/css/CSS2/floats-clear/floats-014-ref.xht", + "/css/reference/pass_if_number_5.xht", "==" ] ], {} ] ], - "floats-019.xht": [ - "6353907297d8ff49d8996f14924f67654bd90c9c", + "counter-reset-005.xht": [ + "8d72c6e79c0a40fd11e23fbeda9004a6585da38d", [ null, [ [ - "/css/CSS2/floats-clear/floats-019-ref.xht", + "/css/CSS2/reference/pass-if-number-0-30px.xht", "==" ] ], {} ] ], - "floats-022.xht": [ - "b9fd54f946fed040261c7fd2999e610fa2698675", + "counter-reset-006.xht": [ + "9c1831227ef00addf1c5119aafe241cc703d9518", [ null, [ [ - "/css/CSS2/floats-clear/floats-022-ref.xht", + "/css/CSS2/reference/pass-if-number-0-30px.xht", "==" ] ], {} ] ], - "floats-023.xht": [ - "2bf1786557653bf456322b70bae8598ada65e551", + "counter-reset-007.xht": [ + "d2f67f346ecb360081f5abaf908730c048a3c655", [ null, [ [ - "/css/CSS2/floats-clear/floats-023-ref.xht", + "/css/CSS2/reference/pass-if-number-0-30px.xht", "==" ] ], {} ] ], - "floats-024.xht": [ - "2540308f0581f71901ef9b6f934ee3e4963c66ee", + "counter-reset-008.xht": [ + "490fd3c4bfdf24c65648845a22865859bc8ddc68", [ null, [ [ - "/css/CSS2/floats-clear/floats-024-ref.xht", + "/css/reference/pass_if_number_10.html", "==" ] ], {} ] ], - "floats-025.xht": [ - "c6c680b2a08633fc61034f2df098318269054fe8", + "counter-reset-009.xht": [ + "f5770b7b1d47ed6caa069ff6d0ce47ce01390fb4", [ null, [ [ - "/css/CSS2/floats-clear/floats-025-ref.xht", + "/css/reference/pass_if_number_10.html", "==" ] ], {} ] ], - "floats-026.xht": [ - "eed0ae8d7390ece653b951baf67df8c0d74de0ed", + "counter-reset-014.xht": [ + "df1769fe2a6e4eab5fa147d3ebe45caf70c9ef19", [ null, [ [ - "/css/CSS2/floats-clear/floats-026-ref.xht", + "/css/CSS2/reference/pass-if-number-0-30px.xht", "==" ] ], {} ] ], - "floats-027.xht": [ - "ccea2ad092281edaa1550793e23b2cd2fbca141d", + "counter-reset-018.xht": [ + "a52732e9787d4cd2f04231358cd634d5a1f8f552", [ null, [ [ - "/css/CSS2/floats-clear/floats-027-ref.xht", + "/css/CSS2/reference/pass-if-number-0-30px.xht", "==" ] ], {} ] ], - "floats-028.xht": [ - "bef6f421eb84892287aa8d4d3f8b1895ff0edc65", + "counter-reset-019.xht": [ + "6a44ed4c191f27ee39b157dccda00c4006336502", [ null, [ [ - "/css/CSS2/floats-clear/floats-028-ref.xht", + "/css/CSS2/reference/pass-if-number-0-30px.xht", "==" ] ], {} ] ], - "floats-029.xht": [ - "5c35a93bdfbf6785250a8f4156c0a4086505d3b9", + "counter-reset-020.xht": [ + "9081fbd7e85375731fcf4538238580de4f8b4601", [ null, [ [ - "/css/CSS2/floats-clear/floats-029-ref.xht", + "/css/CSS2/reference/pass-if-number-0-30px.xht", "==" ] ], {} ] ], - "floats-030.xht": [ - "a25c524d257d0a1767d7f79263304426c7947937", + "counter-reset-021.xht": [ + "90e6390f3548684552ea6b9de3f7adc921141f97", [ null, [ [ - "/css/CSS2/floats-clear/floats-030-ref.xht", + "/css/reference/pass_if_number_10.html", "==" ] ], {} ] ], - "floats-031.xht": [ - "ee794fe9fca58923e7e90ae0bdf861ce694a7b85", + "counter-reset-022.xht": [ + "48cb7934e39e51e167fbdedc0714e8c3c9612f75", [ null, [ [ - "/css/CSS2/floats-clear/floats-031-ref.xht", + "/css/reference/pass_if_number_10.html", "==" ] ], {} ] ], - "floats-036.xht": [ - "1d90b428ffbbe28a3aaecc369b6018f886bdcdfd", + "counter-reset-027.xht": [ + "934679312c5d22bbdb5138ef7f14df7059741d3f", [ null, [ [ - "/css/CSS2/floats-clear/floats-036-ref.xht", + "/css/CSS2/reference/pass-if-number-0-30px.xht", "==" ] ], {} ] ], - "floats-038.xht": [ - "e95d39b38b5b99c5720531aa08cb3b0b4dc85ad7", + "counter-reset-031.xht": [ + "66fbc574264685ec826511de4976aa45152ec12a", [ null, [ [ - "/css/CSS2/floats-clear/floats-038-ref.xht", + "/css/CSS2/reference/pass-if-number-0-30px.xht", "==" ] ], {} ] ], - "floats-039.xht": [ - "03b77c952ea2cf25e5ba743cea5db62c189f1a45", + "counter-reset-032.xht": [ + "a58a8e05d8c18e4c9cf8e4a6135a04ef905b9638", [ null, [ [ - "/css/CSS2/floats-clear/floats-038-ref.xht", + "/css/CSS2/reference/pass-if-number-0-30px.xht", "==" ] ], {} ] ], - "floats-040.xht": [ - "9588e154379c900cb3d28bdd9b8bf4e06d856b69", + "counter-reset-033.xht": [ + "22e87336b57c9b3ebd38e47649d9ad3ae1105730", [ null, [ [ - "/css/CSS2/floats-clear/floats-038-ref.xht", + "/css/CSS2/reference/pass-if-number-0-30px.xht", "==" ] ], {} ] ], - "floats-041.xht": [ - "37b15dfa296354e0d9caa1076a6b8cce6fd6f6dc", + "counter-reset-034.xht": [ + "c3cddb8bfb5841ef82d7ab795360f993d0448e4f", [ null, [ [ - "/css/CSS2/floats-clear/floats-041-ref.xht", + "/css/reference/pass_if_number_10.html", "==" ] ], {} ] ], - "floats-043.xht": [ - "aa004c469c6087ef188c50efafb1572c7d819bc7", + "counter-reset-035.xht": [ + "f3914d0ccb34f5c3cf4e29566d850dfccd355b76", [ null, [ [ - "/css/CSS2/floats-clear/floats-043-ref.xht", + "/css/reference/pass_if_number_10.html", "==" ] ], {} ] ], - "floats-101.xht": [ - "7b3d721e1c5870153b39c6787026778dffc5ba2b", + "counter-reset-040.xht": [ + "99acfce6ba8b0fd1061b5f0d9d88d2efbb1a2a6c", [ null, [ [ - "/css/CSS2/floats-clear/floats-101-ref.xht", + "/css/CSS2/reference/pass-if-number-0-30px.xht", "==" ] ], {} ] ], - "floats-111.xht": [ - "4f8f14703ded8050d75b72bf64bbe76cffa3e43e", + "counter-reset-044.xht": [ + "c9f5ff35f0b85629f559338a9204d870e93b1ae8", [ null, [ [ - "/css/CSS2/floats-clear/floats-111-ref.xht", + "/css/CSS2/reference/pass-if-number-0-30px.xht", "==" ] ], {} ] ], - "floats-112.xht": [ - "ec58b3371367416ec1a557a2e4a430dee77f1349", + "counter-reset-045.xht": [ + "f60bb35c8d433d8351181ce01e62d671419ffad1", [ null, [ [ - "/css/CSS2/floats-clear/floats-112-ref.xht", + "/css/CSS2/reference/pass-if-number-0-30px.xht", "==" ] ], {} ] ], - "floats-113.xht": [ - "976caef6767ea0f020af270d2523370c5dd1e01d", + "counter-reset-046.xht": [ + "04036352cb3ff2f0fde20bee499a4fe3ac9a0bf5", [ null, [ [ - "/css/CSS2/floats-clear/floats-113-ref.xht", + "/css/CSS2/reference/pass-if-number-0-30px.xht", "==" ] ], {} ] ], - "floats-114.xht": [ - "feb189a422b8f2f1a9efc9aa75bc58c6fd34e7f9", + "counter-reset-047.xht": [ + "70fc34d7d24630891e62a4e143a44e9cfeceb273", [ null, [ [ - "/css/CSS2/floats-clear/floats-114-ref.xht", + "/css/reference/pass_if_number_10.html", "==" ] ], {} ] ], - "floats-115.xht": [ - "b426fcd6105759d9b8315d5ba17e4112c357274c", + "counter-reset-048.xht": [ + "cddbd21a8f634d9629411ba0e556bc5795a092f2", [ null, [ [ - "/css/CSS2/floats-clear/floats-115-ref.xht", + "/css/reference/pass_if_number_10.html", "==" ] ], {} ] ], - "floats-116.xht": [ - "507d74fb54894006a8387746a27172382e67052c", + "counter-reset-055.xht": [ + "fdcab5fdd793220fce64cb7b2635776faf18ac68", [ null, [ [ - "/css/CSS2/floats-clear/floats-116-ref.xht", + "/css/CSS2/reference/pass-if-number-0-30px.xht", "==" ] ], {} ] ], - "floats-117.xht": [ - "43183603a024485215df3cd9f4a77a5b4246a172", + "counter-reset-applies-to-001.xht": [ + "feef6468487f8e16f9ccaddd23df368c0c53a5b5", [ null, [ [ - "/css/CSS2/floats-clear/floats-116-ref.xht", + "/css/reference/pass_if_number_5.xht", "==" ] ], {} ] ], - "floats-118.xht": [ - "efd369b47d36621cf797457b33a346532296d026", + "counter-reset-applies-to-002.xht": [ + "a4bd0ad64071477a6cd79f6a20f351247b8a4ca0", [ null, [ [ - "/css/CSS2/floats-clear/floats-118-ref.xht", + "/css/reference/pass_if_number_5.xht", "==" ] ], {} ] ], - "floats-119.xht": [ - "4c8b4cbc97221af7d9a9f3918bdb66ceac2c672e", + "counter-reset-applies-to-003.xht": [ + "e634745199e3ba99b7bb68ba8ce437ab423ce732", [ null, [ [ - "/css/CSS2/floats-clear/floats-119-ref.xht", + "/css/reference/pass_if_number_5.xht", "==" ] ], {} ] ], - "floats-120.xht": [ - "c68c1930bded89fd36c7c71ab7695159f4169c3a", + "counter-reset-applies-to-004.xht": [ + "9b871d2e91f0bc89f27955323fd629eec719383a", [ null, [ [ - "/css/CSS2/floats-clear/floats-119-ref.xht", + "/css/reference/pass_if_number_5.xht", "==" ] ], {} ] ], - "floats-121.xht": [ - "96df9be181fac0d93b6dc5e4edb52e01ed0dd429", + "counter-reset-applies-to-005.xht": [ + "ba3828fc5f7b65852e96a13775a20a7e3c309c4f", [ null, [ [ - "/css/CSS2/floats-clear/floats-121-ref.xht", + "/css/reference/pass_if_number_5.xht", "==" ] ], {} ] ], - "floats-122.xht": [ - "783783222ae5b51a2b75899b24e53b977e540e6c", + "counter-reset-applies-to-006.xht": [ + "1858dc1d1a0be93fc6c018d2151c3ce344380f04", [ null, [ [ - "/css/CSS2/floats-clear/floats-122-ref.xht", + "/css/reference/pass_if_number_5.xht", "==" ] ], {} ] ], - "floats-123.xht": [ - "c05d6f040444ab63cec799b8ec3894aad1582cc5", + "counter-reset-applies-to-007.xht": [ + "494e91fd8eb2f032735198b7ad7f3c20dc6a6614", [ null, [ [ - "/css/CSS2/floats-clear/floats-123-ref.xht", + "/css/reference/pass_if_number_5.xht", "==" ] ], {} ] ], - "floats-124.xht": [ - "3a0a3e9535060711f69b420b59833d93139cd7db", + "counter-reset-applies-to-008.xht": [ + "0391193eb61ce96ce44c9654fb99cc59d62b4f18", [ null, [ [ - "/css/CSS2/floats-clear/floats-124-ref.xht", + "/css/reference/pass_if_number_5.xht", "==" ] ], {} ] ], - "floats-125.xht": [ - "1468dd9d3192e744759f338ebc81b0f6dfa13520", + "counter-reset-applies-to-009.xht": [ + "f0f14b882cd5d846bc18a4df42c701604bf0dc09", [ null, [ [ - "/css/CSS2/floats-clear/floats-125-ref.xht", + "/css/reference/pass_if_number_5.xht", "==" ] ], {} ] ], - "floats-132.xht": [ - "ed947eff263022bb22cd2e2a18ce36d7752b2541", + "counter-reset-applies-to-012.xht": [ + "29bd951c3785c1dc7a9d0b2ef2eeab6ea8efde25", [ null, [ [ - "/css/CSS2/floats-clear/floats-132-ref.xht", + "/css/reference/pass_if_number_5.xht", "==" ] ], {} ] ], - "floats-133.xht": [ - "45599baa9cc2eb66e3fb642a43786eb3c3522e59", + "counter-reset-applies-to-013.xht": [ + "25877b448d4245f587eea50f37571ec988071218", [ null, [ [ - "/css/CSS2/floats-clear/floats-133-ref.xht", + "/css/reference/pass_if_number_5.xht", "==" ] ], {} ] ], - "floats-134.xht": [ - "b19f0a6dab7bdf64ace7cac43463c3c9f026ec60", + "counter-reset-applies-to-014.xht": [ + "34bfbbdd4911e9fb5d8ab258c6d22b58b6f518b8", [ null, [ [ - "/css/CSS2/floats-clear/floats-133-ref.xht", + "/css/reference/pass_if_number_5.xht", "==" ] ], {} ] ], - "floats-135.xht": [ - "ff2924a037f4828683485580cd07509c06e6bb77", + "counter-reset-applies-to-015.xht": [ + "3c3c0a3a7ad81f20f5b37f3145aff1cac6e6c435", [ null, [ [ - "/css/CSS2/floats-clear/floats-135-ref.xht", + "/css/reference/pass_if_number_5.xht", "==" ] ], {} ] ], - "floats-136.xht": [ - "207426af57c6c72db0a2f004fea5369587c1eb32", + "counter-reset-display-001.xht": [ + "f18f007d964c160eabe45f4a0e1265afa8e20d62", [ null, [ [ - "/css/CSS2/floats-clear/floats-136-ref.xht", + "/css/CSS2/generated-content/content-auto-reset-001-ref.html", "==" ] ], {} ] ], - "floats-138.xht": [ - "7d5746d1f32aa7f300728b23338220357c072e6f", + "counter-reset-increment-002.xht": [ + "ac4518716a87f2a2249607e22f12a26c51417392", [ null, [ [ - "/css/CSS2/floats-clear/floats-138-ref.xht", + "/css/CSS2/lists/counter-reset-increment-002-ref.xht", "==" ] ], {} ] ], - "floats-139.xht": [ - "f130e44acfaf16445af461a2a7b64703714d1ce3", + "counter-reset-not-generated-001.xht": [ + "d745a77ec344b0e670f65d1732367a9c3f80f0ae", [ null, [ [ - "/css/CSS2/floats-clear/floats-139-ref.xht", + "/css/CSS2/generated-content/content-auto-reset-001-ref.html", "==" ] ], {} ] ], - "floats-141.xht": [ - "15fb41f75748bebfc182087d29d64f4df5bba059", + "counter-reset-visibility-001.xht": [ + "20cc8de30b6fa984a3590a86bbe098bcc8cd345a", [ null, [ [ - "/css/CSS2/floats-clear/floats-141-ref.xht", + "/css/reference/pass_if_number_5.xht", "==" ] ], {} ] ], - "floats-142.xht": [ - "c64f88969917e5a3307b24b788adca7b73c92413", + "increment-counter-001.xht": [ + "8fb7f6bd7e9fc20ff7dc69a985b4ebadcde47266", [ null, [ [ - "/css/CSS2/floats-clear/floats-142-ref.xht", + "/css/reference/pass_if_number_5.xht", "==" ] ], {} ] ], - "floats-143.xht": [ - "6eb7e7107e24f0b31dcc4575fd1ff48ace34281f", + "list-style-019.xht": [ + "a1f3ff062ed94e2021a21c1ca1f05a8afdb03fa9", [ null, [ [ - "/css/CSS2/floats-clear/floats-143-ref.xht", + "/css/CSS2/lists/list-style-019-ref.xht", "==" ] ], {} ] ], - "floats-144.xht": [ - "89e33dc5dcff08ecf50596220bc8c6265c33ddc0", + "list-style-020.xht": [ + "d49932e1f53d4b3b161fa98032b5ce27a5da4dae", [ null, [ [ - "/css/CSS2/floats-clear/floats-144-ref.xht", + "/css/CSS2/lists/list-style-020-ref.xht", "==" ] ], {} ] ], - "floats-145.xht": [ - "b5b5bf2c1f9f3508c3488874fd457b6b26fa8593", + "list-style-021.xht": [ + "07d638845d9a45dc003760eab02304899578829a", [ null, [ [ - "/css/CSS2/floats-clear/floats-145-ref.xht", + "/css/CSS2/lists/list-style-021-ref.xht", "==" ] ], {} ] ], - "floats-146.xht": [ - "9aa4be34f0e6207430c833dae02c83a52318fa4e", + "list-style-applies-to-001.xht": [ + "cd1e49f47ac1fe6862c6a3c3c79c0134d25622e3", [ null, [ [ - "/css/CSS2/floats-clear/floats-146-ref.xht", + "/css/reference/single_square_list_marker.xht", "==" ] ], {} ] ], - "floats-147.xht": [ - "e75a7e84d8cb3adf9317a92d88e56b7af60bc722", + "list-style-applies-to-002.xht": [ + "9266ba048cbf65a5dbe5a9ec9a6fcef2d5b7ccfa", [ null, [ [ - "/css/CSS2/floats-clear/floats-147-ref.xht", + "/css/reference/single_square_list_marker.xht", "==" ] ], {} ] ], - "floats-149.xht": [ - "cae42669536cf00e267a3feaf4bb2d4a6a968e68", + "list-style-applies-to-003.xht": [ + "81c984e40003bfb10717ee5deeffc7b91e70f697", [ null, [ [ - "/css/CSS2/floats-clear/floats-149-ref.xht", + "/css/reference/single_square_list_marker.xht", "==" ] ], {} ] ], - "floats-150.xht": [ - "69764388d38e38b82a26acc839fc3e00b21c007c", + "list-style-applies-to-004.xht": [ + "baf9ae7ab3044e151ad1d9b5f501d9ff207a39d7", [ null, [ [ - "/css/CSS2/floats-clear/floats-150-ref.xht", + "/css/reference/single_square_list_marker.xht", "==" ] ], {} ] ], - "floats-152.xht": [ - "42df8c1645521c4b57680866e976953cbce18903", + "list-style-applies-to-007.xht": [ + "f0528be49e2c0a5f1dc58751820bc404727f46ca", [ null, [ [ - "/css/CSS2/floats-clear/floats-150-ref.xht", + "/css/reference/single_square_list_marker.xht", "==" ] ], {} ] ], - "floats-153.xht": [ - "67129c4da2a2ef6ef8f42c6a26e9ffcbf8749da3", + "list-style-applies-to-008.xht": [ + "630d1007a57918703dcccd140cbbd65f8ac8c267", [ null, [ [ - "/css/CSS2/floats-clear/floats-153-ref.xht", + "/css/reference/single_square_list_marker.xht", "==" ] ], {} ] ], - "floats-154.xht": [ - "5d704febdf714f4b7e9294677f9b26285596bf73", + "list-style-applies-to-009.xht": [ + "1c9d4554447163f029f814a86ebb2215159b9791", [ null, [ [ - "/css/CSS2/floats-clear/floats-154-ref.xht", + "/css/reference/single_square_list_marker.xht", "==" ] ], {} ] ], - "floats-bfc-001.xht": [ - "aa97aeed04dfc708dec04ef728fae1ededd715dd", + "list-style-applies-to-010.xht": [ + "71533ea0b4d01458014546bd0031153505daca95", [ null, [ [ - "/css/CSS2/floats-clear/floats-bfc-001-ref.xht", + "/css/reference/single_square_list_marker.xht", "==" ] ], {} ] ], - "floats-bfc-002.xht": [ - "3292e3b65047952679c36f1d4dd323b11b2ed69e", + "list-style-applies-to-012.xht": [ + "8fdec89f7ad15833c54cf14a8d59f553dc4a6d04", [ null, [ [ - "/css/CSS2/floats-clear/floats-bfc-001-ref.xht", + "/css/reference/single_square_list_marker.xht", "==" ] ], {} ] ], - "floats-clear-multicol-000.html": [ - "3598a2f7aba955b5ba3e6ee1739bfd468d2b28ea", + "list-style-applies-to-013.xht": [ + "eddac5746c53c17b6d0f6bcf3250663d795cf8cc", [ null, [ [ - "/css/CSS2/floats-clear/floats-clear-multicol-000-ref.html", + "/css/reference/single_square_list_marker.xht", "==" ] ], {} ] ], - "floats-clear-multicol-001.html": [ - "dbcb3b557b918b6b63a9005cd8ff0de6f7c4f8c1", + "list-style-applies-to-014.xht": [ + "e439649e59a6b4ad64c067620eba4274eb658861", [ null, [ [ - "/css/CSS2/floats-clear/floats-clear-multicol-000-ref.html", + "/css/reference/single_square_list_marker.xht", "==" ] ], {} ] ], - "floats-clear-multicol-002.html": [ - "877ffed2c2f37f2bc3d7808cfdbe3ebed313d91c", + "list-style-applies-to-015.xht": [ + "34adec269f2416ee8f817f874fb0165673d3350d", [ null, [ [ - "/css/CSS2/floats-clear/floats-clear-multicol-000-ref.html", + "/css/reference/single_square_list_marker.xht", "==" ] ], {} ] ], - "floats-clear-multicol-003.html": [ - "3f951b67f9fcf3c6384ff29c058ee249b36a047c", + "list-style-image-004.xht": [ + "f16fdd9b9444fd8e909ca6bbb2b9233f013408e0", [ null, [ [ - "/css/CSS2/floats-clear/floats-clear-multicol-000-ref.html", + "/css/CSS2/lists/list-style-image-004-ref.xht", "==" ] ], {} ] ], - "floats-clear-multicol-balancing-000.html": [ - "b034ceab493971d0bd37d4fc185c80677165019a", + "list-style-image-005.xht": [ + "c6d15492be6ebc088b0fb5eb420512eb0d76ba66", [ null, [ [ - "/css/CSS2/floats-clear/floats-clear-multicol-balancing-000-ref.html", + "/css/CSS2/lists/list-style-image-005-ref.xht", "==" ] ], {} ] ], - "floats-clear-multicol-balancing-001.html": [ - "5944343c603363864d3509489903db530b1f3f9c", + "list-style-image-007.html": [ + "9ee947aa93d9f1c1cf3651354e10c6a33f296852", [ null, [ [ - "/css/CSS2/floats-clear/floats-clear-multicol-balancing-000-ref.html", + "/css/CSS2/lists/list-style-image-007-ref.html", "==" ] ], {} ] ], - "floats-clear-multicol-balancing-002.html": [ - "99f86d1d455bb4527b390d7dbb2960198d27d098", + "list-style-position-018.xht": [ + "8c3f614beba4d25d1a11396e657499fed5f089b3", [ null, [ [ - "/css/CSS2/floats-clear/floats-clear-multicol-balancing-000-ref.html", + "/css/CSS2/lists/list-style-position-018-ref.xht", "==" ] ], {} ] ], - "floats-clear-multicol-balancing-003.html": [ - "4bc32d833da7c6e1c73e728490a2b4993b4dac95", + "list-style-position-023.xht": [ + "8169a016422a5e9d78038c78e58b59734d8c1186", [ null, [ [ - "/css/CSS2/floats-clear/floats-clear-multicol-balancing-000-ref.html", + "/css/CSS2/lists/list-style-position-023-ref.xht", "==" ] ], {} ] ], - "margin-collapse-018.xht": [ - "f509ad1ac4f8d7c7af8b4cc86e0089fbb001762b", + "list-style-position-024.xht": [ + "78ff54b630fd51e3066c6a73828b8ac4486f03f1", [ null, [ [ - "/css/CSS2/floats-clear/clearance-006-ref.xht", + "/css/CSS2/lists/list-style-position-024-ref.xht", "==" ] ], {} ] ], - "margin-collapse-023.xht": [ - "e54c0a203facd15bc72e7fee41bd52044d906ba2", + "list-style-type-applies-to-001.xht": [ + "3b8c9d842df5163c020a4bf2bbb19bad33eb18a9", [ null, [ [ - "/css/CSS2/floats-clear/clearance-006-ref.xht", + "/css/reference/single_square_list_marker.xht", "==" ] ], {} ] ], - "margin-collapse-024.xht": [ - "2d64922f614edf965f8e98af28eaa972e9929b49", + "list-style-type-applies-to-002.xht": [ + "9f9c2c3d3921a9f11c19d18dc8bc3c8596092798", [ null, [ [ - "/css/CSS2/floats-clear/margin-collapse-024-ref.xht", + "/css/reference/single_square_list_marker.xht", "==" ] ], {} ] ], - "margin-collapse-027.xht": [ - "fd9a53bd522773038a4f6aefa815072b0bc8e8c0", + "list-style-type-applies-to-003.xht": [ + "e984e8105c9572584b61435ad33c788c8bc4c4de", [ null, [ [ - "/css/CSS2/floats-clear/clearance-006-ref.xht", + "/css/reference/single_square_list_marker.xht", "==" ] ], {} ] ], - "margin-collapse-031.xht": [ - "13e70e0b3ac9bbceca4733a94c402fcaaabb7b13", + "list-style-type-applies-to-004.xht": [ + "4840a52eec505fda8df5cefd4122b7a2bb4b04f8", [ null, [ [ - "/css/CSS2/floats-clear/margin-collapse-031-ref.xht", + "/css/reference/single_square_list_marker.xht", "==" ] ], {} ] ], - "margin-collapse-033.xht": [ - "a86d89c2460988d429b5eb6f7acfd61ba22d682a", + "list-style-type-applies-to-007.xht": [ + "d5b5115e6a492682411d40918316446faaec1dd7", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/reference/single_square_list_marker.xht", "==" ] ], {} ] ], - "margin-collapse-034.xht": [ - "2cc0d1df539ea97193f9905ddd240fd88cf8810f", + "list-style-type-applies-to-008.xht": [ + "022ce8eac1c78136f9bf8202fa8b4c3c64573c69", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/reference/single_square_list_marker.xht", "==" ] ], {} ] ], - "margin-collapse-035.xht": [ - "16168971c2480e314b59c34af23a2a2b748e2ae7", + "list-style-type-applies-to-009.xht": [ + "08f70730615c711b2a3dde67ea3376984d051078", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/reference/single_square_list_marker.xht", "==" ] ], {} ] ], - "margin-collapse-121.xht": [ - "8b6141ea3766eed8a38360391523c7baeb747d3f", + "list-style-type-applies-to-010.xht": [ + "df82d5b0015b0036ff176cb21788174988ac7dc7", [ null, [ [ - "/css/CSS2/floats-clear/margin-collapse-121-ref.xht", + "/css/reference/single_square_list_marker.xht", "==" ] ], {} ] ], - "margin-collapse-122.xht": [ - "17081a2cfe7c792fc1757a05bbbe175ac7b2ee89", + "list-style-type-applies-to-012.xht": [ + "c0134f2116bd7ed9550d461d54ac8ca028056f51", [ null, [ [ - "/css/CSS2/floats-clear/margin-collapse-121-ref.xht", + "/css/reference/single_square_list_marker.xht", "==" ] ], {} ] ], - "margin-collapse-123.xht": [ - "db83b3417840f2be7b5f95e7aa596452fb930dfb", + "list-style-type-applies-to-013.xht": [ + "5729e67605928438960f0f7c8b2090d03862df7e", [ null, [ [ - "/css/CSS2/floats-clear/margin-collapse-123-ref.xht", + "/css/reference/single_square_list_marker.xht", "==" ] ], {} ] ], - "margin-collapse-125.xht": [ - "42b39e5f9d8f52def76188b12e471b61bdae4fe6", + "list-style-type-applies-to-014.xht": [ + "9af75890b01f71f8d31d7cdc6931f7abd171901a", [ null, [ [ - "/css/CSS2/floats-clear/margin-collapse-125-ref.xht", + "/css/reference/single_square_list_marker.xht", "==" ] ], {} ] ], - "margin-collapse-134.xht": [ - "a777b655cecc89c2111633f9a5286b160a25bc7f", + "list-style-type-applies-to-015.xht": [ + "c7707adc11dfa7cf4ed124e080c24bbbfe844588", [ null, [ [ - "/css/CSS2/floats-clear/margin-collapse-134-ref.xht", + "/css/reference/single_square_list_marker.xht", "==" ] ], {} ] ], - "margin-collapse-135.xht": [ - "85647a02a0340b5096aad53e7e9b01828399e9e3", + "reset-counter-001.xht": [ + "e1654073beb97ab8a576de700a7fb57f9a4a704b", [ null, [ [ - "/css/CSS2/floats-clear/margin-collapse-135-ref.xht", + "/css/reference/pass_if_number_5.xht", "==" ] ], {} ] - ], - "margin-collapse-142.xht": [ - "07fdd758a39de2d52d29814d324819133e7ad788", + ] + }, + "margin-padding-clear": { + "margin-001.xht": [ + "85264b1a984105ea916ee50c11d1263f37483751", [ null, [ [ - "/css/CSS2/floats-clear/margin-collapse-142-ref.xht", + "/css/CSS2/margin-padding-clear/margin-001-ref.xht", "==" ] ], {} ] ], - "margin-collapse-157.xht": [ - "ab3ca14b172658afc2042e05cc17f966c7d8d223", + "margin-002.xht": [ + "a2de2f9ec3a98857eefc8284375d63251bffee60", [ null, [ [ - "/css/CSS2/floats-clear/margin-collapse-157-ref.xht", + "/css/CSS2/margin-padding-clear/margin-002-ref.xht", "==" ] ], {} ] ], - "margin-collapse-158.xht": [ - "31a0a9f6551dfe47e0cf124432e76f936159105f", + "margin-003.xht": [ + "cc8362fdba0e456a8d997b5c020d00c80066baee", [ null, [ [ - "/css/CSS2/floats-clear/margin-collapse-158-ref.xht", + "/css/CSS2/margin-padding-clear/margin-003-ref.xht", "==" ] ], {} ] ], - "margin-collapse-165.xht": [ - "14a7ccd5f52feee67b5329479eae50a2e19bdc24", + "margin-004.xht": [ + "6fb987ffb8705704e6999c4e84b37f5ecb3d4e24", [ null, [ [ - "/css/CSS2/floats-clear/margin-collapse-165-ref.xht", + "/css/CSS2/margin-padding-clear/margin-004-ref.xht", "==" ] ], {} ] ], - "margin-collapse-166.xht": [ - "7bbd95db7e5f0cc212bad40fbfad1d76968d2a8c", + "margin-005.xht": [ + "14d620b20495f07889f1564a623bfd671e60763e", [ null, [ [ - "/css/CSS2/floats-clear/margin-collapse-165-ref.xht", + "/css/CSS2/margin-padding-clear/margin-005-ref.xht", "==" ] ], {} ] ], - "margin-collapse-clear-002.xht": [ - "c9fd8961d5f42cd9ca96fdfa718391238184c90f", + "margin-006.xht": [ + "2df49b6c175f45558eee9959fab4b73de37c572e", [ null, [ [ - "/css/CSS2/floats-clear/margin-collapse-clear-002-ref.xht", + "/css/CSS2/margin-padding-clear/margin-006-ref.xht", "==" ] ], {} ] ], - "margin-collapse-clear-003.xht": [ - "f789279aa9778818fa7866956388365c56a79e8a", + "margin-007.xht": [ + "ec2105964528da311adff93c2699b2cbbc9cfbf8", [ null, [ [ - "/css/CSS2/floats-clear/margin-collapse-clear-003-ref.xht", + "/css/CSS2/margin-padding-clear/margin-007-ref.xht", "==" ] ], {} ] ], - "margin-collapse-clear-008.xht": [ - "f8709d9d57df5b1bf5c3e41195c8dc6c1e90550d", + "margin-008.xht": [ + "468884d2c5121d00fdbe9dd0bb9987bc0f37281c", [ null, [ [ - "/css/CSS2/floats-clear/margin-collapse-clear-002-ref.xht", + "/css/CSS2/margin-padding-clear/margin-008-ref.xht", "==" ] ], {} ] ], - "margin-collapse-clear-009.xht": [ - "621d968d9b2ab6731196e1e35d8a678586dd0f30", + "margin-009.xht": [ + "afb4bb9880f23e92dc7e40dffdc5500ba1a6ff65", [ null, [ [ - "/css/CSS2/floats-clear/margin-collapse-clear-003-ref.xht", + "/css/CSS2/margin-padding-clear/margin-009-ref.xht", "==" ] ], {} ] ], - "margin-collapse-clear-012.xht": [ - "6e48ae4f92a6029dae323a73a651932a0d9dc037", + "margin-applies-to-001.xht": [ + "468ca8eb2b91fdd7ce7140086807f4ee5c5a518e", [ null, [ [ - "/css/CSS2/floats-clear/margin-collapse-clear-012-ref.xht", + "/css/CSS2/margin-padding-clear/margin-applies-to-001-ref.xht", "==" ] ], {} ] ], - "margin-collapse-clear-013.xht": [ - "bfeddbf02055036ef523a1fcd51b45947cced99a", + "margin-applies-to-002.xht": [ + "619381c5c54c21e33799aa7ef4ec110517f19d50", [ null, [ [ - "/css/CSS2/floats-clear/margin-collapse-clear-012-ref.xht", + "/css/CSS2/margin-padding-clear/margin-applies-to-001-ref.xht", "==" ] ], {} ] ], - "margin-collapse-clear-014.xht": [ - "4dc2282184ae6f62323dd56b29ea9525db2f96b8", + "margin-applies-to-003.xht": [ + "02f8b373fb0a5082de51db4cb36109077924a1fa", [ null, [ [ - "/css/CSS2/floats-clear/margin-collapse-clear-014-ref.xht", + "/css/CSS2/margin-padding-clear/margin-applies-to-001-ref.xht", "==" ] ], {} ] ], - "margin-collapse-clear-015.xht": [ - "ba279bf375ac8cbf78ca850d9af867b9c15d4d98", + "margin-applies-to-004.xht": [ + "9a90f4f66468bcab8b7287b33bfbae3df0803ace", [ null, [ [ - "/css/CSS2/floats-clear/margin-collapse-clear-015-ref.xht", + "/css/CSS2/margin-padding-clear/margin-applies-to-001-ref.xht", "==" ] ], {} ] ], - "margin-collapse-clear-016.xht": [ - "717ce1ca6ffe3376e4b431df1c38fd3102e63519", + "margin-applies-to-005.xht": [ + "3add8b9f0ef6dd33e0fabc025edd31d7eabbae00", [ null, [ [ - "/css/CSS2/floats-clear/margin-collapse-clear-016-ref.xht", + "/css/CSS2/margin-padding-clear/margin-applies-to-001-ref.xht", "==" ] ], {} ] ], - "margin-collapse-clear-017.xht": [ - "6e0dbf05c53150942139fff0e4636f1a6c177554", + "margin-applies-to-006.xht": [ + "a499cf2446762b4c4be6791b36814d6bbef1d6f1", [ null, [ [ - "/css/CSS2/floats-clear/margin-collapse-clear-017-ref.xht", + "/css/CSS2/margin-padding-clear/margin-applies-to-001-ref.xht", "==" ] ], {} ] ], - "negative-clearance-after-adjoining-float.html": [ - "698f38079033ac26d746aa4f3b7402bc431dd262", + "margin-applies-to-007.xht": [ + "272a72a4415944d93f5b444b7e59682bafb27d9d", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/margin-padding-clear/margin-applies-to-001-ref.xht", "==" ] ], {} ] ], - "negative-clearance-after-bottom-margin.html": [ - "fb0663945ebf46e347f078a5da0d612d8885bf3a", + "margin-applies-to-009.xht": [ + "7faa285e62c05a37a9c1202fc9fece090b9c7308", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/CSS2/margin-padding-clear/margin-applies-to-009-ref.xht", "==" ] ], {} ] ], - "nested-clearance-new-formatting-context.html": [ - "5e43b25067082c386f76988e043e9ce994311ed4", + "margin-applies-to-012.xht": [ + "9f5d1b445b848ac553c12b792ecd9418af9d6fd3", [ null, [ [ - "/css/reference/ref-filled-green-200px-square.html", + "/css/CSS2/margin-padding-clear/margin-applies-to-009-ref.xht", "==" ] ], {} ] ], - "no-clearance-adjoining-opposite-float.html": [ - "01a457ee1fb69fbcd368029a19767b9403a9bd45", + "margin-applies-to-013.xht": [ + "2cb806fa9e7bc0c98430ab683cab8227f4d138bd", [ null, [ [ - "/css/reference/nothing.html", + "/css/CSS2/margin-padding-clear/margin-applies-to-009-ref.xht", "==" ] ], {} ] ], - "no-clearance-due-to-large-margin-after-left-right.html": [ - "bc459d06cde542f8be6f6d3b3553bf2ff72cab35", + "margin-applies-to-014.xht": [ + "445ba6d9c5750695f1d7f8122707f74b6278047a", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/margin-padding-clear/margin-applies-to-009-ref.xht", "==" ] ], {} ] ], - "no-clearance-due-to-large-margin.html": [ - "cabb1ac850430bbfd96144b6ca080ad6402b7506", + "margin-applies-to-015.xht": [ + "b15ec1c1ebc9386cc986cebc7e292734ae0561dd", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/margin-padding-clear/margin-applies-to-009-ref.xht", "==" ] ], {} ] ], - "remove-block-before-self-collapsing-sibling-with-clearance.html": [ - "c7a4006ff4a331b063e7016def43c687fd37eee2", + "margin-auto-on-block-box.html": [ + "1afc98a91322feab5fe249b34c26274468fb0b22", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/margin-padding-clear/margin-auto-on-block-box-ref.html", "==" ] ], {} ] ], - "second-float-inside-empty-cleared-block-after-margin.html": [ - "ee8bebc53b6b33e821cb4296281fb59c26f7a9fe", + "margin-backgrounds-002.xht": [ + "75c0211ca4b9c541eddb4b2698efd185574f0df4", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "second-float-inside-empty-cleared-block.html": [ - "a383e9a6a21e82fbd0f190d0e21c203ff3f17605", + "margin-backgrounds-003.xht": [ + "51d0a619e1b75516d6f6b8f320810fd91bfd8f1b", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] - ] - }, - "fonts": { - "font-003.xht": [ - "18a6355b6e3d0734b99ec7e0eeab46b88bb7db98", + ], + "margin-border-padding-001.xht": [ + "818ed0b3c10549a99d89de9c45f40e35418e9292", [ null, [ [ - "/css/CSS2/fonts/font-003-ref.html", + "/css/CSS2/margin-padding-clear/margin-border-padding-001-ref.xht", "==" ] ], {} ] ], - "font-011.xht": [ - "b780f85ac3877047965c769d6cca36f97e66e155", + "margin-border-padding-002.xht": [ + "381d1bdb71e3578d2ba7a93d1763b44bc91880aa", [ null, [ [ - "/css/CSS2/reference/no_red_bold_italic_small-caps_ahem.html", + "/css/CSS2/margin-padding-clear/margin-border-padding-001-ref.xht", "==" ] ], {} ] ], - "font-012.xht": [ - "f805335215f166de6ecbdd4ae5b182f47c178263", + "margin-border-padding-003.xht": [ + "01e6dd7b0ba1457fdb660a0e5e19c4594eb47181", [ null, [ [ - "/css/CSS2/reference/no_red_bold_italic_small-caps_ahem.html", + "/css/CSS2/margin-padding-clear/margin-border-padding-001-ref.xht", "==" ] ], {} ] ], - "font-013.xht": [ - "67b427d1e5d61814ee5f6f8d82b85b5302193b11", + "margin-bottom-004.xht": [ + "869cf9385e20bf9c08dc59d03bb27df5c6fb6343", [ null, [ [ - "/css/CSS2/reference/no_red_bold_italic_small-caps_ahem.html", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "font-014.xht": [ - "125ff9d9aadbe9274b4177943ee334854ef9eb40", + "margin-bottom-005.xht": [ + "88ab485357dcc17369e30cb9532dcfdf967f943b", [ null, [ [ - "/css/CSS2/reference/no_red_bold_italic_small-caps_ahem.html", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "font-015.xht": [ - "fca28a748455138f37efa40b12c6fb63cb710fb3", + "margin-bottom-006.xht": [ + "db983feb90b712e7b2d89c7b7b5c4926869c1937", [ null, [ [ - "/css/CSS2/reference/no_red_bold_italic_small-caps_ahem.html", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "font-016.xht": [ - "5e24d1653f76088b95ac1d6d95574c162afeccb7", + "margin-bottom-007.xht": [ + "859e29f57e0cd1ab91a2c89f75efd5e79d33dd05", [ null, [ [ - "/css/CSS2/reference/no_red_bold_italic_small-caps_ahem.html", + "/css/CSS2/margin-padding-clear/margin-bottom-007-ref.xht", "==" ] ], {} ] ], - "font-029.xht": [ - "bad2252124ed6f08f9d0a3048b2bf074fa4ab109", + "margin-bottom-008.xht": [ + "ce0ae2f4c9a274bd0a23594f1b3c5534aaf8a3a9", [ null, [ [ - "/css/CSS2/reference/no_red_bold_italic_small-caps_ahem.html", + "/css/CSS2/margin-padding-clear/margin-bottom-007-ref.xht", "==" ] ], {} ] ], - "font-030.xht": [ - "f087230126905ddb1d2f6a6acd0f243da611d69d", + "margin-bottom-016.xht": [ + "202d907685447056a1ad7da4b1a83a6298d77a82", [ null, [ [ - "/css/CSS2/reference/no_red_bold_italic_small-caps_ahem.html", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "font-031.xht": [ - "53183a6e1c55bba5e70d4119e470d24faf01748c", + "margin-bottom-017.xht": [ + "970313dd394ce845ad2bad6718c4f6cb98f835e3", [ null, [ [ - "/css/CSS2/reference/no_red_bold_italic_small-caps_ahem.html", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "font-032.xht": [ - "92a9ad21c986c96372552ceb0c481f438fc6790e", + "margin-bottom-018.xht": [ + "fe9c09c5b4d566f9b0fc42a1f5a684dd702f4805", [ null, [ [ - "/css/CSS2/reference/no_red_bold_italic_small-caps_ahem.html", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "font-042.xht": [ - "597cf9f12d189c8463ca3888aa27bda3a2c0e221", + "margin-bottom-019.xht": [ + "a7cb15d064e776a4d2aa27fc579751e941cdff22", [ null, [ [ - "/css/CSS2/reference/no_red_bold_italic_small-caps_ahem.html", + "/css/CSS2/margin-padding-clear/margin-bottom-019-ref.xht", "==" ] ], {} ] ], - "font-043.xht": [ - "b860b2be488157885bd11410fe15f3d85b66b261", + "margin-bottom-020.xht": [ + "99800e4ca1ce2e71d07a75b730a8967876b7f0b9", [ null, [ [ - "/css/CSS2/reference/no_red_bold_italic_small-caps_ahem.html", + "/css/CSS2/margin-padding-clear/margin-bottom-019-ref.xht", "==" ] ], {} ] ], - "font-051.xht": [ - "fc23ab4c7787aecef8ed9e23d3dff25619577726", + "margin-bottom-028.xht": [ + "7925fcb2fded37b605ac1354e84dd827c15319a5", [ null, [ [ - "/css/CSS2/fonts/font-051-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "font-146.xht": [ - "03af5f5669bcff7938f98e69ca40415be0520df0", + "margin-bottom-029.xht": [ + "5f9e225cb112873a0171554a4bbce81956ece380", [ null, [ [ - "/css/CSS2/fonts/font-146-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "font-148.xht": [ - "4f5a3f1d20ca9b84334da9ead4cc705b4f829e9f", + "margin-bottom-030.xht": [ + "3b64f299280e16c003d0faea7b32f6733faf0b74", [ null, [ [ - "/css/CSS2/fonts/font-148-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "font-applies-to-001.xht": [ - "58ec79b7ed92a1d8a511ea87cb1247a62e990012", + "margin-bottom-031.xht": [ + "4cf74fc375a25538cc833cb475342e86cb18b0e2", [ null, [ [ - "/css/CSS2/fonts/font-applies-to-001-ref.xht", + "/css/CSS2/margin-padding-clear/margin-bottom-031-ref.xht", "==" ] ], {} ] ], - "font-applies-to-002.xht": [ - "6218c3d2af7378de2310f5f6a4e8c6624d7068d5", + "margin-bottom-032.xht": [ + "ade5b3fdf223dab26eea8150aab0d51887d159df", [ null, [ [ - "/css/CSS2/fonts/font-applies-to-001-ref.xht", + "/css/CSS2/margin-padding-clear/margin-bottom-031-ref.xht", "==" ] ], {} ] ], - "font-applies-to-005.xht": [ - "7231ef02e5e4e51f1553faf4c6fb1f3c09074400", + "margin-bottom-040.xht": [ + "e7f08579880f41d1ad760a4bf6e58323d992b6b2", [ null, [ [ - "/css/CSS2/fonts/font-applies-to-001-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "font-applies-to-006.xht": [ - "5e28f48b14b454b5403405d61e9a89ff01e5eaba", + "margin-bottom-041.xht": [ + "168a526cbaccf6ef8aa838bb0cfefa4f075fa863", [ null, [ [ - "/css/CSS2/fonts/font-applies-to-001-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "font-applies-to-007.xht": [ - "f01e413b9cf720c5708c6addd96de9f92b3170fb", + "margin-bottom-042.xht": [ + "6d5cda8e576e0e11d3a223ab8ce3ab4d976a782a", [ null, [ [ - "/css/CSS2/fonts/font-applies-to-001-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "font-applies-to-008.xht": [ - "013732cdaab358318af9d4fa09276fb5b10e7097", + "margin-bottom-043.xht": [ + "0e52b614ef695d029b7db06b23066e052f252beb", [ null, [ [ - "/css/CSS2/fonts/font-applies-to-001-ref.xht", + "/css/CSS2/margin-padding-clear/margin-bottom-043-ref.xht", "==" ] ], {} ] ], - "font-applies-to-009.xht": [ - "976fa1c87e9a4b680c75b6d1fe602476284b7e71", + "margin-bottom-044.xht": [ + "0c399b9af015ba8bc13b5e4a5c45731253943ec5", [ null, [ [ - "/css/CSS2/fonts/font-applies-to-001-ref.xht", + "/css/CSS2/margin-padding-clear/margin-bottom-043-ref.xht", "==" ] ], {} ] ], - "font-applies-to-010.xht": [ - "7df2020f10983850f2877283e8145e57313d8bbc", + "margin-bottom-052.xht": [ + "5ff964ba1d3d14a818392dcabdd117fb6feb721b", [ null, [ [ - "/css/CSS2/fonts/font-applies-to-001-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "font-applies-to-011.xht": [ - "669bf667cf26bde94290d1be7dd254e76547ecb9", + "margin-bottom-053.xht": [ + "db564e5b879965a1e7a90ce249adff805e10d43d", [ null, [ [ - "/css/CSS2/fonts/font-applies-to-001-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "font-applies-to-014.xht": [ - "7e3d755a990cede6058f9dc9e4cc7d22cc0e020c", + "margin-bottom-054.xht": [ + "0bc5972c62f4c66cbb2094d81d34b28042891243", [ null, [ [ - "/css/CSS2/fonts/font-applies-to-001-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "font-applies-to-015.xht": [ - "3bed6621d86c93e22cc2d0ce140d1075758a5c7f", + "margin-bottom-055.xht": [ + "e006081b2e23ca6dc6569a8729c7084aef05282f", [ null, [ [ - "/css/CSS2/fonts/font-applies-to-001-ref.xht", + "/css/CSS2/margin-padding-clear/margin-bottom-043-ref.xht", "==" ] ], {} ] ], - "font-applies-to-016.xht": [ - "08c8f262202a57addbf5d7d4b3e4120883da8641", + "margin-bottom-056.xht": [ + "705d9c51ae6ecf03fd82406c8011b8a2e8082592", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/margin-padding-clear/margin-bottom-043-ref.xht", "==" ] ], {} ] ], - "font-applies-to-017.xht": [ - "087ef9ce3f6687aefafe5b8e6559811988e2e19c", + "margin-bottom-064.xht": [ + "cafcedb2772674a933aef296a0e77c9715111ad4", [ null, [ [ - "/css/CSS2/fonts/font-applies-to-001-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "font-family-008.xht": [ - "f1e18cabe86d696fe3e8d1342e84652b50deadd3", + "margin-bottom-065.xht": [ + "fb3396027ac941c30b90aa69f742e4c7fe10b351", [ null, [ [ - "/css/CSS2/fonts/font-family-008-ref.html", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "font-family-009.xht": [ - "28e97ff78b22326f9a183207ca32e5ce6a73dfbe", + "margin-bottom-066.xht": [ + "a558c95653741321d7fc6def4c73d080357dfe31", [ null, [ [ - "/css/CSS2/fonts/font-family-009-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "font-family-011.xht": [ - "9f830f7bacf2c791913b589a05908758da68bee5", + "margin-bottom-067.xht": [ + "691a8dc1995250a484a78a1a39095bbdee5b76dd", [ null, [ [ - "/css/CSS2/fonts/font-family-011-ref.xht", + "/css/CSS2/margin-padding-clear/margin-bottom-067-ref.xht", "==" ] ], {} ] ], - "font-family-013.xht": [ - "022706d610ad24aef7b99fa7507144cdc4353798", + "margin-bottom-068.xht": [ + "de7fbc0cb3d0638247bb2a0b1b733807f238c9b5", [ null, [ [ - "/css/CSS2/fonts/font-family-013-ref.xht", + "/css/CSS2/margin-padding-clear/margin-bottom-067-ref.xht", "==" ] ], {} ] ], - "font-family-014.xht": [ - "875c94f4218f9ffd68747006d47bb5920cbfdf1a", + "margin-bottom-076.xht": [ + "7ac44accbf8c44636be294832307ec3f78d0bece", [ null, [ [ - "/css/CSS2/fonts/font-family-013-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "font-family-applies-to-001.xht": [ - "4b1843d849c9a40d17424780fbaf13b71ff7e399", + "margin-bottom-077.xht": [ + "530ca94390bdbdf8ad77189c297ee1f6618d12a4", [ null, [ [ - "/css/CSS2/fonts/font-family-applies-to-001-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "font-family-applies-to-002.xht": [ - "918b67ad69438c04c8284335125464b0e1fa10e0", + "margin-bottom-078.xht": [ + "8dccb1986ff195bdb02616890bdbfd4b565bcfb6", [ null, [ [ - "/css/CSS2/fonts/font-family-applies-to-001-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "font-family-applies-to-005.xht": [ - "54735e50dfd16b66f590b68e474c7b925861de0f", + "margin-bottom-079.xht": [ + "7f759ced5d15095599ee940d53b425d1e9768aa4", [ null, [ [ - "/css/CSS2/fonts/font-family-applies-to-001-ref.xht", + "/css/CSS2/margin-padding-clear/margin-bottom-079-ref.xht", "==" ] ], {} ] ], - "font-family-applies-to-006.xht": [ - "82a16a7b4c5f6176fad9be1bc75b0805a08824d6", + "margin-bottom-080.xht": [ + "b68504440dba25a7b551a55df6f8ed2ed3cc3722", [ null, [ [ - "/css/CSS2/fonts/font-family-applies-to-001-ref.xht", + "/css/CSS2/margin-padding-clear/margin-bottom-079-ref.xht", "==" ] ], {} ] ], - "font-family-applies-to-007.xht": [ - "10d23248847c9c883e212f426d9ebaa54c7b5925", + "margin-bottom-088.xht": [ + "7940ddd068890f34a1c381d22c693be4fdef845f", [ null, [ [ - "/css/CSS2/fonts/font-family-applies-to-001-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "font-family-applies-to-008.xht": [ - "1f33ff2886c77bad629c820d7e6fad1d7a49969d", + "margin-bottom-089.xht": [ + "1436fee7fb9b4d0bd37648c4347618fe7f8c7dac", [ null, [ [ - "/css/CSS2/fonts/font-family-applies-to-001-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "font-family-applies-to-009.xht": [ - "2c9eb70764b85de77a391ccf83d58e841a68c27d", + "margin-bottom-090.xht": [ + "93001192eaaac4809770d3d7428383d84a0908da", [ null, [ [ - "/css/CSS2/fonts/font-family-applies-to-001-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "font-family-applies-to-010.xht": [ - "2d23fbcc19d1ff5ec3365449aa230c2d9ab85c4b", + "margin-bottom-091.xht": [ + "07e54b816c31fce9e57a8ad91ff15508b8e4b314", [ null, [ [ - "/css/CSS2/fonts/font-family-applies-to-001-ref.xht", + "/css/CSS2/margin-padding-clear/margin-bottom-091-ref.xht", "==" ] ], {} ] ], - "font-family-applies-to-011.xht": [ - "3b0ed8fe9838cfd03f9263612f2a4d7c77f2ae09", + "margin-bottom-092.xht": [ + "ba61f43120e151080f4c01f7e8e7177f6378c78c", [ null, [ [ - "/css/CSS2/fonts/font-family-applies-to-001-ref.xht", + "/css/CSS2/margin-padding-clear/margin-bottom-091-ref.xht", "==" ] ], {} ] ], - "font-family-applies-to-014.xht": [ - "b3f16462e13130fa43bf41bb08fbc2ad9562b740", + "margin-bottom-100.xht": [ + "446a83d8815fcc7a4b3ca1a7353ff00ca72b5fdf", [ null, [ [ - "/css/CSS2/fonts/font-family-applies-to-001-ref.xht", + "/css/CSS2/margin-padding-clear/margin-bottom-100-ref.xht", "==" ] ], {} ] ], - "font-family-applies-to-015.xht": [ - "ffb1b1b3b79a82992ae5057a32196f8395a7bc7b", + "margin-bottom-101.xht": [ + "976c01a7c4bd347a68a4b71307ddb8178a9d9db8", [ null, [ [ - "/css/CSS2/fonts/font-family-applies-to-001-ref.xht", + "/css/CSS2/margin-padding-clear/margin-bottom-100-ref.xht", "==" ] ], {} ] ], - "font-family-applies-to-016.xht": [ - "9582d7828d2370e5dfb4bcf8198bd07828c861ed", + "margin-bottom-102.xht": [ + "ce40ab52fac82ecd0103042666004ad7e0cadad9", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/margin-padding-clear/margin-bottom-100-ref.xht", "==" ] ], {} ] ], - "font-family-applies-to-017.xht": [ - "2290068ddfeadba208b0f0c6fb8790b0d8ecc290", + "margin-bottom-103.xht": [ + "89e05ff445edd2e7b2f66627fbc268d6064dc03d", [ null, [ [ - "/css/CSS2/fonts/font-family-applies-to-001-ref.xht", + "/css/CSS2/margin-padding-clear/margin-bottom-103-ref.xht", "==" ] ], {} ] ], - "font-family-invalid-characters-001.xht": [ - "a0162da091fe177e0dfc200e7ba29fa85c68ca72", + "margin-bottom-104.xht": [ + "30826dc07ef0a2370de348d270064a8efc32bf07", [ null, [ [ - "/css/CSS2/fonts/font-family-invalid-characters-001-ref.html", + "/css/CSS2/margin-padding-clear/margin-bottom-103-ref.xht", "==" ] ], {} ] ], - "font-family-invalid-characters-002.xht": [ - "298d9c31a8fa16b08003e5ec5114c80310febd07", + "margin-bottom-109.xht": [ + "65f181dd0928e61b0412d871558593800f942f79", [ null, [ [ - "/css/CSS2/fonts/font-family-invalid-characters-002-ref.html", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "font-family-invalid-characters-003.xht": [ - "6f08f61d5fbee61428baa4e531979066ba8c5bf1", + "margin-bottom-110.xht": [ + "9fc5d1fb85567d9099b1c751f3d26a7396d5f3f3", [ null, [ [ - "/css/CSS2/fonts/font-family-invalid-characters-002-ref.html", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "font-family-invalid-characters-004.xht": [ - "dc54d8440dd71cc5e319b8411575883a12e4b899", + "margin-bottom-111.xht": [ + "95ca66019abf139abf293f298ae3d7356dfd860b", [ null, [ [ - "/css/CSS2/fonts/font-family-invalid-characters-002-ref.html", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "font-family-invalid-characters-005.xht": [ - "f7c38ce83e674b154fb6bf4d2f44979eaa63fa7a", + "margin-bottom-112.xht": [ + "97b116457bc0b331ad9b1465162e8c10e9b69212", [ null, [ [ - "/css/CSS2/fonts/font-family-invalid-characters-005-ref.html", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "font-family-invalid-characters-006.xht": [ - "83ecbb6ff8001028175869e101c05daa3a1a46fb", + "margin-bottom-113.xht": [ + "40a017e69bb1287004ff9ca7a6b2b74c80853e97", [ null, [ [ - "/css/CSS2/fonts/font-family-invalid-characters-006-ref.html", + "/css/CSS2/margin-padding-clear/margin-bottom-067-ref.xht", "==" ] ], {} ] ], - "font-family-rule-001.xht": [ - "5fe2809ff4c74a5b29ecbc0d47adea62b9e27778", + "margin-bottom-applies-to-001.xht": [ + "c476461d1c0b1399af531029d2bab8cb3221b1b9", [ null, [ [ - "/css/CSS2/fonts/font-family-rule-001-ref.html", + "/css/CSS2/margin-padding-clear/margin-bottom-applies-to-001-ref.xht", "==" ] ], {} ] ], - "font-family-rule-002a.xht": [ - "f3ad0144a21ceb98a71ae96082fa5c7529fef829", + "margin-bottom-applies-to-002.xht": [ + "4532761fb3c182f8c6b1a8f49ca2f9e7a1585c2c", [ null, [ [ - "/css/CSS2/fonts/font-family-rule-002a-ref.xht", + "/css/CSS2/margin-padding-clear/margin-bottom-applies-to-001-ref.xht", "==" ] ], {} ] ], - "font-family-rule-005.xht": [ - "414f605216bd245b3a69824e91ecd3e36b87e952", + "margin-bottom-applies-to-003.xht": [ + "5b220a0b255010bd9d04a9542d7e2f3281a17a85", [ null, [ [ - "/css/CSS2/fonts/font-family-rule-005-ref.html", + "/css/CSS2/margin-padding-clear/margin-bottom-applies-to-001-ref.xht", "==" ] ], {} ] ], - "font-family-valid-characters-001.xht": [ - "b385c3d54136e3ae146018dddc0da8ed0b18acb9", + "margin-bottom-applies-to-004.xht": [ + "c7388eadfe529b4cff2d31cad392558e0a4d2cd5", [ null, [ [ - "/css/CSS2/fonts/font-family-valid-characters-ref.html", + "/css/CSS2/margin-padding-clear/margin-bottom-applies-to-001-ref.xht", "==" ] ], {} ] ], - "font-family-valid-characters-002.xht": [ - "fa54f1c492f440320d23270f16383093151b7c5b", + "margin-bottom-applies-to-005.xht": [ + "c808c1c45280ff65a3c65aab05e1b6a4e3d3d787", [ null, [ [ - "/css/CSS2/fonts/font-family-valid-characters-ref.html", + "/css/CSS2/margin-padding-clear/margin-bottom-applies-to-001-ref.xht", "==" ] ], {} ] ], - "font-matching-rule-009.xht": [ - "fc2e54b7c50a29b79826b8f9da61215699ed944c", + "margin-bottom-applies-to-006.xht": [ + "2408f2c08594666a926eada0c1edcfe9bc992b2d", [ null, [ [ - "/css/CSS2/fonts/font-weight-normal-ref.html", + "/css/CSS2/margin-padding-clear/margin-bottom-applies-to-001-ref.xht", "==" ] ], {} ] ], - "font-size-001.xht": [ - "45bdc1704afbd4f5fe8038401882c28251dc1a6c", + "margin-bottom-applies-to-007.xht": [ + "cab02e6b09596a9b45b4d5051ab0b4866c6a3b17", [ null, [ [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", + "/css/CSS2/margin-padding-clear/margin-bottom-applies-to-001-ref.xht", "==" ] ], {} ] ], - "font-size-002.xht": [ - "5f8b20d293a7ab7040e5f82a5c03822755e746a6", + "margin-bottom-applies-to-008.xht": [ + "7021afce57eacba073424699bacc21399477c717", [ null, [ [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", + "/css/CSS2/margin-padding-clear/margin-bottom-applies-to-008-ref.xht", "==" ] ], {} ] ], - "font-size-004.xht": [ - "abf7fe01bd492674bf87f2f0d12be0bc51f1eeca", + "margin-bottom-applies-to-009.xht": [ + "fe5688fda96c3f1d14b530f34c042b8d1a14cc71", [ null, [ [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", + "/css/CSS2/margin-padding-clear/margin-bottom-applies-to-009-ref.xht", "==" ] ], {} ] ], - "font-size-005.xht": [ - "41e1181a57bc072e481f8e3eaaa37031c7fe5b52", + "margin-bottom-applies-to-012.xht": [ + "9cb67181d21fe6fe73db14b275c1442dacf9d397", [ null, [ [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", + "/css/CSS2/margin-padding-clear/margin-bottom-applies-to-009-ref.xht", "==" ] ], {} ] ], - "font-size-012.xht": [ - "bb46e9a5defeb99f37e86d17801a6c93d1632f4f", + "margin-bottom-applies-to-013.xht": [ + "73dd92e9d5b7f74561ca1f1a784057e562bb9bec", [ null, [ [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", + "/css/CSS2/margin-padding-clear/margin-bottom-applies-to-009-ref.xht", "==" ] ], {} ] ], - "font-size-013.xht": [ - "ddd289005a017fca2d0dc6ce6063483c69aef021", + "margin-bottom-applies-to-014.xht": [ + "f038b7931a080891063615a4e4f077fecab9fac3", [ null, [ [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", + "/css/CSS2/margin-padding-clear/margin-bottom-applies-to-009-ref.xht", "==" ] ], {} ] ], - "font-size-015.xht": [ - "e7980c65e6b981894262cef1b5221f22f8be7e1b", + "margin-bottom-applies-to-015.xht": [ + "4403a8e5879e74008f172dd80d24fa850e76409d", [ null, [ [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", + "/css/CSS2/margin-padding-clear/margin-bottom-applies-to-009-ref.xht", "==" ] ], {} ] ], - "font-size-016.xht": [ - "1489c90b9a1f4049e5039e354056af8178644635", + "margin-collapse-001.xht": [ + "fd6263dd75ea5e5e29a5276cbdf1895b4873e992", [ null, [ [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", + "/css/CSS2/margin-padding-clear/margin-collapse-001-ref.xht", "==" ] ], {} ] ], - "font-size-023.xht": [ - "3f992f9b468700a81949ec4dafb01c4559376769", + "margin-collapse-002.xht": [ + "15c15afa1bd45525df308ada448712e9d6a59e6e", [ null, [ [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", + "/css/CSS2/margin-padding-clear/margin-collapse-002-ref.xht", "==" ] ], {} ] ], - "font-size-024.xht": [ - "000ccee0b278497788a08c1702a0f820700527df", + "margin-collapse-003.xht": [ + "b93045a0c9cd5f62ac2897a8a5669e491d311e74", [ null, [ [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", + "/css/CSS2/margin-padding-clear/margin-collapse-003-ref.xht", "==" ] ], {} ] ], - "font-size-026.xht": [ - "bc044f2c6c97a3f92cf99fa882c25b4209fd2805", + "margin-collapse-004.xht": [ + "7e6d89702be690361c0622820752185a1c69e062", [ null, [ [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", + "/css/CSS2/margin-padding-clear/margin-collapse-004-ref.xht", "==" ] ], {} ] ], - "font-size-027.xht": [ - "f8e5fa2f624f0e74dbbde1afe17fdf7a796fa206", + "margin-collapse-005.xht": [ + "470086a94fe85ee3c530ca506b8ad3da4de2882b", [ null, [ [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", + "/css/CSS2/margin-padding-clear/margin-collapse-002-ref.xht", "==" ] ], {} ] ], - "font-size-034.xht": [ - "db9c444386492211f5d2ae3ee816299096b99f5b", + "margin-collapse-006.xht": [ + "68661be42b4948f99d510fa3d32e229ccc205db9", [ null, [ [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", + "/css/CSS2/margin-padding-clear/margin-collapse-002-ref.xht", "==" ] ], {} ] ], - "font-size-035.xht": [ - "f341914f1abb1128dee37ad1b39e9758ce03cd8d", + "margin-collapse-007.xht": [ + "49912a9e9b0fada2d8dcb3d495b951b315967b0c", [ null, [ [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", + "/css/CSS2/margin-padding-clear/margin-collapse-002-ref.xht", "==" ] ], {} ] ], - "font-size-037.xht": [ - "96c46102ea14661b4b010b9b61ef3d7f27f04320", + "margin-collapse-008.xht": [ + "7b942dc5bb330760ff5a8909a345dfb15381591e", [ null, [ [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", + "/css/CSS2/margin-padding-clear/margin-collapse-002-ref.xht", "==" ] ], {} ] ], - "font-size-038.xht": [ - "56363a0b887ab3be3139d4d55f70a96a6bd3cb90", + "margin-collapse-009.xht": [ + "6dbcdadf9457962c4a94cc61e7f19d0dd70ca511", [ null, [ [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "font-size-045.xht": [ - "23b44b4629d834bdf3605b7402d788c1bef03a6f", + "margin-collapse-012.xht": [ + "66fcabdd1d994aa47d6de157372726d3908079fd", [ null, [ [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", + "/css/CSS2/margin-padding-clear/margin-collapse-002-ref.xht", "==" ] ], {} ] ], - "font-size-046.xht": [ - "fd69ec9063928ad7f57d837ef304ab0099b0539b", + "margin-collapse-013.xht": [ + "8a98034b86384f0f437910c2e426b97f291581eb", [ null, [ [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", + "/css/CSS2/margin-padding-clear/margin-collapse-013-ref.xht", "==" ] ], {} ] ], - "font-size-048.xht": [ - "baa332abfbaa89af74d24e7057eb1e3a1f7430f3", + "margin-collapse-014.xht": [ + "61b22b558dd448f035640881885683c27d40b8ab", [ null, [ [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", + "/css/CSS2/margin-padding-clear/margin-collapse-002-ref.xht", "==" ] ], {} ] ], - "font-size-049.xht": [ - "7b9438b1098ce169d64796433ff5b4eb18b5c9ef", + "margin-collapse-015.xht": [ + "7ea9985683df3059073e95b1deb65252c3a9e4fa", [ null, [ [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", + "/css/CSS2/margin-padding-clear/margin-collapse-002-ref.xht", "==" ] ], {} ] ], - "font-size-056.xht": [ - "5493edaf9dc8bfd84f7974f3a68512ba7a98d137", + "margin-collapse-015a.xht": [ + "edc38696d65bf562664d355cc9279156e18d1e0e", [ null, [ [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", + "/css/CSS2/margin-padding-clear/margin-collapse-002-ref.xht", "==" ] ], {} ] ], - "font-size-057.xht": [ - "564341f58b6f4c45280dcea91045c7c6a64b260b", + "margin-collapse-016.xht": [ + "9daa8d14202bdd68dadda870f2fe84305b3deaa8", [ null, [ [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", + "/css/CSS2/margin-padding-clear/margin-collapse-002-ref.xht", "==" ] ], {} ] ], - "font-size-059.xht": [ - "c255bb79d9ba9f7112fadc8b3f5851e4f0583ff7", + "margin-collapse-017.xht": [ + "303a3376e104656a9a886c129f931d94d49b06c7", [ null, [ [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", + "/css/CSS2/margin-padding-clear/margin-collapse-017-ref.xht", "==" ] ], {} ] ], - "font-size-060.xht": [ - "99e9a43252ffc2755555b46f259dfb3695bdaa7f", + "margin-collapse-019.xht": [ + "006c8971bda228fd01f1ffbe5fff557f696cf349", [ null, [ [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", + "/css/CSS2/margin-padding-clear/margin-collapse-002-ref.xht", "==" ] ], {} ] ], - "font-size-067.xht": [ - "bcc6e0085d3f774ba8728100c1340535478d317d", + "margin-collapse-020.xht": [ + "4268bbdf2c37e131b5262cd689212d558b82f835", [ null, [ [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", + "/css/CSS2/margin-padding-clear/margin-collapse-020-ref.xht", "==" ] ], {} ] ], - "font-size-068.xht": [ - "71e1863f3948137b3ce058dd6d204ccb0d67639f", + "margin-collapse-021.xht": [ + "304c75170e698f11ed208de68f9804f5399fc32e", [ null, [ [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", + "/css/CSS2/margin-padding-clear/margin-collapse-020-ref.xht", "==" ] ], {} ] ], - "font-size-070.xht": [ - "ccc938e2f5ff1b447ddf3b7694cbff74ef9bda1c", + "margin-collapse-022.xht": [ + "4b80359301ceee63532a23a9398f5d809f0a1297", [ null, [ [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", + "/css/CSS2/margin-padding-clear/margin-collapse-002-ref.xht", "==" ] ], {} ] ], - "font-size-071.xht": [ - "215967300a216b7c536009bf7f862fcbad3c46a7", + "margin-collapse-025.xht": [ + "d2ea30ddbc4b3633722dddb9fbb15a3aad00f53d", [ null, [ [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", + "/css/CSS2/margin-padding-clear/margin-collapse-002-ref.xht", "==" ] ], {} ] ], - "font-size-078.xht": [ - "2dfbe525a0a1670833f62162a9f4bc9a25e3c822", + "margin-collapse-026.xht": [ + "fa74b334d5b23db9bb97c5ca01fd18bcc73412eb", [ null, [ [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", + "/css/CSS2/margin-padding-clear/margin-collapse-002-ref.xht", "==" ] ], {} ] ], - "font-size-079.xht": [ - "534c53bc1774f5de2d9ed22337b2ee6d624a99b7", + "margin-collapse-028.xht": [ + "810639c4caac0b869d3f859308435f33167062bf", [ null, [ [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", + "/css/CSS2/margin-padding-clear/margin-collapse-002-ref.xht", "==" ] ], {} ] ], - "font-size-081.xht": [ - "ea20bbdea9223b5ec67d845dd316d94ba79ed495", + "margin-collapse-037.xht": [ + "87efa907f008529e19ddc951e90799ec6ab07470", [ null, [ [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", + "/css/CSS2/margin-padding-clear/margin-collapse-037-ref.xht", "==" ] ], {} ] ], - "font-size-082.xht": [ - "882604c4ea3be9ca2177b9591ca9bc4bac9f3a3a", + "margin-collapse-038.xht": [ + "ada2e31cf779554b0765383f1f2dd1dfc96ec0a3", [ null, [ [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", + "/css/CSS2/margin-padding-clear/margin-collapse-038-ref.xht", "==" ] ], {} ] ], - "font-size-089.xht": [ - "d6e4b13081253e95743b26220268852c8c98ecea", + "margin-collapse-039.xht": [ + "e093faf979cbf0d985944239408e26c3d045f884", [ null, [ [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "font-size-090.xht": [ - "14fd704d74140944995643f523398ba220278fbe", + "margin-collapse-040.xht": [ + "a9a3b0ca634aed954f23898277ccbdf68c066ae7", [ null, [ [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "font-size-092.xht": [ - "fb73801a496e004dadabfdb4508226a47b71d417", + "margin-collapse-041.xht": [ + "742d93f4a6f08fa1d0765fce417e7b304d9d180d", [ null, [ [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "font-size-093.xht": [ - "894d8a46d93233b044c39f490dea70f09912346c", + "margin-collapse-101.xht": [ + "047131b3423e0fc84a360e79cd0daa991a4b9fc6", [ null, [ [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", + "/css/CSS2/margin-padding-clear/margin-collapse-101-ref.xht", "==" ] ], {} ] ], - "font-size-100.xht": [ - "39f4e210e4d403cad1510a04f83f9ebd9bf8b44d", + "margin-collapse-102.xht": [ + "a7f2e54134ef0948d92388b242526b20618c4f5d", [ null, [ [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "font-size-101.xht": [ - "605dbf92abed68b60c60ffcb70748cd0129e5cdf", + "margin-collapse-103.xht": [ + "bf846581358d42ce716bc58b2eb4788584873ac0", [ null, [ [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", + "/css/CSS2/margin-padding-clear/margin-collapse-103-ref.xht", "==" ] ], {} ] ], - "font-size-102.xht": [ - "505165b2bc45be33dc2622ec43b5b5b323955b45", + "margin-collapse-104.xht": [ + "8df9a903841e98e27ace3f01d28f787efa5b1154", [ null, [ [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "font-size-120.xht": [ - "e6737dc9bebf6c88592e32309b2e82b9668386e8", + "margin-collapse-105.xht": [ + "c8b596ba32c47d9ceabd252f8ea379cdfb297895", [ null, [ [ - "/css/CSS2/fonts/font-size-120-ref.xht", + "/css/CSS2/margin-padding-clear/margin-collapse-101-ref.xht", "==" ] ], {} ] ], - "font-size-121.xht": [ - "fd3c10fb77bccadf93eb9c3d1cee98bc535c8880", + "margin-collapse-106.xht": [ + "a1d553622122c95b1f9a7a12ecd26d95a17e7995", [ null, [ [ - "/css/CSS2/fonts/font-size-121-ref.xht", + "/css/CSS2/margin-padding-clear/margin-collapse-106-ref.xht", "==" ] ], {} ] ], - "font-size-122.xht": [ - "7d2583bea6d8e59831ce0684ef28c83889f204d9", + "margin-collapse-110.xht": [ + "097e22dd13ca278a0687fbbb57cacba99f4bdc5b", [ null, [ [ - "/css/CSS2/fonts/font-size-122-ref.xht", + "/css/CSS2/margin-padding-clear/margin-collapse-110-ref.xht", "==" ] ], {} ] ], - "font-size-123.xht": [ - "f4f73ceba2495823f0a223c535b4c975a19167b5", + "margin-collapse-111.xht": [ + "daaf38b050ff342515cc4ad3e3dc74bb39b0cbce", [ null, [ [ - "/css/CSS2/fonts/font-size-123-ref.xht", + "/css/CSS2/margin-padding-clear/margin-collapse-110-ref.xht", "==" ] ], {} ] ], - "font-size-124.xht": [ - "0954e2a7a3fc53b373561e3294d10fc3eb535748", + "margin-collapse-112.xht": [ + "09396c4e13f248a6e16cf00d9eead4c92bdf10c3", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/margin-padding-clear/margin-collapse-106-ref.xht", "==" ] ], {} ] ], - "font-size-applies-to-016.xht": [ - "314d810ad87ebdd7523f4c714ca9d78c2c9cd0cf", + "margin-collapse-113.xht": [ + "ffba934aa317201be095f5917d3a6935d7f6c3d3", [ null, [ [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", + "/css/CSS2/margin-padding-clear/margin-collapse-113-ref.xht", "==" ] ], {} ] ], - "font-style-applies-to-001.xht": [ - "c114b31ed3bad132256a2aecd0b797d3f652b986", + "margin-collapse-114.xht": [ + "3f90f8d9546ac466830e84ed1960b5746b1fbbda", [ null, [ [ - "/css/CSS2/fonts/font-style-applies-to-001-ref.html", + "/css/CSS2/margin-padding-clear/margin-collapse-114-ref.xht", "==" ] ], {} ] ], - "font-style-applies-to-002.xht": [ - "19cffb15ab875eb87ea1d73aaaec37ef0a787fbb", + "margin-collapse-115.xht": [ + "95f54be93a24a45ab50241f6572b51efef8606c9", [ null, [ [ - "/css/CSS2/fonts/font-style-applies-to-001-ref.html", + "/css/CSS2/margin-padding-clear/margin-collapse-115-ref.xht", "==" ] ], {} ] ], - "font-style-applies-to-005.xht": [ - "981cc81ff4fa1840daa037ad082b07cd9772b8d6", + "margin-collapse-116.xht": [ + "fc00058680eef01ed9550d81cf1faec1e4ba19df", [ null, [ [ - "/css/reference/pass_if_filler_text_slanted.xht", + "/css/CSS2/margin-padding-clear/margin-collapse-115-ref.xht", "==" ] ], {} ] ], - "font-style-applies-to-006.xht": [ - "7714b0f50d26f18e4bf20e633275793e3fd55387", + "margin-collapse-130.xht": [ + "860ff83e9ee872c0041e755b7698b2aef98df520", [ null, [ [ - "/css/reference/pass_if_filler_text_slanted.xht", + "/css/CSS2/margin-padding-clear/margin-collapse-130-ref.xht", "==" ] ], {} ] ], - "font-style-applies-to-007.xht": [ - "d4f5dbd057338ac14d5eed7d3c2ab55e01286917", + "margin-collapse-131.xht": [ + "17315563843adc7a72abed17e080666b68073c08", [ null, [ [ - "/css/reference/pass_if_filler_text_slanted.xht", + "/css/CSS2/margin-padding-clear/margin-collapse-131-ref.xht", "==" ] ], {} ] ], - "font-style-applies-to-008.xht": [ - "6ad71527446639dfbb40772c022d8132f5fdf3d3", + "margin-collapse-137.xht": [ + "3f95f1a60dd5f7f1759fce566164f86cdc68ea2f", [ null, [ [ - "/css/reference/pass_if_filler_text_slanted.xht", + "/css/CSS2/margin-padding-clear/margin-collapse-137-ref.xht", "==" ] ], {} ] ], - "font-style-applies-to-009.xht": [ - "99c0683efd38f870542c7b8cef43e94c33b0da47", + "margin-collapse-138.xht": [ + "e67b8ce654861d71c91b7b8fe314b0bb46fbf9d7", [ null, [ [ - "/css/reference/pass_if_filler_text_slanted.xht", + "/css/CSS2/margin-padding-clear/margin-collapse-137-ref.xht", "==" ] ], {} ] ], - "font-style-applies-to-010.xht": [ - "1185163c42aeace583e7ad687d0af1614bac594a", + "margin-collapse-155.xht": [ + "7f130a19af4e00393545d6e6796819fef3f31204", [ null, [ [ - "/css/reference/pass_if_filler_text_slanted.xht", + "/css/CSS2/margin-padding-clear/margin-collapse-155-ref.xht", "==" ] ], {} ] ], - "font-style-applies-to-011.xht": [ - "36d7a7d3cefe2928425fa0cec0bc4fba163aa62f", + "margin-collapse-156.xht": [ + "fc7b74c33154f27667e0bc644f5a3514c640a032", [ null, [ [ - "/css/reference/pass_if_filler_text_slanted.xht", + "/css/CSS2/margin-padding-clear/margin-collapse-156-ref.xht", "==" ] ], {} ] ], - "font-style-applies-to-014.xht": [ - "8abb51d51edb7c29a18b3d548f3ca83b68cebef3", + "margin-collapse-159.xht": [ + "b815fcf689281a1b9f016c85df8dbe2d3c448310", [ null, [ [ - "/css/reference/pass_if_filler_text_slanted.xht", + "/css/CSS2/margin-padding-clear/margin-collapse-159-ref.xht", "==" ] ], {} ] ], - "font-style-applies-to-016.xht": [ - "ca3be4b3a82230b27b223d8ce827b93f49e9b935", + "margin-collapse-clear-001.xht": [ + "1ca6e94297987b6381fa0c17e16bfcf0e048357c", [ null, [ [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", + "/css/CSS2/floats-clear/margin-collapse-clear-002-ref.xht", "==" ] ], {} ] ], - "font-style-applies-to-017.xht": [ - "5c747f442d54d65c380156375b3730a3788dfa2a", + "margin-collapse-clear-007.xht": [ + "b48e1904c43a2ee38ed2d937361ab345dbd4802d", [ null, [ [ - "/css/CSS2/fonts/font-style-applies-to-001-ref.html", + "/css/CSS2/floats-clear/margin-collapse-clear-002-ref.xht", "==" ] ], {} ] ], - "font-variant-001.xht": [ - "22a3554c44fa2eaebe16555f975e860aeeefe5cd", + "margin-collapse-clear-011.xht": [ + "fed7bef25c532d02e38f9d2b58644f10958d72ad", [ null, [ [ - "/css/CSS2/fonts/font-variant-001-ref.html", + "/css/CSS2/margin-padding-clear/margin-collapse-clear-011-ref.xht", "==" ] ], {} ] ], - "font-variant-applies-to-001.xht": [ - "65dc2192d5ded695c5c47ccc0f5f62a121d1b283", + "margin-collapse-min-height-001.xht": [ + "2c6936244308faced1e79c5115950a8b5a7079e5", [ null, [ [ - "/css/reference/pass_if_filler_text_match_smallcaps.xht", + "/css/CSS2/margin-padding-clear/margin-collapse-min-height-001-ref.xht", "==" ] ], {} ] ], - "font-variant-applies-to-002.xht": [ - "2cd7f66b5b863798baa3c7cd2438511ee23aa873", + "margin-collapse-min-height-002.xht": [ + "240fc177fd5159f54670040a8a6fcdb7bb08ecc0", [ null, [ [ - "/css/reference/pass_if_filler_text_match_smallcaps.xht", + "/css/CSS2/margin-padding-clear/margin-collapse-min-height-002-ref.xht", "==" ] ], {} ] ], - "font-variant-applies-to-005.xht": [ - "2878b176a4da1a3061133ead7170e699385f05e5", + "margin-em-inherit-001.xht": [ + "57af6a5701a1584d920b78304b2c014b6e7678ff", [ null, [ [ - "/css/reference/pass_if_filler_text_match_smallcaps.xht", + "/css/CSS2/margin-padding-clear/margin-em-inherit-001-ref.xht", "==" ] ], {} ] ], - "font-variant-applies-to-006.xht": [ - "f7447720063d5c511bffe4ad297991369132be37", + "margin-inline-001.xht": [ + "d94030b53c7e7343a54f121bc578c36cffb3484b", [ null, [ [ - "/css/reference/pass_if_filler_text_match_smallcaps.xht", + "/css/CSS2/margin-padding-clear/margin-inline-001-ref.xht", "==" ] ], {} ] ], - "font-variant-applies-to-007.xht": [ - "18f0df14e74c950dda6f068e50a54fcd8888d452", + "margin-inline-002.xht": [ + "ac2011f90e2f69725e2822ab396bfed90ea42bbb", [ null, [ [ - "/css/reference/pass_if_filler_text_match_smallcaps.xht", + "/css/CSS2/margin-padding-clear/margin-inline-002-ref.xht", "==" ] ], {} ] ], - "font-variant-applies-to-008.xht": [ - "569a1fb713da3208c77cadaa8cdb7ed4eab0396e", + "margin-left-004.xht": [ + "999fbf0f1861bcad1ec29096fab60160f59dc179", [ null, [ [ - "/css/reference/pass_if_filler_text_match_smallcaps.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "font-variant-applies-to-009.xht": [ - "16b1df60603e29c7733024673bba03f372c41d49", + "margin-left-005.xht": [ + "2ad62434b84bb484c5ef3dc1abb4232191d8a437", [ null, [ [ - "/css/reference/pass_if_filler_text_match_smallcaps.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "font-variant-applies-to-010.xht": [ - "017c4196f796fd40f9839ea6596334bdb76414aa", + "margin-left-006.xht": [ + "7dba8bb9eead1f9b776e8837c3f5c8eac2042281", [ null, [ [ - "/css/reference/pass_if_filler_text_match_smallcaps.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "font-variant-applies-to-011.xht": [ - "45ba23c0cf89317fad47a4cb5c77905815bbae52", + "margin-left-007.xht": [ + "af33f6e9fdf81728109f72b2aa511a9fa8189512", [ null, [ [ - "/css/reference/pass_if_filler_text_match_smallcaps.xht", + "/css/CSS2/margin-padding-clear/margin-left-007-ref.xht", "==" ] ], {} ] ], - "font-variant-applies-to-014.xht": [ - "33d8e03731acbe1c4bde174d9871526c1ddb8a01", + "margin-left-008.xht": [ + "9f36cd8d16589a94ff03e6c57794803d87f025de", [ null, [ [ - "/css/reference/pass_if_filler_text_match_smallcaps.xht", + "/css/CSS2/margin-padding-clear/margin-left-007-ref.xht", "==" ] ], {} ] ], - "font-variant-applies-to-015.xht": [ - "43bd6a76082624f62fcebb095d15bc0e53091b07", + "margin-left-016.xht": [ + "6355c880ba67e6acec80aaa20d6c1caee89e2521", [ null, [ [ - "/css/reference/pass_if_filler_text_match_smallcaps.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "font-variant-applies-to-016.xht": [ - "9ba31589062986f7caf1f18b08f1d1810492adc5", + "margin-left-017.xht": [ + "ba2928a70ee7c5c3f53b9435ec29aee95e4193a5", [ null, [ [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "font-variant-applies-to-017.xht": [ - "c087c4b48a7ad277a356ae0f74987858db5f88e6", + "margin-left-018.xht": [ + "c5451d144249813594f1c8d414d1888fd877e37e", [ null, [ [ - "/css/reference/pass_if_filler_text_match_smallcaps.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "font-weight-applies-to-001.xht": [ - "e351ec3dfc119f82f8081e9643a4511d5295ca8b", + "margin-left-019.xht": [ + "201a653fbeb836c175b9e251ae07e38a9cc829ac", [ null, [ [ - "/css/CSS2/fonts/font-weight-bold-ref.html", + "/css/CSS2/margin-padding-clear/margin-left-019-ref.xht", "==" ] ], {} ] ], - "font-weight-applies-to-002.xht": [ - "09dcd244289d7b8041bd1daebce5069de933fd15", + "margin-left-020.xht": [ + "69fca4a3e1d6728fb26106e3751d6a9c807a88bc", [ null, [ [ - "/css/CSS2/fonts/font-weight-bold-ref.html", + "/css/CSS2/margin-padding-clear/margin-left-019-ref.xht", "==" ] ], {} ] ], - "font-weight-applies-to-005.xht": [ - "5228c156d0f907ea5ab25bae5398ba4c45858a64", + "margin-left-028.xht": [ + "4f522a787bb86cc8cfbcdeb21da26c4ac120e9ff", [ null, [ [ - "/css/reference/pass_if_filler_text_match_bold.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "font-weight-applies-to-006.xht": [ - "e9e68adb340e260ede5e9e7a945da9976d7e4b04", + "margin-left-029.xht": [ + "99f9c1bba5fcd4c11f4f8e2549bd4c5899d2d5d7", [ null, [ [ - "/css/reference/pass_if_filler_text_match_bold.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "font-weight-applies-to-007.xht": [ - "eda231162d24d27b11b078e1718d097afb68ea10", + "margin-left-030.xht": [ + "54ba6e53e9954f4f21726ce86877679228186d40", [ null, [ [ - "/css/reference/pass_if_filler_text_match_bold.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "font-weight-applies-to-008.xht": [ - "76522784fd2f1d77b1dbcf65ecfe4ea4e6760ab8", + "margin-left-031.xht": [ + "f5143c280204f2d7a3b768be7f1a1ad7bda720ec", [ null, [ [ - "/css/reference/pass_if_filler_text_match_bold.xht", + "/css/CSS2/margin-padding-clear/margin-left-031-ref.xht", "==" ] ], {} ] ], - "font-weight-applies-to-009.xht": [ - "75866ee1c6680fc86640e7070b7f014150d20c61", + "margin-left-032.xht": [ + "7a2f3594c32f5a56f0fd9d5d04c66d566d94522b", [ null, [ [ - "/css/reference/pass_if_filler_text_match_bold.xht", + "/css/CSS2/margin-padding-clear/margin-left-031-ref.xht", "==" ] ], {} ] ], - "font-weight-applies-to-010.xht": [ - "a47c23603812dabf7ce637ee289d77713bda289a", + "margin-left-040.xht": [ + "74154a4f424102324346f5bbc6e942ba5a2039d8", [ null, [ [ - "/css/reference/pass_if_filler_text_match_bold.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "font-weight-applies-to-011.xht": [ - "f6704c676f8a4519c1b146ee85250312ab0e3536", + "margin-left-041.xht": [ + "df40cd6eaea209738bdb75717b2c7823abe2cc9c", [ null, [ [ - "/css/reference/pass_if_filler_text_match_bold.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "font-weight-applies-to-014.xht": [ - "5fb06c80e3028b0887723fe14a5c582e23824e92", + "margin-left-042.xht": [ + "d388610933ba8ae511650a794336394bc13df205", [ null, [ [ - "/css/reference/pass_if_filler_text_match_bold.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "font-weight-applies-to-015.xht": [ - "57fea5b7d26e8fc2767e3eb461b44cc2e997f6d2", + "margin-left-043.xht": [ + "309633873ee09a1427a969505dc5942caa96397c", [ null, [ [ - "/css/reference/pass_if_filler_text_match_bold.xht", + "/css/CSS2/margin-padding-clear/margin-left-043-ref.xht", "==" ] ], {} ] ], - "font-weight-applies-to-016.xht": [ - "c0471c20fd79c31fdf44a16c15a50c23aa689e2b", + "margin-left-044.xht": [ + "cef150cb4336f5b2712601d384f23371275a0b77", [ null, [ [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-043-ref.xht", "==" ] ], {} ] ], - "font-weight-applies-to-017.xht": [ - "76737f6cfb5a1acf219ace121068bf85809a7067", + "margin-left-052.xht": [ + "72c5f9208094125ea8e148d5e9528c0b87986667", [ null, [ [ - "/css/CSS2/fonts/font-weight-bold-ref.html", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "font-weight-rule-001.xht": [ - "ffc5cc7c1167bd80f59887f82a5dc5854aa93219", + "margin-left-053.xht": [ + "f93f4987e2ca7289227710602d7bf122a8767515", [ null, [ [ - "/css/CSS2/fonts/font-weight-normal-ref.html", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "font-weight-rule-003.xht": [ - "c6491d75b313906eb3a678bd029cbb88f971d0cc", + "margin-left-054.xht": [ + "758d1c696ffa975272649e502b38ae4c17f8be28", [ null, [ [ - "/css/CSS2/fonts/font-weight-bold-ref.html", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "font-weight-rule-004.xht": [ - "f4d2ea7f141ea4a011c8202ff2d918befa651b20", + "margin-left-055.xht": [ + "089eb4da5173cf1680a4aadc389022173d222d39", [ null, [ [ - "/css/CSS2/fonts/font-weight-bold-ref.html", + "/css/CSS2/margin-padding-clear/margin-left-043-ref.xht", "==" ] ], {} ] ], - "font-weight-rule-005.xht": [ - "b364741d270711eb5764dfe4d749e0d0fed0671c", + "margin-left-056.xht": [ + "4cecfcf8e610257e7952ec07f775856e8c4d92da", [ null, [ [ - "/css/CSS2/fonts/font-weight-900-ref.html", + "/css/CSS2/margin-padding-clear/margin-left-043-ref.xht", "==" ] ], {} ] ], - "font-weight-rule-006.xht": [ - "2a6bfd226f2fd27d8650450b33db77db53a126dc", + "margin-left-064.xht": [ + "8ab39558deb67993e12fc2d02365063bcbb38b6a", [ null, [ [ - "/css/CSS2/fonts/font-weight-normal-ref.html", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "font-weight-rule-007.xht": [ - "2de62468488229177ac3a542df78cb6be928bbdb", + "margin-left-065.xht": [ + "40891d62213532dcaa6a8bfbd3721f5f3afd39d3", [ null, [ [ - "/css/CSS2/fonts/font-weight-100-ref.html", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "font-weight-rule-008.xht": [ - "510e2d7c1c66d33ebb3fee73c1c28310518b4106", + "margin-left-066.xht": [ + "eea1b43ef176eafe57b0e823e97c1a2112148eea", [ null, [ [ - "/css/CSS2/fonts/font-weight-bold-ref.html", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "fonts-010.xht": [ - "cf5316fccb975bfe2c6a05577001eaf1a0956989", + "margin-left-067.xht": [ + "45a9985f73ef24d7708a1a1ac720e5c695794d9b", [ null, [ [ - "/css/CSS2/fonts/fonts-010-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-067-ref.xht", "==" ] ], {} ] ], - "fonts-011.xht": [ - "e218ea98268fd4ddfed3be9138bb136747df6d8a", + "margin-left-068.xht": [ + "7cd11b9293170a57df07726d9c01cfddb58c6105", [ null, [ [ - "/css/CSS2/fonts/fonts-011-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-067-ref.xht", "==" ] ], {} ] ], - "fonts-012.xht": [ - "af25d7b783bab5de976a41a287ae5b57f755c919", + "margin-left-076.xht": [ + "04fef47a02b5951e139f59d81228c586f5d612b7", [ null, [ [ - "/css/CSS2/fonts/fonts-012-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "fonts-013.xht": [ - "7661c20b2c09ea349d8b632916f15bbee869644f", + "margin-left-077.xht": [ + "5a11aa792392212cda08e94c98c1268a10c11ccc", [ null, [ [ - "/css/CSS2/fonts/fonts-013-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "fonts-014.xht": [ - "dec823ebbf8190580ceecee725e79169bbf527ff", + "margin-left-078.xht": [ + "38786d4fdc975e54c0e306eb836756c9f02a40a6", [ null, [ [ - "/css/CSS2/fonts/fonts-013-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "shand-font-000.xht": [ - "ff01cdb29a97d34e36c9dfff5d415b9c881dab0e", + "margin-left-079.xht": [ + "fbbbfd2ab41a6ac90515921ac70d6fec0e16f124", [ null, [ [ - "/css/CSS2/fonts/shand-font-000-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-079-ref.xht", "==" ] ], {} ] ], - "shand-font-001.xht": [ - "6cdb234eca134f03c3f65b2fc2e91ea11141d381", + "margin-left-080.xht": [ + "0f5db5898a6975df3322d1afa32546e7cc5fddd5", [ null, [ [ - "/css/CSS2/fonts/shand-font-000-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-079-ref.xht", "==" ] ], {} ] ], - "shand-font-002.xht": [ - "cd054edfa1598a2c7fef2d586fa1b15b5a1ad24b", + "margin-left-088.xht": [ + "af934ac1e43307b8798e8e99f9b53df65630dbdd", [ null, [ [ - "/css/CSS2/fonts/shand-font-002-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "shand-font-003.xht": [ - "fdb2948a130ff2b69f12575658df3d9fe8f6338a", + "margin-left-089.xht": [ + "0092455418b3b1289087461becda8ac572840f22", [ null, [ [ - "/css/CSS2/fonts/shand-font-002-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] - ] - }, - "generated-content": { - "after-content-display-001.xht": [ - "ea45942cfeddb94539ebb5ce75f72d98f3dffb1e", + ], + "margin-left-090.xht": [ + "bd946f2bb6d76ad1a4a831fbbad9bba30883add6", [ null, [ [ - "/css/CSS2/generated-content/after-content-display-001-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "after-content-display-002.xht": [ - "abbcff23beebf678eb81e4fa6ace8d35573da399", + "margin-left-091.xht": [ + "ae73c469dfe60eef0b0fc72fc41ca620a8fc129b", [ null, [ [ - "/css/CSS2/generated-content/after-content-display-002-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-031-ref.xht", "==" ] ], {} ] ], - "after-content-display-003.xht": [ - "e1c300ea9becaa0ef6b6f2dfd07bb024e529fa89", + "margin-left-092.xht": [ + "ec22c20376f7654fb27dbbe2ee01e972bbafb4d5", [ null, [ [ - "/css/CSS2/generated-content/after-content-display-003-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-031-ref.xht", "==" ] ], {} ] ], - "after-content-display-005.xht": [ - "2498d83e415985a19b4490a290d9cbc6e5a82573", + "margin-left-100.xht": [ + "da10f7d5702815c1e0fc0eb131e2377216d38cc3", [ null, [ [ - "/css/CSS2/generated-content/after-content-display-001-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "after-content-display-006.xht": [ - "58f55f3fae3ca15e0010f0a1739f48ee5528a071", + "margin-left-101.xht": [ + "80796b1b63006bff36789f1e32e951ea99e5a917", [ null, [ [ - "/css/CSS2/generated-content/after-content-display-002-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "after-content-display-007.xht": [ - "e183cb475336e0b26eab882bbc080ff026476ed1", + "margin-left-102.xht": [ + "2d287296bbb0ab7fd3333f9db45fc983705dbed6", [ null, [ [ - "/css/CSS2/generated-content/after-content-display-001-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "after-content-display-008.xht": [ - "3423c58137f77493ad981f5d8b1a3ee449c1ab31", + "margin-left-103.xht": [ + "74907db885f2afbee68e123e9f51f3dd0ea41151", [ null, [ [ - "/css/CSS2/generated-content/after-content-display-002-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-103-ref.xht", "==" ] ], {} ] ], - "after-content-display-009.xht": [ - "f238a5af17e12d540ae369aa8aba52c2001be19f", + "margin-left-104.xht": [ + "5d5e3cfb584464c78bc58a669e8975b3478cdf8b", [ null, [ [ - "/css/CSS2/generated-content/after-content-display-002-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-103-ref.xht", "==" ] ], {} ] ], - "after-content-display-010.xht": [ - "1af512517577f56bcd65a46b3274ee608c836370", + "margin-left-109.xht": [ + "7ed4d7b53989935a40ba247cd1043499e75cb3a6", [ null, [ [ - "/css/CSS2/generated-content/after-content-display-002-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "after-content-display-011.xht": [ - "8f15dce1b785502a9ad6585ffd5d79c72392bf7d", + "margin-left-110.xht": [ + "512152b00e4b64e698e01c82308ac94c2c87f87d", [ null, [ [ - "/css/CSS2/generated-content/after-content-display-002-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "after-content-display-012.xht": [ - "d1f700dbe7a95377b78f021093ca6decca27c6bd", + "margin-left-111.xht": [ + "1b5f74a3908066f5000945d776b35812e7e44e0f", [ null, [ [ - "/css/CSS2/generated-content/after-content-display-012-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "after-content-display-013.xht": [ - "e79035060ba87c5ceb62a9991fdbcb9585b4a75c", + "margin-left-112.xht": [ + "2710cfee3d87ca630f86243af176d62f498cc4df", [ null, [ [ - "/css/CSS2/generated-content/after-content-display-012-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "after-content-display-014.xht": [ - "e9fae96186a01871999e877800e4ec8afb731481", + "margin-left-113.xht": [ + "547d330e8e691e0f2ab3f664ec7ea9c6a0dd239c", [ null, [ [ - "/css/CSS2/generated-content/after-content-display-002-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-113-ref.xht", "==" ] ], {} ] ], - "after-content-display-015.xht": [ - "41720a4a7006cacd786c061024845b73ccfd83b7", + "margin-left-applies-to-001.xht": [ + "aad086e328d27747a9530e93058e8f375a8a112a", [ null, [ [ - "/css/CSS2/generated-content/after-content-display-002-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-applies-to-001-ref.xht", "==" ] ], {} ] ], - "after-content-display-016.xht": [ - "6f53a052d6f104208ea345cbc452ff130a01aeba", + "margin-left-applies-to-002.xht": [ + "aae6789a5852d6d60695b7e8c268707aeee53a11", [ null, [ [ - "/css/CSS2/generated-content/after-content-display-012-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-applies-to-001-ref.xht", "==" ] ], {} ] ], - "after-content-display-017.xht": [ - "250534a4814e547368961a49b7a18835a5572b46", + "margin-left-applies-to-003.xht": [ + "f6a32e1af9471b3409188c432eaf8e59568be311", [ null, [ [ - "/css/CSS2/generated-content/after-content-display-002-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-applies-to-001-ref.xht", "==" ] ], {} ] ], - "after-content-display-018.xht": [ - "8e3ac35fc818e4e27b8ed9ab3c69dd970ca659fa", + "margin-left-applies-to-004.xht": [ + "0ba2c8cae5ec3c808878f2dea6d846ed5daf4aed", [ null, [ [ - "/css/CSS2/generated-content/after-content-display-001-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-applies-to-001-ref.xht", "==" ] ], {} ] ], - "after-inheritable-001.xht": [ - "d9f06844453b216ff45b6245242e85c1f3b327ba", + "margin-left-applies-to-005.xht": [ + "b766cfb1484d76af424947fcb9305f90af22c4f0", [ null, [ [ - "/css/CSS2/generated-content/after-inheritable-001-ref.html", + "/css/CSS2/margin-padding-clear/margin-left-applies-to-001-ref.xht", "==" ] ], {} ] ], - "after-inheritable-002.xht": [ - "c99290f862e6bddde3913ec8934d48b3c67a84a5", + "margin-left-applies-to-006.xht": [ + "12fcb9f2f3966a7950be54a2826aaf01f0bd67cb", [ null, [ [ - "/css/CSS2/generated-content/after-inheritable-002-ref.html", + "/css/CSS2/margin-padding-clear/margin-left-applies-to-001-ref.xht", "==" ] ], {} ] ], - "after-location-001.xht": [ - "b1e4974824c49b1e2c77202217ab8201554de7d1", + "margin-left-applies-to-007.xht": [ + "061c78edd64e3ad69de3e4a950af7934d0a7d0a4", [ null, [ [ - "/css/CSS2/generated-content/after-location-001-ref.html", + "/css/CSS2/margin-padding-clear/margin-left-applies-to-001-ref.xht", "==" ] ], {} ] ], - "before-after-001.xht": [ - "05351a04301b09643d6e42ec6b5eee959895cc84", + "margin-left-applies-to-008.xht": [ + "2b57f0fccd8f4f5ae6fdc61720798a60ce675d6d", [ null, [ [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", + "/css/CSS2/margin-padding-clear/padding-left-applies-to-008-ref.xht", "==" ] ], {} ] ], - "before-after-002.xht": [ - "fcd24380d21602613021cc1fd2011d704ebe35a6", + "margin-left-applies-to-009.xht": [ + "7301e5bd68a794ed8f4b859d5746850a6babba8b", [ null, [ [ - "/css/CSS2/generated-content/content-003-ref.html", + "/css/CSS2/margin-padding-clear/margin-left-applies-to-009-ref.xht", "==" ] ], {} ] ], - "before-after-011.xht": [ - "60fb721b8ce0aace97dde2e30a273666ca8cc105", + "margin-left-applies-to-012.xht": [ + "8e7fc4648c637113f2f5ad62fc124c897a9e7a81", [ null, [ [ - "/css/CSS2/generated-content/before-after-011-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-applies-to-009-ref.xht", "==" ] ], {} ] ], - "before-after-display-types-001.xht": [ - "2ced98b971bfaee80dedb05d61731c6a5aecb5ba", + "margin-left-applies-to-013.xht": [ + "1c18442c99378c3d9dd424f9e2a08e83b85eb153", [ null, [ [ - "/css/CSS2/generated-content/before-after-display-types-001-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-applies-to-009-ref.xht", "==" ] ], {} ] ], - "before-after-dynamic-attr-001.xht": [ - "acde603c1d54ad5d894e4df2ad41edf151d39fb9", + "margin-left-applies-to-014.xht": [ + "431b81e93d17b419308aa76f9afdeb22aa13bb34", [ null, [ [ - "/css/CSS2/generated-content/before-after-dynamic-attr-001-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-applies-to-009-ref.xht", "==" ] ], {} ] ], - "before-after-dynamic-restyle-001.xht": [ - "bafa418f7cc80830166b00d80caffd2c90aa23bb", + "margin-left-applies-to-015.xht": [ + "3b2f99892398f46f6cd488b26962a526752712d0", [ null, [ [ - "/css/CSS2/generated-content/before-after-dynamic-restyle-001-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-applies-to-009-ref.xht", "==" ] ], {} ] ], - "before-after-floated-001.xht": [ - "9a3cfc0c8915e6dabe3301450b2ed7dba633d04d", + "margin-percentage-inherit-001.xht": [ + "5e73777157b60a540864f2f3213ea428261d918d", [ null, [ [ - "/css/CSS2/generated-content/before-after-floated-001-ref.xht", + "/css/CSS2/margin-padding-clear/margin-percentage-inherit-001-ref.xht", "==" ] ], {} ] ], - "before-after-images-001.xht": [ - "2d359ba7127f7672f1368742284e38aa1cede441", + "margin-right-004.xht": [ + "9d9cb7090a1c2e0d614746768c94eae829b9cffa", [ null, [ [ - "/css/CSS2/generated-content/before-after-images-001-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "before-after-positioned-001.xht": [ - "37b22f31ffcff03dcda514cb11ba559412363468", + "margin-right-005.xht": [ + "92207ac4a1fd89ab4c615b7ad69a8cddc36020de", [ null, [ [ - "/css/CSS2/generated-content/before-after-positioned-001-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "before-after-positioned-002.html": [ - "30a2649d935ae60f22de40eda87fc6eaed9ccea8", + "margin-right-006.xht": [ + "877506dc448545b8f67647f9af98b195f54c5797", [ null, [ [ - "/css/CSS2/generated-content/before-after-positioned-002-ref.html", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "before-after-positioned-003.html": [ - "f187b2bad0a1d28a7948801aee8f082888f268f5", + "margin-right-007.xht": [ + "d310ac58138cfe1e958c792b5617a16edd5c0c12", [ null, [ [ - "/css/CSS2/generated-content/before-after-positioned-002-ref.html", + "/css/CSS2/margin-padding-clear/margin-left-007-ref.xht", "==" ] ], {} ] ], - "before-after-positioned-004.html": [ - "99147574a8cf382e56d03c2765cba9e003213a8f", + "margin-right-008.xht": [ + "0a9c9a958abb37e5e7223b19c1982f0a195c798b", [ null, [ [ - "/css/CSS2/generated-content/before-after-positioned-004-ref.html", + "/css/CSS2/margin-padding-clear/margin-left-007-ref.xht", "==" ] ], {} ] ], - "before-after-table-parts-001.xht": [ - "f9eb998ebc3d49377e6a3f45b40cd22ddd70287b", + "margin-right-016.xht": [ + "9f18dcc3593cae1ba61256572c3f9318d52173a0", [ null, [ [ - "/css/CSS2/generated-content/before-after-table-parts-001-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "before-after-table-whitespace-001.xht": [ - "f299398a5b189be1d80a7fc13d8f9ebe318f9be6", + "margin-right-017.xht": [ + "d959e2b58c0cb06d39979e9833a95983c9427c4e", [ null, [ [ - "/css/CSS2/generated-content/before-after-table-whitespace-001-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "before-content-display-001.xht": [ - "122dbde1c6b61443922820997945931cb5e0f4bc", + "margin-right-018.xht": [ + "6c51eaad8c85db43b716e91d62dd1416bc7c6026", [ null, [ [ - "/css/CSS2/generated-content/after-content-display-001-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "before-content-display-002.xht": [ - "610926ba50a8c810360ebf5808745a152c2b6c4c", + "margin-right-019.xht": [ + "91050afb21e2dde0741b534be0acffcfb766dd09", [ null, [ [ - "/css/CSS2/generated-content/after-content-display-002-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-019-ref.xht", "==" ] ], {} ] ], - "before-content-display-003.xht": [ - "2ec13d1dec4c721b85d90011396009a540189ed0", + "margin-right-020.xht": [ + "6e06fa92e556ebb4ccd22fa1f4323f6beedb7925", [ null, [ [ - "/css/CSS2/generated-content/before-content-display-003-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-019-ref.xht", "==" ] ], {} ] ], - "before-content-display-005.xht": [ - "199b1f9dff4df45bf110dc487bc748ad1af2dc89", + "margin-right-028.xht": [ + "c1c82cbe703cdb1bab3668282574faa4cb9fcf51", [ null, [ [ - "/css/CSS2/generated-content/after-content-display-001-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "before-content-display-006.xht": [ - "1bdb0da79f95ce65094da36dafa251f25e1e416d", + "margin-right-029.xht": [ + "6c6a4bdfdd10cb04ee952f91959098803af45bc8", [ null, [ [ - "/css/CSS2/generated-content/after-content-display-002-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "before-content-display-007.xht": [ - "0e14e8c6310c87e3e1e90446d75fc245c458f17a", + "margin-right-030.xht": [ + "a2c447ad5c1d87b9cde38eef2f292452a1e59874", [ null, [ [ - "/css/CSS2/generated-content/after-content-display-001-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "before-content-display-008.xht": [ - "6d4e660086718663f377369ca8bf31c6b401f50d", + "margin-right-031.xht": [ + "034211c1e75c087b99dc8cc6336afaec3dd324d5", [ null, [ [ - "/css/CSS2/generated-content/after-content-display-002-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-031-ref.xht", "==" ] ], {} ] ], - "before-content-display-009.xht": [ - "91c02ddb3b713b3c35d41ecc485b99da42374c52", + "margin-right-032.xht": [ + "de1821bae5f7df21aabca74cf7dd1463757d556a", [ null, [ [ - "/css/CSS2/generated-content/after-content-display-002-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-031-ref.xht", "==" ] ], {} ] ], - "before-content-display-010.xht": [ - "92cdbd70fcce0eb8663420b3dc123c82d36c07dc", + "margin-right-040.xht": [ + "551a19954e100c3fdd4687c194f7dfa01b479e70", [ null, [ [ - "/css/CSS2/generated-content/after-content-display-002-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "before-content-display-011.xht": [ - "806649d69fae315e5e7bb2cdd453b290570251bb", + "margin-right-041.xht": [ + "59f30bd5adc3280429ba83635e6189e2a82453a1", [ null, [ [ - "/css/CSS2/generated-content/after-content-display-002-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "before-content-display-012.xht": [ - "27567bb7201650ef5515cefc49b05166384093e2", + "margin-right-042.xht": [ + "cefe554b56345a6a483c5551f87578c970fba7af", [ null, [ [ - "/css/CSS2/generated-content/after-content-display-012-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "before-content-display-013.xht": [ - "b49618c8f32798631783df966bc7df521c15160d", + "margin-right-043.xht": [ + "d042b472328941f68f1dc48f657e0db28205a7a3", [ null, [ [ - "/css/CSS2/generated-content/after-content-display-012-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-043-ref.xht", "==" ] ], {} ] ], - "before-content-display-014.xht": [ - "eeb0847632447dbae204411f477c7fa88fbd9018", + "margin-right-044.xht": [ + "95875d110c579bf3676c853bbe11c26a2d636ec9", [ null, [ [ - "/css/CSS2/generated-content/after-content-display-002-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-043-ref.xht", "==" ] ], {} ] ], - "before-content-display-015.xht": [ - "9808bfff86eebeb9d6fb08768dd018f524286239", + "margin-right-052.xht": [ + "a73c68cda070b2185791fcb021106d116c64663a", [ null, [ [ - "/css/CSS2/generated-content/after-content-display-002-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "before-content-display-016.xht": [ - "88b0bdbfa0b8a3489f390035346c471ed5435f89", + "margin-right-053.xht": [ + "ca9382ddc3dbb9f4347874d218466fe24a3fc172", [ null, [ [ - "/css/CSS2/generated-content/after-content-display-012-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "before-content-display-017.xht": [ - "8d0a59d3c216dda8bcb51471932ddcb2413a98f7", + "margin-right-054.xht": [ + "a3396cb00708af10b322fcf0bef365268b4f0b08", [ null, [ [ - "/css/CSS2/generated-content/after-content-display-002-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "before-content-display-018.xht": [ - "35831c3abf411479b23f708c63505b3d7db7c199", + "margin-right-055.xht": [ + "e62776cbd11d9ae7c8ad08a9fb953e9484b2a73a", [ null, [ [ - "/css/CSS2/generated-content/after-content-display-001-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-043-ref.xht", "==" ] ], {} ] ], - "before-inheritable-001.xht": [ - "bf9a22ffa938fac420afcd0c8ffaf5cb06eea856", + "margin-right-056.xht": [ + "fbc9a2ee373314e4e6eb8bdceb6cc01b4a2ef933", [ null, [ [ - "/css/CSS2/generated-content/after-inheritable-001-ref.html", + "/css/CSS2/margin-padding-clear/margin-left-043-ref.xht", "==" ] ], {} ] ], - "before-inheritable-002.xht": [ - "d2d32efdc294e95e354490670bc25c36515083af", + "margin-right-064.xht": [ + "6130e71d6e6cc2d962f71978e1de0f794b841f97", [ null, [ [ - "/css/CSS2/generated-content/after-inheritable-002-ref.html", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "before-location-001.xht": [ - "f8ac26c52e170865da298c7b90cad77d264acbb8", + "margin-right-065.xht": [ + "3e288b4e01bf398fa63ad0e28dcc8e0ddb844ab3", [ null, [ [ - "/css/CSS2/generated-content/before-location-001-ref.html", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "bidi-generated-content-001.xht": [ - "11e106254f9bceb3f7e40e500b0294d4572fbfdd", + "margin-right-066.xht": [ + "780fcd5873f38f97044a275984f02bfd00f57f69", [ null, [ [ - "/css/CSS2/generated-content/bidi-generated-content-001-ref.html", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "bidi-generated-content-002.xht": [ - "f2c04930d78b49035628885a6385b9d658005b63", + "margin-right-067.xht": [ + "9976c5b120240b002c94f54a10e3b8b64ba101cb", [ null, [ [ - "/css/CSS2/generated-content/bidi-generated-content-002-ref.html", + "/css/CSS2/margin-padding-clear/margin-left-067-ref.xht", "==" ] ], {} ] ], - "content-001.xht": [ - "da3acc30f1285d425b03108c0487a3d1664fcb55", + "margin-right-068.xht": [ + "00d9287458ae90bc3f4203ac02aa96249a33e7b2", [ null, [ [ - "/css/CSS2/generated-content/content-001-ref.html", + "/css/CSS2/margin-padding-clear/margin-left-067-ref.xht", "==" ] ], {} ] ], - "content-002.xht": [ - "63676c9f4daabd8cd7116af44c03b7ca00cee645", + "margin-right-076.xht": [ + "aefac0a25cd16bc08c74bf0e2cd784f5367754b8", [ null, [ [ - "/css/CSS2/generated-content/content-001-ref.html", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "content-003.xht": [ - "2262466da6b738e73cc650f6cdc232c297f1a114", + "margin-right-077.xht": [ + "5df88b007568d487bc141b2be7eefa75e5700157", [ null, [ [ - "/css/CSS2/generated-content/content-003-ref.html", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "content-004.xht": [ - "1388f76d475f5c208dee3c5c50128161f6facf86", + "margin-right-078.xht": [ + "c6f2f4a039a7eed1f5d1be2d2757214e6a4da425", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "content-005.xht": [ - "76a4efac956a8c55ca647ae56a7f95b4e234c407", + "margin-right-079.xht": [ + "35d0c41551a829a97d92aa2d98791784a8d386e3", [ null, [ [ - "/css/CSS2/generated-content/content-005-ref.html", + "/css/CSS2/margin-padding-clear/margin-left-079-ref.xht", "==" ] ], {} ] ], - "content-006.xht": [ - "dc79cffa06411cacc6bcb21794b1470c4573645c", + "margin-right-080.xht": [ + "1796aedba515cac77d7b80655c9be6f6f505944a", [ null, [ [ - "/css/CSS2/generated-content/content-006-ref.html", + "/css/CSS2/margin-padding-clear/margin-left-079-ref.xht", "==" ] ], {} ] ], - "content-007.xht": [ - "d0fccb76a29db9cd9a514880d327057190762ed6", + "margin-right-088.xht": [ + "c9dbe04d7ee9024557c87fb0c8654b53cba71d66", [ null, [ [ - "/css/CSS2/generated-content/content-007-ref.html", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "content-009.xht": [ - "1685289920e08961ab921dca9a203bfaad502c41", + "margin-right-089.xht": [ + "bc97b33e22392d6eabefed600eae8253eeddb250", [ null, [ [ - "/css/CSS2/generated-content/content-005-ref.html", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "content-010.xht": [ - "188543d7de84e38d3d418e945b45291c95a2048e", + "margin-right-090.xht": [ + "4a8bb9052be2a590772b22c594963b4e7c8f5de4", [ null, [ [ - "/css/CSS2/generated-content/content-010-ref.html", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "content-011.xht": [ - "fc6c274069032b0d1665fa0b0175137504749712", + "margin-right-091.xht": [ + "164f4a3110784acc64254259cb92b159e9fe8ba7", [ null, [ [ - "/css/CSS2/generated-content/content-011-ref.html", + "/css/CSS2/margin-padding-clear/margin-left-031-ref.xht", "==" ] ], {} ] ], - "content-012.xht": [ - "3c9aa6e54b8ebb7dd3cd974c3e48d335b9a7211f", + "margin-right-092.xht": [ + "5abb7730dbd90f72d5c58d29ce16792610e8795e", [ null, [ [ - "/css/CSS2/generated-content/content-012-ref.html", + "/css/CSS2/margin-padding-clear/margin-left-031-ref.xht", "==" ] ], {} ] ], - "content-013.xht": [ - "87a3ccd25aa3408ca8948de62e003abbc4a6fc85", + "margin-right-100.xht": [ + "88f6383f20a009bd558e14d5961abd63a71b5bbd", [ null, [ [ - "/css/CSS2/generated-content/content-013-ref.html", + "/css/CSS2/margin-padding-clear/margin-right-100-ref.xht", "==" ] ], {} ] ], - "content-014.xht": [ - "a1b60da6fa9e04abdbfc579f6291ea44d4ce7e97", + "margin-right-101.xht": [ + "9d65336bee325570df55cba32545f9570fdbabba", [ null, [ [ - "/css/CSS2/generated-content/content-014-ref.html", + "/css/CSS2/margin-padding-clear/margin-right-100-ref.xht", "==" ] ], {} ] ], - "content-015.xht": [ - "082219e753a009fc13cb3d90ffc1900ca63bfa38", + "margin-right-102.xht": [ + "18718dbe8690ea11d92156d2deed87e8f6f686d8", [ null, [ [ - "/css/CSS2/generated-content/content-015-ref.html", + "/css/CSS2/margin-padding-clear/margin-right-100-ref.xht", "==" ] ], {} ] ], - "content-016.xht": [ - "1513ce024091ba889c7f83a8fe34ce6ad11d00e4", + "margin-right-103.xht": [ + "347e82e987b1825f1e91acdb2f4b819412827567", [ null, [ [ - "/css/CSS2/generated-content/content-016-ref.html", + "/css/CSS2/margin-padding-clear/margin-right-103-ref.xht", "==" ] ], {} ] ], - "content-017.xht": [ - "8e41792b1e59e76a6c2694538b75deaaad1605c7", + "margin-right-104.xht": [ + "ec5281fff4bc14810a9ac97cd303e577d50aee29", [ null, [ [ - "/css/CSS2/generated-content/content-017-ref.html", + "/css/CSS2/margin-padding-clear/margin-right-103-ref.xht", "==" ] ], {} ] ], - "content-018.xht": [ - "269d04f3185f8c0752b43442170ea9b6097de5b3", + "margin-right-109.xht": [ + "09dc3d4198e8bd77af210b24c51f2cc20320c898", [ null, [ [ - "/css/CSS2/generated-content/content-014-ref.html", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "content-019.xht": [ - "07ad5767fb9447234c97fcd477418a7fc2be8763", + "margin-right-110.xht": [ + "c8660723ada4a0baf7569cf1591445b90ddde4a0", [ null, [ [ - "/css/CSS2/generated-content/content-015-ref.html", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "content-020.xht": [ - "a2f82d47b700c76b201533f10e813036d8b670a1", + "margin-right-111.xht": [ + "5857d3759bf70b5490a2688078789a885c133ab9", [ null, [ [ - "/css/CSS2/generated-content/content-001-ref.html", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "content-021.xht": [ - "48bc22d22f3b4e78cbc044209cea75b49f80d20f", + "margin-right-112.xht": [ + "10cfe7e8b4b079189a98e3ad20e8a867d9755cbd", [ null, [ [ - "/css/CSS2/generated-content/content-021-ref.html", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "content-022.xht": [ - "6559e494807756c4b332863e7963e8f2df4978eb", + "margin-right-113.xht": [ + "94c65354a729f51ff8a11a5e124433176084a2c7", [ null, [ [ - "/css/CSS2/generated-content/content-022-ref.html", + "/css/CSS2/margin-padding-clear/margin-right-113-ref.xht", "==" ] ], {} ] ], - "content-023.xht": [ - "71e0f3b424c3213e5b0b2237186e515300ce9db9", + "margin-right-applies-to-001.xht": [ + "89f0f02249b1974577672b3fbc1b7f35931f73cc", [ null, [ [ - "/css/CSS2/generated-content/content-023-ref.html", + "/css/CSS2/margin-padding-clear/margin-left-applies-to-001-ref.xht", "==" ] ], {} ] ], - "content-025.xht": [ - "8d247697776085bf189cec27066aa1e302d7384c", + "margin-right-applies-to-002.xht": [ + "f3187d1453bb1260175dc8a3528736c0bfb1beb3", [ null, [ [ - "/css/CSS2/generated-content/content-021-ref.html", + "/css/CSS2/margin-padding-clear/margin-left-applies-to-001-ref.xht", "==" ] ], {} ] ], - "content-026.xht": [ - "59efafc59fbd8f2d2914f9962629e5a0be5fdaf2", + "margin-right-applies-to-003.xht": [ + "b344588bc7311875baa4d584cb60a741f49891cc", [ null, [ [ - "/css/CSS2/generated-content/content-026-ref.html", + "/css/CSS2/margin-padding-clear/margin-left-applies-to-001-ref.xht", "==" ] ], {} ] ], - "content-027.xht": [ - "2e2053daa76a9efd9badc24948e30e4435cd0546", + "margin-right-applies-to-004.xht": [ + "3c29b163d415c61aebb9857d188e9c944d11fab1", [ null, [ [ - "/css/CSS2/generated-content/content-027-ref.html", + "/css/CSS2/margin-padding-clear/margin-left-applies-to-001-ref.xht", "==" ] ], {} ] ], - "content-028.xht": [ - "9d9535d752a3503f0e5e5796fc22d6a8e44a76bd", + "margin-right-applies-to-005.xht": [ + "bfbe4aca2ae731047768651cd2b5741a261c3a46", [ null, [ [ - "/css/CSS2/generated-content/content-028-ref.html", + "/css/CSS2/margin-padding-clear/margin-left-applies-to-001-ref.xht", "==" ] ], {} ] ], - "content-029.xht": [ - "1a3c087f43350725be2ae240ace409c8fe70cb9c", + "margin-right-applies-to-006.xht": [ + "1eb5881e50855b4487bcf7d2ebf5cf5b9b197ed3", [ null, [ [ - "/css/CSS2/generated-content/content-029-ref.html", + "/css/CSS2/margin-padding-clear/margin-left-applies-to-001-ref.xht", "==" ] ], {} ] ], - "content-030.xht": [ - "d49e5aad1cf559aa3147dbfa47cce22e1fd58884", + "margin-right-applies-to-007.xht": [ + "c889e02b6a04c1d50a0734ecae2cfba6be55b340", [ null, [ [ - "/css/CSS2/generated-content/content-030-ref.html", + "/css/CSS2/margin-padding-clear/margin-left-applies-to-001-ref.xht", "==" ] ], {} ] ], - "content-031.xht": [ - "b5dd7ee122c2e106eaf1b892380edcdee11de67f", + "margin-right-applies-to-009.xht": [ + "a3151c16f7d763f793e05a9e1cf9c7bcceafeec4", [ null, [ [ - "/css/CSS2/generated-content/content-031-ref.html", + "/css/CSS2/margin-padding-clear/margin-left-applies-to-009-ref.xht", "==" ] ], {} ] ], - "content-032.xht": [ - "7dbe529526ad13c90bd5fc159b6914f28bd213e4", + "margin-right-applies-to-012.xht": [ + "a55038bde27016cd622d4c211d5cec179da483fa", [ null, [ [ - "/css/CSS2/generated-content/content-032-ref.html", + "/css/CSS2/margin-padding-clear/margin-left-applies-to-009-ref.xht", "==" ] ], {} ] ], - "content-033.xht": [ - "033f681eb35b9bf08b5bbb22dccf189bf47fe097", + "margin-right-applies-to-013.xht": [ + "a60b39308ccf23b08a85eb5ef9083a962eef51d6", [ null, [ [ - "/css/CSS2/generated-content/content-033-ref.html", + "/css/CSS2/margin-padding-clear/margin-left-applies-to-009-ref.xht", "==" ] ], {} ] ], - "content-034.xht": [ - "97d411ed370a7b0373ace048ea75b455f0c6bc78", + "margin-right-applies-to-014.xht": [ + "78b23cc919dc2513f0a9aa41fb33ea37cdc66428", [ null, [ [ - "/css/CSS2/generated-content/content-030-ref.html", + "/css/CSS2/margin-padding-clear/margin-left-applies-to-009-ref.xht", "==" ] ], {} ] ], - "content-035.xht": [ - "9f722770b63c5e6e842fa940001aeef557debc95", + "margin-right-applies-to-015.xht": [ + "fe226531584f1559856d3174081e593fbf499f48", [ null, [ [ - "/css/CSS2/generated-content/content-031-ref.html", + "/css/CSS2/margin-padding-clear/margin-left-applies-to-009-ref.xht", "==" ] ], {} ] ], - "content-036.xht": [ - "3f860e9ebd091e0b6e4943b732950aa1a70352c6", + "margin-shorthand-001.xht": [ + "8deb60aacda4b8c53d26d24b346618d3287b3697", [ null, [ [ - "/css/CSS2/generated-content/content-001-ref.html", + "/css/CSS2/margin-padding-clear/margin-shorthand-001-ref.xht", "==" ] ], {} ] ], - "content-037.xht": [ - "433d7dc52f0fd3d057b613c7d5b32e1f3cad299b", + "margin-shorthand-002.xht": [ + "df6e2ddfdc882fd250922ad4c7c24167b5718298", [ null, [ [ - "/css/CSS2/generated-content/content-037-ref.html", + "/css/CSS2/margin-padding-clear/margin-shorthand-002-ref.xht", "==" ] ], {} ] ], - "content-038.xht": [ - "5208f5c93195dd97c3eea080949aa38939f20f3c", + "margin-shorthand-003.xht": [ + "0000a18d7c7c772e9cc52e962414d4f5694ac0a5", [ null, [ [ - "/css/CSS2/generated-content/content-003-ref.html", + "/css/CSS2/margin-padding-clear/margin-shorthand-003-ref.xht", "==" ] ], {} ] ], - "content-039.xht": [ - "f62560b33789590bf35b8be78ac94347e2d5f3f5", + "margin-shorthand-004.xht": [ + "5308f7686e9566bd018288c2de15bf9463235124", [ null, [ [ - "/css/CSS2/generated-content/content-003-ref.html", + "/css/CSS2/margin-padding-clear/margin-shorthand-003-ref.xht", "==" ] ], {} ] ], - "content-040.xht": [ - "fa1ae9b3284eef86b639763769c6e71636dfc3b7", + "margin-top-004.xht": [ + "14893a0eba338c98025ad4a78938efeadd675421", [ null, [ [ - "/css/CSS2/generated-content/content-040-ref.html", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "content-041.xht": [ - "cee3fd8e5f296072d9d9df291ebfadae221247f1", + "margin-top-005.xht": [ + "9a4df918f7e1d6188be0baebf73e0c5c68061462", [ null, [ [ - "/css/CSS2/generated-content/content-041-ref.html", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "content-042.xht": [ - "e4aac947e1e6576522b84aeecfabad5c75af679f", + "margin-top-006.xht": [ + "866aee1582b7c50f89363c28d1a88fa54f9d466c", [ null, [ [ - "/css/CSS2/generated-content/content-042-ref.html", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "content-043.xht": [ - "2ba9f713678690d40abaaa09830377e9f5485945", + "margin-top-007.xht": [ + "9466c1133f0c9173e5c125e128d957bd0f4eb26c", [ null, [ [ - "/css/CSS2/generated-content/content-043-ref.html", + "/css/CSS2/margin-padding-clear/margin-top-007-ref.xht", "==" ] ], {} ] ], - "content-046.xht": [ - "cb96a3b5be2477d45fdce945bb2056040b0c4057", + "margin-top-008.xht": [ + "181b3d35e24c358377a1882f62d1fa1a150c2c03", [ null, [ [ - "/css/CSS2/generated-content/content-037-ref.html", + "/css/CSS2/margin-padding-clear/margin-top-007-ref.xht", "==" ] ], {} ] ], - "content-047.xht": [ - "2189f952449e77230a89c6bef850087e2341b000", + "margin-top-016.xht": [ + "20073525ec3f19a4e29cd23dda64384bf47f6800", [ null, [ [ - "/css/CSS2/generated-content/content-047-ref.html", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "content-048.xht": [ - "59597ab9a735b459cb3f230fb219b32e513885b7", + "margin-top-017.xht": [ + "03cd2afccc81b2d36b15a0b43ef02fe96ddffe17", [ null, [ [ - "/css/CSS2/generated-content/content-048-ref.html", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "content-050.xht": [ - "0b43248a53e5b42dd858a14515c10a15a8540e08", + "margin-top-018.xht": [ + "f5ab60112aa2c442a62e7879990ed774c4b34698", [ null, [ [ - "/css/CSS2/generated-content/content-050-ref.html", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "content-052.xht": [ - "9812d3134f639ff6a5efd7eb5a0fe40977778358", + "margin-top-019.xht": [ + "b8f383dfa4f6d056b869f582ed00eed330f07b4c", [ null, [ [ - "/css/CSS2/generated-content/content-052-ref.html", + "/css/CSS2/margin-padding-clear/margin-top-019-ref.xht", "==" ] ], {} ] ], - "content-053.xht": [ - "f8ddb34981eab383aec8958e062f89fc01a4bdd7", + "margin-top-020.xht": [ + "9260da4066669f8fbe3ab5af82711f2dd1620cf5", [ null, [ [ - "/css/CSS2/generated-content/content-053-ref.html", + "/css/CSS2/margin-padding-clear/margin-top-019-ref.xht", "==" ] ], {} ] ], - "content-054.xht": [ - "3a282056d2678f622fffc34d1261f2b408418c19", + "margin-top-028.xht": [ + "c84cd964d42104a067d7656dd9ed4f4c18c59f93", [ null, [ [ - "/css/CSS2/generated-content/content-003-ref.html", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "content-056.xht": [ - "0f7ee3b86fd116501e36b38288b616a291051697", + "margin-top-029.xht": [ + "7105776f73174bcd25ecd9610babb8e23d712ff2", [ null, [ [ - "/css/CSS2/generated-content/content-003-ref.html", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "content-057.xht": [ - "5907a251b631a1b63be84cb187aac2eed565b5bf", + "margin-top-030.xht": [ + "2b8bb60975a6281b831453be5c0a9efcaaea2c9b", [ null, [ [ - "/css/CSS2/generated-content/content-003-ref.html", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "content-063.xht": [ - "2293fce5fe57068859343586fb7f929d0a91a5d9", + "margin-top-031.xht": [ + "fddfc74e069a561f12f6a38a3ad728856fb7ccc5", [ null, [ [ - "/css/CSS2/generated-content/content-063-ref.html", + "/css/CSS2/margin-padding-clear/margin-top-031-ref.xht", "==" ] ], {} ] ], - "content-065.xht": [ - "3eb962bc1e63f2404059539e30874f811f52d6ac", + "margin-top-032.xht": [ + "114ac00b056b4bcc71550002ad8daa5608b68b7c", [ null, [ [ - "/css/CSS2/generated-content/content-053-ref.html", + "/css/CSS2/margin-padding-clear/margin-top-031-ref.xht", "==" ] ], {} ] ], - "content-067.xht": [ - "9ab92e3397cb816718fce70a4af7662956533fe0", + "margin-top-040.xht": [ + "9a582cc5df60f799dba743ffa9956de0f712ddd7", [ null, [ [ - "/css/CSS2/generated-content/content-047-ref.html", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "content-068.xht": [ - "4c7578bf343c8cedc660efdb13c333c1422c2661", + "margin-top-041.xht": [ + "ef85cb43f39638f4849448a4a8ea26c3e80a94b4", [ null, [ [ - "/css/CSS2/generated-content/content-068-ref.html", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "content-070.xht": [ - "dec76a02742c637dfcddd3a3cf7406c6e1929edd", + "margin-top-042.xht": [ + "65b363bdd7b3d6ac5d02cab0cd9a5919a90e184f", [ null, [ [ - "/css/CSS2/generated-content/content-070-ref.html", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "content-072.xht": [ - "05d18bd0946cf25ffcf43322810a36655f7fb2b4", + "margin-top-043.xht": [ + "2dabad2c772b9087cc3a43d99ddc3b1ee97814f9", [ null, [ [ - "/css/CSS2/generated-content/content-072-ref.html", + "/css/CSS2/margin-padding-clear/margin-top-043-ref.xht", "==" ] ], {} ] ], - "content-073.xht": [ - "c86d0dda433373bc418cbb87f308ad1dce39e1d5", + "margin-top-044.xht": [ + "d02fa3dc65fddefa4df119445f667f5774e83bbf", [ null, [ [ - "/css/CSS2/generated-content/content-073-ref.html", + "/css/CSS2/margin-padding-clear/margin-top-043-ref.xht", "==" ] ], {} ] ], - "content-075.xht": [ - "35cd1447c5e49354d9b3de7b7c90758630f157e8", + "margin-top-052.xht": [ + "8bb52dcc9176e6e7301c1376fd249353ab3d196a", [ null, [ [ - "/css/CSS2/generated-content/content-075-ref.html", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "content-076.xht": [ - "a4bfdd0b9dbae1eb33e0aef5919bd01f56d1a82e", + "margin-top-053.xht": [ + "5e6515364781486ba8dd12a3a5758b13e79963ce", [ null, [ [ - "/css/CSS2/generated-content/content-003-ref.html", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "content-077.xht": [ - "0be87d4269af68fcd4ed9bc070fd8fb3c020418c", + "margin-top-054.xht": [ + "aaeda845fc9097415607409d958674a787f169e1", [ null, [ [ - "/css/CSS2/generated-content/content-041-ref.html", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "content-080.xht": [ - "ea4e72cb73235517bfe3357d62cee332313f9ac2", + "margin-top-055.xht": [ + "5569d2eb87cced91b0fdf6b6da33106f40d9f8ff", [ null, [ [ - "/css/CSS2/generated-content/content-080-ref.html", + "/css/CSS2/margin-padding-clear/margin-top-043-ref.xht", "==" ] ], {} ] ], - "content-081.xht": [ - "937a691eb1bdfb9fa43dabb2e8bfa64c5ba102c3", + "margin-top-056.xht": [ + "c143009a7994d888e4dda6e223077645f737ad4b", [ null, [ [ - "/css/CSS2/generated-content/content-081-ref.html", + "/css/CSS2/margin-padding-clear/margin-top-043-ref.xht", "==" ] ], {} ] ], - "content-082.xht": [ - "a6a7afe1cfe37662df71534c3edf7efc4f6085dd", + "margin-top-064.xht": [ + "5d37faa21716979760c4ad4fcaa11e4440d7462e", [ null, [ [ - "/css/CSS2/generated-content/content-082-ref.html", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "content-083.xht": [ - "49e03bc852b84f2c614dc0a6b7f64cd9c54ae879", + "margin-top-065.xht": [ + "8d3295456e90f7f49307cfdaec37004999f6e6d2", [ null, [ [ - "/css/CSS2/generated-content/content-083-ref.html", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "content-085.xht": [ - "ea3bca80478f7647230874b213a503c47c971bb3", + "margin-top-066.xht": [ + "c32d02d37732e117b32eee8f5ab8fc5220d0e41c", [ null, [ [ - "/css/CSS2/generated-content/content-047-ref.html", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "content-086.xht": [ - "94ca4dc57d3d431cc3e093b47f60b036cb527c4a", + "margin-top-067.xht": [ + "2e65cb75bf42cbcda9cf668bce57e18c7bf39540", [ null, [ [ - "/css/CSS2/generated-content/content-041-ref.html", + "/css/CSS2/margin-padding-clear/margin-top-067-ref.xht", "==" ] ], {} ] ], - "content-089.xht": [ - "4090d04f7efdb27421046eaacc29ff2d0788102c", + "margin-top-068.xht": [ + "23228ea3945e9f08b277a387dcbe67e31c89732c", [ null, [ [ - "/css/CSS2/generated-content/content-089-ref.html", + "/css/CSS2/margin-padding-clear/margin-top-067-ref.xht", "==" ] ], {} ] ], - "content-090.xht": [ - "982023deaad8ac27ca2e8342371cb675e2dceea4", + "margin-top-076.xht": [ + "774a76a204891ade25736aa46ea306844d29f495", [ null, [ [ - "/css/CSS2/generated-content/content-090-ref.html", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "content-091.xht": [ - "1c1b35239ee1031e2106830e2f6cc96bd69558b5", + "margin-top-077.xht": [ + "eb2854774c4bba9976cf50953216ddd6d0a7868c", [ null, [ [ - "/css/CSS2/generated-content/content-091-ref.html", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "content-096.xht": [ - "8fbd1fe5c85ad4b5d73be686b402f36a8b0d9bcc", + "margin-top-078.xht": [ + "aec7ec86ed5414c55a76b272eaa1f8e7a27b8166", [ null, [ [ - "/css/CSS2/generated-content/content-096-ref.html", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "content-097.xht": [ - "bec72c932dfaa06cbd7fffc7e98b10d4c92922a7", + "margin-top-079.xht": [ + "b80da795b5b71c87d750a23ff88bc9b376856ef3", [ null, [ [ - "/css/CSS2/generated-content/content-097-ref.html", + "/css/CSS2/margin-padding-clear/margin-top-079-ref.xht", "==" ] ], {} ] ], - "content-099.xht": [ - "81ae3ebc11dfda77c6d91b7953021e18cc936870", + "margin-top-080.xht": [ + "a9d6e79e49bafd188666649e466bc33fd393f052", [ null, [ [ - "/css/CSS2/generated-content/content-041-ref.html", + "/css/CSS2/margin-padding-clear/margin-top-079-ref.xht", "==" ] ], {} ] ], - "content-100.xht": [ - "733f22e829d0ab06e0b484155cd3f7dbed35d0b4", + "margin-top-088.xht": [ + "d5035326cee01ba412b784fe5f4e016b2adee804", [ null, [ [ - "/css/CSS2/generated-content/content-100-ref.html", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "content-103.xht": [ - "352c7aabb3fe4f2ed8d0c4dd11b3ce2c93ed4f8f", + "margin-top-089.xht": [ + "88dac0fd535b1abe86c7d5d5aed31e0ce13a215a", [ null, [ [ - "/css/CSS2/generated-content/content-103-ref.html", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "content-105.xht": [ - "25eb7796f13915929b21f3974bb1aaa3622516c8", + "margin-top-090.xht": [ + "4b4bc7f66d2409acf7402c224ea285c9a7e33cda", [ null, [ [ - "/css/reference/only_pass_parens_semicolon.html", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "content-107.xht": [ - "f415ff338b0fe62b819ece383e121ab3317b4815", + "margin-top-091.xht": [ + "e70ee9df3a23ef2a8661cf14eade8acf2e800563", [ null, [ [ - "/css/reference/only_pass_parens_semicolon.html", + "/css/CSS2/margin-padding-clear/margin-top-031-ref.xht", "==" ] ], {} ] ], - "content-108.xht": [ - "1887a6d443647255752546daaf3a88a16325d4d5", + "margin-top-092.xht": [ + "089a670fb13267f71cacd97e1881164cab9c1358", [ null, [ [ - "/css/reference/only_pass_parens_semicolon.html", + "/css/CSS2/margin-padding-clear/margin-top-031-ref.xht", "==" ] ], {} ] ], - "content-109.xht": [ - "030d38d41d0579939836fb32f13720c0000fd2e6", + "margin-top-100.xht": [ + "fea619021ff634cd067175d99455d636741106ac", [ null, [ [ - "/css/reference/only_pass_parens_semicolon.html", + "/css/CSS2/margin-padding-clear/margin-bottom-100-ref.xht", "==" ] ], {} ] ], - "content-110.xht": [ - "cf2cc1b286efc1a6c7e199cae746500bc849130b", + "margin-top-101.xht": [ + "9995d0ef33b0e38341f08b8a1a5d9c6472cd065e", [ null, [ [ - "/css/reference/only_pass_parens_semicolon.html", + "/css/CSS2/margin-padding-clear/margin-bottom-100-ref.xht", "==" ] ], {} ] ], - "content-111.xht": [ - "e97431cdf53767a41db12f410320ee0eba9b363b", + "margin-top-102.xht": [ + "361b55ecb82495b34031acb9c03540ae7821899d", [ null, [ [ - "/css/reference/only_pass_parens_semicolon.html", + "/css/CSS2/margin-padding-clear/margin-bottom-100-ref.xht", "==" ] ], {} ] ], - "content-112.xht": [ - "f45e00a5a16a86546ee68c148e14bf8f28d51c25", + "margin-top-103.xht": [ + "fba5ffb0efc453653a3b671fb3fd442619a0353a", [ null, [ [ - "/css/reference/only_pass_parens_semicolon.html", + "/css/CSS2/margin-padding-clear/margin-top-103-ref.xht", "==" ] ], {} ] ], - "content-113.xht": [ - "559b7953d2302b23089870fa36e9dd9cadba8de8", + "margin-top-104.xht": [ + "82ccf89cede4ed162b9349d6f873ed0738f88d97", [ null, [ [ - "/css/CSS2/generated-content/content-113-ref.html", + "/css/CSS2/margin-padding-clear/margin-top-103-ref.xht", "==" ] ], {} ] ], - "content-114.xht": [ - "67babfc45f123ad128fae901dbb1a7b27b19d20e", + "margin-top-109.xht": [ + "3a0f50f8065e2ade339a9a3dbf9e2aa7bf4d78ab", [ null, [ [ - "/css/reference/only_pass_parens_semicolon.html", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "content-115.xht": [ - "4472f25dcc673bf8a1aa4f004fb5347e63354851", + "margin-top-110.xht": [ + "501d74f4c122d9c942309563bd58ad12434c1ba7", [ null, [ [ - "/css/reference/only_pass_parens_semicolon.html", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "content-116.xht": [ - "3eca048b9d17cb8e82485e19790e128e8bae0671", + "margin-top-111.xht": [ + "8d44f9a5686424634af41cf4107e68447e6c38ae", [ null, [ [ - "/css/reference/only_pass_parens_semicolon.html", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "content-117.xht": [ - "dc89bacc3ff97d0d1c7237950e0199abd528aed2", + "margin-top-112.xht": [ + "ee88f890d765442411be9f88cdcde7472b87f7e9", [ null, [ [ - "/css/reference/only_pass_parens_semicolon.html", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "content-118.xht": [ - "08fc22bb998ae245692143a7b25e405bd8c2f086", + "margin-top-113.xht": [ + "b91e57ef683aa467a8154432c54338f59617e0b8", [ null, [ [ - "/css/reference/only_pass_parens_semicolon.html", + "/css/CSS2/margin-padding-clear/margin-top-113-ref.xht", "==" ] ], {} ] ], - "content-119.xht": [ - "37f69d4a71a3baf339f04b7ad3e2f21b423ae23d", + "margin-top-applies-to-001.xht": [ + "a83e87712fed6b034bd2ac645070fea1932c4cee", [ null, [ [ - "/css/reference/only_pass_parens_semicolon.html", + "/css/CSS2/margin-padding-clear/margin-top-applies-to-001-ref.xht", "==" ] ], {} ] ], - "content-121.xht": [ - "f1f827f70fcbfb61a8554e0235b9fb54a8e975f0", + "margin-top-applies-to-002.xht": [ + "e2d5747bacb453043512e2b020c7a56c3b5168fd", [ null, [ [ - "/css/reference/only_pass_parens_semicolon.html", + "/css/CSS2/margin-padding-clear/margin-top-applies-to-001-ref.xht", "==" ] ], {} ] ], - "content-122.xht": [ - "a32ce892c378ed62797105d591611747303207ed", + "margin-top-applies-to-003.xht": [ + "d0036b58cc522b2ea539b4e3f30cddb0cd2fbbea", [ null, [ [ - "/css/CSS2/generated-content/content-113-ref.html", + "/css/CSS2/margin-padding-clear/margin-top-applies-to-001-ref.xht", "==" ] ], {} ] ], - "content-123.xht": [ - "85c5308c7e850434aeb604cc2dbc00ffe4995d5f", + "margin-top-applies-to-004.xht": [ + "c69c9599f2beb15647c7c002c3b28747fb7717c2", [ null, [ [ - "/css/CSS2/generated-content/content-047-ref.html", + "/css/CSS2/margin-padding-clear/margin-top-applies-to-001-ref.xht", "==" ] ], {} ] ], - "content-126.xht": [ - "c3f8697b8ab11d2480a7b39edeb27a3210943d95", + "margin-top-applies-to-005.xht": [ + "61ed474c4973ca455d26db4a946aaffc9bd9f47b", [ null, [ [ - "/css/CSS2/generated-content/content-126-ref.html", + "/css/CSS2/margin-padding-clear/margin-top-applies-to-001-ref.xht", "==" ] ], {} ] ], - "content-127.xht": [ - "7fa3429e87c03b58700d3d738a14f2ab4aaee24e", + "margin-top-applies-to-006.xht": [ + "2fd4cf33c4efe017f3ffc8ed5d08d69e80cea5b5", [ null, [ [ - "/css/CSS2/generated-content/content-126-ref.html", + "/css/CSS2/margin-padding-clear/margin-top-applies-to-001-ref.xht", "==" ] ], {} ] ], - "content-129.xht": [ - "0346521aa131236d3a5f64ab14127cef68219ebb", + "margin-top-applies-to-007.xht": [ + "4260e2dd632f6c8168e56a2ea0bb49fafe548bf6", [ null, [ [ - "/css/CSS2/generated-content/content-053-ref.html", + "/css/CSS2/margin-padding-clear/margin-top-applies-to-001-ref.xht", "==" ] ], {} ] ], - "content-131.xht": [ - "1e142a90bb6ff31da839081e638cfde12de8ce4b", + "margin-top-applies-to-008.xht": [ + "4724eb9798467a6b94e0e7dbe62b2572d261091c", [ null, [ [ - "/css/CSS2/generated-content/content-047-ref.html", + "/css/CSS2/margin-padding-clear/margin-bottom-applies-to-008-ref.xht", "==" ] ], {} ] ], - "content-132.xht": [ - "54636ed2bfdb21dd4617bf2f0c15cda0c89ba20f", + "margin-top-applies-to-009.xht": [ + "bcb95b60e5d4843795ff2fe7115d38817999a90b", [ null, [ [ - "/css/CSS2/generated-content/content-132-ref.html", + "/css/CSS2/margin-padding-clear/margin-bottom-applies-to-009-ref.xht", "==" ] ], {} ] ], - "content-135.xht": [ - "e62a4c209559b14758245aa2b7185cdbb6ebfc34", + "margin-top-applies-to-012.xht": [ + "4be5834d9f6f1ed42a68f752ba675560a69d559c", [ null, [ [ - "/css/CSS2/generated-content/content-135-ref.html", + "/css/CSS2/margin-padding-clear/margin-top-applies-to-012-ref.xht", "==" ] ], {} ] ], - "content-136.xht": [ - "419fad5bf6b55c5a12cd65caf1396c06c1ed83aa", + "margin-top-applies-to-013.xht": [ + "a6fb12b302c134ded46528c66271b8332ddfb67c", [ null, [ [ - "/css/CSS2/generated-content/content-136-ref.html", + "/css/CSS2/margin-padding-clear/margin-top-applies-to-013-ref.xht", "==" ] ], {} ] ], - "content-138.xht": [ - "8c3910211ed471ef6e5b9d8a9f3430028a0871f2", + "margin-top-applies-to-014.xht": [ + "9c575e9e5127a1c46fe856984a83e9bd463dba69", [ null, [ [ - "/css/CSS2/generated-content/content-003-ref.html", + "/css/CSS2/margin-padding-clear/margin-top-applies-to-013-ref.xht", "==" ] ], {} ] ], - "content-141.xht": [ - "52ec51bb5044f56c17fb752ba055f430444c788a", + "margin-top-applies-to-015.xht": [ + "6eb1d36db29f9323db17caef2801fce769b87d56", [ null, [ [ - "/css/CSS2/generated-content/content-141-ref.html", + "/css/CSS2/margin-padding-clear/margin-top-applies-to-013-ref.xht", "==" ] ], {} ] ], - "content-143.xht": [ - "922f8accb85584d4f800b083e4c33a0ee212a38c", + "padding-001.xht": [ + "b7ba7f75473d206313f6f4a0261441ecb840d38c", [ null, [ [ - "/css/CSS2/generated-content/content-143-ref.html", + "/css/CSS2/margin-padding-clear/margin-001-ref.xht", "==" ] ], {} ] ], - "content-144.xht": [ - "18c506922346744c4df9b62c5ceee5c422d9afd0", + "padding-002.xht": [ + "ddc1f00949ec1409fe91d792100e57b431ef9423", [ null, [ [ - "/css/CSS2/generated-content/content-144-ref.html", + "/css/CSS2/margin-padding-clear/margin-002-ref.xht", "==" ] ], {} ] ], - "content-145.xht": [ - "08027dd3daea031370e046639319f00932b2a603", + "padding-003.xht": [ + "62850039e73926c917a2b6e55f69f2c4250948b3", [ null, [ [ - "/css/CSS2/generated-content/content-091-ref.html", + "/css/CSS2/margin-padding-clear/margin-003-ref.xht", "==" ] ], {} ] ], - "content-146.xht": [ - "6dd3f73526d86af1bedd122065d18b3d150dbc72", + "padding-004.xht": [ + "ecc7575c84f99aa546bff1a46501de3117f86cd1", [ null, [ [ - "/css/CSS2/generated-content/content-003-ref.html", + "/css/CSS2/margin-padding-clear/padding-004-ref.xht", "==" ] ], {} ] ], - "content-147.xht": [ - "58e269b288227e4f87b63aa9bfd65f756ce55753", + "padding-005.xht": [ + "45adfaa11663bd6ac1c16c1a6c96820aff67255a", [ null, [ [ - "/css/CSS2/generated-content/content-147-ref.html", + "/css/CSS2/margin-padding-clear/padding-005-ref.xht", "==" ] ], {} ] ], - "content-149.xht": [ - "ab98d48e1c806cccd1e53f2fe3af37243e2fba0d", + "padding-006.xht": [ + "f112a493e848ec8b766790497af6dcf446e345ae", [ null, [ [ - "/css/CSS2/generated-content/content-149-ref.html", + "/css/CSS2/margin-padding-clear/padding-006-ref.xht", "==" ] ], {} ] ], - "content-150.xht": [ - "f8545a90d83e76147a04992de43543a2cb1bf646", + "padding-007.xht": [ + "eb05e281b2200484c1923ffe85243bfd0c0480be", [ null, [ [ - "/css/CSS2/generated-content/content-150-ref.html", + "/css/CSS2/margin-padding-clear/padding-007-ref.xht", "==" ] ], {} ] ], - "content-152.xht": [ - "5db11c602849a6ae1c80a50a849c8560487dad59", + "padding-008.xht": [ + "e569c8ae0ff368b3d0d99ff58c029214b698817e", [ null, [ [ - "/css/CSS2/generated-content/content-047-ref.html", + "/css/CSS2/margin-padding-clear/padding-008-ref.xht", "==" ] ], {} ] ], - "content-153.xht": [ - "36c0344763ae2c082a636ea03d9528ca567e493f", + "padding-009.xht": [ + "89fa5e02f8d17ac89086cf137cdb50538b8af3fa", [ null, [ [ - "/css/CSS2/generated-content/content-091-ref.html", + "/css/CSS2/margin-padding-clear/padding-009-ref.xht", "==" ] ], {} ] ], - "content-155.xht": [ - "d7ab8392e0fe5d622e5aa261cb50ac6f513ea646", + "padding-applies-to-001.xht": [ + "91560d412441d2d74404aa89c00df12b6d6f48f5", [ null, [ [ - "/css/CSS2/generated-content/content-155-ref.html", + "/css/CSS2/margin-padding-clear/margin-applies-to-001-ref.xht", "==" ] ], {} ] ], - "content-156.xht": [ - "26ff550a7a4a08fe5c5a0c2d680ec8310838d579", + "padding-applies-to-002.xht": [ + "cc67c4c0627763646d542669247515744e7912e3", [ null, [ [ - "/css/CSS2/generated-content/content-156-ref.html", + "/css/CSS2/margin-padding-clear/margin-applies-to-001-ref.xht", "==" ] ], {} ] ], - "content-157.xht": [ - "4ee73ab9db765ff2ea03678e999415c46ff5c450", + "padding-applies-to-003.xht": [ + "2e12fdfdf9d94397859b904192e62583213f3120", [ null, [ [ - "/css/CSS2/generated-content/content-156-ref.html", + "/css/CSS2/margin-padding-clear/margin-applies-to-001-ref.xht", "==" ] ], {} ] ], - "content-158.xht": [ - "1b4b21a38d5c9828048fa14078f25465ca811f58", + "padding-applies-to-004.xht": [ + "1caa714c8200c1b1d05d79493aef11a159c3ee4c", [ null, [ [ - "/css/CSS2/generated-content/content-158-ref.html", + "/css/CSS2/margin-padding-clear/margin-applies-to-001-ref.xht", "==" ] ], {} ] ], - "content-159.xht": [ - "8a86f7aabf8a894e255dd6ee2249caeceb0ad892", + "padding-applies-to-005.xht": [ + "2feb87d66211aaa4747d2355937e299a4c1c79d9", [ null, [ [ - "/css/CSS2/generated-content/content-159-ref.html", + "/css/CSS2/margin-padding-clear/margin-applies-to-001-ref.xht", "==" ] ], {} ] ], - "content-171.xht": [ - "05eba6a2b9a935a6a6de426ef13eab7ea1f8d164", + "padding-applies-to-006.xht": [ + "f85c3a30792844aaadd9f3c2176ca6322d0d6741", [ null, [ [ - "/css/CSS2/generated-content/content-171-ref.xht", + "/css/CSS2/margin-padding-clear/margin-applies-to-001-ref.xht", "==" ] ], {} ] ], - "content-172.xht": [ - "c1fb7bf21b10c5b9fba8b8aea99753127a624153", + "padding-applies-to-007.xht": [ + "9f57bf51582584c10027be7524512a80ab0e7363", [ null, [ [ - "/css/CSS2/generated-content/content-172-ref.xht", + "/css/CSS2/margin-padding-clear/margin-applies-to-009-ref.xht", "==" ] ], {} ] ], - "content-173.xht": [ - "5a39c8a6e11940bdc6cd18502756e9bc0cd611ed", + "padding-applies-to-009.xht": [ + "ce5e24e8abb5fa5ba1ffe3fae44271c5580b391f", [ null, [ [ - "/css/CSS2/generated-content/content-173-ref.xht", + "/css/CSS2/margin-padding-clear/margin-applies-to-009-ref.xht", "==" ] ], {} ] ], - "content-174.xht": [ - "8aff716e4cca12ca02f6e94752cd6f8f1fc7dd36", + "padding-applies-to-012.xht": [ + "a35ea41fc19a20675bcad7e7759b8e3c2ca49650", [ null, [ [ - "/css/CSS2/generated-content/content-174-ref.xht", + "/css/CSS2/margin-padding-clear/margin-applies-to-009-ref.xht", "==" ] ], {} ] ], - "content-175.xht": [ - "84e2b96d0e1ed428ccbc7cd2a07aadba205bde27", + "padding-applies-to-013.xht": [ + "212357e362ddd81addb6eb65125e5f89e3b9e79c", [ null, [ [ - "/css/CSS2/generated-content/content-175-ref.xht", + "/css/CSS2/margin-padding-clear/margin-applies-to-009-ref.xht", "==" ] ], {} ] ], - "content-177.xht": [ - "66116d844df949251b9dcf2caff5fbb06d8b6405", + "padding-applies-to-014.xht": [ + "a6d84c620c667373fc2c539db1f2338239f9381c", [ null, [ [ - "/css/CSS2/generated-content/content-177-ref.xht", + "/css/CSS2/margin-padding-clear/margin-applies-to-009-ref.xht", "==" ] ], {} ] ], - "content-attr-001.xht": [ - "b40b5ba00b5dc06a03b4a6d4eae6a2da39765078", + "padding-applies-to-015.xht": [ + "003afe85ca990d7840e5e239d5565f51275d629f", [ null, [ [ - "/css/CSS2/reference/ref-nothing-below.xht", + "/css/CSS2/margin-padding-clear/margin-applies-to-009-ref.xht", "==" ] ], {} ] ], - "content-attr-case-001.html": [ - "2ba49f95584e1c7904fc077bd12e0e044182f2a4", + "padding-applies-to-016.xht": [ + "7f48da037910148fa3a4a72a6e288292ffdff881", [ null, [ [ - "/css/reference/pass_if_pass_below.html", + "/css/CSS2/floats-clear/floats-125-ref.xht", "==" ] ], {} ] ], - "content-attr-case-002.xht": [ - "d3126bafcdaf2493a8e20bab762ba17aea7c8899", + "padding-applies-to-017.xht": [ + "03740e4ed943a3d12b6a7e8c657dda917541e764", [ null, [ [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", + "/css/CSS2/floats-clear/floats-124-ref.xht", "==" ] ], {} ] ], - "content-auto-reset-001.xht": [ - "1eec9768b5f3cd4fd85d009bc88d09628ceeee94", + "padding-background-001.xht": [ + "5397238d76da140682edfc0245c1b2e4474c21ce", [ null, [ [ - "/css/CSS2/generated-content/content-auto-reset-001-ref.html", + "/css/CSS2/margin-padding-clear/padding-background-001-ref.xht", "==" ] ], {} ] ], - "content-counter-000.xht": [ - "328ba64164bc44678f227954914f2ff7e64d1f4b", + "padding-bottom-001.xht": [ + "acf32d0de8290a8b4c07ab60dec0d6f20164e7a7", [ null, [ [ - "/css/CSS2/generated-content/content-counter-000-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "content-counter-001.xht": [ - "8f06e686e124b56fd2b471f72ab0617049d83c39", + "padding-bottom-002.xht": [ + "ef6e61af5f2a9530d41f2e31d84f05ef685fd620", [ null, [ [ - "about:blank", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "content-counter-002.xht": [ - "c5d12346265000ed44a6312832b0184582a171e6", + "padding-bottom-003.xht": [ + "fce14632ae66aec531cab9142f484f830d80ffa4", [ null, [ [ - "/css/CSS2/generated-content/content-counter-002-ref.xht", + "/css/CSS2/margin-padding-clear/margin-top-007-ref.xht", "==" ] ], {} ] ], - "content-counter-003.xht": [ - "eb0f616c4b3e4cdc293f41c81d74dc4aad85e2a2", + "padding-bottom-004.xht": [ + "095779732bbf27f3a77bf9353e5742e842e11341", [ null, [ [ - "/css/CSS2/generated-content/content-counter-003-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "content-counter-004.xht": [ - "cda1a5481124058dd5a85b45767cc9b9c624d772", + "padding-bottom-005.xht": [ + "3c4a612a1971848e05f03e9939a44580deb3f558", [ - "css/CSS2/generated-content/content-counter-004.xht", + null, [ [ - "/css/CSS2/generated-content/content-counter-004-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "content-counter-005.xht": [ - "bcbbca1c063f8f97921c256b4b196137590e7c0f", + "padding-bottom-006.xht": [ + "a98d8798ef766b89a4a1ddc624c029bd2cdbaff5", [ null, [ [ - "/css/CSS2/generated-content/content-counter-000-ref.xht", + "/css/CSS2/margin-padding-clear/margin-top-007-ref.xht", "==" ] ], {} ] ], - "content-counter-006.xht": [ - "be9110391058264d7aeec368871d69e8bc12125c", + "padding-bottom-007.xht": [ + "9aa75073ca2b14f8300086595fbcddc44da85fdc", [ null, [ [ - "/css/CSS2/generated-content/content-counter-006-ref.xht", + "/css/CSS2/margin-padding-clear/margin-top-007-ref.xht", "==" ] ], {} ] ], - "content-counter-007.xht": [ - "198f1f4e1cb14d23f89b2a12d155b73e92c2dd58", + "padding-bottom-012.xht": [ + "958ca6b5f3d4db9935a14e227d929f0fe271b588", [ null, [ [ - "/css/CSS2/generated-content/content-counter-007-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "content-counter-008.xht": [ - "647978e9cd3c3ffbcaf50485fa76d5b9fe4727c6", + "padding-bottom-013.xht": [ + "5520e5d9f3d76ea3470ec587942ecc34cbc4f6a2", [ null, [ [ - "/css/CSS2/generated-content/content-counter-008-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "content-counter-009.xht": [ - "f5ac6c23094f56b0e32a9716551aba916268f3e2", + "padding-bottom-014.xht": [ + "be8ad86a733f7f5368bb8291e92820955a402b79", [ null, [ [ - "/css/CSS2/generated-content/content-counter-009-ref.xht", + "/css/CSS2/margin-padding-clear/margin-top-043-ref.xht", "==" ] ], {} ] ], - "content-counter-010.xht": [ - "05c1112f16d5cf84556878a8c0be5ebc100a15ce", + "padding-bottom-015.xht": [ + "2b4c74c84308abd19de809fef5c0917ef374ef95", [ null, [ [ - "/css/CSS2/generated-content/content-counter-010-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "content-counter-011.xht": [ - "a103f713b97ffb6f33f0ff07cb0e8c3feee972c9", + "padding-bottom-016.xht": [ + "b53af3774cd10dbf0d38bd219659fc0af396b572", [ null, [ [ - "/css/CSS2/generated-content/content-counter-011-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "content-counter-012.xht": [ - "a65cf768770f2833817e0b91240deb69826cc625", + "padding-bottom-017.xht": [ + "9738660639624f388a8b7669bedcae0876eeb9d9", [ null, [ [ - "/css/CSS2/generated-content/content-counter-011-ref.xht", + "/css/CSS2/margin-padding-clear/margin-top-019-ref.xht", "==" ] ], {} ] ], - "content-counter-013.xht": [ - "4db0b345b5100a31252d7c70cbe6cba66d356483", + "padding-bottom-018.xht": [ + "1edbff3f5de6e316945907663c5d180ffba17bf2", [ null, [ [ - "/css/CSS2/generated-content/content-counter-013-ref.xht", + "/css/CSS2/margin-padding-clear/margin-top-019-ref.xht", "==" ] ], {} ] ], - "content-counter-014.xht": [ - "86bed139450706d5522e9fe45b107f998145eebd", + "padding-bottom-023.xht": [ + "6d34f4ba3f8176b3ec69711cdfe0c9b10e021af4", [ null, [ [ - "/css/CSS2/generated-content/content-counter-013-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "content-counter-015.xht": [ - "442e4ef636176781216caa7e2ec0ea0bb499e0a5", + "padding-bottom-024.xht": [ + "d599bdc36b8867d2c5ba96933a9e97c81b6e42f5", [ null, [ [ - "/css/CSS2/generated-content/content-counter-015-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "content-counter-016.xht": [ - "1449aa92cb1619180934cb784a49bbbf29eb7515", + "padding-bottom-025.xht": [ + "c72582e38bdd8a7743ed514c17bdb202576480a3", [ null, [ [ - "/css/CSS2/generated-content/content-counter-000-ref.xht", + "/css/CSS2/margin-padding-clear/margin-top-031-ref.xht", "==" ] ], {} ] ], - "content-inherit-002.xht": [ - "1080ab19c49ab553d0608dbc4063effff467045f", + "padding-bottom-026.xht": [ + "181394b6da73a6b4237eb73f249da14b46b4fb7e", [ null, [ [ - "/css/CSS2/generated-content/content-inherit-002-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "content-newline-001.xht": [ - "0aab447de7231fde6f81a1a4e7f39672b7987e8d", + "padding-bottom-027.xht": [ + "241253297761a5b95bc6450507d91c44b4f2d378", [ null, [ [ - "/css/CSS2/generated-content/content-newline-001-ref.html", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "content-white-space-001.xht": [ - "d1236c47bcc29943e37018a22651882f2bd8acdd", + "padding-bottom-028.xht": [ + "bbad8fc84498bcd6bd1e2fc0357c73f2fcca1671", [ null, [ [ - "/css/CSS2/generated-content/content-white-space-001-ref.html", + "/css/CSS2/margin-padding-clear/margin-top-031-ref.xht", "==" ] ], {} ] ], - "content-white-space-002.xht": [ - "f485c0bef2e4ebe483a20505a8a71a6857e1c140", + "padding-bottom-029.xht": [ + "677da2e7ce229a178c125c55563ce974a9ebe1f4", [ null, [ [ - "/css/CSS2/generated-content/content-white-space-002-ref.html", + "/css/CSS2/margin-padding-clear/margin-top-031-ref.xht", "==" ] ], {} ] ], - "content-white-space-003.xht": [ - "897aef3e616b2054317ae86f2f82226433da8aa2", + "padding-bottom-034.xht": [ + "abd80c753eec0f0d24165f2cbdba6c30e9a0e96f", [ null, [ [ - "/css/CSS2/generated-content/content-white-space-003-ref.html", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "content-white-space-004.xht": [ - "57eb58df43f80317e46cc1dfeb4bd3eea3ec10ab", + "padding-bottom-035.xht": [ + "cf72bf7364a57f810c83b3310e10ca7319fd2034", [ null, [ [ - "/css/CSS2/generated-content/content-white-space-004-ref.html", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "counters-hidden-000.xht": [ - "a3c62481f6b69907e229377deb05736f1381daa8", + "padding-bottom-037.xht": [ + "a789195c6e2a48aeb1ebe61005fe2d700297ae11", [ null, [ [ - "/css/CSS2/generated-content/counters-hidden-000-ref.html", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "counters-hidden-001.xht": [ - "b872609331360b45ee04efea6dfe6779eb79b854", + "padding-bottom-038.xht": [ + "5cd9a16669982c50ca23b88ef513f77ca0605e8a", [ null, [ [ - "/css/CSS2/generated-content/counters-hidden-000-ref.html", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "counters-hidden-002.xht": [ - "3253f3e7d99832e00f5b04f28e45eca1d80acf47", + "padding-bottom-039.xht": [ + "98b0af5f328969403f19fb775fc30c088ba5fc09", [ null, [ [ - "/css/CSS2/generated-content/counters-hidden-002-ref.html", + "/css/CSS2/margin-padding-clear/margin-top-043-ref.xht", "==" ] ], {} ] ], - "counters-multi-000.xht": [ - "1c9bab5a7dbba56500bb96e7e3ae9b4a163a8fa8", + "padding-bottom-040.xht": [ + "1e857f6ee46f0e824d98b376099d11cf3e4c68b6", [ null, [ [ - "/css/CSS2/generated-content/counters-multi-000-ref.html", + "/css/CSS2/margin-padding-clear/margin-top-043-ref.xht", "==" ] ], {} ] ], - "counters-multi-001.xht": [ - "a67d6ce14c753c747e40dbc40e62f59ac3cffb55", + "padding-bottom-045.xht": [ + "eced25f9f469388887bd64675a03f6ee00d1bf49", [ null, [ [ - "/css/CSS2/generated-content/counters-multi-000-ref.html", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "counters-order-000.xht": [ - "7fd5bb6b99ffdf3d2ace54d6a70e1379f8a6b230", + "padding-bottom-046.xht": [ + "9beff81862ed234ff4d210aaba5091d14da4f7b0", [ null, [ [ - "/css/CSS2/generated-content/counters-order-000-ref.html", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "counters-root-000.xht": [ - "d588241d5284567b025fa0e58462f8f74f6e6e0a", + "padding-bottom-048.xht": [ + "a78ec26daa9e07f0a44273b30fd0ad29260e42cf", [ null, [ [ - "/css/CSS2/generated-content/counters-root-000-ref.html", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "multiple-content-values-001.xht": [ - "09da15a31531b5b4e30a5ff9f024c6d8c85e437a", + "padding-bottom-049.xht": [ + "419cc1ff56fd5a6a32e07798bba7eeebeb5e9385", [ null, [ [ - "/css/reference/pass_if_pass_below.html", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "other-attribute-001.xht": [ - "4aa2d1b7ac6f12fff7030122ce1d8e278d160ac9", + "padding-bottom-050.xht": [ + "e96ed0551eb8367860c6a9c21d8c66fba240d96a", [ null, [ [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", + "/css/CSS2/margin-padding-clear/margin-top-043-ref.xht", "==" ] ], {} ] ], - "quotes-035.xht": [ - "eb0bf2156397c3b6cd5fc2d744eec2dfe3a58886", + "padding-bottom-051.xht": [ + "832452499231e52197b3dfcbcd1efde5bc414a75", [ null, [ [ - "/css/CSS2/generated-content/quotes-035-ref.xht", + "/css/CSS2/margin-padding-clear/margin-top-043-ref.xht", "==" ] ], {} ] ], - "quotes-035a.xht": [ - "fc87f5e0d71327e5abe195b461bc4dd2a63475e9", + "padding-bottom-056.xht": [ + "6610354be39f9eafddc47b54073a19450f53485e", [ null, [ [ - "/css/CSS2/generated-content/quotes-035-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "quotes-036.xht": [ - "f853ca2c69ea860fee6056e370dd7002fda61efe", + "padding-bottom-057.xht": [ + "5103f296b8cb77fd434714fc553d878a48d525d8", [ null, [ [ - "/css/CSS2/generated-content/quotes-035-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "quotes-applies-to-001.xht": [ - "ac2ea1a1bdb63d78da0c1fd3d58d43e7d60ba2cd", + "padding-bottom-058.xht": [ + "68e33571fc394ab84c60435c84bbba6c9f465cfb", [ null, [ [ - "/css/reference/pass_if_pass_below.html", + "/css/CSS2/margin-padding-clear/margin-top-043-ref.xht", "==" ] ], {} ] ], - "quotes-applies-to-002.xht": [ - "24cf5ecedd52809c04778c340f000567c8924aea", + "padding-bottom-059.xht": [ + "516a6ed79b67ef897cfa1e52f016b9043bd9b003", [ null, [ [ - "/css/reference/pass_if_pass_below.html", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "quotes-applies-to-003.xht": [ - "6da6c51053b4f1f5f5763e91a0d78d910b20c2d1", + "padding-bottom-060.xht": [ + "450a54daaf17019380e0956e752cd3bbe8e12f81", [ null, [ [ - "/css/reference/pass_if_pass_below.html", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "quotes-applies-to-004.xht": [ - "684910744ce370086bf38e7394e50ee711bb8016", + "padding-bottom-061.xht": [ + "9174440386411004abfe6d5433f2b2948ebccf52", [ null, [ [ - "/css/reference/pass_if_pass_below.html", + "/css/CSS2/margin-padding-clear/margin-top-043-ref.xht", "==" ] ], {} ] ], - "quotes-applies-to-007.xht": [ - "8591ed2f016a2a83e398654a7ee17db31e3c28c9", + "padding-bottom-062.xht": [ + "3d9cf3438fc3a40087b386314221820dce27f642", [ null, [ [ - "/css/reference/pass_if_pass_below.html", + "/css/CSS2/margin-padding-clear/margin-top-043-ref.xht", "==" ] ], {} ] ], - "quotes-applies-to-008.xht": [ - "3cad22af66700a4ddba41eea4381b9da9005ddce", + "padding-bottom-067.xht": [ + "49c2d41c6d3d8c0ee3c49e367c960aa5031b0d6e", [ null, [ [ - "/css/reference/pass_if_pass_below.html", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "quotes-applies-to-009.xht": [ - "f881d20e91357f1edb80f46d3b6af04fd6dc78de", + "padding-bottom-068.xht": [ + "776bc25807c5ff6aa44f99d65256f16d33e43139", [ null, [ [ - "/css/reference/pass_if_pass_below.html", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "quotes-applies-to-012.xht": [ - "beafc642670e38edc42176d8c5358495837700c9", + "padding-bottom-069.xht": [ + "7df3130ee992261127190db06109ab03a6fba2df", [ null, [ [ - "/css/reference/pass_if_pass_below.html", + "/css/CSS2/margin-padding-clear/margin-top-079-ref.xht", "==" ] ], {} ] ], - "quotes-applies-to-013.xht": [ - "9ff27c83a311d65c81a867f3f491bea205a52075", + "padding-bottom-070.xht": [ + "70955d4c17725f7c55cb0fe83e353557981b10fe", [ null, [ [ - "/css/reference/pass_if_pass_below.html", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "quotes-applies-to-014.xht": [ - "75f19776d16efe79f876c020cf49efc58cf0ab6e", + "padding-bottom-071.xht": [ + "9dc787f7fb08fe57eca87e068beae6b4e34b4d9b", [ null, [ [ - "/css/reference/pass_if_pass_below.html", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "quotes-applies-to-015.xht": [ - "a0b50797621f2a86c7017aa970d4656d20f01df3", + "padding-bottom-072.xht": [ + "a572f6c6635d20abef7396a9c661227f41e42e37", [ null, [ [ - "/css/reference/pass_if_pass_below.html", + "/css/CSS2/margin-padding-clear/margin-top-079-ref.xht", "==" ] ], {} ] - ] - }, - "inline-svg-100-percent-in-body.html": [ - "22275eaeda4817a967e5f196ba8bb9a5b00859fa", - [ - null, - [ - [ - "/css/CSS2/reference/inline-svg-100-percent-in-body-ref.html", - "==" - ] - ], - {} - ] - ], - "inline-svg-intrinsic-size-100-percent-1.html": [ - "e2ac4ce1b3f06a5f52f6f2cfe278d1f88e98e8d5", - [ - null, - [ - [ - "/css/CSS2/reference/60x60-green.html", - "==" - ] - ], - {} - ] - ], - "inline-svg-intrinsic-size-100-percent-2.html": [ - "f635d3cd53a41028a468fa465b6847b89d03cddf", - [ - null, - [ - [ - "/css/CSS2/reference/60x60-green.html", - "==" - ] - ], - {} - ] - ], - "inline-svg-margin-padding-border.html": [ - "4a3318f1cdc7c7cf3edb8bcab8cfdaef655bf765", - [ - null, - [ - [ - "/css/CSS2/reference/inline-svg-margin-padding-border-ref.html", - "==" - ] - ], - {} - ] - ], - "linebox": { - "anonymous-inline-inherit-001.html": [ - "77904d80e459037e029467479db2c101f0d383b8", + ], + "padding-bottom-073.xht": [ + "e2ea82a38b5312514ba24a427409cc7e42d8b519", [ null, [ [ - "/css/CSS2/linebox/anonymous-inline-inherit-001-ref.html", + "/css/CSS2/margin-padding-clear/margin-top-079-ref.xht", "==" ] ], {} ] ], - "baseline-block-with-overflow-001.html": [ - "b0ca8835349b81ae26e3cbbda09ef57a2a370922", + "padding-bottom-078.xht": [ + "5df63cf88594241f2208d94c9537a167e81f52f5", [ null, [ [ - "/css/CSS2/linebox/baseline-block-with-overflow-001-ref.html", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "border-padding-bleed-001.xht": [ - "0f76472745a4e20b165f596a9dcba900724e72ad", + "padding-bottom-079.xht": [ + "8cde7fc7c258decc39be701c2983de3eec94fc3f", [ null, [ [ - "/css/CSS2/linebox/border-padding-bleed-001-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "border-padding-bleed-002.xht": [ - "7e3d64dd64d303a7ca3e6419c8d457f2e2ddccdd", + "padding-bottom-080.xht": [ + "63eed6d889409a4c2d6765e024412e9f003caf6c", [ null, [ [ - "/css/CSS2/linebox/border-padding-bleed-001-ref.xht", + "/css/CSS2/margin-padding-clear/margin-top-031-ref.xht", "==" ] ], {} ] ], - "border-padding-bleed-003.xht": [ - "74dd19b2d42ea3cdc89ce9992a8771f711a3e0a2", + "padding-bottom-081.xht": [ + "5d2d85f362a939b0e79f6602dfda1a94fe10206a", [ null, [ [ - "/css/CSS2/linebox/border-padding-bleed-001-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "empty-inline-001.xht": [ - "514cea7ed61455bf6453fd217f026cc2f97e90c6", + "padding-bottom-082.xht": [ + "da8ecbe0d10862a30d58bc7aeef435a51c422bb1", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "empty-inline-002.xht": [ - "3d2064c75a15ce54ee90022206024afd254c9d61", + "padding-bottom-083.xht": [ + "4bc75f179c3d786f39d0e952d1bf8b624e4b1fe1", [ null, [ [ - "/css/CSS2/linebox/empty-inline-002-ref.xht", + "/css/CSS2/margin-padding-clear/margin-top-031-ref.xht", "==" ] ], {} ] ], - "empty-inline-003.xht": [ - "2af8bf805f828d52073177838baa73db19438008", + "padding-bottom-084.xht": [ + "b9de3ae641d3d8f580c62e77287cad6bcf952bf8", [ null, [ [ - "/css/CSS2/linebox/empty-inline-003-ref.xht", + "/css/CSS2/margin-padding-clear/margin-top-031-ref.xht", "==" ] ], {} ] ], - "fractional-line-height.html": [ - "0b748072b7edfbf57312a002b6961afdc72ee957", + "padding-bottom-089.xht": [ + "3bce6e17a9c28c20887cce1684297b8c287fb00d", [ null, [ [ - "/css/reference/nothing.html", + "/css/CSS2/margin-padding-clear/margin-bottom-100-ref.xht", "==" ] ], {} ] ], - "iframe-in-block-in-inline.html": [ - "affbd303add40b6d86303a1d1bd4e70a70013345", + "padding-bottom-090.xht": [ + "71bae181abe42d18689ec4a6ed38755d7851536a", [ null, [ [ - "/css/CSS2/linebox/iframe-in-block-in-inline-ref.html", + "/css/CSS2/margin-padding-clear/margin-bottom-100-ref.xht", "==" ] ], {} ] ], - "iframe-in-wrapped-span.html": [ - "b2435a6e3010c94ab6d5fa4e1dd311a8fd27a24d", + "padding-bottom-091.xht": [ + "037155bca557ee3a01da37658f1a56c97d8c48e5", [ null, [ [ - "/css/CSS2/linebox/iframe-in-wrapped-span-ref.html", + "/css/CSS2/margin-padding-clear/padding-bottom-091-ref.xht", "==" ] ], {} ] ], - "inline-box-001.xht": [ - "41a372a7fcd1d48f49dfd3edffaad5b66bb1db6d", + "padding-bottom-092.xht": [ + "2c167100303a6ec07486e1176ea67af0a751db0a", [ null, [ [ - "/css/CSS2/linebox/inline-box-001-ref.xht", + "/css/CSS2/margin-padding-clear/margin-bottom-100-ref.xht", "==" ] ], {} ] ], - "inline-box-002.xht": [ - "5de05aa519147e4183bec9a9b062ea801bef930b", + "padding-bottom-093.xht": [ + "b20f2e786725bcce991f0733d8c3c49f09b0016c", [ null, [ [ - "/css/CSS2/linebox/inline-box-002-ref.xht", + "/css/CSS2/margin-padding-clear/margin-bottom-100-ref.xht", "==" ] ], {} ] ], - "inline-formatting-context-001.xht": [ - "ca4de2083cbcc6fe13eaf30edda7ca88bcf82dfa", + "padding-bottom-094.xht": [ + "a1159abafa919ae0ad6249fe79055f8910457a58", [ null, [ [ - "/css/CSS2/linebox/inline-formatting-context-001-ref.xht", + "/css/CSS2/margin-padding-clear/margin-top-103-ref.xht", "==" ] ], {} ] ], - "inline-formatting-context-002.xht": [ - "27f6fe25882f5d04a418e1911c3d7645236a0a81", + "padding-bottom-095.xht": [ + "459a25e2c652f55ef4f2a07f6293781fd5a40210", [ null, [ [ - "/css/CSS2/linebox/inline-formatting-context-002-ref.xht", + "/css/CSS2/margin-padding-clear/margin-top-103-ref.xht", "==" ] ], {} ] ], - "inline-formatting-context-003.xht": [ - "827349d8e6b08b2dc383a5ad546e09a9bbbadb12", + "padding-bottom-100.xht": [ + "8664959de21022b2f5d86611f627af62152eee23", [ null, [ [ - "/css/CSS2/linebox/inline-formatting-context-003-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "inline-formatting-context-004.xht": [ - "ddd51a8dfee3960ab97a4b78b76b6d95ec781646", + "padding-bottom-101.xht": [ + "4b1ac64eb160cd0a6bde93b6e31f26099dbcf69a", [ null, [ [ - "/css/CSS2/linebox/inline-formatting-context-002-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "inline-formatting-context-005.xht": [ - "83c7b1b793400b5b97e3310d14b4d37e515e0397", + "padding-bottom-102.xht": [ + "2f262d96fb4564de864f540a50d36853bc5a3a8e", [ null, [ [ - "/css/CSS2/linebox/inline-formatting-context-003-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "inline-formatting-context-006.xht": [ - "9b923833d3f2c7507418efbe01600183896184ea", + "padding-bottom-103.xht": [ + "1419229589272e63408017695e80132ccc44bae2", [ null, [ [ - "/css/CSS2/linebox/inline-formatting-context-002-ref.xht", + "/css/CSS2/margin-padding-clear/padding-bottom-103-ref.xht", "==" ] ], {} ] ], - "inline-formatting-context-007.xht": [ - "0eae0b50b07cd3768b36a760302a2433fd79fb68", + "padding-bottom-applies-to-001.xht": [ + "b47297ae49c1943d81a0b681d86902f8632ab539", [ null, [ [ - "/css/CSS2/linebox/inline-formatting-context-003-ref.xht", + "/css/CSS2/margin-padding-clear/padding-bottom-applies-to-001-ref.xht", "==" ] ], {} ] ], - "inline-formatting-context-008.xht": [ - "e2d3d7ba492a12fc72684c46357799d52d4670e9", + "padding-bottom-applies-to-002.xht": [ + "555cd7b8040bf8679ceaf88490b0d1397aee1967", [ null, [ [ - "/css/CSS2/linebox/inline-formatting-context-008-ref.xht", + "/css/CSS2/margin-padding-clear/padding-bottom-applies-to-001-ref.xht", "==" ] ], {} ] ], - "inline-formatting-context-009.xht": [ - "562d060644a294e975a6d5e6827214bc6737ad53", + "padding-bottom-applies-to-003.xht": [ + "f5f07ddd301c67c0b4d8b4bfbefabca3ac664763", [ null, [ [ - "/css/CSS2/linebox/inline-formatting-context-009-ref.xht", + "/css/CSS2/margin-padding-clear/padding-bottom-applies-to-001-ref.xht", "==" ] ], {} ] ], - "inline-formatting-context-011.xht": [ - "59bcc11a6652fa21092e33800bf4cae13684847e", + "padding-bottom-applies-to-004.xht": [ + "58fae89ea01ac3370bb9ecd8d7c6e7075c928bb0", [ null, [ [ - "/css/CSS2/linebox/inline-formatting-context-011-ref.xht", + "/css/CSS2/margin-padding-clear/padding-bottom-applies-to-001-ref.xht", "==" ] ], {} ] ], - "inline-formatting-context-012.xht": [ - "2e87918967a10b044726129526c6daa04c46386a", + "padding-bottom-applies-to-005.xht": [ + "53e35b9753d29d1d9dd2c689d670f3a159cf3140", [ null, [ [ - "/css/CSS2/generated-content/after-content-display-002-ref.xht", + "/css/CSS2/margin-padding-clear/padding-bottom-applies-to-001-ref.xht", "==" ] ], {} ] ], - "inline-formatting-context-013.xht": [ - "3bd974c079ff929532e0f9a2e951e4943a878df8", + "padding-bottom-applies-to-006.xht": [ + "dbbd39b088b4197f542993f7904ebf161bdb4913", [ null, [ [ - "/css/CSS2/linebox/inline-formatting-context-013-ref.xht", + "/css/CSS2/margin-padding-clear/padding-bottom-applies-to-001-ref.xht", "==" ] ], {} ] ], - "inline-formatting-context-015.xht": [ - "15aac62807162818439f65cfe0541c235e210870", + "padding-bottom-applies-to-007.xht": [ + "ab79f2b7d7eb5381e0d5391babb3aea114844908", [ null, [ [ - "/css/CSS2/linebox/inline-formatting-context-015-ref.xht", + "/css/CSS2/margin-padding-clear/padding-bottom-applies-to-007-ref.xht", "==" ] ], {} ] ], - "inline-formatting-context-022.xht": [ - "da6b35126acdcef676cd462957a7059abff9a04b", + "padding-bottom-applies-to-009.xht": [ + "ecfd1c075ecafbb474080aeb6e53cd29b8c6d497", [ null, [ [ - "/css/CSS2/linebox/inline-formatting-context-022-ref.xht", + "/css/CSS2/margin-padding-clear/padding-bottom-applies-to-007-ref.xht", "==" ] ], {} ] ], - "inline-formatting-context-023.xht": [ - "49f8f5416972132afbf841d2f050b232cae49544", + "padding-bottom-applies-to-012.xht": [ + "11f8d90cd43b04126b3f8efae753ce33f36e4431", [ null, [ [ - "/css/CSS2/linebox/inline-formatting-context-023-ref.xht", + "/css/CSS2/margin-padding-clear/padding-bottom-applies-to-007-ref.xht", "==" ] ], {} ] ], - "leading-001.xht": [ - "060ca310c4f0d07c89d3ccc9710aabfd0b9e79de", + "padding-bottom-applies-to-013.xht": [ + "3399e948519b7db8bf089f2f0f3dffa03c3b18b4", [ null, [ [ - "/css/CSS2/linebox/leading-001-ref.xht", + "/css/CSS2/margin-padding-clear/padding-bottom-applies-to-007-ref.xht", "==" ] ], {} ] ], - "line-box-height-002.xht": [ - "9c23382644a2c2df557d080034874eec9d50ed80", + "padding-bottom-applies-to-014.xht": [ + "a43122ce9616716d533735ff3bac418c3a2543a6", [ null, [ [ - "/css/CSS2/linebox/line-box-height-002-ref.xht", + "/css/CSS2/margin-padding-clear/padding-bottom-applies-to-007-ref.xht", "==" ] ], {} ] ], - "line-breaking-font-size-zero-001.html": [ - "6378af39fa1758b8114d2b608cedfd62d84dd275", + "padding-bottom-applies-to-015.xht": [ + "d656b6f88543e6f49364df86b8e6ddbec7394ccd", [ null, [ [ - "/css/CSS2/linebox/line-breaking-font-size-zero-001-ref.html", + "/css/CSS2/margin-padding-clear/padding-bottom-applies-to-007-ref.xht", "==" ] ], {} ] ], - "line-height-002.xht": [ - "c2d79e96216848f39a217081536359ed1eca0c18", + "padding-em-inherit-001.xht": [ + "9fb9c15a02cb7e970aa677f1638447880a8cbf96", [ null, [ [ - "/css/CSS2/linebox/line-height-002-ref.xht", + "/css/CSS2/margin-padding-clear/padding-em-inherit-001-ref.xht", "==" ] ], {} ] ], - "line-height-004.xht": [ - "54073f03a63e1b5ff2131e439169b9b09e10462d", + "padding-left-001.xht": [ + "c58a7431b29020bd20da9af31c57164852f3e3f1", [ null, [ [ - "/css/CSS2/linebox/line-height-002-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "line-height-005.xht": [ - "771b73e089dafd20b266d9e458e738e567825e92", + "padding-left-002.xht": [ + "ba735031c4fbcdc2b522ccc67018fd0cf45517a6", [ null, [ [ - "/css/CSS2/linebox/line-height-002-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "line-height-006.xht": [ - "23f97548d701fd85c19d204edb71c66515d74bea", + "padding-left-003.xht": [ + "eff5e33a471f9eda0abbf3aa97816372ef67d332", [ null, [ [ - "/css/CSS2/linebox/line-height-006-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-007-ref.xht", "==" ] ], {} ] ], - "line-height-007.xht": [ - "230959c92cf38876ffeb6c831dc61d00f0ca28f0", + "padding-left-004.xht": [ + "129a10ae85076b2b5db87618097b9fde6a42a390", [ null, [ [ - "/css/CSS2/linebox/line-height-006-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "line-height-013.xht": [ - "793ec3df6b45506a6fd244eee91b5a7f593d0c38", + "padding-left-005.xht": [ + "88172531d9a963f398168bc97cb9843616f39901", [ null, [ [ - "/css/CSS2/linebox/line-height-002-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "line-height-015.xht": [ - "06937a1c44b2aa40e84a502177e5adea666be9e4", + "padding-left-006.xht": [ + "a62189f3a91f3cf3de5035a1b870ee40b4e75470", [ null, [ [ - "/css/CSS2/linebox/line-height-002-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-007-ref.xht", "==" ] ], {} ] ], - "line-height-016.xht": [ - "e321d8137cf210c3a4ef48326db2a7b0434084ca", + "padding-left-007.xht": [ + "960e34de50e1df0b34bca30cf6ea5bbca01d6a4a", [ null, [ [ - "/css/CSS2/linebox/line-height-002-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-007-ref.xht", "==" ] ], {} ] ], - "line-height-017.xht": [ - "1da91497a72106be13ce646eedbe7f144dc578f4", + "padding-left-012.xht": [ + "4036e5903af32251513cc0a1a4d4d57ee5df8dfd", [ null, [ [ - "/css/CSS2/linebox/line-height-006-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "line-height-018.xht": [ - "4f17ebd5da89156f2abb4031ece760279d5ca8c4", + "padding-left-013.xht": [ + "53b4768669a88aed1f930459486e4c8a7f11db8a", [ null, [ [ - "/css/CSS2/linebox/line-height-006-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "line-height-024.xht": [ - "4875daa567a8003f325e4d805f15ff223d14e53d", + "padding-left-015.xht": [ + "77cea3a7a46fde8aa05b1105e86236d2539b983f", [ null, [ [ - "/css/CSS2/linebox/line-height-002-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "line-height-025.xht": [ - "98086a486595893759108bcc6fc94756326c903d", + "padding-left-016.xht": [ + "d0f90e41f3ce9b2c43be941d82ead70d04d7c2a0", [ null, [ [ - "/css/CSS2/linebox/line-height-025-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "line-height-026.xht": [ - "658d49943ccab387ab2decfa3b1a7382a3a2b0d3", + "padding-left-017.xht": [ + "e1a8f0354550ab39d73d48d4b06b90a4a89e35d9", [ null, [ [ - "/css/CSS2/linebox/line-height-002-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-019-ref.xht", "==" ] ], {} ] ], - "line-height-027.xht": [ - "cdb3e0861f587a3cc9fd843056e41b1a61e1b704", + "padding-left-018.xht": [ + "88d87d8dfffcc6f79f41654196508164d0403c54", [ null, [ [ - "/css/CSS2/linebox/line-height-002-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-019-ref.xht", "==" ] ], {} ] ], - "line-height-028.xht": [ - "7e30abac43407e948682f7651605eaac5dadbc0f", + "padding-left-023.xht": [ + "1fb8cf0f4944713de502d9a86c2bcc18513c204b", [ null, [ [ - "/css/CSS2/linebox/line-height-006-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "line-height-029.xht": [ - "188e0149e5c61ee42e3c4a1704048fae74c0d761", + "padding-left-024.xht": [ + "d6881f43c13ed432d020fb5d353157361a96159d", [ null, [ [ - "/css/CSS2/linebox/line-height-006-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "line-height-035.xht": [ - "231e72d750bfa61f3f9cc987ce7e81e5a123319d", + "padding-left-025.xht": [ + "94a756b6ee5e750c87d79e1789b6a1f6c06fe903", [ null, [ [ - "/css/CSS2/linebox/line-height-002-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-031-ref.xht", "==" ] ], {} ] ], - "line-height-037.xht": [ - "43c90531acfd09f6e4dff3172bb830cf855cdec2", + "padding-left-026.xht": [ + "d93cb18e2d01484456be2b065ec6bfc73f2b1e91", [ null, [ [ - "/css/CSS2/linebox/line-height-002-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "line-height-038.xht": [ - "c59ff2ba5444f4618f42577180793c21360d43f2", + "padding-left-027.xht": [ + "f565cbc73731f47754432bce4a6a32fc1af96e80", [ null, [ [ - "/css/CSS2/linebox/line-height-002-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "line-height-039.xht": [ - "c9a018f47f104187e1d8e6ed7ea34a9cd7471f70", + "padding-left-028.xht": [ + "c9d7d30bac0e1585108488f4d9ed8b478c0a99fe", [ null, [ [ - "/css/CSS2/linebox/line-height-006-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-031-ref.xht", "==" ] ], {} ] ], - "line-height-040.xht": [ - "99c169eed60af54f2a365ba72b6e2938517a27d3", + "padding-left-029.xht": [ + "bd2b7ac0ca59c3747ca6d4976aae8da31180c1d4", [ null, [ [ - "/css/CSS2/linebox/line-height-006-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-031-ref.xht", "==" ] ], {} ] ], - "line-height-046.xht": [ - "93c3759dfa55aa8d2cf35a52a8a2fea3de93727a", + "padding-left-034.xht": [ + "6bbeb73a2f63f4cc0b367c5b3b92b83484d49a21", [ null, [ [ - "/css/CSS2/linebox/line-height-002-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "line-height-048.xht": [ - "4df02a6e4a6d6fb4a4044f2589c962402661b553", + "padding-left-035.xht": [ + "37741c077dad6f691035a51ad0bc5a0c2593a0a3", [ null, [ [ - "/css/CSS2/linebox/line-height-002-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "line-height-049.xht": [ - "3fafac0094769bfacf767d75ea3a044d7e3c3228", + "padding-left-036.xht": [ + "970fdd1729ce5193bc4476c39cbcf4ca63cb91e0", [ null, [ [ - "/css/CSS2/linebox/line-height-002-ref.xht", + "/css/CSS2/margin-padding-clear/padding-left-036-ref.xht", "==" ] ], {} ] ], - "line-height-050.xht": [ - "6c67af3b4dd51da09a82c63fe3743bf36cf49702", + "padding-left-037.xht": [ + "ad5349ed7ec344ee5799b5868c3f9db1f612ad27", [ null, [ [ - "/css/CSS2/linebox/line-height-006-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "line-height-051.xht": [ - "8cf9c4cdd9723a7f5dbc40680dc10d637ce8ebd5", + "padding-left-038.xht": [ + "ac882a0ac67908ecc0407cacbaefc0e05a9c340c", [ null, [ [ - "/css/CSS2/linebox/line-height-006-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "line-height-057.xht": [ - "d8732f7d2ea44225bb597920a499fdd58a2d4216", + "padding-left-039.xht": [ + "28035e9169c2e987a0bd4036b953e15762e0b224", [ null, [ [ - "/css/CSS2/linebox/line-height-002-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-043-ref.xht", "==" ] ], {} ] ], - "line-height-058.xht": [ - "4421e233f7c5da7d9264bf3d1b8373d500ba0bac", + "padding-left-040.xht": [ + "415ad13e42bde7a7a5b13350667f663152734c62", [ null, [ [ - "/css/CSS2/linebox/line-height-006-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-043-ref.xht", "==" ] ], {} ] ], - "line-height-059.xht": [ - "507e46865d45741c700f5157941b2b6eda401313", + "padding-left-045.xht": [ + "a894b6c9791ff5508c8fbd8a4186cd8439eb5eae", [ null, [ [ - "/css/CSS2/linebox/line-height-002-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "line-height-060.xht": [ - "302d820feeba08acda41153ace27280444184171", + "padding-left-046.xht": [ + "25a10bef01e8329ebbc3ab21874b257f998858f0", [ null, [ [ - "/css/CSS2/linebox/line-height-002-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "line-height-061.xht": [ - "a50d02039727fa44e35005febc1c437d70529ba7", + "padding-left-047.xht": [ + "69856b5d9f053d543c2df195a62d02a3cfe44cac", [ null, [ [ - "/css/CSS2/linebox/line-height-061-ref.xht", + "/css/CSS2/margin-padding-clear/padding-left-047-ref.xht", "==" ] ], {} ] ], - "line-height-062.xht": [ - "c3e06ef952065ac0ebdb4cf1fafe0a98352f2a2e", + "padding-left-048.xht": [ + "7790a94473b9b525b4ede25532e4248b220c4192", [ null, [ [ - "/css/CSS2/linebox/line-height-061-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "line-height-068.xht": [ - "f475980c84e1880de69c24bddcee2f67bb0242ee", + "padding-left-049.xht": [ + "01c1ef3de161ff284af79cd73504af88a5abc154", [ null, [ [ - "/css/CSS2/linebox/line-height-002-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "line-height-069.xht": [ - "317c107d178215ec24edbf969a55c6121d02fdd8", + "padding-left-050.xht": [ + "9165ac91936ef319551dc6eaa66996cadf84542d", [ null, [ [ - "/css/CSS2/linebox/line-height-069-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-043-ref.xht", "==" ] ], {} ] ], - "line-height-070.xht": [ - "119cd8cc9927a0b911eb8c18756404aa1d5e4eb9", + "padding-left-051.xht": [ + "96ea400a251db2e73cbe1ed3dd980253f50090b9", [ null, [ [ - "/css/CSS2/linebox/line-height-002-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-043-ref.xht", "==" ] ], {} ] ], - "line-height-071.xht": [ - "4ee26475db21c07f618193784426d121ea7fdc0b", + "padding-left-056.xht": [ + "05bd642379aa942e2717e66f25ecb09aae711612", [ null, [ [ - "/css/CSS2/linebox/line-height-002-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "line-height-072.xht": [ - "2cd105fde367fd3f6b17428a1af96b1a78cf63d0", + "padding-left-057.xht": [ + "8b14887c5595e29928b3f4204b8a98ef939967df", [ null, [ [ - "/css/CSS2/linebox/line-height-072-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "line-height-073.xht": [ - "90d1a9949c6bd86e62eac10490f539681c13c1c0", + "padding-left-058.xht": [ + "0304c515cfe35f5d87d7f622b46fec3ad5927d00", [ null, [ [ - "/css/CSS2/linebox/line-height-072-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-043-ref.xht", "==" ] ], {} ] ], - "line-height-079.xht": [ - "59f985f3d1c9b8259b2ecee2eec28aeb9a4bf350", + "padding-left-059.xht": [ + "921bc03bb17fbdb8cfb5214b8bb292e570a1e8d3", [ null, [ [ - "/css/CSS2/linebox/line-height-002-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "line-height-080.xht": [ - "b2df826884beb8a76e1e18688242d05c53e92853", + "padding-left-060.xht": [ + "e052ad0917b5c46597ed754b3c58829a11edd874", [ null, [ [ - "/css/CSS2/linebox/line-height-025-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "line-height-081.xht": [ - "b065789e77785d4e93cbb40c426ee7d8a94ed66d", + "padding-left-061.xht": [ + "edda6582f7e8f6f51948152f8b21bfa5f703c125", [ null, [ [ - "/css/CSS2/linebox/line-height-002-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-043-ref.xht", "==" ] ], {} ] ], - "line-height-082.xht": [ - "4dd0eaf8becb355261d3b597fa2a4eca842dfe84", + "padding-left-062.xht": [ + "b3579ac5cf442c77cf6199059ecbc7073b72407a", [ null, [ [ - "/css/CSS2/linebox/line-height-002-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-043-ref.xht", "==" ] ], {} ] ], - "line-height-083.xht": [ - "2736285a0960743a403db2c8a5d9a056621f5a64", + "padding-left-067.xht": [ + "5e380aba850ef15970b2c5324a06fa106a6790e1", [ null, [ [ - "/css/CSS2/linebox/line-height-006-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "line-height-084.xht": [ - "7d4cab2a4d07ecdb178d71460d83160d62822b9e", + "padding-left-068.xht": [ + "966b43e0b5759f0c33f5a863a3538b5b08c429e1", [ null, [ [ - "/css/CSS2/linebox/line-height-006-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "line-height-090.xht": [ - "b1a176a3f205b8ece7ca59de9230c8ae154b0035", + "padding-left-069.xht": [ + "5bed2599f323e5554931a14cd4b0167b6f491100", [ null, [ [ - "/css/CSS2/linebox/line-height-002-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-079-ref.xht", "==" ] ], {} ] ], - "line-height-092.xht": [ - "ba66d29d9428f6ef3d0eb623bb2c73546ecb259e", + "padding-left-070.xht": [ + "0b35b8189238b8d3b7d992f43d8e52a127fbb247", [ null, [ [ - "/css/CSS2/linebox/line-height-002-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "line-height-093.xht": [ - "9d1f3c96fa1dbd51918635f16a3f0a976f46cb87", + "padding-left-071.xht": [ + "7305e8652995d6e170b4935cf21d5bbea4f33572", [ null, [ [ - "/css/CSS2/linebox/line-height-002-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "line-height-094.xht": [ - "5879c958189677ea11064cc9b2c38ec353e58c1e", + "padding-left-072.xht": [ + "0868bc83e4b0ba2d6e7b6902bee2bd105c68264d", [ null, [ [ - "/css/CSS2/linebox/line-height-069-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-079-ref.xht", "==" ] ], {} ] ], - "line-height-095.xht": [ - "592d32730298648b53117e0c7d8bb180acdffac7", + "padding-left-073.xht": [ + "d25a74ca38593d2994d437419d443bafcad20366", [ null, [ [ - "/css/CSS2/linebox/line-height-069-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-079-ref.xht", "==" ] ], {} ] ], - "line-height-101.xht": [ - "1fe198f1a1886c6e2243bc2ee073588add329bd6", + "padding-left-078.xht": [ + "72865436d305eac756822e8ffdb6897a8f89826c", [ null, [ [ - "/css/CSS2/linebox/line-height-002-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "line-height-102.xht": [ - "d4426b8024cd404dcd35b3a780d6bf1babae2998", + "padding-left-079.xht": [ + "fcba695cfea58f979e0fa00b99b95fc42762e058", [ null, [ [ - "/css/CSS2/linebox/line-height-102-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "line-height-103.xht": [ - "ec45d0f7dafc8f5b8d0e4a1915634a3bb3e96b65", + "padding-left-080.xht": [ + "1b8714b9eac93c5000728b8e0d5d086815c1d43f", [ null, [ [ - "/css/CSS2/linebox/line-height-002-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-031-ref.xht", "==" ] ], {} ] ], - "line-height-104.xht": [ - "4801ca2a95a8be9856cf8001eb15fb23fb8f4d97", + "padding-left-081.xht": [ + "3155c5d5947044eea3cc7ea3d5c2711aef1adc95", [ null, [ [ - "/css/CSS2/linebox/line-height-002-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "line-height-105.xht": [ - "848595dba0c64d4d5fee62286298f3da9988fdb4", + "padding-left-082.xht": [ + "c4f5bdc300b40668be84a75e49b5e47fa31e52ea", [ null, [ [ - "/css/CSS2/linebox/line-height-105-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "line-height-106.xht": [ - "b2bc9e77164226f5b063a938cc5a83b3f4c2228f", + "padding-left-083.xht": [ + "6cdd476139547f187bb8f3cafa109c5ae5f61f65", [ null, [ [ - "/css/CSS2/linebox/line-height-105-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-031-ref.xht", "==" ] ], {} ] ], - "line-height-112.xht": [ - "6460895667d85cafe64e7cf34dcf274e04a659c9", + "padding-left-084.xht": [ + "99a170fbbc5a38261abe6f9c86b241dc1cf87cf1", [ null, [ [ - "/css/CSS2/linebox/line-height-006-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-031-ref.xht", "==" ] ], {} ] ], - "line-height-121.xht": [ - "38cc70884117774ea2157da05420629f32bb3933", + "padding-left-089.xht": [ + "bfd2cd342bad1b3b5622993989722864a38da341", [ null, [ [ - "/css/CSS2/linebox/line-height-121-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "line-height-125.xht": [ - "47ca6eb8434151bbf4f28d81cfd55ea4de24e183", + "padding-left-090.xht": [ + "d03c28eb4a3b6bc6c571891bf743bac04eaada53", [ null, [ [ - "/css/CSS2/linebox/line-height-125-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "line-height-126.xht": [ - "bb979b8d91d78a70f00ab949c0c7ad4a01aff71f", + "padding-left-091.xht": [ + "9d648a07598eae3078b0f64b9e85f3feee28dbc9", [ null, [ [ - "/css/CSS2/linebox/line-height-126-ref.xht", + "/css/CSS2/margin-padding-clear/padding-left-091-ref.xht", "==" ] ], {} ] ], - "line-height-127.xht": [ - "3b75153036d67e7878203f584570320dea0e9341", + "padding-left-092.xht": [ + "74df9ddf18649a284df814d225e119222f136d3a", [ null, [ [ - "/css/CSS2/linebox/line-height-127-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "line-height-128.xht": [ - "8d6c34dc44dbde45fe1246423713a6683916cb59", + "padding-left-093.xht": [ + "217b738c0026382485c613859e6b3827656a6764", [ null, [ [ - "/css/CSS2/linebox/line-height-128-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "line-height-129.xht": [ - "78f90fbd7e06c027710fdab0f636f84d29e55d21", + "padding-left-094.xht": [ + "224ed099e6076c6bbede37aa777d13bcb1a76399", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/margin-padding-clear/margin-left-043-ref.xht", "==" ] ], {} ] ], - "line-height-applies-to-001.xht": [ - "62625793860eed79e17eea04e1534e1f6bb69d6f", + "padding-left-095.xht": [ + "334976eece241eb2b01e63398dddb1a59f2e3174", [ null, [ [ - "/css/CSS2/linebox/line-height-applies-to-001-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-043-ref.xht", "==" ] ], {} ] ], - "line-height-applies-to-002.xht": [ - "98b2f5424ecd390dee3dd8f63cce7465c1dec239", + "padding-left-100.xht": [ + "8dde053b408a5b8a29526333b208fe97f372f6e3", [ null, [ [ - "/css/CSS2/linebox/line-height-applies-to-001-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "line-height-applies-to-003.xht": [ - "af7bda03dc55670ddbfbbee191418d8ce3d46f3c", + "padding-left-101.xht": [ + "db207e702e8fff4489e1eeaa25d08925f0aca746", [ null, [ [ - "/css/CSS2/linebox/line-height-applies-to-001-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "line-height-applies-to-004.xht": [ - "d7fd1861381a5aaae1a1ba381c93ccbec398ba40", + "padding-left-102.xht": [ + "33f8e5461b793aa5508775634c341e9f546325e1", [ null, [ [ - "/css/CSS2/linebox/line-height-applies-to-001-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "line-height-applies-to-005.xht": [ - "d312d0377e4c3e2e6b5016ae4bd85d1a48362158", + "padding-left-103.xht": [ + "96e89edb8b84f6c8d73783936526c3fa6dd2bb7a", [ null, [ [ - "/css/CSS2/linebox/line-height-applies-to-005-ref.xht", + "/css/CSS2/margin-padding-clear/padding-left-103-ref.xht", "==" ] ], {} ] ], - "line-height-applies-to-006.xht": [ - "61caf7d86663d88d7a4eeea1fcbccc59a9f079e7", + "padding-left-applies-to-001.xht": [ + "5d8041022675bd2ef08264533e44b1d8d42a9ce9", [ null, [ [ - "/css/CSS2/linebox/line-height-applies-to-005-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-applies-to-001-ref.xht", "==" ] ], {} ] ], - "line-height-applies-to-007.xht": [ - "43d6b077d33286686338fb0b9ee4366a9cd7e2e6", + "padding-left-applies-to-002.xht": [ + "186de1bb57d960f89b5e5674dc9717e3b88439ac", [ null, [ [ - "/css/CSS2/linebox/line-height-applies-to-001-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-applies-to-001-ref.xht", "==" ] ], {} ] ], - "line-height-applies-to-008.xht": [ - "6e88cd99fcb2fe072f9382187bbaffb5f534abae", + "padding-left-applies-to-003.xht": [ + "08b739a46211d0c88aacc2b40a379e0f65667d6c", [ null, [ [ - "/css/CSS2/linebox/line-height-applies-to-001-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-applies-to-001-ref.xht", "==" ] ], {} ] ], - "line-height-applies-to-009.xht": [ - "99d587141d23b7d763142ddf45b8c0727bf5c3b0", + "padding-left-applies-to-004.xht": [ + "96bd842c168066351f1e2da2a410397157a403e3", [ null, [ [ - "/css/CSS2/linebox/line-height-applies-to-001-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-applies-to-001-ref.xht", "==" ] ], {} ] ], - "line-height-applies-to-012.xht": [ - "e11ddd0cd3843eeb9485486c6b0e7b759520fdb5", + "padding-left-applies-to-005.xht": [ + "f05c4f5132c78de76dfdf1e6b8c503b8e15f6160", [ null, [ [ - "/css/CSS2/linebox/line-height-applies-to-001-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-applies-to-001-ref.xht", "==" ] ], {} ] ], - "line-height-applies-to-013.xht": [ - "fefe16d603f7d5ae940bf0db76e6d800ae30f374", + "padding-left-applies-to-006.xht": [ + "6a04c155497bfaf65bdddd75f20bb4401d4a0b1e", [ null, [ [ - "/css/CSS2/linebox/line-height-applies-to-001-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-applies-to-001-ref.xht", "==" ] ], {} ] ], - "line-height-applies-to-014.xht": [ - "8216c04f098c54492c4a24531e2ae903c3a9c541", + "padding-left-applies-to-007.xht": [ + "6110016358d3895cedf3cea4d2fc02d7ab760d86", [ null, [ [ - "/css/CSS2/linebox/line-height-applies-to-001-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-applies-to-009-ref.xht", "==" ] ], {} ] ], - "line-height-applies-to-015.xht": [ - "3a40b32a4143a4ae58f87f1ba0e95e6d97f3d5a7", + "padding-left-applies-to-008.xht": [ + "f4f10b1670d217a15b0ddffb79f6eaee390cc5d7", [ null, [ [ - "/css/CSS2/linebox/line-height-applies-to-001-ref.xht", + "/css/CSS2/margin-padding-clear/padding-left-applies-to-008-ref.xht", "==" ] ], {} ] ], - "line-height-applies-to-016.xht": [ - "d1b788983a686f477311362ca9a9032c011f3aaf", + "padding-left-applies-to-009.xht": [ + "0796980dd82e5e67c2cd7245667861ce3635effd", [ null, [ [ - "/css/CSS2/linebox/line-height-applies-to-016-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-applies-to-009-ref.xht", "==" ] ], {} ] ], - "line-height-bleed-001.xht": [ - "ab7850dc21556ba7c6200af42ae2de1093fd48ef", + "padding-left-applies-to-010.xht": [ + "efe778baeb376b8844389b5ad244430df7521cf9", [ null, [ [ - "/css/CSS2/linebox/line-height-bleed-001-ref.xht", + "/css/CSS2/margin-padding-clear/padding-left-applies-to-010-ref.xht", "==" ] ], {} ] ], - "line-height-bleed-002.xht": [ - "9c69a86734a88aac76ba072995374123a2dde75d", + "padding-left-applies-to-012.xht": [ + "7907e88c7320d44964c6da02a54c3dd5834ec0f2", [ null, [ [ - "/css/CSS2/linebox/line-height-bleed-002-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-applies-to-009-ref.xht", "==" ] ], {} ] ], - "line-height-oof-descendants-001.html": [ - "6663b1949a73d61ea9d91f3f019c4d4fd66c8cd9", + "padding-left-applies-to-013.xht": [ + "473175b3ec8ff1ef5fae0094e80a5531429904a1", [ null, [ [ - "/css/CSS2/linebox/line-height-oof-descendants-001-ref.html", + "/css/CSS2/margin-padding-clear/margin-left-applies-to-009-ref.xht", "==" ] ], {} ] ], - "vertical-align-004.xht": [ - "0c5240cc8d18ba3869efad4fad18ad5cb0045e39", + "padding-left-applies-to-014.xht": [ + "8c5ae43e1cb82a122d858e227a1961ce15b272aa", [ null, [ [ - "/css/CSS2/linebox/vertical-align-004-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-applies-to-009-ref.xht", "==" ] ], {} ] ], - "vertical-align-005.xht": [ - "0f300578daa41d3bf5d5eb9d818c69553137b853", + "padding-left-applies-to-015.xht": [ + "fa8e8919ad444e1ba674a11fde44eeb6ac9b48a3", [ null, [ [ - "/css/CSS2/linebox/vertical-align-004-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-applies-to-009-ref.xht", "==" ] ], {} ] ], - "vertical-align-006.xht": [ - "bd2f40b9ed1e341401ebfda35f7f43dd6006e512", + "padding-percentage-inherit-001.xht": [ + "d3e9c8b4283a07ff738bf77e56702a0cecf3c47c", [ null, [ [ - "/css/CSS2/linebox/vertical-align-004-ref.xht", + "/css/CSS2/margin-padding-clear/padding-percentage-inherit-001-ref.xht", "==" ] ], {} ] ], - "vertical-align-007.xht": [ - "282f11c3c40a883ec955b94932cc7828b79c1569", + "padding-right-001.xht": [ + "025d5c0d46543bd9af632b4706eb8362d09cee10", [ null, [ [ - "/css/CSS2/linebox/vertical-align-007-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "vertical-align-008.xht": [ - "27acf92519267fc8fed40771b5423def08e69857", + "padding-right-002.xht": [ + "efeebd7aa5f76288e3c5141917a64831fc31b7e7", [ null, [ [ - "/css/CSS2/linebox/vertical-align-007-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "vertical-align-016.xht": [ - "d8d5a26b07e207facc392b2f8f95290d8c0aed51", + "padding-right-003.xht": [ + "74ccc7a81e9c7777d8c07d8f684eff2cbdd36336", [ null, [ [ - "/css/CSS2/linebox/vertical-align-004-ref.xht", + "/css/CSS2/margin-padding-clear/padding-right-003-ref.xht", "==" ] ], {} ] ], - "vertical-align-017.xht": [ - "a6cb9d57d4379b31f65c23a30285d7fcd696a741", + "padding-right-004.xht": [ + "b9151d8d74f960eaf07763dd4a83e7b2b1a38801", [ null, [ [ - "/css/CSS2/linebox/vertical-align-004-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "vertical-align-018.xht": [ - "ea9202407487d1d8588dbe771589a412a0f5a4eb", + "padding-right-005.xht": [ + "6acf26bafc066d6b89f10b100edb80d92481f151", [ null, [ [ - "/css/CSS2/linebox/vertical-align-004-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "vertical-align-019.xht": [ - "1391a88a4cf736e7f3823ca5f69a7b79f9e1593b", + "padding-right-006.xht": [ + "1a4ea7a47f6a325ea20a78730d4df6e4c97d562b", [ null, [ [ - "/css/CSS2/linebox/vertical-align-007-ref.xht", + "/css/CSS2/margin-padding-clear/padding-right-006-ref.xht", "==" ] ], {} ] ], - "vertical-align-020.xht": [ - "e4f8d8515069fd06560070a56085981d1be73fad", + "padding-right-007.xht": [ + "4ddb96f75f6140c60228096355b9de9c3464bb3e", [ null, [ [ - "/css/CSS2/linebox/vertical-align-007-ref.xht", + "/css/CSS2/margin-padding-clear/padding-right-006-ref.xht", "==" ] ], {} ] ], - "vertical-align-028.xht": [ - "eb15812971051d1c797d76729ab722d10f50e53d", + "padding-right-012.xht": [ + "ae5920663e28d263dadf1ca240d044c84a03cb06", [ null, [ [ - "/css/CSS2/linebox/vertical-align-004-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "vertical-align-029.xht": [ - "8dcadd3faf047262c13dfdbcf2e5b3042af8d87c", + "padding-right-013.xht": [ + "f04803da573d6074675d8250aade6d2a6810d0d9", [ null, [ [ - "/css/CSS2/linebox/vertical-align-004-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "vertical-align-030.xht": [ - "71fd6122e1a80ae504a2072ce36d3ed4852ea867", + "padding-right-015.xht": [ + "85091aa7b4c55f541f88b74c45b9855c02f9464d", [ null, [ [ - "/css/CSS2/linebox/vertical-align-004-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "vertical-align-031.xht": [ - "e6e50bcdc51d1de9a05926c05977c7c596d0659d", + "padding-right-016.xht": [ + "273d5b12927dac2a76d548fe11a79a1e40742d19", [ null, [ [ - "/css/CSS2/linebox/vertical-align-007-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "vertical-align-032.xht": [ - "6f589064fe429d5c7a9947b31435f93116ee6996", + "padding-right-017.xht": [ + "714e5fff5d711f3866d60458b3f6e66f72ab38ad", [ null, [ [ - "/css/CSS2/linebox/vertical-align-007-ref.xht", + "/css/CSS2/margin-padding-clear/padding-right-017-ref.xht", "==" ] ], {} ] ], - "vertical-align-040.xht": [ - "03e333e3571025c24a12c83a7b12f7bec1aa103e", + "padding-right-018.xht": [ + "918918cd4deb65dcc0e466828002627bef59b10a", [ null, [ [ - "/css/CSS2/linebox/vertical-align-004-ref.xht", + "/css/CSS2/margin-padding-clear/padding-right-017-ref.xht", "==" ] ], {} ] ], - "vertical-align-041.xht": [ - "f5ffb8646ff9e25f53db8a1f479279e1cce6d874", + "padding-right-023.xht": [ + "e363aabce79d02acde6c9d8d4e050de9433be228", [ null, [ [ - "/css/CSS2/linebox/vertical-align-004-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "vertical-align-042.xht": [ - "701c8d5c9e5102f01e228da121ecb8e2c9b7b2a1", + "padding-right-024.xht": [ + "5e4777d9b536c5656a47a7d70aa777783104f196", [ null, [ [ - "/css/CSS2/linebox/vertical-align-004-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "vertical-align-043.xht": [ - "9753da54427aee5bcc5027b6a8c1362bcd682b42", + "padding-right-025.xht": [ + "1c89240d1e21095819924904c05fc26f50d9ddca", [ null, [ [ - "/css/CSS2/linebox/vertical-align-007-ref.xht", + "/css/CSS2/margin-padding-clear/padding-right-025-ref.xht", "==" ] ], {} ] ], - "vertical-align-044.xht": [ - "608a6ec88ff063211c87284e5cdf43a8590469c1", + "padding-right-026.xht": [ + "a1ef19b94e82ae95db5c17ab0071a383ebfc7cab", [ null, [ [ - "/css/CSS2/linebox/vertical-align-007-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "vertical-align-052.xht": [ - "a0efd41f3ecddcc0a36d02b544337306853b3c66", + "padding-right-027.xht": [ + "7e706a791ddd7cd7c3964914904d924d411c787d", [ null, [ [ - "/css/CSS2/linebox/vertical-align-004-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "vertical-align-053.xht": [ - "e061a83bfd24854129397f0b5f778be1077d771b", + "padding-right-028.xht": [ + "6589ec1f2acc9f735443e4735ff5831a01957f65", [ null, [ [ - "/css/CSS2/linebox/vertical-align-004-ref.xht", + "/css/CSS2/margin-padding-clear/padding-right-028-ref.xht", "==" ] ], {} ] ], - "vertical-align-054.xht": [ - "0e33ce13dd2e94d6f27e65e474e59b24d117bcd7", + "padding-right-029.xht": [ + "4acb9cdb231a1cb61bbe4978a4d7fb2724baac78", [ null, [ [ - "/css/CSS2/linebox/vertical-align-004-ref.xht", + "/css/CSS2/margin-padding-clear/padding-right-028-ref.xht", "==" ] ], {} ] ], - "vertical-align-055.xht": [ - "4a9d06c6031b5149932f69ae030af9250a9ecfbc", + "padding-right-034.xht": [ + "71b2b2a8b8afa95ec83265a334f77ad43d826fc7", [ null, [ [ - "/css/CSS2/linebox/vertical-align-007-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "vertical-align-056.xht": [ - "d47d51561011d42d184bdc9b574fa06a066daf46", + "padding-right-035.xht": [ + "9945db376470b39de34919dc416a50c59f335dcc", [ null, [ [ - "/css/CSS2/linebox/vertical-align-007-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "vertical-align-064.xht": [ - "e0cfc059ab066b6408debe263024e00b99596002", + "padding-right-036.xht": [ + "261a88b16786e32025c7b8a5ca6ec936d402ccb2", [ null, [ [ - "/css/CSS2/linebox/vertical-align-004-ref.xht", + "/css/CSS2/margin-padding-clear/padding-left-036-ref.xht", "==" ] ], {} ] ], - "vertical-align-065.xht": [ - "8103243f21c2fa55efe340df2ed5f0ed299ebb0b", + "padding-right-037.xht": [ + "417fff70d2ee893f2d996210c96f5d4c63e7e762", [ null, [ [ - "/css/CSS2/linebox/vertical-align-004-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "vertical-align-066.xht": [ - "4a208131a83a5ae49a32c6b29699f339c3545160", + "padding-right-038.xht": [ + "f7b50180f8df75d0c5c8002fbd047e599b3a7694", [ null, [ [ - "/css/CSS2/linebox/vertical-align-004-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "vertical-align-067.xht": [ - "ad701d5299959eec32ea5d6038af3437eaa1d0c1", + "padding-right-039.xht": [ + "19829bf77382a316f28e3ed570f5ea95e71f2da1", [ null, [ [ - "/css/CSS2/linebox/vertical-align-007-ref.xht", + "/css/CSS2/margin-padding-clear/padding-right-039-ref.xht", "==" ] ], {} ] ], - "vertical-align-068.xht": [ - "81554acd366c2063503dadd1890b23eb3b8ba248", + "padding-right-040.xht": [ + "9118bd8b166e5e207082dddf45d356334da5c062", [ null, [ [ - "/css/CSS2/linebox/vertical-align-007-ref.xht", + "/css/CSS2/margin-padding-clear/padding-right-039-ref.xht", "==" ] ], {} ] ], - "vertical-align-076.xht": [ - "c3e6dd83b34f6dcee3dca541014909078b245857", + "padding-right-045.xht": [ + "b1a1207a7191b008bd04876003f476447c84ab4b", [ null, [ [ - "/css/CSS2/linebox/vertical-align-004-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "vertical-align-077.xht": [ - "2169b9a0de253584dbae0fb526b46379480356c2", + "padding-right-046.xht": [ + "a52902e253acb81c8b266091b1ffb418f631c6b8", [ null, [ [ - "/css/CSS2/linebox/vertical-align-004-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "vertical-align-078.xht": [ - "75ea2be7c868bc9e447172e2034bba15804e1a68", + "padding-right-047.xht": [ + "29d619a967678370b017427cd66b1d4117a91c6e", [ null, [ [ - "/css/CSS2/linebox/vertical-align-004-ref.xht", + "/css/CSS2/margin-padding-clear/padding-left-047-ref.xht", "==" ] ], {} ] ], - "vertical-align-079.xht": [ - "beb0291a259ac342999423c449ad28fd0a5239cf", + "padding-right-048.xht": [ + "b97559adda4bfa59e6a649b8eeee540ff52edc3b", [ null, [ [ - "/css/CSS2/linebox/vertical-align-079-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "vertical-align-080.xht": [ - "c293843ae43428250cec68f8c12520f7cc332755", + "padding-right-049.xht": [ + "9d59f7c0111745dfbb94037ad84ca76f68fe1f12", [ null, [ [ - "/css/CSS2/linebox/vertical-align-079-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "vertical-align-088.xht": [ - "ab1695203e11ece55de055528c9363161107f4b7", + "padding-right-050.xht": [ + "ec2695a28716a5d0ff1b6418ea7da1bbf914cf12", [ null, [ [ - "/css/CSS2/linebox/vertical-align-004-ref.xht", + "/css/CSS2/margin-padding-clear/padding-right-039-ref.xht", "==" ] ], {} ] ], - "vertical-align-089.xht": [ - "662a15cac7668990b853c18c05b61dd95d83e991", + "padding-right-051.xht": [ + "4ac8432e8ad22af7200017dadab402891e64853b", [ null, [ [ - "/css/CSS2/linebox/vertical-align-004-ref.xht", + "/css/CSS2/margin-padding-clear/padding-right-039-ref.xht", "==" ] ], {} ] ], - "vertical-align-090.xht": [ - "1182dde9aedb2db353fbf423f862d2fb841e5c9a", + "padding-right-056.xht": [ + "0b62f98361a509d165b9bb1a96133d7d473ae47b", [ null, [ [ - "/css/CSS2/linebox/vertical-align-004-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "vertical-align-091.xht": [ - "f7a22b452d77620f618b8945b7232f7ed5f66998", + "padding-right-057.xht": [ + "1b843dc656b2549247b55a931aa74b6b0a4c9ce5", [ null, [ [ - "/css/CSS2/linebox/vertical-align-007-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "vertical-align-092.xht": [ - "5cf4b9023b96dd8f685eabf5efc29347a4ab2189", + "padding-right-058.xht": [ + "be66ead1145a6b3dce55f6078ce8531b356f17c2", [ null, [ [ - "/css/CSS2/linebox/vertical-align-007-ref.xht", + "/css/CSS2/margin-padding-clear/padding-right-039-ref.xht", "==" ] ], {} ] ], - "vertical-align-100.xht": [ - "b66e5d336eeac75c921e3c6a23da67ff6d9eb575", + "padding-right-059.xht": [ + "7114385f8ef02543d8b97cf9ea0becb4a5828618", [ null, [ [ - "/css/CSS2/linebox/vertical-align-004-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "vertical-align-101.xht": [ - "61b2541bade3a2c3ce8c98445f4d714d81be83fa", + "padding-right-060.xht": [ + "497611c00aa52677aead3edcaf3057294ac3b953", [ null, [ [ - "/css/CSS2/linebox/vertical-align-004-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "vertical-align-102.xht": [ - "fd1eb42aca4af1e5a8fcd51cbd57d98e221c4f48", + "padding-right-061.xht": [ + "093366f176f3e1ed3af2c4bad08a4f57b23171af", [ null, [ [ - "/css/CSS2/linebox/vertical-align-004-ref.xht", + "/css/CSS2/margin-padding-clear/padding-right-061-ref.xht", "==" ] ], {} ] ], - "vertical-align-103.xht": [ - "665f03477a2ff103cac008cecf7c2735c58a9c50", + "padding-right-062.xht": [ + "4b11f6006c4d7ac41def0a13bf7cc739a3a8c747", [ null, [ [ - "/css/CSS2/linebox/vertical-align-103-ref.xht", + "/css/CSS2/margin-padding-clear/padding-right-061-ref.xht", "==" ] ], {} ] ], - "vertical-align-104.xht": [ - "5cd2dabe2eaf587bde80a73d41634d92c3178588", + "padding-right-067.xht": [ + "cfe704b10a4abd2369e1700cea406c1bac6c3b58", [ null, [ [ - "/css/CSS2/linebox/vertical-align-103-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "vertical-align-109.xht": [ - "d43e3c7b40b5d8b3c10141dcc777e83b3083976d", + "padding-right-068.xht": [ + "6b2ed505f90c40b5abbd2a6d655de8a27d18c595", [ null, [ [ - "/css/CSS2/linebox/vertical-align-004-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "vertical-align-110.xht": [ - "de19a1b6ce19e8dc203d2da0984127dc6596494e", + "padding-right-069.xht": [ + "75348b29b79ba8397357e04c45a8b921da2c4663", [ null, [ [ - "/css/CSS2/linebox/vertical-align-004-ref.xht", + "/css/CSS2/margin-padding-clear/padding-right-069-ref.xht", "==" ] ], {} ] ], - "vertical-align-111.xht": [ - "076ff5621cebf1fc69bc20fa72a860824c024832", + "padding-right-070.xht": [ + "326e385e46c3859d66f6a793e7a136286202b1f4", [ null, [ [ - "/css/CSS2/linebox/vertical-align-004-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "vertical-align-117a.xht": [ - "ee85840bb8a846d1ca823b8e6924eafde791860f", + "padding-right-071.xht": [ + "f5bc69939b832c82586c8ca092f65b920b73401d", [ null, [ [ - "/css/CSS2/linebox/vertical-align-117a-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "vertical-align-118a.xht": [ - "9598cbdd3c9f0bcfd2bdd9350e1146b22fd945a9", + "padding-right-072.xht": [ + "f8a921be6d84579b870108494e19199bca94ffd1", [ null, [ [ - "/css/CSS2/linebox/vertical-align-118a-ref.xht", + "/css/CSS2/margin-padding-clear/padding-right-072-ref.xht", "==" ] ], {} ] ], - "vertical-align-121.xht": [ - "eac216efdffbb39d5bb122b626c70ab85494d465", + "padding-right-073.xht": [ + "e8af303076567ea5cd86ae28f5deb6cce3e9b3b5", [ null, [ [ - "/css/CSS2/linebox/vertical-align-121-ref.xht", + "/css/CSS2/margin-padding-clear/padding-right-072-ref.xht", "==" ] ], {} ] ], - "vertical-align-applies-to-001.xht": [ - "fca1480f7367209223f370ff01acbc45ef7b3778", + "padding-right-078.xht": [ + "d230bb51105338df2c6722ce217da53ece31c652", [ null, [ [ - "/css/CSS2/linebox/vertical-align-applies-to-001-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "vertical-align-applies-to-002.xht": [ - "44eda65ed813049a90ca27ec4aa8bf5bc69f1a0d", + "padding-right-079.xht": [ + "243440cbce29e86856b08b4acfd146da453f189d", [ null, [ [ - "/css/CSS2/linebox/vertical-align-applies-to-001-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "vertical-align-applies-to-003.xht": [ - "9ccd4e0ae2dcb57a07c92a1f0026a0c99e9c6efe", + "padding-right-080.xht": [ + "115fb36776b2fd2b9304f02931af940503afba0b", [ null, [ [ - "/css/CSS2/linebox/vertical-align-applies-to-001-ref.xht", + "/css/CSS2/margin-padding-clear/padding-right-080-ref.xht", "==" ] ], {} ] ], - "vertical-align-applies-to-004.xht": [ - "f526a704d30f0cee561e3f64627dc0a25652116b", + "padding-right-081.xht": [ + "3ba91a9d59f14b2dc75ee13eafbf5ddebff0d132", [ null, [ [ - "/css/CSS2/linebox/vertical-align-applies-to-001-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "vertical-align-applies-to-005.xht": [ - "624517ae3c816669b6481452bd0fb6aa1e774a71", + "padding-right-082.xht": [ + "cd12960a10d393ac42dc5fd43e4ea541f3f79d7e", [ null, [ [ - "/css/CSS2/linebox/vertical-align-applies-to-001-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "vertical-align-applies-to-006.xht": [ - "a5aacec7d54997f76ca38943ac5f12ad2bf5d2d2", + "padding-right-083.xht": [ + "4780496cb711cd6380557486b164caf7d7cf4ddf", [ null, [ [ - "/css/CSS2/linebox/vertical-align-applies-to-001-ref.xht", + "/css/CSS2/margin-padding-clear/padding-right-083-ref.xht", "==" ] ], {} ] ], - "vertical-align-applies-to-007.xht": [ - "b328b514de6b54c6e226c1d921a31a7377fbddf1", + "padding-right-084.xht": [ + "9f3500936c7f98f68ba18546fd38b84fa844f854", [ null, [ [ - "/css/CSS2/linebox/vertical-align-applies-to-007-ref.xht", + "/css/CSS2/margin-padding-clear/padding-right-083-ref.xht", "==" ] ], {} ] ], - "vertical-align-applies-to-008.xht": [ - "d9d9176a2ddf0eb53fee167f0c33e188f6595f99", + "padding-right-089.xht": [ + "cbffc2bb26ad1b098ccf5cedacde01387373a807", [ null, [ [ - "/css/CSS2/linebox/vertical-align-applies-to-008-ref.xht", + "/css/CSS2/margin-padding-clear/padding-right-089-ref.xht", "==" ] ], {} ] ], - "vertical-align-applies-to-009.xht": [ - "0270f4119bd583724bfe53d22c461c2806f7b020", + "padding-right-090.xht": [ + "1f453485f6306e4cca1f3850ac47e25bfc31bd37", [ null, [ [ - "/css/CSS2/linebox/vertical-align-applies-to-001-ref.xht", + "/css/CSS2/margin-padding-clear/padding-right-089-ref.xht", "==" ] ], {} ] ], - "vertical-align-applies-to-012.xht": [ - "2cc4f8a01f622fbfcbaff7e1eb080db5a94305fa", + "padding-right-091.xht": [ + "5e28cb56d39e979c0b3d5a3ec732a816991a08a7", [ null, [ [ - "/css/CSS2/linebox/vertical-align-applies-to-001-ref.xht", + "/css/CSS2/margin-padding-clear/padding-right-091-ref.xht", "==" ] ], {} ] ], - "vertical-align-applies-to-013.xht": [ - "a618891b727048886400f9cb7fccf631add56e1c", + "padding-right-092.xht": [ + "be0b43979f8e3d876a350704ebda370d4f978762", [ null, [ [ - "/css/CSS2/linebox/vertical-align-applies-to-001-ref.xht", + "/css/CSS2/margin-padding-clear/padding-right-089-ref.xht", "==" ] ], {} ] ], - "vertical-align-applies-to-014.xht": [ - "bec0080b2e75cd3159c7ec5e3e1c7a4e268b11c7", + "padding-right-093.xht": [ + "8c7ecc744dde968039ad625ce65a5d224b57f7fa", [ null, [ [ - "/css/CSS2/linebox/vertical-align-applies-to-001-ref.xht", + "/css/CSS2/margin-padding-clear/padding-right-089-ref.xht", "==" ] ], {} ] ], - "vertical-align-applies-to-015.xht": [ - "68f7c0705f1fdedc7751a1eaeb11b1960bb0d692", + "padding-right-094.xht": [ + "8f11b4a27b6af4dfbbdc6986c4b92299965e5fda", [ null, [ [ - "/css/CSS2/linebox/vertical-align-applies-to-001-ref.xht", + "/css/CSS2/margin-padding-clear/padding-right-039-ref.xht", "==" ] ], {} ] ], - "vertical-align-baseline-001.xht": [ - "916d649e8a88ee600408b8a989aa037d06ae1d8a", + "padding-right-095.xht": [ + "334fb0145400f600ea344c55cbe8ed893dc0b285", [ null, [ [ - "/css/CSS2/linebox/vertical-align-baseline-001-ref.xht", + "/css/CSS2/margin-padding-clear/padding-right-039-ref.xht", "==" ] ], {} ] ], - "vertical-align-baseline-002.xht": [ - "69c380bdd70ea5389cb3fba4369c7bf3b9e0a559", + "padding-right-100.xht": [ + "6b6cf5f57b07c2206bf9573f0616355422e98e32", [ null, [ [ - "/css/CSS2/linebox/vertical-align-baseline-001-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "vertical-align-baseline-003.xht": [ - "b6b5ea30dedd38f75ecc42875cc6a6e0e292a155", + "padding-right-101.xht": [ + "646712c581421c39a2de277e291c6329ddeea88d", [ null, [ [ - "/css/CSS2/linebox/vertical-align-baseline-003-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "vertical-align-baseline-004a.xht": [ - "dbb83cf965a1d59ebe01729ff526b5c89780eed5", + "padding-right-102.xht": [ + "5f49916b8e89a3a28ce42ff328c103b68277e241", [ null, [ [ - "/css/CSS2/linebox/vertical-align-baseline-004a-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", "==" ] ], {} ] ], - "vertical-align-baseline-005a.xht": [ - "e2983d5b8e7cee0db64ed0a1124da6e995a0b4af", + "padding-right-103.xht": [ + "e334a23c36d68308b0c5d73c85082b4eec190173", [ null, [ [ - "/css/CSS2/linebox/vertical-align-baseline-004a-ref.xht", + "/css/CSS2/margin-padding-clear/padding-right-017-ref.xht", "==" ] ], {} ] ], - "vertical-align-baseline-007.xht": [ - "e2724259960d3d56f716658ac23af839dc9d2ada", + "padding-right-applies-to-001.xht": [ + "064a20aa0c9b6894f4cdf7236c0efc1008081c9d", [ null, [ [ - "/css/CSS2/linebox/vertical-align-baseline-007-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-applies-to-001-ref.xht", "==" ] ], {} ] ], - "vertical-align-baseline-008.xht": [ - "eac3e33903eec15cd3c29c4505410c78709715b1", + "padding-right-applies-to-002.xht": [ + "cc90783b799819401bc518239bbcbcd4ae32329d", [ null, [ [ - "/css/CSS2/linebox/vertical-align-baseline-008-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-applies-to-001-ref.xht", "==" ] ], {} ] ], - "vertical-align-baseline-009.xht": [ - "a74543110d3d8f75429d34b85b8b7e28ae211aeb", + "padding-right-applies-to-003.xht": [ + "c6f64bfd89150c08e5b9c7dcae71718a380cc320", [ null, [ [ - "/css/CSS2/linebox/vertical-align-baseline-007-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-applies-to-001-ref.xht", "==" ] ], {} ] ], - "vertical-align-negative-leading-001.html": [ - "4ce5f6d2ad879c093139482e2d0a4672d8207f7d", + "padding-right-applies-to-004.xht": [ + "b9d8dba160f83bc6a1e16debcc757f1c809827ef", [ null, [ [ - "/css/CSS2/linebox/vertical-align-negative-leading-001-ref.html", + "/css/CSS2/margin-padding-clear/margin-left-applies-to-001-ref.xht", "==" ] ], {} ] ], - "vertical-align-nested-top-001.html": [ - "3667ced2ca39adfdb1d90fa843ebce6249eecb4e", + "padding-right-applies-to-005.xht": [ + "eb83d114f17f3a720cfb2d47d4063daa0166f69c", [ null, [ [ - "/css/CSS2/linebox/vertical-align-nested-top-001-ref.html", + "/css/CSS2/margin-padding-clear/margin-left-applies-to-001-ref.xht", "==" ] ], {} ] ], - "vertical-align-sub-001.xht": [ - "096ff0c3c88e0409e353fdef9b17f276ec8f100a", + "padding-right-applies-to-006.xht": [ + "c40566ecd875fc3b31064eee120a92a45f3f23bb", [ null, [ [ - "/css/CSS2/linebox/vertical-align-sub-001-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-applies-to-001-ref.xht", "==" ] ], {} ] ], - "vertical-align-super-001.xht": [ - "b7415548ab095fd340eb44a32ad4969a7d103172", + "padding-right-applies-to-007.xht": [ + "23dec69789f50e88dae2b4bae6c02a931d8d7355", [ null, [ [ - "/css/CSS2/linebox/vertical-align-sub-001-ref.xht", + "/css/CSS2/margin-padding-clear/margin-left-applies-to-009-ref.xht", "==" ] ], {} ] ], - "vertical-align-top-bottom-padding.html": [ - "21451a04fa5e9618276e0e518e82bbb7bb64b21d", + "padding-right-applies-to-009.xht": [ + "7da7cff80e5c6d9ad9c4342f01e9dad7c75a3171", [ null, [ [ - "/css/CSS2/linebox/vertical-align-top-bottom-padding-ref.html", + "/css/CSS2/margin-padding-clear/margin-left-applies-to-009-ref.xht", "==" ] ], {} ] - ] - }, - "lists": { - "counter-increment-005.xht": [ - "c6f2367a21b01b692efb22efff8e528a2fc2b768", + ], + "padding-right-applies-to-012.xht": [ + "543d350b99c14859e6b1caf7f00b0e30f179527f", [ null, [ [ - "/css/CSS2/reference/pass-if-number-0-30px.xht", + "/css/CSS2/margin-padding-clear/margin-left-applies-to-009-ref.xht", "==" ] ], {} ] ], - "counter-increment-006.xht": [ - "9f6921cbb8d7a69ccba584638379744d632bd5f6", + "padding-right-applies-to-013.xht": [ + "5de3e8b15cb09e2b3c51c8e592940ce44e26fa84", [ null, [ [ - "/css/CSS2/reference/pass-if-number-0-30px.xht", + "/css/CSS2/margin-padding-clear/margin-left-applies-to-009-ref.xht", "==" ] ], {} ] ], - "counter-increment-007.xht": [ - "a3fd93209cd0ab948af5a659b3ea2406c296ec27", + "padding-right-applies-to-014.xht": [ + "3a172ffb0fa37ceb4849996e857b83c431bbdbb5", [ null, [ [ - "/css/CSS2/reference/pass-if-number-0-30px.xht", + "/css/CSS2/margin-padding-clear/margin-left-applies-to-009-ref.xht", "==" ] ], {} ] ], - "counter-increment-008.xht": [ - "256f977dbf434efcd7e6a338633d4ad967c2e5d6", + "padding-right-applies-to-015.xht": [ + "f8c9a6d3d7529118052347aa3570455af9bcc3b4", [ null, [ [ - "/css/reference/pass_if_number_10.html", + "/css/CSS2/margin-padding-clear/margin-left-applies-to-009-ref.xht", "==" ] ], {} ] ], - "counter-increment-009.xht": [ - "c7278a3d020fce84beac2634fede23ca12fccb08", + "padding-shorthand-001.xht": [ + "b53cad102d85e812da60e1d7e723c6669cc355c5", [ null, [ [ - "/css/reference/pass_if_number_10.html", + "/css/CSS2/margin-padding-clear/margin-shorthand-001-ref.xht", "==" ] ], {} ] ], - "counter-increment-014.xht": [ - "f9894a023b56409d424ed1567f6b08eb0a3ffaa4", + "padding-shorthand-002.xht": [ + "078b58a4f8dd29a65a5c603031bbde32180beb44", [ null, [ [ - "/css/CSS2/lists/counter-increment-014-ref.html", + "/css/CSS2/margin-padding-clear/margin-shorthand-002-ref.xht", "==" ] ], {} ] ], - "counter-increment-018.xht": [ - "ed469a582f25976888cdaaa010bfdf6fe00c1b16", + "padding-shorthand-003.xht": [ + "83820a2f1def6d9832e51b09d047de5a765400d2", [ null, [ [ - "/css/CSS2/reference/pass-if-number-0-30px.xht", + "/css/CSS2/margin-padding-clear/margin-shorthand-003-ref.xht", "==" ] ], {} ] ], - "counter-increment-019.xht": [ - "8b243c94e3520010f7bbc01577767a53562917dc", + "padding-shorthand-004.xht": [ + "36181dbf3d25845901c290932fb224e48027f0ff", [ null, [ [ - "/css/CSS2/reference/pass-if-number-0-30px.xht", + "/css/CSS2/margin-padding-clear/margin-shorthand-003-ref.xht", "==" ] ], {} ] ], - "counter-increment-020.xht": [ - "d6ec612ab4ae2442f3472b02e74d1f7d92501379", + "padding-top-001.xht": [ + "4b5db15a486dd10bdd1ce8bec729e22653db6af0", [ null, [ [ - "/css/CSS2/reference/pass-if-number-0-30px.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "counter-increment-021.xht": [ - "b3234d68249ca0ed3e3567a580027cfbf6eb52fa", + "padding-top-002.xht": [ + "9c6eaa520c43429baf74d8281644f65a281f6553", [ null, [ [ - "/css/CSS2/lists/counter-increment-021-ref.html", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "counter-increment-022.xht": [ - "09655dbb12e476f3ad91e3c191cf4c7e3ecbdfc4", + "padding-top-003.xht": [ + "8bbfcdf06d5c56732931d7716033a856e7bde12b", [ null, [ [ - "/css/CSS2/lists/counter-increment-021-ref.html", + "/css/CSS2/margin-padding-clear/margin-top-007-ref.xht", "==" ] ], {} ] ], - "counter-increment-027.xht": [ - "fbd5c9a98a6ef5a5ac2311b79ea403bb47b0187d", + "padding-top-004.xht": [ + "7ae654e336ad4dd6b34e6ad122142deaa48c4382", [ null, [ [ - "/css/CSS2/lists/counter-increment-027-ref.html", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "counter-increment-031.xht": [ - "21a1fc20bee845178aeb33b3e44e4a77c6230e21", + "padding-top-005.xht": [ + "c34e3388613618dd4a22702b7707ecca21a0ad73", [ null, [ [ - "/css/CSS2/reference/pass-if-number-0-30px.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "counter-increment-032.xht": [ - "cf1e6f7bcd61852c3d8288e3d59ebfc1a2875a84", + "padding-top-006.xht": [ + "16dee77f39a2cc25131e8f0b2f9d5d46dcac7800", [ null, [ [ - "/css/CSS2/reference/pass-if-number-0-30px.xht", + "/css/CSS2/margin-padding-clear/margin-top-007-ref.xht", "==" ] ], {} ] ], - "counter-increment-033.xht": [ - "3185559ec047807a860c09f4d7c42946707be485", + "padding-top-007.xht": [ + "bf0387b1b8be90f665ddf7fb4714e62b44f2ce8c", [ null, [ [ - "/css/CSS2/reference/pass-if-number-0-30px.xht", + "/css/CSS2/margin-padding-clear/margin-top-007-ref.xht", "==" ] ], {} ] ], - "counter-increment-034.xht": [ - "6a43e87800127ed626c9dfdb1931a9f5d3372589", + "padding-top-012.xht": [ + "87b44ee12f9e8bb90aad1d3c8050dfe9521ad03d", [ null, [ [ - "/css/CSS2/lists/counter-increment-034-ref.html", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "counter-increment-035.xht": [ - "4670a659a99690ae19766c34a693380b6544a315", + "padding-top-013.xht": [ + "c4d223c7dfbaacc362b8d521328068f02d15a511", [ null, [ [ - "/css/CSS2/lists/counter-increment-034-ref.html", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "counter-increment-040.xht": [ - "60bdf782d790ff4028c45b75c022d2447c835073", + "padding-top-014.xht": [ + "ba4ba93f4fa00ac404a8a03d94adc4ba2cfe5cad", [ null, [ [ - "/css/CSS2/lists/counter-increment-040-ref.html", + "/css/CSS2/margin-padding-clear/margin-top-043-ref.xht", "==" ] ], {} ] ], - "counter-increment-044.xht": [ - "33c2ec56b37704a9014ff5fcfa57032df53bd0f1", + "padding-top-015.xht": [ + "88075b88fc555b2d488d94ac9da9ee4cf3bf409e", [ null, [ [ - "/css/CSS2/reference/pass-if-number-0-30px.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "counter-increment-045.xht": [ - "83fc873cefe908e25ba3914724cbd19e6ea20afa", + "padding-top-016.xht": [ + "0560ed9d31b66c0a532ec0867e9ab69867f04b4c", [ null, [ [ - "/css/CSS2/reference/pass-if-number-0-30px.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "counter-increment-046.xht": [ - "5f026d49fad45292a734d28f9aa114a7bb2423f4", + "padding-top-017.xht": [ + "d170fbe729491e1f87eb374681cccaf9872880ed", [ null, [ [ - "/css/CSS2/reference/pass-if-number-0-30px.xht", + "/css/CSS2/margin-padding-clear/margin-top-019-ref.xht", "==" ] ], {} ] ], - "counter-increment-047.xht": [ - "524829acc6f4c5191b3e8058efe36c07d24ff64e", + "padding-top-018.xht": [ + "0e019bef68c8519fab95eb16833a2bfe442e7474", [ null, [ [ - "/css/CSS2/lists/counter-increment-047-ref.html", + "/css/CSS2/margin-padding-clear/margin-top-019-ref.xht", "==" ] ], {} ] ], - "counter-increment-048.xht": [ - "ba8579dca1ca687d7127b933d1b7be64917342ac", + "padding-top-023.xht": [ + "a5317b02288b277498365ac4980f3f4675d95586", [ null, [ [ - "/css/CSS2/lists/counter-increment-047-ref.html", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "counter-increment-053.xht": [ - "f6995146c41724ef106bbde5d42a1a00c400b8de", + "padding-top-024.xht": [ + "fc82fc181f9d82956c26487c86e0b539260efe04", [ null, [ [ - "/css/CSS2/lists/counter-increment-053-ref.html", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "counter-increment-054.xht": [ - "4bee61008b0c5be53455e48892628a786183eb3b", + "padding-top-025.xht": [ + "8e2a4f8d76f578833ecdf442513ff170212c0765", [ null, [ [ - "/css/CSS2/lists/counter-increment-054-ref.html", + "/css/CSS2/margin-padding-clear/margin-top-031-ref.xht", "==" ] ], {} ] ], - "counter-increment-055.xht": [ - "4b4b02226aa46930b13e4e153f20423183586e5b", + "padding-top-026.xht": [ + "f4f1c04a7cd9370e4ae56645587067f119b0719a", [ null, [ [ - "/css/CSS2/lists/counter-increment-055-ref.html", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "counter-increment-applies-to-001.xht": [ - "d31c30b5bf2703fd831e87a6d0897f7fef94f11f", + "padding-top-027.xht": [ + "f5f24da22b224d232e895e1478a38d0bf331b8a7", [ null, [ [ - "/css/reference/pass_if_number_5.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "counter-increment-applies-to-002.xht": [ - "f28563993bf5e4e0abee5c02f38fd61776fe68c6", + "padding-top-028.xht": [ + "10ab6625b943dd6f6a9bf8ca3cc7e91bf304e28b", [ null, [ [ - "/css/reference/pass_if_number_5.xht", + "/css/CSS2/margin-padding-clear/margin-top-031-ref.xht", "==" ] ], {} ] ], - "counter-increment-applies-to-003.xht": [ - "64094d6624c76c74adfacc6f777021a0e328be52", + "padding-top-029.xht": [ + "7cb22be7a331f9f07ec6cd2bc2ca145163c14c0e", [ null, [ [ - "/css/reference/pass_if_number_5.xht", + "/css/CSS2/margin-padding-clear/margin-top-031-ref.xht", "==" ] ], {} ] ], - "counter-increment-applies-to-004.xht": [ - "b6d47533083013b9969a00f1b20335514d0ab6d4", + "padding-top-034.xht": [ + "a99427a3e8ea8c1d8ed2d0018bb4c21d3168cdd3", [ null, [ [ - "/css/reference/pass_if_number_5.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "counter-increment-applies-to-005.xht": [ - "1e79cd817ccc2391285f357a465fe761da0d5e27", + "padding-top-035.xht": [ + "15c5eb7796ceab4c2c14f259b8461b58fb7f2906", [ null, [ [ - "/css/reference/pass_if_number_5.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "counter-increment-applies-to-006.xht": [ - "eee43d628eb5394a46c77b4146138e8a02fea15a", + "padding-top-037.xht": [ + "2b8ebc610db0318c6730f7f68c802eaee4090178", [ null, [ [ - "/css/reference/pass_if_number_5.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "counter-increment-applies-to-007.xht": [ - "e16a61efe0aab564ab582ef1bfd4766b4bf3766a", + "padding-top-038.xht": [ + "e41d129749eb955e15f2a9f143978804f301fd5b", [ null, [ [ - "/css/reference/pass_if_number_5.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "counter-increment-applies-to-008.xht": [ - "214b9599b563569c78437f911fd083d102af28e3", + "padding-top-039.xht": [ + "b52d110f4c480797883ba589c8af331df025ea28", [ null, [ [ - "/css/reference/pass_if_number_5.xht", + "/css/CSS2/margin-padding-clear/margin-top-043-ref.xht", "==" ] ], {} ] ], - "counter-increment-applies-to-009.xht": [ - "da02258969376accb62a0cd46205abc3e4f31955", + "padding-top-040.xht": [ + "ca99e58de22947c9f6f6cba111f4738ccfeab4ef", [ null, [ [ - "/css/reference/pass_if_number_5.xht", + "/css/CSS2/margin-padding-clear/margin-top-043-ref.xht", "==" ] ], {} ] ], - "counter-increment-applies-to-012.xht": [ - "cb64a80f26714183fcaa5d489b4195ce6d6c0451", + "padding-top-045.xht": [ + "6cb435e37b31da7c2a0bbef21d64b20659adbe3e", [ null, [ [ - "/css/reference/pass_if_number_5.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "counter-increment-applies-to-013.xht": [ - "7852c855882a20dcd9ba408ef795d56e5991fb55", + "padding-top-046.xht": [ + "348db0eabe8346319d0e4a0c8921a10d2bfccad1", [ null, [ [ - "/css/reference/pass_if_number_5.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "counter-increment-applies-to-014.xht": [ - "e3dec29315530dbde635e41c206939ed53baf646", + "padding-top-048.xht": [ + "7a19528560c8eeafe8315292ebed95731b5c67d4", [ null, [ [ - "/css/reference/pass_if_number_5.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "counter-increment-applies-to-015.xht": [ - "d184e2ddb5c5c05f14a0cd7ee6cc3397d14e24f6", + "padding-top-049.xht": [ + "4521515e652cd8ab0cb45d891ee3c4c90d404f29", [ null, [ [ - "/css/reference/pass_if_number_5.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "counter-increment-visibility-001.xht": [ - "4a71e6f6a6763474e7a4284cfcca28c2b1a795e8", + "padding-top-050.xht": [ + "51aabd482916eb74bb4ea427bd75e94bb73efd19", [ null, [ [ - "/css/reference/pass_if_number_5.xht", + "/css/CSS2/margin-padding-clear/margin-top-043-ref.xht", "==" ] ], {} ] ], - "counter-reset-005.xht": [ - "8d72c6e79c0a40fd11e23fbeda9004a6585da38d", + "padding-top-051.xht": [ + "27ef8d7ebd17ba13e55b0712cbef53dc42c45d7a", [ null, [ [ - "/css/CSS2/reference/pass-if-number-0-30px.xht", + "/css/CSS2/margin-padding-clear/margin-top-043-ref.xht", "==" ] ], {} ] ], - "counter-reset-006.xht": [ - "9c1831227ef00addf1c5119aafe241cc703d9518", + "padding-top-056.xht": [ + "abbe774e49f134841255c7720df6e43f4c9477e3", [ null, [ [ - "/css/CSS2/reference/pass-if-number-0-30px.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "counter-reset-007.xht": [ - "d2f67f346ecb360081f5abaf908730c048a3c655", + "padding-top-057.xht": [ + "141b2a4f6a97e0f061df7e41140144f7f88d3942", [ null, [ [ - "/css/CSS2/reference/pass-if-number-0-30px.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "counter-reset-008.xht": [ - "490fd3c4bfdf24c65648845a22865859bc8ddc68", + "padding-top-058.xht": [ + "b06aad202d2a9beff2a1d2ee1d92ea7fbc0a31d3", [ null, [ [ - "/css/reference/pass_if_number_10.html", + "/css/CSS2/margin-padding-clear/margin-top-043-ref.xht", "==" ] ], {} ] ], - "counter-reset-009.xht": [ - "f5770b7b1d47ed6caa069ff6d0ce47ce01390fb4", + "padding-top-059.xht": [ + "079e7f25d6ed4bef7b09bec610bca3baabc5d5a3", [ null, [ [ - "/css/reference/pass_if_number_10.html", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "counter-reset-014.xht": [ - "df1769fe2a6e4eab5fa147d3ebe45caf70c9ef19", + "padding-top-060.xht": [ + "5cf203b0a32d31a635b9d8316e10dcb3c1c7a6dd", [ null, [ [ - "/css/CSS2/reference/pass-if-number-0-30px.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "counter-reset-018.xht": [ - "a52732e9787d4cd2f04231358cd634d5a1f8f552", + "padding-top-061.xht": [ + "297c43555baba51fd888186c56b5ce0f7d077206", [ null, [ [ - "/css/CSS2/reference/pass-if-number-0-30px.xht", + "/css/CSS2/margin-padding-clear/margin-top-043-ref.xht", "==" ] ], {} ] ], - "counter-reset-019.xht": [ - "6a44ed4c191f27ee39b157dccda00c4006336502", + "padding-top-062.xht": [ + "1d24a82b32036cecebc615ee3070df07c161e4c1", [ null, [ [ - "/css/CSS2/reference/pass-if-number-0-30px.xht", + "/css/CSS2/margin-padding-clear/margin-top-043-ref.xht", "==" ] ], {} ] ], - "counter-reset-020.xht": [ - "9081fbd7e85375731fcf4538238580de4f8b4601", + "padding-top-067.xht": [ + "bd01846cf010e83c0de7a0cc174e8c6eda35c0dc", [ null, [ [ - "/css/CSS2/reference/pass-if-number-0-30px.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "counter-reset-021.xht": [ - "90e6390f3548684552ea6b9de3f7adc921141f97", + "padding-top-068.xht": [ + "7679ece32b0985b2ba816150bffd77ba591c5e9a", [ null, [ [ - "/css/reference/pass_if_number_10.html", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "counter-reset-022.xht": [ - "48cb7934e39e51e167fbdedc0714e8c3c9612f75", + "padding-top-069.xht": [ + "1201441d0830fe5c2f8919571f0aef444f241b8e", [ null, [ [ - "/css/reference/pass_if_number_10.html", + "/css/CSS2/margin-padding-clear/margin-top-079-ref.xht", "==" ] ], {} ] ], - "counter-reset-027.xht": [ - "934679312c5d22bbdb5138ef7f14df7059741d3f", + "padding-top-070.xht": [ + "4cee7eb715feae868f711c294c4256eedc54cf9e", [ null, [ [ - "/css/CSS2/reference/pass-if-number-0-30px.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "counter-reset-031.xht": [ - "66fbc574264685ec826511de4976aa45152ec12a", + "padding-top-071.xht": [ + "32a3a33232b917c8e1450fc422b21e4b8ad6b140", [ null, [ [ - "/css/CSS2/reference/pass-if-number-0-30px.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "counter-reset-032.xht": [ - "a58a8e05d8c18e4c9cf8e4a6135a04ef905b9638", + "padding-top-072.xht": [ + "91b5197c6c79a6558164ea2c8dfbaaadb9f3177e", [ null, [ [ - "/css/CSS2/reference/pass-if-number-0-30px.xht", + "/css/CSS2/margin-padding-clear/margin-top-079-ref.xht", "==" ] ], {} ] ], - "counter-reset-033.xht": [ - "22e87336b57c9b3ebd38e47649d9ad3ae1105730", + "padding-top-073.xht": [ + "7e0dfd3d7265cb7311823952fa30db87f0fa846f", [ null, [ [ - "/css/CSS2/reference/pass-if-number-0-30px.xht", + "/css/CSS2/margin-padding-clear/margin-top-079-ref.xht", "==" ] ], {} ] ], - "counter-reset-034.xht": [ - "c3cddb8bfb5841ef82d7ab795360f993d0448e4f", + "padding-top-078.xht": [ + "04e40d6f84bb6e6df2ab0cdc6fc36aff6e6e79cc", [ null, [ [ - "/css/reference/pass_if_number_10.html", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "counter-reset-035.xht": [ - "f3914d0ccb34f5c3cf4e29566d850dfccd355b76", + "padding-top-079.xht": [ + "e8ee3606ec4d3ffe5c78bf872be1a124fd7ff42f", [ null, [ [ - "/css/reference/pass_if_number_10.html", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "counter-reset-040.xht": [ - "99acfce6ba8b0fd1061b5f0d9d88d2efbb1a2a6c", + "padding-top-080.xht": [ + "2ab113a5a9000724abdfea5484fb33f8ca749bc4", [ null, [ [ - "/css/CSS2/reference/pass-if-number-0-30px.xht", + "/css/CSS2/margin-padding-clear/margin-top-031-ref.xht", "==" ] ], {} ] ], - "counter-reset-044.xht": [ - "c9f5ff35f0b85629f559338a9204d870e93b1ae8", + "padding-top-081.xht": [ + "71932ec4fdc9cff6003b01aecb00c557456d4eb9", [ null, [ [ - "/css/CSS2/reference/pass-if-number-0-30px.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "counter-reset-045.xht": [ - "f60bb35c8d433d8351181ce01e62d671419ffad1", + "padding-top-082.xht": [ + "da2afd60944b4b30ef30b0a8a2887d1c9d71de60", [ null, [ [ - "/css/CSS2/reference/pass-if-number-0-30px.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "counter-reset-046.xht": [ - "04036352cb3ff2f0fde20bee499a4fe3ac9a0bf5", + "padding-top-083.xht": [ + "3ecf9cc9313f7d466f0d95d710f7b85fe2063143", [ null, [ [ - "/css/CSS2/reference/pass-if-number-0-30px.xht", + "/css/CSS2/margin-padding-clear/margin-top-031-ref.xht", "==" ] ], {} ] ], - "counter-reset-047.xht": [ - "70fc34d7d24630891e62a4e143a44e9cfeceb273", + "padding-top-084.xht": [ + "4ba9db81f1992a7a69eaadcdbc0bca894711c074", [ null, [ [ - "/css/reference/pass_if_number_10.html", + "/css/CSS2/margin-padding-clear/margin-top-031-ref.xht", "==" ] ], {} ] ], - "counter-reset-048.xht": [ - "cddbd21a8f634d9629411ba0e556bc5795a092f2", + "padding-top-089.xht": [ + "cb0528837c1c70bb58fc2ce5cfe30dc03616caa2", [ null, [ [ - "/css/reference/pass_if_number_10.html", + "/css/CSS2/margin-padding-clear/margin-bottom-100-ref.xht", "==" ] ], {} ] ], - "counter-reset-055.xht": [ - "fdcab5fdd793220fce64cb7b2635776faf18ac68", + "padding-top-090.xht": [ + "3d9400fbd7a589599578184866dd8460b0d36f14", [ null, [ [ - "/css/CSS2/reference/pass-if-number-0-30px.xht", + "/css/CSS2/margin-padding-clear/margin-bottom-100-ref.xht", "==" ] ], {} ] ], - "counter-reset-applies-to-001.xht": [ - "feef6468487f8e16f9ccaddd23df368c0c53a5b5", + "padding-top-091.xht": [ + "e091557d07bb30979e9704c1d6537ca5a7518d3d", [ null, [ [ - "/css/reference/pass_if_number_5.xht", + "/css/CSS2/margin-padding-clear/padding-top-091-ref.xht", "==" ] ], {} ] ], - "counter-reset-applies-to-002.xht": [ - "a4bd0ad64071477a6cd79f6a20f351247b8a4ca0", + "padding-top-092.xht": [ + "59a4c7e2fb7835c31fd628b70a06e7456d5a1374", [ null, [ [ - "/css/reference/pass_if_number_5.xht", + "/css/CSS2/margin-padding-clear/margin-bottom-100-ref.xht", "==" ] ], {} ] ], - "counter-reset-applies-to-003.xht": [ - "e634745199e3ba99b7bb68ba8ce437ab423ce732", + "padding-top-093.xht": [ + "89e1cc83e3b2acc43c4c88a5646b9bf03043f8cb", [ null, [ [ - "/css/reference/pass_if_number_5.xht", + "/css/CSS2/margin-padding-clear/margin-bottom-100-ref.xht", "==" ] ], {} ] ], - "counter-reset-applies-to-004.xht": [ - "9b871d2e91f0bc89f27955323fd629eec719383a", + "padding-top-094.xht": [ + "f91b8146f5e4957bbc6585d39bec03f10d43666c", [ null, [ [ - "/css/reference/pass_if_number_5.xht", + "/css/CSS2/margin-padding-clear/margin-top-103-ref.xht", "==" ] ], {} ] ], - "counter-reset-applies-to-005.xht": [ - "ba3828fc5f7b65852e96a13775a20a7e3c309c4f", + "padding-top-095.xht": [ + "c9ffe4766bb041b02317e0d216488be82e5d3d4f", [ null, [ [ - "/css/reference/pass_if_number_5.xht", + "/css/CSS2/margin-padding-clear/margin-top-103-ref.xht", "==" ] ], {} ] ], - "counter-reset-applies-to-006.xht": [ - "1858dc1d1a0be93fc6c018d2151c3ce344380f04", + "padding-top-100.xht": [ + "cfb63c36c1523149e857e14236b88af76d8df249", [ null, [ [ - "/css/reference/pass_if_number_5.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "counter-reset-applies-to-007.xht": [ - "494e91fd8eb2f032735198b7ad7f3c20dc6a6614", + "padding-top-101.xht": [ + "932b911422d4448d0ca3f73f6bc6a98e08e0cb30", [ null, [ [ - "/css/reference/pass_if_number_5.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "counter-reset-applies-to-008.xht": [ - "0391193eb61ce96ce44c9654fb99cc59d62b4f18", + "padding-top-102.xht": [ + "0d2930f517ae784c9ea5e3eafda93c35415c57ac", [ null, [ [ - "/css/reference/pass_if_number_5.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "counter-reset-applies-to-009.xht": [ - "f0f14b882cd5d846bc18a4df42c701604bf0dc09", + "padding-top-103.xht": [ + "d7162a0c40207c47085d6161b54e07f2fd4c94be", [ null, [ [ - "/css/reference/pass_if_number_5.xht", + "/css/CSS2/margin-padding-clear/padding-top-103-ref.xht", "==" ] ], {} ] ], - "counter-reset-applies-to-012.xht": [ - "29bd951c3785c1dc7a9d0b2ef2eeab6ea8efde25", + "padding-top-applies-to-001.xht": [ + "a97620f9bd96e8579ef617fcdc8d1425fab0e621", [ null, [ [ - "/css/reference/pass_if_number_5.xht", + "/css/CSS2/margin-padding-clear/margin-top-applies-to-001-ref.xht", "==" ] ], {} ] ], - "counter-reset-applies-to-013.xht": [ - "25877b448d4245f587eea50f37571ec988071218", + "padding-top-applies-to-002.xht": [ + "bf11834db00e7489c2efaf44d623de953873449a", [ null, [ [ - "/css/reference/pass_if_number_5.xht", + "/css/CSS2/margin-padding-clear/margin-top-applies-to-001-ref.xht", "==" ] ], {} ] ], - "counter-reset-applies-to-014.xht": [ - "34bfbbdd4911e9fb5d8ab258c6d22b58b6f518b8", + "padding-top-applies-to-003.xht": [ + "5f84f072ab774407be3f57e5c4c255f6899c2f09", [ null, [ [ - "/css/reference/pass_if_number_5.xht", + "/css/CSS2/margin-padding-clear/margin-top-applies-to-001-ref.xht", "==" ] ], {} ] ], - "counter-reset-applies-to-015.xht": [ - "3c3c0a3a7ad81f20f5b37f3145aff1cac6e6c435", + "padding-top-applies-to-004.xht": [ + "404e7b18f209cf9ad6986981ff227eb88c327930", [ null, [ [ - "/css/reference/pass_if_number_5.xht", + "/css/CSS2/margin-padding-clear/margin-top-applies-to-001-ref.xht", "==" ] ], {} ] ], - "counter-reset-increment-002.xht": [ - "ac4518716a87f2a2249607e22f12a26c51417392", + "padding-top-applies-to-005.xht": [ + "0d014ddfb479a90ec6383f23c993c1efa0656687", [ null, [ [ - "/css/CSS2/lists/counter-reset-increment-002-ref.xht", + "/css/CSS2/margin-padding-clear/margin-top-applies-to-001-ref.xht", "==" ] ], {} ] ], - "counter-reset-visibility-001.xht": [ - "20cc8de30b6fa984a3590a86bbe098bcc8cd345a", + "padding-top-applies-to-006.xht": [ + "82ba6a1601500f40d6757f1db92d0f52e8a02d7d", [ null, [ [ - "/css/reference/pass_if_number_5.xht", + "/css/CSS2/margin-padding-clear/margin-top-applies-to-001-ref.xht", "==" ] ], {} ] ], - "increment-counter-001.xht": [ - "8fb7f6bd7e9fc20ff7dc69a985b4ebadcde47266", + "padding-top-applies-to-007.xht": [ + "7c8da679efba00e26621225220e013a54fb3bb72", [ null, [ [ - "/css/reference/pass_if_number_5.xht", + "/css/CSS2/margin-padding-clear/margin-top-applies-to-012-ref.xht", "==" ] ], {} ] ], - "list-style-019.xht": [ - "a1f3ff062ed94e2021a21c1ca1f05a8afdb03fa9", + "padding-top-applies-to-009.xht": [ + "c743a8fa20f37fbe5f866b65d75af4d5e4503491", [ null, [ [ - "/css/CSS2/lists/list-style-019-ref.xht", + "/css/CSS2/margin-padding-clear/margin-bottom-applies-to-009-ref.xht", "==" ] ], {} ] ], - "list-style-020.xht": [ - "d49932e1f53d4b3b161fa98032b5ce27a5da4dae", + "padding-top-applies-to-012.xht": [ + "a050ba3fcefd8adddb20f2341f460fb75705ed83", [ null, [ [ - "/css/CSS2/lists/list-style-020-ref.xht", + "/css/CSS2/margin-padding-clear/margin-top-applies-to-012-ref.xht", "==" ] ], {} ] ], - "list-style-021.xht": [ - "07d638845d9a45dc003760eab02304899578829a", + "padding-top-applies-to-013.xht": [ + "a8296ad0b67857be9342a61a7c04d8099fc6f97d", [ null, [ [ - "/css/CSS2/lists/list-style-021-ref.xht", + "/css/CSS2/margin-padding-clear/margin-top-applies-to-013-ref.xht", "==" ] ], {} ] ], - "list-style-applies-to-001.xht": [ - "cd1e49f47ac1fe6862c6a3c3c79c0134d25622e3", + "padding-top-applies-to-014.xht": [ + "4759548cfed17f10bf78326a4df57a0bf774ca45", [ null, [ [ - "/css/reference/single_square_list_marker.xht", + "/css/CSS2/margin-padding-clear/margin-top-applies-to-013-ref.xht", "==" ] ], {} ] ], - "list-style-applies-to-002.xht": [ - "9266ba048cbf65a5dbe5a9ec9a6fcef2d5b7ccfa", + "padding-top-applies-to-015.xht": [ + "5b5c13f0f3cc2223415af02237fedd61619d131a", [ null, [ [ - "/css/reference/single_square_list_marker.xht", + "/css/CSS2/margin-padding-clear/margin-top-applies-to-012-ref.xht", "==" ] ], {} ] - ], - "list-style-applies-to-003.xht": [ - "81c984e40003bfb10717ee5deeffc7b91e70f697", + ] + }, + "media": { + "media-dependency-001.xht": [ + "dbef307964c6f92697b818aaf715b10dc1bf17ba", [ null, [ [ - "/css/reference/single_square_list_marker.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "list-style-applies-to-004.xht": [ - "baf9ae7ab3044e151ad1d9b5f501d9ff207a39d7", + "media-dependency-002.xht": [ + "e63fc5c251b568b2125681ee013809e530948d09", [ null, [ [ - "/css/reference/single_square_list_marker.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "list-style-applies-to-007.xht": [ - "f0528be49e2c0a5f1dc58751820bc404727f46ca", + "media-dependency-003.xht": [ + "d5bc9496ecb4ad272562e2b8930a4f9b5ca7ad1c", [ null, [ [ - "/css/reference/single_square_list_marker.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "list-style-applies-to-008.xht": [ - "630d1007a57918703dcccd140cbbd65f8ac8c267", + "media-dependency-004.xht": [ + "b8b909daf066f65a428f7884281629b641cf11a4", [ null, [ [ - "/css/reference/single_square_list_marker.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "list-style-applies-to-009.xht": [ - "1c9d4554447163f029f814a86ebb2215159b9791", + "media-dependency-005.xht": [ + "c7eea0c173177ffe2a327929778e4b205c1eceb0", [ null, [ [ - "/css/reference/single_square_list_marker.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "list-style-applies-to-010.xht": [ - "71533ea0b4d01458014546bd0031153505daca95", + "media-dependency-006.xht": [ + "3dd7d4440df9975490e85c0e38e9d1db05f1d643", [ null, [ [ - "/css/reference/single_square_list_marker.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "list-style-applies-to-012.xht": [ - "8fdec89f7ad15833c54cf14a8d59f553dc4a6d04", + "media-dependency-007.xht": [ + "3a72aa303b544fe037e651dd9e8394eab8b84c68", [ null, [ [ - "/css/reference/single_square_list_marker.xht", + "/css/CSS2/reference/no-red-filler-text-ref.xht", "==" ] ], {} ] ], - "list-style-applies-to-013.xht": [ - "eddac5746c53c17b6d0f6bcf3250663d795cf8cc", + "media-dependency-008.xht": [ + "6f150ddf774e05fcaed26ff0671268cff86104c8", [ null, [ [ - "/css/reference/single_square_list_marker.xht", + "/css/CSS2/reference/no-red-filler-text-ref.xht", "==" ] ], {} ] ], - "list-style-applies-to-014.xht": [ - "e439649e59a6b4ad64c067620eba4274eb658861", + "media-dependency-009.xht": [ + "2272f81171ba77608a5e8c8ee025503254cc2f7b", [ null, [ [ - "/css/reference/single_square_list_marker.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "list-style-applies-to-015.xht": [ - "34adec269f2416ee8f817f874fb0165673d3350d", + "media-dependency-010.xht": [ + "642725dd4f794e635d587f74998e993b9e114229", [ null, [ [ - "/css/reference/single_square_list_marker.xht", + "/css/CSS2/reference/no-red-filler-text-ref.xht", "==" ] ], {} ] ], - "list-style-image-004.xht": [ - "f16fdd9b9444fd8e909ca6bbb2b9233f013408e0", + "media-dependency-011.xht": [ + "37245e1c061967acf5724c5971be79a5ef484575", [ null, [ [ - "/css/CSS2/lists/list-style-image-004-ref.xht", + "/css/CSS2/reference/no-red-filler-text-ref.xht", "==" ] ], {} ] ], - "list-style-image-005.xht": [ - "c6d15492be6ebc088b0fb5eb420512eb0d76ba66", + "media-dependency-012.xht": [ + "d67320f1fa693b0814fc4aaac9f12aeb7ec8e16e", [ null, [ [ - "/css/CSS2/lists/list-style-image-005-ref.xht", + "/css/CSS2/reference/no-red-filler-text-ref.xht", "==" ] ], {} ] ], - "list-style-image-007.html": [ - "9ee947aa93d9f1c1cf3651354e10c6a33f296852", + "media-dependency-013.xht": [ + "c64593c5775c0bc16fc8991976917a4120d47a9e", [ - "css/CSS2/lists/list-style-image-007.html", + null, [ [ - "/css/CSS2/lists/list-style-image-007-ref.html", + "/css/CSS2/reference/no-red-filler-text-ref.xht", "==" ] ], {} ] ], - "list-style-position-018.xht": [ - "8c3f614beba4d25d1a11396e657499fed5f089b3", + "media-dependency-014.xht": [ + "ccea54a6b0aa9bfa73fa66f812c4a63634f22651", [ null, [ [ - "/css/CSS2/lists/list-style-position-018-ref.xht", + "/css/CSS2/reference/no-red-filler-text-ref.xht", "==" ] ], {} ] ], - "list-style-position-023.xht": [ - "8169a016422a5e9d78038c78e58b59734d8c1186", + "media-dependency-015.xht": [ + "498d0ad84b1a347a9f2fab3ba1dd98728dbbd1c1", [ null, [ [ - "/css/CSS2/lists/list-style-position-023-ref.xht", + "/css/CSS2/reference/no-red-filler-text-ref.xht", "==" ] ], {} ] ], - "list-style-position-024.xht": [ - "78ff54b630fd51e3066c6a73828b8ac4486f03f1", + "media-dependency-016.xht": [ + "816f642aa178e989b651d1d40a79b2f8fc60f192", [ null, [ [ - "/css/CSS2/lists/list-style-position-024-ref.xht", + "/css/CSS2/reference/no-red-filler-text-ref.xht", "==" ] ], {} ] ], - "list-style-type-applies-to-001.xht": [ - "3b8c9d842df5163c020a4bf2bbb19bad33eb18a9", + "media-dependency-017.xht": [ + "e570e5e2a6b0494c93485236a54cab0796d5d2f1", [ null, [ [ - "/css/reference/single_square_list_marker.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] - ], - "list-style-type-applies-to-002.xht": [ - "9f9c2c3d3921a9f11c19d18dc8bc3c8596092798", + ] + }, + "normal-flow": { + "block-formatting-context-height-001.xht": [ + "9f0d3750d83a2ef690f1136e7e9e47b7561a2846", [ null, [ [ - "/css/reference/single_square_list_marker.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "list-style-type-applies-to-003.xht": [ - "e984e8105c9572584b61435ad33c788c8bc4c4de", + "block-formatting-context-height-002.xht": [ + "329680e03a9128f5f8ce93c13d045a6b1976230b", [ null, [ [ - "/css/reference/single_square_list_marker.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "list-style-type-applies-to-004.xht": [ - "4840a52eec505fda8df5cefd4122b7a2bb4b04f8", + "block-formatting-context-height-003.xht": [ + "2dd9652b40b654b33181e52d025593ac903d27b6", [ null, [ [ - "/css/reference/single_square_list_marker.xht", + "/css/CSS2/normal-flow/block-formatting-context-height-003-ref.xht", "==" ] ], {} ] ], - "list-style-type-applies-to-007.xht": [ - "d5b5115e6a492682411d40918316446faaec1dd7", + "block-formatting-contexts-001.xht": [ + "a5eeee351582834145995d78eda10c4c78d2710d", [ null, [ [ - "/css/reference/single_square_list_marker.xht", + "/css/CSS2/normal-flow/block-formatting-contexts-001-ref.xht", "==" ] ], {} ] ], - "list-style-type-applies-to-008.xht": [ - "022ce8eac1c78136f9bf8202fa8b4c3c64573c69", + "block-formatting-contexts-003.xht": [ + "618aa86469d28369737ea99530ffd76104092d74", [ null, [ [ - "/css/reference/single_square_list_marker.xht", + "/css/CSS2/normal-flow/block-formatting-contexts-003-ref.xht", "==" ] ], {} ] ], - "list-style-type-applies-to-009.xht": [ - "08f70730615c711b2a3dde67ea3376984d051078", + "block-formatting-contexts-004.xht": [ + "3532c55bb0ab08075fd8f8e2520cfce6c92ac99e", [ null, [ [ - "/css/reference/single_square_list_marker.xht", + "/css/CSS2/normal-flow/block-formatting-contexts-004-ref.xht", "==" ] ], {} ] ], - "list-style-type-applies-to-010.xht": [ - "df82d5b0015b0036ff176cb21788174988ac7dc7", + "block-formatting-contexts-005.xht": [ + "82828503c47ed51aa708d79a1f03aad89daf29d8", [ null, [ [ - "/css/reference/single_square_list_marker.xht", + "/css/CSS2/normal-flow/block-formatting-contexts-005-ref.xht", "==" ] ], {} ] ], - "list-style-type-applies-to-012.xht": [ - "c0134f2116bd7ed9550d461d54ac8ca028056f51", + "block-formatting-contexts-006.xht": [ + "3fe17cb596860f98ece4758109c1a01e06b92ca8", [ null, [ [ - "/css/reference/single_square_list_marker.xht", + "/css/CSS2/normal-flow/block-formatting-contexts-006-ref.xht", "==" ] ], {} ] ], - "list-style-type-applies-to-013.xht": [ - "5729e67605928438960f0f7c8b2090d03862df7e", + "block-formatting-contexts-007.xht": [ + "2c48a07385e10a5758f89070553e5ebd680a5762", [ null, [ [ - "/css/reference/single_square_list_marker.xht", + "/css/CSS2/normal-flow/block-formatting-contexts-005-ref.xht", "==" ] ], {} ] ], - "list-style-type-applies-to-014.xht": [ - "9af75890b01f71f8d31d7cdc6931f7abd171901a", + "block-formatting-contexts-008.xht": [ + "45260d4d033b1ab1c64e9748ca159a9813a23b93", [ null, [ [ - "/css/reference/single_square_list_marker.xht", + "/css/CSS2/normal-flow/block-formatting-contexts-008-ref.xht", "==" ] ], {} ] ], - "list-style-type-applies-to-015.xht": [ - "c7707adc11dfa7cf4ed124e080c24bbbfe844588", + "block-formatting-contexts-009.xht": [ + "f9f3f23b5fc2a54e8a5b0fb5398a36d6ae9b16fd", [ null, [ [ - "/css/reference/single_square_list_marker.xht", + "/css/CSS2/normal-flow/block-formatting-contexts-008-ref.xht", "==" ] ], {} ] ], - "reset-counter-001.xht": [ - "e1654073beb97ab8a576de700a7fb57f9a4a704b", + "block-formatting-contexts-010.xht": [ + "69a15eda5f6b3c88fb87c2ea768b14f17a13df99", [ null, [ [ - "/css/reference/pass_if_number_5.xht", + "/css/CSS2/normal-flow/block-formatting-contexts-008-ref.xht", "==" ] ], {} ] - ] - }, - "margin-padding-clear": { - "margin-001.xht": [ - "85264b1a984105ea916ee50c11d1263f37483751", + ], + "block-formatting-contexts-011.xht": [ + "ba8026e9038be40c58073384539d9c3a658d727a", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-001-ref.xht", + "/css/CSS2/normal-flow/block-formatting-contexts-011-ref.xht", "==" ] ], {} ] ], - "margin-002.xht": [ - "a2de2f9ec3a98857eefc8284375d63251bffee60", + "block-formatting-contexts-012.xht": [ + "3e2a901de7daf3f44378b9614d89e455ee30e58b", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-002-ref.xht", + "/css/CSS2/normal-flow/block-formatting-contexts-008-ref.xht", "==" ] ], {} ] ], - "margin-003.xht": [ - "cc8362fdba0e456a8d997b5c020d00c80066baee", + "block-formatting-contexts-015.xht": [ + "72b5d16f56f65c0fc69e432ba6bf7c7ca14bc44a", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-003-ref.xht", + "/css/CSS2/normal-flow/block-formatting-contexts-015-ref.xht", "==" ] ], {} ] ], - "margin-004.xht": [ - "6fb987ffb8705704e6999c4e84b37f5ecb3d4e24", + "block-formatting-contexts-016.xht": [ + "aee530bcf15a065907fc6f865f09bf7e6888682e", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-004-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "margin-005.xht": [ - "14d620b20495f07889f1564a623bfd671e60763e", + "block-in-inline-align-001.html": [ + "70abbbfd023fc2d93632caf07156ab2a14c26c3f", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-005-ref.xht", + "/css/CSS2/normal-flow/block-in-inline-align-001-ref.html", "==" ] ], {} ] ], - "margin-006.xht": [ - "2df49b6c175f45558eee9959fab4b73de37c572e", + "block-in-inline-align-justify-001.html": [ + "7899b624a7ba960f90060f4ad81206c34a23b0ed", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-006-ref.xht", + "/css/CSS2/normal-flow/block-in-inline-align-justify-001-ref.html", "==" ] ], {} ] ], - "margin-007.xht": [ - "ec2105964528da311adff93c2699b2cbbc9cfbf8", + "block-in-inline-align-last-001.html": [ + "772a742a4a7ad33c05918063b93784db3bbe4745", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-007-ref.xht", + "/css/CSS2/normal-flow/block-in-inline-align-last-001-ref.html", "==" ] ], {} ] ], - "margin-008.xht": [ - "468884d2c5121d00fdbe9dd0bb9987bc0f37281c", + "block-in-inline-append-001.xht": [ + "08b2d897ad4868d82dc7e212b0ac2c24a3d1dfa4", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-008-ref.xht", + "/css/CSS2/normal-flow/block-in-inline-append-001-ref.xht", "==" ] ], {} ] ], - "margin-009.xht": [ - "afb4bb9880f23e92dc7e40dffdc5500ba1a6ff65", + "block-in-inline-append-002-nosplit-ref.xht": [ + "eb95211516eabb5a9190c1f44addf376d60b2afd", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-009-ref.xht", + "/css/CSS2/normal-flow/block-in-inline-append-002-ref.xht", "==" ] ], {} ] ], - "margin-applies-to-001.xht": [ - "468ca8eb2b91fdd7ce7140086807f4ee5c5a518e", + "block-in-inline-append-002-ref.xht": [ + "3b5f911834b176fcdeb0de36a9c937ec63cd194e", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-applies-to-001-ref.xht", + "/css/CSS2/normal-flow/block-in-inline-append-002-nosplit-ref.xht", "==" ] ], {} ] ], - "margin-applies-to-002.xht": [ - "619381c5c54c21e33799aa7ef4ec110517f19d50", + "block-in-inline-append-002.xht": [ + "671a40fc450b01ef973fde9195c63a0a001a985c", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-applies-to-001-ref.xht", + "/css/CSS2/normal-flow/block-in-inline-append-002-nosplit-ref.xht", "==" ] ], {} ] ], - "margin-applies-to-003.xht": [ - "02f8b373fb0a5082de51db4cb36109077924a1fa", + "block-in-inline-baseline-001.html": [ + "957eb4e0d4837b7632c28be619fbc20224d28bd0", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-applies-to-001-ref.xht", + "/css/CSS2/normal-flow/block-in-inline-baseline-001-ref.html", "==" ] ], {} ] ], - "margin-applies-to-004.xht": [ - "9a90f4f66468bcab8b7287b33bfbae3df0803ace", + "block-in-inline-empty-001.xht": [ + "74a4d4ef85ec839df660d606f49048d18e605c8c", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-applies-to-001-ref.xht", + "/css/CSS2/normal-flow/block-in-inline-empty-001-ref.xht", "==" ] ], {} ] ], - "margin-applies-to-005.xht": [ - "3add8b9f0ef6dd33e0fabc025edd31d7eabbae00", + "block-in-inline-empty-002.xht": [ + "80c8bc54c52af784e88b659cb53aa94f654dc791", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-applies-to-001-ref.xht", + "/css/CSS2/normal-flow/block-in-inline-empty-002-ref.xht", "==" ] ], {} ] ], - "margin-applies-to-006.xht": [ - "a499cf2446762b4c4be6791b36814d6bbef1d6f1", + "block-in-inline-empty-003.xht": [ + "69a800021bfb8916d75aeeaa4b05ff56efacdad8", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-applies-to-001-ref.xht", + "/css/CSS2/normal-flow/block-in-inline-empty-003-ref.xht", "==" ] ], {} ] ], - "margin-applies-to-007.xht": [ - "272a72a4415944d93f5b444b7e59682bafb27d9d", + "block-in-inline-empty-004.xht": [ + "df219f4d7c8c67b622a21b56cc748b78b666b54f", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-applies-to-001-ref.xht", + "/css/CSS2/normal-flow/block-in-inline-empty-004-ref.xht", "==" ] ], {} ] ], - "margin-applies-to-009.xht": [ - "7faa285e62c05a37a9c1202fc9fece090b9c7308", + "block-in-inline-first-line-001.html": [ + "5dac0887e233e1873d6f5dd1d4c5b45e463a9201", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-applies-to-009-ref.xht", + "/css/CSS2/normal-flow/block-in-inline-first-line-001-ref.html", "==" ] ], {} ] ], - "margin-applies-to-012.xht": [ - "9f5d1b445b848ac553c12b792ecd9418af9d6fd3", + "block-in-inline-first-line-002.html": [ + "d0cf6071dd6f807836d5a7e7bab434dbabe88e42", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-applies-to-009-ref.xht", + "/css/CSS2/normal-flow/block-in-inline-first-line-002-ref.html", "==" ] ], {} ] ], - "margin-applies-to-013.xht": [ - "2cb806fa9e7bc0c98430ab683cab8227f4d138bd", + "block-in-inline-float-between-001.xht": [ + "d4d9e7da93510c18ce36c395d28f60058c00ba50", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-applies-to-009-ref.xht", + "/css/CSS2/normal-flow/block-in-inline-float-between-001-ref.xht", "==" ] ], {} ] ], - "margin-applies-to-014.xht": [ - "445ba6d9c5750695f1d7f8122707f74b6278047a", + "block-in-inline-float-in-layer-001.html": [ + "f177aca160a3735dc0d6e8e3cd9bc29734e6c17b", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-applies-to-009-ref.xht", + "/css/CSS2/normal-flow/block-in-inline-float-in-layer-001-ref.html", "==" ] ], {} ] ], - "margin-applies-to-015.xht": [ - "b15ec1c1ebc9386cc986cebc7e292734ae0561dd", + "block-in-inline-insert-001-nosplit-ref.xht": [ + "363ed9eefd444d2d8b2779f53367e3f8cccaeb9d", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-applies-to-009-ref.xht", + "/css/CSS2/normal-flow/block-in-inline-insert-001-ref.xht", "==" ] ], {} ] ], - "margin-auto-on-block-box.html": [ - "1afc98a91322feab5fe249b34c26274468fb0b22", + "block-in-inline-insert-001-ref.xht": [ + "9bfa6c82e19cefb4c3132a8981bf625d2d732fc5", [ - "css/CSS2/margin-padding-clear/margin-auto-on-block-box.html", + null, [ [ - "/css/CSS2/margin-padding-clear/margin-auto-on-block-box-ref.html", + "/css/CSS2/normal-flow/block-in-inline-insert-001-nosplit-ref.xht", "==" ] ], {} ] ], - "margin-backgrounds-002.xht": [ - "75c0211ca4b9c541eddb4b2698efd185574f0df4", + "block-in-inline-insert-001a.xht": [ + "d837d6c61169188becf2319e23c59de4a0dae024", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/normal-flow/block-in-inline-insert-001-nosplit-ref.xht", "==" ] ], {} ] ], - "margin-backgrounds-003.xht": [ - "51d0a619e1b75516d6f6b8f320810fd91bfd8f1b", + "block-in-inline-insert-001b.xht": [ + "a99adcd5e5e5141ec1ce5adbd779cd524d329de8", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/normal-flow/block-in-inline-insert-001-ref.xht", "==" ] ], {} ] ], - "margin-border-padding-001.xht": [ - "818ed0b3c10549a99d89de9c45f40e35418e9292", + "block-in-inline-insert-001c.xht": [ + "148c620bbc994725db8c9049c11790494d66907b", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-border-padding-001-ref.xht", + "/css/CSS2/normal-flow/block-in-inline-insert-001-ref.xht", "==" ] ], {} ] ], - "margin-border-padding-002.xht": [ - "381d1bdb71e3578d2ba7a93d1763b44bc91880aa", + "block-in-inline-insert-001d.xht": [ + "52b6cff801e6e94ec288f84299bacb8a6cca274e", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-border-padding-001-ref.xht", + "/css/CSS2/normal-flow/block-in-inline-insert-001-ref.xht", "==" ] ], {} ] ], - "margin-border-padding-003.xht": [ - "01e6dd7b0ba1457fdb660a0e5e19c4594eb47181", + "block-in-inline-insert-001e.xht": [ + "c393f84a406a359a2239420806838d4c7bd3e8e0", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-border-padding-001-ref.xht", + "/css/CSS2/normal-flow/block-in-inline-insert-001-ref.xht", "==" ] ], {} ] ], - "margin-bottom-004.xht": [ - "869cf9385e20bf9c08dc59d03bb27df5c6fb6343", + "block-in-inline-insert-001f.xht": [ + "0530b93e7ed37ceb1f5621c142bc9bcc106e5e2a", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/normal-flow/block-in-inline-insert-001-ref.xht", "==" ] ], {} ] ], - "margin-bottom-005.xht": [ - "88ab485357dcc17369e30cb9532dcfdf967f943b", + "block-in-inline-insert-001g.xht": [ + "43abc1df2bad88d3e0a8983cecab4cb4474a4eb7", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/normal-flow/block-in-inline-insert-001-ref.xht", "==" ] ], {} ] ], - "margin-bottom-006.xht": [ - "db983feb90b712e7b2d89c7b7b5c4926869c1937", + "block-in-inline-insert-001h.xht": [ + "e959da0dc08f612647d4ba3c8185df2527e5aee5", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/normal-flow/block-in-inline-insert-001-ref.xht", "==" ] ], {} ] ], - "margin-bottom-007.xht": [ - "859e29f57e0cd1ab91a2c89f75efd5e79d33dd05", + "block-in-inline-insert-001i.xht": [ + "6969a29f9dd055e37c28f6f3476f8d796a34fb9a", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-bottom-007-ref.xht", + "/css/CSS2/normal-flow/block-in-inline-insert-001-ref.xht", "==" ] ], {} ] ], - "margin-bottom-008.xht": [ - "ce0ae2f4c9a274bd0a23594f1b3c5534aaf8a3a9", + "block-in-inline-insert-001j.xht": [ + "32a9560a94b92a8611eb6d7dbf52dc2f5cccbe4d", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-bottom-007-ref.xht", + "/css/CSS2/normal-flow/block-in-inline-insert-001-ref.xht", "==" ] ], {} ] ], - "margin-bottom-016.xht": [ - "202d907685447056a1ad7da4b1a83a6298d77a82", + "block-in-inline-insert-001k.xht": [ + "7a7505afcb005994f7f7177e877d9c2726317355", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/normal-flow/block-in-inline-insert-001-ref.xht", "==" ] ], {} ] ], - "margin-bottom-017.xht": [ - "970313dd394ce845ad2bad6718c4f6cb98f835e3", + "block-in-inline-insert-001l.xht": [ + "bd4e636ebda12c614d307b39bad0a75509821d60", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/normal-flow/block-in-inline-insert-001-ref.xht", "==" ] ], {} ] ], - "margin-bottom-018.xht": [ - "fe9c09c5b4d566f9b0fc42a1f5a684dd702f4805", + "block-in-inline-insert-002-nosplit-ref.xht": [ + "f0d12c73bbe12e1c9f69f533a0ad6c615802906f", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/normal-flow/block-in-inline-insert-002-ref.xht", "==" ] ], {} ] ], - "margin-bottom-019.xht": [ - "a7cb15d064e776a4d2aa27fc579751e941cdff22", + "block-in-inline-insert-002-ref.xht": [ + "3ada136d44934cd4f900b13bbabf9262b043ef49", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-bottom-019-ref.xht", + "/css/CSS2/normal-flow/block-in-inline-insert-002-nosplit-ref.xht", "==" ] ], {} ] ], - "margin-bottom-020.xht": [ - "99800e4ca1ce2e71d07a75b730a8967876b7f0b9", + "block-in-inline-insert-002a.xht": [ + "58b2262b21b4acd0f5796047eba719f9d1faf985", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-bottom-019-ref.xht", + "/css/CSS2/normal-flow/block-in-inline-insert-002-nosplit-ref.xht", "==" ] ], {} ] ], - "margin-bottom-028.xht": [ - "7925fcb2fded37b605ac1354e84dd827c15319a5", + "block-in-inline-insert-002b.xht": [ + "bc18b4e9bc66243e37683fc29f0361ed2deda0fa", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/normal-flow/block-in-inline-insert-002-ref.xht", "==" ] ], {} ] ], - "margin-bottom-029.xht": [ - "5f9e225cb112873a0171554a4bbce81956ece380", + "block-in-inline-insert-002c.xht": [ + "5ef942439907ea70a12580cf4c851d216e85a0a8", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/normal-flow/block-in-inline-insert-002-ref.xht", "==" ] ], {} ] ], - "margin-bottom-030.xht": [ - "3b64f299280e16c003d0faea7b32f6733faf0b74", + "block-in-inline-insert-002d.xht": [ + "dc37ff791d69a97f019ca97ad6d34e882c890207", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/normal-flow/block-in-inline-insert-002-ref.xht", "==" ] ], {} ] ], - "margin-bottom-031.xht": [ - "4cf74fc375a25538cc833cb475342e86cb18b0e2", + "block-in-inline-insert-002e.xht": [ + "a9cc9b2ac27518cb3dfcb32a8df776b2b8a543e7", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-bottom-031-ref.xht", + "/css/CSS2/normal-flow/block-in-inline-insert-002-ref.xht", "==" ] ], {} ] ], - "margin-bottom-032.xht": [ - "ade5b3fdf223dab26eea8150aab0d51887d159df", + "block-in-inline-insert-002f.xht": [ + "770511b2257142e96af13c7ec64558b3b218a040", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-bottom-031-ref.xht", + "/css/CSS2/normal-flow/block-in-inline-insert-002-ref.xht", "==" ] ], {} ] ], - "margin-bottom-040.xht": [ - "e7f08579880f41d1ad760a4bf6e58323d992b6b2", + "block-in-inline-insert-002g.xht": [ + "212b88fa20cf416c931118969fac1a8446d91ded", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/normal-flow/block-in-inline-insert-002-ref.xht", "==" ] ], {} ] ], - "margin-bottom-041.xht": [ - "168a526cbaccf6ef8aa838bb0cfefa4f075fa863", + "block-in-inline-insert-002h.xht": [ + "77da8cbcaaf78d1d94e5408b1f7103766eb6d310", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/normal-flow/block-in-inline-insert-002-ref.xht", "==" ] ], {} ] ], - "margin-bottom-042.xht": [ - "6d5cda8e576e0e11d3a223ab8ce3ab4d976a782a", + "block-in-inline-insert-002i.xht": [ + "6993d3d8295c342d69318315083e4b977c340422", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/normal-flow/block-in-inline-insert-002-ref.xht", "==" ] ], {} ] ], - "margin-bottom-043.xht": [ - "0e52b614ef695d029b7db06b23066e052f252beb", + "block-in-inline-insert-003-nosplit-ref.xht": [ + "106faff9d108b183cf1c8e01c4297a846eca99ee", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-bottom-043-ref.xht", + "/css/CSS2/normal-flow/block-in-inline-insert-003-ref.xht", "==" ] ], {} ] ], - "margin-bottom-044.xht": [ - "0c399b9af015ba8bc13b5e4a5c45731253943ec5", + "block-in-inline-insert-003-ref.xht": [ + "a1a8e9945afa4c3be533bfcda0be7a2282849c76", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-bottom-043-ref.xht", + "/css/CSS2/normal-flow/block-in-inline-insert-003-nosplit-ref.xht", "==" ] ], {} ] ], - "margin-bottom-052.xht": [ - "5ff964ba1d3d14a818392dcabdd117fb6feb721b", + "block-in-inline-insert-003.xht": [ + "04b9fca3b8b2ab500a406f095c6238b393edf13a", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/normal-flow/block-in-inline-insert-003-nosplit-ref.xht", "==" ] ], {} ] ], - "margin-bottom-053.xht": [ - "db564e5b879965a1e7a90ce249adff805e10d43d", + "block-in-inline-insert-004-nosplit-ref.xht": [ + "c5f3f468c653132108876d93ac656225e3b742df", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/normal-flow/block-in-inline-insert-004-ref.xht", "==" ] ], {} ] ], - "margin-bottom-054.xht": [ - "0bc5972c62f4c66cbb2094d81d34b28042891243", + "block-in-inline-insert-004-ref.xht": [ + "eb50830f5627d4fbe3fedd3596a744136af125d6", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/normal-flow/block-in-inline-insert-004-nosplit-ref.xht", "==" ] ], {} ] ], - "margin-bottom-055.xht": [ - "e006081b2e23ca6dc6569a8729c7084aef05282f", + "block-in-inline-insert-004.xht": [ + "528d3c682909dab672edbfa336786caa00434ecd", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-bottom-043-ref.xht", + "/css/CSS2/normal-flow/block-in-inline-insert-004-nosplit-ref.xht", "==" ] ], {} ] ], - "margin-bottom-056.xht": [ - "705d9c51ae6ecf03fd82406c8011b8a2e8082592", + "block-in-inline-insert-006-nosplit-ref.xht": [ + "0b11b5639db94cfcb92a0a26426d6e75f9adba64", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-bottom-043-ref.xht", + "/css/CSS2/normal-flow/block-in-inline-insert-006-ref.xht", "==" ] ], {} ] ], - "margin-bottom-064.xht": [ - "cafcedb2772674a933aef296a0e77c9715111ad4", + "block-in-inline-insert-006-ref.xht": [ + "12fa2eaaa7a511d3c230a722703c8ec8fad3fda6", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/normal-flow/block-in-inline-insert-006-nosplit-ref.xht", "==" ] ], {} ] ], - "margin-bottom-065.xht": [ - "fb3396027ac941c30b90aa69f742e4c7fe10b351", + "block-in-inline-insert-006.xht": [ + "f33dd7694ec7c7012abacb546ccb151763e102ea", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/normal-flow/block-in-inline-insert-006-nosplit-ref.xht", "==" ] ], {} ] ], - "margin-bottom-066.xht": [ - "a558c95653741321d7fc6def4c73d080357dfe31", + "block-in-inline-insert-007-nosplit-ref.xht": [ + "3276641f599ec6375529734ba470a376284c3634", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/normal-flow/block-in-inline-insert-007-ref.xht", "==" ] ], {} ] ], - "margin-bottom-067.xht": [ - "691a8dc1995250a484a78a1a39095bbdee5b76dd", + "block-in-inline-insert-007-ref.xht": [ + "d686af2e8e8587d522f883ab5bcc553edc8fae5b", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-bottom-067-ref.xht", + "/css/CSS2/normal-flow/block-in-inline-insert-007-nosplit-ref.xht", "==" ] ], {} ] ], - "margin-bottom-068.xht": [ - "de7fbc0cb3d0638247bb2a0b1b733807f238c9b5", + "block-in-inline-insert-007.xht": [ + "a89f1277646c590e9b00e576dffc6e429fbd8f6f", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-bottom-067-ref.xht", + "/css/CSS2/normal-flow/block-in-inline-insert-007-nosplit-ref.xht", "==" ] ], {} ] ], - "margin-bottom-076.xht": [ - "7ac44accbf8c44636be294832307ec3f78d0bece", + "block-in-inline-insert-008-nosplit-ref.xht": [ + "9e224250756c054a714555958707e53fa7666ec9", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/normal-flow/block-in-inline-insert-008-ref.xht", "==" ] ], {} ] ], - "margin-bottom-077.xht": [ - "530ca94390bdbdf8ad77189c297ee1f6618d12a4", + "block-in-inline-insert-008-ref.xht": [ + "2f096eff2df746f2da22c33d6c2b3ce3b139aee1", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/normal-flow/block-in-inline-insert-008-nosplit-ref.xht", "==" ] ], {} ] ], - "margin-bottom-078.xht": [ - "8dccb1986ff195bdb02616890bdbfd4b565bcfb6", + "block-in-inline-insert-008a.xht": [ + "9c65d80d2582030d419714e3317a96e166ef94c8", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/normal-flow/block-in-inline-insert-008-nosplit-ref.xht", "==" ] ], {} ] ], - "margin-bottom-079.xht": [ - "7f759ced5d15095599ee940d53b425d1e9768aa4", + "block-in-inline-insert-008b.xht": [ + "d0d41c51260bca6ec8e232e4677d0fca47113248", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-bottom-079-ref.xht", + "/css/CSS2/normal-flow/block-in-inline-insert-008-ref.xht", "==" ] ], {} ] ], - "margin-bottom-080.xht": [ - "b68504440dba25a7b551a55df6f8ed2ed3cc3722", + "block-in-inline-insert-008c.xht": [ + "2f31cc2c67fdacc08f27bd19e2f9f294c25be5db", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-bottom-079-ref.xht", + "/css/CSS2/normal-flow/block-in-inline-insert-008-ref.xht", "==" ] ], {} ] ], - "margin-bottom-088.xht": [ - "7940ddd068890f34a1c381d22c693be4fdef845f", + "block-in-inline-insert-009-nosplit-ref.xht": [ + "67405f368d4a8d1938b848aa25555c82123ddea1", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/normal-flow/block-in-inline-insert-009-ref.xht", "==" ] ], {} ] ], - "margin-bottom-089.xht": [ - "1436fee7fb9b4d0bd37648c4347618fe7f8c7dac", + "block-in-inline-insert-009-ref.xht": [ + "8dd9ccdbb687f424793b77e92bfab239d37a4634", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/normal-flow/block-in-inline-insert-009-nosplit-ref.xht", "==" ] ], {} ] ], - "margin-bottom-090.xht": [ - "93001192eaaac4809770d3d7428383d84a0908da", + "block-in-inline-insert-009.xht": [ + "d6f8082b4acbf7979379d854e74b9700cfeb81c7", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/normal-flow/block-in-inline-insert-009-nosplit-ref.xht", "==" ] ], {} ] ], - "margin-bottom-091.xht": [ - "07e54b816c31fce9e57a8ad91ff15508b8e4b314", + "block-in-inline-insert-010-nosplit-ref.xht": [ + "13485c5197ad3841c1eb655513afb04b796fd94a", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-bottom-091-ref.xht", + "/css/CSS2/normal-flow/block-in-inline-insert-010-ref.xht", "==" ] ], {} ] ], - "margin-bottom-092.xht": [ - "ba61f43120e151080f4c01f7e8e7177f6378c78c", + "block-in-inline-insert-010-ref.xht": [ + "00aa334ee8547f002ccb70aab0b5d3af3fcc95a4", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-bottom-091-ref.xht", + "/css/CSS2/normal-flow/block-in-inline-insert-010-nosplit-ref.xht", "==" ] ], {} ] ], - "margin-bottom-100.xht": [ - "446a83d8815fcc7a4b3ca1a7353ff00ca72b5fdf", + "block-in-inline-insert-010.xht": [ + "e38e70b4a77bb60cd4ec349e4ec08c1cc21ae377", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-bottom-100-ref.xht", + "/css/CSS2/normal-flow/block-in-inline-insert-010-nosplit-ref.xht", "==" ] ], {} ] ], - "margin-bottom-101.xht": [ - "976c01a7c4bd347a68a4b71307ddb8178a9d9db8", + "block-in-inline-insert-011-nosplit-ref.xht": [ + "0e077146ed9e6d32c1ec8b3f1cc25565065d22d5", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-bottom-100-ref.xht", + "/css/CSS2/normal-flow/block-in-inline-insert-011-ref.xht", "==" ] ], {} ] ], - "margin-bottom-102.xht": [ - "ce40ab52fac82ecd0103042666004ad7e0cadad9", + "block-in-inline-insert-011-ref.xht": [ + "0d93bd1dc3b0e885707a2116c6328c7db0b41d66", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-bottom-100-ref.xht", + "/css/CSS2/normal-flow/block-in-inline-insert-011-nosplit-ref.xht", "==" ] ], {} ] ], - "margin-bottom-103.xht": [ - "89e05ff445edd2e7b2f66627fbc268d6064dc03d", + "block-in-inline-insert-011.xht": [ + "b1fdc72f41c594471e07ec860d3d38ecf959d209", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-bottom-103-ref.xht", + "/css/CSS2/normal-flow/block-in-inline-insert-011-nosplit-ref.xht", "==" ] ], {} ] ], - "margin-bottom-104.xht": [ - "30826dc07ef0a2370de348d270064a8efc32bf07", + "block-in-inline-insert-012-nosplit-ref.xht": [ + "8e00bc0600d24a55264f92cff8c171a447f58c02", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-bottom-103-ref.xht", + "/css/CSS2/normal-flow/block-in-inline-insert-012-ref.xht", "==" ] ], {} ] ], - "margin-bottom-109.xht": [ - "65f181dd0928e61b0412d871558593800f942f79", + "block-in-inline-insert-012-ref.xht": [ + "6ea1a9c4bd19251a769eb761590b198656a49b01", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/normal-flow/block-in-inline-insert-012-nosplit-ref.xht", "==" ] ], {} ] ], - "margin-bottom-110.xht": [ - "9fc5d1fb85567d9099b1c751f3d26a7396d5f3f3", + "block-in-inline-insert-012.xht": [ + "ba48ed576f6aef10ab58f2d753de058b9d4f41c9", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/normal-flow/block-in-inline-insert-012-nosplit-ref.xht", "==" ] ], {} ] ], - "margin-bottom-111.xht": [ - "95ca66019abf139abf293f298ae3d7356dfd860b", + "block-in-inline-insert-013-nosplit-ref.xht": [ + "f36bf1ba1b6c8c5d20c672d6f5ec37379a69c2aa", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/normal-flow/block-in-inline-insert-013-ref.xht", "==" ] ], {} ] ], - "margin-bottom-112.xht": [ - "97b116457bc0b331ad9b1465162e8c10e9b69212", + "block-in-inline-insert-013-ref.xht": [ + "8e08d97d81aaedb7854df977470a4b5b3d1cb04f", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/normal-flow/block-in-inline-insert-013-nosplit-ref.xht", "==" ] ], {} ] ], - "margin-bottom-113.xht": [ - "40a017e69bb1287004ff9ca7a6b2b74c80853e97", + "block-in-inline-insert-013.xht": [ + "d23a8e8ce41db157b76e2d8de8fa628449cd45c9", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-bottom-067-ref.xht", + "/css/CSS2/normal-flow/block-in-inline-insert-013-nosplit-ref.xht", "==" ] ], {} ] ], - "margin-bottom-applies-to-001.xht": [ - "c476461d1c0b1399af531029d2bab8cb3221b1b9", + "block-in-inline-insert-014-nosplit-ref.xht": [ + "2ae5d104ee4c638ac10dabb0ad81ec2e262ff24a", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-bottom-applies-to-001-ref.xht", + "/css/CSS2/normal-flow/block-in-inline-insert-014-ref.xht", "==" ] ], {} ] ], - "margin-bottom-applies-to-002.xht": [ - "4532761fb3c182f8c6b1a8f49ca2f9e7a1585c2c", + "block-in-inline-insert-014-ref.xht": [ + "fefbd03ad5bcba7c611fa9b250690069299db995", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-bottom-applies-to-001-ref.xht", + "/css/CSS2/normal-flow/block-in-inline-insert-014-nosplit-ref.xht", "==" ] ], {} ] ], - "margin-bottom-applies-to-003.xht": [ - "5b220a0b255010bd9d04a9542d7e2f3281a17a85", + "block-in-inline-insert-014.xht": [ + "4d170b976b8d9c81d1a92699f3b2e90116d47075", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-bottom-applies-to-001-ref.xht", + "/css/CSS2/normal-flow/block-in-inline-insert-014-nosplit-ref.xht", "==" ] ], {} ] ], - "margin-bottom-applies-to-004.xht": [ - "c7388eadfe529b4cff2d31cad392558e0a4d2cd5", + "block-in-inline-insert-015-nosplit-ref.xht": [ + "a1dee0d67fe2a7bb33aa8938e40c3553204088e2", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-bottom-applies-to-001-ref.xht", + "/css/CSS2/normal-flow/block-in-inline-insert-015-ref.xht", "==" ] ], {} ] ], - "margin-bottom-applies-to-005.xht": [ - "c808c1c45280ff65a3c65aab05e1b6a4e3d3d787", + "block-in-inline-insert-015-ref.xht": [ + "a74180bdefe53f23b06a09bb8648c59bd267e8a3", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-bottom-applies-to-001-ref.xht", + "/css/CSS2/normal-flow/block-in-inline-insert-015-nosplit-ref.xht", "==" ] ], {} ] ], - "margin-bottom-applies-to-006.xht": [ - "2408f2c08594666a926eada0c1edcfe9bc992b2d", + "block-in-inline-insert-015.xht": [ + "f6a13347263e7071864befde33533c749e69f646", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-bottom-applies-to-001-ref.xht", + "/css/CSS2/normal-flow/block-in-inline-insert-015-nosplit-ref.xht", "==" ] ], {} ] ], - "margin-bottom-applies-to-007.xht": [ - "cab02e6b09596a9b45b4d5051ab0b4866c6a3b17", + "block-in-inline-insert-016-nosplit-ref.xht": [ + "fa9ffee0adf0024983d73c18367a78e32c7d9aba", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-bottom-applies-to-001-ref.xht", + "/css/CSS2/normal-flow/block-in-inline-insert-016-ref.xht", "==" ] ], {} ] ], - "margin-bottom-applies-to-008.xht": [ - "7021afce57eacba073424699bacc21399477c717", + "block-in-inline-insert-016-ref.xht": [ + "140b45c00a4d3f3f746b1bf83ca14c7a5ad10735", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-bottom-applies-to-008-ref.xht", + "/css/CSS2/normal-flow/block-in-inline-insert-016-nosplit-ref.xht", "==" ] ], {} ] ], - "margin-bottom-applies-to-009.xht": [ - "fe5688fda96c3f1d14b530f34c042b8d1a14cc71", + "block-in-inline-insert-016a.xht": [ + "730f11612b5f7a21fd804fd855f4b1b23acba439", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-bottom-applies-to-009-ref.xht", + "/css/CSS2/normal-flow/block-in-inline-insert-016-nosplit-ref.xht", "==" ] ], {} ] ], - "margin-bottom-applies-to-012.xht": [ - "9cb67181d21fe6fe73db14b275c1442dacf9d397", + "block-in-inline-insert-016b.xht": [ + "a438c1f275ccfe0d19bb5b71c4184477c7345e58", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-bottom-applies-to-009-ref.xht", + "/css/CSS2/normal-flow/block-in-inline-insert-016-ref.xht", "==" ] ], {} ] ], - "margin-bottom-applies-to-013.xht": [ - "73dd92e9d5b7f74561ca1f1a784057e562bb9bec", + "block-in-inline-insert-017.xht": [ + "5390cce5f999c28d827cb4d8dac41f0c0d157793", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-bottom-applies-to-009-ref.xht", + "/css/CSS2/normal-flow/block-in-inline-insert-017-ref.xht", "==" ] ], {} ] ], - "margin-bottom-applies-to-014.xht": [ - "f038b7931a080891063615a4e4f077fecab9fac3", + "block-in-inline-margins-001a.xht": [ + "a3321753d9a560ba5e6d867080881d6a9d4f6a07", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-bottom-applies-to-009-ref.xht", + "/css/CSS2/normal-flow/block-in-inline-margins-001-ref.xht", "==" ] ], {} ] ], - "margin-bottom-applies-to-015.xht": [ - "4403a8e5879e74008f172dd80d24fa850e76409d", + "block-in-inline-margins-001b.xht": [ + "d1c5d20a8abb2b42cec96d9db54a73fb67cf6cc5", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-bottom-applies-to-009-ref.xht", + "/css/CSS2/normal-flow/block-in-inline-margins-001-ref.xht", "==" ] ], {} ] ], - "margin-collapse-001.xht": [ - "fd6263dd75ea5e5e29a5276cbdf1895b4873e992", + "block-in-inline-margins-002a.xht": [ + "40f612d8d2e4063feb53080041d75adff87531ba", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-collapse-001-ref.xht", + "/css/CSS2/normal-flow/block-in-inline-margins-002-ref.xht", "==" ] ], {} ] ], - "margin-collapse-002.xht": [ - "15c15afa1bd45525df308ada448712e9d6a59e6e", + "block-in-inline-margins-002b.xht": [ + "8e2030a6eea1704ab24336de2505f50d92a6a526", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-collapse-002-ref.xht", + "/css/CSS2/normal-flow/block-in-inline-margins-002-ref.xht", "==" ] ], {} ] ], - "margin-collapse-003.xht": [ - "b93045a0c9cd5f62ac2897a8a5669e491d311e74", + "block-in-inline-margins-003.html": [ + "576e0a8bed0d245c0511021549b21b9e96faf952", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-collapse-003-ref.xht", + "/css/CSS2/normal-flow/block-in-inline-margins-003-ref.html", "==" ] ], {} ] ], - "margin-collapse-004.xht": [ - "7e6d89702be690361c0622820752185a1c69e062", + "block-in-inline-margins-004.html": [ + "81e1f83fba85ef3a6a19647033f7ca2f46af645d", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-collapse-004-ref.xht", + "/css/CSS2/normal-flow/block-in-inline-margins-004-ref.html", "==" ] ], {} ] ], - "margin-collapse-005.xht": [ - "470086a94fe85ee3c530ca506b8ad3da4de2882b", + "block-in-inline-nested-001.xht": [ + "4cbd0e189df9db1cd676490f9ce61f6ccd1e634d", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-collapse-002-ref.xht", + "/css/CSS2/normal-flow/block-in-inline-nested-001-ref.xht", "==" ] ], {} ] ], - "margin-collapse-006.xht": [ - "68661be42b4948f99d510fa3d32e229ccc205db9", + "block-in-inline-nested-002.xht": [ + "506c2f37951fc3a86784eadcd136407899e55119", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-collapse-002-ref.xht", + "/css/CSS2/normal-flow/block-in-inline-nested-002-ref.xht", "==" ] ], {} ] ], - "margin-collapse-007.xht": [ - "49912a9e9b0fada2d8dcb3d495b951b315967b0c", + "block-in-inline-percents-001.xht": [ + "1823424b92a5c76164e7a43733a30e729bfe8766", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-collapse-002-ref.xht", + "/css/CSS2/normal-flow/block-in-inline-percents-001-ref.xht", "==" ] ], {} ] ], - "margin-collapse-008.xht": [ - "7b942dc5bb330760ff5a8909a345dfb15381591e", + "block-in-inline-remove-000.xht": [ + "17c47cda8c77fa0d63301ac213cdbd9e340dd5c8", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-collapse-002-ref.xht", + "/css/CSS2/normal-flow/block-in-inline-remove-000-ref.xht", "==" ] ], {} ] ], - "margin-collapse-009.xht": [ - "6dbcdadf9457962c4a94cc61e7f19d0dd70ca511", + "block-in-inline-remove-001-nosplit-ref.xht": [ + "0215ebbec4c4d804896969f03fac7950bd9ba4e7", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/normal-flow/block-in-inline-remove-001-ref.xht", "==" ] ], {} ] ], - "margin-collapse-013.xht": [ - "8a98034b86384f0f437910c2e426b97f291581eb", + "block-in-inline-remove-001-ref.xht": [ + "5d667f3dcb089d9c6266842d9ffc80b6536f0e36", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-collapse-013-ref.xht", + "/css/CSS2/normal-flow/block-in-inline-remove-001-nosplit-ref.xht", "==" ] ], {} ] ], - "margin-collapse-014.xht": [ - "61b22b558dd448f035640881885683c27d40b8ab", + "block-in-inline-remove-001.xht": [ + "30a998907e26c6d0a9a92d53b7a6a33fb724c91d", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-collapse-002-ref.xht", + "/css/CSS2/normal-flow/block-in-inline-remove-001-nosplit-ref.xht", "==" ] ], {} ] ], - "margin-collapse-015.xht": [ - "7ea9985683df3059073e95b1deb65252c3a9e4fa", + "block-in-inline-remove-002.xht": [ + "d0df7d612eaf30454e53b4ca5c28cc1ac8f18a8e", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-collapse-002-ref.xht", + "/css/CSS2/normal-flow/block-in-inline-remove-002-ref.xht", "==" ] ], {} ] ], - "margin-collapse-015a.xht": [ - "edc38696d65bf562664d355cc9279156e18d1e0e", + "block-in-inline-remove-003-nosplit-ref.xht": [ + "b4fbfec00a9157912da120f3359d91f788fe1ec7", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-collapse-002-ref.xht", + "/css/CSS2/normal-flow/block-in-inline-remove-003-ref.xht", "==" ] ], {} ] ], - "margin-collapse-016.xht": [ - "9daa8d14202bdd68dadda870f2fe84305b3deaa8", + "block-in-inline-remove-003-ref.xht": [ + "60f9427389d70961ab7f3e207c16a93588fb6c7a", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-collapse-002-ref.xht", + "/css/CSS2/normal-flow/block-in-inline-remove-003-nosplit-ref.xht", "==" ] ], {} ] ], - "margin-collapse-017.xht": [ - "303a3376e104656a9a886c129f931d94d49b06c7", + "block-in-inline-remove-003.xht": [ + "94ccc760f20ebd8894f56bbedd0619c9fb45b765", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-collapse-017-ref.xht", + "/css/CSS2/normal-flow/block-in-inline-remove-003-nosplit-ref.xht", "==" ] ], {} ] ], - "margin-collapse-019.xht": [ - "006c8971bda228fd01f1ffbe5fff557f696cf349", + "block-in-inline-remove-004-nosplit-ref.xht": [ + "a008a8a1b39b24a74cc14a5389daf0044cae5712", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-collapse-002-ref.xht", + "/css/CSS2/normal-flow/block-in-inline-remove-004-ref.xht", "==" ] ], {} ] ], - "margin-collapse-020.xht": [ - "4268bbdf2c37e131b5262cd689212d558b82f835", + "block-in-inline-remove-004-ref.xht": [ + "ef2ee0c3290631297fd81cf8e947e803df31ddba", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-collapse-020-ref.xht", + "/css/CSS2/normal-flow/block-in-inline-remove-004-nosplit-ref.xht", "==" ] ], {} ] ], - "margin-collapse-021.xht": [ - "304c75170e698f11ed208de68f9804f5399fc32e", + "block-in-inline-remove-004.xht": [ + "91cad56e68f854540af14bfd5321f0445de84fd4", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-collapse-020-ref.xht", + "/css/CSS2/normal-flow/block-in-inline-remove-004-nosplit-ref.xht", "==" ] ], {} ] ], - "margin-collapse-022.xht": [ - "4b80359301ceee63532a23a9398f5d809f0a1297", + "block-in-inline-remove-005-nosplit-ref.xht": [ + "00ae0f278ff1d6bf53d3a3879d4e8a3e9f3e00b4", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-collapse-002-ref.xht", + "/css/CSS2/normal-flow/block-in-inline-remove-005-ref.xht", "==" ] ], {} ] ], - "margin-collapse-025.xht": [ - "d2ea30ddbc4b3633722dddb9fbb15a3aad00f53d", + "block-in-inline-remove-005-ref.xht": [ + "1ab2d25ff4577b6982a54ca67db919729144e3ca", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-collapse-002-ref.xht", + "/css/CSS2/normal-flow/block-in-inline-remove-005-nosplit-ref.xht", "==" ] ], {} ] ], - "margin-collapse-026.xht": [ - "fa74b334d5b23db9bb97c5ca01fd18bcc73412eb", + "block-in-inline-remove-005.xht": [ + "58944d2ebc9ca49844b62a1aa1523bff3455d487", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-collapse-002-ref.xht", + "/css/CSS2/normal-flow/block-in-inline-remove-005-nosplit-ref.xht", "==" ] ], {} ] ], - "margin-collapse-028.xht": [ - "810639c4caac0b869d3f859308435f33167062bf", + "block-in-inline-remove-006-nosplit-ref.xht": [ + "6379b1619071880da8ec0fa9c841bf08fbfce968", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-collapse-002-ref.xht", + "/css/CSS2/normal-flow/block-in-inline-remove-006-ref.xht", "==" ] ], {} ] ], - "margin-collapse-037.xht": [ - "87efa907f008529e19ddc951e90799ec6ab07470", + "block-in-inline-remove-006-ref.xht": [ + "be57e10553a924f0cc2ece843d655dafeaaa3504", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-collapse-037-ref.xht", + "/css/CSS2/normal-flow/block-in-inline-remove-006-nosplit-ref.xht", "==" ] ], {} ] ], - "margin-collapse-038.xht": [ - "ada2e31cf779554b0765383f1f2dd1dfc96ec0a3", + "block-in-inline-remove-006.xht": [ + "245dbfbb78e7121e3fc70cfaae4ef57031be5bc1", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-collapse-038-ref.xht", + "/css/CSS2/normal-flow/block-in-inline-remove-006-nosplit-ref.xht", "==" ] ], {} ] ], - "margin-collapse-039.xht": [ - "e093faf979cbf0d985944239408e26c3d045f884", + "block-in-inline-whitespace-001a.xht": [ + "ef8094e7a6c0e3f7e09f9dc564a503b7140ad005", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/normal-flow/block-in-inline-whitespace-001-ref.xht", "==" ] ], {} ] ], - "margin-collapse-040.xht": [ - "a9a3b0ca634aed954f23898277ccbdf68c066ae7", + "block-in-inline-whitespace-001b.xht": [ + "e6237f714d83f53b54d22163be5a287b0d0c02e4", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/normal-flow/block-in-inline-whitespace-001-ref.xht", "==" ] ], {} ] ], - "margin-collapse-041.xht": [ - "742d93f4a6f08fa1d0765fce417e7b304d9d180d", + "block-non-replaced-height-001.xht": [ + "e25e5e55f415e46fdf2c19d1226b115c94c8b854", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/normal-flow/block-non-replaced-height-001-ref.xht", "==" ] ], {} ] ], - "margin-collapse-101.xht": [ - "047131b3423e0fc84a360e79cd0daa991a4b9fc6", + "block-non-replaced-height-005.xht": [ + "274669a6a88a9ff2a582c3f40373c1cf5e340fe8", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-collapse-101-ref.xht", + "/css/CSS2/normal-flow/block-non-replaced-height-005-ref.xht", "==" ] ], {} ] ], - "margin-collapse-102.xht": [ - "a7f2e54134ef0948d92388b242526b20618c4f5d", + "block-non-replaced-height-011.xht": [ + "8c54083dcbe66623f56fc68a6059e338cfcc5f6f", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "margin-collapse-103.xht": [ - "bf846581358d42ce716bc58b2eb4788584873ac0", + "block-non-replaced-height-013.xht": [ + "6bd7f9b753f2690cc41845a9151c3c649a4b8cc2", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-collapse-103-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "margin-collapse-104.xht": [ - "8df9a903841e98e27ace3f01d28f787efa5b1154", + "block-non-replaced-width-001.xht": [ + "de5901c70aaa6cc5ef82b8f46114cc7b7ed47d05", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/normal-flow/block-non-replaced-width-001-ref.xht", "==" ] ], {} ] ], - "margin-collapse-105.xht": [ - "c8b596ba32c47d9ceabd252f8ea379cdfb297895", + "block-non-replaced-width-002.xht": [ + "3d9756b00540777f63df5590ad66d0a9edaecc3b", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-collapse-101-ref.xht", + "/css/CSS2/normal-flow/block-non-replaced-width-001-ref.xht", "==" ] ], {} ] ], - "margin-collapse-106.xht": [ - "a1d553622122c95b1f9a7a12ecd26d95a17e7995", + "block-non-replaced-width-003.xht": [ + "c6e3fce31bf2e634827b403cc4e0e42108981ccc", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-collapse-106-ref.xht", + "/css/CSS2/normal-flow/block-non-replaced-width-001-ref.xht", "==" ] ], {} ] ], - "margin-collapse-110.xht": [ - "097e22dd13ca278a0687fbbb57cacba99f4bdc5b", + "block-non-replaced-width-004.xht": [ + "b754b56f686a33081daa405dcb758e59f071e974", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-collapse-110-ref.xht", + "/css/CSS2/normal-flow/block-non-replaced-width-004-ref.xht", "==" ] ], {} ] ], - "margin-collapse-111.xht": [ - "daaf38b050ff342515cc4ad3e3dc74bb39b0cbce", + "block-non-replaced-width-005.xht": [ + "94e30af49432242652b49ad7caed57e5f0b33bb3", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-collapse-110-ref.xht", + "/css/CSS2/normal-flow/block-non-replaced-width-005-ref.xht", "==" ] ], {} ] ], - "margin-collapse-112.xht": [ - "09396c4e13f248a6e16cf00d9eead4c92bdf10c3", + "block-non-replaced-width-006.xht": [ + "2c7d95437ce9281619e643f75d0c08ae21a8f122", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-collapse-106-ref.xht", + "/css/CSS2/normal-flow/block-non-replaced-width-005-ref.xht", "==" ] ], {} ] ], - "margin-collapse-113.xht": [ - "ffba934aa317201be095f5917d3a6935d7f6c3d3", + "block-non-replaced-width-007.xht": [ + "7c11940645fdcb62eb71a85d8de51a7fd62ed8e5", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-collapse-113-ref.xht", + "/css/CSS2/normal-flow/block-non-replaced-width-007-ref.xht", "==" ] ], {} ] ], - "margin-collapse-114.xht": [ - "3f90f8d9546ac466830e84ed1960b5746b1fbbda", + "block-replaced-height-001.xht": [ + "fad608d0e34e350d5ce5f85224e2ddd614af429f", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-collapse-114-ref.xht", + "/css/CSS2/normal-flow/block-replaced-height-001-ref.xht", "==" ] ], {} ] ], - "margin-collapse-115.xht": [ - "95f54be93a24a45ab50241f6572b51efef8606c9", + "block-replaced-height-002.xht": [ + "3bfbef715ad74b3e2cf2ff984589c9db0f88703b", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-collapse-115-ref.xht", + "/css/CSS2/normal-flow/block-replaced-height-002-ref.xht", "==" ] ], {} ] ], - "margin-collapse-116.xht": [ - "fc00058680eef01ed9550d81cf1faec1e4ba19df", + "block-replaced-height-004.xht": [ + "2d423b15f1b50c5aaf0411b65227722dec331074", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-collapse-115-ref.xht", + "/css/CSS2/normal-flow/block-replaced-height-004-ref.xht", "==" ] ], {} ] ], - "margin-collapse-130.xht": [ - "860ff83e9ee872c0041e755b7698b2aef98df520", + "block-replaced-height-005.xht": [ + "156ca650e4d3f9330f47cd3a02975b8fc5403a43", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-collapse-130-ref.xht", + "/css/CSS2/normal-flow/block-replaced-height-005-ref.xht", "==" ] ], {} ] ], - "margin-collapse-131.xht": [ - "17315563843adc7a72abed17e080666b68073c08", + "block-replaced-height-006.xht": [ + "1c6d265a89d0e7ea1b34cf5822f57bfc077c0289", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-collapse-131-ref.xht", + "/css/CSS2/normal-flow/block-replaced-height-006-ref.xht", "==" ] ], {} ] ], - "margin-collapse-137.xht": [ - "3f95f1a60dd5f7f1759fce566164f86cdc68ea2f", + "block-replaced-height-007.xht": [ + "76091766bfa9ba9e99e8519d60adaa91d48c781a", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-collapse-137-ref.xht", + "/css/CSS2/normal-flow/block-replaced-height-004-ref.xht", "==" ] ], {} ] ], - "margin-collapse-138.xht": [ - "e67b8ce654861d71c91b7b8fe314b0bb46fbf9d7", + "block-replaced-width-002.xht": [ + "ce25bf90ad6d3a89a8e12e2166ea698b87796990", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-collapse-137-ref.xht", + "/css/CSS2/normal-flow/block-replaced-width-002-ref.xht", "==" ] ], {} ] ], - "margin-collapse-155.xht": [ - "7f130a19af4e00393545d6e6796819fef3f31204", + "block-replaced-width-006.xht": [ + "049fa7993501e1125554a7072043546e9442a40b", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-collapse-155-ref.xht", + "/css/CSS2/normal-flow/block-replaced-width-006-ref.xht", "==" ] ], {} ] ], - "margin-collapse-156.xht": [ - "fc7b74c33154f27667e0bc644f5a3514c640a032", + "blocks-011.xht": [ + "bd86d863624f1379d1e1d4ebf72f51aceaa1f133", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-collapse-156-ref.xht", + "/css/CSS2/normal-flow/blocks-011-ref.xht", "==" ] ], {} ] ], - "margin-collapse-159.xht": [ - "b815fcf689281a1b9f016c85df8dbe2d3c448310", + "blocks-012.xht": [ + "7c2751ca637726b2723f3240b89e941c835c6cf3", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-collapse-159-ref.xht", + "/css/CSS2/normal-flow/blocks-011-ref.xht", "==" ] ], {} ] ], - "margin-collapse-min-height-001.xht": [ - "2c6936244308faced1e79c5115950a8b5a7079e5", + "blocks-013.xht": [ + "90b0b70604ab0abf9b511ba34a9cd89a8436a43b", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-collapse-min-height-001-ref.xht", + "/css/CSS2/normal-flow/blocks-013-ref.xht", "==" ] ], {} ] ], - "margin-collapse-min-height-002.xht": [ - "240fc177fd5159f54670040a8a6fcdb7bb08ecc0", + "blocks-014.xht": [ + "dc06f52bd3229d5719a686c8c7d136f94ae163d8", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-collapse-min-height-002-ref.xht", + "/css/CSS2/normal-flow/blocks-014-ref.xht", "==" ] ], {} ] ], - "margin-em-inherit-001.xht": [ - "57af6a5701a1584d920b78304b2c014b6e7678ff", + "blocks-015.xht": [ + "37ad205b7c5c6c792fe578a2141159e70dc445cb", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-em-inherit-001-ref.xht", + "/css/CSS2/normal-flow/blocks-014-ref.xht", "==" ] ], {} ] ], - "margin-inline-001.xht": [ - "d94030b53c7e7343a54f121bc578c36cffb3484b", + "blocks-016.xht": [ + "e10656972df8cc43334c1917f30a70818001e887", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-inline-001-ref.xht", + "/css/CSS2/normal-flow/blocks-013-ref.xht", "==" ] ], {} ] ], - "margin-inline-002.xht": [ - "ac2011f90e2f69725e2822ab396bfed90ea42bbb", + "blocks-017.xht": [ + "f6819f372b849d6272c1e99b3cda30f6279ca14e", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-inline-002-ref.xht", + "/css/CSS2/tables/reference/table-margin-004-ref.xht", "==" ] ], {} ] ], - "margin-left-004.xht": [ - "999fbf0f1861bcad1ec29096fab60160f59dc179", + "blocks-018.xht": [ + "1c30eee1b7beaabc0164b89bb4dc2126250a2da0", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/normal-flow/blocks-018-ref.xht", "==" ] ], {} ] ], - "margin-left-005.xht": [ - "2ad62434b84bb484c5ef3dc1abb4232191d8a437", + "blocks-019.xht": [ + "f435219c25ad84b9a9625786988158d44b34156d", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/normal-flow/blocks-019-ref.xht", "==" ] ], {} ] ], - "margin-left-006.xht": [ - "7dba8bb9eead1f9b776e8837c3f5c8eac2042281", + "blocks-020.xht": [ + "d6b635e018869a6b713ca74532e49a7130e321c7", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/normal-flow/blocks-020-ref.xht", "==" ] ], {} ] ], - "margin-left-007.xht": [ - "af33f6e9fdf81728109f72b2aa511a9fa8189512", + "blocks-021.xht": [ + "e122cd86fb30a740a37eb82fce2b2a5743ee9c48", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-007-ref.xht", + "/css/CSS2/normal-flow/blocks-020-ref.xht", "==" ] ], {} ] ], - "margin-left-008.xht": [ - "9f36cd8d16589a94ff03e6c57794803d87f025de", + "blocks-022.xht": [ + "4d29624feb4aa439fac5d9c8152abed9d773ad2d", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-007-ref.xht", + "/css/CSS2/normal-flow/blocks-020-ref.xht", "==" ] ], {} ] ], - "margin-left-016.xht": [ - "6355c880ba67e6acec80aaa20d6c1caee89e2521", + "blocks-025.xht": [ + "d207317b99e09b1dc4c50d785945c829621ae002", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/normal-flow/blocks-025-ref.xht", "==" ] ], {} ] ], - "margin-left-017.xht": [ - "ba2928a70ee7c5c3f53b9435ec29aee95e4193a5", + "blocks-026.xht": [ + "0b626bb6f898581a6cd65964f93c5ece1b8ed9e5", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/normal-flow/blocks-026-ref.xht", "==" ] ], {} ] ], - "margin-left-018.xht": [ - "c5451d144249813594f1c8d414d1888fd877e37e", + "canvas-paint-order.html": [ + "64b3e3f014bbd52fd425bdb71873fa4cc4f7b96f", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/normal-flow/canvas-paint-order-ref.html", "==" ] ], {} ] ], - "margin-left-019.xht": [ - "201a653fbeb836c175b9e251ae07e38a9cc829ac", + "child-bottom-margin-in-unresolvable-percentage-height.html": [ + "6c075f7ac779ef735705aa06e4418a863c2ac1d7", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-019-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "margin-left-020.xht": [ - "69fca4a3e1d6728fb26106e3751d6a9c807a88bc", + "cross-domain-iframe-paint-order.sub.html": [ + "198d16ca0673a160fe70311321ab7e6bed1b3a52", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-019-ref.xht", + "/css/CSS2/normal-flow/cross-domain-iframe-paint-order-ref.html", "==" ] ], {} ] ], - "margin-left-028.xht": [ - "4f522a787bb86cc8cfbcdeb21da26c4ac120e9ff", + "dynamic-percentage-height.html": [ + "2e995963edc200aa857663e4816d0f7807e2969b", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "margin-left-029.xht": [ - "99f9c1bba5fcd4c11f4f8e2549bd4c5899d2d5d7", + "float-percentage-resolution-quirks-mode.html": [ + "a3794579f0ea242f9e7faaffcc16de5a3a69cf7c", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "margin-left-030.xht": [ - "54ba6e53e9954f4f21726ce86877679228186d40", + "height-001.xht": [ + "bfe582487aea119600e70bc942f8c24fb1fa62d5", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/normal-flow/height-001-ref.xht", "==" ] ], {} ] ], - "margin-left-031.xht": [ - "f5143c280204f2d7a3b768be7f1a1ad7bda720ec", + "height-002.xht": [ + "6859e7b4b45b122e97e6701b97a0debc649aa00f", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-031-ref.xht", + "/css/CSS2/normal-flow/height-001-ref.xht", "==" ] ], {} ] ], - "margin-left-032.xht": [ - "7a2f3594c32f5a56f0fd9d5d04c66d566d94522b", + "height-003.xht": [ + "9de5d35a6e32e8cc84d8db4c26f9aa5f8113a27f", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-031-ref.xht", + "/css/CSS2/normal-flow/height-003-ref.xht", "==" ] ], {} ] ], - "margin-left-040.xht": [ - "74154a4f424102324346f5bbc6e942ba5a2039d8", + "height-004.xht": [ + "06ac4e9e910e04d046c0d668a7e0630e3b400c98", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/normal-flow/height-001-ref.xht", "==" ] ], {} ] ], - "margin-left-041.xht": [ - "df40cd6eaea209738bdb75717b2c7823abe2cc9c", + "height-005.xht": [ + "2417d7cd302ba3c77993554eb5da2258dcedf52e", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/normal-flow/height-001-ref.xht", "==" ] ], {} ] ], - "margin-left-042.xht": [ - "d388610933ba8ae511650a794336394bc13df205", + "height-006.xht": [ + "ad2ebcfa6371d06fc4894e2a0cb7694a038b48f0", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/normal-flow/height-006-ref.xht", "==" ] ], {} ] ], - "margin-left-043.xht": [ - "309633873ee09a1427a969505dc5942caa96397c", + "height-007.xht": [ + "b9ce31f7541e5186c21c1584a7c25c726a77b868", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-043-ref.xht", + "/css/CSS2/normal-flow/height-006-ref.xht", "==" ] ], {} ] ], - "margin-left-044.xht": [ - "cef150cb4336f5b2712601d384f23371275a0b77", + "height-012.xht": [ + "356508b2e56378a7a77dc48889b9aecfb6d2f9a6", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-043-ref.xht", + "/css/CSS2/normal-flow/height-001-ref.xht", "==" ] ], {} ] ], - "margin-left-052.xht": [ - "72c5f9208094125ea8e148d5e9528c0b87986667", + "height-013.xht": [ + "b5d2cd14ce1af0a5dd9bd6c39fd808dc70ac8716", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/normal-flow/height-001-ref.xht", "==" ] ], {} ] ], - "margin-left-053.xht": [ - "f93f4987e2ca7289227710602d7bf122a8767515", + "height-015.xht": [ + "fbb61406ffd0f1369157f5b1b05b3dfbe5ec6c43", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/normal-flow/height-001-ref.xht", "==" ] ], {} ] ], - "margin-left-054.xht": [ - "758d1c696ffa975272649e502b38ae4c17f8be28", + "height-016.xht": [ + "ae348fb95321e437e40159a34a1186f295936f37", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/normal-flow/height-001-ref.xht", "==" ] ], {} ] ], - "margin-left-055.xht": [ - "089eb4da5173cf1680a4aadc389022173d222d39", + "height-017.xht": [ + "5cb24d3b0e6f12a75f0b07530d0d1a9cb23ddbfb", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-043-ref.xht", + "/css/CSS2/normal-flow/height-006-ref.xht", "==" ] ], {} ] ], - "margin-left-056.xht": [ - "4cecfcf8e610257e7952ec07f775856e8c4d92da", + "height-018.xht": [ + "1b5a319cfd0bc490d5bc50500677d492747c0aaa", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-043-ref.xht", + "/css/CSS2/normal-flow/height-006-ref.xht", "==" ] ], {} ] ], - "margin-left-064.xht": [ - "8ab39558deb67993e12fc2d02365063bcbb38b6a", + "height-023.xht": [ + "44907e860dafa3600fde7165563670c9a51904c6", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/normal-flow/height-001-ref.xht", "==" ] ], {} ] ], - "margin-left-065.xht": [ - "40891d62213532dcaa6a8bfbd3721f5f3afd39d3", + "height-024.xht": [ + "9a716598d75ac254c748457aa4080c1bb0c1e9f8", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/normal-flow/height-001-ref.xht", "==" ] ], {} ] ], - "margin-left-066.xht": [ - "eea1b43ef176eafe57b0e823e97c1a2112148eea", + "height-025.xht": [ + "cb7d85cee906ffb4a89de7c452229d81a110a36c", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/normal-flow/height-025-ref.xht", "==" ] ], {} ] ], - "margin-left-067.xht": [ - "45a9985f73ef24d7708a1a1ac720e5c695794d9b", + "height-026.xht": [ + "aa854efe764d5aadfda619a86afd9c33554c7594", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-067-ref.xht", + "/css/CSS2/normal-flow/height-001-ref.xht", "==" ] ], {} ] ], - "margin-left-068.xht": [ - "7cd11b9293170a57df07726d9c01cfddb58c6105", + "height-027.xht": [ + "a07552f5188fdc17f6c7ed69e5b0bebd9eb47c9d", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-067-ref.xht", + "/css/CSS2/normal-flow/height-001-ref.xht", "==" ] ], {} ] ], - "margin-left-076.xht": [ - "04fef47a02b5951e139f59d81228c586f5d612b7", + "height-028.xht": [ + "083865495ee7f13d2e6da6e32f488b13574fca43", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/normal-flow/height-006-ref.xht", "==" ] ], {} ] ], - "margin-left-077.xht": [ - "5a11aa792392212cda08e94c98c1268a10c11ccc", + "height-029.xht": [ + "c707241ebecb35e9eb14ed78e89356b540c7283c", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/normal-flow/height-006-ref.xht", "==" ] ], {} ] ], - "margin-left-078.xht": [ - "38786d4fdc975e54c0e306eb836756c9f02a40a6", + "height-034.xht": [ + "d91a163402522ba6f899251c059cf41c29a5f96b", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/normal-flow/height-001-ref.xht", "==" ] ], {} ] ], - "margin-left-079.xht": [ - "fbbbfd2ab41a6ac90515921ac70d6fec0e16f124", + "height-035.xht": [ + "f46d5f26a6ec6917237903a777ec3b1d0f43c0db", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-079-ref.xht", + "/css/CSS2/normal-flow/height-001-ref.xht", "==" ] ], {} ] ], - "margin-left-080.xht": [ - "0f5db5898a6975df3322d1afa32546e7cc5fddd5", + "height-037.xht": [ + "17969cba6811148a8de5980ed83189d2dc25b684", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-079-ref.xht", + "/css/CSS2/normal-flow/height-001-ref.xht", "==" ] ], {} ] ], - "margin-left-088.xht": [ - "af934ac1e43307b8798e8e99f9b53df65630dbdd", + "height-038.xht": [ + "5e569f58801a1aab90d196cbc939a70c5d5a851f", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/normal-flow/height-001-ref.xht", "==" ] ], {} ] ], - "margin-left-089.xht": [ - "0092455418b3b1289087461becda8ac572840f22", + "height-039.xht": [ + "976f4f58c6876156ccca90d029e01148be42af5d", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/normal-flow/height-006-ref.xht", "==" ] ], {} ] ], - "margin-left-090.xht": [ - "bd946f2bb6d76ad1a4a831fbbad9bba30883add6", + "height-040.xht": [ + "6e45df0f03ec86a8d6da2646ecd46cbd294b0fea", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/normal-flow/height-006-ref.xht", "==" ] ], {} ] ], - "margin-left-091.xht": [ - "ae73c469dfe60eef0b0fc72fc41ca620a8fc129b", + "height-045.xht": [ + "df06066cb7ec5f7793cdf8d51172b8a19017fc9c", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-031-ref.xht", + "/css/CSS2/normal-flow/height-001-ref.xht", "==" ] ], {} ] ], - "margin-left-092.xht": [ - "ec22c20376f7654fb27dbbe2ee01e972bbafb4d5", + "height-046.xht": [ + "eb9d84b827f8815cabee299c20c20550cc731268", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-031-ref.xht", + "/css/CSS2/normal-flow/height-001-ref.xht", "==" ] ], {} ] ], - "margin-left-100.xht": [ - "da10f7d5702815c1e0fc0eb131e2377216d38cc3", + "height-048.xht": [ + "1415779c082552cd2f1bf95e356442d3fcf9871f", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/normal-flow/height-001-ref.xht", "==" ] ], {} ] ], - "margin-left-101.xht": [ - "80796b1b63006bff36789f1e32e951ea99e5a917", + "height-049.xht": [ + "787afb88d578f2d9761effdb167c8151c7daa262", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/normal-flow/height-001-ref.xht", "==" ] ], {} ] ], - "margin-left-102.xht": [ - "2d287296bbb0ab7fd3333f9db45fc983705dbed6", + "height-050.xht": [ + "3e547402b64863463ac876e0713f428b4e9fbf6b", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/normal-flow/height-006-ref.xht", "==" ] ], {} ] ], - "margin-left-103.xht": [ - "74907db885f2afbee68e123e9f51f3dd0ea41151", + "height-051.xht": [ + "3cc037d36866c16e181a3cb2ec183b8ad7561f32", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-103-ref.xht", + "/css/CSS2/normal-flow/height-006-ref.xht", "==" ] ], {} ] ], - "margin-left-104.xht": [ - "5d5e3cfb584464c78bc58a669e8975b3478cdf8b", + "height-056.xht": [ + "a984276bae5b91eb508cbaa36ae91b7a51755332", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-103-ref.xht", + "/css/CSS2/normal-flow/height-001-ref.xht", "==" ] ], {} ] ], - "margin-left-109.xht": [ - "7ed4d7b53989935a40ba247cd1043499e75cb3a6", + "height-057.xht": [ + "5381e3a65a29f9d3b62c71b2ed66d1148c9d7c6a", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/normal-flow/height-001-ref.xht", "==" ] ], {} ] ], - "margin-left-110.xht": [ - "512152b00e4b64e698e01c82308ac94c2c87f87d", + "height-058.xht": [ + "c88f1b35d0bb4cc373826d90a522adc850e2a706", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/normal-flow/height-058-ref.xht", "==" ] ], {} ] ], - "margin-left-111.xht": [ - "1b5f74a3908066f5000945d776b35812e7e44e0f", + "height-059.xht": [ + "c97dc58db0811e63b73ff31392aa6817922c6e7c", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/normal-flow/height-001-ref.xht", "==" ] ], {} ] ], - "margin-left-112.xht": [ - "2710cfee3d87ca630f86243af176d62f498cc4df", + "height-060.xht": [ + "2bedadc30ac46e722b7797e4a5515606407868a6", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/normal-flow/height-001-ref.xht", "==" ] ], {} ] ], - "margin-left-113.xht": [ - "547d330e8e691e0f2ab3f664ec7ea9c6a0dd239c", + "height-061.xht": [ + "ae198b3a5b9d854f9337e32309e5224b64fabd4c", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-113-ref.xht", + "/css/CSS2/normal-flow/height-061-ref.xht", "==" ] ], {} ] ], - "margin-left-applies-to-001.xht": [ - "aad086e328d27747a9530e93058e8f375a8a112a", + "height-062.xht": [ + "0ee4bff6c58c2b3cc1addaebb006f2e905e6a631", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-applies-to-001-ref.xht", + "/css/CSS2/normal-flow/height-061-ref.xht", "==" ] ], {} ] ], - "margin-left-applies-to-002.xht": [ - "aae6789a5852d6d60695b7e8c268707aeee53a11", + "height-067.xht": [ + "2c276379a45c81fc5cbe14a0fbbf195ff279d0be", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-applies-to-001-ref.xht", + "/css/CSS2/normal-flow/height-067-ref.xht", "==" ] ], {} ] ], - "margin-left-applies-to-003.xht": [ - "f6a32e1af9471b3409188c432eaf8e59568be311", + "height-068.xht": [ + "4e06c3d85c52f60da6cd26496b8ec55de4865e6f", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-applies-to-001-ref.xht", + "/css/CSS2/normal-flow/height-067-ref.xht", "==" ] ], {} ] ], - "margin-left-applies-to-004.xht": [ - "0ba2c8cae5ec3c808878f2dea6d846ed5daf4aed", + "height-069.xht": [ + "5ca87865e646261429f8cb5d05d6fbc8f17a065a", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-applies-to-001-ref.xht", + "/css/CSS2/normal-flow/height-069-ref.xht", "==" ] ], {} ] ], - "margin-left-applies-to-005.xht": [ - "b766cfb1484d76af424947fcb9305f90af22c4f0", + "height-070.xht": [ + "721e7b3abf449dc8a76100e720052628c111479a", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-applies-to-001-ref.xht", + "/css/CSS2/normal-flow/height-067-ref.xht", "==" ] ], {} ] ], - "margin-left-applies-to-006.xht": [ - "12fcb9f2f3966a7950be54a2826aaf01f0bd67cb", + "height-071.xht": [ + "11777e1432a56c13b99c5645fcc953d40f10062d", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-applies-to-001-ref.xht", + "/css/CSS2/normal-flow/height-067-ref.xht", "==" ] ], {} ] ], - "margin-left-applies-to-007.xht": [ - "061c78edd64e3ad69de3e4a950af7934d0a7d0a4", + "height-072.xht": [ + "add8a800fff21ffca24d826ac566b3cac272d6fb", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-applies-to-001-ref.xht", + "/css/CSS2/normal-flow/height-072-ref.xht", "==" ] ], {} ] ], - "margin-left-applies-to-009.xht": [ - "7301e5bd68a794ed8f4b859d5746850a6babba8b", + "height-073.xht": [ + "df8ae287b0cdcbb13281d4ac5c4f82dbcf0f1a2a", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-applies-to-009-ref.xht", + "/css/CSS2/normal-flow/height-072-ref.xht", "==" ] ], {} ] ], - "margin-left-applies-to-012.xht": [ - "8e7fc4648c637113f2f5ad62fc124c897a9e7a81", + "height-078.xht": [ + "eec2c5f89a69b3214b1ac5a8c581e8feea6e680f", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-applies-to-009-ref.xht", + "/css/CSS2/normal-flow/height-067-ref.xht", "==" ] ], {} ] ], - "margin-left-applies-to-013.xht": [ - "1c18442c99378c3d9dd424f9e2a08e83b85eb153", + "height-079.xht": [ + "7ec17f8e2bc3991c7256ed3cf797652d693c38e6", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-applies-to-009-ref.xht", + "/css/CSS2/normal-flow/height-067-ref.xht", "==" ] ], {} ] ], - "margin-left-applies-to-014.xht": [ - "431b81e93d17b419308aa76f9afdeb22aa13bb34", + "height-080.xht": [ + "10a46239e869990c63a084712fc0498ce8f192f3", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-applies-to-009-ref.xht", + "/css/CSS2/normal-flow/height-080-ref.xht", "==" ] ], {} ] ], - "margin-left-applies-to-015.xht": [ - "3b2f99892398f46f6cd488b26962a526752712d0", + "height-081.xht": [ + "7bf1540835219b391f99261d77bb9513c747f8ae", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-applies-to-009-ref.xht", + "/css/CSS2/normal-flow/height-067-ref.xht", "==" ] ], {} ] ], - "margin-percentage-inherit-001.xht": [ - "5e73777157b60a540864f2f3213ea428261d918d", + "height-082.xht": [ + "84efec108b278cb29008dfc5729ae392bf5463e3", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-percentage-inherit-001-ref.xht", + "/css/CSS2/normal-flow/height-067-ref.xht", "==" ] ], {} ] ], - "margin-right-004.xht": [ - "9d9cb7090a1c2e0d614746768c94eae829b9cffa", + "height-083.xht": [ + "42d705441cc9ead365b5d68c921158c0df846d61", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/normal-flow/height-006-ref.xht", "==" ] ], {} ] ], - "margin-right-005.xht": [ - "92207ac4a1fd89ab4c615b7ad69a8cddc36020de", + "height-084.xht": [ + "23e80c73c175f5ad37f078bcbe7c55de39c3a0f4", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/normal-flow/height-006-ref.xht", "==" ] ], {} ] ], - "margin-right-006.xht": [ - "877506dc448545b8f67647f9af98b195f54c5797", + "height-089.xht": [ + "2b644883f1a2a05efe0a8c471af34eea71f384f4", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/normal-flow/height-001-ref.xht", "==" ] ], {} ] ], - "margin-right-007.xht": [ - "d310ac58138cfe1e958c792b5617a16edd5c0c12", + "height-090.xht": [ + "96b258eb48901d0ba06d9e48c483077ffd19728d", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-007-ref.xht", + "/css/CSS2/normal-flow/height-001-ref.xht", "==" ] ], {} ] ], - "margin-right-008.xht": [ - "0a9c9a958abb37e5e7223b19c1982f0a195c798b", + "height-091.xht": [ + "f0523880134b98e22701ad8d4553f5648d485cf9", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-007-ref.xht", + "/css/CSS2/normal-flow/height-003-ref.xht", "==" ] ], {} ] ], - "margin-right-016.xht": [ - "9f18dcc3593cae1ba61256572c3f9318d52173a0", + "height-092.xht": [ + "707f0f8350ef4132d6befc0d3d488204aa72e9db", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/normal-flow/height-001-ref.xht", "==" ] ], {} ] ], - "margin-right-017.xht": [ - "d959e2b58c0cb06d39979e9833a95983c9427c4e", + "height-093.xht": [ + "db530c86b320187b8bf2ab546865b4e4ab0610c8", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/normal-flow/height-001-ref.xht", "==" ] ], {} ] ], - "margin-right-018.xht": [ - "6c51eaad8c85db43b716e91d62dd1416bc7c6026", + "height-094.xht": [ + "563b65bc238e440dc1db5de1c695a0e3bd96b05e", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/normal-flow/height-006-ref.xht", "==" ] ], {} ] ], - "margin-right-019.xht": [ - "91050afb21e2dde0741b534be0acffcfb766dd09", + "height-095.xht": [ + "0e6884450454ab3a811ece40a2d8dab808bce791", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-019-ref.xht", + "/css/CSS2/normal-flow/height-006-ref.xht", "==" ] ], {} ] ], - "margin-right-020.xht": [ - "6e06fa92e556ebb4ccd22fa1f4323f6beedb7925", + "height-100.xht": [ + "0a103500790a77d31fe74c0818a5b96f305840c1", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-019-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "margin-right-028.xht": [ - "c1c82cbe703cdb1bab3668282574faa4cb9fcf51", + "height-101.xht": [ + "62916250de3032edbc838111140019bcc06e167a", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "margin-right-029.xht": [ - "6c6a4bdfdd10cb04ee952f91959098803af45bc8", + "height-102.xht": [ + "e4b5d88b5adcb5106402c0a7c1ee44cb9181e5cf", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "margin-right-030.xht": [ - "a2c447ad5c1d87b9cde38eef2f292452a1e59874", + "height-103.xht": [ + "4ea3e175bff48a58232c85e56353f9129ef958c0", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "margin-right-031.xht": [ - "034211c1e75c087b99dc8cc6336afaec3dd324d5", + "height-104.xht": [ + "e234cd9fa1b13aa27630488fef407faa79ff1148", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-031-ref.xht", + "/css/CSS2/normal-flow/height-003-ref.xht", "==" ] ], {} ] ], - "margin-right-032.xht": [ - "de1821bae5f7df21aabca74cf7dd1463757d556a", + "height-111.xht": [ + "24588842c57c735382f8dbaaf687a42a7552b1c9", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-031-ref.xht", + "/css/CSS2/normal-flow/height-111-ref.xht", "==" ] ], {} ] ], - "margin-right-040.xht": [ - "551a19954e100c3fdd4687c194f7dfa01b479e70", + "height-112.xht": [ + "f453e46d1ad54d541014f132a6589bcafc844535", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/normal-flow/height-112-ref.xht", "==" ] ], {} ] ], - "margin-right-041.xht": [ - "59f30bd5adc3280429ba83635e6189e2a82453a1", + "height-113.xht": [ + "74a3c2997f936ba40ca60fc64e291ffe0b87f403", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/normal-flow/height-113-ref.xht", "==" ] ], {} ] ], - "margin-right-042.xht": [ - "cefe554b56345a6a483c5551f87578c970fba7af", + "height-114.xht": [ + "a73c64180eb827dc4ea2f2ed9ffed536dfe0f742", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/normal-flow/height-114-ref.xht", "==" ] ], {} ] ], - "margin-right-043.xht": [ - "d042b472328941f68f1dc48f657e0db28205a7a3", + "height-applies-to-004.xht": [ + "1cf1e9d9dfab67722fb660b4c0845afef1562a8e", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-043-ref.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "margin-right-044.xht": [ - "95875d110c579bf3676c853bbe11c26a2d636ec9", + "height-applies-to-005.xht": [ + "0ebf0a32fc503a77231dbb0d18b532073f49a1ac", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-043-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "margin-right-052.xht": [ - "a73c68cda070b2185791fcb021106d116c64663a", + "height-applies-to-006.xht": [ + "b63846dd3dfa85893be968695d141985649a8213", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "margin-right-053.xht": [ - "ca9382ddc3dbb9f4347874d218466fe24a3fc172", + "height-applies-to-007.xht": [ + "6d33bf2d7309c6b5ba615940ea59315c65c6613f", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "margin-right-054.xht": [ - "a3396cb00708af10b322fcf0bef365268b4f0b08", + "height-applies-to-008.xht": [ + "764d6f65163d00f5eae83caf3f3855e1939178cc", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "margin-right-055.xht": [ - "e62776cbd11d9ae7c8ad08a9fb953e9484b2a73a", + "height-applies-to-009.xht": [ + "c962c949ec61e6abc8b87ec6a86551dee95b3c7d", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-043-ref.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "margin-right-056.xht": [ - "fbc9a2ee373314e4e6eb8bdceb6cc01b4a2ef933", + "height-applies-to-012.xht": [ + "7bf8a830652836b4f1a2fa4b712c59015b710335", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-043-ref.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "margin-right-064.xht": [ - "6130e71d6e6cc2d962f71978e1de0f794b841f97", + "height-applies-to-013.xht": [ + "87518b66a39282a82f6f3241d59afe401178e61a", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "margin-right-065.xht": [ - "3e288b4e01bf398fa63ad0e28dcc8e0ddb844ab3", + "height-applies-to-014.xht": [ + "92e87cef15ca39e87017f417bd411e82b8ea78d8", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "margin-right-066.xht": [ - "780fcd5873f38f97044a275984f02bfd00f57f69", + "height-applies-to-015.xht": [ + "1a720f5c39340aa71495df0396560312eafac53d", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "margin-right-067.xht": [ - "9976c5b120240b002c94f54a10e3b8b64ba101cb", + "height-applies-to-016.xht": [ + "2a35beebe217e1c3b8b10188fe3b32e9ccb54b8b", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-067-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "margin-right-068.xht": [ - "00d9287458ae90bc3f4203ac02aa96249a33e7b2", + "height-inherit-001.xht": [ + "9193b284961ec8ab604c52ae795487dff5d6afd9", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-067-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "margin-right-076.xht": [ - "aefac0a25cd16bc08c74bf0e2cd784f5367754b8", + "height-percentage-001.xht": [ + "62b48051c4ca7ee50da29f672e52175c60df09d9", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/normal-flow/height-percentage-001-ref.xht", "==" ] ], {} ] ], - "margin-right-077.xht": [ - "5df88b007568d487bc141b2be7eefa75e5700157", + "height-percentage-002.xht": [ + "e0f153e232518b86e3348eb56754feb93eadbb6e", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "margin-right-078.xht": [ - "c6f2f4a039a7eed1f5d1be2d2757214e6a4da425", + "height-percentage-003.xht": [ + "815bdcaebccd8141a6f2a9a0309cba15c8db4f78", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/normal-flow/height-percentage-003-ref.xht", "==" ] ], {} ] ], - "margin-right-079.xht": [ - "35d0c41551a829a97d92aa2d98791784a8d386e3", + "height-percentage-004.xht": [ + "85940a67329c1514f5f84ba2fc88b59d3b8fc9e4", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-079-ref.xht", + "/css/CSS2/normal-flow/height-percentage-001-ref.xht", "==" ] ], {} ] ], - "margin-right-080.xht": [ - "1796aedba515cac77d7b80655c9be6f6f505944a", + "height-percentage-005.xht": [ + "6931f06a2193c5c5266a8d072d649850fa337146", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-079-ref.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "margin-right-088.xht": [ - "c9dbe04d7ee9024557c87fb0c8654b53cba71d66", + "inline-block-000.xht": [ + "7a985d7eb26247d785923ac0ae5906b3290b323b", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/normal-flow/inline-block-000-ref.xht", "==" ] ], {} ] ], - "margin-right-089.xht": [ - "bc97b33e22392d6eabefed600eae8253eeddb250", + "inline-block-height-001.xht": [ + "2b194b196f48eb4d741b9b39f15060e4af585398", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/normal-flow/inline-block-height-001-ref.xht", "==" ] ], {} ] ], - "margin-right-090.xht": [ - "4a8bb9052be2a590772b22c594963b4e7c8f5de4", + "inline-block-height-002.xht": [ + "c0181dc54f446c6a46b1099cd11e53c8145a6926", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/normal-flow/inline-block-height-002-ref.xht", "==" ] ], {} ] ], - "margin-right-091.xht": [ - "164f4a3110784acc64254259cb92b159e9fe8ba7", + "inline-block-non-replaced-height-001.xht": [ + "9c71cd4e52f1a1c2cb9dfdc52dd8f5b7f4d8bdbd", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-031-ref.xht", + "/css/CSS2/normal-flow/height-percentage-001-ref.xht", "==" ] ], {} ] ], - "margin-right-092.xht": [ - "5abb7730dbd90f72d5c58d29ce16792610e8795e", + "inline-block-non-replaced-height-002.xht": [ + "60afcd00479cda1ed8b350c2a0f4eb9230bc976b", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-031-ref.xht", + "/css/CSS2/normal-flow/height-percentage-001-ref.xht", "==" ] ], {} ] ], - "margin-right-100.xht": [ - "88f6383f20a009bd558e14d5961abd63a71b5bbd", + "inline-block-non-replaced-width-001.xht": [ + "a7a14c93c4781c0278ae7b276370f28134f27e1f", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-right-100-ref.xht", + "/css/CSS2/normal-flow/inline-block-non-replaced-width-001-ref.xht", "==" ] ], {} ] ], - "margin-right-101.xht": [ - "9d65336bee325570df55cba32545f9570fdbabba", + "inline-block-non-replaced-width-002.xht": [ + "20b36c9d83102ef948b064b5fa498fd0ca77dffc", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-right-100-ref.xht", + "/css/CSS2/normal-flow/inline-block-non-replaced-width-002-ref.xht", "==" ] ], {} ] ], - "margin-right-102.xht": [ - "18718dbe8690ea11d92156d2deed87e8f6f686d8", + "inline-block-non-replaced-width-003.xht": [ + "eb24c6ff46d8017c9a730afb588973d8a06899d5", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-right-100-ref.xht", + "/css/CSS2/positioning/absolute-non-replaced-width-017-ref.xht", "==" ] ], {} ] ], - "margin-right-103.xht": [ - "347e82e987b1825f1e91acdb2f4b819412827567", + "inline-block-non-replaced-width-004.xht": [ + "4f105a662abab66d70b3d01c9cf883a4a7d8ecfc", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-right-103-ref.xht", + "/css/CSS2/positioning/absolute-non-replaced-width-017-ref.xht", "==" ] ], {} ] ], - "margin-right-104.xht": [ - "ec5281fff4bc14810a9ac97cd303e577d50aee29", + "inline-block-replaced-height-001.xht": [ + "bde599a336f1fc09ba5ebd8a66365d05ae277311", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-right-103-ref.xht", + "/css/CSS2/normal-flow/block-replaced-height-001-ref.xht", "==" ] ], {} ] ], - "margin-right-109.xht": [ - "09dc3d4198e8bd77af210b24c51f2cc20320c898", + "inline-block-replaced-height-002.xht": [ + "b6753412d844d6785231d09ff7856a625631e83d", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/normal-flow/block-replaced-height-002-ref.xht", "==" ] ], {} ] ], - "margin-right-110.xht": [ - "c8660723ada4a0baf7569cf1591445b90ddde4a0", + "inline-block-replaced-height-003.xht": [ + "0ee4bc0cebd678d9e1fcc52b2669a34f3eb2b7ca", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/normal-flow/inline-block-replaced-height-003-ref.xht", "==" ] ], {} ] ], - "margin-right-111.xht": [ - "5857d3759bf70b5490a2688078789a885c133ab9", + "inline-block-replaced-height-004.xht": [ + "d477ba09e0e6b09c77d0ce66144aa90cb3c6e450", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/normal-flow/block-replaced-height-004-ref.xht", "==" ] ], {} ] ], - "margin-right-112.xht": [ - "10cfe7e8b4b079189a98e3ad20e8a867d9755cbd", + "inline-block-replaced-height-005.xht": [ + "5307bad752216ac88d53acf2923d97ac75933093", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/normal-flow/block-replaced-height-005-ref.xht", "==" ] ], {} ] ], - "margin-right-113.xht": [ - "94c65354a729f51ff8a11a5e124433176084a2c7", + "inline-block-replaced-height-006.xht": [ + "fc5e234900f541ffe11b1038181ae31e36504d07", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-right-113-ref.xht", + "/css/CSS2/normal-flow/block-replaced-height-006-ref.xht", "==" ] ], {} ] ], - "margin-right-applies-to-001.xht": [ - "89f0f02249b1974577672b3fbc1b7f35931f73cc", + "inline-block-replaced-height-007.xht": [ + "a14dd8a9cbc858a3fc8237daf5e8c6c3e71617ea", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-applies-to-001-ref.xht", + "/css/CSS2/normal-flow/block-replaced-height-004-ref.xht", "==" ] ], {} ] ], - "margin-right-applies-to-002.xht": [ - "f3187d1453bb1260175dc8a3528736c0bfb1beb3", + "inline-block-replaced-height-009.xht": [ + "01c67c46fbbf293dc127a7dfe339b1392be01476", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-applies-to-001-ref.xht", + "/css/CSS2/positioning/absolute-replaced-width-003b-ref.xht", "==" ] ], {} ] ], - "margin-right-applies-to-003.xht": [ - "b344588bc7311875baa4d584cb60a741f49891cc", + "inline-block-replaced-width-001.xht": [ + "fee9a3e194e8265af5477e3db7f2a4657b264c23", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-applies-to-001-ref.xht", + "/css/CSS2/normal-flow/inline-block-replaced-width-001-ref.xht", "==" ] ], {} ] ], - "margin-right-applies-to-004.xht": [ - "3c29b163d415c61aebb9857d188e9c944d11fab1", + "inline-block-replaced-width-002.xht": [ + "018d8dee87e8a2160db021cc32b5712c80c34ca2", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-applies-to-001-ref.xht", + "/css/CSS2/normal-flow/inline-block-replaced-width-002-ref.xht", "==" ] ], {} ] ], - "margin-right-applies-to-005.xht": [ - "bfbe4aca2ae731047768651cd2b5741a261c3a46", + "inline-block-replaced-width-003.xht": [ + "53db1deb4583b138606813b726121f54ee474e47", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-applies-to-001-ref.xht", + "/css/CSS2/normal-flow/inline-block-replaced-width-003-ref.xht", "==" ] ], {} ] ], - "margin-right-applies-to-006.xht": [ - "1eb5881e50855b4487bcf7d2ebf5cf5b9b197ed3", + "inline-block-replaced-width-006.xht": [ + "ba469de15f665deba47d4ee361bf5603a014ce8b", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-applies-to-001-ref.xht", + "/css/CSS2/normal-flow/inline-block-replaced-width-006-ref.xht", "==" ] ], {} ] ], - "margin-right-applies-to-007.xht": [ - "c889e02b6a04c1d50a0734ecae2cfba6be55b340", + "inline-block-replaced-width-007.xht": [ + "d7f3297f194192ea0532ccfecdf6ecb1e59f6bd6", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-applies-to-001-ref.xht", + "/css/CSS2/positioning/absolute-replaced-width-003a-ref.xht", "==" ] ], {} ] ], - "margin-right-applies-to-009.xht": [ - "a3151c16f7d763f793e05a9e1cf9c7bcceafeec4", + "inline-block-replaced-width-008.xht": [ + "e3efba6c9d332a435ac496e9f4cbece64d6a46a9", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-applies-to-009-ref.xht", + "/css/CSS2/positioning/absolute-replaced-width-003c-ref.xht", "==" ] ], {} ] ], - "margin-right-applies-to-012.xht": [ - "a55038bde27016cd622d4c211d5cec179da483fa", + "inline-block-valign-001.xht": [ + "c41b779fc7d1215e0bb69bc983045c2713a41fbf", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-applies-to-009-ref.xht", + "/css/CSS2/normal-flow/inline-block-valign-001-ref.xht", "==" ] ], {} ] ], - "margin-right-applies-to-013.xht": [ - "a60b39308ccf23b08a85eb5ef9083a962eef51d6", + "inline-block-valign-002.xht": [ + "750580a8c35a702d56b4f91939c47b077870b7bc", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-applies-to-009-ref.xht", + "/css/CSS2/normal-flow/inline-block-valign-002-ref.xht", "==" ] ], {} ] ], - "margin-right-applies-to-014.xht": [ - "78b23cc919dc2513f0a9aa41fb33ea37cdc66428", + "inline-block-width-001a.xht": [ + "c763fa80e03d7590151ed8a4a22fece9bf636aa5", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-applies-to-009-ref.xht", + "/css/CSS2/normal-flow/inline-block-width-001-ref.xht", "==" ] ], {} ] ], - "margin-right-applies-to-015.xht": [ - "fe226531584f1559856d3174081e593fbf499f48", + "inline-block-width-001b.xht": [ + "45e4ab05d79a8851914c416363a41b121454a43d", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-applies-to-009-ref.xht", + "/css/CSS2/normal-flow/inline-block-width-001-ref.xht", "==" ] ], {} ] ], - "margin-shorthand-001.xht": [ - "8deb60aacda4b8c53d26d24b346618d3287b3697", + "inline-block-width-002a.xht": [ + "51ea36c4336c891fd571998d1fcf1d659f5171b8", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-shorthand-001-ref.xht", + "/css/CSS2/normal-flow/inline-block-width-002-ref.xht", "==" ] ], {} ] ], - "margin-shorthand-002.xht": [ - "df6e2ddfdc882fd250922ad4c7c24167b5718298", + "inline-block-width-002b.xht": [ + "a2bca4702cc8b21ce14225e1b1f94340e0b33b29", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-shorthand-002-ref.xht", + "/css/CSS2/normal-flow/inline-block-width-002-ref.xht", "==" ] ], {} ] ], - "margin-shorthand-003.xht": [ - "0000a18d7c7c772e9cc52e962414d4f5694ac0a5", + "inline-block-zorder-001.xht": [ + "daaf4b3401258cef183acbd0744dcc4f79eee375", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-shorthand-003-ref.xht", + "/css/CSS2/normal-flow/inline-block-zorder-001-ref.xht", "==" ] ], {} ] ], - "margin-shorthand-004.xht": [ - "5308f7686e9566bd018288c2de15bf9463235124", + "inline-block-zorder-002.xht": [ + "cc304072e3db915c6b5a8eeed541b7cd496cbf94", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-shorthand-003-ref.xht", + "/css/CSS2/normal-flow/inline-block-zorder-001-ref.xht", "==" ] ], {} ] ], - "margin-top-004.xht": [ - "14893a0eba338c98025ad4a78938efeadd675421", + "inline-block-zorder-003.xht": [ + "7b8c46b8e5abd7edf5325a3693ca8e2e21ae222b", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/normal-flow/inline-block-zorder-003-ref.xht", "==" ] ], {} ] ], - "margin-top-005.xht": [ - "9a4df918f7e1d6188be0baebf73e0c5c68061462", + "inline-block-zorder-004.xht": [ + "ecb67568885039a08c86a01dbcf0048b3e3f1b5a", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/normal-flow/inline-block-zorder-004-ref.xht", "==" ] ], {} ] ], - "margin-top-006.xht": [ - "866aee1582b7c50f89363c28d1a88fa54f9d466c", + "inline-block-zorder-005.xht": [ + "24d4a385a53c79bbe888c191db5e581fdcacf561", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/normal-flow/inline-block-zorder-004-ref.xht", "==" ] ], {} ] ], - "margin-top-007.xht": [ - "9466c1133f0c9173e5c125e128d957bd0f4eb26c", + "inline-box-border-line-break.html": [ + "6688d5e3ada2483288fc5f23c42a915d44a6300b", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-top-007-ref.xht", + "/css/CSS2/normal-flow/inline-box-border-line-break-ref.html", "==" ] ], {} ] ], - "margin-top-008.xht": [ - "181b3d35e24c358377a1882f62d1fa1a150c2c03", + "inline-box-padding-line-break.html": [ + "70d518f411efb383debce5cd06cf604569217aee", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-top-007-ref.xht", + "/css/CSS2/normal-flow/inline-box-border-line-break-ref.html", "==" ] ], {} ] ], - "margin-top-016.xht": [ - "20073525ec3f19a4e29cd23dda64384bf47f6800", + "inline-non-replaced-height-002.xht": [ + "e3568f555d516824c3ccdb2a92cb925fadebf311", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/normal-flow/inline-non-replaced-height-002-ref.xht", "==" ] ], {} ] ], - "margin-top-017.xht": [ - "03cd2afccc81b2d36b15a0b43ef02fe96ddffe17", + "inline-non-replaced-height-003.xht": [ + "4fc0a9d3d29a9077ecd27f69d2c7722ec756b079", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/normal-flow/inline-non-replaced-height-002-ref.xht", "==" ] ], {} ] ], - "margin-top-018.xht": [ - "f5ab60112aa2c442a62e7879990ed774c4b34698", + "inline-non-replaced-width-001.xht": [ + "30cfbfb8486d0c7578b2366bc973391991b196ce", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/normal-flow/inline-non-replaced-width-001-ref.xht", "==" ] ], {} ] ], - "margin-top-019.xht": [ - "b8f383dfa4f6d056b869f582ed00eed330f07b4c", + "inline-non-replaced-width-002.xht": [ + "375e22fe0905d747f0a655327773c903692a5a0b", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-top-019-ref.xht", + "/css/CSS2/normal-flow/inline-non-replaced-width-001-ref.xht", "==" ] ], {} ] ], - "margin-top-020.xht": [ - "9260da4066669f8fbe3ab5af82711f2dd1620cf5", + "inline-replaced-height-001.xht": [ + "c345c21224bd656460eba080b1c56a7bbcbfb99b", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-top-019-ref.xht", + "/css/CSS2/normal-flow/block-replaced-height-001-ref.xht", "==" ] ], {} ] ], - "margin-top-028.xht": [ - "c84cd964d42104a067d7656dd9ed4f4c18c59f93", + "inline-replaced-height-002.xht": [ + "666ddaa7222c7fdf2b3bf3136bd067a81e78bc3a", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/normal-flow/block-replaced-height-002-ref.xht", "==" ] ], {} ] ], - "margin-top-029.xht": [ - "7105776f73174bcd25ecd9610babb8e23d712ff2", + "inline-replaced-height-003.xht": [ + "2bac39dfcaf6b20829f4b056d80fe47a549ee10a", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/normal-flow/inline-block-replaced-height-003-ref.xht", "==" ] ], {} ] ], - "margin-top-030.xht": [ - "2b8bb60975a6281b831453be5c0a9efcaaea2c9b", + "inline-replaced-height-004.xht": [ + "20ddd95d4e3fd433e0ccb4d25abba82954241138", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/normal-flow/block-replaced-height-004-ref.xht", "==" ] ], {} ] ], - "margin-top-031.xht": [ - "fddfc74e069a561f12f6a38a3ad728856fb7ccc5", + "inline-replaced-height-005.xht": [ + "c52df329f8ba73d7811ee6b58d5b39e6fcee4c8d", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-top-031-ref.xht", + "/css/CSS2/normal-flow/block-replaced-height-005-ref.xht", "==" ] ], {} ] ], - "margin-top-032.xht": [ - "114ac00b056b4bcc71550002ad8daa5608b68b7c", + "inline-replaced-height-006.xht": [ + "d8d332ffab08de5200b2626336612782dbfc2047", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-top-031-ref.xht", + "/css/CSS2/normal-flow/block-replaced-height-006-ref.xht", "==" ] ], {} ] ], - "margin-top-040.xht": [ - "9a582cc5df60f799dba743ffa9956de0f712ddd7", + "inline-replaced-height-007.xht": [ + "093d3ebccd90c559399bd394c1b4aa72e6f5379a", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/normal-flow/block-replaced-height-004-ref.xht", "==" ] ], {} ] ], - "margin-top-041.xht": [ - "ef85cb43f39638f4849448a4a8ea26c3e80a94b4", + "inline-replaced-height-009.xht": [ + "9edb95ab175d58c346f4207c6609ec8fc46d31d2", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/positioning/absolute-replaced-width-003b-ref.xht", "==" ] ], {} ] ], - "margin-top-042.xht": [ - "65b363bdd7b3d6ac5d02cab0cd9a5919a90e184f", + "inline-replaced-height-010.xht": [ + "c5498e1f7389d0bbc1584c7ff31ac1ab451ba7b7", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "margin-top-043.xht": [ - "2dabad2c772b9087cc3a43d99ddc3b1ee97814f9", + "inline-replaced-height-011.xht": [ + "2692e9b9a6f5cb549c28e441f592f8d032db9df0", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-top-043-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "margin-top-044.xht": [ - "d02fa3dc65fddefa4df119445f667f5774e83bbf", + "inline-replaced-width-001.xht": [ + "12f518833f3205e1e3b8583556daca23331b12ba", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-top-043-ref.xht", + "/css/CSS2/normal-flow/inline-replaced-width-001-ref.xht", "==" ] ], {} ] ], - "margin-top-052.xht": [ - "8bb52dcc9176e6e7301c1376fd249353ab3d196a", + "inline-replaced-width-002.xht": [ + "eaa5049dc70d235aad8126cedfcaa7063e0dc21f", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/normal-flow/inline-replaced-width-002-ref.xht", "==" ] ], {} ] ], - "margin-top-053.xht": [ - "5e6515364781486ba8dd12a3a5758b13e79963ce", + "inline-replaced-width-003.xht": [ + "1624538bf6efccef3a08b9dee05fb073422a5dfa", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/normal-flow/inline-replaced-width-003-ref.xht", "==" ] ], {} ] ], - "margin-top-054.xht": [ - "aaeda845fc9097415607409d958674a787f169e1", + "inline-replaced-width-006.xht": [ + "daae2457d0d35edc33d49a79b191ba1b0072695d", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/normal-flow/inline-replaced-width-001-ref.xht", "==" ] ], {} ] ], - "margin-top-055.xht": [ - "5569d2eb87cced91b0fdf6b6da33106f40d9f8ff", + "inline-replaced-width-008.xht": [ + "07224f6cd3ea999ed92d70323294eabd31e874e1", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-top-043-ref.xht", + "/css/CSS2/positioning/absolute-replaced-width-003a-ref.xht", "==" ] ], {} ] ], - "margin-top-056.xht": [ - "c143009a7994d888e4dda6e223077645f737ad4b", + "inline-replaced-width-009.xht": [ + "ca6e9df1191686f1eef08d8045b09565b53d311d", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-top-043-ref.xht", + "/css/CSS2/positioning/absolute-replaced-width-003c-ref.xht", "==" ] ], {} ] ], - "margin-top-064.xht": [ - "5d37faa21716979760c4ad4fcaa11e4440d7462e", + "inline-replaced-width-011.xht": [ + "2d7473ef00b17ee56a5818f022754d4312db1a14", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/normal-flow/inline-replaced-width-011-ref.xht", "==" ] ], {} ] ], - "margin-top-065.xht": [ - "8d3295456e90f7f49307cfdaec37004999f6e6d2", + "inline-replaced-width-012.xht": [ + "b94ccb299156a97f91f2090d1e88a4348a73ec81", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/normal-flow/inline-replaced-width-012-ref.xht", "==" ] ], {} ] ], - "margin-top-066.xht": [ - "c32d02d37732e117b32eee8f5ab8fc5220d0e41c", + "inline-replaced-width-013.xht": [ + "8ff317755ac57370f93595103fb72d447d64d677", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/normal-flow/inline-replaced-width-012-ref.xht", "==" ] ], {} ] ], - "margin-top-067.xht": [ - "2e65cb75bf42cbcda9cf668bce57e18c7bf39540", + "inline-replaced-width-014.xht": [ + "b7bb1a2afcb725b85b160b986ec5fd55bb6f1854", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-top-067-ref.xht", + "/css/CSS2/normal-flow/inline-replaced-width-014-ref.xht", "==" ] ], {} ] ], - "margin-top-068.xht": [ - "23228ea3945e9f08b277a387dcbe67e31c89732c", + "inline-replaced-width-015.xht": [ + "3af87c72f1cbb40a5a7629fe0232a11faae5bf88", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-top-067-ref.xht", + "/css/CSS2/normal-flow/inline-replaced-width-014-ref.xht", "==" ] ], {} ] ], - "margin-top-076.xht": [ - "774a76a204891ade25736aa46ea306844d29f495", + "inline-replaced-width-016.xht": [ + "efbedfa263f418a77facfdc6297ad75a9fe0700b", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "margin-top-077.xht": [ - "eb2854774c4bba9976cf50953216ddd6d0a7868c", + "inline-replaced-width-017.xht": [ + "232dc7622f7c955ec94c8f7636595e21c79bfb39", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "margin-top-078.xht": [ - "aec7ec86ed5414c55a76b272eaa1f8e7a27b8166", + "inline-table-002a.xht": [ + "012b28ba1ce66a946d319ac2d72f2b2f6352e778", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/normal-flow/inline-table-002-ref.xht", "==" ] ], {} ] ], - "margin-top-079.xht": [ - "b80da795b5b71c87d750a23ff88bc9b376856ef3", + "inline-table-002b.xht": [ + "59afc3e4439be44fb8f8f4cd83eeacb22e7b6843", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-top-079-ref.xht", + "/css/CSS2/normal-flow/inline-table-002-ref.xht", "==" ] ], {} ] ], - "margin-top-080.xht": [ - "a9d6e79e49bafd188666649e466bc33fd393f052", + "inline-table-003.xht": [ + "ac9dd9c4734ebccafebe1b6ccd09784cd0588698", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-top-079-ref.xht", + "/css/CSS2/normal-flow/inline-table-003-ref.xht", "==" ] ], {} ] ], - "margin-top-088.xht": [ - "d5035326cee01ba412b784fe5f4e016b2adee804", + "inline-table-height-001.xht": [ + "ac6994869ac76760c91554638746723047d42399", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/normal-flow/inline-table-height-001-ref.xht", "==" ] ], {} ] ], - "margin-top-089.xht": [ - "88dac0fd535b1abe86c7d5d5aed31e0ce13a215a", + "inline-table-height-002.xht": [ + "cb40592402efb346afc597c092c3584e9ad48636", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/normal-flow/inline-table-height-002-ref.xht", "==" ] ], {} ] ], - "margin-top-090.xht": [ - "4b4bc7f66d2409acf7402c224ea285c9a7e33cda", + "inline-table-valign-001.xht": [ + "e23ef327d7b6d0cdf8567852fdc2151cf178e6d3", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/normal-flow/inline-table-valign-001-ref.xht", "==" ] ], {} ] ], - "margin-top-091.xht": [ - "e70ee9df3a23ef2a8661cf14eade8acf2e800563", + "inline-table-width-001a.xht": [ + "bf0267c16a3c396f917bc5296a70b6e3aee3dc1b", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-top-031-ref.xht", + "/css/CSS2/normal-flow/inline-table-width-001-ref.xht", "==" ] ], {} ] ], - "margin-top-092.xht": [ - "089a670fb13267f71cacd97e1881164cab9c1358", + "inline-table-width-001b.xht": [ + "c2214139361cce8fabbd203e48fbd2022197fa16", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-top-031-ref.xht", + "/css/CSS2/normal-flow/inline-table-width-001-ref.xht", "==" ] ], {} ] ], - "margin-top-100.xht": [ - "fea619021ff634cd067175d99455d636741106ac", + "inline-table-width-002a.xht": [ + "960048b84444bd3e7d5fe29571caee031eb5b5b1", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-bottom-100-ref.xht", + "/css/CSS2/normal-flow/inline-table-width-002-ref.xht", "==" ] ], {} ] ], - "margin-top-101.xht": [ - "9995d0ef33b0e38341f08b8a1a5d9c6472cd065e", + "inline-table-width-002b.xht": [ + "1fd6f723de354fa0d1daa20af08dfd37c64f679b", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-bottom-100-ref.xht", + "/css/CSS2/normal-flow/inline-table-width-002-ref.xht", "==" ] ], {} ] ], - "margin-top-102.xht": [ - "361b55ecb82495b34031acb9c03540ae7821899d", + "inline-table-zorder-001.xht": [ + "a6351b9202fd3999b45f08b652d9d75bbe94eed0", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-bottom-100-ref.xht", + "/css/CSS2/normal-flow/inline-table-zorder-001-ref.xht", "==" ] ], {} ] ], - "margin-top-103.xht": [ - "fba5ffb0efc453653a3b671fb3fd442619a0353a", + "inline-table-zorder-002.xht": [ + "0377df70b4d70d2b18aa4fd2a9fe5980eebd18e2", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-top-103-ref.xht", + "/css/CSS2/normal-flow/inline-table-zorder-001-ref.xht", "==" ] ], {} ] ], - "margin-top-104.xht": [ - "82ccf89cede4ed162b9349d6f873ed0738f88d97", + "inline-table-zorder-003.xht": [ + "ebdfe70277e1900229b869beaa374d25f133cb16", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-top-103-ref.xht", + "/css/CSS2/normal-flow/inline-table-zorder-003-ref.xht", "==" ] ], {} ] ], - "margin-top-109.xht": [ - "3a0f50f8065e2ade339a9a3dbf9e2aa7bf4d78ab", + "inline-table-zorder-004.xht": [ + "6cbd9aa9982df4870b6e51775215fdf30e02b9aa", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/normal-flow/inline-table-zorder-004-ref.xht", "==" ] ], {} ] ], - "margin-top-110.xht": [ - "501d74f4c122d9c942309563bd58ad12434c1ba7", + "inline-table-zorder-005.xht": [ + "278a94ba571fe520f22fc98a1aef30db2db99935", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/normal-flow/inline-table-zorder-004-ref.xht", "==" ] ], {} ] ], - "margin-top-111.xht": [ - "8d44f9a5686424634af41cf4107e68447e6c38ae", + "inlines-002.xht": [ + "78bb5c37947891cc3de47572fc6f23c664247d64", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/normal-flow/inlines-002-ref.xht", "==" ] ], {} ] ], - "margin-top-112.xht": [ - "ee88f890d765442411be9f88cdcde7472b87f7e9", + "inlines-013.xht": [ + "20ef0bfe278431bf106eb904c609b0f323226e48", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/normal-flow/inlines-013-ref.xht", "==" ] ], {} ] ], - "margin-top-113.xht": [ - "b91e57ef683aa467a8154432c54338f59617e0b8", + "inlines-016.xht": [ + "28c825a92f3e99a1a7780239301786ee84acf5fa", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-top-113-ref.xht", + "/css/CSS2/normal-flow/inlines-016-ref.xht", "==" ] ], {} ] ], - "margin-top-applies-to-001.xht": [ - "a83e87712fed6b034bd2ac645070fea1932c4cee", + "inlines-017.xht": [ + "e457c589b49c7ea34ca2d79be90c7b2068dea128", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-top-applies-to-001-ref.xht", + "/css/CSS2/normal-flow/inlines-017-ref.xht", "==" ] ], {} ] ], - "margin-top-applies-to-002.xht": [ - "e2d5747bacb453043512e2b020c7a56c3b5168fd", + "inlines-020.xht": [ + "9799adfb7545df726ec48af75e6e313c20ea8493", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-top-applies-to-001-ref.xht", + "/css/CSS2/normal-flow/inlines-020-ref.xht", "==" ] ], {} ] ], - "margin-top-applies-to-003.xht": [ - "d0036b58cc522b2ea539b4e3f30cddb0cd2fbbea", + "intrinsic-size-with-negative-margins.html": [ + "93dfc3dfd770be960eec71bc00082a04e7385e97", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-top-applies-to-001-ref.xht", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "margin-top-applies-to-004.xht": [ - "c69c9599f2beb15647c7c002c3b28747fb7717c2", + "margin-collapse-through-percentage-height-block.html": [ + "0248ccb910a8de03bf5d0f989b0844cf4bd2cc45", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-top-applies-to-001-ref.xht", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "margin-top-applies-to-005.xht": [ - "61ed474c4973ca455d26db4a946aaffc9bd9f47b", + "margin-collapse-through-percentage-padding.html": [ + "dfd5015d050689c3c3a01d785ab7b75025794505", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-top-applies-to-001-ref.xht", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "margin-top-applies-to-006.xht": [ - "2fd4cf33c4efe017f3ffc8ed5d08d69e80cea5b5", + "margin-collapse-through-zero-height-block.html": [ + "471a4c7f5a4c054b1141162f88fdda9416343a5b", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-top-applies-to-001-ref.xht", + "/css/reference/ref-filled-green-200px-square.html", "==" ] ], {} ] ], - "margin-top-applies-to-007.xht": [ - "4260e2dd632f6c8168e56a2ea0bb49fafe548bf6", + "margin-collapsing-dynamic.html": [ + "f1b8ee5ddb6a095e6d0e4b9653b577bec2aa6391", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-top-applies-to-001-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "margin-top-applies-to-008.xht": [ - "4724eb9798467a6b94e0e7dbe62b2572d261091c", + "margin-collapsing-in-table-caption-001.html": [ + "9e936237396725bcd057ea3e417746ada9816314", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-bottom-applies-to-008-ref.xht", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "margin-top-applies-to-009.xht": [ - "bcb95b60e5d4843795ff2fe7115d38817999a90b", + "margin-collapsing-in-table-caption-002.html": [ + "a7fefa47f0b3c0931e20601bdb86c9fb9513c499", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-bottom-applies-to-009-ref.xht", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "margin-top-applies-to-012.xht": [ - "4be5834d9f6f1ed42a68f752ba675560a69d559c", + "max-height-001.xht": [ + "0f84a90b588fb8bb2999f555d91baf528fbb3ee3", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-top-applies-to-012-ref.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "margin-top-applies-to-013.xht": [ - "a6fb12b302c134ded46528c66271b8332ddfb67c", + "max-height-002.xht": [ + "bccc30f7ecd493a019cbfe46f5d19131ead69edf", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-top-applies-to-013-ref.xht", + "/css/CSS2/normal-flow/height-001-ref.xht", "==" ] ], {} ] ], - "margin-top-applies-to-014.xht": [ - "9c575e9e5127a1c46fe856984a83e9bd463dba69", + "max-height-003.xht": [ + "8b63b2890d42c8daaa66e2c1d5f3bcaa09d03e43", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-top-applies-to-013-ref.xht", + "/css/CSS2/normal-flow/height-003-ref.xht", "==" ] ], {} ] ], - "margin-top-applies-to-015.xht": [ - "6eb1d36db29f9323db17caef2801fce769b87d56", + "max-height-004.xht": [ + "0cc77461474bdddef6249d77a13e9898d9d96b0e", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-top-applies-to-013-ref.xht", + "/css/CSS2/normal-flow/height-001-ref.xht", "==" ] ], {} ] ], - "padding-001.xht": [ - "b7ba7f75473d206313f6f4a0261441ecb840d38c", + "max-height-005.xht": [ + "76b837b0cee4972e02fe65014ceec3f5e5caf973", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-001-ref.xht", + "/css/CSS2/normal-flow/height-001-ref.xht", "==" ] ], {} ] ], - "padding-002.xht": [ - "ddc1f00949ec1409fe91d792100e57b431ef9423", + "max-height-006.xht": [ + "5874a23dd543bcd19a898885f1425f29e2cd596d", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-002-ref.xht", + "/css/CSS2/normal-flow/height-006-ref.xht", "==" ] ], {} ] ], - "padding-003.xht": [ - "62850039e73926c917a2b6e55f69f2c4250948b3", + "max-height-007.xht": [ + "80ec6f6628a53f8167c52a024b7c860b63a6a1fa", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-003-ref.xht", + "/css/CSS2/normal-flow/height-006-ref.xht", "==" ] ], {} ] ], - "padding-004.xht": [ - "ecc7575c84f99aa546bff1a46501de3117f86cd1", + "max-height-012.xht": [ + "dde742d73760c97a87f95a0f1f3d99368f086ee7", [ null, [ [ - "/css/CSS2/margin-padding-clear/padding-004-ref.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "padding-005.xht": [ - "45adfaa11663bd6ac1c16c1a6c96820aff67255a", + "max-height-013.xht": [ + "13381a1efe71b61fb2dcd79368fe7ae6e4b11af0", [ null, [ [ - "/css/CSS2/margin-padding-clear/padding-005-ref.xht", + "/css/CSS2/normal-flow/height-001-ref.xht", "==" ] ], {} ] ], - "padding-006.xht": [ - "f112a493e848ec8b766790497af6dcf446e345ae", + "max-height-015.xht": [ + "6adf8eca1de5110be836f55a8a1d40efe6f4467d", [ null, [ [ - "/css/CSS2/margin-padding-clear/padding-006-ref.xht", + "/css/CSS2/normal-flow/height-001-ref.xht", "==" ] ], {} ] ], - "padding-007.xht": [ - "eb05e281b2200484c1923ffe85243bfd0c0480be", + "max-height-016.xht": [ + "79efaea0b389e485f26055e30adc7a16ebb3b9df", [ null, [ [ - "/css/CSS2/margin-padding-clear/padding-007-ref.xht", + "/css/CSS2/normal-flow/height-001-ref.xht", "==" ] ], {} ] ], - "padding-008.xht": [ - "e569c8ae0ff368b3d0d99ff58c029214b698817e", + "max-height-017.xht": [ + "aadbcf30d0ac8abedfd512c6083baca06fcde9e7", [ null, [ [ - "/css/CSS2/margin-padding-clear/padding-008-ref.xht", + "/css/CSS2/normal-flow/height-006-ref.xht", "==" ] ], {} ] ], - "padding-009.xht": [ - "89fa5e02f8d17ac89086cf137cdb50538b8af3fa", + "max-height-018.xht": [ + "8196689c43cd7e6663552f2a58eca6b256b63474", [ null, [ [ - "/css/CSS2/margin-padding-clear/padding-009-ref.xht", + "/css/CSS2/normal-flow/height-006-ref.xht", "==" ] ], {} ] ], - "padding-applies-to-001.xht": [ - "91560d412441d2d74404aa89c00df12b6d6f48f5", + "max-height-023.xht": [ + "97b0e5af386a2819b5d7f3445d494057ef980116", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-applies-to-001-ref.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "padding-applies-to-002.xht": [ - "cc67c4c0627763646d542669247515744e7912e3", + "max-height-024.xht": [ + "5e425f74951f9165152d7d2e977c6a878d26c27a", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-applies-to-001-ref.xht", + "/css/CSS2/normal-flow/height-001-ref.xht", "==" ] ], {} ] ], - "padding-applies-to-003.xht": [ - "2e12fdfdf9d94397859b904192e62583213f3120", + "max-height-025.xht": [ + "118a8316d2da51e57b45222a7ad30e02d9eb188c", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-applies-to-001-ref.xht", + "/css/CSS2/normal-flow/max-height-025-ref.xht", "==" ] ], {} ] ], - "padding-applies-to-004.xht": [ - "1caa714c8200c1b1d05d79493aef11a159c3ee4c", + "max-height-026.xht": [ + "e19f6cc64d02157ff634a5ae069d00b29629a4dd", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-applies-to-001-ref.xht", + "/css/CSS2/normal-flow/height-001-ref.xht", "==" ] ], {} ] ], - "padding-applies-to-005.xht": [ - "2feb87d66211aaa4747d2355937e299a4c1c79d9", + "max-height-027.xht": [ + "ee9fb95c866964b96e5259dad6ee617fd841e8e4", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-applies-to-001-ref.xht", + "/css/CSS2/normal-flow/height-001-ref.xht", "==" ] ], {} ] ], - "padding-applies-to-006.xht": [ - "f85c3a30792844aaadd9f3c2176ca6322d0d6741", + "max-height-028.xht": [ + "1c33b309d03fbe177bbcddcde48f0e893da5896d", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-applies-to-001-ref.xht", + "/css/CSS2/normal-flow/height-006-ref.xht", "==" ] ], {} ] ], - "padding-applies-to-007.xht": [ - "9f57bf51582584c10027be7524512a80ab0e7363", + "max-height-029.xht": [ + "cc8fd9d2296a0c9e4fa3c54e5d4f9554899f1ab6", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-applies-to-009-ref.xht", + "/css/CSS2/normal-flow/height-006-ref.xht", "==" ] ], {} ] ], - "padding-applies-to-009.xht": [ - "ce5e24e8abb5fa5ba1ffe3fae44271c5580b391f", + "max-height-034.xht": [ + "22278b5a2fd3ed7be90e2827045695ae6b3897d3", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-applies-to-009-ref.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "padding-applies-to-012.xht": [ - "a35ea41fc19a20675bcad7e7759b8e3c2ca49650", + "max-height-035.xht": [ + "ce2293f172a6b51bd6372fb7b811d200239f87b3", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-applies-to-009-ref.xht", + "/css/CSS2/normal-flow/height-001-ref.xht", "==" ] ], {} ] ], - "padding-applies-to-013.xht": [ - "212357e362ddd81addb6eb65125e5f89e3b9e79c", + "max-height-036.xht": [ + "48b1dcc1e2c443a26f7fec4d20ee3fa16b377149", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-applies-to-009-ref.xht", + "/css/CSS2/normal-flow/max-height-036-ref.xht", "==" ] ], {} ] ], - "padding-applies-to-014.xht": [ - "a6d84c620c667373fc2c539db1f2338239f9381c", + "max-height-037.xht": [ + "a88f866e79a2122efef1245f91a30c9ac7a2fe99", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-applies-to-009-ref.xht", + "/css/CSS2/normal-flow/height-001-ref.xht", "==" ] ], {} ] ], - "padding-applies-to-015.xht": [ - "003afe85ca990d7840e5e239d5565f51275d629f", + "max-height-038.xht": [ + "276b825615f2da39067e8592f8528ed2b7f43eaf", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-applies-to-009-ref.xht", + "/css/CSS2/normal-flow/height-001-ref.xht", "==" ] ], {} ] ], - "padding-background-001.xht": [ - "5397238d76da140682edfc0245c1b2e4474c21ce", + "max-height-039.xht": [ + "bffae8b7420335dd246bf6d915ee81253c88da8e", [ null, [ [ - "/css/CSS2/margin-padding-clear/padding-background-001-ref.xht", + "/css/CSS2/normal-flow/height-006-ref.xht", "==" ] ], {} ] ], - "padding-bottom-001.xht": [ - "acf32d0de8290a8b4c07ab60dec0d6f20164e7a7", + "max-height-040.xht": [ + "bac9d2aa919deabfedb17bbd55c04d16908eb392", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/normal-flow/height-006-ref.xht", "==" ] ], {} ] ], - "padding-bottom-002.xht": [ - "ef6e61af5f2a9530d41f2e31d84f05ef685fd620", + "max-height-045.xht": [ + "1b87f66dbf6be6f3ef47f5e0ef4a0da6ba98eefe", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "padding-bottom-003.xht": [ - "fce14632ae66aec531cab9142f484f830d80ffa4", + "max-height-046.xht": [ + "ec21de4f3041851b36752a6a796aed5106fb894e", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-top-007-ref.xht", + "/css/CSS2/normal-flow/height-001-ref.xht", "==" ] ], {} ] ], - "padding-bottom-004.xht": [ - "095779732bbf27f3a77bf9353e5742e842e11341", + "max-height-047.xht": [ + "e7d5c2757e4c892cc1360ec17cbb034f552dc018", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/normal-flow/max-height-047-ref.xht", "==" ] ], {} ] ], - "padding-bottom-005.xht": [ - "3c4a612a1971848e05f03e9939a44580deb3f558", + "max-height-048.xht": [ + "1baddbb1e416220062c38f72105ce13611e9a8d7", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/normal-flow/height-001-ref.xht", "==" ] ], {} ] ], - "padding-bottom-006.xht": [ - "a98d8798ef766b89a4a1ddc624c029bd2cdbaff5", + "max-height-049.xht": [ + "4a0df1e11122d12e5f1273551d97d0738591e9b0", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-top-007-ref.xht", + "/css/CSS2/normal-flow/height-001-ref.xht", "==" ] ], {} ] ], - "padding-bottom-007.xht": [ - "9aa75073ca2b14f8300086595fbcddc44da85fdc", + "max-height-050.xht": [ + "fac7d4118e0607fb054ffcd9bf452abefe8e184b", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-top-007-ref.xht", + "/css/CSS2/normal-flow/height-006-ref.xht", "==" ] ], {} ] ], - "padding-bottom-012.xht": [ - "958ca6b5f3d4db9935a14e227d929f0fe271b588", + "max-height-051.xht": [ + "3466b4c3f66f3095e1268316e260ae32be77dded", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/normal-flow/height-006-ref.xht", "==" ] ], {} ] ], - "padding-bottom-013.xht": [ - "5520e5d9f3d76ea3470ec587942ecc34cbc4f6a2", + "max-height-056.xht": [ + "40a360e15931b4a19eb6765fa8dc99897047f82e", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "padding-bottom-014.xht": [ - "be8ad86a733f7f5368bb8291e92820955a402b79", + "max-height-057.xht": [ + "a39adf2c6d803855c27e1e4d6e4b13be068bf6b2", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-top-043-ref.xht", + "/css/CSS2/normal-flow/height-001-ref.xht", "==" ] ], {} ] ], - "padding-bottom-015.xht": [ - "2b4c74c84308abd19de809fef5c0917ef374ef95", + "max-height-058.xht": [ + "2b2db4efc2cd830c5a71b539ae36fa0597c52d15", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/normal-flow/max-height-058-ref.xht", "==" ] ], {} ] ], - "padding-bottom-016.xht": [ - "b53af3774cd10dbf0d38bd219659fc0af396b572", + "max-height-059.xht": [ + "f12e3738ec99a139f415ad1cb1f5b41872c77f3a", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/normal-flow/height-001-ref.xht", "==" ] ], {} ] ], - "padding-bottom-017.xht": [ - "9738660639624f388a8b7669bedcae0876eeb9d9", + "max-height-060.xht": [ + "cf4ba3a9d15a3caf0f616f9c2e43981c85f1a6df", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-top-019-ref.xht", + "/css/CSS2/normal-flow/height-001-ref.xht", "==" ] ], {} ] ], - "padding-bottom-018.xht": [ - "1edbff3f5de6e316945907663c5d180ffba17bf2", + "max-height-061.xht": [ + "1fe10e5053cb5750a0d0ce51482388758ddbd35b", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-top-019-ref.xht", + "/css/CSS2/normal-flow/height-061-ref.xht", "==" ] ], {} ] ], - "padding-bottom-023.xht": [ - "6d34f4ba3f8176b3ec69711cdfe0c9b10e021af4", + "max-height-062.xht": [ + "56cac061df682de259a5e5104d12a1134fb24807", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/normal-flow/height-061-ref.xht", "==" ] ], {} ] ], - "padding-bottom-024.xht": [ - "d599bdc36b8867d2c5ba96933a9e97c81b6e42f5", + "max-height-067.xht": [ + "6cb3055fc266fd3bcc6dbef9467fdc9e43c2bfe3", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "padding-bottom-025.xht": [ - "c72582e38bdd8a7743ed514c17bdb202576480a3", + "max-height-068.xht": [ + "461ceca75e69af09eec77bba3f7a4a9fbb0777f1", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-top-031-ref.xht", + "/css/CSS2/normal-flow/height-067-ref.xht", "==" ] ], {} ] ], - "padding-bottom-026.xht": [ - "181394b6da73a6b4237eb73f249da14b46b4fb7e", + "max-height-069.xht": [ + "3679994de4b18a7a2c0e58755cd272c9b4345579", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/normal-flow/max-height-069-ref.xht", "==" ] ], {} ] ], - "padding-bottom-027.xht": [ - "241253297761a5b95bc6450507d91c44b4f2d378", + "max-height-070.xht": [ + "c80e5537fc57006413d88f5b58f672060b1fe1a0", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/normal-flow/height-067-ref.xht", "==" ] ], {} ] ], - "padding-bottom-028.xht": [ - "bbad8fc84498bcd6bd1e2fc0357c73f2fcca1671", + "max-height-071.xht": [ + "1e1f3286f4c0cf16cda6fb63487749413bca0a9f", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-top-031-ref.xht", + "/css/CSS2/normal-flow/height-067-ref.xht", "==" ] ], {} ] ], - "padding-bottom-029.xht": [ - "677da2e7ce229a178c125c55563ce974a9ebe1f4", + "max-height-072.xht": [ + "afbd71d3d3ac424fc194f9a37f74d4778e1fcede", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-top-031-ref.xht", + "/css/CSS2/normal-flow/height-072-ref.xht", "==" ] ], {} ] ], - "padding-bottom-034.xht": [ - "abd80c753eec0f0d24165f2cbdba6c30e9a0e96f", + "max-height-073.xht": [ + "e376a7c042f31d0e298016853f3a232ac368a8dd", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/normal-flow/height-072-ref.xht", "==" ] ], {} ] ], - "padding-bottom-035.xht": [ - "cf72bf7364a57f810c83b3310e10ca7319fd2034", + "max-height-078.xht": [ + "5e4d901710aa7a246c4a23196c99141f7fcee863", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "padding-bottom-037.xht": [ - "a789195c6e2a48aeb1ebe61005fe2d700297ae11", + "max-height-079.xht": [ + "341818aecdc7ccd27b73ad76223ee9e2c596ef98", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/normal-flow/height-067-ref.xht", "==" ] ], {} ] ], - "padding-bottom-038.xht": [ - "5cd9a16669982c50ca23b88ef513f77ca0605e8a", + "max-height-080.xht": [ + "8d1b087a0246292c98679c50e46612d28459988a", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/normal-flow/max-height-025-ref.xht", "==" ] ], {} ] ], - "padding-bottom-039.xht": [ - "98b0af5f328969403f19fb775fc30c088ba5fc09", + "max-height-081.xht": [ + "07e4112ce06959754d76f20a142029994c08b80f", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-top-043-ref.xht", + "/css/CSS2/normal-flow/height-067-ref.xht", "==" ] ], {} ] ], - "padding-bottom-040.xht": [ - "1e857f6ee46f0e824d98b376099d11cf3e4c68b6", + "max-height-082.xht": [ + "832e3b2dc62fb813c9e8bc7f18b6b665950a0e5c", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-top-043-ref.xht", + "/css/CSS2/normal-flow/height-067-ref.xht", "==" ] ], {} ] ], - "padding-bottom-045.xht": [ - "eced25f9f469388887bd64675a03f6ee00d1bf49", + "max-height-083.xht": [ + "dbd0b77a4ef9a0a14c8fcb6450acb6f66c2f633b", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/normal-flow/height-006-ref.xht", "==" ] ], {} ] ], - "padding-bottom-046.xht": [ - "9beff81862ed234ff4d210aaba5091d14da4f7b0", + "max-height-084.xht": [ + "4689363816e15364ec69111e394dcf674250ffcf", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/normal-flow/height-006-ref.xht", "==" ] ], {} ] ], - "padding-bottom-048.xht": [ - "a78ec26daa9e07f0a44273b30fd0ad29260e42cf", + "max-height-089.xht": [ + "374b4be5d9b66194cf7777d4c3a08df15d719455", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "padding-bottom-049.xht": [ - "419cc1ff56fd5a6a32e07798bba7eeebeb5e9385", + "max-height-090.xht": [ + "1c95b08ccf78a6573c2ed6facfa0481ddbe2544c", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/normal-flow/height-001-ref.xht", "==" ] ], {} ] ], - "padding-bottom-050.xht": [ - "e96ed0551eb8367860c6a9c21d8c66fba240d96a", + "max-height-091.xht": [ + "436a6629eb19862d7c6a095bb66de39e89b92e5f", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-top-043-ref.xht", + "/css/CSS2/normal-flow/height-003-ref.xht", "==" ] ], {} ] ], - "padding-bottom-051.xht": [ - "832452499231e52197b3dfcbcd1efde5bc414a75", + "max-height-092.xht": [ + "ec4adfa1623cba8a144292006d1ddd1a602e8ec4", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-top-043-ref.xht", + "/css/CSS2/normal-flow/height-001-ref.xht", "==" ] ], {} ] ], - "padding-bottom-056.xht": [ - "6610354be39f9eafddc47b54073a19450f53485e", + "max-height-093.xht": [ + "ad7861c5e7241aa0d2f9675ffedcf4e9ac049d0d", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/normal-flow/height-001-ref.xht", "==" ] ], {} ] ], - "padding-bottom-057.xht": [ - "5103f296b8cb77fd434714fc553d878a48d525d8", + "max-height-094.xht": [ + "e66e17273af9bc18dce07a774cceb41ec3997e93", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/normal-flow/height-006-ref.xht", "==" ] ], {} ] ], - "padding-bottom-058.xht": [ - "68e33571fc394ab84c60435c84bbba6c9f465cfb", + "max-height-095.xht": [ + "e34c167523bce0f83662e7ce33dd4bec94e1ffc4", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-top-043-ref.xht", + "/css/CSS2/normal-flow/height-006-ref.xht", "==" ] ], {} ] ], - "padding-bottom-059.xht": [ - "516a6ed79b67ef897cfa1e52f016b9043bd9b003", + "max-height-100.xht": [ + "7a4d489a9b2bdfe679e4da9242b918e6d8a81082", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "padding-bottom-060.xht": [ - "450a54daaf17019380e0956e752cd3bbe8e12f81", + "max-height-101.xht": [ + "ca382d2eeca2a10dcdf18cc56c772b03eb0388c3", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/normal-flow/height-001-ref.xht", "==" ] ], {} ] ], - "padding-bottom-061.xht": [ - "9174440386411004abfe6d5433f2b2948ebccf52", + "max-height-102.xht": [ + "bea70e305537f926476c44c2f72239721e65eb29", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-top-043-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "padding-bottom-062.xht": [ - "3d9cf3438fc3a40087b386314221820dce27f642", + "max-height-103.xht": [ + "400dc10292330ac3c793452daceb2042f6193475", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-top-043-ref.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "padding-bottom-067.xht": [ - "49c2d41c6d3d8c0ee3c49e367c960aa5031b0d6e", + "max-height-104.xht": [ + "ad08a7427ab77b773ff0458e855e0e8311b4132f", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/normal-flow/height-003-ref.xht", "==" ] ], {} ] ], - "padding-bottom-068.xht": [ - "776bc25807c5ff6aa44f99d65256f16d33e43139", + "max-height-107.xht": [ + "c62d236d280786e77ed04c48e9783f6b37e9c592", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/normal-flow/max-height-107-ref.xht", "==" ] ], {} ] ], - "padding-bottom-069.xht": [ - "7df3130ee992261127190db06109ab03a6fba2df", + "max-height-110.xht": [ + "d2f39353213a72dbc72bf5803d316d6eb0d8aad2", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-top-079-ref.xht", + "/css/CSS2/normal-flow/max-height-110-ref.xht", "==" ] ], {} ] ], - "padding-bottom-070.xht": [ - "70955d4c17725f7c55cb0fe83e353557981b10fe", + "max-height-applies-to-005.xht": [ + "ac527ef65711bcd8daed12648f5370bca4915020", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "padding-bottom-071.xht": [ - "9dc787f7fb08fe57eca87e068beae6b4e34b4d9b", + "max-height-applies-to-006.xht": [ + "c21bfcb3ee2083acfa67a3674503896b2b23e5e6", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "padding-bottom-072.xht": [ - "a572f6c6635d20abef7396a9c661227f41e42e37", + "max-height-applies-to-008.xht": [ + "77aa90490566de9113229bd87d32829c5cc9c2d9", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-top-079-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "padding-bottom-073.xht": [ - "e2ea82a38b5312514ba24a427409cc7e42d8b519", + "max-height-applies-to-009.xht": [ + "6cf80484bf0aa23ae1ce8ab631729ff1f963534c", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-top-079-ref.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "padding-bottom-078.xht": [ - "5df63cf88594241f2208d94c9537a167e81f52f5", + "max-height-applies-to-012.xht": [ + "641574da8577f86946e908c8a2491b2b3211555e", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "padding-bottom-079.xht": [ - "8cde7fc7c258decc39be701c2983de3eec94fc3f", + "max-height-applies-to-013.xht": [ + "bb11808110b84336bb5770b52cb938b90403632d", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "padding-bottom-080.xht": [ - "63eed6d889409a4c2d6765e024412e9f003caf6c", + "max-height-applies-to-014.xht": [ + "ced76440bdff1a83a931b5ee95c51eab87860ac3", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-top-031-ref.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "padding-bottom-081.xht": [ - "5d2d85f362a939b0e79f6602dfda1a94fe10206a", + "max-height-applies-to-015.xht": [ + "d7f85253121bf3819452b53853bda02da87087cb", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "padding-bottom-082.xht": [ - "da8ecbe0d10862a30d58bc7aeef435a51c422bb1", + "max-height-applies-to-016.xht": [ + "b229816ceba8248155f000901bc09e1fe877e222", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "padding-bottom-083.xht": [ - "4bc75f179c3d786f39d0e952d1bf8b624e4b1fe1", + "max-height-percentage-001.xht": [ + "5ac6f609e9c68384771a207119363215ad8149ca", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-top-031-ref.xht", + "/css/CSS2/normal-flow/max-height-percentage-001-ref.xht", "==" ] ], {} ] ], - "padding-bottom-084.xht": [ - "b9de3ae641d3d8f580c62e77287cad6bcf952bf8", + "max-height-percentage-002.xht": [ + "a495641d7f709fe51455a510fd5547f2c37274b9", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-top-031-ref.xht", + "/css/CSS2/normal-flow/max-height-percentage-002-ref.xht", "==" ] ], {} ] ], - "padding-bottom-089.xht": [ - "3bce6e17a9c28c20887cce1684297b8c287fb00d", + "max-height-percentage-003.xht": [ + "b5c87820bd3f896a49044be19b9a24c2ad33f871", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-bottom-100-ref.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "padding-bottom-090.xht": [ - "71bae181abe42d18689ec4a6ed38755d7851536a", + "max-height-separates-margin.html": [ + "b14ed54e0638c02f33d4f316ef73bb3876789846", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-bottom-100-ref.xht", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "padding-bottom-091.xht": [ - "037155bca557ee3a01da37658f1a56c97d8c48e5", + "max-width-001.xht": [ + "1e2d590dfb44bdef37e2bfb4429ec640f188ddd1", [ null, [ [ - "/css/CSS2/margin-padding-clear/padding-bottom-091-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "padding-bottom-092.xht": [ - "2c167100303a6ec07486e1176ea67af0a751db0a", + "max-width-002.xht": [ + "fc4690f7aefa2e5a22102c54759d2df2afe5487e", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-bottom-100-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "padding-bottom-093.xht": [ - "b20f2e786725bcce991f0733d8c3c49f09b0016c", + "max-width-003.xht": [ + "1dab647fed220e3f27226d97db152df564e7142d", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-bottom-100-ref.xht", + "/css/CSS2/normal-flow/max-width-003-ref.xht", "==" ] ], {} ] ], - "padding-bottom-094.xht": [ - "a1159abafa919ae0ad6249fe79055f8910457a58", + "max-width-004.xht": [ + "39cdde5f8c37badbd6de4c87e10b23cb75eb9de8", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-top-103-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "padding-bottom-095.xht": [ - "459a25e2c652f55ef4f2a07f6293781fd5a40210", + "max-width-005.xht": [ + "109535ad4d5050a2500c199477124e5b0ed18625", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-top-103-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "padding-bottom-100.xht": [ - "8664959de21022b2f5d86611f627af62152eee23", + "max-width-006.xht": [ + "fd61f85a6fd0e0c32fdd7db1d2ab04fa3900e926", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/normal-flow/max-width-006-ref.xht", "==" ] ], {} ] ], - "padding-bottom-101.xht": [ - "4b1ac64eb160cd0a6bde93b6e31f26099dbcf69a", + "max-width-007.xht": [ + "d5a3c2151b3bcac6b9b8f8534c09e993d8a4885f", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/normal-flow/max-width-006-ref.xht", "==" ] ], {} ] ], - "padding-bottom-102.xht": [ - "2f262d96fb4564de864f540a50d36853bc5a3a8e", + "max-width-012.xht": [ + "5a4b873d0af671b02e0bd5f856e9a6105ad374bc", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "padding-bottom-103.xht": [ - "1419229589272e63408017695e80132ccc44bae2", + "max-width-013.xht": [ + "b9efbf7b3c8d1b9a02cd1813dd7d08be43d166c0", [ null, [ [ - "/css/CSS2/margin-padding-clear/padding-bottom-103-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "padding-bottom-applies-to-001.xht": [ - "b47297ae49c1943d81a0b681d86902f8632ab539", + "max-width-014.xht": [ + "617ccc45ee0447d5bb2e97bd293eeadc1b2c9a7b", [ null, [ [ - "/css/CSS2/margin-padding-clear/padding-bottom-applies-to-001-ref.xht", + "/css/CSS2/normal-flow/max-width-003-ref.xht", "==" ] ], {} ] ], - "padding-bottom-applies-to-002.xht": [ - "555cd7b8040bf8679ceaf88490b0d1397aee1967", + "max-width-015.xht": [ + "26643f9fd8f59b66350595c93f6d38245319538a", [ null, [ [ - "/css/CSS2/margin-padding-clear/padding-bottom-applies-to-001-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "padding-bottom-applies-to-003.xht": [ - "f5f07ddd301c67c0b4d8b4bfbefabca3ac664763", + "max-width-016.xht": [ + "e6c932e392acc00c8e3059b21545142a6d7c4321", [ null, [ [ - "/css/CSS2/margin-padding-clear/padding-bottom-applies-to-001-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "padding-bottom-applies-to-004.xht": [ - "58fae89ea01ac3370bb9ecd8d7c6e7075c928bb0", + "max-width-017.xht": [ + "0d3cacee8b01cef36303f31430b31440ba7bb3d1", [ null, [ [ - "/css/CSS2/margin-padding-clear/padding-bottom-applies-to-001-ref.xht", + "/css/CSS2/normal-flow/max-width-006-ref.xht", "==" ] ], {} ] ], - "padding-bottom-applies-to-005.xht": [ - "53e35b9753d29d1d9dd2c689d670f3a159cf3140", + "max-width-018.xht": [ + "e2ffd86a1fdd54ba35efc35b242a65bf5b66a18a", [ null, [ [ - "/css/CSS2/margin-padding-clear/padding-bottom-applies-to-001-ref.xht", + "/css/CSS2/normal-flow/max-width-006-ref.xht", "==" ] ], {} ] ], - "padding-bottom-applies-to-006.xht": [ - "dbbd39b088b4197f542993f7904ebf161bdb4913", + "max-width-023.xht": [ + "be4015cf245b4a7f8487e31b51cb4901baafd8fd", [ null, [ [ - "/css/CSS2/margin-padding-clear/padding-bottom-applies-to-001-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "padding-bottom-applies-to-007.xht": [ - "ab79f2b7d7eb5381e0d5391babb3aea114844908", + "max-width-024.xht": [ + "f0b227b613cb722d44860cee6a71c5dfeba9aba2", [ null, [ [ - "/css/CSS2/margin-padding-clear/padding-bottom-applies-to-007-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "padding-bottom-applies-to-009.xht": [ - "ecfd1c075ecafbb474080aeb6e53cd29b8c6d497", + "max-width-025.xht": [ + "01d5de2399d4a0a38fd3cd25f9ce224c6fc81a25", [ null, [ [ - "/css/CSS2/margin-padding-clear/padding-bottom-applies-to-007-ref.xht", + "/css/CSS2/normal-flow/max-width-025-ref.xht", "==" ] ], {} ] ], - "padding-bottom-applies-to-012.xht": [ - "11f8d90cd43b04126b3f8efae753ce33f36e4431", + "max-width-026.xht": [ + "fe1d6f8143afb4da500451c860e31fdc043d9eea", [ null, [ [ - "/css/CSS2/margin-padding-clear/padding-bottom-applies-to-007-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "padding-bottom-applies-to-013.xht": [ - "3399e948519b7db8bf089f2f0f3dffa03c3b18b4", + "max-width-027.xht": [ + "ef15a0414624fba0ad146aec2a67633da4a54f52", [ null, [ [ - "/css/CSS2/margin-padding-clear/padding-bottom-applies-to-007-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "padding-bottom-applies-to-014.xht": [ - "a43122ce9616716d533735ff3bac418c3a2543a6", + "max-width-028.xht": [ + "73d79099b2f905280151039925ee9ba8506f24f4", [ null, [ [ - "/css/CSS2/margin-padding-clear/padding-bottom-applies-to-007-ref.xht", + "/css/CSS2/normal-flow/max-width-006-ref.xht", "==" ] ], {} ] ], - "padding-bottom-applies-to-015.xht": [ - "d656b6f88543e6f49364df86b8e6ddbec7394ccd", + "max-width-029.xht": [ + "2c86c6bc42b9d50057c35c402d8a812e00e15d8c", [ null, [ [ - "/css/CSS2/margin-padding-clear/padding-bottom-applies-to-007-ref.xht", + "/css/CSS2/normal-flow/max-width-006-ref.xht", "==" ] ], {} ] ], - "padding-em-inherit-001.xht": [ - "9fb9c15a02cb7e970aa677f1638447880a8cbf96", + "max-width-034.xht": [ + "28e7798890471ac4c996a1afcd8cbb9ad5583045", [ null, [ [ - "/css/CSS2/margin-padding-clear/padding-em-inherit-001-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "padding-left-001.xht": [ - "c58a7431b29020bd20da9af31c57164852f3e3f1", + "max-width-035.xht": [ + "0e024daf0976b22cdb789a93c30b62d7d383f39d", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "padding-left-002.xht": [ - "ba735031c4fbcdc2b522ccc67018fd0cf45517a6", + "max-width-036.xht": [ + "416ae47236b9278e072abf96fb2214f50fe58cfb", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/normal-flow/max-width-036-ref.xht", "==" ] ], {} ] ], - "padding-left-003.xht": [ - "eff5e33a471f9eda0abbf3aa97816372ef67d332", + "max-width-037.xht": [ + "95d1d3fccdc1fe21c2d136ae2eec6b1d85b8203d", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-007-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "padding-left-004.xht": [ - "129a10ae85076b2b5db87618097b9fde6a42a390", + "max-width-038.xht": [ + "8a82ee6a5a36d3f0ccc8106e2d9e95a0a932a6b9", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "padding-left-005.xht": [ - "88172531d9a963f398168bc97cb9843616f39901", + "max-width-039.xht": [ + "9d52a45435c3129d987c2d07922b5e48e2c1d4b3", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/normal-flow/max-width-006-ref.xht", "==" ] ], {} ] ], - "padding-left-006.xht": [ - "a62189f3a91f3cf3de5035a1b870ee40b4e75470", + "max-width-040.xht": [ + "4e4e9479ae9eb1cabc33e47ee7068a450c8e1da4", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-007-ref.xht", + "/css/CSS2/normal-flow/max-width-006-ref.xht", "==" ] ], {} ] ], - "padding-left-007.xht": [ - "960e34de50e1df0b34bca30cf6ea5bbca01d6a4a", + "max-width-045.xht": [ + "c4d178d6dfa1afd5617943b82f0240cd533d25b1", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-007-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "padding-left-012.xht": [ - "4036e5903af32251513cc0a1a4d4d57ee5df8dfd", + "max-width-046.xht": [ + "e046e343f3182f9bf602a3caa0c11568e6aefc72", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "padding-left-013.xht": [ - "53b4768669a88aed1f930459486e4c8a7f11db8a", + "max-width-047.xht": [ + "81fea004f9c1ebb0ae3a8c2a5ba514e68c1310c4", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/normal-flow/max-width-047-ref.xht", "==" ] ], {} ] ], - "padding-left-015.xht": [ - "77cea3a7a46fde8aa05b1105e86236d2539b983f", + "max-width-048.xht": [ + "3237bcccdf8b981aa7217f1bf10ff33dd9628b36", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "padding-left-016.xht": [ - "d0f90e41f3ce9b2c43be941d82ead70d04d7c2a0", + "max-width-049.xht": [ + "fab6596111b88afd30ba10c10053265504406273", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "padding-left-017.xht": [ - "e1a8f0354550ab39d73d48d4b06b90a4a89e35d9", + "max-width-050.xht": [ + "4860b8777252d492690ceac0812664e9d8e8201a", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-019-ref.xht", + "/css/CSS2/normal-flow/max-width-006-ref.xht", "==" ] ], {} ] ], - "padding-left-018.xht": [ - "88d87d8dfffcc6f79f41654196508164d0403c54", + "max-width-051.xht": [ + "0f2d6a3868d484f9d9a9e91ab4106cdfbbca60d0", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-019-ref.xht", + "/css/CSS2/normal-flow/max-width-006-ref.xht", "==" ] ], {} ] ], - "padding-left-023.xht": [ - "1fb8cf0f4944713de502d9a86c2bcc18513c204b", + "max-width-056.xht": [ + "89c474c5a205dc9c33777d2a2f3f60bc0c8a4203", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "padding-left-024.xht": [ - "d6881f43c13ed432d020fb5d353157361a96159d", + "max-width-057.xht": [ + "d72a505443f940e37ea2c4ebd1c316ac283f094b", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "padding-left-025.xht": [ - "94a756b6ee5e750c87d79e1789b6a1f6c06fe903", + "max-width-058.xht": [ + "783ae9288c67b4ad54f4ef387df1a9f363286547", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-031-ref.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "padding-left-026.xht": [ - "d93cb18e2d01484456be2b065ec6bfc73f2b1e91", + "max-width-059.xht": [ + "10153d39d569368fc5660bfa55ab72f0f7c602d1", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "padding-left-027.xht": [ - "f565cbc73731f47754432bce4a6a32fc1af96e80", + "max-width-060.xht": [ + "681b8a20cb4fcaf6770c70c161a1f0505c35aa70", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "padding-left-028.xht": [ - "c9d7d30bac0e1585108488f4d9ed8b478c0a99fe", + "max-width-061.xht": [ + "4c2ea537a6f0ba74b2d6cf192874e628af6c84c7", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-031-ref.xht", + "/css/CSS2/normal-flow/max-width-061-ref.xht", "==" ] ], {} ] ], - "padding-left-029.xht": [ - "bd2b7ac0ca59c3747ca6d4976aae8da31180c1d4", + "max-width-062.xht": [ + "418680d580020c907e4db9ff814791c98115e205", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-031-ref.xht", + "/css/CSS2/normal-flow/max-width-061-ref.xht", "==" ] ], {} ] ], - "padding-left-034.xht": [ - "6bbeb73a2f63f4cc0b367c5b3b92b83484d49a21", + "max-width-067.xht": [ + "601b65a19e87d128b3e0af327ea7354b2491d6a0", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "padding-left-035.xht": [ - "37741c077dad6f691035a51ad0bc5a0c2593a0a3", + "max-width-068.xht": [ + "21a65d3f57e2957a768afc0287aafbc4096315f9", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "padding-left-036.xht": [ - "970fdd1729ce5193bc4476c39cbcf4ca63cb91e0", + "max-width-069.xht": [ + "e2f376db233d06b909f7cbdea3e3341236934271", [ null, [ [ - "/css/CSS2/margin-padding-clear/padding-left-036-ref.xht", + "/css/CSS2/normal-flow/max-width-069-ref.xht", "==" ] ], {} ] ], - "padding-left-037.xht": [ - "ad5349ed7ec344ee5799b5868c3f9db1f612ad27", + "max-width-070.xht": [ + "db41729faad4a07761d8106956ab4ec1e0002334", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "padding-left-038.xht": [ - "ac882a0ac67908ecc0407cacbaefc0e05a9c340c", + "max-width-071.xht": [ + "9da8bd7c9b6f0ad91498ab8c466df84da4c8d181", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "padding-left-039.xht": [ - "28035e9169c2e987a0bd4036b953e15762e0b224", + "max-width-072.xht": [ + "c9bb607c5798efc3c8673301b1a18ab0b00a9148", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-043-ref.xht", + "/css/CSS2/normal-flow/max-width-072-ref.xht", "==" ] ], {} ] ], - "padding-left-040.xht": [ - "415ad13e42bde7a7a5b13350667f663152734c62", + "max-width-073.xht": [ + "7f9115406c337e602901cedfb177e11b49f10a6d", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-043-ref.xht", + "/css/CSS2/normal-flow/max-width-072-ref.xht", "==" ] ], {} ] ], - "padding-left-045.xht": [ - "a894b6c9791ff5508c8fbd8a4186cd8439eb5eae", + "max-width-078.xht": [ + "ee41c29f7f99c6f4efbef11fc27d7cea2d75c5fd", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "padding-left-046.xht": [ - "25a10bef01e8329ebbc3ab21874b257f998858f0", + "max-width-079.xht": [ + "5a136a4c609c7d6386191e7138bc738ff13442c7", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "padding-left-047.xht": [ - "69856b5d9f053d543c2df195a62d02a3cfe44cac", + "max-width-080.xht": [ + "64d8e6af7aa962c40270fbd4711b4a87046a553c", [ null, [ [ - "/css/CSS2/margin-padding-clear/padding-left-047-ref.xht", + "/css/CSS2/normal-flow/max-width-025-ref.xht", "==" ] ], {} ] ], - "padding-left-048.xht": [ - "7790a94473b9b525b4ede25532e4248b220c4192", + "max-width-081.xht": [ + "cde91f00c080e48e15f8b5b0da1c076da357b6ae", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "padding-left-049.xht": [ - "01c1ef3de161ff284af79cd73504af88a5abc154", + "max-width-082.xht": [ + "76bbe2ec754f1b1fd33bb4a15882cab813ef8d93", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "padding-left-050.xht": [ - "9165ac91936ef319551dc6eaa66996cadf84542d", + "max-width-083.xht": [ + "dae6af62c84c150dd6a77bc044479f0ea9e375a4", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-043-ref.xht", + "/css/CSS2/normal-flow/max-width-006-ref.xht", "==" ] ], {} ] ], - "padding-left-051.xht": [ - "96ea400a251db2e73cbe1ed3dd980253f50090b9", + "max-width-084.xht": [ + "d1f644738ee874023dd6b573cd404b5dc2345d25", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-043-ref.xht", + "/css/CSS2/normal-flow/max-width-006-ref.xht", "==" ] ], {} ] ], - "padding-left-056.xht": [ - "05bd642379aa942e2717e66f25ecb09aae711612", + "max-width-089.xht": [ + "9cf0794f40a8b7e5cdb0c0eb32df28973c166a34", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "padding-left-057.xht": [ - "8b14887c5595e29928b3f4204b8a98ef939967df", + "max-width-090.xht": [ + "02f36b99a656a12669eed664d9c4cd1af13a269e", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "padding-left-058.xht": [ - "0304c515cfe35f5d87d7f622b46fec3ad5927d00", + "max-width-091.xht": [ + "57d8b8dcc32f3a7f97f9cfc5a0b40495740dbe42", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-043-ref.xht", + "/css/CSS2/normal-flow/max-width-003-ref.xht", "==" ] ], {} ] ], - "padding-left-059.xht": [ - "921bc03bb17fbdb8cfb5214b8bb292e570a1e8d3", + "max-width-092.xht": [ + "7762da0f7c21efa9473c7b7ffc1dbeebd74b67bb", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "padding-left-060.xht": [ - "e052ad0917b5c46597ed754b3c58829a11edd874", + "max-width-093.xht": [ + "fd6a35e49d60d99d01e57e7bbd6e7a9ba3b6f29a", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "padding-left-061.xht": [ - "edda6582f7e8f6f51948152f8b21bfa5f703c125", + "max-width-094.xht": [ + "2d5e0b139f2ed6a645cdb02e374b255802f11297", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-043-ref.xht", + "/css/CSS2/normal-flow/max-width-006-ref.xht", "==" ] ], {} ] ], - "padding-left-062.xht": [ - "b3579ac5cf442c77cf6199059ecbc7073b72407a", + "max-width-095.xht": [ + "61d61af3317484d24ef9629acff4ccedf980df37", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-043-ref.xht", + "/css/CSS2/normal-flow/max-width-006-ref.xht", "==" ] ], {} ] ], - "padding-left-067.xht": [ - "5e380aba850ef15970b2c5324a06fa106a6790e1", + "max-width-100.xht": [ + "a150e09430cc68d1c36b32673141349d6da65e05", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "padding-left-068.xht": [ - "966b43e0b5759f0c33f5a863a3538b5b08c429e1", + "max-width-101.xht": [ + "feb2d190fad643f7c6b1847a603dde390af4cd22", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "padding-left-069.xht": [ - "5bed2599f323e5554931a14cd4b0167b6f491100", + "max-width-102.xht": [ + "fa19a22bf8e352d00082e51ff6ee77d0a5a36b5e", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-079-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "padding-left-070.xht": [ - "0b35b8189238b8d3b7d992f43d8e52a127fbb247", + "max-width-103.xht": [ + "d847bcad05f9c838ce04606efe2e38d0957ad8c0", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "padding-left-071.xht": [ - "7305e8652995d6e170b4935cf21d5bbea4f33572", + "max-width-104.xht": [ + "b744d696306ca1acc6b2bcc685a6c479f293ae66", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/normal-flow/max-width-003-ref.xht", "==" ] ], {} ] ], - "padding-left-072.xht": [ - "0868bc83e4b0ba2d6e7b6902bee2bd105c68264d", + "max-width-105.xht": [ + "623f03f4235cbcef9d8b211162b1ed79db10e1c9", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-079-ref.xht", + "/css/CSS2/normal-flow/max-width-105-ref.xht", "==" ] ], {} ] ], - "padding-left-073.xht": [ - "d25a74ca38593d2994d437419d443bafcad20366", + "max-width-106.xht": [ + "7136b414feaf667bcf21ee0bdc5e02adbb8c0e40", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-079-ref.xht", + "/css/CSS2/normal-flow/max-width-105-ref.xht", "==" ] ], {} ] ], - "padding-left-078.xht": [ - "72865436d305eac756822e8ffdb6897a8f89826c", + "max-width-107.xht": [ + "edf4a63fecdb59e7cfb6c3e732f54d2c5dadc48e", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/normal-flow/max-width-107-ref.xht", "==" ] ], {} ] ], - "padding-left-079.xht": [ - "fcba695cfea58f979e0fa00b99b95fc42762e058", + "max-width-110.xht": [ + "2b96eab362d116048f1c0b7cf1eccfeea7f48ace", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "padding-left-080.xht": [ - "1b8714b9eac93c5000728b8e0d5d086815c1d43f", + "max-width-applies-to-001.xht": [ + "9fd103686fff4af28f4fc15ee84100e9aaa77863", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-031-ref.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "padding-left-081.xht": [ - "3155c5d5947044eea3cc7ea3d5c2711aef1adc95", + "max-width-applies-to-002.xht": [ + "e6123b730b68da0ede886c3432ff44d7d154e2ba", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "padding-left-082.xht": [ - "c4f5bdc300b40668be84a75e49b5e47fa31e52ea", + "max-width-applies-to-003.xht": [ + "4808b1c672414a6e3e95f41c5f991c549661178f", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "padding-left-083.xht": [ - "6cdd476139547f187bb8f3cafa109c5ae5f61f65", + "max-width-applies-to-004.xht": [ + "93b7124de8cf957abf11e9f4a5bde36991883f13", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-031-ref.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "padding-left-084.xht": [ - "99a170fbbc5a38261abe6f9c86b241dc1cf87cf1", + "max-width-applies-to-005.xht": [ + "0d0a26c118a7a87e6b52215efca460823efcdba9", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-031-ref.xht", + "/css/reference/pass_if_square_96px_black.html", "==" ] ], {} ] ], - "padding-left-089.xht": [ - "bfd2cd342bad1b3b5622993989722864a38da341", + "max-width-applies-to-006.xht": [ + "aec8fa70d7fa6d4eee0a69ef3c04f4e8a0ad4858", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/reference/pass_if_square_96px_black.html", "==" ] ], {} ] ], - "padding-left-090.xht": [ - "d03c28eb4a3b6bc6c571891bf743bac04eaada53", + "max-width-applies-to-007.xht": [ + "13e9f83a3188c29602d2099e4d9cc704850361fa", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/reference/pass_if_square_96px_black.html", "==" ] ], {} ] ], - "padding-left-091.xht": [ - "9d648a07598eae3078b0f64b9e85f3feee28dbc9", + "max-width-applies-to-008.xht": [ + "062d4a6806a6696ddb8d27817a9c42973dd6acdb", [ null, [ [ - "/css/CSS2/margin-padding-clear/padding-left-091-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "padding-left-092.xht": [ - "74df9ddf18649a284df814d225e119222f136d3a", + "max-width-applies-to-009.xht": [ + "98f16d2c43893544eb927362b69a968ab1ccb529", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "padding-left-093.xht": [ - "217b738c0026382485c613859e6b3827656a6764", + "max-width-applies-to-012.xht": [ + "eb9c7feeed7ce656de50e9fd78bd8df22d0e8483", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "padding-left-094.xht": [ - "224ed099e6076c6bbede37aa777d13bcb1a76399", + "max-width-applies-to-013.xht": [ + "a7d2e960a491f5f27ffd3267c8c4e1160de758df", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-043-ref.xht", + "/css/reference/pass_if_square_96px_black.html", "==" ] ], {} ] ], - "padding-left-095.xht": [ - "334976eece241eb2b01e63398dddb1a59f2e3174", + "max-width-applies-to-014.xht": [ + "8d49feba65cc588c3be864bd8227b5a192b02e8f", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-043-ref.xht", + "/css/reference/pass_if_square_96px_black.html", "==" ] ], {} ] ], - "padding-left-100.xht": [ - "8dde053b408a5b8a29526333b208fe97f372f6e3", + "max-width-applies-to-015.xht": [ + "c607f82867a92a6abb195a24cb4d2c92f50bc446", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "padding-left-101.xht": [ - "db207e702e8fff4489e1eeaa25d08925f0aca746", + "max-width-applies-to-016.xht": [ + "f7c244227b67217f0e35675526ab29a6b756f560", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "padding-left-102.xht": [ - "33f8e5461b793aa5508775634c341e9f546325e1", + "max-width-percentage-001.xht": [ + "05a715d28cbd6e1810b69ee258032b5a106c7905", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/normal-flow/max-width-percentage-001-ref.xht", "==" ] ], {} ] ], - "padding-left-103.xht": [ - "96e89edb8b84f6c8d73783936526c3fa6dd2bb7a", + "max-width-percentage-002.xht": [ + "62debbacc25e6d8be2f87dca429fe54b9730acd0", [ null, [ [ - "/css/CSS2/margin-padding-clear/padding-left-103-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "padding-left-applies-to-001.xht": [ - "5d8041022675bd2ef08264533e44b1d8d42a9ce9", + "min-height-001.xht": [ + "20ccdb41493cb9c286243ea437bda3225a880a9d", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-applies-to-001-ref.xht", + "/css/CSS2/normal-flow/height-001-ref.xht", "==" ] ], {} ] ], - "padding-left-applies-to-002.xht": [ - "186de1bb57d960f89b5e5674dc9717e3b88439ac", + "min-height-002.xht": [ + "3aaa20691eda22551ec3e42d7e012d5d968acabd", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-applies-to-001-ref.xht", + "/css/CSS2/normal-flow/height-001-ref.xht", "==" ] ], {} ] ], - "padding-left-applies-to-003.xht": [ - "08b739a46211d0c88aacc2b40a379e0f65667d6c", + "min-height-003.xht": [ + "9fce19bcfa6411593af0b8712f56fd914a816e57", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-applies-to-001-ref.xht", + "/css/CSS2/normal-flow/height-003-ref.xht", "==" ] ], {} ] ], - "padding-left-applies-to-004.xht": [ - "96bd842c168066351f1e2da2a410397157a403e3", + "min-height-004.xht": [ + "c9d3d13564f0f5374cfe119ef73433e049c39090", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-applies-to-001-ref.xht", + "/css/CSS2/normal-flow/height-001-ref.xht", "==" ] ], {} ] ], - "padding-left-applies-to-005.xht": [ - "f05c4f5132c78de76dfdf1e6b8c503b8e15f6160", + "min-height-005.xht": [ + "c2041b6ed99bc5a67de64148f438fa4f0135ddde", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-applies-to-001-ref.xht", + "/css/CSS2/normal-flow/height-001-ref.xht", "==" ] ], {} ] ], - "padding-left-applies-to-006.xht": [ - "6a04c155497bfaf65bdddd75f20bb4401d4a0b1e", + "min-height-006.xht": [ + "c9ab001c6b9d165c5ddfc54203ed5c2b83277b20", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-applies-to-001-ref.xht", + "/css/CSS2/normal-flow/height-006-ref.xht", "==" ] ], {} ] ], - "padding-left-applies-to-007.xht": [ - "6110016358d3895cedf3cea4d2fc02d7ab760d86", + "min-height-007.xht": [ + "9bc5d8914ebe27a0c2a2858180461b33e4b6956f", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-applies-to-009-ref.xht", + "/css/CSS2/normal-flow/height-006-ref.xht", "==" ] ], {} ] ], - "padding-left-applies-to-008.xht": [ - "f4f10b1670d217a15b0ddffb79f6eaee390cc5d7", + "min-height-012.xht": [ + "0d49b8abafd1bd544afc848f08aa5d1ed1576767", [ null, [ [ - "/css/CSS2/margin-padding-clear/padding-left-applies-to-008-ref.xht", + "/css/CSS2/normal-flow/height-001-ref.xht", "==" ] ], {} ] ], - "padding-left-applies-to-009.xht": [ - "0796980dd82e5e67c2cd7245667861ce3635effd", + "min-height-013.xht": [ + "d69871cd89a2e10f90be4031d2d5017c5ae2bb6a", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-applies-to-009-ref.xht", + "/css/CSS2/normal-flow/height-001-ref.xht", "==" ] ], {} ] ], - "padding-left-applies-to-010.xht": [ - "efe778baeb376b8844389b5ad244430df7521cf9", + "min-height-015.xht": [ + "2e9e8b13dae770bc4c9dd01adf5ca07aa7cc1fc6", [ null, [ [ - "/css/CSS2/margin-padding-clear/padding-left-applies-to-010-ref.xht", + "/css/CSS2/normal-flow/height-001-ref.xht", "==" ] ], {} ] ], - "padding-left-applies-to-012.xht": [ - "7907e88c7320d44964c6da02a54c3dd5834ec0f2", + "min-height-016.xht": [ + "faa1bebcb8b9cfdfa9e8e8954723b91f659a1e93", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-applies-to-009-ref.xht", + "/css/CSS2/normal-flow/height-001-ref.xht", "==" ] ], {} ] ], - "padding-left-applies-to-013.xht": [ - "473175b3ec8ff1ef5fae0094e80a5531429904a1", + "min-height-017.xht": [ + "292bb94ec929edb39036f18e63efb44ef3fd0663", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-applies-to-009-ref.xht", + "/css/CSS2/normal-flow/height-006-ref.xht", "==" ] ], {} ] ], - "padding-left-applies-to-014.xht": [ - "8c5ae43e1cb82a122d858e227a1961ce15b272aa", + "min-height-018.xht": [ + "c87793f74b38010baca2875cc9e9c6e8a78108ef", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-applies-to-009-ref.xht", + "/css/CSS2/normal-flow/height-006-ref.xht", "==" ] ], {} ] ], - "padding-left-applies-to-015.xht": [ - "fa8e8919ad444e1ba674a11fde44eeb6ac9b48a3", + "min-height-023.xht": [ + "3b319ad5900b1efa38163bfc980757437dac95c6", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-applies-to-009-ref.xht", + "/css/CSS2/normal-flow/height-001-ref.xht", "==" ] ], {} ] ], - "padding-percentage-inherit-001.xht": [ - "d3e9c8b4283a07ff738bf77e56702a0cecf3c47c", + "min-height-024.xht": [ + "6c76a4dab5e32baa19a18f10389b760e1820cd18", [ null, [ [ - "/css/CSS2/margin-padding-clear/padding-percentage-inherit-001-ref.xht", + "/css/CSS2/normal-flow/height-001-ref.xht", "==" ] ], {} ] ], - "padding-right-001.xht": [ - "025d5c0d46543bd9af632b4706eb8362d09cee10", + "min-height-025.xht": [ + "7028b2cf722dde8e226da875ba406013dd041a97", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/normal-flow/max-height-025-ref.xht", "==" ] ], {} ] ], - "padding-right-002.xht": [ - "efeebd7aa5f76288e3c5141917a64831fc31b7e7", + "min-height-026.xht": [ + "ddc4fc597d27d2abb7f85329e40a0c45d0469d1b", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/normal-flow/height-001-ref.xht", "==" ] ], {} ] ], - "padding-right-003.xht": [ - "74ccc7a81e9c7777d8c07d8f684eff2cbdd36336", + "min-height-027.xht": [ + "4856641d867d11e57ca3cae30bfcda254c025b80", [ null, [ [ - "/css/CSS2/margin-padding-clear/padding-right-003-ref.xht", + "/css/CSS2/normal-flow/height-001-ref.xht", "==" ] ], {} ] ], - "padding-right-004.xht": [ - "b9151d8d74f960eaf07763dd4a83e7b2b1a38801", + "min-height-028.xht": [ + "cb512b16d07d7cd5981ca588c5e1eb52a8ef89d6", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/normal-flow/height-006-ref.xht", "==" ] ], {} ] ], - "padding-right-005.xht": [ - "6acf26bafc066d6b89f10b100edb80d92481f151", + "min-height-029.xht": [ + "4ca616fd949bf83d41e08df2d1b30e3f8b5c68b6", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/normal-flow/height-006-ref.xht", "==" ] ], {} ] ], - "padding-right-006.xht": [ - "1a4ea7a47f6a325ea20a78730d4df6e4c97d562b", + "min-height-034.xht": [ + "b52bd719ae366315b76ade3308a76479dd2ea7bd", [ null, [ [ - "/css/CSS2/margin-padding-clear/padding-right-006-ref.xht", + "/css/CSS2/normal-flow/height-001-ref.xht", "==" ] ], {} ] ], - "padding-right-007.xht": [ - "4ddb96f75f6140c60228096355b9de9c3464bb3e", + "min-height-035.xht": [ + "9ced6b61d9225bc3b598a2495fb67f0f8b3dbb68", [ null, [ [ - "/css/CSS2/margin-padding-clear/padding-right-006-ref.xht", + "/css/CSS2/normal-flow/height-001-ref.xht", "==" ] ], {} ] ], - "padding-right-012.xht": [ - "ae5920663e28d263dadf1ca240d044c84a03cb06", + "min-height-036.xht": [ + "3af910dc98d38499b89826cc06832c240c61cf6c", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/normal-flow/max-height-036-ref.xht", "==" ] ], {} ] ], - "padding-right-013.xht": [ - "f04803da573d6074675d8250aade6d2a6810d0d9", + "min-height-037.xht": [ + "0b30519e7dd41e8881bb843178996080d5bf8114", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/normal-flow/height-001-ref.xht", "==" ] ], {} ] ], - "padding-right-015.xht": [ - "85091aa7b4c55f541f88b74c45b9855c02f9464d", + "min-height-038.xht": [ + "041017d252785ca2ca4b747aea6fd89a80c1951f", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/normal-flow/height-001-ref.xht", "==" ] ], {} ] ], - "padding-right-016.xht": [ - "273d5b12927dac2a76d548fe11a79a1e40742d19", + "min-height-039.xht": [ + "0e3d0a5c9c62fa3fa20f148286e36da6b2173b11", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/normal-flow/height-006-ref.xht", "==" ] ], {} ] ], - "padding-right-017.xht": [ - "714e5fff5d711f3866d60458b3f6e66f72ab38ad", + "min-height-040.xht": [ + "6abb807e59fc75ca7750c6398bd0a414af444333", [ null, [ [ - "/css/CSS2/margin-padding-clear/padding-right-017-ref.xht", + "/css/CSS2/normal-flow/height-006-ref.xht", "==" ] ], {} ] ], - "padding-right-018.xht": [ - "918918cd4deb65dcc0e466828002627bef59b10a", + "min-height-045.xht": [ + "2290f69e18e7c6f1ab4957ab9b9c56851eb99a24", [ null, [ [ - "/css/CSS2/margin-padding-clear/padding-right-017-ref.xht", + "/css/CSS2/normal-flow/height-001-ref.xht", "==" ] ], {} ] ], - "padding-right-023.xht": [ - "e363aabce79d02acde6c9d8d4e050de9433be228", + "min-height-046.xht": [ + "60ab17a9f74a6954469cb9034c2ee9f75fefe6ba", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/normal-flow/height-001-ref.xht", "==" ] ], {} ] ], - "padding-right-024.xht": [ - "5e4777d9b536c5656a47a7d70aa777783104f196", + "min-height-047.xht": [ + "8d99c5b781f345b9dc3d4d52b490fb3fa6e43f73", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/normal-flow/max-height-047-ref.xht", "==" ] ], {} ] ], - "padding-right-025.xht": [ - "1c89240d1e21095819924904c05fc26f50d9ddca", + "min-height-048.xht": [ + "c0610c4f20dfda03d308d578466431670b486a31", [ null, [ [ - "/css/CSS2/margin-padding-clear/padding-right-025-ref.xht", + "/css/CSS2/normal-flow/height-001-ref.xht", "==" ] ], {} ] ], - "padding-right-026.xht": [ - "a1ef19b94e82ae95db5c17ab0071a383ebfc7cab", + "min-height-049.xht": [ + "8f3b15e81235df583f19219e1398729f4e75b8a7", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/normal-flow/height-001-ref.xht", "==" ] ], {} ] ], - "padding-right-027.xht": [ - "7e706a791ddd7cd7c3964914904d924d411c787d", + "min-height-050.xht": [ + "67f5f7a6f02463951829884ee16c87b6ff9ec71f", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/normal-flow/height-006-ref.xht", "==" ] ], {} ] ], - "padding-right-028.xht": [ - "6589ec1f2acc9f735443e4735ff5831a01957f65", + "min-height-051.xht": [ + "9d0f74927167083b6bf2b0b40b63ee73fe0acda9", [ null, [ [ - "/css/CSS2/margin-padding-clear/padding-right-028-ref.xht", + "/css/CSS2/normal-flow/height-006-ref.xht", "==" ] ], {} ] ], - "padding-right-029.xht": [ - "4acb9cdb231a1cb61bbe4978a4d7fb2724baac78", + "min-height-056.xht": [ + "5a3673c5b09e1874c446e22b72924adeef8bf140", [ null, [ [ - "/css/CSS2/margin-padding-clear/padding-right-028-ref.xht", + "/css/CSS2/normal-flow/height-001-ref.xht", "==" ] ], {} ] ], - "padding-right-034.xht": [ - "71b2b2a8b8afa95ec83265a334f77ad43d826fc7", + "min-height-057.xht": [ + "df800d82f82864ac523c7924dbebb074d82225aa", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/normal-flow/height-001-ref.xht", "==" ] ], {} ] ], - "padding-right-035.xht": [ - "9945db376470b39de34919dc416a50c59f335dcc", + "min-height-058.xht": [ + "7341ba9aa573d8873c40c80ebf9fc23853566917", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/normal-flow/max-height-058-ref.xht", "==" ] ], {} ] ], - "padding-right-036.xht": [ - "261a88b16786e32025c7b8a5ca6ec936d402ccb2", + "min-height-059.xht": [ + "de3cc1877cf8023492494621e8ae901f27d7627d", [ null, [ [ - "/css/CSS2/margin-padding-clear/padding-left-036-ref.xht", + "/css/CSS2/normal-flow/height-001-ref.xht", "==" ] ], {} ] ], - "padding-right-037.xht": [ - "417fff70d2ee893f2d996210c96f5d4c63e7e762", + "min-height-060.xht": [ + "8b5c9a55109cb38a98e6959835f751e1eabe3e09", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/normal-flow/height-001-ref.xht", "==" ] ], {} ] ], - "padding-right-038.xht": [ - "f7b50180f8df75d0c5c8002fbd047e599b3a7694", + "min-height-061.xht": [ + "747592d26664b2bbbf8e02dab3df81b3978b422f", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/normal-flow/height-061-ref.xht", "==" ] ], {} ] ], - "padding-right-039.xht": [ - "19829bf77382a316f28e3ed570f5ea95e71f2da1", + "min-height-062.xht": [ + "9d425e5a922c2b0225c76e8c9006b1d416d0c2c1", [ null, [ [ - "/css/CSS2/margin-padding-clear/padding-right-039-ref.xht", + "/css/CSS2/normal-flow/height-061-ref.xht", "==" ] ], {} ] ], - "padding-right-040.xht": [ - "9118bd8b166e5e207082dddf45d356334da5c062", + "min-height-067.xht": [ + "52d4c9b72db579521418d41abd67c61b1a46549c", [ null, [ [ - "/css/CSS2/margin-padding-clear/padding-right-039-ref.xht", + "/css/CSS2/normal-flow/min-height-067-ref.xht", "==" ] ], {} ] ], - "padding-right-045.xht": [ - "b1a1207a7191b008bd04876003f476447c84ab4b", + "min-height-068.xht": [ + "1be63b795e99b8c4029fd9bdd089c73a258ebe6d", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/normal-flow/min-height-067-ref.xht", "==" ] ], {} ] ], - "padding-right-046.xht": [ - "a52902e253acb81c8b266091b1ffb418f631c6b8", + "min-height-069.xht": [ + "8c1b903b023bd5eae539b9b1f24ab5c5f5e15fb3", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/normal-flow/height-069-ref.xht", "==" ] ], {} ] ], - "padding-right-047.xht": [ - "29d619a967678370b017427cd66b1d4117a91c6e", + "min-height-070.xht": [ + "8cd73ce30c719782a3a12f6f0a36ffe578b18f92", [ null, [ [ - "/css/CSS2/margin-padding-clear/padding-left-047-ref.xht", + "/css/CSS2/normal-flow/min-height-067-ref.xht", "==" ] ], {} ] ], - "padding-right-048.xht": [ - "b97559adda4bfa59e6a649b8eeee540ff52edc3b", + "min-height-071.xht": [ + "0ceb5178a06021ab1ff5b91fd0b59d36965ab38f", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/normal-flow/min-height-067-ref.xht", "==" ] ], {} ] ], - "padding-right-049.xht": [ - "9d59f7c0111745dfbb94037ad84ca76f68fe1f12", + "min-height-072.xht": [ + "9bdc9f5083013d95449bbc6db34f775133fa0447", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/normal-flow/height-072-ref.xht", "==" ] ], {} ] ], - "padding-right-050.xht": [ - "ec2695a28716a5d0ff1b6418ea7da1bbf914cf12", + "min-height-073.xht": [ + "6e2d95972f307506b35d02bab534a2fa28809fee", [ null, [ [ - "/css/CSS2/margin-padding-clear/padding-right-039-ref.xht", + "/css/CSS2/normal-flow/height-072-ref.xht", "==" ] ], {} ] ], - "padding-right-051.xht": [ - "4ac8432e8ad22af7200017dadab402891e64853b", + "min-height-078.xht": [ + "407cf40fd149d62f11ff5af6f711a918703d58fb", [ null, [ [ - "/css/CSS2/margin-padding-clear/padding-right-039-ref.xht", + "/css/CSS2/normal-flow/min-height-067-ref.xht", "==" ] ], {} ] ], - "padding-right-056.xht": [ - "0b62f98361a509d165b9bb1a96133d7d473ae47b", + "min-height-079.xht": [ + "5776316f1ee8c53da352b083331214a4c388c8f0", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/normal-flow/min-height-067-ref.xht", "==" ] ], {} ] ], - "padding-right-057.xht": [ - "1b843dc656b2549247b55a931aa74b6b0a4c9ce5", + "min-height-080.xht": [ + "8171933ecbcce482f642f0254e8ae714eb14ddd5", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/normal-flow/height-080-ref.xht", "==" ] ], {} ] ], - "padding-right-058.xht": [ - "be66ead1145a6b3dce55f6078ce8531b356f17c2", + "min-height-081.xht": [ + "b7963f7e7d326d1a16edbf742553578d9601a31e", [ null, [ [ - "/css/CSS2/margin-padding-clear/padding-right-039-ref.xht", + "/css/CSS2/normal-flow/min-height-067-ref.xht", "==" ] ], {} ] ], - "padding-right-059.xht": [ - "7114385f8ef02543d8b97cf9ea0becb4a5828618", + "min-height-082.xht": [ + "56dae38cc4c89b3708c1650492aadf3e197d8d5e", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/normal-flow/min-height-067-ref.xht", "==" ] ], {} ] ], - "padding-right-060.xht": [ - "497611c00aa52677aead3edcaf3057294ac3b953", + "min-height-083.xht": [ + "454c971b54dd6c22c32c8f1f20948a9465273a00", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/normal-flow/height-006-ref.xht", "==" ] ], {} ] ], - "padding-right-061.xht": [ - "093366f176f3e1ed3af2c4bad08a4f57b23171af", + "min-height-084.xht": [ + "a0fb7f6fea3e1d6ba75043ff8da8ff7439b38068", [ null, [ [ - "/css/CSS2/margin-padding-clear/padding-right-061-ref.xht", + "/css/CSS2/normal-flow/height-006-ref.xht", "==" ] ], {} ] ], - "padding-right-062.xht": [ - "4b11f6006c4d7ac41def0a13bf7cc739a3a8c747", + "min-height-089.xht": [ + "f7c35d88f3e521531ea61abbb43ac0f8fd27f658", [ null, [ [ - "/css/CSS2/margin-padding-clear/padding-right-061-ref.xht", + "/css/CSS2/normal-flow/height-001-ref.xht", "==" ] ], {} ] ], - "padding-right-067.xht": [ - "cfe704b10a4abd2369e1700cea406c1bac6c3b58", + "min-height-090.xht": [ + "f4e9abb25c5b57126c74be3a68522981c6e6589f", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/normal-flow/height-001-ref.xht", "==" ] ], {} ] ], - "padding-right-068.xht": [ - "6b2ed505f90c40b5abbd2a6d655de8a27d18c595", + "min-height-091.xht": [ + "4d32038987ee0064f6d90c18afb3216a534dcdd6", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/normal-flow/height-003-ref.xht", "==" ] ], {} ] ], - "padding-right-069.xht": [ - "75348b29b79ba8397357e04c45a8b921da2c4663", + "min-height-092.xht": [ + "9e81fc6fbfb7f5696bd135cc7b25d2cb3871b0bc", [ null, [ [ - "/css/CSS2/margin-padding-clear/padding-right-069-ref.xht", + "/css/CSS2/normal-flow/height-001-ref.xht", "==" ] ], {} ] ], - "padding-right-070.xht": [ - "326e385e46c3859d66f6a793e7a136286202b1f4", + "min-height-093.xht": [ + "7a6cbc4d4b2fe2ce88358c9e4af58119fc2919cb", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/normal-flow/height-001-ref.xht", "==" ] ], {} ] ], - "padding-right-071.xht": [ - "f5bc69939b832c82586c8ca092f65b920b73401d", + "min-height-094.xht": [ + "42d473f6c0602e9992cf2dd21e4df5d7627b65b9", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/normal-flow/height-006-ref.xht", "==" ] ], {} ] ], - "padding-right-072.xht": [ - "f8a921be6d84579b870108494e19199bca94ffd1", + "min-height-095.xht": [ + "c86d168f8fe0d95f3be9ebfea8164492c7b2d1f4", [ null, [ [ - "/css/CSS2/margin-padding-clear/padding-right-072-ref.xht", + "/css/CSS2/normal-flow/height-006-ref.xht", "==" ] ], {} ] ], - "padding-right-073.xht": [ - "e8af303076567ea5cd86ae28f5deb6cce3e9b3b5", + "min-height-100.xht": [ + "2830ee8d6ebf2ee8e9f80b2d91cbe7b3d91fa06b", [ null, [ [ - "/css/CSS2/margin-padding-clear/padding-right-072-ref.xht", + "/css/CSS2/normal-flow/height-001-ref.xht", "==" ] ], {} ] ], - "padding-right-078.xht": [ - "d230bb51105338df2c6722ce217da53ece31c652", + "min-height-101.xht": [ + "2d7bdde8143e2b2015dce560f367ef01a2e77102", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/normal-flow/height-001-ref.xht", "==" ] ], {} ] ], - "padding-right-079.xht": [ - "243440cbce29e86856b08b4acfd146da453f189d", + "min-height-102.xht": [ + "ef8c5ab20e49edbd8c12970ebce14c268108822a", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/normal-flow/height-001-ref.xht", "==" ] ], {} ] ], - "padding-right-080.xht": [ - "115fb36776b2fd2b9304f02931af940503afba0b", + "min-height-103.xht": [ + "4e457ac10e2b00b85243583ed96925292690269c", [ null, [ [ - "/css/CSS2/margin-padding-clear/padding-right-080-ref.xht", + "/css/CSS2/normal-flow/height-003-ref.xht", "==" ] ], {} ] ], - "padding-right-081.xht": [ - "3ba91a9d59f14b2dc75ee13eafbf5ddebff0d132", + "min-height-104.xht": [ + "85c7811ad31e0d3edad1478fb5a2d3da7f64d13e", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/normal-flow/max-height-107-ref.xht", "==" ] ], {} ] ], - "padding-right-082.xht": [ - "cd12960a10d393ac42dc5fd43e4ea541f3f79d7e", + "min-height-105.xht": [ + "0d762aecae72ca6bf83c615ecbb7a543b3711031", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/normal-flow/max-height-110-ref.xht", "==" ] ], {} ] ], - "padding-right-083.xht": [ - "4780496cb711cd6380557486b164caf7d7cf4ddf", + "min-height-106.xht": [ + "5bf011a08711c9e92505bf4b35a262d89f4bb273", [ null, [ [ - "/css/CSS2/margin-padding-clear/padding-right-083-ref.xht", + "/css/CSS2/normal-flow/max-height-107-ref.xht", "==" ] ], {} ] ], - "padding-right-084.xht": [ - "9f3500936c7f98f68ba18546fd38b84fa844f854", + "min-height-111.xht": [ + "7d64199f5a1398affdda00f2a97b6e05318d9321", [ null, [ [ - "/css/CSS2/margin-padding-clear/padding-right-083-ref.xht", + "/css/CSS2/normal-flow/min-height-111-ref.xht", "==" ] ], {} ] ], - "padding-right-089.xht": [ - "cbffc2bb26ad1b098ccf5cedacde01387373a807", + "min-height-112.xht": [ + "7ab054f278c63b50271a7b4dbd1c96f6a72d52cc", [ null, [ [ - "/css/CSS2/margin-padding-clear/padding-right-089-ref.xht", + "/css/CSS2/normal-flow/min-height-111-ref.xht", "==" ] ], {} ] ], - "padding-right-090.xht": [ - "1f453485f6306e4cca1f3850ac47e25bfc31bd37", + "min-height-applies-to-005.xht": [ + "177debf42a0574d2df4e37ae82fc3e2e4faa7e0d", [ null, [ [ - "/css/CSS2/margin-padding-clear/padding-right-089-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "padding-right-091.xht": [ - "5e28cb56d39e979c0b3d5a3ec732a816991a08a7", + "min-height-applies-to-006.xht": [ + "36b706d1de86ef7b4d166723ce4f421a833df2ef", [ null, [ [ - "/css/CSS2/margin-padding-clear/padding-right-091-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "padding-right-092.xht": [ - "be0b43979f8e3d876a350704ebda370d4f978762", + "min-height-applies-to-008.xht": [ + "b0ecf9a6596ca71eccb44290eeb6e63f9076f236", [ null, [ [ - "/css/CSS2/margin-padding-clear/padding-right-089-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "padding-right-093.xht": [ - "8c7ecc744dde968039ad625ce65a5d224b57f7fa", + "min-height-applies-to-009.xht": [ + "b95c65a5160b8a360d2a25a8e6b0bb48ea82f40e", [ null, [ [ - "/css/CSS2/margin-padding-clear/padding-right-089-ref.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "padding-right-094.xht": [ - "8f11b4a27b6af4dfbbdc6986c4b92299965e5fda", + "min-height-applies-to-012.xht": [ + "03358e3458c522a4609212af4ba70464695fcb09", [ null, [ [ - "/css/CSS2/margin-padding-clear/padding-right-039-ref.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "padding-right-095.xht": [ - "334fb0145400f600ea344c55cbe8ed893dc0b285", + "min-height-applies-to-013.xht": [ + "df00228bfbe9b48aef2d01b80059d824696353ab", [ null, [ [ - "/css/CSS2/margin-padding-clear/padding-right-039-ref.xht", + "/css/reference/pass_if_square_96px_black.html", "==" ] ], {} ] ], - "padding-right-100.xht": [ - "6b6cf5f57b07c2206bf9573f0616355422e98e32", + "min-height-applies-to-014.xht": [ + "fc3ca591b60f2124618fb33deac16f004c528256", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/reference/pass_if_square_96px_black.html", "==" ] ], {} ] ], - "padding-right-101.xht": [ - "646712c581421c39a2de277e291c6329ddeea88d", + "min-height-applies-to-015.xht": [ + "cd85ff5aaf73547ba90a62bd530a01f2a2db69cc", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "padding-right-102.xht": [ - "5f49916b8e89a3a28ce42ff328c103b68277e241", + "min-height-percentage-001.xht": [ + "7f027e4a6a3acd153267125b7782471d926979d8", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-004-ref.xht", + "/css/CSS2/normal-flow/max-height-percentage-001-ref.xht", "==" ] ], {} ] ], - "padding-right-103.xht": [ - "e334a23c36d68308b0c5d73c85082b4eec190173", + "min-height-percentage-002.xht": [ + "d5f33065e5b0415cdc45dba56ff536162e195d46", [ null, [ [ - "/css/CSS2/margin-padding-clear/padding-right-017-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "padding-right-applies-to-001.xht": [ - "064a20aa0c9b6894f4cdf7236c0efc1008081c9d", + "min-height-percentage-003.xht": [ + "566da2affffb1611cca623f5e9f4012c53ed07ea", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-applies-to-001-ref.xht", + "/css/CSS2/normal-flow/min-height-percentage-003-ref.xht", "==" ] ], {} ] ], - "padding-right-applies-to-002.xht": [ - "cc90783b799819401bc518239bbcbcd4ae32329d", + "min-height-separates-margin.html": [ + "1e144921fe34fa2403eac45fced5ea7ffe5561d5", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-applies-to-001-ref.xht", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "padding-right-applies-to-003.xht": [ - "c6f64bfd89150c08e5b9c7dcae71718a380cc320", + "min-width-001.xht": [ + "1db3741df83fe39b8bc5b180da751120ee1988c9", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-applies-to-001-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "padding-right-applies-to-004.xht": [ - "b9d8dba160f83bc6a1e16debcc757f1c809827ef", + "min-width-002.xht": [ + "e2a7bf18646dd9eff4dc0eb471980b587f2132a4", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-applies-to-001-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "padding-right-applies-to-005.xht": [ - "eb83d114f17f3a720cfb2d47d4063daa0166f69c", + "min-width-003.xht": [ + "6d47695652901ff0bddb441808f753de5627de0a", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-applies-to-001-ref.xht", + "/css/CSS2/normal-flow/max-width-003-ref.xht", "==" ] ], {} ] ], - "padding-right-applies-to-006.xht": [ - "c40566ecd875fc3b31064eee120a92a45f3f23bb", + "min-width-004.xht": [ + "e36f7aa5726c8f3dff11c4e72960b87aaed89333", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-applies-to-001-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "padding-right-applies-to-007.xht": [ - "23dec69789f50e88dae2b4bae6c02a931d8d7355", + "min-width-005.xht": [ + "d40c0b39d6642cbe457da067e259c0246865f5d7", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-applies-to-009-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "padding-right-applies-to-009.xht": [ - "7da7cff80e5c6d9ad9c4342f01e9dad7c75a3171", + "min-width-006.xht": [ + "7e628c9c0dee15e9a2d0baddd847d3751438bb52", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-applies-to-009-ref.xht", + "/css/CSS2/normal-flow/max-width-006-ref.xht", "==" ] ], {} ] ], - "padding-right-applies-to-012.xht": [ - "543d350b99c14859e6b1caf7f00b0e30f179527f", + "min-width-007.xht": [ + "becbe01f77b5f0fd1d44c684c6ae2f4523482c1f", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-applies-to-009-ref.xht", + "/css/CSS2/normal-flow/max-width-006-ref.xht", "==" ] ], {} ] ], - "padding-right-applies-to-013.xht": [ - "5de3e8b15cb09e2b3c51c8e592940ce44e26fa84", + "min-width-012.xht": [ + "b2a32590d141a9c866efae02c3fa41363d1884c7", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-applies-to-009-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "padding-right-applies-to-014.xht": [ - "3a172ffb0fa37ceb4849996e857b83c431bbdbb5", + "min-width-013.xht": [ + "6a0b8d4ce77fa00498622d97929fb76ae0007eb9", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-applies-to-009-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "padding-right-applies-to-015.xht": [ - "f8c9a6d3d7529118052347aa3570455af9bcc3b4", + "min-width-014.xht": [ + "87d2e4085f7d94a31dc1050c74c5cd2b3a06331e", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-left-applies-to-009-ref.xht", + "/css/CSS2/normal-flow/max-width-003-ref.xht", "==" ] ], {} ] ], - "padding-shorthand-001.xht": [ - "b53cad102d85e812da60e1d7e723c6669cc355c5", + "min-width-015.xht": [ + "0f1f26c1b96ec65521f967e6218cb5bb83cf9a89", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-shorthand-001-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "padding-shorthand-002.xht": [ - "078b58a4f8dd29a65a5c603031bbde32180beb44", + "min-width-016.xht": [ + "9029542567d2f008d53503e1a26812d10676956a", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-shorthand-002-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "padding-shorthand-003.xht": [ - "83820a2f1def6d9832e51b09d047de5a765400d2", + "min-width-017.xht": [ + "ac31d76ef5c32f1a3cbad1e8c4dc190e47c7779c", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-shorthand-003-ref.xht", + "/css/CSS2/normal-flow/max-width-006-ref.xht", "==" ] ], {} ] ], - "padding-shorthand-004.xht": [ - "36181dbf3d25845901c290932fb224e48027f0ff", + "min-width-018.xht": [ + "855b97174db0b39e932825658c3f958d301d0aeb", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-shorthand-003-ref.xht", + "/css/CSS2/normal-flow/max-width-006-ref.xht", "==" ] ], {} ] ], - "padding-top-001.xht": [ - "4b5db15a486dd10bdd1ce8bec729e22653db6af0", + "min-width-023.xht": [ + "386aae5b39c4ba7a97de3de9dc90ee88dbd4f1a3", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "padding-top-002.xht": [ - "9c6eaa520c43429baf74d8281644f65a281f6553", + "min-width-024.xht": [ + "b9b64bc198e7ff63bdddf3c65de5e78e47cf96a6", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "padding-top-003.xht": [ - "8bbfcdf06d5c56732931d7716033a856e7bde12b", + "min-width-025.xht": [ + "d5786ed77b00b7f06afd392f11f92f83e4b62518", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-top-007-ref.xht", + "/css/CSS2/normal-flow/max-width-025-ref.xht", "==" ] ], {} ] ], - "padding-top-004.xht": [ - "7ae654e336ad4dd6b34e6ad122142deaa48c4382", + "min-width-026.xht": [ + "b506f668b4e12b5380d9c4e4374d8494963a7a1a", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "padding-top-005.xht": [ - "c34e3388613618dd4a22702b7707ecca21a0ad73", + "min-width-027.xht": [ + "0722b0cbf92dff46ff205ad46f7f9f39877f4507", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "padding-top-006.xht": [ - "16dee77f39a2cc25131e8f0b2f9d5d46dcac7800", + "min-width-028.xht": [ + "10ac27ea78edef629e1b6083d1291b6c959cf5a8", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-top-007-ref.xht", + "/css/CSS2/normal-flow/max-width-006-ref.xht", "==" ] ], {} ] ], - "padding-top-007.xht": [ - "bf0387b1b8be90f665ddf7fb4714e62b44f2ce8c", + "min-width-029.xht": [ + "5cd5802df0dae531243da60ffb73ae7cbcb79051", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-top-007-ref.xht", + "/css/CSS2/normal-flow/max-width-006-ref.xht", "==" ] ], {} ] ], - "padding-top-012.xht": [ - "87b44ee12f9e8bb90aad1d3c8050dfe9521ad03d", + "min-width-034.xht": [ + "e16a3821c8fee228b54febfbaa4154b72395d6ab", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "padding-top-013.xht": [ - "c4d223c7dfbaacc362b8d521328068f02d15a511", + "min-width-035.xht": [ + "f156058cf8bb41f9dab1749f40241b638a93185b", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "padding-top-014.xht": [ - "ba4ba93f4fa00ac404a8a03d94adc4ba2cfe5cad", + "min-width-036.xht": [ + "07ea986ffced3d7a396d33499ddbe3af46ef7df2", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-top-043-ref.xht", + "/css/CSS2/normal-flow/max-width-036-ref.xht", "==" ] ], {} ] ], - "padding-top-015.xht": [ - "88075b88fc555b2d488d94ac9da9ee4cf3bf409e", + "min-width-037.xht": [ + "a70c8d05d062a25ab84883dfb8f1612b2eaa2588", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "padding-top-016.xht": [ - "0560ed9d31b66c0a532ec0867e9ab69867f04b4c", + "min-width-038.xht": [ + "f2acb7283123e9c6cadf0e00b052125af49c0dbc", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "padding-top-017.xht": [ - "d170fbe729491e1f87eb374681cccaf9872880ed", + "min-width-039.xht": [ + "18d1e54a7707426ed5c36bb0df6b1bd385b0c2f4", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-top-019-ref.xht", + "/css/CSS2/normal-flow/max-width-006-ref.xht", "==" ] ], {} ] ], - "padding-top-018.xht": [ - "0e019bef68c8519fab95eb16833a2bfe442e7474", + "min-width-040.xht": [ + "e33d332588933f0694ed1ede9fb8f77801ba7f2c", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-top-019-ref.xht", + "/css/CSS2/normal-flow/max-width-006-ref.xht", "==" ] ], {} ] ], - "padding-top-023.xht": [ - "a5317b02288b277498365ac4980f3f4675d95586", + "min-width-045.xht": [ + "7dcde8db7bc9d867180040d0beacbab996c552b3", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "padding-top-024.xht": [ - "fc82fc181f9d82956c26487c86e0b539260efe04", + "min-width-046.xht": [ + "8b993451b313ad18fee3d1f8cb83f5ca6d2dd6b6", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "padding-top-025.xht": [ - "8e2a4f8d76f578833ecdf442513ff170212c0765", + "min-width-047.xht": [ + "81aa54b25041c425617ae7edd6fa909aeaadd498", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-top-031-ref.xht", + "/css/CSS2/normal-flow/max-width-047-ref.xht", "==" ] ], {} ] ], - "padding-top-026.xht": [ - "f4f1c04a7cd9370e4ae56645587067f119b0719a", + "min-width-048.xht": [ + "778ed5055720420b50787458c9a469a142495b31", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "padding-top-027.xht": [ - "f5f24da22b224d232e895e1478a38d0bf331b8a7", + "min-width-049.xht": [ + "d33eb3607853e3747653c81a99d3375cbdc0aaaa", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "padding-top-028.xht": [ - "10ab6625b943dd6f6a9bf8ca3cc7e91bf304e28b", + "min-width-050.xht": [ + "64513f8fd3542bbe5798311485da399b41830d47", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-top-031-ref.xht", + "/css/CSS2/normal-flow/max-width-006-ref.xht", "==" ] ], {} ] ], - "padding-top-029.xht": [ - "7cb22be7a331f9f07ec6cd2bc2ca145163c14c0e", + "min-width-051.xht": [ + "fa0588d470dec3cf35b16d363e8a24fdb4e10136", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-top-031-ref.xht", + "/css/CSS2/normal-flow/max-width-006-ref.xht", "==" ] ], {} ] ], - "padding-top-034.xht": [ - "a99427a3e8ea8c1d8ed2d0018bb4c21d3168cdd3", + "min-width-056.xht": [ + "a4fa0238f4b10b9f1127698c8c98549a12c6e854", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "padding-top-035.xht": [ - "15c5eb7796ceab4c2c14f259b8461b58fb7f2906", + "min-width-057.xht": [ + "a2b657c64225813c2fc90a6ea2b445affbf22098", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "padding-top-037.xht": [ - "2b8ebc610db0318c6730f7f68c802eaee4090178", + "min-width-058.xht": [ + "faa84c278c6764bf5334caf6a6dc483f14e5f95d", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "padding-top-038.xht": [ - "e41d129749eb955e15f2a9f143978804f301fd5b", + "min-width-059.xht": [ + "a5b83377e57798a70228ca1eedff11e7b12887db", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "padding-top-039.xht": [ - "b52d110f4c480797883ba589c8af331df025ea28", + "min-width-060.xht": [ + "08d24653c8b126c33c541533cfdb6b1ab0dad3e0", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-top-043-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "padding-top-040.xht": [ - "ca99e58de22947c9f6f6cba111f4738ccfeab4ef", + "min-width-061.xht": [ + "1ebfa18cb4dd9a9ed62b0e28a4a58f3345e7c702", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-top-043-ref.xht", + "/css/CSS2/normal-flow/max-width-061-ref.xht", "==" ] ], {} ] ], - "padding-top-045.xht": [ - "6cb435e37b31da7c2a0bbef21d64b20659adbe3e", + "min-width-062.xht": [ + "14629aa41a6fc23a4c859b2a0f722fe90c2a448e", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/normal-flow/max-width-061-ref.xht", "==" ] ], {} ] ], - "padding-top-046.xht": [ - "348db0eabe8346319d0e4a0c8921a10d2bfccad1", + "min-width-067.xht": [ + "7a7d7df456f17c365907d2442c765c9d1b861181", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "padding-top-048.xht": [ - "7a19528560c8eeafe8315292ebed95731b5c67d4", + "min-width-068.xht": [ + "8fbd206d7ddae220389aab3bbe96e35aa8230d9c", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "padding-top-049.xht": [ - "4521515e652cd8ab0cb45d891ee3c4c90d404f29", + "min-width-069.xht": [ + "90b35a58e6587ae5369de8e76469749077f63cf1", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/normal-flow/max-width-069-ref.xht", "==" ] ], {} ] ], - "padding-top-050.xht": [ - "51aabd482916eb74bb4ea427bd75e94bb73efd19", + "min-width-070.xht": [ + "465ac831acae2b134064cef3a3257356ccb05deb", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-top-043-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "padding-top-051.xht": [ - "27ef8d7ebd17ba13e55b0712cbef53dc42c45d7a", + "min-width-071.xht": [ + "98a9ae71a6ce9aedf6dcf896cbbe41691d4a8cf3", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-top-043-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "padding-top-056.xht": [ - "abbe774e49f134841255c7720df6e43f4c9477e3", + "min-width-072.xht": [ + "8652c80a15647f4dd80160c9809c385eeab90f95", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/normal-flow/max-width-072-ref.xht", "==" ] ], {} ] ], - "padding-top-057.xht": [ - "141b2a4f6a97e0f061df7e41140144f7f88d3942", + "min-width-073.xht": [ + "5e4ba59147f0c763a7cd72d2af6e3c75346dc4d4", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/normal-flow/max-width-072-ref.xht", "==" ] ], {} ] ], - "padding-top-058.xht": [ - "b06aad202d2a9beff2a1d2ee1d92ea7fbc0a31d3", + "min-width-078.xht": [ + "d46e9637c3963065ca6e8fde29ff2a13511a445e", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-top-043-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "padding-top-059.xht": [ - "079e7f25d6ed4bef7b09bec610bca3baabc5d5a3", + "min-width-079.xht": [ + "a0ac5f5a0d7cf433af99ab439ef1647952d0bf02", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "padding-top-060.xht": [ - "5cf203b0a32d31a635b9d8316e10dcb3c1c7a6dd", + "min-width-080.xht": [ + "2611b9ba568dfc56a06c33b9bd0963f70f2d1548", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/normal-flow/max-width-025-ref.xht", "==" ] ], {} ] ], - "padding-top-061.xht": [ - "297c43555baba51fd888186c56b5ce0f7d077206", + "min-width-081.xht": [ + "af752899620669dcdda997e8dc3474ee56336aa9", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-top-043-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "padding-top-062.xht": [ - "1d24a82b32036cecebc615ee3070df07c161e4c1", + "min-width-082.xht": [ + "e0ab54c605768bc549e7cb25fe007f034741eaaf", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-top-043-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "padding-top-067.xht": [ - "bd01846cf010e83c0de7a0cc174e8c6eda35c0dc", + "min-width-083.xht": [ + "6db4c8637d37cc48770ba805939fe3d81e86a932", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/normal-flow/max-width-006-ref.xht", "==" ] ], {} ] ], - "padding-top-068.xht": [ - "7679ece32b0985b2ba816150bffd77ba591c5e9a", + "min-width-084.xht": [ + "b1a5afdfe4d4b3564f0f6e6aea56738ee78aeac8", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/normal-flow/max-width-006-ref.xht", "==" ] ], {} ] ], - "padding-top-069.xht": [ - "1201441d0830fe5c2f8919571f0aef444f241b8e", + "min-width-089.xht": [ + "ce9e0e02cac12b33b2340f2a5e54ee49220016e9", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-top-079-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "padding-top-070.xht": [ - "4cee7eb715feae868f711c294c4256eedc54cf9e", + "min-width-090.xht": [ + "65a24e3b905bbf4f319064acd2d7ef0fba6fdcbc", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "padding-top-071.xht": [ - "32a3a33232b917c8e1450fc422b21e4b8ad6b140", + "min-width-091.xht": [ + "551d9f303e0bb7a72aabbb776eb1b1cbd41f5767", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/normal-flow/max-width-003-ref.xht", "==" ] ], {} ] ], - "padding-top-072.xht": [ - "91b5197c6c79a6558164ea2c8dfbaaadb9f3177e", + "min-width-092.xht": [ + "826257dc9caf595c1a1c66d24d8b7a3cbbf9e9ba", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-top-079-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "padding-top-073.xht": [ - "7e0dfd3d7265cb7311823952fa30db87f0fa846f", + "min-width-093.xht": [ + "03792fc2cc9e407c1ebe3e1475cacf0843c7f6c2", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-top-079-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "padding-top-078.xht": [ - "04e40d6f84bb6e6df2ab0cdc6fc36aff6e6e79cc", + "min-width-094.xht": [ + "43222ff25bd57ec9a1856085c7aa5356fa9398c6", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/normal-flow/max-width-006-ref.xht", "==" ] ], {} ] ], - "padding-top-079.xht": [ - "e8ee3606ec4d3ffe5c78bf872be1a124fd7ff42f", + "min-width-095.xht": [ + "e59faed5fc5c00ce19305d1fefef13cdf8edf33c", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/normal-flow/max-width-006-ref.xht", "==" ] ], {} ] ], - "padding-top-080.xht": [ - "2ab113a5a9000724abdfea5484fb33f8ca749bc4", + "min-width-100.xht": [ + "0a3df1c8ee6986bf0ef8a3c20badefafbe1a52dd", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-top-031-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "padding-top-081.xht": [ - "71932ec4fdc9cff6003b01aecb00c557456d4eb9", + "min-width-101.xht": [ + "0c6cfeea6c664f73ecf7368024badf8e068c4504", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "padding-top-082.xht": [ - "da2afd60944b4b30ef30b0a8a2887d1c9d71de60", + "min-width-102.xht": [ + "f870669216f18ecf5a7a77ff23075c8be986d3c3", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "padding-top-083.xht": [ - "3ecf9cc9313f7d466f0d95d710f7b85fe2063143", + "min-width-103.xht": [ + "afd1061d6ddf38b63733238fb41cb6a26c8e40ee", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-top-031-ref.xht", + "/css/CSS2/normal-flow/max-width-003-ref.xht", "==" ] ], {} ] ], - "padding-top-084.xht": [ - "4ba9db81f1992a7a69eaadcdbc0bca894711c074", + "min-width-applies-to-001.xht": [ + "65600d4e7f4cf510eea97d434b919345578660bb", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-top-031-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "padding-top-089.xht": [ - "cb0528837c1c70bb58fc2ce5cfe30dc03616caa2", + "min-width-applies-to-002.xht": [ + "b94ec70f43da279d4048c58c7b41bac4940e074d", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-bottom-100-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "padding-top-090.xht": [ - "3d9400fbd7a589599578184866dd8460b0d36f14", + "min-width-applies-to-003.xht": [ + "2861c31b1d74ebac0dbc9632b91b0b74eccf0fea", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-bottom-100-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "padding-top-091.xht": [ - "e091557d07bb30979e9704c1d6537ca5a7518d3d", + "min-width-applies-to-004.xht": [ + "c689e1babe2a45cff92d7666bc2b7214b99ecc97", [ null, [ [ - "/css/CSS2/margin-padding-clear/padding-top-091-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "padding-top-092.xht": [ - "59a4c7e2fb7835c31fd628b70a06e7456d5a1374", + "min-width-applies-to-005.xht": [ + "e819a4c96725bd93c8e3ab257020a5563ce7ac08", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-bottom-100-ref.xht", + "/css/reference/pass_if_square_96px_black.html", "==" ] ], {} ] ], - "padding-top-093.xht": [ - "89e1cc83e3b2acc43c4c88a5646b9bf03043f8cb", + "min-width-applies-to-006.xht": [ + "38a94800f39c5a30aabbe7fb001310521724fa1f", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-bottom-100-ref.xht", + "/css/reference/pass_if_square_96px_black.html", "==" ] ], {} ] ], - "padding-top-094.xht": [ - "f91b8146f5e4957bbc6585d39bec03f10d43666c", + "min-width-applies-to-007.xht": [ + "bcf008d14e18b8a295ba6515c26885fa713ca8ad", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-top-103-ref.xht", + "/css/reference/pass_if_square_96px_black.html", "==" ] ], {} ] ], - "padding-top-095.xht": [ - "c9ffe4766bb041b02317e0d216488be82e5d3d4f", + "min-width-applies-to-008.xht": [ + "bd56072be9232f00610dc8b5238f414886d9928b", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-top-103-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "padding-top-100.xht": [ - "cfb63c36c1523149e857e14236b88af76d8df249", + "min-width-applies-to-009.xht": [ + "dad5efa9328ad3f650f77b481b8ab8447d5e1124", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "padding-top-101.xht": [ - "932b911422d4448d0ca3f73f6bc6a98e08e0cb30", + "min-width-applies-to-012.xht": [ + "07ba0f93329bdf77664928c071596ef69196ca89", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "padding-top-102.xht": [ - "0d2930f517ae784c9ea5e3eafda93c35415c57ac", + "min-width-applies-to-013.xht": [ + "32cdcae85fa1a03b893ff51401956af1505c26ad", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/reference/pass_if_square_96px_black.html", "==" ] ], {} ] ], - "padding-top-103.xht": [ - "d7162a0c40207c47085d6161b54e07f2fd4c94be", + "min-width-applies-to-014.xht": [ + "16cb2359f1bf9853f9b9677e6035e5f0571805f0", [ null, [ [ - "/css/CSS2/margin-padding-clear/padding-top-103-ref.xht", + "/css/reference/pass_if_square_96px_black.html", "==" ] ], {} ] ], - "padding-top-applies-to-001.xht": [ - "a97620f9bd96e8579ef617fcdc8d1425fab0e621", + "min-width-applies-to-015.xht": [ + "aac74f7bee0539a48d1eba869d4dbc246d71c3ae", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-top-applies-to-001-ref.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "padding-top-applies-to-002.xht": [ - "bf11834db00e7489c2efaf44d623de953873449a", + "min-width-applies-to-016.xht": [ + "25a1121004a0d8b33da2b8937eec1bf34deb112b", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-top-applies-to-001-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "padding-top-applies-to-003.xht": [ - "5f84f072ab774407be3f57e5c4c255f6899c2f09", + "min-width-percentage-001.xht": [ + "f5da05c32b9ea5ab8a4de38897195dc8a0b62228", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-top-applies-to-001-ref.xht", + "/css/CSS2/normal-flow/max-width-percentage-001-ref.xht", "==" ] ], {} ] ], - "padding-top-applies-to-004.xht": [ - "404e7b18f209cf9ad6986981ff227eb88c327930", + "min-width-percentage-002.xht": [ + "51e5b647198ae21a071bd1cd3dc625aea0df84d0", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-top-applies-to-001-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "padding-top-applies-to-005.xht": [ - "0d014ddfb479a90ec6383f23c993c1efa0656687", + "negative-margin-001.html": [ + "597516d5120055a74fdc7260a5f1e04c111c7fce", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-top-applies-to-001-ref.xht", + "/css/CSS2/normal-flow/negative-margin-001-ref.html", "==" ] ], {} ] ], - "padding-top-applies-to-006.xht": [ - "82ba6a1601500f40d6757f1db92d0f52e8a02d7d", + "negative-margin-shrinking-container-size-001.html": [ + "dc61db5830043efecc95e2a44787e6ffb5d15d0c", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-top-applies-to-001-ref.xht", + "/css/reference/ref-filled-green-200px-square.html", "==" ] ], {} ] ], - "padding-top-applies-to-007.xht": [ - "7c8da679efba00e26621225220e013a54fb3bb72", + "negative-margin-shrinking-container-size-002.html": [ + "37e9b3559de23718c9b375b4293bd4eea670f753", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-top-applies-to-012-ref.xht", + "/css/reference/ref-filled-green-200px-square.html", "==" ] ], {} ] ], - "padding-top-applies-to-009.xht": [ - "c743a8fa20f37fbe5f866b65d75af4d5e4503491", + "overflow-scroll-paint-order.html": [ + "a0813ae4696ca20e204e62ae90bf9d562fa20091", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-bottom-applies-to-009-ref.xht", + "/css/CSS2/normal-flow/overflow-scroll-paint-order-ref.html", "==" ] ], {} ] ], - "padding-top-applies-to-012.xht": [ - "a050ba3fcefd8adddb20f2341f460fb75705ed83", + "replaced-intrinsic-001.xht": [ + "7cbb65bf09022bb3c87b417ae6a93ba3a424b8dc", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-top-applies-to-012-ref.xht", + "/css/CSS2/normal-flow/replaced-intrinsic-001-ref.xht", "==" ] ], {} ] ], - "padding-top-applies-to-013.xht": [ - "a8296ad0b67857be9342a61a7c04d8099fc6f97d", + "replaced-intrinsic-002.xht": [ + "817a6227d38a277d010c04871ae9abea391d99e7", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-top-applies-to-013-ref.xht", + "/css/CSS2/normal-flow/replaced-intrinsic-002-ref.xht", "==" ] ], {} ] ], - "padding-top-applies-to-014.xht": [ - "4759548cfed17f10bf78326a4df57a0bf774ca45", + "replaced-intrinsic-003.xht": [ + "e68c0bebe7ce6307c96e2040a3d186b1de14f34b", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-top-applies-to-013-ref.xht", + "/css/CSS2/normal-flow/replaced-intrinsic-003-ref.xht", "==" ] ], {} ] ], - "padding-top-applies-to-015.xht": [ - "5b5c13f0f3cc2223415af02237fedd61619d131a", + "replaced-intrinsic-004.xht": [ + "ce8c0a1ababbe6fb371df77b29cca1bea08f617f", [ null, [ [ - "/css/CSS2/margin-padding-clear/margin-top-applies-to-012-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] - ] - }, - "media": { - "media-dependency-001.xht": [ - "dbef307964c6f92697b818aaf715b10dc1bf17ba", + ], + "replaced-intrinsic-005.xht": [ + "6f5db58ba88a009b25c872bff3f13ab2a0fb73d3", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/normal-flow/replaced-intrinsic-005-ref.xht", "==" ] ], {} ] ], - "media-dependency-002.xht": [ - "e63fc5c251b568b2125681ee013809e530948d09", + "resizable-iframe-paint-order.html": [ + "574df950ce6449093b317e648d0566e23a6d6716", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/normal-flow/resizable-iframe-paint-order-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 255 + ], + [ + 0, + 200 + ] + ] + ] + ] + } ] ], - "media-dependency-003.xht": [ - "d5bc9496ecb4ad272562e2b8930a4f9b5ca7ad1c", + "root-box-001.xht": [ + "2863619a50bd29a9edec38094314884b07f47bd3", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/normal-flow/root-box-001-ref.xht", "==" ] ], {} ] ], - "media-dependency-004.xht": [ - "b8b909daf066f65a428f7884281629b641cf11a4", + "table-in-inline-001.xht": [ + "1c8eb8ae3896871c58ff9bca88e587d49458db4f", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/normal-flow/table-in-inline-001-ref.xht", "==" ] ], {} ] ], - "media-dependency-005.xht": [ - "c7eea0c173177ffe2a327929778e4b205c1eceb0", + "video-paint-order.html": [ + "5c259606bec8da31d001430a9405e273328f1fb1", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/normal-flow/video-paint-order-ref.html", "==" ] ], {} ] ], - "media-dependency-006.xht": [ - "3dd7d4440df9975490e85c0e38e9d1db05f1d643", + "width-001.xht": [ + "490d07b436ffddaed8cef4ae0313dc127a021944", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "media-dependency-007.xht": [ - "3a72aa303b544fe037e651dd9e8394eab8b84c68", + "width-002.xht": [ + "27f70297fc893fefe78bdfceaf7933d4334a99ed", [ null, [ [ - "/css/CSS2/reference/no-red-filler-text-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "media-dependency-008.xht": [ - "6f150ddf774e05fcaed26ff0671268cff86104c8", + "width-003.xht": [ + "04cb1075bca2def7e0b031f00be2529aad1358f8", [ null, [ [ - "/css/CSS2/reference/no-red-filler-text-ref.xht", + "/css/CSS2/normal-flow/max-width-003-ref.xht", "==" ] ], {} ] ], - "media-dependency-009.xht": [ - "2272f81171ba77608a5e8c8ee025503254cc2f7b", + "width-004.xht": [ + "0bb4504f5a637e2feaf335cd42e143c799a1c767", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "media-dependency-010.xht": [ - "642725dd4f794e635d587f74998e993b9e114229", + "width-005.xht": [ + "6c33aad874ff55a6f4e773d2d89cefc78318314b", [ null, [ [ - "/css/CSS2/reference/no-red-filler-text-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "media-dependency-011.xht": [ - "37245e1c061967acf5724c5971be79a5ef484575", + "width-006.xht": [ + "13dc9c6daa2f459a816cb7527bcf277a40f1c24a", [ null, [ [ - "/css/CSS2/reference/no-red-filler-text-ref.xht", + "/css/CSS2/normal-flow/max-width-006-ref.xht", "==" ] ], {} ] ], - "media-dependency-012.xht": [ - "d67320f1fa693b0814fc4aaac9f12aeb7ec8e16e", + "width-007.xht": [ + "b175a933e2a0fa10ce132394e1013d4ffb56c06d", [ null, [ [ - "/css/CSS2/reference/no-red-filler-text-ref.xht", + "/css/CSS2/normal-flow/max-width-006-ref.xht", "==" ] ], {} ] ], - "media-dependency-013.xht": [ - "c64593c5775c0bc16fc8991976917a4120d47a9e", + "width-012.xht": [ + "a4d67491388c4b17e18fc86cfa61bc99d61c9514", [ null, [ [ - "/css/CSS2/reference/no-red-filler-text-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "media-dependency-014.xht": [ - "ccea54a6b0aa9bfa73fa66f812c4a63634f22651", + "width-013.xht": [ + "fe2179984d19099bb14dbaac1ca10c21d0d13925", [ null, [ [ - "/css/CSS2/reference/no-red-filler-text-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "media-dependency-015.xht": [ - "498d0ad84b1a347a9f2fab3ba1dd98728dbbd1c1", + "width-014.xht": [ + "157f67d9d117c28a7a6fe5118a5d9469997b5d0f", [ null, [ [ - "/css/CSS2/reference/no-red-filler-text-ref.xht", + "/css/CSS2/normal-flow/max-width-003-ref.xht", "==" ] ], {} ] ], - "media-dependency-016.xht": [ - "816f642aa178e989b651d1d40a79b2f8fc60f192", + "width-015.xht": [ + "481712f7f923a264d272bf7a064a1e3b62718ca1", [ null, [ [ - "/css/CSS2/reference/no-red-filler-text-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "media-dependency-017.xht": [ - "e570e5e2a6b0494c93485236a54cab0796d5d2f1", + "width-016.xht": [ + "a51692cd5e2ee399939aac7b612337be63a44a9c", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] - ] - }, - "normal-flow": { - "block-formatting-context-height-001.xht": [ - "9f0d3750d83a2ef690f1136e7e9e47b7561a2846", + ], + "width-017.xht": [ + "fc557cd39c34a90c078ef7de5d073e8115d841b4", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/normal-flow/max-width-006-ref.xht", "==" ] ], {} ] ], - "block-formatting-context-height-002.xht": [ - "329680e03a9128f5f8ce93c13d045a6b1976230b", + "width-018.xht": [ + "dd216b471349a8e6883776a8f38fc57ed4439f86", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/normal-flow/max-width-006-ref.xht", "==" ] ], {} ] ], - "block-formatting-context-height-003.xht": [ - "2dd9652b40b654b33181e52d025593ac903d27b6", + "width-023.xht": [ + "ef7537f6d454b4144f9d9f6dcdbfabcedd187ec5", [ null, [ [ - "/css/CSS2/normal-flow/block-formatting-context-height-003-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "block-formatting-contexts-001.xht": [ - "a5eeee351582834145995d78eda10c4c78d2710d", + "width-024.xht": [ + "fce85940ef2fb84b8cbbcfdf16b57def42f78bab", [ null, [ [ - "/css/CSS2/normal-flow/block-formatting-contexts-001-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "block-formatting-contexts-003.xht": [ - "618aa86469d28369737ea99530ffd76104092d74", + "width-025.xht": [ + "608d1e806d7939348dc6ef0a2621027848ff8079", [ null, [ [ - "/css/CSS2/normal-flow/block-formatting-contexts-003-ref.xht", + "/css/CSS2/normal-flow/max-width-025-ref.xht", "==" ] ], {} ] ], - "block-formatting-contexts-004.xht": [ - "3532c55bb0ab08075fd8f8e2520cfce6c92ac99e", + "width-026.xht": [ + "b6c409fb4728ecdad799685e41dda115f05d21c0", [ null, [ [ - "/css/CSS2/normal-flow/block-formatting-contexts-004-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "block-formatting-contexts-005.xht": [ - "82828503c47ed51aa708d79a1f03aad89daf29d8", + "width-027.xht": [ + "859defc6170f3a872f6608eff96c3cc1a5de08f9", [ null, [ [ - "/css/CSS2/normal-flow/block-formatting-contexts-005-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "block-formatting-contexts-006.xht": [ - "3fe17cb596860f98ece4758109c1a01e06b92ca8", + "width-028.xht": [ + "5e4f3f2c2003208470c5b09b5343f5db3c2add59", [ null, [ [ - "/css/CSS2/normal-flow/block-formatting-contexts-006-ref.xht", + "/css/CSS2/normal-flow/max-width-006-ref.xht", "==" ] ], {} ] ], - "block-formatting-contexts-007.xht": [ - "2c48a07385e10a5758f89070553e5ebd680a5762", + "width-029.xht": [ + "ade1a9e6c8d0109cf40455c30f279e71aea2cfe5", [ null, [ [ - "/css/CSS2/normal-flow/block-formatting-contexts-005-ref.xht", + "/css/CSS2/normal-flow/max-width-006-ref.xht", "==" ] ], {} ] ], - "block-formatting-contexts-008.xht": [ - "45260d4d033b1ab1c64e9748ca159a9813a23b93", + "width-034.xht": [ + "12b1c3c69635aa62fd0d4081d09d8a3333156212", [ null, [ [ - "/css/CSS2/normal-flow/block-formatting-contexts-008-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "block-formatting-contexts-009.xht": [ - "f9f3f23b5fc2a54e8a5b0fb5398a36d6ae9b16fd", + "width-035.xht": [ + "dd7a308a221cdf2d0402646618458e150b0cef45", [ null, [ [ - "/css/CSS2/normal-flow/block-formatting-contexts-008-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "block-formatting-contexts-010.xht": [ - "69a15eda5f6b3c88fb87c2ea768b14f17a13df99", + "width-036.xht": [ + "bc6521526e3b0351ba8ae1a1844553f1819ee021", [ null, [ [ - "/css/CSS2/normal-flow/block-formatting-contexts-008-ref.xht", + "/css/CSS2/normal-flow/max-width-036-ref.xht", "==" ] ], {} ] ], - "block-formatting-contexts-011.xht": [ - "ba8026e9038be40c58073384539d9c3a658d727a", + "width-037.xht": [ + "54f02b088f1da2a883a97059c59396d22f344bfe", [ null, [ [ - "/css/CSS2/normal-flow/block-formatting-contexts-011-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "block-formatting-contexts-012.xht": [ - "3e2a901de7daf3f44378b9614d89e455ee30e58b", + "width-038.xht": [ + "48c68e127f266a72cd8a3477fdf3379686bfda1b", [ null, [ [ - "/css/CSS2/normal-flow/block-formatting-contexts-008-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "block-formatting-contexts-015.xht": [ - "72b5d16f56f65c0fc69e432ba6bf7c7ca14bc44a", + "width-039.xht": [ + "57befa86743ebc11aa6cc2a1ff57e4d44d3691f1", [ null, [ [ - "/css/CSS2/normal-flow/block-formatting-contexts-015-ref.xht", + "/css/CSS2/normal-flow/max-width-006-ref.xht", "==" ] ], {} ] ], - "block-formatting-contexts-016.xht": [ - "aee530bcf15a065907fc6f865f09bf7e6888682e", + "width-040.xht": [ + "1da5c248421e06510f18e7f1d0de322f47dc3189", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/normal-flow/max-width-006-ref.xht", "==" ] ], {} ] ], - "block-in-inline-align-001.html": [ - "70abbbfd023fc2d93632caf07156ab2a14c26c3f", + "width-045.xht": [ + "0090d2f3bf810c0a3a8254e18531c7acfcecb238", [ - "css/CSS2/normal-flow/block-in-inline-align-001.html", + null, [ [ - "/css/CSS2/normal-flow/block-in-inline-align-001-ref.html", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "block-in-inline-align-justify-001.html": [ - "7899b624a7ba960f90060f4ad81206c34a23b0ed", + "width-046.xht": [ + "9b54e3c47261b74d6254bf95244577cf0451c3b4", [ - "css/CSS2/normal-flow/block-in-inline-align-justify-001.html", + null, [ [ - "/css/CSS2/normal-flow/block-in-inline-align-justify-001-ref.html", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "block-in-inline-align-last-001.html": [ - "772a742a4a7ad33c05918063b93784db3bbe4745", + "width-047.xht": [ + "cb575da4d8405bd897b32dabf503eb3c206602a7", [ - "css/CSS2/normal-flow/block-in-inline-align-last-001.html", + null, [ [ - "/css/CSS2/normal-flow/block-in-inline-align-last-001-ref.html", + "/css/CSS2/normal-flow/max-width-047-ref.xht", "==" ] ], {} ] ], - "block-in-inline-append-001.xht": [ - "08b2d897ad4868d82dc7e212b0ac2c24a3d1dfa4", + "width-048.xht": [ + "edf0656cb3616061ecee8872558b19c3e8dafbc5", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-append-001-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "block-in-inline-append-002-nosplit-ref.xht": [ - "eb95211516eabb5a9190c1f44addf376d60b2afd", + "width-049.xht": [ + "8bc9ef40ea25a26b39597340d8a49a65e145d01c", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-append-002-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "block-in-inline-append-002-ref.xht": [ - "3b5f911834b176fcdeb0de36a9c937ec63cd194e", + "width-050.xht": [ + "8e1ec3ebd34e5128db4570e7536abe31742298fd", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-append-002-nosplit-ref.xht", + "/css/CSS2/normal-flow/max-width-006-ref.xht", "==" ] ], {} ] ], - "block-in-inline-append-002.xht": [ - "671a40fc450b01ef973fde9195c63a0a001a985c", + "width-051.xht": [ + "34ae663d49be0f915904f650dbbaf55337f3b84d", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-append-002-nosplit-ref.xht", + "/css/CSS2/normal-flow/max-width-006-ref.xht", "==" ] ], {} ] ], - "block-in-inline-baseline-001.html": [ - "957eb4e0d4837b7632c28be619fbc20224d28bd0", + "width-056.xht": [ + "15a4e3195cf5256ec5a91b03547aff4b8e78e22f", [ - "css/CSS2/normal-flow/block-in-inline-baseline-001.html", + null, [ [ - "/css/CSS2/normal-flow/block-in-inline-baseline-001-ref.html", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "block-in-inline-empty-001.xht": [ - "74a4d4ef85ec839df660d606f49048d18e605c8c", + "width-057.xht": [ + "873402f9e53bfc558db24fa2b8af332d8930d084", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-empty-001-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "block-in-inline-empty-002.xht": [ - "80c8bc54c52af784e88b659cb53aa94f654dc791", + "width-058.xht": [ + "62156f0029b6a72f139c1aa54ace104982cdc167", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-empty-002-ref.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "block-in-inline-empty-003.xht": [ - "69a800021bfb8916d75aeeaa4b05ff56efacdad8", + "width-059.xht": [ + "555d270816b7effe5673c6038418f235ddc53bd5", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-empty-003-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "block-in-inline-empty-004.xht": [ - "df219f4d7c8c67b622a21b56cc748b78b666b54f", + "width-060.xht": [ + "1832dc16be06148f8cc353d6dd47dc691f95cac4", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-empty-004-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "block-in-inline-first-line-001.html": [ - "5dac0887e233e1873d6f5dd1d4c5b45e463a9201", + "width-061.xht": [ + "96b326f883ed4cb3113e028d6ed5b6ed66f80a20", [ - "css/CSS2/normal-flow/block-in-inline-first-line-001.html", + null, [ [ - "/css/CSS2/normal-flow/block-in-inline-first-line-001-ref.html", + "/css/CSS2/normal-flow/max-width-061-ref.xht", "==" ] ], {} ] ], - "block-in-inline-first-line-002.html": [ - "d0cf6071dd6f807836d5a7e7bab434dbabe88e42", + "width-062.xht": [ + "daff788b11b83e6363d7d424a6b590835bb4c8f2", [ - "css/CSS2/normal-flow/block-in-inline-first-line-002.html", + null, [ [ - "/css/CSS2/normal-flow/block-in-inline-first-line-002-ref.html", + "/css/CSS2/normal-flow/max-width-061-ref.xht", "==" ] ], {} ] ], - "block-in-inline-float-between-001.xht": [ - "d4d9e7da93510c18ce36c395d28f60058c00ba50", + "width-067.xht": [ + "4f20df1e11b8b866343aeed9b8c45ebca058e4c9", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-float-between-001-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "block-in-inline-float-in-layer-001.html": [ - "f177aca160a3735dc0d6e8e3cd9bc29734e6c17b", + "width-068.xht": [ + "5b1f7996ca3c77bf1bbfb82ed05e4f23c1ff7991", [ - "css/CSS2/normal-flow/block-in-inline-float-in-layer-001.html", + null, [ [ - "/css/CSS2/normal-flow/block-in-inline-float-in-layer-001-ref.html", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "block-in-inline-insert-001-nosplit-ref.xht": [ - "363ed9eefd444d2d8b2779f53367e3f8cccaeb9d", + "width-069.xht": [ + "d29b1f3eceb16f2fc0b819087b201a5527048c49", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-insert-001-ref.xht", + "/css/CSS2/normal-flow/max-width-069-ref.xht", "==" ] ], {} ] ], - "block-in-inline-insert-001-ref.xht": [ - "9bfa6c82e19cefb4c3132a8981bf625d2d732fc5", + "width-070.xht": [ + "42e554e8cd9ddcbaa17f7bbaef3c33749f3a3f4a", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-insert-001-nosplit-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "block-in-inline-insert-001a.xht": [ - "d837d6c61169188becf2319e23c59de4a0dae024", + "width-071.xht": [ + "9577a48ef8b38e8ebb91a94abdc62496e0e37718", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-insert-001-nosplit-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "block-in-inline-insert-001b.xht": [ - "a99adcd5e5e5141ec1ce5adbd779cd524d329de8", + "width-072.xht": [ + "08ce84318cfbf415700296e1031bf4436216bf79", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-insert-001-ref.xht", + "/css/CSS2/normal-flow/max-width-072-ref.xht", "==" ] ], {} ] ], - "block-in-inline-insert-001c.xht": [ - "148c620bbc994725db8c9049c11790494d66907b", + "width-073.xht": [ + "a7d881aed9bb29414d7e044eca32c43fc44e3e4e", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-insert-001-ref.xht", + "/css/CSS2/normal-flow/max-width-072-ref.xht", "==" ] ], {} ] ], - "block-in-inline-insert-001d.xht": [ - "52b6cff801e6e94ec288f84299bacb8a6cca274e", + "width-078.xht": [ + "353a3313a8ab52c9030a2de6f66daf8d26b74e93", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-insert-001-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "block-in-inline-insert-001e.xht": [ - "c393f84a406a359a2239420806838d4c7bd3e8e0", + "width-079.xht": [ + "d7ddc2193d058b4fef5634efd47952736b493abe", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-insert-001-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "block-in-inline-insert-001f.xht": [ - "0530b93e7ed37ceb1f5621c142bc9bcc106e5e2a", + "width-080.xht": [ + "cfb5b1fa9b7d4724cc5e40a0d28e5e764b1f1d5f", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-insert-001-ref.xht", + "/css/CSS2/normal-flow/max-width-025-ref.xht", "==" ] ], {} ] ], - "block-in-inline-insert-001g.xht": [ - "43abc1df2bad88d3e0a8983cecab4cb4474a4eb7", + "width-081.xht": [ + "18f084cd5c97f3d823bf922b047adf85900611c1", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-insert-001-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "block-in-inline-insert-001h.xht": [ - "e959da0dc08f612647d4ba3c8185df2527e5aee5", + "width-082.xht": [ + "df9ce59284b36266256513f05ed56face639222b", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-insert-001-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "block-in-inline-insert-001i.xht": [ - "6969a29f9dd055e37c28f6f3476f8d796a34fb9a", + "width-083.xht": [ + "4619538b1f158dc300e2ea74c23162f58e7601a2", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-insert-001-ref.xht", + "/css/CSS2/normal-flow/max-width-006-ref.xht", "==" ] ], {} ] ], - "block-in-inline-insert-001j.xht": [ - "32a9560a94b92a8611eb6d7dbf52dc2f5cccbe4d", + "width-084.xht": [ + "030838ff359a94ae8504bca124c090c2088b5559", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-insert-001-ref.xht", + "/css/CSS2/normal-flow/max-width-006-ref.xht", "==" ] ], {} ] ], - "block-in-inline-insert-001k.xht": [ - "7a7505afcb005994f7f7177e877d9c2726317355", + "width-089.xht": [ + "29318bdde41ba92450a679de0bb85ad3f093f780", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-insert-001-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "block-in-inline-insert-001l.xht": [ - "bd4e636ebda12c614d307b39bad0a75509821d60", + "width-090.xht": [ + "2d2570e97982b5d026a7dafc60b95057e7fbc507", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-insert-001-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "block-in-inline-insert-002-nosplit-ref.xht": [ - "f0d12c73bbe12e1c9f69f533a0ad6c615802906f", + "width-091.xht": [ + "a208c0037fef1ce63d360bfa7048f0b3f9d95c6c", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-insert-002-ref.xht", + "/css/CSS2/normal-flow/max-width-003-ref.xht", "==" ] ], {} ] ], - "block-in-inline-insert-002-ref.xht": [ - "3ada136d44934cd4f900b13bbabf9262b043ef49", + "width-092.xht": [ + "65fc8784100d5591bc6023caa750fcc04bef87a0", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-insert-002-nosplit-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "block-in-inline-insert-002a.xht": [ - "58b2262b21b4acd0f5796047eba719f9d1faf985", + "width-093.xht": [ + "d50f2f41e5daa85b5c94e36692d9c4a48040306f", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-insert-002-nosplit-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "block-in-inline-insert-002b.xht": [ - "bc18b4e9bc66243e37683fc29f0361ed2deda0fa", + "width-094.xht": [ + "adabe533de51eb9f3aac0adf4994c8d7f0127a04", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-insert-002-ref.xht", + "/css/CSS2/normal-flow/max-width-006-ref.xht", "==" ] ], {} ] ], - "block-in-inline-insert-002c.xht": [ - "5ef942439907ea70a12580cf4c851d216e85a0a8", + "width-095.xht": [ + "cfbbbd097141e8e41b8086fae91ce9e309e40c9d", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-insert-002-ref.xht", + "/css/CSS2/normal-flow/max-width-006-ref.xht", "==" ] ], {} ] ], - "block-in-inline-insert-002d.xht": [ - "dc37ff791d69a97f019ca97ad6d34e882c890207", + "width-100.xht": [ + "a33fbf25f72c3ede36c06cf8388dcec34d049de2", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-insert-002-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "block-in-inline-insert-002e.xht": [ - "a9cc9b2ac27518cb3dfcb32a8df776b2b8a543e7", + "width-101.xht": [ + "93d94799e132753b1b0b29b047c8b9e842c112b3", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-insert-002-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "block-in-inline-insert-002f.xht": [ - "770511b2257142e96af13c7ec64558b3b218a040", + "width-102.xht": [ + "55427fe3fe8da4934038a45e1f1b35ec0b33e5df", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-insert-002-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "block-in-inline-insert-002g.xht": [ - "212b88fa20cf416c931118969fac1a8446d91ded", + "width-103.xht": [ + "0fa4c022397938a5382c7cc9999536cc9e6f8b57", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-insert-002-ref.xht", + "/css/CSS2/normal-flow/width-103-ref.xht", "==" ] ], {} ] ], - "block-in-inline-insert-002h.xht": [ - "77da8cbcaaf78d1d94e5408b1f7103766eb6d310", + "width-104.xht": [ + "014d4a5be27adfc9f06b6721772ad665a0cae301", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-insert-002-ref.xht", + "/css/CSS2/normal-flow/max-width-003-ref.xht", "==" ] ], {} ] ], - "block-in-inline-insert-002i.xht": [ - "6993d3d8295c342d69318315083e4b977c340422", + "width-applies-to-001.xht": [ + "e77f82de7815c51e7edec004d059a45bb6a6caaf", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-insert-002-ref.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "block-in-inline-insert-003-nosplit-ref.xht": [ - "106faff9d108b183cf1c8e01c4297a846eca99ee", + "width-applies-to-002.xht": [ + "e4856351edd050b906d6ea2d176d73ff87a23015", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-insert-003-ref.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "block-in-inline-insert-003-ref.xht": [ - "a1a8e9945afa4c3be533bfcda0be7a2282849c76", + "width-applies-to-003.xht": [ + "1ba87769aba52af81246df9caa1effe5b5859f9e", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-insert-003-nosplit-ref.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "block-in-inline-insert-003.xht": [ - "04b9fca3b8b2ab500a406f095c6238b393edf13a", + "width-applies-to-004.xht": [ + "bb38445c63b27e938c2fe30c37cff82c6d7037f0", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-insert-003-nosplit-ref.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "block-in-inline-insert-004-nosplit-ref.xht": [ - "c5f3f468c653132108876d93ac656225e3b742df", + "width-applies-to-005.xht": [ + "7a2d437e5741185ee8fc7c40687934bd40b44fc5", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-insert-004-ref.xht", + "/css/reference/pass_if_square_96px_black.html", "==" ] ], {} ] ], - "block-in-inline-insert-004-ref.xht": [ - "eb50830f5627d4fbe3fedd3596a744136af125d6", + "width-applies-to-006.xht": [ + "325820c769b01a8b2a6a6fcc47bc83b1cf89914d", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-insert-004-nosplit-ref.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "block-in-inline-insert-004.xht": [ - "528d3c682909dab672edbfa336786caa00434ecd", + "width-applies-to-007.xht": [ + "e8f94ed2960fdb5bfa5568b071f87df314b0d6f5", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-insert-004-nosplit-ref.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "block-in-inline-insert-006-nosplit-ref.xht": [ - "0b11b5639db94cfcb92a0a26426d6e75f9adba64", + "width-applies-to-008.xht": [ + "6079c757977403ce8a4f6cb3aa4f42d35e2520c2", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-insert-006-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "block-in-inline-insert-006-ref.xht": [ - "12fa2eaaa7a511d3c230a722703c8ec8fad3fda6", + "width-applies-to-009.xht": [ + "2beb85f29a717ea26a9c991dc52e630e7ac51506", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-insert-006-nosplit-ref.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "block-in-inline-insert-006.xht": [ - "f33dd7694ec7c7012abacb546ccb151763e102ea", + "width-applies-to-012.xht": [ + "d94cd05f96cb26c3cd56ea45ad8117274227ba64", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-insert-006-nosplit-ref.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "block-in-inline-insert-007-nosplit-ref.xht": [ - "3276641f599ec6375529734ba470a376284c3634", + "width-applies-to-013.xht": [ + "7bd664ea02837e0fc26fb97150d53ee73d30cb74", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-insert-007-ref.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "block-in-inline-insert-007-ref.xht": [ - "d686af2e8e8587d522f883ab5bcc553edc8fae5b", + "width-applies-to-014.xht": [ + "46c054286600c9bdb37643e6b1850a9a82d334e6", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-insert-007-nosplit-ref.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "block-in-inline-insert-007.xht": [ - "a89f1277646c590e9b00e576dffc6e429fbd8f6f", + "width-applies-to-015.xht": [ + "d068f427cba05edd385d1d1906b493a8da9d672e", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-insert-007-nosplit-ref.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "block-in-inline-insert-008-nosplit-ref.xht": [ - "9e224250756c054a714555958707e53fa7666ec9", + "width-applies-to-016.xht": [ + "d66fecb1e6599bc7f60c4edd21f0fbc255520f21", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-insert-008-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "block-in-inline-insert-008-ref.xht": [ - "2f096eff2df746f2da22c33d6c2b3ce3b139aee1", + "width-inherit-001.xht": [ + "5b070aad872db52bac277fa4fbdd19195b99c41f", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-insert-008-nosplit-ref.xht", + "/css/CSS2/normal-flow/block-non-replaced-width-001-ref.xht", "==" ] ], {} ] ], - "block-in-inline-insert-008a.xht": [ - "9c65d80d2582030d419714e3317a96e166ef94c8", + "width-non-replaced-inline-001.xht": [ + "f89d0a7aef7283695c9d0d09e055ec66248137d9", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-insert-008-nosplit-ref.xht", + "/css/CSS2/normal-flow/width-non-replaced-inline-001-ref.xht", "==" ] ], {} ] ], - "block-in-inline-insert-008b.xht": [ - "d0d41c51260bca6ec8e232e4677d0fca47113248", + "width-percentage-001.xht": [ + "43a356a796a1eca25fbd8c8e61dd96b9e19c3140", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-insert-008-ref.xht", + "/css/CSS2/normal-flow/max-width-percentage-001-ref.xht", "==" ] ], {} ] ], - "block-in-inline-insert-008c.xht": [ - "2f31cc2c67fdacc08f27bd19e2f9f294c25be5db", + "width-percentage-002.xht": [ + "a336934a1f219f58d837e5794f5ccc0af0479559", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-insert-008-ref.xht", + "/css/CSS2/normal-flow/max-width-percentage-001-ref.xht", "==" ] ], {} ] - ], - "block-in-inline-insert-009-nosplit-ref.xht": [ - "67405f368d4a8d1938b848aa25555c82123ddea1", + ] + }, + "other-formats": { + "xml": { + "background-19.xml": [ + "d20be7eb8abb665591af87d5531aa6e7171ba833", + [ + null, + [ + [ + "/css/CSS2/other-formats/xml/background-19-alt.xml", + "==" + ] + ], + {} + ] + ] + } + }, + "positioning": { + "absolute-non-replaced-height-002.xht": [ + "d9976fa841847eed6fef18fa1530d347b324d4d2", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-insert-009-ref.xht", + "/css/CSS2/positioning/absolute-non-replaced-height-002-ref.xht", "==" ] ], {} ] ], - "block-in-inline-insert-009-ref.xht": [ - "8dd9ccdbb687f424793b77e92bfab239d37a4634", + "absolute-non-replaced-height-003.xht": [ + "523409cd5fa3ef8f134a4431547ae4135c7be4d8", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-insert-009-nosplit-ref.xht", + "/css/CSS2/positioning/absolute-non-replaced-height-003-ref.xht", "==" ] ], {} ] ], - "block-in-inline-insert-009.xht": [ - "d6f8082b4acbf7979379d854e74b9700cfeb81c7", + "absolute-non-replaced-height-004.xht": [ + "852992521306662325d2bd4710537f02145ffaa4", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-insert-009-nosplit-ref.xht", + "/css/CSS2/positioning/absolute-non-replaced-height-003-ref.xht", "==" ] ], {} ] ], - "block-in-inline-insert-010-nosplit-ref.xht": [ - "13485c5197ad3841c1eb655513afb04b796fd94a", + "absolute-non-replaced-height-005.xht": [ + "3aa09b85924769cc45647952b49646fce28b9061", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-insert-010-ref.xht", + "/css/CSS2/positioning/absolute-non-replaced-height-003-ref.xht", "==" ] ], {} ] ], - "block-in-inline-insert-010-ref.xht": [ - "00aa334ee8547f002ccb70aab0b5d3af3fcc95a4", + "absolute-non-replaced-height-006.xht": [ + "9992d47115720a352761e648ff32db400b5092d1", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-insert-010-nosplit-ref.xht", + "/css/CSS2/positioning/absolute-non-replaced-height-006-ref.xht", "==" ] ], {} ] ], - "block-in-inline-insert-010.xht": [ - "e38e70b4a77bb60cd4ec349e4ec08c1cc21ae377", + "absolute-non-replaced-height-007.xht": [ + "7403f50e50115a6d819363a640de6efe7f8ef655", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-insert-010-nosplit-ref.xht", + "/css/CSS2/positioning/absolute-non-replaced-height-007-ref.xht", "==" ] ], {} ] ], - "block-in-inline-insert-011-nosplit-ref.xht": [ - "0e077146ed9e6d32c1ec8b3f1cc25565065d22d5", + "absolute-non-replaced-height-008.xht": [ + "22f8598a493489c670a28801af5fffde995698d3", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-insert-011-ref.xht", + "/css/CSS2/positioning/absolute-non-replaced-height-008-ref.xht", "==" ] ], {} ] ], - "block-in-inline-insert-011-ref.xht": [ - "0d93bd1dc3b0e885707a2116c6328c7db0b41d66", + "absolute-non-replaced-height-009.xht": [ + "0fd5ac83e87e9c8534398b062f085b883ededb35", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-insert-011-nosplit-ref.xht", + "/css/CSS2/positioning/absolute-non-replaced-height-009-ref.xht", "==" ] ], {} ] ], - "block-in-inline-insert-011.xht": [ - "b1fdc72f41c594471e07ec860d3d38ecf959d209", + "absolute-non-replaced-height-010.xht": [ + "1a6b79770431dc997ac467057b09a29a974e38cd", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-insert-011-nosplit-ref.xht", + "/css/CSS2/positioning/absolute-non-replaced-height-003-ref.xht", "==" ] ], {} ] ], - "block-in-inline-insert-012-nosplit-ref.xht": [ - "8e00bc0600d24a55264f92cff8c171a447f58c02", + "absolute-non-replaced-height-011.xht": [ + "fa9a0db666a2647675dc2f8429cda28b05587899", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-insert-012-ref.xht", + "/css/CSS2/positioning/absolute-non-replaced-height-003-ref.xht", "==" ] ], {} ] ], - "block-in-inline-insert-012-ref.xht": [ - "6ea1a9c4bd19251a769eb761590b198656a49b01", + "absolute-non-replaced-height-012.xht": [ + "95d5566b9f89b94c3b90cc904b45f1013355431c", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-insert-012-nosplit-ref.xht", + "/css/CSS2/positioning/absolute-non-replaced-height-003-ref.xht", "==" ] ], {} ] ], - "block-in-inline-insert-012.xht": [ - "ba48ed576f6aef10ab58f2d753de058b9d4f41c9", + "absolute-non-replaced-height-013.html": [ + "46929f360a0e6254ab7904937075146fed451fbf", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-insert-012-nosplit-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "block-in-inline-insert-013-nosplit-ref.xht": [ - "f36bf1ba1b6c8c5d20c672d6f5ec37379a69c2aa", + "absolute-non-replaced-max-001.html": [ + "4b208c5831e1b36a3c503129562175457ef41c0b", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-insert-013-ref.xht", + "/css/CSS2/positioning/absolute-non-replaced-max-001-ref.html", "==" ] ], {} ] ], - "block-in-inline-insert-013-ref.xht": [ - "8e08d97d81aaedb7854df977470a4b5b3d1cb04f", + "absolute-non-replaced-max-height-002.xht": [ + "7637068a9c4a2cc584acfa329d5aabb09e7101ab", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-insert-013-nosplit-ref.xht", + "/css/CSS2/positioning/absolute-non-replaced-max-height-002-ref.xht", "==" ] ], {} ] ], - "block-in-inline-insert-013.xht": [ - "d23a8e8ce41db157b76e2d8de8fa628449cd45c9", + "absolute-non-replaced-max-height-003.xht": [ + "edbb0127bf4d4bfb9e0f4d1d20f9b929b3dca5b4", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-insert-013-nosplit-ref.xht", + "/css/CSS2/positioning/absolute-non-replaced-max-height-003-ref.xht", "==" ] ], {} ] ], - "block-in-inline-insert-014-nosplit-ref.xht": [ - "2ae5d104ee4c638ac10dabb0ad81ec2e262ff24a", + "absolute-non-replaced-max-height-004.xht": [ + "09f0f44c600efd75aa6108657ebd11af01dacf4a", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-insert-014-ref.xht", + "/css/CSS2/positioning/absolute-non-replaced-height-003-ref.xht", "==" ] ], {} ] ], - "block-in-inline-insert-014-ref.xht": [ - "fefbd03ad5bcba7c611fa9b250690069299db995", + "absolute-non-replaced-max-height-005.xht": [ + "6c1590a86a5279ec3eddd9af4132eb5c5ee8f441", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-insert-014-nosplit-ref.xht", + "/css/CSS2/positioning/absolute-non-replaced-height-003-ref.xht", "==" ] ], {} ] ], - "block-in-inline-insert-014.xht": [ - "4d170b976b8d9c81d1a92699f3b2e90116d47075", + "absolute-non-replaced-max-height-006.xht": [ + "4c6767afaae8333317563af31714a9a2fcbdc2b7", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-insert-014-nosplit-ref.xht", + "/css/CSS2/positioning/absolute-non-replaced-height-003-ref.xht", "==" ] ], {} ] ], - "block-in-inline-insert-015-nosplit-ref.xht": [ - "a1dee0d67fe2a7bb33aa8938e40c3553204088e2", + "absolute-non-replaced-max-height-007.xht": [ + "71f3861086e749e27be5a60c5eb9a53d33739c93", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-insert-015-ref.xht", + "/css/CSS2/positioning/absolute-non-replaced-max-height-007-ref.xht", "==" ] ], {} ] ], - "block-in-inline-insert-015-ref.xht": [ - "a74180bdefe53f23b06a09bb8648c59bd267e8a3", + "absolute-non-replaced-max-height-008.xht": [ + "78b1c7f6f79d2a2af917f84f0101d535b51e557f", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-insert-015-nosplit-ref.xht", + "/css/CSS2/positioning/absolute-non-replaced-max-height-008-ref.xht", "==" ] ], {} ] ], - "block-in-inline-insert-015.xht": [ - "f6a13347263e7071864befde33533c749e69f646", + "absolute-non-replaced-max-height-009.xht": [ + "47e601142706336a6fe8fdaa743e50d8c4745061", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-insert-015-nosplit-ref.xht", + "/css/CSS2/positioning/absolute-non-replaced-max-height-009-ref.xht", "==" ] ], {} ] ], - "block-in-inline-insert-016-nosplit-ref.xht": [ - "fa9ffee0adf0024983d73c18367a78e32c7d9aba", + "absolute-non-replaced-max-height-010.xht": [ + "4585b7f0de842691a2a815c224bb10866f97af7f", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-insert-016-ref.xht", + "/css/CSS2/positioning/absolute-non-replaced-height-003-ref.xht", "==" ] ], {} ] ], - "block-in-inline-insert-016-ref.xht": [ - "140b45c00a4d3f3f746b1bf83ca14c7a5ad10735", + "absolute-non-replaced-max-height-011.xht": [ + "6fd93c8c1151428071d232d4f76feb798c248cb3", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-insert-016-nosplit-ref.xht", + "/css/CSS2/positioning/absolute-non-replaced-max-height-003-ref.xht", "==" ] ], {} ] ], - "block-in-inline-insert-016a.xht": [ - "730f11612b5f7a21fd804fd855f4b1b23acba439", + "absolute-non-replaced-max-height-012.xht": [ + "710a366d827fecd07dc8aeda336bb2655832102e", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-insert-016-nosplit-ref.xht", + "/css/CSS2/positioning/absolute-non-replaced-height-003-ref.xht", "==" ] ], {} ] ], - "block-in-inline-insert-016b.xht": [ - "a438c1f275ccfe0d19bb5b71c4184477c7345e58", + "absolute-non-replaced-min-001.html": [ + "0e6d17661e39beb872f886eba06acf47be9a931c", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-insert-016-ref.xht", + "/css/CSS2/positioning/absolute-non-replaced-min-max-001-ref.html", "==" ] ], {} ] ], - "block-in-inline-insert-017.xht": [ - "5390cce5f999c28d827cb4d8dac41f0c0d157793", + "absolute-non-replaced-min-max-001.html": [ + "2e240b7509adc3bd8cb9cae67165e0dc42296e07", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-insert-017-ref.xht", + "/css/CSS2/positioning/absolute-non-replaced-min-max-001-ref.html", "==" ] ], {} ] ], - "block-in-inline-margins-001a.xht": [ - "a3321753d9a560ba5e6d867080881d6a9d4f6a07", + "absolute-non-replaced-width-001.xht": [ + "6d2b8a33a0db793d9e52e94b33aa1c95884a2dbe", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-margins-001-ref.xht", + "/css/CSS2/positioning/absolute-non-replaced-height-002-ref.xht", "==" ] ], {} ] ], - "block-in-inline-margins-001b.xht": [ - "d1c5d20a8abb2b42cec96d9db54a73fb67cf6cc5", + "absolute-non-replaced-width-002.xht": [ + "621d4a1b672f38f3261ccff2b327405af9cafc08", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-margins-001-ref.xht", + "/css/CSS2/positioning/absolute-non-replaced-width-002-ref.xht", "==" ] ], {} ] ], - "block-in-inline-margins-002a.xht": [ - "40f612d8d2e4063feb53080041d75adff87531ba", + "absolute-non-replaced-width-003.xht": [ + "587eaa4601c497ebd1c4abf938456037de097071", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-margins-002-ref.xht", + "/css/CSS2/positioning/absolute-non-replaced-width-003-ref.xht", "==" ] ], {} ] ], - "block-in-inline-margins-002b.xht": [ - "8e2030a6eea1704ab24336de2505f50d92a6a526", + "absolute-non-replaced-width-004.xht": [ + "2f2b90708e8b709b4e2f1d5f820a9e4f78b9207e", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-margins-002-ref.xht", + "/css/CSS2/positioning/absolute-non-replaced-width-002-ref.xht", "==" ] ], {} ] ], - "block-in-inline-margins-003.html": [ - "576e0a8bed0d245c0511021549b21b9e96faf952", + "absolute-non-replaced-width-005.xht": [ + "d2d3ca9d06d443d142afc13df6c31862b0630c6f", [ - "css/CSS2/normal-flow/block-in-inline-margins-003.html", + null, [ [ - "/css/CSS2/normal-flow/block-in-inline-margins-003-ref.html", + "/css/CSS2/positioning/absolute-non-replaced-height-002-ref.xht", "==" ] ], {} ] ], - "block-in-inline-margins-004.html": [ - "81e1f83fba85ef3a6a19647033f7ca2f46af645d", + "absolute-non-replaced-width-006.xht": [ + "e1033fff6808172d2831c5aca07fa5202fe93166", [ - "css/CSS2/normal-flow/block-in-inline-margins-004.html", + null, [ [ - "/css/CSS2/normal-flow/block-in-inline-margins-004-ref.html", + "/css/CSS2/positioning/absolute-non-replaced-width-002-ref.xht", "==" ] ], {} ] ], - "block-in-inline-nested-001.xht": [ - "4cbd0e189df9db1cd676490f9ce61f6ccd1e634d", + "absolute-non-replaced-width-007.xht": [ + "db1678b147bb26d6b33adf8fd659998fe8c26a61", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-nested-001-ref.xht", + "/css/CSS2/positioning/absolute-non-replaced-height-002-ref.xht", "==" ] ], {} ] ], - "block-in-inline-nested-002.xht": [ - "506c2f37951fc3a86784eadcd136407899e55119", + "absolute-non-replaced-width-008.xht": [ + "e5baff3022aa11085a06cf491e94b0be944d61ca", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-nested-002-ref.xht", + "/css/CSS2/positioning/absolute-non-replaced-width-008-ref.xht", "==" ] ], {} ] ], - "block-in-inline-percents-001.xht": [ - "1823424b92a5c76164e7a43733a30e729bfe8766", + "absolute-non-replaced-width-010.xht": [ + "29d9ad60cf7b9f51c68c138d7e6ef31e32d4bf93", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-percents-001-ref.xht", + "/css/CSS2/positioning/absolute-non-replaced-height-002-ref.xht", "==" ] ], {} ] ], - "block-in-inline-remove-000.xht": [ - "17c47cda8c77fa0d63301ac213cdbd9e340dd5c8", + "absolute-non-replaced-width-011.xht": [ + "3370fb6d8096077cd85aa5e080131ccfa233e645", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-remove-000-ref.xht", + "/css/CSS2/positioning/absolute-non-replaced-height-002-ref.xht", "==" ] ], {} ] ], - "block-in-inline-remove-001-nosplit-ref.xht": [ - "0215ebbec4c4d804896969f03fac7950bd9ba4e7", + "absolute-non-replaced-width-012.xht": [ + "fd125e73f05d302cee23d8f6232939b8aac8556d", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-remove-001-ref.xht", + "/css/CSS2/positioning/absolute-non-replaced-width-002-ref.xht", "==" ] ], {} ] ], - "block-in-inline-remove-001-ref.xht": [ - "5d667f3dcb089d9c6266842d9ffc80b6536f0e36", + "absolute-non-replaced-width-013.xht": [ + "288c36569f4b89061115d2ee9d5fb36be3ffca48", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-remove-001-nosplit-ref.xht", + "/css/CSS2/positioning/absolute-non-replaced-width-002-ref.xht", "==" ] ], {} ] ], - "block-in-inline-remove-001.xht": [ - "30a998907e26c6d0a9a92d53b7a6a33fb724c91d", + "absolute-non-replaced-width-014.xht": [ + "da223eb8d73e85a2fc4e455cdf8e637d1df44338", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-remove-001-nosplit-ref.xht", + "/css/CSS2/positioning/absolute-non-replaced-height-002-ref.xht", "==" ] ], {} ] ], - "block-in-inline-remove-002.xht": [ - "d0df7d612eaf30454e53b4ca5c28cc1ac8f18a8e", + "absolute-non-replaced-width-015.xht": [ + "2d99f95235ae3378bd730ba8c4fe8b8cea58dde2", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-remove-002-ref.xht", + "/css/CSS2/positioning/absolute-non-replaced-width-015-ref.xht", "==" ] ], {} ] ], - "block-in-inline-remove-003-nosplit-ref.xht": [ - "b4fbfec00a9157912da120f3359d91f788fe1ec7", + "absolute-non-replaced-width-016.xht": [ + "5fccaf248d903829b149d150cb7fdcf7162f3a62", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-remove-003-ref.xht", + "/css/CSS2/positioning/absolute-non-replaced-width-002-ref.xht", "==" ] ], {} ] ], - "block-in-inline-remove-003-ref.xht": [ - "60f9427389d70961ab7f3e207c16a93588fb6c7a", + "absolute-non-replaced-width-017.xht": [ + "3b12169cb0d1c8ff34e8e0272f82dd299aad7fe7", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-remove-003-nosplit-ref.xht", + "/css/CSS2/positioning/absolute-non-replaced-width-017-ref.xht", "==" ] ], {} ] ], - "block-in-inline-remove-003.xht": [ - "94ccc760f20ebd8894f56bbedd0619c9fb45b765", + "absolute-non-replaced-width-018.xht": [ + "ed9fa5673a95ad9b0343b908d95be63c8a40e081", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-remove-003-nosplit-ref.xht", + "/css/CSS2/positioning/absolute-non-replaced-width-017-ref.xht", "==" ] ], {} ] ], - "block-in-inline-remove-004-nosplit-ref.xht": [ - "a008a8a1b39b24a74cc14a5389daf0044cae5712", + "absolute-non-replaced-width-019.xht": [ + "c4511786e80ab0faedce8880351c3d350d58d66a", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-remove-004-ref.xht", + "/css/CSS2/positioning/absolute-non-replaced-width-017-ref.xht", "==" ] ], {} ] ], - "block-in-inline-remove-004-ref.xht": [ - "ef2ee0c3290631297fd81cf8e947e803df31ddba", + "absolute-non-replaced-width-020.xht": [ + "7c983e528d21bdd64d7a202c02977891e36de5c9", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-remove-004-nosplit-ref.xht", + "/css/CSS2/positioning/absolute-non-replaced-width-017-ref.xht", "==" ] ], {} ] ], - "block-in-inline-remove-004.xht": [ - "91cad56e68f854540af14bfd5321f0445de84fd4", + "absolute-non-replaced-width-021.xht": [ + "47f587f72d8c954bbcc76d39d61ee841dad92e41", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-remove-004-nosplit-ref.xht", + "/css/CSS2/positioning/absolute-non-replaced-width-021-ref.xht", "==" ] ], {} ] ], - "block-in-inline-remove-005-nosplit-ref.xht": [ - "00ae0f278ff1d6bf53d3a3879d4e8a3e9f3e00b4", + "absolute-non-replaced-width-022.xht": [ + "7994d698ac2da671fff875f338febc881993017c", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-remove-005-ref.xht", + "/css/CSS2/positioning/absolute-non-replaced-width-021-ref.xht", "==" ] ], {} ] ], - "block-in-inline-remove-005-ref.xht": [ - "1ab2d25ff4577b6982a54ca67db919729144e3ca", + "absolute-non-replaced-width-023.xht": [ + "bfd462a9b703b1810847c5123d6b11f72fb2c3a2", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-remove-005-nosplit-ref.xht", + "/css/CSS2/positioning/absolute-non-replaced-width-021-ref.xht", "==" ] ], {} ] ], - "block-in-inline-remove-005.xht": [ - "58944d2ebc9ca49844b62a1aa1523bff3455d487", + "absolute-non-replaced-width-024.xht": [ + "756041f5ceab37caad2d4cc46ca1ac3be88156be", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-remove-005-nosplit-ref.xht", + "/css/CSS2/positioning/absolute-non-replaced-width-021-ref.xht", "==" ] ], {} ] ], - "block-in-inline-remove-006-nosplit-ref.xht": [ - "6379b1619071880da8ec0fa9c841bf08fbfce968", + "absolute-non-replaced-width-025.xht": [ + "88967677945edde308b081ca0d46126f169c9522", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-remove-006-ref.xht", + "/css/CSS2/positioning/absolute-non-replaced-width-025-ref.xht", "==" ] ], {} ] ], - "block-in-inline-remove-006-ref.xht": [ - "be57e10553a924f0cc2ece843d655dafeaaa3504", + "absolute-non-replaced-width-026.xht": [ + "e439a0210daaac71a2ee53dbcf4157d5fa6a91ab", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-remove-006-nosplit-ref.xht", + "/css/CSS2/positioning/absolute-non-replaced-width-026-ref.xht", "==" ] ], {} ] ], - "block-in-inline-remove-006.xht": [ - "245dbfbb78e7121e3fc70cfaae4ef57031be5bc1", + "absolute-non-replaced-width-027.xht": [ + "969da955af568fb5e40721fb13716e00cc40ed52", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-remove-006-nosplit-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "block-in-inline-whitespace-001a.xht": [ - "ef8094e7a6c0e3f7e09f9dc564a503b7140ad005", + "absolute-replaced-height-001.xht": [ + "e3e10640c4737ca605c132da481bd6d00697a01a", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-whitespace-001-ref.xht", + "/css/CSS2/positioning/absolute-replaced-height-001-ref.xht", "==" ] ], {} ] ], - "block-in-inline-whitespace-001b.xht": [ - "e6237f714d83f53b54d22163be5a287b0d0c02e4", + "absolute-replaced-height-002.xht": [ + "79d99d2995959d0640e0e582424f3c3441c184c4", [ null, [ [ - "/css/CSS2/normal-flow/block-in-inline-whitespace-001-ref.xht", + "/css/CSS2/positioning/absolute-replaced-height-002-ref.xht", "==" ] ], {} ] ], - "block-non-replaced-height-001.xht": [ - "e25e5e55f415e46fdf2c19d1226b115c94c8b854", + "absolute-replaced-height-003.xht": [ + "93e8c2c5c6e6ed7c2376b3348a2b896926fa47cd", [ null, [ [ - "/css/CSS2/normal-flow/block-non-replaced-height-001-ref.xht", + "/css/CSS2/positioning/absolute-non-replaced-height-007-ref.xht", "==" ] ], {} ] ], - "block-non-replaced-height-005.xht": [ - "274669a6a88a9ff2a582c3f40373c1cf5e340fe8", - [ + "absolute-replaced-height-004.xht": [ + "6dddc31c9e41fa4f1a79529a373b51ad06890880", + [ null, [ [ - "/css/CSS2/normal-flow/block-non-replaced-height-005-ref.xht", + "/css/CSS2/positioning/absolute-replaced-height-004-ref.xht", "==" ] ], {} ] ], - "block-non-replaced-height-011.xht": [ - "8c54083dcbe66623f56fc68a6059e338cfcc5f6f", + "absolute-replaced-height-005.xht": [ + "4a6b2cf4223386215b019473737a79edea008f17", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/positioning/absolute-replaced-height-005-ref.xht", "==" ] ], {} ] ], - "block-non-replaced-height-013.xht": [ - "6bd7f9b753f2690cc41845a9151c3c649a4b8cc2", + "absolute-replaced-height-006.xht": [ + "dbf186c474904cad7d12497955a5e0390592f7cb", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/positioning/absolute-replaced-height-006-ref.xht", "==" ] ], {} ] ], - "block-non-replaced-width-001.xht": [ - "de5901c70aaa6cc5ef82b8f46114cc7b7ed47d05", + "absolute-replaced-height-007.xht": [ + "cae9efd6461be8d7ebc63e0d9c8ac73a03321dc0", [ null, [ [ - "/css/CSS2/normal-flow/block-non-replaced-width-001-ref.xht", + "/css/CSS2/positioning/absolute-replaced-height-007-ref.xht", "==" ] ], {} ] ], - "block-non-replaced-width-003.xht": [ - "c6e3fce31bf2e634827b403cc4e0e42108981ccc", + "absolute-replaced-height-008.xht": [ + "886ecec638e5eb781b8815b78e5a84904b887e2b", [ null, [ [ - "/css/CSS2/normal-flow/block-non-replaced-width-001-ref.xht", + "/css/CSS2/positioning/absolute-replaced-height-008-ref.xht", "==" ] ], {} ] ], - "block-non-replaced-width-004.xht": [ - "b754b56f686a33081daa405dcb758e59f071e974", + "absolute-replaced-height-009.xht": [ + "72f2df7e11fc5f7a909918abd25c2d05b143e5d4", [ null, [ [ - "/css/CSS2/normal-flow/block-non-replaced-width-004-ref.xht", + "/css/CSS2/positioning/absolute-replaced-height-008-ref.xht", "==" ] ], {} ] ], - "block-non-replaced-width-005.xht": [ - "94e30af49432242652b49ad7caed57e5f0b33bb3", + "absolute-replaced-height-010.xht": [ + "34901665f41cadd4da6b832af6ff75ea7bf398da", [ null, [ [ - "/css/CSS2/normal-flow/block-non-replaced-width-005-ref.xht", + "/css/CSS2/positioning/absolute-replaced-height-010-ref.xht", "==" ] ], {} ] ], - "block-non-replaced-width-006.xht": [ - "2c7d95437ce9281619e643f75d0c08ae21a8f122", + "absolute-replaced-height-011.xht": [ + "302ca8351401f78309733a077df38524e345a0fb", [ null, [ [ - "/css/CSS2/normal-flow/block-non-replaced-width-005-ref.xht", + "/css/CSS2/positioning/absolute-replaced-height-011-ref.xht", "==" ] ], {} ] ], - "block-non-replaced-width-007.xht": [ - "7c11940645fdcb62eb71a85d8de51a7fd62ed8e5", + "absolute-replaced-height-012.xht": [ + "82bea6f0ed54e1d0b208b9919d6d92210e17d052", [ null, [ [ - "/css/CSS2/normal-flow/block-non-replaced-width-007-ref.xht", + "/css/CSS2/positioning/absolute-replaced-height-012-ref.xht", "==" ] ], {} ] ], - "block-replaced-height-001.xht": [ - "fad608d0e34e350d5ce5f85224e2ddd614af429f", + "absolute-replaced-height-013.xht": [ + "3d186de8606a61661ef27ee101b5c76b086c56d1", [ null, [ [ - "/css/CSS2/normal-flow/block-replaced-height-001-ref.xht", + "/css/CSS2/positioning/absolute-replaced-height-013-ref.xht", "==" ] ], {} ] ], - "block-replaced-height-002.xht": [ - "3bfbef715ad74b3e2cf2ff984589c9db0f88703b", + "absolute-replaced-height-014.xht": [ + "752e7de66bb8c963d3c1b4c5486370066076f8bc", [ null, [ [ - "/css/CSS2/normal-flow/block-replaced-height-002-ref.xht", + "/css/CSS2/positioning/absolute-replaced-height-014-ref.xht", "==" ] ], {} ] ], - "block-replaced-height-004.xht": [ - "2d423b15f1b50c5aaf0411b65227722dec331074", + "absolute-replaced-height-016.xht": [ + "d97a7cabf83ebc751f6173a3ccb995ac76b5fb79", [ null, [ [ - "/css/CSS2/normal-flow/block-replaced-height-004-ref.xht", + "/css/CSS2/positioning/absolute-replaced-height-008-ref.xht", "==" ] ], {} ] ], - "block-replaced-height-005.xht": [ - "156ca650e4d3f9330f47cd3a02975b8fc5403a43", + "absolute-replaced-height-017.xht": [ + "80b4e14299a475c04bf018f84235a45ab7a8217a", [ null, [ [ - "/css/CSS2/normal-flow/block-replaced-height-005-ref.xht", + "/css/CSS2/positioning/absolute-replaced-height-010-ref.xht", "==" ] ], {} ] ], - "block-replaced-height-006.xht": [ - "1c6d265a89d0e7ea1b34cf5822f57bfc077c0289", + "absolute-replaced-height-018.xht": [ + "f0e763fd82b6bce721fa33117653c229dc6d6250", [ null, [ [ - "/css/CSS2/normal-flow/block-replaced-height-006-ref.xht", + "/css/CSS2/positioning/absolute-replaced-height-011-ref.xht", "==" ] ], {} ] ], - "block-replaced-height-007.xht": [ - "76091766bfa9ba9e99e8519d60adaa91d48c781a", + "absolute-replaced-height-019.xht": [ + "2aeb5f0fc3b6945714646316532215a3fd879f8b", [ null, [ [ - "/css/CSS2/normal-flow/block-replaced-height-004-ref.xht", + "/css/CSS2/positioning/absolute-replaced-height-012-ref.xht", "==" ] ], {} ] ], - "block-replaced-width-002.xht": [ - "ce25bf90ad6d3a89a8e12e2166ea698b87796990", + "absolute-replaced-height-020.xht": [ + "c5d348db3578f9e3a97a5890431a348aa469a304", [ null, [ [ - "/css/CSS2/normal-flow/block-replaced-width-002-ref.xht", + "/css/CSS2/positioning/absolute-replaced-height-013-ref.xht", "==" ] ], {} ] ], - "block-replaced-width-006.xht": [ - "049fa7993501e1125554a7072043546e9442a40b", + "absolute-replaced-height-021.xht": [ + "111f9593a1ff50d3b5a77a12cbf228eacc7c5e85", [ null, [ [ - "/css/CSS2/normal-flow/block-replaced-width-006-ref.xht", + "/css/CSS2/positioning/absolute-replaced-height-014-ref.xht", "==" ] ], {} ] ], - "blocks-011.xht": [ - "bd86d863624f1379d1e1d4ebf72f51aceaa1f133", + "absolute-replaced-height-022.xht": [ + "3acc433fa76f66dce97a3be98b6af59d349a8683", [ null, [ [ - "/css/CSS2/normal-flow/blocks-011-ref.xht", + "/css/CSS2/positioning/absolute-replaced-height-008-ref.xht", "==" ] ], {} ] ], - "blocks-012.xht": [ - "7c2751ca637726b2723f3240b89e941c835c6cf3", + "absolute-replaced-height-023.xht": [ + "fd0b7c425aa209854b24be22346d308a23cbabde", [ null, [ [ - "/css/CSS2/normal-flow/blocks-011-ref.xht", + "/css/CSS2/positioning/absolute-replaced-height-008-ref.xht", "==" ] ], {} ] ], - "blocks-013.xht": [ - "90b0b70604ab0abf9b511ba34a9cd89a8436a43b", + "absolute-replaced-height-024.xht": [ + "a2a5ca3e365bd003f8eb9468acff6226b6ebd696", [ null, [ [ - "/css/CSS2/normal-flow/blocks-013-ref.xht", + "/css/CSS2/positioning/absolute-replaced-height-010-ref.xht", "==" ] ], {} ] ], - "blocks-014.xht": [ - "dc06f52bd3229d5719a686c8c7d136f94ae163d8", + "absolute-replaced-height-025.xht": [ + "d99a08109b9a6b22dc8cebe7e18310e9ec374bac", [ null, [ [ - "/css/CSS2/normal-flow/blocks-014-ref.xht", + "/css/CSS2/positioning/absolute-replaced-height-011-ref.xht", "==" ] ], {} ] ], - "blocks-015.xht": [ - "37ad205b7c5c6c792fe578a2141159e70dc445cb", + "absolute-replaced-height-026.xht": [ + "acb65b7dcd46f92d7fb333c3a5b8837fd8b1bad8", [ null, [ [ - "/css/CSS2/normal-flow/blocks-014-ref.xht", + "/css/CSS2/positioning/absolute-replaced-height-012-ref.xht", "==" ] ], {} ] ], - "blocks-016.xht": [ - "e10656972df8cc43334c1917f30a70818001e887", + "absolute-replaced-height-027.xht": [ + "7442f85b0a03b69ef9b3feb8aa71df44738078cb", [ null, [ [ - "/css/CSS2/normal-flow/blocks-013-ref.xht", + "/css/CSS2/positioning/absolute-replaced-height-013-ref.xht", "==" ] ], {} ] ], - "blocks-017.xht": [ - "f6819f372b849d6272c1e99b3cda30f6279ca14e", + "absolute-replaced-height-028.xht": [ + "3c558b8a1088972c66f62513c573032a68a1acf5", [ null, [ [ - "/css/CSS2/tables/reference/table-margin-004-ref.xht", + "/css/CSS2/positioning/absolute-replaced-height-014-ref.xht", "==" ] ], {} ] ], - "blocks-018.xht": [ - "1c30eee1b7beaabc0164b89bb4dc2126250a2da0", + "absolute-replaced-height-029.xht": [ + "0c0a550c1beb6b857aa868f82fc9427499caf71b", [ null, [ [ - "/css/CSS2/normal-flow/blocks-018-ref.xht", + "/css/CSS2/positioning/absolute-replaced-height-008-ref.xht", "==" ] ], {} ] ], - "blocks-019.xht": [ - "f435219c25ad84b9a9625786988158d44b34156d", + "absolute-replaced-height-030.xht": [ + "4ca79774212dc1dcc747dcecbc8b77dbe5ffbd86", [ null, [ [ - "/css/CSS2/normal-flow/blocks-019-ref.xht", + "/css/CSS2/positioning/absolute-replaced-height-008-ref.xht", "==" ] ], {} ] ], - "blocks-020.xht": [ - "d6b635e018869a6b713ca74532e49a7130e321c7", + "absolute-replaced-height-031.xht": [ + "7931b8da216c827e006c6f3b46088e526759a840", [ null, [ [ - "/css/CSS2/normal-flow/blocks-020-ref.xht", + "/css/CSS2/positioning/absolute-replaced-height-010-ref.xht", "==" ] ], {} ] ], - "blocks-021.xht": [ - "e122cd86fb30a740a37eb82fce2b2a5743ee9c48", + "absolute-replaced-height-032.xht": [ + "eea4172057fb5b5ce64cd10ce2b28a187c151c72", [ null, [ [ - "/css/CSS2/normal-flow/blocks-020-ref.xht", + "/css/CSS2/positioning/absolute-replaced-height-011-ref.xht", "==" ] ], {} ] ], - "blocks-022.xht": [ - "4d29624feb4aa439fac5d9c8152abed9d773ad2d", + "absolute-replaced-height-033.xht": [ + "836f75dd4d93baccf69b9f0c67e1fe2e46f5372a", [ null, [ [ - "/css/CSS2/normal-flow/blocks-020-ref.xht", + "/css/CSS2/positioning/absolute-replaced-height-012-ref.xht", "==" ] ], {} ] ], - "blocks-025.xht": [ - "d207317b99e09b1dc4c50d785945c829621ae002", + "absolute-replaced-height-034.xht": [ + "47dec54f65cf44f719875f00ed94206337b18429", [ null, [ [ - "/css/CSS2/normal-flow/blocks-025-ref.xht", + "/css/CSS2/positioning/absolute-replaced-height-013-ref.xht", "==" ] ], {} ] ], - "blocks-026.xht": [ - "0b626bb6f898581a6cd65964f93c5ece1b8ed9e5", + "absolute-replaced-height-035.xht": [ + "447606f43272a150cb501fb3cf9260a0d8a964d7", [ null, [ [ - "/css/CSS2/normal-flow/blocks-026-ref.xht", + "/css/CSS2/positioning/absolute-replaced-height-014-ref.xht", "==" ] ], {} ] ], - "canvas-paint-order.html": [ - "64b3e3f014bbd52fd425bdb71873fa4cc4f7b96f", + "absolute-replaced-height-036.xht": [ + "96b53e6d641e4503b1bb536dc450ff5106c49593", [ null, [ [ - "/css/CSS2/normal-flow/canvas-paint-order-ref.html", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "child-bottom-margin-in-unresolvable-percentage-height.html": [ - "6c075f7ac779ef735705aa06e4418a863c2ac1d7", + "absolute-replaced-width-001.xht": [ + "0b49129c372eedfebd6a5bb8cd35c7cef3a504a9", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/positioning/absolute-replaced-width-001-ref.xht", "==" ] ], {} ] ], - "cross-domain-iframe-paint-order.sub.html": [ - "198d16ca0673a160fe70311321ab7e6bed1b3a52", + "absolute-replaced-width-002.xht": [ + "23068fbce1bb93dad797ff15d173eb0a10614190", [ null, [ [ - "/css/CSS2/normal-flow/cross-domain-iframe-paint-order-ref.html", + "/css/CSS2/positioning/absolute-replaced-width-002-ref.xht", "==" ] ], {} ] ], - "dynamic-percentage-height.html": [ - "2e995963edc200aa857663e4816d0f7807e2969b", + "absolute-replaced-width-003.xht": [ + "5e1d5a7dccd8736089e79f71f87add5b3412227a", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/CSS2/positioning/absolute-replaced-width-003-ref.xht", "==" ] ], {} ] ], - "float-percentage-resolution-quirks-mode.html": [ - "a3794579f0ea242f9e7faaffcc16de5a3a69cf7c", + "absolute-replaced-width-003a.xht": [ + "4bc367b4a8733d87e2465d2a7c3d7faf806ea8b8", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/CSS2/positioning/absolute-replaced-width-003a-ref.xht", "==" ] ], {} ] ], - "height-001.xht": [ - "bfe582487aea119600e70bc942f8c24fb1fa62d5", + "absolute-replaced-width-003b.xht": [ + "7209ff2eb8b2139b73ad42c4bb42febbce796baf", [ null, [ [ - "/css/CSS2/normal-flow/height-001-ref.xht", + "/css/CSS2/positioning/absolute-replaced-width-003b-ref.xht", "==" ] ], {} ] ], - "height-002.xht": [ - "6859e7b4b45b122e97e6701b97a0debc649aa00f", + "absolute-replaced-width-003c.xht": [ + "c84cb1629976f54307d8d36350963886beae69fb", [ null, [ [ - "/css/CSS2/normal-flow/height-001-ref.xht", + "/css/CSS2/positioning/absolute-replaced-width-003c-ref.xht", "==" ] ], {} ] ], - "height-003.xht": [ - "9de5d35a6e32e8cc84d8db4c26f9aa5f8113a27f", + "absolute-replaced-width-004.xht": [ + "aaf1aa2d152f6313df6a2c75ef0ddbf386e07ea3", [ null, [ [ - "/css/CSS2/normal-flow/height-003-ref.xht", + "/css/CSS2/positioning/absolute-replaced-width-004-ref.xht", "==" ] ], {} ] ], - "height-004.xht": [ - "06ac4e9e910e04d046c0d668a7e0630e3b400c98", + "absolute-replaced-width-006.xht": [ + "f503db8837e1d55d29265027a3bec81f69637f45", [ null, [ [ - "/css/CSS2/normal-flow/height-001-ref.xht", + "/css/CSS2/positioning/absolute-replaced-width-006-ref.xht", "==" ] ], {} ] ], - "height-005.xht": [ - "2417d7cd302ba3c77993554eb5da2258dcedf52e", + "absolute-replaced-width-008.xht": [ + "8aff9d59985e9adbb6d3a89dabccfee8f4bd6e68", [ null, [ [ - "/css/CSS2/normal-flow/height-001-ref.xht", + "/css/CSS2/positioning/absolute-replaced-width-001-ref.xht", "==" ] ], {} ] ], - "height-006.xht": [ - "ad2ebcfa6371d06fc4894e2a0cb7694a038b48f0", + "absolute-replaced-width-009.xht": [ + "c7749f8769d67ed499a0c3f348513b4dd04d4db6", [ null, [ [ - "/css/CSS2/normal-flow/height-006-ref.xht", + "/css/CSS2/positioning/absolute-replaced-width-002-ref.xht", "==" ] ], {} ] ], - "height-007.xht": [ - "b9ce31f7541e5186c21c1584a7c25c726a77b868", + "absolute-replaced-width-010.xht": [ + "97263411f30d2f6099fdbc9c5099e1c23abb8590", [ null, [ [ - "/css/CSS2/normal-flow/height-006-ref.xht", + "/css/CSS2/positioning/absolute-replaced-width-003-ref.xht", "==" ] ], {} ] ], - "height-012.xht": [ - "356508b2e56378a7a77dc48889b9aecfb6d2f9a6", + "absolute-replaced-width-011.xht": [ + "346791ebd32a9105d10d00c0745d0f3bbdb55d2b", [ null, [ [ - "/css/CSS2/normal-flow/height-001-ref.xht", + "/css/CSS2/positioning/absolute-replaced-width-004-ref.xht", "==" ] ], {} ] ], - "height-013.xht": [ - "b5d2cd14ce1af0a5dd9bd6c39fd808dc70ac8716", + "absolute-replaced-width-013.xht": [ + "1646f1b82cb8dcb75c00ec1188b37c32b4d070b9", [ null, [ [ - "/css/CSS2/normal-flow/height-001-ref.xht", + "/css/CSS2/positioning/absolute-replaced-width-006-ref.xht", "==" ] ], {} ] ], - "height-015.xht": [ - "fbb61406ffd0f1369157f5b1b05b3dfbe5ec6c43", + "absolute-replaced-width-015.xht": [ + "67b33eae9dcea655c3fb4d706536582a4c3e9141", [ null, [ [ - "/css/CSS2/normal-flow/height-001-ref.xht", + "/css/CSS2/positioning/absolute-replaced-width-015-ref.xht", "==" ] ], {} ] ], - "height-016.xht": [ - "ae348fb95321e437e40159a34a1186f295936f37", + "absolute-replaced-width-020.xht": [ + "864df2614a7e5f42e3e2bfb1d7c776d9285459ee", [ null, [ [ - "/css/CSS2/normal-flow/height-001-ref.xht", + "/css/CSS2/positioning/absolute-replaced-width-020-ref.xht", "==" ] ], {} ] ], - "height-017.xht": [ - "5cb24d3b0e6f12a75f0b07530d0d1a9cb23ddbfb", + "absolute-replaced-width-022.xht": [ + "4af5887859d26ca32d81311b59fcd6cfbafaf0e6", [ null, [ [ - "/css/CSS2/normal-flow/height-006-ref.xht", + "/css/CSS2/positioning/absolute-replaced-width-022-ref.xht", "==" ] ], {} ] ], - "height-018.xht": [ - "1b5a319cfd0bc490d5bc50500677d492747c0aaa", + "absolute-replaced-width-023.xht": [ + "93ac8a1ca1ff75fc32cc0d566d83f1e9544797b7", [ null, [ [ - "/css/CSS2/normal-flow/height-006-ref.xht", + "/css/CSS2/positioning/absolute-replaced-width-023-ref.xht", "==" ] ], {} ] ], - "height-023.xht": [ - "44907e860dafa3600fde7165563670c9a51904c6", + "absolute-replaced-width-024.xht": [ + "73abd19c3154a920ea8235d0c88025553ab69efe", [ null, [ [ - "/css/CSS2/normal-flow/height-001-ref.xht", + "/css/CSS2/positioning/absolute-replaced-width-024-ref.xht", "==" ] ], {} ] ], - "height-024.xht": [ - "9a716598d75ac254c748457aa4080c1bb0c1e9f8", + "absolute-replaced-width-025.xht": [ + "8b5a78b36c42c041a8975f59224aa84cb183c4e5", [ null, [ [ - "/css/CSS2/normal-flow/height-001-ref.xht", + "/css/CSS2/positioning/absolute-replaced-width-025-ref.xht", "==" ] ], {} ] ], - "height-025.xht": [ - "cb7d85cee906ffb4a89de7c452229d81a110a36c", + "absolute-replaced-width-027.xht": [ + "e868877d2885d3e38ae9828cda88202e52559a0b", [ null, [ [ - "/css/CSS2/normal-flow/height-025-ref.xht", + "/css/CSS2/positioning/absolute-replaced-width-027-ref.xht", "==" ] ], {} ] ], - "height-026.xht": [ - "aa854efe764d5aadfda619a86afd9c33554c7594", + "absolute-replaced-width-029.xht": [ + "4bd51310144f867277b344c8bcee64232874cdbb", [ null, [ [ - "/css/CSS2/normal-flow/height-001-ref.xht", + "/css/CSS2/positioning/absolute-replaced-width-022-ref.xht", "==" ] ], {} ] ], - "height-027.xht": [ - "a07552f5188fdc17f6c7ed69e5b0bebd9eb47c9d", + "absolute-replaced-width-030.xht": [ + "524064f711a059fb5af65b63f0a2035df6a75dfc", [ null, [ [ - "/css/CSS2/normal-flow/height-001-ref.xht", + "/css/CSS2/positioning/absolute-replaced-width-023-ref.xht", "==" ] ], {} ] ], - "height-028.xht": [ - "083865495ee7f13d2e6da6e32f488b13574fca43", + "absolute-replaced-width-031.xht": [ + "494cb1739f6248ecdbcd1cae7d2dd2adcec7db47", [ null, [ [ - "/css/CSS2/normal-flow/height-006-ref.xht", + "/css/CSS2/positioning/absolute-replaced-width-024-ref.xht", "==" ] ], {} ] ], - "height-029.xht": [ - "c707241ebecb35e9eb14ed78e89356b540c7283c", + "absolute-replaced-width-032.xht": [ + "e9ef650e6f6dd4a4c72f0da422049f195b72838f", [ null, [ [ - "/css/CSS2/normal-flow/height-006-ref.xht", + "/css/CSS2/positioning/absolute-replaced-width-025-ref.xht", "==" ] ], {} ] ], - "height-034.xht": [ - "d91a163402522ba6f899251c059cf41c29a5f96b", + "absolute-replaced-width-034.xht": [ + "4d95609055097f6dea7738d378a775b79819827e", [ null, [ [ - "/css/CSS2/normal-flow/height-001-ref.xht", + "/css/CSS2/positioning/absolute-replaced-width-020-ref.xht", "==" ] ], {} ] ], - "height-035.xht": [ - "f46d5f26a6ec6917237903a777ec3b1d0f43c0db", + "absolute-replaced-width-036.xht": [ + "2a2647f3cee12eb42d70328d7341f9db5ec0872d", [ null, [ [ - "/css/CSS2/normal-flow/height-001-ref.xht", + "/css/CSS2/positioning/absolute-replaced-width-036-ref.xht", "==" ] ], {} ] ], - "height-037.xht": [ - "17969cba6811148a8de5980ed83189d2dc25b684", + "absolute-replaced-width-037.xht": [ + "5eee89289514f8089349538291429bca3157a93a", [ null, [ [ - "/css/CSS2/normal-flow/height-001-ref.xht", + "/css/CSS2/positioning/absolute-replaced-width-037-ref.xht", "==" ] ], {} ] ], - "height-038.xht": [ - "5e569f58801a1aab90d196cbc939a70c5d5a851f", + "absolute-replaced-width-038.xht": [ + "0aae33bbe5ff4e8ba6a7b33b5e8b97ab468d01c4", [ null, [ [ - "/css/CSS2/normal-flow/height-001-ref.xht", + "/css/CSS2/positioning/absolute-replaced-width-038-ref.xht", "==" ] ], {} ] ], - "height-039.xht": [ - "976f4f58c6876156ccca90d029e01148be42af5d", + "absolute-replaced-width-039.xht": [ + "efade389d5eb912af53df5cc7db6648df6d8c0f2", [ null, [ [ - "/css/CSS2/normal-flow/height-006-ref.xht", + "/css/CSS2/positioning/absolute-replaced-width-039-ref.xht", "==" ] ], {} ] ], - "height-040.xht": [ - "6e45df0f03ec86a8d6da2646ecd46cbd294b0fea", + "absolute-replaced-width-041.xht": [ + "19e5350aa7ef4b9bb99cfdf3472405a19a28f30e", [ null, [ [ - "/css/CSS2/normal-flow/height-006-ref.xht", + "/css/CSS2/positioning/absolute-replaced-width-041-ref.xht", "==" ] ], {} ] ], - "height-045.xht": [ - "df06066cb7ec5f7793cdf8d51172b8a19017fc9c", + "absolute-replaced-width-043.xht": [ + "91e7ffe481ae9bfa69fd2688d7fb50481b9d6042", [ null, [ [ - "/css/CSS2/normal-flow/height-001-ref.xht", + "/css/CSS2/positioning/absolute-replaced-width-036-ref.xht", "==" ] ], {} ] ], - "height-046.xht": [ - "eb9d84b827f8815cabee299c20c20550cc731268", + "absolute-replaced-width-048.xht": [ + "b22043eae632a11c94070f2b36b968bec16307c7", [ null, [ [ - "/css/CSS2/normal-flow/height-001-ref.xht", + "/css/CSS2/positioning/absolute-replaced-width-041-ref.xht", "==" ] ], {} ] ], - "height-048.xht": [ - "1415779c082552cd2f1bf95e356442d3fcf9871f", + "absolute-replaced-width-050.xht": [ + "4fb8a46d540fadce726d27a5cf02b008d9d3ab77", [ null, [ [ - "/css/CSS2/normal-flow/height-001-ref.xht", + "/css/CSS2/positioning/absolute-replaced-width-036-ref.xht", "==" ] ], {} ] ], - "height-049.xht": [ - "787afb88d578f2d9761effdb167c8151c7daa262", + "absolute-replaced-width-051.xht": [ + "40a32c3a73f9f2d351b205bdbdddf9c48d38b252", [ null, [ [ - "/css/CSS2/normal-flow/height-001-ref.xht", + "/css/CSS2/positioning/absolute-replaced-width-037-ref.xht", "==" ] ], {} ] ], - "height-050.xht": [ - "3e547402b64863463ac876e0713f428b4e9fbf6b", + "absolute-replaced-width-052.xht": [ + "05416bba97a5a08bf7e961bb8c21e0b50ba36dd9", [ null, [ [ - "/css/CSS2/normal-flow/height-006-ref.xht", + "/css/CSS2/positioning/absolute-replaced-width-038-ref.xht", "==" ] ], {} ] ], - "height-051.xht": [ - "3cc037d36866c16e181a3cb2ec183b8ad7561f32", + "absolute-replaced-width-053.xht": [ + "28c77ae55671ae1a27b60d4b746b7ba3156caddd", [ null, [ [ - "/css/CSS2/normal-flow/height-006-ref.xht", + "/css/CSS2/positioning/absolute-replaced-width-039-ref.xht", "==" ] ], {} ] ], - "height-056.xht": [ - "a984276bae5b91eb508cbaa36ae91b7a51755332", + "absolute-replaced-width-055.xht": [ + "7a5bdea4276a14d6b77d0008056bcb1c030a154b", [ null, [ [ - "/css/CSS2/normal-flow/height-001-ref.xht", + "/css/CSS2/positioning/absolute-replaced-width-041-ref.xht", "==" ] ], {} ] ], - "height-057.xht": [ - "5381e3a65a29f9d3b62c71b2ed66d1148c9d7c6a", + "absolute-replaced-width-057.xht": [ + "a3198d5f186400135df6dee86bdaa21497e4660c", [ null, [ [ - "/css/CSS2/normal-flow/height-001-ref.xht", + "/css/CSS2/positioning/absolute-replaced-width-036-ref.xht", "==" ] ], {} ] ], - "height-058.xht": [ - "c88f1b35d0bb4cc373826d90a522adc850e2a706", + "absolute-replaced-width-062.xht": [ + "ad2cdef7b472fa802a4ca0464c32e109baed9904", [ null, [ [ - "/css/CSS2/normal-flow/height-058-ref.xht", + "/css/CSS2/positioning/absolute-replaced-width-041-ref.xht", "==" ] ], {} ] ], - "height-059.xht": [ - "c97dc58db0811e63b73ff31392aa6817922c6e7c", + "absolute-replaced-width-064.xht": [ + "b29c91318b0e0235282c4b8b9c9d1a6b76def26c", [ null, [ [ - "/css/CSS2/normal-flow/height-001-ref.xht", + "/css/CSS2/positioning/absolute-replaced-width-036-ref.xht", "==" ] ], {} ] ], - "height-060.xht": [ - "2bedadc30ac46e722b7797e4a5515606407868a6", + "absolute-replaced-width-065.xht": [ + "27b845a2379930603954cb4f5fa3718c4939b299", [ null, [ [ - "/css/CSS2/normal-flow/height-001-ref.xht", + "/css/CSS2/positioning/absolute-replaced-width-037-ref.xht", "==" ] ], {} ] ], - "height-061.xht": [ - "ae198b3a5b9d854f9337e32309e5224b64fabd4c", + "absolute-replaced-width-066.xht": [ + "907bf00895777ddea8c4056f0abcc9c3f97d32d7", [ null, [ [ - "/css/CSS2/normal-flow/height-061-ref.xht", + "/css/CSS2/positioning/absolute-replaced-width-038-ref.xht", "==" ] ], {} ] ], - "height-062.xht": [ - "0ee4bff6c58c2b3cc1addaebb006f2e905e6a631", + "absolute-replaced-width-067.xht": [ + "5d7f6237a455db8f72dfc2ba79eaac4f6f118afb", [ null, [ [ - "/css/CSS2/normal-flow/height-061-ref.xht", + "/css/CSS2/positioning/absolute-replaced-width-039-ref.xht", "==" ] ], {} ] ], - "height-067.xht": [ - "2c276379a45c81fc5cbe14a0fbbf195ff279d0be", + "absolute-replaced-width-069.xht": [ + "be33590a6d6d284361777daec5966dceece9a180", [ null, [ [ - "/css/CSS2/normal-flow/height-067-ref.xht", + "/css/CSS2/positioning/absolute-replaced-width-041-ref.xht", "==" ] ], {} ] ], - "height-068.xht": [ - "4e06c3d85c52f60da6cd26496b8ec55de4865e6f", + "absolute-replaced-width-071.xht": [ + "711ac8aa4017670137f6d34f33d83200ec0a6499", [ null, [ [ - "/css/CSS2/normal-flow/height-067-ref.xht", + "/css/CSS2/positioning/absolute-replaced-width-036-ref.xht", "==" ] ], {} ] ], - "height-069.xht": [ - "5ca87865e646261429f8cb5d05d6fbc8f17a065a", + "absolute-replaced-width-076.xht": [ + "129e3a18945a78b42c7d8fca44a2af5109c81f54", [ null, [ [ - "/css/CSS2/normal-flow/height-069-ref.xht", + "/css/CSS2/positioning/absolute-replaced-width-041-ref.xht", "==" ] ], {} ] ], - "height-070.xht": [ - "721e7b3abf449dc8a76100e720052628c111479a", + "abspos-001.xht": [ + "b8cd1afeb844eaae843fd430f520079960c986e9", [ null, [ [ - "/css/CSS2/normal-flow/height-067-ref.xht", + "/css/CSS2/positioning/abspos-001-ref.xht", "==" ] ], {} ] ], - "height-071.xht": [ - "11777e1432a56c13b99c5645fcc953d40f10062d", + "abspos-002.xht": [ + "5d4ca5f2fc62cd66dffe7b0697322ad4578a638c", [ null, [ [ - "/css/CSS2/normal-flow/height-067-ref.xht", + "/css/CSS2/positioning/abspos-002-ref.xht", "==" ] ], {} ] ], - "height-072.xht": [ - "add8a800fff21ffca24d826ac566b3cac272d6fb", + "abspos-007.xht": [ + "82c77eb1c763c08da06fd7bd8400c7dec0f6f048", [ null, [ [ - "/css/CSS2/normal-flow/height-072-ref.xht", + "/css/CSS2/positioning/abspos-007-ref.xht", "==" ] ], {} ] ], - "height-073.xht": [ - "df8ae287b0cdcbb13281d4ac5c4f82dbcf0f1a2a", + "abspos-008.xht": [ + "46a302f133e78903cb4625634fda98edbf2825e4", [ null, [ [ - "/css/CSS2/normal-flow/height-072-ref.xht", + "/css/CSS2/positioning/abspos-008-ref.xht", "==" ] ], {} ] ], - "height-078.xht": [ - "eec2c5f89a69b3214b1ac5a8c581e8feea6e680f", + "abspos-009.xht": [ + "2c5902f5f9a273bf3b987d90722ea7513f54ce98", [ null, [ [ - "/css/CSS2/normal-flow/height-067-ref.xht", + "/css/CSS2/positioning/abspos-009-ref.xht", "==" ] ], {} ] ], - "height-079.xht": [ - "7ec17f8e2bc3991c7256ed3cf797652d693c38e6", + "abspos-011.xht": [ + "1900af451882540b62ae392a83305c8d4aeeb036", [ null, [ [ - "/css/CSS2/normal-flow/height-067-ref.xht", + "/css/CSS2/positioning/abspos-011-ref.xht", "==" ] ], {} ] ], - "height-080.xht": [ - "10a46239e869990c63a084712fc0498ce8f192f3", + "abspos-012.xht": [ + "03b47f922295aa21292716101986795cd7cb72c3", [ null, [ [ - "/css/CSS2/normal-flow/height-080-ref.xht", + "/css/CSS2/positioning/abspos-011-ref.xht", "==" ] ], {} ] ], - "height-081.xht": [ - "7bf1540835219b391f99261d77bb9513c747f8ae", + "abspos-013.xht": [ + "8a05d120652a99dc8a5405c928ef25acdeecec5d", [ null, [ [ - "/css/CSS2/normal-flow/height-067-ref.xht", + "/css/CSS2/positioning/abspos-013-ref.xht", "==" ] ], {} ] ], - "height-082.xht": [ - "84efec108b278cb29008dfc5729ae392bf5463e3", + "abspos-014.xht": [ + "553b93d0464e53a37cd9b4c8f288b7eebaca691b", [ null, [ [ - "/css/CSS2/normal-flow/height-067-ref.xht", + "/css/CSS2/positioning/abspos-013-ref.xht", "==" ] ], {} ] ], - "height-083.xht": [ - "42d705441cc9ead365b5d68c921158c0df846d61", + "abspos-015.xht": [ + "32b26528118a9a04be79c1eb4656d8bc995c7761", [ null, [ [ - "/css/CSS2/normal-flow/height-006-ref.xht", + "/css/CSS2/positioning/abspos-013-ref.xht", "==" ] ], {} ] ], - "height-084.xht": [ - "23e80c73c175f5ad37f078bcbe7c55de39c3a0f4", + "abspos-016.xht": [ + "6310eb01dd287bd03fe4eeab9938184f1c3b880b", [ null, [ [ - "/css/CSS2/normal-flow/height-006-ref.xht", + "/css/CSS2/positioning/abspos-013-ref.xht", "==" ] ], {} ] ], - "height-089.xht": [ - "2b644883f1a2a05efe0a8c471af34eea71f384f4", + "abspos-017.xht": [ + "9c1a977657ab256689120f514cbadb851bde6a1c", [ null, [ [ - "/css/CSS2/normal-flow/height-001-ref.xht", + "/css/CSS2/positioning/abspos-013-ref.xht", "==" ] ], {} ] ], - "height-090.xht": [ - "96b258eb48901d0ba06d9e48c483077ffd19728d", + "abspos-018.xht": [ + "7cf610e32edde8a39c0a9090c022698b5106cae9", [ null, [ [ - "/css/CSS2/normal-flow/height-001-ref.xht", + "/css/CSS2/positioning/abspos-013-ref.xht", "==" ] ], {} ] ], - "height-091.xht": [ - "f0523880134b98e22701ad8d4553f5648d485cf9", + "abspos-019.xht": [ + "f2e83dab44249bcba106141335c4a1bd45872845", [ null, [ [ - "/css/CSS2/normal-flow/height-003-ref.xht", + "/css/CSS2/positioning/abspos-013-ref.xht", "==" ] ], {} ] ], - "height-092.xht": [ - "707f0f8350ef4132d6befc0d3d488204aa72e9db", + "abspos-020.xht": [ + "e1a0335103edb251c83841e2235a9db603037f23", [ null, [ [ - "/css/CSS2/normal-flow/height-001-ref.xht", + "/css/CSS2/positioning/abspos-013-ref.xht", "==" ] ], {} ] ], - "height-093.xht": [ - "db530c86b320187b8bf2ab546865b4e4ab0610c8", + "abspos-022.xht": [ + "9949351f1f3b845a53b9adcc3c14a332252c3d7d", [ null, [ [ - "/css/CSS2/normal-flow/height-001-ref.xht", + "/css/CSS2/positioning/abspos-013-ref.xht", "==" ] ], {} ] ], - "height-094.xht": [ - "563b65bc238e440dc1db5de1c695a0e3bd96b05e", + "abspos-024.xht": [ + "2e4a77d08b3f1194cd907dbe0d7421f67e4f6b32", [ null, [ [ - "/css/CSS2/normal-flow/height-006-ref.xht", + "/css/CSS2/positioning/abspos-024-ref.xht", "==" ] ], {} ] ], - "height-095.xht": [ - "0e6884450454ab3a811ece40a2d8dab808bce791", + "abspos-025.xht": [ + "b9b1fd6fbee3e6905a26bbdbb2216ebfe0ac713c", [ null, [ [ - "/css/CSS2/normal-flow/height-006-ref.xht", + "/css/CSS2/positioning/abspos-025-ref.xht", "==" ] ], {} ] ], - "height-100.xht": [ - "0a103500790a77d31fe74c0818a5b96f305840c1", + "abspos-026.xht": [ + "6fa4d773d88905cba5a14f27dcf84d75dc02799c", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/positioning/abspos-025-ref.xht", "==" ] ], {} ] ], - "height-101.xht": [ - "62916250de3032edbc838111140019bcc06e167a", + "abspos-027.xht": [ + "f9fecbe6cb71353544ee4144c3989b8b358c0bc4", [ null, [ @@ -87429,14331 +88256,14312 @@ {} ] ], - "height-102.xht": [ - "e4b5d88b5adcb5106402c0a7c1ee44cb9181e5cf", + "abspos-028.xht": [ + "38b726410c26a0d53dc93bd645a92d626ba91c12", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/positioning/abspos-028-ref.xht", "==" ] ], {} ] ], - "height-103.xht": [ - "4ea3e175bff48a58232c85e56353f9129ef958c0", + "abspos-block-level-001.html": [ + "c55fb3d3947b5b5742af07f39b0fd39d7bc1a80a", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/positioning/abspos-block-level-001-ref.html", "==" ] ], {} ] ], - "height-104.xht": [ - "e234cd9fa1b13aa27630488fef407faa79ff1148", + "abspos-containing-block-001.xht": [ + "a097a7cc90ef3231ae230cef2f9bf253ca9b789c", [ null, [ [ - "/css/CSS2/normal-flow/height-003-ref.xht", + "/css/CSS2/positioning/abspos-containing-block-001-ref.xht", "==" ] ], {} ] ], - "height-111.xht": [ - "24588842c57c735382f8dbaaf687a42a7552b1c9", + "abspos-containing-block-002.xht": [ + "9d778bced3e42bb255bf3cf1ae4410cac27a3849", [ null, [ [ - "/css/CSS2/normal-flow/height-111-ref.xht", + "/css/CSS2/positioning/abspos-containing-block-001-ref.xht", "==" ] ], {} ] ], - "height-112.xht": [ - "f453e46d1ad54d541014f132a6589bcafc844535", + "abspos-containing-block-003.xht": [ + "c86c9ffe33204b69a173bc383a489e8bb5d87646", [ null, [ [ - "/css/CSS2/normal-flow/height-112-ref.xht", + "/css/CSS2/positioning/abspos-containing-block-001-ref.xht", "==" ] ], {} ] ], - "height-113.xht": [ - "74a3c2997f936ba40ca60fc64e291ffe0b87f403", + "abspos-containing-block-004.xht": [ + "1cbae982dcc1e80ba1ae573a7e67fab0c877d5de", [ null, [ [ - "/css/CSS2/normal-flow/height-113-ref.xht", + "/css/CSS2/positioning/abspos-containing-block-001-ref.xht", "==" ] ], {} ] ], - "height-114.xht": [ - "a73c64180eb827dc4ea2f2ed9ffed536dfe0f742", + "abspos-containing-block-005.xht": [ + "b86a3a069106ec3a363549ea1c9414de876e3667", [ null, [ [ - "/css/CSS2/normal-flow/height-114-ref.xht", + "/css/CSS2/positioning/abspos-containing-block-001-ref.xht", "==" ] ], {} ] ], - "height-applies-to-004.xht": [ - "1cf1e9d9dfab67722fb660b4c0845afef1562a8e", + "abspos-containing-block-006.xht": [ + "70a6f46e6cc5709ca4cbdcae2b756470c2bf8c22", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/positioning/abspos-containing-block-001-ref.xht", "==" ] ], {} ] ], - "height-applies-to-005.xht": [ - "0ebf0a32fc503a77231dbb0d18b532073f49a1ac", + "abspos-containing-block-007.xht": [ + "ad3e40fa09d929126fb59509248ec7dbb5e81afe", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/positioning/abspos-containing-block-001-ref.xht", "==" ] ], {} ] ], - "height-applies-to-006.xht": [ - "b63846dd3dfa85893be968695d141985649a8213", + "abspos-containing-block-008.xht": [ + "f01ce44a5e6fafa13e1044acc832c49541053b4d", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/positioning/abspos-containing-block-001-ref.xht", "==" ] ], {} ] ], - "height-applies-to-007.xht": [ - "6d33bf2d7309c6b5ba615940ea59315c65c6613f", + "abspos-containing-block-009.xht": [ + "77e17dfec98c04d2c6ec5834768b7138e83766a0", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/positioning/abspos-containing-block-001-ref.xht", "==" ] ], {} ] ], - "height-applies-to-008.xht": [ - "764d6f65163d00f5eae83caf3f3855e1939178cc", + "abspos-containing-block-010.xht": [ + "f2199762167935c8c1315ad9147e8d1f2b50aea9", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/positioning/abspos-containing-block-010-ref.xht", "==" ] ], {} ] ], - "height-applies-to-009.xht": [ - "c962c949ec61e6abc8b87ec6a86551dee95b3c7d", + "abspos-float-with-inline-container.html": [ + "9918bcc68df351a8bfc6975a3f7e9e19e8f576fb", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/positioning/abspos-float-with-inline-container-ref.html", "==" ] ], {} ] ], - "height-applies-to-012.xht": [ - "7bf8a830652836b4f1a2fa4b712c59015b710335", + "abspos-inline-007.xht": [ + "35fd245dd1025f0e6ba2117b69b9f3a18182f252", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/positioning/abspos-inline-007-ref.xht", "==" ] ], {} ] ], - "height-applies-to-013.xht": [ - "87518b66a39282a82f6f3241d59afe401178e61a", + "abspos-inline-008.xht": [ + "9233b4373e5e4dc5beb6713a9af1de861c5cf4d9", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "height-applies-to-014.xht": [ - "92e87cef15ca39e87017f417bd411e82b8ea78d8", + "abspos-negative-margin-001.html": [ + "6b6246eb195d102e23b8d4c7a9407235b6cc14c1", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/positioning/abspos-negative-margin-001-ref.html", "==" ] ], {} ] ], - "height-applies-to-015.xht": [ - "1a720f5c39340aa71495df0396560312eafac53d", + "abspos-overflow-001.xht": [ + "0f7ed6b70d8837f76f7c711e0eaa8d324dfbafba", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/positioning/abspos-overflow-001-ref.xht", "==" ] ], {} ] ], - "height-applies-to-016.xht": [ - "2a35beebe217e1c3b8b10188fe3b32e9ccb54b8b", + "abspos-overflow-002.xht": [ + "793aaa6e2739145db10e0b0d9c43663e78f67f0b", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/positioning/abspos-overflow-002-ref.xht", "==" ] ], {} ] ], - "height-inherit-001.xht": [ - "9193b284961ec8ab604c52ae795487dff5d6afd9", + "abspos-overflow-003.xht": [ + "65f568e3dc6c6766769d3039ec65d8e9af436a47", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/positioning/abspos-overflow-003-ref.xht", "==" ] ], {} ] ], - "height-percentage-001.xht": [ - "62b48051c4ca7ee50da29f672e52175c60df09d9", + "abspos-overflow-004.xht": [ + "eafa15ed0e158234cde51d9467cf03ef8d463b18", [ null, [ [ - "/css/CSS2/normal-flow/height-percentage-001-ref.xht", + "/css/CSS2/positioning/abspos-overflow-004-ref.xht", "==" ] ], {} ] ], - "height-percentage-002.xht": [ - "e0f153e232518b86e3348eb56754feb93eadbb6e", + "abspos-overflow-005.xht": [ + "109e7abba9da7c904a8acf1f5a6b7caa7da2974d", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/positioning/abspos-overflow-005-ref.xht", "==" ] ], {} ] ], - "height-percentage-003.xht": [ - "815bdcaebccd8141a6f2a9a0309cba15c8db4f78", + "abspos-overflow-006.xht": [ + "6e88c2bfeaff547280d76b03cfb86e5f03b7277c", [ null, [ [ - "/css/CSS2/normal-flow/height-percentage-003-ref.xht", + "/css/CSS2/positioning/abspos-overflow-006-ref.xht", "==" ] ], {} ] ], - "height-percentage-004.xht": [ - "85940a67329c1514f5f84ba2fc88b59d3b8fc9e4", + "abspos-overflow-007.xht": [ + "3c9ad7b3a6b041434371ca78dd2979c2e39f9156", [ null, [ [ - "/css/CSS2/normal-flow/height-percentage-001-ref.xht", + "/css/CSS2/positioning/abspos-overflow-004-ref.xht", "==" ] ], {} ] ], - "height-percentage-005.xht": [ - "6931f06a2193c5c5266a8d072d649850fa337146", + "abspos-overflow-008.xht": [ + "af84b93cceafa141f4b45e03d64297e502a3a85d", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/positioning/abspos-overflow-005-ref.xht", "==" ] ], {} ] ], - "inline-block-000.xht": [ - "7a985d7eb26247d785923ac0ae5906b3290b323b", + "abspos-overflow-009.xht": [ + "17eddd8a674a7dde00f004ccf7abf0353a236be0", [ null, [ [ - "/css/CSS2/normal-flow/inline-block-000-ref.xht", + "/css/CSS2/positioning/abspos-overflow-006-ref.xht", "==" ] ], {} ] ], - "inline-block-height-001.xht": [ - "2b194b196f48eb4d741b9b39f15060e4af585398", + "abspos-overflow-010.xht": [ + "7d2c9c355d0df0b56759808c8456147dcfe3f8d4", [ null, [ [ - "/css/CSS2/normal-flow/inline-block-height-001-ref.xht", + "/css/CSS2/positioning/abspos-overflow-010-ref.xht", "==" ] ], {} ] ], - "inline-block-height-002.xht": [ - "c0181dc54f446c6a46b1099cd11e53c8145a6926", + "abspos-overflow-011.xht": [ + "9cac516d33a57f25ae21d8be190ecddfa1bb8281", [ null, [ [ - "/css/CSS2/normal-flow/inline-block-height-002-ref.xht", + "/css/CSS2/positioning/abspos-overflow-011-ref.xht", "==" ] ], {} ] ], - "inline-block-non-replaced-height-001.xht": [ - "9c71cd4e52f1a1c2cb9dfdc52dd8f5b7f4d8bdbd", + "abspos-overflow-012.xht": [ + "376d52519de8d29547777d69775bb02fe709af01", [ null, [ [ - "/css/CSS2/normal-flow/height-percentage-001-ref.xht", + "/css/CSS2/positioning/abspos-overflow-011-ref.xht", "==" ] ], {} ] ], - "inline-block-non-replaced-height-002.xht": [ - "60afcd00479cda1ed8b350c2a0f4eb9230bc976b", + "abspos-width-001.xht": [ + "766c512b3cd87a99ffed151e59d2388f8e36960e", [ null, [ [ - "/css/CSS2/normal-flow/height-percentage-001-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "inline-block-non-replaced-width-001.xht": [ - "a7a14c93c4781c0278ae7b276370f28134f27e1f", + "abspos-width-002.xht": [ + "0465f6571b8339f417ee294df690524087437089", [ null, [ [ - "/css/CSS2/normal-flow/inline-block-non-replaced-width-001-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "inline-block-non-replaced-width-002.xht": [ - "20b36c9d83102ef948b064b5fa498fd0ca77dffc", + "abspos-width-003.xht": [ + "79208b8da9c4a99ca2ec179995f0656290825d5a", [ null, [ [ - "/css/CSS2/normal-flow/inline-block-non-replaced-width-002-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "inline-block-non-replaced-width-003.xht": [ - "eb24c6ff46d8017c9a730afb588973d8a06899d5", + "abspos-width-004.xht": [ + "ee6f8967be1bb1fe561905b62353a22ebbb4ae37", [ null, [ [ - "/css/CSS2/positioning/absolute-non-replaced-width-017-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "inline-block-non-replaced-width-004.xht": [ - "4f105a662abab66d70b3d01c9cf883a4a7d8ecfc", + "abspos-width-005.xht": [ + "1913db0d2912cfa03c72a4d5635d71b2aa87c094", [ null, [ [ - "/css/CSS2/positioning/absolute-non-replaced-width-017-ref.xht", + "/css/CSS2/positioning/abspos-width-005-ref.xht", "==" ] ], {} ] ], - "inline-block-replaced-height-001.xht": [ - "bde599a336f1fc09ba5ebd8a66365d05ae277311", + "abspos-width-change-inline-container-001.html": [ + "27b5aed83adee68b369efac45fc3ed796ad59797", [ null, [ [ - "/css/CSS2/normal-flow/block-replaced-height-001-ref.xht", + "/css/CSS2/positioning/abspos-width-change-inline-container-001-ref.html", "==" ] ], {} ] ], - "inline-block-replaced-height-002.xht": [ - "b6753412d844d6785231d09ff7856a625631e83d", + "auto-position-rtl-child-viewport-scrollbar.html": [ + "80daf1bb37f206df4c4682675be327192db39eab", [ null, [ [ - "/css/CSS2/normal-flow/block-replaced-height-002-ref.xht", + "/css/CSS2/positioning/auto-position-rtl-child-viewport-scrollbar-ref.html", "==" ] ], {} ] ], - "inline-block-replaced-height-003.xht": [ - "0ee4bc0cebd678d9e1fcc52b2669a34f3eb2b7ca", + "bottom-004.xht": [ + "ac2cdbb49ebcb58bd98c19d38c6bb7952ff56e7d", [ null, [ [ - "/css/CSS2/normal-flow/inline-block-replaced-height-003-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "inline-block-replaced-height-004.xht": [ - "d477ba09e0e6b09c77d0ce66144aa90cb3c6e450", + "bottom-005.xht": [ + "fdfe5dd77a2860726fde71b7dec1f2d6e287959a", [ null, [ [ - "/css/CSS2/normal-flow/block-replaced-height-004-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "inline-block-replaced-height-005.xht": [ - "5307bad752216ac88d53acf2923d97ac75933093", + "bottom-006.xht": [ + "f554da80e583e2654428fb01869db3d08f43f456", [ null, [ [ - "/css/CSS2/normal-flow/block-replaced-height-005-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "inline-block-replaced-height-006.xht": [ - "fc5e234900f541ffe11b1038181ae31e36504d07", + "bottom-007.xht": [ + "41ad1a017a831b45b7b98e00682d1c9a3e8fe116", [ null, [ [ - "/css/CSS2/normal-flow/block-replaced-height-006-ref.xht", + "/css/CSS2/positioning/bottom-007-ref.xht", "==" ] ], {} ] ], - "inline-block-replaced-height-007.xht": [ - "a14dd8a9cbc858a3fc8237daf5e8c6c3e71617ea", + "bottom-008.xht": [ + "287642fb87c03f2562d6e2eaf1bf967f4b22b9c6", [ null, [ [ - "/css/CSS2/normal-flow/block-replaced-height-004-ref.xht", + "/css/CSS2/positioning/bottom-007-ref.xht", "==" ] ], {} ] ], - "inline-block-replaced-height-009.xht": [ - "01c67c46fbbf293dc127a7dfe339b1392be01476", + "bottom-016.xht": [ + "7220533e9d20c0c70dfd7a485a525c8a63744b2c", [ null, [ [ - "/css/CSS2/positioning/absolute-replaced-width-003b-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "inline-block-replaced-width-001.xht": [ - "fee9a3e194e8265af5477e3db7f2a4657b264c23", + "bottom-017.xht": [ + "1f4f681776a2e05be92a71a863dafcaaac97405e", [ null, [ [ - "/css/CSS2/normal-flow/inline-block-replaced-width-001-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "inline-block-replaced-width-002.xht": [ - "018d8dee87e8a2160db021cc32b5712c80c34ca2", + "bottom-018.xht": [ + "42321d195111a040541248474d2c2038744c7c55", [ null, [ [ - "/css/CSS2/normal-flow/inline-block-replaced-width-002-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "inline-block-replaced-width-003.xht": [ - "53db1deb4583b138606813b726121f54ee474e47", + "bottom-019.xht": [ + "8ef3491b4fd6388df9518b8cdc9f3fd47840fe7c", [ null, [ [ - "/css/CSS2/normal-flow/inline-block-replaced-width-003-ref.xht", + "/css/CSS2/positioning/bottom-019-ref.xht", "==" ] ], {} ] ], - "inline-block-replaced-width-006.xht": [ - "ba469de15f665deba47d4ee361bf5603a014ce8b", + "bottom-020.xht": [ + "30ac2a84a39a1ee9a661c440da83056f1a631fa8", [ null, [ [ - "/css/CSS2/normal-flow/inline-block-replaced-width-006-ref.xht", + "/css/CSS2/positioning/bottom-019-ref.xht", "==" ] ], {} ] ], - "inline-block-replaced-width-007.xht": [ - "d7f3297f194192ea0532ccfecdf6ecb1e59f6bd6", + "bottom-028.xht": [ + "6cbc57b83b934fe4cc5c979ba6c2f1f6c87a273e", [ null, [ [ - "/css/CSS2/positioning/absolute-replaced-width-003a-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "inline-block-replaced-width-008.xht": [ - "e3efba6c9d332a435ac496e9f4cbece64d6a46a9", + "bottom-029.xht": [ + "4b6248cae4e7e137324ea78cd390aa250722c99f", [ null, [ [ - "/css/CSS2/positioning/absolute-replaced-width-003c-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "inline-block-valign-001.xht": [ - "c41b779fc7d1215e0bb69bc983045c2713a41fbf", + "bottom-030.xht": [ + "7230b6e668600d77972fd7d2d189babf46aceb39", [ null, [ [ - "/css/CSS2/normal-flow/inline-block-valign-001-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "inline-block-valign-002.xht": [ - "750580a8c35a702d56b4f91939c47b077870b7bc", + "bottom-031.xht": [ + "b6094a5ce95f06029f9147a1743dd9adf22d49d5", [ null, [ [ - "/css/CSS2/normal-flow/inline-block-valign-002-ref.xht", + "/css/CSS2/positioning/bottom-019-ref.xht", "==" ] ], {} ] ], - "inline-block-width-001a.xht": [ - "c763fa80e03d7590151ed8a4a22fece9bf636aa5", + "bottom-032.xht": [ + "25a6fb36d451831da27cc39d992b69ce8da5c2d1", [ null, [ [ - "/css/CSS2/normal-flow/inline-block-width-001-ref.xht", + "/css/CSS2/positioning/bottom-019-ref.xht", "==" ] ], {} ] ], - "inline-block-width-001b.xht": [ - "45e4ab05d79a8851914c416363a41b121454a43d", + "bottom-040.xht": [ + "d60c160acbc41554b9481241194c8c4623089824", [ null, [ [ - "/css/CSS2/normal-flow/inline-block-width-001-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "inline-block-width-002a.xht": [ - "51ea36c4336c891fd571998d1fcf1d659f5171b8", + "bottom-041.xht": [ + "38b531f4fded42e49df925ee095bc10b4314a260", [ null, [ [ - "/css/CSS2/normal-flow/inline-block-width-002-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "inline-block-width-002b.xht": [ - "a2bca4702cc8b21ce14225e1b1f94340e0b33b29", + "bottom-042.xht": [ + "e5afb0efa622a2115005a5bf502465206da5712b", [ null, [ [ - "/css/CSS2/normal-flow/inline-block-width-002-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "inline-block-zorder-001.xht": [ - "daaf4b3401258cef183acbd0744dcc4f79eee375", + "bottom-043.xht": [ + "c91a46ca7c87ca9b06391d4e5d79b0c9e1718c49", [ null, [ [ - "/css/CSS2/normal-flow/inline-block-zorder-001-ref.xht", + "/css/CSS2/positioning/bottom-019-ref.xht", "==" ] ], {} ] ], - "inline-block-zorder-002.xht": [ - "cc304072e3db915c6b5a8eeed541b7cd496cbf94", + "bottom-044.xht": [ + "dbaa89973113a9dc77e86f1ec7cab7e01025c407", [ null, [ [ - "/css/CSS2/normal-flow/inline-block-zorder-001-ref.xht", + "/css/CSS2/positioning/bottom-019-ref.xht", "==" ] ], {} ] ], - "inline-block-zorder-003.xht": [ - "7b8c46b8e5abd7edf5325a3693ca8e2e21ae222b", + "bottom-052.xht": [ + "31508bcb328d61448ddd736342fac839caeff0d6", [ null, [ [ - "/css/CSS2/normal-flow/inline-block-zorder-003-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "inline-block-zorder-004.xht": [ - "ecb67568885039a08c86a01dbcf0048b3e3f1b5a", + "bottom-053.xht": [ + "4aea6b7676c97e5a7f30112d9374ed41ac32464a", [ null, [ [ - "/css/CSS2/normal-flow/inline-block-zorder-004-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "inline-block-zorder-005.xht": [ - "24d4a385a53c79bbe888c191db5e581fdcacf561", + "bottom-054.xht": [ + "fc1dee6ea2bf9b1208c36d69162d3aa3249e03af", [ null, [ [ - "/css/CSS2/normal-flow/inline-block-zorder-004-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "inline-non-replaced-height-002.xht": [ - "e3568f555d516824c3ccdb2a92cb925fadebf311", + "bottom-055.xht": [ + "d7cc1fbd5f30c379e573210eedd35713e7446ca6", [ null, [ [ - "/css/CSS2/normal-flow/inline-non-replaced-height-002-ref.xht", + "/css/CSS2/positioning/bottom-019-ref.xht", "==" ] ], {} ] ], - "inline-non-replaced-height-003.xht": [ - "4fc0a9d3d29a9077ecd27f69d2c7722ec756b079", + "bottom-056.xht": [ + "53f7db456fed2f81997dd122792c0f40e847f0b2", [ null, [ [ - "/css/CSS2/normal-flow/inline-non-replaced-height-002-ref.xht", + "/css/CSS2/positioning/bottom-019-ref.xht", "==" ] ], {} ] ], - "inline-non-replaced-width-001.xht": [ - "30cfbfb8486d0c7578b2366bc973391991b196ce", + "bottom-064.xht": [ + "6eb676819559038c51910638fb832de77df617bd", [ null, [ [ - "/css/CSS2/normal-flow/inline-non-replaced-width-001-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "inline-non-replaced-width-002.xht": [ - "375e22fe0905d747f0a655327773c903692a5a0b", + "bottom-065.xht": [ + "6d853c3ae8b9b6dc9397d3637170d5abea975d96", [ null, [ [ - "/css/CSS2/normal-flow/inline-non-replaced-width-001-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "inline-replaced-height-001.xht": [ - "c345c21224bd656460eba080b1c56a7bbcbfb99b", + "bottom-066.xht": [ + "9db7b820e07ca63540f014b13e6e047fa1a3c67b", [ null, [ [ - "/css/CSS2/normal-flow/block-replaced-height-001-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "inline-replaced-height-002.xht": [ - "666ddaa7222c7fdf2b3bf3136bd067a81e78bc3a", + "bottom-067.xht": [ + "2ba9a964696cca3bf691f317e32f531df99aa4b4", [ null, [ [ - "/css/CSS2/normal-flow/block-replaced-height-002-ref.xht", + "/css/CSS2/positioning/bottom-019-ref.xht", "==" ] ], {} ] ], - "inline-replaced-height-003.xht": [ - "2bac39dfcaf6b20829f4b056d80fe47a549ee10a", + "bottom-068.xht": [ + "c62e73eb9e37097bec4ddf962336d60885849447", [ null, [ [ - "/css/CSS2/normal-flow/inline-block-replaced-height-003-ref.xht", + "/css/CSS2/positioning/bottom-019-ref.xht", "==" ] ], {} ] ], - "inline-replaced-height-004.xht": [ - "20ddd95d4e3fd433e0ccb4d25abba82954241138", + "bottom-076.xht": [ + "902c734fd01f67950c1cadb17b93616f0ee23e94", [ null, [ [ - "/css/CSS2/normal-flow/block-replaced-height-004-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "inline-replaced-height-005.xht": [ - "c52df329f8ba73d7811ee6b58d5b39e6fcee4c8d", + "bottom-077.xht": [ + "ac8c772c52223537825897a81019bece15f31fe3", [ null, [ [ - "/css/CSS2/normal-flow/block-replaced-height-005-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "inline-replaced-height-006.xht": [ - "d8d332ffab08de5200b2626336612782dbfc2047", + "bottom-078.xht": [ + "c2fa01c5f08133aa65f42fe063c099036e2179e2", [ null, [ [ - "/css/CSS2/normal-flow/block-replaced-height-006-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "inline-replaced-height-007.xht": [ - "093d3ebccd90c559399bd394c1b4aa72e6f5379a", + "bottom-079.xht": [ + "3ded789f711ae31efc5ab420c6ccd1a113ec246b", [ null, [ [ - "/css/CSS2/normal-flow/block-replaced-height-004-ref.xht", + "/css/CSS2/positioning/bottom-079-ref.xht", "==" ] ], {} ] ], - "inline-replaced-height-009.xht": [ - "9edb95ab175d58c346f4207c6609ec8fc46d31d2", + "bottom-080.xht": [ + "7edb44d1404ed0ed763466a3ff506538df0a00d7", [ null, [ [ - "/css/CSS2/positioning/absolute-replaced-width-003b-ref.xht", + "/css/CSS2/positioning/bottom-079-ref.xht", "==" ] ], {} ] ], - "inline-replaced-height-010.xht": [ - "c5498e1f7389d0bbc1584c7ff31ac1ab451ba7b7", + "bottom-088.xht": [ + "86380f75e8383080f7c4ad3505a513ce5bdf5a8f", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "inline-replaced-height-011.xht": [ - "2692e9b9a6f5cb549c28e441f592f8d032db9df0", + "bottom-089.xht": [ + "7bb2c3c580a5f11e03e1f9e42ef9a3a8234ccf67", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "inline-replaced-width-001.xht": [ - "12f518833f3205e1e3b8583556daca23331b12ba", + "bottom-090.xht": [ + "4fa738ea7b6faa7ba391d1a1e50c08b1535c3ca6", [ null, [ [ - "/css/CSS2/normal-flow/inline-replaced-width-001-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "inline-replaced-width-002.xht": [ - "eaa5049dc70d235aad8126cedfcaa7063e0dc21f", + "bottom-091.xht": [ + "61d08dcbc2d85518f5ae19d69c080d09760f04a5", [ null, [ [ - "/css/CSS2/normal-flow/inline-replaced-width-002-ref.xht", + "/css/CSS2/positioning/bottom-019-ref.xht", "==" ] ], {} ] ], - "inline-replaced-width-003.xht": [ - "1624538bf6efccef3a08b9dee05fb073422a5dfa", + "bottom-092.xht": [ + "e2ad2d83efca162fedfd90af01a8435f54d98dc3", [ null, [ [ - "/css/CSS2/normal-flow/inline-replaced-width-003-ref.xht", + "/css/CSS2/positioning/bottom-019-ref.xht", "==" ] ], {} ] ], - "inline-replaced-width-006.xht": [ - "daae2457d0d35edc33d49a79b191ba1b0072695d", + "bottom-100.xht": [ + "407ee7c7e3bd58806ead5b4ca09d63c7f2819bd7", [ null, [ [ - "/css/CSS2/normal-flow/inline-replaced-width-001-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "inline-replaced-width-008.xht": [ - "07224f6cd3ea999ed92d70323294eabd31e874e1", + "bottom-101.xht": [ + "d108fc071ef93d391efc249e532a462821e20c6e", [ null, [ [ - "/css/CSS2/positioning/absolute-replaced-width-003a-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "inline-replaced-width-009.xht": [ - "ca6e9df1191686f1eef08d8045b09565b53d311d", + "bottom-102.xht": [ + "d01813c02ab2637548af2e588f3fcfb24e221faf", [ null, [ [ - "/css/CSS2/positioning/absolute-replaced-width-003c-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "inline-replaced-width-011.xht": [ - "2d7473ef00b17ee56a5818f022754d4312db1a14", + "bottom-103.xht": [ + "3d392a4cbac0620ca54883f7151797d91fffc6ba", [ null, [ [ - "/css/CSS2/normal-flow/inline-replaced-width-011-ref.xht", + "/css/CSS2/positioning/bottom-019-ref.xht", "==" ] ], {} ] ], - "inline-replaced-width-012.xht": [ - "b94ccb299156a97f91f2090d1e88a4348a73ec81", + "bottom-104.xht": [ + "54b8e49cfe28771082a66f8a589e40079791122a", [ null, [ [ - "/css/CSS2/normal-flow/inline-replaced-width-012-ref.xht", + "/css/CSS2/positioning/bottom-019-ref.xht", "==" ] ], {} ] ], - "inline-replaced-width-013.xht": [ - "8ff317755ac57370f93595103fb72d447d64d677", + "bottom-109.xht": [ + "7a5948f6fa489da17c1e36a21d5c3d3fac973220", [ null, [ [ - "/css/CSS2/normal-flow/inline-replaced-width-012-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "inline-replaced-width-014.xht": [ - "b7bb1a2afcb725b85b160b986ec5fd55bb6f1854", + "bottom-110.xht": [ + "dcedf16beb3245110f6d6e398a776f492d061274", [ null, [ [ - "/css/CSS2/normal-flow/inline-replaced-width-014-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "inline-replaced-width-015.xht": [ - "3af87c72f1cbb40a5a7629fe0232a11faae5bf88", + "bottom-111.xht": [ + "4d74234b56d95413d08675c5410db72a8a2b841a", [ null, [ [ - "/css/CSS2/normal-flow/inline-replaced-width-014-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "inline-replaced-width-016.xht": [ - "efbedfa263f418a77facfdc6297ad75a9fe0700b", + "bottom-112.xht": [ + "dd0304961cfd3dd04ece7a698713c26d06ddfc97", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "inline-replaced-width-017.xht": [ - "232dc7622f7c955ec94c8f7636595e21c79bfb39", + "bottom-113.xht": [ + "75234950a91ac2941adefd08deb648130c2d56f3", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/positioning/bottom-113-ref.xht", "==" ] ], {} ] ], - "inline-table-002a.xht": [ - "012b28ba1ce66a946d319ac2d72f2b2f6352e778", + "bottom-applies-to-001.xht": [ + "383e81a7892cca3f6e6006a9b3d7e3fcdc54307b", [ null, [ [ - "/css/CSS2/normal-flow/inline-table-002-ref.xht", + "/css/CSS2/positioning/bottom-applies-to-001-ref.xht", "==" ] ], {} ] ], - "inline-table-002b.xht": [ - "59afc3e4439be44fb8f8f4cd83eeacb22e7b6843", + "bottom-applies-to-002.xht": [ + "8481ac439de906320871c5d9193da923b277e7ed", [ null, [ [ - "/css/CSS2/normal-flow/inline-table-002-ref.xht", + "/css/CSS2/positioning/bottom-applies-to-001-ref.xht", "==" ] ], {} ] ], - "inline-table-003.xht": [ - "ac9dd9c4734ebccafebe1b6ccd09784cd0588698", + "bottom-applies-to-003.xht": [ + "156694cfb6168a7749585350b96adf4370711d99", [ null, [ [ - "/css/CSS2/normal-flow/inline-table-003-ref.xht", + "/css/CSS2/positioning/bottom-applies-to-001-ref.xht", "==" ] ], {} ] ], - "inline-table-height-001.xht": [ - "ac6994869ac76760c91554638746723047d42399", + "bottom-applies-to-004.xht": [ + "9993f88c1fc4cf3f5a706f5e9f7a4783af724d49", [ null, [ [ - "/css/CSS2/normal-flow/inline-table-height-001-ref.xht", + "/css/CSS2/positioning/bottom-applies-to-001-ref.xht", "==" ] ], {} ] ], - "inline-table-height-002.xht": [ - "cb40592402efb346afc597c092c3584e9ad48636", + "bottom-applies-to-005.xht": [ + "5b33e32edc744897b87c92d0687bbc0d998deb13", [ null, [ [ - "/css/CSS2/normal-flow/inline-table-height-002-ref.xht", + "/css/CSS2/positioning/bottom-applies-to-001-ref.xht", "==" ] ], {} ] ], - "inline-table-valign-001.xht": [ - "e23ef327d7b6d0cdf8567852fdc2151cf178e6d3", + "bottom-applies-to-006.xht": [ + "831324ddff274455e9c6897bcf46d21ba253f82c", [ null, [ [ - "/css/CSS2/normal-flow/inline-table-valign-001-ref.xht", + "/css/CSS2/positioning/bottom-applies-to-001-ref.xht", "==" ] ], {} ] ], - "inline-table-width-001a.xht": [ - "bf0267c16a3c396f917bc5296a70b6e3aee3dc1b", + "bottom-applies-to-007.xht": [ + "2dcccbcfca2b26dc377802caf7f2e16716237c3d", [ null, [ [ - "/css/CSS2/normal-flow/inline-table-width-001-ref.xht", + "/css/CSS2/positioning/bottom-applies-to-001-ref.xht", "==" ] ], {} ] ], - "inline-table-width-001b.xht": [ - "c2214139361cce8fabbd203e48fbd2022197fa16", + "bottom-applies-to-009.xht": [ + "dfc784cf382bf4b4c428d81075ab46267736a846", [ null, [ [ - "/css/CSS2/normal-flow/inline-table-width-001-ref.xht", + "/css/CSS2/positioning/bottom-applies-to-001-ref.xht", "==" ] ], {} ] ], - "inline-table-width-002a.xht": [ - "960048b84444bd3e7d5fe29571caee031eb5b5b1", + "bottom-applies-to-012.xht": [ + "1f480bf125ce15e992903517be78f331aacfb679", [ null, [ [ - "/css/CSS2/normal-flow/inline-table-width-002-ref.xht", + "/css/CSS2/positioning/bottom-applies-to-001-ref.xht", "==" ] ], {} ] ], - "inline-table-width-002b.xht": [ - "1fd6f723de354fa0d1daa20af08dfd37c64f679b", + "bottom-applies-to-013.xht": [ + "9469f91ddf83ec88a44650e49e6ff003e15e7a1a", [ null, [ [ - "/css/CSS2/normal-flow/inline-table-width-002-ref.xht", + "/css/CSS2/positioning/bottom-applies-to-001-ref.xht", "==" ] ], {} ] ], - "inline-table-zorder-001.xht": [ - "a6351b9202fd3999b45f08b652d9d75bbe94eed0", + "bottom-applies-to-014.xht": [ + "7157c66713a57c6f74c534b386c803d301f444a4", [ null, [ [ - "/css/CSS2/normal-flow/inline-table-zorder-001-ref.xht", + "/css/CSS2/positioning/bottom-applies-to-001-ref.xht", "==" ] ], {} ] ], - "inline-table-zorder-002.xht": [ - "0377df70b4d70d2b18aa4fd2a9fe5980eebd18e2", + "bottom-applies-to-015.xht": [ + "19c724f80562ef15f5be56139a99c0d3b4e83bb3", [ null, [ [ - "/css/CSS2/normal-flow/inline-table-zorder-001-ref.xht", + "/css/CSS2/positioning/bottom-applies-to-001-ref.xht", "==" ] ], {} ] ], - "inline-table-zorder-003.xht": [ - "ebdfe70277e1900229b869beaa374d25f133cb16", + "bottom-offset-001.xht": [ + "32be0fd8b8d4e0c02571106c8ef3d148056d3d25", [ null, [ [ - "/css/CSS2/normal-flow/inline-table-zorder-003-ref.xht", + "/css/CSS2/positioning/bottom-offset-001-ref.xht", "==" ] ], {} ] ], - "inline-table-zorder-004.xht": [ - "6cbd9aa9982df4870b6e51775215fdf30e02b9aa", + "bottom-offset-002.xht": [ + "757c4e6e6e42662c15181d07c83f99bd452414eb", [ null, [ [ - "/css/CSS2/normal-flow/inline-table-zorder-004-ref.xht", + "/css/CSS2/positioning/bottom-offset-001-ref.xht", "==" ] ], {} ] ], - "inline-table-zorder-005.xht": [ - "278a94ba571fe520f22fc98a1aef30db2db99935", + "bottom-offset-003.xht": [ + "c8d29df0cc77f0b5de2785ab70208c4f5435e028", [ null, [ [ - "/css/CSS2/normal-flow/inline-table-zorder-004-ref.xht", + "/css/CSS2/positioning/bottom-offset-001-ref.xht", "==" ] ], {} ] ], - "inlines-002.xht": [ - "78bb5c37947891cc3de47572fc6f23c664247d64", + "bottom-offset-percentage-001.xht": [ + "828bface3d0a7ca2263cf5e241f4fc15f89c1b66", [ null, [ [ - "/css/CSS2/normal-flow/inlines-002-ref.xht", + "/css/CSS2/positioning/bottom-offset-percentage-001-ref.xht", "==" ] ], {} ] ], - "inlines-013.xht": [ - "20ef0bfe278431bf106eb904c609b0f323226e48", + "dynamic-top-change-001.xht": [ + "10dfc482c1feb3b36685eb2b678295ee8992c399", [ null, [ [ - "/css/CSS2/normal-flow/inlines-013-ref.xht", + "/css/CSS2/positioning/dynamic-top-change-001-ref.xht", "==" ] ], {} ] ], - "inlines-016.xht": [ - "28c825a92f3e99a1a7780239301786ee84acf5fa", + "dynamic-top-change-002.xht": [ + "f6b80fe2048e0b2438810b68b1740d7201436a3d", [ null, [ [ - "/css/CSS2/normal-flow/inlines-016-ref.xht", + "/css/CSS2/positioning/dynamic-top-change-002-ref.xht", "==" ] ], {} ] ], - "inlines-017.xht": [ - "e457c589b49c7ea34ca2d79be90c7b2068dea128", + "dynamic-top-change-003.xht": [ + "1359a047fcb920edd63550d88a2e506e318899f7", [ null, [ [ - "/css/CSS2/normal-flow/inlines-017-ref.xht", + "/css/CSS2/positioning/dynamic-top-change-002-ref.xht", "==" ] ], {} ] ], - "inlines-020.xht": [ - "9799adfb7545df726ec48af75e6e313c20ea8493", + "dynamic-top-change-004.xht": [ + "0f557bd4371390adc07142b34b626ee8a2fe0904", [ null, [ [ - "/css/CSS2/normal-flow/inlines-020-ref.xht", + "/css/CSS2/positioning/dynamic-top-change-002-ref.xht", "==" ] ], {} ] ], - "intrinsic-size-with-negative-margins.html": [ - "93dfc3dfd770be960eec71bc00082a04e7385e97", + "left-004.xht": [ + "0e6d795bd7af2edfbd13f2b7d8fa45d98093c5e2", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/CSS2/positioning/left-004-ref.xht", "==" ] ], {} ] ], - "margin-collapse-through-percentage-height-block.html": [ - "0248ccb910a8de03bf5d0f989b0844cf4bd2cc45", + "left-005.xht": [ + "d24ab9e92126b757241547b97b0f26e18f9e3521", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/CSS2/positioning/left-004-ref.xht", "==" ] ], {} ] ], - "margin-collapse-through-percentage-padding.html": [ - "dfd5015d050689c3c3a01d785ab7b75025794505", + "left-006.xht": [ + "1059837d86636bca4200a02613bf1fdb036c2985", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/CSS2/positioning/left-004-ref.xht", "==" ] ], {} ] ], - "margin-collapse-through-zero-height-block.html": [ - "471a4c7f5a4c054b1141162f88fdda9416343a5b", + "left-007.xht": [ + "1cd12f4e872680d292ef33a0d9a6f32fe8d06daf", [ null, [ [ - "/css/reference/ref-filled-green-200px-square.html", + "/css/CSS2/positioning/left-007-ref.xht", "==" ] ], {} ] ], - "margin-collapsing-dynamic.html": [ - "f1b8ee5ddb6a095e6d0e4b9653b577bec2aa6391", + "left-008.xht": [ + "75f3f43f33c19ad329e1ba97fb75539bf4d3c29a", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/positioning/left-007-ref.xht", "==" ] ], {} ] ], - "margin-collapsing-in-table-caption-001.html": [ - "9e936237396725bcd057ea3e417746ada9816314", + "left-016.xht": [ + "b3f2590d88708b81b18c2c8b8780dc6cf2300a3d", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/CSS2/positioning/left-004-ref.xht", "==" ] ], {} ] ], - "margin-collapsing-in-table-caption-002.html": [ - "a7fefa47f0b3c0931e20601bdb86c9fb9513c499", + "left-017.xht": [ + "3d98c0bde684a00d18a9d9cbb16a32275ffb8171", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/CSS2/positioning/left-004-ref.xht", "==" ] ], {} ] ], - "max-height-001.xht": [ - "0f84a90b588fb8bb2999f555d91baf528fbb3ee3", + "left-018.xht": [ + "4e629237db346d32cbc5b2787c0235fad6bb3543", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/positioning/left-004-ref.xht", "==" ] ], {} ] ], - "max-height-002.xht": [ - "bccc30f7ecd493a019cbfe46f5d19131ead69edf", + "left-019.xht": [ + "a384baf935f30d80ae64a38970942ef348431ea7", [ null, [ [ - "/css/CSS2/normal-flow/height-001-ref.xht", + "/css/CSS2/reference/ref-black-96px-square-no-red.xht", "==" ] ], {} ] ], - "max-height-003.xht": [ - "8b63b2890d42c8daaa66e2c1d5f3bcaa09d03e43", + "left-020.xht": [ + "9a904fa1fbbd55d88d06eefdff0a85a78f7eedd4", [ null, [ [ - "/css/CSS2/normal-flow/height-003-ref.xht", + "/css/CSS2/reference/ref-black-96px-square-no-red.xht", "==" ] ], {} ] ], - "max-height-004.xht": [ - "0cc77461474bdddef6249d77a13e9898d9d96b0e", + "left-028.xht": [ + "4542340da883162c6e29508b6055b0767a546b1c", [ null, [ [ - "/css/CSS2/normal-flow/height-001-ref.xht", + "/css/CSS2/positioning/left-004-ref.xht", "==" ] ], {} ] ], - "max-height-005.xht": [ - "76b837b0cee4972e02fe65014ceec3f5e5caf973", + "left-029.xht": [ + "cd51d3730091722b00ec3f8cdd82d4458c2f67fa", [ null, [ [ - "/css/CSS2/normal-flow/height-001-ref.xht", + "/css/CSS2/positioning/left-004-ref.xht", "==" ] ], {} ] ], - "max-height-006.xht": [ - "5874a23dd543bcd19a898885f1425f29e2cd596d", + "left-030.xht": [ + "9881130195f8d160303f33be87f39d2804de57cd", [ null, [ [ - "/css/CSS2/normal-flow/height-006-ref.xht", + "/css/CSS2/positioning/left-004-ref.xht", "==" ] ], {} ] ], - "max-height-007.xht": [ - "80ec6f6628a53f8167c52a024b7c860b63a6a1fa", + "left-031.xht": [ + "0184a9cce04dd080e0e4cbe0c2c13c79d87b1d21", [ null, [ [ - "/css/CSS2/normal-flow/height-006-ref.xht", + "/css/CSS2/positioning/left-031-ref.xht", "==" ] ], {} ] ], - "max-height-012.xht": [ - "dde742d73760c97a87f95a0f1f3d99368f086ee7", + "left-032.xht": [ + "05c9cc881888f70bab7a1d0b7821103853dde686", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/positioning/left-031-ref.xht", "==" ] ], {} ] ], - "max-height-013.xht": [ - "13381a1efe71b61fb2dcd79368fe7ae6e4b11af0", + "left-040.xht": [ + "41807d786515bde809db1eaadafff598b66d79b5", [ null, [ [ - "/css/CSS2/normal-flow/height-001-ref.xht", + "/css/CSS2/positioning/left-004-ref.xht", "==" ] ], {} ] ], - "max-height-015.xht": [ - "6adf8eca1de5110be836f55a8a1d40efe6f4467d", + "left-041.xht": [ + "7bab240424dbcfa95e1eff03fa20ce4d1bd1b8ea", [ null, [ [ - "/css/CSS2/normal-flow/height-001-ref.xht", + "/css/CSS2/positioning/left-004-ref.xht", "==" ] ], {} ] ], - "max-height-016.xht": [ - "79efaea0b389e485f26055e30adc7a16ebb3b9df", + "left-042.xht": [ + "3d473f85ed2a87737d6d62586e1f96edafb030ff", [ null, [ [ - "/css/CSS2/normal-flow/height-001-ref.xht", + "/css/CSS2/positioning/left-004-ref.xht", "==" ] ], {} ] ], - "max-height-017.xht": [ - "aadbcf30d0ac8abedfd512c6083baca06fcde9e7", + "left-043.xht": [ + "2e2f669a2f564e9c8a67738533d12361f4533346", [ null, [ [ - "/css/CSS2/normal-flow/height-006-ref.xht", + "/css/CSS2/reference/ref-black-96px-square-no-red.xht", "==" ] ], {} ] ], - "max-height-018.xht": [ - "8196689c43cd7e6663552f2a58eca6b256b63474", + "left-044.xht": [ + "be9b986a3f4bfdef69b1d2f9bd3785c63cd41171", [ null, [ [ - "/css/CSS2/normal-flow/height-006-ref.xht", + "/css/CSS2/reference/ref-black-96px-square-no-red.xht", "==" ] ], {} ] ], - "max-height-023.xht": [ - "97b0e5af386a2819b5d7f3445d494057ef980116", + "left-052.xht": [ + "d883664dca22b7f9aae9b0af3fdb70630c5bee35", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/positioning/left-004-ref.xht", "==" ] ], {} ] ], - "max-height-024.xht": [ - "5e425f74951f9165152d7d2e977c6a878d26c27a", + "left-053.xht": [ + "459d859da02db779eaa0c66ca4a3c4e094a2de96", [ null, [ [ - "/css/CSS2/normal-flow/height-001-ref.xht", + "/css/CSS2/positioning/left-004-ref.xht", "==" ] ], {} ] ], - "max-height-025.xht": [ - "118a8316d2da51e57b45222a7ad30e02d9eb188c", + "left-054.xht": [ + "de6209cccf33babb0f1a51f75df8140f4dd8fb62", [ null, [ [ - "/css/CSS2/normal-flow/max-height-025-ref.xht", + "/css/CSS2/positioning/left-004-ref.xht", "==" ] ], {} ] ], - "max-height-026.xht": [ - "e19f6cc64d02157ff634a5ae069d00b29629a4dd", + "left-055.xht": [ + "ba18af79a95428126dc67f2eca5cddb3256324f1", [ null, [ [ - "/css/CSS2/normal-flow/height-001-ref.xht", + "/css/CSS2/reference/ref-black-96px-square-no-red.xht", "==" ] ], {} ] ], - "max-height-027.xht": [ - "ee9fb95c866964b96e5259dad6ee617fd841e8e4", + "left-056.xht": [ + "fffb510b04fb6c5af3c5dc7a10b153b764fcd7ae", [ null, [ [ - "/css/CSS2/normal-flow/height-001-ref.xht", + "/css/CSS2/reference/ref-black-96px-square-no-red.xht", "==" ] ], {} ] ], - "max-height-028.xht": [ - "1c33b309d03fbe177bbcddcde48f0e893da5896d", + "left-064.xht": [ + "dc4f6e623d4bc50aca46cf7b1f470ca335e141f2", [ null, [ [ - "/css/CSS2/normal-flow/height-006-ref.xht", + "/css/CSS2/positioning/left-004-ref.xht", "==" ] ], {} ] ], - "max-height-029.xht": [ - "cc8fd9d2296a0c9e4fa3c54e5d4f9554899f1ab6", + "left-065.xht": [ + "5c9fd644c28fb7813c79008578f7209a403faa08", [ null, [ [ - "/css/CSS2/normal-flow/height-006-ref.xht", + "/css/CSS2/positioning/left-004-ref.xht", "==" ] ], {} ] ], - "max-height-034.xht": [ - "22278b5a2fd3ed7be90e2827045695ae6b3897d3", + "left-066.xht": [ + "f87772fb95c8a283487e3fbe3778f2d090fa1745", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/positioning/left-004-ref.xht", "==" ] ], {} ] ], - "max-height-035.xht": [ - "ce2293f172a6b51bd6372fb7b811d200239f87b3", + "left-067.xht": [ + "e73763eb52b28eef3d35ccbb50653b302a18378c", [ null, [ [ - "/css/CSS2/normal-flow/height-001-ref.xht", + "/css/CSS2/reference/ref-black-96px-square-no-red.xht", "==" ] ], {} ] ], - "max-height-036.xht": [ - "48b1dcc1e2c443a26f7fec4d20ee3fa16b377149", + "left-068.xht": [ + "977f8003529d34361182d62aff4ce2ed53c8bdad", [ null, [ [ - "/css/CSS2/normal-flow/max-height-036-ref.xht", + "/css/CSS2/reference/ref-black-96px-square-no-red.xht", "==" ] ], {} ] ], - "max-height-037.xht": [ - "a88f866e79a2122efef1245f91a30c9ac7a2fe99", + "left-076.xht": [ + "4608fd06bc0759a527fc073174d5a5a287cf59d6", [ null, [ [ - "/css/CSS2/normal-flow/height-001-ref.xht", + "/css/CSS2/positioning/left-004-ref.xht", "==" ] ], {} ] ], - "max-height-038.xht": [ - "276b825615f2da39067e8592f8528ed2b7f43eaf", + "left-077.xht": [ + "0874c82b13132fd2a08ef198c8691a7d942c17fc", [ null, [ [ - "/css/CSS2/normal-flow/height-001-ref.xht", + "/css/CSS2/positioning/left-004-ref.xht", "==" ] ], {} ] ], - "max-height-039.xht": [ - "bffae8b7420335dd246bf6d915ee81253c88da8e", + "left-078.xht": [ + "cf325459fd906f7efce1bc01a6abba84bcfe74e4", [ null, [ [ - "/css/CSS2/normal-flow/height-006-ref.xht", + "/css/CSS2/positioning/left-004-ref.xht", "==" ] ], {} ] ], - "max-height-040.xht": [ - "bac9d2aa919deabfedb17bbd55c04d16908eb392", + "left-079.xht": [ + "f37cc322906944067797b21c630228a94cd60a3f", [ null, [ [ - "/css/CSS2/normal-flow/height-006-ref.xht", + "/css/CSS2/positioning/left-079-ref.xht", "==" ] ], {} ] ], - "max-height-045.xht": [ - "1b87f66dbf6be6f3ef47f5e0ef4a0da6ba98eefe", + "left-080.xht": [ + "b88389e7ff7efd2c914af91e524b0eae60f15d40", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/positioning/left-079-ref.xht", "==" ] ], {} ] ], - "max-height-046.xht": [ - "ec21de4f3041851b36752a6a796aed5106fb894e", + "left-088.xht": [ + "7364c57fdffaa8eb56a25f3eab31d9eee5723ea2", [ null, [ [ - "/css/CSS2/normal-flow/height-001-ref.xht", + "/css/CSS2/positioning/left-004-ref.xht", "==" ] ], {} ] ], - "max-height-047.xht": [ - "e7d5c2757e4c892cc1360ec17cbb034f552dc018", + "left-089.xht": [ + "30d440ea6ec6db7265b4c8d90daa23cd86cfc93a", [ null, [ [ - "/css/CSS2/normal-flow/max-height-047-ref.xht", + "/css/CSS2/positioning/left-004-ref.xht", "==" ] ], {} ] ], - "max-height-048.xht": [ - "1baddbb1e416220062c38f72105ce13611e9a8d7", + "left-090.xht": [ + "a0377e69308402b9e93bc45d1f64d6a7c6daa732", [ null, [ [ - "/css/CSS2/normal-flow/height-001-ref.xht", + "/css/CSS2/positioning/left-004-ref.xht", "==" ] ], {} ] ], - "max-height-049.xht": [ - "4a0df1e11122d12e5f1273551d97d0738591e9b0", + "left-091.xht": [ + "076cfb2544914ecd4585f1b10bae01453829af86", [ null, [ [ - "/css/CSS2/normal-flow/height-001-ref.xht", + "/css/CSS2/reference/ref-black-96px-square-no-red.xht", "==" ] ], {} ] ], - "max-height-050.xht": [ - "fac7d4118e0607fb054ffcd9bf452abefe8e184b", + "left-092.xht": [ + "012ef26eb0e2e032d5a31d37b9c03b53d70532e2", [ null, [ [ - "/css/CSS2/normal-flow/height-006-ref.xht", + "/css/CSS2/reference/ref-black-96px-square-no-red.xht", "==" ] ], {} ] ], - "max-height-051.xht": [ - "3466b4c3f66f3095e1268316e260ae32be77dded", + "left-100.xht": [ + "be48597d2498dc65d7ef42d52be48456c565b6db", [ null, [ [ - "/css/CSS2/normal-flow/height-006-ref.xht", + "/css/CSS2/positioning/left-004-ref.xht", "==" ] ], {} ] ], - "max-height-056.xht": [ - "40a360e15931b4a19eb6765fa8dc99897047f82e", + "left-101.xht": [ + "2e1734dc2f605b779bae2d2beb90ae052010875b", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/positioning/left-004-ref.xht", "==" ] ], {} ] ], - "max-height-057.xht": [ - "a39adf2c6d803855c27e1e4d6e4b13be068bf6b2", + "left-102.xht": [ + "c3d71d622bde08ea47c601005e73cdfee18ccbe3", [ null, [ [ - "/css/CSS2/normal-flow/height-001-ref.xht", + "/css/CSS2/positioning/left-004-ref.xht", "==" ] ], {} ] ], - "max-height-058.xht": [ - "2b2db4efc2cd830c5a71b539ae36fa0597c52d15", + "left-103.xht": [ + "0cfe26108b65ffca443eb2801bcb14af996b8068", [ null, [ [ - "/css/CSS2/normal-flow/max-height-058-ref.xht", + "/css/CSS2/reference/ref-black-96px-square-no-red.xht", "==" ] ], {} ] ], - "max-height-059.xht": [ - "f12e3738ec99a139f415ad1cb1f5b41872c77f3a", + "left-104.xht": [ + "ece18045afd20da4b6915327c9426588aef3f1ec", [ null, [ [ - "/css/CSS2/normal-flow/height-001-ref.xht", + "/css/CSS2/reference/ref-black-96px-square-no-red.xht", "==" ] ], {} ] ], - "max-height-060.xht": [ - "cf4ba3a9d15a3caf0f616f9c2e43981c85f1a6df", + "left-109.xht": [ + "a2b3738614f60ca895027fdd15b96340933c2f59", [ null, [ [ - "/css/CSS2/normal-flow/height-001-ref.xht", + "/css/CSS2/positioning/left-004-ref.xht", "==" ] ], {} ] ], - "max-height-061.xht": [ - "1fe10e5053cb5750a0d0ce51482388758ddbd35b", + "left-110.xht": [ + "60cfd186e67414583f14b34863ad9bd89e81cb5f", [ null, [ [ - "/css/CSS2/normal-flow/height-061-ref.xht", + "/css/CSS2/positioning/left-004-ref.xht", "==" ] ], {} ] ], - "max-height-062.xht": [ - "56cac061df682de259a5e5104d12a1134fb24807", + "left-111.xht": [ + "7bfffa2ac14eec77416680020cd5f2fb1b905367", [ null, [ [ - "/css/CSS2/normal-flow/height-061-ref.xht", + "/css/CSS2/positioning/left-004-ref.xht", "==" ] ], {} ] ], - "max-height-067.xht": [ - "6cb3055fc266fd3bcc6dbef9467fdc9e43c2bfe3", + "left-112.xht": [ + "758738c6dc29651fb62485e28d4c6fc03bd2d32f", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/positioning/left-004-ref.xht", "==" ] ], {} ] ], - "max-height-068.xht": [ - "461ceca75e69af09eec77bba3f7a4a9fbb0777f1", + "left-113.xht": [ + "a27eee6f8d3f10e3ecbd004b17632df1d898ff9b", [ null, [ [ - "/css/CSS2/normal-flow/height-067-ref.xht", + "/css/CSS2/positioning/left-113-ref.xht", "==" ] ], {} ] ], - "max-height-069.xht": [ - "3679994de4b18a7a2c0e58755cd272c9b4345579", + "left-applies-to-001.xht": [ + "160cebc5d3aa8f8a60ba6bdc676bde678032286f", [ null, [ [ - "/css/CSS2/normal-flow/max-height-069-ref.xht", + "/css/CSS2/positioning/left-applies-to-001-ref.xht", "==" ] ], {} ] ], - "max-height-070.xht": [ - "c80e5537fc57006413d88f5b58f672060b1fe1a0", + "left-applies-to-002.xht": [ + "a04d37a206f435eadadac3c80137ad1f9e16deca", [ null, [ [ - "/css/CSS2/normal-flow/height-067-ref.xht", + "/css/CSS2/positioning/left-applies-to-001-ref.xht", "==" ] ], {} ] ], - "max-height-071.xht": [ - "1e1f3286f4c0cf16cda6fb63487749413bca0a9f", + "left-applies-to-003.xht": [ + "63c9b19b99acd42151a22bc6396c4346ff2fcb5d", [ null, [ [ - "/css/CSS2/normal-flow/height-067-ref.xht", + "/css/CSS2/positioning/left-applies-to-001-ref.xht", "==" ] ], {} ] ], - "max-height-072.xht": [ - "afbd71d3d3ac424fc194f9a37f74d4778e1fcede", + "left-applies-to-004.xht": [ + "ca9733a29222d6fbabd082bcbff4dd428b5d79a8", [ null, [ [ - "/css/CSS2/normal-flow/height-072-ref.xht", + "/css/CSS2/positioning/left-applies-to-001-ref.xht", "==" ] ], {} ] ], - "max-height-073.xht": [ - "e376a7c042f31d0e298016853f3a232ac368a8dd", + "left-applies-to-005.xht": [ + "7f987dbe4c716f46f1d25576e60f69f614a662dc", [ null, [ [ - "/css/CSS2/normal-flow/height-072-ref.xht", + "/css/CSS2/positioning/left-applies-to-001-ref.xht", "==" ] ], {} ] ], - "max-height-078.xht": [ - "5e4d901710aa7a246c4a23196c99141f7fcee863", + "left-applies-to-006.xht": [ + "5d36bcd8a559f6e1f785767cc3a4dbf8e5395fed", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/positioning/left-applies-to-001-ref.xht", "==" ] ], {} ] ], - "max-height-079.xht": [ - "341818aecdc7ccd27b73ad76223ee9e2c596ef98", + "left-applies-to-007.xht": [ + "56bec1ffec7f790ba2620c0d3b0488e0b6f44f5f", [ null, [ [ - "/css/CSS2/normal-flow/height-067-ref.xht", + "/css/CSS2/positioning/left-applies-to-001-ref.xht", "==" ] ], {} ] ], - "max-height-080.xht": [ - "8d1b087a0246292c98679c50e46612d28459988a", + "left-applies-to-009.xht": [ + "ba403211acd77813e79ae1edbe04759be8842e70", [ null, [ [ - "/css/CSS2/normal-flow/max-height-025-ref.xht", + "/css/CSS2/positioning/left-applies-to-001-ref.xht", "==" ] ], {} ] ], - "max-height-081.xht": [ - "07e4112ce06959754d76f20a142029994c08b80f", + "left-applies-to-012.xht": [ + "1ee98e090cd99cbbc7d14c1a755cb069fa6cc3ff", [ null, [ [ - "/css/CSS2/normal-flow/height-067-ref.xht", + "/css/CSS2/positioning/left-applies-to-001-ref.xht", "==" ] ], {} ] ], - "max-height-082.xht": [ - "832e3b2dc62fb813c9e8bc7f18b6b665950a0e5c", + "left-applies-to-013.xht": [ + "bfc4c383bbe12df9054733f18735ad760cdaa9b1", [ null, [ [ - "/css/CSS2/normal-flow/height-067-ref.xht", + "/css/CSS2/positioning/left-applies-to-001-ref.xht", "==" ] ], {} ] ], - "max-height-083.xht": [ - "dbd0b77a4ef9a0a14c8fcb6450acb6f66c2f633b", + "left-applies-to-014.xht": [ + "8eba0cdd1c47ca7edb549837fd36d0cafbadaf3b", [ null, [ [ - "/css/CSS2/normal-flow/height-006-ref.xht", + "/css/CSS2/positioning/left-applies-to-001-ref.xht", "==" ] ], {} ] ], - "max-height-084.xht": [ - "4689363816e15364ec69111e394dcf674250ffcf", + "left-applies-to-015.xht": [ + "ac799f6b97f2eace0afd4dcb0d1f414c59eb1aa6", [ null, [ [ - "/css/CSS2/normal-flow/height-006-ref.xht", + "/css/CSS2/positioning/left-applies-to-001-ref.xht", "==" ] ], {} ] ], - "max-height-089.xht": [ - "374b4be5d9b66194cf7777d4c3a08df15d719455", + "left-offset-001.xht": [ + "add464c90e804577cadfc54bd148cfb3a61f6b7f", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/positioning/left-offset-001-ref.xht", "==" ] ], {} ] ], - "max-height-090.xht": [ - "1c95b08ccf78a6573c2ed6facfa0481ddbe2544c", + "left-offset-002.xht": [ + "afa4d7951b6958d1e3fb60635ff2d6a178c5eba4", [ null, [ [ - "/css/CSS2/normal-flow/height-001-ref.xht", + "/css/CSS2/positioning/left-offset-001-ref.xht", "==" ] ], {} ] ], - "max-height-091.xht": [ - "436a6629eb19862d7c6a095bb66de39e89b92e5f", + "left-offset-003.xht": [ + "8b7f36b75d47e583dac82dd036308835863726ee", [ null, [ [ - "/css/CSS2/normal-flow/height-003-ref.xht", + "/css/CSS2/positioning/left-offset-003-ref.xht", "==" ] ], {} ] ], - "max-height-092.xht": [ - "ec4adfa1623cba8a144292006d1ddd1a602e8ec4", + "left-offset-percentage-001.xht": [ + "9d3087b695b9c35a6fb6060671a03f567b0283aa", [ null, [ [ - "/css/CSS2/normal-flow/height-001-ref.xht", + "/css/CSS2/positioning/left-offset-percentage-001-ref.xht", "==" ] ], {} ] ], - "max-height-093.xht": [ - "ad7861c5e7241aa0d2f9675ffedcf4e9ac049d0d", + "left-offset-percentage-002.xht": [ + "425d31c30f4916bf26a914aa9fff438dbc2cce62", [ null, [ [ - "/css/CSS2/normal-flow/height-001-ref.xht", + "/css/CSS2/positioning/left-offset-percentage-002-ref.xht", "==" ] ], {} ] ], - "max-height-094.xht": [ - "e66e17273af9bc18dce07a774cceb41ec3997e93", + "position-006.xht": [ + "05b2c98cffad9fc76f2d1bba58e8e589f2005aa4", [ null, [ [ - "/css/CSS2/normal-flow/height-006-ref.xht", + "/css/CSS2/positioning/position-006-ref.xht", "==" ] ], {} ] ], - "max-height-095.xht": [ - "e34c167523bce0f83662e7ce33dd4bec94e1ffc4", + "position-absolute-001.xht": [ + "f9e4b67371a9544726223c853a74b2b1d4e397f9", [ null, [ [ - "/css/CSS2/normal-flow/height-006-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "max-height-100.xht": [ - "7a4d489a9b2bdfe679e4da9242b918e6d8a81082", + "position-absolute-002.xht": [ + "74e78888e1107014983327898cbc417d85d35dfe", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/positioning/position-absolute-002-ref.xht", "==" ] ], {} ] ], - "max-height-101.xht": [ - "ca382d2eeca2a10dcdf18cc56c772b03eb0388c3", + "position-absolute-003.xht": [ + "26404d3e7983471c512e21303959fc02f27b316f", [ null, [ [ - "/css/CSS2/normal-flow/height-001-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "max-height-102.xht": [ - "bea70e305537f926476c44c2f72239721e65eb29", + "position-absolute-004.xht": [ + "a8c73904c051857f124c5ebf8170f70eb4a83098", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/positioning/position-absolute-004-ref.xht", "==" ] ], {} ] ], - "max-height-103.xht": [ - "400dc10292330ac3c793452daceb2042f6193475", + "position-absolute-006.xht": [ + "85b7ae976f903d252295e02029adb558f1b15afa", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/positioning/position-absolute-004-ref.xht", "==" ] ], {} ] ], - "max-height-104.xht": [ - "ad08a7427ab77b773ff0458e855e0e8311b4132f", + "position-absolute-007.xht": [ + "e9ec2a5f168c63667e6801f7ad586350b95f21dd", [ null, [ [ - "/css/CSS2/normal-flow/height-003-ref.xht", + "/css/CSS2/positioning/position-absolute-007-ref.xht", "==" ] ], {} ] ], - "max-height-107.xht": [ - "c62d236d280786e77ed04c48e9783f6b37e9c592", + "position-absolute-008.xht": [ + "73db2f85f3656eb88bfd262adafd4c03597ffb17", [ null, [ [ - "/css/CSS2/normal-flow/max-height-107-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "max-height-110.xht": [ - "d2f39353213a72dbc72bf5803d316d6eb0d8aad2", + "position-applies-to-001.xht": [ + "f50512b55800c049f419fbd7e8f3691101615864", [ null, [ [ - "/css/CSS2/normal-flow/max-height-110-ref.xht", + "/css/CSS2/positioning/bottom-applies-to-001-ref.xht", "==" ] ], {} ] ], - "max-height-applies-to-005.xht": [ - "ac527ef65711bcd8daed12648f5370bca4915020", + "position-applies-to-002.xht": [ + "62c7f8036def8baa4b91ee46f06e559f3babdb46", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/positioning/bottom-applies-to-001-ref.xht", "==" ] ], {} ] ], - "max-height-applies-to-006.xht": [ - "c21bfcb3ee2083acfa67a3674503896b2b23e5e6", + "position-applies-to-003.xht": [ + "0f77db74cec82c75c97b1f7c1779ecd6a8e28cb4", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/positioning/bottom-applies-to-001-ref.xht", "==" ] ], {} ] ], - "max-height-applies-to-008.xht": [ - "77aa90490566de9113229bd87d32829c5cc9c2d9", + "position-applies-to-004.xht": [ + "e71d67df3f50279908cbf47c129f5f3fad4d9f83", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/positioning/bottom-applies-to-001-ref.xht", "==" ] ], {} ] ], - "max-height-applies-to-009.xht": [ - "6cf80484bf0aa23ae1ce8ab631729ff1f963534c", + "position-applies-to-005.xht": [ + "b2106b722dfdc04394ec376a44c2a547123f9f5a", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/positioning/bottom-applies-to-001-ref.xht", "==" ] ], {} ] ], - "max-height-applies-to-012.xht": [ - "641574da8577f86946e908c8a2491b2b3211555e", + "position-applies-to-006.xht": [ + "2e1cb1562fbbbe3d6003b6608af0c1b336829e4b", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/positioning/bottom-applies-to-001-ref.xht", "==" ] ], {} ] ], - "max-height-applies-to-013.xht": [ - "bb11808110b84336bb5770b52cb938b90403632d", + "position-applies-to-007.xht": [ + "944e2a82a680bb36f2bb16af2294fb361ec931d7", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/positioning/bottom-applies-to-001-ref.xht", "==" ] ], {} ] ], - "max-height-applies-to-014.xht": [ - "ced76440bdff1a83a931b5ee95c51eab87860ac3", + "position-applies-to-009.xht": [ + "06139270f053fdac569ebf24135f743ab1c5eb67", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/positioning/bottom-applies-to-001-ref.xht", "==" ] ], {} ] ], - "max-height-applies-to-015.xht": [ - "d7f85253121bf3819452b53853bda02da87087cb", + "position-applies-to-012.xht": [ + "34206d65bd1dc9d5377e0f1dc9d16397bbda61cf", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/positioning/bottom-applies-to-001-ref.xht", "==" ] ], {} ] ], - "max-height-applies-to-016.xht": [ - "b229816ceba8248155f000901bc09e1fe877e222", + "position-applies-to-013.xht": [ + "0b70b92ba114decfe74d0b40ab39d1fd87c23f92", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/positioning/bottom-applies-to-001-ref.xht", "==" ] ], {} ] ], - "max-height-percentage-001.xht": [ - "5ac6f609e9c68384771a207119363215ad8149ca", + "position-applies-to-014.xht": [ + "c02ce086f921030db7b08f32c2fb8059bfb5e2c1", [ null, [ [ - "/css/CSS2/normal-flow/max-height-percentage-001-ref.xht", + "/css/CSS2/positioning/bottom-applies-to-001-ref.xht", "==" ] ], {} ] ], - "max-height-percentage-002.xht": [ - "a495641d7f709fe51455a510fd5547f2c37274b9", + "position-applies-to-015.xht": [ + "1a5e69d005a69105a37aec88523a42532a2c86a0", [ null, [ [ - "/css/CSS2/normal-flow/max-height-percentage-002-ref.xht", + "/css/CSS2/positioning/bottom-applies-to-001-ref.xht", "==" ] ], {} ] ], - "max-height-percentage-003.xht": [ - "b5c87820bd3f896a49044be19b9a24c2ad33f871", + "position-fixed-001.xht": [ + "8cb1e847de28f8b346cf83a2f5f19ceb0109811d", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "max-height-separates-margin.html": [ - "b14ed54e0638c02f33d4f316ef73bb3876789846", + "position-fixed-007.xht": [ + "78c34ccf8401f448b72331f22abf373167ce09fd", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/CSS2/positioning/position-fixed-007-ref.xht", "==" ] ], {} ] ], - "max-width-001.xht": [ - "1e2d590dfb44bdef37e2bfb4429ec640f188ddd1", + "position-relative-001.xht": [ + "82cb630197ff7fc6b69fd14997ab4f03905af9b7", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/positioning/position-relative-001-ref.xht", "==" ] ], {} ] ], - "max-width-002.xht": [ - "fc4690f7aefa2e5a22102c54759d2df2afe5487e", + "position-relative-003.xht": [ + "19fdc182f32c582ee2f14218e6fff3a2dfecfeb8", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/positioning/position-relative-003-ref.xht", "==" ] ], {} ] ], - "max-width-003.xht": [ - "1dab647fed220e3f27226d97db152df564e7142d", + "position-relative-004.xht": [ + "5e7dfad42633304d9d9712c257db164e49d07760", [ null, [ [ - "/css/CSS2/normal-flow/max-width-003-ref.xht", + "/css/CSS2/positioning/position-relative-004-ref.xht", "==" ] ], {} ] ], - "max-width-004.xht": [ - "39cdde5f8c37badbd6de4c87e10b23cb75eb9de8", + "position-relative-005.xht": [ + "6c3097305f60b9a61d90fa6d64ba15a76d9323bd", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/positioning/position-relative-005-ref.xht", "==" ] ], {} ] ], - "max-width-005.xht": [ - "109535ad4d5050a2500c199477124e5b0ed18625", + "position-relative-006.xht": [ + "e239aac182104e4d34d828847cd15eafc236505f", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/positioning/position-relative-005-ref.xht", "==" ] ], {} ] ], - "max-width-006.xht": [ - "fd61f85a6fd0e0c32fdd7db1d2ab04fa3900e926", + "position-relative-007.xht": [ + "c0fef82a9362b5cccc4697ab6e6df12b01d1731d", [ null, [ [ - "/css/CSS2/normal-flow/max-width-006-ref.xht", + "/css/CSS2/positioning/position-relative-005-ref.xht", "==" ] ], {} ] ], - "max-width-007.xht": [ - "d5a3c2151b3bcac6b9b8f8534c09e993d8a4885f", + "position-relative-009.xht": [ + "413693cbba0eb6ad7c53c843de88bcdb0bf591c4", [ null, [ [ - "/css/CSS2/normal-flow/max-width-006-ref.xht", + "/css/CSS2/positioning/position-relative-005-ref.xht", "==" ] ], {} ] ], - "max-width-012.xht": [ - "5a4b873d0af671b02e0bd5f856e9a6105ad374bc", + "position-relative-010.xht": [ + "9966bb0093e6cfb13c0835c995a839374132e2c4", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/positioning/position-relative-005-ref.xht", "==" ] ], {} ] ], - "max-width-013.xht": [ - "b9efbf7b3c8d1b9a02cd1813dd7d08be43d166c0", + "position-relative-013.xht": [ + "f9bd74aeec1322f7f8f6c778be58b381c782776e", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "max-width-015.xht": [ - "26643f9fd8f59b66350595c93f6d38245319538a", + "position-relative-014.xht": [ + "4a563ca84fb2a27303533803b3c8db6c821b62cd", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/positioning/position-relative-014-ref.xht", "==" ] ], {} ] ], - "max-width-016.xht": [ - "e6c932e392acc00c8e3059b21545142a6d7c4321", + "position-relative-015.xht": [ + "9e86a29cbd4f1f60a7c83d4b738b01c64a74b092", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/positioning/position-relative-014-ref.xht", "==" ] ], {} ] ], - "max-width-017.xht": [ - "0d3cacee8b01cef36303f31430b31440ba7bb3d1", + "position-relative-016.xht": [ + "31dd72625b8863f07162be65941040b1e5195005", [ null, [ [ - "/css/CSS2/normal-flow/max-width-006-ref.xht", + "/css/CSS2/positioning/position-relative-016-ref.xht", "==" ] ], {} ] ], - "max-width-018.xht": [ - "e2ffd86a1fdd54ba35efc35b242a65bf5b66a18a", + "position-relative-017.xht": [ + "8d9396b032f9b2a4aa8b2ab6e3293d3ebbe31190", [ null, [ [ - "/css/CSS2/normal-flow/max-width-006-ref.xht", + "/css/CSS2/positioning/position-relative-014-ref.xht", "==" ] ], {} ] ], - "max-width-023.xht": [ - "be4015cf245b4a7f8487e31b51cb4901baafd8fd", + "position-relative-018.xht": [ + "b28f6678902fef16a6e4a8c6cd4c9d5da8b5f37e", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/positioning/position-relative-018-ref.xht", "==" ] ], {} ] ], - "max-width-024.xht": [ - "f0b227b613cb722d44860cee6a71c5dfeba9aba2", + "position-relative-019.xht": [ + "dbd76359c6aeb4484e263c78de772141166b187c", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/positioning/position-relative-014-ref.xht", "==" ] ], {} ] ], - "max-width-025.xht": [ - "01d5de2399d4a0a38fd3cd25f9ce224c6fc81a25", + "position-relative-027.xht": [ + "3b20254fa12dabb0dfaee779a6e7b86f8269175d", [ null, [ [ - "/css/CSS2/normal-flow/max-width-025-ref.xht", + "/css/CSS2/positioning/position-relative-027-ref.xht", "==" ] ], {} ] ], - "max-width-026.xht": [ - "fe1d6f8143afb4da500451c860e31fdc043d9eea", + "position-relative-028.xht": [ + "6f2ab355c059a2d1359c8c21b495b81202e4df26", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/positioning/position-relative-028-ref.xht", "==" ] ], {} ] ], - "max-width-027.xht": [ - "ef15a0414624fba0ad146aec2a67633da4a54f52", + "position-relative-029.xht": [ + "65254ee063bc2705a1da4b6a9f7fb559500144b6", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/positioning/position-relative-028-ref.xht", "==" ] ], {} ] ], - "max-width-028.xht": [ - "73d79099b2f905280151039925ee9ba8506f24f4", + "position-relative-030.xht": [ + "556b81c214f41c6ba2310bfbd5c2fe7b1fc9a14a", [ null, [ [ - "/css/CSS2/normal-flow/max-width-006-ref.xht", + "/css/CSS2/positioning/position-relative-030-ref.xht", "==" ] ], {} ] ], - "max-width-029.xht": [ - "2c86c6bc42b9d50057c35c402d8a812e00e15d8c", + "position-relative-031.xht": [ + "1e63f42bfdd03cf61cf0a4e4e06704bfe6b5a18c", [ null, [ [ - "/css/CSS2/normal-flow/max-width-006-ref.xht", + "/css/CSS2/positioning/position-relative-031-ref.xht", "==" ] ], {} ] ], - "max-width-034.xht": [ - "28e7798890471ac4c996a1afcd8cbb9ad5583045", + "position-relative-032.xht": [ + "88cd4557d4a0e04323f93d18c49b189f6b42d078", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/positioning/position-relative-032-ref.xht", "==" ] ], {} ] ], - "max-width-035.xht": [ - "0e024daf0976b22cdb789a93c30b62d7d383f39d", + "position-relative-033.xht": [ + "23ac5fc3a127b1bb6a09c5b596cb4d77c1c310ae", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/positioning/position-relative-033-ref.xht", "==" ] ], {} ] ], - "max-width-036.xht": [ - "416ae47236b9278e072abf96fb2214f50fe58cfb", + "position-relative-035.xht": [ + "b1551b8b003bc2c9b817da3c0527ca35e627d478", [ null, [ [ - "/css/CSS2/normal-flow/max-width-036-ref.xht", + "/css/CSS2/positioning/position-relative-035-ref.xht", "==" ] ], {} ] ], - "max-width-037.xht": [ - "95d1d3fccdc1fe21c2d136ae2eec6b1d85b8203d", + "position-relative-037.xht": [ + "42e62580f2588239a62e031491bd28b8807e9be8", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/positioning/position-relative-037-ref.xht", "==" ] ], {} ] ], - "max-width-038.xht": [ - "8a82ee6a5a36d3f0ccc8106e2d9e95a0a932a6b9", + "position-relative-038.xht": [ + "5efd907794e7c9c8c413f49d00b89457c9fac1d8", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/positioning/position-relative-038-ref.xht", "==" ] ], {} ] ], - "max-width-039.xht": [ - "9d52a45435c3129d987c2d07922b5e48e2c1d4b3", + "position-relative-nested-001.xht": [ + "5167f3a6fa5ddff6fbf6b7f73a0f896040eef7d1", [ null, [ [ - "/css/CSS2/normal-flow/max-width-006-ref.xht", + "/css/CSS2/positioning/position-relative-nested-001-ref.xht", "==" ] ], {} ] ], - "max-width-040.xht": [ - "4e4e9479ae9eb1cabc33e47ee7068a450c8e1da4", + "position-static-001.xht": [ + "7a8b3101c8e7b089fcb61a79a6e328e9043f6a0e", [ null, [ [ - "/css/CSS2/normal-flow/max-width-006-ref.xht", + "/css/CSS2/positioning/position-static-001-ref.xht", "==" ] ], {} ] ], - "max-width-045.xht": [ - "c4d178d6dfa1afd5617943b82f0240cd533d25b1", + "positioning-float-001.xht": [ + "9247d01451b33a3364765531cfb1624cd8bb70fb", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/positioning/positioning-float-001-ref.xht", "==" ] ], {} ] ], - "max-width-046.xht": [ - "e046e343f3182f9bf602a3caa0c11568e6aefc72", + "positioning-float-002.xht": [ + "b5d68fab71b7cbbc400abe3e6976d8dd82f770a7", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/positioning/positioning-float-002-ref.xht", "==" ] ], {} ] ], - "max-width-047.xht": [ - "81fea004f9c1ebb0ae3a8c2a5ba514e68c1310c4", + "relpos-calcs-001.xht": [ + "d109596814d7ad9e0b0fba81a51461875633bdfc", [ null, [ [ - "/css/CSS2/normal-flow/max-width-047-ref.xht", + "/css/CSS2/positioning/relpos-calcs-001-ref.xht", "==" ] ], {} ] ], - "max-width-048.xht": [ - "3237bcccdf8b981aa7217f1bf10ff33dd9628b36", + "relpos-calcs-002.xht": [ + "70254b8a957b770406efeba1aebba6db82d77658", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/positioning/relpos-calcs-001-ref.xht", "==" ] ], {} ] ], - "max-width-049.xht": [ - "fab6596111b88afd30ba10c10053265504406273", + "relpos-calcs-003.xht": [ + "64d272ef57316914e4c3010451b959f05cd3a3d3", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/positioning/relpos-calcs-001-ref.xht", "==" ] ], {} ] ], - "max-width-050.xht": [ - "4860b8777252d492690ceac0812664e9d8e8201a", + "relpos-calcs-004.xht": [ + "ffa615710b34c778ced30afc8880b9a63aea3044", [ null, [ [ - "/css/CSS2/normal-flow/max-width-006-ref.xht", + "/css/CSS2/positioning/relpos-calcs-001-ref.xht", "==" ] ], {} ] ], - "max-width-051.xht": [ - "0f2d6a3868d484f9d9a9e91ab4106cdfbbca60d0", + "relpos-calcs-005.xht": [ + "b025d22366af4f5f72ab73af2fc3bb571b39f98d", [ null, [ [ - "/css/CSS2/normal-flow/max-width-006-ref.xht", + "/css/CSS2/positioning/relpos-calcs-001-ref.xht", "==" ] ], {} ] ], - "max-width-056.xht": [ - "89c474c5a205dc9c33777d2a2f3f60bc0c8a4203", + "relpos-calcs-006.xht": [ + "5f56e5a49736b6c0ad4f7171ed1da6de57a28126", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/positioning/relpos-calcs-001-ref.xht", "==" ] ], {} ] ], - "max-width-057.xht": [ - "d72a505443f940e37ea2c4ebd1c316ac283f094b", + "relpos-calcs-007.xht": [ + "075f7c647d5a2389d380d8dd0da20b4b66130426", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/positioning/relpos-calcs-001-ref.xht", "==" ] ], {} ] ], - "max-width-058.xht": [ - "783ae9288c67b4ad54f4ef387df1a9f363286547", + "right-004.xht": [ + "26c42ef8b92392ba9a434f3096115c97f144d458", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/positioning/right-004-ref.xht", "==" ] ], {} ] ], - "max-width-059.xht": [ - "10153d39d569368fc5660bfa55ab72f0f7c602d1", + "right-005.xht": [ + "58e066c011e396a89ce4d48fc17133e46c82ae05", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/positioning/right-004-ref.xht", "==" ] ], {} ] ], - "max-width-060.xht": [ - "681b8a20cb4fcaf6770c70c161a1f0505c35aa70", + "right-006.xht": [ + "5ea8caab07ceebb531da83d2c3ceb25f19bd0c23", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/positioning/right-004-ref.xht", "==" ] ], {} ] ], - "max-width-061.xht": [ - "4c2ea537a6f0ba74b2d6cf192874e628af6c84c7", + "right-007.xht": [ + "5f3160ed68529ed49ebf970dea532ebdc2ac68c9", [ null, [ [ - "/css/CSS2/normal-flow/max-width-061-ref.xht", + "/css/CSS2/positioning/right-007-ref.xht", "==" ] ], {} ] ], - "max-width-062.xht": [ - "418680d580020c907e4db9ff814791c98115e205", + "right-008.xht": [ + "c1e176a4192f7ec40bd445ba48e8aea247514621", [ null, [ [ - "/css/CSS2/normal-flow/max-width-061-ref.xht", + "/css/CSS2/positioning/right-007-ref.xht", "==" ] ], {} ] ], - "max-width-067.xht": [ - "601b65a19e87d128b3e0af327ea7354b2491d6a0", + "right-016.xht": [ + "b1eb09197d938d7d43dfdc692d0995a9c0ec56e7", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/positioning/right-004-ref.xht", "==" ] ], {} ] ], - "max-width-068.xht": [ - "21a65d3f57e2957a768afc0287aafbc4096315f9", + "right-017.xht": [ + "47299db63d5408c019f75ee981cfca7c0c559e2e", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/positioning/right-004-ref.xht", "==" ] ], {} ] ], - "max-width-069.xht": [ - "e2f376db233d06b909f7cbdea3e3341236934271", + "right-018.xht": [ + "556bfb68f5bd3cd90d24b3890d2eb0048111ea8d", [ null, [ [ - "/css/CSS2/normal-flow/max-width-069-ref.xht", + "/css/CSS2/positioning/right-004-ref.xht", "==" ] ], {} ] ], - "max-width-070.xht": [ - "db41729faad4a07761d8106956ab4ec1e0002334", + "right-019.xht": [ + "a610a79b5920eff30b638230ba79ccc720fb7adf", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/positioning/right-019-ref.xht", "==" ] ], {} ] ], - "max-width-071.xht": [ - "9da8bd7c9b6f0ad91498ab8c466df84da4c8d181", + "right-020.xht": [ + "ee15a14cc724a90230bfcab81c5d2e542bfa5db7", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/positioning/right-019-ref.xht", "==" ] ], {} ] ], - "max-width-072.xht": [ - "c9bb607c5798efc3c8673301b1a18ab0b00a9148", + "right-028.xht": [ + "5b31bb315f7bc3ca5fd3e69b85ea064d05642848", [ null, [ [ - "/css/CSS2/normal-flow/max-width-072-ref.xht", + "/css/CSS2/positioning/right-004-ref.xht", "==" ] ], {} ] ], - "max-width-073.xht": [ - "7f9115406c337e602901cedfb177e11b49f10a6d", + "right-029.xht": [ + "44977cd899414827681e5462e3aafc155854a336", [ null, [ [ - "/css/CSS2/normal-flow/max-width-072-ref.xht", + "/css/CSS2/positioning/right-004-ref.xht", "==" ] ], {} ] ], - "max-width-078.xht": [ - "ee41c29f7f99c6f4efbef11fc27d7cea2d75c5fd", + "right-030.xht": [ + "1fcce3dbeac69a29548a7d8c98d9359f974bbe8b", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/positioning/right-004-ref.xht", "==" ] ], {} ] ], - "max-width-079.xht": [ - "5a136a4c609c7d6386191e7138bc738ff13442c7", + "right-031.xht": [ + "88fc6e3746e1bf62c3be889c6145e5a6614dd37e", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/positioning/right-031-ref.xht", "==" ] ], {} ] ], - "max-width-080.xht": [ - "64d8e6af7aa962c40270fbd4711b4a87046a553c", + "right-032.xht": [ + "205c72803327750d2059f6843e8c83c021dd17e8", [ null, [ [ - "/css/CSS2/normal-flow/max-width-025-ref.xht", + "/css/CSS2/positioning/right-031-ref.xht", "==" ] ], {} ] ], - "max-width-081.xht": [ - "cde91f00c080e48e15f8b5b0da1c076da357b6ae", + "right-040.xht": [ + "e203cd04f1c4a2c0aa8e58e68a4f5a2b543ccd69", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/positioning/right-004-ref.xht", "==" ] ], {} ] ], - "max-width-082.xht": [ - "76bbe2ec754f1b1fd33bb4a15882cab813ef8d93", + "right-041.xht": [ + "8db581b5ebb3ccdda913d4526ff4976ba314bd44", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/positioning/right-004-ref.xht", "==" ] ], {} ] ], - "max-width-083.xht": [ - "dae6af62c84c150dd6a77bc044479f0ea9e375a4", + "right-042.xht": [ + "8195daa08a096967224bd691728f912372dffa79", [ null, [ [ - "/css/CSS2/normal-flow/max-width-006-ref.xht", + "/css/CSS2/positioning/right-004-ref.xht", "==" ] ], {} ] ], - "max-width-084.xht": [ - "d1f644738ee874023dd6b573cd404b5dc2345d25", + "right-043.xht": [ + "5b7ff274082034980d4b2dba22c5e7c44076a7b0", [ null, [ [ - "/css/CSS2/normal-flow/max-width-006-ref.xht", + "/css/CSS2/positioning/right-019-ref.xht", "==" ] ], {} ] ], - "max-width-089.xht": [ - "9cf0794f40a8b7e5cdb0c0eb32df28973c166a34", + "right-044.xht": [ + "9d7a340585739049ce8326c7afb919992a6557f2", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/positioning/right-019-ref.xht", "==" ] ], {} ] ], - "max-width-090.xht": [ - "02f36b99a656a12669eed664d9c4cd1af13a269e", + "right-052.xht": [ + "c7879e4c34b4f45cef038bd77ee13967798d8bf9", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/positioning/right-004-ref.xht", "==" ] ], {} ] ], - "max-width-091.xht": [ - "57d8b8dcc32f3a7f97f9cfc5a0b40495740dbe42", + "right-053.xht": [ + "02ccbc48f8c1c575eaf322dca2feb89ac93a067e", [ null, [ [ - "/css/CSS2/normal-flow/max-width-003-ref.xht", + "/css/CSS2/positioning/right-004-ref.xht", "==" ] ], {} ] ], - "max-width-092.xht": [ - "7762da0f7c21efa9473c7b7ffc1dbeebd74b67bb", + "right-054.xht": [ + "68af477d7ce74cad30661a4acb2c28976afe565a", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/positioning/right-004-ref.xht", "==" ] ], {} ] ], - "max-width-093.xht": [ - "fd6a35e49d60d99d01e57e7bbd6e7a9ba3b6f29a", + "right-055.xht": [ + "57781a9b607b150b18ddf6d159089c9301c1c764", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/positioning/right-019-ref.xht", "==" ] ], {} ] ], - "max-width-094.xht": [ - "2d5e0b139f2ed6a645cdb02e374b255802f11297", + "right-056.xht": [ + "6fc1acb8ce0b02dc6581391ebf8c20eb5719b31d", [ null, [ [ - "/css/CSS2/normal-flow/max-width-006-ref.xht", + "/css/CSS2/positioning/right-019-ref.xht", "==" ] ], {} ] ], - "max-width-095.xht": [ - "61d61af3317484d24ef9629acff4ccedf980df37", + "right-064.xht": [ + "3c5767254dff0ca38508ef313354f4a0b32717d6", [ null, [ [ - "/css/CSS2/normal-flow/max-width-006-ref.xht", + "/css/CSS2/positioning/right-004-ref.xht", "==" ] ], {} ] ], - "max-width-100.xht": [ - "a150e09430cc68d1c36b32673141349d6da65e05", + "right-065.xht": [ + "dfd632821c300379290d2242b743055130faa2af", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/positioning/right-004-ref.xht", "==" ] ], {} ] ], - "max-width-101.xht": [ - "feb2d190fad643f7c6b1847a603dde390af4cd22", + "right-066.xht": [ + "115f6191343795b58d68586d6d7e07d0c1ec583d", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/positioning/right-004-ref.xht", "==" ] ], {} ] ], - "max-width-102.xht": [ - "fa19a22bf8e352d00082e51ff6ee77d0a5a36b5e", + "right-067.xht": [ + "f86054de9c6e26f89e91dee58efbe12b10a90202", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/positioning/right-019-ref.xht", "==" ] ], {} ] ], - "max-width-103.xht": [ - "d847bcad05f9c838ce04606efe2e38d0957ad8c0", + "right-068.xht": [ + "b2cb8f7b519807d6cf6860052d44927af2004657", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/positioning/right-019-ref.xht", "==" ] ], {} ] ], - "max-width-104.xht": [ - "b744d696306ca1acc6b2bcc685a6c479f293ae66", + "right-076.xht": [ + "82b8e3207b572df8bca5d03e1553053178741dcf", [ null, [ [ - "/css/CSS2/normal-flow/max-width-003-ref.xht", + "/css/CSS2/positioning/right-004-ref.xht", "==" ] ], {} ] ], - "max-width-105.xht": [ - "623f03f4235cbcef9d8b211162b1ed79db10e1c9", + "right-077.xht": [ + "9fd67b79e510531992ecda6609cc07ab76e3988d", [ null, [ [ - "/css/CSS2/normal-flow/max-width-105-ref.xht", + "/css/CSS2/positioning/right-004-ref.xht", "==" ] ], {} ] ], - "max-width-106.xht": [ - "7136b414feaf667bcf21ee0bdc5e02adbb8c0e40", + "right-078.xht": [ + "fe3eeaf17004730a463ddee52b52c42ac912bad8", [ null, [ [ - "/css/CSS2/normal-flow/max-width-105-ref.xht", + "/css/CSS2/positioning/right-004-ref.xht", "==" ] ], {} ] ], - "max-width-107.xht": [ - "edf4a63fecdb59e7cfb6c3e732f54d2c5dadc48e", + "right-079.xht": [ + "f8c889f3d624809c924213153bbebdb3f3f71c68", [ null, [ [ - "/css/CSS2/normal-flow/max-width-107-ref.xht", + "/css/CSS2/positioning/right-079-ref.xht", "==" ] ], {} ] ], - "max-width-110.xht": [ - "2b96eab362d116048f1c0b7cf1eccfeea7f48ace", + "right-080.xht": [ + "4ca68803624eb61ea7e5d3f8c9366c79b7dafb13", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/positioning/right-079-ref.xht", "==" ] ], {} ] ], - "max-width-applies-to-001.xht": [ - "9fd103686fff4af28f4fc15ee84100e9aaa77863", + "right-088.xht": [ + "91afec1ea9555f334b39762fe8d49f3c7b3710eb", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/positioning/right-004-ref.xht", "==" ] ], {} ] ], - "max-width-applies-to-002.xht": [ - "e6123b730b68da0ede886c3432ff44d7d154e2ba", + "right-089.xht": [ + "bb353dcab881631fe6a867587873a8c2e32ee4dc", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/positioning/right-004-ref.xht", "==" ] ], {} ] ], - "max-width-applies-to-003.xht": [ - "4808b1c672414a6e3e95f41c5f991c549661178f", + "right-090.xht": [ + "3c95492c7f04be9ab8ad3b7f95b7029399559639", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/positioning/right-004-ref.xht", "==" ] ], {} ] ], - "max-width-applies-to-004.xht": [ - "93b7124de8cf957abf11e9f4a5bde36991883f13", + "right-091.xht": [ + "f5f69240f53e97ebab499675706c149533110e54", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/positioning/right-019-ref.xht", "==" ] ], {} ] ], - "max-width-applies-to-005.xht": [ - "0d0a26c118a7a87e6b52215efca460823efcdba9", + "right-092.xht": [ + "f193c96112bc6398018652e7e3295309e242ce41", [ null, [ [ - "/css/reference/pass_if_square_96px_black.html", + "/css/CSS2/positioning/right-019-ref.xht", "==" ] ], {} ] ], - "max-width-applies-to-006.xht": [ - "aec8fa70d7fa6d4eee0a69ef3c04f4e8a0ad4858", + "right-100.xht": [ + "994780988b569c5a8aae42eccd37d04f8df3445d", [ null, [ [ - "/css/reference/pass_if_square_96px_black.html", + "/css/CSS2/positioning/right-100-ref.xht", "==" ] ], {} ] ], - "max-width-applies-to-007.xht": [ - "13e9f83a3188c29602d2099e4d9cc704850361fa", + "right-101.xht": [ + "3d929c9627f38b3eff19ec7d34a408c6b3bd77f9", [ null, [ [ - "/css/reference/pass_if_square_96px_black.html", + "/css/CSS2/positioning/right-100-ref.xht", "==" ] ], {} ] ], - "max-width-applies-to-008.xht": [ - "062d4a6806a6696ddb8d27817a9c42973dd6acdb", + "right-102.xht": [ + "f1131481049666e64a7ff740f9e5152ac652ad1a", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/positioning/right-100-ref.xht", "==" ] ], {} ] ], - "max-width-applies-to-009.xht": [ - "98f16d2c43893544eb927362b69a968ab1ccb529", + "right-103.xht": [ + "691dd3f23c676a23af7cb7db4f04f017029890b3", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/positioning/right-103-ref.xht", "==" ] ], {} ] ], - "max-width-applies-to-012.xht": [ - "eb9c7feeed7ce656de50e9fd78bd8df22d0e8483", + "right-104.xht": [ + "369a68be289cedf596397d4f957a549616c9baf0", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/positioning/right-103-ref.xht", "==" ] ], {} ] ], - "max-width-applies-to-013.xht": [ - "a7d2e960a491f5f27ffd3267c8c4e1160de758df", + "right-109.xht": [ + "b3af32c7d0e0f23c6cc48518aefeaae5e1161a1b", [ null, [ [ - "/css/reference/pass_if_square_96px_black.html", + "/css/CSS2/positioning/right-004-ref.xht", "==" ] ], {} ] ], - "max-width-applies-to-014.xht": [ - "8d49feba65cc588c3be864bd8227b5a192b02e8f", + "right-110.xht": [ + "665fe13d3adf044d479516e3efbd535c690fcb3f", [ null, [ [ - "/css/reference/pass_if_square_96px_black.html", + "/css/CSS2/positioning/right-004-ref.xht", "==" ] ], {} ] ], - "max-width-applies-to-015.xht": [ - "c607f82867a92a6abb195a24cb4d2c92f50bc446", + "right-111.xht": [ + "9e7b3e52891cda46f16b00708c95629537fe3210", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/positioning/right-004-ref.xht", "==" ] ], {} ] ], - "max-width-applies-to-016.xht": [ - "f7c244227b67217f0e35675526ab29a6b756f560", + "right-112.xht": [ + "20d74d910b17331481e0fd25655ef69a706a9b80", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/positioning/right-004-ref.xht", "==" ] ], {} ] ], - "max-width-percentage-001.xht": [ - "05a715d28cbd6e1810b69ee258032b5a106c7905", + "right-113.xht": [ + "338de0f59ae0ff04b9774591838326ff9596e397", [ null, [ [ - "/css/CSS2/normal-flow/max-width-percentage-001-ref.xht", + "/css/CSS2/positioning/right-103-ref.xht", "==" ] ], {} ] ], - "max-width-percentage-002.xht": [ - "62debbacc25e6d8be2f87dca429fe54b9730acd0", + "right-applies-to-001.xht": [ + "fb790ba7c94a939542f58ca09914a91ff0d86434", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/positioning/right-applies-to-001-ref.xht", "==" ] ], {} ] ], - "min-height-001.xht": [ - "20ccdb41493cb9c286243ea437bda3225a880a9d", + "right-applies-to-002.xht": [ + "964cb2a6f06f5df0845990498c534543a40174cd", [ null, [ [ - "/css/CSS2/normal-flow/height-001-ref.xht", + "/css/CSS2/positioning/right-applies-to-001-ref.xht", "==" ] ], {} ] ], - "min-height-002.xht": [ - "3aaa20691eda22551ec3e42d7e012d5d968acabd", + "right-applies-to-003.xht": [ + "405a3c80d94523bbbf5e3bc0f4c28cce32d3aecf", [ null, [ [ - "/css/CSS2/normal-flow/height-001-ref.xht", + "/css/CSS2/positioning/right-applies-to-001-ref.xht", "==" ] ], {} ] ], - "min-height-003.xht": [ - "9fce19bcfa6411593af0b8712f56fd914a816e57", + "right-applies-to-004.xht": [ + "dd12aa6ab5b59e1fc3d7b1709452c6496b4a1c2c", [ null, [ [ - "/css/CSS2/normal-flow/height-003-ref.xht", + "/css/CSS2/positioning/right-applies-to-001-ref.xht", "==" ] ], {} ] ], - "min-height-004.xht": [ - "c9d3d13564f0f5374cfe119ef73433e049c39090", + "right-applies-to-005.xht": [ + "926f231fb2b6b6c0b85126b51c7f7ecbc73aa81f", [ null, [ [ - "/css/CSS2/normal-flow/height-001-ref.xht", + "/css/CSS2/positioning/right-applies-to-001-ref.xht", "==" ] ], {} ] ], - "min-height-005.xht": [ - "c2041b6ed99bc5a67de64148f438fa4f0135ddde", + "right-applies-to-006.xht": [ + "4ba5f2f013a43ff2209160bf300b68646e64a04b", [ null, [ [ - "/css/CSS2/normal-flow/height-001-ref.xht", + "/css/CSS2/positioning/right-applies-to-001-ref.xht", "==" ] ], {} ] ], - "min-height-006.xht": [ - "c9ab001c6b9d165c5ddfc54203ed5c2b83277b20", + "right-applies-to-007.xht": [ + "ff53c752f5e2e729d65400467d086e77efe6a94b", [ null, [ [ - "/css/CSS2/normal-flow/height-006-ref.xht", + "/css/CSS2/positioning/right-applies-to-001-ref.xht", "==" ] ], {} ] ], - "min-height-007.xht": [ - "9bc5d8914ebe27a0c2a2858180461b33e4b6956f", + "right-applies-to-009.xht": [ + "37c6ae965ef37a7681254b81d34e041cba819a15", [ null, [ [ - "/css/CSS2/normal-flow/height-006-ref.xht", + "/css/CSS2/positioning/right-applies-to-001-ref.xht", "==" ] ], {} ] ], - "min-height-012.xht": [ - "0d49b8abafd1bd544afc848f08aa5d1ed1576767", + "right-applies-to-012.xht": [ + "cd8c5043b2b99461b513dd99ebf3dc2bed47d1e8", [ null, [ [ - "/css/CSS2/normal-flow/height-001-ref.xht", + "/css/CSS2/positioning/right-applies-to-001-ref.xht", "==" ] ], {} ] ], - "min-height-013.xht": [ - "d69871cd89a2e10f90be4031d2d5017c5ae2bb6a", + "right-applies-to-013.xht": [ + "e2da8df8578a79e4f02f424ece9ea89f4c2dd142", [ null, [ [ - "/css/CSS2/normal-flow/height-001-ref.xht", + "/css/CSS2/positioning/right-applies-to-001-ref.xht", "==" ] ], {} ] ], - "min-height-015.xht": [ - "2e9e8b13dae770bc4c9dd01adf5ca07aa7cc1fc6", + "right-applies-to-014.xht": [ + "2094bb046d881a1aa65d2e6664173b9e708c5867", [ null, [ [ - "/css/CSS2/normal-flow/height-001-ref.xht", + "/css/CSS2/positioning/right-applies-to-001-ref.xht", "==" ] ], {} ] ], - "min-height-016.xht": [ - "faa1bebcb8b9cfdfa9e8e8954723b91f659a1e93", + "right-applies-to-015.xht": [ + "a2f2deb7837e89a8861761841ed3b9670dd27a9b", [ null, [ [ - "/css/CSS2/normal-flow/height-001-ref.xht", + "/css/CSS2/positioning/right-applies-to-001-ref.xht", "==" ] ], {} ] ], - "min-height-017.xht": [ - "292bb94ec929edb39036f18e63efb44ef3fd0663", + "right-offset-001.xht": [ + "fb04ce88bf2291341eeb25016d8e5953bf6de723", [ null, [ [ - "/css/CSS2/normal-flow/height-006-ref.xht", + "/css/CSS2/positioning/right-offset-001-ref.xht", "==" ] ], {} ] ], - "min-height-018.xht": [ - "c87793f74b38010baca2875cc9e9c6e8a78108ef", + "right-offset-002.xht": [ + "7a52e9a5d35032e67e9069e9f5ae0cc729a61938", [ null, [ [ - "/css/CSS2/normal-flow/height-006-ref.xht", + "/css/CSS2/positioning/left-offset-001-ref.xht", "==" ] ], {} ] ], - "min-height-023.xht": [ - "3b319ad5900b1efa38163bfc980757437dac95c6", + "right-offset-003.xht": [ + "afb12098f6f4b14fd09d3c089fce95ad6ea6526c", [ null, [ [ - "/css/CSS2/normal-flow/height-001-ref.xht", + "/css/CSS2/positioning/right-offset-001-ref.xht", "==" ] ], {} ] ], - "min-height-024.xht": [ - "6c76a4dab5e32baa19a18f10389b760e1820cd18", + "right-offset-004.xht": [ + "f6d3273577495da214fb4822c2a7982dbebb30a5", [ null, [ [ - "/css/CSS2/normal-flow/height-001-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "min-height-025.xht": [ - "7028b2cf722dde8e226da875ba406013dd041a97", + "right-offset-percentage-001.xht": [ + "99b1c949387b2003ab1e32ef18cd280aa550a659", [ null, [ [ - "/css/CSS2/normal-flow/max-height-025-ref.xht", + "/css/CSS2/positioning/right-offset-percentage-001-ref.xht", "==" ] ], {} ] ], - "min-height-026.xht": [ - "ddc4fc597d27d2abb7f85329e40a0c45d0469d1b", + "toogle-abspos-on-relpos-inline-child.html": [ + "7ea2a25bf5d79aa4f2195b243831681efc2867c4", [ null, [ [ - "/css/CSS2/normal-flow/height-001-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "min-height-027.xht": [ - "4856641d867d11e57ca3cae30bfcda254c025b80", + "top-004.xht": [ + "119489dd617d0e47e3b14227787d8aa6ea9db9d7", [ null, [ [ - "/css/CSS2/normal-flow/height-001-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "min-height-028.xht": [ - "cb512b16d07d7cd5981ca588c5e1eb52a8ef89d6", + "top-005.xht": [ + "68a860ae1521d92df574cbb7721957e04894b508", [ null, [ [ - "/css/CSS2/normal-flow/height-006-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "min-height-029.xht": [ - "4ca616fd949bf83d41e08df2d1b30e3f8b5c68b6", + "top-006.xht": [ + "151a05646a18168b997ffe63bb4609f327fe9399", [ null, [ [ - "/css/CSS2/normal-flow/height-006-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "min-height-034.xht": [ - "b52bd719ae366315b76ade3308a76479dd2ea7bd", + "top-007.xht": [ + "8ced33f292b25943bf8fa331a115d8d1e1c49b77", [ null, [ [ - "/css/CSS2/normal-flow/height-001-ref.xht", + "/css/CSS2/positioning/top-007-ref.xht", "==" ] ], {} ] ], - "min-height-035.xht": [ - "9ced6b61d9225bc3b598a2495fb67f0f8b3dbb68", + "top-008.xht": [ + "86b56e7b3a78cb46e8a7a64cc6fd6f894a040304", [ null, [ [ - "/css/CSS2/normal-flow/height-001-ref.xht", + "/css/CSS2/positioning/top-007-ref.xht", "==" ] ], {} ] ], - "min-height-036.xht": [ - "3af910dc98d38499b89826cc06832c240c61cf6c", + "top-016.xht": [ + "ac139d7e5555e9adee49c7e9dfd758629cb26e81", [ null, [ [ - "/css/CSS2/normal-flow/max-height-036-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "min-height-037.xht": [ - "0b30519e7dd41e8881bb843178996080d5bf8114", + "top-017.xht": [ + "7a1a32584a56d7c80b7d419828751285ed9b765f", [ null, [ [ - "/css/CSS2/normal-flow/height-001-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "min-height-038.xht": [ - "041017d252785ca2ca4b747aea6fd89a80c1951f", + "top-018.xht": [ + "7ce2bc39c28954bab8234993a12b4904fec75e18", [ null, [ [ - "/css/CSS2/normal-flow/height-001-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "min-height-039.xht": [ - "0e3d0a5c9c62fa3fa20f148286e36da6b2173b11", + "top-019.xht": [ + "15506da7f0c7e3028854fc7a5c26b04d6a62c4dd", [ null, [ [ - "/css/CSS2/normal-flow/height-006-ref.xht", + "/css/CSS2/positioning/top-019-ref.xht", "==" ] ], {} ] ], - "min-height-040.xht": [ - "6abb807e59fc75ca7750c6398bd0a414af444333", + "top-020.xht": [ + "256fbc54b5d654aea6d5995949015dfcba267f4e", [ null, [ [ - "/css/CSS2/normal-flow/height-006-ref.xht", + "/css/CSS2/positioning/top-019-ref.xht", "==" ] ], {} ] ], - "min-height-045.xht": [ - "2290f69e18e7c6f1ab4957ab9b9c56851eb99a24", + "top-028.xht": [ + "2b0536611a3426f102ab30f0e0cf48cd85f5915b", [ null, [ [ - "/css/CSS2/normal-flow/height-001-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "min-height-046.xht": [ - "60ab17a9f74a6954469cb9034c2ee9f75fefe6ba", + "top-029.xht": [ + "b60a869252e416e704db2bcdd88dd984eaa000f4", [ null, [ [ - "/css/CSS2/normal-flow/height-001-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "min-height-047.xht": [ - "8d99c5b781f345b9dc3d4d52b490fb3fa6e43f73", + "top-030.xht": [ + "15631f3553c0603891269013fd47915ae0b2ebf9", [ null, [ [ - "/css/CSS2/normal-flow/max-height-047-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "min-height-048.xht": [ - "c0610c4f20dfda03d308d578466431670b486a31", + "top-031.xht": [ + "12d99cbd297eeb12d3b5bd9aca2d3e6b088f7327", [ null, [ [ - "/css/CSS2/normal-flow/height-001-ref.xht", + "/css/CSS2/positioning/top-007-ref.xht", "==" ] ], {} ] ], - "min-height-049.xht": [ - "8f3b15e81235df583f19219e1398729f4e75b8a7", + "top-032.xht": [ + "b83dacb01b2025868f8ed012113f7e0015cb7830", [ null, [ [ - "/css/CSS2/normal-flow/height-001-ref.xht", + "/css/CSS2/positioning/top-007-ref.xht", "==" ] ], {} ] ], - "min-height-050.xht": [ - "67f5f7a6f02463951829884ee16c87b6ff9ec71f", + "top-040.xht": [ + "55037242ce4b8a58f6aee99420bf14e81df53321", [ null, [ [ - "/css/CSS2/normal-flow/height-006-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "min-height-051.xht": [ - "9d0f74927167083b6bf2b0b40b63ee73fe0acda9", + "top-041.xht": [ + "8979cd19a0dc937e4c5462ab7e3bfb0a1797b2b5", [ null, [ [ - "/css/CSS2/normal-flow/height-006-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "min-height-056.xht": [ - "5a3673c5b09e1874c446e22b72924adeef8bf140", + "top-042.xht": [ + "9f8c5f615ff027003ac69b6c667cd1fc509a4233", [ null, [ [ - "/css/CSS2/normal-flow/height-001-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "min-height-057.xht": [ - "df800d82f82864ac523c7924dbebb074d82225aa", + "top-043.xht": [ + "3321f6c8fb5908b7544dc3f91e0b6f52513f3e44", [ null, [ [ - "/css/CSS2/normal-flow/height-001-ref.xht", + "/css/CSS2/positioning/top-019-ref.xht", "==" ] ], {} ] ], - "min-height-058.xht": [ - "7341ba9aa573d8873c40c80ebf9fc23853566917", + "top-044.xht": [ + "8f2768606c8260ae6eda5ecb4e5354b3019d970f", [ null, [ [ - "/css/CSS2/normal-flow/max-height-058-ref.xht", + "/css/CSS2/positioning/top-019-ref.xht", "==" ] ], {} ] ], - "min-height-059.xht": [ - "de3cc1877cf8023492494621e8ae901f27d7627d", + "top-052.xht": [ + "756c0fad7da64ac4d2cbc30ecb021cebb2833f96", [ null, [ [ - "/css/CSS2/normal-flow/height-001-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "min-height-060.xht": [ - "8b5c9a55109cb38a98e6959835f751e1eabe3e09", + "top-053.xht": [ + "d62821b134b13c7083707352d47fb0a1ca6dfaae", [ null, [ [ - "/css/CSS2/normal-flow/height-001-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "min-height-061.xht": [ - "747592d26664b2bbbf8e02dab3df81b3978b422f", + "top-054.xht": [ + "4203a76826cbd440a4e84b410ffd7af8338a89c6", [ null, [ [ - "/css/CSS2/normal-flow/height-061-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "min-height-062.xht": [ - "9d425e5a922c2b0225c76e8c9006b1d416d0c2c1", + "top-055.xht": [ + "86a369c6065a2331f15254d71c5be339347d1671", [ null, [ [ - "/css/CSS2/normal-flow/height-061-ref.xht", + "/css/CSS2/positioning/top-019-ref.xht", "==" ] ], {} ] ], - "min-height-067.xht": [ - "52d4c9b72db579521418d41abd67c61b1a46549c", + "top-056.xht": [ + "b90afa3fe09e6b05142bc11efa40f08a6a3a47fb", [ null, [ [ - "/css/CSS2/normal-flow/min-height-067-ref.xht", + "/css/CSS2/positioning/top-019-ref.xht", "==" ] ], {} ] ], - "min-height-068.xht": [ - "1be63b795e99b8c4029fd9bdd089c73a258ebe6d", + "top-064.xht": [ + "7e8ace167c879b3ed2fffec4ed939d78abbc51e9", [ null, [ [ - "/css/CSS2/normal-flow/min-height-067-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "min-height-069.xht": [ - "8c1b903b023bd5eae539b9b1f24ab5c5f5e15fb3", + "top-065.xht": [ + "ece703a1d7d4c472b3f4bd434b64d97947a7dc31", [ null, [ [ - "/css/CSS2/normal-flow/height-069-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "min-height-070.xht": [ - "8cd73ce30c719782a3a12f6f0a36ffe578b18f92", + "top-066.xht": [ + "b3d69c2faec290c3853e6fae96ccac2c4941428d", [ null, [ [ - "/css/CSS2/normal-flow/min-height-067-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "min-height-071.xht": [ - "0ceb5178a06021ab1ff5b91fd0b59d36965ab38f", + "top-067.xht": [ + "f23d4bcc802614de139af62a665bd8a7fa299e40", [ null, [ [ - "/css/CSS2/normal-flow/min-height-067-ref.xht", + "/css/CSS2/positioning/top-019-ref.xht", "==" ] ], {} ] ], - "min-height-072.xht": [ - "9bdc9f5083013d95449bbc6db34f775133fa0447", + "top-068.xht": [ + "e8d151a404c74de6a0d05319662323fa6e074393", [ null, [ [ - "/css/CSS2/normal-flow/height-072-ref.xht", + "/css/CSS2/positioning/top-019-ref.xht", "==" ] ], {} ] ], - "min-height-073.xht": [ - "6e2d95972f307506b35d02bab534a2fa28809fee", + "top-076.xht": [ + "ef09202a7961625400fb2524dd241b65a2483635", [ null, [ [ - "/css/CSS2/normal-flow/height-072-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "min-height-078.xht": [ - "407cf40fd149d62f11ff5af6f711a918703d58fb", + "top-077.xht": [ + "deaa882ab873de2df63746029c45e16027aacb59", [ null, [ [ - "/css/CSS2/normal-flow/min-height-067-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "min-height-079.xht": [ - "5776316f1ee8c53da352b083331214a4c388c8f0", + "top-078.xht": [ + "6429ff40135e63508167d184953dcfffa74f0788", [ null, [ [ - "/css/CSS2/normal-flow/min-height-067-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "min-height-080.xht": [ - "8171933ecbcce482f642f0254e8ae714eb14ddd5", + "top-079.xht": [ + "71208d26640519218bb67cf1d547712a78fed01e", [ null, [ [ - "/css/CSS2/normal-flow/height-080-ref.xht", + "/css/CSS2/positioning/top-079-ref.xht", "==" ] ], {} ] ], - "min-height-081.xht": [ - "b7963f7e7d326d1a16edbf742553578d9601a31e", + "top-080.xht": [ + "439945b006119174d4ad29f873e3a79eccf61be0", [ null, [ [ - "/css/CSS2/normal-flow/min-height-067-ref.xht", + "/css/CSS2/positioning/top-079-ref.xht", "==" ] ], {} ] ], - "min-height-082.xht": [ - "56dae38cc4c89b3708c1650492aadf3e197d8d5e", + "top-088.xht": [ + "fb323b2e24ba946cce6096dd25ad69995ac375a6", [ null, [ [ - "/css/CSS2/normal-flow/min-height-067-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "min-height-083.xht": [ - "454c971b54dd6c22c32c8f1f20948a9465273a00", + "top-089.xht": [ + "ed4e58501e31d8d3f29f4b80e9e7634b6aeb2af1", [ null, [ [ - "/css/CSS2/normal-flow/height-006-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "min-height-084.xht": [ - "a0fb7f6fea3e1d6ba75043ff8da8ff7439b38068", + "top-090.xht": [ + "482a46b4f9a0018c57e1f7f2907b0b57a48682d0", [ null, [ [ - "/css/CSS2/normal-flow/height-006-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "min-height-089.xht": [ - "f7c35d88f3e521531ea61abbb43ac0f8fd27f658", + "top-091.xht": [ + "6b46c3f19a8640ce1d98e3ddbe73dbc6d9843411", [ null, [ [ - "/css/CSS2/normal-flow/height-001-ref.xht", + "/css/CSS2/positioning/top-019-ref.xht", "==" ] ], {} ] ], - "min-height-090.xht": [ - "f4e9abb25c5b57126c74be3a68522981c6e6589f", + "top-092.xht": [ + "939f93eff6380cbb909b01097781ca0b055ebaaf", [ null, [ [ - "/css/CSS2/normal-flow/height-001-ref.xht", + "/css/CSS2/positioning/top-019-ref.xht", "==" ] ], {} ] ], - "min-height-091.xht": [ - "4d32038987ee0064f6d90c18afb3216a534dcdd6", + "top-100.xht": [ + "50747c88f2e5c6c19012b7fa4e710b49cb53c457", [ null, [ [ - "/css/CSS2/normal-flow/height-003-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "min-height-092.xht": [ - "9e81fc6fbfb7f5696bd135cc7b25d2cb3871b0bc", + "top-101.xht": [ + "9cd038dff15a3b46c97adbe4f7e5fbcb518b0946", [ null, [ [ - "/css/CSS2/normal-flow/height-001-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "min-height-093.xht": [ - "7a6cbc4d4b2fe2ce88358c9e4af58119fc2919cb", + "top-102.xht": [ + "d504de9152a2abfa6ec7c8737fce6278fa421bcd", [ null, [ [ - "/css/CSS2/normal-flow/height-001-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "min-height-094.xht": [ - "42d473f6c0602e9992cf2dd21e4df5d7627b65b9", + "top-103.xht": [ + "39c9672b5b1b4831b084be1922861f75bf7c51d8", [ null, [ [ - "/css/CSS2/normal-flow/height-006-ref.xht", + "/css/CSS2/positioning/top-019-ref.xht", "==" ] ], {} ] ], - "min-height-095.xht": [ - "c86d168f8fe0d95f3be9ebfea8164492c7b2d1f4", + "top-104.xht": [ + "458f26bdb826c5f4cb98dd6619509220752aa6fa", [ null, [ [ - "/css/CSS2/normal-flow/height-006-ref.xht", + "/css/CSS2/positioning/top-019-ref.xht", "==" ] ], {} ] ], - "min-height-100.xht": [ - "2830ee8d6ebf2ee8e9f80b2d91cbe7b3d91fa06b", + "top-109.xht": [ + "58fd8efdd97c478feefa9ec41d92baaab5448ced", [ null, [ [ - "/css/CSS2/normal-flow/height-001-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "min-height-101.xht": [ - "2d7bdde8143e2b2015dce560f367ef01a2e77102", + "top-110.xht": [ + "a834a79650ba90ef11950ff862e7863d0caf774d", [ null, [ [ - "/css/CSS2/normal-flow/height-001-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "min-height-102.xht": [ - "ef8c5ab20e49edbd8c12970ebce14c268108822a", + "top-111.xht": [ + "9f43620d4d8e10d6cf25cdc9da388f71fb1a784c", [ null, [ [ - "/css/CSS2/normal-flow/height-001-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "min-height-103.xht": [ - "4e457ac10e2b00b85243583ed96925292690269c", + "top-112.xht": [ + "bf39bddb46ecf0b56a3e08c64d86ab7b2136e163", [ null, [ [ - "/css/CSS2/normal-flow/height-003-ref.xht", + "/css/CSS2/reference/ref-no-vert-space-between.xht", "==" ] ], {} ] ], - "min-height-104.xht": [ - "85c7811ad31e0d3edad1478fb5a2d3da7f64d13e", + "top-113.xht": [ + "caaf758f66969be68676fea2cabacfa633034aee", [ null, [ [ - "/css/CSS2/normal-flow/max-height-107-ref.xht", + "/css/CSS2/positioning/top-113-ref.xht", "==" ] ], {} ] ], - "min-height-105.xht": [ - "0d762aecae72ca6bf83c615ecbb7a543b3711031", + "top-applies-to-001.xht": [ + "d8066025314bb6c06f341703ec6e126f5d685cc3", [ null, [ [ - "/css/CSS2/normal-flow/max-height-110-ref.xht", + "/css/CSS2/positioning/top-applies-to-001-ref.xht", "==" ] ], {} ] ], - "min-height-106.xht": [ - "5bf011a08711c9e92505bf4b35a262d89f4bb273", + "top-applies-to-002.xht": [ + "56e079851f14a39465fa4944f28b8ce9ece9791b", [ null, [ [ - "/css/CSS2/normal-flow/max-height-107-ref.xht", + "/css/CSS2/positioning/top-applies-to-001-ref.xht", "==" ] ], {} ] ], - "min-height-111.xht": [ - "7d64199f5a1398affdda00f2a97b6e05318d9321", + "top-applies-to-003.xht": [ + "20f6eceaa94de00ac3b72e2e0ea900ef4d860274", [ null, [ [ - "/css/CSS2/normal-flow/min-height-111-ref.xht", + "/css/CSS2/positioning/top-applies-to-001-ref.xht", "==" ] ], {} ] ], - "min-height-112.xht": [ - "7ab054f278c63b50271a7b4dbd1c96f6a72d52cc", + "top-applies-to-004.xht": [ + "161ce0c150334b313e1dfb960e71276eee75c7b1", [ null, [ [ - "/css/CSS2/normal-flow/min-height-111-ref.xht", + "/css/CSS2/positioning/top-applies-to-001-ref.xht", "==" ] ], {} ] ], - "min-height-applies-to-005.xht": [ - "177debf42a0574d2df4e37ae82fc3e2e4faa7e0d", + "top-applies-to-005.xht": [ + "b84a67e8f341d5e86b91ffed1dc3460b0675d002", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/positioning/top-applies-to-001-ref.xht", "==" ] ], {} ] ], - "min-height-applies-to-006.xht": [ - "36b706d1de86ef7b4d166723ce4f421a833df2ef", + "top-applies-to-006.xht": [ + "dc09f7e9dbbabd2d560b0c097aae3b302bdd96f0", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/positioning/top-applies-to-001-ref.xht", "==" ] ], {} ] ], - "min-height-applies-to-008.xht": [ - "b0ecf9a6596ca71eccb44290eeb6e63f9076f236", + "top-applies-to-007.xht": [ + "9768bc2ae7b5bb0392d12b4b99d27897bac5f3a8", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/positioning/top-applies-to-001-ref.xht", "==" ] ], {} ] ], - "min-height-applies-to-009.xht": [ - "b95c65a5160b8a360d2a25a8e6b0bb48ea82f40e", + "top-applies-to-009.xht": [ + "0d0413baf7d57a3f6fd20f5f9dd150350d87bc67", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/positioning/top-applies-to-001-ref.xht", "==" ] ], {} ] ], - "min-height-applies-to-012.xht": [ - "03358e3458c522a4609212af4ba70464695fcb09", + "top-applies-to-012.xht": [ + "53820c9f8b3e0ff63fd623f9676a4f8fe8c1c557", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/positioning/top-applies-to-001-ref.xht", "==" ] ], {} ] ], - "min-height-applies-to-013.xht": [ - "df00228bfbe9b48aef2d01b80059d824696353ab", + "top-applies-to-013.xht": [ + "794c6c4633d763293940ed128022b89a8cb1d226", [ null, [ [ - "/css/reference/pass_if_square_96px_black.html", + "/css/CSS2/positioning/top-applies-to-001-ref.xht", "==" ] ], {} ] ], - "min-height-applies-to-014.xht": [ - "fc3ca591b60f2124618fb33deac16f004c528256", + "top-applies-to-014.xht": [ + "e434f8db2f2d8efc79d31c79f3ec07447cdc6f9f", [ null, [ [ - "/css/reference/pass_if_square_96px_black.html", + "/css/CSS2/positioning/top-applies-to-001-ref.xht", "==" ] ], {} ] ], - "min-height-applies-to-015.xht": [ - "cd85ff5aaf73547ba90a62bd530a01f2a2db69cc", + "top-applies-to-015.xht": [ + "7b0ed4b920c2bf4e12893452a5211feec90cf883", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/positioning/top-applies-to-001-ref.xht", "==" ] ], {} ] ], - "min-height-percentage-001.xht": [ - "7f027e4a6a3acd153267125b7782471d926979d8", + "top-offset-001.xht": [ + "9f6eb162be47797a56e2265db4c56a8f77909797", [ null, [ [ - "/css/CSS2/normal-flow/max-height-percentage-001-ref.xht", + "/css/CSS2/positioning/bottom-offset-001-ref.xht", "==" ] ], {} ] ], - "min-height-percentage-002.xht": [ - "d5f33065e5b0415cdc45dba56ff536162e195d46", + "top-offset-002.xht": [ + "dda11587783518683f1ae63908c11ba742f94b56", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/positioning/bottom-offset-001-ref.xht", "==" ] ], {} ] ], - "min-height-percentage-003.xht": [ - "566da2affffb1611cca623f5e9f4012c53ed07ea", + "top-offset-003.xht": [ + "670c8f383c2e3bed2b3413d7d2076747c76fe5a5", [ null, [ [ - "/css/CSS2/normal-flow/min-height-percentage-003-ref.xht", + "/css/CSS2/positioning/top-offset-003-ref.xht", "==" ] ], {} ] ], - "min-height-separates-margin.html": [ - "1e144921fe34fa2403eac45fced5ea7ffe5561d5", + "top-offset-percentage-001.xht": [ + "3dbc83f9a0a37ccebebfd4d9e0d1ce32976c6182", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/CSS2/positioning/top-offset-percentage-001-ref.xht", "==" ] ], {} ] ], - "min-width-001.xht": [ - "1db3741df83fe39b8bc5b180da751120ee1988c9", + "top-offset-percentage-002.xht": [ + "a2f8d534377c79a2e1b3af74ea23be36e64bb8ed", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/positioning/left-offset-percentage-002-ref.xht", "==" ] ], {} ] - ], - "min-width-002.xht": [ - "e2a7bf18646dd9eff4dc0eb471980b587f2132a4", + ] + }, + "sec5": { + "adjacent-000.xht": [ + "f0d8e45e7193af90c698e402a4d80f2cebe36ecb", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/sec5/adjacent-000-ref.xht", "==" ] ], {} ] ], - "min-width-003.xht": [ - "6d47695652901ff0bddb441808f753de5627de0a", + "adjacent-001.xht": [ + "59b55d3ddd1b5d1015bb3256c747f78ea4547e39", [ null, [ [ - "/css/CSS2/normal-flow/max-width-003-ref.xht", + "/css/CSS2/sec5/adjacent-000-ref.xht", "==" ] ], {} ] ], - "min-width-004.xht": [ - "e36f7aa5726c8f3dff11c4e72960b87aaed89333", + "adjacent-002.xht": [ + "59a6c06ed966343b4ccbaedcd1751b9631022b47", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/sec5/adjacent-000-ref.xht", "==" ] ], {} ] ], - "min-width-005.xht": [ - "d40c0b39d6642cbe457da067e259c0246865f5d7", + "attribute-000.xht": [ + "0509900929fa9481d7516ef11080a40e0e841fc2", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/sec5/attribute-ref.xht", "==" ] ], {} ] ], - "min-width-006.xht": [ - "7e628c9c0dee15e9a2d0baddd847d3751438bb52", + "attribute-001.xht": [ + "155bc96527363dc963e74171bdb734a4a3728801", [ null, [ [ - "/css/CSS2/normal-flow/max-width-006-ref.xht", + "/css/CSS2/sec5/attribute-ref.xht", "==" ] ], {} ] ], - "min-width-007.xht": [ - "becbe01f77b5f0fd1d44c684c6ae2f4523482c1f", + "attribute-002.xht": [ + "b1ca0bb4026c3be8e4fcb93221aab11e99d759b3", [ null, [ [ - "/css/CSS2/normal-flow/max-width-006-ref.xht", + "/css/CSS2/sec5/attribute-ref.xht", "==" ] ], {} ] ], - "min-width-012.xht": [ - "b2a32590d141a9c866efae02c3fa41363d1884c7", + "attribute-003.xht": [ + "5789983520120534a68f621a630c978f19d48100", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/sec5/attribute-ref.xht", "==" ] ], {} ] ], - "min-width-013.xht": [ - "6a0b8d4ce77fa00498622d97929fb76ae0007eb9", + "attribute-004.xht": [ + "aab6bcadce80fe7cdb5b019f1536e609fbb59adc", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/sec5/attribute-ref.xht", "==" ] ], {} ] ], - "min-width-015.xht": [ - "0f1f26c1b96ec65521f967e6218cb5bb83cf9a89", + "attribute-005.xht": [ + "fc5030e744681dc848b2f87235865f3fa4e65b81", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/sec5/attribute-ref.xht", "==" ] ], {} ] ], - "min-width-016.xht": [ - "9029542567d2f008d53503e1a26812d10676956a", + "attribute-006.xht": [ + "bcb9f571dddd381710b027bc9956516ad1b3c877", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/sec5/attribute-ref.xht", "==" ] ], {} ] ], - "min-width-017.xht": [ - "ac31d76ef5c32f1a3cbad1e8c4dc190e47c7779c", + "attribute-007.xht": [ + "36291de5740f0b2b7f5d4670b1235332bee47bf9", [ null, [ [ - "/css/CSS2/normal-flow/max-width-006-ref.xht", + "/css/CSS2/sec5/attribute-ref.xht", "==" ] ], {} ] ], - "min-width-018.xht": [ - "855b97174db0b39e932825658c3f958d301d0aeb", + "class-000.xht": [ + "366573c74360e7de7cd752563ed9a8d8a72c9e61", [ null, [ [ - "/css/CSS2/normal-flow/max-width-006-ref.xht", + "/css/CSS2/sec5/class-000-ref.html", "==" ] ], {} ] ], - "min-width-023.xht": [ - "386aae5b39c4ba7a97de3de9dc90ee88dbd4f1a3", + "class-001.xht": [ + "096210ac2b18fc004f67318f1fbaf3af24ea200f", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/sec5/class-000-ref.html", "==" ] ], {} ] ], - "min-width-024.xht": [ - "b9b64bc198e7ff63bdddf3c65de5e78e47cf96a6", + "class-002.xht": [ + "85fdef97e34b986aef3bb29fd118a1edcab8ac24", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/sec5/class-002-ref.html", "==" ] ], {} ] ], - "min-width-025.xht": [ - "d5786ed77b00b7f06afd392f11f92f83e4b62518", + "descendant-selector-000.xht": [ + "2afa2da1796f274bc94607cb6b767fa80532f5ed", [ null, [ [ - "/css/CSS2/normal-flow/max-width-025-ref.xht", + "/css/CSS2/sec5/descendant-selector-000-ref.xht", "==" ] ], {} ] ], - "min-width-026.xht": [ - "b506f668b4e12b5380d9c4e4374d8494963a7a1a", + "descendant-selector-001.xht": [ + "d1ab44ff18975def4639544edd7482300a0a8c29", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/sec5/descendant-selector-000-ref.xht", "==" ] ], {} ] ], - "min-width-027.xht": [ - "0722b0cbf92dff46ff205ad46f7f9f39877f4507", + "first-child-000.xht": [ + "d31ef34996c0039d7027fa96a6a6109ff9ec1d0e", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/sec5/first-child-000-ref.html", "==" ] ], {} ] ], - "min-width-028.xht": [ - "10ac27ea78edef629e1b6083d1291b6c959cf5a8", + "first-child-001.xht": [ + "d6dbb4aab941b76b615f13425bba62be59b14d6f", [ null, [ [ - "/css/CSS2/normal-flow/max-width-006-ref.xht", + "/css/CSS2/sec5/first-child-000-ref.html", "==" ] ], {} ] ], - "min-width-029.xht": [ - "5cd5802df0dae531243da60ffb73ae7cbcb79051", + "first-line-000.xht": [ + "010019f0bbd9a6b4dc462bdff36cddccfcb4b003", [ null, [ [ - "/css/CSS2/normal-flow/max-width-006-ref.xht", + "/css/CSS2/sec5/first-line-000-ref.html", "==" ] ], {} ] ], - "min-width-034.xht": [ - "e16a3821c8fee228b54febfbaa4154b72395d6ab", + "grouping-000.xht": [ + "75f29cbc356292c8747edaeb3756efe7a34dea2f", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/sec5/grouping-000-ref.xht", "==" + ], + [ + "/css/CSS2/sec5/grouping-000-notref.xht", + "!=" ] ], {} ] ], - "min-width-035.xht": [ - "f156058cf8bb41f9dab1749f40241b638a93185b", + "grouping-001.xht": [ + "8ffcc3fe62ab66282fc8914b389204951869181d", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/sec5/grouping-000-ref.xht", "==" + ], + [ + "/css/CSS2/sec5/grouping-000-notref.xht", + "!=" ] ], {} ] ], - "min-width-036.xht": [ - "07ea986ffced3d7a396d33499ddbe3af46ef7df2", + "id-000.xht": [ + "6c732aadf10903597984711fc0910672cd6e1577", [ null, [ [ - "/css/CSS2/normal-flow/max-width-036-ref.xht", + "/css/CSS2/sec5/class-000-ref.html", "==" ] ], {} ] ], - "min-width-037.xht": [ - "a70c8d05d062a25ab84883dfb8f1612b2eaa2588", + "id-001.xht": [ + "81ac96e0e931e67b23c6167cb8790473e021b2fa", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/sec5/class-000-ref.html", "==" ] ], {} ] - ], - "min-width-038.xht": [ - "f2acb7283123e9c6cadf0e00b052125af49c0dbc", + ] + }, + "selector": { + "attribute-value-selector-007.html": [ + "9299a24fafe965bae783279bb86b25f67911c812", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/selector/attribute-value-selector-007-ref.html", "==" ] ], {} ] ], - "min-width-039.xht": [ - "18d1e54a7707426ed5c36bb0df6b1bd385b0c2f4", + "attribute-value-selector-008.xht": [ + "7a17b3202ca71bc8bbe9ab7b015661e2999526d4", [ null, [ [ - "/css/CSS2/normal-flow/max-width-006-ref.xht", + "/css/CSS2/selector/attribute-value-selector-008-ref.html", "==" ] ], {} ] ], - "min-width-040.xht": [ - "e33d332588933f0694ed1ede9fb8f77801ba7f2c", + "attribute-value-selector-009.xht": [ + "566fca5cbc7efe95120cca9cb4b6e2a9671925ab", [ null, [ [ - "/css/CSS2/normal-flow/max-width-006-ref.xht", + "/css/CSS2/selector/attribute-value-selector-009-ref.html", "==" ] ], {} ] ], - "min-width-045.xht": [ - "7dcde8db7bc9d867180040d0beacbab996c552b3", + "attribute-value-selector-010.html": [ + "ca6bdb6950a0a13ff7c435297bbb0f2cd55aef66", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/selector/attribute-value-selector-010-ref.html", "==" ] ], {} ] ], - "min-width-046.xht": [ - "8b993451b313ad18fee3d1f8cb83f5ca6d2dd6b6", + "lang-pseudoclass-001.html": [ + "4028be17606cdb69fe0578a478ad27d99510f249", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/selector/lang-pseudoclass-001-ref.html", "==" ] ], {} ] ], - "min-width-047.xht": [ - "81aa54b25041c425617ae7edd6fa909aeaadd498", + "lang-pseudoclass-002.xht": [ + "44aacfc28ac37603dcc6fa296827bfa6fff076df", [ null, [ [ - "/css/CSS2/normal-flow/max-width-047-ref.xht", + "/css/CSS2/selector/lang-pseudoclass-001-ref.html", "==" ] ], {} ] - ], - "min-width-048.xht": [ - "778ed5055720420b50787458c9a469a142495b31", + ] + }, + "selectors": { + "attribute-selector-001.xht": [ + "f19bc069d296025fae06d556aeebb39eaf634b79", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/reference/no-red-filler-text-ref.xht", "==" ] ], {} ] ], - "min-width-049.xht": [ - "d33eb3607853e3747653c81a99d3375cbdc0aaaa", + "attribute-selector-002.xht": [ + "16b4ff812820ef0951966999c7e875949767d0ac", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "min-width-050.xht": [ - "64513f8fd3542bbe5798311485da399b41830d47", + "attribute-token-selector-002.xht": [ + "7781f9f6162322336b3edd087b9ac384a23c680f", [ null, [ [ - "/css/CSS2/normal-flow/max-width-006-ref.xht", + "/css/CSS2/selectors/attribute-token-selector-002-ref.xht", "==" ] ], {} ] ], - "min-width-051.xht": [ - "fa0588d470dec3cf35b16d363e8a24fdb4e10136", + "attribute-value-selector-001.xht": [ + "0363f4ac53965571da8c26680ceebb1563c0a906", [ null, [ [ - "/css/CSS2/normal-flow/max-width-006-ref.xht", + "/css/CSS2/selectors/attribute-value-selector-001-ref.xht", "==" ] ], {} ] ], - "min-width-056.xht": [ - "a4fa0238f4b10b9f1127698c8c98549a12c6e854", + "attribute-value-selector-002.xht": [ + "a63a5965996509a90bbbc9c7e74ef24d7bf16788", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/selectors/attribute-value-selector-001-ref.xht", "==" ] ], {} ] ], - "min-width-057.xht": [ - "a2b657c64225813c2fc90a6ea2b445affbf22098", + "attribute-value-selector-003.xht": [ + "a0e8ae7bb6fc7685d315417fb71c701ff7329deb", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/selectors/attribute-value-selector-001-ref.xht", "==" ] ], {} ] ], - "min-width-058.xht": [ - "faa84c278c6764bf5334caf6a6dc483f14e5f95d", + "attribute-value-selector-004.xht": [ + "e2c601a7bdb34679257967e547b504b85fb33f94", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/reference/no-red-filler-text-ref.xht", "==" ] ], {} ] ], - "min-width-059.xht": [ - "a5b83377e57798a70228ca1eedff11e7b12887db", + "attribute-value-selector-005.html": [ + "08462db67abf2fb751c946e0a1f8b434c67f5ff9", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "min-width-060.xht": [ - "08d24653c8b126c33c541533cfdb6b1ab0dad3e0", + "attribute-value-selector-006.xht": [ + "99ce155f9578c4adee3be5e6275ac594f03673af", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "min-width-061.xht": [ - "1ebfa18cb4dd9a9ed62b0e28a4a58f3345e7c702", + "before-after-selector-001.xht": [ + "78e04da0856efab8d8fc8147ce4c065016dc60a9", [ null, [ [ - "/css/CSS2/normal-flow/max-width-061-ref.xht", + "/css/CSS2/selectors/before-after-selector-001-ref.xht", "==" ] ], {} ] ], - "min-width-062.xht": [ - "14629aa41a6fc23a4c859b2a0f722fe90c2a448e", + "before-first-letter-selector-001.xht": [ + "76a9f8b77c3f6784125e5f6672eb9ef0082d2958", [ null, [ [ - "/css/CSS2/normal-flow/max-width-061-ref.xht", + "/css/CSS2/selectors/before-first-letter-selector-001-ref.xht", "==" ] ], {} ] ], - "min-width-067.xht": [ - "7a7d7df456f17c365907d2442c765c9d1b861181", + "child-selector-001.xht": [ + "cc8c7be35a51d045ea8cbb66b0266d353b3f15e1", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/selectors/child-selector-001-ref.xht", "==" ] ], {} ] ], - "min-width-068.xht": [ - "8fbd206d7ddae220389aab3bbe96e35aa8230d9c", + "child-selector-002.xht": [ + "a343e7c4bf25bba85d598040751a2b39589499d5", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/selectors/child-selector-002-ref.xht", "==" ] ], {} ] ], - "min-width-069.xht": [ - "90b35a58e6587ae5369de8e76469749077f63cf1", + "child-selector-003.xht": [ + "62bb52707733205c6fc69d5fa995e3b7a0cdb916", [ null, [ [ - "/css/CSS2/normal-flow/max-width-069-ref.xht", + "/css/CSS2/selectors/child-selector-003-ref.xht", "==" ] ], {} ] ], - "min-width-070.xht": [ - "465ac831acae2b134064cef3a3257356ccb05deb", + "class-selector-001.xht": [ + "580f661fd07c1feb8849a9b4d80f6dc93c551efa", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/reference/no-red-filler-text-ref.xht", "==" ] ], {} ] ], - "min-width-071.xht": [ - "98a9ae71a6ce9aedf6dcf896cbbe41691d4a8cf3", + "class-selector-002.xht": [ + "5bf4e6abd574796b7018b8ad47153eb04dd875ed", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "min-width-072.xht": [ - "8652c80a15647f4dd80160c9809c385eeab90f95", + "class-selector-003.xht": [ + "1d17a6ec9b2054f018e31f898d6207f048c01340", [ null, [ [ - "/css/CSS2/normal-flow/max-width-072-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "min-width-073.xht": [ - "5e4ba59147f0c763a7cd72d2af6e3c75346dc4d4", + "class-selector-004.xht": [ + "c7faefbce17e67c31164c4442685fc19b7f87010", [ null, [ [ - "/css/CSS2/normal-flow/max-width-072-ref.xht", + "/css/CSS2/reference/no-red-filler-text-ref.xht", "==" ] ], {} ] ], - "min-width-078.xht": [ - "d46e9637c3963065ca6e8fde29ff2a13511a445e", + "class-selector-005.xht": [ + "a62adaee1cc844b3cf9bf115dccf75445026556b", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/reference/no-red-filler-text-ref.xht", "==" ] ], {} ] ], - "min-width-079.xht": [ - "a0ac5f5a0d7cf433af99ab439ef1647952d0bf02", + "class-selector-006.xht": [ + "776624ae12724813fc00e18dd4da42cd37070342", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "min-width-080.xht": [ - "2611b9ba568dfc56a06c33b9bd0963f70f2d1548", + "class-selector-007.xht": [ + "5ec98217461852d2cc961c3448cffde4ad133d4d", [ null, [ [ - "/css/CSS2/normal-flow/max-width-025-ref.xht", + "/css/CSS2/reference/no-red-filler-text-ref.xht", "==" ] ], {} ] ], - "min-width-081.xht": [ - "af752899620669dcdda997e8dc3474ee56336aa9", + "class-selector-008.xht": [ + "b4ceabb6a02929083221d162c9b295b1149446d0", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/reference/ref-this-text-should-be-green.xht", "==" ] ], {} ] ], - "min-width-082.xht": [ - "e0ab54c605768bc549e7cb25fe007f034741eaaf", + "class-selector-009.xht": [ + "cba3e082894cda1fd0674d6f43c0e91f2a110016", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/reference/ref-green-background.xht", "==" ] ], {} ] ], - "min-width-083.xht": [ - "6db4c8637d37cc48770ba805939fe3d81e86a932", + "class-selector-010.xht": [ + "e0fd5bc19a317417a54a625b229f2391b9a8ffd8", [ null, [ [ - "/css/CSS2/normal-flow/max-width-006-ref.xht", + "/css/CSS2/reference/ref-green-background.xht", "==" ] ], {} ] ], - "min-width-084.xht": [ - "b1a5afdfe4d4b3564f0f6e6aea56738ee78aeac8", + "class-selector-011.xht": [ + "ac49276ec296f524568c82c72aa7def3af16fd9c", [ null, [ [ - "/css/CSS2/normal-flow/max-width-006-ref.xht", + "/css/CSS2/reference/ref-green-background.xht", "==" ] ], {} ] ], - "min-width-089.xht": [ - "ce9e0e02cac12b33b2340f2a5e54ee49220016e9", + "class-selector-012.xht": [ + "ea57e2b8a510a7470621cb275d782906d3bebe80", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/selectors/class-selector-012-ref.html", "==" ] ], {} ] ], - "min-width-090.xht": [ - "65a24e3b905bbf4f319064acd2d7ef0fba6fdcbc", + "combinator-001.xht": [ + "e695258889abb3c97508c93b89743f2215c09aa9", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "min-width-091.xht": [ - "551d9f303e0bb7a72aabbb776eb1b1cbd41f5767", + "combinator-002.xht": [ + "543b5b3cdebec09077e6799668ac6a3e142cc1dd", [ null, [ [ - "/css/CSS2/normal-flow/max-width-003-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "min-width-092.xht": [ - "826257dc9caf595c1a1c66d24d8b7a3cbbf9e9ba", + "combinator-003.xht": [ + "eb51e1860207b1cbc98234db7900a2f43f2c3f46", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "min-width-093.xht": [ - "03792fc2cc9e407c1ebe3e1475cacf0843c7f6c2", + "combinator-004.xht": [ + "f0447335987e13ba752b266543548d2993857b09", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "min-width-094.xht": [ - "43222ff25bd57ec9a1856085c7aa5356fa9398c6", + "default-attribute-selector-001.xht": [ + "f7eb15dfe658130172912e35dc9c1a4256703240", [ null, [ [ - "/css/CSS2/normal-flow/max-width-006-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "min-width-095.xht": [ - "e59faed5fc5c00ce19305d1fefef13cdf8edf33c", + "default-attribute-selector-002.xht": [ + "8ad62c99a8acc40c1b15354f96fece431abd62d5", [ null, [ [ - "/css/CSS2/normal-flow/max-width-006-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "min-width-100.xht": [ - "0a3df1c8ee6986bf0ef8a3c20badefafbe1a52dd", + "default-attribute-selector-003.xht": [ + "628019b2ddf7b390d2207e0f966a284940b1cbaf", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "min-width-101.xht": [ - "0c6cfeea6c664f73ecf7368024badf8e068c4504", + "default-attribute-selector-004.xht": [ + "1c3ffdf70010deecae7257bb3524b7eb5024f259", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "min-width-102.xht": [ - "f870669216f18ecf5a7a77ff23075c8be986d3c3", + "descendent-selector-001.xht": [ + "a494242eb50a2c858d657c3bf93611a884855e61", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/reference/no-red-filler-text-ref.xht", "==" ] ], {} ] ], - "min-width-103.xht": [ - "afd1061d6ddf38b63733238fb41cb6a26c8e40ee", + "descendent-selector-002.xht": [ + "dcc9f917732d7ada6d36819be434b8650f5a6be0", [ null, [ [ - "/css/CSS2/normal-flow/max-width-003-ref.xht", + "/css/CSS2/selectors/descendent-selector-002-ref.xht", "==" ] ], {} ] ], - "min-width-applies-to-001.xht": [ - "65600d4e7f4cf510eea97d434b919345578660bb", + "descendent-selector-003.xht": [ + "93e8915345b2efe1f7f96ff91c3a0cf62ecc0934", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/selectors/descendent-selector-002-ref.xht", "==" ] ], {} ] ], - "min-width-applies-to-002.xht": [ - "b94ec70f43da279d4048c58c7b41bac4940e074d", + "descendent-selector-004.xht": [ + "94b5aa49aee795b9b5c18d18afde7854aa20c1e9", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/selectors/descendent-selector-004-ref.xht", "==" ] ], {} ] ], - "min-width-applies-to-003.xht": [ - "2861c31b1d74ebac0dbc9632b91b0b74eccf0fea", + "descendent-selector-005.xht": [ + "74323f91a1606385b467af307d38337f0bde4b59", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/reference/no-red-filler-text-ref.xht", "==" ] ], {} ] ], - "min-width-applies-to-004.xht": [ - "c689e1babe2a45cff92d7666bc2b7214b99ecc97", + "descendent-selector-006.xht": [ + "5e7167fefe9c1366b9dd012f63b9ada07edff193", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/selectors/descendent-selector-004-ref.xht", "==" ] ], {} ] ], - "min-width-applies-to-005.xht": [ - "e819a4c96725bd93c8e3ab257020a5563ce7ac08", + "descendent-selector-007.xht": [ + "d438df2d0d3624353f6911a9ffd4d56a00698f17", [ null, [ [ - "/css/reference/pass_if_square_96px_black.html", + "/css/CSS2/selectors/descendent-selector-002-ref.xht", "==" ] ], {} ] ], - "min-width-applies-to-006.xht": [ - "38a94800f39c5a30aabbe7fb001310521724fa1f", + "descendent-selector-008.xht": [ + "ce57a7e4d511bebc66aa528ffaf7d7304b5e1699", [ null, [ [ - "/css/reference/pass_if_square_96px_black.html", + "/css/CSS2/selectors/descendent-selector-004-ref.xht", "==" ] ], {} ] ], - "min-width-applies-to-007.xht": [ - "bcf008d14e18b8a295ba6515c26885fa713ca8ad", + "descendent-selector-009.xht": [ + "6929b54023b9b4c77289b1cb417ba26bdcb015c6", [ null, [ [ - "/css/reference/pass_if_square_96px_black.html", + "/css/CSS2/selectors/descendent-selector-002-ref.xht", "==" ] ], {} ] ], - "min-width-applies-to-008.xht": [ - "bd56072be9232f00610dc8b5238f414886d9928b", + "descendent-selector-010.xht": [ + "5330144f4f2f7eeeceb5da4c0d00cee4ef39ac00", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/selectors/descendent-selector-002-ref.xht", "==" ] ], {} ] ], - "min-width-applies-to-009.xht": [ - "dad5efa9328ad3f650f77b481b8ab8447d5e1124", + "descendent-selector-011.xht": [ + "4373d7bd393be0788232c011686e4cba808e6543", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/selectors/descendent-selector-002-ref.xht", "==" ] ], {} ] ], - "min-width-applies-to-012.xht": [ - "07ba0f93329bdf77664928c071596ef69196ca89", + "dynamic-sibling-combinator-001.xht": [ + "f12c2790e87f9335f9cb01b85ed5e228ee02cead", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/selectors/dynamic-sibling-combinator-001-ref.xht", "==" ] ], {} ] ], - "min-width-applies-to-013.xht": [ - "32cdcae85fa1a03b893ff51401956af1505c26ad", + "first-child-selector-001.xht": [ + "8f13e804fe10965bbc0d7d1ec1585482a2d17a93", [ null, [ [ - "/css/reference/pass_if_square_96px_black.html", + "/css/CSS2/selectors/first-child-selector-001-ref.html", "==" ] ], {} ] ], - "min-width-applies-to-014.xht": [ - "16cb2359f1bf9853f9b9677e6035e5f0571805f0", + "first-child-selector-002.xht": [ + "2115e5512969ca78d936863675dd7a0befc86207", [ null, [ [ - "/css/reference/pass_if_square_96px_black.html", + "/css/CSS2/selectors/first-child-selector-002-ref.html", "==" ] ], {} ] ], - "min-width-applies-to-015.xht": [ - "aac74f7bee0539a48d1eba869d4dbc246d71c3ae", + "first-child-selector-003.xht": [ + "a02e002777d4d333dc34741ef14a0f753077d39f", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/reference/ref-this-text-should-be-green.xht", "==" ] ], {} ] ], - "min-width-applies-to-016.xht": [ - "25a1121004a0d8b33da2b8937eec1bf34deb112b", + "first-letter-001.xht": [ + "8fd71ad83562c6078ea990f27f3feb54c60459ed", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/selectors/first-letter-001-ref.xht", "==" ] ], {} ] ], - "min-width-percentage-001.xht": [ - "f5da05c32b9ea5ab8a4de38897195dc8a0b62228", + "first-letter-abspos.html": [ + "c8b14b462c70e475d0147212fd61fe80dbecd79b", [ null, [ [ - "/css/CSS2/normal-flow/max-width-percentage-001-ref.xht", + "/css/CSS2/selectors/first-letter-abspos-ref.html", "==" ] ], {} ] ], - "min-width-percentage-002.xht": [ - "51e5b647198ae21a071bd1cd3dc625aea0df84d0", + "first-letter-dynamic-001.xht": [ + "dcde3ad0551e35b34f37437f4378598b26fa75e3", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/selectors/first-letter-dynamic-001-ref.xht", "==" ] ], {} ] ], - "negative-margin-001.html": [ - "597516d5120055a74fdc7260a5f1e04c111c7fce", + "first-letter-dynamic-002.xht": [ + "c689aecc4410c78339597711fd63d9988ffb7fec", [ null, [ [ - "/css/CSS2/normal-flow/negative-margin-001-ref.html", + "/css/CSS2/selectors/first-letter-dynamic-002-ref.xht", "==" ] ], {} ] ], - "negative-margin-shrinking-container-size-001.html": [ - "dc61db5830043efecc95e2a44787e6ffb5d15d0c", + "first-letter-dynamic-003a.xht": [ + "e95c6f4814143f7cf4fcf8eb8d81eaa29b4fb8cd", [ null, [ [ - "/css/reference/ref-filled-green-200px-square.html", + "/css/CSS2/selectors/first-letter-dynamic-003-ref.xht", "==" ] ], {} ] ], - "negative-margin-shrinking-container-size-002.html": [ - "37e9b3559de23718c9b375b4293bd4eea670f753", + "first-letter-dynamic-003b.xht": [ + "2a3193271cde9be6f81c115a6582a5bb2f31f051", [ null, [ [ - "/css/reference/ref-filled-green-200px-square.html", + "/css/CSS2/selectors/first-letter-dynamic-003-ref.xht", "==" ] ], {} ] ], - "overflow-scroll-paint-order.html": [ - "a0813ae4696ca20e204e62ae90bf9d562fa20091", + "first-letter-inherit-001.xht": [ + "82655938bed97f9e5491357486004fecfb9d10e0", [ null, [ [ - "/css/CSS2/normal-flow/overflow-scroll-paint-order-ref.html", + "/css/CSS2/selectors/first-letter-inherit-001-ref.xht", "==" ] ], {} ] ], - "replaced-intrinsic-001.xht": [ - "7cbb65bf09022bb3c87b417ae6a93ba3a424b8dc", + "first-letter-nested-001.xht": [ + "805b7d57278c013c2c861a83f26b654ca8cbf490", [ null, [ [ - "/css/CSS2/normal-flow/replaced-intrinsic-001-ref.xht", + "/css/CSS2/selectors/first-letter-nested-001-ref.xht", "==" ] ], {} ] ], - "replaced-intrinsic-002.xht": [ - "817a6227d38a277d010c04871ae9abea391d99e7", + "first-letter-nested-002.xht": [ + "45c41ee0002e982d29adedce20d509fa878640ea", [ null, [ [ - "/css/CSS2/normal-flow/replaced-intrinsic-002-ref.xht", + "/css/CSS2/selectors/first-letter-nested-001-ref.xht", "==" ] ], {} ] ], - "replaced-intrinsic-003.xht": [ - "e68c0bebe7ce6307c96e2040a3d186b1de14f34b", + "first-letter-nested-003.xht": [ + "bcdf10a919cc6c43dfef3f057fca8f70d3f9f08e", [ null, [ [ - "/css/CSS2/normal-flow/replaced-intrinsic-003-ref.xht", + "/css/CSS2/selectors/first-letter-nested-001-ref.xht", "==" ] ], {} ] ], - "replaced-intrinsic-004.xht": [ - "ce8c0a1ababbe6fb371df77b29cca1bea08f617f", + "first-letter-nested-004.xht": [ + "7e59e77f1c64abcf2017cbfd143a775c9bf7cba2", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/selectors/first-letter-nested-001-ref.xht", "==" ] ], {} ] ], - "replaced-intrinsic-005.xht": [ - "6f5db58ba88a009b25c872bff3f13ab2a0fb73d3", + "first-letter-nested-005.xht": [ + "002b8b952de9184b222fff32c0a18f357473516c", [ null, [ [ - "/css/CSS2/normal-flow/replaced-intrinsic-005-ref.xht", + "/css/CSS2/selectors/first-letter-nested-001-ref.xht", "==" ] ], {} ] ], - "resizable-iframe-paint-order.html": [ - "574df950ce6449093b317e648d0566e23a6d6716", + "first-letter-nested-006.xht": [ + "00149f55b701b63a238874ad39a1e6baaf8f0680", [ null, [ [ - "/css/CSS2/normal-flow/resizable-iframe-paint-order-ref.html", + "/css/CSS2/selectors/first-letter-nested-001-ref.xht", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 255 - ], - [ - 0, - 200 - ] - ] - ] - ] - } + {} ] ], - "root-box-001.xht": [ - "2863619a50bd29a9edec38094314884b07f47bd3", + "first-letter-nested-007.xht": [ + "ffe4e25fa500a98183162b95d7b13a04a2e028cf", [ null, [ [ - "/css/CSS2/normal-flow/root-box-001-ref.xht", + "/css/CSS2/selectors/first-letter-nested-001-ref.xht", "==" ] ], {} ] ], - "table-in-inline-001.xht": [ - "1c8eb8ae3896871c58ff9bca88e587d49458db4f", + "first-letter-punctuation-001.xht": [ + "f0e1556767ec21d7c4beec3972da69aa23b32124", [ null, [ [ - "/css/CSS2/normal-flow/table-in-inline-001-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-001-ref.xht", "==" ] ], {} ] ], - "video-paint-order.html": [ - "5c259606bec8da31d001430a9405e273328f1fb1", + "first-letter-punctuation-002.xht": [ + "8d31e992f8b4776f77d3e115b86ce29e36b9ba8f", [ null, [ [ - "/css/CSS2/normal-flow/video-paint-order-ref.html", + "/css/CSS2/selectors/first-letter-punctuation-002-ref.xht", "==" ] ], {} ] ], - "width-001.xht": [ - "490d07b436ffddaed8cef4ae0313dc127a021944", + "first-letter-punctuation-003.xht": [ + "f2f277f55c3f6686988589458deade852babb45f", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/selectors/first-letter-punctuation-003-ref.xht", "==" ] ], {} ] ], - "width-002.xht": [ - "27f70297fc893fefe78bdfceaf7933d4334a99ed", + "first-letter-punctuation-004.xht": [ + "480a1490c0380e8d4810e8f61702a5178e5ed6d0", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/selectors/first-letter-punctuation-004-ref.xht", "==" ] ], {} ] ], - "width-003.xht": [ - "04cb1075bca2def7e0b031f00be2529aad1358f8", + "first-letter-punctuation-005.xht": [ + "d8de466f4fc76854b5e10daec3685e4728eafd8b", [ null, [ [ - "/css/CSS2/normal-flow/max-width-003-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-005-ref.xht", "==" ] ], {} ] ], - "width-004.xht": [ - "0bb4504f5a637e2feaf335cd42e143c799a1c767", + "first-letter-punctuation-006.xht": [ + "0803ca207c15acd979183b75db4ca092eacd326e", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/selectors/first-letter-punctuation-006-ref.xht", "==" ] ], {} ] ], - "width-005.xht": [ - "6c33aad874ff55a6f4e773d2d89cefc78318314b", + "first-letter-punctuation-007.xht": [ + "c4883ec8ac912df7f1c78fe150b7c0613ac3dfc1", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/selectors/first-letter-punctuation-007-ref.xht", "==" ] ], {} ] ], - "width-006.xht": [ - "13dc9c6daa2f459a816cb7527bcf277a40f1c24a", + "first-letter-punctuation-008.xht": [ + "78792856be59275fdab97632a49a88e1a258e054", [ null, [ [ - "/css/CSS2/normal-flow/max-width-006-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-008-ref.xht", "==" ] ], {} ] ], - "width-007.xht": [ - "b175a933e2a0fa10ce132394e1013d4ffb56c06d", + "first-letter-punctuation-009.xht": [ + "366170f8ffa135fe8d96392738d0d32fe053ed92", [ null, [ [ - "/css/CSS2/normal-flow/max-width-006-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-009-ref.xht", "==" ] ], {} ] ], - "width-012.xht": [ - "a4d67491388c4b17e18fc86cfa61bc99d61c9514", + "first-letter-punctuation-010.xht": [ + "03e2cffba69da5753b3afafb069f7dd44bcc5ec2", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/selectors/first-letter-punctuation-010-ref.xht", "==" ] ], {} ] ], - "width-013.xht": [ - "fe2179984d19099bb14dbaac1ca10c21d0d13925", + "first-letter-punctuation-012.xht": [ + "d4fcc96702b3e8203a6f9426fcd8c66df17219fe", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/selectors/first-letter-punctuation-012-ref.xht", "==" ] ], {} ] ], - "width-015.xht": [ - "481712f7f923a264d272bf7a064a1e3b62718ca1", + "first-letter-punctuation-013.xht": [ + "026a2aa24010baae9dac236c12bdea8c9f6d4fed", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/selectors/first-letter-punctuation-013-ref.xht", "==" ] ], {} ] ], - "width-016.xht": [ - "a51692cd5e2ee399939aac7b612337be63a44a9c", + "first-letter-punctuation-014.xht": [ + "37e0d0d85e71ae8dcb9cf01a40f46072668776df", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/selectors/first-letter-punctuation-014-ref.xht", "==" ] ], {} ] ], - "width-017.xht": [ - "fc557cd39c34a90c078ef7de5d073e8115d841b4", + "first-letter-punctuation-015.xht": [ + "b0a697c1ffb6a20227f47eef213f53279183f572", [ null, [ [ - "/css/CSS2/normal-flow/max-width-006-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-015-ref.xht", "==" ] ], {} ] ], - "width-018.xht": [ - "dd216b471349a8e6883776a8f38fc57ed4439f86", + "first-letter-punctuation-016.xht": [ + "49d2ddea3c4b5b5583cd3e784991fa1144a0b635", [ null, [ [ - "/css/CSS2/normal-flow/max-width-006-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-016-ref.xht", "==" ] ], {} ] ], - "width-023.xht": [ - "ef7537f6d454b4144f9d9f6dcdbfabcedd187ec5", + "first-letter-punctuation-017.xht": [ + "4426416ee7a262ab7bb757a2851588f782fda6cf", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/selectors/first-letter-punctuation-017-ref.xht", "==" ] ], {} ] ], - "width-024.xht": [ - "fce85940ef2fb84b8cbbcfdf16b57def42f78bab", + "first-letter-punctuation-018.xht": [ + "47a038207dcbf3477e7bb0b0579d7154740f5b0f", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/selectors/first-letter-punctuation-018-ref.xht", "==" ] ], {} ] ], - "width-025.xht": [ - "608d1e806d7939348dc6ef0a2621027848ff8079", + "first-letter-punctuation-019.xht": [ + "2ee11cfedc29afb2319780d4069bf07b2015c72d", [ null, [ [ - "/css/CSS2/normal-flow/max-width-025-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-019-ref.xht", "==" ] ], {} ] ], - "width-026.xht": [ - "b6c409fb4728ecdad799685e41dda115f05d21c0", + "first-letter-punctuation-020.xht": [ + "97a56425be5f66f3460c54e8c7a2476837ecbd4a", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/selectors/first-letter-punctuation-020-ref.xht", "==" ] ], {} ] ], - "width-027.xht": [ - "859defc6170f3a872f6608eff96c3cc1a5de08f9", + "first-letter-punctuation-021.xht": [ + "494e5b6dd1fa3f5a9f1f726387274aa53d9439ad", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/selectors/first-letter-punctuation-021-ref.xht", "==" ] ], {} ] ], - "width-028.xht": [ - "5e4f3f2c2003208470c5b09b5343f5db3c2add59", + "first-letter-punctuation-022.xht": [ + "bf8e058407b4df796dbe251cbee7be29ad831efa", [ null, [ [ - "/css/CSS2/normal-flow/max-width-006-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-022-ref.xht", "==" ] ], {} ] ], - "width-029.xht": [ - "ade1a9e6c8d0109cf40455c30f279e71aea2cfe5", + "first-letter-punctuation-023.xht": [ + "25087ff0ff9c3a1af7a65b5db391040d7bfcd6f8", [ null, [ [ - "/css/CSS2/normal-flow/max-width-006-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-023-ref.xht", "==" ] ], {} ] ], - "width-034.xht": [ - "12b1c3c69635aa62fd0d4081d09d8a3333156212", + "first-letter-punctuation-024.xht": [ + "9a4033da742be8b8903d9df41b390b38cf19edd2", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/selectors/first-letter-punctuation-024-ref.xht", "==" ] ], {} ] ], - "width-035.xht": [ - "dd7a308a221cdf2d0402646618458e150b0cef45", + "first-letter-punctuation-025.xht": [ + "a8e3ee2615437a9a91f9ae146f70383af35810b5", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/selectors/first-letter-punctuation-025-ref.xht", "==" ] ], {} ] ], - "width-036.xht": [ - "bc6521526e3b0351ba8ae1a1844553f1819ee021", + "first-letter-punctuation-026.xht": [ + "f22f680debc53f02012daf0a16d167f6eadb2234", [ null, [ [ - "/css/CSS2/normal-flow/max-width-036-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-026-ref.xht", "==" ] ], {} ] ], - "width-037.xht": [ - "54f02b088f1da2a883a97059c59396d22f344bfe", + "first-letter-punctuation-027.xht": [ + "dfc042359d37a1bdc3621ced6bf8202a43cb3fa8", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/selectors/first-letter-punctuation-027-ref.xht", "==" ] ], {} ] ], - "width-038.xht": [ - "48c68e127f266a72cd8a3477fdf3379686bfda1b", + "first-letter-punctuation-028.xht": [ + "a15b9135f17fec2a5f2df7df11c39c127795b013", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/selectors/first-letter-punctuation-028-ref.xht", "==" ] ], {} ] ], - "width-039.xht": [ - "57befa86743ebc11aa6cc2a1ff57e4d44d3691f1", + "first-letter-punctuation-029.xht": [ + "0dfa495d535ff93b9ec1f8466ed4e42f2812cadb", [ null, [ [ - "/css/CSS2/normal-flow/max-width-006-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-029-ref.xht", "==" ] ], {} ] ], - "width-040.xht": [ - "1da5c248421e06510f18e7f1d0de322f47dc3189", + "first-letter-punctuation-030.xht": [ + "2dd97315d26e958311f5e5bbeb76de96bea1a299", [ null, [ [ - "/css/CSS2/normal-flow/max-width-006-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-030-ref.xht", "==" ] ], {} ] ], - "width-045.xht": [ - "0090d2f3bf810c0a3a8254e18531c7acfcecb238", + "first-letter-punctuation-031.xht": [ + "a7779c84c16dbef83e93e092983a35aa96468a98", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/selectors/first-letter-punctuation-031-ref.xht", "==" ] ], {} ] ], - "width-046.xht": [ - "9b54e3c47261b74d6254bf95244577cf0451c3b4", + "first-letter-punctuation-032.xht": [ + "f8107ba2cef5ae809a9e4b7ea3ab2ba049b84851", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/selectors/first-letter-punctuation-032-ref.xht", "==" ] ], {} ] ], - "width-047.xht": [ - "cb575da4d8405bd897b32dabf503eb3c206602a7", + "first-letter-punctuation-033.xht": [ + "6e4e69a083a8a17d257db70d8562a74bff5ab041", [ null, [ [ - "/css/CSS2/normal-flow/max-width-047-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-033-ref.xht", "==" ] ], {} ] ], - "width-048.xht": [ - "edf0656cb3616061ecee8872558b19c3e8dafbc5", + "first-letter-punctuation-034.xht": [ + "32b2f4a4134647faedd0c61ba752575866743727", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/selectors/first-letter-punctuation-034-ref.xht", "==" ] ], {} ] ], - "width-049.xht": [ - "8bc9ef40ea25a26b39597340d8a49a65e145d01c", + "first-letter-punctuation-035.xht": [ + "7ed901d475b8d4db257fdae679b7eddd01e9cb74", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/selectors/first-letter-punctuation-035-ref.xht", "==" ] ], {} ] ], - "width-050.xht": [ - "8e1ec3ebd34e5128db4570e7536abe31742298fd", + "first-letter-punctuation-036.xht": [ + "3af8a547673d5dfe54632dca8f63f2c4616a69f9", [ null, [ [ - "/css/CSS2/normal-flow/max-width-006-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-036-ref.xht", "==" ] ], {} ] ], - "width-051.xht": [ - "34ae663d49be0f915904f650dbbaf55337f3b84d", + "first-letter-punctuation-037.xht": [ + "eaf49752e5f0ab6cd5d3a9fd245315b9f7a93200", [ null, [ [ - "/css/CSS2/normal-flow/max-width-006-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-037-ref.xht", "==" ] ], {} ] ], - "width-056.xht": [ - "15a4e3195cf5256ec5a91b03547aff4b8e78e22f", + "first-letter-punctuation-038.xht": [ + "40fac388f71fb520c4160341f03126b06f2b358d", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/selectors/first-letter-punctuation-038-ref.xht", "==" ] ], {} ] ], - "width-057.xht": [ - "873402f9e53bfc558db24fa2b8af332d8930d084", + "first-letter-punctuation-039.xht": [ + "3a4e3f496e423995fc63794fdae8caa0a13f2f57", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/selectors/first-letter-punctuation-039-ref.xht", "==" ] ], {} ] ], - "width-058.xht": [ - "62156f0029b6a72f139c1aa54ace104982cdc167", + "first-letter-punctuation-040.xht": [ + "31a10d66e73ec9b489b74f3b1d63802a44c153f4", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/selectors/first-letter-punctuation-040-ref.xht", "==" ] ], {} ] ], - "width-059.xht": [ - "555d270816b7effe5673c6038418f235ddc53bd5", + "first-letter-punctuation-041.xht": [ + "576cf6862aba9e08ef499ae12a5dbf2c74a08962", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/selectors/first-letter-punctuation-041-ref.xht", "==" ] ], {} ] ], - "width-060.xht": [ - "1832dc16be06148f8cc353d6dd47dc691f95cac4", + "first-letter-punctuation-042.xht": [ + "2daa4fbfebaa838911e2acb627ebee2832171a1d", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/selectors/first-letter-punctuation-042-ref.xht", "==" ] ], {} ] ], - "width-061.xht": [ - "96b326f883ed4cb3113e028d6ed5b6ed66f80a20", + "first-letter-punctuation-043.xht": [ + "507bc4705cb3d09f9a073ea4267a5216ed7725d9", [ null, [ [ - "/css/CSS2/normal-flow/max-width-061-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-043-ref.xht", "==" ] ], {} ] ], - "width-062.xht": [ - "daff788b11b83e6363d7d424a6b590835bb4c8f2", + "first-letter-punctuation-044.xht": [ + "6ae40aa3de56ca9ffbe427feb2c95f0ce3c88d88", [ null, [ [ - "/css/CSS2/normal-flow/max-width-061-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-044-ref.xht", "==" ] ], {} ] ], - "width-067.xht": [ - "4f20df1e11b8b866343aeed9b8c45ebca058e4c9", + "first-letter-punctuation-045.xht": [ + "3c9f295b0c86f1e599889ef6082187a5bf86f37a", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/selectors/first-letter-punctuation-045-ref.xht", "==" ] ], {} ] ], - "width-068.xht": [ - "5b1f7996ca3c77bf1bbfb82ed05e4f23c1ff7991", + "first-letter-punctuation-046.xht": [ + "f041501af5347c276022768c365fa650f0229155", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/selectors/first-letter-punctuation-046-ref.xht", "==" ] ], {} ] ], - "width-069.xht": [ - "d29b1f3eceb16f2fc0b819087b201a5527048c49", + "first-letter-punctuation-047.xht": [ + "0b71f709923886255fd3659949ce24e5329a6340", [ null, [ [ - "/css/CSS2/normal-flow/max-width-069-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-047-ref.xht", "==" ] ], {} ] ], - "width-070.xht": [ - "42e554e8cd9ddcbaa17f7bbaef3c33749f3a3f4a", + "first-letter-punctuation-048.xht": [ + "f7d1425bc8dfbc6cfe7421fd6cba99d6e5bd169a", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/selectors/first-letter-punctuation-048-ref.xht", "==" ] ], {} ] ], - "width-071.xht": [ - "9577a48ef8b38e8ebb91a94abdc62496e0e37718", + "first-letter-punctuation-049.xht": [ + "d1eb52f122de10c7fb9447e1db9833cbf2970cc2", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/selectors/first-letter-punctuation-049-ref.xht", "==" ] ], {} ] ], - "width-072.xht": [ - "08ce84318cfbf415700296e1031bf4436216bf79", + "first-letter-punctuation-050.xht": [ + "e2f387f37b58bd139ad2f79c3ead147e3da1c650", [ null, [ [ - "/css/CSS2/normal-flow/max-width-072-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-050-ref.xht", "==" ] ], {} ] ], - "width-073.xht": [ - "a7d881aed9bb29414d7e044eca32c43fc44e3e4e", + "first-letter-punctuation-051.xht": [ + "41d19750079aa150f3ffd028bfdfcb626324e1f8", [ null, [ [ - "/css/CSS2/normal-flow/max-width-072-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-051-ref.xht", "==" ] ], {} ] ], - "width-078.xht": [ - "353a3313a8ab52c9030a2de6f66daf8d26b74e93", + "first-letter-punctuation-052.xht": [ + "08a2fcdb65bff77652fe43315a09fd69dca101dc", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/selectors/first-letter-punctuation-052-ref.xht", "==" ] ], {} ] ], - "width-079.xht": [ - "d7ddc2193d058b4fef5634efd47952736b493abe", + "first-letter-punctuation-053.xht": [ + "78b78861d83f73e7ddebe87ac4a60c8a4a5d2e0d", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/selectors/first-letter-punctuation-053-ref.xht", "==" ] ], {} ] ], - "width-080.xht": [ - "cfb5b1fa9b7d4724cc5e40a0d28e5e764b1f1d5f", + "first-letter-punctuation-054.xht": [ + "4d2abfa4309f29bdb6d61c5589693dc47d5737a3", [ null, [ [ - "/css/CSS2/normal-flow/max-width-025-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-054-ref.xht", "==" ] ], {} ] ], - "width-081.xht": [ - "18f084cd5c97f3d823bf922b047adf85900611c1", + "first-letter-punctuation-055.xht": [ + "c4e6ed381121a16d29018b72e1d46913e45862d7", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/selectors/first-letter-punctuation-055-ref.xht", "==" ] ], {} ] ], - "width-082.xht": [ - "df9ce59284b36266256513f05ed56face639222b", + "first-letter-punctuation-056.xht": [ + "00f91a84c2de1a65c16b0138519d52459a3e61bf", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/selectors/first-letter-punctuation-056-ref.xht", "==" ] ], {} ] ], - "width-083.xht": [ - "4619538b1f158dc300e2ea74c23162f58e7601a2", + "first-letter-punctuation-057.xht": [ + "f9705a0857e12602e5b9311de5e09f975dd4b7e6", [ null, [ [ - "/css/CSS2/normal-flow/max-width-006-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-057-ref.xht", "==" ] ], {} ] ], - "width-084.xht": [ - "030838ff359a94ae8504bca124c090c2088b5559", + "first-letter-punctuation-058.xht": [ + "de40bf1d3a6c0af8e6595d457e58b1e889685d7c", [ null, [ [ - "/css/CSS2/normal-flow/max-width-006-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-058-ref.xht", "==" ] ], {} ] ], - "width-089.xht": [ - "29318bdde41ba92450a679de0bb85ad3f093f780", + "first-letter-punctuation-059.xht": [ + "c9c8a6f2812695a812fec6a7dc630c410aa3cdce", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/selectors/first-letter-punctuation-059-ref.xht", "==" ] ], {} ] ], - "width-090.xht": [ - "2d2570e97982b5d026a7dafc60b95057e7fbc507", + "first-letter-punctuation-060.xht": [ + "d0d05546169a8eb7e9758bf5e2e16c3198a12bae", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/selectors/first-letter-punctuation-060-ref.xht", "==" ] ], {} ] ], - "width-091.xht": [ - "a208c0037fef1ce63d360bfa7048f0b3f9d95c6c", + "first-letter-punctuation-061.xht": [ + "862f19196e7131f42c8f04408eb7229c3254528f", [ null, [ [ - "/css/CSS2/normal-flow/max-width-003-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-061-ref.xht", "==" ] ], {} ] ], - "width-092.xht": [ - "65fc8784100d5591bc6023caa750fcc04bef87a0", + "first-letter-punctuation-062.xht": [ + "9bb80cc74b22c9c099cc649ffb6ff39daab2322d", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/selectors/first-letter-punctuation-062-ref.xht", "==" ] ], {} ] ], - "width-093.xht": [ - "d50f2f41e5daa85b5c94e36692d9c4a48040306f", + "first-letter-punctuation-063.xht": [ + "09ec1aa24c9c13e191290b60bfc2c305c69f61a0", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/selectors/first-letter-punctuation-063-ref.xht", "==" ] ], {} ] ], - "width-094.xht": [ - "adabe533de51eb9f3aac0adf4994c8d7f0127a04", + "first-letter-punctuation-064.xht": [ + "c3910640518080bacc1cd9dd4e36c5b22e82bf7f", [ null, [ [ - "/css/CSS2/normal-flow/max-width-006-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-064-ref.xht", "==" ] ], {} ] ], - "width-095.xht": [ - "cfbbbd097141e8e41b8086fae91ce9e309e40c9d", + "first-letter-punctuation-065.xht": [ + "0a7ac3ef648332ea3982c342e273f5d0654d8da7", [ null, [ [ - "/css/CSS2/normal-flow/max-width-006-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-065-ref.xht", "==" ] ], {} ] ], - "width-100.xht": [ - "a33fbf25f72c3ede36c06cf8388dcec34d049de2", + "first-letter-punctuation-066.xht": [ + "33357b11f6acba4b0abfeb9f6393aa48e5f959b7", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/selectors/first-letter-punctuation-066-ref.xht", "==" ] ], {} ] ], - "width-101.xht": [ - "93d94799e132753b1b0b29b047c8b9e842c112b3", + "first-letter-punctuation-067.xht": [ + "4c656197b8b7efd659b95e7cc463b81d141fdbca", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/selectors/first-letter-punctuation-067-ref.xht", "==" ] ], {} ] ], - "width-102.xht": [ - "55427fe3fe8da4934038a45e1f1b35ec0b33e5df", + "first-letter-punctuation-068.xht": [ + "c24a96d5197e4237156678978b35f9236f10fd21", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/selectors/first-letter-punctuation-068-ref.xht", "==" ] ], {} ] ], - "width-103.xht": [ - "0fa4c022397938a5382c7cc9999536cc9e6f8b57", + "first-letter-punctuation-069.xht": [ + "faabd378d0499edc3c3da38dedc634997f55368a", [ null, [ [ - "/css/CSS2/normal-flow/width-103-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-069-ref.xht", "==" ] ], {} ] ], - "width-104.xht": [ - "014d4a5be27adfc9f06b6721772ad665a0cae301", + "first-letter-punctuation-070.xht": [ + "9c5f791ca56a590993a94f420a3d36217e4a5581", [ null, [ [ - "/css/CSS2/normal-flow/max-width-003-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-070-ref.xht", "==" ] ], {} ] ], - "width-applies-to-001.xht": [ - "e77f82de7815c51e7edec004d059a45bb6a6caaf", + "first-letter-punctuation-071.xht": [ + "045e338a5954ad7dcd6213dd4454fb7230d1eb93", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/selectors/first-letter-punctuation-071-ref.xht", "==" ] ], {} ] ], - "width-applies-to-002.xht": [ - "e4856351edd050b906d6ea2d176d73ff87a23015", + "first-letter-punctuation-072.xht": [ + "45fbdab289ec7791aee4ec1e78c1123f4bb2a456", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/selectors/first-letter-punctuation-072-ref.xht", "==" ] ], {} ] ], - "width-applies-to-003.xht": [ - "1ba87769aba52af81246df9caa1effe5b5859f9e", + "first-letter-punctuation-073.xht": [ + "282693a9bf2e6d6e40d86054cc6294c41c513122", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/selectors/first-letter-punctuation-073-ref.xht", "==" ] ], {} ] ], - "width-applies-to-004.xht": [ - "bb38445c63b27e938c2fe30c37cff82c6d7037f0", + "first-letter-punctuation-074.xht": [ + "7f8f41d26a46f052b7d80bcd98f4f8e42de962a4", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/selectors/first-letter-punctuation-074-ref.xht", "==" ] ], {} ] ], - "width-applies-to-005.xht": [ - "7a2d437e5741185ee8fc7c40687934bd40b44fc5", + "first-letter-punctuation-075.xht": [ + "261acb410af531f0734ba30d6e9c0676b281d8dc", [ null, [ [ - "/css/reference/pass_if_square_96px_black.html", + "/css/CSS2/selectors/first-letter-punctuation-075-ref.xht", "==" ] ], {} ] ], - "width-applies-to-006.xht": [ - "325820c769b01a8b2a6a6fcc47bc83b1cf89914d", + "first-letter-punctuation-076.xht": [ + "cbd9d0008b94f95f0732dbd3f7fae1a13510723e", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/selectors/first-letter-punctuation-076-ref.xht", "==" ] ], {} ] ], - "width-applies-to-007.xht": [ - "e8f94ed2960fdb5bfa5568b071f87df314b0d6f5", + "first-letter-punctuation-077.xht": [ + "3d4f7f9232fd5b7901364a496945b63ce83030f2", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/selectors/first-letter-punctuation-077-ref.xht", "==" ] ], {} ] ], - "width-applies-to-008.xht": [ - "6079c757977403ce8a4f6cb3aa4f42d35e2520c2", + "first-letter-punctuation-078.xht": [ + "03371a8230f970cc009c7ab531a361c437685528", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/selectors/first-letter-punctuation-078-ref.xht", "==" ] ], {} ] ], - "width-applies-to-009.xht": [ - "2beb85f29a717ea26a9c991dc52e630e7ac51506", + "first-letter-punctuation-079.xht": [ + "f1ec8ad86f4555e308cff54e7b17d004bf06ddf8", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/selectors/first-letter-punctuation-079-ref.xht", "==" ] ], {} ] ], - "width-applies-to-012.xht": [ - "d94cd05f96cb26c3cd56ea45ad8117274227ba64", + "first-letter-punctuation-080.xht": [ + "eeca4c86070d004f7f63f03d51164a95624b84c2", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/selectors/first-letter-punctuation-080-ref.xht", "==" ] ], {} ] ], - "width-applies-to-013.xht": [ - "7bd664ea02837e0fc26fb97150d53ee73d30cb74", + "first-letter-punctuation-081.xht": [ + "88e61df5b4411c089acd1828d0371f21414a79c1", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/selectors/first-letter-punctuation-081-ref.xht", "==" ] ], {} ] ], - "width-applies-to-014.xht": [ - "46c054286600c9bdb37643e6b1850a9a82d334e6", + "first-letter-punctuation-082.xht": [ + "f77f4584d2f4c4bc24451f1d9156aa6e71800f32", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/selectors/first-letter-punctuation-082-ref.xht", "==" ] ], {} ] ], - "width-applies-to-015.xht": [ - "d068f427cba05edd385d1d1906b493a8da9d672e", + "first-letter-punctuation-083.xht": [ + "e21a9d4c271a64989c72784acc3a89a7725d2646", [ null, [ [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", + "/css/CSS2/selectors/first-letter-punctuation-083-ref.xht", "==" ] ], {} ] ], - "width-applies-to-016.xht": [ - "d66fecb1e6599bc7f60c4edd21f0fbc255520f21", + "first-letter-punctuation-084.xht": [ + "022b0a603966efed065b31ece02ae9cf634f4086", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/selectors/first-letter-punctuation-084-ref.xht", "==" ] ], {} ] ], - "width-inherit-001.xht": [ - "5b070aad872db52bac277fa4fbdd19195b99c41f", + "first-letter-punctuation-085.xht": [ + "243a451459089cb72eb489d78fb1e399bfeab427", [ null, [ [ - "/css/CSS2/normal-flow/block-non-replaced-width-001-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-085-ref.xht", "==" ] ], {} ] ], - "width-non-replaced-inline-001.xht": [ - "f89d0a7aef7283695c9d0d09e055ec66248137d9", + "first-letter-punctuation-086.xht": [ + "6b70b17da86315651991fe1bd5ed448186776615", [ null, [ [ - "/css/CSS2/normal-flow/width-non-replaced-inline-001-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-086-ref.xht", "==" ] ], {} ] ], - "width-percentage-001.xht": [ - "43a356a796a1eca25fbd8c8e61dd96b9e19c3140", + "first-letter-punctuation-087.xht": [ + "5f685054142a457d24e6d410b13cbaafe8774086", [ null, [ [ - "/css/CSS2/normal-flow/max-width-percentage-001-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-087-ref.xht", "==" ] ], {} ] ], - "width-percentage-002.xht": [ - "a336934a1f219f58d837e5794f5ccc0af0479559", + "first-letter-punctuation-088.xht": [ + "af0761bc2882a23d3559724bd4457fe4d84f9c99", [ null, [ [ - "/css/CSS2/normal-flow/max-width-percentage-001-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-088-ref.xht", "==" ] ], {} ] - ] - }, - "other-formats": { - "xml": { - "background-19.xml": [ - "d20be7eb8abb665591af87d5531aa6e7171ba833", - [ - null, - [ - [ - "/css/CSS2/other-formats/xml/background-19-alt.xml", - "==" - ] - ], - {} - ] - ] - } - }, - "positioning": { - "absolute-non-replaced-height-002.xht": [ - "d9976fa841847eed6fef18fa1530d347b324d4d2", + ], + "first-letter-punctuation-089.xht": [ + "d24d4ecf171366a6bf5f8b1b6c982c1059d6a9c2", [ null, [ [ - "/css/CSS2/positioning/absolute-non-replaced-height-002-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-089-ref.xht", "==" ] ], {} ] ], - "absolute-non-replaced-height-003.xht": [ - "523409cd5fa3ef8f134a4431547ae4135c7be4d8", + "first-letter-punctuation-090.xht": [ + "a2bd9439ddf732460b54a463dcf304f6f905527b", [ null, [ [ - "/css/CSS2/positioning/absolute-non-replaced-height-003-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-090-ref.xht", "==" ] ], {} ] ], - "absolute-non-replaced-height-004.xht": [ - "852992521306662325d2bd4710537f02145ffaa4", + "first-letter-punctuation-091.xht": [ + "7ca2556d1ae88160e5e01dc415cefed770bca8d8", [ null, [ [ - "/css/CSS2/positioning/absolute-non-replaced-height-003-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-091-ref.xht", "==" ] ], {} ] ], - "absolute-non-replaced-height-005.xht": [ - "3aa09b85924769cc45647952b49646fce28b9061", + "first-letter-punctuation-092.xht": [ + "331c605a92a1a63b7b10e512a6b65682c81bea18", [ null, [ [ - "/css/CSS2/positioning/absolute-non-replaced-height-003-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-092-ref.xht", "==" ] ], {} ] ], - "absolute-non-replaced-height-006.xht": [ - "9992d47115720a352761e648ff32db400b5092d1", + "first-letter-punctuation-093.xht": [ + "a794c7650aeb91a73c64af7a09420e5319917b61", [ null, [ [ - "/css/CSS2/positioning/absolute-non-replaced-height-006-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-093-ref.xht", "==" ] ], {} ] ], - "absolute-non-replaced-height-007.xht": [ - "7403f50e50115a6d819363a640de6efe7f8ef655", + "first-letter-punctuation-094.xht": [ + "a885b05a0dc81e9da480a8039fea966710167779", [ null, [ [ - "/css/CSS2/positioning/absolute-non-replaced-height-007-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-094-ref.xht", "==" ] ], {} ] ], - "absolute-non-replaced-height-008.xht": [ - "22f8598a493489c670a28801af5fffde995698d3", + "first-letter-punctuation-095.xht": [ + "ecbf1cb9eaaa06328ff54ced7739ef8881c5d96a", [ null, [ [ - "/css/CSS2/positioning/absolute-non-replaced-height-008-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-095-ref.xht", "==" ] ], {} ] ], - "absolute-non-replaced-height-009.xht": [ - "0fd5ac83e87e9c8534398b062f085b883ededb35", + "first-letter-punctuation-096.xht": [ + "c1e8a2efd3a078922c47edd7864604c00a0644da", [ null, [ [ - "/css/CSS2/positioning/absolute-non-replaced-height-009-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-096-ref.xht", "==" ] ], {} ] ], - "absolute-non-replaced-height-010.xht": [ - "1a6b79770431dc997ac467057b09a29a974e38cd", + "first-letter-punctuation-097.xht": [ + "46561ae196a3b2d51fefa8ccc29edeb84ba35773", [ null, [ [ - "/css/CSS2/positioning/absolute-non-replaced-height-003-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-097-ref.xht", "==" ] ], {} ] ], - "absolute-non-replaced-height-011.xht": [ - "fa9a0db666a2647675dc2f8429cda28b05587899", + "first-letter-punctuation-098.xht": [ + "40dadf1db935b036f22f2e9b769a7a5f244d316f", [ null, [ [ - "/css/CSS2/positioning/absolute-non-replaced-height-003-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-098-ref.xht", "==" ] ], {} ] ], - "absolute-non-replaced-height-012.xht": [ - "95d5566b9f89b94c3b90cc904b45f1013355431c", + "first-letter-punctuation-099.xht": [ + "6fa1d50751711e127f7afcc6737e28a66561c7f4", [ null, [ [ - "/css/CSS2/positioning/absolute-non-replaced-height-003-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-099-ref.xht", "==" ] ], {} ] ], - "absolute-non-replaced-height-013.html": [ - "46929f360a0e6254ab7904937075146fed451fbf", + "first-letter-punctuation-100.xht": [ + "67b008c2b41230b6b572105913bafe8c92a53b9d", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/selectors/first-letter-punctuation-100-ref.xht", "==" ] ], {} ] ], - "absolute-non-replaced-max-001.html": [ - "4b208c5831e1b36a3c503129562175457ef41c0b", + "first-letter-punctuation-101.xht": [ + "98084a511e1ad004299748d178eb58da37f46a5a", [ - "css/CSS2/positioning/absolute-non-replaced-max-001.html", + null, [ [ - "/css/CSS2/positioning/absolute-non-replaced-max-001-ref.html", + "/css/CSS2/selectors/first-letter-punctuation-101-ref.xht", "==" ] ], {} ] ], - "absolute-non-replaced-max-height-002.xht": [ - "7637068a9c4a2cc584acfa329d5aabb09e7101ab", + "first-letter-punctuation-102.xht": [ + "5c806b63241774045363ad4861c6c1a51dc81a64", [ null, [ [ - "/css/CSS2/positioning/absolute-non-replaced-max-height-002-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-102-ref.xht", "==" ] ], {} ] ], - "absolute-non-replaced-max-height-003.xht": [ - "edbb0127bf4d4bfb9e0f4d1d20f9b929b3dca5b4", + "first-letter-punctuation-103.xht": [ + "7a0ede4de91c84bc44c022cd8c5d0afd2ffc2805", [ null, [ [ - "/css/CSS2/positioning/absolute-non-replaced-max-height-003-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-103-ref.xht", "==" ] ], {} ] ], - "absolute-non-replaced-max-height-004.xht": [ - "09f0f44c600efd75aa6108657ebd11af01dacf4a", + "first-letter-punctuation-104.xht": [ + "3874e2b87e567888b4a264c169dfff4981bb991d", [ null, [ [ - "/css/CSS2/positioning/absolute-non-replaced-height-003-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-104-ref.xht", "==" ] ], {} ] ], - "absolute-non-replaced-max-height-005.xht": [ - "6c1590a86a5279ec3eddd9af4132eb5c5ee8f441", + "first-letter-punctuation-105.xht": [ + "888e067e4c91b9bf78651f0a35db92f483688212", [ null, [ [ - "/css/CSS2/positioning/absolute-non-replaced-height-003-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-105-ref.xht", "==" ] ], {} ] ], - "absolute-non-replaced-max-height-006.xht": [ - "4c6767afaae8333317563af31714a9a2fcbdc2b7", + "first-letter-punctuation-106.xht": [ + "c276ab864c1a7cff42032de0cb8f234ca3c3a504", [ null, [ [ - "/css/CSS2/positioning/absolute-non-replaced-height-003-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-106-ref.xht", "==" ] ], {} ] ], - "absolute-non-replaced-max-height-007.xht": [ - "71f3861086e749e27be5a60c5eb9a53d33739c93", + "first-letter-punctuation-107.xht": [ + "0107976a44a470c320c8662526b05318ffdc8bce", [ null, [ [ - "/css/CSS2/positioning/absolute-non-replaced-max-height-007-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-107-ref.xht", "==" ] ], {} ] ], - "absolute-non-replaced-max-height-008.xht": [ - "78b1c7f6f79d2a2af917f84f0101d535b51e557f", + "first-letter-punctuation-108.xht": [ + "e3660d543daac9e68d810b381ee646c756d019d4", [ null, [ [ - "/css/CSS2/positioning/absolute-non-replaced-max-height-008-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-108-ref.xht", "==" ] ], {} ] ], - "absolute-non-replaced-max-height-009.xht": [ - "47e601142706336a6fe8fdaa743e50d8c4745061", + "first-letter-punctuation-109.xht": [ + "ccaf207ebf9843d585d4e3f0f4483563f773abcb", [ null, [ [ - "/css/CSS2/positioning/absolute-non-replaced-max-height-009-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-109-ref.xht", "==" ] ], {} ] ], - "absolute-non-replaced-max-height-010.xht": [ - "4585b7f0de842691a2a815c224bb10866f97af7f", + "first-letter-punctuation-110.xht": [ + "0e5e444372dc19103d09c2136b465b794bd8d04a", [ null, [ [ - "/css/CSS2/positioning/absolute-non-replaced-height-003-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-110-ref.xht", "==" ] ], {} ] ], - "absolute-non-replaced-max-height-011.xht": [ - "6fd93c8c1151428071d232d4f76feb798c248cb3", + "first-letter-punctuation-111.xht": [ + "c0ca3c77a2216163afa16874d763f32d7e0dfad1", [ null, [ [ - "/css/CSS2/positioning/absolute-non-replaced-max-height-003-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-111-ref.xht", "==" ] ], {} ] ], - "absolute-non-replaced-max-height-012.xht": [ - "710a366d827fecd07dc8aeda336bb2655832102e", + "first-letter-punctuation-112.xht": [ + "7732fa9b5fcb9aa60d7f5f78bf29910ac96f5713", [ null, [ [ - "/css/CSS2/positioning/absolute-non-replaced-height-003-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-112-ref.xht", "==" ] ], {} ] ], - "absolute-non-replaced-min-001.html": [ - "0e6d17661e39beb872f886eba06acf47be9a931c", + "first-letter-punctuation-113.xht": [ + "af307eeaccac784644261f70e9c5b3b1b19f8d7a", [ - "css/CSS2/positioning/absolute-non-replaced-min-001.html", + null, [ [ - "/css/CSS2/positioning/absolute-non-replaced-min-max-001-ref.html", + "/css/CSS2/selectors/first-letter-punctuation-113-ref.xht", "==" ] ], {} ] ], - "absolute-non-replaced-min-max-001.html": [ - "2e240b7509adc3bd8cb9cae67165e0dc42296e07", + "first-letter-punctuation-115.xht": [ + "0d6d59b2f7c371fe19195682df1535a6d8dc4dbe", [ - "css/CSS2/positioning/absolute-non-replaced-min-max-001.html", + null, [ [ - "/css/CSS2/positioning/absolute-non-replaced-min-max-001-ref.html", + "/css/CSS2/selectors/first-letter-punctuation-115-ref.xht", "==" ] ], {} ] ], - "absolute-non-replaced-width-001.xht": [ - "6d2b8a33a0db793d9e52e94b33aa1c95884a2dbe", + "first-letter-punctuation-116.xht": [ + "a6efa89b3ed4c4a4c438cf188dcf14db53511900", [ null, [ [ - "/css/CSS2/positioning/absolute-non-replaced-height-002-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-116-ref.xht", "==" ] ], {} ] ], - "absolute-non-replaced-width-002.xht": [ - "621d4a1b672f38f3261ccff2b327405af9cafc08", + "first-letter-punctuation-117.xht": [ + "1a7118ad400275794838de3806dd79dfed0dd7c4", [ null, [ [ - "/css/CSS2/positioning/absolute-non-replaced-width-002-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-117-ref.xht", "==" ] ], {} ] ], - "absolute-non-replaced-width-003.xht": [ - "587eaa4601c497ebd1c4abf938456037de097071", + "first-letter-punctuation-118.xht": [ + "57dab266469ab30a267e64ca7c217107c2a39ff1", [ null, [ [ - "/css/CSS2/positioning/absolute-non-replaced-width-003-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-118-ref.xht", "==" ] ], {} ] ], - "absolute-non-replaced-width-004.xht": [ - "2f2b90708e8b709b4e2f1d5f820a9e4f78b9207e", + "first-letter-punctuation-119.xht": [ + "7ab1a689abca5ce3066988c31eb948c2ff1165c9", [ null, [ [ - "/css/CSS2/positioning/absolute-non-replaced-width-002-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-119-ref.xht", "==" ] ], {} ] ], - "absolute-non-replaced-width-005.xht": [ - "d2d3ca9d06d443d142afc13df6c31862b0630c6f", + "first-letter-punctuation-120.xht": [ + "6913c4a92daa39ccab61b25baebfb285c210a969", [ null, [ [ - "/css/CSS2/positioning/absolute-non-replaced-height-002-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-120-ref.xht", "==" ] ], {} ] ], - "absolute-non-replaced-width-006.xht": [ - "e1033fff6808172d2831c5aca07fa5202fe93166", + "first-letter-punctuation-121.xht": [ + "578b0132dccd1634a77ac1c2cc35246808b3fd03", [ null, [ [ - "/css/CSS2/positioning/absolute-non-replaced-width-002-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-121-ref.xht", "==" ] ], {} ] ], - "absolute-non-replaced-width-007.xht": [ - "db1678b147bb26d6b33adf8fd659998fe8c26a61", + "first-letter-punctuation-122.xht": [ + "8fe70091282312aed9094473c9bce887ae45b25b", [ null, [ [ - "/css/CSS2/positioning/absolute-non-replaced-height-002-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-122-ref.xht", "==" ] ], {} ] ], - "absolute-non-replaced-width-008.xht": [ - "e5baff3022aa11085a06cf491e94b0be944d61ca", + "first-letter-punctuation-123.xht": [ + "a59cf3cd34cef3191c774875d70585d8af84dd35", [ null, [ [ - "/css/CSS2/positioning/absolute-non-replaced-width-008-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-123-ref.xht", "==" ] ], {} ] ], - "absolute-non-replaced-width-010.xht": [ - "29d9ad60cf7b9f51c68c138d7e6ef31e32d4bf93", + "first-letter-punctuation-124.xht": [ + "04ef93b8c9f38f0c519f675bea75219f2f037bdb", [ null, [ [ - "/css/CSS2/positioning/absolute-non-replaced-height-002-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-124-ref.xht", "==" ] ], {} ] ], - "absolute-non-replaced-width-011.xht": [ - "3370fb6d8096077cd85aa5e080131ccfa233e645", + "first-letter-punctuation-125.xht": [ + "363590757a619d775071414c8d10766d0f11133a", [ null, [ [ - "/css/CSS2/positioning/absolute-non-replaced-height-002-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-125-ref.xht", "==" ] ], {} ] ], - "absolute-non-replaced-width-012.xht": [ - "fd125e73f05d302cee23d8f6232939b8aac8556d", + "first-letter-punctuation-126.xht": [ + "ab82cc41fd6de2d1974e77d0f05b0a07692a586c", [ null, [ [ - "/css/CSS2/positioning/absolute-non-replaced-width-002-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-126-ref.xht", "==" ] ], {} ] ], - "absolute-non-replaced-width-013.xht": [ - "288c36569f4b89061115d2ee9d5fb36be3ffca48", + "first-letter-punctuation-127.xht": [ + "13380a3da96083d19bdf93dc5a38fae060a25ba2", [ null, [ [ - "/css/CSS2/positioning/absolute-non-replaced-width-002-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-127-ref.xht", "==" ] ], {} ] ], - "absolute-non-replaced-width-014.xht": [ - "da223eb8d73e85a2fc4e455cdf8e637d1df44338", + "first-letter-punctuation-128.xht": [ + "75aaa34e9ecd28bd31b4a1e92bccfa5d441d16e6", [ null, [ [ - "/css/CSS2/positioning/absolute-non-replaced-height-002-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-128-ref.xht", "==" ] ], {} ] ], - "absolute-non-replaced-width-015.xht": [ - "2d99f95235ae3378bd730ba8c4fe8b8cea58dde2", + "first-letter-punctuation-129.xht": [ + "6bcf5de48fc5a93021600b28f54b209e89a0d90f", [ null, [ [ - "/css/CSS2/positioning/absolute-non-replaced-width-015-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-129-ref.xht", "==" ] ], {} ] ], - "absolute-non-replaced-width-016.xht": [ - "5fccaf248d903829b149d150cb7fdcf7162f3a62", + "first-letter-punctuation-130.xht": [ + "83a383f4cce7559818711078e50b1216b2d7d331", [ null, [ [ - "/css/CSS2/positioning/absolute-non-replaced-width-002-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-130-ref.xht", "==" ] ], {} ] ], - "absolute-non-replaced-width-017.xht": [ - "3b12169cb0d1c8ff34e8e0272f82dd299aad7fe7", + "first-letter-punctuation-131.xht": [ + "d8356197c682c79dfb9ff69422587cfe4c174ad7", [ null, [ [ - "/css/CSS2/positioning/absolute-non-replaced-width-017-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-131-ref.xht", "==" ] ], {} ] ], - "absolute-non-replaced-width-018.xht": [ - "ed9fa5673a95ad9b0343b908d95be63c8a40e081", + "first-letter-punctuation-132.xht": [ + "d0c4375108bcbb55286a418be09bf8d9b59f7fd4", [ null, [ [ - "/css/CSS2/positioning/absolute-non-replaced-width-017-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-132-ref.xht", "==" ] ], {} ] ], - "absolute-non-replaced-width-019.xht": [ - "c4511786e80ab0faedce8880351c3d350d58d66a", + "first-letter-punctuation-133.xht": [ + "08c32232eb478133d21a8b6595d339c2e903792d", [ null, [ [ - "/css/CSS2/positioning/absolute-non-replaced-width-017-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-133-ref.xht", "==" ] ], {} ] ], - "absolute-non-replaced-width-020.xht": [ - "7c983e528d21bdd64d7a202c02977891e36de5c9", + "first-letter-punctuation-134.xht": [ + "d3cda55a7178d28e3ccc689829f7f830df51a533", [ null, [ [ - "/css/CSS2/positioning/absolute-non-replaced-width-017-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-134-ref.xht", "==" ] ], {} ] ], - "absolute-non-replaced-width-021.xht": [ - "47f587f72d8c954bbcc76d39d61ee841dad92e41", + "first-letter-punctuation-135.xht": [ + "b20831b7812a0798cd62ee715eb19f5846978f2a", [ null, [ [ - "/css/CSS2/positioning/absolute-non-replaced-width-021-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-135-ref.xht", "==" ] ], {} ] ], - "absolute-non-replaced-width-022.xht": [ - "7994d698ac2da671fff875f338febc881993017c", + "first-letter-punctuation-136.xht": [ + "a0b8736f972c828d9a97f6656e1a6190baf5f6e4", [ null, [ [ - "/css/CSS2/positioning/absolute-non-replaced-width-021-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-136-ref.xht", "==" ] ], {} ] ], - "absolute-non-replaced-width-023.xht": [ - "bfd462a9b703b1810847c5123d6b11f72fb2c3a2", + "first-letter-punctuation-137.xht": [ + "72d2a64e990f446afe528619eda4668c086d9813", [ null, [ [ - "/css/CSS2/positioning/absolute-non-replaced-width-021-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-137-ref.xht", "==" ] ], {} ] ], - "absolute-non-replaced-width-024.xht": [ - "756041f5ceab37caad2d4cc46ca1ac3be88156be", + "first-letter-punctuation-138.xht": [ + "fbe2133428486af28014dd3ec69d7e10c2d8abb8", [ null, [ [ - "/css/CSS2/positioning/absolute-non-replaced-width-021-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-138-ref.xht", "==" ] ], {} ] ], - "absolute-non-replaced-width-025.xht": [ - "88967677945edde308b081ca0d46126f169c9522", + "first-letter-punctuation-139.xht": [ + "9e9251f7eaa8dc47b349652aad561ff0e0190afe", [ null, [ [ - "/css/CSS2/positioning/absolute-non-replaced-width-025-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-139-ref.xht", "==" ] ], {} ] ], - "absolute-non-replaced-width-026.xht": [ - "e439a0210daaac71a2ee53dbcf4157d5fa6a91ab", + "first-letter-punctuation-140.xht": [ + "daa1e0e40836c8dc2658f3cd3c722cb86a7086af", [ null, [ [ - "/css/CSS2/positioning/absolute-non-replaced-width-026-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-140-ref.xht", "==" ] ], {} ] ], - "absolute-non-replaced-width-027.xht": [ - "969da955af568fb5e40721fb13716e00cc40ed52", + "first-letter-punctuation-141.xht": [ + "1f5836953c9dc858d5a2f77dd9d915f88ec5cb3d", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/selectors/first-letter-punctuation-141-ref.xht", "==" ] ], {} ] ], - "absolute-replaced-height-001.xht": [ - "e3e10640c4737ca605c132da481bd6d00697a01a", + "first-letter-punctuation-142.xht": [ + "500a7223473a55339ee2659d8fdeec3040e276e8", [ null, [ [ - "/css/CSS2/positioning/absolute-replaced-height-001-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-142-ref.xht", "==" ] ], {} ] ], - "absolute-replaced-height-002.xht": [ - "79d99d2995959d0640e0e582424f3c3441c184c4", + "first-letter-punctuation-143.xht": [ + "4ca39fa9239a9f0f37aed2952e17f582d5d3511c", [ null, [ [ - "/css/CSS2/positioning/absolute-replaced-height-002-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-143-ref.xht", "==" ] ], {} ] ], - "absolute-replaced-height-003.xht": [ - "93e8c2c5c6e6ed7c2376b3348a2b896926fa47cd", + "first-letter-punctuation-144.xht": [ + "ce1fea228219dba48c20ebc473a102aa8ff98b2c", [ null, [ [ - "/css/CSS2/positioning/absolute-non-replaced-height-007-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-144-ref.xht", "==" ] ], {} ] ], - "absolute-replaced-height-004.xht": [ - "6dddc31c9e41fa4f1a79529a373b51ad06890880", + "first-letter-punctuation-145.xht": [ + "58697f042d4345d006cf028b55a66b854ea3146f", [ null, [ [ - "/css/CSS2/positioning/absolute-replaced-height-004-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-145-ref.xht", "==" ] ], {} ] ], - "absolute-replaced-height-005.xht": [ - "4a6b2cf4223386215b019473737a79edea008f17", + "first-letter-punctuation-146.xht": [ + "73ebfb56c22811c57f85dfe49ef0cc183b063c14", [ null, [ [ - "/css/CSS2/positioning/absolute-replaced-height-005-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-146-ref.xht", "==" ] ], {} ] ], - "absolute-replaced-height-006.xht": [ - "dbf186c474904cad7d12497955a5e0390592f7cb", + "first-letter-punctuation-147.xht": [ + "cc79bcc81489e05b4498e2f8a5421db1fe54dee0", [ null, [ [ - "/css/CSS2/positioning/absolute-replaced-height-006-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-147-ref.xht", "==" ] ], {} ] ], - "absolute-replaced-height-007.xht": [ - "cae9efd6461be8d7ebc63e0d9c8ac73a03321dc0", + "first-letter-punctuation-148.xht": [ + "d3bb7892761e8cd5095565629e4d1893652b349a", [ null, [ [ - "/css/CSS2/positioning/absolute-replaced-height-007-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-148-ref.xht", "==" ] ], {} ] ], - "absolute-replaced-height-008.xht": [ - "886ecec638e5eb781b8815b78e5a84904b887e2b", + "first-letter-punctuation-149.xht": [ + "c962cce2fd6b8b4efe3033ff411fd49f53da24b5", [ null, [ [ - "/css/CSS2/positioning/absolute-replaced-height-008-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-149-ref.xht", "==" ] ], {} ] ], - "absolute-replaced-height-009.xht": [ - "72f2df7e11fc5f7a909918abd25c2d05b143e5d4", + "first-letter-punctuation-150.xht": [ + "51c772702c5b8eb5925e1752673e1c37cbc10d95", [ null, [ [ - "/css/CSS2/positioning/absolute-replaced-height-008-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-150-ref.xht", "==" ] ], {} ] ], - "absolute-replaced-height-010.xht": [ - "34901665f41cadd4da6b832af6ff75ea7bf398da", + "first-letter-punctuation-151.xht": [ + "0019485ebe999078a27c39882083c93f3632891e", [ null, [ [ - "/css/CSS2/positioning/absolute-replaced-height-010-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-151-ref.xht", "==" ] ], {} ] ], - "absolute-replaced-height-011.xht": [ - "302ca8351401f78309733a077df38524e345a0fb", + "first-letter-punctuation-152.xht": [ + "b79bd51dc664e53842bd7d024ec69ba75409febc", [ null, [ [ - "/css/CSS2/positioning/absolute-replaced-height-011-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-152-ref.xht", "==" ] ], {} ] ], - "absolute-replaced-height-012.xht": [ - "82bea6f0ed54e1d0b208b9919d6d92210e17d052", + "first-letter-punctuation-153.xht": [ + "785791f50c17d4f3f9ab493f7bc9aefcda766276", [ null, [ [ - "/css/CSS2/positioning/absolute-replaced-height-012-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-153-ref.xht", "==" ] ], {} ] ], - "absolute-replaced-height-013.xht": [ - "3d186de8606a61661ef27ee101b5c76b086c56d1", + "first-letter-punctuation-154.xht": [ + "a77f5576ffefa4127d279cdff8f147d50ee53c60", [ null, [ [ - "/css/CSS2/positioning/absolute-replaced-height-013-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-154-ref.xht", "==" ] ], {} ] ], - "absolute-replaced-height-014.xht": [ - "752e7de66bb8c963d3c1b4c5486370066076f8bc", + "first-letter-punctuation-155.xht": [ + "ec8fa7fdbfa9fcb31ad8521c7f4520ec0a24b155", [ null, [ [ - "/css/CSS2/positioning/absolute-replaced-height-014-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-155-ref.xht", "==" ] ], {} ] ], - "absolute-replaced-height-016.xht": [ - "d97a7cabf83ebc751f6173a3ccb995ac76b5fb79", + "first-letter-punctuation-156.xht": [ + "d34fcc00c26e2f99ce6732dff9b132abc1cd87e6", [ null, [ [ - "/css/CSS2/positioning/absolute-replaced-height-008-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-156-ref.xht", "==" ] ], {} ] ], - "absolute-replaced-height-017.xht": [ - "80b4e14299a475c04bf018f84235a45ab7a8217a", + "first-letter-punctuation-157.xht": [ + "76819db9ea194fca00e4e3cc5b87012c1a6eeaa2", [ null, [ [ - "/css/CSS2/positioning/absolute-replaced-height-010-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-157-ref.xht", "==" ] ], {} ] ], - "absolute-replaced-height-018.xht": [ - "f0e763fd82b6bce721fa33117653c229dc6d6250", + "first-letter-punctuation-158.xht": [ + "d2eb7cd20ae92d818b6b57e0bb400c36f9ca9f38", [ null, [ [ - "/css/CSS2/positioning/absolute-replaced-height-011-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-158-ref.xht", "==" ] ], {} ] ], - "absolute-replaced-height-019.xht": [ - "2aeb5f0fc3b6945714646316532215a3fd879f8b", + "first-letter-punctuation-159.xht": [ + "fc067d798c83cf48a82c4ea8b0fff8ebca62c2d1", [ null, [ [ - "/css/CSS2/positioning/absolute-replaced-height-012-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-159-ref.xht", "==" ] ], {} ] ], - "absolute-replaced-height-020.xht": [ - "c5d348db3578f9e3a97a5890431a348aa469a304", + "first-letter-punctuation-160.xht": [ + "8007ec0b4fbd523a54ed8b65d142c69243976f02", [ null, [ [ - "/css/CSS2/positioning/absolute-replaced-height-013-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-160-ref.xht", "==" ] ], {} ] ], - "absolute-replaced-height-021.xht": [ - "111f9593a1ff50d3b5a77a12cbf228eacc7c5e85", + "first-letter-punctuation-161.xht": [ + "c425a5df991960cec1a921767db80e1086c0bfd9", [ null, [ [ - "/css/CSS2/positioning/absolute-replaced-height-014-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-161-ref.xht", "==" ] ], {} ] ], - "absolute-replaced-height-022.xht": [ - "3acc433fa76f66dce97a3be98b6af59d349a8683", + "first-letter-punctuation-162.xht": [ + "ebd969ad7ac1b6c205d2be7bf88d4c7ea1c628cf", [ null, [ [ - "/css/CSS2/positioning/absolute-replaced-height-008-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-162-ref.xht", "==" ] ], {} ] ], - "absolute-replaced-height-023.xht": [ - "fd0b7c425aa209854b24be22346d308a23cbabde", + "first-letter-punctuation-163.xht": [ + "ee671faf246ceb09b3b6684c0205dd8f9a71e096", [ null, [ [ - "/css/CSS2/positioning/absolute-replaced-height-008-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-163-ref.xht", "==" ] ], {} ] ], - "absolute-replaced-height-024.xht": [ - "a2a5ca3e365bd003f8eb9468acff6226b6ebd696", + "first-letter-punctuation-164.xht": [ + "9c017c2db38c5d78c1d5e47001afb3214df723fa", [ null, [ [ - "/css/CSS2/positioning/absolute-replaced-height-010-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-164-ref.xht", "==" ] ], {} ] ], - "absolute-replaced-height-025.xht": [ - "d99a08109b9a6b22dc8cebe7e18310e9ec374bac", + "first-letter-punctuation-165.xht": [ + "4a8f9de7ca6d676b5b7ba5aeecb650eff6f4c753", [ null, [ [ - "/css/CSS2/positioning/absolute-replaced-height-011-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-165-ref.xht", "==" ] ], {} ] ], - "absolute-replaced-height-026.xht": [ - "acb65b7dcd46f92d7fb333c3a5b8837fd8b1bad8", + "first-letter-punctuation-166.xht": [ + "17cb028f4af5670dccc56528cf52f6cabd9a25f7", [ null, [ [ - "/css/CSS2/positioning/absolute-replaced-height-012-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-166-ref.xht", "==" ] ], {} ] ], - "absolute-replaced-height-027.xht": [ - "7442f85b0a03b69ef9b3feb8aa71df44738078cb", + "first-letter-punctuation-167.xht": [ + "2b976e72908cc707c1b227d20229788128837baa", [ null, [ [ - "/css/CSS2/positioning/absolute-replaced-height-013-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-167-ref.xht", "==" ] ], {} ] ], - "absolute-replaced-height-028.xht": [ - "3c558b8a1088972c66f62513c573032a68a1acf5", + "first-letter-punctuation-168.xht": [ + "d1a0365c23e0b2e4a8cf1f4460d75ed2df0ee9e3", [ null, [ [ - "/css/CSS2/positioning/absolute-replaced-height-014-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-168-ref.xht", "==" ] ], {} ] ], - "absolute-replaced-height-029.xht": [ - "0c0a550c1beb6b857aa868f82fc9427499caf71b", + "first-letter-punctuation-169.xht": [ + "a4a77a609ddc539ebce8de6cf018d38bf1c96bd5", [ null, [ [ - "/css/CSS2/positioning/absolute-replaced-height-008-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-169-ref.xht", "==" ] ], {} ] ], - "absolute-replaced-height-030.xht": [ - "4ca79774212dc1dcc747dcecbc8b77dbe5ffbd86", + "first-letter-punctuation-170.xht": [ + "9027209c0c149c20b7d1ea941423141bd5778c0f", [ null, [ [ - "/css/CSS2/positioning/absolute-replaced-height-008-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-170-ref.xht", "==" ] ], {} ] ], - "absolute-replaced-height-031.xht": [ - "7931b8da216c827e006c6f3b46088e526759a840", + "first-letter-punctuation-171.xht": [ + "3ae30066c7f0e8625b989595b23a71a85e31fe2c", [ null, [ [ - "/css/CSS2/positioning/absolute-replaced-height-010-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-171-ref.xht", "==" ] ], {} ] ], - "absolute-replaced-height-032.xht": [ - "eea4172057fb5b5ce64cd10ce2b28a187c151c72", + "first-letter-punctuation-172.xht": [ + "0e835531047e04111f1e3b3d392139a65ca26e53", [ null, [ [ - "/css/CSS2/positioning/absolute-replaced-height-011-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-172-ref.xht", "==" ] ], {} ] ], - "absolute-replaced-height-033.xht": [ - "836f75dd4d93baccf69b9f0c67e1fe2e46f5372a", + "first-letter-punctuation-173.xht": [ + "533f203a7a2f44c1d2ad6e647580b04744cf21ae", [ null, [ [ - "/css/CSS2/positioning/absolute-replaced-height-012-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-173-ref.xht", "==" ] ], {} ] ], - "absolute-replaced-height-034.xht": [ - "47dec54f65cf44f719875f00ed94206337b18429", + "first-letter-punctuation-174.xht": [ + "0bd080fed51e3a36500b1fa6bccd6ca2b7d9a801", [ null, [ [ - "/css/CSS2/positioning/absolute-replaced-height-013-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-174-ref.xht", "==" ] ], {} ] ], - "absolute-replaced-height-035.xht": [ - "447606f43272a150cb501fb3cf9260a0d8a964d7", + "first-letter-punctuation-175.xht": [ + "23fb8524f82bc02fe78226daf922c6b17c759b2f", [ null, [ [ - "/css/CSS2/positioning/absolute-replaced-height-014-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-175-ref.xht", "==" ] ], {} ] ], - "absolute-replaced-height-036.xht": [ - "96b53e6d641e4503b1bb536dc450ff5106c49593", + "first-letter-punctuation-176.xht": [ + "1f1d7615c614438cc888a2b6cf4069093bc899fb", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/selectors/first-letter-punctuation-176-ref.xht", "==" ] ], {} ] ], - "absolute-replaced-width-001.xht": [ - "0b49129c372eedfebd6a5bb8cd35c7cef3a504a9", + "first-letter-punctuation-177.xht": [ + "25df40858e1c18550a87ae39727c9c16c685e8ce", [ null, [ [ - "/css/CSS2/positioning/absolute-replaced-width-001-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-177-ref.xht", "==" ] ], {} ] ], - "absolute-replaced-width-002.xht": [ - "23068fbce1bb93dad797ff15d173eb0a10614190", + "first-letter-punctuation-178.xht": [ + "55f34e02c05ea28820858264ee127c42815382e9", [ null, [ [ - "/css/CSS2/positioning/absolute-replaced-width-002-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-178-ref.xht", "==" ] ], {} ] ], - "absolute-replaced-width-003.xht": [ - "5e1d5a7dccd8736089e79f71f87add5b3412227a", + "first-letter-punctuation-179.xht": [ + "81cc1505129130740f2ba70323a0fa2d4955c92e", [ null, [ [ - "/css/CSS2/positioning/absolute-replaced-width-003-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-179-ref.xht", "==" ] ], {} ] ], - "absolute-replaced-width-003a.xht": [ - "4bc367b4a8733d87e2465d2a7c3d7faf806ea8b8", + "first-letter-punctuation-180.xht": [ + "cd02a730d050f1c3c2bfe2f1f4896dfdd6669ad3", [ null, [ [ - "/css/CSS2/positioning/absolute-replaced-width-003a-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-180-ref.xht", "==" ] ], {} ] ], - "absolute-replaced-width-003b.xht": [ - "7209ff2eb8b2139b73ad42c4bb42febbce796baf", + "first-letter-punctuation-181.xht": [ + "2216dea9bbdbc799d05eb5254d21391903f010e1", [ null, [ [ - "/css/CSS2/positioning/absolute-replaced-width-003b-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-181-ref.xht", "==" ] ], {} ] ], - "absolute-replaced-width-003c.xht": [ - "c84cb1629976f54307d8d36350963886beae69fb", + "first-letter-punctuation-182.xht": [ + "ded05f0f45b4a1c90511dcf1ba26b7d5a039a015", [ null, [ [ - "/css/CSS2/positioning/absolute-replaced-width-003c-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-182-ref.xht", "==" ] ], {} ] ], - "absolute-replaced-width-004.xht": [ - "aaf1aa2d152f6313df6a2c75ef0ddbf386e07ea3", + "first-letter-punctuation-183.xht": [ + "9737341ca9dcd661cbe4c8022d5bbf508307cc5c", [ null, [ [ - "/css/CSS2/positioning/absolute-replaced-width-004-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-183-ref.xht", "==" ] ], {} ] ], - "absolute-replaced-width-006.xht": [ - "f503db8837e1d55d29265027a3bec81f69637f45", + "first-letter-punctuation-185.xht": [ + "c323bdad344fd61e30c36c0dfbdcd7382aedc0d1", [ null, [ [ - "/css/CSS2/positioning/absolute-replaced-width-006-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-185-ref.xht", "==" ] ], {} ] ], - "absolute-replaced-width-008.xht": [ - "8aff9d59985e9adbb6d3a89dabccfee8f4bd6e68", + "first-letter-punctuation-186.xht": [ + "3ec90eb3bc8508dd1319c6a6c788576b67ef4465", [ null, [ [ - "/css/CSS2/positioning/absolute-replaced-width-001-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-186-ref.xht", "==" ] ], {} ] ], - "absolute-replaced-width-009.xht": [ - "c7749f8769d67ed499a0c3f348513b4dd04d4db6", + "first-letter-punctuation-187.xht": [ + "edaed04a93d41e273248b57f68a478df49bfc37a", [ null, [ [ - "/css/CSS2/positioning/absolute-replaced-width-002-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-187-ref.xht", "==" ] ], {} ] ], - "absolute-replaced-width-010.xht": [ - "97263411f30d2f6099fdbc9c5099e1c23abb8590", + "first-letter-punctuation-188.xht": [ + "a46c06751bffa3eb5ea384ecd192b16c34746478", [ null, [ [ - "/css/CSS2/positioning/absolute-replaced-width-003-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-188-ref.xht", "==" ] ], {} ] ], - "absolute-replaced-width-011.xht": [ - "346791ebd32a9105d10d00c0745d0f3bbdb55d2b", + "first-letter-punctuation-189.xht": [ + "d9422cfac7a71ea494e4fa9dd6b1d28bc9288bf4", [ null, [ [ - "/css/CSS2/positioning/absolute-replaced-width-004-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-189-ref.xht", "==" ] ], {} ] ], - "absolute-replaced-width-013.xht": [ - "1646f1b82cb8dcb75c00ec1188b37c32b4d070b9", + "first-letter-punctuation-190.xht": [ + "a78c4258572b66b2c49c80254f49072e6b424486", [ null, [ [ - "/css/CSS2/positioning/absolute-replaced-width-006-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-190-ref.xht", "==" ] ], {} ] ], - "absolute-replaced-width-015.xht": [ - "67b33eae9dcea655c3fb4d706536582a4c3e9141", + "first-letter-punctuation-191.xht": [ + "f541ec8b998361c67a364746052dfdd1b0916b78", [ null, [ [ - "/css/CSS2/positioning/absolute-replaced-width-015-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-191-ref.xht", "==" ] ], {} ] ], - "absolute-replaced-width-020.xht": [ - "864df2614a7e5f42e3e2bfb1d7c776d9285459ee", + "first-letter-punctuation-192.xht": [ + "67d286bd47eee3a2a4c7d04ce3fc7a403c561f9b", [ null, [ [ - "/css/CSS2/positioning/absolute-replaced-width-020-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-192-ref.xht", "==" ] ], {} ] ], - "absolute-replaced-width-022.xht": [ - "4af5887859d26ca32d81311b59fcd6cfbafaf0e6", + "first-letter-punctuation-193.xht": [ + "b9f495bba6c8758c2de5373443634c6786cded97", [ null, [ [ - "/css/CSS2/positioning/absolute-replaced-width-022-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-193-ref.xht", "==" ] ], {} ] ], - "absolute-replaced-width-023.xht": [ - "93ac8a1ca1ff75fc32cc0d566d83f1e9544797b7", + "first-letter-punctuation-194.xht": [ + "8ee22c3acf0578230c15c99eafa483f2a59428c2", [ null, [ [ - "/css/CSS2/positioning/absolute-replaced-width-023-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-194-ref.xht", "==" ] ], {} ] ], - "absolute-replaced-width-024.xht": [ - "73abd19c3154a920ea8235d0c88025553ab69efe", + "first-letter-punctuation-195.xht": [ + "757995e5a380cf7a0db119a4e636ba40d9a36584", [ null, [ [ - "/css/CSS2/positioning/absolute-replaced-width-024-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-195-ref.xht", "==" ] ], {} ] ], - "absolute-replaced-width-025.xht": [ - "8b5a78b36c42c041a8975f59224aa84cb183c4e5", + "first-letter-punctuation-196.xht": [ + "801ff35f533626176b965d7de23739ddb8e7cfb3", [ null, [ [ - "/css/CSS2/positioning/absolute-replaced-width-025-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-196-ref.xht", "==" ] ], {} ] ], - "absolute-replaced-width-027.xht": [ - "e868877d2885d3e38ae9828cda88202e52559a0b", + "first-letter-punctuation-197.xht": [ + "c19e6329c1ca95d198e54e487a4948ee7887b89d", [ null, [ [ - "/css/CSS2/positioning/absolute-replaced-width-027-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-197-ref.xht", "==" ] ], {} ] ], - "absolute-replaced-width-029.xht": [ - "4bd51310144f867277b344c8bcee64232874cdbb", + "first-letter-punctuation-198.xht": [ + "6adddda4f002716a0cb2b432b9deb4dde9fb68fe", [ null, [ [ - "/css/CSS2/positioning/absolute-replaced-width-022-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-198-ref.xht", "==" ] ], {} ] ], - "absolute-replaced-width-030.xht": [ - "524064f711a059fb5af65b63f0a2035df6a75dfc", + "first-letter-punctuation-199.xht": [ + "a0c680f738f551c113a9840387e843b6a383147d", [ null, [ [ - "/css/CSS2/positioning/absolute-replaced-width-023-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-199-ref.xht", "==" ] ], {} ] ], - "absolute-replaced-width-031.xht": [ - "494cb1739f6248ecdbcd1cae7d2dd2adcec7db47", + "first-letter-punctuation-200.xht": [ + "533e4a3c3aa902954bfbbc856cf9b95db236e27b", [ null, [ [ - "/css/CSS2/positioning/absolute-replaced-width-024-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-200-ref.xht", "==" ] ], {} ] ], - "absolute-replaced-width-032.xht": [ - "e9ef650e6f6dd4a4c72f0da422049f195b72838f", + "first-letter-punctuation-201.xht": [ + "ca2794acc5bd383262c0ffac0aa84066fa016f79", [ null, [ [ - "/css/CSS2/positioning/absolute-replaced-width-025-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-201-ref.xht", "==" ] ], {} ] ], - "absolute-replaced-width-034.xht": [ - "4d95609055097f6dea7738d378a775b79819827e", + "first-letter-punctuation-202.xht": [ + "61716ba6574521c1b92f6709fd9a6687f9559253", [ null, [ [ - "/css/CSS2/positioning/absolute-replaced-width-020-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-202-ref.xht", "==" ] ], {} ] ], - "absolute-replaced-width-036.xht": [ - "2a2647f3cee12eb42d70328d7341f9db5ec0872d", + "first-letter-punctuation-203.xht": [ + "6cad0bf6ae8e21e800434ba83d540aafe73d82c4", [ null, [ [ - "/css/CSS2/positioning/absolute-replaced-width-036-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-203-ref.xht", "==" ] ], {} ] ], - "absolute-replaced-width-037.xht": [ - "5eee89289514f8089349538291429bca3157a93a", + "first-letter-punctuation-204.xht": [ + "41c6496da83f9836040a8e1e5ece520ec897d636", [ null, [ [ - "/css/CSS2/positioning/absolute-replaced-width-037-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-204-ref.xht", "==" ] ], {} ] ], - "absolute-replaced-width-038.xht": [ - "0aae33bbe5ff4e8ba6a7b33b5e8b97ab468d01c4", + "first-letter-punctuation-205.xht": [ + "d317e679c6b7da0907eab6774dd2cb0accfc57a7", [ null, [ [ - "/css/CSS2/positioning/absolute-replaced-width-038-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-205-ref.xht", "==" ] ], {} ] ], - "absolute-replaced-width-039.xht": [ - "efade389d5eb912af53df5cc7db6648df6d8c0f2", + "first-letter-punctuation-206.xht": [ + "395312259e62fa8e7b0def93348853945c72b075", [ null, [ [ - "/css/CSS2/positioning/absolute-replaced-width-039-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-206-ref.xht", "==" ] ], {} ] ], - "absolute-replaced-width-041.xht": [ - "19e5350aa7ef4b9bb99cfdf3472405a19a28f30e", + "first-letter-punctuation-207.xht": [ + "7239783442e89fc84d0543c56ccd95fc663471f5", [ null, [ [ - "/css/CSS2/positioning/absolute-replaced-width-041-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-207-ref.xht", "==" ] ], {} ] ], - "absolute-replaced-width-043.xht": [ - "91e7ffe481ae9bfa69fd2688d7fb50481b9d6042", + "first-letter-punctuation-208.xht": [ + "730553eeb81604036b4e666e5a9b4c6a9983b523", [ null, [ [ - "/css/CSS2/positioning/absolute-replaced-width-036-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-208-ref.xht", "==" ] ], {} ] ], - "absolute-replaced-width-048.xht": [ - "b22043eae632a11c94070f2b36b968bec16307c7", + "first-letter-punctuation-211.xht": [ + "f6287942d487722dbe4e34a8f6c8e1e3fd9f1c00", [ null, [ [ - "/css/CSS2/positioning/absolute-replaced-width-041-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-211-ref.xht", "==" ] ], {} ] ], - "absolute-replaced-width-050.xht": [ - "4fb8a46d540fadce726d27a5cf02b008d9d3ab77", + "first-letter-punctuation-212.xht": [ + "c294bc4e5352b50ddf90d445cc683ea1b2184014", [ null, [ [ - "/css/CSS2/positioning/absolute-replaced-width-036-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-212-ref.xht", "==" ] ], {} ] ], - "absolute-replaced-width-051.xht": [ - "40a32c3a73f9f2d351b205bdbdddf9c48d38b252", + "first-letter-punctuation-213.xht": [ + "cc599b531664296749e24acccaa2fb7545fd0876", [ null, [ [ - "/css/CSS2/positioning/absolute-replaced-width-037-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-213-ref.xht", "==" ] ], {} ] ], - "absolute-replaced-width-052.xht": [ - "05416bba97a5a08bf7e961bb8c21e0b50ba36dd9", + "first-letter-punctuation-214.xht": [ + "a800a8856f8ec9b25454f200186607b522757f30", [ null, [ [ - "/css/CSS2/positioning/absolute-replaced-width-038-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-214-ref.xht", "==" ] ], {} ] ], - "absolute-replaced-width-053.xht": [ - "28c77ae55671ae1a27b60d4b746b7ba3156caddd", + "first-letter-punctuation-215.xht": [ + "bc192ec1782f1d422292323f9c101d6111affcbe", [ null, [ [ - "/css/CSS2/positioning/absolute-replaced-width-039-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-215-ref.xht", "==" ] ], {} ] ], - "absolute-replaced-width-055.xht": [ - "7a5bdea4276a14d6b77d0008056bcb1c030a154b", + "first-letter-punctuation-216.xht": [ + "888b1c61a50b9ad80b7b0079520a00e3c2606f14", [ null, [ [ - "/css/CSS2/positioning/absolute-replaced-width-041-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-216-ref.xht", "==" ] ], {} ] ], - "absolute-replaced-width-057.xht": [ - "a3198d5f186400135df6dee86bdaa21497e4660c", + "first-letter-punctuation-217.xht": [ + "f7a097aa355bebfab8106ce5c6022efac8ca9997", [ null, [ [ - "/css/CSS2/positioning/absolute-replaced-width-036-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-217-ref.xht", "==" ] ], {} ] ], - "absolute-replaced-width-062.xht": [ - "ad2cdef7b472fa802a4ca0464c32e109baed9904", + "first-letter-punctuation-218.xht": [ + "e79b51e3bed3d99a9b26abf61b80f44ecd60d1bc", [ null, [ [ - "/css/CSS2/positioning/absolute-replaced-width-041-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-218-ref.xht", "==" ] ], {} ] ], - "absolute-replaced-width-064.xht": [ - "b29c91318b0e0235282c4b8b9c9d1a6b76def26c", + "first-letter-punctuation-219.xht": [ + "7832e955a41fc1fb2398cdf05e0372aaa16c0151", [ null, [ [ - "/css/CSS2/positioning/absolute-replaced-width-036-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-219-ref.xht", "==" ] ], {} ] ], - "absolute-replaced-width-065.xht": [ - "27b845a2379930603954cb4f5fa3718c4939b299", + "first-letter-punctuation-220.xht": [ + "9db8984d19b7f776faf478466186fbbf44af1f51", [ null, [ [ - "/css/CSS2/positioning/absolute-replaced-width-037-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-220-ref.xht", "==" ] ], {} ] ], - "absolute-replaced-width-066.xht": [ - "907bf00895777ddea8c4056f0abcc9c3f97d32d7", + "first-letter-punctuation-221.xht": [ + "6755c8c7129efade6e45a0a3ed9e843fa5a484f7", [ null, [ [ - "/css/CSS2/positioning/absolute-replaced-width-038-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-221-ref.xht", "==" ] ], {} ] ], - "absolute-replaced-width-067.xht": [ - "5d7f6237a455db8f72dfc2ba79eaac4f6f118afb", + "first-letter-punctuation-222.xht": [ + "6a5e1a911395d7c45465ed64f4128b4ebbbe46ac", [ null, [ [ - "/css/CSS2/positioning/absolute-replaced-width-039-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-222-ref.xht", "==" ] ], {} ] ], - "absolute-replaced-width-069.xht": [ - "be33590a6d6d284361777daec5966dceece9a180", + "first-letter-punctuation-223.xht": [ + "b5896603d7a060a13769d887ebd2dbe294c7868a", [ null, [ [ - "/css/CSS2/positioning/absolute-replaced-width-041-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-223-ref.xht", "==" ] ], {} ] ], - "absolute-replaced-width-071.xht": [ - "711ac8aa4017670137f6d34f33d83200ec0a6499", + "first-letter-punctuation-224.xht": [ + "0b416dade9605cd562fa4c694266000918120782", [ null, [ [ - "/css/CSS2/positioning/absolute-replaced-width-036-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-224-ref.xht", "==" ] ], {} ] ], - "absolute-replaced-width-076.xht": [ - "129e3a18945a78b42c7d8fca44a2af5109c81f54", + "first-letter-punctuation-225.xht": [ + "8a74c0be180cd9b099f446c30ecd448ce7811425", [ null, [ [ - "/css/CSS2/positioning/absolute-replaced-width-041-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-225-ref.xht", "==" ] ], {} ] ], - "abspos-001.xht": [ - "b8cd1afeb844eaae843fd430f520079960c986e9", + "first-letter-punctuation-226.xht": [ + "5d11c0316338c9bff341745460504dbe4603f564", [ null, [ [ - "/css/CSS2/positioning/abspos-001-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-226-ref.xht", "==" ] ], {} ] ], - "abspos-002.xht": [ - "5d4ca5f2fc62cd66dffe7b0697322ad4578a638c", + "first-letter-punctuation-227.xht": [ + "3c1694e61c9b332dd6cb3f6c35930728d47026fa", [ null, [ [ - "/css/CSS2/positioning/abspos-002-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-227-ref.xht", "==" ] ], {} ] ], - "abspos-007.xht": [ - "82c77eb1c763c08da06fd7bd8400c7dec0f6f048", + "first-letter-punctuation-228.xht": [ + "4d97ee13187cdb8cc62c06d826e98f1211f00465", [ null, [ [ - "/css/CSS2/positioning/abspos-007-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-228-ref.xht", "==" ] ], {} ] ], - "abspos-008.xht": [ - "46a302f133e78903cb4625634fda98edbf2825e4", + "first-letter-punctuation-229.xht": [ + "87431757aa2b3d4e05ff03c46776b1a94f87badc", [ null, [ [ - "/css/CSS2/positioning/abspos-008-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-229-ref.xht", "==" ] ], {} ] ], - "abspos-009.xht": [ - "2c5902f5f9a273bf3b987d90722ea7513f54ce98", + "first-letter-punctuation-230.xht": [ + "8999f8c8ae0594f0b258e16db285468446e8d35c", [ null, [ [ - "/css/CSS2/positioning/abspos-009-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-230-ref.xht", "==" ] ], {} ] ], - "abspos-011.xht": [ - "1900af451882540b62ae392a83305c8d4aeeb036", + "first-letter-punctuation-231.xht": [ + "17f9e9943d118f8dfa4103b3a3b67e338518f3a4", [ null, [ [ - "/css/CSS2/positioning/abspos-011-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-231-ref.xht", "==" ] ], {} ] ], - "abspos-012.xht": [ - "03b47f922295aa21292716101986795cd7cb72c3", + "first-letter-punctuation-232.xht": [ + "81c4fc022ab236b37254f487f1e9b65e2d65be1a", [ null, [ [ - "/css/CSS2/positioning/abspos-011-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-232-ref.xht", "==" ] ], {} ] ], - "abspos-013.xht": [ - "8a05d120652a99dc8a5405c928ef25acdeecec5d", + "first-letter-punctuation-233.xht": [ + "4ce526e03af76650e0345db6aba455aa72355146", [ null, [ [ - "/css/CSS2/positioning/abspos-013-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-233-ref.xht", "==" ] ], {} ] ], - "abspos-014.xht": [ - "553b93d0464e53a37cd9b4c8f288b7eebaca691b", + "first-letter-punctuation-234.xht": [ + "155a3dcf80a7db97915e0d6c0d76c91b4ff0909d", [ null, [ [ - "/css/CSS2/positioning/abspos-013-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-234-ref.xht", "==" ] ], {} ] ], - "abspos-015.xht": [ - "32b26528118a9a04be79c1eb4656d8bc995c7761", + "first-letter-punctuation-235.xht": [ + "f98745c26a960171fe5a984d75fff60d869987da", [ null, [ [ - "/css/CSS2/positioning/abspos-013-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-235-ref.xht", "==" ] ], {} ] ], - "abspos-016.xht": [ - "6310eb01dd287bd03fe4eeab9938184f1c3b880b", + "first-letter-punctuation-236.xht": [ + "c7a5d095e8ea5b1808ac859f900e198dc5ec02f4", [ null, [ [ - "/css/CSS2/positioning/abspos-013-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-236-ref.xht", "==" ] ], {} ] ], - "abspos-017.xht": [ - "9c1a977657ab256689120f514cbadb851bde6a1c", + "first-letter-punctuation-237.xht": [ + "b6dfaf919a56fc6c8c87ade5d63c5aea7ed27153", [ null, [ [ - "/css/CSS2/positioning/abspos-013-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-237-ref.xht", "==" ] ], {} ] ], - "abspos-018.xht": [ - "7cf610e32edde8a39c0a9090c022698b5106cae9", + "first-letter-punctuation-238.xht": [ + "183943184b40d5299bafc63137a2e136c070ce66", [ null, [ [ - "/css/CSS2/positioning/abspos-013-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-238-ref.xht", "==" ] ], {} ] ], - "abspos-019.xht": [ - "f2e83dab44249bcba106141335c4a1bd45872845", + "first-letter-punctuation-239.xht": [ + "1dd385ad9f8e398822d1443015cf09771a1bea9a", [ null, [ [ - "/css/CSS2/positioning/abspos-013-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-239-ref.xht", "==" ] ], {} ] ], - "abspos-020.xht": [ - "e1a0335103edb251c83841e2235a9db603037f23", + "first-letter-punctuation-240.xht": [ + "094d53b6393df6bbb6f23a83e1bb633f1b319fea", [ null, [ [ - "/css/CSS2/positioning/abspos-013-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-240-ref.xht", "==" ] ], {} ] ], - "abspos-022.xht": [ - "9949351f1f3b845a53b9adcc3c14a332252c3d7d", + "first-letter-punctuation-241.xht": [ + "6b4f93c333a66536e1e9b303868142eb329b8304", [ null, [ [ - "/css/CSS2/positioning/abspos-013-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-241-ref.xht", "==" ] ], {} ] ], - "abspos-024.xht": [ - "2e4a77d08b3f1194cd907dbe0d7421f67e4f6b32", + "first-letter-punctuation-242.xht": [ + "fd793370cbccf603f28921a962a0f957c8068229", [ null, [ [ - "/css/CSS2/positioning/abspos-024-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-242-ref.xht", "==" ] ], {} ] ], - "abspos-025.xht": [ - "b9b1fd6fbee3e6905a26bbdbb2216ebfe0ac713c", + "first-letter-punctuation-243.xht": [ + "5ef3263a4fa8d2a0dc637aa1605496cdf8b8ad8d", [ null, [ [ - "/css/CSS2/positioning/abspos-025-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-243-ref.xht", "==" ] ], {} ] ], - "abspos-026.xht": [ - "6fa4d773d88905cba5a14f27dcf84d75dc02799c", + "first-letter-punctuation-244.xht": [ + "259f63b3739eb23edb0ee8e84423d718fc80b9c1", [ null, [ [ - "/css/CSS2/positioning/abspos-025-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-244-ref.xht", "==" ] ], {} ] ], - "abspos-027.xht": [ - "f9fecbe6cb71353544ee4144c3989b8b358c0bc4", + "first-letter-punctuation-245.xht": [ + "e1ee03413ed41b64c7c827c6cc0f68221d19c625", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/selectors/first-letter-punctuation-245-ref.xht", "==" ] ], {} ] ], - "abspos-028.xht": [ - "38b726410c26a0d53dc93bd645a92d626ba91c12", + "first-letter-punctuation-246.xht": [ + "084141372e8faf0372cccf134161e165e4a392eb", [ null, [ [ - "/css/CSS2/positioning/abspos-028-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-246-ref.xht", "==" ] ], {} ] ], - "abspos-block-level-001.html": [ - "c55fb3d3947b5b5742af07f39b0fd39d7bc1a80a", + "first-letter-punctuation-247.xht": [ + "a107da421de12cd3682ededcfac07766f365012b", [ null, [ [ - "/css/CSS2/positioning/abspos-block-level-001-ref.html", + "/css/CSS2/selectors/first-letter-punctuation-247-ref.xht", "==" ] ], {} ] ], - "abspos-containing-block-001.xht": [ - "a097a7cc90ef3231ae230cef2f9bf253ca9b789c", + "first-letter-punctuation-248.xht": [ + "21183dedef40019e62658db30cb89218db2d4891", [ null, [ [ - "/css/CSS2/positioning/abspos-containing-block-001-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-248-ref.xht", "==" ] ], {} ] ], - "abspos-containing-block-002.xht": [ - "9d778bced3e42bb255bf3cf1ae4410cac27a3849", + "first-letter-punctuation-249.xht": [ + "090a2f37c5524b50a448c3cd56bd4e77bd955641", [ null, [ [ - "/css/CSS2/positioning/abspos-containing-block-001-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-249-ref.xht", "==" ] ], {} ] ], - "abspos-containing-block-003.xht": [ - "c86c9ffe33204b69a173bc383a489e8bb5d87646", + "first-letter-punctuation-250.xht": [ + "f60ae5f0429ee96e057b9362a3361f5b78a77558", [ null, [ [ - "/css/CSS2/positioning/abspos-containing-block-001-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-250-ref.xht", "==" ] ], {} ] ], - "abspos-containing-block-004.xht": [ - "1cbae982dcc1e80ba1ae573a7e67fab0c877d5de", + "first-letter-punctuation-251.xht": [ + "3f8d7f96ab62ed29bebe1c0f427092c3a40dba64", [ null, [ [ - "/css/CSS2/positioning/abspos-containing-block-001-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-251-ref.xht", "==" ] ], {} ] ], - "abspos-containing-block-005.xht": [ - "b86a3a069106ec3a363549ea1c9414de876e3667", + "first-letter-punctuation-252.xht": [ + "3829286970283ec8aca5a7840212d523053debd5", [ null, [ [ - "/css/CSS2/positioning/abspos-containing-block-001-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-252-ref.xht", "==" ] ], {} ] ], - "abspos-containing-block-006.xht": [ - "70a6f46e6cc5709ca4cbdcae2b756470c2bf8c22", + "first-letter-punctuation-253.xht": [ + "14ad08d0585ea424adabdc8074c0cd74bf649c0e", [ null, [ [ - "/css/CSS2/positioning/abspos-containing-block-001-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-253-ref.xht", "==" ] ], {} ] ], - "abspos-containing-block-007.xht": [ - "ad3e40fa09d929126fb59509248ec7dbb5e81afe", + "first-letter-punctuation-254.xht": [ + "308461c8d25fccd3e63eb75698c4a64bb8365f1c", [ null, [ [ - "/css/CSS2/positioning/abspos-containing-block-001-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-254-ref.xht", "==" ] ], {} ] ], - "abspos-containing-block-008.xht": [ - "f01ce44a5e6fafa13e1044acc832c49541053b4d", + "first-letter-punctuation-255.xht": [ + "481d15629d557e9a6a9d1de0de498b7107d05f90", [ null, [ [ - "/css/CSS2/positioning/abspos-containing-block-001-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-255-ref.xht", "==" ] ], {} ] ], - "abspos-containing-block-009.xht": [ - "77e17dfec98c04d2c6ec5834768b7138e83766a0", + "first-letter-punctuation-256.xht": [ + "e71a9bd97d23388522a16f79c8ab24bc9409f191", [ null, [ [ - "/css/CSS2/positioning/abspos-containing-block-001-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-256-ref.xht", "==" ] ], {} ] ], - "abspos-containing-block-010.xht": [ - "f2199762167935c8c1315ad9147e8d1f2b50aea9", + "first-letter-punctuation-257.xht": [ + "fdb65d46a2c66d0a856754e4123b76290de6ca1b", [ null, [ [ - "/css/CSS2/positioning/abspos-containing-block-010-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-257-ref.xht", "==" ] ], {} ] ], - "abspos-float-with-inline-container.html": [ - "9918bcc68df351a8bfc6975a3f7e9e19e8f576fb", + "first-letter-punctuation-258.xht": [ + "4d26067ac668cbbb1e9339c395cb2f1a44292225", [ null, [ [ - "/css/CSS2/positioning/abspos-float-with-inline-container-ref.html", + "/css/CSS2/selectors/first-letter-punctuation-258-ref.xht", "==" ] ], {} ] ], - "abspos-inline-007.xht": [ - "35fd245dd1025f0e6ba2117b69b9f3a18182f252", + "first-letter-punctuation-259.xht": [ + "ae7797d0884d3f5d0a1b60db21e93a22fa4a55c2", [ null, [ [ - "/css/CSS2/positioning/abspos-inline-007-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-259-ref.xht", "==" ] ], {} ] ], - "abspos-inline-008.xht": [ - "9233b4373e5e4dc5beb6713a9af1de861c5cf4d9", + "first-letter-punctuation-260.xht": [ + "310a15387a847b0fbfe4c0c8437eebb963eb6778", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/CSS2/selectors/first-letter-punctuation-260-ref.xht", "==" ] ], {} ] ], - "abspos-negative-margin-001.html": [ - "6b6246eb195d102e23b8d4c7a9407235b6cc14c1", + "first-letter-punctuation-262.xht": [ + "9bd1e25c331d22ed96e7412ab4c0b934e7d4346d", [ null, [ [ - "/css/CSS2/positioning/abspos-negative-margin-001-ref.html", + "/css/CSS2/selectors/first-letter-punctuation-262-ref.xht", "==" ] ], {} ] ], - "abspos-overflow-001.xht": [ - "0f7ed6b70d8837f76f7c711e0eaa8d324dfbafba", + "first-letter-punctuation-263.xht": [ + "01c746ac307f23770ecdddf840d1519323cb2340", [ null, [ [ - "/css/CSS2/positioning/abspos-overflow-001-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-263-ref.xht", "==" ] ], {} ] ], - "abspos-overflow-002.xht": [ - "793aaa6e2739145db10e0b0d9c43663e78f67f0b", + "first-letter-punctuation-264.xht": [ + "6c2a9d9cc7822323469fd3a96975d2a01010760c", [ null, [ [ - "/css/CSS2/positioning/abspos-overflow-002-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-264-ref.xht", "==" ] ], {} ] ], - "abspos-overflow-003.xht": [ - "65f568e3dc6c6766769d3039ec65d8e9af436a47", + "first-letter-punctuation-265.xht": [ + "77f4c39eb80b332efc0d4d0eae0265d378336798", [ null, [ [ - "/css/CSS2/positioning/abspos-overflow-003-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-265-ref.xht", "==" ] ], {} ] ], - "abspos-overflow-004.xht": [ - "eafa15ed0e158234cde51d9467cf03ef8d463b18", + "first-letter-punctuation-266.xht": [ + "fb00feeae8d8cc8c9a6e822f88d124aeaf052096", [ null, [ [ - "/css/CSS2/positioning/abspos-overflow-004-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-266-ref.xht", "==" ] ], {} ] ], - "abspos-overflow-005.xht": [ - "109e7abba9da7c904a8acf1f5a6b7caa7da2974d", + "first-letter-punctuation-267.xht": [ + "5d88d5fa6dc076189400460533c4166e91fb2288", [ null, [ [ - "/css/CSS2/positioning/abspos-overflow-005-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-267-ref.xht", "==" ] ], {} ] ], - "abspos-overflow-006.xht": [ - "6e88c2bfeaff547280d76b03cfb86e5f03b7277c", + "first-letter-punctuation-268.xht": [ + "6931ee661ef740cd1576221652d01d4299c852a3", [ null, [ [ - "/css/CSS2/positioning/abspos-overflow-006-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-268-ref.xht", "==" ] ], {} ] ], - "abspos-overflow-007.xht": [ - "3c9ad7b3a6b041434371ca78dd2979c2e39f9156", + "first-letter-punctuation-269.xht": [ + "f81ecb012f892fb274d37be4f21391c9c3d8c4f8", [ null, [ [ - "/css/CSS2/positioning/abspos-overflow-004-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-269-ref.xht", "==" ] ], {} ] ], - "abspos-overflow-008.xht": [ - "af84b93cceafa141f4b45e03d64297e502a3a85d", + "first-letter-punctuation-270.xht": [ + "d48e743975af95309a6689d11c2ecd3de54d4ae9", [ null, [ [ - "/css/CSS2/positioning/abspos-overflow-005-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-270-ref.xht", "==" ] ], {} ] ], - "abspos-overflow-009.xht": [ - "17eddd8a674a7dde00f004ccf7abf0353a236be0", + "first-letter-punctuation-271.xht": [ + "6502f99fd6d442a9bcbc171496ce2ea2f1059ff8", [ null, [ [ - "/css/CSS2/positioning/abspos-overflow-006-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-271-ref.xht", "==" ] ], {} ] ], - "abspos-overflow-010.xht": [ - "7d2c9c355d0df0b56759808c8456147dcfe3f8d4", + "first-letter-punctuation-272.xht": [ + "7245140400e1ff897897c57c7a40d33980d07870", [ null, [ [ - "/css/CSS2/positioning/abspos-overflow-010-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-272-ref.xht", "==" ] ], {} ] ], - "abspos-overflow-011.xht": [ - "9cac516d33a57f25ae21d8be190ecddfa1bb8281", + "first-letter-punctuation-273.xht": [ + "34613d63dbdcd9f63a8c838282a5ed60ca4fa7a0", [ null, [ [ - "/css/CSS2/positioning/abspos-overflow-011-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-273-ref.xht", "==" ] ], {} ] ], - "abspos-overflow-012.xht": [ - "376d52519de8d29547777d69775bb02fe709af01", + "first-letter-punctuation-274.xht": [ + "e65a8b2550f40d207ff005db42a832ea15051963", [ null, [ [ - "/css/CSS2/positioning/abspos-overflow-011-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-274-ref.xht", "==" ] ], {} ] ], - "abspos-width-001.xht": [ - "766c512b3cd87a99ffed151e59d2388f8e36960e", + "first-letter-punctuation-275.xht": [ + "2a2d6b531598a9ca1acac72af5d436dc2b5b4ce6", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/selectors/first-letter-punctuation-275-ref.xht", "==" ] ], {} ] ], - "abspos-width-002.xht": [ - "0465f6571b8339f417ee294df690524087437089", + "first-letter-punctuation-276.xht": [ + "8c103e6569aa4809813362bde1d564d4dfbb9b7f", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/selectors/first-letter-punctuation-276-ref.xht", "==" ] ], {} ] ], - "abspos-width-003.xht": [ - "79208b8da9c4a99ca2ec179995f0656290825d5a", + "first-letter-punctuation-277.xht": [ + "c0ee799f5524282a23ee7d772d1135bccd810e97", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/selectors/first-letter-punctuation-277-ref.xht", "==" ] ], {} ] ], - "abspos-width-004.xht": [ - "ee6f8967be1bb1fe561905b62353a22ebbb4ae37", + "first-letter-punctuation-278.xht": [ + "a252f1d4ed574a5c019655a8d1124f38108cc11b", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/selectors/first-letter-punctuation-278-ref.xht", "==" ] ], {} ] ], - "abspos-width-005.xht": [ - "1913db0d2912cfa03c72a4d5635d71b2aa87c094", + "first-letter-punctuation-279.xht": [ + "61616fb63bccf66bab0edcf8bad584af9cab511b", [ null, [ [ - "/css/CSS2/positioning/abspos-width-005-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-279-ref.xht", "==" ] ], {} ] ], - "abspos-width-change-inline-container-001.html": [ - "27b5aed83adee68b369efac45fc3ed796ad59797", + "first-letter-punctuation-280.xht": [ + "55fe2d889d2591319b5a7a490b1f8831d6299550", [ null, [ [ - "/css/CSS2/positioning/abspos-width-change-inline-container-001-ref.html", + "/css/CSS2/selectors/first-letter-punctuation-280-ref.xht", "==" ] ], {} ] ], - "auto-position-rtl-child-viewport-scrollbar.html": [ - "80daf1bb37f206df4c4682675be327192db39eab", + "first-letter-punctuation-281.xht": [ + "554ace3d225dab18211bafbe484e31715600f313", [ null, [ [ - "/css/CSS2/positioning/auto-position-rtl-child-viewport-scrollbar-ref.html", + "/css/CSS2/selectors/first-letter-punctuation-281-ref.xht", "==" ] ], {} ] ], - "bottom-004.xht": [ - "ac2cdbb49ebcb58bd98c19d38c6bb7952ff56e7d", + "first-letter-punctuation-282.xht": [ + "313dc815e4d03428c95d026c8a1876f44d906fce", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/selectors/first-letter-punctuation-282-ref.xht", "==" ] ], {} ] ], - "bottom-005.xht": [ - "fdfe5dd77a2860726fde71b7dec1f2d6e287959a", + "first-letter-punctuation-283.xht": [ + "3e97d12383aaa9b1f37b7cb489e692f9087e7a97", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/selectors/first-letter-punctuation-283-ref.xht", "==" ] ], {} ] ], - "bottom-006.xht": [ - "f554da80e583e2654428fb01869db3d08f43f456", + "first-letter-punctuation-284.xht": [ + "af94a947efc2689a811af6b7ae880c332357bfbf", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/selectors/first-letter-punctuation-284-ref.xht", "==" ] ], {} ] ], - "bottom-007.xht": [ - "41ad1a017a831b45b7b98e00682d1c9a3e8fe116", + "first-letter-punctuation-285.xht": [ + "a50445f2bd27cac0d865ffd4b10b30800efe32f7", [ null, [ [ - "/css/CSS2/positioning/bottom-007-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-285-ref.xht", "==" ] ], {} ] ], - "bottom-008.xht": [ - "287642fb87c03f2562d6e2eaf1bf967f4b22b9c6", + "first-letter-punctuation-286.xht": [ + "b42dd7ecb76d309790cbc18febfef7644347fa30", [ null, [ [ - "/css/CSS2/positioning/bottom-007-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-286-ref.xht", "==" ] ], {} ] ], - "bottom-016.xht": [ - "7220533e9d20c0c70dfd7a485a525c8a63744b2c", + "first-letter-punctuation-287.xht": [ + "e39622b0fcea6f6d95dc62294711971fc3375beb", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/selectors/first-letter-punctuation-287-ref.xht", "==" ] ], {} ] ], - "bottom-017.xht": [ - "1f4f681776a2e05be92a71a863dafcaaac97405e", + "first-letter-punctuation-288.xht": [ + "e6f8cc888b96ec4b1535bf08c84a0b73b35987a7", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/selectors/first-letter-punctuation-288-ref.xht", "==" ] ], {} ] ], - "bottom-018.xht": [ - "42321d195111a040541248474d2c2038744c7c55", + "first-letter-punctuation-289.xht": [ + "2c791234f2bb9cbb54cec3afd0653d444c2499c5", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/selectors/first-letter-punctuation-289-ref.xht", "==" ] ], {} ] ], - "bottom-019.xht": [ - "8ef3491b4fd6388df9518b8cdc9f3fd47840fe7c", + "first-letter-punctuation-290.xht": [ + "cd09f4a15dd5077fd6dcbddd7ec739eef7b4a73b", [ null, [ [ - "/css/CSS2/positioning/bottom-019-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-290-ref.xht", "==" ] ], {} ] ], - "bottom-020.xht": [ - "30ac2a84a39a1ee9a661c440da83056f1a631fa8", + "first-letter-punctuation-291.xht": [ + "a41dde93a174b91ba0322405a652a2332d7ef887", [ null, [ [ - "/css/CSS2/positioning/bottom-019-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-291-ref.xht", "==" ] ], {} ] ], - "bottom-028.xht": [ - "6cbc57b83b934fe4cc5c979ba6c2f1f6c87a273e", + "first-letter-punctuation-292.xht": [ + "37b1049a774f403c5752dbc31aded77c596ce982", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/selectors/first-letter-punctuation-292-ref.xht", "==" ] ], {} ] ], - "bottom-029.xht": [ - "4b6248cae4e7e137324ea78cd390aa250722c99f", + "first-letter-punctuation-293.xht": [ + "eafae0e8c40cad61d663cf951da34b3dc4d240e6", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/selectors/first-letter-punctuation-293-ref.xht", "==" ] ], {} ] ], - "bottom-030.xht": [ - "7230b6e668600d77972fd7d2d189babf46aceb39", + "first-letter-punctuation-294.xht": [ + "fc05320b64097cf9832db741b42f7d882330aa4a", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/selectors/first-letter-punctuation-294-ref.xht", "==" ] ], {} ] ], - "bottom-031.xht": [ - "b6094a5ce95f06029f9147a1743dd9adf22d49d5", + "first-letter-punctuation-295.xht": [ + "e991bd5ba429f7b7bd80e89e2a5f9f5acafa783f", [ null, [ [ - "/css/CSS2/positioning/bottom-019-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-295-ref.xht", "==" ] ], {} ] ], - "bottom-032.xht": [ - "25a6fb36d451831da27cc39d992b69ce8da5c2d1", + "first-letter-punctuation-296.xht": [ + "50ceb95114a08f6f3f3104a9b3eb2cb46ecf4fa6", [ null, [ [ - "/css/CSS2/positioning/bottom-019-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-296-ref.xht", "==" ] ], {} ] ], - "bottom-040.xht": [ - "d60c160acbc41554b9481241194c8c4623089824", + "first-letter-punctuation-297.xht": [ + "a222612abb53e2beaee455aa44c12f45ec365c62", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/selectors/first-letter-punctuation-297-ref.xht", "==" ] ], {} ] ], - "bottom-041.xht": [ - "38b531f4fded42e49df925ee095bc10b4314a260", + "first-letter-punctuation-298.xht": [ + "52f71e1d375fbb43c7318851cbc03bae7e8318f4", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/selectors/first-letter-punctuation-298-ref.xht", "==" ] ], {} ] ], - "bottom-042.xht": [ - "e5afb0efa622a2115005a5bf502465206da5712b", + "first-letter-punctuation-299.xht": [ + "0a251b6a67c4270818bf86464a8958176ccfb0b9", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/selectors/first-letter-punctuation-299-ref.xht", "==" ] ], {} ] ], - "bottom-043.xht": [ - "c91a46ca7c87ca9b06391d4e5d79b0c9e1718c49", + "first-letter-punctuation-300.xht": [ + "34cdbdd636da20591782886c843997f032ddbcb4", [ null, [ [ - "/css/CSS2/positioning/bottom-019-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-300-ref.xht", "==" ] ], {} ] ], - "bottom-044.xht": [ - "dbaa89973113a9dc77e86f1ec7cab7e01025c407", + "first-letter-punctuation-301.xht": [ + "c54b7608c08ed3216728a90cfbd5e3c3ec189b69", [ null, [ [ - "/css/CSS2/positioning/bottom-019-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-301-ref.xht", "==" ] ], {} ] ], - "bottom-052.xht": [ - "31508bcb328d61448ddd736342fac839caeff0d6", + "first-letter-punctuation-302.xht": [ + "502dc62683970114ca53ec97e526dcef0df9e1c3", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/selectors/first-letter-punctuation-302-ref.xht", "==" ] ], {} ] ], - "bottom-053.xht": [ - "4aea6b7676c97e5a7f30112d9374ed41ac32464a", + "first-letter-punctuation-303.xht": [ + "7a2594ca51a5ed26729fd83006ce2eaba7004f2b", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/selectors/first-letter-punctuation-303-ref.xht", "==" ] ], {} ] ], - "bottom-054.xht": [ - "fc1dee6ea2bf9b1208c36d69162d3aa3249e03af", + "first-letter-punctuation-304.xht": [ + "8cffacea65baf7cc58fbea87ca782f95c636f051", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/selectors/first-letter-punctuation-304-ref.xht", "==" ] ], {} ] ], - "bottom-055.xht": [ - "d7cc1fbd5f30c379e573210eedd35713e7446ca6", + "first-letter-punctuation-305.xht": [ + "f320f84a0c8f8bac0699affd9d8c71b4baaa476c", [ null, [ [ - "/css/CSS2/positioning/bottom-019-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-305-ref.xht", "==" ] ], {} ] ], - "bottom-056.xht": [ - "53f7db456fed2f81997dd122792c0f40e847f0b2", + "first-letter-punctuation-306.xht": [ + "b5c8858dfb9f1103db972f01a3c7fc4501e24fc4", [ null, [ [ - "/css/CSS2/positioning/bottom-019-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-306-ref.xht", "==" ] ], {} ] ], - "bottom-064.xht": [ - "6eb676819559038c51910638fb832de77df617bd", + "first-letter-punctuation-307.xht": [ + "96a7fbe6141747f5f07b748ce5dd7e1c69308cfb", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/selectors/first-letter-punctuation-307-ref.xht", "==" ] ], {} ] ], - "bottom-065.xht": [ - "6d853c3ae8b9b6dc9397d3637170d5abea975d96", + "first-letter-punctuation-308.xht": [ + "a37e3a837875207267969a69e80e8d0ce7537f09", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/selectors/first-letter-punctuation-308-ref.xht", "==" ] ], {} ] ], - "bottom-066.xht": [ - "9db7b820e07ca63540f014b13e6e047fa1a3c67b", + "first-letter-punctuation-309.xht": [ + "bf96de87080de5087ef67cfa171c450984951e0f", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/selectors/first-letter-punctuation-309-ref.xht", "==" ] ], {} ] ], - "bottom-067.xht": [ - "2ba9a964696cca3bf691f317e32f531df99aa4b4", + "first-letter-punctuation-310.xht": [ + "564eabc277e7888b7ae0603e20f15d28eeb8e2f7", [ null, [ [ - "/css/CSS2/positioning/bottom-019-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-310-ref.xht", "==" ] ], {} ] ], - "bottom-068.xht": [ - "c62e73eb9e37097bec4ddf962336d60885849447", + "first-letter-punctuation-311.xht": [ + "d9fa1c68dd230026d5a56e22e64a5586123a4d51", [ null, [ [ - "/css/CSS2/positioning/bottom-019-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-311-ref.xht", "==" ] ], {} ] ], - "bottom-076.xht": [ - "902c734fd01f67950c1cadb17b93616f0ee23e94", + "first-letter-punctuation-312.xht": [ + "18f92bdb80fb8bb959f2815345c9bc3714dfe23d", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/selectors/first-letter-punctuation-312-ref.xht", "==" ] ], {} ] ], - "bottom-077.xht": [ - "ac8c772c52223537825897a81019bece15f31fe3", + "first-letter-punctuation-313.xht": [ + "6a24f5214742676e3e65aa1df11913df94eda34f", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/selectors/first-letter-punctuation-313-ref.xht", "==" ] ], {} ] ], - "bottom-078.xht": [ - "c2fa01c5f08133aa65f42fe063c099036e2179e2", + "first-letter-punctuation-314.xht": [ + "c4d9dd93ba70d9a612d3ed0ae7af76c0a06129d1", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/selectors/first-letter-punctuation-314-ref.xht", "==" ] ], {} ] ], - "bottom-079.xht": [ - "3ded789f711ae31efc5ab420c6ccd1a113ec246b", + "first-letter-punctuation-315.xht": [ + "ad8d8f9bdda9c991e0e5698e54f3e24625ced25b", [ null, [ [ - "/css/CSS2/positioning/bottom-079-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-315-ref.xht", "==" ] ], {} ] ], - "bottom-080.xht": [ - "7edb44d1404ed0ed763466a3ff506538df0a00d7", + "first-letter-punctuation-316.xht": [ + "4e18c690196028c4b1578d044c500a1a7ce6713f", [ null, [ [ - "/css/CSS2/positioning/bottom-079-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-316-ref.xht", "==" ] ], {} ] ], - "bottom-088.xht": [ - "86380f75e8383080f7c4ad3505a513ce5bdf5a8f", + "first-letter-punctuation-317.xht": [ + "87ce4b77ed7e8339d7975ee6fc844f884719a5b8", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/selectors/first-letter-punctuation-317-ref.xht", "==" ] ], {} ] ], - "bottom-089.xht": [ - "7bb2c3c580a5f11e03e1f9e42ef9a3a8234ccf67", + "first-letter-punctuation-318.xht": [ + "92eddd6490031adba01ac78da54f9410c0d9bb1b", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/selectors/first-letter-punctuation-318-ref.xht", "==" ] ], {} ] ], - "bottom-090.xht": [ - "4fa738ea7b6faa7ba391d1a1e50c08b1535c3ca6", + "first-letter-punctuation-319.xht": [ + "14c6b6f210b688bf5cb7651ccac2445953af6cbe", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/selectors/first-letter-punctuation-319-ref.xht", "==" ] ], {} ] ], - "bottom-091.xht": [ - "61d08dcbc2d85518f5ae19d69c080d09760f04a5", + "first-letter-punctuation-320.xht": [ + "99082e1d320dec307231fdae250ba42285c803ea", [ null, [ [ - "/css/CSS2/positioning/bottom-019-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-320-ref.xht", "==" ] ], {} ] ], - "bottom-092.xht": [ - "e2ad2d83efca162fedfd90af01a8435f54d98dc3", + "first-letter-punctuation-321.xht": [ + "a48360eb586b4fb5f73ce32f1f5c140b2f658a0c", [ null, [ [ - "/css/CSS2/positioning/bottom-019-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-321-ref.xht", "==" ] ], {} ] ], - "bottom-100.xht": [ - "407ee7c7e3bd58806ead5b4ca09d63c7f2819bd7", + "first-letter-punctuation-322.xht": [ + "6c6eec2ccf53d379d573520fb3f98c41020e317a", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/selectors/first-letter-punctuation-322-ref.xht", "==" ] ], {} ] ], - "bottom-101.xht": [ - "d108fc071ef93d391efc249e532a462821e20c6e", + "first-letter-punctuation-323.xht": [ + "760908784ba545d11183e8ca81d320059b4e460b", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/selectors/first-letter-punctuation-323-ref.xht", "==" ] ], {} ] ], - "bottom-102.xht": [ - "d01813c02ab2637548af2e588f3fcfb24e221faf", + "first-letter-punctuation-324.xht": [ + "08c20093772033584462fcfd3ece5b268f79c7f0", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/selectors/first-letter-punctuation-324-ref.xht", "==" ] ], {} ] ], - "bottom-103.xht": [ - "3d392a4cbac0620ca54883f7151797d91fffc6ba", + "first-letter-punctuation-325.xht": [ + "43aab765010c2873e1a9e4bbe0c1e457b2a82dc0", [ null, [ [ - "/css/CSS2/positioning/bottom-019-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-325-ref.xht", "==" ] ], {} ] ], - "bottom-104.xht": [ - "54b8e49cfe28771082a66f8a589e40079791122a", + "first-letter-punctuation-326.xht": [ + "335a92a00a3a4c3bc6b125797a8184fa6f9cd5ad", [ null, [ [ - "/css/CSS2/positioning/bottom-019-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-326-ref.xht", "==" ] ], {} ] ], - "bottom-109.xht": [ - "7a5948f6fa489da17c1e36a21d5c3d3fac973220", + "first-letter-punctuation-327.xht": [ + "5eb9a05757f5c660640519c0f8fd9d48078edd2f", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/selectors/first-letter-punctuation-327-ref.xht", "==" ] ], {} ] ], - "bottom-110.xht": [ - "dcedf16beb3245110f6d6e398a776f492d061274", + "first-letter-punctuation-328.xht": [ + "2c33861cd55fef0237bed2c95355b07f2e93cb9f", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/selectors/first-letter-punctuation-328-ref.xht", "==" ] ], {} ] ], - "bottom-111.xht": [ - "4d74234b56d95413d08675c5410db72a8a2b841a", + "first-letter-punctuation-329.xht": [ + "abbf3d81122ce41343123c7b149f2d44add28c48", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/selectors/first-letter-punctuation-329-ref.xht", "==" ] ], {} ] ], - "bottom-112.xht": [ - "dd0304961cfd3dd04ece7a698713c26d06ddfc97", + "first-letter-punctuation-330.xht": [ + "001843ffe2c2f12541e37bd27f55856d0d26dc7b", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/selectors/first-letter-punctuation-330-ref.xht", "==" ] ], {} ] ], - "bottom-113.xht": [ - "75234950a91ac2941adefd08deb648130c2d56f3", + "first-letter-punctuation-331.xht": [ + "72b7aca3f02b4134a6b2204759ef858d4b67bf2e", [ null, [ [ - "/css/CSS2/positioning/bottom-113-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-331-ref.xht", "==" ] ], {} ] ], - "bottom-applies-to-001.xht": [ - "383e81a7892cca3f6e6006a9b3d7e3fcdc54307b", + "first-letter-punctuation-332.xht": [ + "6d0aaf43e73ea0a8c977147e7f08b003796861dd", [ null, [ [ - "/css/CSS2/positioning/bottom-applies-to-001-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-332-ref.xht", "==" ] ], {} ] ], - "bottom-applies-to-002.xht": [ - "8481ac439de906320871c5d9193da923b277e7ed", + "first-letter-punctuation-333.xht": [ + "d506a7366b8626c95aa37ed9e19928fd4bdb7ecc", [ null, [ [ - "/css/CSS2/positioning/bottom-applies-to-001-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-333-ref.xht", "==" ] ], {} ] ], - "bottom-applies-to-003.xht": [ - "156694cfb6168a7749585350b96adf4370711d99", + "first-letter-punctuation-334.xht": [ + "e7351e69cd4ba96bda940db1c92a56cf0725e390", [ null, [ [ - "/css/CSS2/positioning/bottom-applies-to-001-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-334-ref.xht", "==" ] ], {} ] ], - "bottom-applies-to-004.xht": [ - "9993f88c1fc4cf3f5a706f5e9f7a4783af724d49", + "first-letter-punctuation-335.xht": [ + "54c053f89dcac52683d7b8f88b627ed075a7467f", [ null, [ [ - "/css/CSS2/positioning/bottom-applies-to-001-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-335-ref.xht", "==" ] ], {} ] ], - "bottom-applies-to-005.xht": [ - "5b33e32edc744897b87c92d0687bbc0d998deb13", + "first-letter-punctuation-336.xht": [ + "a0f0a836dfcf79d39b0e804f123a5ae7a220cdb9", [ null, [ [ - "/css/CSS2/positioning/bottom-applies-to-001-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-336-ref.xht", "==" ] ], {} ] ], - "bottom-applies-to-006.xht": [ - "831324ddff274455e9c6897bcf46d21ba253f82c", + "first-letter-punctuation-337.xht": [ + "44cf93976c7e9f7aa5a6daf74711930035d4e78a", [ null, [ [ - "/css/CSS2/positioning/bottom-applies-to-001-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-337-ref.xht", "==" ] ], {} ] ], - "bottom-applies-to-007.xht": [ - "2dcccbcfca2b26dc377802caf7f2e16716237c3d", + "first-letter-punctuation-338.xht": [ + "ae7899901d8688d7723733bff38e4edc5fba5064", [ null, [ [ - "/css/CSS2/positioning/bottom-applies-to-001-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-338-ref.xht", "==" ] ], {} ] ], - "bottom-applies-to-009.xht": [ - "dfc784cf382bf4b4c428d81075ab46267736a846", + "first-letter-punctuation-339.xht": [ + "128c0e46899747a979c06ad216f08c1562dcc7b9", [ null, [ [ - "/css/CSS2/positioning/bottom-applies-to-001-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-339-ref.xht", "==" ] ], {} ] ], - "bottom-applies-to-012.xht": [ - "1f480bf125ce15e992903517be78f331aacfb679", + "first-letter-punctuation-340.xht": [ + "bdf37ba1197f780ea57f625c63ade8d7ae52a078", [ null, [ [ - "/css/CSS2/positioning/bottom-applies-to-001-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-340-ref.xht", "==" ] ], {} ] ], - "bottom-applies-to-013.xht": [ - "9469f91ddf83ec88a44650e49e6ff003e15e7a1a", + "first-letter-punctuation-341.xht": [ + "087bfa4c8d650b431a3bb865965e0348682d161d", [ null, [ [ - "/css/CSS2/positioning/bottom-applies-to-001-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-341-ref.xht", "==" ] ], {} ] ], - "bottom-applies-to-014.xht": [ - "7157c66713a57c6f74c534b386c803d301f444a4", + "first-letter-punctuation-342.xht": [ + "5db768dab8f84e695fd672d51bd2e083253f097e", [ null, [ [ - "/css/CSS2/positioning/bottom-applies-to-001-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-342-ref.xht", "==" ] ], {} ] ], - "bottom-applies-to-015.xht": [ - "19c724f80562ef15f5be56139a99c0d3b4e83bb3", + "first-letter-punctuation-343.xht": [ + "b05a8799706e7e6c8ae33241098061a30e7059b6", [ null, [ [ - "/css/CSS2/positioning/bottom-applies-to-001-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-343-ref.xht", "==" ] ], {} ] ], - "bottom-offset-001.xht": [ - "32be0fd8b8d4e0c02571106c8ef3d148056d3d25", + "first-letter-punctuation-344.xht": [ + "53b113bbe614ff6243781f94a8e4c78574c40353", [ null, [ [ - "/css/CSS2/positioning/bottom-offset-001-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-344-ref.xht", "==" ] ], {} ] ], - "bottom-offset-002.xht": [ - "757c4e6e6e42662c15181d07c83f99bd452414eb", + "first-letter-punctuation-345.xht": [ + "0eb0d36d77eb6234c31a77246a3d8edec66858ca", [ null, [ [ - "/css/CSS2/positioning/bottom-offset-001-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-345-ref.xht", "==" ] ], {} ] ], - "bottom-offset-003.xht": [ - "c8d29df0cc77f0b5de2785ab70208c4f5435e028", + "first-letter-punctuation-346.xht": [ + "72b6007447c7d1b9c66f8252ac12f247bddc8cd6", [ null, [ [ - "/css/CSS2/positioning/bottom-offset-001-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-346-ref.xht", "==" ] ], {} ] ], - "bottom-offset-percentage-001.xht": [ - "828bface3d0a7ca2263cf5e241f4fc15f89c1b66", + "first-letter-punctuation-347.xht": [ + "b873567454ddc57d33aab066d71b80f271bcc13f", [ null, [ [ - "/css/CSS2/positioning/bottom-offset-percentage-001-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-347-ref.xht", "==" ] ], {} ] ], - "dynamic-top-change-001.xht": [ - "10dfc482c1feb3b36685eb2b678295ee8992c399", + "first-letter-punctuation-348.xht": [ + "fa7c713347e8c92f2841db893bcc6f443cefe74d", [ null, [ [ - "/css/CSS2/positioning/dynamic-top-change-001-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-348-ref.xht", "==" ] ], {} ] ], - "dynamic-top-change-002.xht": [ - "f6b80fe2048e0b2438810b68b1740d7201436a3d", + "first-letter-punctuation-349.xht": [ + "130a4e8131606db8b9c41eb893f1359f24dd5404", [ null, [ [ - "/css/CSS2/positioning/dynamic-top-change-002-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-349-ref.xht", "==" ] ], {} ] ], - "dynamic-top-change-003.xht": [ - "1359a047fcb920edd63550d88a2e506e318899f7", + "first-letter-punctuation-350.xht": [ + "6e5f974af92f4b57e8125a3cfb12bb7d7f11ece8", [ null, [ [ - "/css/CSS2/positioning/dynamic-top-change-002-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-350-ref.xht", "==" ] ], {} ] ], - "dynamic-top-change-004.xht": [ - "0f557bd4371390adc07142b34b626ee8a2fe0904", + "first-letter-punctuation-351.xht": [ + "051ffa60663f5489f7d06897ed8ac2c1d64ac403", [ null, [ [ - "/css/CSS2/positioning/dynamic-top-change-002-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-351-ref.xht", "==" ] ], {} ] ], - "left-004.xht": [ - "0e6d795bd7af2edfbd13f2b7d8fa45d98093c5e2", + "first-letter-punctuation-352.xht": [ + "93b984bb4eb11df9d2f4bfe5c9deb23a666b4401", [ null, [ [ - "/css/CSS2/positioning/left-004-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-352-ref.xht", "==" ] ], {} ] ], - "left-005.xht": [ - "d24ab9e92126b757241547b97b0f26e18f9e3521", + "first-letter-punctuation-353.xht": [ + "52e96431f206b71ea19ab6c385f397f1fcd8a855", [ null, [ [ - "/css/CSS2/positioning/left-004-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-353-ref.xht", "==" ] ], {} ] ], - "left-006.xht": [ - "1059837d86636bca4200a02613bf1fdb036c2985", + "first-letter-punctuation-354.xht": [ + "a85e709fb098b91fc47b78e7becc215441470974", [ null, [ [ - "/css/CSS2/positioning/left-004-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-354-ref.xht", "==" ] ], {} ] ], - "left-007.xht": [ - "1cd12f4e872680d292ef33a0d9a6f32fe8d06daf", + "first-letter-punctuation-355.xht": [ + "09b49915806ebfe817c9e5011d394cc498570eb0", [ null, [ [ - "/css/CSS2/positioning/left-007-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-355-ref.xht", "==" ] ], {} ] ], - "left-008.xht": [ - "75f3f43f33c19ad329e1ba97fb75539bf4d3c29a", + "first-letter-punctuation-356.xht": [ + "701620656799fd9edf3a26f3d547fabeac112179", [ null, [ [ - "/css/CSS2/positioning/left-007-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-356-ref.xht", "==" ] ], {} ] ], - "left-016.xht": [ - "b3f2590d88708b81b18c2c8b8780dc6cf2300a3d", + "first-letter-punctuation-357.xht": [ + "a4ace8ba909bc01a1cac950c93b860da07803356", [ null, [ [ - "/css/CSS2/positioning/left-004-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-357-ref.xht", "==" ] ], {} ] ], - "left-017.xht": [ - "3d98c0bde684a00d18a9d9cbb16a32275ffb8171", + "first-letter-punctuation-359.xht": [ + "e0e2f9ac9542b0013cf970d2dd8bc3196c7b7940", [ null, [ [ - "/css/CSS2/positioning/left-004-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-359-ref.xht", "==" ] ], {} ] ], - "left-018.xht": [ - "4e629237db346d32cbc5b2787c0235fad6bb3543", + "first-letter-punctuation-360.xht": [ + "75e3c922ba16c480a0452f73103f9be5aa582467", [ null, [ [ - "/css/CSS2/positioning/left-004-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-360-ref.xht", "==" ] ], {} ] ], - "left-019.xht": [ - "a384baf935f30d80ae64a38970942ef348431ea7", + "first-letter-punctuation-361.xht": [ + "33a85a029d93af961b6fd7cda08766c63cb14bbc", [ null, [ [ - "/css/CSS2/reference/ref-black-96px-square-no-red.xht", + "/css/CSS2/selectors/first-letter-punctuation-361-ref.xht", "==" ] ], {} ] ], - "left-020.xht": [ - "9a904fa1fbbd55d88d06eefdff0a85a78f7eedd4", + "first-letter-punctuation-362.xht": [ + "c0768de04d449d6d8e56eb5e3f82c609f3abb027", [ null, [ [ - "/css/CSS2/reference/ref-black-96px-square-no-red.xht", + "/css/CSS2/selectors/first-letter-punctuation-362-ref.xht", "==" ] ], {} ] ], - "left-028.xht": [ - "4542340da883162c6e29508b6055b0767a546b1c", + "first-letter-punctuation-363.xht": [ + "92cccd290afd73b0d0b571770551c907a602e3e5", [ null, [ [ - "/css/CSS2/positioning/left-004-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-363-ref.xht", "==" ] ], {} ] ], - "left-029.xht": [ - "cd51d3730091722b00ec3f8cdd82d4458c2f67fa", + "first-letter-punctuation-364.xht": [ + "749d6a79d42909a2604b1411aa931fadcf22cad4", [ null, [ [ - "/css/CSS2/positioning/left-004-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-364-ref.xht", "==" ] ], {} ] ], - "left-030.xht": [ - "9881130195f8d160303f33be87f39d2804de57cd", + "first-letter-punctuation-365.xht": [ + "27a58bb2eea7b1942005bccedd87cc49965b9615", [ null, [ [ - "/css/CSS2/positioning/left-004-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-365-ref.xht", "==" ] ], {} ] ], - "left-031.xht": [ - "0184a9cce04dd080e0e4cbe0c2c13c79d87b1d21", + "first-letter-punctuation-366.xht": [ + "235e9af202a796643a83b662c11c21a334043ec7", [ null, [ [ - "/css/CSS2/positioning/left-031-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-366-ref.xht", "==" ] ], {} ] ], - "left-032.xht": [ - "05c9cc881888f70bab7a1d0b7821103853dde686", + "first-letter-punctuation-367.xht": [ + "6baaa5ddfe27e63279d12c62e2f94870b1893ade", [ null, [ [ - "/css/CSS2/positioning/left-031-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-367-ref.xht", "==" ] ], {} ] ], - "left-040.xht": [ - "41807d786515bde809db1eaadafff598b66d79b5", + "first-letter-punctuation-368.xht": [ + "bd7c83b795c8af153431ff480a1efdb54b8ff774", [ null, [ [ - "/css/CSS2/positioning/left-004-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-368-ref.xht", "==" ] ], {} ] ], - "left-041.xht": [ - "7bab240424dbcfa95e1eff03fa20ce4d1bd1b8ea", + "first-letter-punctuation-369.xht": [ + "9fa60a115e7c91094219830a5ffc0f53e5ceda83", [ null, [ [ - "/css/CSS2/positioning/left-004-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-369-ref.xht", "==" ] ], {} ] ], - "left-042.xht": [ - "3d473f85ed2a87737d6d62586e1f96edafb030ff", + "first-letter-punctuation-370.xht": [ + "d630820f5e9bda41b6c4c5680e638479b5c737ae", [ null, [ [ - "/css/CSS2/positioning/left-004-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-370-ref.xht", "==" ] ], {} ] ], - "left-043.xht": [ - "2e2f669a2f564e9c8a67738533d12361f4533346", + "first-letter-punctuation-371.xht": [ + "d2a650ad88424227ef0194a936acb54bf56181d3", [ null, [ [ - "/css/CSS2/reference/ref-black-96px-square-no-red.xht", + "/css/CSS2/selectors/first-letter-punctuation-371-ref.xht", "==" ] ], {} ] ], - "left-044.xht": [ - "be9b986a3f4bfdef69b1d2f9bd3785c63cd41171", + "first-letter-punctuation-372.xht": [ + "11918bfb7aa33bd1d6e12c62b4a57b5b4f77c923", [ null, [ [ - "/css/CSS2/reference/ref-black-96px-square-no-red.xht", + "/css/CSS2/selectors/first-letter-punctuation-372-ref.xht", "==" ] ], {} ] ], - "left-052.xht": [ - "d883664dca22b7f9aae9b0af3fdb70630c5bee35", + "first-letter-punctuation-373.xht": [ + "3824ddc628e50fb21b632af9ec8641031fb702ec", [ null, [ [ - "/css/CSS2/positioning/left-004-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-373-ref.xht", "==" ] ], {} ] ], - "left-053.xht": [ - "459d859da02db779eaa0c66ca4a3c4e094a2de96", + "first-letter-punctuation-374.xht": [ + "7ef6a58acd36ac793f63d0dfa831397e30f8daed", [ null, [ [ - "/css/CSS2/positioning/left-004-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-374-ref.xht", "==" ] ], {} ] ], - "left-054.xht": [ - "de6209cccf33babb0f1a51f75df8140f4dd8fb62", + "first-letter-punctuation-375.xht": [ + "4291c0e10555e32e0ee07b359d70ddc6dfcde75c", [ null, [ [ - "/css/CSS2/positioning/left-004-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-375-ref.xht", "==" ] ], {} ] ], - "left-055.xht": [ - "ba18af79a95428126dc67f2eca5cddb3256324f1", + "first-letter-punctuation-376.xht": [ + "39899ed7e5c6a9acd4077e790005becbe038b79c", [ null, [ [ - "/css/CSS2/reference/ref-black-96px-square-no-red.xht", + "/css/CSS2/selectors/first-letter-punctuation-376-ref.xht", "==" ] ], {} ] ], - "left-056.xht": [ - "fffb510b04fb6c5af3c5dc7a10b153b764fcd7ae", + "first-letter-punctuation-377.xht": [ + "3696d834b3620bd4b6c7ba52d83798c89faef488", [ null, [ [ - "/css/CSS2/reference/ref-black-96px-square-no-red.xht", + "/css/CSS2/selectors/first-letter-punctuation-377-ref.xht", "==" ] ], {} ] ], - "left-064.xht": [ - "dc4f6e623d4bc50aca46cf7b1f470ca335e141f2", + "first-letter-punctuation-378.xht": [ + "9bc85b4d9ceaff6c0ccf7e211018d1d8b78ff175", [ null, [ [ - "/css/CSS2/positioning/left-004-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-378-ref.xht", "==" ] ], {} ] ], - "left-065.xht": [ - "5c9fd644c28fb7813c79008578f7209a403faa08", + "first-letter-punctuation-379.xht": [ + "c52505b5784ad16bb48ba9e4b48c5d84888c6fb9", [ null, [ [ - "/css/CSS2/positioning/left-004-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-379-ref.xht", "==" ] ], {} ] ], - "left-066.xht": [ - "f87772fb95c8a283487e3fbe3778f2d090fa1745", + "first-letter-punctuation-380.xht": [ + "0680a8c905c271c6387c16f711aa31ab75f861e4", [ null, [ [ - "/css/CSS2/positioning/left-004-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-380-ref.xht", "==" ] ], {} ] ], - "left-067.xht": [ - "e73763eb52b28eef3d35ccbb50653b302a18378c", + "first-letter-punctuation-381.xht": [ + "4e92ec0196a5d1ac553195e1bfb811aadc2471af", [ null, [ [ - "/css/CSS2/reference/ref-black-96px-square-no-red.xht", + "/css/CSS2/selectors/first-letter-punctuation-381-ref.xht", "==" ] ], {} ] ], - "left-068.xht": [ - "977f8003529d34361182d62aff4ce2ed53c8bdad", + "first-letter-punctuation-382.xht": [ + "873e1496628ef9f2b213b45b56ae936e7ba8817a", [ null, [ [ - "/css/CSS2/reference/ref-black-96px-square-no-red.xht", + "/css/CSS2/selectors/first-letter-punctuation-382-ref.xht", "==" ] ], {} ] ], - "left-076.xht": [ - "4608fd06bc0759a527fc073174d5a5a287cf59d6", + "first-letter-punctuation-383.xht": [ + "578da84d0b26714eb7db2886ad5e4ab2428fa160", [ null, [ [ - "/css/CSS2/positioning/left-004-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-383-ref.xht", "==" ] ], {} ] ], - "left-077.xht": [ - "0874c82b13132fd2a08ef198c8691a7d942c17fc", + "first-letter-punctuation-384.xht": [ + "74cf8b6e40ea587c20660f99665ed41ead2a2c84", [ null, [ [ - "/css/CSS2/positioning/left-004-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-384-ref.xht", "==" ] ], {} ] ], - "left-078.xht": [ - "cf325459fd906f7efce1bc01a6abba84bcfe74e4", + "first-letter-punctuation-385.xht": [ + "a7cc533d366af1635591c520dba170109e4b5f1b", [ null, [ [ - "/css/CSS2/positioning/left-004-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-385-ref.xht", "==" ] ], {} ] ], - "left-079.xht": [ - "f37cc322906944067797b21c630228a94cd60a3f", + "first-letter-punctuation-386.xht": [ + "0e59afa4ff0c87dc26bdd5b69c2c4ce9943c609e", [ null, [ [ - "/css/CSS2/positioning/left-079-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-386-ref.xht", "==" ] ], {} ] ], - "left-080.xht": [ - "b88389e7ff7efd2c914af91e524b0eae60f15d40", + "first-letter-punctuation-387.xht": [ + "e75fd567a6af4b7e931df3a6ab243ff1c265f5dc", [ null, [ [ - "/css/CSS2/positioning/left-079-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-387-ref.xht", "==" ] ], {} ] ], - "left-088.xht": [ - "7364c57fdffaa8eb56a25f3eab31d9eee5723ea2", + "first-letter-punctuation-388.xht": [ + "19e24082cb49ea7d57699d74af96961666d84193", [ null, [ [ - "/css/CSS2/positioning/left-004-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-388-ref.xht", "==" ] ], {} ] ], - "left-089.xht": [ - "30d440ea6ec6db7265b4c8d90daa23cd86cfc93a", + "first-letter-punctuation-389.xht": [ + "8bbfee937e1521a7c0b93a49fb0a1cd420d5d4c2", [ null, [ [ - "/css/CSS2/positioning/left-004-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-389-ref.xht", "==" ] ], {} ] ], - "left-090.xht": [ - "a0377e69308402b9e93bc45d1f64d6a7c6daa732", + "first-letter-punctuation-390.xht": [ + "5b3f374c8ac62017dadbdd9ef6b4a160c43f5f7f", [ null, [ [ - "/css/CSS2/positioning/left-004-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-390-ref.xht", "==" ] ], {} ] ], - "left-091.xht": [ - "076cfb2544914ecd4585f1b10bae01453829af86", + "first-letter-punctuation-391.xht": [ + "b94c12f85d73ddca65d4d9bbbd92255530e0b40b", [ null, [ [ - "/css/CSS2/reference/ref-black-96px-square-no-red.xht", + "/css/CSS2/selectors/first-letter-punctuation-391-ref.xht", "==" ] ], {} ] ], - "left-092.xht": [ - "012ef26eb0e2e032d5a31d37b9c03b53d70532e2", + "first-letter-punctuation-392.xht": [ + "12d5c0a9249bccc8405c49c3236a5e66303cfd85", [ null, [ [ - "/css/CSS2/reference/ref-black-96px-square-no-red.xht", + "/css/CSS2/selectors/first-letter-punctuation-392-ref.xht", "==" ] ], {} ] ], - "left-100.xht": [ - "be48597d2498dc65d7ef42d52be48456c565b6db", + "first-letter-punctuation-393.xht": [ + "170a4b0fa68825eff7038973bf635dd0e19828bf", [ null, [ [ - "/css/CSS2/positioning/left-004-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-393-ref.xht", "==" ] ], {} ] ], - "left-101.xht": [ - "2e1734dc2f605b779bae2d2beb90ae052010875b", + "first-letter-punctuation-394.xht": [ + "f86439f8ac9bd389210a142b8da5941d998304fa", [ null, [ [ - "/css/CSS2/positioning/left-004-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-394-ref.xht", "==" ] ], {} ] ], - "left-102.xht": [ - "c3d71d622bde08ea47c601005e73cdfee18ccbe3", + "first-letter-punctuation-395.xht": [ + "a1c9d37c0958ac675e7471e12bdc6f0c8616e05f", [ null, [ [ - "/css/CSS2/positioning/left-004-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-395-ref.xht", "==" ] ], {} ] ], - "left-103.xht": [ - "0cfe26108b65ffca443eb2801bcb14af996b8068", + "first-letter-punctuation-396.xht": [ + "1ca69404d9005040957e92ad8ba9bf21e4c7aa9f", [ null, [ [ - "/css/CSS2/reference/ref-black-96px-square-no-red.xht", + "/css/CSS2/selectors/first-letter-punctuation-396-ref.xht", "==" ] ], {} ] ], - "left-104.xht": [ - "ece18045afd20da4b6915327c9426588aef3f1ec", + "first-letter-punctuation-397.xht": [ + "e46490cfdce1ad45d2f2ec19c8a76cc4cfd840de", [ null, [ [ - "/css/CSS2/reference/ref-black-96px-square-no-red.xht", + "/css/CSS2/selectors/first-letter-punctuation-397-ref.xht", "==" ] ], {} ] ], - "left-109.xht": [ - "a2b3738614f60ca895027fdd15b96340933c2f59", + "first-letter-punctuation-398.xht": [ + "f43ddddf240b34ccb9ba5df77cc9a27cfe4ba5c4", [ null, [ [ - "/css/CSS2/positioning/left-004-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-398-ref.xht", "==" ] ], {} ] ], - "left-110.xht": [ - "60cfd186e67414583f14b34863ad9bd89e81cb5f", + "first-letter-punctuation-399.xht": [ + "804307306daf0e344cb6df4e2bb0d53e4c6fdbd8", [ null, [ [ - "/css/CSS2/positioning/left-004-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-399-ref.xht", "==" ] ], {} ] ], - "left-111.xht": [ - "7bfffa2ac14eec77416680020cd5f2fb1b905367", + "first-letter-punctuation-400.xht": [ + "7987af22446edfb8837f034b853487f64dd0fec9", [ null, [ [ - "/css/CSS2/positioning/left-004-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-400-ref.xht", "==" ] ], {} ] ], - "left-112.xht": [ - "758738c6dc29651fb62485e28d4c6fc03bd2d32f", + "first-letter-punctuation-401.xht": [ + "468370e0cd7a95ff20c9d8a3a6fd6d415560971c", [ null, [ [ - "/css/CSS2/positioning/left-004-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-401-ref.xht", "==" ] ], {} ] ], - "left-113.xht": [ - "a27eee6f8d3f10e3ecbd004b17632df1d898ff9b", + "first-letter-punctuation-402.xht": [ + "e803fb0b41697fc4c44516fe77f0852865fb50bd", [ null, [ [ - "/css/CSS2/positioning/left-113-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-402-ref.xht", "==" ] ], {} ] ], - "left-applies-to-001.xht": [ - "160cebc5d3aa8f8a60ba6bdc676bde678032286f", + "first-letter-punctuation-403.xht": [ + "80fe83281e23b8491fbde9cc19598697279940d8", [ null, [ [ - "/css/CSS2/positioning/left-applies-to-001-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-403-ref.xht", "==" ] ], {} ] ], - "left-applies-to-002.xht": [ - "a04d37a206f435eadadac3c80137ad1f9e16deca", + "first-letter-punctuation-404.xht": [ + "67ce216676a7989cf5baa993dec121e45f166395", [ null, [ [ - "/css/CSS2/positioning/left-applies-to-001-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-404-ref.xht", "==" ] ], {} ] ], - "left-applies-to-003.xht": [ - "63c9b19b99acd42151a22bc6396c4346ff2fcb5d", + "first-letter-punctuation-405.xht": [ + "1f09b6b4032f38ca7bea3fa7fe015b3dd17d6913", [ null, [ [ - "/css/CSS2/positioning/left-applies-to-001-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-405-ref.xht", "==" ] ], {} ] ], - "left-applies-to-004.xht": [ - "ca9733a29222d6fbabd082bcbff4dd428b5d79a8", + "first-letter-punctuation-406.xht": [ + "71a8f3f0b5f3280e29b870e5a545537227009fa9", [ null, [ [ - "/css/CSS2/positioning/left-applies-to-001-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-406-ref.xht", "==" ] ], {} ] ], - "left-applies-to-005.xht": [ - "7f987dbe4c716f46f1d25576e60f69f614a662dc", + "first-letter-punctuation-407.xht": [ + "7ac03741dd3c14462df8cbfa9fae3d9579c2d861", [ null, [ [ - "/css/CSS2/positioning/left-applies-to-001-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-407-ref.xht", "==" ] ], {} ] ], - "left-applies-to-006.xht": [ - "5d36bcd8a559f6e1f785767cc3a4dbf8e5395fed", + "first-letter-punctuation-408.xht": [ + "fec44ddc4b51e50158d3a3e98eb7ca83e68ec6ac", [ null, [ [ - "/css/CSS2/positioning/left-applies-to-001-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-408-ref.xht", "==" ] ], {} ] ], - "left-applies-to-007.xht": [ - "56bec1ffec7f790ba2620c0d3b0488e0b6f44f5f", + "first-letter-punctuation-409.xht": [ + "869e7c009cda524ebdc3ed0184cfcdccb01e968e", [ null, [ [ - "/css/CSS2/positioning/left-applies-to-001-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-409-ref.xht", "==" ] ], {} ] ], - "left-applies-to-009.xht": [ - "ba403211acd77813e79ae1edbe04759be8842e70", + "first-letter-punctuation-410.xht": [ + "909fc8817f1175a5710208cf80bdb3e9d86cf040", [ null, [ [ - "/css/CSS2/positioning/left-applies-to-001-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-410-ref.xht", "==" ] ], {} ] ], - "left-applies-to-012.xht": [ - "1ee98e090cd99cbbc7d14c1a755cb069fa6cc3ff", + "first-letter-punctuation-411.xht": [ + "902d37bac51a455810e92bb1240918bc7b7c3736", [ null, [ [ - "/css/CSS2/positioning/left-applies-to-001-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-411-ref.xht", "==" ] ], {} ] ], - "left-applies-to-013.xht": [ - "bfc4c383bbe12df9054733f18735ad760cdaa9b1", + "first-letter-punctuation-412.xht": [ + "2fe316e6a6d5d7af212a1090db9c87df23147e5e", [ null, [ [ - "/css/CSS2/positioning/left-applies-to-001-ref.xht", + "/css/CSS2/selectors/first-letter-punctuation-412-ref.xht", "==" ] ], {} ] ], - "left-applies-to-014.xht": [ - "8eba0cdd1c47ca7edb549837fd36d0cafbadaf3b", + "first-letter-quote-001.xht": [ + "60225a6977654749431a1cc2b5d0d1414bff6569", [ null, [ [ - "/css/CSS2/positioning/left-applies-to-001-ref.xht", + "/css/CSS2/selectors/first-letter-quote-001-ref.xht", "==" ] ], {} ] ], - "left-applies-to-015.xht": [ - "ac799f6b97f2eace0afd4dcb0d1f414c59eb1aa6", + "first-letter-quote-002.xht": [ + "7edb6039f2074e4b9e95c64f9c21f35350dec855", [ null, [ [ - "/css/CSS2/positioning/left-applies-to-001-ref.xht", + "/css/CSS2/selectors/first-letter-quote-001-ref.xht", "==" ] ], {} ] ], - "left-offset-001.xht": [ - "add464c90e804577cadfc54bd148cfb3a61f6b7f", + "first-letter-quote-003.xht": [ + "6effc9696492d82078a12d6461d23168686791c0", [ null, [ [ - "/css/CSS2/positioning/left-offset-001-ref.xht", + "/css/CSS2/selectors/first-letter-quote-001-ref.xht", "==" ] ], {} ] ], - "left-offset-002.xht": [ - "afa4d7951b6958d1e3fb60635ff2d6a178c5eba4", + "first-letter-quote-004.xht": [ + "81b4884f0b8b7211731c89c013cba8cf41b926b2", [ null, [ [ - "/css/CSS2/positioning/left-offset-001-ref.xht", + "/css/CSS2/selectors/first-letter-quote-001-ref.xht", "==" ] ], {} ] ], - "left-offset-003.xht": [ - "8b7f36b75d47e583dac82dd036308835863726ee", + "first-letter-quote-005.xht": [ + "b9a30fac4fffe161b700d16853048fa8b3fb08fc", [ null, [ [ - "/css/CSS2/positioning/left-offset-003-ref.xht", + "/css/CSS2/selectors/first-letter-quote-001-ref.xht", "==" ] ], {} ] ], - "left-offset-percentage-001.xht": [ - "9d3087b695b9c35a6fb6060671a03f567b0283aa", + "first-letter-quote-006.xht": [ + "ecad3107c873613c6b788e3ed6a6770a3df2cada", [ null, [ [ - "/css/CSS2/positioning/left-offset-percentage-001-ref.xht", + "/css/CSS2/selectors/first-letter-quote-001-ref.xht", "==" ] ], {} ] ], - "left-offset-percentage-002.xht": [ - "425d31c30f4916bf26a914aa9fff438dbc2cce62", + "first-letter-selector-000.xht": [ + "0fdef1893b98e56f5134ab2bfb6823cca5eb88c0", [ null, [ [ - "/css/CSS2/positioning/left-offset-percentage-002-ref.xht", + "/css/CSS2/selectors/first-letter-selector-000-ref.html", "==" ] ], {} ] ], - "position-006.xht": [ - "05b2c98cffad9fc76f2d1bba58e8e589f2005aa4", + "first-letter-selector-001.xht": [ + "d62f1aeeea09fc234859e956a6468875d004971a", [ null, [ [ - "/css/CSS2/positioning/position-006-ref.xht", + "/css/CSS2/selectors/first-letter-selector-001-ref.html", "==" ] ], {} ] ], - "position-absolute-001.xht": [ - "f9e4b67371a9544726223c853a74b2b1d4e397f9", + "first-letter-selector-002.xht": [ + "982c64dbc2fc26d1d4ec4f5ec129e49bce59757d", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/selectors/first-letter-selector-002-ref.html", "==" ] ], {} ] ], - "position-absolute-002.xht": [ - "74e78888e1107014983327898cbc417d85d35dfe", + "first-letter-selector-003.xht": [ + "d5d6f4bb8258b55f81890816bc6f70257f1ce186", [ null, [ [ - "/css/CSS2/positioning/position-absolute-002-ref.xht", + "/css/CSS2/selectors/first-letter-selector-003-ref.html", "==" ] ], {} ] ], - "position-absolute-003.xht": [ - "26404d3e7983471c512e21303959fc02f27b316f", + "first-letter-selector-004.xht": [ + "0c8f32fe721fc1596455954c59495ce1311dfb62", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/selectors/first-letter-selector-001-ref.html", "==" ] ], {} ] ], - "position-absolute-004.xht": [ - "a8c73904c051857f124c5ebf8170f70eb4a83098", + "first-letter-selector-005.xht": [ + "32c7d93ea335266c11e374937ce2a2e993a44fe3", [ null, [ [ - "/css/CSS2/positioning/position-absolute-004-ref.xht", + "/css/CSS2/selectors/first-letter-selector-005-ref.html", "==" ] ], {} ] ], - "position-absolute-006.xht": [ - "85b7ae976f903d252295e02029adb558f1b15afa", + "first-letter-selector-007.xht": [ + "4e09d09679788b0ce6c8a4826a6436ddd11d70c7", [ null, [ [ - "/css/CSS2/positioning/position-absolute-004-ref.xht", + "/css/CSS2/selectors/first-letter-selector-007-ref.html", "==" ] ], {} ] ], - "position-absolute-007.xht": [ - "e9ec2a5f168c63667e6801f7ad586350b95f21dd", + "first-letter-selector-008.xht": [ + "a3664bbbef3cbfecf4f9ed994e6cfe9fc54b4ea5", [ null, [ [ - "/css/CSS2/positioning/position-absolute-007-ref.xht", + "/css/CSS2/selectors/first-letter-selector-001-ref.html", "==" ] ], {} ] ], - "position-absolute-008.xht": [ - "73db2f85f3656eb88bfd262adafd4c03597ffb17", + "first-letter-selector-019.xht": [ + "f4ae8bc545061026954bcfa075a4e90f095d9792", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/selectors/first-letter-selector-001-ref.html", "==" ] ], {} ] ], - "position-applies-to-001.xht": [ - "f50512b55800c049f419fbd7e8f3691101615864", + "first-letter-selector-028.xht": [ + "2780fdb8307e4404ea5155e0dc97f2eaf45860d6", [ null, [ [ - "/css/CSS2/positioning/bottom-applies-to-001-ref.xht", + "/css/CSS2/selectors/first-letter-selector-028-ref.xht", "==" ] ], {} ] ], - "position-applies-to-002.xht": [ - "62c7f8036def8baa4b91ee46f06e559f3babdb46", + "first-line-001.xht": [ + "bc0bf1c4eac97bb038f98bb240072a1c8996bbd6", [ null, [ [ - "/css/CSS2/positioning/bottom-applies-to-001-ref.xht", + "/css/CSS2/selectors/first-line-001-ref.xht", "==" ] ], {} ] ], - "position-applies-to-003.xht": [ - "0f77db74cec82c75c97b1f7c1779ecd6a8e28cb4", + "first-line-floats-001.xht": [ + "bdfab881563c2a9acf4607b4e76d13ca6ac71f0f", [ null, [ [ - "/css/CSS2/positioning/bottom-applies-to-001-ref.xht", + "/css/CSS2/selectors/first-line-floats-001-ref.xht", "==" ] ], {} ] ], - "position-applies-to-004.xht": [ - "e71d67df3f50279908cbf47c129f5f3fad4d9f83", + "first-line-floats-002.xht": [ + "827e77d40ee5b665c6107602c838e66b7c3a98b2", [ null, [ [ - "/css/CSS2/positioning/bottom-applies-to-001-ref.xht", + "/css/CSS2/selectors/first-line-floats-001-ref.xht", "==" ] ], {} ] ], - "position-applies-to-005.xht": [ - "b2106b722dfdc04394ec376a44c2a547123f9f5a", + "first-line-floats-003.xht": [ + "fd1e92e1af8c22cb608d651f2843c59476492eca", [ null, [ [ - "/css/CSS2/positioning/bottom-applies-to-001-ref.xht", + "/css/CSS2/selectors/first-line-floats-001-ref.xht", "==" ] ], {} ] ], - "position-applies-to-006.xht": [ - "2e1cb1562fbbbe3d6003b6608af0c1b336829e4b", + "first-line-floats-004.xht": [ + "e80aee2e80b693ff639d2875f929563870f35a52", [ null, [ [ - "/css/CSS2/positioning/bottom-applies-to-001-ref.xht", + "/css/CSS2/selectors/first-line-floats-001-ref.xht", "==" ] ], {} ] ], - "position-applies-to-007.xht": [ - "944e2a82a680bb36f2bb16af2294fb361ec931d7", + "first-line-inherit-001.xht": [ + "99e18fb8f692ba9ccd493b9bbcebf5d913d3a669", [ null, [ [ - "/css/CSS2/positioning/bottom-applies-to-001-ref.xht", + "/css/CSS2/selectors/first-line-inherit-001-ref.xht", "==" ] ], {} ] ], - "position-applies-to-009.xht": [ - "06139270f053fdac569ebf24135f743ab1c5eb67", + "first-line-inherit-002.xht": [ + "41409a60191de65f7c06b58b3d5b1aa29d539eb9", [ null, [ [ - "/css/CSS2/positioning/bottom-applies-to-001-ref.xht", + "/css/CSS2/selectors/first-line-inherit-002-ref.xht", "==" ] ], {} ] ], - "position-applies-to-012.xht": [ - "34206d65bd1dc9d5377e0f1dc9d16397bbda61cf", + "first-line-inherit-003.xht": [ + "856d4a0587cf8a2a739c57839a0ba0e9ff990c71", [ null, [ [ - "/css/CSS2/positioning/bottom-applies-to-001-ref.xht", + "/css/CSS2/selectors/first-line-inherit-003-ref.xht", "==" ] ], {} ] ], - "position-applies-to-013.xht": [ - "0b70b92ba114decfe74d0b40ab39d1fd87c23f92", + "first-line-pseudo-007.xht": [ + "f2837ba7b922ffd82757a3fcaf53bd53a6f1d9a3", [ null, [ [ - "/css/CSS2/positioning/bottom-applies-to-001-ref.xht", + "/css/CSS2/cascade/cascade-012-ref.xht", "==" ] ], {} ] ], - "position-applies-to-014.xht": [ - "c02ce086f921030db7b08f32c2fb8059bfb5e2c1", + "first-line-pseudo-008.xht": [ + "f91937673329ea47c5caa570e2c8f817d1092e86", [ null, [ [ - "/css/CSS2/positioning/bottom-applies-to-001-ref.xht", + "/css/CSS2/cascade/cascade-012-ref.xht", "==" ] ], {} ] ], - "position-applies-to-015.xht": [ - "1a5e69d005a69105a37aec88523a42532a2c86a0", + "first-line-pseudo-012.xht": [ + "4961f50e82a3b1a2f05ba6971a5beb30e1e9691c", [ null, [ [ - "/css/CSS2/positioning/bottom-applies-to-001-ref.xht", + "/css/CSS2/selectors/first-line-pseudo-012-ref.xht", "==" ] ], {} ] ], - "position-fixed-001.xht": [ - "8cb1e847de28f8b346cf83a2f5f19ceb0109811d", + "first-line-pseudo-013.xht": [ + "b8052b55ac438dfa9eb644d1677f9730f2d03f59", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/selectors/first-line-pseudo-013-ref.xht", "==" ] ], {} ] ], - "position-fixed-007.xht": [ - "78c34ccf8401f448b72331f22abf373167ce09fd", + "first-line-pseudo-014.xht": [ + "7df62248c1b09d9a0ad5dc909a5b26e99cacdd30", [ null, [ [ - "/css/CSS2/positioning/position-fixed-007-ref.xht", + "/css/CSS2/selectors/first-line-pseudo-013-ref.xht", "==" ] ], {} ] ], - "position-relative-001.xht": [ - "82cb630197ff7fc6b69fd14997ab4f03905af9b7", + "first-line-pseudo-015.xht": [ + "c41f7763ac44b8a18c536feaf333f790c6622e1b", [ null, [ [ - "/css/CSS2/positioning/position-relative-001-ref.xht", + "/css/CSS2/selectors/first-line-pseudo-015-ref.xht", "==" ] ], {} ] ], - "position-relative-003.xht": [ - "19fdc182f32c582ee2f14218e6fff3a2dfecfeb8", + "first-line-pseudo-016.xht": [ + "3c0a911456d40ce99551c93e21f11ede97ddeb20", [ null, [ [ - "/css/CSS2/positioning/position-relative-003-ref.xht", + "/css/CSS2/selectors/first-line-pseudo-015-ref.xht", "==" ] ], {} ] ], - "position-relative-004.xht": [ - "5e7dfad42633304d9d9712c257db164e49d07760", + "first-line-pseudo-018.xht": [ + "e662ccfcf3c89088cc7ab84df9bbdb9bc756b6b9", [ null, [ [ - "/css/CSS2/positioning/position-relative-004-ref.xht", + "/css/CSS2/reference/ref-this-text-should-be-green.xht", "==" ] ], {} ] ], - "position-relative-005.xht": [ - "6c3097305f60b9a61d90fa6d64ba15a76d9323bd", + "first-line-pseudo-019.xht": [ + "3c29e0383aa01d16687347e89f1f072f7ecd2fba", [ null, [ [ - "/css/CSS2/positioning/position-relative-005-ref.xht", + "/css/CSS2/reference/ref-this-text-should-be-green.xht", "==" ] ], {} ] ], - "position-relative-006.xht": [ - "e239aac182104e4d34d828847cd15eafc236505f", + "first-line-pseudo-020.xht": [ + "d0c8ddcc0f3db6400a022017756d63aa7c43d532", [ null, [ [ - "/css/CSS2/positioning/position-relative-005-ref.xht", + "/css/CSS2/reference/ref-this-text-should-be-green.xht", "==" ] ], {} ] ], - "position-relative-007.xht": [ - "c0fef82a9362b5cccc4697ab6e6df12b01d1731d", + "first-line-pseudo-021.xht": [ + "d071fc000472c4cb16a9b0e349d34f85869c634c", [ null, [ [ - "/css/CSS2/positioning/position-relative-005-ref.xht", + "/css/CSS2/reference/ref-this-text-should-be-green.xht", "==" ] ], {} ] ], - "position-relative-009.xht": [ - "413693cbba0eb6ad7c53c843de88bcdb0bf591c4", + "first-line-selector-004.xht": [ + "8759b830b1df3c7d669b998f4617b0be640b1865", [ null, [ [ - "/css/CSS2/positioning/position-relative-005-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "position-relative-010.xht": [ - "9966bb0093e6cfb13c0835c995a839374132e2c4", + "first-line-selector-010.xht": [ + "2b3f173de31088b0b37a4bf64b6d147fe43bb492", [ null, [ [ - "/css/CSS2/positioning/position-relative-005-ref.xht", + "/css/CSS2/selectors/first-letter-selector-005-ref.html", "==" ] ], {} ] ], - "position-relative-013.xht": [ - "f9bd74aeec1322f7f8f6c778be58b381c782776e", + "first-line-selector-013.xht": [ + "ce1edbc5c9ce4ae081ddeb18056fd12bcfb450e2", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "position-relative-014.xht": [ - "4a563ca84fb2a27303533803b3c8db6c821b62cd", + "grouping-002.xht": [ + "8817411460397c7d797e0042eaf9b508110deafd", [ null, [ [ - "/css/CSS2/positioning/position-relative-014-ref.xht", + "/css/CSS2/selectors/grouping-002-ref.xht", "==" + ], + [ + "/css/CSS2/selectors/grouping-002-notref.xht", + "!=" ] ], {} ] ], - "position-relative-015.xht": [ - "9e86a29cbd4f1f60a7c83d4b738b01c64a74b092", + "html-case-sensitivity-001.html": [ + "d0d7d6db288ad263c925a2ddf911938397a81363", [ null, [ [ - "/css/CSS2/positioning/position-relative-014-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "position-relative-016.xht": [ - "31dd72625b8863f07162be65941040b1e5195005", + "id-selector-001.xht": [ + "29490739b166ede55b3e6f30f2829bca68d5e27b", [ null, [ [ - "/css/CSS2/positioning/position-relative-016-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "position-relative-017.xht": [ - "8d9396b032f9b2a4aa8b2ab6e3293d3ebbe31190", + "id-selector-002.xht": [ + "706e8e84d7fed7f32c3f2f9235f1f049814350f7", [ null, [ [ - "/css/CSS2/positioning/position-relative-014-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "position-relative-018.xht": [ - "b28f6678902fef16a6e4a8c6cd4c9d5da8b5f37e", + "id-selector-004.xht": [ + "66d8c517e81192ce3efd1f51f453290a040ebecb", [ null, [ [ - "/css/CSS2/positioning/position-relative-018-ref.xht", + "/css/CSS2/reference/no-red-filler-text-ref.xht", "==" ] ], {} ] ], - "position-relative-019.xht": [ - "dbd76359c6aeb4484e263c78de772141166b187c", + "id-selector-005.xht": [ + "0e9454cb9e4164ec795a5886f760b8c40ada6b53", [ null, [ [ - "/css/CSS2/positioning/position-relative-014-ref.xht", + "/css/CSS2/reference/no-red-filler-text-ref.xht", "==" ] ], {} ] ], - "position-relative-027.xht": [ - "3b20254fa12dabb0dfaee779a6e7b86f8269175d", + "id-selector-006.xht": [ + "319b63a03dce5fd299c54d80d45f97da31c1ed93", [ null, [ [ - "/css/CSS2/positioning/position-relative-027-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "position-relative-028.xht": [ - "6f2ab355c059a2d1359c8c21b495b81202e4df26", + "lang-selector-001.xht": [ + "8a2c8f165f7c87fdbf36cc3ac7f9d68c892f6a11", [ null, [ [ - "/css/CSS2/positioning/position-relative-028-ref.xht", + "/css/CSS2/selectors/lang-selector-001-ref.xht", "==" ] ], {} ] ], - "position-relative-029.xht": [ - "65254ee063bc2705a1da4b6a9f7fb559500144b6", + "lang-selector-002.xht": [ + "b4568dc564d029498e93ea2579dbd3a2d4c166d9", [ null, [ [ - "/css/CSS2/positioning/position-relative-028-ref.xht", + "/css/CSS2/reference/no-red-filler-text-ref.xht", "==" ] ], {} ] ], - "position-relative-030.xht": [ - "556b81c214f41c6ba2310bfbd5c2fe7b1fc9a14a", + "lang-selector-003.xht": [ + "138c4e1ee500354a4c5f175f4a486f5649afa413", [ null, [ [ - "/css/CSS2/positioning/position-relative-030-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "position-relative-031.xht": [ - "1e63f42bfdd03cf61cf0a4e4e06704bfe6b5a18c", + "lang-selector-004.xht": [ + "8bbfc839602ea8675720fb6d22727483c34a5848", [ null, [ [ - "/css/CSS2/positioning/position-relative-031-ref.xht", + "/css/CSS2/selectors/lang-selector-004-ref.html", "==" ] ], {} ] ], - "position-relative-032.xht": [ - "88cd4557d4a0e04323f93d18c49b189f6b42d078", + "lang-selector-005.xht": [ + "916028cc6b5e0f1e711c6cbd2b6e880c4cf9a8de", [ null, [ [ - "/css/CSS2/positioning/position-relative-032-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "position-relative-033.xht": [ - "23ac5fc3a127b1bb6a09c5b596cb4d77c1c310ae", + "lang-selector-006.xht": [ + "77fb14811ab2f2adae1c2b4ce6883d2d80b9c6b1", [ null, [ [ - "/css/CSS2/positioning/position-relative-033-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "position-relative-035.xht": [ - "b1551b8b003bc2c9b817da3c0527ca35e627d478", + "pseudo-001.xht": [ + "daa3b72712b329af0fff8721a6bd2fc97bf070af", [ null, [ [ - "/css/CSS2/positioning/position-relative-035-ref.xht", + "/css/CSS2/reference/no-red-filler-text-ref.xht", "==" ] ], {} ] ], - "position-relative-037.xht": [ - "42e62580f2588239a62e031491bd28b8807e9be8", + "pseudo-002.xht": [ + "91fc60970405863948191d111735dc3a5126b281", [ null, [ [ - "/css/CSS2/positioning/position-relative-037-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "position-relative-038.xht": [ - "5efd907794e7c9c8c413f49d00b89457c9fac1d8", + "pseudo-006.xht": [ + "b8c3b419ded7c7e345c22140e29528e8632eb43f", [ null, [ [ - "/css/CSS2/positioning/position-relative-038-ref.xht", + "/css/CSS2/selectors/first-letter-selector-001-ref.html", "==" ] ], {} ] ], - "position-relative-nested-001.xht": [ - "5167f3a6fa5ddff6fbf6b7f73a0f896040eef7d1", + "pseudo-007.xht": [ + "4c7df356b2a94405d8735d998d5d21d88260e429", [ null, [ [ - "/css/CSS2/positioning/position-relative-nested-001-ref.xht", + "/css/CSS2/selectors/universal-selector-002-ref.xht", "==" ] ], {} ] ], - "position-static-001.xht": [ - "7a8b3101c8e7b089fcb61a79a6e328e9043f6a0e", + "pseudo-008.xht": [ + "95868e6bf5aae003a0e88df0daf94f0d24db9588", [ null, [ [ - "/css/CSS2/positioning/position-static-001-ref.xht", + "/css/CSS2/selectors/pseudo-008-ref.html", "==" ] ], {} ] ], - "positioning-float-001.xht": [ - "9247d01451b33a3364765531cfb1624cd8bb70fb", + "pseudo-014.xht": [ + "e7d6fc439bac016887764522a8cad1629a2fc5c9", [ null, [ [ - "/css/CSS2/positioning/positioning-float-001-ref.xht", + "/css/CSS2/reference/no-red-filler-text-ref.xht", "==" ] ], {} ] ], - "positioning-float-002.xht": [ - "b5d68fab71b7cbbc400abe3e6976d8dd82f770a7", + "pseudo-015.xht": [ + "e484191ca86bc76729deefc2bbae365b6b2c5904", [ null, [ [ - "/css/CSS2/positioning/positioning-float-002-ref.xht", + "/css/CSS2/reference/no-red-filler-text-ref.xht", "==" ] ], {} ] ], - "relpos-calcs-001.xht": [ - "d109596814d7ad9e0b0fba81a51461875633bdfc", + "pseudo-016.xht": [ + "21b4fb1dbcd91e88a2399df1691cf413d7ea264f", [ null, [ [ - "/css/CSS2/positioning/relpos-calcs-001-ref.xht", + "/css/CSS2/reference/no-red-filler-text-ref.xht", "==" ] ], {} ] ], - "relpos-calcs-002.xht": [ - "70254b8a957b770406efeba1aebba6db82d77658", + "selectors-001.xht": [ + "68f462e2882b0e4cf98b5fb0925adb4f90cec8ec", [ null, [ [ - "/css/CSS2/positioning/relpos-calcs-001-ref.xht", + "/css/CSS2/selectors/selectors-001-ref.xht", "==" ] ], {} ] ], - "relpos-calcs-003.xht": [ - "64d272ef57316914e4c3010451b959f05cd3a3d3", + "selectors-002.xht": [ + "7255fde461203130a1517089dc165d388720841d", [ null, [ [ - "/css/CSS2/positioning/relpos-calcs-001-ref.xht", + "/css/CSS2/selectors/selectors-002-ref.xht", "==" ] ], {} ] ], - "relpos-calcs-004.xht": [ - "ffa615710b34c778ced30afc8880b9a63aea3044", + "selectors-parsing-001.xht": [ + "f9864d1d627780c72196468b370e575c748a0fe0", [ null, [ [ - "/css/CSS2/positioning/relpos-calcs-001-ref.xht", + "/css/CSS2/selectors/selectors-parsing-001-ref.xht", "==" ] ], {} ] ], - "relpos-calcs-005.xht": [ - "b025d22366af4f5f72ab73af2fc3bb571b39f98d", + "sibling-selector-001.xht": [ + "bee2a6ad41c4a7a13282ecc24b5a0b551e8b40ee", [ null, [ [ - "/css/CSS2/positioning/relpos-calcs-001-ref.xht", + "/css/CSS2/selectors/sibling-selector-001-ref.xht", "==" ] ], {} ] ], - "relpos-calcs-006.xht": [ - "5f56e5a49736b6c0ad4f7171ed1da6de57a28126", + "sibling-selector-002.xht": [ + "296a872fdd13e3ff173894bc3cdea52880425dd1", [ null, [ [ - "/css/CSS2/positioning/relpos-calcs-001-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "relpos-calcs-007.xht": [ - "075f7c647d5a2389d380d8dd0da20b4b66130426", + "sibling-selector-003.xht": [ + "16b790ef8835de3673f8a0e93464c4b5c73082a0", [ null, [ [ - "/css/CSS2/positioning/relpos-calcs-001-ref.xht", + "/css/CSS2/selectors/sibling-selector-003-ref.xht", "==" ] ], {} ] ], - "right-004.xht": [ - "26c42ef8b92392ba9a434f3096115c97f144d458", + "type-selector-001.xht": [ + "a3e3419b9592cb176313ee2f1b45b7a4dd5d355a", [ null, [ [ - "/css/CSS2/positioning/right-004-ref.xht", + "/css/CSS2/selectors/type-selector-001-ref.xht", "==" ] ], {} ] ], - "right-005.xht": [ - "58e066c011e396a89ce4d48fc17133e46c82ae05", + "universal-selector-001.xht": [ + "dda83a2dca7a9753d01e146dd8f57e7f2b344bbb", [ null, [ [ - "/css/CSS2/positioning/right-004-ref.xht", + "/css/CSS2/selectors/universal-selector-001-ref.xht", "==" + ], + [ + "/css/CSS2/selectors/universal-selector-001-notref.xht", + "!=" ] ], {} ] ], - "right-006.xht": [ - "5ea8caab07ceebb531da83d2c3ceb25f19bd0c23", + "universal-selector-002.xht": [ + "27150387a4a2874f105a4ca977c056a3db69461e", [ null, [ [ - "/css/CSS2/positioning/right-004-ref.xht", + "/css/CSS2/selectors/universal-selector-002-ref.xht", "==" + ], + [ + "/css/CSS2/selectors/universal-selector-002-notref.xht", + "!=" ] ], {} ] ], - "right-007.xht": [ - "5f3160ed68529ed49ebf970dea532ebdc2ac68c9", + "universal-selector-003.xht": [ + "50ab88948a213ae6f8f8d9f811fc53fc197a9010", [ null, [ [ - "/css/CSS2/positioning/right-007-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "right-008.xht": [ - "c1e176a4192f7ec40bd445ba48e8aea247514621", + "universal-selector-004.xht": [ + "82da04eeb11b77fa95bee2ffcb3b24a8730b7a2a", [ null, [ [ - "/css/CSS2/positioning/right-007-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "right-016.xht": [ - "b1eb09197d938d7d43dfdc692d0995a9c0ec56e7", + "universal-selector-005.xht": [ + "1946e4f25e483b384e55e75cae4a1cd2da2c4cfa", [ null, [ [ - "/css/CSS2/positioning/right-004-ref.xht", + "/css/CSS2/selectors/universal-selector-005-ref.xht", "==" ] ], {} ] - ], - "right-017.xht": [ - "47299db63d5408c019f75ee981cfca7c0c559e2e", + ] + }, + "stacking-context": { + "composite-change-after-scroll-preserves-stacking-order.html": [ + "1abf6f292ea654f28cf9082d0d89623304a12a74", [ null, [ [ - "/css/CSS2/positioning/right-004-ref.xht", + "/css/CSS2/stacking-context/composite-change-after-scroll-preserves-stacking-order-ref.html", "==" ] ], {} ] ], - "right-018.xht": [ - "556bfb68f5bd3cd90d24b3890d2eb0048111ea8d", + "opacity-affects-block-in-inline.html": [ + "340ca185d9e41639be65d61b9e1aa87adf44750a", [ null, [ [ - "/css/CSS2/positioning/right-004-ref.xht", + "/css/CSS2/stacking-context/opacity-affects-block-in-inline-ref.html", "==" ] ], {} ] ], - "right-019.xht": [ - "a610a79b5920eff30b638230ba79ccc720fb7adf", + "opacity-change-parent-stacking-context.html": [ + "e58bf47c2f8fd903cf738439862ee260329505d0", [ null, [ [ - "/css/CSS2/positioning/right-019-ref.xht", + "/css/CSS2/stacking-context/opacity-change-parent-stacking-context-ref.html", "==" ] ], {} ] ], - "right-020.xht": [ - "ee15a14cc724a90230bfcab81c5d2e542bfa5db7", + "opacity-change-twice-stacking-context.html": [ + "c3c680c68fad38f55a809f144867cb3fd285db9d", [ null, [ [ - "/css/CSS2/positioning/right-019-ref.xht", + "/css/CSS2/stacking-context/opacity-change-twice-stacking-context-ref.html", "==" ] ], {} ] ], - "right-028.xht": [ - "5b31bb315f7bc3ca5fd3e69b85ea064d05642848", + "opacity-transition-change-parent-stacking-context.html": [ + "c163a4c7e66b6254de444d0b098d70854316f637", [ null, [ [ - "/css/CSS2/positioning/right-004-ref.xht", + "/css/CSS2/stacking-context/opacity-transition-change-parent-stacking-context-ref.html", "==" ] ], {} ] ], - "right-029.xht": [ - "44977cd899414827681e5462e3aafc155854a336", + "zindex-affects-block-in-inline.html": [ + "5a5c9e3dcca6171910f85790e13dc754acda58e0", [ null, [ [ - "/css/CSS2/positioning/right-004-ref.xht", + "/css/CSS2/stacking-context/zindex-affects-block-in-inline-ref.html", "==" ] ], {} ] - ], - "right-030.xht": [ - "1fcce3dbeac69a29548a7d8c98d9359f974bbe8b", + ] + }, + "syntax": { + "at-charset-001.xht": [ + "06642b8f5dab55fb0ddfabdeb4304e9ab0b361b1", [ null, [ [ - "/css/CSS2/positioning/right-004-ref.xht", + "/css/CSS2/syntax/at-charset-001-ref.xht", "==" ] ], {} ] ], - "right-031.xht": [ - "88fc6e3746e1bf62c3be889c6145e5a6614dd37e", + "at-charset-002.xht": [ + "5db020d1e0a189f41f68d4a7a65c3a3c5f04e446", [ null, [ [ - "/css/CSS2/positioning/right-031-ref.xht", + "/css/CSS2/syntax/at-charset-001-ref.xht", "==" ] ], {} ] ], - "right-032.xht": [ - "205c72803327750d2059f6843e8c83c021dd17e8", + "at-charset-003.xht": [ + "d2b0ad7af2b840aa57a9a024949e0709bf59e93c", [ null, [ [ - "/css/CSS2/positioning/right-031-ref.xht", + "/css/CSS2/syntax/at-charset-001-ref.xht", "==" ] ], {} ] ], - "right-040.xht": [ - "e203cd04f1c4a2c0aa8e58e68a4f5a2b543ccd69", + "at-charset-004.xht": [ + "6d23331e954a0652cfa7f109b2f1305f64668b50", [ null, [ [ - "/css/CSS2/positioning/right-004-ref.xht", + "/css/CSS2/syntax/at-charset-001-ref.xht", "==" ] ], {} ] ], - "right-041.xht": [ - "8db581b5ebb3ccdda913d4526ff4976ba314bd44", + "at-charset-005.xht": [ + "d76f64f6505fe7515cd11a915dbf8961d218c3d0", [ null, [ [ - "/css/CSS2/positioning/right-004-ref.xht", + "/css/CSS2/syntax/at-charset-001-ref.xht", "==" ] ], {} ] ], - "right-042.xht": [ - "8195daa08a096967224bd691728f912372dffa79", + "at-charset-006.xht": [ + "d78b378b1a97591bffc9181cf184b69e6ffe5092", [ null, [ [ - "/css/CSS2/positioning/right-004-ref.xht", + "/css/CSS2/syntax/at-charset-001-ref.xht", "==" ] ], {} ] ], - "right-043.xht": [ - "5b7ff274082034980d4b2dba22c5e7c44076a7b0", + "at-charset-007.xht": [ + "06e2b3592f4a4376d72c522f65fe38e378c0a97d", [ null, [ [ - "/css/CSS2/positioning/right-019-ref.xht", + "/css/CSS2/syntax/at-charset-001-ref.xht", "==" ] ], {} ] ], - "right-044.xht": [ - "9d7a340585739049ce8326c7afb919992a6557f2", + "at-charset-008.xht": [ + "5419cd181efffad4f53e0d2bd8f77ffdb7339de0", [ null, [ [ - "/css/CSS2/positioning/right-019-ref.xht", + "/css/CSS2/syntax/at-charset-001-ref.xht", "==" ] ], {} ] ], - "right-052.xht": [ - "c7879e4c34b4f45cef038bd77ee13967798d8bf9", + "at-charset-009.xht": [ + "21b9c5003133421f154085c88a03fec4f244486b", [ null, [ [ - "/css/CSS2/positioning/right-004-ref.xht", + "/css/CSS2/syntax/at-charset-001-ref.xht", "==" ] ], {} ] ], - "right-053.xht": [ - "02ccbc48f8c1c575eaf322dca2feb89ac93a067e", + "at-charset-010.xht": [ + "5f0b323407a92f9190435c753736d1e2980e29f9", [ null, [ [ - "/css/CSS2/positioning/right-004-ref.xht", + "/css/CSS2/syntax/at-charset-001-ref.xht", "==" ] ], {} ] ], - "right-054.xht": [ - "68af477d7ce74cad30661a4acb2c28976afe565a", + "at-charset-011.xht": [ + "6581c75ae0659885b3dd356a98927d8ac0d31e4e", [ null, [ [ - "/css/CSS2/positioning/right-004-ref.xht", + "/css/CSS2/syntax/at-charset-001-ref.xht", "==" ] ], {} ] ], - "right-055.xht": [ - "57781a9b607b150b18ddf6d159089c9301c1c764", + "at-charset-012.xht": [ + "46d24904c20b4449d2f881e9266abe3607541357", [ null, [ [ - "/css/CSS2/positioning/right-019-ref.xht", + "/css/CSS2/syntax/at-charset-001-ref.xht", "==" ] ], {} ] ], - "right-056.xht": [ - "6fc1acb8ce0b02dc6581391ebf8c20eb5719b31d", + "at-charset-014.xht": [ + "346985de43b147ee17eba824f2dab0b945535135", [ null, [ [ - "/css/CSS2/positioning/right-019-ref.xht", + "/css/CSS2/syntax/at-charset-001-ref.xht", "==" ] ], {} ] ], - "right-064.xht": [ - "3c5767254dff0ca38508ef313354f4a0b32717d6", + "at-charset-015.xht": [ + "c6703f9486854cfc2a122822093d1423aa99f49d", [ null, [ [ - "/css/CSS2/positioning/right-004-ref.xht", + "/css/CSS2/syntax/at-charset-001-ref.xht", "==" ] ], {} ] ], - "right-065.xht": [ - "dfd632821c300379290d2242b743055130faa2af", + "at-charset-016.xht": [ + "655cc7f1946d9a16bdb559f517dd8ce8c52f14f1", [ null, [ [ - "/css/CSS2/positioning/right-004-ref.xht", + "/css/CSS2/syntax/at-charset-001-ref.xht", "==" ] ], {} ] ], - "right-066.xht": [ - "115f6191343795b58d68586d6d7e07d0c1ec583d", + "at-charset-019.xht": [ + "61a71107b4edfbcd88e51d726f915d201a25a8ca", [ null, [ [ - "/css/CSS2/positioning/right-004-ref.xht", + "/css/CSS2/syntax/at-charset-001-ref.xht", "==" ] ], {} ] ], - "right-067.xht": [ - "f86054de9c6e26f89e91dee58efbe12b10a90202", + "at-charset-020.xht": [ + "1a80f92b68717d628d27063a01f714a87cee7259", [ null, [ [ - "/css/CSS2/positioning/right-019-ref.xht", + "/css/CSS2/syntax/at-charset-001-ref.xht", "==" ] ], {} ] ], - "right-068.xht": [ - "b2cb8f7b519807d6cf6860052d44927af2004657", + "at-charset-021.xht": [ + "ef88ad13e54c7cf961b9d6279b39e11b47fb52ec", [ null, [ [ - "/css/CSS2/positioning/right-019-ref.xht", + "/css/CSS2/syntax/at-charset-001-ref.xht", "==" ] ], {} ] ], - "right-076.xht": [ - "82b8e3207b572df8bca5d03e1553053178741dcf", + "at-charset-024.xht": [ + "489d4b9402fc1f8c830f1364a53d36373e3ec591", [ null, [ [ - "/css/CSS2/positioning/right-004-ref.xht", + "/css/CSS2/syntax/at-charset-001-ref.xht", "==" ] ], {} ] ], - "right-077.xht": [ - "9fd67b79e510531992ecda6609cc07ab76e3988d", + "at-charset-025.xht": [ + "e49976f75cc9b04768e1a94cdd36e5eb16e2a047", [ null, [ [ - "/css/CSS2/positioning/right-004-ref.xht", + "/css/CSS2/syntax/at-charset-001-ref.xht", "==" ] ], {} ] ], - "right-078.xht": [ - "fe3eeaf17004730a463ddee52b52c42ac912bad8", + "at-charset-026.xht": [ + "ef4feb23ca774f918705c23ed9668dabf75fd0a8", [ null, [ [ - "/css/CSS2/positioning/right-004-ref.xht", + "/css/CSS2/syntax/at-charset-001-ref.xht", "==" ] ], {} ] ], - "right-079.xht": [ - "f8c889f3d624809c924213153bbebdb3f3f71c68", + "at-charset-027.xht": [ + "ed77f05c11e7100d6a930bd3ef1d77ab49236b55", [ null, [ [ - "/css/CSS2/positioning/right-079-ref.xht", + "/css/CSS2/syntax/at-charset-001-ref.xht", "==" ] ], {} ] ], - "right-080.xht": [ - "4ca68803624eb61ea7e5d3f8c9366c79b7dafb13", + "at-charset-028.xht": [ + "01ff31631de9d806bc3a5b11054d302c3e9c6de1", [ null, [ [ - "/css/CSS2/positioning/right-079-ref.xht", + "/css/CSS2/syntax/at-charset-001-ref.xht", "==" ] ], {} ] ], - "right-088.xht": [ - "91afec1ea9555f334b39762fe8d49f3c7b3710eb", + "at-charset-029.xht": [ + "95277f8adef6619e9a42c4f1c5bbaed906e950a8", [ null, [ [ - "/css/CSS2/positioning/right-004-ref.xht", + "/css/CSS2/syntax/at-charset-001-ref.xht", "==" ] ], {} ] ], - "right-089.xht": [ - "bb353dcab881631fe6a867587873a8c2e32ee4dc", + "at-charset-030.xht": [ + "d6e34b936162671dd0ddc0f5cf43ada126b3061f", [ null, [ [ - "/css/CSS2/positioning/right-004-ref.xht", + "/css/CSS2/syntax/at-charset-001-ref.xht", "==" ] ], {} ] ], - "right-090.xht": [ - "3c95492c7f04be9ab8ad3b7f95b7029399559639", + "at-charset-033.xht": [ + "b8a4fdf94046b2c36a298fbb54e0fe7dfe734613", [ null, [ [ - "/css/CSS2/positioning/right-004-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "right-091.xht": [ - "f5f69240f53e97ebab499675706c149533110e54", + "at-charset-034.xht": [ + "c11ab57c1d1eabc8b02e5d6e623da5af93df1374", [ null, [ [ - "/css/CSS2/positioning/right-019-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "right-092.xht": [ - "f193c96112bc6398018652e7e3295309e242ce41", + "at-charset-035.xht": [ + "28b7c1f59db92a95cf09f9348432d4c6cdd06868", [ null, [ [ - "/css/CSS2/positioning/right-019-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "right-100.xht": [ - "994780988b569c5a8aae42eccd37d04f8df3445d", + "at-charset-036.xht": [ + "40f044d0d02323a6a3b7d8fb300e60e85b73c781", [ null, [ [ - "/css/CSS2/positioning/right-100-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "right-101.xht": [ - "3d929c9627f38b3eff19ec7d34a408c6b3bd77f9", + "at-charset-037.xht": [ + "58f62e03be9e869e35b702767e0d5da62794b193", [ null, [ [ - "/css/CSS2/positioning/right-100-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "right-102.xht": [ - "f1131481049666e64a7ff740f9e5152ac652ad1a", + "at-charset-038.xht": [ + "7556ce4c9f3b9cfc8ebb2d257fb768a9b4af5cd5", [ null, [ [ - "/css/CSS2/positioning/right-100-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "right-103.xht": [ - "691dd3f23c676a23af7cb7db4f04f017029890b3", + "at-charset-039.xht": [ + "b9ebae743cc7b4e75eeb158fc8ac9d2dd177556a", [ null, [ [ - "/css/CSS2/positioning/right-103-ref.xht", + "/css/CSS2/syntax/at-charset-039-ref.xht", "==" ] ], {} ] ], - "right-104.xht": [ - "369a68be289cedf596397d4f957a549616c9baf0", + "at-charset-040.xht": [ + "0847080811e0b5993787695440e70ef1729cb368", [ null, [ [ - "/css/CSS2/positioning/right-103-ref.xht", + "/css/CSS2/syntax/at-charset-001-ref.xht", "==" ] ], {} ] ], - "right-109.xht": [ - "b3af32c7d0e0f23c6cc48518aefeaae5e1161a1b", + "at-charset-041.xht": [ + "9a2fb8f8b4db21deb5a5d15e49f04686e163047d", [ null, [ [ - "/css/CSS2/positioning/right-004-ref.xht", + "/css/CSS2/syntax/at-charset-001-ref.xht", "==" ] ], {} ] ], - "right-110.xht": [ - "665fe13d3adf044d479516e3efbd535c690fcb3f", + "at-charset-042.xht": [ + "6dcf764df08717199aa8305f354fecfaafaa1d88", [ null, [ [ - "/css/CSS2/positioning/right-004-ref.xht", + "/css/CSS2/syntax/at-charset-001-ref.xht", "==" ] ], {} ] ], - "right-111.xht": [ - "9e7b3e52891cda46f16b00708c95629537fe3210", + "at-charset-043.xht": [ + "8619e855c04d232d7c44eca32288742cc28e1db1", [ null, [ [ - "/css/CSS2/positioning/right-004-ref.xht", + "/css/CSS2/syntax/at-charset-001-ref.xht", "==" ] ], {} ] ], - "right-112.xht": [ - "20d74d910b17331481e0fd25655ef69a706a9b80", + "at-charset-044.xht": [ + "f752cecbb3f14dad3fb892e639a70ec8118cd133", [ null, [ [ - "/css/CSS2/positioning/right-004-ref.xht", + "/css/CSS2/syntax/at-charset-001-ref.xht", "==" ] ], {} ] ], - "right-113.xht": [ - "338de0f59ae0ff04b9774591838326ff9596e397", + "at-charset-045.xht": [ + "13fc471c83ba473b2b26cbe41c80d7b650898d1f", [ null, [ [ - "/css/CSS2/positioning/right-103-ref.xht", + "/css/CSS2/syntax/at-charset-001-ref.xht", "==" ] ], {} ] ], - "right-applies-to-001.xht": [ - "fb790ba7c94a939542f58ca09914a91ff0d86434", + "at-charset-046.xht": [ + "aaa58b59cd85c4af62e5f92ddd556787d4bb48d6", [ null, [ [ - "/css/CSS2/positioning/right-applies-to-001-ref.xht", + "/css/CSS2/syntax/at-charset-001-ref.xht", "==" ] ], {} ] ], - "right-applies-to-002.xht": [ - "964cb2a6f06f5df0845990498c534543a40174cd", + "at-charset-047.xht": [ + "ec5d204276d10192edbb35c8c822589b14b818f1", [ null, [ [ - "/css/CSS2/positioning/right-applies-to-001-ref.xht", + "/css/CSS2/syntax/at-charset-001-ref.xht", "==" ] ], {} ] ], - "right-applies-to-003.xht": [ - "405a3c80d94523bbbf5e3bc0f4c28cce32d3aecf", + "at-charset-048.xht": [ + "e774180f3402078eeaacf110f041119678bd9a94", [ null, [ [ - "/css/CSS2/positioning/right-applies-to-001-ref.xht", + "/css/CSS2/syntax/at-charset-001-ref.xht", "==" ] ], {} ] ], - "right-applies-to-004.xht": [ - "dd12aa6ab5b59e1fc3d7b1709452c6496b4a1c2c", + "at-charset-049.xht": [ + "d7f37af5c7bac2adc35ceb91f65a8f2fce2443a4", [ null, [ [ - "/css/CSS2/positioning/right-applies-to-001-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "right-applies-to-005.xht": [ - "926f231fb2b6b6c0b85126b51c7f7ecbc73aa81f", + "at-charset-050.xht": [ + "fe21a1f9e679d7473f8523233fc5381c70c04816", [ null, [ [ - "/css/CSS2/positioning/right-applies-to-001-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "right-applies-to-006.xht": [ - "4ba5f2f013a43ff2209160bf300b68646e64a04b", + "at-charset-051.xht": [ + "a5a72198b29a96b6b327b85e471c826883ac268c", [ null, [ [ - "/css/CSS2/positioning/right-applies-to-001-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "right-applies-to-007.xht": [ - "ff53c752f5e2e729d65400467d086e77efe6a94b", + "at-charset-052.xht": [ + "8e4a48b7a85fa485afc36cfc9c74e76196e0da2a", [ null, [ [ - "/css/CSS2/positioning/right-applies-to-001-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "right-applies-to-009.xht": [ - "37c6ae965ef37a7681254b81d34e041cba819a15", + "at-charset-053.xht": [ + "54865d974c5f25ce6f6abdcadf2149c8701f2b02", [ null, [ [ - "/css/CSS2/positioning/right-applies-to-001-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "right-applies-to-012.xht": [ - "cd8c5043b2b99461b513dd99ebf3dc2bed47d1e8", + "at-charset-054.xht": [ + "7532e4646097cc98905711eff2120dd98113ad04", [ null, [ [ - "/css/CSS2/positioning/right-applies-to-001-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "right-applies-to-013.xht": [ - "e2da8df8578a79e4f02f424ece9ea89f4c2dd142", + "at-charset-055.xht": [ + "434909168564a11235ae5e97dfa59c8e5e74d9df", [ null, [ [ - "/css/CSS2/positioning/right-applies-to-001-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "right-applies-to-014.xht": [ - "2094bb046d881a1aa65d2e6664173b9e708c5867", + "at-charset-056.xht": [ + "2dd8282b8fdac6e2397ae1dd79a27681c9b8d254", [ null, [ [ - "/css/CSS2/positioning/right-applies-to-001-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "right-applies-to-015.xht": [ - "a2f2deb7837e89a8861761841ed3b9670dd27a9b", + "at-charset-057.xht": [ + "5dfe9151460c9736c6afbf594953485de0884d22", [ null, [ [ - "/css/CSS2/positioning/right-applies-to-001-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "right-offset-001.xht": [ - "fb04ce88bf2291341eeb25016d8e5953bf6de723", + "at-charset-058.xht": [ + "5eb0e38576b1f1d80cc346cf91b8999b55e109c3", [ null, [ [ - "/css/CSS2/positioning/right-offset-001-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "right-offset-002.xht": [ - "7a52e9a5d35032e67e9069e9f5ae0cc729a61938", + "at-charset-059.xht": [ + "99dffe105bea42e0a8274d9d9c9d12152ce9c248", [ null, [ [ - "/css/CSS2/positioning/left-offset-001-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "right-offset-003.xht": [ - "afb12098f6f4b14fd09d3c089fce95ad6ea6526c", + "at-charset-060.xht": [ + "bfdaa966a01b4af0adf9568a0bf6f15a6a768b97", [ null, [ [ - "/css/CSS2/positioning/right-offset-001-ref.xht", + "/css/CSS2/syntax/at-charset-001-ref.xht", "==" ] ], {} ] ], - "right-offset-004.xht": [ - "f6d3273577495da214fb4822c2a7982dbebb30a5", + "at-charset-061.xht": [ + "f4d05f0e0b15d976a51f2c30f75ef4cdb0b067c9", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "right-offset-percentage-001.xht": [ - "99b1c949387b2003ab1e32ef18cd280aa550a659", + "at-charset-071.xht": [ + "5bc5ae7e81621a172337902fe69a3d38bc343e3c", [ null, [ [ - "/css/CSS2/positioning/right-offset-percentage-001-ref.xht", + "/css/CSS2/reference/ref-green-background.xht", "==" ] ], {} ] ], - "toogle-abspos-on-relpos-inline-child.html": [ - "7ea2a25bf5d79aa4f2195b243831681efc2867c4", + "at-charset-072.xht": [ + "569c95933b7a0144d0a74103e71ffb55a070510d", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/reference/ref-green-background.xht", "==" ] ], {} ] ], - "top-004.xht": [ - "119489dd617d0e47e3b14227787d8aa6ea9db9d7", + "at-charset-073.xht": [ + "ca07642818f9472ed0acf380f2ad865d6891b34b", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/reference/ref-green-background.xht", "==" ] ], {} ] ], - "top-005.xht": [ - "68a860ae1521d92df574cbb7721957e04894b508", + "at-charset-074.xht": [ + "bc18d2fe442bd25785714fde8147fe721825cff2", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/reference/ref-green-background.xht", "==" ] ], {} ] ], - "top-006.xht": [ - "151a05646a18168b997ffe63bb4609f327fe9399", + "at-charset-075.xht": [ + "0fbc3d3f6ca85bc6960ec1dcd65c106aa1c3bc6f", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/reference/ref-green-background.xht", "==" ] ], {} ] ], - "top-007.xht": [ - "8ced33f292b25943bf8fa331a115d8d1e1c49b77", + "at-charset-076.xht": [ + "ec50107b434c105cbcddd4431aea70f45c6aebc7", [ null, [ [ - "/css/CSS2/positioning/top-007-ref.xht", + "/css/CSS2/reference/ref-green-background.xht", "==" ] ], {} ] ], - "top-008.xht": [ - "86b56e7b3a78cb46e8a7a64cc6fd6f894a040304", + "at-charset-077.xht": [ + "0be14e1f2315875ecac6e1f03e6fde9ec720b79f", [ null, [ [ - "/css/CSS2/positioning/top-007-ref.xht", + "/css/CSS2/reference/ref-green-background.xht", "==" ] ], {} ] ], - "top-016.xht": [ - "ac139d7e5555e9adee49c7e9dfd758629cb26e81", + "at-charset-quotes-001.xht": [ + "db4ab67c3da2573795a038b5be3e3fbc43484f03", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/syntax/at-charset-ref.xht", "==" ] ], {} ] ], - "top-017.xht": [ - "7a1a32584a56d7c80b7d419828751285ed9b765f", + "at-charset-space-001.xht": [ + "3d42fd86b448c807452f4d25ca42b1e1dd74eda0", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/syntax/at-charset-ref.xht", "==" ] ], {} ] ], - "top-018.xht": [ - "7ce2bc39c28954bab8234993a12b4904fec75e18", + "at-charset-space-002.xht": [ + "64f19bc056171635850e1fe8fa5606f1964e57b8", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/syntax/at-charset-ref.xht", "==" ] ], {} ] ], - "top-019.xht": [ - "15506da7f0c7e3028854fc7a5c26b04d6a62c4dd", + "at-charset-utf16-be-001.xht": [ + "7e47343e62fb62a52439fcf6363b746416c94856", [ null, [ [ - "/css/CSS2/positioning/top-019-ref.xht", + "/css/CSS2/syntax/at-charset-ref.xht", "==" ] ], {} ] ], - "top-020.xht": [ - "256fbc54b5d654aea6d5995949015dfcba267f4e", + "at-charset-utf16-be-002.xht": [ + "98649a68ec1d9e81e06efb4712a89703e25604b1", [ null, [ [ - "/css/CSS2/positioning/top-019-ref.xht", + "/css/CSS2/syntax/at-charset-ref.xht", "==" ] ], {} ] ], - "top-028.xht": [ - "2b0536611a3426f102ab30f0e0cf48cd85f5915b", + "at-charset-utf16-be-003.xht": [ + "33eb27aef9327d451489854b871eff38f005fc6e", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/syntax/at-charset-ref.xht", "==" ] ], {} ] ], - "top-029.xht": [ - "b60a869252e416e704db2bcdd88dd984eaa000f4", + "at-charset-utf16-le-001.xht": [ + "122c9dc63ac0260b9be526c1ef79bd0e39540d36", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/syntax/at-charset-ref.xht", "==" ] ], {} ] ], - "top-030.xht": [ - "15631f3553c0603891269013fd47915ae0b2ebf9", + "at-charset-utf16-le-002.xht": [ + "abbd62fb74b07ef601671a652955ec6cac51b2d0", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/syntax/at-charset-ref.xht", "==" ] ], {} ] ], - "top-031.xht": [ - "12d99cbd297eeb12d3b5bd9aca2d3e6b088f7327", + "at-charset-utf16-le-003.xht": [ + "4b20d437726114c83a717a72132a29938bf8302e", [ null, [ [ - "/css/CSS2/positioning/top-007-ref.xht", + "/css/CSS2/syntax/at-charset-ref.xht", "==" ] ], {} ] ], - "top-032.xht": [ - "b83dacb01b2025868f8ed012113f7e0015cb7830", + "at-keywords-000.xht": [ + "33dec42708c388f15b98c68410cf680f2130b88a", [ null, [ [ - "/css/CSS2/positioning/top-007-ref.xht", + "/css/CSS2/reference/ref-this-text-should-be-green.xht", "==" ] ], {} ] ], - "top-040.xht": [ - "55037242ce4b8a58f6aee99420bf14e81df53321", + "at-keywords-001.xht": [ + "104fe6999589a8275b4f44198ad0f85d204b9f2e", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/reference/ref-this-text-should-be-green.xht", "==" ] ], {} ] ], - "top-041.xht": [ - "8979cd19a0dc937e4c5462ab7e3bfb0a1797b2b5", + "at-keywords-002.xht": [ + "f3a83635fe32998e62e2e09b678dcee50d672388", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/reference/ref-this-text-should-be-green.xht", "==" ] ], {} ] ], - "top-042.xht": [ - "9f8c5f615ff027003ac69b6c667cd1fc509a4233", + "at-rule-001.xht": [ + "b45449d7c187c0ab8e3addde7f761c66151ff1fe", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "top-043.xht": [ - "3321f6c8fb5908b7544dc3f91e0b6f52513f3e44", + "at-rule-002.xht": [ + "1810d73f8049e29953d5118fba805c413d24c744", [ null, [ [ - "/css/CSS2/positioning/top-019-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "top-044.xht": [ - "8f2768606c8260ae6eda5ecb4e5354b3019d970f", + "at-rule-003.xht": [ + "fee6163801300475fd66237a1384162430b89cdf", [ null, [ [ - "/css/CSS2/positioning/top-019-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "top-052.xht": [ - "756c0fad7da64ac4d2cbc30ecb021cebb2833f96", + "at-rule-004.xht": [ + "dc8e72289fc33ece4abab88ac1dc684f4aa37694", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/reference/no-red-filler-text-ref.xht", "==" ] ], {} ] ], - "top-053.xht": [ - "d62821b134b13c7083707352d47fb0a1ca6dfaae", + "at-rule-005.xht": [ + "975a7bf7fa89afa961f5ea8d45c28517e16440e1", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "top-054.xht": [ - "4203a76826cbd440a4e84b410ffd7af8338a89c6", + "at-rule-006.xht": [ + "7864b2ef1bb1687736f5b22c4a3b95c415af4d1f", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "top-055.xht": [ - "86a369c6065a2331f15254d71c5be339347d1671", + "at-rule-007.xht": [ + "cc096841a8450d53b5f118246f7b2e8a5f52051c", [ null, [ [ - "/css/CSS2/positioning/top-019-ref.xht", + "/css/CSS2/reference/no-red-filler-text-ref.xht", "==" ] ], {} ] ], - "top-056.xht": [ - "b90afa3fe09e6b05142bc11efa40f08a6a3a47fb", + "at-rule-008.xht": [ + "6bd393115a03091d6b6198f445f8719739245e64", [ null, [ [ - "/css/CSS2/positioning/top-019-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "top-064.xht": [ - "7e8ace167c879b3ed2fffec4ed939d78abbc51e9", + "at-rule-009.xht": [ + "7e84583a41348d478115fd8278aefeba5b6f43fb", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "top-065.xht": [ - "ece703a1d7d4c472b3f4bd434b64d97947a7dc31", + "at-rule-010.xht": [ + "06e41bfe957cc03d89d8cb5e601ac925efa66871", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "top-066.xht": [ - "b3d69c2faec290c3853e6fae96ccac2c4941428d", + "at-rule-011.xht": [ + "694d20c9d11ba6016a04b390449dd5d06a0a8bc8", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "top-067.xht": [ - "f23d4bcc802614de139af62a665bd8a7fa299e40", + "at-rule-012.xht": [ + "f5e47c66927856f447677a21eadeba4b244b1e98", [ null, [ [ - "/css/CSS2/positioning/top-019-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "top-068.xht": [ - "e8d151a404c74de6a0d05319662323fa6e074393", + "at-rule-013.xht": [ + "7f51f2f0266f232985f84beb124cc6b9a9a1a340", [ null, [ [ - "/css/CSS2/positioning/top-019-ref.xht", + "/css/CSS2/syntax/at-rule-013-ref.xht", "==" ] ], {} ] ], - "top-076.xht": [ - "ef09202a7961625400fb2524dd241b65a2483635", + "at-rules-000.xht": [ + "4f23bd22544a9ceeb326e1cc8e53f2b96d1b2baf", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/reference/ref-this-text-should-be-green.xht", "==" ] ], {} ] ], - "top-077.xht": [ - "deaa882ab873de2df63746029c45e16027aacb59", + "at-rules-001.xht": [ + "40a89a00c5c177a263ee3ec2082a9245e440b586", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/reference/ref-this-text-should-be-green.xht", "==" ] ], {} ] ], - "top-078.xht": [ - "6429ff40135e63508167d184953dcfffa74f0788", + "at-rules-002.xht": [ + "dec4e68a800a0c065989e654a59c4ae6ffade507", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/reference/ref-this-text-should-be-green.xht", "==" ] ], {} ] ], - "top-079.xht": [ - "71208d26640519218bb67cf1d547712a78fed01e", + "at-rules-003.xht": [ + "40dbc2a8ecf15572100590290a67e623a5e6312a", [ null, [ [ - "/css/CSS2/positioning/top-079-ref.xht", + "/css/CSS2/reference/ref-this-text-should-be-green.xht", "==" ] ], {} ] ], - "top-080.xht": [ - "439945b006119174d4ad29f873e3a79eccf61be0", + "at-rules-004.xht": [ + "102a7f2a6586e73abea46831e7ee7d35c3fa1c1e", [ null, [ [ - "/css/CSS2/positioning/top-079-ref.xht", + "/css/CSS2/reference/ref-this-text-should-be-green.xht", "==" ] ], {} ] ], - "top-088.xht": [ - "fb323b2e24ba946cce6096dd25ad69995ac375a6", + "bad-selector-001.xht": [ + "c39d30912114e49f41c2ac409623d9d3469d0e16", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/reference/no-red-filler-text-ref.xht", "==" ] ], {} ] ], - "top-089.xht": [ - "ed4e58501e31d8d3f29f4b80e9e7634b6aeb2af1", + "blocks-001.xht": [ + "9da1079f6f9f80d0f098e0191a362a8260ba19ba", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/syntax/blocks-001-ref.xht", "==" ] ], {} ] ], - "top-090.xht": [ - "482a46b4f9a0018c57e1f7f2907b0b57a48682d0", + "blocks-002.xht": [ + "bc058bb7cd7ee9b109295318c6be7751c1fdb40b", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "top-091.xht": [ - "6b46c3f19a8640ce1d98e3ddbe73dbc6d9843411", + "blocks-003.xht": [ + "6ddf899b12ccd4b68f801d5238ee9985d1f0f098", [ null, [ [ - "/css/CSS2/positioning/top-019-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "top-092.xht": [ - "939f93eff6380cbb909b01097781ca0b055ebaaf", + "blocks-004.xht": [ + "b28f5eb64ab1ab65c13b609f7313b57de439911e", [ null, [ [ - "/css/CSS2/positioning/top-019-ref.xht", + "/css/CSS2/reference/no-red-filler-text-ref.xht", "==" ] ], {} ] ], - "top-100.xht": [ - "50747c88f2e5c6c19012b7fa4e710b49cb53c457", + "blocks-005.xht": [ + "aaa65a13d089f8159cef54c9bdc87dbbda43ab76", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/reference/no-red-filler-text-ref.xht", "==" ] ], {} ] ], - "top-101.xht": [ - "9cd038dff15a3b46c97adbe4f7e5fbcb518b0946", + "blocks-006.xht": [ + "17377646027f7d14d13e1b2f3d1646f34f762945", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/reference/no-red-filler-text-ref.xht", "==" ] ], {} ] ], - "top-102.xht": [ - "d504de9152a2abfa6ec7c8737fce6278fa421bcd", + "blocks-and-strings-001.xht": [ + "4c91cd38ab3f3b8ab718a8217d344a99095bab6c", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "top-103.xht": [ - "39c9672b5b1b4831b084be1922861f75bf7c51d8", + "case-sensitive-000.xht": [ + "82b53f637efcbdced0a971aa14ed417b2e1294e1", [ null, [ [ - "/css/CSS2/positioning/top-019-ref.xht", + "/css/CSS2/reference/ref-green-background.xht", "==" ] ], {} ] ], - "top-104.xht": [ - "458f26bdb826c5f4cb98dd6619509220752aa6fa", + "case-sensitive-001.xht": [ + "4a49758fa174c7efe4fe5f29fdab380606f3c566", [ null, [ [ - "/css/CSS2/positioning/top-019-ref.xht", + "/css/CSS2/reference/ref-green-background.xht", "==" ] ], {} ] ], - "top-109.xht": [ - "58fd8efdd97c478feefa9ec41d92baaab5448ced", + "case-sensitive-003.xht": [ + "0b494379f9d6291f65fe2cda52a7be73ad201f49", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/syntax/case-sensitive-003-ref.xht", "==" ] ], {} ] ], - "top-110.xht": [ - "a834a79650ba90ef11950ff862e7863d0caf774d", + "case-sensitive-004.xht": [ + "998187db59ca761950f4c7f838a7a28fc0b28798", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/syntax/case-sensitive-003-ref.xht", "==" ] ], {} ] ], - "top-111.xht": [ - "9f43620d4d8e10d6cf25cdc9da388f71fb1a784c", + "case-sensitive-005.xht": [ + "35bbc4b62bf6b04256c6d83044c48cd61966761f", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/syntax/case-sensitive-005-ref.xht", "==" ] ], {} ] ], - "top-112.xht": [ - "bf39bddb46ecf0b56a3e08c64d86ab7b2136e163", + "case-sensitive-006.html": [ + "0f140f4216c3cac2a984eb16663f0e3de6d410b7", [ null, [ [ - "/css/CSS2/reference/ref-no-vert-space-between.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "top-113.xht": [ - "caaf758f66969be68676fea2cabacfa633034aee", + "case-sensitive-007.xht": [ + "027f84ce8c56f38fd8f3f6c195ed9cd4b416655f", [ null, [ [ - "/css/CSS2/positioning/top-113-ref.xht", + "/css/CSS2/reference/no-red-filler-text-ref.xht", "==" ] ], {} ] ], - "top-applies-to-001.xht": [ - "d8066025314bb6c06f341703ec6e126f5d685cc3", + "character-encoding-031.xht": [ + "a5f5388b2060ab068bc3b5aad8711a15977226d9", [ null, [ [ - "/css/CSS2/positioning/top-applies-to-001-ref.xht", + "/css/CSS2/syntax/character-encoding-041-ref.xht", "==" ] ], {} ] ], - "top-applies-to-002.xht": [ - "56e079851f14a39465fa4944f28b8ce9ece9791b", + "character-encoding-032.xht": [ + "96a6023de70ed0f231b0c88e70bbe61fe59ed5ad", [ null, [ [ - "/css/CSS2/positioning/top-applies-to-001-ref.xht", + "/css/CSS2/syntax/character-encoding-041-ref.xht", "==" ] ], {} ] ], - "top-applies-to-003.xht": [ - "20f6eceaa94de00ac3b72e2e0ea900ef4d860274", + "character-encoding-033.xht": [ + "b3a3f417bc9b7f757d6bf24877b13bc62af5a87b", [ null, [ [ - "/css/CSS2/positioning/top-applies-to-001-ref.xht", + "/css/CSS2/syntax/character-encoding-041-ref.xht", "==" ] ], {} ] ], - "top-applies-to-004.xht": [ - "161ce0c150334b313e1dfb960e71276eee75c7b1", + "character-encoding-034.xht": [ + "11cf7b55659bb260be1c70ff3c91dc4b5a8fbd04", [ null, [ [ - "/css/CSS2/positioning/top-applies-to-001-ref.xht", + "/css/CSS2/syntax/character-encoding-041-ref.xht", "==" ] ], {} ] ], - "top-applies-to-005.xht": [ - "b84a67e8f341d5e86b91ffed1dc3460b0675d002", + "character-encoding-035.xht": [ + "4ef48e66b949891aae8d417919ee40d89d15c1a7", [ null, [ [ - "/css/CSS2/positioning/top-applies-to-001-ref.xht", + "/css/CSS2/syntax/character-encoding-041-ref.xht", "==" ] ], {} ] ], - "top-applies-to-006.xht": [ - "dc09f7e9dbbabd2d560b0c097aae3b302bdd96f0", + "character-encoding-036.xht": [ + "f6aa7bffdf34b92914ea7e0f350932e270aeef6f", [ null, [ [ - "/css/CSS2/positioning/top-applies-to-001-ref.xht", + "/css/CSS2/syntax/character-encoding-041-ref.xht", "==" ] ], {} ] ], - "top-applies-to-007.xht": [ - "9768bc2ae7b5bb0392d12b4b99d27897bac5f3a8", + "character-encoding-037.xht": [ + "bb8b76c4a1f930c38222872dd7ce4435ebc24ba8", [ null, [ [ - "/css/CSS2/positioning/top-applies-to-001-ref.xht", + "/css/CSS2/syntax/character-encoding-041-ref.xht", "==" ] ], {} ] ], - "top-applies-to-009.xht": [ - "0d0413baf7d57a3f6fd20f5f9dd150350d87bc67", + "character-encoding-041.xht": [ + "fd6ae89eaddce831857365615e582ec311775357", [ null, [ [ - "/css/CSS2/positioning/top-applies-to-001-ref.xht", + "/css/CSS2/syntax/character-encoding-041-ref.xht", "==" ] ], {} ] ], - "top-applies-to-012.xht": [ - "53820c9f8b3e0ff63fd623f9676a4f8fe8c1c557", + "characters-0080-009F-001.xht": [ + "40a7ad939c36759c8297ce9589d899d684deedab", [ null, [ [ - "/css/CSS2/positioning/top-applies-to-001-ref.xht", + "/css/CSS2/syntax/characters-0080-009F-001-ref.xht", "==" ] ], {} ] ], - "top-applies-to-013.xht": [ - "794c6c4633d763293940ed128022b89a8cb1d226", + "charset-attr-001.xht": [ + "298633eca41a4bac8639c8950b402c2080b46436", [ null, [ [ - "/css/CSS2/positioning/top-applies-to-001-ref.xht", + "/css/CSS2/syntax/at-charset-ref.xht", "==" ] ], {} ] ], - "top-applies-to-014.xht": [ - "e434f8db2f2d8efc79d31c79f3ec07447cdc6f9f", + "colors-001.xht": [ + "b570eb7085476ab2bbc5e1ccc99cedb9753ab4bf", [ null, [ [ - "/css/CSS2/positioning/top-applies-to-001-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "top-applies-to-015.xht": [ - "7b0ed4b920c2bf4e12893452a5211feec90cf883", + "colors-002.xht": [ + "55cebd10c23cde7ca1abb52b4539ab3a656fc6f2", [ null, [ [ - "/css/CSS2/positioning/top-applies-to-001-ref.xht", + "/css/CSS2/reference/no-red-filler-text-ref.xht", "==" ] ], {} ] ], - "top-offset-001.xht": [ - "9f6eb162be47797a56e2265db4c56a8f77909797", + "colors-003.xht": [ + "a747620f39cbab6f85a937699927c256f316c7e2", [ null, [ [ - "/css/CSS2/positioning/bottom-offset-001-ref.xht", + "/css/CSS2/reference/no-red-filler-text-ref.xht", "==" ] ], {} ] ], - "top-offset-002.xht": [ - "dda11587783518683f1ae63908c11ba742f94b56", + "colors-004.xht": [ + "40cd9f7ebfd02fa364d86621590ce0dcc9277e6c", [ null, [ [ - "/css/CSS2/positioning/bottom-offset-001-ref.xht", + "/css/CSS2/reference/no-red-filler-text-ref.xht", "==" ] ], {} ] ], - "top-offset-003.xht": [ - "670c8f383c2e3bed2b3413d7d2076747c76fe5a5", + "colors-005.xht": [ + "a20349d31638de1d59677a2924cb917dabc0318c", [ null, [ [ - "/css/CSS2/positioning/top-offset-003-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "top-offset-percentage-001.xht": [ - "3dbc83f9a0a37ccebebfd4d9e0d1ce32976c6182", + "colors-006.xht": [ + "c518a2110cf31068134904e83c9785b514713612", [ null, [ [ - "/css/CSS2/positioning/top-offset-percentage-001-ref.xht", + "/css/CSS2/syntax/colors-006-ref.xht", "==" ] ], {} ] ], - "top-offset-percentage-002.xht": [ - "a2f8d534377c79a2e1b3af74ea23be36e64bb8ed", + "comments-001.xht": [ + "97fd63798d87c2fb23dde0c45ecfbce575f92481", [ null, [ [ - "/css/CSS2/positioning/left-offset-percentage-002-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] - ] - }, - "sec5": { - "adjacent-000.xht": [ - "f0d8e45e7193af90c698e402a4d80f2cebe36ecb", + ], + "comments-002.xht": [ + "73c765f080b2bcc0214b638491f59bc7e5edce69", [ null, [ [ - "/css/CSS2/sec5/adjacent-000-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "adjacent-001.xht": [ - "59b55d3ddd1b5d1015bb3256c747f78ea4547e39", + "comments-003.xht": [ + "b578504c0ad56616fa283b163c9726f3ad9e82d5", [ null, [ [ - "/css/CSS2/sec5/adjacent-000-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "adjacent-002.xht": [ - "59a6c06ed966343b4ccbaedcd1751b9631022b47", + "comments-004.xht": [ + "bdeddb27648cc14c1b6dcd02e2ec4a6aff920b07", [ null, [ [ - "/css/CSS2/sec5/adjacent-000-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "attribute-000.xht": [ - "0509900929fa9481d7516ef11080a40e0e841fc2", + "comments-005.xht": [ + "614ef25a0240348153e4dd7192370275a9fbf1f8", [ null, [ [ - "/css/CSS2/sec5/attribute-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "attribute-001.xht": [ - "155bc96527363dc963e74171bdb734a4a3728801", + "comments-006.xht": [ + "016d90b240e90f5cb7bbdb20602ab784d12923c5", [ null, [ [ - "/css/CSS2/sec5/attribute-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "attribute-002.xht": [ - "b1ca0bb4026c3be8e4fcb93221aab11e99d759b3", + "comments-007.xht": [ + "77ea32cdecd61730548f7017052e0722eea0e00e", [ null, [ [ - "/css/CSS2/sec5/attribute-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "attribute-003.xht": [ - "5789983520120534a68f621a630c978f19d48100", + "comments-008.xht": [ + "f0bcc7e054c3982b44c8dba91f7e85c94e721d25", [ null, [ [ - "/css/CSS2/sec5/attribute-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "attribute-004.xht": [ - "aab6bcadce80fe7cdb5b019f1536e609fbb59adc", + "comments-009.xht": [ + "56dbd487440df5a49c82377c23c642df1e6b0066", [ null, [ [ - "/css/CSS2/sec5/attribute-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "attribute-005.xht": [ - "fc5030e744681dc848b2f87235865f3fa4e65b81", + "content-type-000.xht": [ + "e98809dc27d6340803413aeb5b6e5532ded331a3", [ null, [ [ - "/css/CSS2/sec5/attribute-ref.xht", + "/css/CSS2/syntax/content-type-000-ref.xht", "==" ] ], {} ] ], - "attribute-006.xht": [ - "bcb9f571dddd381710b027bc9956516ad1b3c877", + "content-type-001.xht": [ + "4ac59e47543419a51f46519e709e42c4148a9238", [ null, [ [ - "/css/CSS2/sec5/attribute-ref.xht", + "/css/CSS2/syntax/content-type-000-ref.xht", "==" ] ], {} ] ], - "attribute-007.xht": [ - "36291de5740f0b2b7f5d4670b1235332bee47bf9", + "core-syntax-001.xht": [ + "6d8ec7ceba23fd13e754524debb6ff8f04a2f645", [ null, [ [ - "/css/CSS2/sec5/attribute-ref.xht", + "/css/CSS2/syntax/core-syntax-001-ref.xht", "==" ] ], {} ] ], - "class-000.xht": [ - "366573c74360e7de7cd752563ed9a8d8a72c9e61", + "core-syntax-006.xht": [ + "eb5d380af0c7d515771c63e8b39d35f1811ff3d6", [ null, [ [ - "/css/CSS2/sec5/class-000-ref.html", + "/css/CSS2/syntax/core-syntax-006-ref.xht", "==" ] ], {} ] ], - "class-001.xht": [ - "096210ac2b18fc004f67318f1fbaf3af24ea200f", + "core-syntax-007.xht": [ + "b0d99e3729ca07036f9182126c2a2d4e42f635b6", [ null, [ [ - "/css/CSS2/sec5/class-000-ref.html", + "/css/CSS2/syntax/core-syntax-007-ref.xht", "==" ] ], {} ] ], - "class-002.xht": [ - "85fdef97e34b986aef3bb29fd118a1edcab8ac24", + "core-syntax-008.xht": [ + "08e08c0e01e2f3f93896dfab4b77cb5496cec441", [ null, [ [ - "/css/CSS2/sec5/class-002-ref.html", + "/css/CSS2/reference/ref-this-text-should-be-green.xht", "==" ] ], {} ] ], - "descendant-selector-000.xht": [ - "2afa2da1796f274bc94607cb6b767fa80532f5ed", + "core-syntax-009.xht": [ + "2ffa3e4b9a5e6e1e405b22283c88992a1a75e121", [ null, [ [ - "/css/CSS2/sec5/descendant-selector-000-ref.xht", + "/css/CSS2/reference/ref-this-text-should-be-green.xht", "==" ] ], {} ] ], - "descendant-selector-001.xht": [ - "d1ab44ff18975def4639544edd7482300a0a8c29", + "counters-001.xht": [ + "cf46887947caabf336521e82dc3a64e50784d30d", [ null, [ [ - "/css/CSS2/sec5/descendant-selector-000-ref.xht", + "/css/CSS2/syntax/counters-001-ref.xht", "==" ] ], {} ] ], - "first-child-000.xht": [ - "d31ef34996c0039d7027fa96a6a6109ff9ec1d0e", + "counters-002.xht": [ + "5966468290ca9781000d7dd6c8e1bac7b2ec867c", [ null, [ [ - "/css/CSS2/sec5/first-child-000-ref.html", + "/css/CSS2/reference/no-red-filler-text-ref.xht", "==" ] ], {} ] ], - "first-child-001.xht": [ - "d6dbb4aab941b76b615f13425bba62be59b14d6f", + "counters-003.xht": [ + "5df8e1b2426ffa1e0b6298d34c117035c0fd6e4f", [ null, [ [ - "/css/CSS2/sec5/first-child-000-ref.html", + "/css/CSS2/syntax/counters-003-ref.xht", "==" ] ], {} ] ], - "first-line-000.xht": [ - "010019f0bbd9a6b4dc462bdff36cddccfcb4b003", + "counters-004.xht": [ + "47cd08bfbccb2f3d6a2b746c723ed3e5ae337e56", [ null, [ [ - "/css/CSS2/sec5/first-line-000-ref.html", + "/css/CSS2/syntax/counters-004-ref.xht", "==" ] ], {} ] ], - "grouping-000.xht": [ - "75f29cbc356292c8747edaeb3756efe7a34dea2f", + "counters-005.xht": [ + "b466c9d9990d089e95147dba216fef04b93dff74", [ null, [ [ - "/css/CSS2/sec5/grouping-000-ref.xht", + "/css/CSS2/syntax/counters-003-ref.xht", "==" - ], - [ - "/css/CSS2/sec5/grouping-000-notref.xht", - "!=" ] ], {} ] ], - "grouping-001.xht": [ - "8ffcc3fe62ab66282fc8914b389204951869181d", + "counters-006.xht": [ + "163d1e8b0283757617226d39c9365ebfb9438904", [ null, [ [ - "/css/CSS2/sec5/grouping-000-ref.xht", + "/css/CSS2/syntax/counters-004-ref.xht", "==" - ], - [ - "/css/CSS2/sec5/grouping-000-notref.xht", - "!=" ] ], {} ] ], - "id-000.xht": [ - "6c732aadf10903597984711fc0910672cd6e1577", + "counters-007.xht": [ + "a97452625d7d5168b301e84d27bf1b7c381fb794", [ null, [ [ - "/css/CSS2/sec5/class-000-ref.html", + "/css/CSS2/syntax/counters-003-ref.xht", "==" ] ], {} ] ], - "id-001.xht": [ - "81ac96e0e931e67b23c6167cb8790473e021b2fa", + "counters-008.xht": [ + "e9980948db2fe6b6b95e1c83de7af174be86faf7", [ null, [ [ - "/css/CSS2/sec5/class-000-ref.html", + "/css/CSS2/syntax/counters-004-ref.xht", "==" ] ], {} ] - ] - }, - "selector": { - "attribute-value-selector-007.html": [ - "9299a24fafe965bae783279bb86b25f67911c812", + ], + "counters-009.xht": [ + "add7032f2d6fdd9b7ef6834486feb64d3e3a803b", [ null, [ [ - "/css/CSS2/selector/attribute-value-selector-007-ref.html", + "/css/CSS2/syntax/counters-003-ref.xht", "==" ] ], {} ] ], - "attribute-value-selector-008.xht": [ - "7a17b3202ca71bc8bbe9ab7b015661e2999526d4", + "counters-010.xht": [ + "d5f91b2ffde005963fe8e7e1c19d337b6b284b46", [ null, [ [ - "/css/CSS2/selector/attribute-value-selector-008-ref.html", + "/css/CSS2/syntax/counters-010-ref.xht", "==" ] ], {} ] ], - "attribute-value-selector-009.xht": [ - "566fca5cbc7efe95120cca9cb4b6e2a9671925ab", + "declaration-001.xht": [ + "ffc7f8d19e057491aa8ef00ca92b7cad0ef497ed", [ null, [ [ - "/css/CSS2/selector/attribute-value-selector-009-ref.html", + "/css/CSS2/reference/ref-this-text-should-be-green.xht", "==" ] ], {} ] ], - "attribute-value-selector-010.html": [ - "ca6bdb6950a0a13ff7c435297bbb0f2cd55aef66", + "declaration-002.xht": [ + "8b905c21f13290081db72928785f8e7136a521cb", [ null, [ [ - "/css/CSS2/selector/attribute-value-selector-010-ref.html", + "/css/CSS2/reference/ref-this-text-should-be-green.xht", "==" ] ], {} ] ], - "lang-pseudoclass-001.html": [ - "4028be17606cdb69fe0578a478ad27d99510f249", + "declaration-003.xht": [ + "9e488e41b0722eb59fcef863fbc9755579d2f7a2", [ null, [ [ - "/css/CSS2/selector/lang-pseudoclass-001-ref.html", + "/css/CSS2/reference/ref-this-text-should-be-green.xht", "==" ] ], {} ] ], - "lang-pseudoclass-002.xht": [ - "44aacfc28ac37603dcc6fa296827bfa6fff076df", + "declaration-004.xht": [ + "cd262d02c20233b02c1278564725912ff4b32baa", [ null, [ [ - "/css/CSS2/selector/lang-pseudoclass-001-ref.html", + "/css/CSS2/reference/ref-this-text-should-be-green.xht", "==" ] ], {} ] - ] - }, - "selectors": { - "attribute-selector-001.xht": [ - "f19bc069d296025fae06d556aeebb39eaf634b79", + ], + "declaration-005.xht": [ + "406c72cb0bbd33ef3aa38866e5a13d0c87ea7857", [ null, [ [ - "/css/CSS2/reference/no-red-filler-text-ref.xht", + "/css/CSS2/reference/ref-this-text-should-be-green.xht", "==" ] ], {} ] ], - "attribute-selector-002.xht": [ - "16b4ff812820ef0951966999c7e875949767d0ac", + "declaration-006.xht": [ + "0f37aa4b9c2cec9e9648d5fad30b0af8ae748648", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/reference/ref-this-text-should-be-green.xht", "==" ] ], {} ] ], - "attribute-token-selector-002.xht": [ - "7781f9f6162322336b3edd087b9ac384a23c680f", + "declaration-whitespace-001.xht": [ + "c941cf716ac9efa209f748a4106f4a4c7779e850", [ null, [ [ - "/css/CSS2/selectors/attribute-token-selector-002-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "attribute-value-selector-001.xht": [ - "0363f4ac53965571da8c26680ceebb1563c0a906", + "declarations-009.xht": [ + "33abc0a924410a39224614cacfb76a43c0dfce51", [ null, [ [ - "/css/CSS2/selectors/attribute-value-selector-001-ref.xht", + "/css/CSS2/syntax/declarations-009-ref.xht", "==" ] ], {} ] ], - "attribute-value-selector-002.xht": [ - "a63a5965996509a90bbbc9c7e74ef24d7bf16788", + "eof-001.xht": [ + "d675167528dd4f93e6f240e3b571337757c986f8", [ null, [ [ - "/css/CSS2/selectors/attribute-value-selector-001-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "attribute-value-selector-003.xht": [ - "a0e8ae7bb6fc7685d315417fb71c701ff7329deb", + "eof-002.xht": [ + "00d6559b28612679f79df995e2fd33d96d077334", [ null, [ [ - "/css/CSS2/selectors/attribute-value-selector-001-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "attribute-value-selector-004.xht": [ - "e2c601a7bdb34679257967e547b504b85fb33f94", + "eof-003.xht": [ + "f4050c9b21c1e963b52eba15dddec43beec4f1ee", [ null, [ [ - "/css/CSS2/reference/no-red-filler-text-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "attribute-value-selector-005.html": [ - "08462db67abf2fb751c946e0a1f8b434c67f5ff9", + "eof-004.xht": [ + "60147c67ee8f6beff0de1435a1e40b3c2f3ce86c", [ null, [ @@ -101765,8 +102573,8 @@ {} ] ], - "attribute-value-selector-006.xht": [ - "99ce155f9578c4adee3be5e6275ac594f03673af", + "eof-005.xht": [ + "37b74bee160a399be3e00046796803fde51990b4", [ null, [ @@ -101778,73 +102586,73 @@ {} ] ], - "before-after-selector-001.xht": [ - "78e04da0856efab8d8fc8147ce4c065016dc60a9", + "eof-006.xht": [ + "c079cffdaac805917082bad459ae984a89607355", [ null, [ [ - "/css/CSS2/selectors/before-after-selector-001-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "before-first-letter-selector-001.xht": [ - "76a9f8b77c3f6784125e5f6672eb9ef0082d2958", + "eof-007.xht": [ + "58bdc02a6d26595593b17d1cccc974e8962566ed", [ null, [ [ - "/css/CSS2/selectors/before-first-letter-selector-001-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "child-selector-001.xht": [ - "cc8c7be35a51d045ea8cbb66b0266d353b3f15e1", + "escaped-ident-001.xht": [ + "332c9c15fe564f705399e82229ab1f87207d2c81", [ null, [ [ - "/css/CSS2/selectors/child-selector-001-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "child-selector-002.xht": [ - "a343e7c4bf25bba85d598040751a2b39589499d5", + "escaped-ident-002.xht": [ + "1dbf76c88b25fb724bd02b1e25f9ebcf6fd3890c", [ null, [ [ - "/css/CSS2/selectors/child-selector-002-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "child-selector-003.xht": [ - "62bb52707733205c6fc69d5fa995e3b7a0cdb916", + "escaped-ident-003.xht": [ + "689dfedb4fb275dde77147a40e08343142366372", [ null, [ [ - "/css/CSS2/selectors/child-selector-003-ref.xht", + "/css/CSS2/reference/no-red-filler-text-ref.xht", "==" ] ], {} ] ], - "class-selector-001.xht": [ - "580f661fd07c1feb8849a9b4d80f6dc93c551efa", + "escaped-ident-004.xht": [ + "47b839ad1a1312a19153f9056d5e30d52ccfd57b", [ null, [ @@ -101856,8 +102664,8 @@ {} ] ], - "class-selector-002.xht": [ - "5bf4e6abd574796b7018b8ad47153eb04dd875ed", + "escaped-ident-char-001.xht": [ + "d8beee4a4eb58f0cb2f72e8a3d15751ba3e8e53c", [ null, [ @@ -101869,8 +102677,8 @@ {} ] ], - "class-selector-003.xht": [ - "1d17a6ec9b2054f018e31f898d6207f048c01340", + "escaped-ident-spaces-001.xht": [ + "2dbad085c5998cc662f2cdc8b882f5c1416edbf6", [ null, [ @@ -101882,34 +102690,34 @@ {} ] ], - "class-selector-004.xht": [ - "c7faefbce17e67c31164c4442685fc19b7f87010", + "escaped-ident-spaces-002.xht": [ + "a5012faab54b07d68ee93c4fcd4f7fea1cea6ae5", [ null, [ [ - "/css/CSS2/reference/no-red-filler-text-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "class-selector-005.xht": [ - "a62adaee1cc844b3cf9bf115dccf75445026556b", + "escaped-ident-spaces-003.xht": [ + "6a1992b663bce5b43e00fe3c4620613d0d8ccac1", [ null, [ [ - "/css/CSS2/reference/no-red-filler-text-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "class-selector-006.xht": [ - "776624ae12724813fc00e18dd4da42cd37070342", + "escaped-ident-spaces-004.xht": [ + "d09ded2f3c46ff52b10b169fb3debfd5419aa7c9", [ null, [ @@ -101921,29356 +102729,34249 @@ {} ] ], - "class-selector-007.xht": [ - "5ec98217461852d2cc961c3448cffde4ad133d4d", + "escaped-ident-spaces-005.xht": [ + "d8c5a79c549e29d27a029d18495f704b470e8110", [ null, [ [ - "/css/CSS2/reference/no-red-filler-text-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "class-selector-008.xht": [ - "b4ceabb6a02929083221d162c9b295b1149446d0", + "escaped-ident-spaces-006.xht": [ + "4935ee1fdf884f2fdb0f5628cc4a50865600599a", [ null, [ [ - "/css/CSS2/reference/ref-this-text-should-be-green.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "class-selector-009.xht": [ - "cba3e082894cda1fd0674d6f43c0e91f2a110016", + "escaped-ident-spaces-007.xht": [ + "0feac95ef5c752cd21eeb6aa9bf14cb33bb6c652", [ null, [ [ - "/css/CSS2/reference/ref-green-background.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "class-selector-010.xht": [ - "e0fd5bc19a317417a54a625b229f2391b9a8ffd8", + "escaped-newline-001.xht": [ + "e576eb371ee0e90441421768663334d4a3f3d00f", [ null, [ [ - "/css/CSS2/reference/ref-green-background.xht", + "/css/CSS2/syntax/escaped-newline-001-ref.xht", "==" ] ], {} ] ], - "class-selector-011.xht": [ - "ac49276ec296f524568c82c72aa7def3af16fd9c", + "escaped-url-001.xht": [ + "caaa644a95b87d83278af22b99e2025fe637b84e", [ null, [ [ - "/css/CSS2/reference/ref-green-background.xht", + "/css/CSS2/syntax/escaped-url-001-ref.xht", "==" ] ], {} ] ], - "class-selector-012.xht": [ - "ea57e2b8a510a7470621cb275d782906d3bebe80", + "escapes-000.xht": [ + "0937229a54b23ac36877e590f7c7019ac3f43692", [ null, [ [ - "/css/CSS2/selectors/class-selector-012-ref.html", + "/css/CSS2/syntax/escapes-000-ref.xht", "==" ] ], {} ] ], - "combinator-001.xht": [ - "e695258889abb3c97508c93b89743f2215c09aa9", + "escapes-001.xht": [ + "0018bd93617e936022a5e11dbb999972cf4d1a69", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/reference/ref-green-background.xht", "==" ] ], {} ] ], - "combinator-002.xht": [ - "543b5b3cdebec09077e6799668ac6a3e142cc1dd", + "escapes-002.xht": [ + "1ab1f62131d0d039a3d2f979d5a9120df450619d", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/reference/ref-green-background.xht", "==" ] ], {} ] ], - "combinator-003.xht": [ - "eb51e1860207b1cbc98234db7900a2f43f2c3f46", + "escapes-003.xht": [ + "38f735df741b95f5d97994ca3df835eabcbe33a3", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/reference/ref-green-background.xht", "==" ] ], {} ] ], - "combinator-004.xht": [ - "f0447335987e13ba752b266543548d2993857b09", + "escapes-004.xht": [ + "080016d11cdd94bf1c2834084c59e8b6b69a395e", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/reference/ref-green-background.xht", "==" ] ], {} ] ], - "default-attribute-selector-001.xht": [ - "f7eb15dfe658130172912e35dc9c1a4256703240", + "escapes-005.xht": [ + "78e5533f586a38004801b225d25922469aaa8b51", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/reference/ref-green-background.xht", "==" ] ], {} ] ], - "default-attribute-selector-002.xht": [ - "8ad62c99a8acc40c1b15354f96fece431abd62d5", + "escapes-006.xht": [ + "ad5173419db90b3f6c5b207797eb89a6e3fe5449", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/reference/ref-green-background.xht", "==" ] ], {} ] ], - "default-attribute-selector-003.xht": [ - "628019b2ddf7b390d2207e0f966a284940b1cbaf", + "escapes-007.xht": [ + "62e41298406e5ed97b84b6aa8cd9e1a1ec5c6b7b", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/reference/ref-green-background.xht", "==" ] ], {} ] ], - "default-attribute-selector-004.xht": [ - "1c3ffdf70010deecae7257bb3524b7eb5024f259", + "escapes-008.xht": [ + "92fec1ceef2c631c0ec0cdead28fcef471b5a9af", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/reference/ref-green-background.xht", "==" ] ], {} ] ], - "descendent-selector-001.xht": [ - "a494242eb50a2c858d657c3bf93611a884855e61", + "escapes-009.xht": [ + "11ad3c14a949fde867d0e23fa41cedb9830def64", [ null, [ [ - "/css/CSS2/reference/no-red-filler-text-ref.xht", + "/css/CSS2/reference/ref-this-text-should-be-green.xht", "==" ] ], {} ] ], - "descendent-selector-002.xht": [ - "dcc9f917732d7ada6d36819be434b8650f5a6be0", + "escapes-010.xht": [ + "564ff1bb77fdf08565d02289dc02cf988278c6bb", [ null, [ [ - "/css/CSS2/selectors/descendent-selector-002-ref.xht", + "/css/CSS2/reference/ref-this-text-should-be-green.xht", "==" ] ], {} ] ], - "descendent-selector-003.xht": [ - "93e8915345b2efe1f7f96ff91c3a0cf62ecc0934", + "escapes-011.xht": [ + "850f5ae13eb71bb9f278df3671e9f5ca515021d6", [ null, [ [ - "/css/CSS2/selectors/descendent-selector-002-ref.xht", + "/css/CSS2/reference/ref-this-text-should-be-green.xht", "==" ] ], {} ] ], - "descendent-selector-004.xht": [ - "94b5aa49aee795b9b5c18d18afde7854aa20c1e9", + "escapes-012.xht": [ + "5ff2542b3fd731415f1b6017200582ad30d8e143", [ null, [ [ - "/css/CSS2/selectors/descendent-selector-004-ref.xht", + "/css/CSS2/reference/ref-this-text-should-be-green.xht", "==" ] ], {} ] ], - "descendent-selector-005.xht": [ - "74323f91a1606385b467af307d38337f0bde4b59", + "escapes-013.xht": [ + "abfd3275b4e9eb3978a5998922768ec41ced3a23", [ null, [ [ - "/css/CSS2/reference/no-red-filler-text-ref.xht", + "/css/CSS2/syntax/escapes-013-ref.xht", "==" ] ], {} ] ], - "descendent-selector-006.xht": [ - "5e7167fefe9c1366b9dd012f63b9ada07edff193", + "escapes-014.xht": [ + "4b1cc49adcba3d3de8963842962d0f97d2c75a82", [ null, [ [ - "/css/CSS2/selectors/descendent-selector-004-ref.xht", + "/css/CSS2/reference/ref-green-background.xht", "==" ] ], {} ] ], - "descendent-selector-007.xht": [ - "d438df2d0d3624353f6911a9ffd4d56a00698f17", + "escapes-015.xht": [ + "be2ff6b242cfb10a1c048dee2d5ab62d7a89e86f", [ null, [ [ - "/css/CSS2/selectors/descendent-selector-002-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "descendent-selector-008.xht": [ - "ce57a7e4d511bebc66aa528ffaf7d7304b5e1699", + "escapes-016.xht": [ + "128c74a1d1a68b48646cc4558b66f29face33e61", [ null, [ [ - "/css/CSS2/selectors/descendent-selector-004-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "descendent-selector-009.xht": [ - "6929b54023b9b4c77289b1cb417ba26bdcb015c6", + "ident-000.xht": [ + "0cb3051a142336f05b9542f03a0e80ec6f1ba30a", [ null, [ [ - "/css/CSS2/selectors/descendent-selector-002-ref.xht", + "/css/CSS2/syntax/ident-000-ref.xht", "==" ] ], {} ] ], - "descendent-selector-010.xht": [ - "5330144f4f2f7eeeceb5da4c0d00cee4ef39ac00", + "ident-001.xht": [ + "ec79def2581a42d1fd8e3f952f63a2a89241ff30", [ null, [ [ - "/css/CSS2/selectors/descendent-selector-002-ref.xht", + "/css/CSS2/syntax/ident-000-ref.xht", "==" ] ], {} ] ], - "descendent-selector-011.xht": [ - "4373d7bd393be0788232c011686e4cba808e6543", + "ident-002.xht": [ + "8de86433e75dd232b5ecbbd53f120f973bdbb20e", [ null, [ [ - "/css/CSS2/selectors/descendent-selector-002-ref.xht", + "/css/CSS2/syntax/ident-000-ref.xht", "==" ] ], {} ] ], - "dynamic-sibling-combinator-001.xht": [ - "f12c2790e87f9335f9cb01b85ed5e228ee02cead", + "ident-003.xht": [ + "e09d970069351b20972c8d6d2f3072cc619bcb65", [ null, [ [ - "/css/CSS2/selectors/dynamic-sibling-combinator-001-ref.xht", + "/css/CSS2/syntax/ident-003-ref.xht", "==" ] ], {} ] ], - "first-child-selector-001.xht": [ - "8f13e804fe10965bbc0d7d1ec1585482a2d17a93", + "ident-004.xht": [ + "ff079e5ffb39c32630e583d27da4d5cdc3ff75a8", [ null, [ [ - "/css/CSS2/selectors/first-child-selector-001-ref.html", + "/css/CSS2/syntax/ident-000-ref.xht", "==" ] ], {} ] ], - "first-child-selector-002.xht": [ - "2115e5512969ca78d936863675dd7a0befc86207", + "ident-005.xht": [ + "346e3e366218580e61b94cc61143a2606c4feaf8", [ null, [ [ - "/css/CSS2/selectors/first-child-selector-002-ref.html", + "/css/CSS2/syntax/ident-000-ref.xht", "==" ] ], {} ] ], - "first-child-selector-003.xht": [ - "a02e002777d4d333dc34741ef14a0f753077d39f", + "ident-006.xht": [ + "a4fcf1884a510083628b079d8cf768759684008b", [ null, [ [ - "/css/CSS2/reference/ref-this-text-should-be-green.xht", + "/css/CSS2/syntax/ident-000-ref.xht", "==" ] ], {} ] ], - "first-letter-001.xht": [ - "8fd71ad83562c6078ea990f27f3feb54c60459ed", + "ident-007.xht": [ + "c91e35e698fb2a00148d03812697b96b6e6c9971", [ null, [ [ - "/css/CSS2/selectors/first-letter-001-ref.xht", + "/css/CSS2/syntax/ident-000-ref.xht", "==" ] ], {} ] ], - "first-letter-abspos.html": [ - "c8b14b462c70e475d0147212fd61fe80dbecd79b", + "ident-008.xht": [ + "7e80153fff43304fd84af7ca144501271aa6e614", [ null, [ [ - "/css/CSS2/selectors/first-letter-abspos-ref.html", + "/css/CSS2/syntax/ident-000-ref.xht", "==" ] ], {} ] ], - "first-letter-dynamic-001.xht": [ - "dcde3ad0551e35b34f37437f4378598b26fa75e3", + "ident-009.xht": [ + "1dceb48e2f63bea16c1059aa0d2d41489c300345", [ null, [ [ - "/css/CSS2/selectors/first-letter-dynamic-001-ref.xht", + "/css/CSS2/syntax/ident-000-ref.xht", "==" ] ], {} ] ], - "first-letter-dynamic-002.xht": [ - "c689aecc4410c78339597711fd63d9988ffb7fec", + "ident-010.xht": [ + "00130844f6528a9490a33e91d878ef71179bbfa7", [ null, [ [ - "/css/CSS2/selectors/first-letter-dynamic-002-ref.xht", + "/css/CSS2/syntax/ident-000-ref.xht", "==" ] ], {} ] ], - "first-letter-dynamic-003a.xht": [ - "e95c6f4814143f7cf4fcf8eb8d81eaa29b4fb8cd", + "ident-011.xht": [ + "228b873b0d0625cf615273154d98a2b977aa8dfa", [ null, [ [ - "/css/CSS2/selectors/first-letter-dynamic-003-ref.xht", + "/css/CSS2/syntax/ident-000-ref.xht", "==" ] ], {} ] ], - "first-letter-dynamic-003b.xht": [ - "2a3193271cde9be6f81c115a6582a5bb2f31f051", + "ident-012.xht": [ + "8dc09bc1544941a684c8829c5ef221538683758b", [ null, [ [ - "/css/CSS2/selectors/first-letter-dynamic-003-ref.xht", + "/css/CSS2/syntax/ident-012-ref.xht", "==" ] ], {} ] ], - "first-letter-inherit-001.xht": [ - "82655938bed97f9e5491357486004fecfb9d10e0", + "ident-013.xht": [ + "2dc65a35d7a9c0112950d5e4d9ebd66561ed6d14", [ null, [ [ - "/css/CSS2/selectors/first-letter-inherit-001-ref.xht", + "/css/CSS2/syntax/ident-000-ref.xht", "==" ] ], {} ] ], - "first-letter-nested-001.xht": [ - "805b7d57278c013c2c861a83f26b654ca8cbf490", + "ident-014.xht": [ + "44a53c7f7ff60d95f879124670d1c4f2a420bb13", [ null, [ [ - "/css/CSS2/selectors/first-letter-nested-001-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "first-letter-nested-002.xht": [ - "45c41ee0002e982d29adedce20d509fa878640ea", + "ident-015.xht": [ + "65349fc0ddd7ad9c9d5a27af84e947174bbdb01d", [ null, [ [ - "/css/CSS2/selectors/first-letter-nested-001-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "first-letter-nested-003.xht": [ - "bcdf10a919cc6c43dfef3f057fca8f70d3f9f08e", + "ident-016.xht": [ + "cedc7fb659650d854d1d451ddf5f9dfd46baddde", [ null, [ [ - "/css/CSS2/selectors/first-letter-nested-001-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "first-letter-nested-004.xht": [ - "7e59e77f1c64abcf2017cbfd143a775c9bf7cba2", + "ident-017.xht": [ + "355fb4a42325a255ec97d85b63eef860ab6191e2", [ null, [ [ - "/css/CSS2/selectors/first-letter-nested-001-ref.xht", + "/css/CSS2/reference/no-red-filler-text-ref.xht", "==" ] ], {} ] ], - "first-letter-nested-005.xht": [ - "002b8b952de9184b222fff32c0a18f357473516c", + "ident-018.xht": [ + "c4457cde3927b55e0b85fef66bc00960a6f68745", [ null, [ [ - "/css/CSS2/selectors/first-letter-nested-001-ref.xht", + "/css/CSS2/reference/no-red-filler-text-ref.xht", "==" ] ], {} ] ], - "first-letter-nested-006.xht": [ - "00149f55b701b63a238874ad39a1e6baaf8f0680", + "ident-019.xht": [ + "ce0d5d473c1b692c67d158cf4d4333eea0ee11bd", [ null, [ [ - "/css/CSS2/selectors/first-letter-nested-001-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "first-letter-nested-007.xht": [ - "ffe4e25fa500a98183162b95d7b13a04a2e028cf", + "ignored-rules-001.xht": [ + "2317baa5bbc345095bce4508db6dd69ccf6846da", [ null, [ [ - "/css/CSS2/selectors/first-letter-nested-001-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "first-letter-punctuation-001.xht": [ - "f0e1556767ec21d7c4beec3972da69aa23b32124", + "ignored-rules-002.xht": [ + "c7b1dcbb8ce27793ebb2ffc61225c17482329b24", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-001-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "first-letter-punctuation-002.xht": [ - "8d31e992f8b4776f77d3e115b86ce29e36b9ba8f", + "ignored-rules-003.xht": [ + "5d0cf7d0bc3928bf58d5f0eb3ae03057f14446da", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-002-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "first-letter-punctuation-003.xht": [ - "f2f277f55c3f6686988589458deade852babb45f", + "ignored-rules-004.xht": [ + "3987b7fbd97a7f9992dd4f816831b61a08eabc3d", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-003-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "first-letter-punctuation-004.xht": [ - "480a1490c0380e8d4810e8f61702a5178e5ed6d0", + "ignored-rules-005.xht": [ + "d740829c80928c0e9b9f902c7b609c703a38fc2b", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-004-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "first-letter-punctuation-005.xht": [ - "d8de466f4fc76854b5e10daec3685e4728eafd8b", + "ignored-rules-006.xht": [ + "54ab39efa449c870f8e2b87af8588db5d1c21d0c", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-005-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "first-letter-punctuation-006.xht": [ - "0803ca207c15acd979183b75db4ca092eacd326e", + "ignored-rules-007.xht": [ + "c816e8ea5b4adc26e1b9a750ff8b2fef0ec8160b", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-006-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "first-letter-punctuation-007.xht": [ - "c4883ec8ac912df7f1c78fe150b7c0613ac3dfc1", + "import-000.xht": [ + "1ede841af4732b11994a6dad38a305b25d331b3b", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-007-ref.xht", + "/css/CSS2/reference/ref-this-text-should-be-green.xht", "==" ] ], {} ] ], - "first-letter-punctuation-008.xht": [ - "78792856be59275fdab97632a49a88e1a258e054", + "import-001.xht": [ + "95f131974871d874d17ce428afa6c7a63d3802a8", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-008-ref.xht", + "/css/CSS2/reference/ref-this-text-should-be-green.xht", "==" ] ], {} ] ], - "first-letter-punctuation-009.xht": [ - "366170f8ffa135fe8d96392738d0d32fe053ed92", + "invalid-at-rule-001.xht": [ + "6062e3dda4449cae50ca92c53b56972c86de6e51", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-009-ref.xht", + "/css/CSS2/reference/no-red-filler-text-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-010.xht": [ - "03e2cffba69da5753b3afafb069f7dd44bcc5ec2", + "invalid-decl-at-rule-001.xht": [ + "a1aa604240643a8a4462330a1c13a7245363e0d3", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-010-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "first-letter-punctuation-012.xht": [ - "d4fcc96702b3e8203a6f9426fcd8c66df17219fe", + "invalid-decl-at-rule-002.xht": [ + "80f8c18b09fe9b97b4c6180892b6e63dac60544b", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-012-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "first-letter-punctuation-013.xht": [ - "026a2aa24010baae9dac236c12bdea8c9f6d4fed", + "keywords-000.xht": [ + "3ffa554f60eb02b05f5c32078b009770dc445e96", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-013-ref.xht", + "/css/CSS2/reference/ref-green-background.xht", "==" ] ], {} ] ], - "first-letter-punctuation-014.xht": [ - "37e0d0d85e71ae8dcb9cf01a40f46072668776df", + "keywords-001.xht": [ + "07b08076363486319388a1a640d4dfdf349592dc", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-014-ref.xht", + "/css/CSS2/syntax/keywords-001-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-015.xht": [ - "b0a697c1ffb6a20227f47eef213f53279183f572", + "malformed-decl-001.xht": [ + "0362f172f5a4d4c2f3c9c1e2cb6ed3c679f82098", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-015-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "first-letter-punctuation-016.xht": [ - "49d2ddea3c4b5b5583cd3e784991fa1144a0b635", + "malformed-decl-002.xht": [ + "417c7d61a3bb26385b59911b06941a047dbd6880", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-016-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "first-letter-punctuation-017.xht": [ - "4426416ee7a262ab7bb757a2851588f782fda6cf", + "malformed-decl-003.xht": [ + "f35192c5bebabbb9b7c80ad2d109723b407539e9", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-017-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "first-letter-punctuation-018.xht": [ - "47a038207dcbf3477e7bb0b0579d7154740f5b0f", + "malformed-decl-004.xht": [ + "f803ed5bafbb9ef41acc5635536ea2a9abe731c5", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-018-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "first-letter-punctuation-019.xht": [ - "2ee11cfedc29afb2319780d4069bf07b2015c72d", + "malformed-decl-005.xht": [ + "01591b61ceb183266c4f13a1649ef1ccb497cb7f", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-019-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "first-letter-punctuation-020.xht": [ - "97a56425be5f66f3460c54e8c7a2476837ecbd4a", + "malformed-decl-006.xht": [ + "79adb28e01ae94362035df98c8a7991fa831bed0", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-020-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "first-letter-punctuation-021.xht": [ - "494e5b6dd1fa3f5a9f1f726387274aa53d9439ad", + "malformed-decl-007.xht": [ + "c79416d97808d73e94b52f72cb3a162532bb2edc", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-021-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "first-letter-punctuation-022.xht": [ - "bf8e058407b4df796dbe251cbee7be29ad831efa", + "malformed-decl-008.xht": [ + "b68ab7f046ec801e1c0202eaefe9f82617bc05b8", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-022-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "first-letter-punctuation-023.xht": [ - "25087ff0ff9c3a1af7a65b5db391040d7bfcd6f8", + "malformed-decl-block-001.xht": [ + "8e389615ceca0414d110b9eed2d051ff18d85243", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-023-ref.xht", + "/css/CSS2/syntax/malformed-decl-block-001-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-024.xht": [ - "9a4033da742be8b8903d9df41b390b38cf19edd2", + "matching-brackets-001.xht": [ + "e1520ddd6f03e28764782e692234f0aa8cc140e4", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-024-ref.xht", + "/css/CSS2/syntax/matching-brackets-001-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-025.xht": [ - "a8e3ee2615437a9a91f9ae146f70383af35810b5", + "matching-brackets-002.xht": [ + "1812984e9a405bc6eed6629da5d77535eed6056e", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-025-ref.xht", + "/css/CSS2/syntax/matching-brackets-002-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-026.xht": [ - "f22f680debc53f02012daf0a16d167f6eadb2234", + "matching-brackets-003.xht": [ + "4ed40b34f40e1e42f3a6105d7d32ff974dbef0d6", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-026-ref.xht", + "/css/CSS2/syntax/matching-brackets-001-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-027.xht": [ - "dfc042359d37a1bdc3621ced6bf8202a43cb3fa8", + "quoted-keywords-001.xht": [ + "a34b1a31ea63d727187ed00170cf6e4f58d37aeb", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-027-ref.xht", + "/css/CSS2/reference/no-red-filler-text-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-028.xht": [ - "a15b9135f17fec2a5f2df7df11c39c127795b013", + "quoted-keywords-002.xht": [ + "0fc31abc3dc18e4c64e061acb488cc8931a61b89", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-028-ref.xht", + "/css/CSS2/reference/no-red-filler-text-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-029.xht": [ - "0dfa495d535ff93b9ec1f8466ed4e42f2812cadb", + "quoted-string-001.xht": [ + "4aeffd92e88e85f9d85168328ba68d795e620f8a", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-029-ref.xht", + "/css/CSS2/syntax/quoted-string-001-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-030.xht": [ - "2dd97315d26e958311f5e5bbeb76de96bea1a299", + "quoted-string-002.xht": [ + "fdaaff8443c3ed45a28324233162be18e730ed8e", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-030-ref.xht", + "/css/CSS2/syntax/quoted-string-002-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-031.xht": [ - "a7779c84c16dbef83e93e092983a35aa96468a98", + "quoted-string-003.xht": [ + "07e1a3e58a78ecfb8aa4a2a9db90093c1958eb0f", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-031-ref.xht", + "/css/CSS2/syntax/quoted-string-001-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-032.xht": [ - "f8107ba2cef5ae809a9e4b7ea3ab2ba049b84851", + "quoted-string-004.xht": [ + "059a15f833a6a551d9370a8eef53179d1c9d5ffb", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-032-ref.xht", + "/css/CSS2/syntax/quoted-string-002-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-033.xht": [ - "6e4e69a083a8a17d257db70d8562a74bff5ab041", + "scientific-notation-001.xht": [ + "d6aafc87f831d268cebc3d931bde87784fd6aedc", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-033-ref.xht", + "/css/CSS2/syntax/scientific-notation-001-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-034.xht": [ - "32b2f4a4134647faedd0c61ba752575866743727", + "sgml-comments-000.xht": [ + "6cdf5a11c30b95b1fcd872fac974abf626d64232", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-034-ref.xht", + "/css/CSS2/reference/ref-this-text-should-be-green.xht", "==" ] ], {} ] ], - "first-letter-punctuation-035.xht": [ - "7ed901d475b8d4db257fdae679b7eddd01e9cb74", + "sgml-comments-001.xht": [ + "e59c8e861ad051c21b31371ea47d1fdec3b05119", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-035-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "first-letter-punctuation-036.xht": [ - "3af8a547673d5dfe54632dca8f63f2c4616a69f9", + "sgml-comments-002.xht": [ + "c26e3102267c6f104e1b651f6e87c17dd42ebcb1", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-036-ref.xht", + "/css/CSS2/syntax/sgml-comments-002-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-037.xht": [ - "eaf49752e5f0ab6cd5d3a9fd245315b9f7a93200", + "signed-numbers-001.xht": [ + "6c3c54779f40ba30d090b9e4dcb3b49e5dce2727", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-037-ref.xht", + "/css/CSS2/syntax/signed-numbers-001-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-038.xht": [ - "40fac388f71fb520c4160341f03126b06f2b358d", + "signed-numbers-002.xht": [ + "cf38d7aed6877518fb71f92fd2b5fa7697ea7376", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-038-ref.xht", + "/css/CSS2/syntax/signed-numbers-001-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-039.xht": [ - "3a4e3f496e423995fc63794fdae8caa0a13f2f57", + "square-brackets-001.xht": [ + "fd3bed7f48b9f15923a6728b949986c5f8a8f289", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-039-ref.xht", + "/css/CSS2/reference/ref-this-text-should-be-green.xht", "==" ] ], {} ] ], - "first-letter-punctuation-040.xht": [ - "31a10d66e73ec9b489b74f3b1d63802a44c153f4", + "strings-000.xht": [ + "185941c49222e3bfd326eca63b5ed24c9d8e1d6b", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-040-ref.xht", + "/css/CSS2/reference/ref-this-text-should-be-green.xht", "==" ] ], {} ] ], - "first-letter-punctuation-041.xht": [ - "576cf6862aba9e08ef499ae12a5dbf2c74a08962", + "unterminated-string-001.xht": [ + "276d88f3451364c1ba368675679dd0e5cd4290e3", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-041-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "first-letter-punctuation-042.xht": [ - "2daa4fbfebaa838911e2acb627ebee2832171a1d", + "uri-001.xht": [ + "55e389bf86b74c7a8c6fbd1a8a4ae01de3b151d3", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-042-ref.xht", + "/css/CSS2/reference/filler-text-below-green.xht", "==" ] ], {} ] ], - "first-letter-punctuation-043.xht": [ - "507bc4705cb3d09f9a073ea4267a5216ed7725d9", + "uri-002.xht": [ + "c58748593e11eb6a6a1df584740f9e6b1fc95d8b", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-043-ref.xht", + "/css/CSS2/reference/no-red-filler-text-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-044.xht": [ - "6ae40aa3de56ca9ffbe427feb2c95f0ce3c88d88", + "uri-003.xht": [ + "b0520fa68994a2836fa1099b67da883d7cb79957", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-044-ref.xht", + "/css/CSS2/reference/no-red-filler-text-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-045.xht": [ - "3c9f295b0c86f1e599889ef6082187a5bf86f37a", + "uri-004.xht": [ + "2b46909e966cbcb448b2f0cca10af164949303f8", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-045-ref.xht", + "/css/CSS2/reference/ref-green-background.xht", "==" ] ], {} ] ], - "first-letter-punctuation-046.xht": [ - "f041501af5347c276022768c365fa650f0229155", + "uri-005.xht": [ + "0f69207e4cb69f8ed9c609f94027510c9c12d0fe", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-046-ref.xht", + "/css/CSS2/reference/ref-green-background.xht", "==" ] ], {} ] ], - "first-letter-punctuation-047.xht": [ - "0b71f709923886255fd3659949ce24e5329a6340", + "uri-006.xht": [ + "2895d230103731d24996f331b9b03d6607e96b04", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-047-ref.xht", + "/css/CSS2/reference/no-red-filler-text-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-048.xht": [ - "f7d1425bc8dfbc6cfe7421fd6cba99d6e5bd169a", + "uri-007.xht": [ + "62259e1452c7383cff6ccc399549e27774b20cbf", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-048-ref.xht", + "/css/CSS2/reference/no-red-filler-text-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-049.xht": [ - "d1eb52f122de10c7fb9447e1db9833cbf2970cc2", + "uri-008.xht": [ + "14804b442319aec6f3f8db07c95265a3cfee963c", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-049-ref.xht", + "/css/CSS2/reference/no-red-filler-text-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-050.xht": [ - "e2f387f37b58bd139ad2f79c3ead147e3da1c650", + "uri-009.xht": [ + "036c9c2b4e9ef5311607ce2269443cba5e2f31ba", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-050-ref.xht", + "/css/CSS2/reference/no-red-filler-text-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-051.xht": [ - "41d19750079aa150f3ffd028bfdfcb626324e1f8", + "uri-010.xht": [ + "d88d5d34498fb7080600d874495c5f0297879df7", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-051-ref.xht", + "/css/CSS2/reference/no-red-filler-text-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-052.xht": [ - "08a2fcdb65bff77652fe43315a09fd69dca101dc", + "uri-011.xht": [ + "87b1ebc044608a7151a5257e588b63b7b1dac86b", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-052-ref.xht", + "/css/CSS2/reference/no-red-filler-text-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-053.xht": [ - "78b78861d83f73e7ddebe87ac4a60c8a4a5d2e0d", + "uri-012.xht": [ + "e53030135b59f56fa81a83e9282d43f5602f347e", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-053-ref.xht", + "/css/CSS2/syntax/uri-012-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-054.xht": [ - "4d2abfa4309f29bdb6d61c5589693dc47d5737a3", + "uri-013.xht": [ + "24bd73f61d983d2119ef51e0d60eea932b151f8b", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-054-ref.xht", + "/css/CSS2/syntax/uri-013-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-055.xht": [ - "c4e6ed381121a16d29018b72e1d46913e45862d7", + "uri-014.xht": [ + "a854c075cfc8075271ca1aaf34092ad78812ed3e", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-055-ref.xht", + "/css/CSS2/reference/ref-green-background.xht", "==" ] ], {} ] ], - "first-letter-punctuation-056.xht": [ - "00f91a84c2de1a65c16b0138519d52459a3e61bf", + "uri-015.xht": [ + "ed247f279cf61f1819601b5fb3babd42dae9a092", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-056-ref.xht", + "/css/CSS2/reference/ref-green-background.xht", "==" ] ], {} ] ], - "first-letter-punctuation-057.xht": [ - "f9705a0857e12602e5b9311de5e09f975dd4b7e6", + "uri-016.xht": [ + "0be5565c4ade0ae763bcbf31c79bf76a69d0e42a", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-057-ref.xht", + "/css/CSS2/syntax/uri-016-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-058.xht": [ - "de40bf1d3a6c0af8e6595d457e58b1e889685d7c", + "uri-017.xht": [ + "c3989a1ee6f396008b5fbc1125e2e0520b2129fd", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-058-ref.xht", + "/css/CSS2/syntax/uri-017-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-059.xht": [ - "c9c8a6f2812695a812fec6a7dc630c410aa3cdce", + "uri-018.xht": [ + "040828b163dcc86b2a162046d302c573e9f1c148", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-059-ref.xht", + "/css/CSS2/reference/ref-this-text-should-be-green.xht", "==" ] ], {} ] ], - "first-letter-punctuation-060.xht": [ - "d0d05546169a8eb7e9758bf5e2e16c3198a12bae", + "whitespace-001.xht": [ + "cde16d1a14323754c27d97d8f15737e58b802001", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-060-ref.xht", + "/css/CSS2/reference/no-red-filler-text-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-061.xht": [ - "862f19196e7131f42c8f04408eb7229c3254528f", + "whitespace-002.xht": [ + "ef0062c815dffeabf3558d7421709393dcca5d08", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-061-ref.xht", + "/css/CSS2/reference/no-red-filler-text-ref.xht", "==" ] ], {} ] - ], - "first-letter-punctuation-062.xht": [ - "9bb80cc74b22c9c099cc649ffb6ff39daab2322d", + ] + }, + "tables": { + "anonymous-table-box-width-001.xht": [ + "15bd4893650b36f953d2f84e2c42c5a280dcd625", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-062-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "first-letter-punctuation-063.xht": [ - "09ec1aa24c9c13e191290b60bfc2c305c69f61a0", + "border-collapse-005.html": [ + "0f3fabce3a47c7ee43507e7ed59812a9af22c245", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-063-ref.xht", + "/css/CSS2/tables/border-collapse-005-ref.html", "==" ] ], {} ] ], - "first-letter-punctuation-064.xht": [ - "c3910640518080bacc1cd9dd4e36c5b22e82bf7f", + "border-collapse-applies-to-016.xht": [ + "f102d6a799b195388f57396024532947e3357303", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-064-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-065.xht": [ - "0a7ac3ef648332ea3982c342e273f5d0654d8da7", + "border-collapse-dynamic-cell-001.xht": [ + "821dfc3fe893b08a93082e9c97cb99af2768bc71", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-065-ref.xht", + "/css/CSS2/tables/border-collapse-dynamic-cell-001-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-066.xht": [ - "33357b11f6acba4b0abfeb9f6393aa48e5f959b7", + "border-collapse-dynamic-cell-002.xht": [ + "1c1928a004f8738ef723bf4443ebab916ed978e5", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-066-ref.xht", + "/css/CSS2/tables/border-collapse-dynamic-cell-002-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-067.xht": [ - "4c656197b8b7efd659b95e7cc463b81d141fdbca", + "border-collapse-dynamic-cell-003.xht": [ + "7ef31d25194b746efe563dc567e5c02e1536ae35", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-067-ref.xht", + "/css/CSS2/tables/border-collapse-dynamic-cell-003-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-068.xht": [ - "c24a96d5197e4237156678978b35f9236f10fd21", + "border-collapse-dynamic-cell-004.xht": [ + "ff92f9dcca0540f4a41552c1367e687c7a69da01", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-068-ref.xht", + "/css/CSS2/tables/border-collapse-dynamic-cell-004-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-069.xht": [ - "faabd378d0499edc3c3da38dedc634997f55368a", + "border-collapse-dynamic-cell-005.xht": [ + "0bd00bd17eda89d338578e670d3e7892145b8401", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-069-ref.xht", + "/css/CSS2/tables/border-collapse-dynamic-cell-005-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-070.xht": [ - "9c5f791ca56a590993a94f420a3d36217e4a5581", + "border-collapse-dynamic-colgroup-001.xht": [ + "66d9700192fe803c4ce157878aae7d26c2447656", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-070-ref.xht", + "/css/CSS2/tables/border-collapse-dynamic-colgroup-001-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-071.xht": [ - "045e338a5954ad7dcd6213dd4454fb7230d1eb93", + "border-collapse-dynamic-colgroup-002.xht": [ + "e42dc3ac633d14922b0d11d918a038cfe552bc64", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-071-ref.xht", + "/css/CSS2/tables/border-collapse-dynamic-colgroup-002-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-072.xht": [ - "45fbdab289ec7791aee4ec1e78c1123f4bb2a456", + "border-collapse-dynamic-colgroup-003.xht": [ + "15cf88b1582ee968954792f9925897cbef3f13f8", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-072-ref.xht", + "/css/CSS2/tables/border-collapse-dynamic-colgroup-003-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-073.xht": [ - "282693a9bf2e6d6e40d86054cc6294c41c513122", + "border-collapse-dynamic-column-001.xht": [ + "44210248c883d994c38c6c1818d080324ed74529", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-073-ref.xht", + "/css/CSS2/tables/border-collapse-dynamic-colgroup-001-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-074.xht": [ - "7f8f41d26a46f052b7d80bcd98f4f8e42de962a4", + "border-collapse-dynamic-column-002.xht": [ + "8a488dd5e27f988150b75a4e3fd819f5787c5d3d", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-074-ref.xht", + "/css/CSS2/tables/border-collapse-dynamic-colgroup-002-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-075.xht": [ - "261acb410af531f0734ba30d6e9c0676b281d8dc", + "border-collapse-dynamic-column-003.xht": [ + "5acb0f050159662b3c905e8266e8d96a40d8e321", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-075-ref.xht", + "/css/CSS2/tables/border-collapse-dynamic-colgroup-003-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-076.xht": [ - "cbd9d0008b94f95f0732dbd3f7fae1a13510723e", + "border-collapse-dynamic-row-001.xht": [ + "7c6e724342ede3e1c99137b1bb831ba8ba1d072a", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-076-ref.xht", + "/css/CSS2/tables/border-collapse-dynamic-rowgroup-001-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-077.xht": [ - "3d4f7f9232fd5b7901364a496945b63ce83030f2", + "border-collapse-dynamic-row-002.xht": [ + "129e152a106635629ef023b09a1a64f65d166921", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-077-ref.xht", + "/css/CSS2/tables/border-collapse-dynamic-rowgroup-002-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-078.xht": [ - "03371a8230f970cc009c7ab531a361c437685528", + "border-collapse-dynamic-row-003.xht": [ + "8b700d89835d304e0aa04839cf5ad6c321c714b8", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-078-ref.xht", + "/css/CSS2/tables/border-collapse-dynamic-rowgroup-003-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-079.xht": [ - "f1ec8ad86f4555e308cff54e7b17d004bf06ddf8", + "border-collapse-dynamic-rowgroup-001.xht": [ + "e4812a156ed290c52669b8ad1e6b03de379e61dd", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-079-ref.xht", + "/css/CSS2/tables/border-collapse-dynamic-rowgroup-001-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-080.xht": [ - "eeca4c86070d004f7f63f03d51164a95624b84c2", + "border-collapse-dynamic-rowgroup-002.xht": [ + "a456eb6c6813bfb64b9a2c616332b573a2580d2e", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-080-ref.xht", + "/css/CSS2/tables/border-collapse-dynamic-rowgroup-002-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-081.xht": [ - "88e61df5b4411c089acd1828d0371f21414a79c1", + "border-collapse-dynamic-rowgroup-003.xht": [ + "703d6d7a37947e05b38087353db98c72fc0d54cc", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-081-ref.xht", + "/css/CSS2/tables/border-collapse-dynamic-rowgroup-003-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-082.xht": [ - "f77f4584d2f4c4bc24451f1d9156aa6e71800f32", + "border-collapse-dynamic-table-001.xht": [ + "23988d0f4b91a35465a959d1ca9e3d783ddcfca0", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-082-ref.xht", + "/css/CSS2/tables/border-collapse-dynamic-table-001-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-083.xht": [ - "e21a9d4c271a64989c72784acc3a89a7725d2646", + "border-collapse-dynamic-table-002.xht": [ + "77e57f1cf290007fe7ef4b2ed26c747876e4f1a0", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-083-ref.xht", + "/css/CSS2/tables/border-collapse-dynamic-table-002-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-084.xht": [ - "022b0a603966efed065b31ece02ae9cf634f4086", + "border-collapse-dynamic-table-003.xht": [ + "162eb9f74b168d81fa6e23ca59905f972b343d9e", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-084-ref.xht", + "/css/CSS2/tables/border-collapse-dynamic-table-003-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-085.xht": [ - "243a451459089cb72eb489d78fb1e399bfeab427", + "border-collapse-empty-row.html": [ + "c4114a145df0c18ee6745c3cb3e74388609a9eb9", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-085-ref.xht", + "/css/CSS2/tables/border-collapse-empty-row-ref.html", "==" ] ], {} ] ], - "first-letter-punctuation-086.xht": [ - "6b70b17da86315651991fe1bd5ed448186776615", + "border-collapse-offset-001.xht": [ + "68dde59a0ccd3249680b24abe6a9c837b7741de6", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-086-ref.xht", + "/css/CSS2/tables/border-collapse-offset-001-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-087.xht": [ - "5f685054142a457d24e6d410b13cbaafe8774086", + "border-collapse-offset-002.xht": [ + "3b1c6b6f25a9bfffe72ee08f96b975b318565231", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-087-ref.xht", + "/css/CSS2/tables/border-collapse-offset-002-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-088.xht": [ - "af0761bc2882a23d3559724bd4457fe4d84f9c99", + "border-conflict-element-001a.xht": [ + "585957f13b22ec2d0208f07deb127698d15ddea5", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-088-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "first-letter-punctuation-089.xht": [ - "d24d4ecf171366a6bf5f8b1b6c982c1059d6a9c2", + "border-conflict-element-001b.xht": [ + "cc8331cf0bd91892af9216505016af9af1e991c3", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-089-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "first-letter-punctuation-090.xht": [ - "a2bd9439ddf732460b54a463dcf304f6f905527b", + "border-conflict-element-001c.xht": [ + "1c42b86f94e4b1dbca279e3efd4a04d12eefa101", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-090-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "first-letter-punctuation-091.xht": [ - "7ca2556d1ae88160e5e01dc415cefed770bca8d8", + "border-conflict-element-001d.xht": [ + "bddd4781d834348079cf3cbf49a15cf6de47a0d6", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-091-ref.xht", + "/css/CSS2/tables/border-conflict-element-001d-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-092.xht": [ - "331c605a92a1a63b7b10e512a6b65682c81bea18", + "border-conflict-element-001e.xht": [ + "0e4b72376756b647f6a225dbfec6db9f7690149d", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-092-ref.xht", + "/css/CSS2/tables/border-conflict-element-001e-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-093.xht": [ - "a794c7650aeb91a73c64af7a09420e5319917b61", + "border-spacing-applies-to-016.xht": [ + "0536763244237b77645937fe30e4898f1efcbfb5", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-093-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-094.xht": [ - "a885b05a0dc81e9da480a8039fea966710167779", + "border-spacing-percentage-001.xht": [ + "ff30ff84cd2fb0beec1713fc9b9c1fb8765a3737", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-094-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "first-letter-punctuation-095.xht": [ - "ecbf1cb9eaaa06328ff54ced7739ef8881c5d96a", + "caption-position-001.xht": [ + "788d261c74c3a6a5f185c790e756add25c3f1eb9", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-095-ref.xht", + "/css/CSS2/tables/caption-position-001-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-096.xht": [ - "c1e8a2efd3a078922c47edd7864604c00a0644da", + "caption-side-applies-to-001.xht": [ + "5aa551686b2c67bc64279347e597b3f51fe78c1e", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-096-ref.xht", + "/css/CSS2/tables/caption-side-applies-to-001-ref.html", "==" ] ], {} ] ], - "first-letter-punctuation-097.xht": [ - "46561ae196a3b2d51fefa8ccc29edeb84ba35773", + "caption-side-applies-to-002.xht": [ + "5d726017e7ec9203eb2b0904a1691d122fdfdc07", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-097-ref.xht", + "/css/CSS2/tables/caption-side-applies-to-002-ref.html", "==" ] ], {} ] ], - "first-letter-punctuation-098.xht": [ - "40dadf1db935b036f22f2e9b769a7a5f244d316f", + "caption-side-applies-to-003.xht": [ + "1ab24370217ea234f23e0bc8e5e2c0793d413beb", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-098-ref.xht", + "/css/CSS2/tables/caption-side-applies-to-003-ref.html", "==" ] ], {} ] ], - "first-letter-punctuation-099.xht": [ - "6fa1d50751711e127f7afcc6737e28a66561c7f4", + "caption-side-applies-to-005.xht": [ + "e48d3072f6cd9dbfc408949a9a58f5335c676103", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-099-ref.xht", + "/css/CSS2/tables/caption-side-applies-to-001-ref.html", "==" ] ], {} ] ], - "first-letter-punctuation-100.xht": [ - "67b008c2b41230b6b572105913bafe8c92a53b9d", + "caption-side-applies-to-006.xht": [ + "1f5a3d9bcc2290e325d88041310a951a6eac2aad", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-100-ref.xht", + "/css/CSS2/tables/caption-side-applies-to-006-ref.html", "==" ] ], {} ] ], - "first-letter-punctuation-101.xht": [ - "98084a511e1ad004299748d178eb58da37f46a5a", + "caption-side-applies-to-007.xht": [ + "4d6a5af8490cbcad1cd05a9073a5b46400318256", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-101-ref.xht", + "/css/CSS2/tables/caption-side-applies-to-006-ref.html", "==" ] ], {} ] ], - "first-letter-punctuation-102.xht": [ - "5c806b63241774045363ad4861c6c1a51dc81a64", + "caption-side-applies-to-008.xht": [ + "5a037a960d79315891f95970bcf72df2e1ae606e", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-102-ref.xht", + "/css/CSS2/tables/caption-side-applies-to-008-ref.html", "==" ] ], {} ] ], - "first-letter-punctuation-103.xht": [ - "7a0ede4de91c84bc44c022cd8c5d0afd2ffc2805", + "caption-side-applies-to-009.xht": [ + "cd4061736f14efa925ae20af9b483c471b3439c1", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-103-ref.xht", + "/css/CSS2/tables/caption-side-applies-to-008-ref.html", "==" ] ], {} ] ], - "first-letter-punctuation-104.xht": [ - "3874e2b87e567888b4a264c169dfff4981bb991d", + "caption-side-applies-to-010.xht": [ + "bf7eda64706e6205864c76ae549ac95c64e9d083", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-104-ref.xht", + "/css/CSS2/tables/caption-side-applies-to-008-ref.html", "==" ] ], {} ] ], - "first-letter-punctuation-105.xht": [ - "888e067e4c91b9bf78651f0a35db92f483688212", + "caption-side-applies-to-011.xht": [ + "7ed7018f5902396a3601ce68cce5fb1e10a46a05", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-105-ref.xht", + "/css/CSS2/tables/caption-side-applies-to-008-ref.html", "==" ] ], {} ] ], - "first-letter-punctuation-106.xht": [ - "c276ab864c1a7cff42032de0cb8f234ca3c3a504", + "caption-side-applies-to-012.xht": [ + "88170c3757da262d2291e2a26aac37a3b7000b71", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-106-ref.xht", + "/css/CSS2/tables/caption-side-applies-to-008-ref.html", "==" ] ], {} ] ], - "first-letter-punctuation-107.xht": [ - "0107976a44a470c320c8662526b05318ffdc8bce", + "caption-side-applies-to-013.xht": [ + "fbd6b39925327fb62a6608231171a3f23d470d0d", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-107-ref.xht", + "/css/CSS2/tables/caption-side-applies-to-008-ref.html", "==" ] ], {} ] ], - "first-letter-punctuation-108.xht": [ - "e3660d543daac9e68d810b381ee646c756d019d4", + "caption-side-applies-to-014.xht": [ + "300ae9887aa2a52656905870bc77e40b4f6fdd9b", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-108-ref.xht", + "/css/CSS2/tables/caption-side-applies-to-008-ref.html", "==" ] ], {} ] ], - "first-letter-punctuation-109.xht": [ - "ccaf207ebf9843d585d4e3f0f4483563f773abcb", + "caption-side-applies-to-015.xht": [ + "60092d898202698aaedc628dc334061de70e4ac4", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-109-ref.xht", + "/css/CSS2/tables/caption-side-applies-to-006-ref.html", "==" ] ], {} ] ], - "first-letter-punctuation-110.xht": [ - "0e5e444372dc19103d09c2136b465b794bd8d04a", + "caption-side-applies-to-016.xht": [ + "878d1e55fdeb21611430f8d08c98f20486453d35", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-110-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-111.xht": [ - "c0ca3c77a2216163afa16874d763f32d7e0dfad1", + "caption-side-applies-to-017.xht": [ + "e1398a8c0de2ee77567cfc75812d703dd41bfe52", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-111-ref.xht", + "/css/CSS2/tables/caption-side-applies-to-017-ref.html", "==" ] ], {} ] ], - "first-letter-punctuation-112.xht": [ - "7732fa9b5fcb9aa60d7f5f78bf29910ac96f5713", + "collapsing-border-model-001.xht": [ + "a05b71a9328badf9be3f6778c942ef7c0ef1b475", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-112-ref.xht", + "/css/CSS2/tables/collapsing-border-model-001-ref.html", "==" ] ], {} ] ], - "first-letter-punctuation-113.xht": [ - "af307eeaccac784644261f70e9c5b3b1b19f8d7a", + "collapsing-border-model-003.xht": [ + "15fc22cf9f0c8c36f1d732c95df5b5249503b897", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-113-ref.xht", + "/css/CSS2/tables/collapsing-border-model-003-ref.html", "==" ] ], {} ] ], - "first-letter-punctuation-115.xht": [ - "0d6d59b2f7c371fe19195682df1535a6d8dc4dbe", + "collapsing-border-model-004.xht": [ + "5701e4b6ce26dfb77f452f471d9877a89a4933eb", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-115-ref.xht", + "/css/CSS2/tables/collapsing-border-model-001-ref.html", "==" ] ], {} ] ], - "first-letter-punctuation-116.xht": [ - "a6efa89b3ed4c4a4c438cf188dcf14db53511900", + "collapsing-border-model-007.xht": [ + "ff7fd84a448fcb94712fcc313f79002e70b09c77", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-116-ref.xht", + "/css/CSS2/tables/collapsing-border-model-001-ref.html", "==" ] ], {} ] ], - "first-letter-punctuation-117.xht": [ - "1a7118ad400275794838de3806dd79dfed0dd7c4", + "collapsing-border-model-008.xht": [ + "c9ab0b231eb4f3b8ac67687e7f970ae0ea2a2343", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-117-ref.xht", + "/css/CSS2/tables/collapsing-border-model-001-ref.html", "==" ] ], {} ] ], - "first-letter-punctuation-118.xht": [ - "57dab266469ab30a267e64ca7c217107c2a39ff1", + "collapsing-border-model-009.xht": [ + "e85671f44aa5a4f867869512da8700f8dbad315b", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-118-ref.xht", + "/css/CSS2/tables/collapsing-border-model-003-ref.html", "==" ] ], {} ] ], - "first-letter-punctuation-119.xht": [ - "7ab1a689abca5ce3066988c31eb948c2ff1165c9", + "collapsing-border-model-010a.xht": [ + "dc3072cef69227038a7dea77fea81e3d623dcb4c", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-119-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "first-letter-punctuation-120.xht": [ - "6913c4a92daa39ccab61b25baebfb285c210a969", + "collapsing-border-model-010b.xht": [ + "7b341ae945d222b586f554279ce035aa1b8c94d6", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-120-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "first-letter-punctuation-121.xht": [ - "578b0132dccd1634a77ac1c2cc35246808b3fd03", + "column-visibility-004.xht": [ + "60d233fa9402f0b57a45f299405dacca5abc8ee6", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-121-ref.xht", + "/css/CSS2/tables/column-visibility-004-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-122.xht": [ - "8fe70091282312aed9094473c9bce887ae45b25b", + "empty-cells-applies-to-008.xht": [ + "831b355642601b93f16dfb0566a63a700fb772de", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-122-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-123.xht": [ - "a59cf3cd34cef3191c774875d70585d8af84dd35", + "empty-cells-applies-to-009.xht": [ + "6bc744278c5f1066ccea0636dcd83e4b0abaab16", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-123-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-124.xht": [ - "04ef93b8c9f38f0c519f675bea75219f2f037bdb", + "empty-cells-applies-to-010.xht": [ + "60b50fcde62a69dcbb4db1a417ecce015ba2e2c1", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-124-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-125.xht": [ - "363590757a619d775071414c8d10766d0f11133a", + "empty-cells-applies-to-011.xht": [ + "4ed0d3192203241e396b1b884557a18332009126", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-125-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-126.xht": [ - "ab82cc41fd6de2d1974e77d0f05b0a07692a586c", + "empty-cells-applies-to-012.xht": [ + "6df3f292ee9b16d51dad07eecde6dd1c427caa0b", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-126-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-127.xht": [ - "13380a3da96083d19bdf93dc5a38fae060a25ba2", + "empty-cells-applies-to-013.xht": [ + "94e817f6c57d65643e002d7bc5324fc3e5a00341", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-127-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-128.xht": [ - "75aaa34e9ecd28bd31b4a1e92bccfa5d441d16e6", + "empty-cells-applies-to-014.xht": [ + "9ef632247b9849b2a9e81485268cd7f255360a31", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-128-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-129.xht": [ - "6bcf5de48fc5a93021600b28f54b209e89a0d90f", + "empty-cells-applies-to-016.xht": [ + "9edff8fafc13954b1a964cc811cd0a891b14be90", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-129-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-130.xht": [ - "83a383f4cce7559818711078e50b1216b2d7d331", + "empty-cells-applies-to-017.xht": [ + "155f47e62e52f7e1b7e135853281a8c243587ff1", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-130-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-131.xht": [ - "d8356197c682c79dfb9ff69422587cfe4c174ad7", + "fixed-table-layout-002a.xht": [ + "ddab625d141993160c38879b07ab36e3b3b2a084", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-131-ref.xht", + "/css/CSS2/tables/fixed-table-layout-002a-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-132.xht": [ - "d0c4375108bcbb55286a418be09bf8d9b59f7fd4", + "fixed-table-layout-003a01.xht": [ + "08a82ba78f526e3f9c31a2d0d61fc3b6e2509da2", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-132-ref.xht", + "/css/CSS2/tables/fixed-table-layout-003a01-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-133.xht": [ - "08c32232eb478133d21a8b6595d339c2e903792d", + "fixed-table-layout-003a02.xht": [ + "135deaa08a2a06e980ac347dc6a156f002b0fada", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-133-ref.xht", + "/css/CSS2/tables/fixed-table-layout-003a02-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-134.xht": [ - "d3cda55a7178d28e3ccc689829f7f830df51a533", + "fixed-table-layout-003a03.xht": [ + "26d964fc75e27ac010cc4ea9dfa988cb49867461", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-134-ref.xht", + "/css/CSS2/tables/fixed-table-layout-003a01-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-135.xht": [ - "b20831b7812a0798cd62ee715eb19f5846978f2a", + "fixed-table-layout-003a04.xht": [ + "7f577de366688d837addf2fa414c02b7d6f4041a", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-135-ref.xht", + "/css/CSS2/tables/fixed-table-layout-003a02-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-136.xht": [ - "a0b8736f972c828d9a97f6656e1a6190baf5f6e4", + "fixed-table-layout-003a05.xht": [ + "a114b4e039088803208cc71949310b809e44aa00", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-136-ref.xht", + "/css/CSS2/tables/fixed-table-layout-003a01-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-137.xht": [ - "72d2a64e990f446afe528619eda4668c086d9813", + "fixed-table-layout-003a06.xht": [ + "628ad8818e02b7b002c9175a3ad731a2ea06a0a4", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-137-ref.xht", + "/css/CSS2/tables/fixed-table-layout-003a02-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-138.xht": [ - "fbe2133428486af28014dd3ec69d7e10c2d8abb8", + "fixed-table-layout-003b01.xht": [ + "d2380d287266f8fc6de238a51a939114d2a8e7d0", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-138-ref.xht", + "/css/CSS2/tables/fixed-table-layout-003b01-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-139.xht": [ - "9e9251f7eaa8dc47b349652aad561ff0e0190afe", + "fixed-table-layout-003b02.xht": [ + "624ac496b5746469825d8b11ec74e47be0549536", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-139-ref.xht", + "/css/CSS2/tables/fixed-table-layout-003b02-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-140.xht": [ - "daa1e0e40836c8dc2658f3cd3c722cb86a7086af", + "fixed-table-layout-003b03.xht": [ + "281191b2a12ac5123192dbc954a50ea3dd4be470", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-140-ref.xht", + "/css/CSS2/tables/fixed-table-layout-003b01-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-141.xht": [ - "1f5836953c9dc858d5a2f77dd9d915f88ec5cb3d", + "fixed-table-layout-003b04.xht": [ + "275bad19d86d1aee0b42c5bbdf09da11fe841b3c", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-141-ref.xht", + "/css/CSS2/tables/fixed-table-layout-003b02-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-142.xht": [ - "500a7223473a55339ee2659d8fdeec3040e276e8", + "fixed-table-layout-003b05.xht": [ + "f8cc775674b7ca364b338b6f7e34a83f868cab66", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-142-ref.xht", + "/css/CSS2/tables/fixed-table-layout-003b01-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-143.xht": [ - "4ca39fa9239a9f0f37aed2952e17f582d5d3511c", + "fixed-table-layout-003b06.xht": [ + "5466743f4abce2edc90541819e48c254ba4de5c8", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-143-ref.xht", + "/css/CSS2/tables/fixed-table-layout-003b02-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-144.xht": [ - "ce1fea228219dba48c20ebc473a102aa8ff98b2c", + "fixed-table-layout-003b07.xht": [ + "aeb12b6a8bed7d300759cd23e4a34280c73c4944", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-144-ref.xht", + "/css/CSS2/tables/fixed-table-layout-003b07-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-145.xht": [ - "58697f042d4345d006cf028b55a66b854ea3146f", + "fixed-table-layout-003b08.xht": [ + "5ca06870b3f0cc0e8fd149b34810e4017de9650d", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-145-ref.xht", + "/css/CSS2/tables/fixed-table-layout-003b08-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-146.xht": [ - "73ebfb56c22811c57f85dfe49ef0cc183b063c14", + "fixed-table-layout-003b09.xht": [ + "286e36c9e9db2268916ef03cfad4d16a365e37da", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-146-ref.xht", + "/css/CSS2/tables/fixed-table-layout-003b09-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-147.xht": [ - "cc79bcc81489e05b4498e2f8a5421db1fe54dee0", + "fixed-table-layout-003b10.xht": [ + "27ee5d0f16f11eee0390121b0e476d0567e76f77", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-147-ref.xht", + "/css/CSS2/tables/fixed-table-layout-003b10-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-148.xht": [ - "d3bb7892761e8cd5095565629e4d1893652b349a", + "fixed-table-layout-003b11.xht": [ + "a541c1e8f04733ae46c3036df8bc201e1040ed86", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-148-ref.xht", + "/css/CSS2/tables/fixed-table-layout-003b11-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-149.xht": [ - "c962cce2fd6b8b4efe3033ff411fd49f53da24b5", + "fixed-table-layout-003b12.xht": [ + "bdb6307cb01873b145a702f6b6fa6989c85ec8b0", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-149-ref.xht", + "/css/CSS2/tables/fixed-table-layout-003b12-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-150.xht": [ - "51c772702c5b8eb5925e1752673e1c37cbc10d95", + "fixed-table-layout-003c01.xht": [ + "498006acac7cf907b917effc6ddd8d57d57f19ad", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-150-ref.xht", + "/css/CSS2/tables/fixed-table-layout-003c01-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-151.xht": [ - "0019485ebe999078a27c39882083c93f3632891e", + "fixed-table-layout-003c02.xht": [ + "64b4cbdbcb9ea7b809ed9d809cf892bbcb2a0270", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-151-ref.xht", + "/css/CSS2/tables/fixed-table-layout-003c02-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-152.xht": [ - "b79bd51dc664e53842bd7d024ec69ba75409febc", + "fixed-table-layout-003c03.xht": [ + "294b2c756ad87d757c9c7f5d25bbfb451eadc449", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-152-ref.xht", + "/css/CSS2/tables/fixed-table-layout-003c03-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-153.xht": [ - "785791f50c17d4f3f9ab493f7bc9aefcda766276", + "fixed-table-layout-003c04.xht": [ + "9c1c4abf09df9af879685b4bf15e5a9a08d00e73", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-153-ref.xht", + "/css/CSS2/tables/fixed-table-layout-003c04-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-154.xht": [ - "a77f5576ffefa4127d279cdff8f147d50ee53c60", + "fixed-table-layout-003c05.xht": [ + "c3e4e2c79632ca202f49f9ae7ebe3cbf97ab89d3", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-154-ref.xht", + "/css/CSS2/tables/fixed-table-layout-003c05-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-155.xht": [ - "ec8fa7fdbfa9fcb31ad8521c7f4520ec0a24b155", + "fixed-table-layout-003c06.xht": [ + "fa05da69563da8135f810a234330a4628001ffe5", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-155-ref.xht", + "/css/CSS2/tables/fixed-table-layout-003c06-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-156.xht": [ - "d34fcc00c26e2f99ce6732dff9b132abc1cd87e6", + "fixed-table-layout-003c07.xht": [ + "a3034ade4fa96afd925685d97e9e968557e1ab1b", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-156-ref.xht", + "/css/CSS2/tables/fixed-table-layout-003c07-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-157.xht": [ - "76819db9ea194fca00e4e3cc5b87012c1a6eeaa2", + "fixed-table-layout-003c08.xht": [ + "2193e3faa5d4298eaa6987f632277148ea2148b0", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-157-ref.xht", + "/css/CSS2/tables/fixed-table-layout-003c08-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-158.xht": [ - "d2eb7cd20ae92d818b6b57e0bb400c36f9ca9f38", + "fixed-table-layout-003d01.xht": [ + "ae1a6549dc601c5da6e212404827be8e73487bb1", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-158-ref.xht", + "/css/CSS2/tables/fixed-table-layout-003d01-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-159.xht": [ - "fc067d798c83cf48a82c4ea8b0fff8ebca62c2d1", + "fixed-table-layout-003d02.xht": [ + "e0920acb71b0555576d5efcaff15b4ac620322a7", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-159-ref.xht", + "/css/CSS2/tables/fixed-table-layout-003d02-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-160.xht": [ - "8007ec0b4fbd523a54ed8b65d142c69243976f02", + "fixed-table-layout-003d03.xht": [ + "fa41b658e140cbe6f72e579a80437a69bb6a589f", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-160-ref.xht", + "/css/CSS2/tables/fixed-table-layout-003d01-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-161.xht": [ - "c425a5df991960cec1a921767db80e1086c0bfd9", + "fixed-table-layout-003d04.xht": [ + "9549cca33d065fc20d7df7380c581156fd7c7dbf", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-161-ref.xht", + "/css/CSS2/tables/fixed-table-layout-003d02-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-162.xht": [ - "ebd969ad7ac1b6c205d2be7bf88d4c7ea1c628cf", + "fixed-table-layout-003d05.xht": [ + "8606cddfb1c9649ceaa279fdcd7d595f68afade9", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-162-ref.xht", + "/css/CSS2/tables/fixed-table-layout-003d01-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-163.xht": [ - "ee671faf246ceb09b3b6684c0205dd8f9a71e096", + "fixed-table-layout-003d06.xht": [ + "c9b51be80d5134498907c67c02e9fe9aee7b87a0", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-163-ref.xht", + "/css/CSS2/tables/fixed-table-layout-003d02-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-164.xht": [ - "9c017c2db38c5d78c1d5e47001afb3214df723fa", + "fixed-table-layout-003e01.xht": [ + "f4572c52388896b2b0a0cf3476667113fd25171f", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-164-ref.xht", + "/css/CSS2/tables/fixed-table-layout-003e01-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-165.xht": [ - "4a8f9de7ca6d676b5b7ba5aeecb650eff6f4c753", + "fixed-table-layout-003e02.xht": [ + "af7c742e35cb4865d2135e1cbbc69f96f55a2d01", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-165-ref.xht", + "/css/CSS2/tables/fixed-table-layout-003e02-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-166.xht": [ - "17cb028f4af5670dccc56528cf52f6cabd9a25f7", + "fixed-table-layout-003e03.xht": [ + "62839c56d8f5df120371288a9a50bceebb571d08", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-166-ref.xht", + "/css/CSS2/tables/fixed-table-layout-003e01-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-167.xht": [ - "2b976e72908cc707c1b227d20229788128837baa", + "fixed-table-layout-003e04.xht": [ + "948d38433b487b3ce2fd7302586d053406b5f671", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-167-ref.xht", + "/css/CSS2/tables/fixed-table-layout-003e02-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-168.xht": [ - "d1a0365c23e0b2e4a8cf1f4460d75ed2df0ee9e3", + "fixed-table-layout-003e05.xht": [ + "5a8674be998ee014f13534e2d4a65e9131777250", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-168-ref.xht", + "/css/CSS2/tables/fixed-table-layout-003e01-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-169.xht": [ - "a4a77a609ddc539ebce8de6cf018d38bf1c96bd5", + "fixed-table-layout-003e06.xht": [ + "ced7998835d8a2f0929958b16f955980dabdbae4", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-169-ref.xht", + "/css/CSS2/tables/fixed-table-layout-003e02-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-170.xht": [ - "9027209c0c149c20b7d1ea941423141bd5778c0f", + "fixed-table-layout-003e07.xht": [ + "11a7ea49cda6b6945ae9fe542da4ce04cdb800c4", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-170-ref.xht", + "/css/CSS2/tables/fixed-table-layout-003e07-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-171.xht": [ - "3ae30066c7f0e8625b989595b23a71a85e31fe2c", + "fixed-table-layout-003e08.xht": [ + "30c7faa3c51ead19fde576be63a89ffc53baa1e0", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-171-ref.xht", + "/css/CSS2/tables/fixed-table-layout-003e08-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-172.xht": [ - "0e835531047e04111f1e3b3d392139a65ca26e53", + "fixed-table-layout-003e09.xht": [ + "906fcb226bc73ee7916f292bbed2010a0c7776dc", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-172-ref.xht", + "/css/CSS2/tables/fixed-table-layout-003e09-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-173.xht": [ - "533f203a7a2f44c1d2ad6e647580b04744cf21ae", + "fixed-table-layout-003e10.xht": [ + "fa6a9e20d45f1b94c06127c1689b74fbfe73e818", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-173-ref.xht", + "/css/CSS2/tables/fixed-table-layout-003e10-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-174.xht": [ - "0bd080fed51e3a36500b1fa6bccd6ca2b7d9a801", + "fixed-table-layout-003e11.xht": [ + "9324c04ebe6ffab7ea695ed2b01eeb21be8af55a", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-174-ref.xht", + "/css/CSS2/tables/fixed-table-layout-003e11-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-175.xht": [ - "23fb8524f82bc02fe78226daf922c6b17c759b2f", + "fixed-table-layout-003e12.xht": [ + "fc2ffaf98aad9350c869ae2cb9bef6c7845f4760", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-175-ref.xht", + "/css/CSS2/tables/fixed-table-layout-003e12-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-176.xht": [ - "1f1d7615c614438cc888a2b6cf4069093bc899fb", + "fixed-table-layout-003f01.xht": [ + "275e8645c0b0c8eefb956ad8509ae7c8a63b3007", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-176-ref.xht", + "/css/CSS2/tables/fixed-table-layout-003f01-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-177.xht": [ - "25df40858e1c18550a87ae39727c9c16c685e8ce", + "fixed-table-layout-003f02.xht": [ + "c8d885ce836dcde11ee739cbd34146287aa1208d", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-177-ref.xht", + "/css/CSS2/tables/fixed-table-layout-003f02-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-178.xht": [ - "55f34e02c05ea28820858264ee127c42815382e9", + "fixed-table-layout-003f03.xht": [ + "5493250e752c358627d36bbab3ccca0e4f620747", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-178-ref.xht", + "/css/CSS2/tables/fixed-table-layout-003f03-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-179.xht": [ - "81cc1505129130740f2ba70323a0fa2d4955c92e", + "fixed-table-layout-003f04.xht": [ + "f53e7b7128dd5f014c3b50fb2a61094a80668fa0", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-179-ref.xht", + "/css/CSS2/tables/fixed-table-layout-003f04-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-180.xht": [ - "cd02a730d050f1c3c2bfe2f1f4896dfdd6669ad3", + "fixed-table-layout-003f05.xht": [ + "dcaea8d05e6a6fe91dafea2222d36fcec47ed120", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-180-ref.xht", + "/css/CSS2/tables/fixed-table-layout-003f05-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-181.xht": [ - "2216dea9bbdbc799d05eb5254d21391903f010e1", + "fixed-table-layout-003f06.xht": [ + "339d321dd1b8ee0dd6185d3fefd4c10b93e0f400", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-181-ref.xht", + "/css/CSS2/tables/fixed-table-layout-003f06-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-182.xht": [ - "ded05f0f45b4a1c90511dcf1ba26b7d5a039a015", + "fixed-table-layout-003f07.xht": [ + "d922b876d7b76e07d2670afb4da2a75c75d7b18b", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-182-ref.xht", + "/css/CSS2/tables/fixed-table-layout-003f07-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-183.xht": [ - "9737341ca9dcd661cbe4c8022d5bbf508307cc5c", + "fixed-table-layout-003f08.xht": [ + "f03c2a3779b75f40e7a92d4cbab0cdb5a2fe159f", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-183-ref.xht", + "/css/CSS2/tables/fixed-table-layout-003f08-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-185.xht": [ - "c323bdad344fd61e30c36c0dfbdcd7382aedc0d1", + "fixed-table-layout-017.xht": [ + "7d90ad98ac8b09c57bbd174f2f622d99874ab101", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-185-ref.xht", + "/css/CSS2/tables/fixed-table-layout-017-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-186.xht": [ - "3ec90eb3bc8508dd1319c6a6c788576b67ef4465", + "fixed-table-layout-018.xht": [ + "6f40eb9a5d3bb82b0e81ffd0e5f7953e8e0696d5", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-186-ref.xht", + "/css/CSS2/tables/fixed-table-layout-017-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-187.xht": [ - "edaed04a93d41e273248b57f68a478df49bfc37a", + "fixed-table-layout-019.xht": [ + "d6baab8671d641a69d2d0c9eef9a98c80bfada7d", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-187-ref.xht", + "/css/CSS2/tables/fixed-table-layout-017-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-188.xht": [ - "a46c06751bffa3eb5ea384ecd192b16c34746478", + "fixed-table-layout-020.xht": [ + "85c1603e50db2f4afb264047888bb2d9e57e80bb", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-188-ref.xht", + "/css/CSS2/tables/fixed-table-layout-017-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-189.xht": [ - "d9422cfac7a71ea494e4fa9dd6b1d28bc9288bf4", + "fixed-table-layout-021.xht": [ + "81d30d9a8e7d0cfcfc83fac3086298f7f80e616a", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-189-ref.xht", + "/css/CSS2/tables/fixed-table-layout-021-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-190.xht": [ - "a78c4258572b66b2c49c80254f49072e6b424486", + "fixed-table-layout-022.xht": [ + "ae9abb6dda19246363435d27b0ce35019d849494", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-190-ref.xht", + "/css/CSS2/tables/fixed-table-layout-022-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-191.xht": [ - "f541ec8b998361c67a364746052dfdd1b0916b78", + "fixed-table-layout-023.xht": [ + "127528b2e9cf5a2a73a3e656c87ef63b9475ca39", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-191-ref.xht", + "/css/CSS2/tables/fixed-table-layout-023-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-192.xht": [ - "67d286bd47eee3a2a4c7d04ce3fc7a403c561f9b", + "fixed-table-layout-025.xht": [ + "3424672703d10d10193430cb566e31536ad7c4f2", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-192-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "first-letter-punctuation-193.xht": [ - "b9f495bba6c8758c2de5373443634c6786cded97", + "fixed-table-layout-026.xht": [ + "a69836da3cb7c0f0743dae3ef1fa692b779992dd", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-193-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "first-letter-punctuation-194.xht": [ - "8ee22c3acf0578230c15c99eafa483f2a59428c2", + "fixed-table-layout-027.xht": [ + "91f5934e7757e11f7b0d17aa4736e2772d973566", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-194-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "first-letter-punctuation-195.xht": [ - "757995e5a380cf7a0db119a4e636ba40d9a36584", + "fixed-table-layout-028.xht": [ + "b04473d6bfdf5d69b7b8b79be4195986ab7ab4e6", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-195-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "first-letter-punctuation-196.xht": [ - "801ff35f533626176b965d7de23739ddb8e7cfb3", + "fixed-table-layout-029.xht": [ + "6ad7dc5f6876823dde9e5d8542866e4fcb7d108b", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-196-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "first-letter-punctuation-197.xht": [ - "c19e6329c1ca95d198e54e487a4948ee7887b89d", + "fixed-table-layout-030.xht": [ + "ce83603148cad15bb918fe5949412174fe0ab7df", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-197-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "first-letter-punctuation-198.xht": [ - "6adddda4f002716a0cb2b432b9deb4dde9fb68fe", + "fixed-table-layout-031.xht": [ + "3c877a9e7e10b646bac232a9498b762a180c38f6", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-198-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "first-letter-punctuation-199.xht": [ - "a0c680f738f551c113a9840387e843b6a383147d", + "height-table-cell-001.xht": [ + "73a3d5f8a338c7af885447abc2331ed8634c6f3f", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-199-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "first-letter-punctuation-200.xht": [ - "533e4a3c3aa902954bfbbc856cf9b95db236e27b", + "height-width-inline-table-001.xht": [ + "99d085137dead683bb5be1c45c414f25df8cb64f", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-200-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "first-letter-punctuation-201.xht": [ - "ca2794acc5bd383262c0ffac0aa84066fa016f79", + "height-width-inline-table-001a.xht": [ + "ee5abc5eefae547ec9a47266a820fce76988c96e", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-201-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "first-letter-punctuation-202.xht": [ - "61716ba6574521c1b92f6709fd9a6687f9559253", + "height-width-inline-table-001b.xht": [ + "bddca2bc7b11c5ad4650d66a4f3aef6c56ff78b0", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-202-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "first-letter-punctuation-203.xht": [ - "6cad0bf6ae8e21e800434ba83d540aafe73d82c4", + "height-width-inline-table-001c.xht": [ + "a4e39d2e835a8cc24d825b1fa974d8dd180eb96f", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-203-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "first-letter-punctuation-204.xht": [ - "41c6496da83f9836040a8e1e5ece520ec897d636", + "height-width-inline-table-001d.xht": [ + "e25f18f76dda54f2c56c54982a1f679c95600831", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-204-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "first-letter-punctuation-205.xht": [ - "d317e679c6b7da0907eab6774dd2cb0accfc57a7", + "height-width-inline-table-001e.xht": [ + "17e3e38394b4f57eba9710cadd12d7b4327d5eee", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-205-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "first-letter-punctuation-206.xht": [ - "395312259e62fa8e7b0def93348853945c72b075", + "height-width-table-001.xht": [ + "14321e4d7dc462c2704f2a53dc846beca86f3a83", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-206-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "first-letter-punctuation-207.xht": [ - "7239783442e89fc84d0543c56ccd95fc663471f5", + "height-width-table-001a.xht": [ + "83233e294aad9ddc63bd62830705301e02a79f29", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-207-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "first-letter-punctuation-208.xht": [ - "730553eeb81604036b4e666e5a9b4c6a9983b523", + "height-width-table-001b.xht": [ + "c8f4effa2fd3ca89dc00aefeb9343711ee14c60e", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-208-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "first-letter-punctuation-211.xht": [ - "f6287942d487722dbe4e34a8f6c8e1e3fd9f1c00", + "height-width-table-001c.xht": [ + "7c163420d92fa93e3b71ac778bc924f0e12f3e18", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-211-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "first-letter-punctuation-212.xht": [ - "c294bc4e5352b50ddf90d445cc683ea1b2184014", + "height-width-table-001d.xht": [ + "8dbc7a097b8526b70ee5df885b58516b3393b3f4", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-212-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "first-letter-punctuation-213.xht": [ - "cc599b531664296749e24acccaa2fb7545fd0876", + "height-width-table-001e.xht": [ + "76c8dbdf4d806aa4ce1befd008ed1941d5356aa0", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-213-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "first-letter-punctuation-214.xht": [ - "a800a8856f8ec9b25454f200186607b522757f30", + "padding-applies-to-013a.xht": [ + "5f440f0b034061411cda6a15990b1df7231eb2e6", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-214-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "first-letter-punctuation-215.xht": [ - "bc192ec1782f1d422292323f9c101d6111affcbe", + "row-visibility-001.xht": [ + "50f17a5567c03efbf3671e525f82b771c0da12ab", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-215-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "first-letter-punctuation-216.xht": [ - "888b1c61a50b9ad80b7b0079520a00e3c2606f14", + "row-visibility-002.xht": [ + "c481db0b43c3723120ff481171c8cd945f5b7308", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-216-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "first-letter-punctuation-217.xht": [ - "f7a097aa355bebfab8106ce5c6022efac8ca9997", + "separated-border-model-003a.xht": [ + "f0fed037167d13b837d900f3fe3cf778e2c55602", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-217-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "first-letter-punctuation-218.xht": [ - "e79b51e3bed3d99a9b26abf61b80f44ecd60d1bc", + "separated-border-model-003b.xht": [ + "36be8c21f1edeb4a972995709ae3c48e7fef1e68", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-218-ref.xht", + "/css/CSS2/tables/separated-border-model-003b-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-219.xht": [ - "7832e955a41fc1fb2398cdf05e0372aaa16c0151", + "separated-border-model-004a.xht": [ + "10b6075afcb85f3a88aab1631d634895d8657e73", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-219-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "first-letter-punctuation-220.xht": [ - "9db8984d19b7f776faf478466186fbbf44af1f51", + "separated-border-model-004b.xht": [ + "9238d82b98efe9cfa82c1f3d063b70c25493afd8", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-220-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "first-letter-punctuation-221.xht": [ - "6755c8c7129efade6e45a0a3ed9e843fa5a484f7", + "separated-border-model-004c.xht": [ + "6f18ec0723f262b0f42da74c420dbff2355b5827", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-221-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "first-letter-punctuation-222.xht": [ - "6a5e1a911395d7c45465ed64f4128b4ebbbe46ac", + "separated-border-model-004d.xht": [ + "7269e1f97d871fd544f0ac382910cb56056f6c27", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-222-ref.xht", + "/css/CSS2/tables/separated-border-model-004d-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-223.xht": [ - "b5896603d7a060a13769d887ebd2dbe294c7868a", + "separated-border-model-004e.xht": [ + "6fc350f65101482ffa3f5ad1c09a6bbffd4b375b", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-223-ref.xht", + "/css/CSS2/tables/separated-border-model-004e-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-224.xht": [ - "0b416dade9605cd562fa4c694266000918120782", + "separated-border-model-007.xht": [ + "8b22c8cd2e27947612bb19abd837592a70006050", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-224-ref.xht", + "/css/CSS2/tables/separated-border-model-007-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-225.xht": [ - "8a74c0be180cd9b099f446c30ecd448ce7811425", + "separated-border-model-008.xht": [ + "4149c7a998484c855b2d19f854d05a4cf97a5da0", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-225-ref.xht", + "/css/CSS2/tables/separated-border-model-007-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-226.xht": [ - "5d11c0316338c9bff341745460504dbe4603f564", + "separated-border-model-009.xht": [ + "40471be0ad5887da264717383417e8e201c3d2c3", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-226-ref.xht", + "/css/CSS2/tables/separated-border-model-007-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-227.xht": [ - "3c1694e61c9b332dd6cb3f6c35930728d47026fa", + "table-anonymous-border-spacing.xht": [ + "d2c1bf8bd2489919fa82cdbe45c01997eeca0095", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-227-ref.xht", + "/css/CSS2/tables/reference/table-anonymous-border-spacing-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-228.xht": [ - "4d97ee13187cdb8cc62c06d826e98f1211f00465", + "table-anonymous-objects-009.xht": [ + "5178e9a040d423755cb130805035d281b2b1a942", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-228-ref.xht", + "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-229.xht": [ - "87431757aa2b3d4e05ff03c46776b1a94f87badc", + "table-anonymous-objects-010.xht": [ + "0baba6421cc43e3f7c672bbf9ef16d14d0ca27e3", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-229-ref.xht", + "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-230.xht": [ - "8999f8c8ae0594f0b258e16db285468446e8d35c", + "table-anonymous-objects-011.xht": [ + "ca97ffc54a0a4de362d481ea8751338f73f8847f", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-230-ref.xht", + "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-231.xht": [ - "17f9e9943d118f8dfa4103b3a3b67e338518f3a4", + "table-anonymous-objects-012.xht": [ + "6438ae63a4c240b5047fe173a704333a6fcd95d8", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-231-ref.xht", + "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-232.xht": [ - "81c4fc022ab236b37254f487f1e9b65e2d65be1a", + "table-anonymous-objects-015.xht": [ + "3e6ffa2f7e9de10a9a2bb171aff500409617ef7e", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-232-ref.xht", + "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-233.xht": [ - "4ce526e03af76650e0345db6aba455aa72355146", + "table-anonymous-objects-016.xht": [ + "2ad45ecde17dfde4661e011d7cf9d2c92173f37e", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-233-ref.xht", + "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-234.xht": [ - "155a3dcf80a7db97915e0d6c0d76c91b4ff0909d", + "table-anonymous-objects-017.xht": [ + "769f3659f32ff02d69bbf2110536f9a25aad848c", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-234-ref.xht", + "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-235.xht": [ - "f98745c26a960171fe5a984d75fff60d869987da", + "table-anonymous-objects-018.xht": [ + "b864ee6f170680736be628f74fd67d4e078eeaf3", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-235-ref.xht", + "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-236.xht": [ - "c7a5d095e8ea5b1808ac859f900e198dc5ec02f4", + "table-anonymous-objects-019.xht": [ + "3be83500c8c22cbfede5e9cbd38f81fba685aad8", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-236-ref.xht", + "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-237.xht": [ - "b6dfaf919a56fc6c8c87ade5d63c5aea7ed27153", + "table-anonymous-objects-020.xht": [ + "a96463c4746ee3583a70fda91cfcc9284b67902d", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-237-ref.xht", + "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-238.xht": [ - "183943184b40d5299bafc63137a2e136c070ce66", + "table-anonymous-objects-059.xht": [ + "92e799affdb0aa72d9855722f487ce11935005ad", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-238-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-239.xht": [ - "1dd385ad9f8e398822d1443015cf09771a1bea9a", + "table-anonymous-objects-060.xht": [ + "9304a89816afe9d598498c94d2186251c5fec330", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-239-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-240.xht": [ - "094d53b6393df6bbb6f23a83e1bb633f1b319fea", + "table-anonymous-objects-061.xht": [ + "20f64aca45c1a9fc52d063ff80d2459a1190d269", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-240-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-241.xht": [ - "6b4f93c333a66536e1e9b303868142eb329b8304", + "table-anonymous-objects-062.xht": [ + "9a7d219d4cad52c0232610614be4f95bf79cbb9d", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-241-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-242.xht": [ - "fd793370cbccf603f28921a962a0f957c8068229", + "table-anonymous-objects-063.xht": [ + "eedb4f13f0863de3471c95fd23962ba46242eae8", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-242-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-243.xht": [ - "5ef3263a4fa8d2a0dc637aa1605496cdf8b8ad8d", + "table-anonymous-objects-064.xht": [ + "18cc50a8677102a58ec0a2902b34564cb3436c17", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-243-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-244.xht": [ - "259f63b3739eb23edb0ee8e84423d718fc80b9c1", + "table-anonymous-objects-065.xht": [ + "4a0cf367c58bfe04c52828001103c1d9fe6ff166", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-244-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-245.xht": [ - "e1ee03413ed41b64c7c827c6cc0f68221d19c625", + "table-anonymous-objects-066.xht": [ + "1b25699e25c1c763b0b9c68f382968186ff25547", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-245-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-246.xht": [ - "084141372e8faf0372cccf134161e165e4a392eb", + "table-anonymous-objects-067.xht": [ + "585d0b89ad63b4249b94a53cf2fa3598eb998be2", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-246-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-247.xht": [ - "a107da421de12cd3682ededcfac07766f365012b", + "table-anonymous-objects-068.xht": [ + "3060f02e61191f58bcf5318c81a50b13d6360f66", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-247-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-248.xht": [ - "21183dedef40019e62658db30cb89218db2d4891", + "table-anonymous-objects-069.xht": [ + "5a77cc934e7915f353bc7676dae67c9862d4a266", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-248-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-249.xht": [ - "090a2f37c5524b50a448c3cd56bd4e77bd955641", + "table-anonymous-objects-070.xht": [ + "5d8179182b4b1303028a3bacccd55ef9d0b39ea8", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-249-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-250.xht": [ - "f60ae5f0429ee96e057b9362a3361f5b78a77558", + "table-anonymous-objects-071.xht": [ + "1d3f61a7f9f57788dea7df360ffa7a530113c857", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-250-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-251.xht": [ - "3f8d7f96ab62ed29bebe1c0f427092c3a40dba64", + "table-anonymous-objects-072.xht": [ + "59843f813606f026d5ce8e18c3cd9a9294bba499", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-251-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-252.xht": [ - "3829286970283ec8aca5a7840212d523053debd5", + "table-anonymous-objects-073.xht": [ + "e4ef934502bbbdb4d7d6f2c4fe0b244a4dd7da9f", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-252-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-253.xht": [ - "14ad08d0585ea424adabdc8074c0cd74bf649c0e", + "table-anonymous-objects-074.xht": [ + "72d9cad5d32ceb7bf79d70acc7fae3d79d306b44", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-253-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-254.xht": [ - "308461c8d25fccd3e63eb75698c4a64bb8365f1c", + "table-anonymous-objects-075.xht": [ + "03ce0fd95a553fceca86986772564767e7cbeabb", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-254-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-255.xht": [ - "481d15629d557e9a6a9d1de0de498b7107d05f90", + "table-anonymous-objects-076.xht": [ + "fcddcdec147a26e8a7fc12868d162bde025f651b", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-255-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-256.xht": [ - "e71a9bd97d23388522a16f79c8ab24bc9409f191", + "table-anonymous-objects-077.xht": [ + "b560a9f61f76e03e66a2bec3d51662a92d5b2253", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-256-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-257.xht": [ - "fdb65d46a2c66d0a856754e4123b76290de6ca1b", + "table-anonymous-objects-078.xht": [ + "0b715a0456e69e6fd23fb350697107be27ed80ac", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-257-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-258.xht": [ - "4d26067ac668cbbb1e9339c395cb2f1a44292225", + "table-anonymous-objects-079.xht": [ + "dc3a54fb91d46775fa67cad44b5f8ca4f3abba92", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-258-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-259.xht": [ - "ae7797d0884d3f5d0a1b60db21e93a22fa4a55c2", + "table-anonymous-objects-080.xht": [ + "c57177ffd69fe5a113d9efeb20977acd10ff9a56", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-259-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-260.xht": [ - "310a15387a847b0fbfe4c0c8437eebb963eb6778", + "table-anonymous-objects-081.xht": [ + "6aa0b583bf35ed6241660a83b4511da08529b55b", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-260-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-262.xht": [ - "9bd1e25c331d22ed96e7412ab4c0b934e7d4346d", + "table-anonymous-objects-082.xht": [ + "01e63fcbd8c5b969bbecefd9a6d9a0cfe6826635", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-262-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-263.xht": [ - "01c746ac307f23770ecdddf840d1519323cb2340", + "table-anonymous-objects-083.xht": [ + "7f19c75c140767e56a82ecb5f56e09b98530e7e5", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-263-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-264.xht": [ - "6c2a9d9cc7822323469fd3a96975d2a01010760c", + "table-anonymous-objects-084.xht": [ + "3d9e7568b52734bb8ef7374dc5d37ec56ba72de1", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-264-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-265.xht": [ - "77f4c39eb80b332efc0d4d0eae0265d378336798", + "table-anonymous-objects-085.xht": [ + "d5df83a49e09a56444d4930b98e97eee4105d396", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-265-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-266.xht": [ - "fb00feeae8d8cc8c9a6e822f88d124aeaf052096", + "table-anonymous-objects-086.xht": [ + "f0c09c4de2e58284fe21ed917486767987e10658", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-266-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-267.xht": [ - "5d88d5fa6dc076189400460533c4166e91fb2288", + "table-anonymous-objects-087.xht": [ + "569b93e75268c2f8ca47383499185c685e81c337", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-267-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-268.xht": [ - "6931ee661ef740cd1576221652d01d4299c852a3", + "table-anonymous-objects-088.xht": [ + "ca6738be1001c568f475542ca05a5251eb784b5b", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-268-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-269.xht": [ - "f81ecb012f892fb274d37be4f21391c9c3d8c4f8", + "table-anonymous-objects-089.xht": [ + "b3b0bf61cf270d0ce66bb7b1348960f532cbcd1d", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-269-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-270.xht": [ - "d48e743975af95309a6689d11c2ecd3de54d4ae9", + "table-anonymous-objects-090.xht": [ + "d214f6d9e25ea326570125e7453be0328cf85c76", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-270-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-271.xht": [ - "6502f99fd6d442a9bcbc171496ce2ea2f1059ff8", + "table-anonymous-objects-091.xht": [ + "354e5843e22b3959cf0baaf67a60903fbd712092", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-271-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-272.xht": [ - "7245140400e1ff897897c57c7a40d33980d07870", + "table-anonymous-objects-092.xht": [ + "10bf5d56355dce8dd87ef22e28ee7e84a6826729", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-272-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-273.xht": [ - "34613d63dbdcd9f63a8c838282a5ed60ca4fa7a0", + "table-anonymous-objects-093.xht": [ + "687926f33207064c947736254fabe3044b990e73", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-273-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-274.xht": [ - "e65a8b2550f40d207ff005db42a832ea15051963", + "table-anonymous-objects-094.xht": [ + "f773dab05621ee8d69a4188606eb4c9b30db50ce", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-274-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-275.xht": [ - "2a2d6b531598a9ca1acac72af5d436dc2b5b4ce6", + "table-anonymous-objects-095.xht": [ + "4cef54e6d6bc4bcca71033c08925d0644bb2ace3", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-275-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-276.xht": [ - "8c103e6569aa4809813362bde1d564d4dfbb9b7f", + "table-anonymous-objects-096.xht": [ + "564ab372a2bb9cac70254a0a66f5285dc7f1398a", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-276-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-277.xht": [ - "c0ee799f5524282a23ee7d772d1135bccd810e97", + "table-anonymous-objects-097.xht": [ + "8c754a9b91f3cc3ee6d14f547b88cace924b88d8", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-277-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-278.xht": [ - "a252f1d4ed574a5c019655a8d1124f38108cc11b", + "table-anonymous-objects-098.xht": [ + "53b7aa0a5d35b625f8a8724884e5c76422b85887", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-278-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-279.xht": [ - "61616fb63bccf66bab0edcf8bad584af9cab511b", + "table-anonymous-objects-099.xht": [ + "19bb850104bcb142c42558e7a66fef0339287acd", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-279-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-280.xht": [ - "55fe2d889d2591319b5a7a490b1f8831d6299550", + "table-anonymous-objects-100.xht": [ + "18563e7b0953ecd1296dbaab4a118276262a3b7a", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-280-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-281.xht": [ - "554ace3d225dab18211bafbe484e31715600f313", + "table-anonymous-objects-101.xht": [ + "d372e3658790f588a6808691ea4ccd57369dc94c", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-281-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-282.xht": [ - "313dc815e4d03428c95d026c8a1876f44d906fce", + "table-anonymous-objects-102.xht": [ + "dc2a2d0a296e2a2619cf37eeb66fd65962873e1a", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-282-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-283.xht": [ - "3e97d12383aaa9b1f37b7cb489e692f9087e7a97", + "table-anonymous-objects-103.xht": [ + "5d825274dac605ee602351dbb7a4e2701f091d9d", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-283-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-284.xht": [ - "af94a947efc2689a811af6b7ae880c332357bfbf", + "table-anonymous-objects-104.xht": [ + "9686286a009cac6b2d66365b856774f058f482d8", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-284-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-285.xht": [ - "a50445f2bd27cac0d865ffd4b10b30800efe32f7", + "table-anonymous-objects-105.xht": [ + "b246fb4f7ca6efdd5bcba1a470c415c6691cba4f", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-285-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-286.xht": [ - "b42dd7ecb76d309790cbc18febfef7644347fa30", + "table-anonymous-objects-106.xht": [ + "097c7e366df48b0c2de81a41b4c0e8c8aa93fd2c", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-286-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-287.xht": [ - "e39622b0fcea6f6d95dc62294711971fc3375beb", + "table-anonymous-objects-107.xht": [ + "2a0dd8e8e1f5be43c0ad37a41f37133ab5233565", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-287-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-288.xht": [ - "e6f8cc888b96ec4b1535bf08c84a0b73b35987a7", + "table-anonymous-objects-108.xht": [ + "eff9f8b02e19e6f4ff10cb94e865f5f1a0ca18d7", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-288-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-289.xht": [ - "2c791234f2bb9cbb54cec3afd0653d444c2499c5", + "table-anonymous-objects-109.xht": [ + "f61096b13942429a9569be8d1e66317f61cfbd1a", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-289-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-290.xht": [ - "cd09f4a15dd5077fd6dcbddd7ec739eef7b4a73b", + "table-anonymous-objects-110.xht": [ + "dd9c4bbcb30faf5cfa98c23b834d7b701b155160", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-290-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-291.xht": [ - "a41dde93a174b91ba0322405a652a2332d7ef887", + "table-anonymous-objects-111.xht": [ + "8f1bec26eb4f260f8dfe3472f53dcbe4246c35ee", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-291-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-292.xht": [ - "37b1049a774f403c5752dbc31aded77c596ce982", + "table-anonymous-objects-112.xht": [ + "97ee6019be5ca6039c37b79bbd009be8b1b03f66", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-292-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-293.xht": [ - "eafae0e8c40cad61d663cf951da34b3dc4d240e6", + "table-anonymous-objects-113.xht": [ + "c761bebe0c516cba34617ab8f0e4879ba2dfa201", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-293-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-294.xht": [ - "fc05320b64097cf9832db741b42f7d882330aa4a", + "table-anonymous-objects-114.xht": [ + "830a6d52c7b6da1ca6a151e15d03f67922e4e091", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-294-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-295.xht": [ - "e991bd5ba429f7b7bd80e89e2a5f9f5acafa783f", + "table-anonymous-objects-115.xht": [ + "b406c5bbe51c89a593a36c875c22895e9ea44793", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-295-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "==" + ], + [ + "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-296.xht": [ - "50ceb95114a08f6f3f3104a9b3eb2cb46ecf4fa6", + "table-anonymous-objects-116.xht": [ + "cae0dfdfe2e3603bdbbe37e10a0317b69b0f639f", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-296-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "==" + ], + [ + "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-297.xht": [ - "a222612abb53e2beaee455aa44c12f45ec365c62", + "table-anonymous-objects-117.xht": [ + "7725383c25a18b2174d5a0412fa202c8615546ba", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-297-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "==" + ], + [ + "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-298.xht": [ - "52f71e1d375fbb43c7318851cbc03bae7e8318f4", + "table-anonymous-objects-118.xht": [ + "26a39105213f8e43265a76e5e23bc8dd23435ab4", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-298-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "==" + ], + [ + "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-299.xht": [ - "0a251b6a67c4270818bf86464a8958176ccfb0b9", + "table-anonymous-objects-119.xht": [ + "9e99c6c7a3ce6ff507d024bb91e06e95984aa7ea", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-299-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "==" + ], + [ + "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-300.xht": [ - "34cdbdd636da20591782886c843997f032ddbcb4", + "table-anonymous-objects-120.xht": [ + "0b0a659cd24dfdcb0acf034445488a67e93bdfa8", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-300-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "==" + ], + [ + "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-301.xht": [ - "c54b7608c08ed3216728a90cfbd5e3c3ec189b69", + "table-anonymous-objects-121.xht": [ + "febb96df1fab7e082dec144123231f13f280a026", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-301-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "==" + ], + [ + "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-302.xht": [ - "502dc62683970114ca53ec97e526dcef0df9e1c3", + "table-anonymous-objects-122.xht": [ + "75d37362fa7bb9d2f610f8881b626ad34ff40539", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-302-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "==" + ], + [ + "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-303.xht": [ - "7a2594ca51a5ed26729fd83006ce2eaba7004f2b", + "table-anonymous-objects-123.xht": [ + "1d17bdf4ba2654cda349d846383ac4d41e67846d", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-303-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-304.xht": [ - "8cffacea65baf7cc58fbea87ca782f95c636f051", + "table-anonymous-objects-124.xht": [ + "a8313db47bc1c536ae088a6ad671620fba552aed", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-304-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-305.xht": [ - "f320f84a0c8f8bac0699affd9d8c71b4baaa476c", + "table-anonymous-objects-125.xht": [ + "1ad7edf9d9aa5db783dc8951f64f7f9d565eb113", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-305-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-306.xht": [ - "b5c8858dfb9f1103db972f01a3c7fc4501e24fc4", + "table-anonymous-objects-126.xht": [ + "da930a8908079852b30dc14e1e1e629e6e4efaf0", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-306-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-307.xht": [ - "96a7fbe6141747f5f07b748ce5dd7e1c69308cfb", + "table-anonymous-objects-127.xht": [ + "9ebd3f8a86dd99d01c5445d223027db14020ad7c", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-307-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-308.xht": [ - "a37e3a837875207267969a69e80e8d0ce7537f09", + "table-anonymous-objects-128.xht": [ + "1b10dd6d091381d91c9ef183e464be1feb79c50c", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-308-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-309.xht": [ - "bf96de87080de5087ef67cfa171c450984951e0f", + "table-anonymous-objects-129.xht": [ + "91f808f599cd5472014d164ca736983a2a977791", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-309-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-310.xht": [ - "564eabc277e7888b7ae0603e20f15d28eeb8e2f7", + "table-anonymous-objects-130.xht": [ + "7004b24e95bfb193fffa131d385d088869e5eec7", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-310-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-311.xht": [ - "d9fa1c68dd230026d5a56e22e64a5586123a4d51", + "table-anonymous-objects-131.xht": [ + "c962266ed8092357de116830f5ba80eb96bc740b", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-311-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-312.xht": [ - "18f92bdb80fb8bb959f2815345c9bc3714dfe23d", + "table-anonymous-objects-132.xht": [ + "302664f17491c2fc9598651c194685c518e3ae86", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-312-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-313.xht": [ - "6a24f5214742676e3e65aa1df11913df94eda34f", + "table-anonymous-objects-133.xht": [ + "4838da5cfb6870154838d744ae6ceb4692286830", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-313-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-314.xht": [ - "c4d9dd93ba70d9a612d3ed0ae7af76c0a06129d1", + "table-anonymous-objects-134.xht": [ + "7a8b01971810bafbefe8f25e51e5a5b0fe7ca7d6", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-314-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-315.xht": [ - "ad8d8f9bdda9c991e0e5698e54f3e24625ced25b", + "table-anonymous-objects-135.xht": [ + "37709d7f97fae4c9f39fd86fa97c01ae27ff29f8", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-315-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-316.xht": [ - "4e18c690196028c4b1578d044c500a1a7ce6713f", + "table-anonymous-objects-136.xht": [ + "164d9451f348c5cfa4e18c7cc9aaf186684a9d13", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-316-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-317.xht": [ - "87ce4b77ed7e8339d7975ee6fc844f884719a5b8", + "table-anonymous-objects-137.xht": [ + "94a647e93c1564023cffae573ea2cc0ec11042d5", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-317-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-318.xht": [ - "92eddd6490031adba01ac78da54f9410c0d9bb1b", + "table-anonymous-objects-138.xht": [ + "ec9b60cc4d6a9e3f33a728e55bea55b7865ac185", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-318-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-319.xht": [ - "14c6b6f210b688bf5cb7651ccac2445953af6cbe", + "table-anonymous-objects-139.xht": [ + "a6885b82eef34a8c5f3a03b6bf6e3a03210b866a", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-319-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-320.xht": [ - "99082e1d320dec307231fdae250ba42285c803ea", + "table-anonymous-objects-140.xht": [ + "660b87b336f10012d425287d763fa215d0393e7d", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-320-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-321.xht": [ - "a48360eb586b4fb5f73ce32f1f5c140b2f658a0c", + "table-anonymous-objects-141.xht": [ + "c385f0af012b9ee8160df5f3aba2b8e0747ac157", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-321-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-322.xht": [ - "6c6eec2ccf53d379d573520fb3f98c41020e317a", + "table-anonymous-objects-142.xht": [ + "4b3c5e8572cd1710f78b7865649eab273f1336e0", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-322-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-323.xht": [ - "760908784ba545d11183e8ca81d320059b4e460b", + "table-anonymous-objects-143.xht": [ + "2bb087a918b97446fe560a1bdd7b0a853a926614", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-323-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-324.xht": [ - "08c20093772033584462fcfd3ece5b268f79c7f0", + "table-anonymous-objects-144.xht": [ + "bf9332f454b2b5dcb7c9c749757c30c088308000", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-324-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-325.xht": [ - "43aab765010c2873e1a9e4bbe0c1e457b2a82dc0", + "table-anonymous-objects-145.xht": [ + "c1c34ee57ebca076078c0238649cca69cb16e3b6", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-325-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-326.xht": [ - "335a92a00a3a4c3bc6b125797a8184fa6f9cd5ad", + "table-anonymous-objects-146.xht": [ + "971c3e70678a2087cf1f08c3de1a6c36674e856e", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-326-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-327.xht": [ - "5eb9a05757f5c660640519c0f8fd9d48078edd2f", + "table-anonymous-objects-147.xht": [ + "3e24f61c70f27e610bb1c2511d5f4f10d10ba1cb", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-327-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-328.xht": [ - "2c33861cd55fef0237bed2c95355b07f2e93cb9f", + "table-anonymous-objects-148.xht": [ + "0c3f3a7f7d0a8febf64fa2245fbe97c85d3fabd8", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-328-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-329.xht": [ - "abbf3d81122ce41343123c7b149f2d44add28c48", + "table-anonymous-objects-149.xht": [ + "f482b9e4acb964f07f70f7c0581c3c7277947e8e", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-329-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-330.xht": [ - "001843ffe2c2f12541e37bd27f55856d0d26dc7b", + "table-anonymous-objects-150.xht": [ + "ddf3dedd8e56d633fe29c51a6378c19915103ea5", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-330-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-331.xht": [ - "72b7aca3f02b4134a6b2204759ef858d4b67bf2e", + "table-anonymous-objects-151.xht": [ + "425e4d781bbcbf69e6886a06b634eaeca547ad57", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-331-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-332.xht": [ - "6d0aaf43e73ea0a8c977147e7f08b003796861dd", + "table-anonymous-objects-152.xht": [ + "42f60aab6f580c2a242ba46ff5d821e68deca54d", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-332-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-333.xht": [ - "d506a7366b8626c95aa37ed9e19928fd4bdb7ecc", + "table-anonymous-objects-153.xht": [ + "fdf422fb722225ef424e1fe4b5bdaa0eb19f5c18", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-333-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-334.xht": [ - "e7351e69cd4ba96bda940db1c92a56cf0725e390", + "table-anonymous-objects-154.xht": [ + "07c28cf9d4513f69f538aabcfb16903492cfbd96", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-334-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-335.xht": [ - "54c053f89dcac52683d7b8f88b627ed075a7467f", + "table-anonymous-objects-155.xht": [ + "4e0cc5555fb89e26baba37a198def9fb95da2d98", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-335-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-336.xht": [ - "a0f0a836dfcf79d39b0e804f123a5ae7a220cdb9", + "table-anonymous-objects-156.xht": [ + "48f66efe21bd52408cdcf4c8eaffafa45d4fba53", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-336-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-337.xht": [ - "44cf93976c7e9f7aa5a6daf74711930035d4e78a", + "table-anonymous-objects-157.xht": [ + "6768171b28028c1960b1a8b7ca8d0863827fcabe", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-337-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-338.xht": [ - "ae7899901d8688d7723733bff38e4edc5fba5064", + "table-anonymous-objects-158.xht": [ + "57cfd46c5b13a1116273e7e55c2ab779134cc363", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-338-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-339.xht": [ - "128c0e46899747a979c06ad216f08c1562dcc7b9", + "table-anonymous-objects-159.xht": [ + "6ee119161179c665069ef730396fe3294f69097a", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-339-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-340.xht": [ - "bdf37ba1197f780ea57f625c63ade8d7ae52a078", + "table-anonymous-objects-160.xht": [ + "734ed229c155bde1ddb8a8cb45a8c5e6fd6d4a8d", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-340-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-341.xht": [ - "087bfa4c8d650b431a3bb865965e0348682d161d", + "table-anonymous-objects-161.xht": [ + "cefb9d41d4d245afe95165043e8b34d10ac638c4", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-341-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-342.xht": [ - "5db768dab8f84e695fd672d51bd2e083253f097e", + "table-anonymous-objects-162.xht": [ + "d24486afe309e957b4d022c335636a01dfef8dc2", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-342-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-343.xht": [ - "b05a8799706e7e6c8ae33241098061a30e7059b6", + "table-anonymous-objects-163.xht": [ + "b4d6eb780da50de4a79f417bc391affb83f41250", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-343-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-344.xht": [ - "53b113bbe614ff6243781f94a8e4c78574c40353", + "table-anonymous-objects-164.xht": [ + "741e1f313dc7570d498bd1d56f87d5c3d080e35b", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-344-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-345.xht": [ - "0eb0d36d77eb6234c31a77246a3d8edec66858ca", + "table-anonymous-objects-165.xht": [ + "42a0d7d6ddfff2d64ef70eada0ffcdaaf41111c6", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-345-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-346.xht": [ - "72b6007447c7d1b9c66f8252ac12f247bddc8cd6", + "table-anonymous-objects-166.xht": [ + "96ca3b3c542cae16239bb6955414a10964f54428", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-346-ref.xht", + "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-347.xht": [ - "b873567454ddc57d33aab066d71b80f271bcc13f", + "table-anonymous-objects-167.xht": [ + "d99f3048d86f811f4a2036d05a7bd271bd4728a1", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-347-ref.xht", + "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-348.xht": [ - "fa7c713347e8c92f2841db893bcc6f443cefe74d", + "table-anonymous-objects-168.xht": [ + "e761bf3683b94a6bbd61ef05bb3da10e97a84934", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-348-ref.xht", + "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-349.xht": [ - "130a4e8131606db8b9c41eb893f1359f24dd5404", + "table-anonymous-objects-169.xht": [ + "6733a1f0779ccb83d05ba8f232d82f36c0d23716", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-349-ref.xht", + "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-350.xht": [ - "6e5f974af92f4b57e8125a3cfb12bb7d7f11ece8", + "table-anonymous-objects-170.xht": [ + "0b7e3cceafda4adb2f76fe0d7bb8329d73ed98c5", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-350-ref.xht", + "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-351.xht": [ - "051ffa60663f5489f7d06897ed8ac2c1d64ac403", + "table-anonymous-objects-171.xht": [ + "11831f1357eca7c33221b9d8771a8a764df5befb", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-351-ref.xht", + "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-352.xht": [ - "93b984bb4eb11df9d2f4bfe5c9deb23a666b4401", + "table-anonymous-objects-172.xht": [ + "5ea0c952bbe7f27105de864b1e92548852846dc6", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-352-ref.xht", + "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-353.xht": [ - "52e96431f206b71ea19ab6c385f397f1fcd8a855", + "table-anonymous-objects-173.xht": [ + "af48f72f0ffcf93d2c2935aba98eda55204854b7", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-353-ref.xht", + "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-354.xht": [ - "a85e709fb098b91fc47b78e7becc215441470974", + "table-anonymous-objects-174.xht": [ + "2b329a61e08b3d89e57d247d787d9647f6869442", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-354-ref.xht", + "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-355.xht": [ - "09b49915806ebfe817c9e5011d394cc498570eb0", + "table-anonymous-objects-175.xht": [ + "1263f613b21298081b67ca846e84ead53f098406", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-355-ref.xht", + "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-356.xht": [ - "701620656799fd9edf3a26f3d547fabeac112179", + "table-anonymous-objects-176.xht": [ + "bfc562862c6d8b1155550f3c9bb0d5bffbab489e", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-356-ref.xht", + "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-357.xht": [ - "a4ace8ba909bc01a1cac950c93b860da07803356", + "table-anonymous-objects-177.xht": [ + "83cc06c22c3f62b0176d09f4af6cbc2f91fe03f4", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-357-ref.xht", + "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-359.xht": [ - "e0e2f9ac9542b0013cf970d2dd8bc3196c7b7940", + "table-anonymous-objects-178.xht": [ + "9e85164c28e4d236ce72b06c15e3f8b5b6db1ba8", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-359-ref.xht", + "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-360.xht": [ - "75e3c922ba16c480a0452f73103f9be5aa582467", + "table-anonymous-objects-179.xht": [ + "e26909ffa178bf9cc647f8e61bc918ffb3632c6c", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-360-ref.xht", + "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-361.xht": [ - "33a85a029d93af961b6fd7cda08766c63cb14bbc", + "table-anonymous-objects-180.xht": [ + "628357abde69f5afff23a4dda5ebf63a9c9c5405", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-361-ref.xht", + "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-362.xht": [ - "c0768de04d449d6d8e56eb5e3f82c609f3abb027", + "table-anonymous-objects-181.xht": [ + "fcce174438c310f01f066760ec6fe383d774687f", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-362-ref.xht", + "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-363.xht": [ - "92cccd290afd73b0d0b571770551c907a602e3e5", + "table-anonymous-objects-182.xht": [ + "1895e09fe68003463109d4a8fcd4b4a1085dfd75", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-363-ref.xht", + "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-364.xht": [ - "749d6a79d42909a2604b1411aa931fadcf22cad4", + "table-anonymous-objects-183.xht": [ + "3f83065ae7487420092ce5f8c5c811a14de89db8", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-364-ref.xht", + "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-365.xht": [ - "27a58bb2eea7b1942005bccedd87cc49965b9615", + "table-anonymous-objects-184.xht": [ + "c7839bd3869618ce0edf79032694c66ebc27660f", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-365-ref.xht", + "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-366.xht": [ - "235e9af202a796643a83b662c11c21a334043ec7", + "table-anonymous-objects-185.xht": [ + "5822856f75f044840d62e0225a926b98a4c01db9", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-366-ref.xht", + "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-367.xht": [ - "6baaa5ddfe27e63279d12c62e2f94870b1893ade", + "table-anonymous-objects-186.xht": [ + "6aef922a8145f2f75b026a99cbacd6f90e91e933", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-367-ref.xht", + "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-368.xht": [ - "bd7c83b795c8af153431ff480a1efdb54b8ff774", + "table-anonymous-objects-187.xht": [ + "d0dfca637796aaf84ffa810b9a5ad4765b9368e8", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-368-ref.xht", + "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-369.xht": [ - "9fa60a115e7c91094219830a5ffc0f53e5ceda83", + "table-anonymous-objects-188.xht": [ + "cd5bc4dd2ea599520ab5670f760c14eadd368e5a", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-369-ref.xht", + "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-370.xht": [ - "d630820f5e9bda41b6c4c5680e638479b5c737ae", + "table-anonymous-objects-189.xht": [ + "9c670782149e4516e809cc7219122c1789dbc8e1", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-370-ref.xht", + "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-371.xht": [ - "d2a650ad88424227ef0194a936acb54bf56181d3", + "table-anonymous-objects-190.xht": [ + "ae22e2952efe1e39c17bf2ddcd64290627febf77", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-371-ref.xht", + "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-372.xht": [ - "11918bfb7aa33bd1d6e12c62b4a57b5b4f77c923", + "table-anonymous-objects-191.xht": [ + "426cf8b8b5fa4916b6f20ccb8a1c574161192908", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-372-ref.xht", + "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-373.xht": [ - "3824ddc628e50fb21b632af9ec8641031fb702ec", + "table-anonymous-objects-192.xht": [ + "44f610825aa12d1818db8895ac201832295c9814", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-373-ref.xht", + "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-374.xht": [ - "7ef6a58acd36ac793f63d0dfa831397e30f8daed", + "table-anonymous-objects-193.xht": [ + "542364aa170506a922f456376d4322691c567228", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-374-ref.xht", + "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-375.xht": [ - "4291c0e10555e32e0ee07b359d70ddc6dfcde75c", + "table-anonymous-objects-194.xht": [ + "cab7bb5a28a8883578665c9b40ca8d1bd472fce4", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-375-ref.xht", + "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-376.xht": [ - "39899ed7e5c6a9acd4077e790005becbe038b79c", + "table-anonymous-objects-195.xht": [ + "dc1b1a40071b6f4265235afedfe26661f94965f8", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-376-ref.xht", + "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-377.xht": [ - "3696d834b3620bd4b6c7ba52d83798c89faef488", + "table-anonymous-objects-196.xht": [ + "a8455a27b0f346c3ae6636ead310a1881f40bf4a", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-377-ref.xht", + "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-378.xht": [ - "9bc85b4d9ceaff6c0ccf7e211018d1d8b78ff175", + "table-anonymous-objects-197.xht": [ + "70a144f90e89ec72da3803e3dc5d2ac1acea6a8f", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-378-ref.xht", + "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-379.xht": [ - "c52505b5784ad16bb48ba9e4b48c5d84888c6fb9", + "table-anonymous-objects-198.xht": [ + "8d73eaac350323fb73229e7461dd6d8573687398", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-379-ref.xht", + "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-380.xht": [ - "0680a8c905c271c6387c16f711aa31ab75f861e4", + "table-anonymous-objects-199.xht": [ + "c74b43a7144f88e9a23c6f5cfb7bfff3700318d6", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-380-ref.xht", + "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-381.xht": [ - "4e92ec0196a5d1ac553195e1bfb811aadc2471af", + "table-anonymous-objects-200.xht": [ + "7f5ef97beba43fe11abe6f4891ba3cb8283e9b95", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-381-ref.xht", + "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-382.xht": [ - "873e1496628ef9f2b213b45b56ae936e7ba8817a", + "table-anonymous-objects-201.xht": [ + "d9fd24268c59dc35883fb1a22d73ef86fa96b440", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-382-ref.xht", + "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-383.xht": [ - "578da84d0b26714eb7db2886ad5e4ab2428fa160", + "table-anonymous-objects-202.xht": [ + "af0a419f824578877ab1d186c6c96d48fea60247", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-383-ref.xht", + "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-384.xht": [ - "74cf8b6e40ea587c20660f99665ed41ead2a2c84", + "table-anonymous-objects-203.xht": [ + "2f75f9a0081be23d29664ca7ac2b1026ac208ea9", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-384-ref.xht", + "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-385.xht": [ - "a7cc533d366af1635591c520dba170109e4b5f1b", + "table-anonymous-objects-204.xht": [ + "a646794915bdae230f7bba024145e5326eaffaba", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-385-ref.xht", + "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-386.xht": [ - "0e59afa4ff0c87dc26bdd5b69c2c4ce9943c609e", + "table-anonymous-objects-205.xht": [ + "829ad8f5efb5540fdf7198e06ab308b71df8901f", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-386-ref.xht", + "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-387.xht": [ - "e75fd567a6af4b7e931df3a6ab243ff1c265f5dc", + "table-anonymous-objects-206.xht": [ + "a4509b3e97f775a3f09a4e298d6232feba664795", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-387-ref.xht", + "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-388.xht": [ - "19e24082cb49ea7d57699d74af96961666d84193", + "table-anonymous-objects-211.xht": [ + "7e1c630b80b59122044f014a72509f35ed88c1cb", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-388-ref.xht", + "/css/CSS2/tables/table-anonymous-objects-211-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-389.xht": [ - "8bbfee937e1521a7c0b93a49fb0a1cd420d5d4c2", + "table-anonymous-objects-212.xht": [ + "e6bdfd5dd9bc30897c7e672493550600147487d8", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-389-ref.xht", + "/css/CSS2/tables/table-anonymous-objects-212-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-390.xht": [ - "5b3f374c8ac62017dadbdd9ef6b4a160c43f5f7f", + "table-anonymous-objects-213.xht": [ + "e701a82bf063052872b94eacf7fe5b2cbd9f5b9b", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-390-ref.xht", + "/css/CSS2/tables/table-anonymous-objects-213-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-391.xht": [ - "b94c12f85d73ddca65d4d9bbbd92255530e0b40b", + "table-anonymous-text-indent.xht": [ + "1364f79033c9b489a2c0a5eebe5e6ad2d8a89a2e", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-391-ref.xht", + "/css/CSS2/tables/reference/table-anonymous-text-indent-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-392.xht": [ - "12d5c0a9249bccc8405c49c3236a5e66303cfd85", + "table-backgrounds-bc-cell-001.xht": [ + "898ff46d56572eaf7b3a493fe34657d0cc0aee80", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-392-ref.xht", + "/css/CSS2/tables/table-backgrounds-bc-cell-001-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-393.xht": [ - "170a4b0fa68825eff7038973bf635dd0e19828bf", + "table-backgrounds-bc-colgroup-001.xht": [ + "3029e09f9e15a7bc32231d5f19e9f4f88c39b553", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-393-ref.xht", + "/css/CSS2/tables/table-backgrounds-bc-colgroup-001-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-394.xht": [ - "f86439f8ac9bd389210a142b8da5941d998304fa", + "table-backgrounds-bc-column-001.xht": [ + "ca0cb36e1bd1dcd807f397f285efc120bc27dc28", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-394-ref.xht", + "/css/CSS2/tables/table-backgrounds-bc-column-001-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-395.xht": [ - "a1c9d37c0958ac675e7471e12bdc6f0c8616e05f", + "table-backgrounds-bc-row-001.xht": [ + "70a2243483025a921db173c4ebec5537124ccc20", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-395-ref.xht", + "/css/CSS2/tables/table-backgrounds-bc-row-001-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-396.xht": [ - "1ca69404d9005040957e92ad8ba9bf21e4c7aa9f", + "table-backgrounds-bc-rowgroup-001.xht": [ + "d86191a7fda9a8fe5bc16ab701e7cb9ade887c2a", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-396-ref.xht", + "/css/CSS2/tables/table-backgrounds-bc-rowgroup-001-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-397.xht": [ - "e46490cfdce1ad45d2f2ec19c8a76cc4cfd840de", + "table-backgrounds-bc-table-001.xht": [ + "87ae9eafaf0701dc6523a6826bcb255ee6c371a8", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-397-ref.xht", + "/css/CSS2/tables/table-backgrounds-bc-table-001-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-398.xht": [ - "f43ddddf240b34ccb9ba5df77cc9a27cfe4ba5c4", + "table-backgrounds-bs-cell-001.xht": [ + "23ed996c110515b40d682e24acf5b0751cfa5533", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-398-ref.xht", + "/css/CSS2/tables/table-backgrounds-bs-cell-001-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-399.xht": [ - "804307306daf0e344cb6df4e2bb0d53e4c6fdbd8", + "table-backgrounds-bs-colgroup-001.xht": [ + "d5ee3346cb877593b32e1bbfd9f0e2b8c5370e6d", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-399-ref.xht", + "/css/CSS2/tables/table-backgrounds-bs-colgroup-001-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-400.xht": [ - "7987af22446edfb8837f034b853487f64dd0fec9", + "table-backgrounds-bs-column-001.xht": [ + "126be18ddb26e526c6ae242f7cb96416a0124d1c", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-400-ref.xht", + "/css/CSS2/tables/table-backgrounds-bs-column-001-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-401.xht": [ - "468370e0cd7a95ff20c9d8a3a6fd6d415560971c", + "table-backgrounds-bs-row-001.xht": [ + "58fd3d9be77cc0388fbdb0cd4f6dc37275344c07", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-401-ref.xht", + "/css/CSS2/tables/table-backgrounds-bs-row-001-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-402.xht": [ - "e803fb0b41697fc4c44516fe77f0852865fb50bd", + "table-backgrounds-bs-rowgroup-001.xht": [ + "e0e8314304e21c0d6979e068dde8d7a663b45261", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-402-ref.xht", + "/css/CSS2/tables/table-backgrounds-bs-rowgroup-001-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-403.xht": [ - "80fe83281e23b8491fbde9cc19598697279940d8", + "table-backgrounds-bs-table-001.xht": [ + "2d137df979bf377b81a40d1411941747d348d5a8", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-403-ref.xht", + "/css/CSS2/tables/table-backgrounds-bs-table-001-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-404.xht": [ - "67ce216676a7989cf5baa993dec121e45f166395", + "table-cell-001.xht": [ + "37a5ffda294aada9b449c1d9137ba101b8bd5ee4", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-404-ref.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "first-letter-punctuation-405.xht": [ - "1f09b6b4032f38ca7bea3fa7fe015b3dd17d6913", + "table-column-rendering-001.xht": [ + "fd827e5b63e2775fb43b156e5f05c50c7b3de9ea", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-405-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-406.xht": [ - "71a8f3f0b5f3280e29b870e5a545537227009fa9", + "table-column-rendering-002.xht": [ + "e4496dc8026b8f02d84ed27837cfd176a8dbd5c2", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-406-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-407.xht": [ - "7ac03741dd3c14462df8cbfa9fae3d9579c2d861", + "table-height-algorithm-008a.xht": [ + "eaaf04f759be858bbe0d8b103930748bfd4bf1e7", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-407-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "first-letter-punctuation-408.xht": [ - "fec44ddc4b51e50158d3a3e98eb7ca83e68ec6ac", + "table-height-algorithm-008b.xht": [ + "a0e811ad3d63476bc174efd7637128ef9c761334", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-408-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "first-letter-punctuation-409.xht": [ - "869e7c009cda524ebdc3ed0184cfcdccb01e968e", + "table-height-algorithm-008c.xht": [ + "092e7cf0fc7fac3d47fa44df0668a358b4979a57", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-409-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "first-letter-punctuation-410.xht": [ - "909fc8817f1175a5710208cf80bdb3e9d86cf040", + "table-layout-applies-to-016.xht": [ + "45d16291fe4e982529b2b638060868ccc4421990", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-410-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-411.xht": [ - "902d37bac51a455810e92bb1240918bc7b7c3736", + "table-margin-004.xht": [ + "8a68253f7247cadf2503a237cc0f371f01a99aa8", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-411-ref.xht", + "/css/CSS2/tables/reference/table-margin-004-ref.xht", "==" ] ], {} ] ], - "first-letter-punctuation-412.xht": [ - "2fe316e6a6d5d7af212a1090db9c87df23147e5e", + "table-vertical-align-baseline-001.xht": [ + "1862eb41f7f14cb6f77320f6e1e3fa7986c9ff00", [ null, [ [ - "/css/CSS2/selectors/first-letter-punctuation-412-ref.xht", + "/css/CSS2/tables/table-vertical-align-baseline-001-ref.xht", "==" ] ], {} ] ], - "first-letter-quote-001.xht": [ - "60225a6977654749431a1cc2b5d0d1414bff6569", + "table-vertical-align-baseline-002.xht": [ + "146c6cce302a3efcca13589084267eaebca47abb", [ null, [ [ - "/css/CSS2/selectors/first-letter-quote-001-ref.xht", + "/css/CSS2/tables/table-vertical-align-baseline-001-ref.xht", "==" ] ], {} ] ], - "first-letter-quote-002.xht": [ - "7edb6039f2074e4b9e95c64f9c21f35350dec855", + "table-vertical-align-baseline-003.xht": [ + "d63cb07dc726ca686cb13563c9df6ab596b2bf13", [ null, [ [ - "/css/CSS2/selectors/first-letter-quote-001-ref.xht", + "/css/CSS2/tables/table-vertical-align-baseline-001-ref.xht", "==" ] ], {} ] ], - "first-letter-quote-003.xht": [ - "6effc9696492d82078a12d6461d23168686791c0", + "table-vertical-align-baseline-004.xht": [ + "6e56d07179ab0c5ce3bd398b6d0beb45ab1ca2ef", [ null, [ [ - "/css/CSS2/selectors/first-letter-quote-001-ref.xht", + "/css/CSS2/tables/table-vertical-align-baseline-001-ref.xht", "==" ] ], {} ] ], - "first-letter-quote-004.xht": [ - "81b4884f0b8b7211731c89c013cba8cf41b926b2", + "table-vertical-align-baseline-005.xht": [ + "8b728bee6d4db318492f281a19e6d77ad9b2a18d", [ null, [ [ - "/css/CSS2/selectors/first-letter-quote-001-ref.xht", + "/css/CSS2/tables/table-vertical-align-baseline-001-ref.xht", "==" ] ], {} ] ], - "first-letter-quote-005.xht": [ - "b9a30fac4fffe161b700d16853048fa8b3fb08fc", + "table-vertical-align-baseline-006.xht": [ + "9392d7ee6784e87e696043d5d97a8c0564790545", [ null, [ [ - "/css/CSS2/selectors/first-letter-quote-001-ref.xht", + "/css/CSS2/tables/table-vertical-align-baseline-001-ref.xht", "==" ] ], {} ] ], - "first-letter-quote-006.xht": [ - "ecad3107c873613c6b788e3ed6a6770a3df2cada", + "table-vertical-align-baseline-007.xht": [ + "c85e389fcffef4a527832f0537eb31f8e5cabb48", [ null, [ [ - "/css/CSS2/selectors/first-letter-quote-001-ref.xht", + "/css/CSS2/tables/table-vertical-align-baseline-001-ref.xht", "==" ] ], {} ] ], - "first-letter-selector-000.xht": [ - "0fdef1893b98e56f5134ab2bfb6823cca5eb88c0", + "table-vertical-align-baseline-008.xht": [ + "1200ac1ae87c792cf8182072b02f426a0f692433", [ null, [ [ - "/css/CSS2/selectors/first-letter-selector-000-ref.html", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "first-letter-selector-001.xht": [ - "d62f1aeeea09fc234859e956a6468875d004971a", + "table-vertical-align-baseline-009.xht": [ + "4620848ddc19661b5ddfaa34cefc9c9eee266dcb", [ null, [ [ - "/css/CSS2/selectors/first-letter-selector-001-ref.html", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "first-letter-selector-002.xht": [ - "982c64dbc2fc26d1d4ec4f5ec129e49bce59757d", + "table-visual-layout-017.xht": [ + "25067cb68385a520a10a31949d742b520c7e9cd6", [ null, [ [ - "/css/CSS2/selectors/first-letter-selector-002-ref.html", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "first-letter-selector-003.xht": [ - "d5d6f4bb8258b55f81890816bc6f70257f1ce186", + "table-visual-layout-018.xht": [ + "1fa28c1d87e77ff779b5b78a65bf49f0524dd084", [ null, [ [ - "/css/CSS2/selectors/first-letter-selector-003-ref.html", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "first-letter-selector-004.xht": [ - "0c8f32fe721fc1596455954c59495ce1311dfb62", + "table-visual-layout-026a.xht": [ + "844adddc40d0ac4c6a4c61e5d6004aa68379e58b", [ null, [ [ - "/css/CSS2/selectors/first-letter-selector-001-ref.html", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "first-letter-selector-005.xht": [ - "32c7d93ea335266c11e374937ce2a2e993a44fe3", + "table-visual-layout-026b.xht": [ + "6f92c8c33a6e6b60893f41a9f314d63a4685a8de", [ null, [ [ - "/css/CSS2/selectors/first-letter-selector-005-ref.html", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "first-letter-selector-007.xht": [ - "4e09d09679788b0ce6c8a4826a6436ddd11d70c7", + "table-visual-layout-026c.xht": [ + "780ced0cfd0d38dd5bd76144b9047d782e17bbe2", [ null, [ [ - "/css/CSS2/selectors/first-letter-selector-007-ref.html", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "first-letter-selector-008.xht": [ - "a3664bbbef3cbfecf4f9ed994e6cfe9fc54b4ea5", + "table-visual-layout-026d.xht": [ + "d7f28131a3d9da47b24f4c2ed53626f56a44e8dc", [ null, [ [ - "/css/CSS2/selectors/first-letter-selector-001-ref.html", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] - ], - "first-letter-selector-019.xht": [ - "f4ae8bc545061026954bcfa075a4e90f095d9792", + ] + }, + "text": { + "bidi-flag-emoji-02.html": [ + "d6c92b903c6655670e7d38b279a245eda4c428e9", [ null, [ [ - "/css/CSS2/selectors/first-letter-selector-001-ref.html", + "/css/CSS2/text/bidi-flag-emoji-02-ref.html", "==" ] ], {} ] ], - "first-letter-selector-028.xht": [ - "2780fdb8307e4404ea5155e0dc97f2eaf45860d6", + "bidi-flag-emoji.html": [ + "a184db265942723a7728030390cedf2eccaa15f2", [ null, [ [ - "/css/CSS2/selectors/first-letter-selector-028-ref.xht", + "/css/CSS2/text/bidi-flag-emoji-ref.html", "==" ] ], {} ] ], - "first-line-001.xht": [ - "bc0bf1c4eac97bb038f98bb240072a1c8996bbd6", + "bidi-span-001.html": [ + "b645a2b548c46b064b1a5f3012240a3947c772b9", [ null, [ [ - "/css/CSS2/selectors/first-line-001-ref.xht", + "/css/CSS2/text/bidi-span-001-ref.html", "==" ] ], {} ] ], - "first-line-floats-001.xht": [ - "bdfab881563c2a9acf4607b4e76d13ca6ac71f0f", + "bidi-span-002.html": [ + "d4fc6de070d23ebe8817e9a299c44e48cad256a9", [ null, [ [ - "/css/CSS2/selectors/first-line-floats-001-ref.xht", + "/css/CSS2/text/bidi-span-002-ref.html", "==" ] ], {} ] ], - "first-line-floats-002.xht": [ - "827e77d40ee5b665c6107602c838e66b7c3a98b2", + "bidi-span-003.html": [ + "92a90d529c5a10ff099a03a3133f6c96c5b4d91c", [ null, [ [ - "/css/CSS2/selectors/first-line-floats-001-ref.xht", + "/css/CSS2/text/bidi-span-003-ref.html", "==" ] ], {} ] ], - "first-line-floats-003.xht": [ - "fd1e92e1af8c22cb608d651f2843c59476492eca", + "letter-spacing-004.xht": [ + "ff85e03f75e7dc372259fe1e6fe3b7b59e101277", [ null, [ [ - "/css/CSS2/selectors/first-line-floats-001-ref.xht", + "/css/CSS2/text/letter-spacing-004-ref.xht", "==" ] ], {} ] ], - "first-line-floats-004.xht": [ - "e80aee2e80b693ff639d2875f929563870f35a52", + "letter-spacing-005.xht": [ + "b89ab05edd2c442b18307ee31708799c94c937d5", [ null, [ [ - "/css/CSS2/selectors/first-line-floats-001-ref.xht", + "/css/CSS2/text/letter-spacing-004-ref.xht", "==" ] ], {} ] ], - "first-line-inherit-001.xht": [ - "99e18fb8f692ba9ccd493b9bbcebf5d913d3a669", + "letter-spacing-006.xht": [ + "05dcadf4f0cf3648e57544001863e696649eff4b", [ null, [ [ - "/css/CSS2/selectors/first-line-inherit-001-ref.xht", + "/css/CSS2/text/letter-spacing-004-ref.xht", "==" ] ], {} ] ], - "first-line-inherit-002.xht": [ - "41409a60191de65f7c06b58b3d5b1aa29d539eb9", + "letter-spacing-007.xht": [ + "03e0aa8c378b76d3651d8f3efacbeafef5261a88", [ null, [ [ - "/css/CSS2/selectors/first-line-inherit-002-ref.xht", + "/css/CSS2/text/letter-spacing-007-ref.xht", "==" ] ], {} ] ], - "first-line-inherit-003.xht": [ - "856d4a0587cf8a2a739c57839a0ba0e9ff990c71", + "letter-spacing-008.xht": [ + "f3f565d304a0fa09634bdde77fc550bc058da07c", [ null, [ [ - "/css/CSS2/selectors/first-line-inherit-003-ref.xht", + "/css/CSS2/text/letter-spacing-007-ref.xht", "==" ] ], {} ] ], - "first-line-pseudo-012.xht": [ - "4961f50e82a3b1a2f05ba6971a5beb30e1e9691c", + "letter-spacing-016.xht": [ + "ae5e20cdcd1a2af0dbc1c9c2fd3095ab1f65d169", [ null, [ [ - "/css/CSS2/selectors/first-line-pseudo-012-ref.xht", + "/css/CSS2/text/letter-spacing-004-ref.xht", "==" ] ], {} ] ], - "first-line-pseudo-013.xht": [ - "b8052b55ac438dfa9eb644d1677f9730f2d03f59", + "letter-spacing-017.xht": [ + "31f74f4fc99895cb3aa51800c77538e4046b3ab9", [ null, [ [ - "/css/CSS2/selectors/first-line-pseudo-013-ref.xht", + "/css/CSS2/text/letter-spacing-004-ref.xht", "==" ] ], {} ] ], - "first-line-pseudo-014.xht": [ - "7df62248c1b09d9a0ad5dc909a5b26e99cacdd30", + "letter-spacing-018.xht": [ + "4aeadbc58c1b583709de03e67b9a9ad94e3f8b7e", [ null, [ [ - "/css/CSS2/selectors/first-line-pseudo-013-ref.xht", + "/css/CSS2/text/letter-spacing-004-ref.xht", "==" ] ], {} ] ], - "first-line-pseudo-015.xht": [ - "c41f7763ac44b8a18c536feaf333f790c6622e1b", + "letter-spacing-019.xht": [ + "be0005ff5f8c143332b33ff7572f1e01ede87f46", [ null, [ [ - "/css/CSS2/selectors/first-line-pseudo-015-ref.xht", + "/css/CSS2/text/letter-spacing-007-ref.xht", "==" ] ], {} ] ], - "first-line-pseudo-016.xht": [ - "3c0a911456d40ce99551c93e21f11ede97ddeb20", + "letter-spacing-020.xht": [ + "81bbc601ef1e66d8358d091cc80e39df48116fbc", [ null, [ [ - "/css/CSS2/selectors/first-line-pseudo-015-ref.xht", + "/css/CSS2/text/letter-spacing-007-ref.xht", "==" ] ], {} ] ], - "first-line-pseudo-018.xht": [ - "e662ccfcf3c89088cc7ab84df9bbdb9bc756b6b9", + "letter-spacing-028.xht": [ + "c870581c69fb1d04b7c7843ef9d3001b725f0e24", [ null, [ [ - "/css/CSS2/reference/ref-this-text-should-be-green.xht", + "/css/CSS2/text/letter-spacing-004-ref.xht", "==" ] ], {} ] ], - "first-line-pseudo-019.xht": [ - "3c29e0383aa01d16687347e89f1f072f7ecd2fba", + "letter-spacing-029.xht": [ + "7a6e2e741871bf2e645271251946afc109978dca", [ null, [ [ - "/css/CSS2/reference/ref-this-text-should-be-green.xht", + "/css/CSS2/text/letter-spacing-004-ref.xht", "==" ] ], {} ] ], - "first-line-pseudo-020.xht": [ - "d0c8ddcc0f3db6400a022017756d63aa7c43d532", + "letter-spacing-030.xht": [ + "e8235d80196299aefb8d2f2285d4af1bedab5dbc", [ null, [ [ - "/css/CSS2/reference/ref-this-text-should-be-green.xht", + "/css/CSS2/text/letter-spacing-004-ref.xht", "==" ] ], {} ] ], - "first-line-pseudo-021.xht": [ - "d071fc000472c4cb16a9b0e349d34f85869c634c", + "letter-spacing-031.xht": [ + "9bde6686e3f94de2814c093c77d86e11bf7ecf39", [ null, [ [ - "/css/CSS2/reference/ref-this-text-should-be-green.xht", + "/css/CSS2/text/letter-spacing-007-ref.xht", "==" ] ], {} ] ], - "first-line-selector-010.xht": [ - "2b3f173de31088b0b37a4bf64b6d147fe43bb492", + "letter-spacing-032.xht": [ + "522703fd6ed1dbc5ea3a5568df73cc82a276ac02", [ null, [ [ - "/css/CSS2/selectors/first-letter-selector-005-ref.html", + "/css/CSS2/text/letter-spacing-007-ref.xht", "==" ] ], {} ] ], - "first-line-selector-013.xht": [ - "ce1edbc5c9ce4ae081ddeb18056fd12bcfb450e2", + "letter-spacing-040.xht": [ + "2fd455096b14339cf15ac17b80182ee93bdb1f5c", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/text/letter-spacing-004-ref.xht", "==" ] ], {} ] ], - "grouping-002.xht": [ - "8817411460397c7d797e0042eaf9b508110deafd", + "letter-spacing-041.xht": [ + "a46e272070240c411fa5f857e395bbb07eac7229", [ null, [ [ - "/css/CSS2/selectors/grouping-002-ref.xht", + "/css/CSS2/text/letter-spacing-004-ref.xht", "==" - ], - [ - "/css/CSS2/selectors/grouping-002-notref.xht", - "!=" ] ], {} ] ], - "html-case-sensitivity-001.html": [ - "d0d7d6db288ad263c925a2ddf911938397a81363", + "letter-spacing-042.xht": [ + "c414cf33b7b89368ed0155ca7c5c7b871ee1b3f9", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/text/letter-spacing-004-ref.xht", "==" ] ], {} ] ], - "id-selector-001.xht": [ - "29490739b166ede55b3e6f30f2829bca68d5e27b", + "letter-spacing-043.xht": [ + "e878faed257657a864247412a92d02ed7e77be61", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/text/letter-spacing-007-ref.xht", "==" ] ], {} ] ], - "id-selector-002.xht": [ - "706e8e84d7fed7f32c3f2f9235f1f049814350f7", + "letter-spacing-044.xht": [ + "90a162443a3362ee695caef1333f7cc11abdaadf", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/text/letter-spacing-007-ref.xht", "==" ] ], {} ] ], - "id-selector-004.xht": [ - "66d8c517e81192ce3efd1f51f453290a040ebecb", + "letter-spacing-052.xht": [ + "5165ac8f763e8a68edfcd7f8c7169ede1070c3ec", [ null, [ [ - "/css/CSS2/reference/no-red-filler-text-ref.xht", + "/css/CSS2/text/letter-spacing-004-ref.xht", "==" ] ], {} ] ], - "id-selector-005.xht": [ - "0e9454cb9e4164ec795a5886f760b8c40ada6b53", + "letter-spacing-053.xht": [ + "de646f4818cd960d3b066b07f735fa384d5de751", [ null, [ [ - "/css/CSS2/reference/no-red-filler-text-ref.xht", + "/css/CSS2/text/letter-spacing-004-ref.xht", "==" ] ], {} ] ], - "id-selector-006.xht": [ - "319b63a03dce5fd299c54d80d45f97da31c1ed93", + "letter-spacing-054.xht": [ + "a270f01615459b3ca2d3123b078e04a214a89478", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/text/letter-spacing-004-ref.xht", "==" ] ], {} ] ], - "lang-selector-001.xht": [ - "8a2c8f165f7c87fdbf36cc3ac7f9d68c892f6a11", + "letter-spacing-055.xht": [ + "dfe0e85edfc3c13a053bff56f0aec0ecb259f715", [ null, [ [ - "/css/CSS2/selectors/lang-selector-001-ref.xht", + "/css/CSS2/text/letter-spacing-007-ref.xht", "==" ] ], {} ] ], - "lang-selector-002.xht": [ - "b4568dc564d029498e93ea2579dbd3a2d4c166d9", + "letter-spacing-056.xht": [ + "4af2a1a43d10764615bc299d3ba0eaccfade3ae2", [ null, [ [ - "/css/CSS2/reference/no-red-filler-text-ref.xht", + "/css/CSS2/text/letter-spacing-007-ref.xht", "==" ] ], {} ] ], - "lang-selector-003.xht": [ - "138c4e1ee500354a4c5f175f4a486f5649afa413", + "letter-spacing-064.xht": [ + "03e45ca3c2551e6323a66c5bf654522cba5791c9", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/text/letter-spacing-004-ref.xht", "==" ] ], {} ] ], - "lang-selector-004.xht": [ - "8bbfc839602ea8675720fb6d22727483c34a5848", + "letter-spacing-065.xht": [ + "6fd4912d3e2ac120076a8b41faad120f70497f0c", [ null, [ [ - "/css/CSS2/selectors/lang-selector-004-ref.html", + "/css/CSS2/text/letter-spacing-004-ref.xht", "==" ] ], {} ] ], - "lang-selector-005.xht": [ - "916028cc6b5e0f1e711c6cbd2b6e880c4cf9a8de", + "letter-spacing-066.xht": [ + "4493a67c6bd80c9a9dd0c69e6b1e1ca754556f73", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/text/letter-spacing-004-ref.xht", "==" ] ], {} ] ], - "lang-selector-006.xht": [ - "77fb14811ab2f2adae1c2b4ce6883d2d80b9c6b1", + "letter-spacing-067.xht": [ + "02b81df92d92a0db02459a880b918267fdbb69e4", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/text/letter-spacing-007-ref.xht", "==" ] ], {} ] ], - "pseudo-001.xht": [ - "daa3b72712b329af0fff8721a6bd2fc97bf070af", + "letter-spacing-068.xht": [ + "a057b7eb36f01d2904c453c11cd8215ec0f45c2b", [ null, [ [ - "/css/CSS2/reference/no-red-filler-text-ref.xht", + "/css/CSS2/text/letter-spacing-007-ref.xht", "==" ] ], {} ] ], - "pseudo-002.xht": [ - "91fc60970405863948191d111735dc3a5126b281", + "letter-spacing-076.xht": [ + "c288610e7893fb7effbb24a565f8369034ca56ce", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/text/letter-spacing-004-ref.xht", "==" ] ], {} ] ], - "pseudo-006.xht": [ - "b8c3b419ded7c7e345c22140e29528e8632eb43f", + "letter-spacing-077.xht": [ + "1b90dfd51fdf245d01fb3b30d9a6ae43d2e425f1", [ null, [ [ - "/css/CSS2/selectors/first-letter-selector-001-ref.html", + "/css/CSS2/text/letter-spacing-004-ref.xht", "==" ] ], {} ] ], - "pseudo-007.xht": [ - "4c7df356b2a94405d8735d998d5d21d88260e429", + "letter-spacing-078.xht": [ + "2ec940493e93417c2c13f82cd4f60af574b6c8fc", [ null, [ [ - "/css/CSS2/selectors/universal-selector-002-ref.xht", + "/css/CSS2/text/letter-spacing-004-ref.xht", "==" ] ], {} ] ], - "pseudo-008.xht": [ - "95868e6bf5aae003a0e88df0daf94f0d24db9588", + "letter-spacing-079.xht": [ + "31d5612b62a9d292663f9880150adb45356ed54f", [ null, [ [ - "/css/CSS2/selectors/pseudo-008-ref.html", + "/css/CSS2/text/letter-spacing-079-ref.xht", "==" ] ], {} ] ], - "pseudo-014.xht": [ - "e7d6fc439bac016887764522a8cad1629a2fc5c9", + "letter-spacing-080.xht": [ + "642497e9f75a90fe3a0be1a2ea3bace114c8d1df", [ null, [ [ - "/css/CSS2/reference/no-red-filler-text-ref.xht", + "/css/CSS2/text/letter-spacing-007-ref.xht", "==" ] ], {} ] ], - "pseudo-015.xht": [ - "e484191ca86bc76729deefc2bbae365b6b2c5904", + "letter-spacing-088.xht": [ + "b159cb5adb9e4cacbe6109e321f62a0efe7d1f4b", [ null, [ [ - "/css/CSS2/reference/no-red-filler-text-ref.xht", + "/css/CSS2/text/letter-spacing-004-ref.xht", "==" ] ], {} ] ], - "pseudo-016.xht": [ - "21b4fb1dbcd91e88a2399df1691cf413d7ea264f", + "letter-spacing-089.xht": [ + "56ea784aefee11175889733b3d57c9ef36660165", [ null, [ [ - "/css/CSS2/reference/no-red-filler-text-ref.xht", + "/css/CSS2/text/letter-spacing-004-ref.xht", "==" ] ], {} ] ], - "selectors-001.xht": [ - "68f462e2882b0e4cf98b5fb0925adb4f90cec8ec", + "letter-spacing-090.xht": [ + "5d0159532a8ea622879862601d7ffbc5800b206f", [ null, [ [ - "/css/CSS2/selectors/selectors-001-ref.xht", + "/css/CSS2/text/letter-spacing-004-ref.xht", "==" ] ], {} ] ], - "selectors-002.xht": [ - "7255fde461203130a1517089dc165d388720841d", + "letter-spacing-091.xht": [ + "e444b75033e2bd0fb4e8bb79d4b9110c836fff30", [ null, [ [ - "/css/CSS2/selectors/selectors-002-ref.xht", + "/css/CSS2/text/letter-spacing-091-ref.xht", "==" ] ], {} ] ], - "selectors-parsing-001.xht": [ - "f9864d1d627780c72196468b370e575c748a0fe0", + "letter-spacing-092.xht": [ + "1e3856aac418c1fca357ea91f488e2a985606ac9", [ null, [ [ - "/css/CSS2/selectors/selectors-parsing-001-ref.xht", + "/css/CSS2/text/letter-spacing-091-ref.xht", "==" ] ], {} ] ], - "sibling-selector-001.xht": [ - "bee2a6ad41c4a7a13282ecc24b5a0b551e8b40ee", + "letter-spacing-097.xht": [ + "01b2317c7c7206456b563720e3a8ab59c879fb3c", [ null, [ [ - "/css/CSS2/selectors/sibling-selector-001-ref.xht", + "/css/CSS2/text/letter-spacing-004-ref.xht", "==" ] ], {} ] ], - "sibling-selector-002.xht": [ - "296a872fdd13e3ff173894bc3cdea52880425dd1", + "letter-spacing-098.xht": [ + "20d456aa12292bcf7a456b636f14bdd0e8238b95", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/text/letter-spacing-004-ref.xht", "==" ] ], {} ] ], - "sibling-selector-003.xht": [ - "16b790ef8835de3673f8a0e93464c4b5c73082a0", + "letter-spacing-099.xht": [ + "bef4b1283596e220235a716c7821779a583bf9c5", [ null, [ [ - "/css/CSS2/selectors/sibling-selector-003-ref.xht", + "/css/CSS2/text/letter-spacing-004-ref.xht", "==" ] ], {} ] ], - "type-selector-001.xht": [ - "a3e3419b9592cb176313ee2f1b45b7a4dd5d355a", + "letter-spacing-100.xht": [ + "cee3f3f375f0c7d05de56227f636befa37b52baf", [ null, [ [ - "/css/CSS2/selectors/type-selector-001-ref.xht", + "/css/CSS2/text/letter-spacing-004-ref.xht", "==" ] ], {} ] ], - "universal-selector-001.xht": [ - "dda83a2dca7a9753d01e146dd8f57e7f2b344bbb", + "letter-spacing-101.xht": [ + "af1e89d5f2dc4fbbffa299f8d0406f2e549930cc", [ null, [ [ - "/css/CSS2/selectors/universal-selector-001-ref.xht", + "/css/CSS2/text/letter-spacing-007-ref.xht", "==" - ], - [ - "/css/CSS2/selectors/universal-selector-001-notref.xht", - "!=" ] ], {} ] ], - "universal-selector-002.xht": [ - "27150387a4a2874f105a4ca977c056a3db69461e", + "letter-spacing-102.xht": [ + "10dbe4609eb0f9cce3be745cee40f6d90e59d5cf", [ null, [ [ - "/css/CSS2/selectors/universal-selector-002-ref.xht", + "/css/CSS2/text/letter-spacing-102-ref.xht", "==" - ], - [ - "/css/CSS2/selectors/universal-selector-002-notref.xht", - "!=" ] ], {} ] ], - "universal-selector-003.xht": [ - "50ab88948a213ae6f8f8d9f811fc53fc197a9010", + "letter-spacing-applies-to-001.xht": [ + "a37396710a87e6bf46115a9950efb1085526976f", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/reference/black_box_ends_when_blue_box_ends_6_boxes_ahem.html", "==" ] ], {} ] ], - "universal-selector-004.xht": [ - "82da04eeb11b77fa95bee2ffcb3b24a8730b7a2a", + "letter-spacing-applies-to-002.xht": [ + "6930c238145a4674a5e3d81631706275861a9abf", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/reference/black_box_ends_when_blue_box_ends_6_boxes_ahem.html", "==" ] ], {} ] ], - "universal-selector-005.xht": [ - "1946e4f25e483b384e55e75cae4a1cd2da2c4cfa", + "letter-spacing-applies-to-003.xht": [ + "3e481c8f2505306789ea157c3b1549f92af2b587", [ null, [ [ - "/css/CSS2/selectors/universal-selector-005-ref.xht", + "/css/CSS2/text/letter-spacing-applies-to-003-ref.xht", "==" ] ], {} ] - ] - }, - "stacking-context": { - "composite-change-after-scroll-preserves-stacking-order.html": [ - "1abf6f292ea654f28cf9082d0d89623304a12a74", + ], + "letter-spacing-applies-to-005.xht": [ + "02d9882d5d1c6590d390a22f57c3c614e6f07f33", [ null, [ [ - "/css/CSS2/stacking-context/composite-change-after-scroll-preserves-stacking-order-ref.html", + "/css/CSS2/text/letter-spacing-applies-to-005-ref.xht", "==" ] ], {} ] ], - "opacity-affects-block-in-inline.html": [ - "340ca185d9e41639be65d61b9e1aa87adf44750a", + "letter-spacing-applies-to-006.xht": [ + "4ed48828bfc94edd95f39db6dc43d99b46a78c97", [ null, [ [ - "/css/CSS2/stacking-context/opacity-affects-block-in-inline-ref.html", + "/css/reference/black_box_ends_when_blue_box_ends_6_boxes_ahem.html", "==" ] ], {} ] ], - "opacity-change-parent-stacking-context.html": [ - "e58bf47c2f8fd903cf738439862ee260329505d0", + "letter-spacing-applies-to-007.xht": [ + "40667d89579df774035d13349a0dd7105f9cee90", [ null, [ [ - "/css/CSS2/stacking-context/opacity-change-parent-stacking-context-ref.html", + "/css/CSS2/text/letter-spacing-applies-to-007-ref.xht", "==" ] ], {} ] ], - "opacity-change-twice-stacking-context.html": [ - "c3c680c68fad38f55a809f144867cb3fd285db9d", + "letter-spacing-applies-to-008.xht": [ + "2cc52bf39dbd1aa465553e4492e4d4545bd3356f", [ null, [ [ - "/css/CSS2/stacking-context/opacity-change-twice-stacking-context-ref.html", + "/css/reference/black_box_ends_when_blue_box_ends_6_boxes_ahem.html", "==" ] ], {} ] ], - "opacity-transition-change-parent-stacking-context.html": [ - "c163a4c7e66b6254de444d0b098d70854316f637", + "letter-spacing-applies-to-009.xht": [ + "e857ad99c2b78efd2e41388028d3f2bfd86c0364", [ null, [ [ - "/css/CSS2/stacking-context/opacity-transition-change-parent-stacking-context-ref.html", + "/css/reference/black_box_ends_when_blue_box_ends_6_boxes_ahem.html", "==" ] ], {} ] ], - "zindex-affects-block-in-inline.html": [ - "5a5c9e3dcca6171910f85790e13dc754acda58e0", + "letter-spacing-applies-to-010.xht": [ + "606a0ef1d90fb8171965fc86f0b8277a1e62c486", [ null, [ [ - "/css/CSS2/stacking-context/zindex-affects-block-in-inline-ref.html", + "/css/reference/black_box_ends_when_blue_box_ends_6_boxes_ahem.html", "==" ] ], {} ] - ] - }, - "syntax": { - "at-charset-001.xht": [ - "06642b8f5dab55fb0ddfabdeb4304e9ab0b361b1", + ], + "letter-spacing-applies-to-011.xht": [ + "ed77a6ec753ebc84e90927112cb5c78fb311c134", [ null, [ [ - "/css/CSS2/syntax/at-charset-001-ref.xht", + "/css/reference/black_box_ends_when_blue_box_ends_6_boxes_ahem.html", "==" ] ], {} ] ], - "at-charset-002.xht": [ - "5db020d1e0a189f41f68d4a7a65c3a3c5f04e446", + "letter-spacing-applies-to-012.xht": [ + "54ec3074c245a15bb44900e673e39c0b0abcd49a", [ null, [ [ - "/css/CSS2/syntax/at-charset-001-ref.xht", + "/css/CSS2/text/letter-spacing-applies-to-012-ref.xht", "==" ] ], {} ] ], - "at-charset-003.xht": [ - "d2b0ad7af2b840aa57a9a024949e0709bf59e93c", + "letter-spacing-applies-to-013.xht": [ + "bfa6e025f6ac02dcc5261df3c31c101aa54f47f1", [ null, [ [ - "/css/CSS2/syntax/at-charset-001-ref.xht", + "/css/CSS2/text/letter-spacing-applies-to-012-ref.xht", "==" ] ], {} ] ], - "at-charset-004.xht": [ - "6d23331e954a0652cfa7f109b2f1305f64668b50", + "letter-spacing-applies-to-014.xht": [ + "5660b911b2662c1438bdd737d517f2a922eb0f71", [ null, [ [ - "/css/CSS2/syntax/at-charset-001-ref.xht", + "/css/reference/black_box_ends_when_blue_box_ends_6_boxes_ahem.html", "==" ] ], {} ] ], - "at-charset-005.xht": [ - "d76f64f6505fe7515cd11a915dbf8961d218c3d0", + "letter-spacing-applies-to-015.xht": [ + "f329cae7fac9b4937acd6b5510ef908bbde0c0e5", [ null, [ [ - "/css/CSS2/syntax/at-charset-001-ref.xht", + "/css/reference/black_box_ends_when_blue_box_ends_6_boxes_ahem.html", "==" ] ], {} ] ], - "at-charset-006.xht": [ - "d78b378b1a97591bffc9181cf184b69e6ffe5092", + "letter-spacing-justify-001.xht": [ + "db70f3d548f7c37fe051c45e55519182a67f8c0a", [ null, [ [ - "/css/CSS2/syntax/at-charset-001-ref.xht", + "/css/CSS2/text/letter-spacing-justify-001-ref.xht", "==" ] ], {} ] ], - "at-charset-007.xht": [ - "06e2b3592f4a4376d72c522f65fe38e378c0a97d", + "painting-order-underline-001.xht": [ + "9c01cbaa18a46939840d3aa0f31d2b36bfc4d2e3", [ null, [ [ - "/css/CSS2/syntax/at-charset-001-ref.xht", + "/css/CSS2/text/painting-order-underline-001-ref.xht", "==" ] ], {} ] ], - "at-charset-008.xht": [ - "5419cd181efffad4f53e0d2bd8f77ffdb7339de0", + "text-align-bidi-011.xht": [ + "32d8e819633c4392a03653387ea799d8cf27845c", [ null, [ [ - "/css/CSS2/syntax/at-charset-001-ref.xht", + "/css/CSS2/text/text-align-bidi-011-ref.xht", "==" ] ], {} ] ], - "at-charset-009.xht": [ - "21b9c5003133421f154085c88a03fec4f244486b", + "text-align-justify-with-overflow.html": [ + "927e9afd5add40e0509fb1ceb357abd5f8be43db", [ null, [ [ - "/css/CSS2/syntax/at-charset-001-ref.xht", + "/css/CSS2/text/text-align-justify-with-overflow-ref.html", "==" ] ], {} ] ], - "at-charset-010.xht": [ - "5f0b323407a92f9190435c753736d1e2980e29f9", + "text-align-white-space-001.xht": [ + "85d62902f4070db368403973dad91ca04c498118", [ null, [ [ - "/css/CSS2/syntax/at-charset-001-ref.xht", + "/css/CSS2/text/text-align-white-space-001-ref.xht", "==" ] ], {} ] ], - "at-charset-011.xht": [ - "6581c75ae0659885b3dd356a98927d8ac0d31e4e", + "text-align-white-space-002.xht": [ + "4b2ce08ffc3d13a51862c35fc603d51cbb2456e3", [ null, [ [ - "/css/CSS2/syntax/at-charset-001-ref.xht", + "/css/CSS2/text/text-align-white-space-002-ref.xht", "==" ] ], {} ] ], - "at-charset-012.xht": [ - "46d24904c20b4449d2f881e9266abe3607541357", + "text-align-white-space-004.xht": [ + "4d8f6b6f2646cda6d47eff7511f740944951369f", [ null, [ [ - "/css/CSS2/syntax/at-charset-001-ref.xht", + "/css/CSS2/text/text-align-white-space-004-ref.xht", "==" ] ], {} ] ], - "at-charset-014.xht": [ - "346985de43b147ee17eba824f2dab0b945535135", + "text-align-white-space-005.xht": [ + "623a6cbd7b3c65b82bc421941ab7db88d18c0575", [ null, [ [ - "/css/CSS2/syntax/at-charset-001-ref.xht", + "/css/CSS2/text/text-align-white-space-005-ref.xht", "==" ] ], {} ] ], - "at-charset-015.xht": [ - "c6703f9486854cfc2a122822093d1423aa99f49d", + "text-align-white-space-006.xht": [ + "0171dc8645f3acbb4624b244b9f5a59ef2e9efd6", [ null, [ [ - "/css/CSS2/syntax/at-charset-001-ref.xht", + "/css/CSS2/text/text-align-white-space-002-ref.xht", "==" ] ], {} ] ], - "at-charset-016.xht": [ - "655cc7f1946d9a16bdb559f517dd8ce8c52f14f1", + "text-align-white-space-008.xht": [ + "410b551580f61c449d05d5de23bec1c5136f9868", [ null, [ [ - "/css/CSS2/syntax/at-charset-001-ref.xht", + "/css/CSS2/text/text-align-white-space-008-ref.xht", "==" ] ], {} ] ], - "at-charset-019.xht": [ - "61a71107b4edfbcd88e51d726f915d201a25a8ca", + "text-decoration-applies-to-001.xht": [ + "e7d7d0d9dbee36e2a2e208e739b55869b40d2533", [ null, [ [ - "/css/CSS2/syntax/at-charset-001-ref.xht", + "/css/reference/pass_if_filler_text_underlined.html", "==" ] ], {} ] ], - "at-charset-020.xht": [ - "1a80f92b68717d628d27063a01f714a87cee7259", + "text-decoration-applies-to-002.xht": [ + "39f1bb2fd2478c35eb6c0622420edd05f7cfe368", [ null, [ [ - "/css/CSS2/syntax/at-charset-001-ref.xht", + "/css/reference/pass_if_filler_text_underlined.html", "==" ] ], {} ] ], - "at-charset-021.xht": [ - "ef88ad13e54c7cf961b9d6279b39e11b47fb52ec", + "text-decoration-applies-to-005.xht": [ + "19517eea0f7b5e27d0600e66351c84e1b9a062a0", [ null, [ [ - "/css/CSS2/syntax/at-charset-001-ref.xht", + "/css/reference/pass_if_filler_text_underlined.html", "==" ] ], {} ] ], - "at-charset-024.xht": [ - "489d4b9402fc1f8c830f1364a53d36373e3ec591", + "text-decoration-applies-to-006.xht": [ + "6861936cd08c1ecfa76055cceb399fcaa513096f", [ null, [ [ - "/css/CSS2/syntax/at-charset-001-ref.xht", + "/css/reference/pass_if_filler_text_underlined.html", "==" ] ], {} ] ], - "at-charset-025.xht": [ - "e49976f75cc9b04768e1a94cdd36e5eb16e2a047", + "text-decoration-applies-to-007.xht": [ + "686b7316e6882fea948639916a3dfb3b1057ecfc", [ null, [ [ - "/css/CSS2/syntax/at-charset-001-ref.xht", + "/css/reference/pass_if_filler_text_underlined.html", "==" ] ], {} ] ], - "at-charset-026.xht": [ - "ef4feb23ca774f918705c23ed9668dabf75fd0a8", + "text-decoration-applies-to-008.xht": [ + "e6b5252bfe5bffe0bc12413d62fc6ebab6be8eeb", [ null, [ [ - "/css/CSS2/syntax/at-charset-001-ref.xht", + "/css/reference/pass_if_filler_text_underlined.html", "==" ] ], {} ] ], - "at-charset-027.xht": [ - "ed77f05c11e7100d6a930bd3ef1d77ab49236b55", + "text-decoration-applies-to-009.xht": [ + "78239024fb46f9d49d29392a09560d0c377bcd61", [ null, [ [ - "/css/CSS2/syntax/at-charset-001-ref.xht", + "/css/reference/pass_if_filler_text_underlined.html", "==" ] ], {} ] ], - "at-charset-028.xht": [ - "01ff31631de9d806bc3a5b11054d302c3e9c6de1", + "text-decoration-applies-to-010.xht": [ + "72201cb6020564abc3a0f36b26d39671cc70a05a", [ null, [ [ - "/css/CSS2/syntax/at-charset-001-ref.xht", + "/css/reference/pass_if_filler_text_underlined.html", "==" ] ], {} ] ], - "at-charset-029.xht": [ - "95277f8adef6619e9a42c4f1c5bbaed906e950a8", + "text-decoration-applies-to-011.xht": [ + "b174036da7645d673f876b83941450d54a1447eb", [ null, [ [ - "/css/CSS2/syntax/at-charset-001-ref.xht", + "/css/reference/pass_if_filler_text_underlined.html", "==" ] ], {} ] ], - "at-charset-030.xht": [ - "d6e34b936162671dd0ddc0f5cf43ada126b3061f", + "text-decoration-applies-to-014.xht": [ + "a3031ef2bc6db7d0f1ede5797f16b78d25e8b596", [ null, [ [ - "/css/CSS2/syntax/at-charset-001-ref.xht", + "/css/reference/pass_if_filler_text_underlined.html", "==" ] ], {} ] ], - "at-charset-033.xht": [ - "b8a4fdf94046b2c36a298fbb54e0fe7dfe734613", + "text-decoration-applies-to-015.xht": [ + "b61b7b6570002d2119023f52126abcf472334eec", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/reference/pass_if_filler_text_underlined.html", "==" ] ], {} ] ], - "at-charset-034.xht": [ - "c11ab57c1d1eabc8b02e5d6e623da5af93df1374", + "text-decoration-image-001.xht": [ + "3c17fa0828dcabd2d8e586a135524f7ae83ff159", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "at-charset-035.xht": [ - "28b7c1f59db92a95cf09f9348432d4c6cdd06868", + "text-decoration-va-length-001.xht": [ + "0f911fc74c43752c5e252bac1269786031f3995c", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/text/text-decoration-va-length-001-ref.xht", "==" ] ], {} ] ], - "at-charset-036.xht": [ - "40f044d0d02323a6a3b7d8fb300e60e85b73c781", + "text-decoration-va-length-002.xht": [ + "1d1e0d6f13be582524bceae24817dd0c75abb3d3", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/text/text-decoration-va-length-002-ref.xht", "==" ] ], {} ] ], - "at-charset-037.xht": [ - "58f62e03be9e869e35b702767e0d5da62794b193", + "text-indent-004.xht": [ + "b8195eff78080860335f7669cfb6bf3ef091f3c6", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/text/text-indent-004-ref.xht", "==" ] ], {} ] ], - "at-charset-038.xht": [ - "7556ce4c9f3b9cfc8ebb2d257fb768a9b4af5cd5", + "text-indent-005.xht": [ + "791f62268b0802d74eb4abb1fb5f6fdfac4ae68b", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/text/text-indent-004-ref.xht", "==" ] ], {} ] ], - "at-charset-039.xht": [ - "b9ebae743cc7b4e75eeb158fc8ac9d2dd177556a", + "text-indent-006.xht": [ + "da3a2478b2a616c38d1ae6c890936e4b654744b0", [ null, [ [ - "/css/CSS2/syntax/at-charset-039-ref.xht", + "/css/CSS2/text/text-indent-004-ref.xht", "==" ] ], {} ] ], - "at-charset-040.xht": [ - "0847080811e0b5993787695440e70ef1729cb368", + "text-indent-007.xht": [ + "c957a782e9bfffa0a38d892137329d7ba0089cc2", [ null, [ [ - "/css/CSS2/syntax/at-charset-001-ref.xht", + "/css/CSS2/reference/pass_if_box_ahem.html", "==" ] ], {} ] ], - "at-charset-041.xht": [ - "9a2fb8f8b4db21deb5a5d15e49f04686e163047d", + "text-indent-008.xht": [ + "cf6e1aadb9fd30ce955bf221c22bca36b78312e3", [ null, [ [ - "/css/CSS2/syntax/at-charset-001-ref.xht", + "/css/CSS2/reference/pass_if_box_ahem.html", "==" ] ], {} ] ], - "at-charset-042.xht": [ - "6dcf764df08717199aa8305f354fecfaafaa1d88", + "text-indent-010.xht": [ + "ace9a11aaf1c56ff3e2e7fb98dd91d6d6def6bb3", [ null, [ [ - "/css/CSS2/syntax/at-charset-001-ref.xht", + "/css/CSS2/text/text-indent-010-ref.xht", "==" ] ], {} ] ], - "at-charset-043.xht": [ - "8619e855c04d232d7c44eca32288742cc28e1db1", + "text-indent-011.xht": [ + "3ddd12dc9c0960c2e7253a2a4c09a29ff9e8c824", [ null, [ [ - "/css/CSS2/syntax/at-charset-001-ref.xht", + "/css/CSS2/text/text-indent-011-ref.xht", "==" ] ], {} ] ], - "at-charset-044.xht": [ - "f752cecbb3f14dad3fb892e639a70ec8118cd133", + "text-indent-012.xht": [ + "3ae96bbb350fc4b275945abae083fb1e2a721079", [ null, [ [ - "/css/CSS2/syntax/at-charset-001-ref.xht", + "/css/CSS2/text/text-indent-012-ref.xht", "==" ] ], {} ] ], - "at-charset-045.xht": [ - "13fc471c83ba473b2b26cbe41c80d7b650898d1f", + "text-indent-013.xht": [ + "60f77d3cbc1d89bece7748d20d864fd9432e954d", [ null, [ [ - "/css/CSS2/syntax/at-charset-001-ref.xht", + "/css/CSS2/text/text-indent-013-ref.xht", "==" ] ], {} ] ], - "at-charset-046.xht": [ - "aaa58b59cd85c4af62e5f92ddd556787d4bb48d6", + "text-indent-014.xht": [ + "b479e832cb57fc87a82273f32e3ecbbd553811ed", [ null, [ [ - "/css/CSS2/syntax/at-charset-001-ref.xht", + "/css/CSS2/text/text-indent-014-ref.xht", "==" ] ], {} ] ], - "at-charset-047.xht": [ - "ec5d204276d10192edbb35c8c822589b14b818f1", + "text-indent-016.xht": [ + "51abc502d641763f157a8da61d826041117fa219", [ null, [ [ - "/css/CSS2/syntax/at-charset-001-ref.xht", + "/css/CSS2/text/text-indent-004-ref.xht", "==" ] ], {} ] ], - "at-charset-048.xht": [ - "e774180f3402078eeaacf110f041119678bd9a94", + "text-indent-017.xht": [ + "1a68e9f75f80f5625f23468bacb2b7034f7b371d", [ null, [ [ - "/css/CSS2/syntax/at-charset-001-ref.xht", + "/css/CSS2/text/text-indent-004-ref.xht", "==" ] ], {} ] ], - "at-charset-049.xht": [ - "d7f37af5c7bac2adc35ceb91f65a8f2fce2443a4", + "text-indent-018.xht": [ + "c7dfd95d088d68e9c96f27512e3eaa1cd4623bb5", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/text/text-indent-004-ref.xht", "==" ] ], {} ] ], - "at-charset-050.xht": [ - "fe21a1f9e679d7473f8523233fc5381c70c04816", + "text-indent-019.xht": [ + "010209b44ac6feaa340f940409be456429e85099", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/reference/pass_if_box_ahem.html", "==" ] ], {} ] ], - "at-charset-051.xht": [ - "a5a72198b29a96b6b327b85e471c826883ac268c", + "text-indent-020.xht": [ + "02b5f639bd08b418a3bdbc735e1cf6bdb98fadfb", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/reference/pass_if_box_ahem.html", "==" ] ], {} ] ], - "at-charset-052.xht": [ - "8e4a48b7a85fa485afc36cfc9c74e76196e0da2a", + "text-indent-028.xht": [ + "ae39829362de8c7c9d57121e71ffe7c5a80ac3ed", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/text/text-indent-004-ref.xht", "==" ] ], {} ] ], - "at-charset-053.xht": [ - "54865d974c5f25ce6f6abdcadf2149c8701f2b02", + "text-indent-029.xht": [ + "f22d4d4cc0949b15d16d4a85023270cc5589f159", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/text/text-indent-004-ref.xht", "==" ] ], {} ] ], - "at-charset-054.xht": [ - "7532e4646097cc98905711eff2120dd98113ad04", + "text-indent-030.xht": [ + "dda2788c47787d17177cd3ca872299627d7eb97f", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/text/text-indent-004-ref.xht", "==" ] ], {} ] ], - "at-charset-055.xht": [ - "434909168564a11235ae5e97dfa59c8e5e74d9df", + "text-indent-031.xht": [ + "174be5d97c7e5f842bb0038ffe5a315bdf019038", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/reference/pass_if_box_ahem.html", "==" ] ], {} ] ], - "at-charset-056.xht": [ - "2dd8282b8fdac6e2397ae1dd79a27681c9b8d254", + "text-indent-032.xht": [ + "72353096575246dfbcdfa075e05530fc9cb2eee8", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/reference/pass_if_box_ahem.html", "==" ] ], {} ] ], - "at-charset-057.xht": [ - "5dfe9151460c9736c6afbf594953485de0884d22", + "text-indent-040.xht": [ + "0a7f2744cc8ea44ac659176430c9ea7a861c8973", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/text/text-indent-004-ref.xht", "==" ] ], {} ] ], - "at-charset-058.xht": [ - "5eb0e38576b1f1d80cc346cf91b8999b55e109c3", + "text-indent-041.xht": [ + "4e6525ebcd31a43360feacfb7f6c1b95e6afa210", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/text/text-indent-004-ref.xht", "==" ] ], {} ] ], - "at-charset-059.xht": [ - "99dffe105bea42e0a8274d9d9c9d12152ce9c248", + "text-indent-042.xht": [ + "658496625f04895c918d47ff882b721d7ef33397", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/text/text-indent-004-ref.xht", "==" ] ], {} ] ], - "at-charset-060.xht": [ - "bfdaa966a01b4af0adf9568a0bf6f15a6a768b97", + "text-indent-043.xht": [ + "9013b5cf6c8afb509eddce167a8d5d70f76e1466", [ null, [ [ - "/css/CSS2/syntax/at-charset-001-ref.xht", + "/css/CSS2/reference/pass_if_box_ahem.html", "==" ] ], {} ] ], - "at-charset-061.xht": [ - "f4d05f0e0b15d976a51f2c30f75ef4cdb0b067c9", + "text-indent-044.xht": [ + "bc2d4054482bd2667c232b089b532e5a109762fb", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/reference/pass_if_box_ahem.html", "==" ] ], {} ] ], - "at-charset-071.xht": [ - "5bc5ae7e81621a172337902fe69a3d38bc343e3c", + "text-indent-052.xht": [ + "0b2448abb03b74a3f94612ba0510526255fcc132", [ null, [ [ - "/css/CSS2/reference/ref-green-background.xht", + "/css/CSS2/text/text-indent-004-ref.xht", "==" ] ], {} ] ], - "at-charset-072.xht": [ - "569c95933b7a0144d0a74103e71ffb55a070510d", + "text-indent-053.xht": [ + "0acaf20f6e990b42b36f7af54e01f7fa89a14f6f", [ null, [ [ - "/css/CSS2/reference/ref-green-background.xht", + "/css/CSS2/text/text-indent-004-ref.xht", "==" ] ], {} ] ], - "at-charset-073.xht": [ - "ca07642818f9472ed0acf380f2ad865d6891b34b", + "text-indent-054.xht": [ + "c2e1c35445ac502ceeaeb465420c2bd167220f45", [ null, [ [ - "/css/CSS2/reference/ref-green-background.xht", + "/css/CSS2/text/text-indent-004-ref.xht", "==" ] ], {} ] ], - "at-charset-074.xht": [ - "bc18d2fe442bd25785714fde8147fe721825cff2", + "text-indent-055.xht": [ + "485f9893d7aad1562ba2a248c6a2fdeeef9827c0", [ null, [ [ - "/css/CSS2/reference/ref-green-background.xht", + "/css/CSS2/reference/pass_if_box_ahem.html", "==" ] ], {} ] ], - "at-charset-075.xht": [ - "0fbc3d3f6ca85bc6960ec1dcd65c106aa1c3bc6f", + "text-indent-056.xht": [ + "6b35739ca0d5bb8365c35060cea958054da0688b", [ null, [ [ - "/css/CSS2/reference/ref-green-background.xht", + "/css/CSS2/reference/pass_if_box_ahem.html", "==" ] ], {} ] ], - "at-charset-076.xht": [ - "ec50107b434c105cbcddd4431aea70f45c6aebc7", + "text-indent-064.xht": [ + "a0ec365f01a43580615433811620a37c3ee56dda", [ null, [ [ - "/css/CSS2/reference/ref-green-background.xht", + "/css/CSS2/text/text-indent-004-ref.xht", "==" ] ], {} ] ], - "at-charset-077.xht": [ - "0be14e1f2315875ecac6e1f03e6fde9ec720b79f", + "text-indent-065.xht": [ + "5e135c3dedae71a0c6981d068fa7a5ac1b6b0bef", [ null, [ [ - "/css/CSS2/reference/ref-green-background.xht", + "/css/CSS2/text/text-indent-004-ref.xht", "==" ] ], {} ] ], - "at-charset-quotes-001.xht": [ - "db4ab67c3da2573795a038b5be3e3fbc43484f03", + "text-indent-066.xht": [ + "dad89538ef02dc998a02f5e6b3e4188fbdba9761", [ null, [ [ - "/css/CSS2/syntax/at-charset-ref.xht", + "/css/CSS2/text/text-indent-004-ref.xht", "==" ] ], {} ] ], - "at-charset-space-001.xht": [ - "3d42fd86b448c807452f4d25ca42b1e1dd74eda0", + "text-indent-067.xht": [ + "442c2bffaf8ac9c9260068b5208d423e1b1d85b4", [ null, [ [ - "/css/CSS2/syntax/at-charset-ref.xht", + "/css/CSS2/reference/pass_if_box_ahem.html", "==" ] ], {} ] ], - "at-charset-space-002.xht": [ - "64f19bc056171635850e1fe8fa5606f1964e57b8", + "text-indent-068.xht": [ + "7831845305b7de7371fc5073170032f42063e8ac", [ null, [ [ - "/css/CSS2/syntax/at-charset-ref.xht", + "/css/CSS2/reference/pass_if_box_ahem.html", "==" ] ], {} ] ], - "at-charset-utf16-be-001.xht": [ - "7e47343e62fb62a52439fcf6363b746416c94856", + "text-indent-076.xht": [ + "e066b6eac4821694dbb9f5b0f5aa0ad3727f701d", [ null, [ [ - "/css/CSS2/syntax/at-charset-ref.xht", + "/css/CSS2/text/text-indent-004-ref.xht", "==" ] ], {} ] ], - "at-charset-utf16-be-002.xht": [ - "98649a68ec1d9e81e06efb4712a89703e25604b1", + "text-indent-077.xht": [ + "ff0f8a78adbfd0993b19f01e7d2f792a151b1922", [ null, [ [ - "/css/CSS2/syntax/at-charset-ref.xht", + "/css/CSS2/text/text-indent-004-ref.xht", "==" ] ], {} ] ], - "at-charset-utf16-be-003.xht": [ - "33eb27aef9327d451489854b871eff38f005fc6e", + "text-indent-078.xht": [ + "162f1e709962b28fcfe73642c2b887df7f33ec83", [ null, [ [ - "/css/CSS2/syntax/at-charset-ref.xht", + "/css/CSS2/text/text-indent-004-ref.xht", "==" ] ], {} ] ], - "at-charset-utf16-le-001.xht": [ - "122c9dc63ac0260b9be526c1ef79bd0e39540d36", + "text-indent-079.xht": [ + "cbd6b76210a6cf0d67f267bad4872f7cc9a74816", [ null, [ [ - "/css/CSS2/syntax/at-charset-ref.xht", + "/css/CSS2/reference/pass_if_box_ahem.html", "==" ] ], {} ] ], - "at-charset-utf16-le-002.xht": [ - "abbd62fb74b07ef601671a652955ec6cac51b2d0", + "text-indent-080.xht": [ + "5ebef879708a771834509bfc4763a67d6f6e00df", [ null, [ [ - "/css/CSS2/syntax/at-charset-ref.xht", + "/css/CSS2/reference/pass_if_box_ahem.html", "==" ] ], {} ] ], - "at-charset-utf16-le-003.xht": [ - "4b20d437726114c83a717a72132a29938bf8302e", + "text-indent-088.xht": [ + "069cd99f457de461024c89d668b8e9f8d25b0f43", [ null, [ [ - "/css/CSS2/syntax/at-charset-ref.xht", + "/css/CSS2/text/text-indent-004-ref.xht", "==" ] ], {} ] ], - "at-keywords-000.xht": [ - "33dec42708c388f15b98c68410cf680f2130b88a", + "text-indent-089.xht": [ + "c3c632b2759791996ab81382e8fb9e58f88d92f3", [ null, [ [ - "/css/CSS2/reference/ref-this-text-should-be-green.xht", + "/css/CSS2/text/text-indent-004-ref.xht", "==" ] ], {} ] ], - "at-keywords-001.xht": [ - "104fe6999589a8275b4f44198ad0f85d204b9f2e", + "text-indent-090.xht": [ + "7352c9313f7b2d2a1c44115486eb83be0cd1210e", [ null, [ [ - "/css/CSS2/reference/ref-this-text-should-be-green.xht", + "/css/CSS2/text/text-indent-004-ref.xht", "==" ] ], {} ] ], - "at-keywords-002.xht": [ - "f3a83635fe32998e62e2e09b678dcee50d672388", + "text-indent-091.xht": [ + "cac90dd7087bbb316f669be95f7b2aef523fc007", [ null, [ [ - "/css/CSS2/reference/ref-this-text-should-be-green.xht", + "/css/CSS2/text/text-indent-091-ref.xht", "==" ] ], {} ] ], - "at-rule-001.xht": [ - "b45449d7c187c0ab8e3addde7f761c66151ff1fe", + "text-indent-092.xht": [ + "2e3d04f4d508de7c523ae9f66640a41b81f2e893", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/text/text-indent-091-ref.xht", "==" ] ], {} ] ], - "at-rule-002.xht": [ - "1810d73f8049e29953d5118fba805c413d24c744", + "text-indent-100.xht": [ + "977d32170e77c60f6ef9c9c8bcd0f43c8c98da67", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/text/text-indent-004-ref.xht", "==" ] ], {} ] ], - "at-rule-003.xht": [ - "fee6163801300475fd66237a1384162430b89cdf", + "text-indent-101.xht": [ + "35e155aea8d2435403e0f09aec7dd06942aa1b3d", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/text/text-indent-004-ref.xht", "==" ] ], {} ] ], - "at-rule-004.xht": [ - "dc8e72289fc33ece4abab88ac1dc684f4aa37694", + "text-indent-102.xht": [ + "a0352dea21a114007c432cf65a7dab8e775abc4c", [ null, [ [ - "/css/CSS2/reference/no-red-filler-text-ref.xht", + "/css/CSS2/text/text-indent-004-ref.xht", "==" ] ], {} ] ], - "at-rule-005.xht": [ - "975a7bf7fa89afa961f5ea8d45c28517e16440e1", + "text-indent-103.xht": [ + "66b93897c07534168f8da4fd575e3d2e1a59a1aa", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/text/text-indent-103-ref.xht", "==" ] ], {} ] ], - "at-rule-006.xht": [ - "7864b2ef1bb1687736f5b22c4a3b95c415af4d1f", + "text-indent-104.xht": [ + "10938498ecd3c2530e9251dc09b32677a17e0ebc", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/text/text-indent-103-ref.xht", "==" ] ], {} ] ], - "at-rule-007.xht": [ - "cc096841a8450d53b5f118246f7b2e8a5f52051c", + "text-indent-109.xht": [ + "02d2b83f8dd4975c8a2df8c4c4888f81af9017e1", [ null, [ [ - "/css/CSS2/reference/no-red-filler-text-ref.xht", + "/css/CSS2/text/text-indent-004-ref.xht", "==" ] ], {} ] ], - "at-rule-008.xht": [ - "6bd393115a03091d6b6198f445f8719739245e64", + "text-indent-110.xht": [ + "4592207f7b39f036a4553bf4f22508bcdd70949b", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/text/text-indent-004-ref.xht", "==" ] ], {} ] ], - "at-rule-009.xht": [ - "7e84583a41348d478115fd8278aefeba5b6f43fb", + "text-indent-111.xht": [ + "e887d34afcb9d6132794ad400aa6d07ba433631e", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/text/text-indent-004-ref.xht", "==" ] ], {} ] ], - "at-rule-010.xht": [ - "06e41bfe957cc03d89d8cb5e601ac925efa66871", + "text-indent-112.xht": [ + "4babc6dc796885e2c89f900dfda3f7797cb47889", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/reference/pass_if_box_ahem.html", "==" ] ], {} ] ], - "at-rule-011.xht": [ - "694d20c9d11ba6016a04b390449dd5d06a0a8bc8", + "text-indent-113-ref-margin.xht": [ + "174fa8b3769874aa5e79f113b00caf4e5bc0bce7", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", - "==" + "/css/CSS2/text/text-indent-114-ref.xht", + "!=" ] ], {} ] ], - "at-rule-012.xht": [ - "f5e47c66927856f447677a21eadeba4b244b1e98", + "text-indent-113.xht": [ + "d726f5e143b889fc0d2c69e01380bdaf65b4e7e1", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/text/text-indent-113-ref-margin.xht", "==" ] ], {} ] ], - "at-rule-013.xht": [ - "7f51f2f0266f232985f84beb124cc6b9a9a1a340", + "text-indent-114-ref.xht": [ + "9c9fa56c3c7087897cdd9a5653b137da581c3dea", [ null, [ [ - "/css/CSS2/syntax/at-rule-013-ref.xht", - "==" + "/css/CSS2/text/text-indent-113-ref-margin.xht", + "!=" ] ], {} ] ], - "at-rules-000.xht": [ - "4f23bd22544a9ceeb326e1cc8e53f2b96d1b2baf", + "text-indent-114.xht": [ + "07e333a89c525b2a8e2342924199cdeb18d2fc4f", [ null, [ [ - "/css/CSS2/reference/ref-this-text-should-be-green.xht", + "/css/CSS2/text/text-indent-114-ref.xht", "==" ] ], {} ] ], - "at-rules-001.xht": [ - "40a89a00c5c177a263ee3ec2082a9245e440b586", + "text-indent-115-ref-block-margin.xht": [ + "4d7464123ff8dbd3b23cb96b0e0a09797bd28ff5", [ null, [ [ - "/css/CSS2/reference/ref-this-text-should-be-green.xht", + "/css/CSS2/text/text-indent-115-ref-inline-margin.xht", "==" ] ], {} ] ], - "at-rules-002.xht": [ - "dec4e68a800a0c065989e654a59c4ae6ffade507", + "text-indent-115-ref-inline-margin.xht": [ + "1834146314b4e27bdaae19e73b1acddee87dea7d", [ null, [ [ - "/css/CSS2/reference/ref-this-text-should-be-green.xht", + "/css/CSS2/text/text-indent-115-ref-block-margin.xht", "==" ] ], {} ] ], - "at-rules-003.xht": [ - "40dbc2a8ecf15572100590290a67e623a5e6312a", + "text-indent-115.xht": [ + "9eaa2161e3c719b6352ac8bc5389a255defccc9d", [ null, [ [ - "/css/CSS2/reference/ref-this-text-should-be-green.xht", + "/css/CSS2/text/text-indent-115-ref-block-margin.xht", "==" ] ], {} ] ], - "at-rules-004.xht": [ - "102a7f2a6586e73abea46831e7ee7d35c3fa1c1e", + "text-indent-applies-to-001.xht": [ + "df859edb04d3ca42ea722a97304aada925f3177b", [ null, [ [ - "/css/CSS2/reference/ref-this-text-should-be-green.xht", + "/css/CSS2/text/text-indent-applies-to-001-ref.xht", "==" ] ], {} ] ], - "bad-selector-001.xht": [ - "c39d30912114e49f41c2ac409623d9d3469d0e16", + "text-indent-applies-to-002.xht": [ + "04e97ccddd6aa58a41928f05a76e2a2dd1e00aa8", [ null, [ [ - "/css/CSS2/reference/no-red-filler-text-ref.xht", + "/css/CSS2/text/text-indent-applies-to-002-ref.xht", "==" ] ], {} ] ], - "blocks-001.xht": [ - "9da1079f6f9f80d0f098e0191a362a8260ba19ba", + "text-indent-applies-to-003.xht": [ + "d913cfa433e7ceb51c0087f4b80aca84d53a5986", [ null, [ [ - "/css/CSS2/syntax/blocks-001-ref.xht", + "/css/CSS2/text/text-indent-applies-to-003-ref.xht", "==" ] ], {} ] ], - "blocks-002.xht": [ - "bc058bb7cd7ee9b109295318c6be7751c1fdb40b", + "text-indent-applies-to-005.xht": [ + "3016e795f55ab0ab3dc29d26db7125c66e51cefa", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/text/text-indent-applies-to-002-ref.xht", "==" ] ], {} ] ], - "blocks-003.xht": [ - "6ddf899b12ccd4b68f801d5238ee9985d1f0f098", + "text-indent-applies-to-006.xht": [ + "4dbb6e02fd74f3875d906a4785282fe3c79d7c1e", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/text/text-indent-applies-to-002-ref.xht", "==" ] ], {} ] ], - "blocks-004.xht": [ - "b28f5eb64ab1ab65c13b609f7313b57de439911e", + "text-indent-applies-to-007.xht": [ + "cbbb41290a60c46a53239dce83cf3b6dcd355ca4", [ null, [ [ - "/css/CSS2/reference/no-red-filler-text-ref.xht", + "/css/CSS2/text/text-indent-applies-to-007-ref.xht", "==" ] ], {} ] ], - "blocks-005.xht": [ - "aaa65a13d089f8159cef54c9bdc87dbbda43ab76", + "text-indent-applies-to-008.xht": [ + "c55d6a21369d91af13e421d11215bc575082930b", [ null, [ [ - "/css/CSS2/reference/no-red-filler-text-ref.xht", + "/css/CSS2/text/text-indent-applies-to-002-ref.xht", "==" ] ], {} ] ], - "blocks-006.xht": [ - "17377646027f7d14d13e1b2f3d1646f34f762945", + "text-indent-applies-to-009.xht": [ + "bc561f2ab1a088041c58cb5cc70901a7f9fb2ff7", [ null, [ [ - "/css/CSS2/reference/no-red-filler-text-ref.xht", + "/css/CSS2/text/text-indent-applies-to-002-ref.xht", "==" ] ], {} ] ], - "blocks-and-strings-001.xht": [ - "4c91cd38ab3f3b8ab718a8217d344a99095bab6c", + "text-indent-applies-to-010.xht": [ + "1c4ee225ff127e766166a5eb2b2927a3c3b320a9", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/text/text-indent-applies-to-002-ref.xht", "==" ] ], {} ] ], - "case-sensitive-000.xht": [ - "82b53f637efcbdced0a971aa14ed417b2e1294e1", + "text-indent-applies-to-011.xht": [ + "2e888c99d80d3cfb22fcba94ae4f7e841cc906d9", [ null, [ [ - "/css/CSS2/reference/ref-green-background.xht", + "/css/CSS2/text/text-indent-applies-to-002-ref.xht", "==" ] ], {} ] ], - "case-sensitive-001.xht": [ - "4a49758fa174c7efe4fe5f29fdab380606f3c566", + "text-indent-applies-to-012.xht": [ + "491023c57223dfb774e32ab1d357fe034df12981", [ null, [ [ - "/css/CSS2/reference/ref-green-background.xht", + "/css/CSS2/text/text-indent-applies-to-012-ref.xht", "==" ] ], {} ] ], - "case-sensitive-003.xht": [ - "0b494379f9d6291f65fe2cda52a7be73ad201f49", + "text-indent-applies-to-013.xht": [ + "71b98469de4670a49cc5c48dc2fb093914b5bc5f", [ null, [ [ - "/css/CSS2/syntax/case-sensitive-003-ref.xht", + "/css/CSS2/text/text-indent-applies-to-012-ref.xht", "==" ] ], {} ] ], - "case-sensitive-004.xht": [ - "998187db59ca761950f4c7f838a7a28fc0b28798", + "text-indent-applies-to-014.xht": [ + "70b372f6c59e0095e7a3b3a74d2688fd5f9c1cee", [ null, [ [ - "/css/CSS2/syntax/case-sensitive-003-ref.xht", + "/css/CSS2/text/text-indent-applies-to-002-ref.xht", "==" ] ], {} ] ], - "case-sensitive-005.xht": [ - "35bbc4b62bf6b04256c6d83044c48cd61966761f", + "text-indent-applies-to-015.xht": [ + "aaf45bd4efe69cd20eaa294146ecc293152c1ded", [ null, [ [ - "/css/CSS2/syntax/case-sensitive-005-ref.xht", + "/css/CSS2/text/text-indent-applies-to-002-ref.xht", "==" ] ], {} ] ], - "case-sensitive-006.html": [ - "0f140f4216c3cac2a984eb16663f0e3de6d410b7", + "text-indent-inherited-001.xht": [ + "352080f04bd3371ba23c38f16d241e506304b94f", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/text/text-indent-inherited-001-ref.xht", "==" ] ], {} ] ], - "case-sensitive-007.xht": [ - "027f84ce8c56f38fd8f3f6c195ed9cd4b416655f", + "text-indent-intrinsic-001.xht": [ + "66597fbee10d85201fcc6b4d85a60f8c58cf9bb1", [ null, [ [ - "/css/CSS2/reference/no-red-filler-text-ref.xht", + "/css/CSS2/text/text-indent-intrinsic-001-ref.xht", "==" ] ], {} ] ], - "character-encoding-041.xht": [ - "fd6ae89eaddce831857365615e582ec311775357", + "text-indent-intrinsic-002.xht": [ + "73c1d91369bfa2f55cfbda1be50ad3e7707645ac", [ null, [ [ - "/css/CSS2/syntax/character-encoding-041-ref.xht", + "/css/CSS2/text/text-indent-intrinsic-002-ref.xht", "==" ] ], {} ] ], - "characters-0080-009F-001.xht": [ - "40a7ad939c36759c8297ce9589d899d684deedab", + "text-indent-intrinsic-003.xht": [ + "2db0f2a4520818c6e46aaaed623cb260a08fc9de", [ null, [ [ - "/css/CSS2/syntax/characters-0080-009F-001-ref.xht", + "/css/CSS2/text/text-indent-intrinsic-003-ref.xht", "==" ] ], {} ] ], - "charset-attr-001.xht": [ - "298633eca41a4bac8639c8950b402c2080b46436", + "text-indent-intrinsic-004.xht": [ + "b8f41c53ea28625dab757897a18e56ab17b39305", [ null, [ [ - "/css/CSS2/syntax/at-charset-ref.xht", + "/css/CSS2/text/text-indent-intrinsic-004-ref.xht", "==" ] ], {} ] ], - "colors-001.xht": [ - "b570eb7085476ab2bbc5e1ccc99cedb9753ab4bf", + "text-indent-on-blank-line-rtl-left-align.html": [ + "af7e1cc0145cef0e7e98218bbaaf8280a8a4ed7a", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/text/text-indent-on-blank-line-rtl-left-align-ref.html", "==" ] ], {} ] ], - "colors-002.xht": [ - "55cebd10c23cde7ca1abb52b4539ab3a656fc6f2", + "text-indent-overflow-001.xht": [ + "22717ddeeea3df542d06ce8f0b13446c0672c63c", [ null, [ [ - "/css/CSS2/reference/no-red-filler-text-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "colors-003.xht": [ - "a747620f39cbab6f85a937699927c256f316c7e2", + "text-indent-overflow-002.xht": [ + "7c2f54a15a4222439d293a14bc8934fde92a080d", [ null, [ [ - "/css/CSS2/reference/no-red-filler-text-ref.xht", + "/css/CSS2/text/text-indent-overflow-002-ref.xht", "==" ] ], {} ] ], - "colors-004.xht": [ - "40cd9f7ebfd02fa364d86621590ce0dcc9277e6c", + "text-indent-overflow-003.xht": [ + "fe6ac1bb5c995b7895e3b832f24c5cbb9a11dd77", [ null, [ [ - "/css/CSS2/reference/no-red-filler-text-ref.xht", + "/css/CSS2/text/text-indent-overflow-003-ref.xht", "==" ] ], {} ] ], - "colors-005.xht": [ - "a20349d31638de1d59677a2924cb917dabc0318c", + "text-indent-overflow-004.xht": [ + "da4abce66d4e73faa45d117440564aa2f2e4827a", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "colors-006.xht": [ - "c518a2110cf31068134904e83c9785b514713612", + "text-indent-percent-001.xht": [ + "fc02d86a47f9af9e63827d54c345e482777b0dbf", [ null, [ [ - "/css/CSS2/syntax/colors-006-ref.xht", + "/css/CSS2/text/text-indent-percent-001-ref.xht", "==" ] ], {} ] ], - "comments-001.xht": [ - "97fd63798d87c2fb23dde0c45ecfbce575f92481", + "text-indent-rtl-001.xht": [ + "dfc9193bfdb22a2b9986e4f2db736dc4d393eb79", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/text/text-indent-rtl-001-ref.xht", "==" ] ], {} ] ], - "comments-002.xht": [ - "73c765f080b2bcc0214b638491f59bc7e5edce69", + "text-indent-rtl-002.xht": [ + "f8b72b3fd1c4c846ee16c0a51c839b452961d71c", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/text/text-indent-rtl-002-ref.xht", "==" ] ], {} ] ], - "comments-003.xht": [ - "b578504c0ad56616fa283b163c9726f3ad9e82d5", + "text-indent-wrap-001-notref-block-margin.xht": [ + "c88a242f4dd79ea4d5a1dc78e73f05609e9b0369", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", - "==" + "/css/CSS2/text/text-indent-wrap-001-ref-inline-margin.xht", + "!=" ] ], {} ] ], - "comments-004.xht": [ - "bdeddb27648cc14c1b6dcd02e2ec4a6aff920b07", + "text-indent-wrap-001-ref-float.xht": [ + "764107424f2a1a07ea365416152647a927af222f", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", - "==" + "/css/CSS2/text/text-indent-wrap-001-notref-block-margin.xht", + "!=" ] ], {} ] ], - "comments-005.xht": [ - "614ef25a0240348153e4dd7192370275a9fbf1f8", + "text-indent-wrap-001-ref-inline-margin.xht": [ + "dab3ad0e23108f2587c435a9547a9369d8fdb5ef", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/text/text-indent-wrap-001-ref-float.xht", "==" ] ], {} ] ], - "comments-006.xht": [ - "016d90b240e90f5cb7bbdb20602ab784d12923c5", + "text-indent-wrap-001.xht": [ + "e4ec6de73511c4b537fcd6d7f3c204843185abe4", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/text/text-indent-wrap-001-ref-inline-margin.xht", "==" ] ], {} ] ], - "comments-007.xht": [ - "77ea32cdecd61730548f7017052e0722eea0e00e", + "text-indent-wrap-002.html": [ + "128cba3f1221d8349265eb169112a399fde8e143", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/text/text-indent-wrap-002-ref.html", "==" ] ], {} ] ], - "comments-008.xht": [ - "f0bcc7e054c3982b44c8dba91f7e85c94e721d25", + "text-transform-001.xht": [ + "c55c151db2b1f20f6751cb45ca0809f7e29b6396", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/text/text-transform-001-ref.xht", "==" ] ], {} ] ], - "comments-009.xht": [ - "56dbd487440df5a49c82377c23c642df1e6b0066", + "text-transform-002.xht": [ + "cf9d0e43b08122e86c1b443b36ab41499c876747", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/text/text-transform-002-ref.xht", "==" ] ], {} ] ], - "content-type-000.xht": [ - "e98809dc27d6340803413aeb5b6e5532ded331a3", + "text-transform-003.xht": [ + "f8384ffbd293fd0359a3db852d3e6a2f3183e664", [ null, [ [ - "/css/CSS2/syntax/content-type-000-ref.xht", + "/css/CSS2/text/text-transform-003-ref.xht", "==" ] ], {} ] ], - "content-type-001.xht": [ - "4ac59e47543419a51f46519e709e42c4148a9238", + "text-transform-004.xht": [ + "03b0f5adb31d69d5e97acf060f8125e65368bfa1", [ null, [ [ - "/css/CSS2/syntax/content-type-000-ref.xht", + "/css/CSS2/text/text-transform-004-ref.xht", "==" ] ], {} ] ], - "core-syntax-001.xht": [ - "6d8ec7ceba23fd13e754524debb6ff8f04a2f645", + "text-transform-005.xht": [ + "13d9f39aac6a3092d1b11354d150a52684eb0c13", [ null, [ [ - "/css/CSS2/syntax/core-syntax-001-ref.xht", + "/css/CSS2/text/text-transform-003-ref.xht", "==" ] ], {} ] ], - "core-syntax-006.xht": [ - "eb5d380af0c7d515771c63e8b39d35f1811ff3d6", + "text-transform-applies-to-001.xht": [ + "bced2794aec4ae3381d19f614a39c21e58bddbac", [ null, [ [ - "/css/CSS2/syntax/core-syntax-006-ref.xht", + "/css/reference/pass_if_letter_uppercase.html", "==" ] ], {} ] ], - "core-syntax-007.xht": [ - "b0d99e3729ca07036f9182126c2a2d4e42f635b6", + "text-transform-applies-to-002.xht": [ + "3bcd7bdb31ba226456884c4f6e406e094e403004", [ null, [ [ - "/css/CSS2/syntax/core-syntax-007-ref.xht", + "/css/reference/pass_if_letter_uppercase.html", "==" ] ], {} ] ], - "core-syntax-008.xht": [ - "08e08c0e01e2f3f93896dfab4b77cb5496cec441", + "text-transform-applies-to-003.xht": [ + "24091519c037b52a9631284948f08a8b759a1dd3", [ null, [ [ - "/css/CSS2/reference/ref-this-text-should-be-green.xht", + "/css/CSS2/text/text-transform-applies-to-003-ref.xht", "==" ] ], {} ] ], - "core-syntax-009.xht": [ - "2ffa3e4b9a5e6e1e405b22283c88992a1a75e121", + "text-transform-applies-to-005.xht": [ + "885835e4d336224af536055cb3376dadf3b303fb", [ null, [ [ - "/css/CSS2/reference/ref-this-text-should-be-green.xht", + "/css/reference/pass_if_letter_uppercase.html", "==" ] ], {} ] ], - "counters-001.xht": [ - "cf46887947caabf336521e82dc3a64e50784d30d", + "text-transform-applies-to-006.xht": [ + "409ca27ff199164f4f7cbb93cb00307d2f77069b", [ null, [ [ - "/css/CSS2/syntax/counters-001-ref.xht", + "/css/reference/pass_if_letter_uppercase.html", "==" ] ], {} ] ], - "counters-002.xht": [ - "5966468290ca9781000d7dd6c8e1bac7b2ec867c", + "text-transform-applies-to-007.xht": [ + "f067fea7e4496d751aba684b3d00fa63aacb48f0", [ null, [ [ - "/css/CSS2/reference/no-red-filler-text-ref.xht", + "/css/reference/pass_if_letter_uppercase.html", "==" ] ], {} ] ], - "counters-003.xht": [ - "5df8e1b2426ffa1e0b6298d34c117035c0fd6e4f", + "text-transform-applies-to-008.xht": [ + "6751d2eae365d88e51199390504598b7c7326080", [ null, [ [ - "/css/CSS2/syntax/counters-003-ref.xht", + "/css/reference/pass_if_letter_uppercase.html", "==" ] ], {} ] ], - "counters-004.xht": [ - "47cd08bfbccb2f3d6a2b746c723ed3e5ae337e56", + "text-transform-applies-to-009.xht": [ + "10b3a246c06e1cc3819c2bc092d85e678de870ad", [ null, [ [ - "/css/CSS2/syntax/counters-004-ref.xht", + "/css/reference/pass_if_letter_uppercase.html", "==" ] ], {} ] ], - "counters-005.xht": [ - "b466c9d9990d089e95147dba216fef04b93dff74", + "text-transform-applies-to-010.xht": [ + "6a79b831ed96be1fcd8f6f3d620198d38037db4b", [ null, [ [ - "/css/CSS2/syntax/counters-003-ref.xht", + "/css/reference/pass_if_letter_uppercase.html", "==" ] ], {} ] ], - "counters-006.xht": [ - "163d1e8b0283757617226d39c9365ebfb9438904", + "text-transform-applies-to-011.xht": [ + "097c92995fa814b05c040be679bd4c05acc5090c", [ null, [ [ - "/css/CSS2/syntax/counters-004-ref.xht", + "/css/reference/pass_if_letter_uppercase.html", "==" ] ], {} ] ], - "counters-007.xht": [ - "a97452625d7d5168b301e84d27bf1b7c381fb794", + "text-transform-applies-to-012.xht": [ + "11e514c146745be1ecba7532a9c21405543d242e", [ null, [ [ - "/css/CSS2/syntax/counters-003-ref.xht", + "/css/reference/pass_if_letter_uppercase.html", "==" ] ], {} ] ], - "counters-008.xht": [ - "e9980948db2fe6b6b95e1c83de7af174be86faf7", + "text-transform-applies-to-013.xht": [ + "b683b23f7cf0ca63d8e1458fb5b4122b50edc0c8", [ null, [ [ - "/css/CSS2/syntax/counters-004-ref.xht", + "/css/reference/pass_if_letter_uppercase.html", "==" ] ], {} ] ], - "counters-009.xht": [ - "add7032f2d6fdd9b7ef6834486feb64d3e3a803b", + "text-transform-applies-to-014.xht": [ + "a7262d0fad1e12b77f323878f7595fe2bc12ea0d", [ null, [ [ - "/css/CSS2/syntax/counters-003-ref.xht", + "/css/reference/pass_if_letter_uppercase.html", "==" ] ], {} ] ], - "counters-010.xht": [ - "d5f91b2ffde005963fe8e7e1c19d337b6b284b46", + "text-transform-applies-to-015.xht": [ + "57766155ca6773a932128a2d4125fb58e249d4ed", [ null, [ [ - "/css/CSS2/syntax/counters-010-ref.xht", + "/css/reference/pass_if_letter_uppercase.html", "==" ] ], {} ] ], - "declaration-001.xht": [ - "ffc7f8d19e057491aa8ef00ca92b7cad0ef497ed", + "text-transform-bicameral-001.xht": [ + "3ca8b9fa5ffacdbedeb7cf900cd366c087ebc349", [ null, [ [ - "/css/CSS2/reference/ref-this-text-should-be-green.xht", + "/css/CSS2/text/text-transform-bicameral-001-ref.xht", "==" ] ], {} ] ], - "declaration-002.xht": [ - "8b905c21f13290081db72928785f8e7136a521cb", + "text-transform-bicameral-002.xht": [ + "1ffaeb5f58508eed7b0821c2907f9cfddb47de5b", [ null, [ [ - "/css/CSS2/reference/ref-this-text-should-be-green.xht", + "/css/CSS2/text/text-transform-bicameral-002-ref.xht", "==" ] ], {} ] ], - "declaration-003.xht": [ - "9e488e41b0722eb59fcef863fbc9755579d2f7a2", + "text-transform-bicameral-003.xht": [ + "a24adea6fa90f22d4990b0ee7f37f15d3eddfe34", [ null, [ [ - "/css/CSS2/reference/ref-this-text-should-be-green.xht", + "/css/CSS2/text/text-transform-bicameral-003-ref.xht", "==" ] ], {} ] ], - "declaration-004.xht": [ - "cd262d02c20233b02c1278564725912ff4b32baa", + "text-transform-bicameral-004.xht": [ + "0a53bca4a89a1776302a2b710a225b06892bcc22", [ null, [ [ - "/css/CSS2/reference/ref-this-text-should-be-green.xht", + "/css/CSS2/text/text-transform-bicameral-004-ref.xht", "==" ] ], {} ] ], - "declaration-005.xht": [ - "406c72cb0bbd33ef3aa38866e5a13d0c87ea7857", + "text-transform-bicameral-005.xht": [ + "91082f5fe90cc80de2c4585ccc87cc29adc4bc84", [ null, [ [ - "/css/CSS2/reference/ref-this-text-should-be-green.xht", + "/css/CSS2/text/text-transform-bicameral-005-ref.xht", "==" ] ], {} ] ], - "declaration-006.xht": [ - "0f37aa4b9c2cec9e9648d5fad30b0af8ae748648", + "text-transform-bicameral-006.xht": [ + "624dc9f6c3a44b930748c802a3a65183391d3fff", [ null, [ [ - "/css/CSS2/reference/ref-this-text-should-be-green.xht", + "/css/CSS2/text/text-transform-bicameral-006-ref.xht", "==" ] ], {} ] ], - "declaration-whitespace-001.xht": [ - "c941cf716ac9efa209f748a4106f4a4c7779e850", + "text-transform-bicameral-007.xht": [ + "d9d200f467e84d5e6014f665cdb384ea4ae2c3ab", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/text/text-transform-bicameral-007-ref.xht", "==" ] ], {} ] ], - "declarations-009.xht": [ - "33abc0a924410a39224614cacfb76a43c0dfce51", + "text-transform-bicameral-008.xht": [ + "b5c38bf7365ab23dc68b11ca58715dfd40617a5c", [ null, [ [ - "/css/CSS2/syntax/declarations-009-ref.xht", + "/css/CSS2/text/text-transform-bicameral-008-ref.xht", "==" ] ], {} ] ], - "eof-001.xht": [ - "d675167528dd4f93e6f240e3b571337757c986f8", + "text-transform-bicameral-009.xht": [ + "8c54a289213c381f88ad41ed4bd957b4ff2bc6c9", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/text/text-transform-bicameral-009-ref.xht", "==" ] ], {} ] ], - "eof-002.xht": [ - "00d6559b28612679f79df995e2fd33d96d077334", + "text-transform-bicameral-010.xht": [ + "20d3589c133e963ec350b2eea6306b1375f21fed", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/text/text-transform-bicameral-010-ref.xht", "==" ] ], {} ] ], - "eof-003.xht": [ - "f4050c9b21c1e963b52eba15dddec43beec4f1ee", + "text-transform-bicameral-011.xht": [ + "f7cd8b9a21212d89776166119b921e086d36cdc4", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/text/text-transform-bicameral-011-ref.xht", "==" ] ], {} ] ], - "eof-004.xht": [ - "60147c67ee8f6beff0de1435a1e40b3c2f3ce86c", + "text-transform-bicameral-012.xht": [ + "e761c3cb7483897c93f6307b6b25af11eea7b9bf", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/text/text-transform-bicameral-012-ref.xht", "==" ] ], {} ] ], - "eof-005.xht": [ - "37b74bee160a399be3e00046796803fde51990b4", + "text-transform-bicameral-013.xht": [ + "2c643202293e32bc35e33b01c42a4a2b15136b8e", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/text/text-transform-bicameral-013-ref.xht", "==" ] ], {} ] ], - "eof-006.xht": [ - "c079cffdaac805917082bad459ae984a89607355", + "text-transform-bicameral-014.xht": [ + "b48f82464c09246a391fd1bc19c914c5aead74fb", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/text/text-transform-bicameral-014-ref.xht", "==" ] ], {} ] ], - "eof-007.xht": [ - "58bdc02a6d26595593b17d1cccc974e8962566ed", + "text-transform-bicameral-015.xht": [ + "cb467408eec4cfe8698f62cd792fb5c0cb0345a8", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/text/text-transform-bicameral-015-ref.xht", "==" ] ], {} ] ], - "escaped-ident-001.xht": [ - "332c9c15fe564f705399e82229ab1f87207d2c81", + "text-transform-bicameral-016.xht": [ + "18b9913071c3e0dbe50bf6c3fa24ed7a6cd1d514", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/text/text-transform-bicameral-016-ref.xht", "==" ] ], {} ] ], - "escaped-ident-002.xht": [ - "1dbf76c88b25fb724bd02b1e25f9ebcf6fd3890c", + "text-transform-bicameral-017.xht": [ + "d7deebd9f95a9740bb15f47edb692757f3f73a69", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/text/text-transform-bicameral-017-ref.xht", "==" ] ], {} ] ], - "escaped-ident-003.xht": [ - "689dfedb4fb275dde77147a40e08343142366372", + "text-transform-bicameral-018.xht": [ + "a594c809150c8e6c34e38c66b5835c051af93d90", [ null, [ [ - "/css/CSS2/reference/no-red-filler-text-ref.xht", + "/css/CSS2/text/text-transform-bicameral-018-ref.xht", "==" ] ], {} ] ], - "escaped-ident-004.xht": [ - "47b839ad1a1312a19153f9056d5e30d52ccfd57b", + "text-transform-bicameral-019.xht": [ + "d389d8130871c2869aeac69fdf29425ffe20dbb9", [ null, [ [ - "/css/CSS2/reference/no-red-filler-text-ref.xht", + "/css/CSS2/text/text-transform-bicameral-019-ref.xht", "==" ] ], {} ] ], - "escaped-ident-char-001.xht": [ - "d8beee4a4eb58f0cb2f72e8a3d15751ba3e8e53c", + "text-transform-bicameral-020.xht": [ + "5fb88cca02f0155f45b55c8b3c765857a69df703", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/text/text-transform-bicameral-020-ref.xht", "==" ] ], {} ] ], - "escaped-ident-spaces-001.xht": [ - "2dbad085c5998cc662f2cdc8b882f5c1416edbf6", + "text-transform-bicameral-021.xht": [ + "a882329d4017796f9ef1ecfaff550d04e152d430", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/text/text-transform-bicameral-021-ref.xht", "==" ] ], {} ] ], - "escaped-ident-spaces-002.xht": [ - "a5012faab54b07d68ee93c4fcd4f7fea1cea6ae5", + "text-transform-bicameral-022.xht": [ + "aa152d397cf6763bd48197d28d65dcf56558cce4", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/text/text-transform-bicameral-022-ref.xht", "==" ] ], {} ] ], - "escaped-ident-spaces-003.xht": [ - "6a1992b663bce5b43e00fe3c4620613d0d8ccac1", + "text-transform-cap-001.xht": [ + "9b6c9e0c961245e9fb37c679e9e0213bcf29a841", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/text/text-transform-cap-001-ref.xht", "==" ] ], {} ] ], - "escaped-ident-spaces-004.xht": [ - "d09ded2f3c46ff52b10b169fb3debfd5419aa7c9", + "text-transform-cap-002.xht": [ + "4986f4bfec9e72551372f5eab47b520b6051e2f2", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/text/text-transform-cap-001-ref.xht", "==" ] ], {} ] ], - "escaped-ident-spaces-005.xht": [ - "d8c5a79c549e29d27a029d18495f704b470e8110", + "text-transform-cap-003.xht": [ + "1b945056a4662a345854e365bc5e20932fcd6669", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/text/text-transform-cap-003-ref.xht", "==" ] ], {} ] ], - "escaped-ident-spaces-006.xht": [ - "4935ee1fdf884f2fdb0f5628cc4a50865600599a", + "text-transform-lowercase-001.xht": [ + "15c7a4f04806093de0bbf173c1785ef60efb6699", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/text/text-transform-lowercase-001-ref.xht", "==" ] ], {} ] ], - "escaped-ident-spaces-007.xht": [ - "0feac95ef5c752cd21eeb6aa9bf14cb33bb6c652", + "text-transform-unicase-001.xht": [ + "c5cefc2a1e0329a07650ab3d1bea13cd53197dc3", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/text/text-transform-unicase-001-ref.xht", "==" ] ], {} ] ], - "escaped-newline-001.xht": [ - "e576eb371ee0e90441421768663334d4a3f3d00f", + "text-transform-uppercase-001.xht": [ + "b2fdac637d27d72e6e3791ea1e2c28faaf7bb901", [ null, [ [ - "/css/CSS2/syntax/escaped-newline-001-ref.xht", + "/css/CSS2/text/text-transform-uppercase-001-ref.xht", "==" ] ], {} ] ], - "escaped-url-001.xht": [ - "caaa644a95b87d83278af22b99e2025fe637b84e", + "text-transform-uppercase-002.xht": [ + "2b7de254d3512dfb7bc28e817ff17c186e80fadd", [ null, [ [ - "/css/CSS2/syntax/escaped-url-001-ref.xht", + "/css/CSS2/text/text-transform-uppercase-002-ref.xht", "==" ] ], {} ] ], - "escapes-000.xht": [ - "0937229a54b23ac36877e590f7c7019ac3f43692", + "white-space-001.xht": [ + "f4fb548d004b040d4ae2ea029c6f5198cd08a261", [ null, [ [ - "/css/CSS2/syntax/escapes-000-ref.xht", + "/css/CSS2/text/white-space-001-ref.xht", "==" ] ], {} ] ], - "escapes-001.xht": [ - "0018bd93617e936022a5e11dbb999972cf4d1a69", + "white-space-002.xht": [ + "5fb1a842e762f3ea9d6a868f0fdb5d9cfa7098a7", [ null, [ [ - "/css/CSS2/reference/ref-green-background.xht", + "/css/CSS2/text/white-space-002-ref.xht", "==" ] ], {} ] ], - "escapes-002.xht": [ - "1ab1f62131d0d039a3d2f979d5a9120df450619d", + "white-space-003.xht": [ + "dd59199bfd55be3c5e290edbbce1c79da4f5ce4f", [ null, [ [ - "/css/CSS2/reference/ref-green-background.xht", + "/css/CSS2/text/white-space-001-ref.xht", "==" ] ], {} ] ], - "escapes-003.xht": [ - "38f735df741b95f5d97994ca3df835eabcbe33a3", + "white-space-004.xht": [ + "641c3f3c0bd6ef48c1fd0650b963981916956fae", [ null, [ [ - "/css/CSS2/reference/ref-green-background.xht", + "/css/CSS2/text/white-space-004-ref.xht", "==" ] ], {} ] ], - "escapes-004.xht": [ - "080016d11cdd94bf1c2834084c59e8b6b69a395e", + "white-space-005.xht": [ + "aa5b61ca2ffeb3215dd2b52a93d1a94cdd5d0cf8", [ null, [ [ - "/css/CSS2/reference/ref-green-background.xht", + "/css/CSS2/text/white-space-001-ref.xht", "==" ] ], {} ] ], - "escapes-005.xht": [ - "78e5533f586a38004801b225d25922469aaa8b51", + "white-space-006.xht": [ + "de0061bb230f55150b5bb2f7fa41ce43a909ea8e", [ null, [ [ - "/css/CSS2/reference/ref-green-background.xht", + "/css/CSS2/text/white-space-002-ref.xht", "==" ] ], {} ] ], - "escapes-006.xht": [ - "ad5173419db90b3f6c5b207797eb89a6e3fe5449", + "white-space-007.xht": [ + "3dc9fcc6952339d223b20a8185f08095de42c059", [ null, [ [ - "/css/CSS2/reference/ref-green-background.xht", + "/css/CSS2/text/white-space-007-ref.xht", "==" ] ], {} ] ], - "escapes-007.xht": [ - "62e41298406e5ed97b84b6aa8cd9e1a1ec5c6b7b", + "white-space-008.xht": [ + "c81aac449aee730c33e51c5b058d68496f71e4f6", [ null, [ [ - "/css/CSS2/reference/ref-green-background.xht", + "/css/CSS2/text/white-space-008-ref.xht", "==" ] ], {} ] ], - "escapes-008.xht": [ - "92fec1ceef2c631c0ec0cdead28fcef471b5a9af", + "white-space-applies-to-001.xht": [ + "1702e171b2daa6d2e1de5be568308edfe8fbac72", [ null, [ [ - "/css/CSS2/reference/ref-green-background.xht", + "/css/CSS2/text/white-space-002-ref.xht", "==" ] ], {} ] ], - "escapes-009.xht": [ - "11ad3c14a949fde867d0e23fa41cedb9830def64", + "white-space-applies-to-002.xht": [ + "04e90d7f950b03e0f072a6cdb64621390ec8ebd6", [ null, [ [ - "/css/CSS2/reference/ref-this-text-should-be-green.xht", + "/css/CSS2/text/white-space-002-ref.xht", "==" ] ], {} ] ], - "escapes-010.xht": [ - "564ff1bb77fdf08565d02289dc02cf988278c6bb", + "white-space-applies-to-003.xht": [ + "67ad1e5d103c04aad755c2287289221cede5a14a", [ null, [ [ - "/css/CSS2/reference/ref-this-text-should-be-green.xht", + "/css/CSS2/text/white-space-applies-to-003-ref.xht", "==" ] ], {} ] ], - "escapes-011.xht": [ - "850f5ae13eb71bb9f278df3671e9f5ca515021d6", + "white-space-applies-to-005.xht": [ + "8508a884be405320378c4376385a906345c9ea98", [ null, [ [ - "/css/CSS2/reference/ref-this-text-should-be-green.xht", + "/css/CSS2/text/white-space-002-ref.xht", "==" ] ], {} ] ], - "escapes-012.xht": [ - "5ff2542b3fd731415f1b6017200582ad30d8e143", + "white-space-applies-to-006.xht": [ + "b60f51ff757c59d615400036e3b9ab19293a62a8", [ null, [ [ - "/css/CSS2/reference/ref-this-text-should-be-green.xht", + "/css/CSS2/text/white-space-002-ref.xht", "==" ] ], {} ] ], - "escapes-013.xht": [ - "abfd3275b4e9eb3978a5998922768ec41ced3a23", + "white-space-applies-to-007.xht": [ + "2521a6d8b446b9de8ad398327f044bf5ec734308", [ null, [ [ - "/css/CSS2/syntax/escapes-013-ref.xht", + "/css/CSS2/text/white-space-002-ref.xht", "==" ] ], {} ] ], - "escapes-014.xht": [ - "4b1cc49adcba3d3de8963842962d0f97d2c75a82", + "white-space-applies-to-008.xht": [ + "214d844f1a015f66458da61e875e206978f2ddba", [ null, [ [ - "/css/CSS2/reference/ref-green-background.xht", + "/css/CSS2/text/white-space-002-ref.xht", "==" ] ], {} ] ], - "escapes-015.xht": [ - "be2ff6b242cfb10a1c048dee2d5ab62d7a89e86f", + "white-space-applies-to-009.xht": [ + "5328956af61550a684dcaf1cf378764e84790adb", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/text/white-space-002-ref.xht", "==" ] ], {} ] ], - "escapes-016.xht": [ - "128c74a1d1a68b48646cc4558b66f29face33e61", + "white-space-applies-to-010.xht": [ + "affee6ab1a8490ca6f26c9005071ad6acefa1c8d", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/text/white-space-002-ref.xht", "==" ] ], {} ] ], - "ident-000.xht": [ - "0cb3051a142336f05b9542f03a0e80ec6f1ba30a", + "white-space-applies-to-011.xht": [ + "f4dcfbe9b0314e73008489abb055efdeca26d7ab", [ null, [ [ - "/css/CSS2/syntax/ident-000-ref.xht", + "/css/CSS2/text/white-space-002-ref.xht", "==" ] ], {} ] ], - "ident-001.xht": [ - "ec79def2581a42d1fd8e3f952f63a2a89241ff30", + "white-space-applies-to-012.xht": [ + "f4d9ecfe4e07487f2dcf4e01d3033143d0242e3e", [ null, [ [ - "/css/CSS2/syntax/ident-000-ref.xht", + "/css/CSS2/text/white-space-001-ref.xht", "==" ] ], {} ] ], - "ident-002.xht": [ - "8de86433e75dd232b5ecbbd53f120f973bdbb20e", + "white-space-applies-to-013.xht": [ + "4e01932c837e98f2df3bde56db6fcc6929459cbb", [ null, [ [ - "/css/CSS2/syntax/ident-000-ref.xht", + "/css/CSS2/text/white-space-001-ref.xht", "==" ] ], {} ] ], - "ident-003.xht": [ - "e09d970069351b20972c8d6d2f3072cc619bcb65", + "white-space-applies-to-014.xht": [ + "fc9b64125262f0f20f02f91fe044572b76495e5f", [ null, [ [ - "/css/CSS2/syntax/ident-003-ref.xht", + "/css/CSS2/text/white-space-002-ref.xht", "==" ] ], {} ] ], - "ident-004.xht": [ - "ff079e5ffb39c32630e583d27da4d5cdc3ff75a8", + "white-space-applies-to-015.xht": [ + "1b8acd7b050039b606718a1ee646a126696fda4a", [ null, [ [ - "/css/CSS2/syntax/ident-000-ref.xht", + "/css/CSS2/text/white-space-002-ref.xht", "==" ] ], {} ] ], - "ident-005.xht": [ - "346e3e366218580e61b94cc61143a2606c4feaf8", + "white-space-bidirectionality-001.xht": [ + "1d0f8211af6cfcde7f08f5fc70dd7b3e3c0d38d7", [ null, [ [ - "/css/CSS2/syntax/ident-000-ref.xht", + "/css/CSS2/text/white-space-bidirectionality-001-ref.xht", "==" ] ], {} ] ], - "ident-006.xht": [ - "a4fcf1884a510083628b079d8cf768759684008b", + "white-space-collapsing-001.xht": [ + "90f2d4535cd42b0cda62a2fe3b09cc1ad3f849d4", [ null, [ [ - "/css/CSS2/syntax/ident-000-ref.xht", + "/css/CSS2/text/white-space-collapsing-001-ref.xht", "==" ] ], {} ] ], - "ident-007.xht": [ - "c91e35e698fb2a00148d03812697b96b6e6c9971", + "white-space-collapsing-002.xht": [ + "627214c8d1c5afd46942c98ff301d80ee71402d1", [ null, [ [ - "/css/CSS2/syntax/ident-000-ref.xht", + "/css/CSS2/text/white-space-collapsing-001-ref.xht", "==" ] ], {} ] ], - "ident-008.xht": [ - "7e80153fff43304fd84af7ca144501271aa6e614", + "white-space-collapsing-003.xht": [ + "0363a4cf82155ca1c4bd33164a512f8470d48bfe", [ null, [ [ - "/css/CSS2/syntax/ident-000-ref.xht", + "/css/CSS2/text/white-space-collapsing-003-ref.xht", "==" ] ], {} ] ], - "ident-009.xht": [ - "1dceb48e2f63bea16c1059aa0d2d41489c300345", + "white-space-collapsing-004.xht": [ + "70a2a4f6ef03c0b88aaa9b0073eda4c3ea15e51d", [ null, [ [ - "/css/CSS2/syntax/ident-000-ref.xht", + "/css/CSS2/text/white-space-collapsing-004-ref.xht", "==" ] ], {} ] ], - "ident-010.xht": [ - "00130844f6528a9490a33e91d878ef71179bbfa7", + "white-space-collapsing-005.xht": [ + "8ed9d432ee6c83f622880a935997c88a252a1484", [ null, [ [ - "/css/CSS2/syntax/ident-000-ref.xht", + "/css/CSS2/text/white-space-collapsing-004-ref.xht", "==" ] ], {} ] ], - "ident-011.xht": [ - "228b873b0d0625cf615273154d98a2b977aa8dfa", + "white-space-collapsing-bidi-001.xht": [ + "41644681eb8a187f9e6625223e93652a466b97c9", [ null, [ [ - "/css/CSS2/syntax/ident-000-ref.xht", + "/css/CSS2/text/white-space-collapsing-bidi-001-ref.xht", "==" ] ], {} ] ], - "ident-012.xht": [ - "8dc09bc1544941a684c8829c5ef221538683758b", + "white-space-collapsing-bidi-002.xht": [ + "7b6718f4d7d1625ecf9f2af2b8cb0f42eea9f2fd", [ null, [ [ - "/css/CSS2/syntax/ident-012-ref.xht", + "/css/CSS2/text/white-space-collapsing-bidi-001-ref.xht", "==" ] ], {} ] ], - "ident-013.xht": [ - "2dc65a35d7a9c0112950d5e4d9ebd66561ed6d14", + "white-space-collapsing-bidi-003.xht": [ + "cd21357dac4530019bf38ca1c9fbe4c08c42842a", [ null, [ [ - "/css/CSS2/syntax/ident-000-ref.xht", + "/css/CSS2/text/white-space-collapsing-bidi-003-ref.xht", "==" ] ], {} ] ], - "ident-014.xht": [ - "44a53c7f7ff60d95f879124670d1c4f2a420bb13", + "white-space-collapsing-breaks-001.xht": [ + "d06ca5f96b1f84f1e0428a50f45aca04533fed81", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/text/white-space-collapsing-breaks-001-ref.xht", "==" ] ], {} ] ], - "ident-015.xht": [ - "65349fc0ddd7ad9c9d5a27af84e947174bbdb01d", + "white-space-generated-content-before-001.xht": [ + "da9fbd170bc82c1d0a9ece04662d9fdb0a333f4c", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/text/white-space-generated-content-before-001-ref.xht", "==" ] ], {} ] ], - "ident-016.xht": [ - "cedc7fb659650d854d1d451ddf5f9dfd46baddde", + "white-space-mixed-001.xht": [ + "2202c90644908ed0ff628d13bf7f6f8156a22621", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/text/white-space-mixed-001-ref.xht", "==" ] ], {} ] ], - "ident-017.xht": [ - "355fb4a42325a255ec97d85b63eef860ab6191e2", + "white-space-mixed-002.xht": [ + "1de2d46024643dc27daac95fe8f50bd3ecf98992", [ null, [ [ - "/css/CSS2/reference/no-red-filler-text-ref.xht", + "/css/CSS2/text/white-space-mixed-002-ref.xht", "==" ] ], {} ] ], - "ident-018.xht": [ - "c4457cde3927b55e0b85fef66bc00960a6f68745", + "white-space-mixed-003.xht": [ + "26a790936a118317598d807192ec86986d7e8784", [ null, [ [ - "/css/CSS2/reference/no-red-filler-text-ref.xht", + "/css/CSS2/text/white-space-mixed-003-ref.xht", "==" ] ], {} ] ], - "ident-019.xht": [ - "ce0d5d473c1b692c67d158cf4d4333eea0ee11bd", + "white-space-normal-001.xht": [ + "b50e02f3d0c67bbd7d136b344436c50c8be85b02", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/text/white-space-normal-001-ref.xht", "==" ] ], {} ] ], - "ignored-rules-001.xht": [ - "2317baa5bbc345095bce4508db6dd69ccf6846da", + "white-space-normal-002.xht": [ + "b929d6751ae4d0dc2c48c04c2ef81eb18b35a880", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/text/white-space-normal-001-ref.xht", "==" ] ], {} ] ], - "ignored-rules-002.xht": [ - "c7b1dcbb8ce27793ebb2ffc61225c17482329b24", + "white-space-normal-003.xht": [ + "f7ef8a6d3b419e93084f9b0f8862bc85d8ff795c", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/text/white-space-normal-003-ref.xht", "==" ] ], {} ] ], - "ignored-rules-003.xht": [ - "5d0cf7d0bc3928bf58d5f0eb3ae03057f14446da", + "white-space-normal-004.xht": [ + "4bed414ba258a450e458978b7e966fd8a8b41727", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/text/white-space-normal-003-ref.xht", "==" ] ], {} ] ], - "ignored-rules-004.xht": [ - "3987b7fbd97a7f9992dd4f816831b61a08eabc3d", + "white-space-normal-005.xht": [ + "fad48a1ac610450be6abd364195ba65a8a32faf3", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/text/white-space-normal-005-ref.xht", "==" ] ], {} ] ], - "ignored-rules-005.xht": [ - "d740829c80928c0e9b9f902c7b609c703a38fc2b", + "white-space-normal-006.xht": [ + "e64b6c8026f6908a86abdd428f65ea607ecc3ff6", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/text/white-space-normal-005-ref.xht", "==" ] ], {} ] ], - "ignored-rules-006.xht": [ - "54ab39efa449c870f8e2b87af8588db5d1c21d0c", + "white-space-normal-007.xht": [ + "efb65641ad0e500c54b45d09db5dd9ec20f9908a", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/text/white-space-normal-007-ref.xht", "==" ] ], {} ] ], - "ignored-rules-007.xht": [ - "c816e8ea5b4adc26e1b9a750ff8b2fef0ec8160b", + "white-space-normal-008.xht": [ + "10d44a0b285a95e2e61545e28b9f06a266030d2f", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/text/white-space-normal-008-ref.xht", "==" ] ], {} ] ], - "import-000.xht": [ - "1ede841af4732b11994a6dad38a305b25d331b3b", + "white-space-normal-009.xht": [ + "ef5d6f49bd86c0d027eaa5448a856dc96f306bca", [ null, [ [ - "/css/CSS2/reference/ref-this-text-should-be-green.xht", + "/css/CSS2/text/white-space-normal-009-ref.xht", "==" ] ], {} ] ], - "import-001.xht": [ - "95f131974871d874d17ce428afa6c7a63d3802a8", + "white-space-nowrap-001.xht": [ + "340755111eaed9c215105334a5c1e3c790d8bf47", [ null, [ [ - "/css/CSS2/reference/ref-this-text-should-be-green.xht", + "/css/CSS2/text/white-space-nowrap-001-ref.xht", "==" ] ], {} ] ], - "invalid-at-rule-001.xht": [ - "6062e3dda4449cae50ca92c53b56972c86de6e51", + "white-space-nowrap-005.xht": [ + "2866785a12a17d45815f4979faf50535997bcc57", [ null, [ [ - "/css/CSS2/reference/no-red-filler-text-ref.xht", + "/css/CSS2/text/white-space-normal-005-ref.xht", "==" ] ], {} ] ], - "invalid-decl-at-rule-001.xht": [ - "a1aa604240643a8a4462330a1c13a7245363e0d3", + "white-space-nowrap-006.xht": [ + "04976acd4bf3781d171d0bb5b28225217f9457ee", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/text/white-space-normal-005-ref.xht", "==" ] ], {} ] ], - "invalid-decl-at-rule-002.xht": [ - "80f8c18b09fe9b97b4c6180892b6e63dac60544b", + "white-space-nowrap-attribute-001.xht": [ + "d8e16ffc7c5707f5937d4ae4ab4bd7f49cad8747", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/text/white-space-generated-content-before-001-ref.xht", "==" ] ], {} ] ], - "keywords-000.xht": [ - "3ffa554f60eb02b05f5c32078b009770dc445e96", + "white-space-p-element-001.xht": [ + "478aebfc0cee45b3d4815c7252fd6319078e39d9", [ null, [ [ - "/css/CSS2/reference/ref-green-background.xht", + "/css/CSS2/text/white-space-generated-content-before-001-ref.xht", "==" ] ], {} ] ], - "keywords-001.xht": [ - "07b08076363486319388a1a640d4dfdf349592dc", + "white-space-pre-001.xht": [ + "0d5d6b5c129e654e593a5ed59abc112c76647fd2", [ null, [ [ - "/css/CSS2/syntax/keywords-001-ref.xht", + "/css/CSS2/text/white-space-pre-001-ref.xht", "==" ] ], {} ] ], - "malformed-decl-001.xht": [ - "0362f172f5a4d4c2f3c9c1e2cb6ed3c679f82098", + "white-space-pre-002.xht": [ + "508be26165c7c32e81b08b3236bffa51c5638a70", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/text/white-space-pre-002-ref.xht", "==" ] ], {} ] ], - "malformed-decl-002.xht": [ - "417c7d61a3bb26385b59911b06941a047dbd6880", + "white-space-pre-005.xht": [ + "485e1520e9028e2216fb37d13b8ee581671768b5", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/text/white-space-normal-005-ref.xht", "==" ] ], {} ] ], - "malformed-decl-003.xht": [ - "f35192c5bebabbb9b7c80ad2d109723b407539e9", + "white-space-pre-006.xht": [ + "a58646bbcc7ed66c8fe090b65ab10da3690dba3b", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/text/white-space-normal-005-ref.xht", "==" ] ], {} ] ], - "malformed-decl-004.xht": [ - "f803ed5bafbb9ef41acc5635536ea2a9abe731c5", + "white-space-pre-element-001.xht": [ + "769dd01870f5890401df6be9a153836266f53762", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/text/white-space-pre-element-001-ref.xht", "==" ] ], {} ] ], - "malformed-decl-005.xht": [ - "01591b61ceb183266c4f13a1649ef1ccb497cb7f", + "white-space-processing-001.xht": [ + "f212b0c66b07e57f886307490967e4f3bfd61eff", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/text/white-space-001-ref.xht", "==" ] ], {} ] ], - "malformed-decl-006.xht": [ - "79adb28e01ae94362035df98c8a7991fa831bed0", + "white-space-processing-002.xht": [ + "3cc4db9868586a94efcf07dce87a3bf1d39f28a9", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/text/white-space-processing-002-ref.xht", "==" ] ], {} ] ], - "malformed-decl-007.xht": [ - "c79416d97808d73e94b52f72cb3a162532bb2edc", + "white-space-processing-003.xht": [ + "f4310d257cb25ca2e2f9fb585f946034c8f134b6", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/text/white-space-processing-002-ref.xht", "==" ] ], {} ] ], - "malformed-decl-008.xht": [ - "b68ab7f046ec801e1c0202eaefe9f82617bc05b8", + "white-space-processing-004.xht": [ + "08e5c8be5fe18068ad38f1c46a4b3f1ad2bd8bfc", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/text/white-space-processing-002-ref.xht", "==" ] ], {} ] ], - "malformed-decl-block-001.xht": [ - "8e389615ceca0414d110b9eed2d051ff18d85243", + "white-space-processing-005.xht": [ + "1237c6830d3823fa0de0a5e49a568493cfb8473b", [ - "css/CSS2/syntax/malformed-decl-block-001.xht", + null, [ [ - "/css/CSS2/syntax/malformed-decl-block-001-ref.xht", + "/css/CSS2/text/white-space-processing-005-ref.xht", "==" ] ], {} ] ], - "matching-brackets-001.xht": [ - "e1520ddd6f03e28764782e692234f0aa8cc140e4", + "white-space-processing-006.xht": [ + "886e6bdc0595cf5ee9ce21f0e375d97830554c6e", [ null, [ [ - "/css/CSS2/syntax/matching-brackets-001-ref.xht", + "/css/CSS2/text/white-space-processing-006-ref.xht", "==" ] ], {} ] ], - "matching-brackets-002.xht": [ - "1812984e9a405bc6eed6629da5d77535eed6056e", + "white-space-processing-007.xht": [ + "d05501d169df24cfd467b5dc761c549259754595", [ null, [ [ - "/css/CSS2/syntax/matching-brackets-002-ref.xht", + "/css/CSS2/text/white-space-processing-005-ref.xht", "==" ] ], {} ] ], - "matching-brackets-003.xht": [ - "4ed40b34f40e1e42f3a6105d7d32ff974dbef0d6", + "white-space-processing-008.xht": [ + "1e9fb19486606326ff7331fefd8f8521da773509", [ null, [ [ - "/css/CSS2/syntax/matching-brackets-001-ref.xht", + "/css/CSS2/text/white-space-processing-002-ref.xht", "==" ] ], {} ] ], - "quoted-keywords-001.xht": [ - "a34b1a31ea63d727187ed00170cf6e4f58d37aeb", + "white-space-processing-009.xht": [ + "6592161324e3c060346723c1a5f5d9a478a1222e", [ null, [ [ - "/css/CSS2/reference/no-red-filler-text-ref.xht", + "/css/CSS2/text/white-space-processing-002-ref.xht", "==" ] ], {} ] ], - "quoted-keywords-002.xht": [ - "0fc31abc3dc18e4c64e061acb488cc8931a61b89", + "white-space-processing-010.xht": [ + "bbf43365f7a7c30cf3ed750741b24ad2e0e9ffde", [ null, [ [ - "/css/CSS2/reference/no-red-filler-text-ref.xht", + "/css/CSS2/text/white-space-processing-002-ref.xht", "==" ] ], {} ] ], - "quoted-string-001.xht": [ - "4aeffd92e88e85f9d85168328ba68d795e620f8a", + "white-space-processing-011.xht": [ + "6b42dffe5edf906e12b78ed22e39b12f5eaf1d9b", [ null, [ [ - "/css/CSS2/syntax/quoted-string-001-ref.xht", + "/css/CSS2/text/white-space-002-ref.xht", "==" ] ], {} ] ], - "quoted-string-002.xht": [ - "fdaaff8443c3ed45a28324233162be18e730ed8e", + "white-space-processing-012.xht": [ + "688d2c5ef6881ec429962ab21d4cf3811a15ded1", [ null, [ [ - "/css/CSS2/syntax/quoted-string-002-ref.xht", + "/css/CSS2/text/white-space-002-ref.xht", "==" ] ], {} ] ], - "quoted-string-003.xht": [ - "07e1a3e58a78ecfb8aa4a2a9db90093c1958eb0f", + "white-space-processing-013.xht": [ + "b6dee8f2a58b3a49eb0bf39c12b1f620d8b81fc7", [ null, [ [ - "/css/CSS2/syntax/quoted-string-001-ref.xht", + "/css/CSS2/text/white-space-processing-013-ref.xht", "==" ] ], {} ] ], - "quoted-string-004.xht": [ - "059a15f833a6a551d9370a8eef53179d1c9d5ffb", + "white-space-processing-014.xht": [ + "8f4c10f6e024b0837c2a094faca96faee58a4511", [ null, [ [ - "/css/CSS2/syntax/quoted-string-002-ref.xht", + "/css/CSS2/text/white-space-processing-014-ref.xht", "==" ] ], {} ] ], - "scientific-notation-001.xht": [ - "d6aafc87f831d268cebc3d931bde87784fd6aedc", + "white-space-processing-015.xht": [ + "329753677b5241ec30c20a135e0a081a9b871130", [ null, [ [ - "/css/CSS2/syntax/scientific-notation-001-ref.xht", + "/css/CSS2/text/white-space-processing-015-ref.xht", "==" ] ], {} ] ], - "sgml-comments-000.xht": [ - "6cdf5a11c30b95b1fcd872fac974abf626d64232", + "white-space-processing-016.xht": [ + "f284ec407d1bef71cc89d5f90f7d53db441e0bef", [ null, [ [ - "/css/CSS2/reference/ref-this-text-should-be-green.xht", + "/css/CSS2/text/white-space-processing-016-ref.xht", "==" ] ], {} ] ], - "sgml-comments-001.xht": [ - "e59c8e861ad051c21b31371ea47d1fdec3b05119", + "white-space-processing-017.xht": [ + "ed3dc31693e3d188f12843ad931b67c650c2b8c2", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/text/white-space-processing-016-ref.xht", "==" ] ], {} ] ], - "sgml-comments-002.xht": [ - "c26e3102267c6f104e1b651f6e87c17dd42ebcb1", + "white-space-processing-018.xht": [ + "57d065a25e86ce8085cdce15ec427f67417a3d84", [ null, [ [ - "/css/CSS2/syntax/sgml-comments-002-ref.xht", + "/css/CSS2/text/white-space-processing-016-ref.xht", "==" ] ], {} ] ], - "signed-numbers-001.xht": [ - "6c3c54779f40ba30d090b9e4dcb3b49e5dce2727", + "white-space-processing-019.xht": [ + "4c6600be054ec06ce50bd7b0218b06e66f5cb8f5", [ null, [ [ - "/css/CSS2/syntax/signed-numbers-001-ref.xht", + "/css/CSS2/text/white-space-001-ref.xht", "==" ] ], {} ] ], - "signed-numbers-002.xht": [ - "cf38d7aed6877518fb71f92fd2b5fa7697ea7376", + "white-space-processing-020.xht": [ + "b54037045deb60792732f20f2274be3cc8860f89", [ null, [ [ - "/css/CSS2/syntax/signed-numbers-001-ref.xht", + "/css/CSS2/text/white-space-001-ref.xht", "==" ] ], {} ] ], - "square-brackets-001.xht": [ - "fd3bed7f48b9f15923a6728b949986c5f8a8f289", + "white-space-processing-021.xht": [ + "b6bae368e91e09a69567360b248f2629f9ecc97f", [ null, [ [ - "/css/CSS2/reference/ref-this-text-should-be-green.xht", + "/css/CSS2/text/white-space-001-ref.xht", "==" ] ], {} ] ], - "strings-000.xht": [ - "185941c49222e3bfd326eca63b5ed24c9d8e1d6b", + "white-space-processing-022.xht": [ + "ccc6e91eded841e332af5800afe220511be55d98", [ null, [ [ - "/css/CSS2/reference/ref-this-text-should-be-green.xht", + "/css/CSS2/text/white-space-001-ref.xht", "==" ] ], {} ] ], - "unterminated-string-001.xht": [ - "276d88f3451364c1ba368675679dd0e5cd4290e3", + "white-space-processing-023.xht": [ + "25a77a6ea6991a49cd0d6e40367f302b86e760e3", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/text/white-space-001-ref.xht", "==" ] ], {} ] ], - "uri-001.xht": [ - "55e389bf86b74c7a8c6fbd1a8a4ae01de3b151d3", + "white-space-processing-024.xht": [ + "8f6a83dbc9b08aac4df84831b77288efbfc1c555", [ null, [ [ - "/css/CSS2/reference/filler-text-below-green.xht", + "/css/CSS2/text/white-space-001-ref.xht", "==" ] ], {} ] ], - "uri-002.xht": [ - "c58748593e11eb6a6a1df584740f9e6b1fc95d8b", + "white-space-processing-025.xht": [ + "34eda9c291c68cf4bc4cc5c2e0713263cf3acb5b", [ null, [ [ - "/css/CSS2/reference/no-red-filler-text-ref.xht", + "/css/CSS2/text/white-space-001-ref.xht", "==" ] ], {} ] ], - "uri-003.xht": [ - "b0520fa68994a2836fa1099b67da883d7cb79957", + "white-space-processing-026.xht": [ + "a9462df88a7ce78e0f4c9879cf60502c68454126", [ null, [ [ - "/css/CSS2/reference/no-red-filler-text-ref.xht", + "/css/CSS2/text/white-space-001-ref.xht", "==" ] ], {} ] ], - "uri-004.xht": [ - "2b46909e966cbcb448b2f0cca10af164949303f8", + "white-space-processing-027.xht": [ + "9b3b10f7807efc2e2ae733e3b211ed0199774608", [ null, [ [ - "/css/CSS2/reference/ref-green-background.xht", + "/css/CSS2/text/white-space-001-ref.xht", "==" ] ], {} ] ], - "uri-005.xht": [ - "0f69207e4cb69f8ed9c609f94027510c9c12d0fe", + "white-space-processing-028.xht": [ + "270e5f5dd183889f08e044eea050a55a86b9e2fc", [ null, [ [ - "/css/CSS2/reference/ref-green-background.xht", + "/css/CSS2/text/white-space-001-ref.xht", "==" ] ], {} ] ], - "uri-006.xht": [ - "2895d230103731d24996f331b9b03d6607e96b04", + "white-space-processing-029.xht": [ + "513ffda908f51b3cbc85233fba2f642888559597", [ null, [ [ - "/css/CSS2/reference/no-red-filler-text-ref.xht", + "/css/CSS2/text/white-space-001-ref.xht", "==" ] ], {} ] ], - "uri-007.xht": [ - "62259e1452c7383cff6ccc399549e27774b20cbf", + "white-space-processing-030.xht": [ + "7f3fb4cfb6937ccba229329e38e3761aad6a6624", [ null, [ [ - "/css/CSS2/reference/no-red-filler-text-ref.xht", + "/css/CSS2/text/white-space-001-ref.xht", "==" ] ], {} ] ], - "uri-008.xht": [ - "14804b442319aec6f3f8db07c95265a3cfee963c", + "white-space-processing-031.xht": [ + "b0323636233ef2cd641b9cdf927b9bc59d9a2437", [ null, [ [ - "/css/CSS2/reference/no-red-filler-text-ref.xht", + "/css/CSS2/text/white-space-processing-031-ref.xht", "==" ] ], {} ] ], - "uri-009.xht": [ - "036c9c2b4e9ef5311607ce2269443cba5e2f31ba", + "white-space-processing-032.xht": [ + "11b37aa1f44d177fc7f87a0d9673c03bc4487471", [ null, [ [ - "/css/CSS2/reference/no-red-filler-text-ref.xht", + "/css/CSS2/text/white-space-processing-031-ref.xht", "==" ] ], {} ] ], - "uri-010.xht": [ - "d88d5d34498fb7080600d874495c5f0297879df7", + "white-space-processing-033.xht": [ + "ba6af357ba3d1918ca214e1b13aa99c1f03f7761", [ null, [ [ - "/css/CSS2/reference/no-red-filler-text-ref.xht", + "/css/CSS2/text/white-space-processing-031-ref.xht", "==" ] ], {} ] ], - "uri-011.xht": [ - "87b1ebc044608a7151a5257e588b63b7b1dac86b", + "white-space-processing-034.xht": [ + "4acf4e580cbc5a7149b1ba8efd24ed95a4a2b0be", [ null, [ [ - "/css/CSS2/reference/no-red-filler-text-ref.xht", + "/css/CSS2/text/white-space-processing-031-ref.xht", "==" ] ], {} ] ], - "uri-012.xht": [ - "e53030135b59f56fa81a83e9282d43f5602f347e", + "white-space-processing-035.xht": [ + "aec28aa8a806ec1fb0714e3e14545adc996bca9c", [ null, [ [ - "/css/CSS2/syntax/uri-012-ref.xht", + "/css/CSS2/text/white-space-processing-031-ref.xht", "==" ] ], {} ] ], - "uri-013.xht": [ - "24bd73f61d983d2119ef51e0d60eea932b151f8b", + "white-space-processing-036.xht": [ + "0755c3b51ffa73a9ec8eb5fdb212e07ff3ff753f", [ null, [ [ - "/css/CSS2/syntax/uri-013-ref.xht", + "/css/CSS2/text/white-space-processing-031-ref.xht", "==" ] ], {} ] ], - "uri-014.xht": [ - "a854c075cfc8075271ca1aaf34092ad78812ed3e", + "white-space-processing-037.xht": [ + "11ed4be9ca89926b0749fe05aa81650e39ac7b87", [ null, [ [ - "/css/CSS2/reference/ref-green-background.xht", + "/css/CSS2/text/white-space-processing-037-ref.xht", "==" ] ], {} ] ], - "uri-015.xht": [ - "ed247f279cf61f1819601b5fb3babd42dae9a092", + "white-space-processing-038.xht": [ + "935e3ff0430aa12d4055eff201c4640e3f4118d3", [ null, [ [ - "/css/CSS2/reference/ref-green-background.xht", + "/css/CSS2/text/white-space-processing-037-ref.xht", "==" ] ], {} ] ], - "uri-016.xht": [ - "0be5565c4ade0ae763bcbf31c79bf76a69d0e42a", + "white-space-processing-039.xht": [ + "db66acbd2cfe4652178b99adf81cfc89e441969f", [ null, [ [ - "/css/CSS2/syntax/uri-016-ref.xht", + "/css/CSS2/text/white-space-processing-037-ref.xht", "==" ] ], {} ] ], - "uri-017.xht": [ - "c3989a1ee6f396008b5fbc1125e2e0520b2129fd", + "white-space-processing-040.xht": [ + "bda32c7b315d62fbc6b70e5df97c4f4442ef394e", [ null, [ [ - "/css/CSS2/syntax/uri-017-ref.xht", + "/css/CSS2/text/white-space-processing-037-ref.xht", "==" ] ], {} ] ], - "uri-018.xht": [ - "040828b163dcc86b2a162046d302c573e9f1c148", + "white-space-processing-041.xht": [ + "2e3644c4f4efe10d9015866cb590a11ed06a1a7c", [ null, [ [ - "/css/CSS2/reference/ref-this-text-should-be-green.xht", + "/css/CSS2/text/white-space-processing-037-ref.xht", "==" ] ], {} ] ], - "whitespace-001.xht": [ - "cde16d1a14323754c27d97d8f15737e58b802001", + "white-space-processing-042.xht": [ + "a33484aece4adead7efaae1861d4da23245b6400", [ null, [ [ - "/css/CSS2/reference/no-red-filler-text-ref.xht", + "/css/CSS2/text/white-space-processing-042-ref.xht", "==" ] ], {} ] ], - "whitespace-002.xht": [ - "ef0062c815dffeabf3558d7421709393dcca5d08", + "white-space-processing-043.xht": [ + "aeaf8d82c1e78e9e21d6005f47dca7bebd462de6", [ null, [ [ - "/css/CSS2/reference/no-red-filler-text-ref.xht", + "/css/CSS2/text/white-space-processing-043-ref.xht", "==" ] ], {} ] - ] - }, - "tables": { - "anonymous-table-box-width-001.xht": [ - "15bd4893650b36f953d2f84e2c42c5a280dcd625", + ], + "white-space-processing-044.xht": [ + "624bf6883748df03b43c7ae9d84f50cecc31b014", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/text/white-space-processing-043-ref.xht", "==" ] ], {} ] ], - "border-collapse-005.html": [ - "0f3fabce3a47c7ee43507e7ed59812a9af22c245", + "white-space-processing-045.xht": [ + "0d01b72d64e84f040f8a4c3b262e16eaf870fecf", [ null, [ [ - "/css/CSS2/tables/border-collapse-005-ref.html", + "/css/CSS2/text/white-space-processing-043-ref.xht", "==" ] ], {} ] ], - "border-collapse-applies-to-016.xht": [ - "f102d6a799b195388f57396024532947e3357303", + "white-space-processing-046.xht": [ + "3b81e108da65c431a6dba9e1c44764d9e3fd5ef9", [ null, [ [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", + "/css/CSS2/text/white-space-processing-046-ref.xht", "==" ] ], {} ] ], - "border-collapse-dynamic-cell-001.xht": [ - "821dfc3fe893b08a93082e9c97cb99af2768bc71", + "white-space-processing-047.xht": [ + "c92979ba18128251724f660269b061a6a9312a70", [ null, [ [ - "/css/CSS2/tables/border-collapse-dynamic-cell-001-ref.xht", + "/css/CSS2/text/white-space-processing-046-ref.xht", "==" ] ], {} ] ], - "border-collapse-dynamic-cell-002.xht": [ - "1c1928a004f8738ef723bf4443ebab916ed978e5", + "white-space-processing-048.xht": [ + "13a639ab75613ee3fd554dfa50a58b92bbaff7da", [ null, [ [ - "/css/CSS2/tables/border-collapse-dynamic-cell-002-ref.xht", + "/css/CSS2/text/white-space-processing-048-ref.xht", "==" ] ], {} ] ], - "border-collapse-dynamic-cell-003.xht": [ - "7ef31d25194b746efe563dc567e5c02e1536ae35", + "white-space-processing-049.xht": [ + "4492d4b64b53df59543bcf3a810e6f9a1e548c3e", [ null, [ [ - "/css/CSS2/tables/border-collapse-dynamic-cell-003-ref.xht", + "/css/CSS2/text/white-space-processing-049-ref.xht", "==" ] ], {} ] ], - "border-collapse-dynamic-cell-004.xht": [ - "ff92f9dcca0540f4a41552c1367e687c7a69da01", + "white-space-processing-050.xht": [ + "b4f528a2ece485deac31f6a58cbca0be6d2a1bbb", [ null, [ [ - "/css/CSS2/tables/border-collapse-dynamic-cell-004-ref.xht", + "/css/CSS2/text/white-space-001-ref.xht", "==" ] ], {} ] ], - "border-collapse-dynamic-cell-005.xht": [ - "0bd00bd17eda89d338578e670d3e7892145b8401", + "white-space-processing-051.xht": [ + "8556d3a161d27b5f7274281e3e0b507aad9eb79a", [ null, [ [ - "/css/CSS2/tables/border-collapse-dynamic-cell-005-ref.xht", + "/css/CSS2/text/white-space-001-ref.xht", "==" ] ], {} ] ], - "border-collapse-dynamic-colgroup-001.xht": [ - "66d9700192fe803c4ce157878aae7d26c2447656", + "white-space-processing-052.xht": [ + "45461812b63f7507d31e0033d5524e5717c0bb56", [ null, [ [ - "/css/CSS2/tables/border-collapse-dynamic-colgroup-001-ref.xht", + "/css/CSS2/text/white-space-processing-052-ref.xht", "==" ] ], {} ] ], - "border-collapse-dynamic-colgroup-002.xht": [ - "e42dc3ac633d14922b0d11d918a038cfe552bc64", + "white-space-processing-053.xht": [ + "03c14b1b5e068d847812ac766863f54b7167a777", [ null, [ [ - "/css/CSS2/tables/border-collapse-dynamic-colgroup-002-ref.xht", + "/css/CSS2/text/white-space-processing-052-ref.xht", "==" ] ], {} ] ], - "border-collapse-dynamic-colgroup-003.xht": [ - "15cf88b1582ee968954792f9925897cbef3f13f8", + "white-space-processing-054.xht": [ + "e122a9d8cf3228e8a40f74d55af1d2ffb018961d", [ null, [ [ - "/css/CSS2/tables/border-collapse-dynamic-colgroup-003-ref.xht", + "/css/CSS2/text/white-space-processing-054-ref.xht", "==" ] ], {} ] ], - "border-collapse-dynamic-column-001.xht": [ - "44210248c883d994c38c6c1818d080324ed74529", + "white-space-processing-055.xht": [ + "3dd01b0d7087a4d005a89c103eaf36209d44d79e", [ null, [ [ - "/css/CSS2/tables/border-collapse-dynamic-colgroup-001-ref.xht", + "/css/CSS2/text/white-space-processing-055-ref.xht", "==" ] ], {} ] ], - "border-collapse-dynamic-column-002.xht": [ - "8a488dd5e27f988150b75a4e3fd819f5787c5d3d", + "white-space-processing-056.xht": [ + "0dfc98751a7c13cc61b24885949e71e95af246c2", [ null, [ [ - "/css/CSS2/tables/border-collapse-dynamic-colgroup-002-ref.xht", + "/css/CSS2/text/white-space-processing-056-ref.xht", "==" ] ], {} ] ], - "border-collapse-dynamic-column-003.xht": [ - "5acb0f050159662b3c905e8266e8d96a40d8e321", + "word-spacing-004.xht": [ + "f7e449efc2518bd7b686b73481b4f0ee1fc25f57", [ null, [ [ - "/css/CSS2/tables/border-collapse-dynamic-colgroup-003-ref.xht", + "/css/CSS2/text/word-spacing-004-ref.xht", "==" ] ], {} ] ], - "border-collapse-dynamic-row-001.xht": [ - "7c6e724342ede3e1c99137b1bb831ba8ba1d072a", + "word-spacing-005.xht": [ + "16db0a26f65c6d76f45de7e5b86d01337d0a41fa", [ null, [ [ - "/css/CSS2/tables/border-collapse-dynamic-rowgroup-001-ref.xht", + "/css/CSS2/text/word-spacing-004-ref.xht", "==" ] ], {} ] ], - "border-collapse-dynamic-row-002.xht": [ - "129e152a106635629ef023b09a1a64f65d166921", + "word-spacing-006.xht": [ + "8eb27fd6b5daed0984f37dde753c426908906c0d", [ null, [ [ - "/css/CSS2/tables/border-collapse-dynamic-rowgroup-002-ref.xht", + "/css/CSS2/text/word-spacing-004-ref.xht", "==" ] ], {} ] ], - "border-collapse-dynamic-row-003.xht": [ - "8b700d89835d304e0aa04839cf5ad6c321c714b8", + "word-spacing-007.xht": [ + "98a55006ad154142092846ba89d502f5ae22f3aa", [ null, [ [ - "/css/CSS2/tables/border-collapse-dynamic-rowgroup-003-ref.xht", + "/css/CSS2/text/word-spacing-007-ref.xht", "==" ] ], {} ] ], - "border-collapse-dynamic-rowgroup-001.xht": [ - "e4812a156ed290c52669b8ad1e6b03de379e61dd", + "word-spacing-008.xht": [ + "a69ac2cc726bc70d596704235ce4ef4b45b67736", [ null, [ [ - "/css/CSS2/tables/border-collapse-dynamic-rowgroup-001-ref.xht", + "/css/CSS2/text/word-spacing-007-ref.xht", "==" ] ], {} ] ], - "border-collapse-dynamic-rowgroup-002.xht": [ - "a456eb6c6813bfb64b9a2c616332b573a2580d2e", + "word-spacing-016.xht": [ + "d35020bb85800567536c39129eefa53436c0ed62", [ null, [ [ - "/css/CSS2/tables/border-collapse-dynamic-rowgroup-002-ref.xht", + "/css/CSS2/text/word-spacing-004-ref.xht", "==" ] ], {} ] ], - "border-collapse-dynamic-rowgroup-003.xht": [ - "703d6d7a37947e05b38087353db98c72fc0d54cc", + "word-spacing-017.xht": [ + "53752f7624737260b18ea3a1cbcbbf8e533af2f7", [ null, [ [ - "/css/CSS2/tables/border-collapse-dynamic-rowgroup-003-ref.xht", + "/css/CSS2/text/word-spacing-004-ref.xht", "==" ] ], {} ] ], - "border-collapse-dynamic-table-001.xht": [ - "23988d0f4b91a35465a959d1ca9e3d783ddcfca0", + "word-spacing-018.xht": [ + "ce7ed139741dbd705d78c571e25fccf3dac94766", [ null, [ [ - "/css/CSS2/tables/border-collapse-dynamic-table-001-ref.xht", + "/css/CSS2/text/word-spacing-004-ref.xht", "==" ] ], {} ] ], - "border-collapse-dynamic-table-002.xht": [ - "77e57f1cf290007fe7ef4b2ed26c747876e4f1a0", + "word-spacing-019.xht": [ + "5c047edfa61218911cd73d8f0421f8f2bf94b63c", [ null, [ [ - "/css/CSS2/tables/border-collapse-dynamic-table-002-ref.xht", + "/css/CSS2/text/word-spacing-007-ref.xht", "==" ] ], {} ] ], - "border-collapse-dynamic-table-003.xht": [ - "162eb9f74b168d81fa6e23ca59905f972b343d9e", + "word-spacing-020.xht": [ + "c4ee51998f7f11a06630e3957d1ae145b31f2a9b", [ null, [ [ - "/css/CSS2/tables/border-collapse-dynamic-table-003-ref.xht", + "/css/CSS2/text/word-spacing-007-ref.xht", "==" ] ], {} ] ], - "border-collapse-empty-row.html": [ - "c4114a145df0c18ee6745c3cb3e74388609a9eb9", + "word-spacing-028.xht": [ + "bc4ad9ff2bb97ee4fac51368e364cc2621793d08", [ - "css/CSS2/tables/border-collapse-empty-row.html", + null, [ [ - "/css/CSS2/tables/border-collapse-empty-row-ref.html", + "/css/CSS2/text/word-spacing-004-ref.xht", "==" ] ], {} ] ], - "border-collapse-offset-001.xht": [ - "68dde59a0ccd3249680b24abe6a9c837b7741de6", + "word-spacing-029.xht": [ + "c33d73e3502efc0574a20d199f11767e112a5660", [ null, [ [ - "/css/CSS2/tables/border-collapse-offset-001-ref.xht", + "/css/CSS2/text/word-spacing-004-ref.xht", "==" ] ], {} ] ], - "border-collapse-offset-002.xht": [ - "3b1c6b6f25a9bfffe72ee08f96b975b318565231", + "word-spacing-030.xht": [ + "74575f93ad24de88d2678075123e0be93d4d39f4", [ null, [ [ - "/css/CSS2/tables/border-collapse-offset-002-ref.xht", + "/css/CSS2/text/word-spacing-004-ref.xht", "==" ] ], {} ] ], - "border-conflict-element-001a.xht": [ - "585957f13b22ec2d0208f07deb127698d15ddea5", - [ + "word-spacing-031.xht": [ + "f28c3c123cfbf6f15c0167dca33af6f2b003f7d9", + [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/text/word-spacing-007-ref.xht", "==" ] ], {} ] ], - "border-conflict-element-001b.xht": [ - "cc8331cf0bd91892af9216505016af9af1e991c3", + "word-spacing-032.xht": [ + "bf7cea9b1c5af8e93b635f372c4cf65eef2b17da", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/text/word-spacing-007-ref.xht", "==" ] ], {} ] ], - "border-conflict-element-001c.xht": [ - "1c42b86f94e4b1dbca279e3efd4a04d12eefa101", + "word-spacing-040.xht": [ + "7d9995882e3711c0515fc501ee6b17036934da72", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/text/word-spacing-004-ref.xht", "==" ] ], {} ] ], - "border-conflict-element-001d.xht": [ - "bddd4781d834348079cf3cbf49a15cf6de47a0d6", + "word-spacing-041.xht": [ + "9daf333f8e2647ec9f0367bd3252aabb8185ac1e", [ null, [ [ - "/css/CSS2/tables/border-conflict-element-001d-ref.xht", + "/css/CSS2/text/word-spacing-004-ref.xht", "==" ] ], {} ] ], - "border-conflict-element-001e.xht": [ - "0e4b72376756b647f6a225dbfec6db9f7690149d", + "word-spacing-042.xht": [ + "f07bd616b438a40151496d83eab98c5061a65e2d", [ null, [ [ - "/css/CSS2/tables/border-conflict-element-001e-ref.xht", + "/css/CSS2/text/word-spacing-004-ref.xht", "==" ] ], {} ] ], - "border-spacing-applies-to-016.xht": [ - "0536763244237b77645937fe30e4898f1efcbfb5", + "word-spacing-043.xht": [ + "6d56c4ae080b408b9921e2e63899119b0ec4b746", [ null, [ [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", + "/css/CSS2/text/word-spacing-007-ref.xht", "==" ] ], {} ] ], - "border-spacing-percentage-001.xht": [ - "ff30ff84cd2fb0beec1713fc9b9c1fb8765a3737", + "word-spacing-044.xht": [ + "ba5650373f44cb420f929859e2a855bcd14fc6f3", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/CSS2/text/word-spacing-007-ref.xht", "==" ] ], {} ] ], - "caption-position-001.xht": [ - "788d261c74c3a6a5f185c790e756add25c3f1eb9", + "word-spacing-052.xht": [ + "97a017bf2051ed1efb28ef65e6a6d779368cc2ae", [ null, [ [ - "/css/CSS2/tables/caption-position-001-ref.xht", + "/css/CSS2/text/word-spacing-004-ref.xht", "==" ] ], {} ] ], - "caption-side-applies-to-001.xht": [ - "5aa551686b2c67bc64279347e597b3f51fe78c1e", + "word-spacing-053.xht": [ + "2224326c9bef21e8b5b9ad58c91925ec416b50ed", [ null, [ [ - "/css/CSS2/tables/caption-side-applies-to-001-ref.html", + "/css/CSS2/text/word-spacing-004-ref.xht", "==" ] ], {} ] ], - "caption-side-applies-to-002.xht": [ - "5d726017e7ec9203eb2b0904a1691d122fdfdc07", + "word-spacing-054.xht": [ + "e8d217e1567a3ffde7ec00060494c901b649c6da", [ null, [ [ - "/css/CSS2/tables/caption-side-applies-to-002-ref.html", + "/css/CSS2/text/word-spacing-004-ref.xht", "==" ] ], {} ] ], - "caption-side-applies-to-003.xht": [ - "1ab24370217ea234f23e0bc8e5e2c0793d413beb", + "word-spacing-055.xht": [ + "895882fa7fcf740fe4c38483ac5a0bab04b1c4ea", [ null, [ [ - "/css/CSS2/tables/caption-side-applies-to-003-ref.html", + "/css/CSS2/text/word-spacing-007-ref.xht", "==" ] ], {} ] ], - "caption-side-applies-to-005.xht": [ - "e48d3072f6cd9dbfc408949a9a58f5335c676103", + "word-spacing-056.xht": [ + "8d393bc97c55c7bccaa0513fced671e30faf4cbc", [ null, [ [ - "/css/CSS2/tables/caption-side-applies-to-001-ref.html", + "/css/CSS2/text/word-spacing-007-ref.xht", "==" ] ], {} ] ], - "caption-side-applies-to-006.xht": [ - "1f5a3d9bcc2290e325d88041310a951a6eac2aad", + "word-spacing-064.xht": [ + "5f60fd661811cc36af062150bda1e59318c9fab5", [ null, [ [ - "/css/CSS2/tables/caption-side-applies-to-006-ref.html", + "/css/CSS2/text/word-spacing-004-ref.xht", "==" ] ], {} ] ], - "caption-side-applies-to-007.xht": [ - "4d6a5af8490cbcad1cd05a9073a5b46400318256", + "word-spacing-065.xht": [ + "3f9a20f0301699f1d695f47c91dbe6ed259d8c3d", [ null, [ [ - "/css/CSS2/tables/caption-side-applies-to-006-ref.html", + "/css/CSS2/text/word-spacing-004-ref.xht", "==" ] ], {} ] ], - "caption-side-applies-to-008.xht": [ - "5a037a960d79315891f95970bcf72df2e1ae606e", + "word-spacing-066.xht": [ + "0f4a7bb00cb5ce4a381a9e232a8b939ff84b6f62", [ null, [ [ - "/css/CSS2/tables/caption-side-applies-to-008-ref.html", + "/css/CSS2/text/word-spacing-004-ref.xht", "==" ] ], {} ] ], - "caption-side-applies-to-009.xht": [ - "cd4061736f14efa925ae20af9b483c471b3439c1", + "word-spacing-067.xht": [ + "f2f2eda7bf8469ab0b68379b6e9d996b8baec5ba", [ null, [ [ - "/css/CSS2/tables/caption-side-applies-to-008-ref.html", + "/css/CSS2/text/word-spacing-007-ref.xht", "==" ] ], {} ] ], - "caption-side-applies-to-010.xht": [ - "bf7eda64706e6205864c76ae549ac95c64e9d083", + "word-spacing-068.xht": [ + "d8aa6b7b60ca7dde7275d6c2ad03e1dd520461aa", [ null, [ [ - "/css/CSS2/tables/caption-side-applies-to-008-ref.html", + "/css/CSS2/text/word-spacing-007-ref.xht", "==" ] ], {} ] ], - "caption-side-applies-to-011.xht": [ - "7ed7018f5902396a3601ce68cce5fb1e10a46a05", + "word-spacing-076.xht": [ + "01cfc7d5ed24786166ff35a19b13a58dcf22df35", [ null, [ [ - "/css/CSS2/tables/caption-side-applies-to-008-ref.html", + "/css/CSS2/text/word-spacing-004-ref.xht", "==" ] ], {} ] ], - "caption-side-applies-to-012.xht": [ - "88170c3757da262d2291e2a26aac37a3b7000b71", + "word-spacing-077.xht": [ + "b27a110554897e78a18259e8a179d339ffbc909e", [ null, [ [ - "/css/CSS2/tables/caption-side-applies-to-008-ref.html", + "/css/CSS2/text/word-spacing-004-ref.xht", "==" ] ], {} ] ], - "caption-side-applies-to-013.xht": [ - "fbd6b39925327fb62a6608231171a3f23d470d0d", + "word-spacing-078.xht": [ + "6d53a9b4322e20bf5c74cd06e17f5f963af3f2c2", [ null, [ [ - "/css/CSS2/tables/caption-side-applies-to-008-ref.html", + "/css/CSS2/text/word-spacing-004-ref.xht", "==" ] ], {} ] ], - "caption-side-applies-to-014.xht": [ - "300ae9887aa2a52656905870bc77e40b4f6fdd9b", + "word-spacing-079.xht": [ + "aa26d4e6a149e796c510b14e8c3aaff54c1ef095", [ null, [ [ - "/css/CSS2/tables/caption-side-applies-to-008-ref.html", + "/css/CSS2/text/word-spacing-007-ref.xht", "==" ] ], {} ] ], - "caption-side-applies-to-015.xht": [ - "60092d898202698aaedc628dc334061de70e4ac4", + "word-spacing-080.xht": [ + "9c9cedb4bc1f42c573edff99310435e7df508bcf", [ null, [ [ - "/css/CSS2/tables/caption-side-applies-to-006-ref.html", + "/css/CSS2/text/word-spacing-007-ref.xht", "==" ] ], {} ] ], - "caption-side-applies-to-016.xht": [ - "878d1e55fdeb21611430f8d08c98f20486453d35", + "word-spacing-088.xht": [ + "324ebbe1b5d81ea93eeb2c2993d76ba0af1cc08f", [ null, [ [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", + "/css/CSS2/text/word-spacing-004-ref.xht", "==" ] ], {} ] ], - "caption-side-applies-to-017.xht": [ - "e1398a8c0de2ee77567cfc75812d703dd41bfe52", + "word-spacing-089.xht": [ + "cd4e4370c8f978983f7f2a270b30bba073d0391f", [ null, [ [ - "/css/CSS2/tables/caption-side-applies-to-017-ref.html", + "/css/CSS2/text/word-spacing-004-ref.xht", "==" ] ], {} ] ], - "collapsing-border-model-001.xht": [ - "a05b71a9328badf9be3f6778c942ef7c0ef1b475", + "word-spacing-090.xht": [ + "d77ef61e0b0e059ca85626152934dc40dfc5944d", [ null, [ [ - "/css/CSS2/tables/collapsing-border-model-001-ref.html", + "/css/CSS2/text/word-spacing-004-ref.xht", "==" ] ], {} ] ], - "collapsing-border-model-003.xht": [ - "15fc22cf9f0c8c36f1d732c95df5b5249503b897", + "word-spacing-091.xht": [ + "534e3018a4646f0d81d9d53afb15056fd42fe275", [ null, [ [ - "/css/CSS2/tables/collapsing-border-model-003-ref.html", + "/css/CSS2/text/word-spacing-091-ref.xht", "==" ] ], {} ] ], - "collapsing-border-model-004.xht": [ - "5701e4b6ce26dfb77f452f471d9877a89a4933eb", + "word-spacing-092.xht": [ + "11b5e581690a06e278790019fb80e03122f0f7be", [ null, [ [ - "/css/CSS2/tables/collapsing-border-model-001-ref.html", + "/css/CSS2/text/word-spacing-091-ref.xht", "==" ] ], {} ] ], - "collapsing-border-model-007.xht": [ - "ff7fd84a448fcb94712fcc313f79002e70b09c77", + "word-spacing-097.xht": [ + "e6807d77aa25373e6877bcb7d03dcdd82ed5854b", [ null, [ [ - "/css/CSS2/tables/collapsing-border-model-001-ref.html", + "/css/CSS2/text/word-spacing-004-ref.xht", "==" ] ], {} ] ], - "collapsing-border-model-008.xht": [ - "c9ab0b231eb4f3b8ac67687e7f970ae0ea2a2343", + "word-spacing-098.xht": [ + "23b22a2406527c1c00bf2d0940296d420e7f74eb", [ null, [ [ - "/css/CSS2/tables/collapsing-border-model-001-ref.html", + "/css/CSS2/text/word-spacing-004-ref.xht", "==" ] ], {} ] ], - "collapsing-border-model-009.xht": [ - "e85671f44aa5a4f867869512da8700f8dbad315b", + "word-spacing-099.xht": [ + "160d1671d2b6c97b919d3132f683f4d3f4a4dc96", [ null, [ [ - "/css/CSS2/tables/collapsing-border-model-003-ref.html", + "/css/CSS2/text/word-spacing-004-ref.xht", "==" ] ], {} ] ], - "collapsing-border-model-010a.xht": [ - "dc3072cef69227038a7dea77fea81e3d623dcb4c", + "word-spacing-100.xht": [ + "41208d7153d33214e476738bb7dbb7e24b949660", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/text/word-spacing-004-ref.xht", "==" ] ], {} ] ], - "collapsing-border-model-010b.xht": [ - "7b341ae945d222b586f554279ce035aa1b8c94d6", + "word-spacing-101.xht": [ + "cc09cd2c45af9cdbed90eee9c5c8252b91d937d8", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/text/word-spacing-091-ref.xht", "==" ] ], {} ] ], - "column-visibility-004.xht": [ - "60d233fa9402f0b57a45f299405dacca5abc8ee6", + "word-spacing-applies-to-001.xht": [ + "1b8935ba3ec3ceadb4d70517ba12514c6d0af11a", [ null, [ [ - "/css/CSS2/tables/column-visibility-004-ref.xht", + "/css/CSS2/text/word-spacing-applies-to-001-ref.xht", "==" ] ], {} ] ], - "empty-cells-applies-to-008.xht": [ - "831b355642601b93f16dfb0566a63a700fb772de", + "word-spacing-applies-to-002.xht": [ + "905623e6cbb6ebe3b547fd2fafa026e97de0dcfe", [ null, [ [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", + "/css/CSS2/text/word-spacing-applies-to-001-ref.xht", "==" ] ], {} ] ], - "empty-cells-applies-to-009.xht": [ - "6bc744278c5f1066ccea0636dcd83e4b0abaab16", + "word-spacing-applies-to-003.xht": [ + "df82c523dae1d5bf66bbfee0acebc01c76ac0b34", [ null, [ [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", + "/css/CSS2/text/word-spacing-applies-to-003-ref.xht", "==" ] ], {} ] ], - "empty-cells-applies-to-010.xht": [ - "60b50fcde62a69dcbb4db1a417ecce015ba2e2c1", + "word-spacing-applies-to-005.xht": [ + "3d3980335a58ee4d2fd0d9a7da1dfb0f4fb8751d", [ null, [ [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", + "/css/CSS2/text/word-spacing-applies-to-001-ref.xht", "==" ] ], {} ] ], - "empty-cells-applies-to-011.xht": [ - "4ed0d3192203241e396b1b884557a18332009126", + "word-spacing-applies-to-006.xht": [ + "2391060920d111dbbb77eca6620a7feebebc0b33", [ null, [ [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", + "/css/CSS2/text/word-spacing-applies-to-001-ref.xht", "==" ] ], {} ] ], - "empty-cells-applies-to-012.xht": [ - "6df3f292ee9b16d51dad07eecde6dd1c427caa0b", + "word-spacing-applies-to-007.xht": [ + "a8780bf5de708a7494661ccb6fa2f8cf5ed7f222", [ null, [ [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", + "/css/CSS2/text/word-spacing-applies-to-007-ref.xht", "==" ] ], {} ] ], - "empty-cells-applies-to-013.xht": [ - "94e817f6c57d65643e002d7bc5324fc3e5a00341", + "word-spacing-applies-to-008.xht": [ + "f5b1f983577b34d9fa3bbf145e1a2f36bac9ee32", [ null, [ [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", + "/css/CSS2/text/word-spacing-applies-to-001-ref.xht", "==" ] ], {} ] ], - "empty-cells-applies-to-014.xht": [ - "9ef632247b9849b2a9e81485268cd7f255360a31", + "word-spacing-applies-to-009.xht": [ + "aecc99e2a3cc9a99c3b7028e3f62c085fa278668", [ null, [ [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", + "/css/CSS2/text/word-spacing-applies-to-001-ref.xht", "==" ] ], {} ] ], - "empty-cells-applies-to-016.xht": [ - "9edff8fafc13954b1a964cc811cd0a891b14be90", + "word-spacing-applies-to-010.xht": [ + "f726522e73b4a84c0947e7d1337fee1e2cd8ae1f", [ null, [ [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", + "/css/CSS2/text/word-spacing-applies-to-001-ref.xht", "==" ] ], {} ] ], - "empty-cells-applies-to-017.xht": [ - "155f47e62e52f7e1b7e135853281a8c243587ff1", + "word-spacing-applies-to-011.xht": [ + "ad9d843c75b551f41b73c4d7544caa5eb75e1482", [ null, [ [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", + "/css/CSS2/text/word-spacing-applies-to-001-ref.xht", "==" ] ], {} ] ], - "fixed-table-layout-002a.xht": [ - "ddab625d141993160c38879b07ab36e3b3b2a084", + "word-spacing-applies-to-012.xht": [ + "2bc77c239dd07781ac69e429d06d4031e1673677", [ null, [ [ - "/css/CSS2/tables/fixed-table-layout-002a-ref.xht", + "/css/CSS2/text/word-spacing-applies-to-012-ref.xht", "==" ] ], {} ] ], - "fixed-table-layout-003a01.xht": [ - "08a82ba78f526e3f9c31a2d0d61fc3b6e2509da2", + "word-spacing-applies-to-013.xht": [ + "628c51633539f33fe56dc98208a31f5544adba6a", [ null, [ [ - "/css/CSS2/tables/fixed-table-layout-003a01-ref.xht", + "/css/CSS2/text/word-spacing-applies-to-012-ref.xht", "==" ] ], {} ] ], - "fixed-table-layout-003a02.xht": [ - "135deaa08a2a06e980ac347dc6a156f002b0fada", + "word-spacing-applies-to-014.xht": [ + "0fe3c6217fc178ffee9868a56bc7027d55df4618", [ null, [ [ - "/css/CSS2/tables/fixed-table-layout-003a02-ref.xht", + "/css/CSS2/text/word-spacing-applies-to-001-ref.xht", "==" ] ], {} ] ], - "fixed-table-layout-003a03.xht": [ - "26d964fc75e27ac010cc4ea9dfa988cb49867461", + "word-spacing-applies-to-015.xht": [ + "c81aa5a99a77190d9762c926a65a68f896546c86", [ null, [ [ - "/css/CSS2/tables/fixed-table-layout-003a01-ref.xht", + "/css/CSS2/text/word-spacing-applies-to-001-ref.xht", "==" ] ], {} ] ], - "fixed-table-layout-003a04.xht": [ - "7f577de366688d837addf2fa414c02b7d6f4041a", + "word-spacing-characters-001.xht": [ + "8fc41a9a0ae203804d46c49586b6857e1b6cec9c", [ null, [ [ - "/css/CSS2/tables/fixed-table-layout-003a02-ref.xht", + "/css/CSS2/text/word-spacing-characters-001-ref.xht", "==" ] ], {} ] ], - "fixed-table-layout-003a05.xht": [ - "a114b4e039088803208cc71949310b809e44aa00", + "word-spacing-characters-002.xht": [ + "1f2578c29ba72322583d1fa0668a84366b4f7b0b", [ null, [ [ - "/css/CSS2/tables/fixed-table-layout-003a01-ref.xht", + "/css/CSS2/text/word-spacing-characters-002-ref.xht", "==" ] ], {} ] ], - "fixed-table-layout-003a06.xht": [ - "628ad8818e02b7b002c9175a3ad731a2ea06a0a4", + "word-spacing-characters-003.xht": [ + "a5119af6cabf613e38dcf5508393f4add6cef939", [ null, [ [ - "/css/CSS2/tables/fixed-table-layout-003a02-ref.xht", + "/css/CSS2/text/word-spacing-characters-003-ref.xht", "==" ] ], {} ] ], - "fixed-table-layout-003b01.xht": [ - "d2380d287266f8fc6de238a51a939114d2a8e7d0", + "word-spacing-justify-001.xht": [ + "17d811de98fe191295a3fd3fd103b4e0e575fcf2", [ null, [ [ - "/css/CSS2/tables/fixed-table-layout-003b01-ref.xht", + "/css/CSS2/text/word-spacing-justify-001-ref.xht", "==" ] ], {} ] ], - "fixed-table-layout-003b02.xht": [ - "624ac496b5746469825d8b11ec74e47be0549536", + "word-spacing-remove-space-001.xht": [ + "0f28e33f6486d11ce6dec2fbcc51259342c61889", [ null, [ [ - "/css/CSS2/tables/fixed-table-layout-003b02-ref.xht", + "/css/CSS2/text/word-spacing-remove-space-001-ref.xht", "==" ] ], {} ] ], - "fixed-table-layout-003b03.xht": [ - "281191b2a12ac5123192dbc954a50ea3dd4be470", + "word-spacing-remove-space-002.xht": [ + "990b98eca8b1298309ecbb50b9e89e321fb29a80", [ null, [ [ - "/css/CSS2/tables/fixed-table-layout-003b01-ref.xht", + "/css/CSS2/text/word-spacing-remove-space-002-ref.xht", "==" ] ], {} ] ], - "fixed-table-layout-003b04.xht": [ - "275bad19d86d1aee0b42c5bbdf09da11fe841b3c", + "word-spacing-remove-space-003.xht": [ + "9655c134ebd6438f1ac16e1f546586a679382f1d", [ null, [ [ - "/css/CSS2/tables/fixed-table-layout-003b02-ref.xht", + "/css/CSS2/text/word-spacing-remove-space-003-ref.xht", "==" ] ], {} ] ], - "fixed-table-layout-003b05.xht": [ - "f8cc775674b7ca364b338b6f7e34a83f868cab66", + "word-spacing-remove-space-004.xht": [ + "5aa54a681016f430efdc11db8dc51ce68da9687c", [ null, [ [ - "/css/CSS2/tables/fixed-table-layout-003b01-ref.xht", + "/css/CSS2/text/word-spacing-remove-space-004-ref.xht", "==" ] ], {} ] ], - "fixed-table-layout-003b06.xht": [ - "5466743f4abce2edc90541819e48c254ba4de5c8", + "word-spacing-remove-space-005.xht": [ + "daaa40fb2c639089b673f4092f81778fde4afe86", [ null, [ [ - "/css/CSS2/tables/fixed-table-layout-003b02-ref.xht", + "/css/CSS2/text/word-spacing-remove-space-005-ref.xht", "==" ] ], {} ] ], - "fixed-table-layout-003b07.xht": [ - "aeb12b6a8bed7d300759cd23e4a34280c73c4944", + "word-spacing-remove-space-006.xht": [ + "d3b2936770f7d014b66a9f5c7ddb06bf84e4e0ba", [ null, [ [ - "/css/CSS2/tables/fixed-table-layout-003b07-ref.xht", + "/css/CSS2/text/word-spacing-remove-space-006-ref.xht", "==" ] ], {} ] - ], - "fixed-table-layout-003b08.xht": [ - "5ca06870b3f0cc0e8fd149b34810e4017de9650d", + ] + }, + "ui": { + "outline-applies-to-005.xht": [ + "d77dc0c801ab96de019aa838f5525f92f3f3b0b5", [ null, [ [ - "/css/CSS2/tables/fixed-table-layout-003b08-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "fixed-table-layout-003b09.xht": [ - "286e36c9e9db2268916ef03cfad4d16a365e37da", + "outline-applies-to-006.xht": [ + "3c5ec5b43dcd3eeae85c989b81391134be92e8b4", [ null, [ [ - "/css/CSS2/tables/fixed-table-layout-003b09-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "fixed-table-layout-003b10.xht": [ - "27ee5d0f16f11eee0390121b0e476d0567e76f77", + "outline-applies-to-016.xht": [ + "a52bdaca62d9e526abe63a434c05b461ca1a23e6", [ null, [ [ - "/css/CSS2/tables/fixed-table-layout-003b10-ref.xht", + "/css/CSS2/ui/outline-applies-to-016-ref.xht", "==" ] ], {} ] ], - "fixed-table-layout-003b11.xht": [ - "a541c1e8f04733ae46c3036df8bc201e1040ed86", + "outline-applies-to-017.xht": [ + "a7311044c894d06a2b59118cdc86aeaaf433b5d4", [ null, [ [ - "/css/CSS2/tables/fixed-table-layout-003b11-ref.xht", + "/css/CSS2/ui/outline-applies-to-016-ref.xht", "==" ] ], {} ] ], - "fixed-table-layout-003b12.xht": [ - "bdb6307cb01873b145a702f6b6fa6989c85ec8b0", + "outline-color-applies-to-005.xht": [ + "6d053bac24727fbf73936a4165cfcae2aa5f2c14", [ null, [ [ - "/css/CSS2/tables/fixed-table-layout-003b12-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "fixed-table-layout-003c01.xht": [ - "498006acac7cf907b917effc6ddd8d57d57f19ad", + "outline-color-applies-to-006.xht": [ + "23bfe88009034e90bcfffc3bd6ad41ba5d5e88a8", [ null, [ [ - "/css/CSS2/tables/fixed-table-layout-003c01-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "fixed-table-layout-003c02.xht": [ - "64b4cbdbcb9ea7b809ed9d809cf892bbcb2a0270", + "outline-style-001.xht": [ + "a6a1240b146bbdc43cbfe5d3ac0243b2af1a7082", [ null, [ [ - "/css/CSS2/tables/fixed-table-layout-003c02-ref.xht", + "/css/CSS2/reference/no-red-filler-text-ref.xht", "==" ] ], {} ] ], - "fixed-table-layout-003c03.xht": [ - "294b2c756ad87d757c9c7f5d25bbfb451eadc449", + "outline-style-applies-to-005.xht": [ + "84af45a8caf56aca7077ff6838b7a55c478a5118", [ null, [ [ - "/css/CSS2/tables/fixed-table-layout-003c03-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "fixed-table-layout-003c04.xht": [ - "9c1c4abf09df9af879685b4bf15e5a9a08d00e73", + "outline-style-applies-to-006.xht": [ + "38c8a44efba6a416ceb57a9dfa17469e31f0ec03", [ null, [ [ - "/css/CSS2/tables/fixed-table-layout-003c04-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "fixed-table-layout-003c05.xht": [ - "c3e4e2c79632ca202f49f9ae7ebe3cbf97ab89d3", + "outline-width-002.xht": [ + "2e7cc76b4aeadc1a83ecea486fccb1d2ccf183b0", [ null, [ [ - "/css/CSS2/tables/fixed-table-layout-003c05-ref.xht", + "/css/CSS2/reference/no-red-filler-text-ref.xht", "==" ] ], {} ] ], - "fixed-table-layout-003c06.xht": [ - "fa05da69563da8135f810a234330a4628001ffe5", + "outline-width-004.xht": [ + "f78faf2d23719329e57f2cf542858d7f0d0b94d6", [ null, [ [ - "/css/CSS2/tables/fixed-table-layout-003c06-ref.xht", + "/css/CSS2/reference/no-red-filler-text-ref.xht", "==" ] ], {} ] ], - "fixed-table-layout-003c07.xht": [ - "a3034ade4fa96afd925685d97e9e968557e1ab1b", + "outline-width-005.xht": [ + "c1c09e19f93c9f99ba0145c341cbb1867de38f1c", [ null, [ [ - "/css/CSS2/tables/fixed-table-layout-003c07-ref.xht", + "/css/CSS2/reference/no-red-filler-text-ref.xht", "==" ] ], {} ] ], - "fixed-table-layout-003c08.xht": [ - "2193e3faa5d4298eaa6987f632277148ea2148b0", + "outline-width-013.xht": [ + "3298349c9ee28917ed12e596c6f69021a9bcd06b", [ null, [ [ - "/css/CSS2/tables/fixed-table-layout-003c08-ref.xht", + "/css/CSS2/reference/no-red-filler-text-ref.xht", "==" ] ], {} ] ], - "fixed-table-layout-003d01.xht": [ - "ae1a6549dc601c5da6e212404827be8e73487bb1", + "outline-width-015.xht": [ + "34f212ca6a83ad631b1868052377f01ca221d94a", [ null, [ [ - "/css/CSS2/tables/fixed-table-layout-003d01-ref.xht", + "/css/CSS2/reference/no-red-filler-text-ref.xht", "==" ] ], {} ] ], - "fixed-table-layout-003d02.xht": [ - "e0920acb71b0555576d5efcaff15b4ac620322a7", + "outline-width-016.xht": [ + "e808cc7195c291f1fda645d266bee9d0c9963cb9", [ null, [ [ - "/css/CSS2/tables/fixed-table-layout-003d02-ref.xht", + "/css/CSS2/reference/no-red-filler-text-ref.xht", "==" ] ], {} ] ], - "fixed-table-layout-003d03.xht": [ - "fa41b658e140cbe6f72e579a80437a69bb6a589f", + "outline-width-024.xht": [ + "754896b6a0bbdd1b5f6466d0087476dc2a095638", [ null, [ [ - "/css/CSS2/tables/fixed-table-layout-003d01-ref.xht", + "/css/CSS2/reference/no-red-filler-text-ref.xht", "==" ] ], {} ] ], - "fixed-table-layout-003d04.xht": [ - "9549cca33d065fc20d7df7380c581156fd7c7dbf", + "outline-width-026.xht": [ + "f17607f92fa59a588aa3c1caaa3667c64124b384", [ null, [ [ - "/css/CSS2/tables/fixed-table-layout-003d02-ref.xht", + "/css/CSS2/reference/no-red-filler-text-ref.xht", "==" ] ], {} ] ], - "fixed-table-layout-003d05.xht": [ - "8606cddfb1c9649ceaa279fdcd7d595f68afade9", + "outline-width-027.xht": [ + "2d1f5ec2b3c33fd55d3f9f2b91c2adee1be6a8fd", [ null, [ [ - "/css/CSS2/tables/fixed-table-layout-003d01-ref.xht", + "/css/CSS2/reference/no-red-filler-text-ref.xht", "==" ] ], {} ] ], - "fixed-table-layout-003d06.xht": [ - "c9b51be80d5134498907c67c02e9fe9aee7b87a0", + "outline-width-035.xht": [ + "7fea174217a1ddc42a3b1c524052ac0221120118", [ null, [ [ - "/css/CSS2/tables/fixed-table-layout-003d02-ref.xht", + "/css/CSS2/reference/no-red-filler-text-ref.xht", "==" ] ], {} ] ], - "fixed-table-layout-003e01.xht": [ - "f4572c52388896b2b0a0cf3476667113fd25171f", + "outline-width-037.xht": [ + "71a78515c73c97db5b0b6c1911207427504c9dfb", [ null, [ [ - "/css/CSS2/tables/fixed-table-layout-003e01-ref.xht", + "/css/CSS2/reference/no-red-filler-text-ref.xht", "==" ] ], {} ] ], - "fixed-table-layout-003e02.xht": [ - "af7c742e35cb4865d2135e1cbbc69f96f55a2d01", + "outline-width-038.xht": [ + "b9c22b1f8637924ea63adbee09eb84c5a1a1566c", [ null, [ [ - "/css/CSS2/tables/fixed-table-layout-003e02-ref.xht", + "/css/CSS2/reference/no-red-filler-text-ref.xht", "==" ] ], {} ] ], - "fixed-table-layout-003e03.xht": [ - "62839c56d8f5df120371288a9a50bceebb571d08", + "outline-width-046.xht": [ + "12216bdc073775c4e48132a349830d8cd8dfd074", [ null, [ [ - "/css/CSS2/tables/fixed-table-layout-003e01-ref.xht", + "/css/CSS2/reference/no-red-filler-text-ref.xht", "==" ] ], {} ] ], - "fixed-table-layout-003e04.xht": [ - "948d38433b487b3ce2fd7302586d053406b5f671", + "outline-width-048.xht": [ + "1b8294be3c9d2c8d6b2c1d0565fb11020b697939", [ null, [ [ - "/css/CSS2/tables/fixed-table-layout-003e02-ref.xht", + "/css/CSS2/reference/no-red-filler-text-ref.xht", "==" ] ], {} ] ], - "fixed-table-layout-003e05.xht": [ - "5a8674be998ee014f13534e2d4a65e9131777250", + "outline-width-049.xht": [ + "ddfedd553d1c4dad7fc31905e9ec741f8d907270", [ null, [ [ - "/css/CSS2/tables/fixed-table-layout-003e01-ref.xht", + "/css/CSS2/reference/no-red-filler-text-ref.xht", "==" ] ], {} ] ], - "fixed-table-layout-003e06.xht": [ - "ced7998835d8a2f0929958b16f955980dabdbae4", + "outline-width-057.xht": [ + "debedf8d7c3ea6faa0e27fead1df5bae307878e3", [ null, [ [ - "/css/CSS2/tables/fixed-table-layout-003e02-ref.xht", + "/css/CSS2/reference/no-red-filler-text-ref.xht", "==" ] ], {} ] ], - "fixed-table-layout-003e07.xht": [ - "11a7ea49cda6b6945ae9fe542da4ce04cdb800c4", + "outline-width-059.xht": [ + "e10834998661c11663577e0f3bdf72b366971eb0", [ null, [ [ - "/css/CSS2/tables/fixed-table-layout-003e07-ref.xht", + "/css/CSS2/reference/no-red-filler-text-ref.xht", "==" ] ], {} ] ], - "fixed-table-layout-003e08.xht": [ - "30c7faa3c51ead19fde576be63a89ffc53baa1e0", + "outline-width-060.xht": [ + "f3309a52aac62da4bf57a56d9feaa4cb39b71000", [ null, [ [ - "/css/CSS2/tables/fixed-table-layout-003e08-ref.xht", + "/css/CSS2/reference/no-red-filler-text-ref.xht", "==" ] ], {} ] ], - "fixed-table-layout-003e09.xht": [ - "906fcb226bc73ee7916f292bbed2010a0c7776dc", + "outline-width-068.xht": [ + "99b497cc05e2cc076933e47e7f99cd3719b3f7d8", [ null, [ [ - "/css/CSS2/tables/fixed-table-layout-003e09-ref.xht", + "/css/CSS2/reference/no-red-filler-text-ref.xht", "==" ] ], {} ] ], - "fixed-table-layout-003e10.xht": [ - "fa6a9e20d45f1b94c06127c1689b74fbfe73e818", + "outline-width-070.xht": [ + "5f476961fe1d666631576d3dac05141a5f944ae3", [ null, [ [ - "/css/CSS2/tables/fixed-table-layout-003e10-ref.xht", + "/css/CSS2/reference/no-red-filler-text-ref.xht", "==" ] ], {} ] ], - "fixed-table-layout-003e11.xht": [ - "9324c04ebe6ffab7ea695ed2b01eeb21be8af55a", + "outline-width-071.xht": [ + "4fd5bd3195108c75a8104410ebeab7f35436ec2a", [ null, [ [ - "/css/CSS2/tables/fixed-table-layout-003e11-ref.xht", + "/css/CSS2/reference/no-red-filler-text-ref.xht", "==" ] ], {} ] ], - "fixed-table-layout-003e12.xht": [ - "fc2ffaf98aad9350c869ae2cb9bef6c7845f4760", + "outline-width-079.xht": [ + "772bb03a895b2bbfb9fe1c504e14222b422e8bd2", [ null, [ [ - "/css/CSS2/tables/fixed-table-layout-003e12-ref.xht", + "/css/CSS2/reference/no-red-filler-text-ref.xht", "==" ] ], {} ] ], - "fixed-table-layout-003f01.xht": [ - "275e8645c0b0c8eefb956ad8509ae7c8a63b3007", + "outline-width-081.xht": [ + "0cc50017363c5e9913e9010c6607da942067fc57", [ null, [ [ - "/css/CSS2/tables/fixed-table-layout-003f01-ref.xht", + "/css/CSS2/reference/no-red-filler-text-ref.xht", "==" ] ], {} ] ], - "fixed-table-layout-003f02.xht": [ - "c8d885ce836dcde11ee739cbd34146287aa1208d", + "outline-width-082.xht": [ + "e8090475088782572b09f5f91e54ddb6441fed2b", [ null, [ [ - "/css/CSS2/tables/fixed-table-layout-003f02-ref.xht", + "/css/CSS2/reference/no-red-filler-text-ref.xht", "==" ] ], {} ] ], - "fixed-table-layout-003f03.xht": [ - "5493250e752c358627d36bbab3ccca0e4f620747", + "outline-width-089.xht": [ + "2d412fae775f593abb6e6e4b01fa030610efcc89", [ null, [ [ - "/css/CSS2/tables/fixed-table-layout-003f03-ref.xht", + "/css/CSS2/reference/no-red-filler-text-ref.xht", "==" ] ], {} ] ], - "fixed-table-layout-003f04.xht": [ - "f53e7b7128dd5f014c3b50fb2a61094a80668fa0", + "outline-width-090.xht": [ + "da4a109a6082b8c83be1a2510a11aa9bdc4e0737", [ null, [ [ - "/css/CSS2/tables/fixed-table-layout-003f04-ref.xht", + "/css/CSS2/reference/no-red-filler-text-ref.xht", "==" ] ], {} ] ], - "fixed-table-layout-003f05.xht": [ - "dcaea8d05e6a6fe91dafea2222d36fcec47ed120", + "outline-width-091.xht": [ + "35fd16a7357ec2ea430ee15df5bb2b88331c1fc3", [ null, [ [ - "/css/CSS2/tables/fixed-table-layout-003f05-ref.xht", + "/css/CSS2/reference/no-red-filler-text-ref.xht", "==" ] ], {} ] ], - "fixed-table-layout-003f06.xht": [ - "339d321dd1b8ee0dd6185d3fefd4c10b93e0f400", + "outline-width-096.xht": [ + "8e56ad1f85a207f553d39dc6d3713593610cd137", [ null, [ [ - "/css/CSS2/tables/fixed-table-layout-003f06-ref.xht", + "/css/CSS2/ui/outline-width-096-ref.xht", "==" ] ], {} ] ], - "fixed-table-layout-003f07.xht": [ - "d922b876d7b76e07d2670afb4da2a75c75d7b18b", + "outline-width-applies-to-005.xht": [ + "72d0453e34f957cb2c93fb5e6fa618c57ca388ce", [ null, [ [ - "/css/CSS2/tables/fixed-table-layout-003f07-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "fixed-table-layout-003f08.xht": [ - "f03c2a3779b75f40e7a92d4cbab0cdb5a2fe159f", + "outline-width-applies-to-006.xht": [ + "baa6d36016779c23c4e5e85273037e531a675a7f", [ null, [ [ - "/css/CSS2/tables/fixed-table-layout-003f08-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "fixed-table-layout-017.xht": [ - "7d90ad98ac8b09c57bbd174f2f622d99874ab101", + "overflow-applies-to-001.xht": [ + "55644ba4083914dee4eb73ee70a411227508201f", [ null, [ [ - "/css/CSS2/tables/fixed-table-layout-017-ref.xht", + "/css/CSS2/ui/overflow-applies-to-001-ref.xht", "==" ] ], {} ] ], - "fixed-table-layout-018.xht": [ - "6f40eb9a5d3bb82b0e81ffd0e5f7953e8e0696d5", + "overflow-applies-to-002.xht": [ + "7a2d90a3f89d0f34720522a5e1f741c5c29b8502", [ null, [ [ - "/css/CSS2/tables/fixed-table-layout-017-ref.xht", + "/css/CSS2/ui/overflow-applies-to-001-ref.xht", "==" ] ], {} ] ], - "fixed-table-layout-019.xht": [ - "d6baab8671d641a69d2d0c9eef9a98c80bfada7d", + "overflow-applies-to-003.xht": [ + "a5fff97ea2ae0b23c79c60c7f7d6c90a508ef970", [ null, [ [ - "/css/CSS2/tables/fixed-table-layout-017-ref.xht", + "/css/CSS2/ui/overflow-applies-to-001-ref.xht", "==" ] ], {} ] ], - "fixed-table-layout-020.xht": [ - "85c1603e50db2f4afb264047888bb2d9e57e80bb", + "overflow-applies-to-004.xht": [ + "ed0eb73f97e6978f6cc6578a3c17be5e7c6781d8", [ null, [ [ - "/css/CSS2/tables/fixed-table-layout-017-ref.xht", + "/css/CSS2/ui/overflow-applies-to-001-ref.xht", "==" ] ], {} ] ], - "fixed-table-layout-021.xht": [ - "81d30d9a8e7d0cfcfc83fac3086298f7f80e616a", + "overflow-applies-to-005.xht": [ + "5b2e86b964d88e62a8f4b681f00f5d8e0407a1cf", [ null, [ [ - "/css/CSS2/tables/fixed-table-layout-021-ref.xht", + "/css/CSS2/ui/overflow-applies-to-001-ref.xht", "==" ] ], {} ] ], - "fixed-table-layout-022.xht": [ - "ae9abb6dda19246363435d27b0ce35019d849494", + "overflow-applies-to-006.xht": [ + "af5df410094523d9144297a80ab69fccd2dcf072", [ null, [ [ - "/css/CSS2/tables/fixed-table-layout-022-ref.xht", + "/css/CSS2/ui/overflow-applies-to-001-ref.xht", "==" ] ], {} ] ], - "fixed-table-layout-023.xht": [ - "127528b2e9cf5a2a73a3e656c87ef63b9475ca39", + "overflow-applies-to-007.xht": [ + "8b8c0a81858960d0062b9183a598235cfae3be73", [ null, [ [ - "/css/CSS2/tables/fixed-table-layout-023-ref.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "fixed-table-layout-025.xht": [ - "3424672703d10d10193430cb566e31536ad7c4f2", + "overflow-applies-to-008.xht": [ + "65b765fe82cd4e1ca059748cbd41b5cc69424c43", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/ui/overflow-applies-to-001-ref.xht", "==" ] ], {} ] ], - "fixed-table-layout-026.xht": [ - "a69836da3cb7c0f0743dae3ef1fa692b779992dd", + "overflow-applies-to-009.xht": [ + "5867a68b7a574334d28b8850e0ddb47301ab6c61", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "fixed-table-layout-027.xht": [ - "91f5934e7757e11f7b0d17aa4736e2772d973566", + "overflow-applies-to-012.xht": [ + "f7ad7540ced4a9fb12e695b2da37ad61fe5ac6c7", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "fixed-table-layout-028.xht": [ - "b04473d6bfdf5d69b7b8b79be4195986ab7ab4e6", + "overflow-applies-to-013.xht": [ + "8dc2c8e84f77789c8c186b921d6c79c97c3c18da", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "fixed-table-layout-029.xht": [ - "6ad7dc5f6876823dde9e5d8542866e4fcb7d108b", + "overflow-applies-to-014.xht": [ + "bcbf5ac474673e8c6c6f561f9772cb9e136f8301", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "fixed-table-layout-030.xht": [ - "ce83603148cad15bb918fe5949412174fe0ab7df", + "overflow-applies-to-015.xht": [ + "44d20443d4b71404bc2e44a5d44742a4ac75129f", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] - ], - "fixed-table-layout-031.xht": [ - "3c877a9e7e10b646bac232a9498b762a180c38f6", + ] + }, + "values": { + "numbers-units-001.xht": [ + "dae3fa6df3738395a6ecf16c63d8e97028a44401", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "height-table-cell-001.xht": [ - "73a3d5f8a338c7af885447abc2331ed8634c6f3f", + "numbers-units-003.xht": [ + "57600a7c70b4cbdab11b1565891808315db9a2ed", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "height-width-inline-table-001.xht": [ - "99d085137dead683bb5be1c45c414f25df8cb64f", + "numbers-units-004.xht": [ + "1ce19808ad1e21f45914af930990c66533629fe2", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "height-width-inline-table-001a.xht": [ - "ee5abc5eefae547ec9a47266a820fce76988c96e", + "numbers-units-005.xht": [ + "a5daced856f1aa9948687c8f4f6504f6cb3badc2", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "height-width-inline-table-001b.xht": [ - "bddca2bc7b11c5ad4650d66a4f3aef6c56ff78b0", + "numbers-units-006.xht": [ + "24fd36e0ad964b92825d273a9be7e667cd3c3421", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/reference/ref-filled-black-96px-square.xht", "==" ] ], {} ] ], - "height-width-inline-table-001c.xht": [ - "a4e39d2e835a8cc24d825b1fa974d8dd180eb96f", + "numbers-units-007.xht": [ + "b70cb36ca6de5fce5b499124a8173bc9c71bfc2e", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/values/numbers-units-007-ref.xht", "==" ] ], {} ] ], - "height-width-inline-table-001d.xht": [ - "e25f18f76dda54f2c56c54982a1f679c95600831", + "numbers-units-009.xht": [ + "78882eba4b0079d0361a1682e86b1c9ba770b805", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/values/numbers-units-009-ref.xht", "==" ] ], {} ] ], - "height-width-inline-table-001e.xht": [ - "17e3e38394b4f57eba9710cadd12d7b4327d5eee", + "numbers-units-010.xht": [ + "03b0b71aead9395f4e41d8a114e39d2cbfc1de1f", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/values/numbers-units-010-ref.xht", "==" ] ], {} ] ], - "height-width-table-001.xht": [ - "14321e4d7dc462c2704f2a53dc846beca86f3a83", + "numbers-units-011.xht": [ + "e1edfea9e11ec9c4f8b3152ff3637169e21f0227", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/values/numbers-units-011-ref.xht", "==" ] ], {} ] ], - "height-width-table-001a.xht": [ - "83233e294aad9ddc63bd62830705301e02a79f29", + "numbers-units-012.xht": [ + "f24e528c5b3ac1ffe8ea9e566d2c7690d99b8088", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/values/numbers-units-012-ref.xht", "==" ] ], {} ] ], - "height-width-table-001b.xht": [ - "c8f4effa2fd3ca89dc00aefeb9343711ee14c60e", + "numbers-units-013.xht": [ + "ac42ede11973ad7d72424ec167ea468500bc8058", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/values/numbers-units-013-ref.xht", "==" ] ], {} ] ], - "height-width-table-001c.xht": [ - "7c163420d92fa93e3b71ac778bc924f0e12f3e18", + "numbers-units-015.xht": [ + "d79cce58900bb2fdb36a9e5758f62a2bbd2ae760", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/values/numbers-units-015-ref-a.xht", "==" - ] - ], - {} - ] - ], - "height-width-table-001d.xht": [ - "8dbc7a097b8526b70ee5df885b58516b3393b3f4", - [ - null, - [ + ], [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/values/numbers-units-015-ref-b.xht", "==" ] ], {} ] ], - "height-width-table-001e.xht": [ - "76c8dbdf4d806aa4ce1befd008ed1941d5356aa0", + "numbers-units-016.xht": [ + "97b0af586845bd75f1311f8cb758bab2e5f4cba3", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "padding-applies-to-013a.xht": [ - "5f440f0b034061411cda6a15990b1df7231eb2e6", + "numbers-units-017.xht": [ + "3ee11a790f2e56f2c9753b023f76eb459c5dd2b9", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "row-visibility-001.xht": [ - "50f17a5567c03efbf3671e525f82b771c0da12ab", + "numbers-units-018.xht": [ + "a5c6f76fa30649c5b19aaec70cc0b46b0abded9d", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/values/numbers-units-018-ref.xht", "==" ] ], {} ] ], - "row-visibility-002.xht": [ - "c481db0b43c3723120ff481171c8cd945f5b7308", + "numbers-units-019.xht": [ + "205e3b639251454fa6528b848dfac8c43d0a9684", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/values/numbers-units-019-ref.xht", "==" ] ], {} ] ], - "separated-border-model-003a.xht": [ - "f0fed037167d13b837d900f3fe3cf778e2c55602", + "numbers-units-021.xht": [ + "7f3e20aad9ad3d55d3cd0aab60966262251f9f6e", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/values/numbers-units-021-ref.xht", "==" ] ], {} ] ], - "separated-border-model-003b.xht": [ - "36be8c21f1edeb4a972995709ae3c48e7fef1e68", + "units-001.xht": [ + "a3e08e45437f01ce1152ec1ac1295a00ff2bc551", [ null, [ [ - "/css/CSS2/tables/separated-border-model-003b-ref.xht", + "/css/CSS2/values/units-001-ref.xht", "==" ] ], {} ] ], - "separated-border-model-004a.xht": [ - "10b6075afcb85f3a88aab1631d634895d8657e73", + "units-002.xht": [ + "8fd7b0bd5ebb575780dd5ebd688be867d2f98abf", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/values/units-002-ref.xht", "==" ] ], {} ] ], - "separated-border-model-004b.xht": [ - "9238d82b98efe9cfa82c1f3d063b70c25493afd8", + "units-003.xht": [ + "df6b1ab71ebd9dba4937447d242f7bd7cc7dad07", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/values/units-003-ref.xht", "==" ] ], {} ] ], - "separated-border-model-004c.xht": [ - "6f18ec0723f262b0f42da74c420dbff2355b5827", + "units-004.xht": [ + "a0e474e0aef072a075bdd9c185f6f87846620403", [ null, [ [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", + "/css/CSS2/values/units-004-ref.xht", "==" ] ], {} ] ], - "separated-border-model-004d.xht": [ - "7269e1f97d871fd544f0ac382910cb56056f6c27", + "units-005.xht": [ + "052b7e331920195fdf758f346a3d03bbd3b8b3b1", [ null, [ [ - "/css/CSS2/tables/separated-border-model-004d-ref.xht", + "/css/CSS2/values/units-005-ref.xht", "==" ] ], {} ] ], - "separated-border-model-004e.xht": [ - "6fc350f65101482ffa3f5ad1c09a6bbffd4b375b", + "units-006.xht": [ + "12713a15048a17fb59b64c2f6e7829081c412ba7", [ null, [ [ - "/css/CSS2/tables/separated-border-model-004e-ref.xht", + "/css/CSS2/values/units-006-ref.xht", "==" ] ], {} ] ], - "separated-border-model-007.xht": [ - "8b22c8cd2e27947612bb19abd837592a70006050", + "units-008.xht": [ + "3510f4dfcaac9d443bab9e10bbf9be8266a66fc7", [ null, [ [ - "/css/CSS2/tables/separated-border-model-007-ref.xht", + "/css/CSS2/values/units-006-ref.xht", "==" ] ], {} ] ], - "separated-border-model-008.xht": [ - "4149c7a998484c855b2d19f854d05a4cf97a5da0", + "units-009.xht": [ + "982fc96f44a023a551d42030387be4b20b531d94", [ null, [ [ - "/css/CSS2/tables/separated-border-model-007-ref.xht", + "/css/CSS2/values/units-006-ref.xht", "==" ] ], {} ] - ], - "separated-border-model-009.xht": [ - "40471be0ad5887da264717383417e8e201c3d2c3", + ] + }, + "visudet": { + "content-height-001.html": [ + "d4aaaa929ca4d846cc44b8888d72e89060682459", [ null, [ [ - "/css/CSS2/tables/separated-border-model-007-ref.xht", + "/css/CSS2/visudet/reference/content-height-001-ref.html", "==" ] ], {} ] ], - "table-anonymous-border-spacing.xht": [ - "d2c1bf8bd2489919fa82cdbe45c01997eeca0095", + "content-height-002.html": [ + "038775b686bb0538be199bd3502db8748be65540", [ null, [ [ - "/css/CSS2/tables/reference/table-anonymous-border-spacing-ref.xht", + "/css/CSS2/visudet/reference/content-height-002-ref.html", "==" ] ], {} ] ], - "table-anonymous-objects-009.xht": [ - "5178e9a040d423755cb130805035d281b2b1a942", + "content-height-003.html": [ + "f0b09741b5b7d3ff19392c2cfaeccec6155a0db6", [ null, [ [ - "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", + "/css/CSS2/visudet/reference/content-height-003-ref.html", "==" ] ], {} ] ], - "table-anonymous-objects-010.xht": [ - "0baba6421cc43e3f7c672bbf9ef16d14d0ca27e3", + "content-height-004.html": [ + "d18c8569735a8dfe41d278037591267213b7ca49", [ null, [ [ - "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", + "/css/CSS2/visudet/reference/content-height-004-ref.html", "==" ] ], {} ] ], - "table-anonymous-objects-011.xht": [ - "ca97ffc54a0a4de362d481ea8751338f73f8847f", + "content-height-005.html": [ + "1b84ca764932bef8e0e14309497cde220854c492", [ null, [ [ - "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", - "==" + "/css/CSS2/visudet/reference/content-height-005-ref.html", + "!=" ] ], {} ] ], - "table-anonymous-objects-012.xht": [ - "6438ae63a4c240b5047fe173a704333a6fcd95d8", + "height-applies-to-010a.xht": [ + "8339c008f9714453cff3db200f70dca39604b2cf", [ null, [ [ - "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", + "/css/CSS2/visudet/height-applies-to-010a-ref.xht", "==" ] ], {} ] ], - "table-anonymous-objects-015.xht": [ - "3e6ffa2f7e9de10a9a2bb171aff500409617ef7e", + "height-computed-001.xht": [ + "862bfed68b12dcdf534b62a8f285cb56f5770f59", [ null, [ [ - "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", + "/css/CSS2/visudet/height-computed-001-ref.xht", "==" ] ], {} ] ], - "table-anonymous-objects-016.xht": [ - "2ad45ecde17dfde4661e011d7cf9d2c92173f37e", + "height-computed-002.xht": [ + "f703335df2c7579e743c3200239431ad4165f137", [ null, [ [ - "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", + "/css/CSS2/visudet/height-computed-002-ref.xht", "==" ] ], {} ] ], - "table-anonymous-objects-017.xht": [ - "769f3659f32ff02d69bbf2110536f9a25aad848c", + "height-percentage-003a.xht": [ + "f394e899549c7ca9686c56ae679f1f7366c0c08b", [ null, [ [ - "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", + "/css/CSS2/visudet/height-percentage-003a-ref.xht", "==" ] ], {} ] ], - "table-anonymous-objects-018.xht": [ - "b864ee6f170680736be628f74fd67d4e078eeaf3", + "height-percentage-004.xht": [ + "51f58511d831bf699f5cf68d4ef5f49166dd25a6", [ null, [ [ - "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", + "/css/CSS2/visudet/height-percentage-004-ref.xht", "==" ] ], {} ] ], - "table-anonymous-objects-019.xht": [ - "3be83500c8c22cbfede5e9cbd38f81fba685aad8", + "inline-block-baseline-001.xht": [ + "82a2493c178cb2b4fc78460ffbdd532c3853a56f", [ null, [ [ - "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", + "/css/CSS2/visudet/inline-block-baseline-001-ref.xht", "==" ] ], {} ] ], - "table-anonymous-objects-020.xht": [ - "a96463c4746ee3583a70fda91cfcc9284b67902d", + "inline-block-baseline-002.xht": [ + "8b73ec9838def349d2117352756edacb18a89d9d", [ null, [ [ - "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", + "/css/CSS2/visudet/inline-block-baseline-001-ref.xht", "==" ] ], {} ] ], - "table-anonymous-objects-059.xht": [ - "92e799affdb0aa72d9855722f487ce11935005ad", + "inline-block-baseline-003.xht": [ + "632e2c08c6b6ea8f0a10d2dcec201484487617ae", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/visudet/inline-block-baseline-001-ref.xht", "==" ] ], {} ] ], - "table-anonymous-objects-060.xht": [ - "9304a89816afe9d598498c94d2186251c5fec330", + "inline-block-baseline-004.xht": [ + "f2691cff18509e98d89f4a3ca2b09c78c57286c7", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/visudet/inline-block-baseline-001-ref.xht", "==" ] ], {} ] ], - "table-anonymous-objects-061.xht": [ - "20f64aca45c1a9fc52d063ff80d2459a1190d269", + "inline-block-baseline-005.xht": [ + "51f544ab64f595d1f043b904e9798819871650c3", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/visudet/inline-block-baseline-001-ref.xht", "==" ] ], {} ] ], - "table-anonymous-objects-062.xht": [ - "9a7d219d4cad52c0232610614be4f95bf79cbb9d", + "inline-block-baseline-006.xht": [ + "d994da7107f6bc270e4ff3e720241d1e9bdd9722", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/visudet/inline-block-baseline-001-ref.xht", "==" ] ], {} ] ], - "table-anonymous-objects-063.xht": [ - "eedb4f13f0863de3471c95fd23962ba46242eae8", + "inline-block-baseline-010.xht": [ + "a906f02ef0994e91ce16c8d1611a872e77632b8a", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/visudet/inline-block-baseline-010-ref.xht", "==" ] ], {} ] ], - "table-anonymous-objects-064.xht": [ - "18cc50a8677102a58ec0a2902b34564cb3436c17", + "inline-block-baseline-011.xht": [ + "6d63b62a7eac15ed5eae2e5fbac63df91900790d", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/visudet/inline-block-baseline-010-ref.xht", "==" ] ], {} ] ], - "table-anonymous-objects-065.xht": [ - "4a0cf367c58bfe04c52828001103c1d9fe6ff166", + "inline-block-baseline-012.xht": [ + "f1566a9b88e36a5b7cec2d7ea798b994d0926cc6", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/visudet/inline-block-baseline-010-ref.xht", "==" ] ], {} ] ], - "table-anonymous-objects-066.xht": [ - "1b25699e25c1c763b0b9c68f382968186ff25547", + "inline-block-baseline-013.xht": [ + "d975aa9f6d26fffac4f217b06944d419cd65e3b9", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/visudet/inline-block-baseline-010-ref.xht", "==" ] ], {} ] ], - "table-anonymous-objects-067.xht": [ - "585d0b89ad63b4249b94a53cf2fa3598eb998be2", + "inline-block-baseline-014.xht": [ + "455de0d5e4e1eea890724d4aa70f66b22aae3cc4", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/visudet/inline-block-baseline-010-ref.xht", "==" ] ], {} ] ], - "table-anonymous-objects-068.xht": [ - "3060f02e61191f58bcf5318c81a50b13d6360f66", + "line-height-201.html": [ + "00ab2aa52755d27c5bbd3b41d91a6f8e138c2899", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/visudet/reference/line-height-201-ref.html", "==" ] ], {} ] ], - "table-anonymous-objects-069.xht": [ - "5a77cc934e7915f353bc7676dae67c9862d4a266", + "line-height-202.html": [ + "aef970b4436dd9e4400293fd55e940ea664fffc3", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/visudet/reference/line-height-202-ref.html", "==" ] ], {} ] ], - "table-anonymous-objects-070.xht": [ - "5d8179182b4b1303028a3bacccd55ef9d0b39ea8", + "line-height-203.html": [ + "9e8ee2dc406d6f7fde81694fc4d8c118ef29f7b9", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", - "==" + "/css/CSS2/visudet/reference/line-height-203-ref.html", + "!=" ] ], {} ] ], - "table-anonymous-objects-071.xht": [ - "1d3f61a7f9f57788dea7df360ffa7a530113c857", + "line-height-204.html": [ + "1bb0183db4603e9fef477275228bb3e6cf853be6", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/visudet/reference/line-height-202-ref.html", "==" ] ], {} ] ], - "table-anonymous-objects-072.xht": [ - "59843f813606f026d5ce8e18c3cd9a9294bba499", + "line-height-205.html": [ + "f9cb02797f8563bda01a278dd902113419547c6c", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/visudet/reference/line-height-202-ref.html", "==" ] ], {} ] ], - "table-anonymous-objects-073.xht": [ - "e4ef934502bbbdb4d7d6f2c4fe0b244a4dd7da9f", + "line-height-206.html": [ + "ad24ede74a5c107fd14bc011e0edd36780fc459b", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", - "==" + "/css/CSS2/visudet/reference/line-height-206-ref.html", + "!=" ] ], {} ] ], - "table-anonymous-objects-074.xht": [ - "72d9cad5d32ceb7bf79d70acc7fae3d79d306b44", + "replaced-elements-all-auto.html": [ + "bc2b4593abf793505e3e99b1b6c99c90666dab93", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/visudet/replaced-elements-all-auto-ref.html", "==" ] ], {} ] ], - "table-anonymous-objects-075.xht": [ - "03ce0fd95a553fceca86986772564767e7cbeabb", + "replaced-elements-height-20.html": [ + "2ca34befffba0a9bf1aa1302ed47b53f54ad52fc", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/visudet/replaced-elements-height-20-ref.html", "==" ] ], {} ] ], - "table-anonymous-objects-076.xht": [ - "fcddcdec147a26e8a7fc12868d162bde025f651b", + "replaced-elements-max-height-20.html": [ + "eb2ee98443b045e58173518b158871fdcf34a5a6", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/visudet/replaced-elements-height-20-ref.html", "==" ] ], {} ] ], - "table-anonymous-objects-077.xht": [ - "b560a9f61f76e03e66a2bec3d51662a92d5b2253", + "replaced-elements-max-width-40.html": [ + "9fb7aad4ee93802a5d58a09084a1bd8f3568aec5", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/visudet/replaced-elements-width-40-ref.html", "==" ] ], {} ] ], - "table-anonymous-objects-078.xht": [ - "0b715a0456e69e6fd23fb350697107be27ed80ac", + "replaced-elements-min-height-20.html": [ + "5294aadcb4ed6c87e3d8ccd7acbeba0b1e4dee38", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/visudet/replaced-elements-all-auto-ref.html", "==" ] ], {} ] ], - "table-anonymous-objects-079.xht": [ - "dc3a54fb91d46775fa67cad44b5f8ca4f3abba92", + "replaced-elements-min-height-40.html": [ + "700909ec52d24dd8125a0680e63a237244879cf6", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/visudet/replaced-elements-min-height-40-ref.html", "==" ] ], {} ] ], - "table-anonymous-objects-080.xht": [ - "c57177ffd69fe5a113d9efeb20977acd10ff9a56", + "replaced-elements-min-width-40.html": [ + "03e6a9cba97436a1864fd19a24ace562495e55e5", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/visudet/replaced-elements-all-auto-ref.html", "==" ] ], {} ] ], - "table-anonymous-objects-081.xht": [ - "6aa0b583bf35ed6241660a83b4511da08529b55b", + "replaced-elements-min-width-80.html": [ + "852864aa18cc27d480490039a959a103b234e683", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/visudet/replaced-elements-min-width-80-ref.html", "==" ] ], {} ] ], - "table-anonymous-objects-082.xht": [ - "01e63fcbd8c5b969bbecefd9a6d9a0cfe6826635", + "replaced-elements-width-40.html": [ + "4a8db48f6962666c0cbdbb6cc5692d38ab53aa6a", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/visudet/replaced-elements-width-40-ref.html", "==" ] ], {} ] - ], - "table-anonymous-objects-083.xht": [ - "7f19c75c140767e56a82ecb5f56e09b98530e7e5", + ] + }, + "visufx": { + "clip-001.xht": [ + "0c1b9a08e06c39ff07430f2e4faed817e71c0182", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "table-anonymous-objects-084.xht": [ - "3d9e7568b52734bb8ef7374dc5d37ec56ba72de1", + "clip-004.xht": [ + "ac9d3cc5a0bc33ed66f58795a9225f3985f6b0c7", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "table-anonymous-objects-085.xht": [ - "d5df83a49e09a56444d4930b98e97eee4105d396", + "clip-005.xht": [ + "fbe4b45612fa6aa94d97b81b5aa48656604d4376", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "table-anonymous-objects-086.xht": [ - "f0c09c4de2e58284fe21ed917486767987e10658", + "clip-006.xht": [ + "7e3e89c8178c0903b8b46ae5c8e1c008769ecf6f", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "table-anonymous-objects-087.xht": [ - "569b93e75268c2f8ca47383499185c685e81c337", + "clip-007.xht": [ + "e3f7f92206397e050a252c1c16162c177ac7b964", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "table-anonymous-objects-088.xht": [ - "ca6738be1001c568f475542ca05a5251eb784b5b", + "clip-008.xht": [ + "a6b88263bc9ec68cf6564831f5231af6c1c6f038", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "table-anonymous-objects-089.xht": [ - "b3b0bf61cf270d0ce66bb7b1348960f532cbcd1d", + "clip-016.xht": [ + "d53a95f5388b9cb1fe3064d40063eb6c4532e967", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "table-anonymous-objects-090.xht": [ - "d214f6d9e25ea326570125e7453be0328cf85c76", + "clip-017.xht": [ + "4b390046b3917c54523b6765045652dc78c7971c", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "table-anonymous-objects-091.xht": [ - "354e5843e22b3959cf0baaf67a60903fbd712092", + "clip-018.xht": [ + "9f9b379eb2dc9a1f55ede39777b6900854366511", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "table-anonymous-objects-092.xht": [ - "10bf5d56355dce8dd87ef22e28ee7e84a6826729", + "clip-019.xht": [ + "2aad6d08b5b7d74ba23d9924712b42aa43331e42", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "table-anonymous-objects-093.xht": [ - "687926f33207064c947736254fabe3044b990e73", + "clip-020.xht": [ + "d7fc41eb1c7bddc9b67c69253fb0e61ca078c04f", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "table-anonymous-objects-094.xht": [ - "f773dab05621ee8d69a4188606eb4c9b30db50ce", + "clip-028.xht": [ + "518400140eb91d6af01177b37356f0b1553b05da", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "table-anonymous-objects-095.xht": [ - "4cef54e6d6bc4bcca71033c08925d0644bb2ace3", + "clip-029.xht": [ + "4bd852ceffad356c46f7d8d5a11d7c7d7f050f33", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "table-anonymous-objects-096.xht": [ - "564ab372a2bb9cac70254a0a66f5285dc7f1398a", + "clip-030.xht": [ + "413b344cca9c9d5166d31808df5df1a21ca12965", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "table-anonymous-objects-097.xht": [ - "8c754a9b91f3cc3ee6d14f547b88cace924b88d8", + "clip-031.xht": [ + "4d49739226e6d44d9eeba7c5289820fc6688036d", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "table-anonymous-objects-098.xht": [ - "53b7aa0a5d35b625f8a8724884e5c76422b85887", + "clip-032.xht": [ + "22677f35cbc3087bdd4369454af3aa3390c36e98", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "table-anonymous-objects-099.xht": [ - "19bb850104bcb142c42558e7a66fef0339287acd", + "clip-040.xht": [ + "038bf639b8651e3f5201f58802561c229a0c04ae", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "table-anonymous-objects-100.xht": [ - "18563e7b0953ecd1296dbaab4a118276262a3b7a", + "clip-041.xht": [ + "61a9d0fd9bdc6c85146921efae2694fed07b18fd", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "table-anonymous-objects-101.xht": [ - "d372e3658790f588a6808691ea4ccd57369dc94c", + "clip-042.xht": [ + "46b70fadca70c5aa151464526eb0108810b83d92", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "table-anonymous-objects-102.xht": [ - "dc2a2d0a296e2a2619cf37eeb66fd65962873e1a", + "clip-043.xht": [ + "8d6c46b32c361a8b2d0b0224dca218ee18574fde", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "table-anonymous-objects-103.xht": [ - "5d825274dac605ee602351dbb7a4e2701f091d9d", + "clip-044.xht": [ + "3d871b72e0435322f93b9fa636c6b61ec5e5a644", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "table-anonymous-objects-104.xht": [ - "9686286a009cac6b2d66365b856774f058f482d8", + "clip-052.xht": [ + "351aa81afcc9c5f16061bf6a3166466f07b9281f", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "table-anonymous-objects-105.xht": [ - "b246fb4f7ca6efdd5bcba1a470c415c6691cba4f", + "clip-053.xht": [ + "e8301d10d849600e70e25a2f9c2b19c036a7ffcb", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "table-anonymous-objects-106.xht": [ - "097c7e366df48b0c2de81a41b4c0e8c8aa93fd2c", + "clip-054.xht": [ + "f16375a99ecc666896d369fb320c0159f59f815d", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "table-anonymous-objects-107.xht": [ - "2a0dd8e8e1f5be43c0ad37a41f37133ab5233565", + "clip-055.xht": [ + "c42933e081a4f17d22053db8844fd3f010a35b75", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "table-anonymous-objects-108.xht": [ - "eff9f8b02e19e6f4ff10cb94e865f5f1a0ca18d7", + "clip-056.xht": [ + "64ff07ab23c5ab0c3119610eca7bb72c2a11ce53", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "table-anonymous-objects-109.xht": [ - "f61096b13942429a9569be8d1e66317f61cfbd1a", + "clip-064.xht": [ + "1bab7064fea54736c061c9efd422febd288da679", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "table-anonymous-objects-110.xht": [ - "dd9c4bbcb30faf5cfa98c23b834d7b701b155160", + "clip-065.xht": [ + "970bd3582d03db9a70736a232cb5f4bcf5183cf9", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "table-anonymous-objects-111.xht": [ - "8f1bec26eb4f260f8dfe3472f53dcbe4246c35ee", + "clip-066.xht": [ + "9d44330cc4ad1fa82ba759eb8e0b828ac6aa6e00", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "table-anonymous-objects-112.xht": [ - "97ee6019be5ca6039c37b79bbd009be8b1b03f66", + "clip-067.xht": [ + "817f3b4a67f4a1b525b21f2429a9296cc5438459", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "table-anonymous-objects-113.xht": [ - "c761bebe0c516cba34617ab8f0e4879ba2dfa201", + "clip-068.xht": [ + "55dbe85dbd252e8e28e0bbc5d0c82f5890249604", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "table-anonymous-objects-114.xht": [ - "830a6d52c7b6da1ca6a151e15d03f67922e4e091", + "clip-076.xht": [ + "176df20f9b66032d09be5be70df1cc38ff70e16d", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "table-anonymous-objects-115.xht": [ - "b406c5bbe51c89a593a36c875c22895e9ea44793", + "clip-077.xht": [ + "a85621e1d48f005e9223cd69e0f268e45f41da8a", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", - "==" - ], - [ - "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "table-anonymous-objects-116.xht": [ - "cae0dfdfe2e3603bdbbe37e10a0317b69b0f639f", + "clip-078.xht": [ + "e21f74a8a21d6a66e4fcad7680a3e53d13c0c5c8", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", - "==" - ], - [ - "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "table-anonymous-objects-117.xht": [ - "7725383c25a18b2174d5a0412fa202c8615546ba", + "clip-079.xht": [ + "866f0b87a7488fc995c7a3a48f20534a8c3743a1", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", - "==" - ], - [ - "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "table-anonymous-objects-118.xht": [ - "26a39105213f8e43265a76e5e23bc8dd23435ab4", + "clip-080.xht": [ + "3685000a497472fec32aa1c92054211708ec916c", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", - "==" - ], - [ - "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "table-anonymous-objects-119.xht": [ - "9e99c6c7a3ce6ff507d024bb91e06e95984aa7ea", + "clip-088.xht": [ + "c5dd51ecffceae60abc941c7e0a311eb38e7e842", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", - "==" - ], - [ - "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "table-anonymous-objects-120.xht": [ - "0b0a659cd24dfdcb0acf034445488a67e93bdfa8", + "clip-089.xht": [ + "5def0b9a3c5a166dffc91cd44a434442204164dd", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", - "==" - ], - [ - "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "table-anonymous-objects-121.xht": [ - "febb96df1fab7e082dec144123231f13f280a026", + "clip-090.xht": [ + "c9b8b44402a5465b8a04e8854f3e420fb24672de", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", - "==" - ], - [ - "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "table-anonymous-objects-122.xht": [ - "75d37362fa7bb9d2f610f8881b626ad34ff40539", + "clip-091.xht": [ + "afb687df52ec37a22c12f5b7a45567da2efb323a", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", - "==" - ], - [ - "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "table-anonymous-objects-123.xht": [ - "1d17bdf4ba2654cda349d846383ac4d41e67846d", + "clip-092.xht": [ + "10377c0ded4cb3b163c3bb7ff6dcc0de526ee9d0", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "table-anonymous-objects-124.xht": [ - "a8313db47bc1c536ae088a6ad671620fba552aed", + "clip-097.xht": [ + "ac547dafb7cbfef66580f3edf91061fd10fad708", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "table-anonymous-objects-125.xht": [ - "1ad7edf9d9aa5db783dc8951f64f7f9d565eb113", + "clip-098.xht": [ + "58fab32a23cbba16b0cf56da8851ebe5b17928ba", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "table-anonymous-objects-126.xht": [ - "da930a8908079852b30dc14e1e1e629e6e4efaf0", + "clip-099.xht": [ + "5c0e77bc288ef153230dea0dfbee3c428eb81e9c", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "table-anonymous-objects-127.xht": [ - "9ebd3f8a86dd99d01c5445d223027db14020ad7c", + "clip-102.xht": [ + "4cb0dbe7a6a20ab51a718d5f24505b087cfbef7d", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] ], - "table-anonymous-objects-128.xht": [ - "1b10dd6d091381d91c9ef183e464be1feb79c50c", + "overflow-applies-to-001.xht": [ + "e63bb0ee0cb6e228c24f19643d20c9226dde6b37", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/visufx/overflow-applies-to-001-ref.xht", "==" ] ], {} ] ], - "table-anonymous-objects-129.xht": [ - "91f808f599cd5472014d164ca736983a2a977791", + "overflow-propagation-001a.html": [ + "77107d8faf50f6274e6b98ae11b590bf5c09f23f", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/visufx/support/overflow-propagation-001-ref.html", "==" ] ], {} ] ], - "table-anonymous-objects-130.xht": [ - "7004b24e95bfb193fffa131d385d088869e5eec7", + "overflow-propagation-001b.html": [ + "c72994b8c44bb006c1b973750e782cd9801a08bb", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/visufx/support/overflow-propagation-001-ref.html", "==" ] ], {} ] ], - "table-anonymous-objects-131.xht": [ - "c962266ed8092357de116830f5ba80eb96bc740b", + "overflow-propagation-001c.html": [ + "6956ff4143e376656d152f5c96316a1ac1da3387", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/visufx/support/overflow-propagation-001-ref.html", "==" ] ], {} ] ], - "table-anonymous-objects-132.xht": [ - "302664f17491c2fc9598651c194685c518e3ae86", + "visibility-005.xht": [ + "90e4d1868dc5e5459defb0b4b211c21054d4d1bc", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "table-anonymous-objects-133.xht": [ - "4838da5cfb6870154838d744ae6ceb4692286830", + "visibility-block-001.xht": [ + "945d85deaf141892b003b23a91a27d0547b94e7d", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/reference/no-red-on-blank-page-ref.xht", "==" ] ], {} ] - ], - "table-anonymous-objects-134.xht": [ - "7a8b01971810bafbefe8f25e51e5a5b0fe7ca7d6", + ] + }, + "visuren": { + "anonymous-boxes-001a.xht": [ + "4a578e19509ed1edca185f13f35eef234f3a88ab", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/visuren/anonymous-boxes-001a-ref.xht", "==" ] ], {} ] ], - "table-anonymous-objects-135.xht": [ - "37709d7f97fae4c9f39fd86fa97c01ae27ff29f8", + "anonymous-boxes-001b.xht": [ + "087a030ff4147e216156e8a899a4a3df7525f942", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/visuren/anonymous-boxes-001b-ref.xht", "==" ] ], {} ] ], - "table-anonymous-objects-136.xht": [ - "164d9451f348c5cfa4e18c7cc9aaf186684a9d13", + "box-offsets-rel-pos-002.xht": [ + "7e17de23d19dd37a20c9c1260f48d217cf4bcf88", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/visuren/box-offsets-rel-pos-002-ref.xht", "==" ] ], {} ] ], - "table-anonymous-objects-137.xht": [ - "94a647e93c1564023cffae573ea2cc0ec11042d5", + "clear-applies-to-016.xht": [ + "a72b5d2924bd1efc002fe1ae809647ad464d8420", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/floats-clear/clear-applies-to-009-ref.xht", "==" ] ], {} ] ], - "table-anonymous-objects-138.xht": [ - "ec9b60cc4d6a9e3f33a728e55bea55b7865ac185", + "clear-applies-to-017.xht": [ + "c421afce02733b4a66e5d0da962ca9b94f93392e", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/floats-clear/clear-applies-to-009-ref.xht", "==" ] ], {} ] ], - "table-anonymous-objects-139.xht": [ - "a6885b82eef34a8c5f3a03b6bf6e3a03210b866a", + "emptyspan-1.html": [ + "dcf9367d2a2aa33599435ceaf176e79f9336cc3c", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/visuren/emptyspan-1-ref.html", "==" ] ], {} ] ], - "table-anonymous-objects-140.xht": [ - "660b87b336f10012d425287d763fa215d0393e7d", + "emptyspan-2.html": [ + "b740fad71b81c7a6b80e2acde33f862989a8aa73", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/visuren/emptyspan-2-ref.html", "==" ] ], {} ] ], - "table-anonymous-objects-141.xht": [ - "c385f0af012b9ee8160df5f3aba2b8e0747ac157", + "emptyspan-3.html": [ + "1be809ec2d5471897098ade188c3eb41fadd7ce0", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/visuren/emptyspan-3-ref.html", "==" ] ], {} ] ], - "table-anonymous-objects-142.xht": [ - "4b3c5e8572cd1710f78b7865649eab273f1336e0", + "emptyspan-4.html": [ + "3656ada50420076c1a32273c4ac8c22f630a0013", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/visuren/emptyspan-4-ref.html", "==" ] ], {} ] ], - "table-anonymous-objects-143.xht": [ - "2bb087a918b97446fe560a1bdd7b0a853a926614", + "fixed-pos-stacking-001.xht": [ + "1912d709389da811cb0d98f02a96ede5fd13eef2", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/visuren/fixed-pos-stacking-001-ref.xht", "==" ] ], {} ] ], - "table-anonymous-objects-144.xht": [ - "bf9332f454b2b5dcb7c9c749757c30c088308000", + "float-inside-inline-between-blocks-1.html": [ + "296dcb9bde90c1e579f5baeb937510b644a5e886", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/visuren/float-inside-inline-between-blocks-1-ref.html", "==" ] ], {} ] ], - "table-anonymous-objects-145.xht": [ - "c1c34ee57ebca076078c0238649cca69cb16e3b6", + "inherit-static-offset-001.xht": [ + "6db781c9b942a2c26b13d60c971e1dab07211d83", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "table-anonymous-objects-146.xht": [ - "971c3e70678a2087cf1f08c3de1a6c36674e856e", + "inherit-static-offset-002.xht": [ + "1860e76ebc7bde6a61e40f4e62194c4dd3da8fe1", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "table-anonymous-objects-147.xht": [ - "3e24f61c70f27e610bb1c2511d5f4f10d10ba1cb", + "inherit-static-offset-003.xht": [ + "32533df5e6c177a6e12704388d41a0d4eb8f5c84", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "table-anonymous-objects-148.xht": [ - "0c3f3a7f7d0a8febf64fa2245fbe97c85d3fabd8", + "inline-formatting-context-001.xht": [ + "e6917a26b54581e432fb25a07b378fc90054cb0e", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/visuren/inline-formatting-context-001-ref.xht", "==" ] ], {} ] ], - "table-anonymous-objects-149.xht": [ - "f482b9e4acb964f07f70f7c0581c3c7277947e8e", + "left-offset-position-fixed-001.xht": [ + "646552c3081199e0e68903368a858c8a7197335a", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/visuren/left-offset-position-fixed-001-ref.xht", "==" ] ], {} ] ], - "table-anonymous-objects-150.xht": [ - "ddf3dedd8e56d633fe29c51a6378c19915103ea5", + "percent-height-1.html": [ + "91c1594b2775dffcbd1fa8224c19b3ee8e98b7ab", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/visuren/percent-height-1-ref.html", "==" ] ], {} ] ], - "table-anonymous-objects-151.xht": [ - "425e4d781bbcbf69e6886a06b634eaeca547ad57", + "position-absolute-008a.xht": [ + "bf8cb26127035584ff6532f5c5c0db0418c21f71", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "table-anonymous-objects-152.xht": [ - "42f60aab6f580c2a242ba46ff5d821e68deca54d", + "position-absolute-percentage-inherit-001.xht": [ + "3b9feaf25e66459c200ffceb6f6c61de08484403", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/visuren/position-absolute-percentage-inherit-001-ref.xht", "==" ] ], {} ] ], - "table-anonymous-objects-153.xht": [ - "fdf422fb722225ef424e1fe4b5bdaa0eb19f5c18", + "remove-from-split-inline-1-ref.html": [ + "f197d6ac93da70b237751f56c6e7a4631831b35f", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/visuren/remove-from-split-inline-1-noib-ref.html", "==" ] ], {} ] ], - "table-anonymous-objects-154.xht": [ - "07c28cf9d4513f69f538aabcfb16903492cfbd96", + "remove-from-split-inline-1.html": [ + "07053efa19b0a0bca41d840ad7323c7d33d2f459", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/visuren/remove-from-split-inline-1-ref.html", "==" ] ], {} ] ], - "table-anonymous-objects-155.xht": [ - "4e0cc5555fb89e26baba37a198def9fb95da2d98", + "remove-from-split-inline-2.html": [ + "d4cf51040e55ebd7faca43cbb893b79001546519", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/visuren/remove-from-split-inline-2-ref.html", "==" ] ], {} ] ], - "table-anonymous-objects-156.xht": [ - "48f66efe21bd52408cdcf4c8eaffafa45d4fba53", + "remove-from-split-inline-3-ref.html": [ + "5822665ffee2503e0a3307b0f0f19d77e39267b6", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/visuren/remove-from-split-inline-3-noib-ref.html", "==" ] ], {} ] ], - "table-anonymous-objects-157.xht": [ - "6768171b28028c1960b1a8b7ca8d0863827fcabe", + "remove-from-split-inline-3.html": [ + "1d5e2a45bea3e3ee843aadb1cd75ff548b300fa8", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/visuren/remove-from-split-inline-3-ref.html", "==" ] ], {} ] ], - "table-anonymous-objects-158.xht": [ - "57cfd46c5b13a1116273e7e55c2ab779134cc363", + "remove-from-split-inline-4-ref.html": [ + "8768b0d25bb56a6ea7ee56f0ecf2b34a4ea0163c", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/visuren/remove-from-split-inline-4-noib-ref.html", "==" ] ], {} ] ], - "table-anonymous-objects-159.xht": [ - "6ee119161179c665069ef730396fe3294f69097a", + "remove-from-split-inline-4.html": [ + "44c0ceed87db65c7c11d7df275433ed6d6a78aa1", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/visuren/remove-from-split-inline-4-ref.html", "==" ] ], {} ] ], - "table-anonymous-objects-160.xht": [ - "734ed229c155bde1ddb8a8cb45a8c5e6fd6d4a8d", + "remove-from-split-inline-5-ref.html": [ + "68258ef8b1a5b3f915f524aa2c0ce8e9b6b6ff62", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/visuren/remove-from-split-inline-5-noib-ref.html", "==" ] ], {} ] ], - "table-anonymous-objects-161.xht": [ - "cefb9d41d4d245afe95165043e8b34d10ac638c4", + "remove-from-split-inline-5.html": [ + "539115e030142ab99be79814d0fc840b2fe53b00", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/visuren/remove-from-split-inline-5-ref.html", "==" ] ], {} ] ], - "table-anonymous-objects-162.xht": [ - "d24486afe309e957b4d022c335636a01dfef8dc2", + "remove-from-split-inline-6-ref.html": [ + "bd43b45db5c8be07fb5ae80c19da36959f69f06b", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/visuren/remove-from-split-inline-6-noib-ref.html", "==" ] ], {} ] ], - "table-anonymous-objects-163.xht": [ - "b4d6eb780da50de4a79f417bc391affb83f41250", + "remove-from-split-inline-6.html": [ + "99bbcf7a0f0676e384bdf645b4eb5059fdb36c36", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/visuren/remove-from-split-inline-6-ref.html", "==" ] ], {} ] ], - "table-anonymous-objects-164.xht": [ - "741e1f313dc7570d498bd1d56f87d5c3d080e35b", + "remove-split-inline-1.html": [ + "cfe6a5e8c02eaa683836da5bc9e0073755977662", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/visuren/remove-split-inline-1-ref.html", "==" ] ], {} ] ], - "table-anonymous-objects-165.xht": [ - "42a0d7d6ddfff2d64ef70eada0ffcdaaf41111c6", + "right-offset-position-fixed-001.xht": [ + "e232db90a0e2e0225458bc99eb8641bdd1b6e6a7", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/visuren/right-offset-position-fixed-001-ref.xht", "==" ] ], {} ] ], - "table-anonymous-objects-166.xht": [ - "96ca3b3c542cae16239bb6955414a10964f54428", + "split-inner-inline-1.html": [ + "3ae7392c2347a901e247adccb30227a8e812d29e", [ null, [ [ - "/css/CSS2/tables/reference/no_red_3x3_monospace_table-ref.xht", + "/css/CSS2/visuren/split-inner-inline-1-ref.html", "==" ] ], {} ] ], - "table-anonymous-objects-167.xht": [ - "d99f3048d86f811f4a2036d05a7bd271bd4728a1", + "split-inner-inline-2.html": [ + "318df5344f74e5d0662f3d47fa20d0c2ffe1fa1f", [ null, [ [ - "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", + "/css/CSS2/visuren/split-inner-inline-2-ref.html", "==" ] ], {} ] ], - "table-anonymous-objects-168.xht": [ - "e761bf3683b94a6bbd61ef05bb3da10e97a84934", + "table-pseudo-in-part3-1.html": [ + "cb50af9ca87c4d276cbbdf5f99eaddb7fdd33d3a", [ null, [ [ - "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", + "/css/CSS2/visuren/table-pseudo-in-part3-1-ref.html", "==" ] ], {} ] ], - "table-anonymous-objects-169.xht": [ - "6733a1f0779ccb83d05ba8f232d82f36c0d23716", + "top-114.xht": [ + "bd2d893b50f383bf58ef9e0c04a8a3ecda0ddc93", [ null, [ [ - "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", + "/css/CSS2/visuren/top-114-ref.xht", "==" ] ], {} ] ], - "table-anonymous-objects-170.xht": [ - "0b7e3cceafda4adb2f76fe0d7bb8329d73ed98c5", + "top-115.xht": [ + "471b909d26e20fccd3507f1b500e5d9abd52c413", [ null, [ [ - "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", + "/css/CSS2/visuren/top-115-ref.xht", "==" ] ], {} ] ], - "table-anonymous-objects-171.xht": [ - "11831f1357eca7c33221b9d8771a8a764df5befb", + "whitespace-present-1a.html": [ + "283884b0843ab525bb29d0ebeda635ba63ae4d73", [ null, [ [ - "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", + "/css/CSS2/visuren/whitespace-present-1-ref.html", "==" ] ], {} ] ], - "table-anonymous-objects-172.xht": [ - "5ea0c952bbe7f27105de864b1e92548852846dc6", + "whitespace-present-1b.html": [ + "70239a8e0853afad656f70cdba460dc3f10995fc", [ null, [ [ - "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", + "/css/CSS2/visuren/whitespace-present-1-ref.html", "==" ] ], {} ] - ], - "table-anonymous-objects-173.xht": [ - "af48f72f0ffcf93d2c2935aba98eda55204854b7", + ] + }, + "zindex": { + "stack-floats-001.xht": [ + "739a6c3b498687fe1afb82c13655ca562761daba", [ null, [ [ - "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", + "/css/CSS2/zindex/stack-floats-001-ref.xht", "==" ] ], {} ] ], - "table-anonymous-objects-174.xht": [ - "2b329a61e08b3d89e57d247d787d9647f6869442", + "stack-floats-002.xht": [ + "ce7f271495100a3d8a9817ceba2496864b982da9", [ null, [ [ - "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", + "/css/CSS2/zindex/stack-floats-001-ref.xht", "==" ] ], {} ] ], - "table-anonymous-objects-175.xht": [ - "1263f613b21298081b67ca846e84ead53f098406", + "stack-floats-003.xht": [ + "76f5dba9bd3cadc3ebc4340abb4b31584717e657", [ null, [ [ - "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", + "/css/CSS2/zindex/stack-floats-001-ref.xht", "==" ] ], {} ] ], - "table-anonymous-objects-176.xht": [ - "bfc562862c6d8b1155550f3c9bb0d5bffbab489e", + "stack-floats-004.xht": [ + "6ea4390a524a03a0b7e052aa41bd5f34d3f8f375", [ null, [ [ - "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", + "/css/CSS2/zindex/stack-floats-001-ref.xht", "==" ] ], {} ] ], - "table-anonymous-objects-177.xht": [ - "83cc06c22c3f62b0176d09f4af6cbc2f91fe03f4", + "z-index-001.xht": [ + "3e5093744aa65b6124e0977a73c0fd0498df281d", [ null, [ [ - "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "table-anonymous-objects-178.xht": [ - "9e85164c28e4d236ce72b06c15e3f8b5b6db1ba8", + "z-index-002.xht": [ + "7173f03979d72d25cb615aa770e804d0c755cae3", [ null, [ [ - "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "table-anonymous-objects-179.xht": [ - "e26909ffa178bf9cc647f8e61bc918ffb3632c6c", + "z-index-003.xht": [ + "f3c56c914c5a1045aaf331a2550bc8ddd09a851c", [ null, [ [ - "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "table-anonymous-objects-180.xht": [ - "628357abde69f5afff23a4dda5ebf63a9c9c5405", + "z-index-004.xht": [ + "324b3c8ecf3f543e6cbb4c573607e70c2f259696", [ null, [ [ - "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "table-anonymous-objects-181.xht": [ - "fcce174438c310f01f066760ec6fe383d774687f", + "z-index-005.xht": [ + "9837075e0e207d5267c821012aa80182c3155b2d", [ null, [ [ - "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "table-anonymous-objects-182.xht": [ - "1895e09fe68003463109d4a8fcd4b4a1085dfd75", + "z-index-006.xht": [ + "0fb1bccbef2f99cd77612ee4e2c745d8c45e6bd4", [ null, [ [ - "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "table-anonymous-objects-183.xht": [ - "3f83065ae7487420092ce5f8c5c811a14de89db8", + "z-index-007.xht": [ + "b32ab88a10c824ef400d1c22755fc88713d1ca8c", [ null, [ [ - "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "table-anonymous-objects-184.xht": [ - "c7839bd3869618ce0edf79032694c66ebc27660f", + "z-index-008.xht": [ + "acda9534215cc570bb9dcfe77c37497f945dfd4e", [ null, [ [ - "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "table-anonymous-objects-185.xht": [ - "5822856f75f044840d62e0225a926b98a4c01db9", + "z-index-009.xht": [ + "785f2d3e3df023038b6e450b1c483d072823946a", [ null, [ [ - "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "table-anonymous-objects-186.xht": [ - "6aef922a8145f2f75b026a99cbacd6f90e91e933", + "z-index-010.xht": [ + "a9e3bd2c3b635cc6bc80569358af72fe3cecec4f", [ null, [ [ - "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "table-anonymous-objects-187.xht": [ - "d0dfca637796aaf84ffa810b9a5ad4765b9368e8", + "z-index-011.xht": [ + "5e97edc52c36c40c04372160550771dbef6f4474", [ null, [ [ - "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "table-anonymous-objects-188.xht": [ - "cd5bc4dd2ea599520ab5670f760c14eadd368e5a", + "z-index-012.xht": [ + "3a8ff84e14974be12e9f902f4409a394717875a1", [ null, [ [ - "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "table-anonymous-objects-189.xht": [ - "9c670782149e4516e809cc7219122c1789dbc8e1", + "z-index-013.xht": [ + "63e8ef1f9bbf9ffeef44a41198469a78d5d5b957", [ null, [ [ - "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "table-anonymous-objects-190.xht": [ - "ae22e2952efe1e39c17bf2ddcd64290627febf77", + "z-index-014.xht": [ + "c8b80a52e05f7a357b0915c30d8bd69f7e124f6c", [ null, [ [ - "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "table-anonymous-objects-191.xht": [ - "426cf8b8b5fa4916b6f20ccb8a1c574161192908", + "z-index-015.xht": [ + "e02ff500193712030b7667554607a21a6073440e", [ null, [ [ - "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "table-anonymous-objects-192.xht": [ - "44f610825aa12d1818db8895ac201832295c9814", + "z-index-016.xht": [ + "1ca51726af22b00da1e4e2f5c9f17475ab43cc2a", [ null, [ [ - "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "table-anonymous-objects-193.xht": [ - "542364aa170506a922f456376d4322691c567228", + "z-index-017.xht": [ + "245204e80f49de608d1caaf7397d4b556447902d", [ null, [ [ - "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "table-anonymous-objects-194.xht": [ - "cab7bb5a28a8883578665c9b40ca8d1bd472fce4", + "z-index-018.xht": [ + "f090267626bf82878342fa42c444b0839110a87d", [ null, [ [ - "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "table-anonymous-objects-195.xht": [ - "dc1b1a40071b6f4265235afedfe26661f94965f8", + "z-index-019.xht": [ + "51678a7e0f238157871275e53ee94930ce2b1759", [ null, [ [ - "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "table-anonymous-objects-196.xht": [ - "a8455a27b0f346c3ae6636ead310a1881f40bf4a", + "z-index-abspos-001.xht": [ + "63a44d15a7dce6e1a2df6124ff1064d0a68392ab", [ null, [ [ - "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", + "/css/CSS2/zindex/z-index-abspos-001-ref.xht", "==" ] ], {} ] ], - "table-anonymous-objects-197.xht": [ - "70a144f90e89ec72da3803e3dc5d2ac1acea6a8f", + "z-index-abspos-002.xht": [ + "2c5ab971bfa4821854a63f0846ff07f95feb7d38", [ null, [ [ - "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", + "/css/CSS2/zindex/z-index-abspos-001-ref.xht", "==" ] ], {} ] ], - "table-anonymous-objects-198.xht": [ - "8d73eaac350323fb73229e7461dd6d8573687398", + "z-index-abspos-003.xht": [ + "3e46ee2ca8ea7cf64e9a7a2caed1058407c16a84", [ null, [ [ - "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", + "/css/CSS2/zindex/z-index-abspos-001-ref.xht", "==" ] ], {} ] ], - "table-anonymous-objects-199.xht": [ - "c74b43a7144f88e9a23c6f5cfb7bfff3700318d6", + "z-index-abspos-004.xht": [ + "b2cc25905aae57a7aac575b5ec71985f2d97bd0d", [ null, [ [ - "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", + "/css/CSS2/zindex/z-index-abspos-001-ref.xht", "==" ] ], {} ] ], - "table-anonymous-objects-200.xht": [ - "7f5ef97beba43fe11abe6f4891ba3cb8283e9b95", + "z-index-abspos-005.xht": [ + "c93feabd986aad5df8c2bccd9db5b9f4b6fd15b9", [ null, [ [ - "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", + "/css/CSS2/zindex/z-index-abspos-001-ref.xht", "==" ] ], {} ] ], - "table-anonymous-objects-201.xht": [ - "d9fd24268c59dc35883fb1a22d73ef86fa96b440", + "z-index-abspos-007.xht": [ + "f9dcdc397c33cfa498fcd8a5c83c718a3a616622", [ null, [ [ - "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", + "/css/CSS2/zindex/z-index-abspos-001-ref.xht", "==" ] ], {} ] ], - "table-anonymous-objects-202.xht": [ - "af0a419f824578877ab1d186c6c96d48fea60247", + "z-index-dynamic-001.xht": [ + "9c4ca593e77904ad831819ff211354ad8f6609d6", [ null, [ [ - "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", + "/css/CSS2/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] - ], - "table-anonymous-objects-203.xht": [ - "2f75f9a0081be23d29664ca7ac2b1026ac208ea9", + ] + }, + "zorder": { + "z-index-020.xht": [ + "aaf7ce2ab4cd6a81105490f369be2a780a62e307", [ null, [ [ - "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", + "/css/CSS2/zorder/z-index-020-ref.xht", "==" - ] - ], - {} - ] - ], - "table-anonymous-objects-204.xht": [ - "a646794915bdae230f7bba024145e5326eaffaba", - [ - null, - [ + ], [ - "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", + "/css/CSS2/zorder/z-index-020-ref2.xht", "==" ] ], {} ] - ], - "table-anonymous-objects-205.xht": [ - "829ad8f5efb5540fdf7198e06ab308b71df8901f", + ] + } + }, + "WOFF2": { + "blocks-extraneous-data-001.xht": [ + "9897c475d5c4505724350440bf4c51dc3bf27a71", + [ + null, [ - null, [ - [ - "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", - "==" - ] - ], - {} - ] - ], - "table-anonymous-objects-206.xht": [ - "a4509b3e97f775a3f09a4e298d6232feba664795", + "/css/WOFF2/blocks-extraneous-data-001-ref.xht", + "==" + ] + ], + {} + ] + ], + "blocks-extraneous-data-002.xht": [ + "63a3c0b3b685e1414a138e9a5ade867757286a07", + [ + null, [ - null, [ - [ - "/css/CSS2/tables/reference/no_red_antialiasing_a_bc_d-ref.xht", - "==" - ] - ], - {} - ] - ], - "table-anonymous-objects-211.xht": [ - "7e1c630b80b59122044f014a72509f35ed88c1cb", + "/css/WOFF2/blocks-extraneous-data-002-ref.xht", + "==" + ] + ], + {} + ] + ], + "blocks-extraneous-data-003.xht": [ + "79ae40b029b996c708e434a9e55d6d5e45b061ec", + [ + null, [ - "css/CSS2/tables/table-anonymous-objects-211.xht", [ - [ - "/css/CSS2/tables/table-anonymous-objects-211-ref.xht", - "==" - ] - ], - {} - ] - ], - "table-anonymous-text-indent.xht": [ - "1364f79033c9b489a2c0a5eebe5e6ad2d8a89a2e", + "/css/WOFF2/blocks-extraneous-data-003-ref.xht", + "==" + ] + ], + {} + ] + ], + "blocks-extraneous-data-004.xht": [ + "e473f4c28c5a54b2b13df007b482571296aca3b0", + [ + null, [ - null, [ - [ - "/css/CSS2/tables/reference/table-anonymous-text-indent-ref.xht", - "==" - ] - ], - {} - ] - ], - "table-backgrounds-bc-cell-001.xht": [ - "898ff46d56572eaf7b3a493fe34657d0cc0aee80", + "/css/WOFF2/blocks-extraneous-data-004-ref.xht", + "==" + ] + ], + {} + ] + ], + "blocks-extraneous-data-005.xht": [ + "3aee0900ad7c72b99db2760cb66df1df0ae943d9", + [ + null, [ - null, [ - [ - "/css/CSS2/tables/table-backgrounds-bc-cell-001-ref.xht", - "==" - ] - ], - {} - ] - ], - "table-backgrounds-bc-colgroup-001.xht": [ - "3029e09f9e15a7bc32231d5f19e9f4f88c39b553", + "/css/WOFF2/blocks-extraneous-data-005-ref.xht", + "==" + ] + ], + {} + ] + ], + "blocks-extraneous-data-006.xht": [ + "00b5cc97b9417631bf26fca0bca1f46b73f940a9", + [ + null, [ - null, [ - [ - "/css/CSS2/tables/table-backgrounds-bc-colgroup-001-ref.xht", - "==" - ] - ], - {} - ] - ], - "table-backgrounds-bc-column-001.xht": [ - "ca0cb36e1bd1dcd807f397f285efc120bc27dc28", + "/css/WOFF2/blocks-extraneous-data-006-ref.xht", + "==" + ] + ], + {} + ] + ], + "blocks-extraneous-data-007.xht": [ + "e125ba1a74ae032a402d8818aaa39ebeeae630bf", + [ + null, [ - null, [ - [ - "/css/CSS2/tables/table-backgrounds-bc-column-001-ref.xht", - "==" - ] - ], - {} - ] - ], - "table-backgrounds-bc-row-001.xht": [ - "70a2243483025a921db173c4ebec5537124ccc20", + "/css/WOFF2/blocks-extraneous-data-007-ref.xht", + "==" + ] + ], + {} + ] + ], + "blocks-extraneous-data-008.xht": [ + "ca201352ad8e831e6c738045e799b1af56c97da5", + [ + null, [ - null, [ - [ - "/css/CSS2/tables/table-backgrounds-bc-row-001-ref.xht", - "==" - ] - ], - {} - ] - ], - "table-backgrounds-bc-rowgroup-001.xht": [ - "d86191a7fda9a8fe5bc16ab701e7cb9ade887c2a", + "/css/WOFF2/blocks-extraneous-data-008-ref.xht", + "==" + ] + ], + {} + ] + ], + "blocks-overlap-001.xht": [ + "c9d22c90fec25f2ac5b1e43068bcbec48ce1affe", + [ + null, [ - null, [ - [ - "/css/CSS2/tables/table-backgrounds-bc-rowgroup-001-ref.xht", - "==" - ] - ], - {} - ] - ], - "table-backgrounds-bc-table-001.xht": [ - "87ae9eafaf0701dc6523a6826bcb255ee6c371a8", + "/css/WOFF2/blocks-overlap-001-ref.xht", + "==" + ] + ], + {} + ] + ], + "blocks-overlap-002.xht": [ + "f1144ac17a2a769200ae4a0602da2a7d3501fe69", + [ + null, [ - null, [ - [ - "/css/CSS2/tables/table-backgrounds-bc-table-001-ref.xht", - "==" - ] - ], - {} - ] - ], - "table-backgrounds-bs-cell-001.xht": [ - "23ed996c110515b40d682e24acf5b0751cfa5533", + "/css/WOFF2/blocks-overlap-002-ref.xht", + "==" + ] + ], + {} + ] + ], + "blocks-overlap-003.xht": [ + "72dca32170ab1c8d45ba976e6970d53f7b56bb36", + [ + null, [ - null, [ - [ - "/css/CSS2/tables/table-backgrounds-bs-cell-001-ref.xht", - "==" - ] - ], - {} - ] - ], - "table-backgrounds-bs-colgroup-001.xht": [ - "d5ee3346cb877593b32e1bbfd9f0e2b8c5370e6d", + "/css/WOFF2/blocks-overlap-003-ref.xht", + "==" + ] + ], + {} + ] + ], + "datatypes-alt-255uint16-001.xht": [ + "33a67fd16e6e6bfe7b15f940a582576e5a24985e", + [ + null, [ - null, [ - [ - "/css/CSS2/tables/table-backgrounds-bs-colgroup-001-ref.xht", - "==" - ] - ], - {} - ] - ], - "table-backgrounds-bs-column-001.xht": [ - "126be18ddb26e526c6ae242f7cb96416a0124d1c", + "/css/WOFF2/datatypes-alt-255uint16-001-ref.xht", + "==" + ] + ], + {} + ] + ], + "datatypes-invalid-base128-001.xht": [ + "338162da2fc8818959f6902944f4aa4462d47967", + [ + null, [ - null, [ - [ - "/css/CSS2/tables/table-backgrounds-bs-column-001-ref.xht", - "==" - ] - ], - {} - ] - ], - "table-backgrounds-bs-row-001.xht": [ - "58fd3d9be77cc0388fbdb0cd4f6dc37275344c07", + "/css/WOFF2/datatypes-invalid-base128-001-ref.xht", + "==" + ] + ], + {} + ] + ], + "datatypes-invalid-base128-002.xht": [ + "b18fdb945282e54f127ad4307a34a31e8b2744c8", + [ + null, [ - null, [ - [ - "/css/CSS2/tables/table-backgrounds-bs-row-001-ref.xht", - "==" - ] - ], - {} - ] - ], - "table-backgrounds-bs-rowgroup-001.xht": [ - "e0e8314304e21c0d6979e068dde8d7a663b45261", + "/css/WOFF2/datatypes-invalid-base128-002-ref.xht", + "==" + ] + ], + {} + ] + ], + "datatypes-invalid-base128-003.xht": [ + "34d58f1cac48634a9d5810dfa63b3be91ffa8085", + [ + null, [ - null, [ - [ - "/css/CSS2/tables/table-backgrounds-bs-rowgroup-001-ref.xht", - "==" - ] - ], - {} - ] - ], - "table-backgrounds-bs-table-001.xht": [ - "2d137df979bf377b81a40d1411941747d348d5a8", + "/css/WOFF2/datatypes-invalid-base128-003-ref.xht", + "==" + ] + ], + {} + ] + ], + "directory-knowntags-001.xht": [ + "d06ea2d3f45c6d32d1405feeef10c2bbf288cd07", + [ + null, [ - null, [ - [ - "/css/CSS2/tables/table-backgrounds-bs-table-001-ref.xht", - "==" - ] - ], - {} - ] - ], - "table-cell-001.xht": [ - "37a5ffda294aada9b449c1d9137ba101b8bd5ee4", + "/css/WOFF2/directory-knowntags-001-ref.xht", + "==" + ] + ], + {} + ] + ], + "directory-mismatched-tables-001.xht": [ + "d3891b92833ea44d2d957d55e0f5cda8b7890726", + [ + null, [ - null, [ - [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", - "==" - ] - ], - {} - ] - ], - "table-column-rendering-001.xht": [ - "fd827e5b63e2775fb43b156e5f05c50c7b3de9ea", + "/css/WOFF2/directory-mismatched-tables-001-ref.xht", + "==" + ] + ], + {} + ] + ], + "header-length-001.xht": [ + "7ac89559f81331468ffd7c3bd3290a06c9bfe46e", + [ + null, [ - null, [ - [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", - "==" - ] - ], - {} - ] - ], - "table-column-rendering-002.xht": [ - "e4496dc8026b8f02d84ed27837cfd176a8dbd5c2", + "/css/WOFF2/header-length-001-ref.xht", + "==" + ] + ], + {} + ] + ], + "header-length-002.xht": [ + "100514a1aed3d4d24018ed505fc4cc9687499db8", + [ + null, [ - null, [ - [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", - "==" - ] - ], - {} - ] - ], - "table-height-algorithm-008a.xht": [ - "eaaf04f759be858bbe0d8b103930748bfd4bf1e7", + "/css/WOFF2/header-length-002-ref.xht", + "==" + ] + ], + {} + ] + ], + "header-numTables-001.xht": [ + "b024f83d3f2b885cd738dc1d588b40007d25d577", + [ + null, [ - null, [ - [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "table-height-algorithm-008b.xht": [ - "a0e811ad3d63476bc174efd7637128ef9c761334", + "/css/WOFF2/header-numTables-001-ref.xht", + "==" + ] + ], + {} + ] + ], + "header-reserved-001.xht": [ + "15b540418d43a1a13aea35381466f6371b9636ea", + [ + null, [ - null, [ - [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "table-height-algorithm-008c.xht": [ - "092e7cf0fc7fac3d47fa44df0668a358b4979a57", + "/css/WOFF2/header-reserved-001-ref.xht", + "==" + ] + ], + {} + ] + ], + "header-signature-001.xht": [ + "5ae39feb03e1c0c79b971791580cd2fd8416b5da", + [ + null, [ - null, [ - [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "table-layout-applies-to-016.xht": [ - "45d16291fe4e982529b2b638060868ccc4421990", + "/css/WOFF2/header-signature-001-ref.xht", + "==" + ] + ], + {} + ] + ], + "header-totalsfntsize-001.xht": [ + "769343b6617bef38adf98a86e40f996efae14683", + [ + null, [ - null, [ - [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", - "==" - ] - ], - {} - ] - ], - "table-margin-004.xht": [ - "8a68253f7247cadf2503a237cc0f371f01a99aa8", + "/css/WOFF2/header-totalsfntsize-001-ref.xht", + "==" + ] + ], + {} + ] + ], + "header-totalsfntsize-002.xht": [ + "7821f073cda0a251d4922df293b904e6a2bd2c29", + [ + null, [ - null, [ - [ - "/css/CSS2/tables/reference/table-margin-004-ref.xht", - "==" - ] - ], - {} - ] - ], - "table-vertical-align-baseline-001.xht": [ - "1862eb41f7f14cb6f77320f6e1e3fa7986c9ff00", + "/css/WOFF2/header-totalsfntsize-002-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadata-noeffect-001.xht": [ + "d63472b3b4952511c892e7010187c3c0f8aadcd3", + [ + null, [ - null, [ - [ - "/css/CSS2/tables/table-vertical-align-baseline-001-ref.xht", - "==" - ] - ], - {} - ] - ], - "table-vertical-align-baseline-002.xht": [ - "146c6cce302a3efcca13589084267eaebca47abb", + "/css/WOFF2/metadata-noeffect-001-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadata-noeffect-002.xht": [ + "a1bedf2e1b1009e6ded661979c2fb4103eb0db53", + [ + null, [ - null, [ - [ - "/css/CSS2/tables/table-vertical-align-baseline-001-ref.xht", - "==" - ] - ], - {} - ] - ], - "table-vertical-align-baseline-003.xht": [ - "d63cb07dc726ca686cb13563c9df6ab596b2bf13", + "/css/WOFF2/metadata-noeffect-002-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-authoritative-001.xht": [ + "5a4f64384e352d493fea686d750d9f36bba147b5", + [ + null, [ - null, [ - [ - "/css/CSS2/tables/table-vertical-align-baseline-001-ref.xht", - "==" - ] - ], - {} - ] - ], - "table-vertical-align-baseline-004.xht": [ - "6e56d07179ab0c5ce3bd398b6d0beb45ab1ca2ef", + "/css/WOFF2/metadatadisplay-authoritative-001-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-encoding-001.xht": [ + "5a50ae8559a40697353a4c232a48ee6f81d846e8", + [ + null, [ - null, [ - [ - "/css/CSS2/tables/table-vertical-align-baseline-001-ref.xht", - "==" - ] - ], - {} - ] - ], - "table-vertical-align-baseline-005.xht": [ - "8b728bee6d4db318492f281a19e6d77ad9b2a18d", + "/css/WOFF2/metadatadisplay-encoding-001-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-encoding-002.xht": [ + "1cec6e1240c57aedb05e48c70297efc331513164", + [ + null, [ - null, [ - [ - "/css/CSS2/tables/table-vertical-align-baseline-001-ref.xht", - "==" - ] - ], - {} - ] - ], - "table-vertical-align-baseline-006.xht": [ - "9392d7ee6784e87e696043d5d97a8c0564790545", + "/css/WOFF2/metadatadisplay-encoding-002-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-encoding-003.xht": [ + "ce82fb1559815346ea78f645a624f0d60cc88aad", + [ + null, [ - null, [ - [ - "/css/CSS2/tables/table-vertical-align-baseline-001-ref.xht", - "==" - ] - ], - {} - ] - ], - "table-vertical-align-baseline-007.xht": [ - "c85e389fcffef4a527832f0537eb31f8e5cabb48", + "/css/WOFF2/metadatadisplay-encoding-003-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-encoding-004.xht": [ + "a9d206ab1de180ad0ee8d0c14db07c50e03ab856", + [ + null, [ - null, [ - [ - "/css/CSS2/tables/table-vertical-align-baseline-001-ref.xht", - "==" - ] - ], - {} - ] - ], - "table-visual-layout-017.xht": [ - "25067cb68385a520a10a31949d742b520c7e9cd6", + "/css/WOFF2/metadatadisplay-encoding-004-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-encoding-005.xht": [ + "ada1e0ed0c8a5bbc8ff0825b2ed486f7c41322d5", + [ + null, [ - null, [ - [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", - "==" - ] - ], - {} - ] - ], - "table-visual-layout-018.xht": [ - "1fa28c1d87e77ff779b5b78a65bf49f0524dd084", + "/css/WOFF2/metadatadisplay-encoding-005-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-encoding-006.xht": [ + "b3580dc5a05dc70fc50922afebe6fbc9f7e5c931", + [ + null, [ - null, [ - [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", - "==" - ] - ], - {} - ] - ], - "table-visual-layout-026a.xht": [ - "844adddc40d0ac4c6a4c61e5d6004aa68379e58b", + "/css/WOFF2/metadatadisplay-encoding-006-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-copyright-001.xht": [ + "9471d401cebaa28731a0dd827b06def7240fd3a1", + [ + null, [ - null, [ - [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "table-visual-layout-026b.xht": [ - "6f92c8c33a6e6b60893f41a9f314d63a4685a8de", + "/css/WOFF2/metadatadisplay-schema-copyright-001-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-copyright-002.xht": [ + "8a9b7bbf66c1ad7efb929a3b795c70aed6791168", + [ + null, [ - null, [ - [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "table-visual-layout-026c.xht": [ - "780ced0cfd0d38dd5bd76144b9047d782e17bbe2", + "/css/WOFF2/metadatadisplay-schema-copyright-002-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-copyright-003.xht": [ + "d63a5bfbb2f74880db473d9e8f09de5d6a11facb", + [ + null, [ - null, [ - [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "table-visual-layout-026d.xht": [ - "d7f28131a3d9da47b24f4c2ed53626f56a44e8dc", + "/css/WOFF2/metadatadisplay-schema-copyright-003-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-copyright-004.xht": [ + "276dfc8528bd4ddb303ad98ce64d90c537987d95", + [ + null, [ - null, [ - [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] + "/css/WOFF2/metadatadisplay-schema-copyright-004-ref.xht", + "==" + ] + ], + {} ] - }, - "text": { - "bidi-flag-emoji-02.html": [ - "d6c92b903c6655670e7d38b279a245eda4c428e9", + ], + "metadatadisplay-schema-copyright-005.xht": [ + "662d57d0b7338ab52279f4db3386278434f2ce09", + [ + null, [ - null, [ - [ - "/css/CSS2/text/bidi-flag-emoji-02-ref.html", - "==" - ] - ], - {} - ] - ], - "bidi-flag-emoji.html": [ - "a184db265942723a7728030390cedf2eccaa15f2", + "/css/WOFF2/metadatadisplay-schema-copyright-005-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-copyright-006.xht": [ + "f8c1542aee11c7243ea47a7986c86ef589bf127e", + [ + null, [ - null, [ - [ - "/css/CSS2/text/bidi-flag-emoji-ref.html", - "==" - ] - ], - {} - ] - ], - "bidi-span-001.html": [ - "b645a2b548c46b064b1a5f3012240a3947c772b9", + "/css/WOFF2/metadatadisplay-schema-copyright-006-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-copyright-007.xht": [ + "aa187eade3d25187ba58094f9a3e1f9fc58289ab", + [ + null, [ - null, [ - [ - "/css/CSS2/text/bidi-span-001-ref.html", - "==" - ] - ], - {} - ] - ], - "bidi-span-002.html": [ - "d4fc6de070d23ebe8817e9a299c44e48cad256a9", + "/css/WOFF2/metadatadisplay-schema-copyright-007-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-copyright-008.xht": [ + "81fb1bf045d2ba5ec0294cc036b5d043385a8bdd", + [ + null, [ - null, [ - [ - "/css/CSS2/text/bidi-span-002-ref.html", - "==" - ] - ], - {} - ] - ], - "bidi-span-003.html": [ - "92a90d529c5a10ff099a03a3133f6c96c5b4d91c", + "/css/WOFF2/metadatadisplay-schema-copyright-008-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-copyright-009.xht": [ + "49f8e86e23ea617ce47c4f1eae4fbcd237ee5fe8", + [ + null, [ - null, [ - [ - "/css/CSS2/text/bidi-span-003-ref.html", - "==" - ] - ], - {} - ] - ], - "letter-spacing-004.xht": [ - "ff85e03f75e7dc372259fe1e6fe3b7b59e101277", + "/css/WOFF2/metadatadisplay-schema-copyright-009-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-copyright-010.xht": [ + "ba21b4fe9c6fcfc83bb736a572c10ce0929375f0", + [ + null, [ - null, [ - [ - "/css/CSS2/text/letter-spacing-004-ref.xht", - "==" - ] - ], - {} - ] - ], - "letter-spacing-005.xht": [ - "b89ab05edd2c442b18307ee31708799c94c937d5", + "/css/WOFF2/metadatadisplay-schema-copyright-010-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-copyright-011.xht": [ + "db20d27ac5c8a83e0925483b03bf988776fd89e6", + [ + null, [ - null, [ - [ - "/css/CSS2/text/letter-spacing-004-ref.xht", - "==" - ] - ], - {} - ] - ], - "letter-spacing-006.xht": [ - "05dcadf4f0cf3648e57544001863e696649eff4b", + "/css/WOFF2/metadatadisplay-schema-copyright-011-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-copyright-012.xht": [ + "c2e156cd37f59bfe8f856d649b6e6965f9a3380f", + [ + null, [ - null, [ - [ - "/css/CSS2/text/letter-spacing-004-ref.xht", - "==" - ] - ], - {} - ] - ], - "letter-spacing-007.xht": [ - "03e0aa8c378b76d3651d8f3efacbeafef5261a88", + "/css/WOFF2/metadatadisplay-schema-copyright-012-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-copyright-013.xht": [ + "e52f935e27ef22232ea909324d52e7093d93c15f", + [ + null, [ - null, [ - [ - "/css/CSS2/text/letter-spacing-007-ref.xht", - "==" - ] - ], - {} - ] - ], - "letter-spacing-008.xht": [ - "f3f565d304a0fa09634bdde77fc550bc058da07c", + "/css/WOFF2/metadatadisplay-schema-copyright-013-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-copyright-014.xht": [ + "19b4b2c90b4ae410d0f9f20b4151ce97f7cedb02", + [ + null, [ - null, [ - [ - "/css/CSS2/text/letter-spacing-007-ref.xht", - "==" - ] - ], - {} - ] - ], - "letter-spacing-016.xht": [ - "ae5e20cdcd1a2af0dbc1c9c2fd3095ab1f65d169", + "/css/WOFF2/metadatadisplay-schema-copyright-014-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-copyright-015.xht": [ + "227dd39cc89786751c148b7f8d3d248e4305a3c7", + [ + null, [ - null, [ - [ - "/css/CSS2/text/letter-spacing-004-ref.xht", - "==" - ] - ], - {} - ] - ], - "letter-spacing-017.xht": [ - "31f74f4fc99895cb3aa51800c77538e4046b3ab9", + "/css/WOFF2/metadatadisplay-schema-copyright-015-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-copyright-016.xht": [ + "5e1d69fe3581055b52096236c66f4d73f17f31c5", + [ + null, [ - null, [ - [ - "/css/CSS2/text/letter-spacing-004-ref.xht", - "==" - ] - ], - {} - ] - ], - "letter-spacing-018.xht": [ - "4aeadbc58c1b583709de03e67b9a9ad94e3f8b7e", + "/css/WOFF2/metadatadisplay-schema-copyright-016-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-copyright-017.xht": [ + "b8b1bea7540d850fc279e1493d6d0089703a78ab", + [ + null, [ - null, [ - [ - "/css/CSS2/text/letter-spacing-004-ref.xht", - "==" - ] - ], - {} - ] - ], - "letter-spacing-019.xht": [ - "be0005ff5f8c143332b33ff7572f1e01ede87f46", + "/css/WOFF2/metadatadisplay-schema-copyright-017-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-copyright-018.xht": [ + "e478d49405e81db62ae4984a26820ac16dd1efcc", + [ + null, [ - null, [ - [ - "/css/CSS2/text/letter-spacing-007-ref.xht", - "==" - ] - ], - {} - ] - ], - "letter-spacing-020.xht": [ - "81bbc601ef1e66d8358d091cc80e39df48116fbc", + "/css/WOFF2/metadatadisplay-schema-copyright-018-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-copyright-019.xht": [ + "908710db9f2612e272268ab67b04813c96311abb", + [ + null, [ - null, [ - [ - "/css/CSS2/text/letter-spacing-007-ref.xht", - "==" - ] - ], - {} - ] - ], - "letter-spacing-028.xht": [ - "c870581c69fb1d04b7c7843ef9d3001b725f0e24", + "/css/WOFF2/metadatadisplay-schema-copyright-019-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-copyright-020.xht": [ + "36f71ae017237c702116415b48a4f089302b21e2", + [ + null, [ - null, [ - [ - "/css/CSS2/text/letter-spacing-004-ref.xht", - "==" - ] - ], - {} - ] - ], - "letter-spacing-029.xht": [ - "7a6e2e741871bf2e645271251946afc109978dca", + "/css/WOFF2/metadatadisplay-schema-copyright-020-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-copyright-021.xht": [ + "0b1b864308bf95ae769899aee01ff75f841045c9", + [ + null, [ - null, [ - [ - "/css/CSS2/text/letter-spacing-004-ref.xht", - "==" - ] - ], - {} - ] - ], - "letter-spacing-030.xht": [ - "e8235d80196299aefb8d2f2285d4af1bedab5dbc", + "/css/WOFF2/metadatadisplay-schema-copyright-021-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-copyright-022.xht": [ + "765fe623162370e5eadea293d44a625a195f9af6", + [ + null, [ - null, [ - [ - "/css/CSS2/text/letter-spacing-004-ref.xht", - "==" - ] - ], - {} - ] - ], - "letter-spacing-031.xht": [ - "9bde6686e3f94de2814c093c77d86e11bf7ecf39", + "/css/WOFF2/metadatadisplay-schema-copyright-022-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-copyright-023.xht": [ + "fca660ed287d79713c47d8bcd2c3e6385bd114e5", + [ + null, [ - null, [ - [ - "/css/CSS2/text/letter-spacing-007-ref.xht", - "==" - ] - ], - {} - ] - ], - "letter-spacing-032.xht": [ - "522703fd6ed1dbc5ea3a5568df73cc82a276ac02", + "/css/WOFF2/metadatadisplay-schema-copyright-023-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-copyright-024.xht": [ + "aa911a252549ad0e24adf432371d5438180b4135", + [ + null, [ - null, [ - [ - "/css/CSS2/text/letter-spacing-007-ref.xht", - "==" - ] - ], - {} - ] - ], - "letter-spacing-040.xht": [ - "2fd455096b14339cf15ac17b80182ee93bdb1f5c", + "/css/WOFF2/metadatadisplay-schema-copyright-024-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-copyright-025.xht": [ + "5f37b4c0b87295a6f2f694011bb0a0a5739bf1f7", + [ + null, [ - null, [ - [ - "/css/CSS2/text/letter-spacing-004-ref.xht", - "==" - ] - ], - {} - ] - ], - "letter-spacing-041.xht": [ - "a46e272070240c411fa5f857e395bbb07eac7229", + "/css/WOFF2/metadatadisplay-schema-copyright-025-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-copyright-026.xht": [ + "7ac2efd3e29afd5af165bee02771dc1c9b9c1fe9", + [ + null, [ - null, [ - [ - "/css/CSS2/text/letter-spacing-004-ref.xht", - "==" - ] - ], - {} - ] - ], - "letter-spacing-042.xht": [ - "c414cf33b7b89368ed0155ca7c5c7b871ee1b3f9", + "/css/WOFF2/metadatadisplay-schema-copyright-026-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-copyright-027.xht": [ + "be6655ce0e962ff38a78533ab9db01aca6faf706", + [ + null, [ - null, [ - [ - "/css/CSS2/text/letter-spacing-004-ref.xht", - "==" - ] - ], - {} - ] - ], - "letter-spacing-043.xht": [ - "e878faed257657a864247412a92d02ed7e77be61", + "/css/WOFF2/metadatadisplay-schema-copyright-027-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-copyright-028.xht": [ + "16795ad55843a698d79d6156e8f3ff826c24af92", + [ + null, [ - null, [ - [ - "/css/CSS2/text/letter-spacing-007-ref.xht", - "==" - ] - ], - {} - ] - ], - "letter-spacing-044.xht": [ - "90a162443a3362ee695caef1333f7cc11abdaadf", + "/css/WOFF2/metadatadisplay-schema-copyright-028-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-copyright-029.xht": [ + "ef827f1af8c88035d7d358a04455cf9509d60d0e", + [ + null, [ - null, [ - [ - "/css/CSS2/text/letter-spacing-007-ref.xht", - "==" - ] - ], - {} - ] - ], - "letter-spacing-052.xht": [ - "5165ac8f763e8a68edfcd7f8c7169ede1070c3ec", + "/css/WOFF2/metadatadisplay-schema-copyright-029-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-copyright-030.xht": [ + "4987376bbca4b72efb3b5e251ce7d2435be828b6", + [ + null, [ - null, [ - [ - "/css/CSS2/text/letter-spacing-004-ref.xht", - "==" - ] - ], - {} - ] - ], - "letter-spacing-053.xht": [ - "de646f4818cd960d3b066b07f735fa384d5de751", + "/css/WOFF2/metadatadisplay-schema-copyright-030-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-credit-001.xht": [ + "f2036e0c9ad019acc913ed6e6e18d6c9e7ab12bd", + [ + null, [ - null, [ - [ - "/css/CSS2/text/letter-spacing-004-ref.xht", - "==" - ] - ], - {} - ] - ], - "letter-spacing-054.xht": [ - "a270f01615459b3ca2d3123b078e04a214a89478", + "/css/WOFF2/metadatadisplay-schema-credit-001-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-credit-002.xht": [ + "1bedbe511527d5ccc87f44f73b222e263fccbd79", + [ + null, [ - null, [ - [ - "/css/CSS2/text/letter-spacing-004-ref.xht", - "==" - ] - ], - {} - ] - ], - "letter-spacing-055.xht": [ - "dfe0e85edfc3c13a053bff56f0aec0ecb259f715", + "/css/WOFF2/metadatadisplay-schema-credit-002-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-credit-003.xht": [ + "755ec761ee20365ea177f3364134fec2aa2ed18e", + [ + null, [ - null, [ - [ - "/css/CSS2/text/letter-spacing-007-ref.xht", - "==" - ] - ], - {} - ] - ], - "letter-spacing-056.xht": [ - "4af2a1a43d10764615bc299d3ba0eaccfade3ae2", + "/css/WOFF2/metadatadisplay-schema-credit-003-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-credit-004.xht": [ + "0342c6d007e349f7622ef6f23694e0c4eb3efca1", + [ + null, [ - null, [ - [ - "/css/CSS2/text/letter-spacing-007-ref.xht", - "==" - ] - ], - {} - ] - ], - "letter-spacing-064.xht": [ - "03e45ca3c2551e6323a66c5bf654522cba5791c9", + "/css/WOFF2/metadatadisplay-schema-credit-004-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-credit-005.xht": [ + "ec016921bd82636c5c3657ce53a5bb0fd01819c7", + [ + null, [ - null, [ - [ - "/css/CSS2/text/letter-spacing-004-ref.xht", - "==" - ] - ], - {} - ] - ], - "letter-spacing-065.xht": [ - "6fd4912d3e2ac120076a8b41faad120f70497f0c", + "/css/WOFF2/metadatadisplay-schema-credit-005-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-credit-006.xht": [ + "fe5901933fb89ade4dd647005edff81f85eeadf0", + [ + null, [ - null, [ - [ - "/css/CSS2/text/letter-spacing-004-ref.xht", - "==" - ] - ], - {} - ] - ], - "letter-spacing-066.xht": [ - "4493a67c6bd80c9a9dd0c69e6b1e1ca754556f73", + "/css/WOFF2/metadatadisplay-schema-credit-006-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-credit-007.xht": [ + "eba69ef054b451ac90b90f7ab3eb0ad2826114df", + [ + null, [ - null, [ - [ - "/css/CSS2/text/letter-spacing-004-ref.xht", - "==" - ] - ], - {} - ] - ], - "letter-spacing-067.xht": [ - "02b81df92d92a0db02459a880b918267fdbb69e4", + "/css/WOFF2/metadatadisplay-schema-credit-007-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-credit-008.xht": [ + "dde83aada4ab96eff7822876ff70d588b4fabbc2", + [ + null, [ - null, [ - [ - "/css/CSS2/text/letter-spacing-007-ref.xht", - "==" - ] - ], - {} - ] - ], - "letter-spacing-068.xht": [ - "a057b7eb36f01d2904c453c11cd8215ec0f45c2b", + "/css/WOFF2/metadatadisplay-schema-credit-008-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-credit-009.xht": [ + "dfc9fefabc1c8fee88f54a38213f4831728e666c", + [ + null, [ - null, [ - [ - "/css/CSS2/text/letter-spacing-007-ref.xht", - "==" - ] - ], - {} - ] - ], - "letter-spacing-076.xht": [ - "c288610e7893fb7effbb24a565f8369034ca56ce", + "/css/WOFF2/metadatadisplay-schema-credit-009-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-credit-010.xht": [ + "236a8abb939d08b5e9abd311adc1a6275ee15efe", + [ + null, [ - null, [ - [ - "/css/CSS2/text/letter-spacing-004-ref.xht", - "==" - ] - ], - {} - ] - ], - "letter-spacing-077.xht": [ - "1b90dfd51fdf245d01fb3b30d9a6ae43d2e425f1", + "/css/WOFF2/metadatadisplay-schema-credit-010-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-credit-011.xht": [ + "5e96f4ebac681ac1a2bf3b49baad781f01097c8c", + [ + null, [ - null, [ - [ - "/css/CSS2/text/letter-spacing-004-ref.xht", - "==" - ] - ], - {} - ] - ], - "letter-spacing-078.xht": [ - "2ec940493e93417c2c13f82cd4f60af574b6c8fc", + "/css/WOFF2/metadatadisplay-schema-credit-011-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-credits-001.xht": [ + "0426902a005ec38e3daa2217b9a104728a22e444", + [ + null, [ - null, [ - [ - "/css/CSS2/text/letter-spacing-004-ref.xht", - "==" - ] - ], - {} - ] - ], - "letter-spacing-079.xht": [ - "31d5612b62a9d292663f9880150adb45356ed54f", + "/css/WOFF2/metadatadisplay-schema-credits-001-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-credits-002.xht": [ + "d03b025759bb0e48a75d939285ff12764315a1e4", + [ + null, [ - null, [ - [ - "/css/CSS2/text/letter-spacing-079-ref.xht", - "==" - ] - ], - {} - ] - ], - "letter-spacing-080.xht": [ - "642497e9f75a90fe3a0be1a2ea3bace114c8d1df", + "/css/WOFF2/metadatadisplay-schema-credits-002-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-credits-003.xht": [ + "3c022483b83c9b15feabeaf2abee1e88b9b75c2c", + [ + null, [ - null, [ - [ - "/css/CSS2/text/letter-spacing-007-ref.xht", - "==" - ] - ], - {} - ] - ], - "letter-spacing-088.xht": [ - "b159cb5adb9e4cacbe6109e321f62a0efe7d1f4b", + "/css/WOFF2/metadatadisplay-schema-credits-003-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-credits-004.xht": [ + "d4c61c5e30b497bcd9c31c5048dadb0ddf342d75", + [ + null, [ - null, [ - [ - "/css/CSS2/text/letter-spacing-004-ref.xht", - "==" - ] - ], - {} - ] - ], - "letter-spacing-089.xht": [ - "56ea784aefee11175889733b3d57c9ef36660165", + "/css/WOFF2/metadatadisplay-schema-credits-004-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-credits-005.xht": [ + "fca34323785f4e4c9e137e0cbfbf729147bf7107", + [ + null, [ - null, [ - [ - "/css/CSS2/text/letter-spacing-004-ref.xht", - "==" - ] - ], - {} - ] - ], - "letter-spacing-090.xht": [ - "5d0159532a8ea622879862601d7ffbc5800b206f", + "/css/WOFF2/metadatadisplay-schema-credits-005-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-credits-006.xht": [ + "fa049ab44533f5d0015940b53884f188c258bfbe", + [ + null, [ - null, [ - [ - "/css/CSS2/text/letter-spacing-004-ref.xht", - "==" - ] - ], - {} - ] - ], - "letter-spacing-091.xht": [ - "e444b75033e2bd0fb4e8bb79d4b9110c836fff30", + "/css/WOFF2/metadatadisplay-schema-credits-006-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-credits-007.xht": [ + "679eb3501ca94abf4d1fd6aa3336eaa0530db6de", + [ + null, [ - null, [ - [ - "/css/CSS2/text/letter-spacing-091-ref.xht", - "==" - ] - ], - {} - ] - ], - "letter-spacing-092.xht": [ - "1e3856aac418c1fca357ea91f488e2a985606ac9", + "/css/WOFF2/metadatadisplay-schema-credits-007-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-description-001.xht": [ + "9037a5187f3f0106063b63777d02fa80159562ea", + [ + null, [ - null, [ - [ - "/css/CSS2/text/letter-spacing-091-ref.xht", - "==" - ] - ], - {} - ] - ], - "letter-spacing-097.xht": [ - "01b2317c7c7206456b563720e3a8ab59c879fb3c", + "/css/WOFF2/metadatadisplay-schema-description-001-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-description-002.xht": [ + "81f1aba207c27a99c31088d2e55d896fcc819c58", + [ + null, [ - null, [ - [ - "/css/CSS2/text/letter-spacing-004-ref.xht", - "==" - ] - ], - {} - ] - ], - "letter-spacing-098.xht": [ - "20d456aa12292bcf7a456b636f14bdd0e8238b95", + "/css/WOFF2/metadatadisplay-schema-description-002-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-description-003.xht": [ + "9c3f097ea996d13e2dd4eac6f31fbdf12c239225", + [ + null, [ - null, [ - [ - "/css/CSS2/text/letter-spacing-004-ref.xht", - "==" - ] - ], - {} - ] - ], - "letter-spacing-099.xht": [ - "bef4b1283596e220235a716c7821779a583bf9c5", + "/css/WOFF2/metadatadisplay-schema-description-003-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-description-004.xht": [ + "59b4b0761ba8fce66cda62bf990d2a8258502d59", + [ + null, [ - null, [ - [ - "/css/CSS2/text/letter-spacing-004-ref.xht", - "==" - ] - ], - {} - ] - ], - "letter-spacing-100.xht": [ - "cee3f3f375f0c7d05de56227f636befa37b52baf", + "/css/WOFF2/metadatadisplay-schema-description-004-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-description-005.xht": [ + "db67c98b7344dd80de4b9d8336f4a1b9e6138e27", + [ + null, [ - null, [ - [ - "/css/CSS2/text/letter-spacing-004-ref.xht", - "==" - ] - ], - {} - ] - ], - "letter-spacing-101.xht": [ - "af1e89d5f2dc4fbbffa299f8d0406f2e549930cc", + "/css/WOFF2/metadatadisplay-schema-description-005-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-description-006.xht": [ + "7983a22be93f35e4288c58d608ba49ce06e8671c", + [ + null, [ - null, [ - [ - "/css/CSS2/text/letter-spacing-007-ref.xht", - "==" - ] - ], - {} - ] - ], - "letter-spacing-102.xht": [ - "10dbe4609eb0f9cce3be745cee40f6d90e59d5cf", + "/css/WOFF2/metadatadisplay-schema-description-006-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-description-007.xht": [ + "b79c27615b396db3571167edfa0080c7a564be45", + [ + null, [ - null, [ - [ - "/css/CSS2/text/letter-spacing-102-ref.xht", - "==" - ] - ], - {} - ] - ], - "letter-spacing-applies-to-001.xht": [ - "a37396710a87e6bf46115a9950efb1085526976f", + "/css/WOFF2/metadatadisplay-schema-description-007-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-description-008.xht": [ + "1f8284db1f4714e7c36ed48e24b966f319461907", + [ + null, [ - null, [ - [ - "/css/reference/black_box_ends_when_blue_box_ends_6_boxes_ahem.html", - "==" - ] - ], - {} - ] - ], - "letter-spacing-applies-to-002.xht": [ - "6930c238145a4674a5e3d81631706275861a9abf", + "/css/WOFF2/metadatadisplay-schema-description-008-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-description-009.xht": [ + "e412d8bfd49b968edd2294578457c886ca80e627", + [ + null, [ - null, [ - [ - "/css/reference/black_box_ends_when_blue_box_ends_6_boxes_ahem.html", - "==" - ] - ], - {} - ] - ], - "letter-spacing-applies-to-003.xht": [ - "3e481c8f2505306789ea157c3b1549f92af2b587", + "/css/WOFF2/metadatadisplay-schema-description-009-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-description-010.xht": [ + "7efc023847e5959c0c0df947fa4d84d4cab5ecaa", + [ + null, [ - null, [ - [ - "/css/CSS2/text/letter-spacing-applies-to-003-ref.xht", - "==" - ] - ], - {} - ] - ], - "letter-spacing-applies-to-005.xht": [ - "02d9882d5d1c6590d390a22f57c3c614e6f07f33", + "/css/WOFF2/metadatadisplay-schema-description-010-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-description-011.xht": [ + "a2ea3832b0e0b60150f409e0d14aadde740108ad", + [ + null, [ - null, [ - [ - "/css/CSS2/text/letter-spacing-applies-to-005-ref.xht", - "==" - ] - ], - {} - ] - ], - "letter-spacing-applies-to-006.xht": [ - "4ed48828bfc94edd95f39db6dc43d99b46a78c97", + "/css/WOFF2/metadatadisplay-schema-description-011-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-description-012.xht": [ + "36805634b27e48203907deded0cf930c5b02d91b", + [ + null, [ - null, [ - [ - "/css/reference/black_box_ends_when_blue_box_ends_6_boxes_ahem.html", - "==" - ] - ], - {} - ] - ], - "letter-spacing-applies-to-007.xht": [ - "40667d89579df774035d13349a0dd7105f9cee90", + "/css/WOFF2/metadatadisplay-schema-description-012-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-description-013.xht": [ + "727ca4d292b48e350f99de6e919718261cd98f2c", + [ + null, [ - null, [ - [ - "/css/CSS2/text/letter-spacing-applies-to-007-ref.xht", - "==" - ] - ], - {} - ] - ], - "letter-spacing-applies-to-008.xht": [ - "2cc52bf39dbd1aa465553e4492e4d4545bd3356f", + "/css/WOFF2/metadatadisplay-schema-description-013-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-description-014.xht": [ + "945f1fe2c67ce7a0ff87f292b619c2fb08c92c37", + [ + null, [ - null, [ - [ - "/css/reference/black_box_ends_when_blue_box_ends_6_boxes_ahem.html", - "==" - ] - ], - {} - ] - ], - "letter-spacing-applies-to-009.xht": [ - "e857ad99c2b78efd2e41388028d3f2bfd86c0364", + "/css/WOFF2/metadatadisplay-schema-description-014-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-description-015.xht": [ + "1da62452cc70393a2723e9b270c52e59d2ac4dd7", + [ + null, [ - null, [ - [ - "/css/reference/black_box_ends_when_blue_box_ends_6_boxes_ahem.html", - "==" - ] - ], - {} - ] - ], - "letter-spacing-applies-to-010.xht": [ - "606a0ef1d90fb8171965fc86f0b8277a1e62c486", + "/css/WOFF2/metadatadisplay-schema-description-015-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-description-016.xht": [ + "76e0ddb51a70e3447dd3aed1d111a8564865be19", + [ + null, [ - null, [ - [ - "/css/reference/black_box_ends_when_blue_box_ends_6_boxes_ahem.html", - "==" - ] - ], - {} - ] - ], - "letter-spacing-applies-to-011.xht": [ - "ed77a6ec753ebc84e90927112cb5c78fb311c134", + "/css/WOFF2/metadatadisplay-schema-description-016-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-description-017.xht": [ + "5135914740c259d489c5fc2715b5ef7002df3ec5", + [ + null, [ - null, [ - [ - "/css/reference/black_box_ends_when_blue_box_ends_6_boxes_ahem.html", - "==" - ] - ], - {} - ] - ], - "letter-spacing-applies-to-012.xht": [ - "54ec3074c245a15bb44900e673e39c0b0abcd49a", + "/css/WOFF2/metadatadisplay-schema-description-017-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-description-018.xht": [ + "29c21582a1621e00a8cbcfcc962188e0bd19c4de", + [ + null, [ - null, [ - [ - "/css/CSS2/text/letter-spacing-applies-to-012-ref.xht", - "==" - ] - ], - {} - ] - ], - "letter-spacing-applies-to-013.xht": [ - "bfa6e025f6ac02dcc5261df3c31c101aa54f47f1", + "/css/WOFF2/metadatadisplay-schema-description-018-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-description-019.xht": [ + "cd8595359d7afec11a6880fe12b5514b87dd12e1", + [ + null, [ - null, [ - [ - "/css/CSS2/text/letter-spacing-applies-to-012-ref.xht", - "==" - ] - ], - {} - ] - ], - "letter-spacing-applies-to-014.xht": [ - "5660b911b2662c1438bdd737d517f2a922eb0f71", + "/css/WOFF2/metadatadisplay-schema-description-019-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-description-020.xht": [ + "bbf9fa62e26de1adc39747c41e3490e3221bf454", + [ + null, [ - null, [ - [ - "/css/reference/black_box_ends_when_blue_box_ends_6_boxes_ahem.html", - "==" - ] - ], - {} - ] - ], - "letter-spacing-applies-to-015.xht": [ - "f329cae7fac9b4937acd6b5510ef908bbde0c0e5", + "/css/WOFF2/metadatadisplay-schema-description-020-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-description-021.xht": [ + "719f48b599f4148b42ebf596cedbf30596dc3f8a", + [ + null, [ - null, [ - [ - "/css/reference/black_box_ends_when_blue_box_ends_6_boxes_ahem.html", - "==" - ] - ], - {} - ] - ], - "letter-spacing-justify-001.xht": [ - "db70f3d548f7c37fe051c45e55519182a67f8c0a", + "/css/WOFF2/metadatadisplay-schema-description-021-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-description-022.xht": [ + "3a24b993a97e94847f89184f6c2ec49c3d4bf560", + [ + null, [ - null, [ - [ - "/css/CSS2/text/letter-spacing-justify-001-ref.xht", - "==" - ] - ], - {} - ] - ], - "painting-order-underline-001.xht": [ - "9c01cbaa18a46939840d3aa0f31d2b36bfc4d2e3", + "/css/WOFF2/metadatadisplay-schema-description-022-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-description-023.xht": [ + "2ce0cb87f028714f77518f11c711505ed1511f61", + [ + null, [ - null, [ - [ - "/css/CSS2/text/painting-order-underline-001-ref.xht", - "==" - ] - ], - {} - ] - ], - "text-align-bidi-011.xht": [ - "32d8e819633c4392a03653387ea799d8cf27845c", + "/css/WOFF2/metadatadisplay-schema-description-023-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-description-024.xht": [ + "cf108b762c679e2ed11b247efdf66efeb2c70b97", + [ + null, [ - null, [ - [ - "/css/CSS2/text/text-align-bidi-011-ref.xht", - "==" - ] - ], - {} - ] - ], - "text-align-white-space-001.xht": [ - "85d62902f4070db368403973dad91ca04c498118", + "/css/WOFF2/metadatadisplay-schema-description-024-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-description-025.xht": [ + "c825aeb51c029a9927b6a3b7e72231ebbe09747e", + [ + null, [ - null, [ - [ - "/css/CSS2/text/text-align-white-space-001-ref.xht", - "==" - ] - ], - {} - ] - ], - "text-align-white-space-002.xht": [ - "4b2ce08ffc3d13a51862c35fc603d51cbb2456e3", + "/css/WOFF2/metadatadisplay-schema-description-025-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-description-026.xht": [ + "741cd98ac8ff7910cf55f0bd6274dd4c168c519d", + [ + null, [ - null, [ - [ - "/css/CSS2/text/text-align-white-space-002-ref.xht", - "==" - ] - ], - {} - ] - ], - "text-align-white-space-004.xht": [ - "4d8f6b6f2646cda6d47eff7511f740944951369f", + "/css/WOFF2/metadatadisplay-schema-description-026-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-description-027.xht": [ + "64e0151cc64eccb6353f8ae9232de4708cf70ab5", + [ + null, [ - null, [ - [ - "/css/CSS2/text/text-align-white-space-004-ref.xht", - "==" - ] - ], - {} - ] - ], - "text-align-white-space-005.xht": [ - "623a6cbd7b3c65b82bc421941ab7db88d18c0575", + "/css/WOFF2/metadatadisplay-schema-description-027-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-description-028.xht": [ + "533f0681879e0ea450b4c4b03ed9b1d623400079", + [ + null, [ - null, [ - [ - "/css/CSS2/text/text-align-white-space-005-ref.xht", - "==" - ] - ], - {} - ] - ], - "text-align-white-space-006.xht": [ - "0171dc8645f3acbb4624b244b9f5a59ef2e9efd6", + "/css/WOFF2/metadatadisplay-schema-description-028-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-description-029.xht": [ + "442edc34548cc6b2dc94452560f59bfc109bf23d", + [ + null, [ - null, [ - [ - "/css/CSS2/text/text-align-white-space-002-ref.xht", - "==" - ] - ], - {} - ] - ], - "text-align-white-space-008.xht": [ - "410b551580f61c449d05d5de23bec1c5136f9868", + "/css/WOFF2/metadatadisplay-schema-description-029-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-description-030.xht": [ + "873e7b7e7fe1d35b1047752c530aa14777057275", + [ + null, [ - null, [ - [ - "/css/CSS2/text/text-align-white-space-008-ref.xht", - "==" - ] - ], - {} - ] - ], - "text-decoration-applies-to-001.xht": [ - "e7d7d0d9dbee36e2a2e208e739b55869b40d2533", + "/css/WOFF2/metadatadisplay-schema-description-030-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-description-031.xht": [ + "79650aed720edfecc435e9aa2695bdd3a269ae23", + [ + null, [ - null, [ - [ - "/css/reference/pass_if_filler_text_underlined.html", - "==" - ] - ], - {} - ] - ], - "text-decoration-applies-to-002.xht": [ - "39f1bb2fd2478c35eb6c0622420edd05f7cfe368", + "/css/WOFF2/metadatadisplay-schema-description-031-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-description-032.xht": [ + "f63c8049d4c04ec9f2300a49e79f3cdf879594ed", + [ + null, [ - null, [ - [ - "/css/reference/pass_if_filler_text_underlined.html", - "==" - ] - ], - {} - ] - ], - "text-decoration-applies-to-005.xht": [ - "19517eea0f7b5e27d0600e66351c84e1b9a062a0", + "/css/WOFF2/metadatadisplay-schema-description-032-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-extension-001.xht": [ + "580fdad9dcaf483aca6c24c235cde0f950330bcf", + [ + null, [ - null, [ - [ - "/css/reference/pass_if_filler_text_underlined.html", - "==" - ] - ], - {} - ] - ], - "text-decoration-applies-to-006.xht": [ - "6861936cd08c1ecfa76055cceb399fcaa513096f", + "/css/WOFF2/metadatadisplay-schema-extension-001-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-extension-002.xht": [ + "a5699d9388db78b344c39f41b139268515590a06", + [ + null, [ - null, [ - [ - "/css/reference/pass_if_filler_text_underlined.html", - "==" - ] - ], - {} - ] - ], - "text-decoration-applies-to-007.xht": [ - "686b7316e6882fea948639916a3dfb3b1057ecfc", + "/css/WOFF2/metadatadisplay-schema-extension-002-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-extension-003.xht": [ + "0d232649948e732637810f211a9c3223e9f2a11d", + [ + null, [ - null, [ - [ - "/css/reference/pass_if_filler_text_underlined.html", - "==" - ] - ], - {} - ] - ], - "text-decoration-applies-to-008.xht": [ - "e6b5252bfe5bffe0bc12413d62fc6ebab6be8eeb", + "/css/WOFF2/metadatadisplay-schema-extension-003-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-extension-004.xht": [ + "193d3bc32024efafc231156e85d1842581d096c1", + [ + null, [ - null, [ - [ - "/css/reference/pass_if_filler_text_underlined.html", - "==" - ] - ], - {} - ] - ], - "text-decoration-applies-to-009.xht": [ - "78239024fb46f9d49d29392a09560d0c377bcd61", + "/css/WOFF2/metadatadisplay-schema-extension-004-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-extension-005.xht": [ + "b5de63fdecd853afa42adb1592e05d95f0edc5f0", + [ + null, [ - null, [ - [ - "/css/reference/pass_if_filler_text_underlined.html", - "==" - ] - ], - {} - ] - ], - "text-decoration-applies-to-010.xht": [ - "72201cb6020564abc3a0f36b26d39671cc70a05a", + "/css/WOFF2/metadatadisplay-schema-extension-005-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-extension-006.xht": [ + "59080410caef48b2276e502f32dbafaff2f2aba2", + [ + null, [ - null, [ - [ - "/css/reference/pass_if_filler_text_underlined.html", - "==" - ] - ], - {} - ] - ], - "text-decoration-applies-to-011.xht": [ - "b174036da7645d673f876b83941450d54a1447eb", + "/css/WOFF2/metadatadisplay-schema-extension-006-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-extension-007.xht": [ + "8f5041de42637d92ca355ab9996efb441a865fd4", + [ + null, [ - null, [ - [ - "/css/reference/pass_if_filler_text_underlined.html", - "==" - ] - ], - {} - ] - ], - "text-decoration-applies-to-014.xht": [ - "a3031ef2bc6db7d0f1ede5797f16b78d25e8b596", + "/css/WOFF2/metadatadisplay-schema-extension-007-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-extension-008.xht": [ + "d89228937d4e9710774c7c2c2a221912d73ef1c3", + [ + null, [ - null, [ - [ - "/css/reference/pass_if_filler_text_underlined.html", - "==" - ] - ], - {} - ] - ], - "text-decoration-applies-to-015.xht": [ - "b61b7b6570002d2119023f52126abcf472334eec", + "/css/WOFF2/metadatadisplay-schema-extension-008-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-extension-009.xht": [ + "3e710a90cb96387ae55aed25dcc42323ed0b0795", + [ + null, [ - null, [ - [ - "/css/reference/pass_if_filler_text_underlined.html", - "==" - ] - ], - {} - ] - ], - "text-decoration-image-001.xht": [ - "3c17fa0828dcabd2d8e586a135524f7ae83ff159", + "/css/WOFF2/metadatadisplay-schema-extension-009-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-extension-010.xht": [ + "3fa5d219ee5e9958c8a98fd17048bf115b1d825d", + [ + null, [ - null, [ - [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", - "==" - ] - ], - {} - ] - ], - "text-decoration-va-length-001.xht": [ - "0f911fc74c43752c5e252bac1269786031f3995c", + "/css/WOFF2/metadatadisplay-schema-extension-010-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-extension-011.xht": [ + "e1ce7b12c0c446484ca4da754f4ca3d1551dc088", + [ + null, [ - null, [ - [ - "/css/CSS2/text/text-decoration-va-length-001-ref.xht", - "==" - ] - ], - {} - ] - ], - "text-decoration-va-length-002.xht": [ - "1d1e0d6f13be582524bceae24817dd0c75abb3d3", + "/css/WOFF2/metadatadisplay-schema-extension-011-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-extension-012.xht": [ + "bf60af8821e9a4ef8ce7ec3c3712b858eacc1e35", + [ + null, [ - null, [ - [ - "/css/CSS2/text/text-decoration-va-length-002-ref.xht", - "==" - ] - ], - {} - ] - ], - "text-indent-004.xht": [ - "b8195eff78080860335f7669cfb6bf3ef091f3c6", + "/css/WOFF2/metadatadisplay-schema-extension-012-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-extension-013.xht": [ + "a02b80f383f5cae3650805f587903ba27da9f66e", + [ + null, [ - null, [ - [ - "/css/CSS2/text/text-indent-004-ref.xht", - "==" - ] - ], - {} - ] - ], - "text-indent-005.xht": [ - "791f62268b0802d74eb4abb1fb5f6fdfac4ae68b", + "/css/WOFF2/metadatadisplay-schema-extension-013-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-extension-014.xht": [ + "717262ef213656faa2ca97ae444f6c926e1cdc75", + [ + null, [ - null, [ - [ - "/css/CSS2/text/text-indent-004-ref.xht", - "==" - ] - ], - {} - ] - ], - "text-indent-006.xht": [ - "da3a2478b2a616c38d1ae6c890936e4b654744b0", + "/css/WOFF2/metadatadisplay-schema-extension-014-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-extension-015.xht": [ + "0221c4f4dfadba4967f370df3884f7e38d8059fa", + [ + null, [ - null, [ - [ - "/css/CSS2/text/text-indent-004-ref.xht", - "==" - ] - ], - {} - ] - ], - "text-indent-007.xht": [ - "c957a782e9bfffa0a38d892137329d7ba0089cc2", + "/css/WOFF2/metadatadisplay-schema-extension-015-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-extension-016.xht": [ + "bb92c0f71efe624bdaaf121798edb5406c28b0aa", + [ + null, [ - null, [ - [ - "/css/CSS2/reference/pass_if_box_ahem.html", - "==" - ] - ], - {} - ] - ], - "text-indent-008.xht": [ - "cf6e1aadb9fd30ce955bf221c22bca36b78312e3", + "/css/WOFF2/metadatadisplay-schema-extension-016-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-extension-017.xht": [ + "153818839d897de73b980ad12899969f7626ce5a", + [ + null, [ - null, [ - [ - "/css/CSS2/reference/pass_if_box_ahem.html", - "==" - ] - ], - {} - ] - ], - "text-indent-010.xht": [ - "ace9a11aaf1c56ff3e2e7fb98dd91d6d6def6bb3", + "/css/WOFF2/metadatadisplay-schema-extension-017-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-extension-018.xht": [ + "0c2c8ac6483b4044200df536195313c081bfbaf5", + [ + null, [ - null, [ - [ - "/css/CSS2/text/text-indent-010-ref.xht", - "==" - ] - ], - {} - ] - ], - "text-indent-011.xht": [ - "3ddd12dc9c0960c2e7253a2a4c09a29ff9e8c824", + "/css/WOFF2/metadatadisplay-schema-extension-018-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-extension-019.xht": [ + "924ef85483660baec36539aaa3d013d98197b307", + [ + null, [ - null, [ - [ - "/css/CSS2/text/text-indent-011-ref.xht", - "==" - ] - ], - {} - ] - ], - "text-indent-012.xht": [ - "3ae96bbb350fc4b275945abae083fb1e2a721079", + "/css/WOFF2/metadatadisplay-schema-extension-019-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-extension-020.xht": [ + "c970a685ec07a5622178aae8cc6be39821cd2a77", + [ + null, [ - null, [ - [ - "/css/CSS2/text/text-indent-012-ref.xht", - "==" - ] - ], - {} - ] - ], - "text-indent-013.xht": [ - "60f77d3cbc1d89bece7748d20d864fd9432e954d", + "/css/WOFF2/metadatadisplay-schema-extension-020-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-extension-021.xht": [ + "4987130b9918143fa7697e23adb7492009d40c3c", + [ + null, [ - null, [ - [ - "/css/CSS2/text/text-indent-013-ref.xht", - "==" - ] - ], - {} - ] - ], - "text-indent-014.xht": [ - "b479e832cb57fc87a82273f32e3ecbbd553811ed", + "/css/WOFF2/metadatadisplay-schema-extension-021-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-extension-022.xht": [ + "5904ee72210acdeb852fb375fae7361b84b2a106", + [ + null, [ - null, [ - [ - "/css/CSS2/text/text-indent-014-ref.xht", - "==" - ] - ], - {} - ] - ], - "text-indent-016.xht": [ - "51abc502d641763f157a8da61d826041117fa219", + "/css/WOFF2/metadatadisplay-schema-extension-022-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-extension-023.xht": [ + "31c89c2b5a2571e5a4120dcb57d420665fa00c73", + [ + null, [ - null, [ - [ - "/css/CSS2/text/text-indent-004-ref.xht", - "==" - ] - ], - {} - ] - ], - "text-indent-017.xht": [ - "1a68e9f75f80f5625f23468bacb2b7034f7b371d", + "/css/WOFF2/metadatadisplay-schema-extension-023-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-extension-024.xht": [ + "864ade1923407b10ddf8d17aaa15cb285c19fece", + [ + null, [ - null, [ - [ - "/css/CSS2/text/text-indent-004-ref.xht", - "==" - ] - ], - {} - ] - ], - "text-indent-018.xht": [ - "c7dfd95d088d68e9c96f27512e3eaa1cd4623bb5", + "/css/WOFF2/metadatadisplay-schema-extension-024-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-extension-025.xht": [ + "935229408cc668cb59f6e2f78b46305914f020e7", + [ + null, [ - null, [ - [ - "/css/CSS2/text/text-indent-004-ref.xht", - "==" - ] - ], - {} - ] - ], - "text-indent-019.xht": [ - "010209b44ac6feaa340f940409be456429e85099", + "/css/WOFF2/metadatadisplay-schema-extension-025-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-extension-026.xht": [ + "65898373d9fd7a892f032dbf5dab805cbb2fc2ba", + [ + null, [ - null, [ - [ - "/css/CSS2/reference/pass_if_box_ahem.html", - "==" - ] - ], - {} - ] - ], - "text-indent-020.xht": [ - "02b5f639bd08b418a3bdbc735e1cf6bdb98fadfb", + "/css/WOFF2/metadatadisplay-schema-extension-026-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-extension-027.xht": [ + "4a57328f4530483d4156dd8e04ddce89c3e72665", + [ + null, [ - null, [ - [ - "/css/CSS2/reference/pass_if_box_ahem.html", - "==" - ] - ], - {} - ] - ], - "text-indent-028.xht": [ - "ae39829362de8c7c9d57121e71ffe7c5a80ac3ed", + "/css/WOFF2/metadatadisplay-schema-extension-027-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-extension-028.xht": [ + "9318a32ca359b735f553c4ab71b3b2c93cf5f41f", + [ + null, [ - null, [ - [ - "/css/CSS2/text/text-indent-004-ref.xht", - "==" - ] - ], - {} - ] - ], - "text-indent-029.xht": [ - "f22d4d4cc0949b15d16d4a85023270cc5589f159", + "/css/WOFF2/metadatadisplay-schema-extension-028-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-extension-029.xht": [ + "139bc0a787caee1ccfc9e4db743c9b431845e485", + [ + null, [ - null, [ - [ - "/css/CSS2/text/text-indent-004-ref.xht", - "==" - ] - ], - {} - ] - ], - "text-indent-030.xht": [ - "dda2788c47787d17177cd3ca872299627d7eb97f", + "/css/WOFF2/metadatadisplay-schema-extension-029-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-extension-030.xht": [ + "92aaac17e652c5cfd07d5ec9a441f63e97a19be8", + [ + null, [ - null, [ - [ - "/css/CSS2/text/text-indent-004-ref.xht", - "==" - ] - ], - {} - ] - ], - "text-indent-031.xht": [ - "174be5d97c7e5f842bb0038ffe5a315bdf019038", + "/css/WOFF2/metadatadisplay-schema-extension-030-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-extension-031.xht": [ + "b0a72742155867fb70aaaa5b95daead0de6e18d5", + [ + null, [ - null, [ - [ - "/css/CSS2/reference/pass_if_box_ahem.html", - "==" - ] - ], - {} - ] - ], - "text-indent-032.xht": [ - "72353096575246dfbcdfa075e05530fc9cb2eee8", + "/css/WOFF2/metadatadisplay-schema-extension-031-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-extension-032.xht": [ + "11927e5b84125741cdd1720fa21712739567a30d", + [ + null, [ - null, [ - [ - "/css/CSS2/reference/pass_if_box_ahem.html", - "==" - ] - ], - {} - ] - ], - "text-indent-040.xht": [ - "0a7f2744cc8ea44ac659176430c9ea7a861c8973", + "/css/WOFF2/metadatadisplay-schema-extension-032-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-extension-033.xht": [ + "60167d40c6d20b112c3a9e907867b6dc63db733f", + [ + null, [ - null, [ - [ - "/css/CSS2/text/text-indent-004-ref.xht", - "==" - ] - ], - {} - ] - ], - "text-indent-041.xht": [ - "4e6525ebcd31a43360feacfb7f6c1b95e6afa210", + "/css/WOFF2/metadatadisplay-schema-extension-033-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-extension-034.xht": [ + "eb33ee887fc02fb7a25ea17d7a9f5427aac3df15", + [ + null, [ - null, [ - [ - "/css/CSS2/text/text-indent-004-ref.xht", - "==" - ] - ], - {} - ] - ], - "text-indent-042.xht": [ - "658496625f04895c918d47ff882b721d7ef33397", + "/css/WOFF2/metadatadisplay-schema-extension-034-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-extension-035.xht": [ + "93f42ec3f7388d49218256a4357befc89daf4b54", + [ + null, [ - null, [ - [ - "/css/CSS2/text/text-indent-004-ref.xht", - "==" - ] - ], - {} - ] - ], - "text-indent-043.xht": [ - "9013b5cf6c8afb509eddce167a8d5d70f76e1466", + "/css/WOFF2/metadatadisplay-schema-extension-035-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-extension-036.xht": [ + "e62f0d04dd07d5afcfd5e12cace8d35022cd31ab", + [ + null, [ - null, [ - [ - "/css/CSS2/reference/pass_if_box_ahem.html", - "==" - ] - ], - {} - ] - ], - "text-indent-044.xht": [ - "bc2d4054482bd2667c232b089b532e5a109762fb", + "/css/WOFF2/metadatadisplay-schema-extension-036-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-extension-037.xht": [ + "dd606a86bb57eead751f1d18b4b615e118ec6f08", + [ + null, [ - null, [ - [ - "/css/CSS2/reference/pass_if_box_ahem.html", - "==" - ] - ], - {} - ] - ], - "text-indent-052.xht": [ - "0b2448abb03b74a3f94612ba0510526255fcc132", + "/css/WOFF2/metadatadisplay-schema-extension-037-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-extension-038.xht": [ + "ab70032baf78b06367eefe1107e49e3dada83519", + [ + null, [ - null, [ - [ - "/css/CSS2/text/text-indent-004-ref.xht", - "==" - ] - ], - {} - ] - ], - "text-indent-053.xht": [ - "0acaf20f6e990b42b36f7af54e01f7fa89a14f6f", + "/css/WOFF2/metadatadisplay-schema-extension-038-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-extension-039.xht": [ + "0d0d310b09e6a75f26adf43f84e6f9c981a92883", + [ + null, [ - null, [ - [ - "/css/CSS2/text/text-indent-004-ref.xht", - "==" - ] - ], - {} - ] - ], - "text-indent-054.xht": [ - "c2e1c35445ac502ceeaeb465420c2bd167220f45", + "/css/WOFF2/metadatadisplay-schema-extension-039-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-extension-040.xht": [ + "16a25a468a0c9054f4650d5cac6013904be89e2d", + [ + null, [ - null, [ - [ - "/css/CSS2/text/text-indent-004-ref.xht", - "==" - ] - ], - {} - ] - ], - "text-indent-055.xht": [ - "485f9893d7aad1562ba2a248c6a2fdeeef9827c0", + "/css/WOFF2/metadatadisplay-schema-extension-040-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-extension-041.xht": [ + "058bab9a4641a483c7ed7e475c07e1f77a87c3e2", + [ + null, [ - null, [ - [ - "/css/CSS2/reference/pass_if_box_ahem.html", - "==" - ] - ], - {} - ] - ], - "text-indent-056.xht": [ - "6b35739ca0d5bb8365c35060cea958054da0688b", + "/css/WOFF2/metadatadisplay-schema-extension-041-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-extension-042.xht": [ + "76f738771ba1885025f8d6aaa039f012f0bb33bd", + [ + null, [ - null, [ - [ - "/css/CSS2/reference/pass_if_box_ahem.html", - "==" - ] - ], - {} - ] - ], - "text-indent-064.xht": [ - "a0ec365f01a43580615433811620a37c3ee56dda", + "/css/WOFF2/metadatadisplay-schema-extension-042-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-extension-043.xht": [ + "c274ef4e5a61b71a9aa003265549b14c59417669", + [ + null, [ - null, [ - [ - "/css/CSS2/text/text-indent-004-ref.xht", - "==" - ] - ], - {} - ] - ], - "text-indent-065.xht": [ - "5e135c3dedae71a0c6981d068fa7a5ac1b6b0bef", + "/css/WOFF2/metadatadisplay-schema-extension-043-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-extension-044.xht": [ + "64bec35e7e565389b066cc439f2e50b227fe2753", + [ + null, [ - null, [ - [ - "/css/CSS2/text/text-indent-004-ref.xht", - "==" - ] - ], - {} - ] - ], - "text-indent-066.xht": [ - "dad89538ef02dc998a02f5e6b3e4188fbdba9761", + "/css/WOFF2/metadatadisplay-schema-extension-044-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-extension-045.xht": [ + "70e5f7c8873f50419d01967c9f163fd342ebc2a3", + [ + null, [ - null, [ - [ - "/css/CSS2/text/text-indent-004-ref.xht", - "==" - ] - ], - {} - ] - ], - "text-indent-067.xht": [ - "442c2bffaf8ac9c9260068b5208d423e1b1d85b4", + "/css/WOFF2/metadatadisplay-schema-extension-045-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-extension-046.xht": [ + "52537bd211aa8a259b51c7edba79e1f5fb79f8d0", + [ + null, [ - null, [ - [ - "/css/CSS2/reference/pass_if_box_ahem.html", - "==" - ] - ], - {} - ] - ], - "text-indent-068.xht": [ - "7831845305b7de7371fc5073170032f42063e8ac", + "/css/WOFF2/metadatadisplay-schema-extension-046-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-extension-047.xht": [ + "2324d27192726b94058a00b63daccff180af496f", + [ + null, [ - null, [ - [ - "/css/CSS2/reference/pass_if_box_ahem.html", - "==" - ] - ], - {} - ] - ], - "text-indent-076.xht": [ - "e066b6eac4821694dbb9f5b0f5aa0ad3727f701d", + "/css/WOFF2/metadatadisplay-schema-extension-047-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-extension-048.xht": [ + "ada0e9db962478db0fe00c93ceeb76709f9cb761", + [ + null, [ - null, [ - [ - "/css/CSS2/text/text-indent-004-ref.xht", - "==" - ] - ], - {} - ] - ], - "text-indent-077.xht": [ - "ff0f8a78adbfd0993b19f01e7d2f792a151b1922", + "/css/WOFF2/metadatadisplay-schema-extension-048-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-extension-049.xht": [ + "345dec4a6767f52078ed168118bbbfcdac0d107d", + [ + null, [ - null, [ - [ - "/css/CSS2/text/text-indent-004-ref.xht", - "==" - ] - ], - {} - ] - ], - "text-indent-078.xht": [ - "162f1e709962b28fcfe73642c2b887df7f33ec83", + "/css/WOFF2/metadatadisplay-schema-extension-049-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-extension-050.xht": [ + "d9857d660218f1f965605307216664959afbc810", + [ + null, [ - null, [ - [ - "/css/CSS2/text/text-indent-004-ref.xht", - "==" - ] - ], - {} - ] - ], - "text-indent-079.xht": [ - "cbd6b76210a6cf0d67f267bad4872f7cc9a74816", + "/css/WOFF2/metadatadisplay-schema-extension-050-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-license-001.xht": [ + "90b0a6a28b8402e6c992d7d88a305d743c0f0150", + [ + null, [ - null, [ - [ - "/css/CSS2/reference/pass_if_box_ahem.html", - "==" - ] - ], - {} - ] - ], - "text-indent-080.xht": [ - "5ebef879708a771834509bfc4763a67d6f6e00df", + "/css/WOFF2/metadatadisplay-schema-license-001-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-license-002.xht": [ + "bf575cf6299aa4f07b315c296e0cd2ffe889fbc4", + [ + null, [ - null, [ - [ - "/css/CSS2/reference/pass_if_box_ahem.html", - "==" - ] - ], - {} - ] - ], - "text-indent-088.xht": [ - "069cd99f457de461024c89d668b8e9f8d25b0f43", + "/css/WOFF2/metadatadisplay-schema-license-002-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-license-003.xht": [ + "5c767817bea10b054ec95c2907c91eaaed0dcb07", + [ + null, [ - null, [ - [ - "/css/CSS2/text/text-indent-004-ref.xht", - "==" - ] - ], - {} - ] - ], - "text-indent-089.xht": [ - "c3c632b2759791996ab81382e8fb9e58f88d92f3", + "/css/WOFF2/metadatadisplay-schema-license-003-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-license-004.xht": [ + "4f2ae4253a76b2b82aa895bd697d1fbf2189e1c2", + [ + null, [ - null, [ - [ - "/css/CSS2/text/text-indent-004-ref.xht", - "==" - ] - ], - {} - ] - ], - "text-indent-090.xht": [ - "7352c9313f7b2d2a1c44115486eb83be0cd1210e", + "/css/WOFF2/metadatadisplay-schema-license-004-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-license-005.xht": [ + "3f56ce888e653407e1279076775c537b01aea245", + [ + null, [ - null, [ - [ - "/css/CSS2/text/text-indent-004-ref.xht", - "==" - ] - ], - {} - ] - ], - "text-indent-091.xht": [ - "cac90dd7087bbb316f669be95f7b2aef523fc007", + "/css/WOFF2/metadatadisplay-schema-license-005-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-license-006.xht": [ + "22596e83f576f04cf660ec1abeb6572b8289aed2", + [ + null, [ - null, [ - [ - "/css/CSS2/text/text-indent-091-ref.xht", - "==" - ] - ], - {} - ] - ], - "text-indent-092.xht": [ - "2e3d04f4d508de7c523ae9f66640a41b81f2e893", + "/css/WOFF2/metadatadisplay-schema-license-006-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-license-007.xht": [ + "eb873685ce8a860351b693efbe1d3ff52fac2740", + [ + null, [ - null, [ - [ - "/css/CSS2/text/text-indent-091-ref.xht", - "==" - ] - ], - {} - ] - ], - "text-indent-100.xht": [ - "977d32170e77c60f6ef9c9c8bcd0f43c8c98da67", + "/css/WOFF2/metadatadisplay-schema-license-007-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-license-008.xht": [ + "18cd6cbf256fcdf40aa23067071a2daa04117d8e", + [ + null, [ - null, [ - [ - "/css/CSS2/text/text-indent-004-ref.xht", - "==" - ] - ], - {} - ] - ], - "text-indent-101.xht": [ - "35e155aea8d2435403e0f09aec7dd06942aa1b3d", + "/css/WOFF2/metadatadisplay-schema-license-008-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-license-009.xht": [ + "73abdbb47f60163d68d04a02c6e6525adf4a0b9f", + [ + null, [ - null, [ - [ - "/css/CSS2/text/text-indent-004-ref.xht", - "==" - ] - ], - {} - ] - ], - "text-indent-102.xht": [ - "a0352dea21a114007c432cf65a7dab8e775abc4c", + "/css/WOFF2/metadatadisplay-schema-license-009-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-license-010.xht": [ + "9339b9b4682bbe9d5f9dfe092cb89d0435ccefce", + [ + null, [ - null, [ - [ - "/css/CSS2/text/text-indent-004-ref.xht", - "==" - ] - ], - {} - ] - ], - "text-indent-103.xht": [ - "66b93897c07534168f8da4fd575e3d2e1a59a1aa", + "/css/WOFF2/metadatadisplay-schema-license-010-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-license-011.xht": [ + "d8ef5814a9b95ba3a099ce6ce119f085be59c6ae", + [ + null, [ - null, [ - [ - "/css/CSS2/text/text-indent-103-ref.xht", - "==" - ] - ], - {} - ] - ], - "text-indent-104.xht": [ - "10938498ecd3c2530e9251dc09b32677a17e0ebc", + "/css/WOFF2/metadatadisplay-schema-license-011-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-license-012.xht": [ + "e1667bf5868fe7daa65c396a43ad9f7bd9bc2848", + [ + null, [ - null, [ - [ - "/css/CSS2/text/text-indent-103-ref.xht", - "==" - ] - ], - {} - ] - ], - "text-indent-109.xht": [ - "02d2b83f8dd4975c8a2df8c4c4888f81af9017e1", + "/css/WOFF2/metadatadisplay-schema-license-012-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-license-013.xht": [ + "90eb0d1bfbe03e3a9e6a423d0e8e437b2f181ec6", + [ + null, [ - null, [ - [ - "/css/CSS2/text/text-indent-004-ref.xht", - "==" - ] - ], - {} - ] - ], - "text-indent-110.xht": [ - "4592207f7b39f036a4553bf4f22508bcdd70949b", + "/css/WOFF2/metadatadisplay-schema-license-013-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-license-014.xht": [ + "5b56279d1d6d789653366e2d0cc8cbc1bd887ca7", + [ + null, [ - null, [ - [ - "/css/CSS2/text/text-indent-004-ref.xht", - "==" - ] - ], - {} - ] - ], - "text-indent-111.xht": [ - "e887d34afcb9d6132794ad400aa6d07ba433631e", + "/css/WOFF2/metadatadisplay-schema-license-014-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-license-015.xht": [ + "85b05c916b7fff45ab9227796638fed98dcb6b45", + [ + null, [ - null, [ - [ - "/css/CSS2/text/text-indent-004-ref.xht", - "==" - ] - ], - {} - ] - ], - "text-indent-112.xht": [ - "4babc6dc796885e2c89f900dfda3f7797cb47889", + "/css/WOFF2/metadatadisplay-schema-license-015-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-license-016.xht": [ + "ecd1714e53f59b9989b319081be5477e3156a1e4", + [ + null, [ - null, [ - [ - "/css/CSS2/reference/pass_if_box_ahem.html", - "==" - ] - ], - {} - ] - ], - "text-indent-113-ref-margin.xht": [ - "174fa8b3769874aa5e79f113b00caf4e5bc0bce7", + "/css/WOFF2/metadatadisplay-schema-license-016-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-license-017.xht": [ + "e88ed7df9f073200516d43156da7783be3bf71ab", + [ + null, [ - null, [ - [ - "/css/CSS2/text/text-indent-114-ref.xht", - "!=" - ] - ], - {} - ] - ], - "text-indent-113.xht": [ - "d726f5e143b889fc0d2c69e01380bdaf65b4e7e1", + "/css/WOFF2/metadatadisplay-schema-license-017-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-license-018.xht": [ + "9fa105cab23898e29a8c6ad96dcc73da89bb4c86", + [ + null, [ - null, [ - [ - "/css/CSS2/text/text-indent-113-ref-margin.xht", - "==" - ] - ], - {} - ] - ], - "text-indent-114-ref.xht": [ - "9c9fa56c3c7087897cdd9a5653b137da581c3dea", + "/css/WOFF2/metadatadisplay-schema-license-018-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-license-019.xht": [ + "7de65f7497e8aedb660516b18383c85796bd3413", + [ + null, [ - null, [ - [ - "/css/CSS2/text/text-indent-113-ref-margin.xht", - "!=" - ] - ], - {} - ] - ], - "text-indent-114.xht": [ - "07e333a89c525b2a8e2342924199cdeb18d2fc4f", + "/css/WOFF2/metadatadisplay-schema-license-019-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-license-020.xht": [ + "5c3fec390c03d5522a99f71c3243153adafdd8d8", + [ + null, [ - null, [ - [ - "/css/CSS2/text/text-indent-114-ref.xht", - "==" - ] - ], - {} - ] - ], - "text-indent-115-ref-block-margin.xht": [ - "4d7464123ff8dbd3b23cb96b0e0a09797bd28ff5", + "/css/WOFF2/metadatadisplay-schema-license-020-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-license-021.xht": [ + "d67b3bbc099df49a55362704b13f83cf4e04ce97", + [ + null, [ - null, [ - [ - "/css/CSS2/text/text-indent-115-ref-inline-margin.xht", - "==" - ] - ], - {} - ] - ], - "text-indent-115-ref-inline-margin.xht": [ - "1834146314b4e27bdaae19e73b1acddee87dea7d", + "/css/WOFF2/metadatadisplay-schema-license-021-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-license-022.xht": [ + "f8c66b9a91a971bcc6f549f153f32509dcf70b75", + [ + null, [ - null, [ - [ - "/css/CSS2/text/text-indent-115-ref-block-margin.xht", - "==" - ] - ], - {} - ] - ], - "text-indent-115.xht": [ - "9eaa2161e3c719b6352ac8bc5389a255defccc9d", + "/css/WOFF2/metadatadisplay-schema-license-022-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-license-023.xht": [ + "f8806db4f52d8cbfe9bfd5fea7efe723bcafc68d", + [ + null, [ - null, [ - [ - "/css/CSS2/text/text-indent-115-ref-block-margin.xht", - "==" - ] - ], - {} - ] - ], - "text-indent-applies-to-001.xht": [ - "df859edb04d3ca42ea722a97304aada925f3177b", + "/css/WOFF2/metadatadisplay-schema-license-023-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-license-024.xht": [ + "8c52881952b8f35de13cb58045bc707ed87c1dd7", + [ + null, [ - null, [ - [ - "/css/CSS2/text/text-indent-applies-to-001-ref.xht", - "==" - ] - ], - {} - ] - ], - "text-indent-applies-to-002.xht": [ - "04e97ccddd6aa58a41928f05a76e2a2dd1e00aa8", + "/css/WOFF2/metadatadisplay-schema-license-024-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-license-025.xht": [ + "da200c0090e2bd459769996dc87a028e39ec011a", + [ + null, [ - null, [ - [ - "/css/CSS2/text/text-indent-applies-to-002-ref.xht", - "==" - ] - ], - {} - ] - ], - "text-indent-applies-to-003.xht": [ - "d913cfa433e7ceb51c0087f4b80aca84d53a5986", + "/css/WOFF2/metadatadisplay-schema-license-025-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-license-026.xht": [ + "fc942a5263f0b5aa50bfd97aff6c9b611accac35", + [ + null, [ - null, [ - [ - "/css/CSS2/text/text-indent-applies-to-003-ref.xht", - "==" - ] - ], - {} - ] - ], - "text-indent-applies-to-005.xht": [ - "3016e795f55ab0ab3dc29d26db7125c66e51cefa", + "/css/WOFF2/metadatadisplay-schema-license-026-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-license-027.xht": [ + "2f9a28f0825de8f88b475af0518e3726664418f9", + [ + null, [ - null, [ - [ - "/css/CSS2/text/text-indent-applies-to-002-ref.xht", - "==" - ] - ], - {} - ] - ], - "text-indent-applies-to-006.xht": [ - "4dbb6e02fd74f3875d906a4785282fe3c79d7c1e", + "/css/WOFF2/metadatadisplay-schema-license-027-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-license-028.xht": [ + "30a802e57171a80c805972321bc4c493f9eebe5f", + [ + null, [ - null, [ - [ - "/css/CSS2/text/text-indent-applies-to-002-ref.xht", - "==" - ] - ], - {} - ] - ], - "text-indent-applies-to-007.xht": [ - "cbbb41290a60c46a53239dce83cf3b6dcd355ca4", + "/css/WOFF2/metadatadisplay-schema-license-028-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-license-029.xht": [ + "425ce7aa3514ff9c204a6c91b1cbd2a973473b37", + [ + null, [ - null, [ - [ - "/css/CSS2/text/text-indent-applies-to-007-ref.xht", - "==" - ] - ], - {} - ] - ], - "text-indent-applies-to-008.xht": [ - "c55d6a21369d91af13e421d11215bc575082930b", + "/css/WOFF2/metadatadisplay-schema-license-029-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-license-030.xht": [ + "512ba15511f0486678316715ecba2ddb66fbdb4e", + [ + null, [ - null, [ - [ - "/css/CSS2/text/text-indent-applies-to-002-ref.xht", - "==" - ] - ], - {} - ] - ], - "text-indent-applies-to-009.xht": [ - "bc561f2ab1a088041c58cb5cc70901a7f9fb2ff7", + "/css/WOFF2/metadatadisplay-schema-license-030-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-license-031.xht": [ + "2ea71218b90c7a5348129b3a8f01d605222f35c0", + [ + null, [ - null, [ - [ - "/css/CSS2/text/text-indent-applies-to-002-ref.xht", - "==" - ] - ], - {} - ] - ], - "text-indent-applies-to-010.xht": [ - "1c4ee225ff127e766166a5eb2b2927a3c3b320a9", + "/css/WOFF2/metadatadisplay-schema-license-031-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-license-032.xht": [ + "d8c835bced287cebe909651114b9d9edfff8e305", + [ + null, [ - null, [ - [ - "/css/CSS2/text/text-indent-applies-to-002-ref.xht", - "==" - ] - ], - {} - ] - ], - "text-indent-applies-to-011.xht": [ - "2e888c99d80d3cfb22fcba94ae4f7e841cc906d9", + "/css/WOFF2/metadatadisplay-schema-license-032-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-license-033.xht": [ + "a1f8183bd556867f9941fb72dd279e48619c7b11", + [ + null, [ - null, [ - [ - "/css/CSS2/text/text-indent-applies-to-002-ref.xht", - "==" - ] - ], - {} - ] - ], - "text-indent-applies-to-012.xht": [ - "491023c57223dfb774e32ab1d357fe034df12981", - [ - null, + "/css/WOFF2/metadatadisplay-schema-license-033-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-licensee-001.xht": [ + "fafc0d1a98271f789069fec314c0e5cde139e08e", + [ + null, + [ + [ + "/css/WOFF2/metadatadisplay-schema-licensee-001-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-licensee-002.xht": [ + "0c306cbb37b7f56b734669453c5c6efaf1788245", + [ + null, + [ + [ + "/css/WOFF2/metadatadisplay-schema-licensee-002-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-licensee-003.xht": [ + "fdbca2c53e5dea89b95c39de0cb6caffa21ae280", + [ + null, + [ + [ + "/css/WOFF2/metadatadisplay-schema-licensee-003-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-licensee-004.xht": [ + "e58d013a3382f06c277544b191f92471d4d125fc", + [ + null, + [ + [ + "/css/WOFF2/metadatadisplay-schema-licensee-004-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-licensee-005.xht": [ + "f4de99562c04fe6daa45562f9988b05074ff5847", + [ + null, + [ + [ + "/css/WOFF2/metadatadisplay-schema-licensee-005-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-licensee-006.xht": [ + "9d23323dbd8502288f3380d2d233690d07578c36", + [ + null, + [ + [ + "/css/WOFF2/metadatadisplay-schema-licensee-006-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-licensee-007.xht": [ + "474a9f2de2a04c0c6cca25bd18c08a616db97acf", + [ + null, + [ + [ + "/css/WOFF2/metadatadisplay-schema-licensee-007-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-licensee-008.xht": [ + "22d4d71414718aefe5c0023905b4a8e0870be756", + [ + null, + [ + [ + "/css/WOFF2/metadatadisplay-schema-licensee-008-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-licensee-009.xht": [ + "330c868ecd86581c69663cc0e6e37983b058e5ea", + [ + null, + [ + [ + "/css/WOFF2/metadatadisplay-schema-licensee-009-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-licensee-010.xht": [ + "5410ec57247401215f0e9a0f68b02a3a93ef797e", + [ + null, + [ + [ + "/css/WOFF2/metadatadisplay-schema-licensee-010-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-metadata-001.xht": [ + "a89f58ec421f5a195cefceea74b47482d2772448", + [ + null, + [ + [ + "/css/WOFF2/metadatadisplay-schema-metadata-001-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-metadata-002.xht": [ + "591e5cc73c62276361bd03c679c3341a2444f4ce", + [ + null, + [ + [ + "/css/WOFF2/metadatadisplay-schema-metadata-002-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-metadata-003.xht": [ + "fe30a6a07fdc1c4ba4e6687a3c6137396fb1f143", + [ + null, + [ + [ + "/css/WOFF2/metadatadisplay-schema-metadata-003-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-metadata-004.xht": [ + "148eaf597bcee1a2512ba6229d3f16e236c4bfb3", + [ + null, + [ + [ + "/css/WOFF2/metadatadisplay-schema-metadata-004-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-metadata-005.xht": [ + "0e098d541be8b6c1d67f6f3d967199a7b9ac9503", + [ + null, + [ + [ + "/css/WOFF2/metadatadisplay-schema-metadata-005-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-metadata-006.xht": [ + "ddd56222b66bf6f86e5202ec6ea21efb82cc1b38", + [ + null, + [ + [ + "/css/WOFF2/metadatadisplay-schema-metadata-006-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-trademark-001.xht": [ + "2a5202470801e24a3a44dd7dbe5e3933d87320ca", + [ + null, + [ + [ + "/css/WOFF2/metadatadisplay-schema-trademark-001-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-trademark-002.xht": [ + "e060ebe1b171630bd676cad653bda06fa751fd53", + [ + null, + [ + [ + "/css/WOFF2/metadatadisplay-schema-trademark-002-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-trademark-003.xht": [ + "38615df5dbd02390007973d5012d86a8243c87a5", + [ + null, + [ + [ + "/css/WOFF2/metadatadisplay-schema-trademark-003-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-trademark-004.xht": [ + "951ee5f58e744cb8d4458b487e9f5f11fb9f7d9a", + [ + null, + [ + [ + "/css/WOFF2/metadatadisplay-schema-trademark-004-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-trademark-005.xht": [ + "a27963ba62f9876ee142cc8fb5b2a0991b243986", + [ + null, + [ + [ + "/css/WOFF2/metadatadisplay-schema-trademark-005-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-trademark-006.xht": [ + "352b7fc5a83a3706b7226b3d40795c683b0d91ef", + [ + null, + [ + [ + "/css/WOFF2/metadatadisplay-schema-trademark-006-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-trademark-007.xht": [ + "c526e028be7b49d2624a96a8c0f52255c60207ae", + [ + null, + [ + [ + "/css/WOFF2/metadatadisplay-schema-trademark-007-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-trademark-008.xht": [ + "fc6d3f5127543b6c3cb3a759f22605de1367aef1", + [ + null, + [ + [ + "/css/WOFF2/metadatadisplay-schema-trademark-008-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-trademark-009.xht": [ + "1d2652cf8e1f72792ae00640594879ff888a5a47", + [ + null, + [ + [ + "/css/WOFF2/metadatadisplay-schema-trademark-009-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-trademark-010.xht": [ + "1b9b49525cd82fe4f50401eb3cbef926cb10d0ee", + [ + null, + [ + [ + "/css/WOFF2/metadatadisplay-schema-trademark-010-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-trademark-011.xht": [ + "190cd156f50b64af675de73a2553ec4550c2e45b", + [ + null, + [ + [ + "/css/WOFF2/metadatadisplay-schema-trademark-011-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-trademark-012.xht": [ + "781d63f40a64752ffc3b734475e3089e40858685", + [ + null, + [ + [ + "/css/WOFF2/metadatadisplay-schema-trademark-012-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-trademark-013.xht": [ + "a2c78fadc60df25e2b766ca72f38adab9c7b9294", + [ + null, + [ + [ + "/css/WOFF2/metadatadisplay-schema-trademark-013-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-trademark-014.xht": [ + "59c9a2c2caffee403071d6d06ff3890585c97b3e", + [ + null, + [ + [ + "/css/WOFF2/metadatadisplay-schema-trademark-014-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-trademark-015.xht": [ + "9fae1626ab3f813ea29a4e2c990e1fc83bb5121e", + [ + null, + [ + [ + "/css/WOFF2/metadatadisplay-schema-trademark-015-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-trademark-016.xht": [ + "de1a4e567910c22603444e6f11309cca1d82a3bb", + [ + null, + [ + [ + "/css/WOFF2/metadatadisplay-schema-trademark-016-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-trademark-017.xht": [ + "c8286248167427264dd852124e93ba4c6c6f967e", + [ + null, + [ + [ + "/css/WOFF2/metadatadisplay-schema-trademark-017-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-trademark-018.xht": [ + "c9f3d971b4dca94421266ba8ecd2ca3a458f0e97", + [ + null, + [ + [ + "/css/WOFF2/metadatadisplay-schema-trademark-018-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-trademark-019.xht": [ + "fd6b4739bbdf293a1af0d4e4d6d3679a31059c35", + [ + null, + [ + [ + "/css/WOFF2/metadatadisplay-schema-trademark-019-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-trademark-020.xht": [ + "9540cf33968b7827f982c117f9564f18eee747c4", + [ + null, + [ + [ + "/css/WOFF2/metadatadisplay-schema-trademark-020-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-trademark-021.xht": [ + "3197f14ffd5a2cdb7fd1159ac318416d5d047dc5", + [ + null, + [ + [ + "/css/WOFF2/metadatadisplay-schema-trademark-021-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-trademark-022.xht": [ + "82b6bdc9a5c1663a339ef45992f10a0e9e9941ac", + [ + null, + [ + [ + "/css/WOFF2/metadatadisplay-schema-trademark-022-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-trademark-023.xht": [ + "e147b7d9d98703ac512c767b882b1ac93946655f", + [ + null, + [ + [ + "/css/WOFF2/metadatadisplay-schema-trademark-023-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-trademark-024.xht": [ + "cb64cf6bc44c111fca3838a66bcd9e3391e73fb6", + [ + null, + [ + [ + "/css/WOFF2/metadatadisplay-schema-trademark-024-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-trademark-025.xht": [ + "a637413ac42faf9c0be3ae61295fb255651910f5", + [ + null, + [ + [ + "/css/WOFF2/metadatadisplay-schema-trademark-025-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-trademark-026.xht": [ + "942a3a1ae28d7759ad85b298e6d8109d8551cf24", + [ + null, + [ + [ + "/css/WOFF2/metadatadisplay-schema-trademark-026-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-trademark-027.xht": [ + "913bd3dedb4d893405551e8bc299a3c8a5ca7ecd", + [ + null, + [ + [ + "/css/WOFF2/metadatadisplay-schema-trademark-027-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-trademark-028.xht": [ + "4c87a166863b2cdf6207688b8423bf4d96f9d3d6", + [ + null, + [ + [ + "/css/WOFF2/metadatadisplay-schema-trademark-028-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-trademark-029.xht": [ + "e40eb5b9f63923bf75e75b56c629f5862672256e", + [ + null, + [ + [ + "/css/WOFF2/metadatadisplay-schema-trademark-029-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-trademark-030.xht": [ + "13d44c9d23453e734cc0b403e42a58782e2976bb", + [ + null, + [ + [ + "/css/WOFF2/metadatadisplay-schema-trademark-030-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-uniqueid-001.xht": [ + "1d1bad56903853fc9fa2e1ccc6ca5e7557d7dbbd", + [ + null, + [ + [ + "/css/WOFF2/metadatadisplay-schema-uniqueid-001-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-uniqueid-002.xht": [ + "daa99d93f66182b294f4912c508f6bddb7e06a36", + [ + null, + [ + [ + "/css/WOFF2/metadatadisplay-schema-uniqueid-002-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-uniqueid-003.xht": [ + "8b7d3dfa1caa9faaf88530c3da7de6b5e7b63302", + [ + null, + [ + [ + "/css/WOFF2/metadatadisplay-schema-uniqueid-003-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-uniqueid-005.xht": [ + "f1adddd355116a1730a44c572164f0156c1ab673", + [ + null, + [ + [ + "/css/WOFF2/metadatadisplay-schema-uniqueid-005-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-uniqueid-006.xht": [ + "8d80b0f6dab29b043770b4b1d49f32d17cc3a1bc", + [ + null, + [ + [ + "/css/WOFF2/metadatadisplay-schema-uniqueid-006-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-uniqueid-007.xht": [ + "a51f490950bd7a5a93f47f018873dc77d2038782", + [ + null, + [ + [ + "/css/WOFF2/metadatadisplay-schema-uniqueid-007-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-vendor-001.xht": [ + "086089fcd96e11a26e24d9c960e62efbc1b6fddf", + [ + null, + [ + [ + "/css/WOFF2/metadatadisplay-schema-vendor-001-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-vendor-002.xht": [ + "f2dc70146f98e0ffbf3db7a0a7e8c62a71c77a1c", + [ + null, + [ + [ + "/css/WOFF2/metadatadisplay-schema-vendor-002-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-vendor-003.xht": [ + "f6324eb4dca0d182cea6b1322087cf1eb17ca660", + [ + null, + [ + [ + "/css/WOFF2/metadatadisplay-schema-vendor-003-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-vendor-004.xht": [ + "471ac25ae5ebc4dc4f4377fc960b5534377bc389", + [ + null, + [ + [ + "/css/WOFF2/metadatadisplay-schema-vendor-004-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-vendor-006.xht": [ + "88873b97008af627659f7a0f1652357e7f1f0017", + [ + null, + [ + [ + "/css/WOFF2/metadatadisplay-schema-vendor-006-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-vendor-007.xht": [ + "dcc4f519eec217933260f15d4854fffaa4d057df", + [ + null, + [ + [ + "/css/WOFF2/metadatadisplay-schema-vendor-007-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-vendor-008.xht": [ + "d8a4ea7f2e662c46d6f6af4e82a8956f283cd44d", + [ + null, + [ + [ + "/css/WOFF2/metadatadisplay-schema-vendor-008-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-vendor-009.xht": [ + "419f0aab4c63b5ba084ff34f8383dd363daeb478", + [ + null, + [ + [ + "/css/WOFF2/metadatadisplay-schema-vendor-009-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-vendor-010.xht": [ + "3a6ea34612e044817143fe6911e15bcbec8000e8", + [ + null, + [ + [ + "/css/WOFF2/metadatadisplay-schema-vendor-010-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-vendor-011.xht": [ + "acb06e79705d21aa85fad8155d2c4bc4299ac9f2", + [ + null, + [ + [ + "/css/WOFF2/metadatadisplay-schema-vendor-011-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-schema-vendor-012.xht": [ + "35fe1bf54a58a60c3080275a6ae1702b61a57fdb", + [ + null, + [ + [ + "/css/WOFF2/metadatadisplay-schema-vendor-012-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-well-formed-001.xht": [ + "e97bbbacca0b3d90f97fedd90dcd5ca1f79b6e67", + [ + null, + [ + [ + "/css/WOFF2/metadatadisplay-well-formed-001-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-well-formed-002.xht": [ + "16583b97bdd929cab9fa4ed72b59ac61745926e5", + [ + null, + [ + [ + "/css/WOFF2/metadatadisplay-well-formed-002-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-well-formed-003.xht": [ + "c7e45ae07b3d959c841b5bf4e9864e9d9a65c7b0", + [ + null, + [ + [ + "/css/WOFF2/metadatadisplay-well-formed-003-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-well-formed-004.xht": [ + "5f04b21e794c533d335d9b3525a7a9491d055f28", + [ + null, + [ + [ + "/css/WOFF2/metadatadisplay-well-formed-004-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-well-formed-005.xht": [ + "616e527521ae96f4dc4e88d9a22a52b7de619b55", + [ + null, + [ + [ + "/css/WOFF2/metadatadisplay-well-formed-005-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-well-formed-006.xht": [ + "a245c0ed28c10fc142df44aa6efff5d17cca697a", + [ + null, + [ + [ + "/css/WOFF2/metadatadisplay-well-formed-006-ref.xht", + "==" + ] + ], + {} + ] + ], + "metadatadisplay-well-formed-007.xht": [ + "854cf67ef84e9f51383f272693d715332c199908", + [ + null, + [ + [ + "/css/WOFF2/metadatadisplay-well-formed-007-ref.xht", + "==" + ] + ], + {} + ] + ], + "privatedata-noeffect-001.xht": [ + "9a9cc04f684a249096661629de9389c5a4003d9f", + [ + null, + [ + [ + "/css/WOFF2/privatedata-noeffect-001-ref.xht", + "==" + ] + ], + {} + ] + ], + "privatedata-noeffect-002.xht": [ + "fbcd9beb2e7d876587abab2493b1b34e891bd549", + [ + null, + [ + [ + "/css/WOFF2/privatedata-noeffect-002-ref.xht", + "==" + ] + ], + {} + ] + ], + "tabledata-bad-origlength-loca-001.xht": [ + "d1f67828948a8138315d423be5018934fc72f7db", + [ + null, + [ + [ + "/css/WOFF2/tabledata-bad-origlength-loca-001-ref.xht", + "==" + ] + ], + {} + ] + ], + "tabledata-bad-origlength-loca-002.xht": [ + "f331212726d1ba3cb9f61bd2195eb854c0f5b5d5", + [ + null, + [ + [ + "/css/WOFF2/tabledata-bad-origlength-loca-002-ref.xht", + "==" + ] + ], + {} + ] + ], + "tabledata-brotli-001.xht": [ + "7be424a673abffd4564c3fb01d8db4261eae40f1", + [ + null, + [ + [ + "/css/WOFF2/tabledata-brotli-001-ref.xht", + "==" + ] + ], + {} + ] + ], + "tabledata-decompressed-length-001.xht": [ + "08bf25e55a44bf58837f26c475a6440b0c206740", + [ + null, + [ + [ + "/css/WOFF2/tabledata-decompressed-length-001-ref.xht", + "==" + ] + ], + {} + ] + ], + "tabledata-decompressed-length-002.xht": [ + "15271e73ce2a20791ecac8168bb768b2e9ca2f5a", + [ + null, + [ + [ + "/css/WOFF2/tabledata-decompressed-length-002-ref.xht", + "==" + ] + ], + {} + ] + ], + "tabledata-decompressed-length-003.xht": [ + "7406b6419ba04ca5dfca4011291ca49c10e1e14e", + [ + null, + [ + [ + "/css/WOFF2/tabledata-decompressed-length-003-ref.xht", + "==" + ] + ], + {} + ] + ], + "tabledata-decompressed-length-004.xht": [ + "b177e85e3ece331bc4ce94e31cdd6b22fc4b8384", + [ + null, + [ + [ + "/css/WOFF2/tabledata-decompressed-length-004-ref.xht", + "==" + ] + ], + {} + ] + ], + "tabledata-extraneous-data-001.xht": [ + "ca36fb2fd4fa76e4c6781443651600330c14c2c4", + [ + null, + [ + [ + "/css/WOFF2/tabledata-extraneous-data-001-ref.xht", + "==" + ] + ], + {} + ] + ], + "tabledata-glyf-bbox-001.xht": [ + "fc6cb7a45eb591ac9e0a1f410d94ec2b4aed8778", + [ + null, + [ + [ + "/css/WOFF2/tabledata-glyf-bbox-001-ref.xht", + "==" + ] + ], + {} + ] + ], + "tabledata-glyf-bbox-002.xht": [ + "90b485e40d53f9c7944acb4b028b23e2eb260d4b", + [ + null, + [ + [ + "/css/WOFF2/tabledata-glyf-bbox-002-ref.xht", + "==" + ] + ], + {} + ] + ], + "tabledata-glyf-bbox-003.xht": [ + "40da4df20628dec6b29acb1d45719c47d61b7e1d", + [ + null, + [ + [ + "/css/WOFF2/tabledata-glyf-bbox-003-ref.xht", + "==" + ] + ], + {} + ] + ], + "tabledata-glyf-origlength-001.xht": [ + "b5b8e24848e529a20ebd9f3f7b6a904a42eb5c9c", + [ + null, + [ + [ + "/css/WOFF2/tabledata-glyf-origlength-001-ref.xht", + "==" + ] + ], + {} + ] + ], + "tabledata-glyf-origlength-002.xht": [ + "c3857334be72f216f056192b45b834372ab0bb39", + [ + null, + [ + [ + "/css/WOFF2/tabledata-glyf-origlength-002-ref.xht", + "==" + ] + ], + {} + ] + ], + "tabledata-glyf-origlength-003.xht": [ + "e2e339c29e03adeec9af05c4d9ba449d2aeb756b", + [ + null, + [ + [ + "/css/WOFF2/tabledata-glyf-origlength-003-ref.xht", + "==" + ] + ], + {} + ] + ], + "tabledata-non-zero-loca-001.xht": [ + "21164679d6850d515701a1a14e8031849a7ee172", + [ + null, + [ + [ + "/css/WOFF2/tabledata-non-zero-loca-001-ref.xht", + "==" + ] + ], + {} + ] + ], + "tabledata-recontruct-loca-001.xht": [ + "913cd528eb9bcf02e0c0715af16185441e8c733d", + [ + null, + [ + [ + "/css/WOFF2/tabledata-recontruct-loca-001-ref.xht", + "==" + ] + ], + {} + ] + ], + "tabledata-transform-bad-flag-001.xht": [ + "0f3968fbaa1de17d1a49a102e04fc4757bc1f78a", + [ + null, + [ + [ + "/css/WOFF2/tabledata-transform-bad-flag-001-ref.xht", + "==" + ] + ], + {} + ] + ], + "tabledata-transform-bad-flag-002.xht": [ + "9ff041c12c304b33db22d3191f53f15c79b39731", + [ + null, + [ + [ + "/css/WOFF2/tabledata-transform-bad-flag-002-ref.xht", + "==" + ] + ], + {} + ] + ], + "tabledata-transform-hmtx-001.xht": [ + "75b5f3f5462056e686a91ea0be7cc9ff7b63f97e", + [ + null, + [ + [ + "/css/WOFF2/tabledata-transform-hmtx-001-ref.xht", + "==" + ] + ], + {} + ] + ], + "tabledata-transform-hmtx-002.xht": [ + "5d047cb59c17c1ff959fb5975beade4973e37ac9", + [ + null, + [ + [ + "/css/WOFF2/tabledata-transform-hmtx-002-ref.xht", + "==" + ] + ], + {} + ] + ], + "tabledata-transform-hmtx-003.xht": [ + "b2b6731f89e96ebda25bd23e0208755a19650734", + [ + null, + [ + [ + "/css/WOFF2/tabledata-transform-hmtx-003-ref.xht", + "==" + ] + ], + {} + ] + ], + "tabledata-transform-hmtx-004.xht": [ + "184303c6e2df1aee62e5f2624111d27582dbf4ed", + [ + null, + [ + [ + "/css/WOFF2/tabledata-transform-hmtx-004-ref.xht", + "==" + ] + ], + {} + ] + ], + "valid-001.xht": [ + "ed85515cba9bb9545c2473f15251eae01ef1f1be", + [ + null, + [ + [ + "/css/WOFF2/valid-001-ref.xht", + "==" + ] + ], + {} + ] + ], + "valid-002.xht": [ + "7e09c2a9b1751f60f3e1df15b5a0013cfa435f59", + [ + null, + [ + [ + "/css/WOFF2/valid-002-ref.xht", + "==" + ] + ], + {} + ] + ], + "valid-003.xht": [ + "0151c028a1c0c841071c39cbe798712f014cc5de", + [ + null, + [ + [ + "/css/WOFF2/valid-003-ref.xht", + "==" + ] + ], + {} + ] + ], + "valid-004.xht": [ + "2ea190b960ad6499d3a6a1be81aeeeb056ef6fb5", + [ + null, + [ + [ + "/css/WOFF2/valid-004-ref.xht", + "==" + ] + ], + {} + ] + ], + "valid-005.xht": [ + "713b25b19d6c614904c9c6a1b8a93d4d114a165d", + [ + null, + [ + [ + "/css/WOFF2/valid-005-ref.xht", + "==" + ] + ], + {} + ] + ], + "valid-006.xht": [ + "b50a9f38806210e3ba6df8a952e26a7be7851784", + [ + null, + [ + [ + "/css/WOFF2/valid-006-ref.xht", + "==" + ] + ], + {} + ] + ], + "valid-007.xht": [ + "7c23d1e399dc5984d8b57698010232f01256ed2d", + [ + null, + [ + [ + "/css/WOFF2/valid-007-ref.xht", + "==" + ] + ], + {} + ] + ], + "valid-008.xht": [ + "a3892510ee38abb8580913be43adbbbaf5c44aef", + [ + null, + [ + [ + "/css/WOFF2/valid-008-ref.xht", + "==" + ] + ], + {} + ] + ] + }, + "compositing": { + "background-blending": { + "background-blend-mode-gradient-image.html": [ + "986fcda9ac86ac83ae9f49b7b13f0ba41c2a58f4", + [ + null, [ [ - "/css/CSS2/text/text-indent-applies-to-012-ref.xht", + "/css/compositing/background-blending/reference/background-blend-mode-gradient-image-ref.html", "==" ] ], {} ] ], - "text-indent-applies-to-013.xht": [ - "71b98469de4670a49cc5c48dc2fb093914b5bc5f", + "background-blend-mode-plus-lighter.html": [ + "bb237b38b314daacb627f10d006faee672cb05ae", [ null, [ [ - "/css/CSS2/text/text-indent-applies-to-012-ref.xht", + "/css/compositing/background-blending/reference/background-blend-mode-plus-lighter-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 1 + ], + [ + 0, + 4294967295 + ] + ] + ] + ] + } ] - ], - "text-indent-applies-to-014.xht": [ - "70b372f6c59e0095e7a3b3a74d2688fd5f9c1cee", + ] + }, + "mix-blend-mode": { + "mix-blend-mode-animation.html": [ + "55618485d880d20668e7ab9d1379ef8792af5fe2", [ null, [ [ - "/css/CSS2/text/text-indent-applies-to-002-ref.xht", + "/css/compositing/mix-blend-mode/reference/mix-blend-mode-animation-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 2 + ], + [ + 0, + 11000 + ] + ] + ] + ] + } ] ], - "text-indent-applies-to-015.xht": [ - "aaf45bd4efe69cd20eaa294146ecc293152c1ded", + "mix-blend-mode-blended-element-interposed.html": [ + "768352de020801eb6294d4844ca824d271d859d2", [ null, [ [ - "/css/CSS2/text/text-indent-applies-to-002-ref.xht", + "/css/compositing/mix-blend-mode/reference/green-square.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 1 + ], + [ + 0, + 10 + ] + ] + ] + ] + } ] ], - "text-indent-inherited-001.xht": [ - "352080f04bd3371ba23c38f16d241e506304b94f", + "mix-blend-mode-blended-element-overflow-hidden-and-border-radius.html": [ + "305e0e2e0c131a672b427438784b34849f8552be", [ null, [ [ - "/css/CSS2/text/text-indent-inherited-001-ref.xht", + "/css/compositing/mix-blend-mode/reference/mix-blend-mode-blended-element-overflow-hidden-and-border-radius-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 10 + ], + [ + 0, + 5 + ] + ] + ] + ] + } ] ], - "text-indent-intrinsic-001.xht": [ - "66597fbee10d85201fcc6b4d85a60f8c58cf9bb1", + "mix-blend-mode-blended-element-overflow-scroll.html": [ + "8952b39452846b28aa34f79408ec37458440b96b", [ null, [ [ - "/css/CSS2/text/text-indent-intrinsic-001-ref.xht", + "/css/compositing/mix-blend-mode/reference/mix-blend-mode-blended-element-overflow-scroll-ref.html", "==" ] ], {} ] ], - "text-indent-intrinsic-002.xht": [ - "73c1d91369bfa2f55cfbda1be50ad3e7707645ac", + "mix-blend-mode-blended-element-with-transparent-pixels.html": [ + "6fd3a8bad755f7ec4fe50d6a03fb299282e199f3", [ null, [ [ - "/css/CSS2/text/text-indent-intrinsic-002-ref.xht", + "/css/compositing/mix-blend-mode/reference/mix-blend-mode-blended-element-with-transparent-pixels-ref.html", "==" ] ], {} ] ], - "text-indent-intrinsic-003.xht": [ - "2db0f2a4520818c6e46aaaed623cb260a08fc9de", + "mix-blend-mode-blended-with-3D-transform.html": [ + "1739e0138248a103b9c7632b4ac719a370469e53", [ null, [ [ - "/css/CSS2/text/text-indent-intrinsic-003-ref.xht", + "/css/compositing/mix-blend-mode/reference/mix-blend-mode-blended-with-3D-transform-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 255 + ], + [ + 0, + 350 + ] + ] + ] + ] + } ] ], - "text-indent-intrinsic-004.xht": [ - "b8f41c53ea28625dab757897a18e56ab17b39305", + "mix-blend-mode-blended-with-transform-and-perspective.html": [ + "46189afc581a56160d1dcc931854f78c9da411a5", [ null, [ [ - "/css/CSS2/text/text-indent-intrinsic-004-ref.xht", + "/css/compositing/mix-blend-mode/reference/mix-blend-mode-blended-with-transform-and-perspective-ref.html", "==" ] ], {} ] ], - "text-indent-on-blank-line-rtl-left-align.html": [ - "af7e1cc0145cef0e7e98218bbaaf8280a8a4ed7a", + "mix-blend-mode-blending-with-sibling.html": [ + "80f197c40bcc4b07e60074afd1e6eb5389631052", [ null, [ [ - "/css/CSS2/text/text-indent-on-blank-line-rtl-left-align-ref.html", + "/css/compositing/mix-blend-mode/reference/green-square.html", "==" ] ], {} ] ], - "text-indent-overflow-001.xht": [ - "22717ddeeea3df542d06ce8f0b13446c0672c63c", + "mix-blend-mode-border-image.html": [ + "7309e37372cf1abe913cfc5521c6f4b77c6a523a", [ null, [ [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", + "/css/compositing/mix-blend-mode/reference/mix-blend-mode-border-image-ref.html", "==" ] ], {} ] ], - "text-indent-overflow-002.xht": [ - "7c2f54a15a4222439d293a14bc8934fde92a080d", + "mix-blend-mode-both-parent-and-blended-with-3D-transform.html": [ + "59fca74f8409f7288ff64f0828cb6c1c417e2a97", [ null, [ [ - "/css/CSS2/text/text-indent-overflow-002-ref.xht", + "/css/compositing/mix-blend-mode/reference/mix-blend-mode-both-parent-and-blended-with-3D-transform-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 128 + ], + [ + 0, + 1000 + ] + ] + ] + ] + } ] ], - "text-indent-overflow-003.xht": [ - "fe6ac1bb5c995b7895e3b832f24c5cbb9a11dd77", + "mix-blend-mode-canvas-parent.html": [ + "5107207e36022d5ea51c49f482a2980a1dbfd962", [ null, [ [ - "/css/CSS2/text/text-indent-overflow-003-ref.xht", + "/css/compositing/mix-blend-mode/reference/mix-blend-mode-canvas-parent-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 1 + ], + [ + 0, + 10 + ] + ] + ] + ] + } ] ], - "text-indent-overflow-004.xht": [ - "da4abce66d4e73faa45d117440564aa2f2e4827a", + "mix-blend-mode-canvas-sibling.html": [ + "2ecffbf51e261f248f21e61fc496d9f62fbb98a6", [ null, [ [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", + "/css/compositing/mix-blend-mode/reference/mix-blend-mode-canvas-sibling-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 1 + ], + [ + 0, + 10 + ] + ] + ] + ] + } ] ], - "text-indent-percent-001.xht": [ - "fc02d86a47f9af9e63827d54c345e482777b0dbf", + "mix-blend-mode-filter.html": [ + "d95866f839e5703b51aeadaa653cd886dc15ea08", [ null, [ [ - "/css/CSS2/text/text-indent-percent-001-ref.xht", + "/css/compositing/mix-blend-mode/reference/mix-blend-mode-filter-ref.html", "==" ] ], {} ] ], - "text-indent-rtl-001.xht": [ - "dfc9193bfdb22a2b9986e4f2db736dc4d393eb79", + "mix-blend-mode-iframe-parent.html": [ + "a24a5f933ee8d59683bea528ced3d2dbac1c79af", [ null, [ [ - "/css/CSS2/text/text-indent-rtl-001-ref.xht", + "/css/compositing/mix-blend-mode/reference/mix-blend-mode-iframe-parent-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 1 + ], + [ + 0, + 10 + ] + ] + ] + ] + } ] ], - "text-indent-rtl-002.xht": [ - "f8b72b3fd1c4c846ee16c0a51c839b452961d71c", + "mix-blend-mode-iframe-sibling.html": [ + "d1a5518b8c83d4009e260c90ebd2390ce480adc9", [ null, [ [ - "/css/CSS2/text/text-indent-rtl-002-ref.xht", + "/css/compositing/mix-blend-mode/reference/mix-blend-mode-iframe-sibling-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 1 + ], + [ + 0, + 10 + ] + ] + ] + ] + } ] ], - "text-indent-wrap-001-notref-block-margin.xht": [ - "c88a242f4dd79ea4d5a1dc78e73f05609e9b0369", + "mix-blend-mode-image.html": [ + "bd0ef8eb7c241adf143363bbf501b42a6b0259d1", [ null, [ [ - "/css/CSS2/text/text-indent-wrap-001-ref-inline-margin.xht", + "/css/compositing/mix-blend-mode/reference/mix-blend-mode-image-notref.html", "!=" ] ], {} ] ], - "text-indent-wrap-001-ref-float.xht": [ - "764107424f2a1a07ea365416152647a927af222f", + "mix-blend-mode-intermediate-element-overflow-hidden-and-border-radius.html": [ + "831747382105bc6ac83c53cd4ef3ceaef9c03b07", [ null, [ [ - "/css/CSS2/text/text-indent-wrap-001-notref-block-margin.xht", - "!=" + "/css/compositing/mix-blend-mode/reference/mix-blend-mode-intermediate-element-overflow-hidden-and-border-radius-ref.html", + "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 10 + ], + [ + 0, + 50 + ] + ] + ] + ] + } ] ], - "text-indent-wrap-001-ref-inline-margin.xht": [ - "dab3ad0e23108f2587c435a9547a9369d8fdb5ef", + "mix-blend-mode-mask.html": [ + "2a7072febbe6587310af568f73d1edcf8f959efc", [ null, [ [ - "/css/CSS2/text/text-indent-wrap-001-ref-float.xht", + "/css/compositing/mix-blend-mode/reference/mix-blend-mode-mask-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 1 + ], + [ + 0, + 10 + ] + ] + ] + ] + } ] ], - "text-indent-wrap-001.xht": [ - "e4ec6de73511c4b537fcd6d7f3c204843185abe4", + "mix-blend-mode-overflowing-child-of-blended-element.html": [ + "8096cf7f3df0091a04977d481a9306ea583e1155", [ null, [ [ - "/css/CSS2/text/text-indent-wrap-001-ref-inline-margin.xht", + "/css/compositing/mix-blend-mode/reference/mix-blend-mode-blended-element-with-transparent-pixels-ref.html", "==" ] ], {} ] ], - "text-transform-001.xht": [ - "c55c151db2b1f20f6751cb45ca0809f7e29b6396", + "mix-blend-mode-overflowing-child.html": [ + "de808bab0bdbc6ed81571420966452bf30f03ac4", [ null, [ [ - "/css/CSS2/text/text-transform-001-ref.xht", + "/css/compositing/mix-blend-mode/reference/mix-blend-mode-overflowing-child-ref.html", "==" ] ], {} ] ], - "text-transform-002.xht": [ - "cf9d0e43b08122e86c1b443b36ab41499c876747", + "mix-blend-mode-paragraph-background-image.html": [ + "51744dc7838937e06a6b4cc8436108f52cd71bc5", [ null, [ [ - "/css/CSS2/text/text-transform-002-ref.xht", + "/css/compositing/mix-blend-mode/reference/mix-blend-mode-paragraph-background-image-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 1 + ], + [ + 0, + 10 + ] + ] + ] + ] + } ] ], - "text-transform-003.xht": [ - "f8384ffbd293fd0359a3db852d3e6a2f3183e664", + "mix-blend-mode-paragraph.html": [ + "e0f4e383a56fc110f0323d8d2a7a09fb6be5fed5", [ null, [ [ - "/css/CSS2/text/text-transform-003-ref.xht", + "/css/compositing/mix-blend-mode/reference/mix-blend-mode-paragraph-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 1 + ], + [ + 0, + 10 + ] + ] + ] + ] + } ] ], - "text-transform-004.xht": [ - "03b0f5adb31d69d5e97acf060f8125e65368bfa1", + "mix-blend-mode-parent-element-overflow-hidden-and-border-radius-2.html": [ + "0b12301c4d91e179a5c5431f8fffde90ee47b1a7", [ null, [ [ - "/css/CSS2/text/text-transform-004-ref.xht", + "/css/compositing/mix-blend-mode/reference/mix-blend-mode-parent-element-overflow-hidden-and-border-radius-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 128 + ], + [ + 0, + 400 + ] + ] + ] + ] + } ] ], - "text-transform-005.xht": [ - "13d9f39aac6a3092d1b11354d150a52684eb0c13", + "mix-blend-mode-parent-element-overflow-hidden-and-border-radius.html": [ + "840d2626bc1d350a478369dff0626f2b78830099", [ null, [ [ - "/css/CSS2/text/text-transform-003-ref.xht", + "/css/compositing/mix-blend-mode/reference/mix-blend-mode-parent-element-overflow-hidden-and-border-radius-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 128 + ], + [ + 0, + 400 + ] + ] + ] + ] + } ] ], - "text-transform-applies-to-001.xht": [ - "bced2794aec4ae3381d19f614a39c21e58bddbac", + "mix-blend-mode-parent-element-overflow-scroll-blended-position-fixed.html": [ + "5b0c2468343175e3986616b1c72cb2ad0ecdf13f", [ null, [ [ - "/css/reference/pass_if_letter_uppercase.html", + "/css/compositing/mix-blend-mode/reference/mix-blend-mode-parent-element-overflow-scroll-blended-position-fixed-ref.html", "==" ] ], {} ] ], - "text-transform-applies-to-002.xht": [ - "3bcd7bdb31ba226456884c4f6e406e094e403004", + "mix-blend-mode-parent-element-overflow-scroll.html": [ + "81c110c496dc8572e2ecfcd87b3eb1b361464efa", [ null, [ [ - "/css/reference/pass_if_letter_uppercase.html", + "/css/compositing/mix-blend-mode/reference/mix-blend-mode-parent-element-overflow-scroll-ref.html", "==" ] ], {} ] ], - "text-transform-applies-to-003.xht": [ - "24091519c037b52a9631284948f08a8b759a1dd3", + "mix-blend-mode-parent-with-3D-transform.html": [ + "d2175cfbd9f167960efb5358727859f01e1b8980", [ null, [ [ - "/css/CSS2/text/text-transform-applies-to-003-ref.xht", + "/css/compositing/mix-blend-mode/reference/mix-blend-mode-parent-with-3D-transform-ref.html", "==" ] ], {} ] ], - "text-transform-applies-to-005.xht": [ - "885835e4d336224af536055cb3376dadf3b303fb", + "mix-blend-mode-parent-with-border-radius.html": [ + "e6562706d8ead518619f01c58b2dfe12bc350e9c", [ null, [ [ - "/css/reference/pass_if_letter_uppercase.html", + "/css/compositing/mix-blend-mode/reference/mix-blend-mode-parent-with-border-radius-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 5 + ], + [ + 0, + 200 + ] + ] + ] + ] + } ] ], - "text-transform-applies-to-006.xht": [ - "409ca27ff199164f4f7cbb93cb00307d2f77069b", + "mix-blend-mode-parent-with-text.html": [ + "274bebe539f054f041d9eeadfe53ecaf5cd81bce", [ null, [ [ - "/css/reference/pass_if_letter_uppercase.html", + "/css/compositing/mix-blend-mode/reference/mix-blend-mode-parent-with-text-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 1 + ], + [ + 0, + 10 + ] + ] + ] + ] + } ] ], - "text-transform-applies-to-007.xht": [ - "f067fea7e4496d751aba684b3d00fa63aacb48f0", + "mix-blend-mode-plus-lighter-basic.html": [ + "fcf2d172afd6b1ebc99f64021a66a548d5b1f1fd", [ null, [ [ - "/css/reference/pass_if_letter_uppercase.html", + "/css/compositing/mix-blend-mode/reference/mix-blend-mode-plus-lighter-basic-ref.html", "==" ] ], {} ] ], - "text-transform-applies-to-008.xht": [ - "6751d2eae365d88e51199390504598b7c7326080", + "mix-blend-mode-plus-lighter-svg-basic.html": [ + "c7c3ae9b97747081a0f7880bea6b4b312b19bc01", [ null, [ [ - "/css/reference/pass_if_letter_uppercase.html", + "/css/compositing/mix-blend-mode/reference/mix-blend-mode-plus-lighter-svg-basic-ref.html", "==" ] ], {} ] ], - "text-transform-applies-to-009.xht": [ - "10b3a246c06e1cc3819c2bc092d85e678de870ad", + "mix-blend-mode-plus-lighter-svg.html": [ + "630dcd777b811b9664b09b610348f42d94eb29e3", [ null, [ [ - "/css/reference/pass_if_letter_uppercase.html", + "/css/compositing/mix-blend-mode/reference/mix-blend-mode-plus-lighter-svg-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 1 + ], + [ + 0, + 4294967295 + ] + ] + ] + ] + } ] ], - "text-transform-applies-to-010.xht": [ - "6a79b831ed96be1fcd8f6f3d620198d38037db4b", + "mix-blend-mode-plus-lighter.html": [ + "86bf1cc3f4f981ac3385ad62c04f43737f1454f5", [ null, [ [ - "/css/reference/pass_if_letter_uppercase.html", + "/css/compositing/mix-blend-mode/reference/mix-blend-mode-plus-lighter-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 1 + ], + [ + 0, + 4294967295 + ] + ] + ] + ] + } ] ], - "text-transform-applies-to-011.xht": [ - "097c92995fa814b05c040be679bd4c05acc5090c", + "mix-blend-mode-root-element-group.html": [ + "8a190b928174c7ab77b029e24e169116a5355f0c", [ null, [ [ - "/css/reference/pass_if_letter_uppercase.html", + "/css/compositing/mix-blend-mode/mix-blend-mode-root-element-group-ref.html", "==" ] ], {} ] ], - "text-transform-applies-to-012.xht": [ - "11e514c146745be1ecba7532a9c21405543d242e", + "mix-blend-mode-rotated-clip.html": [ + "63db5cbbe1ea1d043e6efbbfad5d654990eda596", [ null, [ [ - "/css/reference/pass_if_letter_uppercase.html", + "/css/compositing/mix-blend-mode/reference/mix-blend-mode-rotated-clip-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 1 + ], + [ + 0, + 30 + ] + ] + ] + ] + } ] ], - "text-transform-applies-to-013.xht": [ - "b683b23f7cf0ca63d8e1458fb5b4122b50edc0c8", + "mix-blend-mode-script.html": [ + "e842d0b39568019c0c8a4162780aa56779208ae1", [ null, [ [ - "/css/reference/pass_if_letter_uppercase.html", + "/css/compositing/mix-blend-mode/reference/mix-blend-mode-script-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 1 + ], + [ + 0, + 10 + ] + ] + ] + ] + } ] ], - "text-transform-applies-to-014.xht": [ - "a7262d0fad1e12b77f323878f7595fe2bc12ea0d", + "mix-blend-mode-sibling-with-3D-transform.html": [ + "a9a9d1bd2567229cd8b37a08f8088bc87209ab62", [ null, [ [ - "/css/reference/pass_if_letter_uppercase.html", + "/css/compositing/mix-blend-mode/reference/mix-blend-mode-sibling-with-3D-transform-ref.html", "==" ] ], {} ] ], - "text-transform-applies-to-015.xht": [ - "57766155ca6773a932128a2d4125fb58e249d4ed", + "mix-blend-mode-simple.html": [ + "b00f81694ed8443f1d0932c2207f5fb1399fea98", [ null, [ [ - "/css/reference/pass_if_letter_uppercase.html", + "/css/compositing/mix-blend-mode/reference/green-square.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 1 + ], + [ + 0, + 10 + ] + ] + ] + ] + } ] ], - "text-transform-bicameral-001.xht": [ - "3ca8b9fa5ffacdbedeb7cf900cd366c087ebc349", + "mix-blend-mode-stacking-context-001.html": [ + "6fc7c21f33b6f47fdda547c02e8ee4276d3250bd", [ null, [ [ - "/css/CSS2/text/text-transform-bicameral-001-ref.xht", + "/css/compositing/mix-blend-mode/reference/mix-blend-mode-stacking-context-001-ref.html", "==" ] ], {} ] ], - "text-transform-bicameral-002.xht": [ - "1ffaeb5f58508eed7b0821c2907f9cfddb47de5b", + "mix-blend-mode-stacking-context-creates-isolation.html": [ + "79edf0f0908731949e8005f699f09ed1b3ceed69", [ null, [ [ - "/css/CSS2/text/text-transform-bicameral-002-ref.xht", + "/css/compositing/mix-blend-mode/reference/mix-blend-mode-stacking-context-creates-isolation-ref.html", "==" ] ], {} ] ], - "text-transform-bicameral-003.xht": [ - "a24adea6fa90f22d4990b0ee7f37f15d3eddfe34", + "mix-blend-mode-svg.html": [ + "b7b9f89e9253644cdcd42f265031763150b87bcd", [ null, [ [ - "/css/CSS2/text/text-transform-bicameral-003-ref.xht", + "/css/compositing/mix-blend-mode/reference/mix-blend-mode-svg-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 1 + ], + [ + 0, + 10 + ] + ] + ] + ] + } ] ], - "text-transform-bicameral-004.xht": [ - "0a53bca4a89a1776302a2b710a225b06892bcc22", + "mix-blend-mode-video-sibling.html": [ + "87d7d1eac61c25ec02080d04fe905dc00a2b5d46", [ null, [ [ - "/css/CSS2/text/text-transform-bicameral-004-ref.xht", - "==" + "/css/compositing/mix-blend-mode/reference/mix-blend-mode-video-sibling-notref.html", + "!=" ] ], {} ] ], - "text-transform-bicameral-005.xht": [ - "91082f5fe90cc80de2c4585ccc87cc29adc4bc84", + "mix-blend-mode-video.html": [ + "298ba990804e458e1b661628129267f81b5983db", [ null, [ [ - "/css/CSS2/text/text-transform-bicameral-005-ref.xht", - "==" + "/css/compositing/mix-blend-mode/reference/mix-blend-mode-video-notref.html", + "!=" ] ], {} ] ], - "text-transform-bicameral-006.xht": [ - "624dc9f6c3a44b930748c802a3a65183391d3fff", + "mix-blend-mode-with-transform-and-preserve-3D.html": [ + "6d27a40ff2779e5269653275e28ba6378af46ead", [ null, [ [ - "/css/CSS2/text/text-transform-bicameral-006-ref.xht", + "/css/compositing/mix-blend-mode/reference/mix-blend-mode-with-transform-and-preserve-3D-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 50 + ], + [ + 0, + 300 + ] + ] + ] + ] + } ] - ], - "text-transform-bicameral-007.xht": [ - "d9d200f467e84d5e6014f665cdb384ea4ae2c3ab", + ] + }, + "root-element-background-image-transparency-001.html": [ + "1f07d60375ea3350b9f8f596b7fdafc6c390a6cc", + [ + null, + [ + [ + "/css/compositing/root-element-background-image-transparency-001-ref.html", + "==" + ] + ], + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 1 + ], + [ + 0, + 9600 + ] + ] + ] + ] + } + ] + ], + "root-element-background-image-transparency-002.html": [ + "0da51986f1ca2426cce7383547012e28d096e318", + [ + null, + [ + [ + "/css/compositing/root-element-background-image-transparency-001-ref.html", + "==" + ] + ], + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 1 + ], + [ + 0, + 9600 + ] + ] + ] + ] + } + ] + ], + "root-element-background-image-transparency-003.html": [ + "0aded929d872c3d95c0ae50b4868d41b52d72d60", + [ + null, + [ + [ + "/css/compositing/root-element-background-image-transparency-001-ref.html", + "==" + ] + ], + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 1 + ], + [ + 0, + 237600 + ] + ] + ] + ] + } + ] + ], + "root-element-background-image-transparency-004.html": [ + "1bc4b446149bff4639c33480f976f4d1e36c871f", + [ + null, + [ + [ + "/css/compositing/root-element-background-image-transparency-001-ref.html", + "==" + ] + ], + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 1 + ], + [ + 0, + 237600 + ] + ] + ] + ] + } + ] + ], + "root-element-background-transparency.html": [ + "910eb08e8d3004da7418f8f00f38d022841262f2", + [ + null, + [ + [ + "/css/compositing/root-element-background-transparency-ref.html", + "==" + ] + ], + {} + ] + ], + "root-element-blend-mode.html": [ + "2c97d8b5e8ca9139bb83aca0ca90494d6fbbb255", + [ + null, + [ + [ + "/css/compositing/root-element-blend-mode-ref.html", + "==" + ] + ], + {} + ] + ], + "root-element-filter.html": [ + "62bde9dfd991d01314569ae694b495adc489a21e", + [ + null, + [ + [ + "/css/compositing/root-element-filter-ref.html", + "==" + ] + ], + {} + ] + ], + "root-element-opacity-change.html": [ + "de2599de4911dc99c997de16d8908a180e4f3bc6", + [ + null, + [ + [ + "/css/compositing/root-element-opacity-change-ref.html", + "==" + ] + ], + {} + ] + ], + "root-element-opacity.html": [ + "a8195bc552e5270c45716cc34ad6063769fd5581", + [ + null, + [ + [ + "/css/compositing/root-element-opacity-ref.html", + "==" + ] + ], + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 1 + ], + [ + 0, + 480000 + ] + ] + ] + ] + } + ] + ], + "svg": { + "mix-blend-mode-in-svg-image.html": [ + "ed0520e443fd10ca6ad25c91dd2752954fbbf9b0", [ null, [ [ - "/css/CSS2/text/text-transform-bicameral-007-ref.xht", + "/css/compositing/svg/reference/mix-blend-mode-in-svg-image-ref.html", "==" ] ], {} ] ], - "text-transform-bicameral-008.xht": [ - "b5c38bf7365ab23dc68b11ca58715dfd40617a5c", + "mix-blend-mode-svg-rectangle.html": [ + "543586f0983b7d93a472964fd18822425d6034b2", [ null, [ [ - "/css/CSS2/text/text-transform-bicameral-008-ref.xht", + "/css/compositing/svg/reference/mix-blend-mode-svg-rectangle-ref.html", "==" ] ], {} ] - ], - "text-transform-bicameral-009.xht": [ - "8c54a289213c381f88ad41ed4bd957b4ff2bc6c9", + ] + } + }, + "css-align": { + "baseline-of-scrollable-1a.html": [ + "a55e2318ca40f68500754bfccb582dd06c9f29c3", + [ + null, + [ + [ + "/css/css-align/reference/baseline-of-scrollable-1-ref.html", + "==" + ] + ], + {} + ] + ], + "baseline-of-scrollable-1b.html": [ + "79db8a85434beb60f7f6ef259bc2eff62d83bea3", + [ + null, + [ + [ + "/css/css-align/reference/baseline-of-scrollable-1-ref.html", + "==" + ] + ], + {} + ] + ], + "baseline-of-scrollable-2.html": [ + "5511d6d68ad0b531cdd31da352e7a78e3a6b85b7", + [ + null, + [ + [ + "/css/css-align/reference/baseline-of-scrollable-2-ref.html", + "==" + ] + ], + {} + ] + ], + "baseline-rules": { + "grid-item-input-type-number.html": [ + "9b9735c7be7860f9f02e3df3ebd1b5dfffd7342e", [ null, [ [ - "/css/CSS2/text/text-transform-bicameral-009-ref.xht", + "/css/css-align/baseline-rules/grid-item-input-type-number-ref.html", "==" ] ], {} ] ], - "text-transform-bicameral-010.xht": [ - "20d3589c133e963ec350b2eea6306b1375f21fed", + "grid-item-input-type-text.html": [ + "526dcbae6a9c3e116557b50d9993f45b1edfbb5f", [ null, [ [ - "/css/CSS2/text/text-transform-bicameral-010-ref.xht", + "/css/css-align/baseline-rules/grid-item-input-type-text-ref.html", "==" ] ], {} ] ], - "text-transform-bicameral-011.xht": [ - "f7cd8b9a21212d89776166119b921e086d36cdc4", + "inline-table-inline-block-baseline-vert-rl.html": [ + "c0a6e2f12cb3cb51368416f5e79bd305cfe6a8a2", [ null, [ [ - "/css/CSS2/text/text-transform-bicameral-011-ref.xht", + "/css/css-align/baseline-rules/inline-table-inline-block-baseline-vert-rl-ref.html", "==" ] ], {} ] ], - "text-transform-bicameral-012.xht": [ - "e761c3cb7483897c93f6307b6b25af11eea7b9bf", + "inline-table-inline-block-baseline.html": [ + "be9acc58cd548ab75f036df5e11c2299122c76ac", [ null, [ [ - "/css/CSS2/text/text-transform-bicameral-012-ref.xht", + "/css/css-align/baseline-rules/inline-table-inline-block-baseline-ref.html", "==" ] ], {} ] ], - "text-transform-bicameral-013.xht": [ - "2c643202293e32bc35e33b01c42a4a2b15136b8e", + "synthesized-baseline-table-cell-001.html": [ + "a7119b8dc556a77a6ec2f133053c123f4a3a75f4", [ null, [ [ - "/css/CSS2/text/text-transform-bicameral-013-ref.xht", + "/css/css-align/baseline-rules/synthesized-baseline-table-cell-001-ref.html", "==" ] ], {} ] - ], - "text-transform-bicameral-014.xht": [ - "b48f82464c09246a391fd1bc19c914c5aead74fb", + ] + }, + "blocks": { + "align-content-block-001.html": [ + "472ecae5765278beb410172af54ee4b1b7bf6864", [ null, [ [ - "/css/CSS2/text/text-transform-bicameral-014-ref.xht", + "/css/css-align/blocks/align-content-block-001-ref.html", "==" ] ], {} ] ], - "text-transform-bicameral-015.xht": [ - "cb467408eec4cfe8698f62cd792fb5c0cb0345a8", + "align-content-block-break-content-010.html": [ + "27a56a608f4d915327d168ddc6ad8075eed095f4", [ null, [ [ - "/css/CSS2/text/text-transform-bicameral-015-ref.xht", + "/css/css-align/blocks/align-content-block-break-content-010-aligned-ref.html", + "==" + ], + [ + "/css/css-align/blocks/align-content-block-break-content-010-unaligned-ref.html", "==" ] ], {} ] ], - "text-transform-bicameral-016.xht": [ - "18b9913071c3e0dbe50bf6c3fa24ed7a6cd1d514", + "align-content-block-break-content-020.html": [ + "bfd76aef23a4b4a2ff8ca18a80fd33b00a197f7f", [ null, [ [ - "/css/CSS2/text/text-transform-bicameral-016-ref.xht", + "/css/css-align/blocks/align-content-block-break-content-020-aligned-ref.html", + "==" + ], + [ + "/css/css-align/blocks/align-content-block-break-content-020-unaligned-ref.html", "==" ] ], {} ] ], - "text-transform-bicameral-017.xht": [ - "d7deebd9f95a9740bb15f47edb692757f3f73a69", + "align-content-block-break-overflow-010.html": [ + "cde57ad7a32ce14271777af7d0066d857af255b4", [ null, [ [ - "/css/CSS2/text/text-transform-bicameral-017-ref.xht", + "/css/css-align/blocks/align-content-block-break-overflow-010-ref.html", "==" ] ], {} ] ], - "text-transform-bicameral-018.xht": [ - "a594c809150c8e6c34e38c66b5835c051af93d90", + "align-content-block-break-overflow-020.html": [ + "04b20f87ad72e20b280bc8f2b45d062b7eb72b33", [ null, [ [ - "/css/CSS2/text/text-transform-bicameral-018-ref.xht", + "/css/css-align/blocks/align-content-block-break-overflow-020-ref.html", "==" ] ], {} ] ], - "text-transform-bicameral-019.xht": [ - "d389d8130871c2869aeac69fdf29425ffe20dbb9", + "align-content-block-dynamic-content.html": [ + "4d54c8847a9dd705899455ca291bd58bdcc08d10", [ null, [ [ - "/css/CSS2/text/text-transform-bicameral-019-ref.xht", + "/css/css-align/blocks/align-content-block-dynamic-content-ref.html", "==" ] ], {} ] ], - "text-transform-bicameral-020.xht": [ - "5fb88cca02f0155f45b55c8b3c765857a69df703", + "align-content-block-overflow-000.html": [ + "c53606a0589af0bbd9c0bd7c513621b88f90687e", [ null, [ [ - "/css/CSS2/text/text-transform-bicameral-020-ref.xht", + "/css/css-align/blocks/align-content-block-overflow-000-ref.html", "==" ] ], {} ] ], - "text-transform-bicameral-021.xht": [ - "a882329d4017796f9ef1ecfaff550d04e152d430", + "justify-self-auto-margins-1.html": [ + "b54eb775114808ff22b82a858426e764a623e432", [ - null, + "css/css-align/blocks/justify-self-auto-margins-1.html", [ [ - "/css/CSS2/text/text-transform-bicameral-021-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "text-transform-bicameral-022.xht": [ - "aa152d397cf6763bd48197d28d65dcf56558cce4", + "justify-self-auto-margins-2.html": [ + "33c98d6c1dfb43ff29f5c63472f041add65faff1", [ - null, + "css/css-align/blocks/justify-self-auto-margins-2.html", [ [ - "/css/CSS2/text/text-transform-bicameral-022-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "text-transform-cap-001.xht": [ - "9b6c9e0c961245e9fb37c679e9e0213bcf29a841", + "justify-self-text-align.html": [ + "71d1f5b94cf4cd7959426c673fea6b9d176e6d9a", [ - null, + "css/css-align/blocks/justify-self-text-align.html", [ [ - "/css/CSS2/text/text-transform-cap-001-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] - ], - "text-transform-cap-002.xht": [ - "4986f4bfec9e72551372f5eab47b520b6051e2f2", + ] + }, + "content-distribution": { + "place-content-shorthand-007.html": [ + "be954c9712189d31aeb92914ab6a078f66087d0e", [ null, [ [ - "/css/CSS2/text/text-transform-cap-001-ref.xht", + "/css/css-align/content-distribution/place-content-shorthand-007-ref.html", "==" ] ], {} ] - ], - "text-transform-cap-003.xht": [ - "1b945056a4662a345854e365bc5e20932fcd6669", + ] + }, + "distribution-values": { + "space-evenly-001.html": [ + "fd16f33b5e936d239124443630b2c79fa05e13f1", [ null, [ [ - "/css/CSS2/text/text-transform-cap-003-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] - ], - "text-transform-lowercase-001.xht": [ - "15c7a4f04806093de0bbf173c1785ef60efb6699", + ] + }, + "gaps": { + "gap-normal-used-001.html": [ + "3d7ab10b8cb175e972feaa73899b1bbedd2e12b0", [ null, [ [ - "/css/CSS2/text/text-transform-lowercase-001-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "text-transform-unicase-001.xht": [ - "c5cefc2a1e0329a07650ab3d1bea13cd53197dc3", + "gap-normal-used-002.html": [ + "0b40646e7ca4f2f396853d5939b01d0af9beecab", [ null, [ [ - "/css/CSS2/text/text-transform-unicase-001-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] - ], - "text-transform-uppercase-001.xht": [ - "b2fdac637d27d72e6e3791ea1e2c28faaf7bb901", + ] + }, + "self-alignment": { + "block-justify-self.html": [ + "1235a04a14e4329509b41621c1fa39c424390bf8", [ null, [ [ - "/css/CSS2/text/text-transform-uppercase-001-ref.xht", + "/css/css-align/self-alignment/block-justify-self-ref.html", "==" ] ], {} ] ], - "text-transform-uppercase-002.xht": [ - "2b7de254d3512dfb7bc28e817ff17c186e80fadd", + "self-align-safe-unsafe-flex-001.html": [ + "bb933b99d722d462b2b824d86fb15e825a598f5a", [ null, [ [ - "/css/CSS2/text/text-transform-uppercase-002-ref.xht", + "/css/css-align/self-alignment/self-align-safe-unsafe-flex-001-ref.html", "==" ] ], {} ] ], - "white-space-001.xht": [ - "f4fb548d004b040d4ae2ea029c6f5198cd08a261", + "self-align-safe-unsafe-flex-002.html": [ + "c7dc1c1aea4c0cd31158e0c24ee060425db32fe3", [ null, [ [ - "/css/CSS2/text/white-space-001-ref.xht", + "/css/css-align/self-alignment/self-align-safe-unsafe-flex-002-ref.html", "==" ] ], {} ] ], - "white-space-002.xht": [ - "5fb1a842e762f3ea9d6a868f0fdb5d9cfa7098a7", + "self-align-safe-unsafe-flex-003.html": [ + "41829f7729d8e57ec371568644b4712fc8d74c4b", [ null, [ [ - "/css/CSS2/text/white-space-002-ref.xht", + "/css/css-align/self-alignment/self-align-safe-unsafe-flex-003-ref.html", "==" ] ], {} ] ], - "white-space-003.xht": [ - "dd59199bfd55be3c5e290edbbce1c79da4f5ce4f", + "self-align-safe-unsafe-grid-001.html": [ + "0c509346278db8c6d0251d62a33679c0a8c8cb96", [ null, [ [ - "/css/CSS2/text/white-space-001-ref.xht", + "/css/css-align/self-alignment/self-align-safe-unsafe-grid-001-ref.html", "==" ] ], {} ] ], - "white-space-004.xht": [ - "641c3f3c0bd6ef48c1fd0650b963981916956fae", + "self-align-safe-unsafe-grid-002.html": [ + "ce6688ed1ed6882ba2c9091f1accdbdbf134a0e5", [ null, [ [ - "/css/CSS2/text/white-space-004-ref.xht", + "/css/css-align/self-alignment/self-align-safe-unsafe-grid-002-ref.html", "==" ] ], {} ] ], - "white-space-005.xht": [ - "aa5b61ca2ffeb3215dd2b52a93d1a94cdd5d0cf8", + "self-align-safe-unsafe-grid-003.html": [ + "9695f0a2f15b2f08babd82326ca410af2d6c829e", [ null, [ [ - "/css/CSS2/text/white-space-001-ref.xht", + "/css/css-align/self-alignment/self-align-safe-unsafe-grid-003-ref.html", "==" ] ], {} ] ], - "white-space-006.xht": [ - "de0061bb230f55150b5bb2f7fa41ce43a909ea8e", + "self-align-start-end-flex-001.html": [ + "e8ce996f40dd985b8d4d064bdb1bca3e8dfba8a0", [ - null, + "css/css-align/self-alignment/self-align-start-end-flex-001.html", [ [ - "/css/CSS2/text/white-space-002-ref.xht", + "/css/css-align/self-alignment/self-align-start-end-flex-001-ref.html", "==" ] ], {} ] - ], - "white-space-007.xht": [ - "3dc9fcc6952339d223b20a8185f08095de42c059", + ] + } + }, + "css-anchor-position": { + "anchor-center-002.html": [ + "b7f61003a67be5baf897fa5a9c7da982586820b1", + [ + null, + [ + [ + "/css/css-anchor-position/anchor-center-002-ref.html", + "==" + ] + ], + {} + ] + ], + "anchor-center-scroll.html": [ + "29b5e06e2a52dc55466920fdbe7741531a518122", + [ + null, + [ + [ + "/css/css-anchor-position/anchor-center-scroll-ref.html", + "==" + ] + ], + {} + ] + ], + "anchor-position-circular.html": [ + "a0147ecc528646d4e74c25a428367cbea9fefbd6", + [ + null, + [ + [ + "/css/css-anchor-position/reference/anchor-position-circular-ref.html", + "==" + ] + ], + {} + ] + ], + "anchor-position-dynamic-005.html": [ + "b22a060cbda81b2edcc0ad94c51df395bd92e531", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "anchor-position-top-layer-001.html": [ + "f40cc0dccf3ccbef010629ebc809229ba83c9b45", + [ + null, + [ + [ + "/css/css-anchor-position/anchor-position-top-layer-ref.html", + "==" + ] + ], + {} + ] + ], + "anchor-position-top-layer-002.html": [ + "11885251ec4189659b05d4d31cccd615eace9171", + [ + null, + [ + [ + "/css/css-anchor-position/anchor-position-top-layer-ref.html", + "==" + ] + ], + {} + ] + ], + "anchor-position-top-layer-003.html": [ + "eb2d2b3fbbc115e9b73fad0b2107d752c8963ad4", + [ + null, + [ + [ + "/css/css-anchor-position/anchor-position-top-layer-ref.html", + "==" + ] + ], + {} + ] + ], + "anchor-position-top-layer-004.html": [ + "5fa1c33b12e7d85de13128d82a5342a170c5f392", + [ + null, + [ + [ + "/css/css-anchor-position/anchor-position-top-layer-ref.html", + "==" + ] + ], + {} + ] + ], + "anchor-position-top-layer-005.html": [ + "418178e5418179f7b417e800ecec14a73cc8739c", + [ + null, + [ + [ + "/css/css-anchor-position/anchor-position-top-layer-ref.html", + "==" + ] + ], + {} + ] + ], + "anchor-position-top-layer-006.html": [ + "c235eccc160b8442295182901c895d286fa0fff9", + [ + null, + [ + [ + "/css/css-anchor-position/anchor-position-top-layer-ref.html", + "==" + ] + ], + {} + ] + ], + "anchor-scroll-001.html": [ + "d0b42cd6202ecc3baec9bb17b59a7ca282d04247", + [ + null, + [ + [ + "/css/css-anchor-position/reference/anchor-scroll-ref.html", + "==" + ] + ], + {} + ] + ], + "anchor-scroll-chained-001.html": [ + "d853ad39a39d7caf690491ca995e839efb384b2c", + [ + null, + [ + [ + "/css/css-anchor-position/reference/anchor-scroll-chained-001-ref.html", + "==" + ] + ], + {} + ] + ], + "anchor-scroll-chained-002.html": [ + "148dedf9488eb3f599e1e5f270ce4ea07cb1ac6b", + [ + null, + [ + [ + "/css/css-anchor-position/reference/anchor-scroll-chained-002-ref.html", + "==" + ] + ], + {} + ] + ], + "anchor-scroll-chained-003.html": [ + "5f4c0ff30060455573facb3ae224ab8a3e147557", + [ + null, + [ + [ + "/css/css-anchor-position/reference/anchor-scroll-chained-002-ref.html", + "==" + ] + ], + {} + ] + ], + "anchor-scroll-chained-004.html": [ + "454abf63b1b1af062c2c6c132acff4c38db8058f", + [ + null, + [ + [ + "/css/css-anchor-position/reference/anchor-scroll-chained-004-ref.html", + "==" + ] + ], + {} + ] + ], + "anchor-scroll-chained-fallback.html": [ + "490d43e12d92293339a779b0080497f2900e77a0", + [ + null, + [ + [ + "/css/css-anchor-position/reference/anchor-scroll-chained-fallback-ref.html", + "==" + ] + ], + {} + ] + ], + "anchor-scroll-composited-scrolling-006.html": [ + "8a53ae24e5b5a203a875219263c12ef40d5c9c56", + [ + null, + [ + [ + "/css/css-anchor-position/reference/anchor-scroll-composited-scrolling-006-ref.html", + "==" + ] + ], + {} + ] + ], + "anchor-scroll-fixedpos-002.html": [ + "970fb45af0c8208aa509f554619326254f97ce18", + [ + null, + [ + [ + "/css/css-anchor-position/reference/anchor-scroll-fixedpos-002-ref.html", + "==" + ] + ], + {} + ] + ], + "anchor-scroll-fixedpos.html": [ + "09ad897b3f9bf4b7f64bfe99e70a183203f957b7", + [ + null, + [ + [ + "/css/css-anchor-position/reference/anchor-scroll-fixedpos-ref.html", + "==" + ] + ], + {} + ] + ], + "anchor-scroll-nested.html": [ + "ad39224ae41e82159721f139143dfa7ca47350a6", + [ + null, + [ + [ + "/css/css-anchor-position/reference/anchor-scroll-nested-ref.html", + "==" + ] + ], + {} + ] + ], + "anchor-scroll-overflow-hidden.html": [ + "d26e48dc67b4805853d0628f89662c1afbe09ace", + [ + null, + [ + [ + "/css/css-anchor-position/anchor-scroll-overflow-hidden-ref.html", + "==" + ] + ], + {} + ] + ], + "anchor-scroll-position-try-012.html": [ + "8eff5e4a8fa9595f57a84b8b5331600a0dd136fd", + [ + null, + [ + [ + "/css/css-anchor-position/anchor-scroll-position-try-012-ref.html", + "==" + ] + ], + {} + ] + ], + "anchor-scroll-scrollable-anchor.html": [ + "ffb5b2ef8005d6a072afd3ffa21cac2dbea3312d", + [ + null, + [ + [ + "/css/css-anchor-position/anchor-scroll-scrollable-anchor-ref.html", + "==" + ] + ], + { + "fuzzy": [ + [ + null, + [ + [ + 1, + 1 + ], + [ + 0, + 50 + ] + ] + ] + ] + } + ] + ], + "anchor-scroll-to-sticky-001.html": [ + "9ce92592901d9f72c308d38fed67b90c1184612d", + [ + null, + [ + [ + "/css/css-anchor-position/reference/anchor-scroll-to-sticky-001-ref.html", + "==" + ] + ], + {} + ] + ], + "anchor-scroll-to-sticky-002.html": [ + "f3e517c4312f90f7d49966a36608b4cb62726497", + [ + null, + [ + [ + "/css/css-anchor-position/reference/anchor-scroll-to-sticky-002-ref.html", + "==" + ] + ], + {} + ] + ], + "anchor-scroll-to-sticky-003.html": [ + "ac5e1c3c692e6eaa93789bd8145fb27bbe61d916", + [ + null, + [ + [ + "/css/css-anchor-position/reference/anchor-scroll-to-sticky-001-ref.html", + "==" + ] + ], + {} + ] + ], + "anchor-scroll-to-sticky-004.html": [ + "ab96639dab06edd71af496546609b48d555b9301", + [ + null, + [ + [ + "/css/css-anchor-position/reference/anchor-scroll-to-sticky-004-ref.html", + "==" + ] + ], + {} + ] + ], + "anchor-scroll-update-001.html": [ + "3ff32ba73954c62beef10f5e8c8640593ef83fd6", + [ + null, + [ + [ + "/css/css-anchor-position/reference/anchor-scroll-ref.html", + "==" + ] + ], + {} + ] + ], + "anchor-scroll-update-002.html": [ + "5695db2a1cded6d3f56f6fd259dd5939833a57ca", + [ + null, + [ + [ + "/css/css-anchor-position/reference/anchor-scroll-ref.html", + "==" + ] + ], + {} + ] + ], + "anchor-scroll-update-003.html": [ + "e41736dbf7117ee109689d2be3e84014693551b7", + [ + null, + [ + [ + "/css/css-anchor-position/reference/anchor-scroll-ref.html", + "==" + ] + ], + {} + ] + ], + "anchor-scroll-update-004.html": [ + "651b262d14fc31e1b0654a70c63886cf2d0fd1a1", + [ + null, + [ + [ + "/css/css-anchor-position/reference/anchor-scroll-ref.html", + "==" + ] + ], + {} + ] + ], + "anchor-scroll-update-005.html": [ + "9c32bda6fcc62089a58071d99936cfbffb863f56", + [ + null, + [ + [ + "/css/css-anchor-position/reference/anchor-scroll-update-005-ref.html", + "==" + ] + ], + {} + ] + ], + "anchor-scroll-update-006.html": [ + "d896d9ca53747b582b0c5de0bdb7ac899c9cd1d8", + [ + null, + [ + [ + "/css/css-anchor-position/reference/anchor-scroll-update-006-ref.html", + "==" + ] + ], + {} + ] + ], + "anchor-scroll-update-007.html": [ + "01d568fff8df70a9d497ce1bac7885b9be7870bc", + [ + null, + [ + [ + "/css/css-anchor-position/reference/anchor-scroll-ref.html", + "==" + ] + ], + {} + ] + ], + "anchor-scroll-vlr.html": [ + "dd6d94b23e1b2ebc14c07599e1133d45c302c03b", + [ + null, + [ + [ + "/css/css-anchor-position/reference/anchor-scroll-vlr-ref.html", + "==" + ] + ], + {} + ] + ], + "anchor-scroll-vrl.html": [ + "a1ee7dd6206bfba1a7c108a5b3181aef8d614484", + [ + null, + [ + [ + "/css/css-anchor-position/reference/anchor-scroll-vrl-ref.html", + "==" + ] + ], + {} + ] + ], + "position-anchor-001.html": [ + "b0a964485c65ed1c8eeff89a1406bda9f4ea9b48", + [ + null, + [ + [ + "/css/css-anchor-position/position-anchor-ref.html", + "==" + ] + ], + {} + ] + ], + "position-anchor-002.html": [ + "a9248ef694f810cc7d06e4ce20f22807e91e6607", + [ + null, + [ + [ + "/css/css-anchor-position/position-anchor-ref.html", + "==" + ] + ], + {} + ] + ], + "position-area-abs-inline-container.html": [ + "deaf60647d4ecf6e2039bacbe41e6eb3e8593d8b", + [ + "css/css-anchor-position/position-area-abs-inline-container.html", + [ + [ + "/css/css-anchor-position/position-area-inline-container-ref.html", + "==" + ] + ], + {} + ] + ], + "position-area-inline-container.html": [ + "b6661ce5baa4a2d8ee3c6a69291096b2be9c74fd", + [ + "css/css-anchor-position/position-area-inline-container.html", + [ + [ + "/css/css-anchor-position/position-area-inline-container-ref.html", + "==" + ] + ], + {} + ] + ], + "position-area-scroll-adjust.html": [ + "497b526fb62b942f93d092c0a247b3f45d8f6cd0", + [ + "css/css-anchor-position/position-area-scroll-adjust.html", + [ + [ + "/css/css-anchor-position/position-area-scroll-adjust-ref.html", + "==" + ] + ], + {} + ] + ], + "position-try-switch-from-fixed-anchor.html": [ + "4c62dc9933283af4391ebe2c248c35830d6b3dc8", + [ + "css/css-anchor-position/position-try-switch-from-fixed-anchor.html", + [ + [ + "/css/css-anchor-position/position-try-switch-from-fixed-anchor-ref.html", + "==" + ] + ], + {} + ] + ], + "position-try-switch-to-fixed-anchor.html": [ + "5024f5bd48d891958953989f98cd774f3a7bbc29", + [ + "css/css-anchor-position/position-try-switch-to-fixed-anchor.html", + [ + [ + "/css/css-anchor-position/position-try-switch-to-fixed-anchor-ref.html", + "==" + ] + ], + {} + ] + ], + "position-visibility-add-no-overflow.html": [ + "a71327ba4ca7923d80692d788dcb8c6baae2d6df", + [ + "css/css-anchor-position/position-visibility-add-no-overflow.html", + [ + [ + "/css/css-anchor-position/position-visibility-no-overflow-ref.html", + "==" + ] + ], + {} + ] + ], + "position-visibility-anchors-valid.tentative.html": [ + "d04bc7c4974f83acc1900b92a4d293a246855d3d", + [ + "css/css-anchor-position/position-visibility-anchors-valid.tentative.html", + [ + [ + "/css/css-anchor-position/position-visibility-anchors-valid-ref.html", + "==" + ] + ], + {} + ] + ], + "position-visibility-anchors-visible-after-scroll-in.html": [ + "4a038f8de3e307634d888a36da084630d513104a", + [ + "css/css-anchor-position/position-visibility-anchors-visible-after-scroll-in.html", + [ + [ + "/css/css-anchor-position/position-visibility-anchors-visible-after-scroll-in-ref.html", + "==" + ] + ], + {} + ] + ], + "position-visibility-anchors-visible-after-scroll-out.html": [ + "2cf2fb3e22538067044c4d2c0ec5c940a82c9dd8", + [ + "css/css-anchor-position/position-visibility-anchors-visible-after-scroll-out.html", + [ + [ + "/css/css-anchor-position/position-visibility-anchors-visible-after-scroll-out-ref.html", + "==" + ] + ], + {} + ] + ], + "position-visibility-anchors-visible-both-position-fixed.tentative.html": [ + "c603288f0a70a1f43e7384b9dd26c474ce96bac5", + [ + "css/css-anchor-position/position-visibility-anchors-visible-both-position-fixed.tentative.html", + [ + [ + "/css/css-anchor-position/position-visibility-anchors-visible-both-position-fixed-ref.html", + "==" + ] + ], + {} + ] + ], + "position-visibility-anchors-visible-chained-001.html": [ + "cdceba665eed9578fd7ffef61ecc04b55d6a089e", + [ + "css/css-anchor-position/position-visibility-anchors-visible-chained-001.html", + [ + [ + "/css/css-anchor-position/position-visibility-anchors-visible-after-scroll-out-ref.html", + "==" + ] + ], + {} + ] + ], + "position-visibility-anchors-visible-chained-002.html": [ + "cd34d07acc3411664e663c9114aaad7ab958892d", + [ + "css/css-anchor-position/position-visibility-anchors-visible-chained-002.html", + [ + [ + "/css/css-anchor-position/position-visibility-anchors-visible-after-scroll-out-ref.html", + "==" + ] + ], + {} + ] + ], + "position-visibility-anchors-visible-chained-003.html": [ + "7b2766d2e5c7835f43776ed123ad480c0daa4534", + [ + "css/css-anchor-position/position-visibility-anchors-visible-chained-003.html", + [ + [ + "/css/css-anchor-position/position-visibility-anchors-visible-after-scroll-out-ref.html", + "==" + ] + ], + {} + ] + ], + "position-visibility-anchors-visible-chained-004.html": [ + "e76e4ff1600f1e03f514d6162f04766da1fb3644", + [ + "css/css-anchor-position/position-visibility-anchors-visible-chained-004.html", + [ + [ + "/css/css-anchor-position/position-visibility-anchors-visible-chained-004-ref.html", + "==" + ] + ], + {} + ] + ], + "position-visibility-anchors-visible-change-anchor.html": [ + "3fda2fa4371d503d246bf867877171a777d116ae", + [ + "css/css-anchor-position/position-visibility-anchors-visible-change-anchor.html", + [ + [ + "/css/css-anchor-position/position-visibility-anchors-visible-change-anchor-ref.html", + "==" + ] + ], + {} + ] + ], + "position-visibility-anchors-visible-change-css-visibility.html": [ + "290de127a2321c255ca751a051875eb68e489129", + [ + "css/css-anchor-position/position-visibility-anchors-visible-change-css-visibility.html", + [ + [ + "/css/css-anchor-position/position-visibility-anchors-visible-change-css-visibility-ref.html", + "==" + ] + ], + {} + ] + ], + "position-visibility-anchors-visible-css-visibility.html": [ + "8ef4762818b081ec92040d2954b421935b24e60f", + [ + "css/css-anchor-position/position-visibility-anchors-visible-css-visibility.html", + [ + [ + "/css/css-anchor-position/position-visibility-anchors-visible-css-visibility-ref.html", + "==" + ] + ], + {} + ] + ], + "position-visibility-anchors-visible-non-intervening-container.html": [ + "42597c4ccc2ad31ce5961c6c935f2c10c5da7ce1", + [ + "css/css-anchor-position/position-visibility-anchors-visible-non-intervening-container.html", + [ + [ + "/css/css-anchor-position/position-visibility-anchors-visible-non-intervening-container-ref.html", + "==" + ] + ], + {} + ] + ], + "position-visibility-anchors-visible-position-fixed.tentative.html": [ + "9c3495a635d2eaeb77de9586f031dedec5d7af97", + [ + "css/css-anchor-position/position-visibility-anchors-visible-position-fixed.tentative.html", + [ + [ + "/css/css-anchor-position/position-visibility-anchors-visible-position-fixed-ref.html", + "==" + ] + ], + {} + ] + ], + "position-visibility-anchors-visible-stacked-child.html": [ + "84b5feb02fc7fb7ba92311ab754cf233caf4520f", + [ + "css/css-anchor-position/position-visibility-anchors-visible-stacked-child.html", + [ + [ + "/css/css-anchor-position/position-visibility-anchors-visible-ref.html", + "==" + ] + ], + {} + ] + ], + "position-visibility-anchors-visible-stacked-child.tentative.html": [ + "4a9fcc0ae50d1be63a1457a1c2f9ae376f5102a7", + [ + "css/css-anchor-position/position-visibility-anchors-visible-stacked-child.tentative.html", + [ + [ + "/css/css-anchor-position/position-visibility-anchors-visible-ref.html", + "==" + ] + ], + {} + ] + ], + "position-visibility-anchors-visible-with-position.html": [ + "8ad3eb7e31053a6978a638e88003eadd150138ff", + [ + "css/css-anchor-position/position-visibility-anchors-visible-with-position.html", + [ + [ + "/css/css-anchor-position/position-visibility-anchors-visible-ref.html", + "==" + ] + ], + {} + ] + ], + "position-visibility-anchors-visible.html": [ + "db246311f94783fb75265db2169133934a2a9050", + [ + "css/css-anchor-position/position-visibility-anchors-visible.html", + [ + [ + "/css/css-anchor-position/position-visibility-anchors-visible-ref.html", + "==" + ] + ], + {} + ] + ], + "position-visibility-no-overflow-scroll.html": [ + "f646f819cddfbf955b36eb7b7d17802a040f9bef", + [ + null, + [ + [ + "/css/css-anchor-position/position-visibility-no-overflow-scroll-ref.html", + "==" + ] + ], + {} + ] + ], + "position-visibility-no-overflow-stacked-child.html": [ + "78a7b3e62025ba71ee26a746d36159c152b3084b", + [ + "css/css-anchor-position/position-visibility-no-overflow-stacked-child.html", + [ + [ + "/css/css-anchor-position/position-visibility-no-overflow-ref.html", + "==" + ] + ], + {} + ] + ], + "position-visibility-no-overflow.html": [ + "0569a9d179c02501eb747d66c830da96da14ae3b", + [ + "css/css-anchor-position/position-visibility-no-overflow.html", + [ + [ + "/css/css-anchor-position/position-visibility-no-overflow-ref.html", + "==" + ] + ], + {} + ] + ], + "position-visibility-remove-anchors-visible.html": [ + "3408642ad2b4017c140020f21c76a6055af55b67", + [ + "css/css-anchor-position/position-visibility-remove-anchors-visible.html", + [ + [ + "/css/css-anchor-position/position-visibility-remove-anchors-visible-ref.html", + "==" + ] + ], + {} + ] + ], + "position-visibility-remove-no-overflow.html": [ + "1761bbea0bf939b579aa15f2c9b1c9da6d701629", + [ + "css/css-anchor-position/position-visibility-remove-no-overflow.html", + [ + [ + "/css/css-anchor-position/position-visibility-no-overflow-ref.html", + "==" + ] + ], + {} + ] + ], + "sticky-anchor-position-invalid.html": [ + "d1efeed5f29263fe3a16d60cbdaf9d2c26357ce5", + [ + null, + [ + [ + "/css/css-anchor-position/reference/sticky-anchor-position-invalid-ref.html", + "==" + ] + ], + {} + ] + ] + }, + "css-animations": { + "animation-delay-008.html": [ + "52883fa72ff5a4a57c6a8c2866805ceb5fa0a507", + [ + null, + [ + [ + "/css/css-animations/animation-common-ref.html", + "==" + ] + ], + {} + ] + ], + "animation-delay-009.html": [ + "6d25b8b1bc00319a71a5fdc8f3fe8af32f844f52", + [ + null, + [ + [ + "/css/css-animations/animation-common-ref.html", + "==" + ] + ], + {} + ] + ], + "animation-delay-010.html": [ + "d18064dd214940a9ed762889f1df38d7ae050765", + [ + null, + [ + [ + "/css/css-animations/animation-common-ref.html", + "==" + ] + ], + {} + ] + ], + "animation-delay-011.html": [ + "415a57475537979e429b0c3c0dd2e0213c17f930", + [ + null, + [ + [ + "/css/css-animations/animation-common-ref.html", + "==" + ] + ], + {} + ] + ], + "animation-important-002.html": [ + "2a68f8e0cacf06e2e5761ef392b90a4f89fcc843", + [ + null, + [ + [ + "/css/css-animations/animation-important-002-ref.html", + "==" + ] + ], + {} + ] + ], + "animation-offscreen-to-onscreen.html": [ + "bfdf432a61e16d20d26f5e0ccfa419f7754950c3", + [ + null, + [ + [ + "/css/css-animations/animation-offscreen-to-onscreen-ref.html", + "==" + ] + ], + {} + ] + ], + "animation-opacity-pause-and-set-time.html": [ + "cbf63ea2178638e6f476307954ba0337d35cd570", + [ + null, + [ + [ + "/css/css-animations/animation-opacity-pause-and-set-time-ref.html", + "==" + ] + ], + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 1 + ], + [ + 0, + 2500 + ] + ] + ] + ] + } + ] + ], + "animation-pseudo-dynamic-001.html": [ + "e141b62149d3b37b5d23f25ba28397228f336d67", + [ + null, + [ + [ + "/css/css-animations/animation-pseudo-dynamic-001-ref.html", + "==" + ] + ], + {} + ] + ], + "animation-transform-pause-and-set-time.html": [ + "e8a9bd9706bde58182bcbdd4c10839f320d90708", + [ + null, + [ + [ + "/css/css-animations/animation-transform-pause-and-set-time-ref.html", + "==" + ] + ], + {} + ] + ], + "cancel-animation-shadow-slot-invalidation.html": [ + "a5c9c6763f58485a15ef21f20c4ec92025ca8993", + [ + null, + [ + [ + "/css/reference/pass_if_pass_below.html", + "==" + ] + ], + {} + ] + ], + "display-none-to-display-block.html": [ + "9e8cb032d38d01eb176ac67d0cd8e0875d2033cb", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "flip-running-animation-via-variable.html": [ + "22d23c1f72603f465b0550b74a3e2367c88684ab", + [ + null, + [ + [ + "/css/css-animations/flip-running-animation-via-variable-ref.html", + "==" + ] + ], + {} + ] + ], + "inheritance-pseudo-element.html": [ + "4ebcbc95dea2a66f2a3751aec74f932b97853b9d", + [ + null, + [ + [ + "/css/css-animations/inheritance-pseudo-element-ref.html", + "==" + ] + ], + {} + ] + ], + "jump-start-animation-before-phase.html": [ + "86cca0bcda1a490718a99a4299ee9f8e1b78d386", + [ + null, + [ + [ + "/css/css-animations/jump-start-animation-before-phase-ref.html", + "==" + ] + ], + {} + ] + ], + "nested-scale-animations.html": [ + "8793e044b703e1bc30a710142d310f1f28c3350a", + [ + null, + [ + [ + "/css/css-animations/nested-scale-animations-ref.html", + "==" + ] + ], + {} + ] + ], + "svg-transform-animation.html": [ + "b08629c2eb76b86c80fe64436a364078c5376dcd", + [ + null, + [ + [ + "/css/css-animations/svg-transform-animation-ref.html", + "==" + ] + ], + {} + ] + ], + "transform-animation-under-large-scale.html": [ + "359380d698bb26a4404d027285150de3b63492a0", + [ + null, + [ + [ + "/css/css-animations/transform-animation-under-large-scale-ref.html", + "==" + ] + ], + {} + ] + ], + "translation-animation-on-important-property.html": [ + "4f0294276450a319cb884ea34f185c957036cc2e", + [ + null, + [ + [ + "/css/css-animations/translation-animation-on-important-property-ref.html", + "==" + ] + ], + {} + ] + ], + "translation-animation-subpixel-offset.html": [ + "5692a0823289811967e889969603cf8799cf7cf6", + [ + null, + [ + [ + "/css/css-animations/translation-animation-subpixel-offset-ref.html", + "==" + ] + ], + {} + ] + ] + }, + "css-backgrounds": { + "animations": { + "background-color-animation-element-not-visible-at-current-viewport.html": [ + "db212e39926789f8b27d06b2a16a0f77046ef3cd", [ null, [ [ - "/css/CSS2/text/white-space-007-ref.xht", + "/css/css-backgrounds/animations/background-color-animation-element-not-visible-at-current-viewport-ref.html", "==" ] ], {} ] ], - "white-space-008.xht": [ - "c81aac449aee730c33e51c5b058d68496f71e4f6", + "background-color-animation-fallback-additive-keyframe.html": [ + "6bb1b8257e73eb7b53969feb1d70f2299e063019", [ null, [ [ - "/css/CSS2/text/white-space-008-ref.xht", + "/css/css-backgrounds/animations/background-color-animation-fallback-additive-keyframe-ref.html", "==" ] ], {} ] ], - "white-space-applies-to-001.xht": [ - "1702e171b2daa6d2e1de5be568308edfe8fbac72", + "background-color-animation-fallback-missing-0-percent.html": [ + "9140b705d435055e9e8d83219d553823d565593f", [ null, [ [ - "/css/CSS2/text/white-space-002-ref.xht", + "/css/css-backgrounds/animations/background-color-animation-fallback-missing-0-percent-ref.html", "==" ] ], {} ] ], - "white-space-applies-to-002.xht": [ - "04e90d7f950b03e0f072a6cdb64621390ec8ebd6", + "background-color-animation-fallback-missing-100-percent.html": [ + "1c5b63201f64464ef87a8b7a71348047dde10da0", [ null, [ [ - "/css/CSS2/text/white-space-002-ref.xht", + "/css/css-backgrounds/animations/background-color-animation-fallback-missing-100-percent-ref.html", "==" ] ], {} ] ], - "white-space-applies-to-003.xht": [ - "67ad1e5d103c04aad755c2287289221cede5a14a", + "background-color-animation-fallback-replace.html": [ + "ce4e927f739bd8808ba62f9fb4862f7f64ceea3c", [ null, [ [ - "/css/CSS2/text/white-space-applies-to-003-ref.xht", + "/css/css-backgrounds/animations/background-color-animation-fallback-replace-ref.html", "==" ] ], {} ] ], - "white-space-applies-to-005.xht": [ - "8508a884be405320378c4376385a906345c9ea98", + "background-color-animation-fragmented.html": [ + "64d94b93224aeec6df8a9b98d0e30ddcdf971b9b", [ null, [ [ - "/css/CSS2/text/white-space-002-ref.xht", + "/css/css-backgrounds/animations/background-color-animation-fragmented-ref.html", "==" ] ], {} ] ], - "white-space-applies-to-006.xht": [ - "b60f51ff757c59d615400036e3b9ab19293a62a8", + "background-color-animation-half-opaque.html": [ + "2e00fa61138d2e3209624de79ccf809ff0bd2da2", [ null, [ [ - "/css/CSS2/text/white-space-002-ref.xht", + "/css/css-backgrounds/animations/background-color-animation-half-opaque-ref.html", "==" ] ], {} ] ], - "white-space-applies-to-007.xht": [ - "2521a6d8b446b9de8ad398327f044bf5ec734308", + "background-color-animation-in-body.html": [ + "e5783f2b41f8e89b15d7b2a5d0c2abfbec37ad40", [ null, [ [ - "/css/CSS2/text/white-space-002-ref.xht", + "/css/css-backgrounds/animations/background-color-animation-in-body-ref.html", "==" ] ], {} ] ], - "white-space-applies-to-008.xht": [ - "214d844f1a015f66458da61e875e206978f2ddba", + "background-color-animation-non-zero-size-element-change-to-zero.html": [ + "6ba25c819678d4a9c0141df457efaf37f5764163", [ null, [ [ - "/css/CSS2/text/white-space-002-ref.xht", + "/css/css-backgrounds/animations/background-color-animation-non-zero-size-element-change-to-zero-ref.html", "==" ] ], {} ] ], - "white-space-applies-to-009.xht": [ - "5328956af61550a684dcaf1cf378764e84790adb", + "background-color-animation-pseudo-element.html": [ + "e5066281d9b9ca82cea0bc3edfa01d8e3bc18ccd", [ null, [ [ - "/css/CSS2/text/white-space-002-ref.xht", + "/css/css-backgrounds/animations/background-color-animation-pseudo-element-ref.html", "==" ] ], {} ] ], - "white-space-applies-to-010.xht": [ - "affee6ab1a8490ca6f26c9005071ad6acefa1c8d", + "background-color-animation-single-keyframe.html": [ + "019b7f83f13500221381e10beaf7631cfd119214", [ null, [ [ - "/css/CSS2/text/white-space-002-ref.xht", + "/css/css-backgrounds/animations/background-color-animation-single-keyframe-ref.html", "==" ] ], {} ] ], - "white-space-applies-to-011.xht": [ - "f4dcfbe9b0314e73008489abb055efdeca26d7ab", + "background-color-animation-three-keyframes1.html": [ + "cba0113f00396d2e6db92ebb6b6b903266eacfb4", [ null, [ [ - "/css/CSS2/text/white-space-002-ref.xht", + "/css/css-backgrounds/animations/background-color-animation-ref.html", "==" ] ], {} ] ], - "white-space-applies-to-012.xht": [ - "f4d9ecfe4e07487f2dcf4e01d3033143d0242e3e", + "background-color-animation-three-keyframes2.html": [ + "d2be16034f9d543b48bf80bfcd634b1580e66899", [ null, [ [ - "/css/CSS2/text/white-space-001-ref.xht", + "/css/css-backgrounds/animations/background-color-animation-three-keyframes2-ref.html", "==" ] ], {} ] ], - "white-space-applies-to-013.xht": [ - "4e01932c837e98f2df3bde56db6fcc6929459cbb", + "background-color-animation-three-keyframes3.html": [ + "708faa556070b1e7190ca3fca9618c4618857b41", [ null, [ [ - "/css/CSS2/text/white-space-001-ref.xht", + "/css/css-backgrounds/animations/background-color-animation-ref.html", "==" ] ], {} ] ], - "white-space-applies-to-014.xht": [ - "fc9b64125262f0f20f02f91fe044572b76495e5f", + "background-color-animation-will-change-contents.html": [ + "a218098721c175064fcb988f31da2ed92fda67bc", [ null, [ [ - "/css/CSS2/text/white-space-002-ref.xht", + "/css/css-backgrounds/animations/background-color-animation-will-change-contents-ref.html", "==" ] ], {} ] ], - "white-space-applies-to-015.xht": [ - "1b8acd7b050039b606718a1ee646a126696fda4a", + "background-color-animation-with-blur.html": [ + "86e97b0f7e9538e40d40aef41cd59b9185c57428", [ null, [ [ - "/css/CSS2/text/white-space-002-ref.xht", + "/css/css-backgrounds/animations/background-color-animation-with-blur-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 1 + ], + [ + 0, + 12100 + ] + ] + ] + ] + } ] ], - "white-space-bidirectionality-001.xht": [ - "1d0f8211af6cfcde7f08f5fc70dd7b3e3c0d38d7", + "background-color-animation-with-images.html": [ + "0ea29b8f1cfd65fb4c2a4f9c570443f582403e9e", [ null, [ [ - "/css/CSS2/text/white-space-bidirectionality-001-ref.xht", + "/css/css-backgrounds/animations/background-color-animation-with-images-ref.html", "==" ] ], {} ] ], - "white-space-collapsing-001.xht": [ - "90f2d4535cd42b0cda62a2fe3b09cc1ad3f849d4", + "background-color-animation-with-mask.html": [ + "9001121edc5b2663ca195592d098c012ff3824bc", [ null, [ [ - "/css/CSS2/text/white-space-collapsing-001-ref.xht", + "/css/css-backgrounds/animations/background-color-animation-with-mask-ref.html", "==" ] ], {} ] ], - "white-space-collapsing-002.xht": [ - "627214c8d1c5afd46942c98ff301d80ee71402d1", + "background-color-animation-with-table1.html": [ + "de5f482e886b54ec67573097c7d8c509a26496cc", [ null, [ [ - "/css/CSS2/text/white-space-collapsing-001-ref.xht", + "/css/css-backgrounds/animations/background-color-animation-with-table1-ref.html", "==" ] ], {} ] ], - "white-space-collapsing-003.xht": [ - "0363a4cf82155ca1c4bd33164a512f8470d48bfe", + "background-color-animation-with-table2.html": [ + "5fc03b3d92b864c641a72ef312b348f06137cf88", [ null, [ [ - "/css/CSS2/text/white-space-collapsing-003-ref.xht", + "/css/css-backgrounds/animations/background-color-animation-with-table1-ref.html", "==" ] ], {} ] ], - "white-space-collapsing-004.xht": [ - "70a2a4f6ef03c0b88aaa9b0073eda4c3ea15e51d", + "background-color-animation-with-table3.html": [ + "0ee8fdd69f9aa8834aadf211f6353cfba0461494", [ null, [ [ - "/css/CSS2/text/white-space-collapsing-004-ref.xht", + "/css/css-backgrounds/animations/background-color-animation-with-table1-ref.html", "==" ] ], {} ] ], - "white-space-collapsing-005.xht": [ - "8ed9d432ee6c83f622880a935997c88a252a1484", + "background-color-animation-with-table4.html": [ + "319ee77481e0cfcc942d8bff1c9bd167f7149bd1", [ null, [ [ - "/css/CSS2/text/white-space-collapsing-004-ref.xht", + "/css/css-backgrounds/animations/background-color-animation-with-table1-ref.html", "==" ] ], {} ] ], - "white-space-collapsing-bidi-001.xht": [ - "41644681eb8a187f9e6625223e93652a466b97c9", + "background-color-animation-with-zero-playbackRate.html": [ + "2a563994620ddcf6bac8eddd004666400a064893", [ null, [ [ - "/css/CSS2/text/white-space-collapsing-bidi-001-ref.xht", + "/css/css-backgrounds/animations/background-color-animation-with-zero-playbackRate-ref.html", "==" ] ], {} ] ], - "white-space-collapsing-bidi-002.xht": [ - "7b6718f4d7d1625ecf9f2af2b8cb0f42eea9f2fd", + "background-color-animation-zero-size-element-change-to-non-zero.html": [ + "f62380f9ed4416e1bc425e2d28526f7706aa4a7f", [ null, [ [ - "/css/CSS2/text/white-space-collapsing-bidi-001-ref.xht", + "/css/css-backgrounds/animations/background-color-animation-zero-size-element-change-to-non-zero-ref.html", "==" ] ], {} ] ], - "white-space-collapsing-bidi-003.xht": [ - "cd21357dac4530019bf38ca1c9fbe4c08c42842a", + "background-color-animation-zero-size-element.html": [ + "008b78a4c00234a553194f3a1673e67aa1e9a223", [ null, [ [ - "/css/CSS2/text/white-space-collapsing-bidi-003-ref.xht", + "/css/css-backgrounds/animations/background-color-animation-zero-size-element-ref.html", "==" ] ], {} ] ], - "white-space-collapsing-breaks-001.xht": [ - "d06ca5f96b1f84f1e0428a50f45aca04533fed81", + "background-color-animation.html": [ + "597f52c9156ec7b08cf07bea2418d79fc9c7b9f9", [ null, [ [ - "/css/CSS2/text/white-space-collapsing-breaks-001-ref.xht", + "/css/css-backgrounds/animations/background-color-animation-ref.html", "==" ] ], {} ] ], - "white-space-generated-content-before-001.xht": [ - "da9fbd170bc82c1d0a9ece04662d9fdb0a333f4c", + "background-color-scroll-into-viewport.html": [ + "24b22b43e4d629e9644a2a6b47094aeb46ac8230", [ null, [ [ - "/css/CSS2/text/white-space-generated-content-before-001-ref.xht", + "/css/css-backgrounds/animations/background-color-scroll-into-viewport-ref.html", "==" ] ], {} ] ], - "white-space-mixed-001.xht": [ - "2202c90644908ed0ff628d13bf7f6f8156a22621", + "background-color-transition-currentcolor.html": [ + "7d12b440511c0321fd3467e69f47529dc38f01da", [ null, [ [ - "/css/CSS2/text/white-space-mixed-001-ref.xht", + "/css/css-backgrounds/animations/background-color-transition-currentcolor-ref.html", "==" ] ], {} ] ], - "white-space-mixed-002.xht": [ - "1de2d46024643dc27daac95fe8f50bd3ecf98992", + "background-color-transition.html": [ + "d43b9415cf65910a46b29089d5030d41cd59ac0e", [ null, [ [ - "/css/CSS2/text/white-space-mixed-002-ref.xht", + "/css/css-backgrounds/animations/background-color-animation-ref.html", "==" ] ], {} ] ], - "white-space-mixed-003.xht": [ - "26a790936a118317598d807192ec86986d7e8784", + "background-color-transparent-animation-in-body.html": [ + "f156f91408770341b2b3e80bde1828752a2162ac", [ null, [ [ - "/css/CSS2/text/white-space-mixed-003-ref.xht", + "/css/css-backgrounds/animations/background-color-transparent-animation-in-body-ref.html", "==" ] ], {} ] ], - "white-space-normal-001.xht": [ - "b50e02f3d0c67bbd7d136b344436c50c8be85b02", + "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": [ + "d49ac0828c089f6e561767466b4f9cc1973c345f", [ null, [ [ - "/css/CSS2/text/white-space-normal-001-ref.xht", + "/css/css-backgrounds/animations/two-background-color-animation-diff-length1-ref.html", "==" ] ], {} ] ], - "white-space-normal-002.xht": [ - "b929d6751ae4d0dc2c48c04c2ef81eb18b35a880", + "two-background-color-animation-diff-length2.html": [ + "979414db263966b58c7ae74f83dfdd13b2aa9586", [ null, [ [ - "/css/CSS2/text/white-space-normal-001-ref.xht", + "/css/css-backgrounds/animations/two-background-color-animation-diff-length2-ref.html", "==" ] ], {} ] ], - "white-space-normal-003.xht": [ - "f7ef8a6d3b419e93084f9b0f8862bc85d8ff795c", + "two-background-color-animation-diff-length3.html": [ + "b727f5c64fa09da695084d73333a63c983a9639e", [ null, [ [ - "/css/CSS2/text/white-space-normal-003-ref.xht", + "/css/css-backgrounds/animations/two-background-color-animation-diff-length3-ref.html", "==" ] ], {} ] - ], - "white-space-normal-004.xht": [ - "4bed414ba258a450e458978b7e966fd8a8b41727", + ] + }, + "background-334.html": [ + "03ee2d3bb251119f55aa194615795563e6ddd350", + [ + null, + [ + [ + "/css/css-backgrounds/reference/background-334-ref.xht", + "==" + ] + ], + {} + ] + ], + "background-attachment-350.html": [ + "979171f6e66d934c05453c4974f0858e4d005bdd", + [ + null, + [ + [ + "/css/css-backgrounds/reference/ref-if-there-is-no-red.xht", + "==" + ] + ], + {} + ] + ], + "background-attachment-353.html": [ + "ca5a41d05ab9e13541e2725289a59d8908b51e41", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "background-attachment-fixed-block-002.html": [ + "7936b027c6e5be321595fcee24db69a706629715", + [ + null, + [ + [ + "/css/css-backgrounds/reference/background-attachment-fixed-block-002-ref.html", + "==" + ] + ], + {} + ] + ], + "background-attachment-fixed-border-radius-offset.html": [ + "5d92bcb56a777e6f22f6a21179029bc2fc2d0f4b", + [ + null, + [ + [ + "/css/css-backgrounds/background-attachment-fixed-border-radius-offset-ref.html", + "==" + ] + ], + {} + ] + ], + "background-attachment-fixed-inline-002.html": [ + "9447b9d9b75c59c86c36622ba57c8a6af4c3978e", + [ + null, + [ + [ + "/css/css-backgrounds/reference/background-attachment-fixed-inline-002-ref.html", + "==" + ] + ], + {} + ] + ], + "background-attachment-fixed-inline-scrolled.html": [ + "746997d6057ba1d2c109dafdfe7730ef149cd21e", + [ + null, + [ + [ + "/css/css-backgrounds/background-attachment-fixed-inline-scrolled-ref.html", + "==" + ] + ], + {} + ] + ], + "background-attachment-fixed-inside-transform-1.html": [ + "9dae31aaccd1d281d05e43c3160000a53914d279", + [ + null, + [ + [ + "/css/css-backgrounds/background-attachment-fixed-inside-transform-1-ref.html", + "==" + ] + ], + {} + ] + ], + "background-attachment-local": { + "attachment-local-clipping-color-1.html": [ + "8cb76ee89c941bb0b78ad90106981a888b46244f", [ null, [ [ - "/css/CSS2/text/white-space-normal-003-ref.xht", + "/css/css-backgrounds/background-attachment-local/attachment-local-clipping-color-1-ref.html", "==" ] ], {} ] ], - "white-space-normal-005.xht": [ - "fad48a1ac610450be6abd364195ba65a8a32faf3", + "attachment-local-clipping-color-2.html": [ + "c3895a9c256c741ab03f77263b0cf6dccb4f9670", [ null, [ [ - "/css/CSS2/text/white-space-normal-005-ref.xht", + "/css/css-backgrounds/background-attachment-local/attachment-local-clipping-color-1-ref.html", "==" ] ], {} ] ], - "white-space-normal-006.xht": [ - "e64b6c8026f6908a86abdd428f65ea607ecc3ff6", + "attachment-local-clipping-color-3.html": [ + "f81a804286cfe686bb5d6530e3b2ed8ea7d90d2f", [ null, [ [ - "/css/CSS2/text/white-space-normal-005-ref.xht", + "/css/css-backgrounds/background-attachment-local/attachment-local-clipping-color-3-ref.html", "==" ] ], {} ] ], - "white-space-normal-007.xht": [ - "efb65641ad0e500c54b45d09db5dd9ec20f9908a", + "attachment-local-clipping-color-4.html": [ + "78e823c8884d6e90d2e34b78aa152c4945e20f75", [ null, [ [ - "/css/CSS2/text/white-space-normal-007-ref.xht", + "/css/css-backgrounds/background-attachment-local/attachment-local-clipping-color-4-ref.html", "==" ] ], {} ] ], - "white-space-normal-008.xht": [ - "10d44a0b285a95e2e61545e28b9f06a266030d2f", + "attachment-local-clipping-color-5.html": [ + "136b704bd699934a0dc206c3847546ee9185a793", [ null, [ [ - "/css/CSS2/text/white-space-normal-008-ref.xht", + "/css/css-backgrounds/background-attachment-local/attachment-local-clipping-color-4-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 10 + ], + [ + 0, + 160 + ] + ] + ] + ] + } ] ], - "white-space-normal-009.xht": [ - "ef5d6f49bd86c0d027eaa5448a856dc96f306bca", + "attachment-local-clipping-color-6.html": [ + "fd13d7183a0fbbb48040a9fa7bdd1a7681ae576f", [ null, [ [ - "/css/CSS2/text/white-space-normal-009-ref.xht", + "/css/css-backgrounds/background-attachment-local/attachment-local-clipping-color-6-ref.html", "==" ] ], {} ] ], - "white-space-nowrap-001.xht": [ - "340755111eaed9c215105334a5c1e3c790d8bf47", + "attachment-local-clipping-image-1.html": [ + "caca856de9467d7212ad16073258bb023d969785", [ null, [ [ - "/css/CSS2/text/white-space-nowrap-001-ref.xht", + "/css/css-backgrounds/background-attachment-local/attachment-local-clipping-image-1-ref.html", "==" ] ], {} ] ], - "white-space-nowrap-005.xht": [ - "2866785a12a17d45815f4979faf50535997bcc57", + "attachment-local-clipping-image-2.html": [ + "c5dca00cb8ac12e246d5a93bca3a28d9ca859d16", [ null, [ [ - "/css/CSS2/text/white-space-normal-005-ref.xht", + "/css/css-backgrounds/background-attachment-local/attachment-local-clipping-image-1-ref.html", "==" ] ], {} ] ], - "white-space-nowrap-006.xht": [ - "04976acd4bf3781d171d0bb5b28225217f9457ee", + "attachment-local-clipping-image-3.html": [ + "1e20e679a795b0be48c017fbaf4d322a5c244b6d", [ null, [ [ - "/css/CSS2/text/white-space-normal-005-ref.xht", + "/css/css-backgrounds/background-attachment-local/attachment-local-clipping-image-3-ref.html", "==" ] ], {} ] ], - "white-space-nowrap-attribute-001.xht": [ - "d8e16ffc7c5707f5937d4ae4ab4bd7f49cad8747", + "attachment-local-clipping-image-4.html": [ + "9a8366242e1a4aed5c4ba088d8e923bf84de3ddb", [ null, [ [ - "/css/CSS2/text/white-space-generated-content-before-001-ref.xht", + "/css/css-backgrounds/background-attachment-local/attachment-local-clipping-image-4-ref.html", "==" ] ], {} ] ], - "white-space-p-element-001.xht": [ - "478aebfc0cee45b3d4815c7252fd6319078e39d9", + "attachment-local-clipping-image-5.html": [ + "1d6f1a8c6628a47e5421eb99769f56d53a74a08a", [ null, [ [ - "/css/CSS2/text/white-space-generated-content-before-001-ref.xht", + "/css/css-backgrounds/background-attachment-local/attachment-local-clipping-image-4-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 10 + ], + [ + 0, + 300 + ] + ] + ] + ] + } ] ], - "white-space-pre-001.xht": [ - "0d5d6b5c129e654e593a5ed59abc112c76647fd2", + "attachment-local-clipping-image-6.html": [ + "11cb068cafd975fc9fd85cb0e70c5232b8c10509", [ null, [ [ - "/css/CSS2/text/white-space-pre-001-ref.xht", + "/css/css-backgrounds/background-attachment-local/attachment-local-clipping-image-6-ref.html", "==" ] ], {} ] ], - "white-space-pre-002.xht": [ - "508be26165c7c32e81b08b3236bffa51c5638a70", + "attachment-local-positioning-2.html": [ + "c358fd47f5b528e2552bb1a90ac8d1eff4fb8f8a", [ null, [ [ - "/css/CSS2/text/white-space-pre-002-ref.xht", + "/css/css-backgrounds/background-attachment-local/attachment-local-positioning-2-ref.html", "==" ] ], {} ] ], - "white-space-pre-005.xht": [ - "485e1520e9028e2216fb37d13b8ee581671768b5", + "attachment-local-positioning-3.html": [ + "b370048e7a6cc2b31b867e695fbc21ef31d981de", [ null, [ [ - "/css/CSS2/text/white-space-normal-005-ref.xht", + "/css/css-backgrounds/background-attachment-local/attachment-local-positioning-3-ref.html", "==" ] ], {} ] ], - "white-space-pre-006.xht": [ - "a58646bbcc7ed66c8fe090b65ab10da3690dba3b", + "attachment-local-positioning-4.html": [ + "d0dbfe166e6f8ef37223350412cb3ffb6a01aca8", [ null, [ [ - "/css/CSS2/text/white-space-normal-005-ref.xht", + "/css/css-backgrounds/background-attachment-local/attachment-local-positioning-4-ref.html", "==" ] ], {} ] ], - "white-space-pre-element-001.xht": [ - "769dd01870f5890401df6be9a153836266f53762", + "attachment-local-positioning-5.html": [ + "ae02307354ac5058c2338cdd9b650107032c1a4c", [ null, [ [ - "/css/CSS2/text/white-space-pre-element-001-ref.xht", + "/css/css-backgrounds/background-attachment-local/attachment-local-positioning-5-ref.html", "==" ] ], {} ] ], - "white-space-processing-001.xht": [ - "f212b0c66b07e57f886307490967e4f3bfd61eff", + "attachment-scroll-positioning-1.html": [ + "67bccc350e00f815b8bcd46f3a85a0d8916d378f", [ null, [ [ - "/css/CSS2/text/white-space-001-ref.xht", + "/css/css-backgrounds/background-attachment-local/attachment-scroll-positioning-1-ref.html", "==" ] ], {} ] - ], - "white-space-processing-002.xht": [ - "3cc4db9868586a94efcf07dce87a3bf1d39f28a9", + ] + }, + "background-attachment-local-block-002.html": [ + "edaabd175e98fdd90efee93424b544ed077fd52b", + [ + null, + [ + [ + "/css/css-backgrounds/reference/background-attachment-local-block-002-ref.html", + "==" + ] + ], + {} + ] + ], + "background-attachment-local-hidden.html": [ + "cbe3440e3894e79223d4f647397a32da60411420", + [ + null, + [ + [ + "/css/css-backgrounds/reference/background-attachment-local-hidden-ref.html", + "==" + ] + ], + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 60 + ], + [ + 0, + 394 + ] + ] + ] + ] + } + ] + ], + "background-attachment-local-inline-002.html": [ + "0ba846eebadaf29b4ffb98b7d5529bfa2187cb2c", + [ + null, + [ + [ + "/css/css-backgrounds/reference/background-attachment-local-inline-002-ref.html", + "==" + ] + ], + {} + ] + ], + "background-attachment-margin-root-001.html": [ + "88bc2845e8b6a6e24ca33547e704deab28e046bb", + [ + null, + [ + [ + "/css/css-backgrounds/background-attachment-margin-root-001-ref.html", + "==" + ] + ], + {} + ] + ], + "background-attachment-margin-root-002.html": [ + "4ee882f9da95ea884851a373d283092031a7cb2e", + [ + null, + [ + [ + "/css/css-backgrounds/background-attachment-margin-root-002-ref.html", + "==" + ] + ], + {} + ] + ], + "background-clip": { + "clip-rounded-corner.html": [ + "3453c5bc8f5e45667ba20a1e6276a08e4b1be714", [ null, [ [ - "/css/CSS2/text/white-space-processing-002-ref.xht", + "/css/css-backgrounds/background-clip/clip-rounded-corner-ref.html", "==" ] ], {} ] ], - "white-space-processing-003.xht": [ - "f4310d257cb25ca2e2f9fb585f946034c8f134b6", + "clip-text-animated-text.html": [ + "4bf6e783a4cfdf13bba9fe29ff7b22c93dc5540c", [ null, [ [ - "/css/CSS2/text/white-space-processing-002-ref.xht", + "/css/css-backgrounds/background-clip/clip-text-animated-text-ref.html", "==" ] ], {} ] ], - "white-space-processing-004.xht": [ - "08e5c8be5fe18068ad38f1c46a4b3f1ad2bd8bfc", + "clip-text-dynamic-2.html": [ + "ee6b45c2ddfb733513e94e9125e626f44b31ab58", [ null, [ [ - "/css/CSS2/text/white-space-processing-002-ref.xht", + "/css/css-backgrounds/background-clip/clip-text-dynamic-2-ref.html", "==" ] ], {} ] ], - "white-space-processing-005.xht": [ - "1237c6830d3823fa0de0a5e49a568493cfb8473b", + "clip-text-flex.html": [ + "618c8c1dbc5bd1a017b50c850b54263cf0828b68", [ null, [ [ - "/css/CSS2/text/white-space-processing-005-ref.xht", + "/css/css-backgrounds/background-clip/clip-text-flex-ref.html", "==" ] ], {} ] ], - "white-space-processing-006.xht": [ - "886e6bdc0595cf5ee9ce21f0e375d97830554c6e", + "clip-text-multi-line.html": [ + "88ad111eb8400ee8c213f6f6f411c25ef61af42c", [ null, [ [ - "/css/CSS2/text/white-space-processing-006-ref.xht", + "/css/css-backgrounds/background-clip/clip-text-multi-line-ref.html", "==" ] ], - {} - ] - ], - "white-space-processing-007.xht": [ - "d05501d169df24cfd467b5dc761c549259754595", + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 1 + ], + [ + 0, + 5846 + ] + ] + ] + ] + } + ] + ] + }, + "background-clip-002.html": [ + "286e482ef223002fd18aedbea34f86b916f55879", + [ + null, + [ + [ + "/css/css-backgrounds/reference/background-clip-002-ref.html", + "==" + ] + ], + {} + ] + ], + "background-clip-003.html": [ + "e8b03bdf43c77624f0ff614ae0b479f5c0c51924", + [ + null, + [ + [ + "/css/css-backgrounds/reference/background-clip-002-ref.html", + "==" + ] + ], + {} + ] + ], + "background-clip-004.html": [ + "d2bf3e00b0e1bd986860f21867ab4137c7c77f65", + [ + null, + [ + [ + "/css/css-backgrounds/reference/background-clip-004-ref.html", + "==" + ] + ], + {} + ] + ], + "background-clip-005.html": [ + "426b85466058342c57aeb8adc2a4291279cb9fef", + [ + null, + [ + [ + "/css/css-backgrounds/reference/background-clip-005-ref.html", + "==" + ] + ], + {} + ] + ], + "background-clip-006.html": [ + "643865a149ee2352c0011f3894cb5d9b3c51029e", + [ + null, + [ + [ + "/css/css-backgrounds/reference/background-clip-005-ref.html", + "==" + ] + ], + {} + ] + ], + "background-clip-007.html": [ + "09596b277290f9f4ad5092dcbe931a7ce91c91cf", + [ + null, + [ + [ + "/css/css-backgrounds/reference/ref-if-there-is-no-red.xht", + "==" + ] + ], + {} + ] + ], + "background-clip-008.html": [ + "5994edfb0e0885cc3f29613cb25d1eeda9254dc0", + [ + null, + [ + [ + "/css/css-backgrounds/reference/ref-if-there-is-no-red.xht", + "==" + ] + ], + {} + ] + ], + "background-clip-009.html": [ + "d2dae107613f844b12dd9e4aecc591c06c1df124", + [ + null, + [ + [ + "/css/css-backgrounds/reference/ref-filled-black-96px-square.xht", + "==" + ] + ], + {} + ] + ], + "background-clip-010.html": [ + "856846d19aaf078050b949f8d1d195a249c99231", + [ + null, + [ + [ + "/css/css-backgrounds/reference/ref-if-there-is-no-red.xht", + "==" + ] + ], + {} + ] + ], + "background-clip-color-repaint.html": [ + "4a5cee080096d1bec9c07655b988ab163e9e6131", + [ + null, + [ + [ + "/css/css-backgrounds/background-clip-color-repaint-ref.html", + "==" + ] + ], + {} + ] + ], + "background-clip-color.html": [ + "b09d8086eccd008c83ee183bfa08629f5af57eec", + [ + null, + [ + [ + "/css/css-backgrounds/background-clip-color-ref.html", + "==" + ] + ], + {} + ] + ], + "background-clip-content-box-001.html": [ + "f0777e88c222e49db0572bbb21cd084e8ab76f97", + [ + null, + [ + [ + "/css/css-backgrounds/reference/background-clip-content-box-ref.html", + "==" + ] + ], + {} + ] + ], + "background-clip-content-box-002.html": [ + "7dfa732643f84dac998eb5f2e05f63993bf6e9d3", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "background-clip-padding-box-001.html": [ + "ed2b21b14837553598fc940d6db4e939fd278e2c", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "background-clip-padding-box-with-border-radius.html": [ + "22d7bd9d297d25206834f93c78b27d9bc3b28039", + [ + null, [ - null, [ + "/css/css-backgrounds/reference/background-clip-padding-box-with-border-radius-ref.html", + "==" + ] + ], + { + "fuzzy": [ [ - "/css/CSS2/text/white-space-processing-005-ref.xht", - "==" + null, + [ + [ + 0, + 29 + ], + [ + 0, + 80 + ] + ] ] - ], - {} - ] - ], - "white-space-processing-008.xht": [ - "1e9fb19486606326ff7331fefd8f8521da773509", + ] + } + ] + ], + "background-clip_padding-box.html": [ + "354cbba90759471f886961d3b0e1a5202618d577", + [ + null, + [ + [ + "/css/css-backgrounds/reference/background_clip_padding-box.html", + "==" + ] + ], + {} + ] + ], + "background-color-body-propagation-001.html": [ + "4cfc36033d403ade4a2bf48bde48eb0d6a82c21b", + [ + null, + [ + [ + "/css/css-backgrounds/background-color-body-propagation-ref.html", + "==" + ] + ], + {} + ] + ], + "background-color-body-propagation-002.html": [ + "1c42637e505b56851025423ce7365138373fb0c4", + [ + null, + [ + [ + "/css/css-backgrounds/background-color-body-propagation-ref.html", + "==" + ] + ], + {} + ] + ], + "background-color-body-propagation-003.html": [ + "8106822a4e8be18848b37ccd1ef38444d1e2bc89", + [ + null, + [ + [ + "/css/css-backgrounds/background-color-body-propagation-ref.html", + "==" + ] + ], + {} + ] + ], + "background-color-body-propagation-004.html": [ + "ede419096ff1faedd91b4f712e238a76101ca081", + [ + null, + [ + [ + "/css/reference/blank.html", + "==" + ] + ], + {} + ] + ], + "background-color-body-propagation-005.html": [ + "05c5421977e74259189bab32b85e35c94daadddb", + [ + null, + [ + [ + "/css/reference/blank.html", + "==" + ] + ], + {} + ] + ], + "background-color-body-propagation-006.html": [ + "4c58cb9dc212f9b02a94b5bc7121cb50bd70cb61", + [ + null, + [ + [ + "/css/reference/blank.html", + "==" + ] + ], + {} + ] + ], + "background-color-body-propagation-007.html": [ + "6deda8dcdb581e6f064ed522c036e5f1d72ea474", + [ + null, + [ + [ + "/css/reference/blank.html", + "==" + ] + ], + {} + ] + ], + "background-color-body-propagation-008.html": [ + "250e4c245baa686f799acbdbdd8eaced6385958e", + [ + null, + [ + [ + "/css/css-backgrounds/background-color-no-body-propagation-ref.html", + "==" + ] + ], + {} + ] + ], + "background-color-body-propagation-009.html": [ + "b681543e3dc866d88080d0b14f7449cf0702c687", + [ + null, + [ + [ + "/css/css-backgrounds/background-color-no-body-propagation-ref.html", + "==" + ] + ], + {} + ] + ], + "background-color-clip.html": [ + "961e161388d7f1962cfc4ecb22c18b47e60ad62e", + [ + null, + [ + [ + "/css/css-backgrounds/reference/background-color-clip.html", + "==" + ] + ], + {} + ] + ], + "background-color-root-propagation-001.html": [ + "0fa84ef2f02767663ab371e95f94050715429484", + [ + null, + [ + [ + "/css/reference/blank.html", + "==" + ] + ], + {} + ] + ], + "background-color-root-propagation-002.html": [ + "0256f66bc532c944e5273b485206372d588bd004", + [ + null, + [ + [ + "/css/reference/blank.html", + "==" + ] + ], + {} + ] + ], + "background-gradient-interpolation-001.html": [ + "f239b1b68d00d7a192b69c7328c60c17bc7cfa77", + [ + "css/css-backgrounds/background-gradient-interpolation-001.html", + [ + [ + "/css/css-backgrounds/background-gradient-interpolation-001-notref.html", + "!=" + ] + ], + {} + ] + ], + "background-gradient-interpolation-002.html": [ + "44d1a5a5a1d0be8e64b91767da80656285d1832c", + [ + "css/css-backgrounds/background-gradient-interpolation-002.html", + [ + [ + "/css/css-backgrounds/background-gradient-interpolation-002-notref.html", + "!=" + ] + ], + {} + ] + ], + "background-gradient-interpolation-003.html": [ + "0b60549355471f1aca4caa540c292dc28e1628f9", + [ + "css/css-backgrounds/background-gradient-interpolation-003.html", [ - null, [ + "/css/css-backgrounds/background-gradient-interpolation-001.html", + "==" + ] + ], + { + "fuzzy": [ [ - "/css/CSS2/text/white-space-processing-002-ref.xht", - "==" + null, + [ + [ + 0, + 2 + ], + [ + 0, + 6500 + ] + ] ] - ], - {} - ] - ], - "white-space-processing-009.xht": [ - "6592161324e3c060346723c1a5f5d9a478a1222e", + ] + } + ] + ], + "background-gradient-subpixel-fills-area.html": [ + "78d4c99c06f3d867cd1a567c5558b97fbc1f89b0", + [ + null, [ - null, [ + "/css/css-backgrounds/reference/background-gradient-subpixel-fills-area-ref.html", + "==" + ] + ], + { + "fuzzy": [ [ - "/css/CSS2/text/white-space-processing-002-ref.xht", - "==" + null, + [ + [ + 0, + 1 + ], + [ + 0, + 6800 + ] + ] ] - ], - {} - ] - ], - "white-space-processing-010.xht": [ - "bbf43365f7a7c30cf3ed750741b24ad2e0e9ffde", + ] + } + ] + ], + "background-image-001.html": [ + "af75ae1772b930ab82047adbd32bbaedaa788a2b", + [ + null, + [ + [ + "/css/css-backgrounds/reference/background-image-001-ref.html", + "==" + ] + ], + {} + ] + ], + "background-image-002.html": [ + "6e0ea774f23521a881e740c59eb77c4c444c8cb1", + [ + null, + [ + [ + "/css/css-backgrounds/reference/background-image-001-ref.html", + "==" + ] + ], + {} + ] + ], + "background-image-003.html": [ + "dd89391c4e58ac4054f7dde10e6d6bc8d36909fd", + [ + null, + [ + [ + "/css/css-backgrounds/reference/background-image-001-ref.html", + "==" + ] + ], + {} + ] + ], + "background-image-004.html": [ + "db2953ed2cce29f78dc58131f69ea17ea9e0bbdc", + [ + null, + [ + [ + "/css/css-backgrounds/reference/background-image-001-ref.html", + "==" + ] + ], + {} + ] + ], + "background-image-005.html": [ + "acee15e713cad204d1824505eb7e2ed5f1a8f7fa", + [ + null, + [ + [ + "/css/css-backgrounds/reference/background-image-001-ref.html", + "==" + ] + ], + {} + ] + ], + "background-image-006.html": [ + "77d97593f48ca4fa298351f00f450ef36d4a511c", + [ + null, + [ + [ + "/css/css-backgrounds/reference/background-image-001-ref.html", + "==" + ] + ], + {} + ] + ], + "background-image-007.html": [ + "b532dd6397cd49ec3d4e47fe3cda8b972c7bf4a8", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "background-image-centered-with-border-radius.html": [ + "925903b9e5bd6e570cd978f013983ac6e664989e", + [ + null, + [ + [ + "/css/css-backgrounds/reference/background-image-centered-with-border-radius-ref.html", + "==" + ] + ], + {} + ] + ], + "background-image-centered.html": [ + "4d5633f1bf61b5d886925a478a5a988ccabc1159", + [ + null, + [ + [ + "/css/css-backgrounds/background-image-centered-ref.html", + "==" + ] + ], + {} + ] + ], + "background-image-cover-zoomed-1.html": [ + "b4dca32fddb9e4bcf68b05d809edccaf4a0ecf40", + [ + null, + [ + [ + "/css/css-backgrounds/reference/background-image-cover-zoomed-1-ref.html", + "==" + ] + ], + {} + ] + ], + "background-image-first-letter.html": [ + "87160959a29e27c4fef3c15e39fd576aea456253", + [ + null, + [ + [ + "/css/css-backgrounds/reference/background-image-first-letter-ref.html", + "==" + ] + ], + {} + ] + ], + "background-image-first-line.html": [ + "eb8cbbd0be5a632b1715dcc6a0b9836b1645cf22", + [ + null, + [ + [ + "/css/css-backgrounds/reference/background-image-first-line-ref.html", + "==" + ] + ], + {} + ] + ], + "background-image-gradient-currentcolor-conic-repaint.html": [ + "cbd524615f52086c81b7d00e56a7ed11980aa292", + [ + null, + [ + [ + "/css/css-backgrounds/background-image-gradient-currentcolor-conic-repaint-ref.html", + "==" + ] + ], + {} + ] + ], + "background-image-gradient-currentcolor-linear-repaint.html": [ + "1ad63ccef6772ca01b2ccdfba2faabb5b0db491c", + [ + null, + [ + [ + "/css/css-backgrounds/background-image-gradient-currentcolor-linear-repaint-ref.html", + "==" + ] + ], + {} + ] + ], + "background-image-gradient-currentcolor-radial-repaint.html": [ + "3182f343cfbf17caaedb1a00179fb002a9ff9f74", + [ + null, + [ + [ + "/css/css-backgrounds/background-image-gradient-currentcolor-radial-repaint-ref.html", + "==" + ] + ], + {} + ] + ], + "background-image-gradient-currentcolor-visited.html": [ + "65467b5ebae3f42e3dd5e0a75a4d695b90751697", + [ + null, + [ + [ + "/css/css-backgrounds/background-image-gradient-currentcolor-visited-ref.html", + "==" + ] + ], + {} + ] + ], + "background-image-gradient-interpolation-repaint.html": [ + "8f5d0f14bbd47b4bdaa26b453a2834bbc4daaae7", + [ + null, + [ + [ + "/css/css-backgrounds/background-image-gradient-interpolation-repaint-ref.html", + "==" + ] + ], + {} + ] + ], + "background-image-large-with-auto.html": [ + "a5e487b3e12125d25416da4461253ffc4d9b36ea", + [ + null, + [ + [ + "/css/css-backgrounds/reference/background-image-large-with-auto-ref.html", + "==" + ] + ], + {} + ] + ], + "background-image-none-gradient-repaint.html": [ + "1ddca5e21d9032a5658b08480f7b12e400b02b0a", + [ + null, [ - null, [ + "/css/css-backgrounds/background-clip-color-repaint-ref.html", + "==" + ] + ], + { + "fuzzy": [ [ - "/css/CSS2/text/white-space-processing-002-ref.xht", - "==" + null, + [ + [ + 0, + 1 + ], + [ + 0, + 9693 + ] + ] ] - ], - {} - ] - ], - "white-space-processing-011.xht": [ - "6b42dffe5edf906e12b78ed22e39b12f5eaf1d9b", + ] + } + ] + ], + "background-image-shared-stylesheet.html": [ + "c0c0661291b8a4ae1c4b33a7d231f9511d878b9f", + [ + null, + [ + [ + "/css/css-backgrounds/background-image-shared-stylesheet-ref.html", + "==" + ] + ], + {} + ] + ], + "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", + [ + null, + [ + [ + "/css/css-backgrounds/reference/background-image-table-cells-zoomed-ref.html", + "==" + ] + ], + {} + ] + ], + "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", + [ + null, [ - null, [ + "/css/css-backgrounds/background-margin-iframe-root-ref.html", + "==" + ] + ], + { + "fuzzy": [ [ - "/css/CSS2/text/white-space-002-ref.xht", - "==" + null, + [ + [ + 0, + 1 + ], + [ + 0, + 750 + ] + ] ] - ], - {} - ] - ], - "white-space-processing-012.xht": [ - "688d2c5ef6881ec429962ab21d4cf3811a15ded1", + ] + } + ] + ], + "background-margin-root.html": [ + "01fba7eb6adc274cc0b51447f32a25bcb4268239", + [ + null, [ - null, [ + "/css/css-backgrounds/background-margin-root-ref.html", + "==" + ] + ], + { + "fuzzy": [ [ - "/css/CSS2/text/white-space-002-ref.xht", - "==" + null, + [ + [ + 0, + 1 + ], + [ + 0, + 19000 + ] + ] ] - ], - {} - ] - ], - "white-space-processing-013.xht": [ - "b6dee8f2a58b3a49eb0bf39c12b1f620d8b81fc7", + ] + } + ] + ], + "background-margin-transformed-root.html": [ + "4c0e1085c64aef9e2b7c3646bf1504648d9a707c", + [ + null, [ - null, [ + "/css/css-backgrounds/background-margin-transformed-root-ref.html", + "==" + ] + ], + { + "fuzzy": [ [ - "/css/CSS2/text/white-space-processing-013-ref.xht", - "==" + null, + [ + [ + 0, + 1 + ], + [ + 0, + 19000 + ] + ] ] - ], - {} - ] - ], - "white-space-processing-014.xht": [ - "8f4c10f6e024b0837c2a094faca96faee58a4511", + ] + } + ] + ], + "background-margin-will-change-root.html": [ + "ce34c99d777bbd71f10fac09fa42f5389ee7f88a", + [ + null, [ - null, [ + "/css/css-backgrounds/background-margin-will-change-root-ref.html", + "==" + ] + ], + { + "fuzzy": [ [ - "/css/CSS2/text/white-space-processing-014-ref.xht", - "==" + null, + [ + [ + 0, + 1 + ], + [ + 0, + 19000 + ] + ] ] - ], - {} - ] - ], - "white-space-processing-015.xht": [ - "329753677b5241ec30c20a135e0a081a9b871130", + ] + } + ] + ], + "background-none-none-and-color.html": [ + "49276cd29cca916e77a8da6a46c5602cd5814084", + [ + null, + [ + [ + "/css/css-backgrounds/background-none-none-and-color-ref.html", + "==" + ] + ], + {} + ] + ], + "background-origin": { + "origin-border-box.html": [ + "bf1607287a1102030d37b9d2ff015be6f90ff083", [ null, [ [ - "/css/CSS2/text/white-space-processing-015-ref.xht", + "/css/css-backgrounds/reference/origin-border-box-ref.html", "==" ] ], {} ] ], - "white-space-processing-016.xht": [ - "f284ec407d1bef71cc89d5f90f7d53db441e0bef", + "origin-border-box_with_position.html": [ + "a2695d4fb71b7ae5cfdc13bf21071acdc45b2315", [ null, [ [ - "/css/CSS2/text/white-space-processing-016-ref.xht", + "/css/css-backgrounds/reference/origin-border-box_with_position-ref.html", "==" ] ], {} ] ], - "white-space-processing-017.xht": [ - "ed3dc31693e3d188f12843ad931b67c650c2b8c2", + "origin-border-box_with_radius.html": [ + "4b123cf664101c8704ad8f07da562d37db01927b", [ null, [ [ - "/css/CSS2/text/white-space-processing-016-ref.xht", + "/css/css-backgrounds/reference/origin-border-box_with_radius-ref.html", "==" ] ], {} ] ], - "white-space-processing-018.xht": [ - "57d065a25e86ce8085cdce15ec427f67417a3d84", + "origin-border-box_with_size.html": [ + "7de6afbfb6c6ecc695f63ba8d83649c26a52dbbc", [ null, [ [ - "/css/CSS2/text/white-space-processing-016-ref.xht", + "/css/css-backgrounds/reference/origin-border-box_with_size-ref.html", "==" ] ], {} ] ], - "white-space-processing-019.xht": [ - "4c6600be054ec06ce50bd7b0218b06e66f5cb8f5", + "origin-content-box.html": [ + "b8bb74405b7e1f0371ce5aed810d7d0fcffda0bc", [ null, [ [ - "/css/CSS2/text/white-space-001-ref.xht", + "/css/css-backgrounds/reference/origin-content-box-ref.html", "==" ] ], {} ] ], - "white-space-processing-020.xht": [ - "b54037045deb60792732f20f2274be3cc8860f89", + "origin-content-box_with_position.html": [ + "5637df98869f66bf93834f1a1a51f40b399c186e", [ null, [ [ - "/css/CSS2/text/white-space-001-ref.xht", + "/css/css-backgrounds/reference/origin-content-box_with_position-ref.html", "==" ] ], {} ] ], - "white-space-processing-021.xht": [ - "b6bae368e91e09a69567360b248f2629f9ecc97f", + "origin-content-box_with_radius.html": [ + "5be4fc6b3e66c2ac5cb62cad4875d0b3c01e46a4", [ null, [ [ - "/css/CSS2/text/white-space-001-ref.xht", + "/css/css-backgrounds/reference/origin-content-box_with_radius-ref.html", "==" ] ], {} ] ], - "white-space-processing-022.xht": [ - "ccc6e91eded841e332af5800afe220511be55d98", + "origin-content-box_with_size.html": [ + "e0c26d5fe16fbee3fbcef7f575c4900117715390", [ null, [ [ - "/css/CSS2/text/white-space-001-ref.xht", + "/css/css-backgrounds/reference/origin-content-box_with_size-ref.html", "==" ] ], {} ] ], - "white-space-processing-023.xht": [ - "25a77a6ea6991a49cd0d6e40367f302b86e760e3", + "origin-padding-box.html": [ + "0e1cbe00f57e3c97666d7829078195b7d4ed2df8", [ null, [ [ - "/css/CSS2/text/white-space-001-ref.xht", + "/css/css-backgrounds/reference/origin-padding-box-ref.html", "==" ] ], {} ] ], - "white-space-processing-024.xht": [ - "8f6a83dbc9b08aac4df84831b77288efbfc1c555", + "origin-padding-box_with_position.html": [ + "c7a2310b031a100a98ef010b9b3e2b51eb02ca06", [ null, [ [ - "/css/CSS2/text/white-space-001-ref.xht", + "/css/css-backgrounds/reference/origin-padding-box_with_position-ref.html", "==" ] ], {} ] ], - "white-space-processing-025.xht": [ - "34eda9c291c68cf4bc4cc5c2e0713263cf3acb5b", + "origin-padding-box_with_radius.html": [ + "d0010a66049f13c15e50b2f98f72040edc40f678", [ null, [ [ - "/css/CSS2/text/white-space-001-ref.xht", + "/css/css-backgrounds/reference/origin-padding-box_with_radius-ref.html", "==" ] ], {} ] ], - "white-space-processing-026.xht": [ - "a9462df88a7ce78e0f4c9879cf60502c68454126", + "origin-padding-box_with_size.html": [ + "717982666167fdc1e31b70951af2db605c4b8cd1", [ null, [ [ - "/css/CSS2/text/white-space-001-ref.xht", + "/css/css-backgrounds/reference/origin-padding-box_with_size-ref.html", "==" ] ], {} ] - ], - "white-space-processing-027.xht": [ - "9b3b10f7807efc2e2ae733e3b211ed0199774608", + ] + }, + "background-origin-002.html": [ + "e86311f799f442c9fe634763408dfe4623977891", + [ + null, + [ + [ + "/css/css-backgrounds/reference/background-origin-002-ref.html", + "==" + ] + ], + {} + ] + ], + "background-origin-003.html": [ + "4c2cbdd12c8b356091590d05285e4b986cbd7610", + [ + null, + [ + [ + "/css/css-backgrounds/reference/background-origin-002-ref.html", + "==" + ] + ], + {} + ] + ], + "background-origin-004.html": [ + "d94c0ffbc7a57a17a6f1bd72b7478c21ae792093", + [ + null, + [ + [ + "/css/css-backgrounds/reference/background-origin-004-ref.html", + "==" + ] + ], + {} + ] + ], + "background-origin-005.html": [ + "4521554c034b7e184438f3947bec306be55f74f1", + [ + null, + [ + [ + "/css/css-backgrounds/reference/background-origin-005-ref.html", + "==" + ] + ], + {} + ] + ], + "background-origin-006.html": [ + "9dfa4f99c5ff9507efce1dc53c8b80bec3eb7051", + [ + null, + [ + [ + "/css/css-backgrounds/reference/background-origin-006-ref.html", + "==" + ] + ], + {} + ] + ], + "background-origin-007.html": [ + "8652495f5736d5250041fdfe9037cd402b43c161", + [ + null, + [ + [ + "/css/css-backgrounds/reference/background-origin-007-ref.html", + "==" + ] + ], + {} + ] + ], + "background-origin-008.html": [ + "a4d7e993e3e138398cf91a20ebda38f20846adad", + [ + null, + [ + [ + "/css/css-backgrounds/reference/background-origin-005-ref.html", + "==" + ] + ], + {} + ] + ], + "background-paint-order-001.html": [ + "cf567ff96b7abd1e93146596866c75d1241618c5", + [ + null, + [ + [ + "/css/css-backgrounds/reference/background-paint-order-001-ref.html", + "==" + ] + ], + {} + ] + ], + "background-position": { + "background-position-bottom-right-repeat-round.html": [ + "c6d93e148c0ad777af335c8f6f80cdcaafa6d450", [ null, [ [ - "/css/CSS2/text/white-space-001-ref.xht", + "/css/css-backgrounds/background-position/reference/background-position-bottom-right-repeat-round-ref.html", "==" ] ], {} ] ], - "white-space-processing-028.xht": [ - "270e5f5dd183889f08e044eea050a55a86b9e2fc", + "background-position-right-in-body.html": [ + "4c4024e2e596bd61c87f6ba8c3083837a03dba10", [ null, [ [ - "/css/CSS2/text/white-space-001-ref.xht", + "/css/filter-effects/reference/green-100x100.html", "==" ] ], {} ] ], - "white-space-processing-029.xht": [ - "513ffda908f51b3cbc85233fba2f642888559597", + "subpixel-position-center.tentative.html": [ + "b708e123122f7e299919401cf8fb8554f77889bf", [ null, [ [ - "/css/CSS2/text/white-space-001-ref.xht", + "/css/css-backgrounds/background-position/reference/subpixel-position-center-ref.tentative.html", "==" ] ], {} ] - ], - "white-space-processing-030.xht": [ - "7f3fb4cfb6937ccba229329e38e3761aad6a6624", + ] + }, + "background-position-calc-minmax-001.html": [ + "4e71f55623b49d728cb9f49caa9583c751a26868", + [ + null, + [ + [ + "/css/css-backgrounds/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "background-position-negative-percentage-comparison-002.html": [ + "b349617c58bb4dc9f1d08a43ba35aabfba26a65b", + [ + null, + [ + [ + "/css/css-backgrounds/reference/background-position-negative-percentage-comparison-ref.html", + "==" + ] + ], + {} + ] + ], + "background-position-negative-percentage-comparison.html": [ + "389ee719196cd3dd1afae63d6d773039d0472111", + [ + null, + [ + [ + "/css/css-backgrounds/reference/background-position-negative-percentage-comparison-ref.html", + "==" + ] + ], + {} + ] + ], + "background-position-subpixel-at-border.tentative.html": [ + "ad2fa4dc02183b48f76bb8a782e6894704d7b24b", + [ + null, + [ + [ + "/css/css-backgrounds/reference/background-position-subpixel-at-border-ref.tentative.html", + "==" + ] + ], + {} + ] + ], + "background-position-three-four-values.html": [ + "b3a1314486043970cc579ccdd0f764c5f15d40a0", + [ + null, + [ + [ + "/css/css-backgrounds/reference/background-position-three-four-values-ref.html", + "==" + ] + ], + {} + ] + ], + "background-position-xy-three-four-values-passthru.html": [ + "e504ecca7dd9105240157f4842eafd0b14260202", + [ + null, + [ + [ + "/css/css-backgrounds/reference/background-position-three-four-values-ref.html", + "==" + ] + ], + {} + ] + ], + "background-repeat": { + "background-repeat-no-repeat.xht": [ + "d102e80cce939e617e1d8e6da7b71e096a222431", [ null, [ [ - "/css/CSS2/text/white-space-001-ref.xht", + "/css/css-backgrounds/background-repeat/reference/background-repeat-no-repeat.xht", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 1 + ], + [ + 0, + 5 + ] + ] + ] + ] + } ] ], - "white-space-processing-031.xht": [ - "b0323636233ef2cd641b9cdf927b9bc59d9a2437", + "background-repeat-repeat-x.xht": [ + "2f3984a7879326808d749fb96df8a1aa45dd6b38", [ null, [ [ - "/css/CSS2/text/white-space-processing-031-ref.xht", + "/css/css-backgrounds/background-repeat/reference/background-repeat-repeat-x.xht", "==" ] ], {} ] ], - "white-space-processing-032.xht": [ - "11b37aa1f44d177fc7f87a0d9673c03bc4487471", + "background-repeat-repeat-y.xht": [ + "b6ba5938a12ee058e9d1f068ea39fc3d4d4372dd", [ null, [ [ - "/css/CSS2/text/white-space-processing-031-ref.xht", + "/css/css-backgrounds/background-repeat/reference/background-repeat-repeat-y.xht", "==" ] ], {} ] ], - "white-space-processing-033.xht": [ - "ba6af357ba3d1918ca214e1b13aa99c1f03f7761", + "background-repeat-round-roundup.xht": [ + "14b0f175a157c8505b7a2dd6cf850fa2dc6670a0", [ null, [ [ - "/css/CSS2/text/white-space-processing-031-ref.xht", + "/css/css-backgrounds/background-repeat/reference/background-repeat-round-roundup.xht", "==" ] ], {} ] ], - "white-space-processing-034.xht": [ - "4acf4e580cbc5a7149b1ba8efd24ed95a4a2b0be", + "background-repeat-round.xht": [ + "507a75c573c1fb0f7ac4c8a802e38bfb21d93b0c", [ null, [ [ - "/css/CSS2/text/white-space-processing-031-ref.xht", + "/css/css-backgrounds/background-repeat/reference/background-repeat-round.xht", "==" ] ], {} ] ], - "white-space-processing-035.xht": [ - "aec28aa8a806ec1fb0714e3e14545adc996bca9c", + "background-repeat-space.xht": [ + "8867520c56eb70a6d590b9fa3ffe7e20f53519d0", [ null, [ [ - "/css/CSS2/text/white-space-processing-031-ref.xht", + "/css/css-backgrounds/background-repeat/reference/background-repeat-space.xht", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 53 + ], + [ + 0, + 2796 + ] + ] + ] + ] + } ] ], - "white-space-processing-036.xht": [ - "0755c3b51ffa73a9ec8eb5fdb212e07ff3ff753f", + "gradient-repeat-spaced-with-borders.html": [ + "289e856b4cdec00cfbd84b7e8aa0f5972b8f98fc", [ null, [ [ - "/css/CSS2/text/white-space-processing-031-ref.xht", + "/css/css-backgrounds/background-repeat/reference/gradient-repeat-spaced-with-borders.html", "==" ] ], {} ] - ], - "white-space-processing-037.xht": [ - "11ed4be9ca89926b0749fe05aa81650e39ac7b87", + ] + }, + "background-repeat-round-1a.html": [ + "6717ce1b348584c1d55feb3d868a07b4473df432", + [ + null, + [ + [ + "/css/css-backgrounds/background-repeat-round-1-ref.html", + "==" + ] + ], + {} + ] + ], + "background-repeat-round-1b.html": [ + "831666efd2ae810f1d20733113b991e3aa8efe74", + [ + null, [ - null, [ + "/css/css-backgrounds/background-repeat-round-1-ref.html", + "==" + ] + ], + { + "fuzzy": [ [ - "/css/CSS2/text/white-space-processing-037-ref.xht", - "==" + null, + [ + [ + 0, + 1 + ], + [ + 0, + 12 + ] + ] ] - ], - {} - ] - ], - "white-space-processing-038.xht": [ - "935e3ff0430aa12d4055eff201c4640e3f4118d3", + ] + } + ] + ], + "background-repeat-round-1c.html": [ + "3fcfd80b1c790f78f6a05b52537d9289831a4483", + [ + null, + [ + [ + "/css/css-backgrounds/background-repeat-round-1-ref.html", + "==" + ] + ], + {} + ] + ], + "background-repeat-round-1d.html": [ + "7b7d42606ddccf6c9cc06155ec7b9282be297e94", + [ + null, [ - null, [ + "/css/css-backgrounds/background-repeat-round-1-ref.html", + "==" + ] + ], + { + "fuzzy": [ [ - "/css/CSS2/text/white-space-processing-037-ref.xht", - "==" + null, + [ + [ + 0, + 1 + ], + [ + 0, + 12 + ] + ] ] - ], - {} - ] - ], - "white-space-processing-039.xht": [ - "db66acbd2cfe4652178b99adf81cfc89e441969f", + ] + } + ] + ], + "background-repeat-round-1e.html": [ + "9fbf786bd138181aca17cc979f973fcd0de38702", + [ + null, [ - null, [ + "/css/css-backgrounds/background-repeat-round-1-ref.html", + "==" + ] + ], + { + "fuzzy": [ [ - "/css/CSS2/text/white-space-processing-037-ref.xht", - "==" + null, + [ + [ + 0, + 1 + ], + [ + 0, + 12 + ] + ] ] - ], - {} - ] - ], - "white-space-processing-040.xht": [ - "bda32c7b315d62fbc6b70e5df97c4f4442ef394e", + ] + } + ] + ], + "background-repeat-round-2.html": [ + "a49224cc1baca9bf37f49a30bba7f5033c7f83bd", + [ + null, [ - null, [ + "/css/css-backgrounds/background-repeat-round-2-ref.html", + "==" + ] + ], + { + "fuzzy": [ [ - "/css/CSS2/text/white-space-processing-037-ref.xht", - "==" + null, + [ + [ + 0, + 1 + ], + [ + 0, + 9 + ] + ] ] - ], - {} - ] - ], - "white-space-processing-041.xht": [ - "2e3644c4f4efe10d9015866cb590a11ed06a1a7c", + ] + } + ] + ], + "background-repeat-round-3.html": [ + "e7d6f4527234b4785aea66fccfc82fcf8e5739fa", + [ + null, [ - null, [ + "/css/css-backgrounds/background-repeat-round-3-ref.html", + "==" + ] + ], + { + "fuzzy": [ [ - "/css/CSS2/text/white-space-processing-037-ref.xht", - "==" + null, + [ + [ + 0, + 1 + ], + [ + 0, + 9 + ] + ] ] - ], - {} - ] - ], - "white-space-processing-042.xht": [ - "a33484aece4adead7efaae1861d4da23245b6400", + ] + } + ] + ], + "background-repeat-round-4.html": [ + "be1a4c8ae9ce4ae15c36ba903566c45bda4b9f44", + [ + null, + [ + [ + "/css/css-backgrounds/background-repeat-round-4-ref.html", + "==" + ] + ], + {} + ] + ], + "background-repeat-space-10.html": [ + "cb1c782116355f25254852b1c0568db8c4c2cba2", + [ + null, + [ + [ + "/css/css-backgrounds/background-repeat-space-10-ref.html", + "==" + ] + ], + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 52 + ], + [ + 0, + 990 + ] + ] + ] + ] + } + ] + ], + "background-repeat-space-1a.html": [ + "f2dfa9a0a6d83d51d9a94a7b2fca008809a515cc", + [ + null, [ - null, [ + "/css/css-backgrounds/background-repeat-space-1-ref.html", + "==" + ] + ], + { + "fuzzy": [ [ - "/css/CSS2/text/white-space-processing-042-ref.xht", - "==" + null, + [ + [ + 0, + 52 + ], + [ + 0, + 7950 + ] + ] ] - ], - {} - ] - ], - "white-space-processing-043.xht": [ - "aeaf8d82c1e78e9e21d6005f47dca7bebd462de6", + ] + } + ] + ], + "background-repeat-space-1b.html": [ + "b1e6777bf26a2690b9be0f182d8ea441a35678da", + [ + null, [ - null, [ + "/css/css-backgrounds/background-repeat-space-1-ref.html", + "==" + ] + ], + { + "fuzzy": [ [ - "/css/CSS2/text/white-space-processing-043-ref.xht", - "==" + null, + [ + [ + 0, + 52 + ], + [ + 0, + 7950 + ] + ] ] - ], - {} - ] - ], - "white-space-processing-044.xht": [ - "624bf6883748df03b43c7ae9d84f50cecc31b014", + ] + } + ] + ], + "background-repeat-space-1c.html": [ + "3f562042aeed0b9c2f5f86c10fa57ca511bd5625", + [ + null, [ - null, [ + "/css/css-backgrounds/background-repeat-space-1-ref.html", + "==" + ] + ], + { + "fuzzy": [ [ - "/css/CSS2/text/white-space-processing-043-ref.xht", - "==" + null, + [ + [ + 0, + 52 + ], + [ + 0, + 7950 + ] + ] ] - ], - {} - ] - ], - "white-space-processing-045.xht": [ - "0d01b72d64e84f040f8a4c3b262e16eaf870fecf", + ] + } + ] + ], + "background-repeat-space-2.html": [ + "ac9664482c576dd22243ba29fd7e5e1b28934e3f", + [ + null, + [ + [ + "/css/css-backgrounds/background-repeat-space-2-ref.html", + "==" + ] + ], + {} + ] + ], + "background-repeat-space-3.html": [ + "c55f918c175aa47d1d4c58b2bcb91ed84344a67e", + [ + null, [ - null, [ + "/css/css-backgrounds/background-repeat-space-3-ref.html", + "==" + ] + ], + { + "fuzzy": [ [ - "/css/CSS2/text/white-space-processing-043-ref.xht", - "==" + null, + [ + [ + 0, + 52 + ], + [ + 0, + 5300 + ] + ] ] - ], - {} - ] - ], - "white-space-processing-046.xht": [ - "3b81e108da65c431a6dba9e1c44764d9e3fd5ef9", + ] + } + ] + ], + "background-repeat-space-4.html": [ + "c3b35d6a6dacc0855349e7cbf534f3824d9739a7", + [ + null, [ - null, [ + "/css/css-backgrounds/background-repeat-space-4-ref.html", + "==" + ] + ], + { + "fuzzy": [ [ - "/css/CSS2/text/white-space-processing-046-ref.xht", - "==" + null, + [ + [ + 0, + 52 + ], + [ + 0, + 7908 + ] + ] ] - ], - {} - ] - ], - "white-space-processing-047.xht": [ - "c92979ba18128251724f660269b061a6a9312a70", + ] + } + ] + ], + "background-repeat-space-5.html": [ + "5594efb315a245a1f1282a782cc740d602407229", + [ + null, [ - null, [ + "/css/css-backgrounds/background-repeat-space-5-ref.html", + "==" + ] + ], + { + "fuzzy": [ [ - "/css/CSS2/text/white-space-processing-046-ref.xht", - "==" + null, + [ + [ + 0, + 52 + ], + [ + 0, + 7960 + ] + ] ] - ], - {} - ] - ], - "white-space-processing-048.xht": [ - "13a639ab75613ee3fd554dfa50a58b92bbaff7da", + ] + } + ] + ], + "background-repeat-space-6.html": [ + "8d372dd2771dc4de9e357b6fd43359009a438459", + [ + null, [ - null, [ + "/css/css-backgrounds/background-repeat-space-6-ref.html", + "==" + ] + ], + { + "fuzzy": [ [ - "/css/CSS2/text/white-space-processing-048-ref.xht", - "==" + null, + [ + [ + 0, + 64 + ], + [ + 0, + 15894 + ] + ] ] - ], - {} - ] - ], - "white-space-processing-049.xht": [ - "4492d4b64b53df59543bcf3a810e6f9a1e548c3e", + ] + } + ] + ], + "background-repeat-space-7.html": [ + "d52f76fe5f4653a8a2b62d8cec74915ba4622bdd", + [ + null, [ - null, [ + "/css/css-backgrounds/background-repeat-space-7-ref.html", + "==" + ] + ], + { + "fuzzy": [ [ - "/css/CSS2/text/white-space-processing-049-ref.xht", - "==" + null, + [ + [ + 0, + 64 + ], + [ + 0, + 15878 + ] + ] ] - ], - {} - ] - ], - "white-space-processing-050.xht": [ - "b4f528a2ece485deac31f6a58cbca0be6d2a1bbb", + ] + } + ] + ], + "background-repeat-space-8.html": [ + "17beb1caf822a2ec0351eb18a66dae0358901865", + [ + null, [ - null, [ + "/css/css-backgrounds/background-repeat-space-8-ref.html", + "==" + ] + ], + { + "fuzzy": [ [ - "/css/CSS2/text/white-space-001-ref.xht", - "==" + null, + [ + [ + 0, + 80 + ], + [ + 0, + 15880 + ] + ] ] - ], - {} - ] - ], - "white-space-processing-051.xht": [ - "8556d3a161d27b5f7274281e3e0b507aad9eb79a", + ] + } + ] + ], + "background-repeat-space-9.html": [ + "79f4c0c0a140d268060bafaf48cd25406d5f2f63", + [ + null, [ - null, [ + "/css/css-backgrounds/background-repeat-space-9-ref.html", + "==" + ] + ], + { + "fuzzy": [ [ - "/css/CSS2/text/white-space-001-ref.xht", - "==" + null, + [ + [ + 0, + 52 + ], + [ + 0, + 981 + ] + ] ] - ], - {} - ] - ], - "white-space-processing-052.xht": [ - "45461812b63f7507d31e0033d5524e5717c0bb56", + ] + } + ] + ], + "background-rounded-image-clip-001.html": [ + "e6222190c192c0fa3db307e2c0cecf6d9a99a13c", + [ + null, + [ + [ + "/css/css-backgrounds/reference/background-rounded-image-clip.html", + "==" + ] + ], + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 2 + ], + [ + 0, + 22547 + ] + ] + ] + ] + } + ] + ], + "background-rounded-image-clip-002.html": [ + "4af7702602027ae39c26befcd1f04d2e323e4642", + [ + null, + [ + [ + "/css/reference/ref-filled-green-200px-square.html", + "==" + ] + ], + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 5 + ], + [ + 0, + 100 + ] + ] + ] + ] + } + ] + ], + "background-size": { + "background-size-contain-svg-view.html": [ + "0d69e27e3dc653b7c4dc5f4da6330bd811a7c112", [ null, [ [ - "/css/CSS2/text/white-space-processing-052-ref.xht", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "white-space-processing-053.xht": [ - "03c14b1b5e068d847812ac766863f54b7167a777", + "background-size-contain.xht": [ + "7309905bbac46d67f16907d799fb3ba7716bb31a", [ null, [ [ - "/css/CSS2/text/white-space-processing-052-ref.xht", + "/css/css-backgrounds/background-size/reference/background-size-contain.xht", "==" ] ], {} ] ], - "white-space-processing-054.xht": [ - "e122a9d8cf3228e8a40f74d55af1d2ffb018961d", + "background-size-cover-contain-001.xht": [ + "0f43213de63f16e732a8d5bc84dce2ea576e463b", [ null, [ [ - "/css/CSS2/text/white-space-processing-054-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "white-space-processing-055.xht": [ - "3dd01b0d7087a4d005a89c103eaf36209d44d79e", + "background-size-cover-contain-002.xht": [ + "d168e154fb34fea05c6c05a201b030099d5cdf01", [ null, [ [ - "/css/CSS2/text/white-space-processing-055-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "white-space-processing-056.xht": [ - "0dfc98751a7c13cc61b24885949e71e95af246c2", + "background-size-cover-svg-view.html": [ + "dc792792476aea43d1f3239a19cdae2ebfd2c484", [ null, [ [ - "/css/CSS2/text/white-space-processing-056-ref.xht", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "word-spacing-004.xht": [ - "f7e449efc2518bd7b686b73481b4f0ee1fc25f57", + "background-size-cover-svg.html": [ + "67f3bcac7d5da84f4e1c120974ca0ceeeaf6ffa0", [ null, [ [ - "/css/CSS2/text/word-spacing-004-ref.xht", + "/css/css-backgrounds/background-size/reference/background-size-cover-svg-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 2 + ], + [ + 0, + 1200 + ] + ] + ] + ] + } ] ], - "word-spacing-005.xht": [ - "16db0a26f65c6d76f45de7e5b86d01337d0a41fa", + "background-size-cover.xht": [ + "c88e7fd2ed34aa61f24fde1a8d424155d430fc37", [ null, [ [ - "/css/CSS2/text/word-spacing-004-ref.xht", + "/css/css-backgrounds/background-size/reference/background-size-cover.xht", "==" ] ], {} ] ], - "word-spacing-006.xht": [ - "8eb27fd6b5daed0984f37dde753c426908906c0d", + "background-size-near-zero-color.html": [ + "b85895b85b27f20269eb69788cfc4b755ae009d0", [ null, [ [ - "/css/CSS2/text/word-spacing-004-ref.xht", + "/css/css-backgrounds/background-size/reference/background-size-near-zero-ref.html", "==" ] ], {} ] ], - "word-spacing-007.xht": [ - "98a55006ad154142092846ba89d502f5ae22f3aa", + "background-size-near-zero-gradient.html": [ + "a232fc8c03415f8fbb1bf545f16b12c85eabd0a5", [ null, [ [ - "/css/CSS2/text/word-spacing-007-ref.xht", + "/css/css-backgrounds/background-size/reference/background-size-near-zero-ref.html", "==" ] ], {} ] ], - "word-spacing-008.xht": [ - "a69ac2cc726bc70d596704235ce4ef4b45b67736", + "background-size-near-zero-png.html": [ + "c57f322d2321aae268d09470eb7e2ba87d6be23a", [ null, [ [ - "/css/CSS2/text/word-spacing-007-ref.xht", + "/css/css-backgrounds/background-size/reference/background-size-near-zero-ref.html", "==" ] ], {} ] ], - "word-spacing-016.xht": [ - "d35020bb85800567536c39129eefa53436c0ed62", + "background-size-near-zero-svg.html": [ + "ff7b9bb491b0272e96278001e63d48a3a3a0307b", [ null, [ [ - "/css/CSS2/text/word-spacing-004-ref.xht", + "/css/css-backgrounds/background-size/reference/background-size-near-zero-ref.html", "==" ] ], {} ] ], - "word-spacing-017.xht": [ - "53752f7624737260b18ea3a1cbcbbf8e533af2f7", - [ - null, + "vector": { + "background-size-vector-001.html": [ + "96b630366f25b1ec00a9dcd2db1abb9ff864f00d", [ + null, [ - "/css/CSS2/text/word-spacing-004-ref.xht", - "==" - ] - ], - {} - ] - ], - "word-spacing-018.xht": [ - "ce7ed139741dbd705d78c571e25fccf3dac94766", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/background-size-vector-001-ref.html", + "==" + ] + ], + {} + ] + ], + "background-size-vector-002.html": [ + "a54c8529b963e57fc754b049b65ba3c557c60572", [ + null, [ - "/css/CSS2/text/word-spacing-004-ref.xht", - "==" - ] - ], - {} - ] - ], - "word-spacing-019.xht": [ - "5c047edfa61218911cd73d8f0421f8f2bf94b63c", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/background-size-vector-001-ref.html", + "==" + ] + ], + {} + ] + ], + "background-size-vector-003.html": [ + "e3234baabd9b785ea7daa7b420a3d9a3897d5abe", [ + null, [ - "/css/CSS2/text/word-spacing-007-ref.xht", - "==" - ] - ], - {} - ] - ], - "word-spacing-020.xht": [ - "c4ee51998f7f11a06630e3957d1ae145b31f2a9b", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-t-lime16x128-aqua16x128.html", + "==" + ] + ], + {} + ] + ], + "background-size-vector-004.html": [ + "5fa0857ca4fd3dc948b3b26f4d884647ba4f4e60", [ + null, [ - "/css/CSS2/text/word-spacing-007-ref.xht", - "==" - ] - ], - {} - ] - ], - "word-spacing-028.xht": [ - "bc4ad9ff2bb97ee4fac51368e364cc2621793d08", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-t-lime16x192-aqua16x192.html", + "==" + ] + ], + {} + ] + ], + "background-size-vector-005.html": [ + "425763666e0a1d5663097b741e04eb4e760ee04c", [ + null, [ - "/css/CSS2/text/word-spacing-004-ref.xht", - "==" - ] - ], - {} - ] - ], - "word-spacing-029.xht": [ - "c33d73e3502efc0574a20d199f11767e112a5660", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-t-lime16x128-aqua16x128.html", + "==" + ] + ], + {} + ] + ], + "background-size-vector-006.html": [ + "2392366b0feef874d88baf2ab742024202047984", [ + null, [ - "/css/CSS2/text/word-spacing-004-ref.xht", - "==" - ] - ], - {} - ] - ], - "word-spacing-030.xht": [ - "74575f93ad24de88d2678075123e0be93d4d39f4", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-t-lime16x192-aqua16x192.html", + "==" + ] + ], + {} + ] + ], + "background-size-vector-007.html": [ + "6dc0339c76441459f68011717a4bc35a1c289015", [ + null, [ - "/css/CSS2/text/word-spacing-004-ref.xht", - "==" - ] - ], - {} - ] - ], - "word-spacing-031.xht": [ - "f28c3c123cfbf6f15c0167dca33af6f2b003f7d9", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-t-lime16x128-aqua16x128.html", + "==" + ] + ], + {} + ] + ], + "background-size-vector-008.html": [ + "9f7b6344044d1e8e767fa61030ac67fa49283ab0", [ + null, [ - "/css/CSS2/text/word-spacing-007-ref.xht", - "==" - ] - ], - {} - ] - ], - "word-spacing-032.xht": [ - "bf7cea9b1c5af8e93b635f372c4cf65eef2b17da", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/background-size-vector-008-ref.html", + "==" + ] + ], + {} + ] + ], + "background-size-vector-009.html": [ + "a09eed92589801d943202abaeca3a66272372152", [ + null, [ - "/css/CSS2/text/word-spacing-007-ref.xht", - "==" - ] - ], - {} - ] - ], - "word-spacing-040.xht": [ - "7d9995882e3711c0515fc501ee6b17036934da72", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-t-lime16x128-aqua16x128.html", + "==" + ] + ], + {} + ] + ], + "background-size-vector-010.html": [ + "8a526627b6e0efe7a7ca9113ccd44e3d56d21b26", [ + null, [ - "/css/CSS2/text/word-spacing-004-ref.xht", - "==" - ] - ], - {} - ] - ], - "word-spacing-041.xht": [ - "9daf333f8e2647ec9f0367bd3252aabb8185ac1e", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-t-lime16x192-aqua16x192.html", + "==" + ] + ], + {} + ] + ], + "background-size-vector-011.html": [ + "bd319e78e740e0837ad8cc4b81a541ef5bc6b451", [ + null, [ - "/css/CSS2/text/word-spacing-004-ref.xht", - "==" - ] - ], - {} - ] - ], - "word-spacing-042.xht": [ - "f07bd616b438a40151496d83eab98c5061a65e2d", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-t-lime16x128-aqua16x128.html", + "==" + ] + ], + {} + ] + ], + "background-size-vector-012.html": [ + "59748b0fcf96faed0798c8e76c10253265a22653", [ + null, [ - "/css/CSS2/text/word-spacing-004-ref.xht", - "==" - ] - ], - {} - ] - ], - "word-spacing-043.xht": [ - "6d56c4ae080b408b9921e2e63899119b0ec4b746", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-t-lime16x192-aqua16x192.html", + "==" + ] + ], + {} + ] + ], + "background-size-vector-013.html": [ + "01193f238fcf2adee85dbe844db49726c6d0c73f", [ + null, [ - "/css/CSS2/text/word-spacing-007-ref.xht", - "==" - ] - ], - {} - ] - ], - "word-spacing-044.xht": [ - "ba5650373f44cb420f929859e2a855bcd14fc6f3", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-t-lime16x128-aqua16x128.html", + "==" + ] + ], + {} + ] + ], + "background-size-vector-014.html": [ + "a9e77c8191868d246e8a84a259aa91c8b8a7f67c", [ + null, [ - "/css/CSS2/text/word-spacing-007-ref.xht", - "==" - ] - ], - {} - ] - ], - "word-spacing-052.xht": [ - "97a017bf2051ed1efb28ef65e6a6d779368cc2ae", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/background-size-vector-008-ref.html", + "==" + ] + ], + {} + ] + ], + "background-size-vector-015.html": [ + "f2eb47dd29e9dc47631f155d1cdac7c675da869c", [ + null, [ - "/css/CSS2/text/word-spacing-004-ref.xht", - "==" - ] - ], - {} - ] - ], - "word-spacing-053.xht": [ - "2224326c9bef21e8b5b9ad58c91925ec416b50ed", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-t-lime16x128-aqua16x128.html", + "==" + ] + ], + {} + ] + ], + "background-size-vector-016.html": [ + "0252faf7f131c200084e05c5cd640d273464e3dc", [ + null, [ - "/css/CSS2/text/word-spacing-004-ref.xht", - "==" - ] - ], - {} - ] - ], - "word-spacing-054.xht": [ - "e8d217e1567a3ffde7ec00060494c901b649c6da", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-t-lime16x192-aqua16x192.html", + "==" + ] + ], + {} + ] + ], + "background-size-vector-017.html": [ + "5b6863d8b414e26cbe64ae587ac64476418cd6c1", [ + null, [ - "/css/CSS2/text/word-spacing-004-ref.xht", - "==" - ] - ], - {} - ] - ], - "word-spacing-055.xht": [ - "895882fa7fcf740fe4c38483ac5a0bab04b1c4ea", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-t-lime16x128-aqua16x128.html", + "==" + ] + ], + {} + ] + ], + "background-size-vector-018.html": [ + "29a366ebbce866339299ac22b2d4007d8284a6c9", [ + null, [ - "/css/CSS2/text/word-spacing-007-ref.xht", - "==" - ] - ], - {} - ] - ], - "word-spacing-056.xht": [ - "8d393bc97c55c7bccaa0513fced671e30faf4cbc", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-t-lime16x192-aqua16x192.html", + "==" + ] + ], + {} + ] + ], + "background-size-vector-019.html": [ + "5c602345a64f2cd50ef526ef872d5eb117f674c0", [ + null, [ - "/css/CSS2/text/word-spacing-007-ref.xht", - "==" - ] - ], - {} - ] - ], - "word-spacing-064.xht": [ - "5f60fd661811cc36af062150bda1e59318c9fab5", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-t-lime8x16-aqua8x16.html", + "==" + ] + ], + {} + ] + ], + "background-size-vector-020.html": [ + "998d6da729ec35b97f97eff24fe79dfb4976522b", [ + null, [ - "/css/CSS2/text/word-spacing-004-ref.xht", - "==" - ] - ], - {} - ] - ], - "word-spacing-065.xht": [ - "3f9a20f0301699f1d695f47c91dbe6ed259d8c3d", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-t-lime8x16-aqua8x16.html", + "==" + ] + ], + {} + ] + ], + "background-size-vector-021.html": [ + "09715b26bc259a5c136aaf21f006d09e566f1821", [ + null, [ - "/css/CSS2/text/word-spacing-004-ref.xht", - "==" - ] - ], - {} - ] - ], - "word-spacing-066.xht": [ - "0f4a7bb00cb5ce4a381a9e232a8b939ff84b6f62", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/background-size-vector-021-ref.html", + "==" + ] + ], + {} + ] + ], + "background-size-vector-022.html": [ + "dff3c79d7c69948e59fa8f04ca3e3608822006aa", [ + null, [ - "/css/CSS2/text/word-spacing-004-ref.xht", - "==" - ] - ], - {} - ] - ], - "word-spacing-067.xht": [ - "f2f2eda7bf8469ab0b68379b6e9d996b8baec5ba", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/background-size-vector-022-ref.html", + "==" + ] + ], + {} + ] + ], + "background-size-vector-023.html": [ + "f78d4f0dcd65f79fc22906272cbe2c4a4431e1c1", [ + null, [ - "/css/CSS2/text/word-spacing-007-ref.xht", - "==" - ] - ], - {} - ] - ], - "word-spacing-068.xht": [ - "d8aa6b7b60ca7dde7275d6c2ad03e1dd520461aa", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/background-size-vector-021-ref.html", + "==" + ] + ], + {} + ] + ], + "background-size-vector-024.html": [ + "719a65d31a37692edfa99adb69c13bb5b3bd468e", [ + null, [ - "/css/CSS2/text/word-spacing-007-ref.xht", - "==" - ] - ], - {} - ] - ], - "word-spacing-076.xht": [ - "01cfc7d5ed24786166ff35a19b13a58dcf22df35", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/background-size-vector-022-ref.html", + "==" + ] + ], + {} + ] + ], + "background-size-vector-025.html": [ + "e5429c3f0d2e88a9628f1a8d65c7e4617d0cd9b1", [ + null, [ - "/css/CSS2/text/word-spacing-004-ref.xht", - "==" - ] - ], - {} - ] - ], - "word-spacing-077.xht": [ - "b27a110554897e78a18259e8a179d339ffbc909e", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-t-lime2x16-aqua2x16.html", + "==" + ] + ], + {} + ] + ], + "background-size-vector-026.html": [ + "32b63570ba9d3dddf2dfdcd7fce6a77c1a33ceae", [ + null, [ - "/css/CSS2/text/word-spacing-004-ref.xht", - "==" - ] - ], - {} - ] - ], - "word-spacing-078.xht": [ - "6d53a9b4322e20bf5c74cd06e17f5f963af3f2c2", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-t-lime128x16-aqua128x16.html", + "==" + ] + ], + {} + ] + ], + "background-size-vector-027.html": [ + "ff302b8d2cc88373166772105cf0a74768f7aa4c", [ + null, [ - "/css/CSS2/text/word-spacing-004-ref.xht", - "==" - ] - ], - {} - ] - ], - "word-spacing-079.xht": [ - "aa26d4e6a149e796c510b14e8c3aaff54c1ef095", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-t-lime24x192-aqua24x192.html", + "==" + ] + ], + {} + ] + ], + "background-size-vector-028.html": [ + "79a13611150003f704a7c189592311de41d81a9e", [ + null, [ - "/css/CSS2/text/word-spacing-007-ref.xht", - "==" - ] - ], - {} - ] - ], - "word-spacing-080.xht": [ - "9c9cedb4bc1f42c573edff99310435e7df508bcf", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-t-lime128x192-aqua128x192.html", + "==" + ] + ], + {} + ] + ], + "background-size-vector-029.html": [ + "908954968106ae39462b37c1aeab7a9d0c00af3a", [ + null, [ - "/css/CSS2/text/word-spacing-007-ref.xht", - "==" - ] - ], - {} - ] - ], - "word-spacing-088.xht": [ - "324ebbe1b5d81ea93eeb2c2993d76ba0af1cc08f", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-t-lime24x192-aqua24x192.html", + "==" + ] + ], + {} + ] + ], + "diagonal-percentage-vector-background.html": [ + "75c8fd468549a0aac8189e93a572a941725cf790", [ + null, [ - "/css/CSS2/text/word-spacing-004-ref.xht", - "==" - ] - ], - {} - ] - ], - "word-spacing-089.xht": [ - "cd4e4370c8f978983f7f2a270b30bba073d0391f", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/diagonal-percentage-vector-background-ref.html", + "==" + ] + ], + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 5 + ], + [ + 0, + 360 + ] + ] + ] + ] + } + ] + ], + "tall--auto--omitted-width-percent-height.html": [ + "94f14411f844982f13c2e73ba72a20473f0b018e", [ + null, [ - "/css/CSS2/text/word-spacing-004-ref.xht", - "==" - ] - ], - {} - ] - ], - "word-spacing-090.xht": [ - "d77ef61e0b0e059ca85626152934dc40dfc5944d", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime256x384-aqua256x384.html", + "==" + ] + ], + {} + ] + ], + "tall--auto--percent-width-nonpercent-height-viewbox.html": [ + "43b7e0b7ef4b088539e057b8e29d65093a3ffbd9", [ + null, [ - "/css/CSS2/text/word-spacing-004-ref.xht", - "==" - ] - ], - {} - ] - ], - "word-spacing-091.xht": [ - "534e3018a4646f0d81d9d53afb15056fd42fe275", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime2x16-aqua2x16.html", + "==" + ] + ], + {} + ] + ], + "tall--auto--percent-width-nonpercent-height.html": [ + "fd719d1fce2530e5f81ceaec53edb6f122ebd6ac", [ + null, [ - "/css/CSS2/text/word-spacing-091-ref.xht", - "==" - ] - ], - {} - ] - ], - "word-spacing-092.xht": [ - "11b5e581690a06e278790019fb80e03122f0f7be", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime256x16-aqua256x16.html", + "==" + ] + ], + {} + ] + ], + "tall--auto--percent-width-omitted-height-viewbox.html": [ + "bf43fccd74a1c792c8987e036cf936e10d542ae9", [ + null, [ - "/css/CSS2/text/word-spacing-091-ref.xht", - "==" - ] - ], - {} - ] - ], - "word-spacing-097.xht": [ - "e6807d77aa25373e6877bcb7d03dcdd82ed5854b", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime48x384-aqua48x384.html", + "==" + ] + ], + {} + ] + ], + "tall--auto--percent-width-omitted-height.html": [ + "89167b9efb0db1e75474be5a4e865b06b77fe633", [ + null, [ - "/css/CSS2/text/word-spacing-004-ref.xht", - "==" - ] - ], - {} - ] - ], - "word-spacing-098.xht": [ - "23b22a2406527c1c00bf2d0940296d420e7f74eb", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime256x384-aqua256x384.html", + "==" + ] + ], + {} + ] + ], + "tall--auto--percent-width-percent-height-viewbox.html": [ + "63882f5e35ee6627b4d6b4e6554385c568d7624a", [ + null, [ - "/css/CSS2/text/word-spacing-004-ref.xht", - "==" - ] - ], - {} - ] - ], - "word-spacing-099.xht": [ - "160d1671d2b6c97b919d3132f683f4d3f4a4dc96", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime48x384-aqua48x384.html", + "==" + ] + ], + {} + ] + ], + "tall--auto--percent-width-percent-height.html": [ + "00a3828c3daff89170287fcce9322772d32b5d3c", [ + null, [ - "/css/CSS2/text/word-spacing-004-ref.xht", - "==" - ] - ], - {} - ] - ], - "word-spacing-100.xht": [ - "41208d7153d33214e476738bb7dbb7e24b949660", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime256x384-aqua256x384.html", + "==" + ] + ], + {} + ] + ], + "tall--auto-32px--nonpercent-width-nonpercent-height-viewbox.html": [ + "3bf5b67835fc332beffe3aa7386ea4a8c626b5bf", [ + null, [ - "/css/CSS2/text/word-spacing-004-ref.xht", - "==" - ] - ], - {} - ] - ], - "word-spacing-101.xht": [ - "cc09cd2c45af9cdbed90eee9c5c8252b91d937d8", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime8x16-aqua8x16.html", + "==" + ] + ], + {} + ] + ], + "tall--auto-32px--nonpercent-width-nonpercent-height.html": [ + "d5a02c3e38705a72779edf2464ed48f4dc2609c4", [ + null, [ - "/css/CSS2/text/word-spacing-091-ref.xht", - "==" - ] - ], - {} - ] - ], - "word-spacing-applies-to-001.xht": [ - "1b8935ba3ec3ceadb4d70517ba12514c6d0af11a", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime8x16-aqua8x16.html", + "==" + ] + ], + {} + ] + ], + "tall--auto-32px--nonpercent-width-omitted-height-viewbox.html": [ + "c68a854ca756672159d6e66f902f43f853d21f0c", [ + null, [ - "/css/CSS2/text/word-spacing-applies-to-001-ref.xht", - "==" - ] - ], - {} - ] - ], - "word-spacing-applies-to-002.xht": [ - "905623e6cbb6ebe3b547fd2fafa026e97de0dcfe", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime2x16-aqua2x16.html", + "==" + ] + ], + {} + ] + ], + "tall--auto-32px--nonpercent-width-omitted-height.html": [ + "5b02781c9428dd3f5ca03d86ea58dd95050eeb5b", [ + null, [ - "/css/CSS2/text/word-spacing-applies-to-001-ref.xht", - "==" - ] - ], - {} - ] - ], - "word-spacing-applies-to-003.xht": [ - "df82c523dae1d5bf66bbfee0acebc01c76ac0b34", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime8x16-aqua8x16.html", + "==" + ] + ], + {} + ] + ], + "tall--auto-32px--nonpercent-width-percent-height-viewbox.html": [ + "c752411e2adeaca1907570e44d7e5ac98c84f56d", [ + null, [ - "/css/CSS2/text/word-spacing-applies-to-003-ref.xht", - "==" - ] - ], - {} - ] - ], - "word-spacing-applies-to-005.xht": [ - "3d3980335a58ee4d2fd0d9a7da1dfb0f4fb8751d", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime2x16-aqua2x16.html", + "==" + ] + ], + {} + ] + ], + "tall--auto-32px--nonpercent-width-percent-height.html": [ + "4e1eeb57ee78180759c926fb768ce1f8d76596dc", [ + null, [ - "/css/CSS2/text/word-spacing-applies-to-001-ref.xht", - "==" - ] - ], - {} - ] - ], - "word-spacing-applies-to-006.xht": [ - "2391060920d111dbbb77eca6620a7feebebc0b33", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime8x16-aqua8x16.html", + "==" + ] + ], + {} + ] + ], + "tall--auto-32px--omitted-width-nonpercent-height-viewbox.html": [ + "ad202bbb1e2fb9f41d4e7fc93478f0218a8ff35f", [ + null, [ - "/css/CSS2/text/word-spacing-applies-to-001-ref.xht", - "==" - ] - ], - {} - ] - ], - "word-spacing-applies-to-007.xht": [ - "a8780bf5de708a7494661ccb6fa2f8cf5ed7f222", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime2x16-aqua2x16.html", + "==" + ] + ], + {} + ] + ], + "tall--auto-32px--omitted-width-nonpercent-height.html": [ + "33963726d4d6af930fde54993e44e67531fb2ec6", [ + null, [ - "/css/CSS2/text/word-spacing-applies-to-007-ref.xht", - "==" - ] - ], - {} - ] - ], - "word-spacing-applies-to-008.xht": [ - "f5b1f983577b34d9fa3bbf145e1a2f36bac9ee32", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime256x16-aqua256x16.html", + "==" + ] + ], + {} + ] + ], + "tall--auto-32px--omitted-width-omitted-height-viewbox.html": [ + "cd92658b0caaac7070f0e3b4d460ef92db83baa5", [ + null, [ - "/css/CSS2/text/word-spacing-applies-to-001-ref.xht", - "==" - ] - ], - {} - ] - ], - "word-spacing-applies-to-009.xht": [ - "aecc99e2a3cc9a99c3b7028e3f62c085fa278668", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime2x16-aqua2x16.html", + "==" + ] + ], + {} + ] + ], + "tall--auto-32px--omitted-width-omitted-height.html": [ + "2a1dc95b1afeec8ed9ab73f0efa165f247e5022b", [ + null, [ - "/css/CSS2/text/word-spacing-applies-to-001-ref.xht", - "==" - ] - ], - {} - ] - ], - "word-spacing-applies-to-010.xht": [ - "f726522e73b4a84c0947e7d1337fee1e2cd8ae1f", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime256x16-aqua256x16.html", + "==" + ] + ], + {} + ] + ], + "tall--auto-32px--omitted-width-percent-height-viewbox.html": [ + "8eb47bc980f1dc5dee8034c74f172af0444a29fa", [ + null, [ - "/css/CSS2/text/word-spacing-applies-to-001-ref.xht", - "==" - ] - ], - {} - ] - ], - "word-spacing-applies-to-011.xht": [ - "ad9d843c75b551f41b73c4d7544caa5eb75e1482", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime2x16-aqua2x16.html", + "==" + ] + ], + {} + ] + ], + "tall--auto-32px--omitted-width-percent-height.html": [ + "8e30113a7cb755963a4cbfe60c0c1621bd107640", [ + null, [ - "/css/CSS2/text/word-spacing-applies-to-001-ref.xht", - "==" - ] - ], - {} - ] - ], - "word-spacing-applies-to-012.xht": [ - "2bc77c239dd07781ac69e429d06d4031e1673677", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime256x16-aqua256x16.html", + "==" + ] + ], + {} + ] + ], + "tall--auto-32px--percent-width-nonpercent-height-viewbox.html": [ + "0f18f0add8567a13f425d3944abbbe6c5dbf18b9", [ + null, [ - "/css/CSS2/text/word-spacing-applies-to-012-ref.xht", - "==" - ] - ], - {} - ] - ], - "word-spacing-applies-to-013.xht": [ - "628c51633539f33fe56dc98208a31f5544adba6a", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime2x16-aqua2x16.html", + "==" + ] + ], + {} + ] + ], + "tall--auto-32px--percent-width-nonpercent-height.html": [ + "770ed704c62734c5876c40bea4cedcbe9bd80f0d", [ + null, [ - "/css/CSS2/text/word-spacing-applies-to-012-ref.xht", - "==" - ] - ], - {} - ] - ], - "word-spacing-applies-to-014.xht": [ - "0fe3c6217fc178ffee9868a56bc7027d55df4618", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime256x16-aqua256x16.html", + "==" + ] + ], + {} + ] + ], + "tall--auto-32px--percent-width-omitted-height-viewbox.html": [ + "8d2ad03a9bb0b26a7fa519781d52f09b5f8c5def", [ + null, [ - "/css/CSS2/text/word-spacing-applies-to-001-ref.xht", - "==" - ] - ], - {} - ] - ], - "word-spacing-applies-to-015.xht": [ - "c81aa5a99a77190d9762c926a65a68f896546c86", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime2x16-aqua2x16.html", + "==" + ] + ], + {} + ] + ], + "tall--auto-32px--percent-width-omitted-height.html": [ + "f6a416d96ea636a00a25b07f469ef5f19e4c5710", [ + null, [ - "/css/CSS2/text/word-spacing-applies-to-001-ref.xht", - "==" - ] - ], - {} - ] - ], - "word-spacing-characters-001.xht": [ - "8fc41a9a0ae203804d46c49586b6857e1b6cec9c", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime256x16-aqua256x16.html", + "==" + ] + ], + {} + ] + ], + "tall--auto-32px--percent-width-percent-height-viewbox.html": [ + "a9b456bab165cc3618b8cee8669c61bf6af0cf76", [ + null, [ - "/css/CSS2/text/word-spacing-characters-001-ref.xht", - "==" - ] - ], - {} - ] - ], - "word-spacing-characters-002.xht": [ - "1f2578c29ba72322583d1fa0668a84366b4f7b0b", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime2x16-aqua2x16.html", + "==" + ] + ], + {} + ] + ], + "tall--auto-32px--percent-width-percent-height.html": [ + "b0d8bc732c02127904657004b74c619a25f676d1", [ + null, [ - "/css/CSS2/text/word-spacing-characters-002-ref.xht", - "==" - ] - ], - {} - ] - ], - "word-spacing-characters-003.xht": [ - "a5119af6cabf613e38dcf5508393f4add6cef939", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime256x16-aqua256x16.html", + "==" + ] + ], + {} + ] + ], + "tall--contain--height.html": [ + "e0438d12c50457a7091a9eef2b5953a25cad671d", [ + null, [ - "/css/CSS2/text/word-spacing-characters-003-ref.xht", - "==" - ] - ], - {} - ] - ], - "word-spacing-justify-001.xht": [ - "17d811de98fe191295a3fd3fd103b4e0e575fcf2", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-tall-empty.html", + "==" + ] + ], + {} + ] + ], + "tall--contain--nonpercent-width-nonpercent-height-viewbox.html": [ + "6d3fefbaddc591f6514f6d91a497fe5bb4cc6476", [ + null, [ - "/css/CSS2/text/word-spacing-justify-001-ref.xht", - "==" - ] - ], - {} - ] - ], - "word-spacing-remove-space-001.xht": [ - "0f28e33f6486d11ce6dec2fbcc51259342c61889", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime192x384-aqua192x384.html", + "==" + ] + ], + {} + ] + ], + "tall--contain--nonpercent-width-nonpercent-height.html": [ + "3ee231236aff3b40a6434d5a885c99252ecebb31", [ + null, [ - "/css/CSS2/text/word-spacing-remove-space-001-ref.xht", - "==" - ] - ], - {} - ] - ], - "word-spacing-remove-space-002.xht": [ - "990b98eca8b1298309ecbb50b9e89e321fb29a80", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime192x384-aqua192x384.html", + "==" + ] + ], + {} + ] + ], + "tall--contain--nonpercent-width-omitted-height-viewbox.html": [ + "b65bd2aa7c81e9ca77894b7440e90f807988c900", [ + null, [ - "/css/CSS2/text/word-spacing-remove-space-002-ref.xht", - "==" - ] - ], - {} - ] - ], - "word-spacing-remove-space-003.xht": [ - "9655c134ebd6438f1ac16e1f546586a679382f1d", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime48x384-aqua48x384.html", + "==" + ] + ], + {} + ] + ], + "tall--contain--nonpercent-width-omitted-height.html": [ + "2d321a3f553b1cc10cf8ecc3c2433a1aa422ab8e", [ + null, [ - "/css/CSS2/text/word-spacing-remove-space-003-ref.xht", - "==" - ] - ], - {} - ] - ], - "word-spacing-remove-space-004.xht": [ - "5aa54a681016f430efdc11db8dc51ce68da9687c", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime256x384-aqua256x384.html", + "==" + ] + ], + {} + ] + ], + "tall--contain--nonpercent-width-percent-height-viewbox.html": [ + "7ee57a464edfe5aa400f45cb09864146bf9fbdb3", [ + null, [ - "/css/CSS2/text/word-spacing-remove-space-004-ref.xht", - "==" - ] - ], - {} - ] - ], - "word-spacing-remove-space-005.xht": [ - "daaa40fb2c639089b673f4092f81778fde4afe86", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime48x384-aqua48x384.html", + "==" + ] + ], + {} + ] + ], + "tall--contain--nonpercent-width-percent-height.html": [ + "26faea698dfa165be9f85e4c6502887cd66043d7", [ + null, [ - "/css/CSS2/text/word-spacing-remove-space-005-ref.xht", - "==" - ] - ], - {} - ] - ], - "word-spacing-remove-space-006.xht": [ - "d3b2936770f7d014b66a9f5c7ddb06bf84e4e0ba", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime256x384-aqua256x384.html", + "==" + ] + ], + {} + ] + ], + "tall--contain--omitted-width-nonpercent-height-viewbox.html": [ + "24ee84cec67a1e8922975f9b28b5314a90255eff", [ + null, [ - "/css/CSS2/text/word-spacing-remove-space-006-ref.xht", - "==" - ] - ], - {} - ] - ] - }, - "ui": { - "outline-applies-to-005.xht": [ - "d77dc0c801ab96de019aa838f5525f92f3f3b0b5", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime48x384-aqua48x384.html", + "==" + ] + ], + {} + ] + ], + "tall--contain--omitted-width-nonpercent-height.html": [ + "7fd0ec9716c4205bed94b35acc6883a474bb754b", [ + null, [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", - "==" - ] - ], - {} - ] - ], - "outline-applies-to-006.xht": [ - "3c5ec5b43dcd3eeae85c989b81391134be92e8b4", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime256x384-aqua256x384.html", + "==" + ] + ], + {} + ] + ], + "tall--contain--omitted-width-omitted-height-viewbox.html": [ + "750263d01d5c75bc37c984bf3741d7775637fe70", [ + null, [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", - "==" - ] - ], - {} - ] - ], - "outline-applies-to-016.xht": [ - "a52bdaca62d9e526abe63a434c05b461ca1a23e6", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime48x384-aqua48x384.html", + "==" + ] + ], + {} + ] + ], + "tall--contain--omitted-width-omitted-height.html": [ + "fe1f9d870efc45255f2b6722e8b84bfc837b5385", [ + null, [ - "/css/CSS2/ui/outline-applies-to-016-ref.xht", - "==" - ] - ], - {} - ] - ], - "outline-applies-to-017.xht": [ - "a7311044c894d06a2b59118cdc86aeaaf433b5d4", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime256x384-aqua256x384.html", + "==" + ] + ], + {} + ] + ], + "tall--contain--omitted-width-percent-height-viewbox.html": [ + "8996c107853c4523a29affefac975891c963a64b", [ + null, [ - "/css/CSS2/ui/outline-applies-to-016-ref.xht", - "==" - ] - ], - {} - ] - ], - "outline-color-001.xht": [ - "8fb1b8bdebbaad37f5bc2f8639d8659ac65b3651", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime48x384-aqua48x384.html", + "==" + ] + ], + {} + ] + ], + "tall--contain--omitted-width-percent-height.html": [ + "c76f78a172327911d4201d0f968c9eb94536d58a", [ + null, [ - "/css/CSS2/reference/boxes_same_color_100px_black_50px_margin.xht", - "==" - ] - ], - {} - ] - ], - "outline-color-002.xht": [ - "d2538412e00d00d9ae119d9ed9dc7eb97880929f", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime256x384-aqua256x384.html", + "==" + ] + ], + {} + ] + ], + "tall--contain--percent-width-nonpercent-height-viewbox.html": [ + "b8772a8a6a2ccc0df34a3be52cc67ad7c5b33e90", [ + null, [ - "/css/CSS2/reference/boxes_same_color_100px_black_50px_margin.xht", - "==" - ] - ], - {} - ] - ], - "outline-color-007.xht": [ - "fc023dd02a6132ad3ddc5b1e531b026e45d446ac", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime48x384-aqua48x384.html", + "==" + ] + ], + {} + ] + ], + "tall--contain--percent-width-nonpercent-height.html": [ + "ab813d82aad915847ac54c66e036b4ef91162b9b", [ + null, [ - "/css/CSS2/reference/boxes_same_color_100px_black_50px_margin.xht", - "==" - ] - ], - {} - ] - ], - "outline-color-008.xht": [ - "88dc03a33138288440bce72a32b28b0b729bac30", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime256x384-aqua256x384.html", + "==" + ] + ], + {} + ] + ], + "tall--contain--percent-width-omitted-height-viewbox.html": [ + "6a070da5ea0a9896a3a61aeba901734227a5d019", [ + null, [ - "/css/CSS2/reference/boxes_same_color_100px_black_50px_margin.xht", - "==" - ] - ], - {} - ] - ], - "outline-color-013.xht": [ - "80756f3c44594ef9abafaa1121220b375b93c3b4", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime48x384-aqua48x384.html", + "==" + ] + ], + {} + ] + ], + "tall--contain--percent-width-omitted-height.html": [ + "bc4fcecc1603442cccfe67c8f7c2278d35655bcd", [ + null, [ - "/css/CSS2/reference/boxes_same_color_100px_black_50px_margin.xht", - "==" - ] - ], - {} - ] - ], - "outline-color-018.xht": [ - "daa6a630181ae82d9a32e2dabbae1cbbdd9bbb99", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime256x384-aqua256x384.html", + "==" + ] + ], + {} + ] + ], + "tall--contain--percent-width-percent-height-viewbox.html": [ + "1c8d4e0c22854753904d131aaef6793081a8029b", [ + null, [ - "/css/CSS2/reference/boxes_same_color_100px_black_50px_margin.xht", - "==" - ] - ], - {} - ] - ], - "outline-color-023.xht": [ - "e740addb190696a8ed1cd7218e8390a53436455d", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime48x384-aqua48x384.html", + "==" + ] + ], + {} + ] + ], + "tall--contain--percent-width-percent-height.html": [ + "9255929790a7472c73ba1db1814b17573d3e2b98", [ + null, [ - "/css/CSS2/reference/boxes_same_color_100px_black_50px_margin.xht", - "==" - ] - ], - {} - ] - ], - "outline-color-024.xht": [ - "3c2ce95ac07e301186c6e1d61b9f9079b302463c", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime256x384-aqua256x384.html", + "==" + ] + ], + {} + ] + ], + "tall--contain--width.html": [ + "434d17f21b27c9a90126f2f2a5f9e42951b17003", [ + null, [ - "/css/CSS2/reference/boxes_same_color_100px_black_50px_margin.xht", - "==" - ] - ], - {} - ] - ], - "outline-color-025.xht": [ - "f2ad01c03d56dc545cee06d2c9c73a506132c60a", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-tall-empty.html", + "==" + ] + ], + {} + ] + ], + "tall--cover--height.html": [ + "1994e969d2679b4266131f0e89cc70c6238001c8", [ + null, [ - "/css/CSS2/reference/boxes_same_color_100px_black_50px_margin.xht", - "==" - ] - ], - {} - ] - ], - "outline-color-030.xht": [ - "22bfe73763cc63a7db3b24df1053003aba090bc8", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime.html", + "==" + ] + ], + {} + ] + ], + "tall--cover--nonpercent-width-nonpercent-height--crisp.html": [ + "93f6b94e6e27ea320984eee456e5fd8c9ad53a7b", [ + null, [ - "/css/CSS2/reference/boxes_same_color_100px_black_50px_margin.xht", - "==" - ] - ], - {} - ] - ], - "outline-color-031.xht": [ - "08a03c738075c64ba041ca8d963caa040268079a", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime256x512-aqua256x256.html", + "==" + ] + ], + {} + ] + ], + "tall--cover--nonpercent-width-nonpercent-height-viewbox--crisp.html": [ + "4880899870b9b80f22c872e1394e0fad3de02e0e", [ + null, [ - "/css/CSS2/reference/boxes_same_color_100px_black_50px_margin.xht", - "==" - ] - ], - {} - ] - ], - "outline-color-036.xht": [ - "3bbd0afd8979695909f23e1dd2655f38b53c1b69", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime256x512-aqua256x256.html", + "==" + ] + ], + {} + ] + ], + "tall--cover--nonpercent-width-nonpercent-height-viewbox.html": [ + "1f54f44724fe4ae377fe73e187cc20639fdc7cd9", [ + null, [ - "/css/CSS2/reference/boxes_same_color_100px_black_50px_margin.xht", - "==" - ] - ], - {} - ] - ], - "outline-color-041.xht": [ - "e05515134ef3f6b6aa61c60e99798b1703643621", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime256x512-aqua256x256.html", + "==" + ] + ], + {} + ] + ], + "tall--cover--nonpercent-width-nonpercent-height.html": [ + "eae4b2288a0f3ba2b69c8c861849c293ebb6b2cc", [ + null, [ - "/css/CSS2/reference/boxes_same_color_100px_black_50px_margin.xht", - "==" - ] - ], - {} - ] - ], - "outline-color-046.xht": [ - "db192ffe841b22052cd6e2b27059663ab99f3c9f", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime256x512-aqua256x256.html", + "==" + ] + ], + {} + ] + ], + "tall--cover--nonpercent-width-omitted-height-viewbox.html": [ + "7179f71c7c8a802ed310491a439b82c7e2f0af76", [ + null, [ - "/css/CSS2/reference/boxes_same_color_100px_black_50px_margin.xht", - "==" - ] - ], - {} - ] - ], - "outline-color-047.xht": [ - "d473df9df518f1d8bb5dfde82e254520d4cc202f", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime256x768.html", + "==" + ] + ], + {} + ] + ], + "tall--cover--nonpercent-width-omitted-height.html": [ + "57a039221b42749009d3f43e5c39fe55ae3de69b", [ + null, [ - "/css/CSS2/reference/boxes_same_color_100px_black_50px_margin.xht", - "==" - ] - ], - {} - ] - ], - "outline-color-048.xht": [ - "0ad9d45d24972b7aa9e9d81618804d370b24be81", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime256x384-aqua256x384.html", + "==" + ] + ], + {} + ] + ], + "tall--cover--nonpercent-width-percent-height-viewbox.html": [ + "45bac2aa717eedd54469d7a5e3cd1fe9fdc2500a", [ + null, [ - "/css/CSS2/reference/boxes_same_color_100px_black_50px_margin.xht", - "==" - ] - ], - {} - ] - ], - "outline-color-049.xht": [ - "7df4181d574949e284e4c2f4fa0cbbb5af1a9e4e", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime256x768.html", + "==" + ] + ], + {} + ] + ], + "tall--cover--nonpercent-width-percent-height.html": [ + "74777df0b4f8ad679fa59f60ee20775b64586063", [ + null, [ - "/css/CSS2/ui/outline-color-049-ref.xht", - "==" - ] - ], - {} - ] - ], - "outline-color-050.xht": [ - "50a2ad9884e89eea91598c5f85a1419c673f2d5a", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime256x384-aqua256x384.html", + "==" + ] + ], + {} + ] + ], + "tall--cover--omitted-width-nonpercent-height-viewbox.html": [ + "723c5a7340f91f4d86b5409c76e9c3cbb250b7da", [ + null, [ - "/css/CSS2/reference/boxes_same_color_100px_black_50px_margin.xht", - "==" - ] - ], - {} - ] - ], - "outline-color-051.xht": [ - "2d3a5252d33ca4865396f76ef4431f9079ac7c67", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime256x768.html", + "==" + ] + ], + {} + ] + ], + "tall--cover--omitted-width-nonpercent-height.html": [ + "135cd19c2868d006ccc9a855d3d6299bb0593fa2", [ + null, [ - "/css/CSS2/reference/boxes_same_color_100px_black_50px_margin.xht", - "==" - ] - ], - {} - ] - ], - "outline-color-052.xht": [ - "0e2ccd6b9a11aa26da078e2c95fc6407a89144e5", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime256x384-aqua256x384.html", + "==" + ] + ], + {} + ] + ], + "tall--cover--omitted-width-omitted-height-viewbox.html": [ + "e0e71ca198e030632f8b1720b03ddd1f7b02c6ff", [ + null, [ - "/css/CSS2/ui/outline-color-052-ref.xht", - "==" - ] - ], - {} - ] - ], - "outline-color-053.xht": [ - "109079939a5e5fca6e3892e31157c18954e58344", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime256x768.html", + "==" + ] + ], + {} + ] + ], + "tall--cover--omitted-width-omitted-height.html": [ + "6cc860ccaa0d4b25224556e79a9ca1a1bf4b9222", [ + null, [ - "/css/CSS2/ui/outline-color-052-ref.xht", - "==" - ] - ], - {} - ] - ], - "outline-color-054.xht": [ - "1bffbaeb69ea9f5b9ad1319eea7aeb67ae46b399", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime256x384-aqua256x384.html", + "==" + ] + ], + {} + ] + ], + "tall--cover--omitted-width-percent-height-viewbox.html": [ + "f63cfa2e9a604793104ea581ed5a9ea4b6026b85", [ + null, [ - "/css/CSS2/ui/outline-color-054-ref.xht", - "==" - ] - ], - {} - ] - ], - "outline-color-058.xht": [ - "e9391ff12619844b0386acc007d3abef5e5f41bf", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime256x768.html", + "==" + ] + ], + {} + ] + ], + "tall--cover--omitted-width-percent-height.html": [ + "148dd019e77edfb80ae06b1d3d058adb331e18a8", [ + null, [ - "/css/CSS2/reference/boxes_same_color_100px_black_50px_margin.xht", - "==" - ] - ], - {} - ] - ], - "outline-color-059.xht": [ - "875597b2a83c855387072c5d628670869fa17cdd", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime256x384-aqua256x384.html", + "==" + ] + ], + {} + ] + ], + "tall--cover--percent-width-nonpercent-height-viewbox.html": [ + "8beff4480285914cb0987b74112671f72bdcfc64", [ + null, [ - "/css/CSS2/reference/boxes_same_color_100px_black_50px_margin.xht", - "==" - ] - ], - {} - ] - ], - "outline-color-061.xht": [ - "5f534d2a8a7f6fad7f7346d3bc4460e20da6a851", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime256x768.html", + "==" + ] + ], + {} + ] + ], + "tall--cover--percent-width-nonpercent-height.html": [ + "4d2a5abca8e4d8820fc68d7bcb7290c1246d7731", [ + null, [ - "/css/CSS2/reference/boxes_same_color_100px_black_50px_margin.xht", - "==" - ] - ], - {} - ] - ], - "outline-color-062.xht": [ - "11e48f29b5819893d9bb5e2cfb9018e736e0c912", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime256x384-aqua256x384.html", + "==" + ] + ], + {} + ] + ], + "tall--cover--percent-width-omitted-height-viewbox.html": [ + "83271916482de149f2a5c6220e48d69ceb2742e3", [ + null, [ - "/css/CSS2/reference/boxes_same_color_100px_black_50px_margin.xht", - "==" - ] - ], - {} - ] - ], - "outline-color-069.xht": [ - "f2d49dff54b6ec625c5f6fa2c073f947c919feb3", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime256x768.html", + "==" + ] + ], + {} + ] + ], + "tall--cover--percent-width-omitted-height.html": [ + "72ff0f4ee9b9685469b7b471cec0ec7074fe729a", [ + null, [ - "/css/CSS2/reference/boxes_same_color_100px_black_50px_margin.xht", - "==" - ] - ], - {} - ] - ], - "outline-color-070.xht": [ - "d66f792174b16aed78fdeb06b948b5741cfff37d", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime256x384-aqua256x384.html", + "==" + ] + ], + {} + ] + ], + "tall--cover--percent-width-percent-height-viewbox.html": [ + "7bd2bb01e88de38f3f1cc9ab7e9d310a18c78642", [ + null, [ - "/css/CSS2/ui/outline-color-070-ref.xht", - "==" - ] - ], - {} - ] - ], - "outline-color-071.xht": [ - "8b6dfc873e4ff16771ff3c4a22195c23d2eca39e", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime256x768.html", + "==" + ] + ], + {} + ] + ], + "tall--cover--percent-width-percent-height.html": [ + "02c6861a56770d2bad7a9fa9421240a3bda40fac", [ + null, [ - "/css/CSS2/reference/boxes_same_color_100px_black_50px_margin.xht", - "==" - ] - ], - {} - ] - ], - "outline-color-072.xht": [ - "94ae00aa15abde452215b05a0387165ff4be2235", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime256x384-aqua256x384.html", + "==" + ] + ], + {} + ] + ], + "tall--cover--width.html": [ + "26ff0ddfbb6581b12a06035746734f909b57bbf0", [ + null, [ - "/css/CSS2/reference/boxes_same_color_100px_black_50px_margin.xht", - "==" - ] - ], - {} - ] - ], - "outline-color-073.xht": [ - "acf0f17566526fc086e96f14658820e0a03f9401", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime.html", + "==" + ] + ], + {} + ] + ], + "wide--12px-auto--nonpercent-width-nonpercent-height-viewbox.html": [ + "28c134425019ea41a3f7506f1c729fd13f1b447f", [ + null, [ - "/css/CSS2/ui/outline-color-073-ref.xht", - "==" - ] - ], - {} - ] - ], - "outline-color-074.xht": [ - "e7a13db361795b640b3c20e0609be5f8d03b807a", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime12x24-aqua12x24.html", + "==" + ] + ], + {} + ] + ], + "wide--12px-auto--nonpercent-width-nonpercent-height.html": [ + "9bac184a060bfa3c0f849d682e42468017228994", [ + null, [ - "/css/CSS2/ui/outline-color-073-ref.xht", - "==" - ] - ], - {} - ] - ], - "outline-color-075.xht": [ - "c633f47ea916a9019297b917a6ffd91ee8164883", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime12x24-aqua12x24.html", + "==" + ] + ], + {} + ] + ], + "wide--12px-auto--nonpercent-width-omitted-height-viewbox.html": [ + "fe2943e08b90f1a7510f356332461388c66ca8f8", [ + null, [ - "/css/CSS2/ui/outline-color-075-ref.xht", - "==" - ] - ], - {} - ] - ], - "outline-color-079.xht": [ - "85966fe1c19f28c8314accc44a49bbdbf1f44a5d", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime12x96-aqua12x96.html", + "==" + ] + ], + {} + ] + ], + "wide--12px-auto--nonpercent-width-omitted-height.html": [ + "76284feb92113b4ecd4274d5cdf0c04f20968e74", [ + null, [ - "/css/CSS2/reference/boxes_same_color_100px_black_50px_margin.xht", - "==" - ] - ], - {} - ] - ], - "outline-color-081.xht": [ - "f0fc1c98c8df9939ecbc0ba10925a86ea67973e5", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime12x128-aqua12x128.html", + "==" + ] + ], + {} + ] + ], + "wide--12px-auto--nonpercent-width-percent-height-viewbox.html": [ + "c35f86538b688817afe743e479e60b6f4276b8c7", [ + null, [ - "/css/CSS2/reference/boxes_same_color_100px_black_50px_margin.xht", - "==" - ] - ], - {} - ] - ], - "outline-color-082.xht": [ - "92d08d057174fe0a6d20dee4ab425ab706663c0a", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime12x96-aqua12x96.html", + "==" + ] + ], + {} + ] + ], + "wide--12px-auto--nonpercent-width-percent-height.html": [ + "e4dea86a23f366840c5570e1b353bb37fe847d8d", [ + null, [ - "/css/CSS2/reference/boxes_same_color_100px_black_50px_margin.xht", - "==" - ] - ], - {} - ] - ], - "outline-color-089.xht": [ - "0322659e9003afe13a0789555906d45b989b2988", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime12x128-aqua12x128.html", + "==" + ] + ], + {} + ] + ], + "wide--12px-auto--omitted-width-nonpercent-height-viewbox.html": [ + "b6568cea448794d330bc747e3464214681ca62a8", [ + null, [ - "/css/CSS2/reference/boxes_same_color_100px_black_50px_margin.xht", - "==" - ] - ], - {} - ] - ], - "outline-color-090.xht": [ - "941d6eb38c605701ed9848c1b5d713349c11e64b", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime12x96-aqua12x96.html", + "==" + ] + ], + {} + ] + ], + "wide--12px-auto--omitted-width-nonpercent-height.html": [ + "73cd14dc88eb64b9a3204aec976f349491a3e2e1", [ + null, [ - "/css/CSS2/ui/outline-color-090-ref.xht", - "==" - ] - ], - {} - ] - ], - "outline-color-091.xht": [ - "6aeee968b2d545b1ae4b5d14b5814a4cb0f27de5", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime12x16-aqua12x16.html", + "==" + ] + ], + {} + ] + ], + "wide--12px-auto--omitted-width-omitted-height-viewbox.html": [ + "f104b9647336e32dda557f2f2b01c56674fd4f73", [ + null, [ - "/css/CSS2/reference/boxes_same_color_100px_black_50px_margin.xht", - "==" - ] - ], - {} - ] - ], - "outline-color-092.xht": [ - "1563c288008eed7cf88533053a307767bc42fe52", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime12x96-aqua12x96.html", + "==" + ] + ], + {} + ] + ], + "wide--12px-auto--omitted-width-omitted-height.html": [ + "58879b83035bd49e1fcf37de38b41ffaa21ea013", [ + null, [ - "/css/CSS2/reference/boxes_same_color_100px_black_50px_margin.xht", - "==" - ] - ], - {} - ] - ], - "outline-color-093.xht": [ - "37c33485a5781a7027454359e459476a1ab862fe", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime12x128-aqua12x128.html", + "==" + ] + ], + {} + ] + ], + "wide--12px-auto--omitted-width-percent-height-viewbox.html": [ + "81f74f7ae36292bb92f1b0958cb0550728ff03b0", [ + null, [ - "/css/CSS2/ui/outline-color-093-ref.xht", - "==" - ] - ], - {} - ] - ], - "outline-color-094.xht": [ - "ccfffcb1d8437650acbe38190a21f61af79e703d", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime12x96-aqua12x96.html", + "==" + ] + ], + {} + ] + ], + "wide--12px-auto--omitted-width-percent-height.html": [ + "1c2a6342474bf76af7f2d12cc6122b95fd82d8d4", [ + null, [ - "/css/CSS2/ui/outline-color-093-ref.xht", - "==" - ] - ], - {} - ] - ], - "outline-color-095.xht": [ - "8d0840474b5f1dcd22ab2cde2a37cef19997034e", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime12x128-aqua12x128.html", + "==" + ] + ], + {} + ] + ], + "wide--12px-auto--percent-width-nonpercent-height-viewbox.html": [ + "a926a9fa6bc73e64f343f7dee3e94d144efde835", [ + null, [ - "/css/CSS2/ui/outline-color-095-ref.xht", - "==" - ] - ], - {} - ] - ], - "outline-color-099.xht": [ - "05bc3d2e1b8e92e6ffd52a5ead48da8841bdf4d1", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime12x96-aqua12x96.html", + "==" + ] + ], + {} + ] + ], + "wide--12px-auto--percent-width-nonpercent-height.html": [ + "1a66abff427d7b3b2e1dfb609238fdfd849da8d4", [ + null, [ - "/css/CSS2/reference/boxes_same_color_100px_black_50px_margin.xht", - "==" - ] - ], - {} - ] - ], - "outline-color-101.xht": [ - "d6c6794fab939cb9e323c0b0d030796e42d34f7e", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime12x16-aqua12x16.html", + "==" + ] + ], + {} + ] + ], + "wide--12px-auto--percent-width-omitted-height-viewbox.html": [ + "6906243e9843987d0496dfb2f16c8408d6c70947", [ + null, [ - "/css/CSS2/reference/boxes_same_color_100px_black_50px_margin.xht", - "==" - ] - ], - {} - ] - ], - "outline-color-102.xht": [ - "76586ebb1715497d7d5c1fa4dabae9c919245f4a", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime12x96-aqua12x96.html", + "==" + ] + ], + {} + ] + ], + "wide--12px-auto--percent-width-omitted-height.html": [ + "64966a724e660faf5c89b5b9a19fff4ca3a30a62", [ + null, [ - "/css/CSS2/reference/boxes_same_color_100px_black_50px_margin.xht", - "==" - ] - ], - {} - ] - ], - "outline-color-109.xht": [ - "e719cacce5eb8cf8615110505b422953cd581651", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime12x128-aqua12x128.html", + "==" + ] + ], + {} + ] + ], + "wide--12px-auto--percent-width-percent-height-viewbox.html": [ + "6db73b498170d30a2d662552dd1ffcb4a833b237", [ + null, [ - "/css/CSS2/reference/boxes_same_color_100px_black_50px_margin.xht", - "==" - ] - ], - {} - ] - ], - "outline-color-110.xht": [ - "81cc1ed2e0232982148294fa5f9ee13312780fab", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime12x96-aqua12x96.html", + "==" + ] + ], + {} + ] + ], + "wide--12px-auto--percent-width-percent-height.html": [ + "d1dfaa4cad2aea3f7b542a6ea31783774d97f172", [ + null, [ - "/css/CSS2/ui/outline-color-110-ref.xht", - "==" - ] - ], - {} - ] - ], - "outline-color-111.xht": [ - "07f0e8fb93da468ffb73dd20961bf3b9d8715430", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime12x128-aqua12x128.html", + "==" + ] + ], + {} + ] + ], + "wide--auto--nonpercent-width-nonpercent-height-viewbox.html": [ + "bb399358f878c36ed4a9c085e1ec9bec3fe591b4", [ + null, [ - "/css/CSS2/reference/boxes_same_color_100px_black_50px_margin.xht", - "==" - ] - ], - {} - ] - ], - "outline-color-112.xht": [ - "35df23618fe651045c310584947470fc76941a0a", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime8x16-aqua8x16.html", + "==" + ] + ], + {} + ] + ], + "wide--auto--nonpercent-width-nonpercent-height.html": [ + "7363a03961fbad3414eb24731e875906c085c5b3", [ + null, [ - "/css/CSS2/reference/boxes_same_color_100px_black_50px_margin.xht", - "==" - ] - ], - {} - ] - ], - "outline-color-113.xht": [ - "1802658f98a1222feb0a6bbc3ebb98df64f50ab4", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime8x16-aqua8x16.html", + "==" + ] + ], + {} + ] + ], + "wide--auto--nonpercent-width-omitted-height-viewbox.html": [ + "e207e2fd88a3d02073897be9c0424515c0ff7e17", [ + null, [ - "/css/CSS2/ui/outline-color-113-ref.xht", - "==" - ] - ], - {} - ] - ], - "outline-color-114.xht": [ - "97582b7a4db81468dff10b2ef651e72303254c69", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime8x64-aqua8x64.html", + "==" + ] + ], + {} + ] + ], + "wide--auto--nonpercent-width-omitted-height.html": [ + "d48cc1008b45d7f456c7ef8726cc593bab600296", [ + null, [ - "/css/CSS2/ui/outline-color-113-ref.xht", - "==" - ] - ], - {} - ] - ], - "outline-color-115.xht": [ - "4a434b97ee5205349b6ac636e111128aa1d296ba", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime8x128-aqua8x128.html", + "==" + ] + ], + {} + ] + ], + "wide--auto--nonpercent-width-percent-height-viewbox.html": [ + "c4405c2cd212d917e1e1f717403fc9ad6b7316f9", [ + null, [ - "/css/CSS2/ui/outline-color-115-ref.xht", - "==" - ] - ], - {} - ] - ], - "outline-color-119.xht": [ - "eca70fb1d72171dbf326565ce67295f400a844a0", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime8x64-aqua8x64.html", + "==" + ] + ], + {} + ] + ], + "wide--auto--nonpercent-width-percent-height.html": [ + "2860507a31d074b39705034e6c7bd0cb5d4d182c", [ + null, [ - "/css/CSS2/reference/boxes_same_color_100px_black_50px_margin.xht", - "==" - ] - ], - {} - ] - ], - "outline-color-121.xht": [ - "e91a77eb3204e66e1138cdc32392cc746522acba", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime8x128-aqua8x128.html", + "==" + ] + ], + {} + ] + ], + "wide--auto--omitted-width-nonpercent-height-viewbox.html": [ + "0eac7d95e50965f279ccbcd2f69987ec98b56898", [ + null, [ - "/css/CSS2/reference/boxes_same_color_100px_black_50px_margin.xht", - "==" - ] - ], - {} - ] - ], - "outline-color-122.xht": [ - "78c8224984fa63c55d2c034bae527233a5d35e68", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime2x16-aqua2x16.html", + "==" + ] + ], + {} + ] + ], + "wide--auto--omitted-width-nonpercent-height.html": [ + "60577d96f4205fba39c5724a5df8c7df99f1f0d1", [ + null, [ - "/css/CSS2/reference/boxes_same_color_100px_black_50px_margin.xht", - "==" - ] - ], - {} - ] - ], - "outline-color-130.xht": [ - "0b5938fdc114d9012b199d3dccde945f61ef1ea8", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime768x16-aqua768x16.html", + "==" + ] + ], + {} + ] + ], + "wide--auto--omitted-width-omitted-height-viewbox.html": [ + "521401033e1b20541e1f37029c6d3dd7c0e2a605", [ + null, [ - "/css/CSS2/reference/boxes_same_color_100px_black_50px_margin.xht", - "==" - ] - ], - {} - ] - ], - "outline-color-applies-to-005.xht": [ - "6d053bac24727fbf73936a4165cfcae2aa5f2c14", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime16x128-aqua16x128.html", + "==" + ] + ], + {} + ] + ], + "wide--auto--omitted-width-omitted-height.html": [ + "59d7f74f8e40dcc8b955da65c997b294660243e9", [ + null, [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", - "==" - ] - ], - {} - ] - ], - "outline-color-applies-to-006.xht": [ - "23bfe88009034e90bcfffc3bd6ad41ba5d5e88a8", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime768x128-aqua768x128.html", + "==" + ] + ], + {} + ] + ], + "wide--auto--omitted-width-percent-height-viewbox.html": [ + "f3c0e84da367a5d703f7676f63691723a2ebf92a", [ + null, [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", - "==" - ] - ], - {} - ] - ], - "outline-style-001.xht": [ - "a6a1240b146bbdc43cbfe5d3ac0243b2af1a7082", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime16x128-aqua16x128.html", + "==" + ] + ], + {} + ] + ], + "wide--auto--omitted-width-percent-height.html": [ + "de567dc43bfc741e8f93577bcc950f8addc5670a", [ + null, [ - "/css/CSS2/reference/no-red-filler-text-ref.xht", - "==" - ] - ], - {} - ] - ], - "outline-style-applies-to-005.xht": [ - "84af45a8caf56aca7077ff6838b7a55c478a5118", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime768x128-aqua768x128.html", + "==" + ] + ], + {} + ] + ], + "wide--auto--percent-width-nonpercent-height-viewbox.html": [ + "13b27bc650bea6a4615894dfb9090734b29e34e1", [ + null, [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", - "==" - ] - ], - {} - ] - ], - "outline-style-applies-to-006.xht": [ - "38c8a44efba6a416ceb57a9dfa17469e31f0ec03", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime2x16-aqua2x16.html", + "==" + ] + ], + {} + ] + ], + "wide--auto--percent-width-nonpercent-height.html": [ + "7e63b29dbf02f6c3b4d9a6e85847779684a0faa3", [ + null, [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", - "==" - ] - ], - {} - ] - ], - "outline-width-002.xht": [ - "2e7cc76b4aeadc1a83ecea486fccb1d2ccf183b0", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime768x16-aqua768x16.html", + "==" + ] + ], + {} + ] + ], + "wide--auto--percent-width-omitted-height-viewbox.html": [ + "ed3ef1d458230d8f8152491cd5e6bd32370d89c1", [ + null, [ - "/css/CSS2/reference/no-red-filler-text-ref.xht", - "==" - ] - ], - {} - ] - ], - "outline-width-004.xht": [ - "f78faf2d23719329e57f2cf542858d7f0d0b94d6", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime16x128-aqua16x128.html", + "==" + ] + ], + {} + ] + ], + "wide--auto--percent-width-omitted-height.html": [ + "c9977ffbed3327b62c479cacf3aef7907c56f3de", [ + null, [ - "/css/CSS2/reference/no-red-filler-text-ref.xht", - "==" - ] - ], - {} - ] - ], - "outline-width-005.xht": [ - "c1c09e19f93c9f99ba0145c341cbb1867de38f1c", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime768x128-aqua768x128.html", + "==" + ] + ], + {} + ] + ], + "wide--auto--percent-width-percent-height-viewbox.html": [ + "6f9037d769f65992ffe60562ee318a1d8baa6896", [ + null, [ - "/css/CSS2/reference/no-red-filler-text-ref.xht", - "==" - ] - ], - {} - ] - ], - "outline-width-013.xht": [ - "3298349c9ee28917ed12e596c6f69021a9bcd06b", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime16x128-aqua16x128.html", + "==" + ] + ], + {} + ] + ], + "wide--auto--percent-width-percent-height.html": [ + "a54798382bafcb2c7669051ae167ee761003afd4", [ + null, [ - "/css/CSS2/reference/no-red-filler-text-ref.xht", - "==" - ] - ], - {} - ] - ], - "outline-width-015.xht": [ - "34f212ca6a83ad631b1868052377f01ca221d94a", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime768x128-aqua768x128.html", + "==" + ] + ], + {} + ] + ], + "wide--auto-32px--nonpercent-width-nonpercent-height-viewbox.html": [ + "4049c5895a28639e76e813d0cbd6e3997ce9ff80", [ + null, [ - "/css/CSS2/reference/no-red-filler-text-ref.xht", - "==" - ] - ], - {} - ] - ], - "outline-width-016.xht": [ - "e808cc7195c291f1fda645d266bee9d0c9963cb9", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime8x16-aqua8x16.html", + "==" + ] + ], + {} + ] + ], + "wide--auto-32px--nonpercent-width-nonpercent-height.html": [ + "f66e430ee6e633f94b87d7e9595d699d870330c0", [ + null, [ - "/css/CSS2/reference/no-red-filler-text-ref.xht", - "==" - ] - ], - {} - ] - ], - "outline-width-024.xht": [ - "754896b6a0bbdd1b5f6466d0087476dc2a095638", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime8x16-aqua8x16.html", + "==" + ] + ], + {} + ] + ], + "wide--auto-32px--nonpercent-width-omitted-height-viewbox.html": [ + "07422dfdb5150636eef47b6950f99fc21f5dce87", [ + null, [ - "/css/CSS2/reference/no-red-filler-text-ref.xht", - "==" - ] - ], - {} - ] - ], - "outline-width-026.xht": [ - "f17607f92fa59a588aa3c1caaa3667c64124b384", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime2x16-aqua2x16.html", + "==" + ] + ], + {} + ] + ], + "wide--auto-32px--nonpercent-width-omitted-height.html": [ + "accc46d6e016a5c4eb508757b4f3c3559616fd66", [ + null, [ - "/css/CSS2/reference/no-red-filler-text-ref.xht", - "==" - ] - ], - {} - ] - ], - "outline-width-027.xht": [ - "2d1f5ec2b3c33fd55d3f9f2b91c2adee1be6a8fd", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime8x16-aqua8x16.html", + "==" + ] + ], + {} + ] + ], + "wide--auto-32px--nonpercent-width-percent-height-viewbox.html": [ + "b0ef7476820c2996f349ce336e70383c7df4d7b2", [ + null, [ - "/css/CSS2/reference/no-red-filler-text-ref.xht", - "==" - ] - ], - {} - ] - ], - "outline-width-035.xht": [ - "7fea174217a1ddc42a3b1c524052ac0221120118", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime2x16-aqua2x16.html", + "==" + ] + ], + {} + ] + ], + "wide--auto-32px--nonpercent-width-percent-height.html": [ + "f9978688a6b4f4222671c805d770edd1cfa63afd", [ + null, [ - "/css/CSS2/reference/no-red-filler-text-ref.xht", - "==" - ] - ], - {} - ] - ], - "outline-width-037.xht": [ - "71a78515c73c97db5b0b6c1911207427504c9dfb", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime8x16-aqua8x16.html", + "==" + ] + ], + {} + ] + ], + "wide--auto-32px--omitted-width-nonpercent-height-viewbox.html": [ + "a5647237814c4b1945ea57ad0c82679ed4712136", [ + null, [ - "/css/CSS2/reference/no-red-filler-text-ref.xht", - "==" - ] - ], - {} - ] - ], - "outline-width-038.xht": [ - "b9c22b1f8637924ea63adbee09eb84c5a1a1566c", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime2x16-aqua2x16.html", + "==" + ] + ], + {} + ] + ], + "wide--auto-32px--omitted-width-nonpercent-height.html": [ + "688dc5b3f9d51acea5089d8eb739a68ae07b918a", [ + null, [ - "/css/CSS2/reference/no-red-filler-text-ref.xht", - "==" - ] - ], - {} - ] - ], - "outline-width-046.xht": [ - "12216bdc073775c4e48132a349830d8cd8dfd074", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime768x16-aqua768x16.html", + "==" + ] + ], + {} + ] + ], + "wide--auto-32px--omitted-width-omitted-height-viewbox.html": [ + "0e8b934a2d2b14aef48e616eecefa96660b65afc", [ + null, [ - "/css/CSS2/reference/no-red-filler-text-ref.xht", - "==" - ] - ], - {} - ] - ], - "outline-width-048.xht": [ - "1b8294be3c9d2c8d6b2c1d0565fb11020b697939", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime2x16-aqua2x16.html", + "==" + ] + ], + {} + ] + ], + "wide--auto-32px--omitted-width-omitted-height.html": [ + "b43366bbc13096bc57ef478224daee5f5e89b9bb", [ + null, [ - "/css/CSS2/reference/no-red-filler-text-ref.xht", - "==" - ] - ], - {} - ] - ], - "outline-width-049.xht": [ - "ddfedd553d1c4dad7fc31905e9ec741f8d907270", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime768x16-aqua768x16.html", + "==" + ] + ], + {} + ] + ], + "wide--auto-32px--omitted-width-percent-height-viewbox.html": [ + "95cda276706f77aa83d642b3eaa476c6308379f0", [ + null, [ - "/css/CSS2/reference/no-red-filler-text-ref.xht", - "==" - ] - ], - {} - ] - ], - "outline-width-057.xht": [ - "debedf8d7c3ea6faa0e27fead1df5bae307878e3", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime2x16-aqua2x16.html", + "==" + ] + ], + {} + ] + ], + "wide--auto-32px--omitted-width-percent-height.html": [ + "8622f7394f350a7ec109ad220617c54c631776ae", [ + null, [ - "/css/CSS2/reference/no-red-filler-text-ref.xht", - "==" - ] - ], - {} - ] - ], - "outline-width-059.xht": [ - "e10834998661c11663577e0f3bdf72b366971eb0", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime768x16-aqua768x16.html", + "==" + ] + ], + {} + ] + ], + "wide--auto-32px--percent-width-nonpercent-height-viewbox.html": [ + "ea6ecc2308511acc1c3b87adf04994914fe296fe", [ + null, [ - "/css/CSS2/reference/no-red-filler-text-ref.xht", - "==" - ] - ], - {} - ] - ], - "outline-width-060.xht": [ - "f3309a52aac62da4bf57a56d9feaa4cb39b71000", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime2x16-aqua2x16.html", + "==" + ] + ], + {} + ] + ], + "wide--auto-32px--percent-width-nonpercent-height.html": [ + "62e9946715a7e41bf44a667190632c67617ede61", [ + null, [ - "/css/CSS2/reference/no-red-filler-text-ref.xht", - "==" - ] - ], - {} - ] - ], - "outline-width-068.xht": [ - "99b497cc05e2cc076933e47e7f99cd3719b3f7d8", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime768x16-aqua768x16.html", + "==" + ] + ], + {} + ] + ], + "wide--auto-32px--percent-width-omitted-height-viewbox.html": [ + "f8d819209810c4159bb22fd54eeee11091835ae8", [ + null, [ - "/css/CSS2/reference/no-red-filler-text-ref.xht", - "==" - ] - ], - {} - ] - ], - "outline-width-070.xht": [ - "5f476961fe1d666631576d3dac05141a5f944ae3", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime2x16-aqua2x16.html", + "==" + ] + ], + {} + ] + ], + "wide--auto-32px--percent-width-omitted-height.html": [ + "bce840674fbafa8944f918e03aec1a94012c9622", [ + null, [ - "/css/CSS2/reference/no-red-filler-text-ref.xht", - "==" - ] - ], - {} - ] - ], - "outline-width-071.xht": [ - "4fd5bd3195108c75a8104410ebeab7f35436ec2a", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime768x16-aqua768x16.html", + "==" + ] + ], + {} + ] + ], + "wide--auto-32px--percent-width-percent-height-viewbox.html": [ + "90c1f23fa27a5f71d24183978b23e39fed39350d", [ + null, [ - "/css/CSS2/reference/no-red-filler-text-ref.xht", - "==" - ] - ], - {} - ] - ], - "outline-width-079.xht": [ - "772bb03a895b2bbfb9fe1c504e14222b422e8bd2", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime2x16-aqua2x16.html", + "==" + ] + ], + {} + ] + ], + "wide--auto-32px--percent-width-percent-height.html": [ + "c02f00b42ccd18a1df8f9138458bd12b0061bf78", [ + null, [ - "/css/CSS2/reference/no-red-filler-text-ref.xht", - "==" - ] - ], - {} - ] - ], - "outline-width-081.xht": [ - "0cc50017363c5e9913e9010c6607da942067fc57", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime768x16-aqua768x16.html", + "==" + ] + ], + {} + ] + ], + "wide--contain--height.html": [ + "615c55c2f5b398626eaa162af9d45eeb489cf094", [ + null, [ - "/css/CSS2/reference/no-red-filler-text-ref.xht", - "==" - ] - ], - {} - ] - ], - "outline-width-082.xht": [ - "e8090475088782572b09f5f91e54ddb6441fed2b", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-empty.html", + "==" + ] + ], + {} + ] + ], + "wide--contain--nonpercent-width-nonpercent-height-viewbox.html": [ + "10099c6759ae6b9745d592eeb609256eab7b2ca1", [ + null, [ - "/css/CSS2/reference/no-red-filler-text-ref.xht", - "==" - ] - ], - {} - ] - ], - "outline-width-089.xht": [ - "2d412fae775f593abb6e6e4b01fa030610efcc89", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime64x128-aqua64x128.html", + "==" + ] + ], + {} + ] + ], + "wide--contain--nonpercent-width-nonpercent-height.html": [ + "53ce32a42c56a8df3e7fdc5c56fbeea55aad6143", [ + null, [ - "/css/CSS2/reference/no-red-filler-text-ref.xht", - "==" - ] - ], - {} - ] - ], - "outline-width-090.xht": [ - "da4a109a6082b8c83be1a2510a11aa9bdc4e0737", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime64x128-aqua64x128.html", + "==" + ] + ], + {} + ] + ], + "wide--contain--nonpercent-width-omitted-height-viewbox.html": [ + "dd6c0eb2557b238ce62602d579d2fc08cd152c45", [ + null, [ - "/css/CSS2/reference/no-red-filler-text-ref.xht", - "==" - ] - ], - {} - ] - ], - "outline-width-091.xht": [ - "35fd16a7357ec2ea430ee15df5bb2b88331c1fc3", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime16x128-aqua16x128.html", + "==" + ] + ], + {} + ] + ], + "wide--contain--nonpercent-width-omitted-height.html": [ + "c934a7f0568329a651223b69b54c6946904d753b", [ + null, [ - "/css/CSS2/reference/no-red-filler-text-ref.xht", - "==" - ] - ], - {} - ] - ], - "outline-width-096.xht": [ - "8e56ad1f85a207f553d39dc6d3713593610cd137", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime768x128-aqua768x128.html", + "==" + ] + ], + {} + ] + ], + "wide--contain--nonpercent-width-percent-height-viewbox.html": [ + "a1d1bb6bf498fac8f9c717f090679fd2a31bec46", [ + null, [ - "/css/CSS2/ui/outline-width-096-ref.xht", - "==" - ] - ], - {} - ] - ], - "outline-width-applies-to-005.xht": [ - "72d0453e34f957cb2c93fb5e6fa618c57ca388ce", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime16x128-aqua16x128.html", + "==" + ] + ], + {} + ] + ], + "wide--contain--nonpercent-width-percent-height.html": [ + "01712da257c0fcc6fd7e43b68e34eec0b729d89c", [ + null, [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", - "==" - ] - ], - {} - ] - ], - "outline-width-applies-to-006.xht": [ - "baa6d36016779c23c4e5e85273037e531a675a7f", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime768x128-aqua768x128.html", + "==" + ] + ], + {} + ] + ], + "wide--contain--omitted-width-nonpercent-height-viewbox.html": [ + "c6d24d1e441d042588c4be9c413a555db084ef43", [ + null, [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", - "==" - ] - ], - {} - ] - ], - "overflow-applies-to-001.xht": [ - "55644ba4083914dee4eb73ee70a411227508201f", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime16x128-aqua16x128.html", + "==" + ] + ], + {} + ] + ], + "wide--contain--omitted-width-nonpercent-height.html": [ + "caf4e4929023fbfa2fa8a2eabbcd974ea055284f", [ + null, [ - "/css/CSS2/ui/overflow-applies-to-001-ref.xht", - "==" - ] - ], - {} - ] - ], - "overflow-applies-to-002.xht": [ - "7a2d90a3f89d0f34720522a5e1f741c5c29b8502", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime768x128-aqua768x128.html", + "==" + ] + ], + {} + ] + ], + "wide--contain--omitted-width-omitted-height-viewbox.html": [ + "519a6d37d6231692458ed7d86ded0825953a5219", [ + null, [ - "/css/CSS2/ui/overflow-applies-to-001-ref.xht", - "==" - ] - ], - {} - ] - ], - "overflow-applies-to-003.xht": [ - "a5fff97ea2ae0b23c79c60c7f7d6c90a508ef970", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime16x128-aqua16x128.html", + "==" + ] + ], + {} + ] + ], + "wide--contain--omitted-width-omitted-height.html": [ + "a0f054c3004d3cc136c69fe50928acab47f58a45", [ + null, [ - "/css/CSS2/ui/overflow-applies-to-001-ref.xht", - "==" - ] - ], - {} - ] - ], - "overflow-applies-to-004.xht": [ - "ed0eb73f97e6978f6cc6578a3c17be5e7c6781d8", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime768x128-aqua768x128.html", + "==" + ] + ], + {} + ] + ], + "wide--contain--omitted-width-percent-height-viewbox.html": [ + "52fa99c09da70397e3314976ab31e24a8a773216", [ + null, [ - "/css/CSS2/ui/overflow-applies-to-001-ref.xht", - "==" - ] - ], - {} - ] - ], - "overflow-applies-to-005.xht": [ - "5b2e86b964d88e62a8f4b681f00f5d8e0407a1cf", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime16x128-aqua16x128.html", + "==" + ] + ], + {} + ] + ], + "wide--contain--omitted-width-percent-height.html": [ + "aa6baca06eb6341a83a51c5b12d7f113d1bb6193", [ + null, [ - "/css/CSS2/ui/overflow-applies-to-001-ref.xht", - "==" - ] - ], - {} - ] - ], - "overflow-applies-to-006.xht": [ - "af5df410094523d9144297a80ab69fccd2dcf072", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime768x128-aqua768x128.html", + "==" + ] + ], + {} + ] + ], + "wide--contain--percent-width-nonpercent-height-viewbox.html": [ + "de0c750645ae10b5319d24d1fe978b2fb841f8f4", [ + null, [ - "/css/CSS2/ui/overflow-applies-to-001-ref.xht", - "==" - ] - ], - {} - ] - ], - "overflow-applies-to-007.xht": [ - "8b8c0a81858960d0062b9183a598235cfae3be73", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime16x128-aqua16x128.html", + "==" + ] + ], + {} + ] + ], + "wide--contain--percent-width-nonpercent-height.html": [ + "e9209b78b723208efcb1ba6f8d0dd5935285a58c", [ + null, [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", - "==" - ] - ], - {} - ] - ], - "overflow-applies-to-008.xht": [ - "65b765fe82cd4e1ca059748cbd41b5cc69424c43", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime768x128-aqua768x128.html", + "==" + ] + ], + {} + ] + ], + "wide--contain--percent-width-omitted-height-viewbox.html": [ + "612a311f288751130dd54137b5cfe32a9272d1c5", [ + null, [ - "/css/CSS2/ui/overflow-applies-to-001-ref.xht", - "==" - ] - ], - {} - ] - ], - "overflow-applies-to-009.xht": [ - "5867a68b7a574334d28b8850e0ddb47301ab6c61", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime16x128-aqua16x128.html", + "==" + ] + ], + {} + ] + ], + "wide--contain--percent-width-omitted-height.html": [ + "9fe315cd40a747a422a7dc5fe950129ea1690d97", [ + null, [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", - "==" - ] - ], - {} - ] - ], - "overflow-applies-to-012.xht": [ - "f7ad7540ced4a9fb12e695b2da37ad61fe5ac6c7", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime768x128-aqua768x128.html", + "==" + ] + ], + {} + ] + ], + "wide--contain--percent-width-percent-height-viewbox.html": [ + "9e2653c95810fb469a9921ca52caf2fa02e5f577", [ + null, [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", - "==" - ] - ], - {} - ] - ], - "overflow-applies-to-013.xht": [ - "8dc2c8e84f77789c8c186b921d6c79c97c3c18da", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime16x128-aqua16x128.html", + "==" + ] + ], + {} + ] + ], + "wide--contain--percent-width-percent-height.html": [ + "94c020834ff25662ad7bd0a541b8465f7cb28410", [ + null, [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", - "==" - ] - ], - {} - ] - ], - "overflow-applies-to-014.xht": [ - "bcbf5ac474673e8c6c6f561f9772cb9e136f8301", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime768x128-aqua768x128.html", + "==" + ] + ], + {} + ] + ], + "wide--contain--width.html": [ + "abc9ffef59bf4064021dc6cd79612cab4aff963f", [ + null, [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", - "==" - ] - ], - {} - ] - ], - "overflow-applies-to-015.xht": [ - "44d20443d4b71404bc2e44a5d44742a4ac75129f", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-empty.html", + "==" + ] + ], + {} + ] + ], + "wide--cover--height.html": [ + "56550a5f84dbfc434e5307e380be5db6ecf6f093", [ + null, [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", - "==" - ] - ], - {} - ] - ] - }, - "values": { - "color-000.xht": [ - "ea2e3f51d3770efed4541511d222d4b053b1cac4", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime.html", + "==" + ] + ], + {} + ] + ], + "wide--cover--nonpercent-width-nonpercent-height-viewbox.html": [ + "09f6319f1d4ccf3072e066bfe15deafc406bdb42", [ + null, [ - "/css/CSS2/values/color-000-ref.xht", - "==" - ] - ], - {} - ] - ], - "numbers-units-001.xht": [ - "dae3fa6df3738395a6ecf16c63d8e97028a44401", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime768x256.html", + "==" + ] + ], + {} + ] + ], + "wide--cover--nonpercent-width-nonpercent-height.html": [ + "e7fbc375ab986946e2628fc5c6777c735c00dc78", [ + null, [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", - "==" - ] - ], - {} - ] - ], - "numbers-units-003.xht": [ - "57600a7c70b4cbdab11b1565891808315db9a2ed", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime768x256.html", + "==" + ] + ], + {} + ] + ], + "wide--cover--nonpercent-width-omitted-height-viewbox.html": [ + "5c24bdffcba557501bab4ad2052c690bc3b80a04", [ + null, [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", - "==" - ] - ], - {} - ] - ], - "numbers-units-004.xht": [ - "1ce19808ad1e21f45914af930990c66533629fe2", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime768x256.html", + "==" + ] + ], + {} + ] + ], + "wide--cover--nonpercent-width-omitted-height.html": [ + "48373ca9bff5463776dc812f71fcaaac9631b5a3", [ + null, [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", - "==" - ] - ], - {} - ] - ], - "numbers-units-005.xht": [ - "a5daced856f1aa9948687c8f4f6504f6cb3badc2", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime768x128-aqua768x128.html", + "==" + ] + ], + {} + ] + ], + "wide--cover--nonpercent-width-percent-height-viewbox.html": [ + "64becf4a81a5e2458eaa8659f73f00ce0684234b", [ + null, [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", - "==" - ] - ], - {} - ] - ], - "numbers-units-006.xht": [ - "24fd36e0ad964b92825d273a9be7e667cd3c3421", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime768x256.html", + "==" + ] + ], + {} + ] + ], + "wide--cover--nonpercent-width-percent-height.html": [ + "6ec016ec28c0dab811b268315b0b1973e8d5bd05", [ + null, [ - "/css/CSS2/reference/ref-filled-black-96px-square.xht", - "==" - ] - ], - {} - ] - ], - "numbers-units-007.xht": [ - "b70cb36ca6de5fce5b499124a8173bc9c71bfc2e", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime768x128-aqua768x128.html", + "==" + ] + ], + {} + ] + ], + "wide--cover--omitted-width-nonpercent-height-viewbox.html": [ + "948f5e9455cf333ebaab76bfdcc7326e4a6a3d8f", [ + null, [ - "/css/CSS2/values/numbers-units-007-ref.xht", - "==" - ] - ], - {} - ] - ], - "numbers-units-009.xht": [ - "78882eba4b0079d0361a1682e86b1c9ba770b805", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime768x256.html", + "==" + ] + ], + {} + ] + ], + "wide--cover--omitted-width-nonpercent-height.html": [ + "1000b790648d7859145bfe7c100681ae36463ddf", [ + null, [ - "/css/CSS2/values/numbers-units-009-ref.xht", - "==" - ] - ], - {} - ] - ], - "numbers-units-010.xht": [ - "03b0b71aead9395f4e41d8a114e39d2cbfc1de1f", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime768x128-aqua768x128.html", + "==" + ] + ], + {} + ] + ], + "wide--cover--omitted-width-omitted-height-viewbox.html": [ + "fe4b9ca9b1ab1e126c9691248703372ad516a9a7", [ + null, [ - "/css/CSS2/values/numbers-units-010-ref.xht", - "==" - ] - ], - {} - ] - ], - "numbers-units-011.xht": [ - "e1edfea9e11ec9c4f8b3152ff3637169e21f0227", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime768x256.html", + "==" + ] + ], + {} + ] + ], + "wide--cover--omitted-width-omitted-height.html": [ + "656ed819dc6e834b3ce33106566f3b67a383d1fe", [ + null, [ - "/css/CSS2/values/numbers-units-011-ref.xht", - "==" - ] - ], - {} - ] - ], - "numbers-units-012.xht": [ - "f24e528c5b3ac1ffe8ea9e566d2c7690d99b8088", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime768x128-aqua768x128.html", + "==" + ] + ], + {} + ] + ], + "wide--cover--omitted-width-percent-height-viewbox.html": [ + "8bb52f9fa6dfb4ac60d597344f6dd92ac44edcf3", [ + null, [ - "/css/CSS2/values/numbers-units-012-ref.xht", - "==" - ] - ], - {} - ] - ], - "numbers-units-013.xht": [ - "ac42ede11973ad7d72424ec167ea468500bc8058", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime768x256.html", + "==" + ] + ], + {} + ] + ], + "wide--cover--omitted-width-percent-height.html": [ + "2f26a9b105a403febbaa526f2c2a2ed7100f0809", [ + null, [ - "/css/CSS2/values/numbers-units-013-ref.xht", - "==" - ] - ], - {} - ] - ], - "numbers-units-015.xht": [ - "d79cce58900bb2fdb36a9e5758f62a2bbd2ae760", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime768x128-aqua768x128.html", + "==" + ] + ], + {} + ] + ], + "wide--cover--percent-width-nonpercent-height-viewbox.html": [ + "f5e84e69a29e6ef1d585bdfe1085a24f399d1d7d", [ + null, [ - "/css/CSS2/values/numbers-units-015-ref-a.xht", - "==" + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime768x256.html", + "==" + ] ], + {} + ] + ], + "wide--cover--percent-width-nonpercent-height.html": [ + "409f2fa76e59bc2f2aaa8de188d63276dc64e8e1", + [ + null, [ - "/css/CSS2/values/numbers-units-015-ref-b.xht", - "==" - ] - ], - {} - ] - ], - "numbers-units-016.xht": [ - "97b0af586845bd75f1311f8cb758bab2e5f4cba3", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime768x128-aqua768x128.html", + "==" + ] + ], + {} + ] + ], + "wide--cover--percent-width-omitted-height-viewbox.html": [ + "31133bb6f449687a108fbd8f27bbb4e54b69e6bf", [ + null, [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", - "==" - ] - ], - {} - ] - ], - "numbers-units-017.xht": [ - "3ee11a790f2e56f2c9753b023f76eb459c5dd2b9", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime768x256.html", + "==" + ] + ], + {} + ] + ], + "wide--cover--percent-width-omitted-height.html": [ + "d17c1d163bff9f148e5e8cf58c5c8f34e3932efc", [ + null, [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", - "==" - ] - ], - {} - ] - ], - "numbers-units-018.xht": [ - "a5c6f76fa30649c5b19aaec70cc0b46b0abded9d", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime768x128-aqua768x128.html", + "==" + ] + ], + {} + ] + ], + "wide--cover--percent-width-percent-height-viewbox.html": [ + "d0fc8ea497b280a7b1cb1031e1097b3589201c0f", [ + null, [ - "/css/CSS2/values/numbers-units-018-ref.xht", - "==" - ] - ], - {} - ] - ], - "numbers-units-019.xht": [ - "205e3b639251454fa6528b848dfac8c43d0a9684", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime768x256.html", + "==" + ] + ], + {} + ] + ], + "wide--cover--percent-width-percent-height.html": [ + "bd82412f99b8b5311aa10c91c78a17aa4af29755", [ + null, [ - "/css/CSS2/values/numbers-units-019-ref.xht", - "==" - ] - ], - {} - ] - ], - "numbers-units-021.xht": [ - "7f3e20aad9ad3d55d3cd0aab60966262251f9f6e", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime768x128-aqua768x128.html", + "==" + ] + ], + {} + ] + ], + "wide--cover--width.html": [ + "ec6aa87fe0fdbcf7f2bac42625623059e31213b7", [ + null, [ - "/css/CSS2/values/numbers-units-021-ref.xht", - "==" - ] - ], - {} - ] - ], - "units-001.xht": [ - "a3e08e45437f01ce1152ec1ac1295a00ff2bc551", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime.html", + "==" + ] + ], + {} + ] + ], + "zero-height-ratio-5px-auto.html": [ + "dccf55e6fe3f67215c472aaf99b7f4eaac44da0c", [ + null, [ - "/css/CSS2/values/units-001-ref.xht", - "==" - ] - ], - {} - ] - ], - "units-002.xht": [ - "8fd7b0bd5ebb575780dd5ebd688be867d2f98abf", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-tall-empty.html", + "==" + ] + ], + {} + ] + ], + "zero-height-ratio-auto-5px.html": [ + "7fddc6d43d6f71047c06ffcd5d00a23b6495fabf", [ + null, [ - "/css/CSS2/values/units-002-ref.xht", - "==" - ] - ], - {} - ] - ], - "units-003.xht": [ - "df6b1ab71ebd9dba4937447d242f7bd7cc7dad07", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-tall-empty.html", + "==" + ] + ], + {} + ] + ], + "zero-height-ratio-auto-auto.html": [ + "3e62569dc9a2a913b52bd05cb27c06aae887908a", [ + null, [ - "/css/CSS2/values/units-003-ref.xht", - "==" - ] - ], - {} - ] - ], - "units-004.xht": [ - "a0e474e0aef072a075bdd9c185f6f87846620403", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-tall-empty.html", + "==" + ] + ], + {} + ] + ], + "zero-height-ratio-contain.html": [ + "32b246fb36a7d4f3343b611eb8d22816f57cf84d", [ + null, [ - "/css/CSS2/values/units-004-ref.xht", - "==" - ] - ], - {} - ] - ], - "units-005.xht": [ - "052b7e331920195fdf758f346a3d03bbd3b8b3b1", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-tall-empty.html", + "==" + ] + ], + {} + ] + ], + "zero-height-ratio-cover.html": [ + "c4847c398bff005bbaa64f0c1304610abbae19c0", [ + null, [ - "/css/CSS2/values/units-005-ref.xht", - "==" - ] - ], - {} - ] - ], - "units-006.xht": [ - "12713a15048a17fb59b64c2f6e7829081c412ba7", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-tall-empty.html", + "==" + ] + ], + {} + ] + ], + "zero-ratio-no-dimensions-5px-auto.html": [ + "28d44ea51ab648c69d2a26849889a842a864faeb", [ + null, [ - "/css/CSS2/values/units-006-ref.xht", - "==" - ] - ], - {} - ] - ], - "units-008.xht": [ - "3510f4dfcaac9d443bab9e10bbf9be8266a66fc7", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-tall-empty.html", + "==" + ] + ], + {} + ] + ], + "zero-ratio-no-dimensions-auto-5px.html": [ + "a830722b83b00c70f80d0a9124aa1b8ff7790679", [ + null, [ - "/css/CSS2/values/units-006-ref.xht", - "==" - ] - ], - {} - ] - ], - "units-009.xht": [ - "982fc96f44a023a551d42030387be4b20b531d94", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-tall-empty.html", + "==" + ] + ], + {} + ] + ], + "zero-ratio-no-dimensions-auto-auto.html": [ + "a3eefc90a7f8bd929375300e959f2d83bc423ae3", [ + null, [ - "/css/CSS2/values/units-006-ref.xht", - "==" - ] - ], - {} - ] - ] - }, - "visudet": { - "content-height-001.html": [ - "d4aaaa929ca4d846cc44b8888d72e89060682459", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-tall-empty.html", + "==" + ] + ], + {} + ] + ], + "zero-ratio-no-dimensions-contain.html": [ + "89f644349cf324e52ce6df7a9952bba1ceeb8312", [ + null, [ - "/css/CSS2/visudet/reference/content-height-001-ref.html", - "==" - ] - ], - {} - ] - ], - "content-height-002.html": [ - "038775b686bb0538be199bd3502db8748be65540", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-tall-empty.html", + "==" + ] + ], + {} + ] + ], + "zero-ratio-no-dimensions-cover.html": [ + "e5ffa3a9afc0e986a9becb3353a0e5e7baffabc7", [ + null, [ - "/css/CSS2/visudet/reference/content-height-002-ref.html", - "==" - ] - ], - {} - ] - ], - "content-height-003.html": [ - "f0b09741b5b7d3ff19392c2cfaeccec6155a0db6", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-tall-empty.html", + "==" + ] + ], + {} + ] + ], + "zero-width-ratio-5px-auto.html": [ + "7a0d687aceb046ac45045262c93df0d69ef0efd1", [ + null, [ - "/css/CSS2/visudet/reference/content-height-003-ref.html", - "==" - ] - ], - {} - ] - ], - "content-height-004.html": [ - "d18c8569735a8dfe41d278037591267213b7ca49", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-tall-empty.html", + "==" + ] + ], + {} + ] + ], + "zero-width-ratio-auto-5px.html": [ + "4a7d22f552ff0fb117f15e94a55e28bcd1abbb3f", [ + null, [ - "/css/CSS2/visudet/reference/content-height-004-ref.html", - "==" - ] - ], - {} - ] - ], - "content-height-005.html": [ - "1b84ca764932bef8e0e14309497cde220854c492", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-tall-empty.html", + "==" + ] + ], + {} + ] + ], + "zero-width-ratio-auto-auto.html": [ + "1e1ba84ef5046b31d2b49ba07e76885a561bd6d5", [ + null, [ - "/css/CSS2/visudet/reference/content-height-005-ref.html", - "!=" - ] - ], - {} - ] - ], - "height-applies-to-010a.xht": [ - "8339c008f9714453cff3db200f70dca39604b2cf", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-tall-empty.html", + "==" + ] + ], + {} + ] + ], + "zero-width-ratio-contain.html": [ + "b884d95a42e5e6748425a5c878f04f1a9bca61db", [ + null, [ - "/css/CSS2/visudet/height-applies-to-010a-ref.xht", - "==" - ] - ], - {} - ] - ], - "height-computed-001.xht": [ - "862bfed68b12dcdf534b62a8f285cb56f5770f59", - [ - null, + [ + "/css/css-backgrounds/background-size/vector/reference/ref-tall-empty.html", + "==" + ] + ], + {} + ] + ], + "zero-width-ratio-cover.html": [ + "d762853946eb746781ef134c8380c3024bdf3550", [ + null, [ - "/css/CSS2/visudet/height-computed-001-ref.xht", - "==" - ] - ], - {} + [ + "/css/css-backgrounds/background-size/vector/reference/ref-tall-empty.html", + "==" + ] + ], + {} + ] ] - ], - "height-computed-002.xht": [ - "f703335df2c7579e743c3200239431ad4165f137", + } + }, + "background-size-002.html": [ + "9a3545ce52e6dae7909d13698e56d5625115bfe2", + [ + null, [ - null, [ - [ - "/css/CSS2/visudet/height-computed-002-ref.xht", - "==" - ] - ], - {} - ] - ], - "height-percentage-003a.xht": [ - "f394e899549c7ca9686c56ae679f1f7366c0c08b", + "/css/css-backgrounds/reference/background-size-002-ref.html", + "==" + ] + ], + {} + ] + ], + "background-size-005.html": [ + "015c01d70d6d006e1c0fbbb696e6223d051054b7", + [ + null, [ - null, [ - [ - "/css/CSS2/visudet/height-percentage-003a-ref.xht", - "==" - ] - ], - {} - ] - ], - "height-percentage-004.xht": [ - "51f58511d831bf699f5cf68d4ef5f49166dd25a6", + "/css/css-backgrounds/reference/background-size-002-ref.html", + "==" + ] + ], + {} + ] + ], + "background-size-006.html": [ + "81e4c9ea3ecbfd3598b35bd35c4a7cf1bbbcd082", + [ + null, [ - null, [ - [ - "/css/CSS2/visudet/height-percentage-004-ref.xht", - "==" - ] - ], - {} - ] - ], - "inline-block-baseline-001.xht": [ - "82a2493c178cb2b4fc78460ffbdd532c3853a56f", + "/css/css-backgrounds/reference/background-size-006-ref.html", + "==" + ] + ], + {} + ] + ], + "background-size-007.html": [ + "e6b278de0e5d9b9edc082ae76d1c957f4f6bfc82", + [ + null, [ - null, [ - [ - "/css/CSS2/visudet/inline-block-baseline-001-ref.xht", - "==" - ] - ], - {} - ] - ], - "inline-block-baseline-002.xht": [ - "8b73ec9838def349d2117352756edacb18a89d9d", + "/css/reference/ref-nothing-below.xht", + "==" + ] + ], + {} + ] + ], + "background-size-008.html": [ + "b1cd64565f56f374fe4324594ba8a8f51226d6ca", + [ + null, [ - null, [ - [ - "/css/CSS2/visudet/inline-block-baseline-001-ref.xht", - "==" - ] - ], - {} - ] - ], - "inline-block-baseline-003.xht": [ - "632e2c08c6b6ea8f0a10d2dcec201484487617ae", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "background-size-009.html": [ + "9d76478ffade931ef2cd523ae815ddc028cfc8e4", + [ + null, [ - null, [ - [ - "/css/CSS2/visudet/inline-block-baseline-001-ref.xht", - "==" - ] - ], - {} - ] - ], - "inline-block-baseline-004.xht": [ - "f2691cff18509e98d89f4a3ca2b09c78c57286c7", + "/css/css-backgrounds/reference/background-size-006-ref.html", + "==" + ] + ], + {} + ] + ], + "background-size-010.html": [ + "578fcdc79a6379b0a1979bee20e57c844fb0489a", + [ + null, [ - null, [ - [ - "/css/CSS2/visudet/inline-block-baseline-001-ref.xht", - "==" - ] - ], - {} - ] - ], - "inline-block-baseline-005.xht": [ - "51f544ab64f595d1f043b904e9798819871650c3", + "/css/reference/ref-nothing-below.xht", + "==" + ] + ], + {} + ] + ], + "background-size-011.html": [ + "71bb496baa5fda486a6abe33c9b51cdea57fd1c0", + [ + null, [ - null, [ - [ - "/css/CSS2/visudet/inline-block-baseline-001-ref.xht", - "==" - ] - ], - {} - ] - ], - "inline-block-baseline-006.xht": [ - "d994da7107f6bc270e4ff3e720241d1e9bdd9722", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "background-size-012.html": [ + "f7ac4e49acfe2d1460ce679d69cf677ed5da6e6b", + [ + null, [ - null, [ - [ - "/css/CSS2/visudet/inline-block-baseline-001-ref.xht", - "==" - ] - ], - {} - ] - ], - "inline-block-baseline-010.xht": [ - "a906f02ef0994e91ce16c8d1611a872e77632b8a", + "/css/css-backgrounds/reference/background-size-002-ref.html", + "==" + ] + ], + {} + ] + ], + "background-size-013.html": [ + "141631943ce2389b9428ec177186e96b2e47e8d1", + [ + null, [ - null, [ - [ - "/css/CSS2/visudet/inline-block-baseline-010-ref.xht", - "==" - ] - ], - {} - ] - ], - "inline-block-baseline-011.xht": [ - "6d63b62a7eac15ed5eae2e5fbac63df91900790d", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "background-size-014.html": [ + "0f602c646418eaad6e8549b76e5ad78479876944", + [ + null, [ - null, [ - [ - "/css/CSS2/visudet/inline-block-baseline-010-ref.xht", - "==" - ] - ], - {} - ] - ], - "inline-block-baseline-012.xht": [ - "f1566a9b88e36a5b7cec2d7ea798b994d0926cc6", + "/css/css-backgrounds/reference/background-size-006-ref.html", + "==" + ] + ], + {} + ] + ], + "background-size-015.html": [ + "2d39bb1b15656382a2dae23bb5be997eaeeb4ae1", + [ + null, [ - null, [ - [ - "/css/CSS2/visudet/inline-block-baseline-010-ref.xht", - "==" - ] - ], - {} - ] - ], - "inline-block-baseline-013.xht": [ - "d975aa9f6d26fffac4f217b06944d419cd65e3b9", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "background-size-016.html": [ + "74ce6f9cbaab15b565f22f069f056b4bddbadaee", + [ + null, [ - null, [ - [ - "/css/CSS2/visudet/inline-block-baseline-010-ref.xht", - "==" - ] - ], - {} - ] - ], - "inline-block-baseline-014.xht": [ - "455de0d5e4e1eea890724d4aa70f66b22aae3cc4", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "background-size-017.html": [ + "71f216ffbba9cd3deda2ea74e3d9d4a3b5829f94", + [ + null, [ - null, [ - [ - "/css/CSS2/visudet/inline-block-baseline-010-ref.xht", - "==" - ] - ], - {} - ] - ], - "line-height-201.html": [ - "00ab2aa52755d27c5bbd3b41d91a6f8e138c2899", + "/css/css-backgrounds/reference/background-size-006-ref.html", + "==" + ] + ], + {} + ] + ], + "background-size-018.html": [ + "d701c2b813588279981be599f70ac2c59f00099e", + [ + null, [ - null, [ - [ - "/css/CSS2/visudet/reference/line-height-201-ref.html", - "==" - ] - ], - {} - ] - ], - "line-height-202.html": [ - "aef970b4436dd9e4400293fd55e940ea664fffc3", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "background-size-019.html": [ + "c95afa55ea514e1eecdf24a5eafe061e9982e8d4", + [ + null, [ - null, [ - [ - "/css/CSS2/visudet/reference/line-height-202-ref.html", - "==" - ] - ], - {} - ] - ], - "line-height-203.html": [ - "9e8ee2dc406d6f7fde81694fc4d8c118ef29f7b9", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "background-size-020.html": [ + "d690703ade58beacb3af8ccda68f94f207576a70", + [ + null, [ - null, [ - [ - "/css/CSS2/visudet/reference/line-height-203-ref.html", - "!=" - ] - ], - {} - ] - ], - "line-height-204.html": [ - "1bb0183db4603e9fef477275228bb3e6cf853be6", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "background-size-021.html": [ + "502063f69f462dbfc813da47df2e28609de4d587", + [ + null, [ - null, [ - [ - "/css/CSS2/visudet/reference/line-height-202-ref.html", - "==" - ] - ], - {} - ] - ], - "line-height-205.html": [ - "f9cb02797f8563bda01a278dd902113419547c6c", + "/css/css-backgrounds/reference/background-size-021-ref.html", + "==" + ] + ], + {} + ] + ], + "background-size-025.html": [ + "fb5437fa16822b45d413c2b3445bcb6d563b7abc", + [ + null, [ - null, [ + "/css/css-backgrounds/reference/background-size-025-ref.xht", + "==" + ] + ], + { + "fuzzy": [ [ - "/css/CSS2/visudet/reference/line-height-202-ref.html", - "==" + null, + [ + [ + 0, + 70 + ], + [ + 0, + 7294 + ] + ] ] - ], - {} - ] - ], - "line-height-206.html": [ - "ad24ede74a5c107fd14bc011e0edd36780fc459b", + ] + } + ] + ], + "background-size-026.html": [ + "c824d7c0795f6b0b3209215b258ec7f9e3e2ba96", + [ + null, [ - null, [ - [ - "/css/CSS2/visudet/reference/line-height-206-ref.html", - "!=" - ] - ], - {} - ] - ], - "replaced-elements-all-auto.html": [ - "bc2b4593abf793505e3e99b1b6c99c90666dab93", + "/css/css-backgrounds/reference/background-size-026-ref.xht", + "==" + ] + ], + {} + ] + ], + "background-size-027.html": [ + "b1a603a6851853e82937c8cc98baadf0b304fb3d", + [ + null, [ - null, [ + "/css/css-backgrounds/reference/background-size-027-ref.xht", + "==" + ] + ], + { + "fuzzy": [ [ - "/css/CSS2/visudet/replaced-elements-all-auto-ref.html", - "==" + null, + [ + [ + 0, + 96 + ], + [ + 0, + 5000 + ] + ] ] - ], - {} - ] - ], - "replaced-elements-height-20.html": [ - "2ca34befffba0a9bf1aa1302ed47b53f54ad52fc", + ] + } + ] + ], + "background-size-028.html": [ + "20efb4e77b1ef92ccf446970ef60246aead689a0", + [ + null, [ - null, [ + "/css/css-backgrounds/reference/background-size-028-ref.xht", + "==" + ] + ], + { + "fuzzy": [ [ - "/css/CSS2/visudet/replaced-elements-height-20-ref.html", - "==" + null, + [ + [ + 0, + 1 + ], + [ + 0, + 5056 + ] + ] ] - ], - {} - ] - ], - "replaced-elements-max-height-20.html": [ - "eb2ee98443b045e58173518b158871fdcf34a5a6", + ] + } + ] + ], + "background-size-029.html": [ + "29df68962c4b5aed37f0267e9349091b1a2ea9a5", + [ + null, [ - null, [ + "/css/css-backgrounds/reference/background-size-029-ref.xht", + "==" + ] + ], + { + "fuzzy": [ [ - "/css/CSS2/visudet/replaced-elements-height-20-ref.html", - "==" + null, + [ + [ + 0, + 91 + ], + [ + 0, + 5292 + ] + ] ] - ], - {} - ] - ], - "replaced-elements-max-width-40.html": [ - "9fb7aad4ee93802a5d58a09084a1bd8f3568aec5", + ] + } + ] + ], + "background-size-030.html": [ + "4d6c7284c96d0c9c93d2e935cc5b71b50cd5e9e1", + [ + null, [ - null, [ + "/css/css-backgrounds/reference/background-size-028-ref.xht", + "==" + ] + ], + { + "fuzzy": [ [ - "/css/CSS2/visudet/replaced-elements-width-40-ref.html", - "==" + null, + [ + [ + 1, + 1 + ], + [ + 0, + 5056 + ] + ] ] - ], - {} - ] - ], - "replaced-elements-min-height-20.html": [ - "5294aadcb4ed6c87e3d8ccd7acbeba0b1e4dee38", + ] + } + ] + ], + "background-size-031.html": [ + "e58df81b415dd7784c0a6f5eaebfb4aa3913b8f1", + [ + null, [ - null, [ + "/css/css-backgrounds/reference/background-size-031-ref.xht", + "==" + ] + ], + { + "fuzzy": [ [ - "/css/CSS2/visudet/replaced-elements-all-auto-ref.html", - "==" + null, + [ + [ + 1, + 1 + ], + [ + 0, + 948 + ] + ] ] - ], - {} - ] - ], - "replaced-elements-min-height-40.html": [ - "700909ec52d24dd8125a0680e63a237244879cf6", + ] + } + ] + ], + "background-size-034.html": [ + "0debc25b2bb1335b2619b2f592cf5c7135c27ca2", + [ + null, [ - null, [ - [ - "/css/CSS2/visudet/replaced-elements-min-height-40-ref.html", - "==" - ] - ], - {} - ] - ], - "replaced-elements-min-width-40.html": [ - "03e6a9cba97436a1864fd19a24ace562495e55e5", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "background-size-041.html": [ + "89a52102781e08669b1dc427db73dccf0f0d7e2c", + [ + null, [ - null, [ - [ - "/css/CSS2/visudet/replaced-elements-all-auto-ref.html", - "==" - ] - ], - {} - ] - ], - "replaced-elements-min-width-80.html": [ - "852864aa18cc27d480490039a959a103b234e683", + "/css/css-backgrounds/reference/background-size-041-ref.html", + "==" + ] + ], + {} + ] + ], + "background-size-042.html": [ + "9e1e041e6da3f8aad23ad904e8c7ba8dea6396b5", + [ + null, [ - null, [ - [ - "/css/CSS2/visudet/replaced-elements-min-width-80-ref.html", - "==" - ] - ], - {} - ] - ], - "replaced-elements-width-40.html": [ - "4a8db48f6962666c0cbdbb6cc5692d38ab53aa6a", + "/css/css-backgrounds/reference/background-size-041-ref.html", + "==" + ] + ], + {} + ] + ], + "background-size-043.html": [ + "e641926ef64d9102fd8d7f7e0284104c4faf193d", + [ + null, [ - null, [ - [ - "/css/CSS2/visudet/replaced-elements-width-40-ref.html", - "==" - ] - ], - {} - ] + "/css/css-backgrounds/reference/background-size-043-ref.html", + "==" + ] + ], + {} ] - }, - "visufx": { - "clip-001.xht": [ - "0c1b9a08e06c39ff07430f2e4faed817e71c0182", + ], + "background-size-044.html": [ + "67f032c34519901540fd4442b4111f7b7dcb1806", + [ + null, [ - null, [ - [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "clip-004.xht": [ - "ac9d3cc5a0bc33ed66f58795a9225f3985f6b0c7", + "/css/css-backgrounds/reference/background-size-043-ref.html", + "==" + ] + ], + {} + ] + ], + "background-size-contain-001.html": [ + "145d5abfcfd3f11ea019e15a818684a849b2460e", + [ + null, [ - null, [ - [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", - "==" - ] - ], - {} - ] - ], - "clip-005.xht": [ - "fbe4b45612fa6aa94d97b81b5aa48656604d4376", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "background-size-contain-002.html": [ + "bfbfdbe20a6096b57031bb1f4414eacfeee1f776", + [ + null, [ - null, [ - [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", - "==" - ] - ], - {} - ] - ], - "clip-006.xht": [ - "7e3e89c8178c0903b8b46ae5c8e1c008769ecf6f", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "background-size-cover-001.html": [ + "f986680640a94b8c6e50980a3de2a1bc57bcdf01", + [ + null, [ - null, [ - [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", - "==" - ] - ], - {} - ] - ], - "clip-007.xht": [ - "e3f7f92206397e050a252c1c16162c177ac7b964", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "background-size-cover-002.html": [ + "6328af2ba20745f2926dc7e6778b61fef7255a46", + [ + null, [ - null, [ - [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", - "==" - ] - ], - {} - ] - ], - "clip-008.xht": [ - "a6b88263bc9ec68cf6564831f5231af6c1c6f038", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "background-size-cover-003.html": [ + "83287ee2cf43df5fabc1b899adc4240a8e9f40e8", + [ + null, [ - null, [ + "/css/css-backgrounds/background-size-cover-003-ref.html", + "==" + ] + ], + { + "fuzzy": [ [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", - "==" + null, + [ + [ + 0, + 255 + ], + [ + 0, + 1 + ] + ] ] - ], - {} - ] - ], - "clip-016.xht": [ - "d53a95f5388b9cb1fe3064d40063eb6c4532e967", + ] + } + ] + ], + "background-size-one-value-1x1-image.html": [ + "5caf2d49566331c496a71c6c6e00342a5522ea6f", + [ + null, [ - null, [ - [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", - "==" - ] - ], - {} - ] - ], - "clip-017.xht": [ - "4b390046b3917c54523b6765045652dc78c7971c", + "/css/css-backgrounds/reference/background-size-one-value-1x1-image-ref.html", + "==" + ] + ], + {} + ] + ], + "background-size-percentage-root.html": [ + "896ce85336ed35daa4b80dc43c7d968966cda810", + [ + null, [ - null, [ - [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", - "==" - ] - ], - {} - ] - ], - "clip-018.xht": [ - "9f9b379eb2dc9a1f55ede39777b6900854366511", + "/css/css-backgrounds/background-size-percentage-root-ref.html", + "==" + ] + ], + {} + ] + ], + "background-size-with-negative-value.html": [ + "a9d57f86d604a9b01e9ace6d7fce0f8a34cdbc5d", + [ + null, [ - null, [ - [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", - "==" - ] - ], - {} - ] - ], - "clip-019.xht": [ - "2aad6d08b5b7d74ba23d9924712b42aa43331e42", + "/css/css-backgrounds/reference/background-size-002-ref.html", + "==" + ] + ], + {} + ] + ], + "bg-color-with-gradient.html": [ + "be08fa5800b80cfbe84925722bc323cc9a4ce366", + [ + null, [ - null, [ + "/css/css-backgrounds/bg-color-with-gradient-ref.html", + "==" + ] + ], + { + "fuzzy": [ [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", - "==" + null, + [ + [ + 0, + 3 + ], + [ + 0, + 6909 + ] + ] ] - ], - {} - ] - ], - "clip-020.xht": [ - "d7fc41eb1c7bddc9b67c69253fb0e61ca078c04f", + ] + } + ] + ], + "border-bottom-left-radius-001.xht": [ + "25bfd041d87720402224d93f6666dca4f9fbaa90", + [ + null, [ - null, [ - [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", - "==" - ] - ], - {} - ] - ], - "clip-028.xht": [ - "518400140eb91d6af01177b37356f0b1553b05da", + "/css/css-backgrounds/border-radius-001-ref.xht", + "==" + ] + ], + {} + ] + ], + "border-bottom-left-radius-004.xht": [ + "ed444bfabe9c87277ca01f98c429d19467d9cc20", + [ + null, [ - null, [ + "/css/css-backgrounds/border-bottom-left-radius-004-ref.xht", + "==" + ] + ], + { + "fuzzy": [ [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", - "==" + null, + [ + [ + 1, + 1 + ], + [ + 0, + 5 + ] + ] ] - ], - {} - ] - ], - "clip-029.xht": [ - "4bd852ceffad356c46f7d8d5a11d7c7d7f050f33", + ] + } + ] + ], + "border-bottom-left-radius-005.xht": [ + "bceaa3d9e9c7b6e2d567813f980333d9a2d1f3dd", + [ + null, [ - null, [ + "/css/css-backgrounds/border-bottom-left-radius-005-ref.xht", + "==" + ] + ], + { + "fuzzy": [ [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", - "==" + null, + [ + [ + 0, + 1 + ], + [ + 0, + 1 + ] + ] ] - ], - {} - ] - ], - "clip-030.xht": [ - "413b344cca9c9d5166d31808df5df1a21ca12965", + ] + } + ] + ], + "border-bottom-left-radius-010.xht": [ + "9a4c0ecf76a15b259f85c2f73ed39e86536fe0f7", + [ + null, [ - null, [ - [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", - "==" - ] - ], - {} - ] - ], - "clip-031.xht": [ - "4d49739226e6d44d9eeba7c5289820fc6688036d", + "/css/css-backgrounds/border-radius-001-ref.xht", + "==" + ] + ], + {} + ] + ], + "border-bottom-left-radius-011.xht": [ + "3f01535efe25707940944cd411e5413853728ab4", + [ + null, [ - null, [ - [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", - "==" - ] - ], - {} - ] - ], - "clip-032.xht": [ - "22677f35cbc3087bdd4369454af3aa3390c36e98", + "/css/css-backgrounds/border-radius-001-ref.xht", + "==" + ] + ], + {} + ] + ], + "border-bottom-left-radius-014.xht": [ + "dd2ba266319ecb3fd840f64f5bf0e48af61b186a", + [ + null, [ - null, [ - [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", - "==" - ] - ], - {} - ] - ], - "clip-040.xht": [ - "038bf639b8651e3f5201f58802561c229a0c04ae", + "/css/css-backgrounds/border-radius-001-ref.xht", + "==" + ] + ], + {} + ] + ], + "border-bottom-right-radius-001.xht": [ + "66ec3ed117d26bcff2df04b0f09a05ef3a5ef49f", + [ + null, [ - null, [ - [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", - "==" - ] - ], - {} - ] - ], - "clip-041.xht": [ - "61a9d0fd9bdc6c85146921efae2694fed07b18fd", + "/css/css-backgrounds/border-radius-001-ref.xht", + "==" + ] + ], + {} + ] + ], + "border-bottom-right-radius-004.xht": [ + "2af4de7bfee9068db7fc664c4a8f41704296e4ac", + [ + null, [ - null, [ + "/css/css-backgrounds/border-bottom-right-radius-004-ref.xht", + "==" + ] + ], + { + "fuzzy": [ [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", - "==" + null, + [ + [ + 0, + 73 + ], + [ + 0, + 127 + ] + ] ] - ], - {} - ] - ], - "clip-042.xht": [ - "46b70fadca70c5aa151464526eb0108810b83d92", + ] + } + ] + ], + "border-bottom-right-radius-005.xht": [ + "f53ae0d92f1f6ac26e41a85579845aff8cb43ab7", + [ + null, [ - null, [ + "/css/css-backgrounds/border-bottom-right-radius-005-ref.xht", + "==" + ] + ], + { + "fuzzy": [ [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", - "==" + null, + [ + [ + 0, + 36 + ], + [ + 0, + 131 + ] + ] ] - ], - {} - ] - ], - "clip-043.xht": [ - "8d6c46b32c361a8b2d0b0224dca218ee18574fde", + ] + } + ] + ], + "border-bottom-right-radius-010.xht": [ + "7d7261ecedcb3bbbeda4ee602c221d826c9dc57e", + [ + null, [ - null, [ - [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", - "==" - ] - ], - {} - ] - ], - "clip-044.xht": [ - "3d871b72e0435322f93b9fa636c6b61ec5e5a644", + "/css/css-backgrounds/border-radius-001-ref.xht", + "==" + ] + ], + {} + ] + ], + "border-bottom-right-radius-011.xht": [ + "9ad97820eca2341c6eddce929baca4f17c983302", + [ + null, [ - null, [ - [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", - "==" - ] - ], - {} - ] - ], - "clip-052.xht": [ - "351aa81afcc9c5f16061bf6a3166466f07b9281f", + "/css/css-backgrounds/border-radius-001-ref.xht", + "==" + ] + ], + {} + ] + ], + "border-bottom-right-radius-014.xht": [ + "0a2eec7440b2adba2fc31d132488c5a00eaff563", + [ + null, [ - null, [ - [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", - "==" - ] - ], - {} - ] - ], - "clip-053.xht": [ - "e8301d10d849600e70e25a2f9c2b19c036a7ffcb", + "/css/css-backgrounds/border-radius-001-ref.xht", + "==" + ] + ], + {} + ] + ], + "border-bottom-width-medium.html": [ + "ab0d9b8affb9cedc06eec7a759ab9f4aceac2da9", + [ + null, [ - null, [ - [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", - "==" - ] - ], - {} - ] - ], - "clip-054.xht": [ - "f16375a99ecc666896d369fb320c0159f59f815d", + "/css/css-backgrounds/reference/border-top-width-3px-ref.html", + "==" + ] + ], + {} + ] + ], + "border-bottom-width-thick.html": [ + "91f2c4884c0385aa517b1d4ba13fd03e57de0a85", + [ + null, [ - null, [ - [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", - "==" - ] - ], - {} - ] - ], - "clip-055.xht": [ - "c42933e081a4f17d22053db8844fd3f010a35b75", + "/css/css-backgrounds/reference/border-top-width-5px-ref.html", + "==" + ] + ], + {} + ] + ], + "border-bottom-width-thin.html": [ + "bbc82f4f14b01abc45fbe9d5d2d2088df4c54c50", + [ + null, [ - null, [ - [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", - "==" - ] - ], - {} - ] - ], - "clip-056.xht": [ - "64ff07ab23c5ab0c3119610eca7bb72c2a11ce53", + "/css/css-backgrounds/reference/border-top-width-1px-ref.html", + "==" + ] + ], + {} + ] + ], + "border-image-002.html": [ + "ac76eb2a5ef7b5fa13e5a89b8bf302b8cd08a7c8", + [ + null, [ - null, [ - [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", - "==" - ] - ], - {} - ] - ], - "clip-064.xht": [ - "1bab7064fea54736c061c9efd422febd288da679", + "/css/css-backgrounds/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "border-image-003.html": [ + "6d4ee0fde93d57bfb0640e646b5ebc55cb441f1b", + [ + null, [ - null, [ - [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", - "==" - ] - ], - {} - ] - ], - "clip-065.xht": [ - "970bd3582d03db9a70736a232cb5f4bcf5183cf9", + "/css/css-backgrounds/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "border-image-004.html": [ + "844d98bb3cd84e99c5c56d9a0b79352412609c2b", + [ + null, [ - null, [ - [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", - "==" - ] - ], - {} - ] - ], - "clip-066.xht": [ - "9d44330cc4ad1fa82ba759eb8e0b828ac6aa6e00", + "/css/css-backgrounds/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "border-image-006.html": [ + "e3782f2ecd1a48964491b16c404b23b2c4d01e7f", + [ + null, [ - null, [ - [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", - "==" - ] - ], - {} - ] - ], - "clip-067.xht": [ - "817f3b4a67f4a1b525b21f2429a9296cc5438459", + "/css/css-backgrounds/reference/border-image-006-ref.html", + "==" + ] + ], + {} + ] + ], + "border-image-007.html": [ + "41ac9dac37fb5b11c09be99b1a325f9190e00f8d", + [ + null, [ - null, [ - [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", - "==" - ] - ], - {} - ] - ], - "clip-068.xht": [ - "55dbe85dbd252e8e28e0bbc5d0c82f5890249604", + "/css/css-backgrounds/reference/border-image-007-ref.html", + "==" + ] + ], + {} + ] + ], + "border-image-011.html": [ + "357845bbf719a6eb310ce7f31b58126bbcd55172", + [ + null, [ - null, [ - [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", - "==" - ] - ], - {} - ] - ], - "clip-076.xht": [ - "176df20f9b66032d09be5be70df1cc38ff70e16d", + "/css/css-backgrounds/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "border-image-012.html": [ + "16a6e9061dfd0371bcf8675d8599f1221bf4f2cb", + [ + null, [ - null, [ - [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", - "==" - ] - ], - {} - ] - ], - "clip-077.xht": [ - "a85621e1d48f005e9223cd69e0f268e45f41da8a", + "/css/css-backgrounds/reference/border-image-012-ref.html", + "==" + ] + ], + {} + ] + ], + "border-image-013.html": [ + "c7cc7d54a39e5aeb9fbf3e0eca77e94786abfbc6", + [ + null, [ - null, [ - [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", - "==" - ] - ], - {} - ] - ], - "clip-078.xht": [ - "e21f74a8a21d6a66e4fcad7680a3e53d13c0c5c8", + "/css/css-backgrounds/reference/border-image-013-ref.html", + "==" + ] + ], + {} + ] + ], + "border-image-017.xht": [ + "33492ca78b31e3078c9c63616340672aed356478", + [ + null, [ - null, [ - [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", - "==" - ] - ], - {} - ] - ], - "clip-079.xht": [ - "866f0b87a7488fc995c7a3a48f20534a8c3743a1", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "border-image-018.xht": [ + "9ce6c82d564b3c68dc7cb0dbf738ad0b6321a5da", + [ + null, [ - null, [ - [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", - "==" - ] - ], - {} - ] - ], - "clip-080.xht": [ - "3685000a497472fec32aa1c92054211708ec916c", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "border-image-019.xht": [ + "d07db369ab5734a353c905800f9363f3aeb96152", + [ + null, [ - null, [ - [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", - "==" - ] - ], - {} - ] - ], - "clip-088.xht": [ - "c5dd51ecffceae60abc941c7e0a311eb38e7e842", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "border-image-020.xht": [ + "c4fc9ace4aae08b502047db062bf61099d224ee4", + [ + null, [ - null, [ - [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", - "==" - ] - ], - {} - ] - ], - "clip-089.xht": [ - "5def0b9a3c5a166dffc91cd44a434442204164dd", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "border-image-calc.html": [ + "c8bc4c7c9a092b57a5119ebf02f9972b9386b965", + [ + null, [ - null, [ - [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", - "==" - ] - ], - {} - ] - ], - "clip-090.xht": [ - "c9b8b44402a5465b8a04e8854f3e420fb24672de", + "/css/css-backgrounds/border-image-calc-ref.html", + "==" + ] + ], + {} + ] + ], + "border-image-displayed-with-transparent-border-color.html": [ + "859dc2f5f55000c1f24580210bb5bc1c414f03ef", + [ + null, [ - null, [ - [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", - "==" - ] - ], - {} - ] - ], - "clip-091.xht": [ - "afb687df52ec37a22c12f5b7a45567da2efb323a", + "/css/css-backgrounds/border-image-displayed-with-transparent-border-color-ref.html", + "==" + ] + ], + {} + ] + ], + "border-image-image-type-001.htm": [ + "2c8d5941a4dbc6166fabd5d16c0f2f5f6128a129", + [ + null, [ - null, [ + "/css/css-backgrounds/reference/border-image-image-type-001-ref.html", + "==" + ] + ], + { + "fuzzy": [ [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", - "==" + null, + [ + [ + 0, + 64 + ], + [ + 0, + 400 + ] + ] ] - ], - {} - ] - ], - "clip-092.xht": [ - "10377c0ded4cb3b163c3bb7ff6dcc0de526ee9d0", + ] + } + ] + ], + "border-image-image-type-002.htm": [ + "f365793e3f4c40fea9a51be8fd247855c77f76cc", + [ + null, [ - null, [ - [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", - "==" - ] - ], - {} - ] - ], - "clip-097.xht": [ - "ac547dafb7cbfef66580f3edf91061fd10fad708", + "/css/css-backgrounds/reference/border-image-image-type-002-ref.html", + "==" + ] + ], + {} + ] + ], + "border-image-image-type-003.htm": [ + "b5a7543fcb845f6b54e22f37efdff55ed09d3ef4", + [ + null, [ - null, [ + "/css/css-backgrounds/reference/border-image-image-type-003-ref.html", + "==" + ] + ], + { + "fuzzy": [ [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", - "==" + null, + [ + [ + 0, + 3 + ], + [ + 0, + 10800 + ] + ] ] - ], - {} - ] - ], - "clip-098.xht": [ - "58fab32a23cbba16b0cf56da8851ebe5b17928ba", + ] + } + ] + ], + "border-image-image-type-004.htm": [ + "222267ca636bac9f3bedd8c151252f4455e0e241", + [ + null, [ - null, [ + "/css/css-backgrounds/reference/border-image-image-type-004-ref.html", + "==" + ] + ], + { + "fuzzy": [ [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", - "==" + null, + [ + [ + 0, + 1 + ], + [ + 0, + 100 + ] + ] ] - ], - {} - ] - ], - "clip-099.xht": [ - "5c0e77bc288ef153230dea0dfbee3c428eb81e9c", + ] + } + ] + ], + "border-image-image-type-005.htm": [ + "cb2668d7dd609be32c8a68d438bd84ee3b3b111a", + [ + null, [ - null, [ + "/css/css-backgrounds/reference/border-image-image-type-004-ref.html", + "==" + ] + ], + { + "fuzzy": [ [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", - "==" - ] - ], - {} - ] - ], - "clip-102.xht": [ - "4cb0dbe7a6a20ab51a718d5f24505b087cfbef7d", - [ - null, - [ - [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", - "==" - ] - ], - {} - ] - ], - "overflow-applies-to-001.xht": [ - "e63bb0ee0cb6e228c24f19643d20c9226dde6b37", - [ - null, - [ - [ - "/css/CSS2/visufx/overflow-applies-to-001-ref.xht", - "==" - ] - ], - {} - ] - ], - "overflow-propagation-001a.html": [ - "77107d8faf50f6274e6b98ae11b590bf5c09f23f", - [ - null, - [ - [ - "/css/CSS2/visufx/support/overflow-propagation-001-ref.html", - "==" - ] - ], - {} - ] - ], - "overflow-propagation-001b.html": [ - "c72994b8c44bb006c1b973750e782cd9801a08bb", - [ - null, - [ - [ - "/css/CSS2/visufx/support/overflow-propagation-001-ref.html", - "==" - ] - ], - {} - ] - ], - "overflow-propagation-001c.html": [ - "6956ff4143e376656d152f5c96316a1ac1da3387", - [ - null, - [ - [ - "/css/CSS2/visufx/support/overflow-propagation-001-ref.html", - "==" - ] - ], - {} - ] - ], - "visibility-005.xht": [ - "90e4d1868dc5e5459defb0b4b211c21054d4d1bc", - [ - null, - [ - [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "visibility-block-001.xht": [ - "945d85deaf141892b003b23a91a27d0547b94e7d", - [ - null, - [ - [ - "/css/CSS2/reference/no-red-on-blank-page-ref.xht", - "==" - ] - ], - {} - ] - ] - }, - "visuren": { - "anonymous-boxes-001a.xht": [ - "4a578e19509ed1edca185f13f35eef234f3a88ab", - [ - null, - [ - [ - "/css/CSS2/visuren/anonymous-boxes-001a-ref.xht", - "==" - ] - ], - {} - ] - ], - "anonymous-boxes-001b.xht": [ - "087a030ff4147e216156e8a899a4a3df7525f942", - [ - null, - [ - [ - "/css/CSS2/visuren/anonymous-boxes-001b-ref.xht", - "==" - ] - ], - {} - ] - ], - "box-offsets-rel-pos-002.xht": [ - "7e17de23d19dd37a20c9c1260f48d217cf4bcf88", - [ - null, - [ - [ - "/css/CSS2/visuren/box-offsets-rel-pos-002-ref.xht", - "==" - ] - ], - {} - ] - ], - "clear-applies-to-016.xht": [ - "a72b5d2924bd1efc002fe1ae809647ad464d8420", - [ - null, - [ - [ - "/css/CSS2/floats-clear/clear-applies-to-009-ref.xht", - "==" - ] - ], - {} - ] - ], - "clear-applies-to-017.xht": [ - "c421afce02733b4a66e5d0da962ca9b94f93392e", - [ - null, - [ - [ - "/css/CSS2/floats-clear/clear-applies-to-009-ref.xht", - "==" - ] - ], - {} - ] - ], - "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": [ - "1912d709389da811cb0d98f02a96ede5fd13eef2", - [ - null, - [ - [ - "/css/CSS2/visuren/fixed-pos-stacking-001-ref.xht", - "==" - ] - ], - {} - ] - ], - "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", - [ - null, - [ - [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "inherit-static-offset-002.xht": [ - "1860e76ebc7bde6a61e40f4e62194c4dd3da8fe1", - [ - null, - [ - [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "inherit-static-offset-003.xht": [ - "32533df5e6c177a6e12704388d41a0d4eb8f5c84", - [ - null, - [ - [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "inline-formatting-context-001.xht": [ - "e6917a26b54581e432fb25a07b378fc90054cb0e", - [ - null, - [ - [ - "/css/CSS2/visuren/inline-formatting-context-001-ref.xht", - "==" - ] - ], - {} - ] - ], - "left-offset-position-fixed-001.xht": [ - "646552c3081199e0e68903368a858c8a7197335a", - [ - null, - [ - [ - "/css/CSS2/visuren/left-offset-position-fixed-001-ref.xht", - "==" - ] - ], - {} - ] - ], - "percent-height-1.html": [ - "91c1594b2775dffcbd1fa8224c19b3ee8e98b7ab", - [ - null, - [ - [ - "/css/CSS2/visuren/percent-height-1-ref.html", - "==" - ] - ], - {} - ] - ], - "position-absolute-008a.xht": [ - "bf8cb26127035584ff6532f5c5c0db0418c21f71", - [ - null, - [ - [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "position-absolute-percentage-inherit-001.xht": [ - "3b9feaf25e66459c200ffceb6f6c61de08484403", - [ - null, - [ - [ - "/css/CSS2/visuren/position-absolute-percentage-inherit-001-ref.xht", - "==" - ] - ], - {} - ] - ], - "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": [ - "e232db90a0e2e0225458bc99eb8641bdd1b6e6a7", - [ - null, - [ - [ - "/css/CSS2/visuren/right-offset-position-fixed-001-ref.xht", - "==" - ] - ], - {} - ] - ], - "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": [ - "bd2d893b50f383bf58ef9e0c04a8a3ecda0ddc93", - [ - null, - [ - [ - "/css/CSS2/visuren/top-114-ref.xht", - "==" - ] - ], - {} - ] - ], - "top-115.xht": [ - "471b909d26e20fccd3507f1b500e5d9abd52c413", - [ - null, - [ - [ - "/css/CSS2/visuren/top-115-ref.xht", - "==" - ] - ], - {} - ] - ], - "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": { - "stack-floats-001.xht": [ - "739a6c3b498687fe1afb82c13655ca562761daba", - [ - null, - [ - [ - "/css/CSS2/zindex/stack-floats-001-ref.xht", - "==" - ] - ], - {} - ] - ], - "stack-floats-002.xht": [ - "ce7f271495100a3d8a9817ceba2496864b982da9", - [ - null, - [ - [ - "/css/CSS2/zindex/stack-floats-001-ref.xht", - "==" - ] - ], - {} - ] - ], - "stack-floats-003.xht": [ - "76f5dba9bd3cadc3ebc4340abb4b31584717e657", - [ - null, - [ - [ - "/css/CSS2/zindex/stack-floats-001-ref.xht", - "==" - ] - ], - {} - ] - ], - "stack-floats-004.xht": [ - "6ea4390a524a03a0b7e052aa41bd5f34d3f8f375", - [ - null, - [ - [ - "/css/CSS2/zindex/stack-floats-001-ref.xht", - "==" - ] - ], - {} - ] - ], - "z-index-001.xht": [ - "3e5093744aa65b6124e0977a73c0fd0498df281d", - [ - null, - [ - [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "z-index-002.xht": [ - "7173f03979d72d25cb615aa770e804d0c755cae3", - [ - null, - [ - [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "z-index-003.xht": [ - "f3c56c914c5a1045aaf331a2550bc8ddd09a851c", - [ - null, - [ - [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "z-index-004.xht": [ - "324b3c8ecf3f543e6cbb4c573607e70c2f259696", - [ - null, - [ - [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "z-index-005.xht": [ - "9837075e0e207d5267c821012aa80182c3155b2d", - [ - null, - [ - [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "z-index-006.xht": [ - "0fb1bccbef2f99cd77612ee4e2c745d8c45e6bd4", - [ - null, - [ - [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "z-index-007.xht": [ - "b32ab88a10c824ef400d1c22755fc88713d1ca8c", - [ - null, - [ - [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "z-index-008.xht": [ - "acda9534215cc570bb9dcfe77c37497f945dfd4e", - [ - null, - [ - [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "z-index-009.xht": [ - "785f2d3e3df023038b6e450b1c483d072823946a", - [ - null, - [ - [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "z-index-010.xht": [ - "a9e3bd2c3b635cc6bc80569358af72fe3cecec4f", - [ - null, - [ - [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "z-index-011.xht": [ - "5e97edc52c36c40c04372160550771dbef6f4474", - [ - null, - [ - [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "z-index-012.xht": [ - "3a8ff84e14974be12e9f902f4409a394717875a1", - [ - null, - [ - [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "z-index-013.xht": [ - "63e8ef1f9bbf9ffeef44a41198469a78d5d5b957", - [ - null, - [ - [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "z-index-014.xht": [ - "c8b80a52e05f7a357b0915c30d8bd69f7e124f6c", - [ - null, - [ - [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "z-index-015.xht": [ - "e02ff500193712030b7667554607a21a6073440e", - [ - null, - [ - [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "z-index-016.xht": [ - "1ca51726af22b00da1e4e2f5c9f17475ab43cc2a", - [ - null, - [ - [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "z-index-017.xht": [ - "245204e80f49de608d1caaf7397d4b556447902d", - [ - null, - [ - [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "z-index-018.xht": [ - "f090267626bf82878342fa42c444b0839110a87d", - [ - null, - [ - [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "z-index-019.xht": [ - "51678a7e0f238157871275e53ee94930ce2b1759", - [ - null, - [ - [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "z-index-abspos-001.xht": [ - "63a44d15a7dce6e1a2df6124ff1064d0a68392ab", - [ - null, - [ - [ - "/css/CSS2/zindex/z-index-abspos-001-ref.xht", - "==" - ] - ], - {} - ] - ], - "z-index-abspos-002.xht": [ - "2c5ab971bfa4821854a63f0846ff07f95feb7d38", - [ - null, - [ - [ - "/css/CSS2/zindex/z-index-abspos-001-ref.xht", - "==" - ] - ], - {} - ] - ], - "z-index-abspos-003.xht": [ - "3e46ee2ca8ea7cf64e9a7a2caed1058407c16a84", - [ - null, - [ - [ - "/css/CSS2/zindex/z-index-abspos-001-ref.xht", - "==" - ] - ], - {} - ] - ], - "z-index-abspos-004.xht": [ - "b2cc25905aae57a7aac575b5ec71985f2d97bd0d", - [ - null, - [ - [ - "/css/CSS2/zindex/z-index-abspos-001-ref.xht", - "==" - ] - ], - {} - ] - ], - "z-index-abspos-005.xht": [ - "c93feabd986aad5df8c2bccd9db5b9f4b6fd15b9", - [ - null, - [ - [ - "/css/CSS2/zindex/z-index-abspos-001-ref.xht", - "==" - ] - ], - {} - ] - ], - "z-index-abspos-007.xht": [ - "f9dcdc397c33cfa498fcd8a5c83c718a3a616622", - [ - null, - [ - [ - "/css/CSS2/zindex/z-index-abspos-001-ref.xht", - "==" - ] - ], - {} - ] - ], - "z-index-dynamic-001.xht": [ - "9c4ca593e77904ad831819ff211354ad8f6609d6", - [ - null, - [ - [ - "/css/CSS2/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ] - }, - "zorder": { - "z-index-020.xht": [ - "aaf7ce2ab4cd6a81105490f369be2a780a62e307", - [ - null, - [ - [ - "/css/CSS2/zorder/z-index-020-ref.xht", - "==" - ], - [ - "/css/CSS2/zorder/z-index-020-ref2.xht", - "==" + null, + [ + [ + 0, + 1 + ], + [ + 0, + 100 + ] + ] ] - ], - {} - ] + ] + } ] - } - }, - "WOFF2": { - "blocks-extraneous-data-001.xht": [ - "9897c475d5c4505724350440bf4c51dc3bf27a71", + ], + "border-image-outset-003.html": [ + "27bc02682ca8d27a4f48997c3a8150438b33b86a", [ null, [ [ - "/css/WOFF2/blocks-extraneous-data-001-ref.xht", + "/css/css-backgrounds/border-image-outset-003-ref.html", "==" ] ], {} ] ], - "blocks-extraneous-data-002.xht": [ - "63a3c0b3b685e1414a138e9a5ade867757286a07", + "border-image-repeat-002.htm": [ + "a0c081863d42cd4c0ea24996e23ace8537c7a133", [ null, [ [ - "/css/WOFF2/blocks-extraneous-data-002-ref.xht", + "/css/css-backgrounds/reference/border-image-repeat-002-ref.html", "==" ] ], {} ] ], - "blocks-extraneous-data-003.xht": [ - "79ae40b029b996c708e434a9e55d6d5e45b061ec", + "border-image-repeat-004.htm": [ + "40194506940c38f2669ae1c5e8fd43b74b2313ce", [ null, [ [ - "/css/WOFF2/blocks-extraneous-data-003-ref.xht", + "/css/css-backgrounds/reference/border-image-repeat-004-ref.html", "==" ] ], {} ] ], - "blocks-extraneous-data-004.xht": [ - "e473f4c28c5a54b2b13df007b482571296aca3b0", + "border-image-repeat-005.html": [ + "f5078fc322c936d65415a4bfec5d022357cb714c", [ null, [ [ - "/css/WOFF2/blocks-extraneous-data-004-ref.xht", + "/css/css-backgrounds/reference/border-image-repeat-005-ref.html", "==" ] ], {} ] ], - "blocks-extraneous-data-005.xht": [ - "3aee0900ad7c72b99db2760cb66df1df0ae943d9", + "border-image-repeat-1.html": [ + "6e2a43b89d6d9beccb5d8f4ae5ce9a9ebef576da", [ null, [ [ - "/css/WOFF2/blocks-extraneous-data-005-ref.xht", + "/css/css-backgrounds/border-image-repeat-1-ref.html", "==" ] ], {} ] ], - "blocks-extraneous-data-006.xht": [ - "00b5cc97b9417631bf26fca0bca1f46b73f940a9", + "border-image-repeat-repeat-001.html": [ + "778bc0e4b5c6988359a4f3a40391d8de2b4d5e19", [ null, [ [ - "/css/WOFF2/blocks-extraneous-data-006-ref.xht", + "/css/css-backgrounds/reference/border-image-repeat-repeat-001-ref.html", "==" ] ], {} ] ], - "blocks-extraneous-data-007.xht": [ - "e125ba1a74ae032a402d8818aaa39ebeeae630bf", + "border-image-repeat-round-003.html": [ + "034a5ed98a05a585108847d7bf6be7572df22f54", [ null, [ [ - "/css/WOFF2/blocks-extraneous-data-007-ref.xht", + "/css/css-backgrounds/reference/border-image-repeat-round-003-ref.html", "==" ] ], {} ] ], - "blocks-extraneous-data-008.xht": [ - "ca201352ad8e831e6c738045e799b1af56c97da5", + "border-image-repeat-round-1.html": [ + "c4dc17cf7df08fde88cc19114a7792dc9a7b5674", [ null, [ [ - "/css/WOFF2/blocks-extraneous-data-008-ref.xht", + "/css/css-backgrounds/border-image-repeat-round-1-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 10 + ], + [ + 0, + 596 + ] + ] + ] + ] + } ] ], - "blocks-overlap-001.xht": [ - "c9d22c90fec25f2ac5b1e43068bcbec48ce1affe", + "border-image-repeat-round-2.html": [ + "89f8dc0561542bf4f92881c178a3806a7e0436fb", [ null, [ [ - "/css/WOFF2/blocks-overlap-001-ref.xht", + "/css/css-backgrounds/border-image-repeat-round-2-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 55 + ], + [ + 0, + 380 + ] + ] + ] + ] + } ] ], - "blocks-overlap-002.xht": [ - "f1144ac17a2a769200ae4a0602da2a7d3501fe69", + "border-image-repeat-round-stretch-001.html": [ + "fa681b22ed3beb78fd184a2087a834e6baf46e89", [ null, [ [ - "/css/WOFF2/blocks-overlap-002-ref.xht", + "/css/css-backgrounds/reference/border-image-repeat-round-stretch-001-ref.html", "==" ] ], {} ] ], - "blocks-overlap-003.xht": [ - "72dca32170ab1c8d45ba976e6970d53f7b56bb36", + "border-image-repeat-round.html": [ + "cf87e8d16306ed34a11b7e89f7d88fe1f1212c12", [ null, [ [ - "/css/WOFF2/blocks-overlap-003-ref.xht", + "/css/css-backgrounds/reference/border-image-repeat-round-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 111 + ], + [ + 0, + 3435 + ] + ] + ] + ] + } ] ], - "datatypes-alt-255uint16-001.xht": [ - "33a67fd16e6e6bfe7b15f940a582576e5a24985e", + "border-image-repeat-space-011.html": [ + "bb7a923c0dd963123d30720b580d918daf576ff1", [ null, [ [ - "/css/WOFF2/datatypes-alt-255uint16-001-ref.xht", + "/css/css-backgrounds/reference/border-image-repeat-space-011-ref.html", "==" ] ], {} ] ], - "datatypes-invalid-base128-001.xht": [ - "338162da2fc8818959f6902944f4aa4462d47967", + "border-image-repeat-space-1.html": [ + "b24883f7bd6d99ba9cb4ed3572ae58201f99f3a8", [ null, [ [ - "/css/WOFF2/datatypes-invalid-base128-001-ref.xht", + "/css/css-backgrounds/border-image-repeat-space-1-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 27 + ], + [ + 0, + 800 + ] + ] + ] + ] + } ] ], - "datatypes-invalid-base128-002.xht": [ - "b18fdb945282e54f127ad4307a34a31e8b2744c8", + "border-image-repeat-space-10.html": [ + "73423ef27031c4863b4b34faa3fed2ef33554a3d", [ null, [ [ - "/css/WOFF2/datatypes-invalid-base128-002-ref.xht", + "/css/css-backgrounds/border-image-repeat-space-10-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 163 + ], + [ + 0, + 2400 + ] + ] + ] + ] + } ] ], - "datatypes-invalid-base128-003.xht": [ - "34d58f1cac48634a9d5810dfa63b3be91ffa8085", + "border-image-repeat-space-2.html": [ + "b38bc84734284b4a277d70a2d493f366c821786a", [ null, [ [ - "/css/WOFF2/datatypes-invalid-base128-003-ref.xht", + "/css/css-backgrounds/border-image-repeat-space-2-ref.html", "==" ] ], {} ] ], - "directory-knowntags-001.xht": [ - "d06ea2d3f45c6d32d1405feeef10c2bbf288cd07", + "border-image-repeat-space-3.html": [ + "60916b2a5c1460aeaedb3091ebc247e6ca97f829", [ null, [ [ - "/css/WOFF2/directory-knowntags-001-ref.xht", + "/css/css-backgrounds/border-image-repeat-space-3-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 27 + ], + [ + 0, + 1600 + ] + ] + ] + ] + } ] ], - "directory-mismatched-tables-001.xht": [ - "d3891b92833ea44d2d957d55e0f5cda8b7890726", + "border-image-repeat-space-4-ref-1.html": [ + "ff7700e9af158ac7b8b281bc8189adc69018b24d", [ null, [ [ - "/css/WOFF2/directory-mismatched-tables-001-ref.xht", + "/css/css-backgrounds/border-image-repeat-space-4-ref-2.html", "==" ] ], {} ] ], - "header-length-001.xht": [ - "7ac89559f81331468ffd7c3bd3290a06c9bfe46e", + "border-image-repeat-space-4.html": [ + "d82969d71c40567f0280283b760f0d71e8097934", [ null, [ [ - "/css/WOFF2/header-length-001-ref.xht", + "/css/css-backgrounds/border-image-repeat-space-4-ref-1.html", "==" ] ], {} ] ], - "header-length-002.xht": [ - "100514a1aed3d4d24018ed505fc4cc9687499db8", + "border-image-repeat-space-5-ref-1.html": [ + "d52cab5bbe96bab47145abdf3ba7dbbeede38ca4", [ null, [ [ - "/css/WOFF2/header-length-002-ref.xht", + "/css/css-backgrounds/border-image-repeat-space-5-ref-2.html", "==" ] ], {} ] ], - "header-numTables-001.xht": [ - "b024f83d3f2b885cd738dc1d588b40007d25d577", + "border-image-repeat-space-5.html": [ + "db21548af867c06109f04f1e6aeaa5c256beeb02", [ null, [ [ - "/css/WOFF2/header-numTables-001-ref.xht", + "/css/css-backgrounds/border-image-repeat-space-5-ref-1.html", "==" ] ], {} ] ], - "header-reserved-001.xht": [ - "15b540418d43a1a13aea35381466f6371b9636ea", + "border-image-repeat-space-6.html": [ + "045cde139d7cc24348ac2873f2c8e9dd1980f62a", [ null, [ [ - "/css/WOFF2/header-reserved-001-ref.xht", + "/css/css-backgrounds/border-image-repeat-space-6-ref.html", "==" ] ], {} ] ], - "header-signature-001.xht": [ - "5ae39feb03e1c0c79b971791580cd2fd8416b5da", + "border-image-repeat-space-7.html": [ + "033a7b43bed1b85fc9fa72b53dc0f9710edd6202", [ null, [ [ - "/css/WOFF2/header-signature-001-ref.xht", + "/css/css-backgrounds/border-image-repeat-space-7-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 53 + ], + [ + 0, + 2320 + ] + ] + ] + ] + } ] ], - "header-totalsfntsize-001.xht": [ - "769343b6617bef38adf98a86e40f996efae14683", + "border-image-repeat-space-8.html": [ + "0edfba9e9273c533ebac6762a365c8a83b7de3a9", [ null, [ [ - "/css/WOFF2/header-totalsfntsize-001-ref.xht", + "/css/css-backgrounds/border-image-repeat-space-8-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 110 + ], + [ + 0, + 10540 + ] + ] + ] + ] + } ] ], - "header-totalsfntsize-002.xht": [ - "7821f073cda0a251d4922df293b904e6a2bd2c29", + "border-image-repeat-space-9.html": [ + "aa43328f5581b5c35c79a2c7c5456cf87fb92007", [ null, [ [ - "/css/WOFF2/header-totalsfntsize-002-ref.xht", + "/css/css-backgrounds/border-image-repeat-space-8-ref.html", "==" ] ], {} ] ], - "metadata-noeffect-001.xht": [ - "d63472b3b4952511c892e7010187c3c0f8aadcd3", + "border-image-repeat-stretch-round-001.html": [ + "8c2963a5aec867d90b20692ce0c0dfbdc41cac56", [ null, [ [ - "/css/WOFF2/metadata-noeffect-001-ref.xht", + "/css/css-backgrounds/reference/border-image-repeat-stretch-round-001-ref.html", "==" ] ], {} ] ], - "metadata-noeffect-002.xht": [ - "a1bedf2e1b1009e6ded661979c2fb4103eb0db53", + "border-image-round-and-stretch.html": [ + "a9b4da706d39ab85617f8a952987d3035e0fc400", [ null, [ [ - "/css/WOFF2/metadata-noeffect-002-ref.xht", + "/css/css-backgrounds/reference/border-image-round-and-stretch-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 163 + ], + [ + 0, + 6375 + ] + ] + ] + ] + } ] ], - "metadatadisplay-authoritative-001.xht": [ - "5a4f64384e352d493fea686d750d9f36bba147b5", + "border-image-shorthand-001.htm": [ + "26fda73b19cfadc0a95305fe222b415f4999bf7a", [ null, [ [ - "/css/WOFF2/metadatadisplay-authoritative-001-ref.xht", + "/css/css-backgrounds/reference/border-image-shorthand-001-ref.html", "==" ] ], {} ] ], - "metadatadisplay-encoding-001.xht": [ - "5a50ae8559a40697353a4c232a48ee6f81d846e8", + "border-image-shorthand-002.htm": [ + "9f47f77a5034fafd08103dd616a7add16a650cc4", [ null, [ [ - "/css/WOFF2/metadatadisplay-encoding-001-ref.xht", + "/css/css-backgrounds/reference/border-image-shorthand-002-ref.html", "==" ] ], {} ] ], - "metadatadisplay-encoding-002.xht": [ - "1cec6e1240c57aedb05e48c70297efc331513164", + "border-image-shorthand-003.htm": [ + "718c3a2b2aaabe004a665fdd880474eb8e550b93", [ null, [ [ - "/css/WOFF2/metadatadisplay-encoding-002-ref.xht", + "/css/css-backgrounds/reference/border-image-shorthand-003-ref.html", "==" ] ], {} ] ], - "metadatadisplay-encoding-003.xht": [ - "ce82fb1559815346ea78f645a624f0d60cc88aad", + "border-image-slice-001.xht": [ + "3861dcfad939f09c6247034373e62548204bec8e", [ null, [ [ - "/css/WOFF2/metadatadisplay-encoding-003-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "metadatadisplay-encoding-004.xht": [ - "a9d206ab1de180ad0ee8d0c14db07c50e03ab856", + "border-image-slice-002.xht": [ + "3ee6655f4c79a0338a8b33bf4f5f2eaac3fce8e6", [ null, [ [ - "/css/WOFF2/metadatadisplay-encoding-004-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "metadatadisplay-encoding-005.xht": [ - "ada1e0ed0c8a5bbc8ff0825b2ed486f7c41322d5", + "border-image-slice-003.xht": [ + "75d6b6ffd7f58b8ad1e5ee8ff23ec4ad90fe5825", [ null, [ [ - "/css/WOFF2/metadatadisplay-encoding-005-ref.xht", + "/css/css-backgrounds/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "metadatadisplay-encoding-006.xht": [ - "b3580dc5a05dc70fc50922afebe6fbc9f7e5c931", + "border-image-slice-004.htm": [ + "1e5adb311f597fc4fa3c4413628b70ebd4c4103e", [ null, [ [ - "/css/WOFF2/metadatadisplay-encoding-006-ref.xht", + "/css/css-backgrounds/reference/border-image-slice-004-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-copyright-001.xht": [ - "9471d401cebaa28731a0dd827b06def7240fd3a1", + "border-image-slice-005.htm": [ + "5d8bd7df1c3fe1b09a8a9387e355e2c7d111b805", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-copyright-001-ref.xht", + "/css/css-backgrounds/reference/border-image-slice-005-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 92 + ], + [ + 0, + 5314 + ] + ] + ] + ] + } ] ], - "metadatadisplay-schema-copyright-002.xht": [ - "8a9b7bbf66c1ad7efb929a3b795c70aed6791168", + "border-image-slice-006.htm": [ + "45feaf60ad7ba15066e5ec4de6273f2a48c4ed0f", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-copyright-002-ref.xht", + "/css/css-backgrounds/reference/border-image-slice-006-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-copyright-003.xht": [ - "d63a5bfbb2f74880db473d9e8f09de5d6a11facb", + "border-image-slice-007.htm": [ + "e9c1827fc76c00f0bb81a23f27335a2f2074ace2", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-copyright-003-ref.xht", + "/css/css-backgrounds/reference/border-image-slice-007-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 92 + ], + [ + 0, + 5314 + ] + ] + ] + ] + } ] ], - "metadatadisplay-schema-copyright-004.xht": [ - "276dfc8528bd4ddb303ad98ce64d90c537987d95", + "border-image-slice-fill-001.html": [ + "b6eb589c38fc32383485cebfed439ed7f9749e4e", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-copyright-004-ref.xht", + "/css/css-backgrounds/reference/border-image-slice-fill-001-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 112 + ], + [ + 0, + 199 + ] + ] + ] + ] + } ] ], - "metadatadisplay-schema-copyright-005.xht": [ - "662d57d0b7338ab52279f4db3386278434f2ce09", + "border-image-slice-fill-002.html": [ + "26e40479e9e8f5e4bfe120511a36280a222c266c", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-copyright-005-ref.xht", + "/css/css-backgrounds/reference/border-image-slice-fill-002-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 112 + ], + [ + 0, + 199 + ] + ] + ] + ] + } ] ], - "metadatadisplay-schema-copyright-006.xht": [ - "f8c1542aee11c7243ea47a7986c86ef589bf127e", + "border-image-slice-fill-003.html": [ + "05e37c1a20dc3a5c063a6dece89a90bce2102511", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-copyright-006-ref.xht", + "/css/css-backgrounds/reference/ref-filled-green-100px-square.xht", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 112 + ], + [ + 0, + 199 + ] + ] + ] + ] + } ] ], - "metadatadisplay-schema-copyright-007.xht": [ - "aa187eade3d25187ba58094f9a3e1f9fc58289ab", + "border-image-slice-percentage.html": [ + "f53501c9df1099b7571adfdb5c0126dd9e2502a2", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-copyright-007-ref.xht", + "/css/css-backgrounds/reference/border-image-repeat-round-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 164 + ], + [ + 0, + 3716 + ] + ] + ] + ] + } ] ], - "metadatadisplay-schema-copyright-008.xht": [ - "81fb1bf045d2ba5ec0294cc036b5d043385a8bdd", + "border-image-space-001.html": [ + "720f0df188d962c9d3797d18df2517da46f203aa", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-copyright-008-ref.xht", + "/css/css-backgrounds/reference/border-image-space-001-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 80 + ], + [ + 0, + 1728 + ] + ] + ] + ] + } ] ], - "metadatadisplay-schema-copyright-009.xht": [ - "49f8e86e23ea617ce47c4f1eae4fbcd237ee5fe8", + "border-image-width-001.htm": [ + "2a5d02e8acc53f8e6525c95a07132482e27842d7", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-copyright-009-ref.xht", + "/css/css-backgrounds/reference/border-image-width-001-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-copyright-010.xht": [ - "ba21b4fe9c6fcfc83bb736a572c10ce0929375f0", + "border-image-width-005.xht": [ + "eeceedef90e9a74a20e151b346e9030fe05d84ea", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-copyright-010-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "metadatadisplay-schema-copyright-011.xht": [ - "db20d27ac5c8a83e0925483b03bf988776fd89e6", + "border-image-width-006.xht": [ + "aa487b76c53a11cba41b285d4d86743bf3ca1324", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-copyright-011-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "metadatadisplay-schema-copyright-012.xht": [ - "c2e156cd37f59bfe8f856d649b6e6965f9a3380f", + "border-image-width-007.xht": [ + "61726c00873739c076812f72645d8324494ff44c", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-copyright-012-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "metadatadisplay-schema-copyright-013.xht": [ - "e52f935e27ef22232ea909324d52e7093d93c15f", + "border-image-width-008.html": [ + "20775aeb9d6dcf2d499d4604370c832491919df8", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-copyright-013-ref.xht", + "/css/css-backgrounds/border-image-width-008-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 2 + ], + [ + 0, + 74 + ] + ] + ] + ] + } ] ], - "metadatadisplay-schema-copyright-014.xht": [ - "19b4b2c90b4ae410d0f9f20b4151ce97f7cedb02", + "border-image-width-009.html": [ + "112c2a485ac424e3b1097ded5a59c16aafcefb01", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-copyright-014-ref.xht", + "/css/css-backgrounds/reference/border-image-width-009-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-copyright-015.xht": [ - "227dd39cc89786751c148b7f8d3d248e4305a3c7", + "border-image-width-should-extend-to-padding.html": [ + "575921a0454a64a979c8ff210cc23a2ed04533a2", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-copyright-015-ref.xht", + "/css/css-backgrounds/border-image-width-should-extend-to-padding-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-copyright-016.xht": [ - "5e1d69fe3581055b52096236c66f4d73f17f31c5", + "border-left-width-medium.html": [ + "b7bd80a83388fc5a56f2f1a9ed3c291778f9cd92", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-copyright-016-ref.xht", + "/css/css-backgrounds/reference/border-right-width-3px-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-copyright-017.xht": [ - "b8b1bea7540d850fc279e1493d6d0089703a78ab", + "border-left-width-thick.html": [ + "c4787cac8adfe088d92a68ab9b21da345825b8ca", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-copyright-017-ref.xht", + "/css/css-backgrounds/reference/border-right-width-5px-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-copyright-018.xht": [ - "e478d49405e81db62ae4984a26820ac16dd1efcc", + "border-left-width-thin.html": [ + "1b8da56a34fd31ce8b9caf3f62041b838f202117", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-copyright-018-ref.xht", + "/css/css-backgrounds/reference/border-right-width-1px-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-copyright-019.xht": [ - "908710db9f2612e272268ab67b04813c96311abb", + "border-radius-001.xht": [ + "5029dd0f15105294d85612a0f50a6b28caaf7da0", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-copyright-019-ref.xht", + "/css/css-backgrounds/border-radius-001-ref.xht", "==" ] ], {} ] ], - "metadatadisplay-schema-copyright-020.xht": [ - "36f71ae017237c702116415b48a4f089302b21e2", + "border-radius-002.xht": [ + "9f53fc37587b2a3947c92d94373502bcfc00f2d1", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-copyright-020-ref.xht", + "/css/css-backgrounds/border-radius-002-ref.xht", "==" ] ], {} ] ], - "metadatadisplay-schema-copyright-021.xht": [ - "0b1b864308bf95ae769899aee01ff75f841045c9", + "border-radius-003.xht": [ + "398358f1f1d7b3189956cf4463878cca5a90af7f", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-copyright-021-ref.xht", + "/css/css-backgrounds/border-radius-003-ref.xht", "==" ] ], {} ] ], - "metadatadisplay-schema-copyright-022.xht": [ - "765fe623162370e5eadea293d44a625a195f9af6", + "border-radius-004.xht": [ + "8a000d909c599fc13d292984fa51ee4c0b4b56d1", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-copyright-022-ref.xht", + "/css/css-backgrounds/border-radius-004-ref.xht", "==" ] ], {} ] ], - "metadatadisplay-schema-copyright-023.xht": [ - "fca660ed287d79713c47d8bcd2c3e6385bd114e5", + "border-radius-005.xht": [ + "7be93af636d2e57c76ad8c529b8cf005c3161335", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-copyright-023-ref.xht", + "/css/css-backgrounds/border-radius-005-ref.xht", "==" ] ], {} ] ], - "metadatadisplay-schema-copyright-024.xht": [ - "aa911a252549ad0e24adf432371d5438180b4135", + "border-radius-006.xht": [ + "89da74c48273ac3270cdec9cf489b73efa412a82", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-copyright-024-ref.xht", + "/css/css-backgrounds/border-radius-006-ref.xht", "==" ] ], {} ] ], - "metadatadisplay-schema-copyright-025.xht": [ - "5f37b4c0b87295a6f2f694011bb0a0a5739bf1f7", + "border-radius-007.xht": [ + "df442e00852c9c378a3926b9ed2f510a13074701", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-copyright-025-ref.xht", + "/css/css-backgrounds/border-radius-007-ref.xht", "==" ] ], {} ] ], - "metadatadisplay-schema-copyright-026.xht": [ - "7ac2efd3e29afd5af165bee02771dc1c9b9c1fe9", + "border-radius-008.xht": [ + "a4b1408dd3007cc3b45364e776b82990190a65b3", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-copyright-026-ref.xht", + "/css/css-backgrounds/border-radius-001-ref.xht", "==" ] ], {} ] ], - "metadatadisplay-schema-copyright-027.xht": [ - "be6655ce0e962ff38a78533ab9db01aca6faf706", + "border-radius-009.xht": [ + "822f1668596ba85ab65cd98db74821ff69846ddf", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-copyright-027-ref.xht", + "/css/css-backgrounds/border-radius-009-ref.xht", "==" ] ], {} ] ], - "metadatadisplay-schema-copyright-028.xht": [ - "16795ad55843a698d79d6156e8f3ff826c24af92", + "border-radius-010.xht": [ + "32d464673a71bbaa4806443902057c39e0ce0631", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-copyright-028-ref.xht", + "/css/css-backgrounds/border-radius-010-ref.xht", "==" ] ], {} ] ], - "metadatadisplay-schema-copyright-029.xht": [ - "ef827f1af8c88035d7d358a04455cf9509d60d0e", + "border-radius-011.xht": [ + "8439302d6bd938cfa42cdbb7bf067909384e21f4", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-copyright-029-ref.xht", + "/css/css-backgrounds/border-radius-011-ref.xht", "==" ] ], {} ] ], - "metadatadisplay-schema-copyright-030.xht": [ - "4987376bbca4b72efb3b5e251ce7d2435be828b6", + "border-radius-012.html": [ + "e3b97e2ea7b7793becf4e31e9e79f0ed7118aeeb", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-copyright-030-ref.xht", + "/css/css-backgrounds/border-radius-012-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-credit-001.xht": [ - "f2036e0c9ad019acc913ed6e6e18d6c9e7ab12bd", + "border-radius-013.html": [ + "090f6a28b3bd35de408b13793eb4e44fa87280e0", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-credit-001-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "metadatadisplay-schema-credit-002.xht": [ - "1bedbe511527d5ccc87f44f73b222e263fccbd79", + "border-radius-clip-001.html": [ + "971bba1a1885f61b5f4bbc4682ee861abc38c470", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-credit-002-ref.xht", + "/css/css-backgrounds/reference/border-radius-clipping-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 57 + ], + [ + 0, + 1552 + ] + ] + ] + ] + } ] ], - "metadatadisplay-schema-credit-003.xht": [ - "755ec761ee20365ea177f3364134fec2aa2ed18e", + "border-radius-clip-002.htm": [ + "759bd5ce4836899512fe8b435a18bd1aad78cfc2", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-credit-003-ref.xht", + "/css/css-backgrounds/reference/border-radius-clip-002-ref.htm", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 70 + ], + [ + 0, + 50 + ] + ] + ] + ] + } ] ], - "metadatadisplay-schema-credit-004.xht": [ - "0342c6d007e349f7622ef6f23694e0c4eb3efca1", + "border-radius-clipping-002.html": [ + "eea0ee104fc2610a722f5bbae200c8f6d1ac9823", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-credit-004-ref.xht", + "/css/reference/ref-nothing-below.xht", "==" ] ], {} ] ], - "metadatadisplay-schema-credit-005.xht": [ - "ec016921bd82636c5c3657ce53a5bb0fd01819c7", + "border-radius-clipping-with-transform-001.html": [ + "b2187cf07abfe0b6b7ee24f35f35a57a5bf58789", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-credit-005-ref.xht", + "/css/css-backgrounds/border-radius-clipping-with-transform-001-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 48 + ], + [ + 0, + 6783 + ] + ] + ] + ] + } ] ], - "metadatadisplay-schema-credit-006.xht": [ - "fe5901933fb89ade4dd647005edff81f85eeadf0", + "border-radius-dynamic-from-no-radius.html": [ + "335548f33ad4bb9d7c42b4b07323c0a398aa28fc", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-credit-006-ref.xht", + "/css/css-backgrounds/border-radius-dynamic-from-no-radius-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-credit-007.xht": [ - "eba69ef054b451ac90b90f7ab3eb0ad2826114df", + "border-radius-horizontal-value-is-zero.html": [ + "3a461699b2375d62e63b35e5437d871272e73870", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-credit-007-ref.xht", + "/css/css-backgrounds/reference/border-radius-horizontal-value-is-zero-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-credit-008.xht": [ - "dde83aada4ab96eff7822876ff70d588b4fabbc2", + "border-radius-shorthand-002.html": [ + "8191cf48f3798a79f239ec3130e3d9eb3bcd78b5", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-credit-008-ref.xht", + "/css/css-backgrounds/border-radius-shorthand-002-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-credit-009.xht": [ - "dfc9fefabc1c8fee88f54a38213f4831728e666c", + "border-right-width-medium.html": [ + "47de799e54fb8549136c7e7fb442604f3106ab70", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-credit-009-ref.xht", + "/css/css-backgrounds/reference/border-right-width-3px-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-credit-010.xht": [ - "236a8abb939d08b5e9abd311adc1a6275ee15efe", + "border-right-width-thick.html": [ + "af518a79f51f54136fef2c5d7792b06a2b353d42", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-credit-010-ref.xht", + "/css/css-backgrounds/reference/border-right-width-5px-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-credit-011.xht": [ - "5e96f4ebac681ac1a2bf3b49baad781f01097c8c", + "border-right-width-thin.html": [ + "d8483a87ca070473f6c3e1b719ac6228e2b10e4b", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-credit-011-ref.xht", + "/css/css-backgrounds/reference/border-right-width-1px-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-credits-001.xht": [ - "0426902a005ec38e3daa2217b9a104728a22e444", + "border-top-left-radius-001.xht": [ + "0346518e2161a81fc76008f415c746d3342b210b", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-credits-001-ref.xht", + "/css/css-backgrounds/border-radius-001-ref.xht", "==" ] ], {} ] ], - "metadatadisplay-schema-credits-002.xht": [ - "d03b025759bb0e48a75d939285ff12764315a1e4", + "border-top-left-radius-004.xht": [ + "71c98832404424f0d8ccdc2aadbc30bc6c23a206", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-credits-002-ref.xht", + "/css/css-backgrounds/border-top-left-radius-004-ref.xht", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 1, + 1 + ], + [ + 0, + 5 + ] + ] + ] + ] + } ] ], - "metadatadisplay-schema-credits-003.xht": [ - "3c022483b83c9b15feabeaf2abee1e88b9b75c2c", + "border-top-left-radius-005.xht": [ + "68fd36d710933c6412f56a9fb0f8813ce360206c", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-credits-003-ref.xht", + "/css/css-backgrounds/border-top-left-radius-005-ref.xht", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 1 + ], + [ + 0, + 1 + ] + ] + ] + ] + } ] ], - "metadatadisplay-schema-credits-004.xht": [ - "d4c61c5e30b497bcd9c31c5048dadb0ddf342d75", + "border-top-left-radius-010.xht": [ + "9d4afb327cd5e66ea8a9ea73697933dea7690b87", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-credits-004-ref.xht", + "/css/css-backgrounds/border-radius-001-ref.xht", "==" ] ], {} ] ], - "metadatadisplay-schema-credits-005.xht": [ - "fca34323785f4e4c9e137e0cbfbf729147bf7107", + "border-top-left-radius-011.xht": [ + "2fd9ebabf892c681a292915dad66fd539c43eba2", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-credits-005-ref.xht", + "/css/css-backgrounds/border-radius-001-ref.xht", "==" ] ], {} ] ], - "metadatadisplay-schema-credits-006.xht": [ - "fa049ab44533f5d0015940b53884f188c258bfbe", + "border-top-left-radius-014.xht": [ + "8df8f12e1dfa95b56ef4099a0976e4f0b419a972", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-credits-006-ref.xht", + "/css/css-backgrounds/border-radius-001-ref.xht", "==" ] ], {} ] ], - "metadatadisplay-schema-credits-007.xht": [ - "679eb3501ca94abf4d1fd6aa3336eaa0530db6de", + "border-top-right-radius-001.xht": [ + "30091f329c53a37f688d15754daa04b38dd46d6a", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-credits-007-ref.xht", + "/css/css-backgrounds/border-radius-001-ref.xht", "==" ] ], {} ] ], - "metadatadisplay-schema-description-001.xht": [ - "9037a5187f3f0106063b63777d02fa80159562ea", + "border-top-right-radius-004.xht": [ + "3068a24d4368e84594e75082ac861039915360bc", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-description-001-ref.xht", + "/css/css-backgrounds/border-top-right-radius-004-ref.xht", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 1 + ], + [ + 0, + 2 + ] + ] + ] + ] + } ] ], - "metadatadisplay-schema-description-002.xht": [ - "81f1aba207c27a99c31088d2e55d896fcc819c58", + "border-top-right-radius-005.xht": [ + "46004d6fa11736a3ddef2d11950026a16c1dc69a", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-description-002-ref.xht", + "/css/css-backgrounds/border-top-right-radius-005-ref.xht", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 36 + ], + [ + 0, + 131 + ] + ] + ] + ] + } ] ], - "metadatadisplay-schema-description-003.xht": [ - "9c3f097ea996d13e2dd4eac6f31fbdf12c239225", + "border-top-right-radius-010.xht": [ + "8c540304b332cbb2ccf802d28012e1ba617319f1", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-description-003-ref.xht", + "/css/css-backgrounds/border-radius-001-ref.xht", "==" ] ], {} ] ], - "metadatadisplay-schema-description-004.xht": [ - "59b4b0761ba8fce66cda62bf990d2a8258502d59", + "border-top-right-radius-011.xht": [ + "e59567e219ae1a056a08b23f4ce45ebb098cf018", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-description-004-ref.xht", + "/css/css-backgrounds/border-radius-001-ref.xht", "==" ] ], {} ] ], - "metadatadisplay-schema-description-005.xht": [ - "db67c98b7344dd80de4b9d8336f4a1b9e6138e27", + "border-top-right-radius-014.xht": [ + "ad160426759e8b920dcf5587bf6bd6a099a5fbcb", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-description-005-ref.xht", + "/css/css-backgrounds/border-radius-001-ref.xht", "==" ] ], {} ] ], - "metadatadisplay-schema-description-006.xht": [ - "7983a22be93f35e4288c58d608ba49ce06e8671c", + "border-top-width-medium.html": [ + "74c7d943f4ca9500218bcf43b360d25a41283c19", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-description-006-ref.xht", + "/css/css-backgrounds/reference/border-top-width-3px-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-description-007.xht": [ - "b79c27615b396db3571167edfa0080c7a564be45", + "border-top-width-thick.html": [ + "f67c5e22ed3dc6f3198af6d450c5a23cd22af8e0", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-description-007-ref.xht", + "/css/css-backgrounds/reference/border-top-width-5px-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-description-008.xht": [ - "1f8284db1f4714e7c36ed48e24b966f319461907", + "border-top-width-thin.html": [ + "38597f5a22d4e5adfb3e68ef83a69bd16614cd38", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-description-008-ref.xht", + "/css/css-backgrounds/reference/border-top-width-1px-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-description-009.xht": [ - "e412d8bfd49b968edd2294578457c886ca80e627", + "border-width-pixel-snapping-001-a.html": [ + "664e652c2bf277913eff4b15bcebbb4f6c679743", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-description-009-ref.xht", - "==" + "/css/css-backgrounds/reference/border-width-pixel-snapping-001-ref.html", + "!=" ] ], {} ] ], - "metadatadisplay-schema-description-010.xht": [ - "7efc023847e5959c0c0df947fa4d84d4cab5ecaa", + "border-width-pixel-snapping-001-b.html": [ + "2bbb4f8b355bca712b1e2d6e4a3c15e01d9fd7e6", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-description-010-ref.xht", + "/css/css-backgrounds/reference/border-width-pixel-snapping-001-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-description-011.xht": [ - "a2ea3832b0e0b60150f409e0d14aadde740108ad", + "border-width-small-values-001-a.html": [ + "d5354a3585469bbec045a8d14193fc3332e83d0f", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-description-011-ref.xht", - "==" + "/css/css-backgrounds/reference/border-width-small-values-001-ref.html", + "!=" ] ], {} ] ], - "metadatadisplay-schema-description-012.xht": [ - "36805634b27e48203907deded0cf930c5b02d91b", + "border-width-small-values-001-b.html": [ + "ccb5004a64f584a5d26ed636519f945dd3c7580f", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-description-012-ref.xht", - "==" + "/css/css-backgrounds/reference/border-width-small-values-001-ref.html", + "!=" ] ], {} ] ], - "metadatadisplay-schema-description-013.xht": [ - "727ca4d292b48e350f99de6e919718261cd98f2c", + "border-width-small-values-001-c.html": [ + "43651fe2312bbdb1f4a5bd2914ee8e94c6c4076f", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-description-013-ref.xht", - "==" + "/css/css-backgrounds/reference/border-width-small-values-001-ref.html", + "!=" ] ], {} ] ], - "metadatadisplay-schema-description-014.xht": [ - "945f1fe2c67ce7a0ff87f292b619c2fb08c92c37", + "border-width-small-values-001-d.html": [ + "11ff8b5c5553d5bff1ceff5da36a4342a650610c", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-description-014-ref.xht", - "==" + "/css/css-backgrounds/reference/border-width-small-values-001-ref.html", + "!=" ] ], {} ] ], - "metadatadisplay-schema-description-015.xht": [ - "1da62452cc70393a2723e9b270c52e59d2ac4dd7", + "border-width-small-values-001-e.html": [ + "5fc44349834938dc6b3d6ba60334bcd7737d1a40", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-description-015-ref.xht", - "==" + "/css/css-backgrounds/reference/border-width-small-values-001-ref.html", + "!=" ] ], {} ] ], - "metadatadisplay-schema-description-016.xht": [ - "76e0ddb51a70e3447dd3aed1d111a8564865be19", + "box-shadow": { + "slice-block-fragmentation-001.html": [ + "1c7193fa7b0c504698af9b5d6e22ca4ba49fa7fd", + [ + null, + [ + [ + "/css/css-backgrounds/box-shadow/slice-block-fragmentation-001-ref.html", + "==" + ] + ], + {} + ] + ], + "slice-block-fragmentation-002.html": [ + "b645ed82eaf3bd9795474b83b657e2a2376016f2", + [ + null, + [ + [ + "/css/css-backgrounds/box-shadow/slice-block-fragmentation-002-ref.html", + "==" + ] + ], + {} + ] + ], + "slice-block-fragmentation-003.html": [ + "4fca18bfdde70d55f44175effcf5c1471bf8bbd0", + [ + null, + [ + [ + "/css/css-backgrounds/box-shadow/slice-block-fragmentation-003-ref.html", + "==" + ] + ], + {} + ] + ], + "slice-inline-fragmentation-001.html": [ + "46eab59ab2433fd031957e96e10113d8ea247a7d", + [ + null, + [ + [ + "/css/css-backgrounds/box-shadow/slice-inline-fragmentation-001-ref.html", + "==" + ] + ], + {} + ] + ], + "slice-inline-fragmentation-002.html": [ + "516abcf2a933fb8c6aee29660edd16ee7c7bd5ec", + [ + null, + [ + [ + "/css/css-backgrounds/box-shadow/slice-inline-fragmentation-002-ref.html", + "==" + ] + ], + {} + ] + ], + "slice-inline-fragmentation-003.html": [ + "336c01f5baed2888f2ca275476e6ff635a410c52", + [ + null, + [ + [ + "/css/css-backgrounds/box-shadow/slice-inline-fragmentation-003-ref.html", + "==" + ] + ], + {} + ] + ] + }, + "box-shadow-005.html": [ + "705ced279d30e6113eed68b819b287f7e48219cd", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-description-016-ref.xht", + "/css/css-backgrounds/reference/box-shadow-005-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-description-017.xht": [ - "5135914740c259d489c5fc2715b5ef7002df3ec5", + "box-shadow-029.html": [ + "9592c8af79d441e985ad05bc471a55fed68cb4d0", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-description-017-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "metadatadisplay-schema-description-018.xht": [ - "29c21582a1621e00a8cbcfcc962188e0bd19c4de", + "box-shadow-039.html": [ + "614078d599a0700e3b851b72ddefad50bb4fd50c", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-description-018-ref.xht", + "/css/css-backgrounds/reference/box-shadow-039-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-description-019.xht": [ - "cd8595359d7afec11a6880fe12b5514b87dd12e1", + "box-shadow-040.html": [ + "e406acc67a3992015bd091afb283bebd84b790b1", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-description-019-ref.xht", + "/css/css-backgrounds/reference/box-shadow-040-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-description-020.xht": [ - "bbf9fa62e26de1adc39747c41e3490e3221bf454", + "box-shadow-041.html": [ + "f91189bcc49300c4098a3303dc1792a1af0a25ec", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-description-020-ref.xht", + "/css/css-backgrounds/reference/box-shadow-041-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-description-021.xht": [ - "719f48b599f4148b42ebf596cedbf30596dc3f8a", + "box-shadow-042.html": [ + "0e53b364630624385379e5e7f7e73becf3ec199b", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-description-021-ref.xht", + "/css/css-backgrounds/reference/box-shadow-042-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-description-022.xht": [ - "3a24b993a97e94847f89184f6c2ec49c3d4bf560", + "box-shadow-body.html": [ + "88d888a7710c7bdd2831a4908a30108b3a34670a", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-description-022-ref.xht", + "/css/css-backgrounds/reference/box-shadow-body-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-description-023.xht": [ - "2ce0cb87f028714f77518f11c711505ed1511f61", + "box-shadow-border-radius-001.html": [ + "de5060e5b86b248b477462475f03a4373651889b", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-description-023-ref.xht", + "/css/css-backgrounds/reference/box-shadow-border-radius-001-ref.html", "==" + ], + [ + "/css/css-backgrounds/reference/box-shadow-border-radius-001-notref.html", + "!=" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 56 + ], + [ + 0, + 1192 + ] + ] + ] + ] + } ] ], - "metadatadisplay-schema-description-024.xht": [ - "cf108b762c679e2ed11b247efdf66efeb2c70b97", + "box-shadow-calc.html": [ + "14011859851b1234674bbdf6374670c674b56968", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-description-024-ref.xht", + "/css/css-backgrounds/box-shadow-calc-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-description-025.xht": [ - "c825aeb51c029a9927b6a3b7e72231ebbe09747e", + "box-shadow-currentcolor.html": [ + "cdb0b9d9fc20e864c1c81b261661b84ac8bca0df", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-description-025-ref.xht", + "/css/css-backgrounds/box-shadow-currentcolor-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-description-026.xht": [ - "741cd98ac8ff7910cf55f0bd6274dd4c168c519d", + "box-shadow-inset-without-border-radius.html": [ + "8b2c691ebc8fbd318416a1c4f13461fb2576b702", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-description-026-ref.xht", + "/css/css-backgrounds/reference/box-shadow-inset-without-border-radius-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-description-027.xht": [ - "64e0151cc64eccb6353f8ae9232de4708cf70ab5", + "box-shadow-invalid-001.html": [ + "acd0bdf41bd7899c45bd424e64127f5e30464ef1", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-description-027-ref.xht", + "/css/css-backgrounds/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "metadatadisplay-schema-description-028.xht": [ - "533f0681879e0ea450b4c4b03ed9b1d623400079", + "box-shadow-multiple-001.html": [ + "e95fb6841ad1c9b21aebf2c51f7690f917e0dd1c", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-description-028-ref.xht", + "/css/css-backgrounds/reference/box-shadow-multiple-001-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-description-029.xht": [ - "442edc34548cc6b2dc94452560f59bfc109bf23d", + "box-shadow-outset-without-border-radius-001.html": [ + "71735a98ce7ae9d2df7ca7eed7dd7b4020cd72ba", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-description-029-ref.xht", + "/css/css-backgrounds/reference/box-shadow-outset-without-border-radius-001-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-description-030.xht": [ - "873e7b7e7fe1d35b1047752c530aa14777057275", + "box-shadow-overlapping-001.html": [ + "2c77838108d535372866ca5aafc6115c6dbea144", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-description-030-ref.xht", + "/css/css-backgrounds/reference/box-shadow-overlapping-001-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-description-031.xht": [ - "79650aed720edfecc435e9aa2695bdd3a269ae23", + "box-shadow-overlapping-002.html": [ + "60659721fb10e716a13c05c951df26c72641acde", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-description-031-ref.xht", + "/css/css-backgrounds/reference/box-shadow-overlapping-001-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-description-032.xht": [ - "f63c8049d4c04ec9f2300a49e79f3cdf879594ed", + "box-shadow-overlapping-003.html": [ + "dcae3f050633965cf8463de35052ea2e9916efbc", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-description-032-ref.xht", + "/css/css-backgrounds/reference/box-shadow-overlapping-003-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-extension-001.xht": [ - "580fdad9dcaf483aca6c24c235cde0f950330bcf", + "box-shadow-overlapping-004.html": [ + "97b690b956e6bed8bb6212ab96e895017fd59163", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-extension-001-ref.xht", + "/css/css-backgrounds/reference/box-shadow-overlapping-003-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-extension-002.xht": [ - "a5699d9388db78b344c39f41b139268515590a06", + "box-shadow-radius-000.html": [ + "ea6190b57f68eed178c5b57ab3b43dffb94dda4b", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-extension-002-ref.xht", + "/css/css-backgrounds/box-shadow-radius-000-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 25 + ], + [ + 0, + 90 + ] + ] + ] + ] + } ] ], - "metadatadisplay-schema-extension-003.xht": [ - "0d232649948e732637810f211a9c3223e9f2a11d", + "box-shadow-radius-001.html": [ + "9b823a0590fb5890a33ed605912879ce24ad81f5", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-extension-003-ref.xht", + "/css/css-backgrounds/box-shadow-radius-001-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-extension-004.xht": [ - "193d3bc32024efafc231156e85d1842581d096c1", + "box-shadow-table-border-collapse-001.html": [ + "c6c50b73bde76082d57c49e47675573158567ff9", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-extension-004-ref.xht", + "/css/css-backgrounds/reference/box-shadow-table-border-collapse-001-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-extension-005.xht": [ - "b5de63fdecd853afa42adb1592e05d95f0edc5f0", + "child-move-reveals-parent-background.html": [ + "e369eccd07f3c7c4146b1a419d5b110ff6d0eb7c", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-extension-005-ref.xht", + "/css/css-backgrounds/child-move-reveals-parent-background-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-extension-006.xht": [ - "59080410caef48b2276e502f32dbafaff2f2aba2", + "color-mix-currentcolor-background-repaint-parent.html": [ + "ba80a7b063ca560aa6f7ca36dd59f303423a67e0", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-extension-006-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "metadatadisplay-schema-extension-007.xht": [ - "8f5041de42637d92ca355ab9996efb441a865fd4", + "color-mix-currentcolor-background-repaint.html": [ + "19ed949334b25f1bf76ab9dda2bd186cd7fefb44", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-extension-007-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "metadatadisplay-schema-extension-008.xht": [ - "d89228937d4e9710774c7c2c2a221912d73ef1c3", + "color-mix-currentcolor-border-repaint-parent.html": [ + "058292efadfea96d15479c253eef3d20c4a71b76", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-extension-008-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "metadatadisplay-schema-extension-009.xht": [ - "3e710a90cb96387ae55aed25dcc42323ed0b0795", + "color-mix-currentcolor-border-repaint.html": [ + "24407bbcf3086e3034eedfb6dd6a0079dff10945", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-extension-009-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "metadatadisplay-schema-extension-010.xht": [ - "3fa5d219ee5e9958c8a98fd17048bf115b1d825d", + "color-mix-currentcolor-outline-repaint-parent.html": [ + "bdfa0897e950432aba5a34f700fa7c05116e95c4", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-extension-010-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "metadatadisplay-schema-extension-011.xht": [ - "e1ce7b12c0c446484ca4da754f4ca3d1551dc088", + "color-mix-currentcolor-outline-repaint.html": [ + "b796adaf0098ed72f93d99bf1ba97a14a8ed11db", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-extension-011-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "metadatadisplay-schema-extension-012.xht": [ - "bf60af8821e9a4ef8ce7ec3c3712b858eacc1e35", + "css-border-radius-001.html": [ + "8b0e2e9a36c67393f0497b174784c5245cee1d7c", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-extension-012-ref.xht", + "/css/css-backgrounds/reference/css-border-radius-001-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 116 + ], + [ + 0, + 8035 + ] + ] + ] + ] + } ] ], - "metadatadisplay-schema-extension-013.xht": [ - "a02b80f383f5cae3650805f587903ba27da9f66e", + "css-box-shadow-001.html": [ + "3a7f268ec57b233e498a9e7ab567c8d996326297", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-extension-013-ref.xht", + "/css/css-backgrounds/reference/css-box-shadow-ref-001.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 56 + ], + [ + 0, + 250 + ] + ] + ] + ] + } ] ], - "metadatadisplay-schema-extension-014.xht": [ - "717262ef213656faa2ca97ae444f6c926e1cdc75", + "css3-background-clip-border-box.html": [ + "e07fd53e179c46e34fcd4ec5f32cff87df11fc4f", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-extension-014-ref.xht", + "/css/css-backgrounds/reference/css3-background-clip-border-box-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-extension-015.xht": [ - "0221c4f4dfadba4967f370df3884f7e38d8059fa", + "css3-background-clip-content-box.html": [ + "bb707a5bf989e7d47450c41b4625906dec29f274", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-extension-015-ref.xht", + "/css/css-backgrounds/reference/css3-background-clip-content-box-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-extension-016.xht": [ - "bb92c0f71efe624bdaaf121798edb5406c28b0aa", + "css3-background-clip-padding-box.html": [ + "7009f7b26a9b65f1f2e2ccd665370231934b3f47", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-extension-016-ref.xht", + "/css/css-backgrounds/reference/css3-background-clip-padding-box-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-extension-017.xht": [ - "153818839d897de73b980ad12899969f7626ce5a", + "css3-background-clip.html": [ + "97beda239b0671ce36daa047a05701e762fad196", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-extension-017-ref.xht", + "/css/css-backgrounds/reference/css3-background-clip-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-extension-018.xht": [ - "0c2c8ac6483b4044200df536195313c081bfbaf5", + "css3-background-origin-border-box.html": [ + "0451cd113551d24f78913228e9ed5b11859776bf", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-extension-018-ref.xht", + "/css/css-backgrounds/reference/css3-background-origin-border-box-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-extension-019.xht": [ - "924ef85483660baec36539aaa3d013d98197b307", + "css3-background-origin-content-box.html": [ + "7ea2b4b1bc8d073b40dfa7131a2be4cb0d0c771a", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-extension-019-ref.xht", + "/css/css-backgrounds/reference/css3-background-origin-content-box-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-extension-020.xht": [ - "c970a685ec07a5622178aae8cc6be39821cd2a77", + "css3-background-origin-padding-box.html": [ + "c1dc3f078803c5676b027aea4b9f412554f68fb3", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-extension-020-ref.xht", + "/css/css-backgrounds/reference/css3-background-origin-padding-box-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-extension-021.xht": [ - "4987130b9918143fa7697e23adb7492009d40c3c", + "css3-background-size-001.html": [ + "6da2c9d32672088f364bb69dfccb4ae572ab3f55", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-extension-021-ref.xht", + "/css/css-backgrounds/reference/css3-background-size-001-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-extension-022.xht": [ - "5904ee72210acdeb852fb375fae7361b84b2a106", + "css3-background-size-contain.html": [ + "1c65a30a74b4ae8940d45eee10991bf85486f5e5", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-extension-022-ref.xht", + "/css/css-backgrounds/reference/css3-background-size-contain-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-extension-023.xht": [ - "31c89c2b5a2571e5a4120dcb57d420665fa00c73", + "css3-background-size.html": [ + "79d6c5417f5aa7c4a013aa5f909106d0a47b80de", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-extension-023-ref.xht", + "/css/css-backgrounds/reference/css3-background-size-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-extension-024.xht": [ - "864ade1923407b10ddf8d17aaa15cb285c19fece", + "css3-border-image-repeat-repeat.html": [ + "b6db467a668856eac84475dc2b86e03fc4342095", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-extension-024-ref.xht", + "/css/css-backgrounds/reference/css3-border-image-repeat-repeat-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 58 + ], + [ + 0, + 412 + ] + ] + ] + ] + } ] ], - "metadatadisplay-schema-extension-025.xht": [ - "935229408cc668cb59f6e2f78b46305914f020e7", + "css3-border-image-repeat-stretch.html": [ + "c83cf383725572c0ebc6c19146416ad59ab2847f", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-extension-025-ref.xht", + "/css/css-backgrounds/reference/css3-border-image-repeat-stretch-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-extension-026.xht": [ - "65898373d9fd7a892f032dbf5dab805cbb2fc2ba", + "css3-border-image-source.html": [ + "e53ec1fbb1d1254bd44cafcebe4d04e6a61015f3", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-extension-026-ref.xht", + "/css/css-backgrounds/reference/css3-border-image-source-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-extension-027.xht": [ - "4a57328f4530483d4156dd8e04ddce89c3e72665", + "css3-box-shadow.html": [ + "c6e746c1dec3f8efe8b78fdf2f786c47fb2d4d2a", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-extension-027-ref.xht", + "/css/css-backgrounds/reference/css3-box-shadow-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-extension-028.xht": [ - "9318a32ca359b735f553c4ab71b3b2c93cf5f41f", + "currentcolor-border-repaint-parent.html": [ + "c84d26c434db7e58b607fd3a0299e4317e1b180b", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-extension-028-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "metadatadisplay-schema-extension-029.xht": [ - "139bc0a787caee1ccfc9e4db743c9b431845e485", + "document-canvas-remove-body.html": [ + "35b0383ceaae98e6b3d6002a1e6885f3626de226", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-extension-029-ref.xht", + "/css/css-backgrounds/document-canvas-remove-body-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-extension-030.xht": [ - "92aaac17e652c5cfd07d5ec9a441f63e97a19be8", + "fieldset-inset-shadow.html": [ + "cb13cd805d0dafcdd1c288c71809a6531eb76fae", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-extension-030-ref.xht", + "/css/css-backgrounds/fieldset-inset-shadow-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-extension-031.xht": [ - "b0a72742155867fb70aaaa5b95daead0de6e18d5", + "first-letter-space-not-selected.html": [ + "842832c01bac0c0643395ed3387d7263ec4dbf0f", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-extension-031-ref.xht", + "/css/css-backgrounds/reference/first-letter-space-not-selected-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-extension-032.xht": [ - "11927e5b84125741cdd1720fa21712739567a30d", + "hidpi": { + "simple-bg-color.html": [ + "07bea44d21964b832cd9e4b4f32098ec41a2c206", + [ + null, + [ + [ + "/css/css-backgrounds/hidpi/simple-bg-color-ref.html", + "==" + ] + ], + {} + ] + ] + }, + "inline-background-rtl-001.html": [ + "a7149e2f3c83acf175b5de4f8bcbf63a2c20d4f1", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-extension-032-ref.xht", + "/css/css-backgrounds/reference/inline-background-rtl-001-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-extension-033.xht": [ - "60167d40c6d20b112c3a9e907867b6dc63db733f", + "inner-border-non-renderable.html": [ + "7c3cff798819b7cc592b807a172a0bbebae32c9b", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-extension-033-ref.xht", + "/css/css-backgrounds/inner-border-non-renderable-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-extension-034.xht": [ - "eb33ee887fc02fb7a25ea17d7a9f5427aac3df15", + "inset-box-shadow-scroll.html": [ + "7eca4ea544ff76740e13490fb995dfda5705336d", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-extension-034-ref.xht", + "/css/css-backgrounds/inset-box-shadow-scroll-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-extension-035.xht": [ - "93f42ec3f7388d49218256a4357befc89daf4b54", + "inset-box-shadow-stacking-context-scroll.html": [ + "edd79b88be2a71fc6054e7e866c8cabe03948a89", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-extension-035-ref.xht", + "/css/css-backgrounds/inset-box-shadow-scroll-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-extension-036.xht": [ - "e62f0d04dd07d5afcfd5e12cace8d35022cd31ab", + "linear-gradient-currentcolor-first-line.html": [ + "7c8f8a8fda63982a7ded20fcdd25077ce4c73c39", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-extension-036-ref.xht", + "/css/css-backgrounds/linear-gradient-currentcolor-first-line-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 1 + ], + [ + 0, + 265 + ] + ] + ] + ] + } ] ], - "metadatadisplay-schema-extension-037.xht": [ - "dd606a86bb57eead751f1d18b4b615e118ec6f08", + "local-attachment-content-box-scroll.html": [ + "7644c15886a29f66ca80e60b74d687cc0bdafc8a", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-extension-037-ref.xht", + "/css/css-backgrounds/local-attachment-content-box-scroll-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-extension-038.xht": [ - "ab70032baf78b06367eefe1107e49e3dada83519", + "order-of-images.htm": [ + "9f165fb9b5aacf8f71043fd45ebbafecfacb619e", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-extension-038-ref.xht", + "/css/css-backgrounds/reference/order-of-images-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-extension-039.xht": [ - "0d0d310b09e6a75f26adf43f84e6f9c981a92883", + "scroll-positioned-multiple-background-images.html": [ + "a9ca550ce3dea2626de05bf31437a0a19aeedbce", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-extension-039-ref.xht", + "/css/css-backgrounds/reference/60x60-green-background.html", "==" ] ], {} ] ], - "metadatadisplay-schema-extension-040.xht": [ - "16a25a468a0c9054f4650d5cac6013904be89e2d", + "subpixel-repeat-no-repeat-mix.html": [ + "1828b974877c2dc780388f044126d0499cc5f9fb", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-extension-040-ref.xht", + "/css/css-backgrounds/reference/subpixel-repeat-no-repeat-mix-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-extension-041.xht": [ - "058bab9a4641a483c7ed7e475c07e1f77a87c3e2", + "table-cell-background-local-002.html": [ + "5398ce8eff737f3c808c0286958e426250b76c31", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-extension-041-ref.xht", + "/css/css-backgrounds/reference/table-cell-background-local-002-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-extension-042.xht": [ - "76f738771ba1885025f8d6aaa039f012f0bb33bd", + "table-cell-background-local-003.html": [ + "5641d3d41c0a8770feb120f2898df5262688ca6a", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-extension-042-ref.xht", + "/css/css-backgrounds/reference/table-cell-background-local-003-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 1, + 1 + ], + [ + 0, + 50 + ] + ] + ] + ] + } ] ], - "metadatadisplay-schema-extension-043.xht": [ - "c274ef4e5a61b71a9aa003265549b14c59417669", + "table-cell-background-local.html": [ + "e52aa26ef209dccb54f0362ca4a30964904ce7b0", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-extension-043-ref.xht", + "/css/css-backgrounds/table-cell-background-local-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-extension-044.xht": [ - "64bec35e7e565389b066cc439f2e50b227fe2753", + "ttwf-reftest-borderRadius.html": [ + "6950d17f27c50d1b54cefe1bc4342af74108955e", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-extension-044-ref.xht", + "/css/css-backgrounds/reference/ttwf-reftest-borderRadius-ref.html", "==" ] ], {} ] - ], - "metadatadisplay-schema-extension-045.xht": [ - "70e5f7c8873f50419d01967c9f163fd342ebc2a3", + ] + }, + "css-borders": { + "border-radius-greater-than-width.html": [ + "8c421a213bc2b6b1c5df705ee8e89f774cb81619", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-extension-045-ref.xht", + "/css/css-borders/reference/border-radius-greater-than-width-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-extension-046.xht": [ - "52537bd211aa8a259b51c7edba79e1f5fb79f8d0", + "borders-on-sub-unit-sized-elements.html": [ + "1aff3c9a6b22a8bbaebf8c6b91dfdcc8a6a08e44", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-extension-046-ref.xht", + "/css/css-borders/reference/borders-on-sub-unit-sized-elements-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-extension-047.xht": [ - "2324d27192726b94058a00b63daccff180af496f", + "subpixel-border-width.tentative.html": [ + "d056c01c914c88a239e8b6f0593a1b7dc4bf54dd", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-extension-047-ref.xht", + "/css/css-borders/reference/subpixel-border-width-ref.tentative.html", "==" ] ], {} ] ], - "metadatadisplay-schema-extension-048.xht": [ - "ada0e9db962478db0fe00c93ceeb76709f9cb761", + "subpixel-borders-with-child-border-box-sizing.html": [ + "0f469e4eb42a8bb9708897a7829c92403b92196d", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-extension-048-ref.xht", + "/css/css-borders/reference/subpixel-borders-with-child-border-box-sizing-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-extension-049.xht": [ - "345dec4a6767f52078ed168118bbbfcdac0d107d", + "subpixel-borders-with-child.html": [ + "4257983259f721041668178b41eda7161d385282", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-extension-049-ref.xht", + "/css/css-borders/reference/subpixel-borders-with-child-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-extension-050.xht": [ - "d9857d660218f1f965605307216664959afbc810", + "tentative": { + "border-radius-side-shorthands": { + "border-radius-side-shorthands-001.html": [ + "f85e288305862716657f1c7289837f2a2da6b728", + [ + null, + [ + [ + "/css/css-borders/reference/border-radius-side-shorthands-ref.html", + "==" + ] + ], + {} + ] + ], + "border-radius-side-shorthands-002.html": [ + "4a716041c4fe8b54da361cb293e5d4e86e9ee3e3", + [ + null, + [ + [ + "/css/css-borders/reference/border-radius-side-shorthands-ref.html", + "==" + ] + ], + {} + ] + ] + }, + "corner-shape": { + "corner-shape-angle-001.html": [ + "7ba0794c5a857d2430a6fc0f5689dbf6c883c0ad", + [ + null, + [ + [ + "/css/css-borders/reference/corner-shape-angle-ref.html", + "==" + ] + ], + {} + ] + ], + "corner-shape-angle-002.html": [ + "8c111cb6bd0130760f612abd54407c66982b3d31", + [ + null, + [ + [ + "/css/css-borders/reference/corner-shape-angle-ref.html", + "==" + ] + ], + {} + ] + ], + "corner-shape-angle-003.html": [ + "fa9f3ff64836c5424f5825ea99c890a4530875c5", + [ + null, + [ + [ + "/css/css-borders/reference/corner-shape-angle-ref.html", + "==" + ] + ], + {} + ] + ], + "corner-shape-angle-004.html": [ + "ee9d7d3b8924fbd7db37d687a3c514f418cea818", + [ + null, + [ + [ + "/css/css-borders/reference/corner-shape-angle-ref.html", + "==" + ] + ], + {} + ] + ], + "corner-shape-angle-bottom-001.html": [ + "1ffb03dd1a83be077ebe06f49fc3de4dc136101e", + [ + null, + [ + [ + "/css/css-borders/reference/corner-shape-angle-bottom-001-ref.html", + "==" + ] + ], + {} + ] + ], + "corner-shape-angle-bottom-left-001.html": [ + "6125dc2c4d577e47abf4c45ae65bd90ef3535b4a", + [ + null, + [ + [ + "/css/css-borders/reference/corner-shape-angle-bottom-left-001-ref.html", + "==" + ] + ], + {} + ] + ], + "corner-shape-angle-bottom-right-001.html": [ + "6e55000fd4ea49c4f3a6a2cc5d5c4c333f67ed56", + [ + null, + [ + [ + "/css/css-borders/reference/corner-shape-angle-bottom-right-ref.html", + "==" + ] + ], + {} + ] + ], + "corner-shape-angle-bottom-right-002.html": [ + "147752da234fee1d08790ad7cd99e71b8414cb04", + [ + null, + [ + [ + "/css/css-borders/reference/corner-shape-angle-bottom-right-ref.html", + "==" + ] + ], + {} + ] + ], + "corner-shape-angle-left-001.html": [ + "75f280175b0f1c3f97f8d0eb660515cf0d8175e6", + [ + null, + [ + [ + "/css/css-borders/reference/corner-shape-angle-left-001-ref.html", + "==" + ] + ], + {} + ] + ], + "corner-shape-angle-right-001.html": [ + "2f6ca76697c9a685d705f11875d62eeabc896960", + [ + null, + [ + [ + "/css/css-borders/reference/corner-shape-angle-right-001-ref.html", + "==" + ] + ], + {} + ] + ], + "corner-shape-angle-top-001.html": [ + "dd8226631022e41a739b7dcb443b76382e931924", + [ + null, + [ + [ + "/css/css-borders/reference/corner-shape-angle-top-001-ref.html", + "==" + ] + ], + {} + ] + ], + "corner-shape-angle-top-left-001.html": [ + "6f8c5ddb93b09033c00a0ba641c2af9fcc8bda9b", + [ + null, + [ + [ + "/css/css-borders/reference/corner-shape-angle-top-left-ref.html", + "==" + ] + ], + {} + ] + ], + "corner-shape-angle-top-left-002.html": [ + "34e2b68519681950e85c5ce309d3f3afee8b7cf7", + [ + null, + [ + [ + "/css/css-borders/reference/corner-shape-angle-top-left-ref.html", + "==" + ] + ], + {} + ] + ], + "corner-shape-angle-top-left-bottom-right-001.html": [ + "fefd25ca7515ff1d7e2a774bcdbefb7835ab3824", + [ + null, + [ + [ + "/css/css-borders/reference/corner-shape-angle-top-left-bottom-right-ref.html", + "==" + ] + ], + {} + ] + ], + "corner-shape-angle-top-left-bottom-right-002.html": [ + "c850f8d9b62cdbdab04ace49a4e95d354b913179", + [ + null, + [ + [ + "/css/css-borders/reference/corner-shape-angle-top-left-bottom-right-ref.html", + "==" + ] + ], + {} + ] + ], + "corner-shape-angle-top-left-bottom-right-003.html": [ + "73bed5ebdad02a5b892bb73ad627b846a5c88999", + [ + null, + [ + [ + "/css/css-borders/reference/corner-shape-angle-top-left-bottom-right-ref.html", + "==" + ] + ], + {} + ] + ], + "corner-shape-angle-top-right-001.html": [ + "9081efe556d0ea98810a3861bba2645a07bbb9db", + [ + null, + [ + [ + "/css/css-borders/reference/corner-shape-angle-top-right-001-ref.html", + "==" + ] + ], + {} + ] + ], + "corner-shape-angle-top-right-bottom-left-001.html": [ + "190d2e15d975d223c112b23673c138980b5253de", + [ + null, + [ + [ + "/css/css-borders/reference/corner-shape-angle-top-right-bottom-left-ref.html", + "==" + ] + ], + {} + ] + ], + "corner-shape-angle-top-right-bottom-left-002.html": [ + "51e5bd13a8873afdd820c7315ac8d8019927f413", + [ + null, + [ + [ + "/css/css-borders/reference/corner-shape-angle-top-right-bottom-left-ref.html", + "==" + ] + ], + {} + ] + ], + "corner-shape-angle-top-right-bottom-left-003.html": [ + "a2fc196249b6ba91bbf2695b69cd318ab0be4d36", + [ + null, + [ + [ + "/css/css-borders/reference/corner-shape-angle-top-right-bottom-left-ref.html", + "==" + ] + ], + {} + ] + ], + "corner-shape-round-bottom-left-001.html": [ + "33c982a057f6ccaa5ee85d35570cb11a5f750332", + [ + null, + [ + [ + "/css/css-borders/reference/corner-shape-round-bottom-left-001-ref.html", + "==" + ] + ], + {} + ] + ], + "corner-shape-round-bottom-right-001.html": [ + "720565d444262b29435fbad0a3858efabf299cca", + [ + null, + [ + [ + "/css/css-borders/reference/corner-shape-round-bottom-right-ref.html", + "==" + ] + ], + {} + ] + ], + "corner-shape-round-bottom-right-002.html": [ + "cc96662bc3b435e67050db0728d0267f54c3a084", + [ + null, + [ + [ + "/css/css-borders/reference/corner-shape-round-bottom-right-ref.html", + "==" + ] + ], + {} + ] + ], + "corner-shape-round-top-left-001.html": [ + "6e5c58bd4c3cf8ba9162fc1e600669faacc91b48", + [ + null, + [ + [ + "/css/css-borders/reference/corner-shape-round-top-left-ref.html", + "==" + ] + ], + {} + ] + ], + "corner-shape-round-top-left-002.html": [ + "11fe4be8fd027339e4969cb7fc636eb56474cf9a", + [ + null, + [ + [ + "/css/css-borders/reference/corner-shape-round-top-left-ref.html", + "==" + ] + ], + {} + ] + ], + "corner-shape-round-top-right-001.html": [ + "6115c934a489a09f258343a7796be8b220b6fed6", + [ + null, + [ + [ + "/css/css-borders/reference/corner-shape-round-top-right-001-ref.html", + "==" + ] + ], + {} + ] + ] + } + } + }, + "css-box": { + "margin-trim": { + "block-container-block-001.html": [ + "e31abec3678e39dd37339364a4c2977ed2adae30", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "block-container-block-002.html": [ + "399141b17e4dcabf718ad5f8133b71caaa8b36d9", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "block-container-block-end-001.html": [ + "fcee65692ce94ac94dd3e8fbf6f5db4d18bdd6c9", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "block-container-block-end-002.html": [ + "42d559fbe927761b98ca8a47167ca15e5afb78bc", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "block-container-block-end-collapsed-margins.html": [ + "81ac9e141e3baddf3ca1b20528e9b12e5c9a3154", + [ + null, + [ + [ + "/css/css-box/margin-trim/block-container-block-end-collapsed-margins-ref.html", + "==" + ] + ], + {} + ] + ], + "block-container-block-end-self-collapsing-item-has-larger-block-end.html": [ + "f5c6f16797075fb77f15e988529c5108881b415c", + [ + null, + [ + [ + "/css/css-box/margin-trim/block-container-block-end-self-collapsing-item-has-larger-block-end-ref.html", + "==" + ] + ], + {} + ] + ], + "block-container-block-end-self-collapsing-item-has-larger-block-start.html": [ + "b5f7bf048db11553ed2588548a030b92c2e74fd8", + [ + null, + [ + [ + "/css/css-box/margin-trim/block-container-block-end-self-collapsing-item-has-larger-block-start-ref.html", + "==" + ] + ], + {} + ] + ], + "block-container-block-start-001.html": [ + "c33c7f0abe5aa80c396f0050a47e4ea3c854e9dc", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "block-container-block-start-002.html": [ + "339c990d10edbae71ba9d60707157b9d748aea5a", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "block-container-block-start-collapsed-margins.html": [ + "35c5df82116e707f131f64944cb01aef73f0ea82", + [ + null, + [ + [ + "/css/css-box/margin-trim/block-container-block-start-collapsed-margins-ref.html", + "==" + ] + ], + {} + ] + ], + "block-container-block-start-self-collapsing-item-has-larger-block-end.html": [ + "6fab6732a876f73337bca95b2b04efc17a866253", + [ + null, + [ + [ + "/css/css-box/margin-trim/block-container-block-start-self-collapsing-item-has-larger-block-end-ref.html", + "==" + ] + ], + {} + ] + ], + "block-container-block-start-self-collapsing-item-larger-block-start.html": [ + "91919e22e07543d4d44d33bcc6f70b02916f10f0", + [ + null, + [ + [ + "/css/css-box/margin-trim/block-container-block-start-self-collapsing-item-larger-block-start-ref.html", + "==" + ] + ], + {} + ] + ], + "block-container-non-adjoining-item.html": [ + "215175418b834c74f99f66237aebdcd1b859776f", + [ + null, + [ + [ + "/css/css-box/margin-trim/block-container-non-adjoining-item-ref.html", + "==" + ] + ], + {} + ] + ], + "block-container-replaced-block-end.html": [ + "0225460b7b71f163cb22eea1b7c9b275b258b89f", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "block-container-replaced-block-start.html": [ + "10080c974f3b5a013f1a9cb87c55a85121058098", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "block-container-replaced-block.html": [ + "036066f6910e9e6043cc8ccb9267c56a861bef6e", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "flex-block-end-trimmed-only.html": [ + "0a99b3f308bb7f232a8295aa79ce40995ffd94c5", + [ + null, + [ + [ + "/css/css-box/margin-trim/flex-block-end-trimmed-only-ref.html", + "==" + ] + ], + {} + ] + ], + "flex-block-start-trimmed-only.html": [ + "5e867ea43d1ce873ac7984ce1a7271680540cf4c", + [ + null, + [ + [ + "/css/css-box/margin-trim/flex-block-start-trimmed-only-ref.html", + "==" + ] + ], + {} + ] + ], + "flex-block-trimmed-only.html": [ + "e73048282515e62bec6d9fc663df83b2ff8431c0", + [ + null, + [ + [ + "/css/css-box/margin-trim/flex-block-trimmed-only-ref.html", + "==" + ] + ], + {} + ] + ], + "flex-column-block-multiline.html": [ + "6536d7f00dfcbc7e6e80ad18731c0b69825176ce", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "flex-column-grow.html": [ + "62c55b2bfff07c019ea7e5292b0d81f407ca96be", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "flex-column-inline-multiline.html": [ + "25003aab08e8f383ac2fdd33963d5e5d5af9afd3", + [ + null, + [ + [ + "/css/css-box/margin-trim/flex-column-inline-multiline-ref.html", + "==" + ] + ], + {} + ] + ], + "flex-column-orthogonal-item.html": [ + "9f13e2ce71ca8255e1a16558633c45ecbd45cd73", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "flex-column-shrink.html": [ + "06395ff6d5e35cbe125f58bed7de482759a1ea70", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "flex-column-style-change-triggers-layout-block-end.html": [ + "80f2c62d233113a13b7dfa21627a81f999e1f3b5", + [ + null, + [ + [ + "/css/css-box/margin-trim/flex-column-style-change-triggers-layout-block-end-ref.html", + "==" + ] + ], + {} + ] + ], + "flex-column-style-change-triggers-layout-block-start.html": [ + "15bdcdaebc4a662b7b1bd78de076fcc3769d78df", + [ + null, + [ + [ + "/css/css-box/margin-trim/flex-column-style-change-triggers-layout-block-start-ref.html", + "==" + ] + ], + {} + ] + ], + "flex-column-style-change-triggers-layout-block.html": [ + "505f62ff2811157d52747a197ba0e0d168164311", + [ + null, + [ + [ + "/css/css-box/margin-trim/flex-column-style-change-triggers-layout-block-ref.html", + "==" + ] + ], + {} + ] + ], + "flex-inline-end-trimmed-only.html": [ + "33451daf30a9d0035529c53d40a8f2316109de3f", + [ + null, + [ + [ + "/css/css-box/margin-trim/flex-inline-end-trimmed-only-ref.html", + "==" + ] + ], + {} + ] + ], + "flex-inline-start-trimmed-only.html": [ + "05cf112e66adc4b1364b789b5697e89c8d0eb594", + [ + null, + [ + [ + "/css/css-box/margin-trim/flex-inline-start-trimmed-only-ref.html", + "==" + ] + ], + {} + ] + ], + "flex-inline-trimmed-only.html": [ + "637dc485afed7d29238ccb1e4b24e3d6bbff08a1", + [ + null, + [ + [ + "/css/css-box/margin-trim/flex-inline-trimmed-only-ref.html", + "==" + ] + ], + {} + ] + ], + "flex-row-block-multiline.html": [ + "c8fc788ca266e655c725d82c5f23160fbc7b5282", + [ + null, + [ + [ + "/css/css-box/margin-trim/flex-row-block-multiline-ref.html", + "==" + ] + ], + {} + ] + ], + "flex-row-grow.html": [ + "64395461cfd714e37a8dec5ff339f8fc343d3b59", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "flex-row-inline-multiline.html": [ + "d563373d50a1cad7542d60f5ec3880a13c5c7347", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "flex-row-orthogonal-item.html": [ + "3facc7450caa965d47fb05cfad558136931b51fb", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "flex-row-shrink.html": [ + "172c946cb4a004aa0f6146f674d5f53ee48b9db4", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "flex-row-style-change-triggers-layout-inline-end.html": [ + "c17e043548f5918eb30389f28406f6f7a74e8acb", + [ + null, + [ + [ + "/css/css-box/margin-trim/flex-row-style-change-triggers-layout-inline-end-ref.html", + "==" + ] + ], + {} + ] + ], + "flex-row-style-change-triggers-layout-inline-start.html": [ + "87118ff69878188808201dd1ded0256e44a65e05", + [ + null, + [ + [ + "/css/css-box/margin-trim/flex-row-style-change-triggers-layout-inline-start-ref.html", + "==" + ] + ], + {} + ] + ], + "flex-row-style-change-triggers-layout-inline.html": [ + "2e02643e58c5c69d4b9a8892cf465213f52bde18", + [ + null, + [ + [ + "/css/css-box/margin-trim/flex-row-style-change-triggers-layout-inline-ref.html", + "==" + ] + ], + {} + ] + ], + "flex-trim-all-margins.html": [ + "1c2eda8aa095978938005704200bf107a7716fb1", + [ + null, + [ + [ + "/css/css-box/margin-trim/flex-trim-all-margins-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-block-end.html": [ + "ffbc374756c22872c05e6c19d2a296a3cc8f0a1a", + [ + null, + [ + [ + "/css/css-box/margin-trim/grid-block-end-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-block-start.html": [ + "21d5447253581111503f95bb304107d0b70871d8", + [ + null, + [ + [ + "/css/css-box/margin-trim/grid-block-start-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-block.html": [ + "6a4c3bbc9466db04dc06e0d880e7d505d3f5ae82", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "grid-inline-end.html": [ + "3754a9b50aa189c52f32def4ca2f739b089e4003", + [ + null, + [ + [ + "/css/css-box/margin-trim/grid-inline-end-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-inline-start.html": [ + "e0f4c6d45467eed5ab4ba8d084c58632b231dd8e", + [ + null, + [ + [ + "/css/css-box/margin-trim/grid-inline-start-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-inline.html": [ + "1ac228296afaa9e8ef8437af4f62719796db6329", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "grid-trim-ignores-collapsed-tracks.html": [ + "15768ea7aa91425b12d9dee0dacd0eb83bf0cc91", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ] + } + }, + "css-break": { + "abspos-in-offset-relpos.html": [ + "b996c365866370715a39ebb8ae3ffbb4419e393a", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-extension-050-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "metadatadisplay-schema-license-001.xht": [ - "90b0a6a28b8402e6c992d7d88a305d743c0f0150", + "abspos-in-opacity-000.html": [ + "f41c0353630d41be14ee3d56e89b7796540db673", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-license-001-ref.xht", + "/css/css-break/abspos-in-opacity-000-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-license-002.xht": [ - "bf575cf6299aa4f07b315c296e0cd2ffe889fbc4", + "abspos-in-opacity-001.html": [ + "e81c55832175763d92a64da5b81b4fd0772b77be", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-license-002-ref.xht", + "/css/css-break/abspos-in-opacity-001-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-license-003.xht": [ - "5c767817bea10b054ec95c2907c91eaaed0dcb07", + "abspos-in-opacity-002.html": [ + "e6d61eacd1af3e34111013a44afca09d92fe1418", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-license-003-ref.xht", + "/css/reference/ref-filled-greenish-100px-square.html", "==" ] ], {} ] ], - "metadatadisplay-schema-license-004.xht": [ - "4f2ae4253a76b2b82aa895bd697d1fbf2189e1c2", + "abspos-in-opacity-003.html": [ + "13a1b31add5cb2c755dc6d36ee8e74a27de8a001", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-license-004-ref.xht", + "/css/reference/ref-filled-greenish-100px-square.html", "==" ] ], {} ] ], - "metadatadisplay-schema-license-005.xht": [ - "3f56ce888e653407e1279076775c537b01aea245", + "abspos-inside-relpos-inside-monolithic.html": [ + "879097f3fc2a7c933a1c2bea460beed1f6bc5e2b", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-license-005-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "metadatadisplay-schema-license-006.xht": [ - "22596e83f576f04cf660ec1abeb6572b8289aed2", + "avoid-border-break.html": [ + "56f47e83c57f0914b87910870d67d5490d9e4eb3", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-license-006-ref.xht", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "metadatadisplay-schema-license-007.xht": [ - "eb873685ce8a860351b693efbe1d3ff52fac2740", + "background-attachment-fixed.html": [ + "003873228d65166a7aadea0f5dec0702b94fab51", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-license-007-ref.xht", + "/css/css-break/background-attachment-fixed-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-license-008.xht": [ - "18cd6cbf256fcdf40aa23067071a2daa04117d8e", + "background-image-000.html": [ + "27e78dc21cf932b9fea8a10ce1c677ce5dad6be5", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-license-008-ref.xht", + "/css/css-break/background-image-000-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-license-009.xht": [ - "73abdbb47f60163d68d04a02c6e6525adf4a0b9f", + "background-image-001.html": [ + "aec44ef759399e37a7abda4bb8cf25010344aa94", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-license-009-ref.xht", + "/css/css-break/background-image-001-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-license-010.xht": [ - "9339b9b4682bbe9d5f9dfe092cb89d0435ccefce", + "background-image-002.html": [ + "50bf40f8b23138b1e8b6b9925f3d646e36d522e7", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-license-010-ref.xht", + "/css/css-break/background-image-002-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-license-011.xht": [ - "d8ef5814a9b95ba3a099ce6ce119f085be59c6ae", + "background-image-003.html": [ + "be36d998d6e59d985a1fab0598da407a7b4c8a11", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-license-011-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "metadatadisplay-schema-license-012.xht": [ - "e1667bf5868fe7daa65c396a43ad9f7bd9bc2848", + "become-unfragmented-001.html": [ + "df104fc494dfc3bd5070c04abf66becaea468a24", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-license-012-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "metadatadisplay-schema-license-013.xht": [ - "90eb0d1bfbe03e3a9e6a423d0e8e437b2f181ec6", + "block-end-aligned-abspos-nested.html": [ + "b74a28e7319bad9f70a404bb613513778f42615f", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-license-013-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "metadatadisplay-schema-license-014.xht": [ - "5b56279d1d6d789653366e2d0cc8cbc1bd887ca7", + "block-end-aligned-abspos-with-overflow.html": [ + "9000c6351384be8cec767405f7f7aecaf2223173", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-license-014-ref.xht", + "/css/css-break/block-end-aligned-abspos-with-overflow-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-license-015.xht": [ - "85b05c916b7fff45ab9227796638fed98dcb6b45", + "block-in-inline-000.html": [ + "ae9ee3421b4e0e2971a4ba41033d9368525c5289", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-license-015-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "metadatadisplay-schema-license-016.xht": [ - "ecd1714e53f59b9989b319081be5477e3156a1e4", + "block-in-inline-001.html": [ + "de967599fe30e7debf002fb1ba5858060882e5b5", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-license-016-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "metadatadisplay-schema-license-017.xht": [ - "e88ed7df9f073200516d43156da7783be3bf71ab", + "block-in-inline-002.html": [ + "c5e44c901c6ceda32d9f4fd81b0dc5608e43f7e8", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-license-017-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "metadatadisplay-schema-license-018.xht": [ - "9fa105cab23898e29a8c6ad96dcc73da89bb4c86", + "block-in-inline-003.html": [ + "a276fde583903efe83545a6bb147ecf3f7bb3b28", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-license-018-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "metadatadisplay-schema-license-019.xht": [ - "7de65f7497e8aedb660516b18383c85796bd3413", + "block-in-inline-004.html": [ + "338f4ad52ccb87ba5e164efda3a60cac82e9c82f", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-license-019-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "metadatadisplay-schema-license-020.xht": [ - "5c3fec390c03d5522a99f71c3243153adafdd8d8", + "block-in-inline-008.html": [ + "013cb8447e4e824874e439a1e7b213eeb78d54f7", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-license-020-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "metadatadisplay-schema-license-021.xht": [ - "d67b3bbc099df49a55362704b13f83cf4e04ce97", + "block-in-inline-009.html": [ + "0acb317464f847405df6f8061f5c23fd66eebb2f", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-license-021-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "metadatadisplay-schema-license-022.xht": [ - "f8c66b9a91a971bcc6f549f153f32509dcf70b75", + "block-in-inline-011.html": [ + "1906feffdd7d0a1f6301c3f7b89f250c5df21c1b", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-license-022-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "metadatadisplay-schema-license-023.xht": [ - "f8806db4f52d8cbfe9bfd5fea7efe723bcafc68d", + "block-max-height-001.html": [ + "acb4316d13eee6d791e8c27e5e1b8ab2be03e0ac", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-license-023-ref.xht", + "/css/css-break/block-max-height-001-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-license-024.xht": [ - "8c52881952b8f35de13cb58045bc707ed87c1dd7", + "block-max-height-001b.html": [ + "e24cea67b3d6e37b57858ecf54599076412b7cfa", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-license-024-ref.xht", + "/css/css-break/block-max-height-001b-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-license-025.xht": [ - "da200c0090e2bd459769996dc87a028e39ec011a", + "block-max-height-002.html": [ + "75aeb6229a90e62783852c2dcae1fe33d6ef6741", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-license-025-ref.xht", + "/css/css-break/block-max-height-001-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-license-026.xht": [ - "fc942a5263f0b5aa50bfd97aff6c9b611accac35", + "block-max-height-002b.html": [ + "cf8cc98eb5835619645d00ab41c2de14e0f6c961", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-license-026-ref.xht", + "/css/css-break/block-max-height-001b-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-license-027.xht": [ - "2f9a28f0825de8f88b475af0518e3726664418f9", + "block-max-height-003.html": [ + "c58bad29cac96aadf8bb9b003edccc00a7618846", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-license-027-ref.xht", + "/css/css-break/block-max-height-001-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-license-028.xht": [ - "30a802e57171a80c805972321bc4c493f9eebe5f", + "block-max-height-003b.html": [ + "019c290d71529c4bf8eb9f83c24a81921918faae", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-license-028-ref.xht", + "/css/css-break/block-max-height-001b-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-license-029.xht": [ - "425ce7aa3514ff9c204a6c91b1cbd2a973473b37", + "block-max-height-004.html": [ + "4ceb23a80bf0beb9032ee7567e034e27360157b1", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-license-029-ref.xht", + "/css/css-break/block-max-height-004-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-license-030.xht": [ - "512ba15511f0486678316715ecba2ddb66fbdb4e", + "block-min-height-001.html": [ + "47ceff763195d254b22dd8739e1a46b0168df50f", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-license-030-ref.xht", + "/css/css-break/block-min-height-001-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-license-031.xht": [ - "2ea71218b90c7a5348129b3a8f01d605222f35c0", + "block-min-height-001b.html": [ + "8ed26c5952646d78d43382ccd56b8cd94f5d2d0f", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-license-031-ref.xht", + "/css/css-break/block-min-height-001b-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-license-032.xht": [ - "d8c835bced287cebe909651114b9d9edfff8e305", + "border-image-000.html": [ + "a588830310daa17b5dfe6035e899b731ca79e4f6", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-license-032-ref.xht", + "/css/css-break/reference/border-image-000-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-license-033.xht": [ - "a1f8183bd556867f9941fb72dd279e48619c7b11", + "borders-000.html": [ + "7c79f4c0d405bf8342987c6e66b759f6937b4485", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-license-033-ref.xht", + "/css/css-break/borders-000-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-licensee-001.xht": [ - "fafc0d1a98271f789069fec314c0e5cde139e08e", + "borders-001.html": [ + "2fa8c8c96fc65eaadbc1ea5fedeb6f0313aa8816", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-licensee-001-ref.xht", + "/css/css-break/borders-001-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-licensee-002.xht": [ - "0c306cbb37b7f56b734669453c5c6efaf1788245", + "borders-002.html": [ + "b8bc3a4848b014d5ce293bd7f0a54a1765e2d96a", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-licensee-002-ref.xht", + "/css/css-break/borders-002-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-licensee-003.xht": [ - "fdbca2c53e5dea89b95c39de0cb6caffa21ae280", + "borders-003.html": [ + "f3d9410d0cd4672add12d370de7aa059d787aa83", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-licensee-003-ref.xht", + "/css/css-break/borders-003-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-licensee-004.xht": [ - "e58d013a3382f06c277544b191f92471d4d125fc", + "borders-004.html": [ + "5ffca58757e879887babdaad18c27145c5ddb468", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-licensee-004-ref.xht", + "/css/css-break/borders-004-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-licensee-005.xht": [ - "f4de99562c04fe6daa45562f9988b05074ff5847", + "borders-005.html": [ + "a96c4e42eccc4e01f6608333809aafab3b6003a4", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-licensee-005-ref.xht", + "/css/css-break/borders-005-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-licensee-006.xht": [ - "9d23323dbd8502288f3380d2d233690d07578c36", + "borders-006.html": [ + "a2c59f7b99702e88d1326c5a6f56e582243e5606", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-licensee-006-ref.xht", + "/css/css-break/borders-006-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-licensee-007.xht": [ - "474a9f2de2a04c0c6cca25bd18c08a616db97acf", + "borders-007.html": [ + "d7c5f0568ae59261b6051282c0119d52d7791430", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-licensee-007-ref.xht", + "/css/css-break/borders-007-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-licensee-008.xht": [ - "22d4d71414718aefe5c0023905b4a8e0870be756", + "box-decoration-break-clone-001.html": [ + "c247c9dbe09918fbf4e0f096687456fe859c1eb3", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-licensee-008-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "metadatadisplay-schema-licensee-009.xht": [ - "330c868ecd86581c69663cc0e6e37983b058e5ea", + "box-decoration-break-clone-002.html": [ + "8aff0d4a9472fe70df97f8c39a16700766db3e4d", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-licensee-009-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "metadatadisplay-schema-licensee-010.xht": [ - "5410ec57247401215f0e9a0f68b02a3a93ef797e", + "box-decoration-break-clone-003.html": [ + "702f01b4cb31975ca270ff99df09a8422630ee59", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-licensee-010-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "metadatadisplay-schema-metadata-001.xht": [ - "a89f58ec421f5a195cefceea74b47482d2772448", + "box-decoration-break-clone-004.html": [ + "d1840bfe96203496b1e31edf40c1b21f9d057636", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-metadata-001-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "metadatadisplay-schema-metadata-002.xht": [ - "591e5cc73c62276361bd03c679c3341a2444f4ce", + "box-decoration-break-clone-005.tentative.html": [ + "88ca6360f101d88e9d91c145ae2757539ca9e5aa", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-metadata-002-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "metadatadisplay-schema-metadata-003.xht": [ - "fe30a6a07fdc1c4ba4e6687a3c6137396fb1f143", + "box-decoration-break-clone-006.html": [ + "657f9f8442dcea268927b20ea0e9b4853912968f", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-metadata-003-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "metadatadisplay-schema-metadata-004.xht": [ - "148eaf597bcee1a2512ba6229d3f16e236c4bfb3", + "box-decoration-break-clone-007.html": [ + "f2855edaff8d729c1aa30f3e2bf503c9fc10c262", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-metadata-004-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "metadatadisplay-schema-metadata-005.xht": [ - "0e098d541be8b6c1d67f6f3d967199a7b9ac9503", + "box-decoration-break-clone-008.html": [ + "5f13231883515ef1e1f33906e9243c18d5b14c06", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-metadata-005-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "metadatadisplay-schema-metadata-006.xht": [ - "ddd56222b66bf6f86e5202ec6ea21efb82cc1b38", + "box-decoration-break-clone-009.html": [ + "1db904332aef57c46d406881ec70adbcf4a6a0ec", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-metadata-006-ref.xht", + "/css/css-break/box-decoration-break-clone-009-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-trademark-001.xht": [ - "2a5202470801e24a3a44dd7dbe5e3933d87320ca", + "box-decoration-break-clone-010.html": [ + "283ddb96ed46d94c10e25c711efb23e0d50cfef4", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-trademark-001-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "metadatadisplay-schema-trademark-002.xht": [ - "e060ebe1b171630bd676cad653bda06fa751fd53", + "box-decoration-break-clone-011.html": [ + "f4bea5092b389111016a056a06ed983b000989a4", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-trademark-002-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "metadatadisplay-schema-trademark-003.xht": [ - "38615df5dbd02390007973d5012d86a8243c87a5", + "box-decoration-break-clone-012.html": [ + "fb2b42f4d63590869937ecdd7b1d3e3d008ef918", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-trademark-003-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "metadatadisplay-schema-trademark-004.xht": [ - "951ee5f58e744cb8d4458b487e9f5f11fb9f7d9a", + "box-decoration-break-clone-013.html": [ + "5dea3757a80bb9e7f0239f470839d12a25cc039e", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-trademark-004-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "metadatadisplay-schema-trademark-005.xht": [ - "a27963ba62f9876ee142cc8fb5b2a0991b243986", + "box-decoration-break-clone-014.html": [ + "f6b17e48c0f01297bbb82fb5001352a1d0e7691f", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-trademark-005-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "metadatadisplay-schema-trademark-006.xht": [ - "352b7fc5a83a3706b7226b3d40795c683b0d91ef", + "box-decoration-break-clone-015.html": [ + "36751ef11aeea651dc859125ede70d8fd4b46448", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-trademark-006-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "metadatadisplay-schema-trademark-007.xht": [ - "c526e028be7b49d2624a96a8c0f52255c60207ae", + "box-decoration-break-clone-016.html": [ + "850e264f19143c3280695cfb5bbda87be04e1fca", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-trademark-007-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "metadatadisplay-schema-trademark-008.xht": [ - "fc6d3f5127543b6c3cb3a759f22605de1367aef1", + "box-decoration-break-clone-017.html": [ + "aad729907bfcbd8718d38f25799dad90c8aeae0e", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-trademark-008-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "metadatadisplay-schema-trademark-009.xht": [ - "1d2652cf8e1f72792ae00640594879ff888a5a47", + "box-decoration-break-clone-018.html": [ + "ae9811f7a27ffa6ca1fa249b7a3e03a3bf28973c", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-trademark-009-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "metadatadisplay-schema-trademark-010.xht": [ - "1b9b49525cd82fe4f50401eb3cbef926cb10d0ee", + "box-decoration-break-clone-019.html": [ + "55e1495f9c4b70ab50763af07435f1fe73ec21a5", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-trademark-010-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "metadatadisplay-schema-trademark-011.xht": [ - "190cd156f50b64af675de73a2553ec4550c2e45b", + "box-decoration-break-clone-020.html": [ + "2f24cf48e21cbe8e1af3d5faef6f4d6e50d6be28", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-trademark-011-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "metadatadisplay-schema-trademark-012.xht": [ - "781d63f40a64752ffc3b734475e3089e40858685", + "box-decoration-break-clone-021.html": [ + "825c25dbf52beaabdee9ae47b6fd3ffadc717118", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-trademark-012-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "metadatadisplay-schema-trademark-013.xht": [ - "a2c78fadc60df25e2b766ca72f38adab9c7b9294", + "box-decoration-break-clone-022.html": [ + "7250351fa08cfb86aba467d77238374563f9b7e4", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-trademark-013-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "metadatadisplay-schema-trademark-014.xht": [ - "59c9a2c2caffee403071d6d06ff3890585c97b3e", + "box-decoration-break-clone-023.html": [ + "90d397494681f7dc8aefd080ebb0f07b177b6d51", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-trademark-014-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "metadatadisplay-schema-trademark-015.xht": [ - "9fae1626ab3f813ea29a4e2c990e1fc83bb5121e", + "box-decoration-break-clone-024.html": [ + "a506f259dfe2d98c22910626137a701fa6974adb", [ - null, + "css/css-break/box-decoration-break-clone-024.html", [ [ - "/css/WOFF2/metadatadisplay-schema-trademark-015-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "metadatadisplay-schema-trademark-016.xht": [ - "de1a4e567910c22603444e6f11309cca1d82a3bb", + "box-decoration-break-clone-025.html": [ + "d1a787f6fd7d0cded0b4b847e7ee5a2bcd78d1ca", [ - null, + "css/css-break/box-decoration-break-clone-025.html", [ [ - "/css/WOFF2/metadatadisplay-schema-trademark-016-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "metadatadisplay-schema-trademark-017.xht": [ - "c8286248167427264dd852124e93ba4c6c6f967e", + "box-shadow-001.html": [ + "d35aeb682dcfcc77c41f8b09642b3481a4b7f39d", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-trademark-017-ref.xht", + "/css/css-break/box-shadow-001-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-trademark-018.xht": [ - "c9f3d971b4dca94421266ba8ecd2ca3a458f0e97", + "box-shadow-002.html": [ + "d26bb8c72e34e6a30f86b20bb0f45cfcc1ff9b6e", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-trademark-018-ref.xht", + "/css/css-break/box-shadow-002-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-trademark-019.xht": [ - "fd6b4739bbdf293a1af0d4e4d6d3679a31059c35", + "box-shadow-003.html": [ + "ba8fedfe1b7bab543d3c22b3ca1303869d2a2d1e", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-trademark-019-ref.xht", + "/css/css-break/box-shadow-003-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-trademark-020.xht": [ - "9540cf33968b7827f982c117f9564f18eee747c4", + "box-shadow-004.html": [ + "bdf66fcddd34c86e12e81c99d0c203d6a880a080", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-trademark-020-ref.xht", + "/css/css-break/box-shadow-004-ref.html", "==" ] ], {} ] ], - "metadatadisplay-schema-trademark-021.xht": [ - "3197f14ffd5a2cdb7fd1159ac318416d5d047dc5", + "br-clear-all.html": [ + "ac3a67ffd034ecb315c66da5682500dea47ee2d4", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-trademark-021-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "metadatadisplay-schema-trademark-022.xht": [ - "82b6bdc9a5c1663a339ef45992f10a0e9e9941ac", + "break-at-end-container-edge-000.html": [ + "4836f399de4fc8af657ff7729215ee7e89054798", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-trademark-022-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "metadatadisplay-schema-trademark-023.xht": [ - "e147b7d9d98703ac512c767b882b1ac93946655f", + "break-at-end-container-edge-001.html": [ + "d6d3374bc77bd4a920cb33273b9e38b5e80293f0", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-trademark-023-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "metadatadisplay-schema-trademark-024.xht": [ - "cb64cf6bc44c111fca3838a66bcd9e3391e73fb6", + "break-at-end-container-edge-002.html": [ + "0002a558a1e0a2f5b9b53fb72f1045782f75bc0d", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-trademark-024-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "metadatadisplay-schema-trademark-025.xht": [ - "a637413ac42faf9c0be3ae61295fb255651910f5", + "break-at-end-container-edge-003.html": [ + "aafe3975ee0640532d624cfdd7b5d8feab34ab9a", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-trademark-025-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "metadatadisplay-schema-trademark-026.xht": [ - "942a3a1ae28d7759ad85b298e6d8109d8551cf24", + "break-at-end-container-edge-004.html": [ + "c9d8b8fad5bf0ea4bb49fc65acc4a155dab62f25", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-trademark-026-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "metadatadisplay-schema-trademark-027.xht": [ - "913bd3dedb4d893405551e8bc299a3c8a5ca7ecd", + "break-between-avoid-000.html": [ + "4816be7ae7d5d2a0bc2ea736d8af6b91027b134d", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-trademark-027-ref.xht", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "metadatadisplay-schema-trademark-028.xht": [ - "4c87a166863b2cdf6207688b8423bf4d96f9d3d6", + "break-between-avoid-001.html": [ + "b26f04abaf4ae7bd27d635c719a8402106300690", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-trademark-028-ref.xht", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "metadatadisplay-schema-trademark-029.xht": [ - "e40eb5b9f63923bf75e75b56c629f5862672256e", + "break-between-avoid-002.html": [ + "14fa2c3832adb9ffa3caf0270ea48a9107a0a93a", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-trademark-029-ref.xht", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "metadatadisplay-schema-trademark-030.xht": [ - "13d44c9d23453e734cc0b403e42a58782e2976bb", + "break-between-avoid-003.html": [ + "de738d145ff5919eccdcea3aa924be92c51f26d8", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-trademark-030-ref.xht", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "metadatadisplay-schema-uniqueid-001.xht": [ - "1d1bad56903853fc9fa2e1ccc6ca5e7557d7dbbd", + "break-between-avoid-004.html": [ + "71545b76c03bf07b6075b1e358ab1dc597621e47", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-uniqueid-001-ref.xht", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "metadatadisplay-schema-uniqueid-002.xht": [ - "daa99d93f66182b294f4912c508f6bddb7e06a36", + "break-between-avoid-005.html": [ + "f42110a6c4eda93a78227b65dd5ad2ea8b2e110e", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-uniqueid-002-ref.xht", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "metadatadisplay-schema-uniqueid-003.xht": [ - "8b7d3dfa1caa9faaf88530c3da7de6b5e7b63302", + "break-between-avoid-006.html": [ + "91e05b5a9287e076517175fb421a2f37da21b34e", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-uniqueid-003-ref.xht", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "metadatadisplay-schema-uniqueid-005.xht": [ - "f1adddd355116a1730a44c572164f0156c1ab673", + "break-between-avoid-007.html": [ + "b39ea5e949520af0e61ba80f9febe7f71dbe62a6", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-uniqueid-005-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "metadatadisplay-schema-uniqueid-006.xht": [ - "8d80b0f6dab29b043770b4b1d49f32d17cc3a1bc", + "break-between-avoid-008.html": [ + "5fae4e10cbc7783f7a3f65d6a1da4c65b9e66c36", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-uniqueid-006-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "metadatadisplay-schema-uniqueid-007.xht": [ - "a51f490950bd7a5a93f47f018873dc77d2038782", + "break-between-avoid-009.html": [ + "d2e84f210a5d1030588c9da5d45e467c934893e8", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-uniqueid-007-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "metadatadisplay-schema-vendor-001.xht": [ - "086089fcd96e11a26e24d9c960e62efbc1b6fddf", + "break-between-avoid-010.html": [ + "f07017a64cabdb74b5f8e6a619b896d93fd7585e", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-vendor-001-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "metadatadisplay-schema-vendor-002.xht": [ - "f2dc70146f98e0ffbf3db7a0a7e8c62a71c77a1c", + "break-between-avoid-011.html": [ + "201677a2eac31a2ba2218988b61e434831e523bf", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-vendor-002-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "metadatadisplay-schema-vendor-003.xht": [ - "f6324eb4dca0d182cea6b1322087cf1eb17ca660", + "break-between-avoid-012.html": [ + "e92f6a986434e9e4af42a13c097f3493a25bef13", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-vendor-003-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "metadatadisplay-schema-vendor-004.xht": [ - "471ac25ae5ebc4dc4f4377fc960b5534377bc389", + "break-between-avoid-013.html": [ + "236b99e94eeca13930127066150968933030b531", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-vendor-004-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "metadatadisplay-schema-vendor-006.xht": [ - "88873b97008af627659f7a0f1652357e7f1f0017", + "break-between-avoid-014.html": [ + "91da7644835f5010ff0585f271930b9718e6ebc7", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-vendor-006-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "metadatadisplay-schema-vendor-007.xht": [ - "dcc4f519eec217933260f15d4854fffaa4d057df", + "break-between-force-000.html": [ + "9bccf7395e5a83f52bd743cb6021577a85833b5e", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-vendor-007-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "metadatadisplay-schema-vendor-008.xht": [ - "d8a4ea7f2e662c46d6f6af4e82a8956f283cd44d", + "break-between-force-001.html": [ + "8ea340b12230066cfedc0c21cf04551a13543e78", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-vendor-008-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "metadatadisplay-schema-vendor-009.xht": [ - "419f0aab4c63b5ba084ff34f8383dd363daeb478", + "break-between-force-002.html": [ + "7e3b79e4f1bcf06290d54961a8f330d47bebea1f", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-vendor-009-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "metadatadisplay-schema-vendor-010.xht": [ - "3a6ea34612e044817143fe6911e15bcbec8000e8", + "break-float-dynamic-001.html": [ + "f849b148fb6f9253c6f32dda72116a8066c287f8", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-vendor-010-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "metadatadisplay-schema-vendor-011.xht": [ - "acb06e79705d21aa85fad8155d2c4bc4299ac9f2", + "break-float-dynamic-002.html": [ + "93e30ff04eecd443d1abaa326980a1aaa70ca555", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-vendor-011-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "metadatadisplay-schema-vendor-012.xht": [ - "35fe1bf54a58a60c3080275a6ae1702b61a57fdb", + "break-inside-avoid-min-block-size-1.html": [ + "733aae58d6fffb3af0739cfa503fa802ee3e7735", [ null, [ [ - "/css/WOFF2/metadatadisplay-schema-vendor-012-ref.xht", + "/css/css-break/break-inside-avoid-min-block-size-1-ref.html", "==" ] ], {} ] ], - "metadatadisplay-well-formed-001.xht": [ - "e97bbbacca0b3d90f97fedd90dcd5ca1f79b6e67", + "break-inside-avoid-min-block-size-2.html": [ + "e7669d8ebe13ca5a7d161f9e27feb0dd26d6de09", [ null, [ [ - "/css/WOFF2/metadatadisplay-well-formed-001-ref.xht", + "/css/css-break/break-inside-avoid-min-block-size-2-ref.html", "==" ] ], {} ] ], - "metadatadisplay-well-formed-002.xht": [ - "16583b97bdd929cab9fa4ed72b59ac61745926e5", + "break-overflowed-block-dynamic-001.html": [ + "9afdab1d8b4021261ad0ccf51f5d2d487afee830", [ null, [ [ - "/css/WOFF2/metadatadisplay-well-formed-002-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "metadatadisplay-well-formed-003.xht": [ - "c7e45ae07b3d959c841b5bf4e9864e9d9a65c7b0", - [ - null, - [ - [ - "/css/WOFF2/metadatadisplay-well-formed-003-ref.xht", - "==" - ] - ], - {} - ] - ], - "metadatadisplay-well-formed-004.xht": [ - "5f04b21e794c533d335d9b3525a7a9491d055f28", - [ - null, - [ - [ - "/css/WOFF2/metadatadisplay-well-formed-004-ref.xht", - "==" - ] - ], - {} - ] - ], - "metadatadisplay-well-formed-005.xht": [ - "616e527521ae96f4dc4e88d9a22a52b7de619b55", - [ - null, - [ - [ - "/css/WOFF2/metadatadisplay-well-formed-005-ref.xht", - "==" - ] - ], - {} - ] - ], - "metadatadisplay-well-formed-006.xht": [ - "a245c0ed28c10fc142df44aa6efff5d17cca697a", - [ - null, - [ - [ - "/css/WOFF2/metadatadisplay-well-formed-006-ref.xht", - "==" - ] - ], - {} - ] - ], - "metadatadisplay-well-formed-007.xht": [ - "854cf67ef84e9f51383f272693d715332c199908", - [ - null, - [ - [ - "/css/WOFF2/metadatadisplay-well-formed-007-ref.xht", - "==" - ] - ], - {} - ] - ], - "privatedata-noeffect-001.xht": [ - "9a9cc04f684a249096661629de9389c5a4003d9f", - [ - null, - [ - [ - "/css/WOFF2/privatedata-noeffect-001-ref.xht", - "==" - ] - ], - {} - ] - ], - "privatedata-noeffect-002.xht": [ - "fbcd9beb2e7d876587abab2493b1b34e891bd549", - [ - null, - [ - [ - "/css/WOFF2/privatedata-noeffect-002-ref.xht", - "==" - ] - ], - {} - ] - ], - "tabledata-bad-origlength-loca-001.xht": [ - "d1f67828948a8138315d423be5018934fc72f7db", - [ - null, - [ - [ - "/css/WOFF2/tabledata-bad-origlength-loca-001-ref.xht", - "==" - ] - ], - {} - ] - ], - "tabledata-bad-origlength-loca-002.xht": [ - "f331212726d1ba3cb9f61bd2195eb854c0f5b5d5", - [ - null, - [ - [ - "/css/WOFF2/tabledata-bad-origlength-loca-002-ref.xht", - "==" - ] - ], - {} - ] - ], - "tabledata-brotli-001.xht": [ - "7be424a673abffd4564c3fb01d8db4261eae40f1", - [ - null, - [ - [ - "/css/WOFF2/tabledata-brotli-001-ref.xht", - "==" - ] - ], - {} - ] - ], - "tabledata-decompressed-length-001.xht": [ - "08bf25e55a44bf58837f26c475a6440b0c206740", - [ - null, - [ - [ - "/css/WOFF2/tabledata-decompressed-length-001-ref.xht", - "==" - ] - ], - {} - ] - ], - "tabledata-decompressed-length-002.xht": [ - "15271e73ce2a20791ecac8168bb768b2e9ca2f5a", + "change-block-background.html": [ + "48d33e39b467fab57e26628bd28de1915cc1ff9c", [ null, [ [ - "/css/WOFF2/tabledata-decompressed-length-002-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "tabledata-decompressed-length-003.xht": [ - "7406b6419ba04ca5dfca4011291ca49c10e1e14e", + "change-break-after.html": [ + "752a84ae7b264cfc286f03003d5d068409c507bb", [ null, [ [ - "/css/WOFF2/tabledata-decompressed-length-003-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "tabledata-decompressed-length-004.xht": [ - "b177e85e3ece331bc4ce94e31cdd6b22fc4b8384", + "change-break-after2.html": [ + "b35a187a29cb84bbe56200a31b61bafb1cb20b40", [ null, [ [ - "/css/WOFF2/tabledata-decompressed-length-004-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "tabledata-extraneous-data-001.xht": [ - "ca36fb2fd4fa76e4c6781443651600330c14c2c4", + "change-break-before.html": [ + "303a1fb00d691448ab238c9b52782a303af6056f", [ null, [ [ - "/css/WOFF2/tabledata-extraneous-data-001-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "tabledata-glyf-bbox-001.xht": [ - "fc6cb7a45eb591ac9e0a1f410d94ec2b4aed8778", + "change-break-inside.html": [ + "e7b7047984a3c71b959bb81766bef79772a3da2e", [ null, [ [ - "/css/WOFF2/tabledata-glyf-bbox-001-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "tabledata-glyf-bbox-002.xht": [ - "90b485e40d53f9c7944acb4b028b23e2eb260d4b", + "change-inline-color.html": [ + "9da2c8e8f85a28c3a7c93c5c974e55557c307c36", [ null, [ [ - "/css/WOFF2/tabledata-glyf-bbox-002-ref.xht", + "/css/css-break/change-inline-color-ref.html", "==" ] ], {} ] ], - "tabledata-glyf-bbox-003.xht": [ - "40da4df20628dec6b29acb1d45719c47d61b7e1d", + "class-c-breakpoint-after-float-000.html": [ + "46880977bbbb1bdf7837a25f11f4348d7c651032", [ null, [ [ - "/css/WOFF2/tabledata-glyf-bbox-003-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "tabledata-glyf-origlength-001.xht": [ - "b5b8e24848e529a20ebd9f3f7b6a904a42eb5c9c", + "class-c-breakpoint-after-float-001.html": [ + "be675ccf48727ac5851b7528497c7db05cf56aea", [ null, [ [ - "/css/WOFF2/tabledata-glyf-origlength-001-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "tabledata-glyf-origlength-002.xht": [ - "c3857334be72f216f056192b45b834372ab0bb39", + "class-c-breakpoint-after-float-002.html": [ + "110b4e7e1af5f98caed40c6fc34d3154911bba6c", [ null, [ [ - "/css/WOFF2/tabledata-glyf-origlength-002-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "tabledata-glyf-origlength-003.xht": [ - "e2e339c29e03adeec9af05c4d9ba449d2aeb756b", + "class-c-breakpoint-after-float-003.html": [ + "0923e1ac9e344cfd2216a405c8c26b88d86e363e", [ null, [ [ - "/css/WOFF2/tabledata-glyf-origlength-003-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "tabledata-non-zero-loca-001.xht": [ - "21164679d6850d515701a1a14e8031849a7ee172", + "class-c-breakpoint-after-float-004.html": [ + "30cdc56db7dc2d971326babc783cbf2b1288a85a", [ null, [ [ - "/css/WOFF2/tabledata-non-zero-loca-001-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "tabledata-recontruct-loca-001.xht": [ - "913cd528eb9bcf02e0c0715af16185441e8c733d", + "clearance-parallel-flow-001.html": [ + "f7acd7f4f087d4de36b6e64ee8a372d6f057306a", [ null, [ [ - "/css/WOFF2/tabledata-recontruct-loca-001-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "tabledata-transform-bad-flag-001.xht": [ - "0f3968fbaa1de17d1a49a102e04fc4757bc1f78a", + "clearance-parallel-flow-002.html": [ + "a2367e0dde3d0ea563e304c80137a63623793f83", [ null, [ [ - "/css/WOFF2/tabledata-transform-bad-flag-001-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "tabledata-transform-bad-flag-002.xht": [ - "9ff041c12c304b33db22d3191f53f15c79b39731", + "clearance-self-collapsing-past-fragmented-float.html": [ + "14445edc463ed0ed1a8e629abdce768411cbc97d", [ null, [ [ - "/css/WOFF2/tabledata-transform-bad-flag-002-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "tabledata-transform-hmtx-001.xht": [ - "75b5f3f5462056e686a91ea0be7cc9ff7b63f97e", + "clipping-001.html": [ + "da15ec7a2e383b34570130e24bf1707423dd12a1", [ null, [ [ - "/css/WOFF2/tabledata-transform-hmtx-001-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "tabledata-transform-hmtx-002.xht": [ - "5d047cb59c17c1ff959fb5975beade4973e37ac9", + "clipping-002.html": [ + "e1f2c4e1c6bbe3b455c223c8c617f2f33237ccd8", [ null, [ [ - "/css/WOFF2/tabledata-transform-hmtx-002-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "tabledata-transform-hmtx-003.xht": [ - "b2b6731f89e96ebda25bd23e0208755a19650734", + "contain-strict-with-opacity-and-oof.html": [ + "b3323a60c75247249f4494834bbf2b57dda172d4", [ null, [ [ - "/css/WOFF2/tabledata-transform-hmtx-003-ref.xht", + "/css/css-break/contain-strict-with-opacity-and-oof-ref.html", "==" ] ], {} ] ], - "tabledata-transform-hmtx-004.xht": [ - "184303c6e2df1aee62e5f2624111d27582dbf4ed", + "fieldset-001.html": [ + "d320fe15bebcfbdd332ee9411b548dab60f8fba6", [ null, [ [ - "/css/WOFF2/tabledata-transform-hmtx-004-ref.xht", + "/css/css-break/fieldset-001-ref.html", "==" ] ], {} ] ], - "valid-001.xht": [ - "ed85515cba9bb9545c2473f15251eae01ef1f1be", + "fieldset-002.html": [ + "9331b81b11979d562da007dae98a7af0f8f184a4", [ null, [ [ - "/css/WOFF2/valid-001-ref.xht", + "/css/css-break/fieldset-002-ref.html", "==" ] ], {} ] ], - "valid-002.xht": [ - "7e09c2a9b1751f60f3e1df15b5a0013cfa435f59", + "fieldset-003.html": [ + "dbf69a403481124f3b1022f1470c14eae789f888", [ null, [ [ - "/css/WOFF2/valid-002-ref.xht", + "/css/css-break/fieldset-003-ref.html", "==" ] ], {} ] ], - "valid-003.xht": [ - "0151c028a1c0c841071c39cbe798712f014cc5de", + "fieldset-004.html": [ + "4b49e6a594636a405d9f7037779e385cd0c73d9b", [ null, [ [ - "/css/WOFF2/valid-003-ref.xht", + "/css/css-break/fieldset-004-ref.html", "==" ] ], {} ] ], - "valid-004.xht": [ - "2ea190b960ad6499d3a6a1be81aeeeb056ef6fb5", + "fieldset-005.html": [ + "814e4d33c57c4bc97aae0b328a041a4b66b660fb", [ null, [ [ - "/css/WOFF2/valid-004-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "valid-005.xht": [ - "713b25b19d6c614904c9c6a1b8a93d4d114a165d", + "fieldset-006.html": [ + "b642a870e85d6234b9de48b8a93266be00fe1284", [ null, [ [ - "/css/WOFF2/valid-005-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "valid-006.xht": [ - "b50a9f38806210e3ba6df8a952e26a7be7851784", + "fieldset-007.html": [ + "37bd1ac2e58275e97a4f31f1b89a4ae50aea7ae9", [ null, [ [ - "/css/WOFF2/valid-006-ref.xht", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "valid-007.xht": [ - "7c23d1e399dc5984d8b57698010232f01256ed2d", + "fieldset.html": [ + "fe76988293b8d1d9a6226b23bb9b40e86fcc007a", [ null, [ [ - "/css/WOFF2/valid-007-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "valid-008.xht": [ - "a3892510ee38abb8580913be43adbbbaf5c44aef", - [ - null, - [ - [ - "/css/WOFF2/valid-008-ref.xht", - "==" - ] - ], - {} - ] - ] - }, - "compositing": { - "background-blending": { - "background-blend-mode-gradient-image.html": [ - "986fcda9ac86ac83ae9f49b7b13f0ba41c2a58f4", + "flexbox": { + "flex-container-fragmentation-001.html": [ + "2076de1e0b22f54eb24753baeb12e74b5e89feac", [ null, [ [ - "/css/compositing/background-blending/reference/background-blend-mode-gradient-image-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "background-blend-mode-plus-lighter.html": [ - "bb237b38b314daacb627f10d006faee672cb05ae", + "flex-container-fragmentation-002.html": [ + "91ebe6d6cd8cf42b40be0a9db1a16c0a2a20d062", [ null, [ [ - "/css/compositing/background-blending/reference/background-blend-mode-plus-lighter-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 1 - ], - [ - 0, - 4294967295 - ] - ] - ] - ] - } + {} ] - ] - }, - "mix-blend-mode": { - "mix-blend-mode-animation.html": [ - "55618485d880d20668e7ab9d1379ef8792af5fe2", + ], + "flex-container-fragmentation-003.html": [ + "d1d192f9c19b0934d319149e142fdb037cfd0fd6", [ null, [ [ - "/css/compositing/mix-blend-mode/reference/mix-blend-mode-animation-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 2 - ], - [ - 0, - 11000 - ] - ] - ] - ] - } + {} ] ], - "mix-blend-mode-blended-element-interposed.html": [ - "768352de020801eb6294d4844ca824d271d859d2", + "flex-container-fragmentation-004.html": [ + "dffce5a19c6138d29614c4f98606d44896df708c", [ null, [ [ - "/css/compositing/mix-blend-mode/reference/green-square.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 1 - ], - [ - 0, - 10 - ] - ] - ] - ] - } + {} ] ], - "mix-blend-mode-blended-element-overflow-hidden-and-border-radius.html": [ - "305e0e2e0c131a672b427438784b34849f8552be", + "flex-container-fragmentation-005.html": [ + "d8b1e30934227d16153be3a0083a87dba45e7c02", [ null, [ [ - "/css/compositing/mix-blend-mode/reference/mix-blend-mode-blended-element-overflow-hidden-and-border-radius-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 10 - ], - [ - 0, - 5 - ] - ] - ] - ] - } + {} ] ], - "mix-blend-mode-blended-element-overflow-scroll.html": [ - "8952b39452846b28aa34f79408ec37458440b96b", + "flex-container-fragmentation-006.html": [ + "171c981c24f73d2604ae179dc277167917cc1a5d", [ null, [ [ - "/css/compositing/mix-blend-mode/reference/mix-blend-mode-blended-element-overflow-scroll-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "mix-blend-mode-blended-element-with-transparent-pixels.html": [ - "6fd3a8bad755f7ec4fe50d6a03fb299282e199f3", + "flex-container-fragmentation-007.tentative.html": [ + "62bcf82bb782b4ce114ab10f322b71903423af32", [ null, [ [ - "/css/compositing/mix-blend-mode/reference/mix-blend-mode-blended-element-with-transparent-pixels-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "mix-blend-mode-blended-with-3D-transform.html": [ - "1739e0138248a103b9c7632b4ac719a370469e53", + "flex-container-fragmentation-008.html": [ + "b9fd1aa2ff51e75b849203819e3561eb604221cc", [ null, [ [ - "/css/compositing/mix-blend-mode/reference/mix-blend-mode-blended-with-3D-transform-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 255 - ], - [ - 0, - 350 - ] - ] - ] - ] - } + {} ] ], - "mix-blend-mode-blended-with-transform-and-perspective.html": [ - "46189afc581a56160d1dcc931854f78c9da411a5", + "flex-container-fragmentation-009.html": [ + "f4032458c9974912b44c08e97f80d2479efca2d4", [ null, [ [ - "/css/compositing/mix-blend-mode/reference/mix-blend-mode-blended-with-transform-and-perspective-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "mix-blend-mode-blending-with-sibling.html": [ - "80f197c40bcc4b07e60074afd1e6eb5389631052", + "flex-container-fragmentation-010.html": [ + "9a1f4026ec91da535bdc196907c1ec9171bc4883", [ null, [ [ - "/css/compositing/mix-blend-mode/reference/green-square.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "mix-blend-mode-border-image.html": [ - "7309e37372cf1abe913cfc5521c6f4b77c6a523a", + "flex-container-fragmentation-011.html": [ + "b4058558ff463714f74db1fc7ffadda50dd07b9b", [ null, [ [ - "/css/compositing/mix-blend-mode/reference/mix-blend-mode-border-image-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "mix-blend-mode-both-parent-and-blended-with-3D-transform.html": [ - "59fca74f8409f7288ff64f0828cb6c1c417e2a97", + "flex-fragmented-with-float-descendant-001.html": [ + "f4cb7a842435fa820cc7bfbd4708709d9b2578d9", [ null, [ [ - "/css/compositing/mix-blend-mode/reference/mix-blend-mode-both-parent-and-blended-with-3D-transform-ref.html", + "/css/css-break/flexbox/flex-fragmented-with-float-descendant-001-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 128 - ], - [ - 0, - 1000 - ] - ] - ] - ] - } + {} ] ], - "mix-blend-mode-canvas-parent.html": [ - "5107207e36022d5ea51c49f482a2980a1dbfd962", + "flex-item-content-overflow-001a.html": [ + "0b8074e03b9958a0fb049cd70a3e551e0f2305a0", [ null, [ [ - "/css/compositing/mix-blend-mode/reference/mix-blend-mode-canvas-parent-ref.html", + "/css/css-break/flexbox/flex-item-content-overflow-001-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 1 - ], - [ - 0, - 10 - ] - ] - ] - ] - } + {} ] ], - "mix-blend-mode-canvas-sibling.html": [ - "2ecffbf51e261f248f21e61fc496d9f62fbb98a6", + "flex-item-content-overflow-001b.html": [ + "50f958614ce845e99a67f94899bcaa01cea31d85", [ null, [ [ - "/css/compositing/mix-blend-mode/reference/mix-blend-mode-canvas-sibling-ref.html", + "/css/css-break/flexbox/flex-item-content-overflow-001-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 1 - ], - [ - 0, - 10 - ] - ] - ] - ] - } + {} ] ], - "mix-blend-mode-filter.html": [ - "d95866f839e5703b51aeadaa653cd886dc15ea08", + "flex-item-content-overflow-002a.html": [ + "18e659dd3e292ebc13a73aba5e0f88d5126436e2", [ null, [ [ - "/css/compositing/mix-blend-mode/reference/mix-blend-mode-filter-ref.html", + "/css/css-break/flexbox/flex-item-content-overflow-001-ref.html", "==" ] ], {} ] ], - "mix-blend-mode-iframe-parent.html": [ - "a24a5f933ee8d59683bea528ced3d2dbac1c79af", + "flex-item-content-overflow-002b.html": [ + "af985b2aa2ea1953d50d237cc30d14afed16aa26", [ null, [ [ - "/css/compositing/mix-blend-mode/reference/mix-blend-mode-iframe-parent-ref.html", + "/css/css-break/flexbox/flex-item-content-overflow-001-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 1 - ], - [ - 0, - 10 - ] - ] - ] - ] - } + {} ] ], - "mix-blend-mode-iframe-sibling.html": [ - "d1a5518b8c83d4009e260c90ebd2390ce480adc9", + "flex-item-content-overflow-003.html": [ + "d3a5b976ccd3fa0dc972b7b61b4a37ba9365e442", [ null, [ [ - "/css/compositing/mix-blend-mode/reference/mix-blend-mode-iframe-sibling-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 1 - ], - [ - 0, - 10 - ] - ] - ] - ] - } + {} ] ], - "mix-blend-mode-image.html": [ - "bd0ef8eb7c241adf143363bbf501b42a6b0259d1", + "increase-fragmentainer-size-flex-item-trailing-margin.html": [ + "94845449fbf185b2004cc532ecb401eab4e4221d", [ null, [ [ - "/css/compositing/mix-blend-mode/reference/mix-blend-mode-image-notref.html", - "!=" + "/css/reference/ref-filled-green-100px-square.xht", + "==" ] ], {} ] ], - "mix-blend-mode-intermediate-element-overflow-hidden-and-border-radius.html": [ - "831747382105bc6ac83c53cd4ef3ceaef9c03b07", + "monolithic-overflow-001.tentative.html": [ + "1171485181359f84e0f25ecda21b9655f5e0493a", [ null, [ [ - "/css/compositing/mix-blend-mode/reference/mix-blend-mode-intermediate-element-overflow-hidden-and-border-radius-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 10 - ], - [ - 0, - 50 - ] - ] - ] - ] - } + {} ] ], - "mix-blend-mode-mask.html": [ - "2a7072febbe6587310af568f73d1edcf8f959efc", + "monolithic-overflow-002.tentative.html": [ + "298f749a8d727784a4c452d4de02a661aecbe6bf", [ null, [ [ - "/css/compositing/mix-blend-mode/reference/mix-blend-mode-mask-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 1 - ], - [ - 0, - 10 - ] - ] - ] - ] - } + {} ] ], - "mix-blend-mode-overflowing-child-of-blended-element.html": [ - "8096cf7f3df0091a04977d481a9306ea583e1155", + "monolithic-overflow-003.tentative.html": [ + "ed223e809fb7e36e830dd83eafec350b8d4ae577", [ null, [ [ - "/css/compositing/mix-blend-mode/reference/mix-blend-mode-blended-element-with-transparent-pixels-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "mix-blend-mode-overflowing-child.html": [ - "de808bab0bdbc6ed81571420966452bf30f03ac4", + "monolithic-overflow-004.tentative.html": [ + "ed7fea725c6261e4d34cc0e9686c315e6ab7464b", [ null, [ [ - "/css/compositing/mix-blend-mode/reference/mix-blend-mode-overflowing-child-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "mix-blend-mode-paragraph-background-image.html": [ - "51744dc7838937e06a6b4cc8436108f52cd71bc5", + "multi-line-column-flex-fragmentation-001.html": [ + "9f064d4ae40ea9e98f0b1a18c5b8fc143bbb6027", [ null, [ [ - "/css/compositing/mix-blend-mode/reference/mix-blend-mode-paragraph-background-image-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 1 - ], - [ - 0, - 10 - ] - ] - ] - ] - } + {} ] ], - "mix-blend-mode-paragraph.html": [ - "e0f4e383a56fc110f0323d8d2a7a09fb6be5fed5", + "multi-line-column-flex-fragmentation-002.html": [ + "ea8190173f361baca5d89cd36f409c79f403c566", [ null, [ [ - "/css/compositing/mix-blend-mode/reference/mix-blend-mode-paragraph-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 1 - ], - [ - 0, - 10 - ] - ] - ] - ] - } + {} ] ], - "mix-blend-mode-parent-element-overflow-hidden-and-border-radius.html": [ - "840d2626bc1d350a478369dff0626f2b78830099", + "multi-line-column-flex-fragmentation-003.html": [ + "eb00937ea41e54978f2be986945b9312e9d5a376", [ null, [ [ - "/css/compositing/mix-blend-mode/reference/mix-blend-mode-parent-element-overflow-hidden-and-border-radius-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 128 - ], - [ - 0, - 400 - ] - ] - ] - ] - } + {} ] ], - "mix-blend-mode-parent-element-overflow-scroll-blended-position-fixed.html": [ - "5b0c2468343175e3986616b1c72cb2ad0ecdf13f", + "multi-line-column-flex-fragmentation-004.html": [ + "71e29df7f3d9c0a9ea95db15093ce909b5f3cf34", [ null, [ [ - "/css/compositing/mix-blend-mode/reference/mix-blend-mode-parent-element-overflow-scroll-blended-position-fixed-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "mix-blend-mode-parent-element-overflow-scroll.html": [ - "81c110c496dc8572e2ecfcd87b3eb1b361464efa", + "multi-line-column-flex-fragmentation-005.html": [ + "a713943ee719ae5da35e202199efa0f2f32acf34", [ null, [ [ - "/css/compositing/mix-blend-mode/reference/mix-blend-mode-parent-element-overflow-scroll-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "mix-blend-mode-parent-with-3D-transform.html": [ - "d2175cfbd9f167960efb5358727859f01e1b8980", + "multi-line-column-flex-fragmentation-006.html": [ + "f3936040bb4b03ed1162bf1f18ed030aaa0cd7eb", [ null, [ [ - "/css/compositing/mix-blend-mode/reference/mix-blend-mode-parent-with-3D-transform-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "mix-blend-mode-parent-with-border-radius.html": [ - "e6562706d8ead518619f01c58b2dfe12bc350e9c", + "multi-line-column-flex-fragmentation-007.html": [ + "e5602f0bb6020054a60c0bacc62d66abcd5ea916", [ null, [ [ - "/css/compositing/mix-blend-mode/reference/mix-blend-mode-parent-with-border-radius-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 5 - ], - [ - 0, - 200 - ] - ] - ] - ] - } + {} ] ], - "mix-blend-mode-parent-with-text.html": [ - "274bebe539f054f041d9eeadfe53ecaf5cd81bce", + "multi-line-column-flex-fragmentation-008.html": [ + "9d4f0a6f615f7ca18c55217100198d1661909f76", [ null, [ [ - "/css/compositing/mix-blend-mode/reference/mix-blend-mode-parent-with-text-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 1 - ], - [ - 0, - 10 - ] - ] - ] - ] - } + {} ] ], - "mix-blend-mode-plus-lighter-basic.html": [ - "fcf2d172afd6b1ebc99f64021a66a548d5b1f1fd", + "multi-line-column-flex-fragmentation-009.html": [ + "8e4ae4e19615a340d8963e214f1137077dba4069", [ null, [ [ - "/css/compositing/mix-blend-mode/reference/mix-blend-mode-plus-lighter-basic-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "mix-blend-mode-plus-lighter-svg-basic.html": [ - "c7c3ae9b97747081a0f7880bea6b4b312b19bc01", + "multi-line-column-flex-fragmentation-010.html": [ + "98008eec4e38da034acc01231c67b7b4ac98a38b", [ null, [ [ - "/css/compositing/mix-blend-mode/reference/mix-blend-mode-plus-lighter-svg-basic-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "mix-blend-mode-plus-lighter-svg.html": [ - "630dcd777b811b9664b09b610348f42d94eb29e3", + "multi-line-column-flex-fragmentation-011.html": [ + "c3fbd41fcaafb10d089a01d90bb25c7946afd0a9", [ null, [ [ - "/css/compositing/mix-blend-mode/reference/mix-blend-mode-plus-lighter-svg-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 1 - ], - [ - 0, - 4294967295 - ] - ] - ] - ] - } + {} ] ], - "mix-blend-mode-plus-lighter.html": [ - "86bf1cc3f4f981ac3385ad62c04f43737f1454f5", + "multi-line-column-flex-fragmentation-012.html": [ + "7552a741857a07e94878e495da1118438725110e", [ null, [ [ - "/css/compositing/mix-blend-mode/reference/mix-blend-mode-plus-lighter-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 1 - ], - [ - 0, - 4294967295 - ] - ] - ] - ] - } + {} ] ], - "mix-blend-mode-root-element-group.html": [ - "8a190b928174c7ab77b029e24e169116a5355f0c", + "multi-line-column-flex-fragmentation-013.html": [ + "ed739947e3d754b2f331d3a9a3dae6f327f559f4", [ - "css/compositing/mix-blend-mode/mix-blend-mode-root-element-group.html", + null, [ [ - "/css/compositing/mix-blend-mode/mix-blend-mode-root-element-group-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "mix-blend-mode-rotated-clip.html": [ - "63db5cbbe1ea1d043e6efbbfad5d654990eda596", + "multi-line-column-flex-fragmentation-014.html": [ + "bcc32dd9ba9a10fb71ac2ea51a78c6d983993d09", [ null, [ [ - "/css/compositing/mix-blend-mode/reference/mix-blend-mode-rotated-clip-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 1 - ], - [ - 0, - 30 - ] - ] - ] - ] - } + {} ] ], - "mix-blend-mode-script.html": [ - "e842d0b39568019c0c8a4162780aa56779208ae1", + "multi-line-column-flex-fragmentation-015.html": [ + "563f3663c38259aea6e245c53e24077f6e6d45ef", [ null, [ [ - "/css/compositing/mix-blend-mode/reference/mix-blend-mode-script-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 1 - ], - [ - 0, - 10 - ] - ] - ] - ] - } + {} ] ], - "mix-blend-mode-sibling-with-3D-transform.html": [ - "a9a9d1bd2567229cd8b37a08f8088bc87209ab62", + "multi-line-column-flex-fragmentation-016.html": [ + "e81ad10e037e4bc4208bfdf3eae72ea9b98b8adc", [ null, [ [ - "/css/compositing/mix-blend-mode/reference/mix-blend-mode-sibling-with-3D-transform-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "mix-blend-mode-simple.html": [ - "b00f81694ed8443f1d0932c2207f5fb1399fea98", + "multi-line-column-flex-fragmentation-017.html": [ + "070b0d6e854f631743fb77522b0fc5d4ea2ac72e", [ null, [ [ - "/css/compositing/mix-blend-mode/reference/green-square.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 1 - ], - [ - 0, - 10 - ] - ] - ] - ] - } + {} ] ], - "mix-blend-mode-stacking-context-001.html": [ - "6fc7c21f33b6f47fdda547c02e8ee4276d3250bd", + "multi-line-column-flex-fragmentation-018.html": [ + "a491dfac810a6a4e4dc4ee9668b5e55b90e87e54", [ null, [ [ - "/css/compositing/mix-blend-mode/reference/mix-blend-mode-stacking-context-001-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "mix-blend-mode-stacking-context-creates-isolation.html": [ - "79edf0f0908731949e8005f699f09ed1b3ceed69", + "multi-line-column-flex-fragmentation-019.html": [ + "414326a5815a6a34bcaf04ff274ec8d331c17c99", [ null, [ [ - "/css/compositing/mix-blend-mode/reference/mix-blend-mode-stacking-context-creates-isolation-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "mix-blend-mode-svg.html": [ - "b7b9f89e9253644cdcd42f265031763150b87bcd", + "multi-line-column-flex-fragmentation-020.html": [ + "18030dd0025679163fb9103918bb99aadf75ff17", [ null, [ [ - "/css/compositing/mix-blend-mode/reference/mix-blend-mode-svg-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 1 - ], - [ - 0, - 10 - ] - ] - ] - ] - } + {} ] ], - "mix-blend-mode-video-sibling.html": [ - "87d7d1eac61c25ec02080d04fe905dc00a2b5d46", + "multi-line-column-flex-fragmentation-021.html": [ + "833da1afce4d57a9c0644d962d3e7b014c93a93b", [ null, [ [ - "/css/compositing/mix-blend-mode/reference/mix-blend-mode-video-sibling-notref.html", - "!=" + "/css/reference/ref-filled-green-100px-square.xht", + "==" ] ], {} ] ], - "mix-blend-mode-video.html": [ - "298ba990804e458e1b661628129267f81b5983db", + "multi-line-column-flex-fragmentation-022.html": [ + "60f543b5d12e466352feb63467a9f16c16b3e75b", [ null, [ [ - "/css/compositing/mix-blend-mode/reference/mix-blend-mode-video-notref.html", - "!=" + "/css/reference/ref-filled-green-100px-square.xht", + "==" ] ], {} ] ], - "mix-blend-mode-with-transform-and-preserve-3D.html": [ - "6d27a40ff2779e5269653275e28ba6378af46ead", + "multi-line-column-flex-fragmentation-023.html": [ + "626d2679ea4063ae4135dcb63034eeb22e4e7a97", [ null, [ [ - "/css/compositing/mix-blend-mode/reference/mix-blend-mode-with-transform-and-preserve-3D-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 50 - ], - [ - 0, - 300 - ] - ] - ] - ] - } + {} ] - ] - }, - "root-element-background-image-transparency-001.html": [ - "1f07d60375ea3350b9f8f596b7fdafc6c390a6cc", - [ - "css/compositing/root-element-background-image-transparency-001.html", - [ - [ - "/css/compositing/root-element-background-image-transparency-001-ref.html", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 1 - ], - [ - 0, - 9600 - ] - ] - ] - ] - } - ] - ], - "root-element-background-image-transparency-002.html": [ - "0da51986f1ca2426cce7383547012e28d096e318", - [ - "css/compositing/root-element-background-image-transparency-002.html", - [ - [ - "/css/compositing/root-element-background-image-transparency-001-ref.html", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 1 - ], - [ - 0, - 9600 - ] - ] - ] - ] - } - ] - ], - "root-element-background-image-transparency-003.html": [ - "0aded929d872c3d95c0ae50b4868d41b52d72d60", - [ - "css/compositing/root-element-background-image-transparency-003.html", - [ - [ - "/css/compositing/root-element-background-image-transparency-001-ref.html", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 1 - ], - [ - 0, - 237600 - ] - ] - ] - ] - } - ] - ], - "root-element-background-image-transparency-004.html": [ - "1bc4b446149bff4639c33480f976f4d1e36c871f", - [ - "css/compositing/root-element-background-image-transparency-004.html", - [ - [ - "/css/compositing/root-element-background-image-transparency-001-ref.html", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 1 - ], - [ - 0, - 237600 - ] - ] - ] - ] - } - ] - ], - "root-element-background-transparency.html": [ - "910eb08e8d3004da7418f8f00f38d022841262f2", - [ - null, - [ - [ - "/css/compositing/root-element-background-transparency-ref.html", - "==" - ] - ], - {} - ] - ], - "root-element-blend-mode.html": [ - "2c97d8b5e8ca9139bb83aca0ca90494d6fbbb255", - [ - null, - [ - [ - "/css/compositing/root-element-blend-mode-ref.html", - "==" - ] - ], - {} - ] - ], - "root-element-filter.html": [ - "62bde9dfd991d01314569ae694b495adc489a21e", - [ - null, - [ - [ - "/css/compositing/root-element-filter-ref.html", - "==" - ] - ], - {} - ] - ], - "root-element-opacity-change.html": [ - "de2599de4911dc99c997de16d8908a180e4f3bc6", - [ - null, - [ - [ - "/css/compositing/root-element-opacity-change-ref.html", - "==" - ] - ], - {} - ] - ], - "root-element-opacity.html": [ - "a8195bc552e5270c45716cc34ad6063769fd5581", - [ - null, - [ - [ - "/css/compositing/root-element-opacity-ref.html", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 1 - ], - [ - 0, - 480000 - ] - ] - ] - ] - } - ] - ], - "svg": { - "mix-blend-mode-in-svg-image.html": [ - "ed0520e443fd10ca6ad25c91dd2752954fbbf9b0", + ], + "multi-line-column-flex-fragmentation-024.html": [ + "4cd53adf6d5e4117ea1c327bd569855f8ee7980b", [ null, [ [ - "/css/compositing/svg/reference/mix-blend-mode-in-svg-image-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "mix-blend-mode-svg-rectangle.html": [ - "543586f0983b7d93a472964fd18822425d6034b2", + "multi-line-column-flex-fragmentation-025.html": [ + "93dd9b4a6211a9dc0688cd6b1bd17658d4a5ed1f", [ null, [ [ - "/css/compositing/svg/reference/mix-blend-mode-svg-rectangle-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] - ] - } - }, - "css-align": { - "baseline-of-scrollable-1a.html": [ - "a55e2318ca40f68500754bfccb582dd06c9f29c3", - [ - null, - [ - [ - "/css/css-align/reference/baseline-of-scrollable-1-ref.html", - "==" - ] - ], - {} - ] - ], - "baseline-of-scrollable-1b.html": [ - "79db8a85434beb60f7f6ef259bc2eff62d83bea3", - [ - null, - [ - [ - "/css/css-align/reference/baseline-of-scrollable-1-ref.html", - "==" - ] - ], - {} - ] - ], - "baseline-of-scrollable-2.html": [ - "5511d6d68ad0b531cdd31da352e7a78e3a6b85b7", - [ - null, - [ - [ - "/css/css-align/reference/baseline-of-scrollable-2-ref.html", - "==" - ] - ], - {} - ] - ], - "baseline-rules": { - "grid-item-input-type-number.html": [ - "9b9735c7be7860f9f02e3df3ebd1b5dfffd7342e", + ], + "multi-line-column-flex-fragmentation-026.html": [ + "204cc15a2d514fc1c081dcdbaa29de9f8650d69b", [ null, [ [ - "/css/css-align/baseline-rules/grid-item-input-type-number-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "grid-item-input-type-text.html": [ - "526dcbae6a9c3e116557b50d9993f45b1edfbb5f", + "multi-line-column-flex-fragmentation-027.html": [ + "95b73907b860320a6859e77095d3f1519f6fc4d5", [ null, [ [ - "/css/css-align/baseline-rules/grid-item-input-type-text-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "inline-table-inline-block-baseline-vert-rl.html": [ - "c0a6e2f12cb3cb51368416f5e79bd305cfe6a8a2", + "multi-line-column-flex-fragmentation-028.html": [ + "d96cd56d6924c315d30094bef6805dd5c46b983a", [ null, [ [ - "/css/css-align/baseline-rules/inline-table-inline-block-baseline-vert-rl-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "inline-table-inline-block-baseline.html": [ - "be9acc58cd548ab75f036df5e11c2299122c76ac", + "multi-line-column-flex-fragmentation-029.html": [ + "ec47c9f3af5c6ca997592a4d03b6796c860534d4", [ null, [ [ - "/css/css-align/baseline-rules/inline-table-inline-block-baseline-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "synthesized-baseline-table-cell-001.html": [ - "a7119b8dc556a77a6ec2f133053c123f4a3a75f4", + "multi-line-column-flex-fragmentation-030.html": [ + "443984588b1d9f65cf2fbadf834db984fb8a93cc", [ null, [ [ - "/css/css-align/baseline-rules/synthesized-baseline-table-cell-001-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] - ] - }, - "blocks": { - "align-content-block-001.html": [ - "472ecae5765278beb410172af54ee4b1b7bf6864", + ], + "multi-line-column-flex-fragmentation-031.html": [ + "fc88e70a9cd1f790759f772ee10d791c25cddc99", [ - "css/css-align/blocks/align-content-block-001.html", + null, [ [ - "/css/css-align/blocks/align-content-block-001-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "align-content-block-break-content-010.html": [ - "27a56a608f4d915327d168ddc6ad8075eed095f4", + "multi-line-column-flex-fragmentation-032.html": [ + "978dbd1fa2f8e0e17e6abbbfbf0c7f0a0c1225a1", [ - "css/css-align/blocks/align-content-block-break-content-010.html", + null, [ [ - "/css/css-align/blocks/align-content-block-break-content-010-aligned-ref.html", - "==" - ], - [ - "/css/css-align/blocks/align-content-block-break-content-010-unaligned-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "align-content-block-break-content-020.html": [ - "83267301b4c1c9d54598b71165a8ddb0fc3ddc44", + "multi-line-column-flex-fragmentation-033.html": [ + "5e511bdf5534ea0e4426ed9800220ebb7924727c", [ - "css/css-align/blocks/align-content-block-break-content-020.html", + null, [ [ - "/css/css-align/blocks/align-content-block-break-content-010-aligned-ref.html", - "==" - ], - [ - "/css/css-align/blocks/align-content-block-break-content-010-unaligned-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "align-content-block-break-overflow-010.html": [ - "cde57ad7a32ce14271777af7d0066d857af255b4", + "multi-line-column-flex-fragmentation-034.html": [ + "0a2e0367f22533d2fd46ad27b243936c735fb856", [ - "css/css-align/blocks/align-content-block-break-overflow-010.html", + null, [ [ - "/css/css-align/blocks/align-content-block-break-overflow-010-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "align-content-block-break-overflow-020.html": [ - "5f4b3d9555a0811aeb42bf0312c1dca997afc28e", + "multi-line-column-flex-fragmentation-035.html": [ + "c26d055c34b2528f66fa0f868c264d118557c9e1", [ - "css/css-align/blocks/align-content-block-break-overflow-020.html", + null, [ [ - "/css/css-align/blocks/align-content-block-break-overflow-010-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "align-content-block-overflow-000.html": [ - "c53606a0589af0bbd9c0bd7c513621b88f90687e", + "multi-line-column-flex-fragmentation-036.tentative.html": [ + "7c6a55feee61de73e64e87020243840e6bba341f", [ - "css/css-align/blocks/align-content-block-overflow-000.html", + null, [ [ - "/css/css-align/blocks/align-content-block-overflow-000-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] - ] - }, - "content-distribution": { - "place-content-shorthand-007.html": [ - "be954c9712189d31aeb92914ab6a078f66087d0e", + ], + "multi-line-column-flex-fragmentation-037.html": [ + "5fd1fa283bca402e250fc6a2dd5a7b30db96ca01", [ null, [ [ - "/css/css-align/content-distribution/place-content-shorthand-007-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] - ] - }, - "distribution-values": { - "space-evenly-001.html": [ - "fd16f33b5e936d239124443630b2c79fa05e13f1", + ], + "multi-line-column-flex-fragmentation-038.html": [ + "c970d4a69b8f3ed5e9c4ee58a91c587fc084920b", [ null, [ @@ -131281,11 +136982,9 @@ ], {} ] - ] - }, - "gaps": { - "gap-normal-used-001.html": [ - "3d7ab10b8cb175e972feaa73899b1bbedd2e12b0", + ], + "multi-line-column-flex-fragmentation-039.html": [ + "30c8983d20f50cd3664d70433c8f746d22deb8d3", [ null, [ @@ -131297,8 +136996,8 @@ {} ] ], - "gap-normal-used-002.html": [ - "0b40646e7ca4f2f396853d5939b01d0af9beecab", + "multi-line-column-flex-fragmentation-040.html": [ + "ce99ab6889e5403aa834fc5c07ab5aa9b04d7a58", [ null, [ @@ -131309,3564 +137008,3066 @@ ], {} ] - ] - }, - "self-alignment": { - "self-align-safe-unsafe-flex-001.html": [ - "bb933b99d722d462b2b824d86fb15e825a598f5a", + ], + "multi-line-column-flex-fragmentation-041.html": [ + "e81a37429d8160c1c792d039a4c578eb1a3f7053", [ - "css/css-align/self-alignment/self-align-safe-unsafe-flex-001.html", + null, [ [ - "/css/css-align/self-alignment/self-align-safe-unsafe-flex-001-ref.html", + "/css/css-break/flexbox/multi-line-column-flex-fragmentation-041-ref.html", "==" ] ], {} ] ], - "self-align-safe-unsafe-flex-002.html": [ - "c7dc1c1aea4c0cd31158e0c24ee060425db32fe3", + "multi-line-column-flex-fragmentation-042.html": [ + "90c93834e2e68b031e8aaba40f8696d69c4ab4cf", [ - "css/css-align/self-alignment/self-align-safe-unsafe-flex-002.html", + null, [ [ - "/css/css-align/self-alignment/self-align-safe-unsafe-flex-002-ref.html", + "/css/css-break/flexbox/multi-line-column-flex-fragmentation-042-ref.html", "==" ] ], {} ] ], - "self-align-safe-unsafe-flex-003.html": [ - "41829f7729d8e57ec371568644b4712fc8d74c4b", + "multi-line-column-flex-fragmentation-043.html": [ + "37b306913686f210a800756541e4c1494b1be484", [ - "css/css-align/self-alignment/self-align-safe-unsafe-flex-003.html", + null, [ [ - "/css/css-align/self-alignment/self-align-safe-unsafe-flex-003-ref.html", + "/css/css-break/flexbox/multi-line-column-flex-fragmentation-043-ref.html", "==" ] ], {} ] ], - "self-align-safe-unsafe-grid-001.html": [ - "0c509346278db8c6d0251d62a33679c0a8c8cb96", + "multi-line-column-flex-fragmentation-044.html": [ + "676cb28c818ee552f16f96efb60a9155695737c5", [ - "css/css-align/self-alignment/self-align-safe-unsafe-grid-001.html", + null, [ [ - "/css/css-align/self-alignment/self-align-safe-unsafe-grid-001-ref.html", + "/css/css-break/flexbox/multi-line-column-flex-fragmentation-044-ref.html", "==" ] ], {} ] ], - "self-align-safe-unsafe-grid-002.html": [ - "ce6688ed1ed6882ba2c9091f1accdbdbf134a0e5", + "multi-line-column-flex-fragmentation-045.html": [ + "b445a15113ca3aa74036a95a6e6e49bed2ca95fa", [ - "css/css-align/self-alignment/self-align-safe-unsafe-grid-002.html", + null, [ [ - "/css/css-align/self-alignment/self-align-safe-unsafe-grid-002-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "self-align-safe-unsafe-grid-003.html": [ - "9695f0a2f15b2f08babd82326ca410af2d6c829e", + "multi-line-column-flex-fragmentation-046.html": [ + "f009b1a3e796f73f9d3472b6c79bc291b15a437c", [ - "css/css-align/self-alignment/self-align-safe-unsafe-grid-003.html", + null, [ [ - "/css/css-align/self-alignment/self-align-safe-unsafe-grid-003-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] - ] - } - }, - "css-anchor-position": { - "anchor-center-002.html": [ - "b7f61003a67be5baf897fa5a9c7da982586820b1", - [ - "css/css-anchor-position/anchor-center-002.html", - [ - [ - "/css/css-anchor-position/anchor-center-002-ref.html", - "==" - ] - ], - {} - ] - ], - "anchor-default-001.html": [ - "8bb59851ee656715cb30d3a26690ee807b7fd7ca", - [ - "css/css-anchor-position/anchor-default-001.html", - [ - [ - "/css/css-anchor-position/anchor-default-ref.html", - "==" - ] - ], - {} - ] - ], - "anchor-default-002.html": [ - "261119e0174544b86548dc2f06000853f6cd5656", - [ - "css/css-anchor-position/anchor-default-002.html", - [ - [ - "/css/css-anchor-position/anchor-default-ref.html", - "==" - ] - ], - {} - ] - ], - "anchor-position-top-layer-001.html": [ - "055459551b8c94cf884ca4ea5266e6c590e29cbc", - [ - "css/css-anchor-position/anchor-position-top-layer-001.html", - [ - [ - "/css/css-anchor-position/anchor-position-top-layer-ref.html", - "==" - ] - ], - {} - ] - ], - "anchor-position-top-layer-002.html": [ - "a87a9d7eedd8995e7eba1753e26cfe4addbcd0c5", - [ - "css/css-anchor-position/anchor-position-top-layer-002.html", - [ - [ - "/css/css-anchor-position/anchor-position-top-layer-ref.html", - "==" - ] - ], - {} - ] - ], - "anchor-position-top-layer-003.html": [ - "96d5219c5ce5500d5a44f6c64e27a71587b43fba", - [ - "css/css-anchor-position/anchor-position-top-layer-003.html", - [ - [ - "/css/css-anchor-position/anchor-position-top-layer-ref.html", - "==" - ] - ], - {} - ] - ], - "anchor-position-top-layer-004.html": [ - "c986e3f98d3c7146cb1dea40351e562b33f0178d", - [ - "css/css-anchor-position/anchor-position-top-layer-004.html", - [ - [ - "/css/css-anchor-position/anchor-position-top-layer-ref.html", - "==" - ] - ], - {} - ] - ], - "anchor-position-top-layer-005.html": [ - "cf39c77736738d571e5350730eb4f86afcfa5063", - [ - "css/css-anchor-position/anchor-position-top-layer-005.html", - [ - [ - "/css/css-anchor-position/anchor-position-top-layer-ref.html", - "==" - ] - ], - {} - ] - ], - "anchor-position-top-layer-006.html": [ - "c13284b854843faf3a7a756c45dca9b6e374cc82", - [ - "css/css-anchor-position/anchor-position-top-layer-006.html", - [ - [ - "/css/css-anchor-position/anchor-position-top-layer-ref.html", - "==" - ] - ], - {} - ] - ], - "anchor-scroll-001.html": [ - "8609795c8a6d0207aeb0d5f840f6d820c7cd9025", - [ - "css/css-anchor-position/anchor-scroll-001.html", - [ - [ - "/css/css-anchor-position/reference/anchor-scroll-ref.html", - "==" - ] - ], - {} - ] - ], - "anchor-scroll-composited-scrolling-006.html": [ - "6e57accc457f9fd341af6c3eead652f77c8e3e05", - [ - "css/css-anchor-position/anchor-scroll-composited-scrolling-006.html", - [ - [ - "/css/css-anchor-position/reference/anchor-scroll-composited-scrolling-006-ref.html", - "==" - ] - ], - {} - ] - ], - "anchor-scroll-fixedpos.html": [ - "a32ef3f7c497a6bd403109bb776e4efc15f2cfa2", - [ - "css/css-anchor-position/anchor-scroll-fixedpos.html", - [ - [ - "/css/css-anchor-position/reference/anchor-scroll-fixedpos-ref.html", - "==" - ] - ], - {} - ] - ], - "anchor-scroll-nested.html": [ - "557f748c02988b6f230aedce8b1dad7d154b5df6", - [ - "css/css-anchor-position/anchor-scroll-nested.html", - [ - [ - "/css/css-anchor-position/reference/anchor-scroll-nested-ref.html", - "==" - ] - ], - {} - ] - ], - "anchor-scroll-update-001.html": [ - "f11797edadb669cfe870988f9f2ae02d0c74e032", - [ - "css/css-anchor-position/anchor-scroll-update-001.html", - [ - [ - "/css/css-anchor-position/reference/anchor-scroll-ref.html", - "==" - ] - ], - {} - ] - ], - "anchor-scroll-update-002.html": [ - "19447952b0be25d0407d0e4dea43795dcd0570dc", - [ - "css/css-anchor-position/anchor-scroll-update-002.html", - [ - [ - "/css/css-anchor-position/reference/anchor-scroll-ref.html", - "==" - ] - ], - {} - ] - ], - "anchor-scroll-update-003.html": [ - "57a524c483fd2fd7308620263b09f0a28bc95e59", - [ - "css/css-anchor-position/anchor-scroll-update-003.html", - [ - [ - "/css/css-anchor-position/reference/anchor-scroll-ref.html", - "==" - ] - ], - {} - ] - ], - "anchor-scroll-update-004.html": [ - "d20a7b660a69428755a33b8c3cb47585a7594bf8", - [ - "css/css-anchor-position/anchor-scroll-update-004.html", - [ - [ - "/css/css-anchor-position/reference/anchor-scroll-ref.html", - "==" - ] - ], - {} - ] - ], - "anchor-scroll-update-005.html": [ - "c2e7248c80c5ede1ac79384bfc42b51bae649b36", - [ - "css/css-anchor-position/anchor-scroll-update-005.html", - [ - [ - "/css/css-anchor-position/reference/anchor-scroll-update-005-ref.html", - "==" - ] - ], - {} - ] - ], - "anchor-scroll-update-006.html": [ - "2535c68f78738bae0f8f8e87cbb24ce8d0a35606", - [ - "css/css-anchor-position/anchor-scroll-update-006.html", - [ - [ - "/css/css-anchor-position/reference/anchor-scroll-update-006-ref.html", - "==" - ] - ], - {} - ] - ], - "anchor-scroll-update-007.html": [ - "4859f01d66084e5356d1e737224797f55b17fce5", - [ - "css/css-anchor-position/anchor-scroll-update-007.html", - [ - [ - "/css/css-anchor-position/reference/anchor-scroll-ref.html", - "==" - ] - ], - {} - ] - ], - "anchor-scroll-vlr.html": [ - "00406c825e924bca5c5dd30d452fde1fc3fcc92a", - [ - "css/css-anchor-position/anchor-scroll-vlr.html", - [ - [ - "/css/css-anchor-position/reference/anchor-scroll-vlr-ref.html", - "==" - ] - ], - {} - ] - ], - "anchor-scroll-vrl.html": [ - "2432d72899343f2aa3d95b05a0918080980ef077", - [ - "css/css-anchor-position/anchor-scroll-vrl.html", - [ - [ - "/css/css-anchor-position/reference/anchor-scroll-vrl-ref.html", - "==" - ] - ], - {} - ] - ], - "sticky-anchor-position-invalid.html": [ - "f7c1e1a374fbd8a10ab1b70f7b959c65a01ea993", - [ - null, - [ - [ - "/css/css-anchor-position/reference/sticky-anchor-position-invalid-ref.html", - "==" - ] - ], - {} - ] - ] - }, - "css-animations": { - "animation-delay-008.html": [ - "52883fa72ff5a4a57c6a8c2866805ceb5fa0a507", - [ - null, - [ - [ - "/css/css-animations/animation-common-ref.html", - "==" - ] - ], - {} - ] - ], - "animation-delay-009.html": [ - "6d25b8b1bc00319a71a5fdc8f3fe8af32f844f52", - [ - null, - [ - [ - "/css/css-animations/animation-common-ref.html", - "==" - ] - ], - {} - ] - ], - "animation-delay-010.html": [ - "d18064dd214940a9ed762889f1df38d7ae050765", - [ - null, - [ - [ - "/css/css-animations/animation-common-ref.html", - "==" - ] - ], - {} - ] - ], - "animation-delay-011.html": [ - "415a57475537979e429b0c3c0dd2e0213c17f930", - [ - null, - [ - [ - "/css/css-animations/animation-common-ref.html", - "==" - ] - ], - {} - ] - ], - "animation-important-002.html": [ - "2a68f8e0cacf06e2e5761ef392b90a4f89fcc843", - [ - null, - [ - [ - "/css/css-animations/animation-important-002-ref.html", - "==" - ] - ], - {} - ] - ], - "animation-opacity-pause-and-set-time.html": [ - "cbf63ea2178638e6f476307954ba0337d35cd570", - [ - "css/css-animations/animation-opacity-pause-and-set-time.html", - [ - [ - "/css/css-animations/animation-opacity-pause-and-set-time-ref.html", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 1 - ], - [ - 0, - 2500 - ] - ] - ] - ] - } - ] - ], - "animation-pseudo-dynamic-001.html": [ - "e141b62149d3b37b5d23f25ba28397228f336d67", - [ - null, - [ - [ - "/css/css-animations/animation-pseudo-dynamic-001-ref.html", - "==" - ] - ], - {} - ] - ], - "animation-transform-pause-and-set-time.html": [ - "e8a9bd9706bde58182bcbdd4c10839f320d90708", - [ - null, - [ - [ - "/css/css-animations/animation-transform-pause-and-set-time-ref.html", - "==" - ] - ], - {} - ] - ], - "cancel-animation-shadow-slot-invalidation.html": [ - "a5c9c6763f58485a15ef21f20c4ec92025ca8993", - [ - "css/css-animations/cancel-animation-shadow-slot-invalidation.html", - [ - [ - "/css/reference/pass_if_pass_below.html", - "==" - ] - ], - {} - ] - ], - "flip-running-animation-via-variable.html": [ - "22d23c1f72603f465b0550b74a3e2367c88684ab", - [ - "css/css-animations/flip-running-animation-via-variable.html", - [ - [ - "/css/css-animations/flip-running-animation-via-variable-ref.html", - "==" - ] - ], - {} - ] - ], - "inheritance-pseudo-element.html": [ - "4ebcbc95dea2a66f2a3751aec74f932b97853b9d", - [ - null, - [ - [ - "/css/css-animations/inheritance-pseudo-element-ref.html", - "==" - ] - ], - {} - ] - ], - "nested-scale-animations.html": [ - "8793e044b703e1bc30a710142d310f1f28c3350a", - [ - null, - [ - [ - "/css/css-animations/nested-scale-animations-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-transform-animation.html": [ - "b08629c2eb76b86c80fe64436a364078c5376dcd", - [ - null, - [ - [ - "/css/css-animations/svg-transform-animation-ref.html", - "==" - ] - ], - {} - ] - ], - "transform-animation-under-large-scale.html": [ - "359380d698bb26a4404d027285150de3b63492a0", - [ - null, - [ - [ - "/css/css-animations/transform-animation-under-large-scale-ref.html", - "==" - ] - ], - {} - ] - ], - "translation-animation-on-important-property.html": [ - "4f0294276450a319cb884ea34f185c957036cc2e", - [ - null, - [ - [ - "/css/css-animations/translation-animation-on-important-property-ref.html", - "==" - ] - ], - {} - ] - ], - "translation-animation-subpixel-offset.html": [ - "5692a0823289811967e889969603cf8799cf7cf6", - [ - null, - [ - [ - "/css/css-animations/translation-animation-subpixel-offset-ref.html", - "==" - ] - ], - {} - ] - ] - }, - "css-backgrounds": { - "animations": { - "background-color-animation-element-not-visible-at-current-viewport.html": [ - "db212e39926789f8b27d06b2a16a0f77046ef3cd", + ], + "multi-line-column-flex-fragmentation-047.html": [ + "a09eaea6b5ca6ce59ee26678d08227f208f170e7", [ null, [ [ - "/css/css-backgrounds/animations/background-color-animation-element-not-visible-at-current-viewport-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "background-color-animation-fallback-additive-keyframe.html": [ - "6bb1b8257e73eb7b53969feb1d70f2299e063019", + "multi-line-column-flex-fragmentation-048.html": [ + "82800413950cb29fa1ba2be1f6fc90f82a1631a3", [ - "css/css-backgrounds/animations/background-color-animation-fallback-additive-keyframe.html", + null, [ [ - "/css/css-backgrounds/animations/background-color-animation-fallback-additive-keyframe-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "background-color-animation-fallback-missing-0-percent.html": [ - "9140b705d435055e9e8d83219d553823d565593f", + "multi-line-column-flex-fragmentation-049.html": [ + "ae683e938c29a6a8224e506d789284c79ab1ea69", [ null, [ [ - "/css/css-backgrounds/animations/background-color-animation-fallback-missing-0-percent-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "background-color-animation-fallback-missing-100-percent.html": [ - "1c5b63201f64464ef87a8b7a71348047dde10da0", + "multi-line-column-flex-fragmentation-050.html": [ + "b0467d5b80501113d638d3262f994a9b95e13020", [ null, [ [ - "/css/css-backgrounds/animations/background-color-animation-fallback-missing-100-percent-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "background-color-animation-fallback-replace.html": [ - "ce4e927f739bd8808ba62f9fb4862f7f64ceea3c", + "multi-line-column-flex-fragmentation-051.html": [ + "f886bcc7bee0ff742e559f698b60aba8c5cdf165", [ null, [ [ - "/css/css-backgrounds/animations/background-color-animation-fallback-replace-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "background-color-animation-fragmented.html": [ - "64d94b93224aeec6df8a9b98d0e30ddcdf971b9b", + "multi-line-column-flex-fragmentation-052.html": [ + "9496418e857391718041d52ad19c2b9545068877", [ null, [ [ - "/css/css-backgrounds/animations/background-color-animation-fragmented-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "background-color-animation-half-opaque.html": [ - "2e00fa61138d2e3209624de79ccf809ff0bd2da2", + "multi-line-column-flex-fragmentation-053.html": [ + "aa1f1debce968a181563154c9c7f83adfef64eed", [ - "css/css-backgrounds/animations/background-color-animation-half-opaque.html", + null, [ [ - "/css/css-backgrounds/animations/background-color-animation-half-opaque-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "background-color-animation-in-body.html": [ - "e5783f2b41f8e89b15d7b2a5d0c2abfbec37ad40", + "multi-line-row-flex-fragmentation-001.html": [ + "ba6b0103e447994a2778cbd9ea356a490f62b8fb", [ null, [ [ - "/css/css-backgrounds/animations/background-color-animation-in-body-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "background-color-animation-non-zero-size-element-change-to-zero.html": [ - "6ba25c819678d4a9c0141df457efaf37f5764163", + "multi-line-row-flex-fragmentation-002.html": [ + "62c1e313bfe3cc3d0908a2e1031322818601e7c2", [ null, [ [ - "/css/css-backgrounds/animations/background-color-animation-non-zero-size-element-change-to-zero-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "background-color-animation-pseudo-element.html": [ - "e5066281d9b9ca82cea0bc3edfa01d8e3bc18ccd", + "multi-line-row-flex-fragmentation-003.html": [ + "4d1b7e1c7d8d3faa4e4cb273935c66c6e35afd85", [ null, [ [ - "/css/css-backgrounds/animations/background-color-animation-pseudo-element-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "background-color-animation-single-keyframe.html": [ - "019b7f83f13500221381e10beaf7631cfd119214", + "multi-line-row-flex-fragmentation-004.html": [ + "a00469746efa83d89268c2ca415b6e00a89acfb4", [ null, [ [ - "/css/css-backgrounds/animations/background-color-animation-single-keyframe-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "background-color-animation-three-keyframes1.html": [ - "cba0113f00396d2e6db92ebb6b6b903266eacfb4", + "multi-line-row-flex-fragmentation-005.html": [ + "d1e4f97c27d3db3f25cd8016842bcbc4d6eafbf3", [ null, [ [ - "/css/css-backgrounds/animations/background-color-animation-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "background-color-animation-three-keyframes2.html": [ - "d2be16034f9d543b48bf80bfcd634b1580e66899", + "multi-line-row-flex-fragmentation-006.html": [ + "1b93be60e3c3ae56a620fc7f8afafbed5ebd2405", [ null, [ [ - "/css/css-backgrounds/animations/background-color-animation-three-keyframes2-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "background-color-animation-three-keyframes3.html": [ - "708faa556070b1e7190ca3fca9618c4618857b41", + "multi-line-row-flex-fragmentation-007.html": [ + "968f3dd2d836e092c5f34d638734fb0fe9737b2f", [ null, [ [ - "/css/css-backgrounds/animations/background-color-animation-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "background-color-animation-will-change-contents.html": [ - "a218098721c175064fcb988f31da2ed92fda67bc", + "multi-line-row-flex-fragmentation-008.html": [ + "1f0abea62907bc11195fa3ab6458828415b8631c", [ null, [ [ - "/css/css-backgrounds/animations/background-color-animation-will-change-contents-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "background-color-animation-with-blur.html": [ - "86e97b0f7e9538e40d40aef41cd59b9185c57428", + "multi-line-row-flex-fragmentation-009.html": [ + "b9283be27b640c59ce21db71aea61106db39457e", [ - "css/css-backgrounds/animations/background-color-animation-with-blur.html", + null, [ [ - "/css/css-backgrounds/animations/background-color-animation-with-blur-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 1 - ], - [ - 0, - 12100 - ] - ] - ] - ] - } + {} ] ], - "background-color-animation-with-images.html": [ - "0ea29b8f1cfd65fb4c2a4f9c570443f582403e9e", + "multi-line-row-flex-fragmentation-010.html": [ + "18cd9d7ee7575fd2791c65580ac2a613aa7951da", [ null, [ [ - "/css/css-backgrounds/animations/background-color-animation-with-images-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "background-color-animation-with-mask.html": [ - "9001121edc5b2663ca195592d098c012ff3824bc", + "multi-line-row-flex-fragmentation-011.html": [ + "e2e3624c0e3a4efc5105e085a6213a704aa45340", [ null, [ [ - "/css/css-backgrounds/animations/background-color-animation-with-mask-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "background-color-animation-with-table1.html": [ - "de5f482e886b54ec67573097c7d8c509a26496cc", + "multi-line-row-flex-fragmentation-012.html": [ + "bb5af266103311a1ada217590f534baab3b1b99b", [ null, [ [ - "/css/css-backgrounds/animations/background-color-animation-with-table1-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "background-color-animation-with-table2.html": [ - "5fc03b3d92b864c641a72ef312b348f06137cf88", + "multi-line-row-flex-fragmentation-013.html": [ + "f85ac0be872dbe7bd4fc6a104bf8fed8e74f1915", [ null, [ [ - "/css/css-backgrounds/animations/background-color-animation-with-table1-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "background-color-animation-with-table3.html": [ - "0ee8fdd69f9aa8834aadf211f6353cfba0461494", + "multi-line-row-flex-fragmentation-014.html": [ + "ac48296e8874a0ed952d50737e0e2504883d3620", [ null, [ [ - "/css/css-backgrounds/animations/background-color-animation-with-table1-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "background-color-animation-with-table4.html": [ - "319ee77481e0cfcc942d8bff1c9bd167f7149bd1", + "multi-line-row-flex-fragmentation-016.html": [ + "f723663ac8d56c56e5fc632f1de4b9a3c97b4262", [ null, [ [ - "/css/css-backgrounds/animations/background-color-animation-with-table1-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "background-color-animation-with-zero-playbackRate.html": [ - "2a563994620ddcf6bac8eddd004666400a064893", + "multi-line-row-flex-fragmentation-017.html": [ + "037f55baceded3f688d610de7520acac221c85d1", [ null, [ [ - "/css/css-backgrounds/animations/background-color-animation-with-zero-playbackRate-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "background-color-animation-zero-size-element-change-to-non-zero.html": [ - "f62380f9ed4416e1bc425e2d28526f7706aa4a7f", + "multi-line-row-flex-fragmentation-018.html": [ + "f12e6519a756c57f421724bc66f1e8d073553bc5", [ null, [ [ - "/css/css-backgrounds/animations/background-color-animation-zero-size-element-change-to-non-zero-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "background-color-animation-zero-size-element.html": [ - "008b78a4c00234a553194f3a1673e67aa1e9a223", + "multi-line-row-flex-fragmentation-019.html": [ + "3c85a703f99f6ea3f4113d6550cd4ac56a3401d7", [ null, [ [ - "/css/css-backgrounds/animations/background-color-animation-zero-size-element-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "background-color-animation.html": [ - "597f52c9156ec7b08cf07bea2418d79fc9c7b9f9", + "multi-line-row-flex-fragmentation-020.html": [ + "334e53468e08aa0e87478774c6a9f5f6166ea2b2", [ null, [ [ - "/css/css-backgrounds/animations/background-color-animation-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "background-color-scroll-into-viewport.html": [ - "24b22b43e4d629e9644a2a6b47094aeb46ac8230", + "multi-line-row-flex-fragmentation-021.html": [ + "74890bea9138834d67add4b4782839b2791be25c", [ null, [ [ - "/css/css-backgrounds/animations/background-color-scroll-into-viewport-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "background-color-transition-currentcolor.html": [ - "7d12b440511c0321fd3467e69f47529dc38f01da", + "multi-line-row-flex-fragmentation-022.html": [ + "2122609a0ec2306e74489a9d2d84447545f76c6d", [ null, [ [ - "/css/css-backgrounds/animations/background-color-transition-currentcolor-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "background-color-transition.html": [ - "d43b9415cf65910a46b29089d5030d41cd59ac0e", + "multi-line-row-flex-fragmentation-023.html": [ + "32f7d31c18a093d5fee3516151fad5ef8ff91cf8", [ null, [ [ - "/css/css-backgrounds/animations/background-color-animation-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "background-color-transparent-animation-in-body.html": [ - "f156f91408770341b2b3e80bde1828752a2162ac", + "multi-line-row-flex-fragmentation-024.html": [ + "372b3e170d20411398e1fa6ac538d0d68f9728eb", [ null, [ [ - "/css/css-backgrounds/animations/background-color-transparent-animation-in-body-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "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", + "multi-line-row-flex-fragmentation-025.html": [ + "8ea8803651b02fef3a546525cb38a6f9fe4d4a8e", + [ + null, [ - null, [ - [ - "/css/css-backgrounds/animations/invalidation/background-color-transition-with-initially-transparent-ref.html", - "==" - ] - ], - {} - ] + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} ] - }, - "two-background-color-animation-diff-length1.html": [ - "d49ac0828c089f6e561767466b4f9cc1973c345f", + ], + "multi-line-row-flex-fragmentation-026.html": [ + "b83375e249eb30285c211a5fb17f52bb7ffda8dd", [ - "css/css-backgrounds/animations/two-background-color-animation-diff-length1.html", + null, [ [ - "/css/css-backgrounds/animations/two-background-color-animation-diff-length1-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "two-background-color-animation-diff-length2.html": [ - "979414db263966b58c7ae74f83dfdd13b2aa9586", + "multi-line-row-flex-fragmentation-027.html": [ + "45e4a1452ff22f23de9d62e8bc7fbdd4208827f7", [ - "css/css-backgrounds/animations/two-background-color-animation-diff-length2.html", + null, [ [ - "/css/css-backgrounds/animations/two-background-color-animation-diff-length2-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "two-background-color-animation-diff-length3.html": [ - "b727f5c64fa09da695084d73333a63c983a9639e", + "multi-line-row-flex-fragmentation-028.html": [ + "5abb90c9a40a0790f83310025fbb5e847d6ee66a", [ - "css/css-backgrounds/animations/two-background-color-animation-diff-length3.html", + null, [ [ - "/css/css-backgrounds/animations/two-background-color-animation-diff-length3-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] - ] - }, - "background-334.html": [ - "03ee2d3bb251119f55aa194615795563e6ddd350", - [ - null, - [ - [ - "/css/css-backgrounds/reference/background-334-ref.xht", - "==" - ] - ], - {} - ] - ], - "background-attachment-350.html": [ - "979171f6e66d934c05453c4974f0858e4d005bdd", - [ - null, - [ - [ - "/css/css-backgrounds/reference/ref-if-there-is-no-red.xht", - "==" - ] - ], - {} - ] - ], - "background-attachment-353.html": [ - "ca5a41d05ab9e13541e2725289a59d8908b51e41", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "background-attachment-fixed-block-002.html": [ - "8b5c5e80427866c7a1ce8f73e118fb2f897b583c", - [ - "css/css-backgrounds/background-attachment-fixed-block-002.html", - [ - [ - "/css/css-backgrounds/reference/background-attachment-fixed-block-002-ref.html", - "==" - ] - ], - {} - ] - ], - "background-attachment-fixed-border-radius-offset.html": [ - "5d92bcb56a777e6f22f6a21179029bc2fc2d0f4b", - [ - "css/css-backgrounds/background-attachment-fixed-border-radius-offset.html", - [ - [ - "/css/css-backgrounds/background-attachment-fixed-border-radius-offset-ref.html", - "==" - ] - ], - {} - ] - ], - "background-attachment-fixed-inline-002.html": [ - "b624a68060127cf065f36858a06cd5f07bedeb87", - [ - "css/css-backgrounds/background-attachment-fixed-inline-002.html", - [ - [ - "/css/css-backgrounds/reference/background-attachment-fixed-inline-002-ref.html", - "==" - ] - ], - {} - ] - ], - "background-attachment-fixed-inline-scrolled.html": [ - "746997d6057ba1d2c109dafdfe7730ef149cd21e", - [ - "css/css-backgrounds/background-attachment-fixed-inline-scrolled.html", - [ - [ - "/css/css-backgrounds/background-attachment-fixed-inline-scrolled-ref.html", - "==" - ] - ], - {} - ] - ], - "background-attachment-fixed-inside-transform-1.html": [ - "9dae31aaccd1d281d05e43c3160000a53914d279", - [ - null, - [ - [ - "/css/css-backgrounds/background-attachment-fixed-inside-transform-1-ref.html", - "==" - ] - ], - {} - ] - ], - "background-attachment-local": { - "attachment-local-clipping-color-1.html": [ - "8cb76ee89c941bb0b78ad90106981a888b46244f", + ], + "multi-line-row-flex-fragmentation-029.html": [ + "23f9defb5570626479e474a92cec026de60b9af9", [ null, [ [ - "/css/css-backgrounds/background-attachment-local/attachment-local-clipping-color-1-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "attachment-local-clipping-color-2.html": [ - "c3895a9c256c741ab03f77263b0cf6dccb4f9670", + "multi-line-row-flex-fragmentation-030.html": [ + "52ac3bf2162b1b69c1ee6e0fe584f2dacdffa320", [ null, [ [ - "/css/css-backgrounds/background-attachment-local/attachment-local-clipping-color-1-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "attachment-local-clipping-color-3.html": [ - "f81a804286cfe686bb5d6530e3b2ed8ea7d90d2f", + "multi-line-row-flex-fragmentation-031.html": [ + "e5780d254e1238d628a7487a3f5f1c25fe872a81", [ null, [ [ - "/css/css-backgrounds/background-attachment-local/attachment-local-clipping-color-3-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "attachment-local-clipping-color-4.html": [ - "78e823c8884d6e90d2e34b78aa152c4945e20f75", + "multi-line-row-flex-fragmentation-032.html": [ + "274f88a794fe1783abe7d6c580ca7c3eb8a58144", [ null, [ [ - "/css/css-backgrounds/background-attachment-local/attachment-local-clipping-color-4-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "attachment-local-clipping-color-5.html": [ - "136b704bd699934a0dc206c3847546ee9185a793", + "multi-line-row-flex-fragmentation-033.html": [ + "eaf1aefc4a6dd37fcde82f42d7e44b1f87b024a8", [ null, [ [ - "/css/css-backgrounds/background-attachment-local/attachment-local-clipping-color-4-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 10 - ], - [ - 0, - 160 - ] - ] - ] - ] - } + {} ] ], - "attachment-local-clipping-color-6.html": [ - "fd13d7183a0fbbb48040a9fa7bdd1a7681ae576f", + "multi-line-row-flex-fragmentation-034.html": [ + "0fb81034688c221d0167ba5f1b45a4ef6b699e8a", [ null, [ [ - "/css/css-backgrounds/background-attachment-local/attachment-local-clipping-color-6-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "attachment-local-clipping-image-1.html": [ - "caca856de9467d7212ad16073258bb023d969785", + "multi-line-row-flex-fragmentation-035.html": [ + "43653071aea705cd3e7156325c4580dcbfc8f5ff", [ null, [ [ - "/css/css-backgrounds/background-attachment-local/attachment-local-clipping-image-1-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "attachment-local-clipping-image-2.html": [ - "c5dca00cb8ac12e246d5a93bca3a28d9ca859d16", + "multi-line-row-flex-fragmentation-036.html": [ + "013c9e2013797d222d72fb88ae0e8d8e3a20cb52", [ null, [ [ - "/css/css-backgrounds/background-attachment-local/attachment-local-clipping-image-1-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "attachment-local-clipping-image-3.html": [ - "1e20e679a795b0be48c017fbaf4d322a5c244b6d", + "multi-line-row-flex-fragmentation-037.html": [ + "62bf337d850a912c528c4cac6cbde587d33d4da1", [ null, [ [ - "/css/css-backgrounds/background-attachment-local/attachment-local-clipping-image-3-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "attachment-local-clipping-image-4.html": [ - "9a8366242e1a4aed5c4ba088d8e923bf84de3ddb", + "multi-line-row-flex-fragmentation-038.html": [ + "e745987aec8377f59aa8e87c6df04effd0753521", [ null, [ [ - "/css/css-backgrounds/background-attachment-local/attachment-local-clipping-image-4-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "attachment-local-clipping-image-5.html": [ - "1d6f1a8c6628a47e5421eb99769f56d53a74a08a", + "multi-line-row-flex-fragmentation-039.html": [ + "6ef65db744fae14795d00c2f4db39117b0c24704", [ null, [ [ - "/css/css-backgrounds/background-attachment-local/attachment-local-clipping-image-4-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 10 - ], - [ - 0, - 300 - ] - ] - ] - ] - } + {} ] ], - "attachment-local-clipping-image-6.html": [ - "11cb068cafd975fc9fd85cb0e70c5232b8c10509", + "multi-line-row-flex-fragmentation-040.html": [ + "0eaff879c53801997f66baba193dfc63579b65ef", [ null, [ [ - "/css/css-backgrounds/background-attachment-local/attachment-local-clipping-image-6-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "attachment-local-positioning-2.html": [ - "c358fd47f5b528e2552bb1a90ac8d1eff4fb8f8a", + "multi-line-row-flex-fragmentation-041.tentative.html": [ + "028051c059018e1d4e16a916e5e0a93403a3abb1", [ null, [ [ - "/css/css-backgrounds/background-attachment-local/attachment-local-positioning-2-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "attachment-local-positioning-3.html": [ - "b370048e7a6cc2b31b867e695fbc21ef31d981de", + "multi-line-row-flex-fragmentation-042.tentative.html": [ + "725d1f97f37d9b628a139c2a84fe2b57d2c7886f", [ null, [ [ - "/css/css-backgrounds/background-attachment-local/attachment-local-positioning-3-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "attachment-local-positioning-4.html": [ - "d0dbfe166e6f8ef37223350412cb3ffb6a01aca8", + "multi-line-row-flex-fragmentation-043.html": [ + "7d0500ad05d7b908fc173471ad45ab69e3d6b729", [ null, [ [ - "/css/css-backgrounds/background-attachment-local/attachment-local-positioning-4-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "attachment-local-positioning-5.html": [ - "ae02307354ac5058c2338cdd9b650107032c1a4c", + "multi-line-row-flex-fragmentation-044.html": [ + "8262b0e32f26ee48cf482083f94c48bb809b661d", [ null, [ [ - "/css/css-backgrounds/background-attachment-local/attachment-local-positioning-5-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "attachment-scroll-positioning-1.html": [ - "67bccc350e00f815b8bcd46f3a85a0d8916d378f", + "multi-line-row-flex-fragmentation-045.html": [ + "f5a43339478dbfea2baf600707197d4607d9f9dd", [ null, [ [ - "/css/css-backgrounds/background-attachment-local/attachment-scroll-positioning-1-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] - ] - }, - "background-attachment-local-block-002.html": [ - "ce19e360428eb334be58ba275db7c3ba4a590d9e", - [ - "css/css-backgrounds/background-attachment-local-block-002.html", - [ - [ - "/css/css-backgrounds/reference/background-attachment-local-block-002-ref.html", - "==" - ] - ], - {} - ] - ], - "background-attachment-local-hidden.html": [ - "cbe3440e3894e79223d4f647397a32da60411420", - [ - null, + ], + "multi-line-row-flex-fragmentation-046.html": [ + "99e25337920a9f0d458dc941bb779def3f850388", [ + null, [ - "/css/css-backgrounds/reference/background-attachment-local-hidden-ref.html", - "==" - ] - ], - { - "fuzzy": [ [ - null, - [ - [ - 0, - 60 - ], - [ - 0, - 394 - ] - ] + "/css/reference/ref-filled-green-100px-square.xht", + "==" ] - ] - } - ] - ], - "background-attachment-local-inline-002.html": [ - "8b877f9a14cceadcccbea9299d95914545c234e1", - [ - "css/css-backgrounds/background-attachment-local-inline-002.html", - [ - [ - "/css/css-backgrounds/reference/background-attachment-local-inline-002-ref.html", - "==" - ] - ], - {} - ] - ], - "background-attachment-margin-root-001.html": [ - "88bc2845e8b6a6e24ca33547e704deab28e046bb", - [ - null, - [ - [ - "/css/css-backgrounds/background-attachment-margin-root-001-ref.html", - "==" - ] - ], - {} - ] - ], - "background-attachment-margin-root-002.html": [ - "4ee882f9da95ea884851a373d283092031a7cb2e", - [ - null, - [ - [ - "/css/css-backgrounds/background-attachment-margin-root-002-ref.html", - "==" - ] - ], - {} - ] - ], - "background-clip": { - "clip-rounded-corner.html": [ - "3453c5bc8f5e45667ba20a1e6276a08e4b1be714", + ], + {} + ] + ], + "multi-line-row-flex-fragmentation-047.html": [ + "f5947287853b5f312ee0c9aaf056c0c20147e4f0", [ null, [ [ - "/css/css-backgrounds/background-clip/clip-rounded-corner-ref.html", + "/css/css-break/flexbox/multi-line-row-flex-fragmentation-047-ref.html", "==" ] ], {} ] ], - "clip-text-dynamic-2.html": [ - "ee6b45c2ddfb733513e94e9125e626f44b31ab58", + "multi-line-row-flex-fragmentation-048.html": [ + "5c32606312d3de0c528f28a31586a737c69e281f", [ - "css/css-backgrounds/background-clip/clip-text-dynamic-2.html", + null, [ [ - "/css/css-backgrounds/background-clip/clip-text-dynamic-2-ref.html", + "/css/css-break/flexbox/multi-line-row-flex-fragmentation-048-ref.html", "==" ] ], {} ] ], - "clip-text-flex.html": [ - "618c8c1dbc5bd1a017b50c850b54263cf0828b68", + "multi-line-row-flex-fragmentation-049.html": [ + "e36c48c1594333351ac0a66548ff2aa2520ab8bf", [ null, [ [ - "/css/css-backgrounds/background-clip/clip-text-flex-ref.html", + "/css/css-break/flexbox/multi-line-row-flex-fragmentation-049-ref.html", "==" ] ], {} ] ], - "clip-text-multi-line.html": [ - "88ad111eb8400ee8c213f6f6f411c25ef61af42c", + "multi-line-row-flex-fragmentation-050.html": [ + "a96268df0f11b3c1ab9b48806ad9e4702250cb15", [ - "css/css-backgrounds/background-clip/clip-text-multi-line.html", + null, [ [ - "/css/css-backgrounds/background-clip/clip-text-multi-line-ref.html", + "/css/css-break/flexbox/multi-line-row-flex-fragmentation-050-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 1 - ], - [ - 0, - 5846 - ] - ] - ] - ] - } + {} ] - ] - }, - "background-clip-002.html": [ - "286e482ef223002fd18aedbea34f86b916f55879", - [ - null, - [ - [ - "/css/css-backgrounds/reference/background-clip-002-ref.html", - "==" - ] - ], - {} - ] - ], - "background-clip-003.html": [ - "e8b03bdf43c77624f0ff614ae0b479f5c0c51924", - [ - null, - [ - [ - "/css/css-backgrounds/reference/background-clip-002-ref.html", - "==" - ] - ], - {} - ] - ], - "background-clip-004.html": [ - "d2bf3e00b0e1bd986860f21867ab4137c7c77f65", - [ - null, - [ - [ - "/css/css-backgrounds/reference/background-clip-004-ref.html", - "==" - ] - ], - {} - ] - ], - "background-clip-005.html": [ - "426b85466058342c57aeb8adc2a4291279cb9fef", - [ - null, - [ - [ - "/css/css-backgrounds/reference/background-clip-005-ref.html", - "==" - ] - ], - {} - ] - ], - "background-clip-006.html": [ - "643865a149ee2352c0011f3894cb5d9b3c51029e", - [ - null, - [ - [ - "/css/css-backgrounds/reference/background-clip-005-ref.html", - "==" - ] - ], - {} - ] - ], - "background-clip-007.html": [ - "09596b277290f9f4ad5092dcbe931a7ce91c91cf", - [ - null, - [ - [ - "/css/css-backgrounds/reference/ref-if-there-is-no-red.xht", - "==" - ] - ], - {} - ] - ], - "background-clip-008.html": [ - "5994edfb0e0885cc3f29613cb25d1eeda9254dc0", - [ - null, - [ - [ - "/css/css-backgrounds/reference/ref-if-there-is-no-red.xht", - "==" - ] - ], - {} - ] - ], - "background-clip-009.html": [ - "d2dae107613f844b12dd9e4aecc591c06c1df124", - [ - null, - [ - [ - "/css/css-backgrounds/reference/ref-filled-black-96px-square.xht", - "==" - ] - ], - {} - ] - ], - "background-clip-010.html": [ - "856846d19aaf078050b949f8d1d195a249c99231", - [ - null, - [ - [ - "/css/css-backgrounds/reference/ref-if-there-is-no-red.xht", - "==" - ] - ], - {} - ] - ], - "background-clip-color-repaint.html": [ - "4a5cee080096d1bec9c07655b988ab163e9e6131", - [ - null, - [ - [ - "/css/css-backgrounds/background-clip-color-repaint-ref.html", - "==" - ] - ], - {} - ] - ], - "background-clip-color.html": [ - "b09d8086eccd008c83ee183bfa08629f5af57eec", - [ - null, - [ - [ - "/css/css-backgrounds/background-clip-color-ref.html", - "==" - ] - ], - {} - ] - ], - "background-clip-content-box-001.html": [ - "f0777e88c222e49db0572bbb21cd084e8ab76f97", - [ - null, - [ - [ - "/css/css-backgrounds/reference/background-clip-content-box-ref.html", - "==" - ] - ], - {} - ] - ], - "background-clip-content-box-002.html": [ - "7dfa732643f84dac998eb5f2e05f63993bf6e9d3", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square-only.html", - "==" - ] - ], - {} - ] - ], - "background-clip-padding-box-001.html": [ - "ed2b21b14837553598fc940d6db4e939fd278e2c", - [ - "css/css-backgrounds/background-clip-padding-box-001.html", - [ - [ - "/css/reference/ref-filled-green-100px-square-only.html", - "==" - ] - ], - {} - ] - ], - "background-clip-padding-box-with-border-radius.html": [ - "22d7bd9d297d25206834f93c78b27d9bc3b28039", - [ - "css/css-backgrounds/background-clip-padding-box-with-border-radius.html", + ], + "multi-line-row-flex-fragmentation-051.html": [ + "0f826cf3c588ef0f7ab3505d149693314457b332", [ + null, [ - "/css/css-backgrounds/reference/background-clip-padding-box-with-border-radius-ref.html", - "==" - ] - ], - { - "fuzzy": [ [ - null, - [ - [ - 0, - 29 - ], - [ - 0, - 80 - ] - ] + "/css/reference/ref-filled-green-100px-square.xht", + "==" ] - ] - } - ] - ], - "background-clip_padding-box.html": [ - "354cbba90759471f886961d3b0e1a5202618d577", - [ - null, - [ - [ - "/css/css-backgrounds/reference/background_clip_padding-box.html", - "==" - ] - ], - {} - ] - ], - "background-color-body-propagation-001.html": [ - "4cfc36033d403ade4a2bf48bde48eb0d6a82c21b", - [ - null, - [ - [ - "/css/css-backgrounds/background-color-body-propagation-ref.html", - "==" - ] - ], - {} - ] - ], - "background-color-body-propagation-002.html": [ - "1c42637e505b56851025423ce7365138373fb0c4", - [ - null, - [ - [ - "/css/css-backgrounds/background-color-body-propagation-ref.html", - "==" - ] - ], - {} - ] - ], - "background-color-body-propagation-003.html": [ - "8106822a4e8be18848b37ccd1ef38444d1e2bc89", - [ - null, - [ - [ - "/css/css-backgrounds/background-color-body-propagation-ref.html", - "==" - ] - ], - {} - ] - ], - "background-color-body-propagation-004.html": [ - "ede419096ff1faedd91b4f712e238a76101ca081", - [ - null, - [ - [ - "/css/reference/blank.html", - "==" - ] - ], - {} - ] - ], - "background-color-body-propagation-005.html": [ - "05c5421977e74259189bab32b85e35c94daadddb", - [ - null, - [ - [ - "/css/reference/blank.html", - "==" - ] - ], - {} - ] - ], - "background-color-body-propagation-006.html": [ - "4c58cb9dc212f9b02a94b5bc7121cb50bd70cb61", - [ - null, - [ - [ - "/css/reference/blank.html", - "==" - ] - ], - {} - ] - ], - "background-color-body-propagation-007.html": [ - "6deda8dcdb581e6f064ed522c036e5f1d72ea474", - [ - null, - [ - [ - "/css/reference/blank.html", - "==" - ] - ], - {} - ] - ], - "background-color-body-propagation-008.html": [ - "250e4c245baa686f799acbdbdd8eaced6385958e", - [ - "css/css-backgrounds/background-color-body-propagation-008.html", - [ - [ - "/css/css-backgrounds/background-color-no-body-propagation-ref.html", - "==" - ] - ], - {} - ] - ], - "background-color-body-propagation-009.html": [ - "b681543e3dc866d88080d0b14f7449cf0702c687", - [ - "css/css-backgrounds/background-color-body-propagation-009.html", - [ - [ - "/css/css-backgrounds/background-color-no-body-propagation-ref.html", - "==" - ] - ], - {} - ] - ], - "background-color-clip.html": [ - "961e161388d7f1962cfc4ecb22c18b47e60ad62e", - [ - null, - [ - [ - "/css/css-backgrounds/reference/background-color-clip.html", - "==" - ] - ], - {} - ] - ], - "background-color-root-propagation-001.html": [ - "0fa84ef2f02767663ab371e95f94050715429484", - [ - null, - [ - [ - "/css/reference/blank.html", - "==" - ] - ], - {} - ] - ], - "background-color-root-propagation-002.html": [ - "0256f66bc532c944e5273b485206372d588bd004", - [ - null, - [ - [ - "/css/reference/blank.html", - "==" - ] - ], - {} - ] - ], - "background-gradient-subpixel-fills-area.html": [ - "78d4c99c06f3d867cd1a567c5558b97fbc1f89b0", - [ - "css/css-backgrounds/background-gradient-subpixel-fills-area.html", + ], + {} + ] + ], + "multi-line-row-flex-fragmentation-052.html": [ + "8f5a612f5d39332f4ef94c5689c63b6a15884f6b", [ + null, [ - "/css/css-backgrounds/reference/background-gradient-subpixel-fills-area-ref.html", - "==" - ] - ], - { - "fuzzy": [ [ - null, - [ - [ - 0, - 1 - ], - [ - 0, - 6800 - ] - ] + "/css/reference/ref-filled-green-100px-square.xht", + "==" ] - ] - } - ] - ], - "background-image-001.html": [ - "af75ae1772b930ab82047adbd32bbaedaa788a2b", - [ - null, - [ - [ - "/css/css-backgrounds/reference/background-image-001-ref.html", - "==" - ] - ], - {} - ] - ], - "background-image-002.html": [ - "6e0ea774f23521a881e740c59eb77c4c444c8cb1", - [ - null, - [ - [ - "/css/css-backgrounds/reference/background-image-001-ref.html", - "==" - ] - ], - {} - ] - ], - "background-image-003.html": [ - "dd89391c4e58ac4054f7dde10e6d6bc8d36909fd", - [ - null, - [ - [ - "/css/css-backgrounds/reference/background-image-001-ref.html", - "==" - ] - ], - {} - ] - ], - "background-image-004.html": [ - "db2953ed2cce29f78dc58131f69ea17ea9e0bbdc", - [ - null, - [ - [ - "/css/css-backgrounds/reference/background-image-001-ref.html", - "==" - ] - ], - {} - ] - ], - "background-image-005.html": [ - "acee15e713cad204d1824505eb7e2ed5f1a8f7fa", - [ - null, - [ - [ - "/css/css-backgrounds/reference/background-image-001-ref.html", - "==" - ] - ], - {} - ] - ], - "background-image-006.html": [ - "77d97593f48ca4fa298351f00f450ef36d4a511c", - [ - null, + ], + {} + ] + ], + "multi-line-row-flex-fragmentation-053.html": [ + "f42d5784830af75fe66965567a8694ddaf2ca30c", [ + null, [ - "/css/css-backgrounds/reference/background-image-001-ref.html", - "==" - ] - ], - {} - ] - ], - "background-image-007.html": [ - "b532dd6397cd49ec3d4e47fe3cda8b972c7bf4a8", - [ - "css/css-backgrounds/background-image-007.html", + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "multi-line-row-flex-fragmentation-054.html": [ + "9752217ba432e2879c1e532a428e84d3235a1109", [ + null, [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "background-image-centered-with-border-radius.html": [ - "925903b9e5bd6e570cd978f013983ac6e664989e", - [ - null, + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "multi-line-row-flex-fragmentation-055.html": [ + "39d2c6434d31c8cf8f3c9629120a5e058ddca4f1", [ + null, [ - "/css/css-backgrounds/reference/background-image-centered-with-border-radius-ref.html", - "==" - ] - ], - {} - ] - ], - "background-image-centered.html": [ - "4d5633f1bf61b5d886925a478a5a988ccabc1159", - [ - null, + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "multi-line-row-flex-fragmentation-056.html": [ + "0b71c13cce9bb60261cacdcfcc483ffe9eebc744", [ + null, [ - "/css/css-backgrounds/background-image-centered-ref.html", - "==" - ] - ], - {} - ] - ], - "background-image-cover-zoomed-1.html": [ - "b4dca32fddb9e4bcf68b05d809edccaf4a0ecf40", - [ - null, + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "multi-line-row-flex-fragmentation-057.html": [ + "c20e684b45290d0d69dd3cbd3a6e1386f36d3a29", [ + null, [ - "/css/css-backgrounds/reference/background-image-cover-zoomed-1-ref.html", - "==" - ] - ], - {} - ] - ], - "background-image-first-letter.html": [ - "87160959a29e27c4fef3c15e39fd576aea456253", - [ - null, + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "multi-line-row-flex-fragmentation-058.html": [ + "4746c8f93d3ea7824a9a8514d90d3c95f9d1e41b", [ + null, [ - "/css/css-backgrounds/reference/background-image-first-letter-ref.html", - "==" - ] - ], - {} - ] - ], - "background-image-first-line.html": [ - "eb8cbbd0be5a632b1715dcc6a0b9836b1645cf22", - [ - null, + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "multi-line-row-flex-fragmentation-059.html": [ + "fd77f0fd44cf106cb3dfae9ebe5f71b53940ff37", [ + null, [ - "/css/css-backgrounds/reference/background-image-first-line-ref.html", - "==" - ] - ], - {} - ] - ], - "background-image-gradient-currentcolor-conic-repaint.html": [ - "cbd524615f52086c81b7d00e56a7ed11980aa292", - [ - null, + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "multi-line-row-flex-fragmentation-060.html": [ + "3dcf3c888c44e4b5f1a7ac78ecb97200e29b7cf5", [ + null, [ - "/css/css-backgrounds/background-image-gradient-currentcolor-conic-repaint-ref.html", - "==" - ] - ], - {} - ] - ], - "background-image-gradient-currentcolor-linear-repaint.html": [ - "1ad63ccef6772ca01b2ccdfba2faabb5b0db491c", - [ - null, + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "multi-line-row-flex-fragmentation-061.html": [ + "10f8a666e4f12636cad0b42c7032be185b1b9371", [ + null, [ - "/css/css-backgrounds/background-image-gradient-currentcolor-linear-repaint-ref.html", - "==" - ] - ], - {} - ] - ], - "background-image-gradient-currentcolor-radial-repaint.html": [ - "3182f343cfbf17caaedb1a00179fb002a9ff9f74", - [ - null, + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "multi-line-row-flex-fragmentation-062.html": [ + "1d9d8739a9147c084a5a8ad814a85ad05a553888", [ + null, [ - "/css/css-backgrounds/background-image-gradient-currentcolor-radial-repaint-ref.html", - "==" - ] - ], - {} - ] - ], - "background-image-gradient-currentcolor-visited.html": [ - "65467b5ebae3f42e3dd5e0a75a4d695b90751697", - [ - null, + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "multi-line-row-flex-fragmentation-065.html": [ + "10ae8ca41d7d1bb68b9ad3d2f1b400f61c8e2238", [ + null, [ - "/css/css-backgrounds/background-image-gradient-currentcolor-visited-ref.html", - "==" - ] - ], - {} - ] - ], - "background-image-gradient-interpolation-repaint.html": [ - "8f5d0f14bbd47b4bdaa26b453a2834bbc4daaae7", - [ - "css/css-backgrounds/background-image-gradient-interpolation-repaint.html", + [ + "/css/css-break/flexbox/multi-line-row-flex-fragmentation-065-ref.html", + "==" + ] + ], + {} + ] + ], + "multi-line-row-flex-fragmentation-066.html": [ + "b4c7fcd12f33f94cb22747e192b4d53f06dd3bb8", [ + null, [ - "/css/css-backgrounds/background-image-gradient-interpolation-repaint-ref.html", - "==" - ] - ], - {} - ] - ], - "background-image-large-with-auto.html": [ - "a5e487b3e12125d25416da4461253ffc4d9b36ea", - [ - null, + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "multi-line-row-flex-fragmentation-067.html": [ + "797089cabed144bc46ff8317cf0931c6beeb3143", [ + null, [ - "/css/css-backgrounds/reference/background-image-large-with-auto-ref.html", - "==" - ] - ], - {} - ] - ], - "background-image-none-gradient-repaint.html": [ - "1ddca5e21d9032a5658b08480f7b12e400b02b0a", - [ - "css/css-backgrounds/background-image-none-gradient-repaint.html", + [ + "/css/css-break/flexbox/multi-line-row-flex-fragmentation-067-ref.html", + "==" + ] + ], + {} + ] + ], + "multi-line-row-flex-fragmentation-068.html": [ + "809f0c9a3a43436924ba81bb742b2d4d41b5bbe2", [ + null, [ - "/css/css-backgrounds/background-clip-color-repaint-ref.html", - "==" - ] - ], - { - "fuzzy": [ [ - null, - [ - [ - 0, - 1 - ], - [ - 0, - 9693 - ] - ] + "/css/css-break/flexbox/multi-line-row-flex-fragmentation-068-ref.html", + "==" ] - ] - } - ] - ], - "background-image-shared-stylesheet.html": [ - "c0c0661291b8a4ae1c4b33a7d231f9511d878b9f", - [ - null, + ], + {} + ] + ], + "multi-line-row-flex-fragmentation-069.html": [ + "3c3ee17bb48762489bf1328400b1c2b8b1de7d65", [ + null, [ - "/css/css-backgrounds/background-image-shared-stylesheet-ref.html", - "==" - ] - ], - {} - ] - ], - "background-image-table-cells-straddling-no-repeat.html": [ - "67f7937a3fcc93d1f4d0ce1806eea1e12e6078ee", - [ - null, + [ + "/css/css-break/flexbox/multi-line-row-flex-fragmentation-069-ref.html", + "==" + ] + ], + {} + ] + ], + "multi-line-row-flex-fragmentation-070.html": [ + "ea301c33b20e26969e69a294af293031ff90c9b2", [ + null, [ - "/css/reference/ref-filled-green-100px-square-only.html", - "==" - ] - ], - {} - ] - ], - "background-image-table-cells-zoomed.html": [ - "fc23dec322b2764be8b99fb87e5931682e7756a0", - [ - null, + [ + "/css/css-break/flexbox/multi-line-row-flex-fragmentation-070-ref.html", + "==" + ] + ], + {} + ] + ], + "multi-line-row-flex-fragmentation-071.html": [ + "4a855f7fcec8bef0a04520131cc0d56a6f5f2ebe", [ + null, [ - "/css/css-backgrounds/reference/background-image-table-cells-zoomed-ref.html", - "==" - ] - ], - {} - ] - ], - "background-image-with-border-radius-fidelity.html": [ - "b0b494f50219eb1e6e72b2deed232a01f7582d12", - [ - null, + [ + "/css/css-break/flexbox/multi-line-row-flex-fragmentation-071-ref.html", + "==" + ] + ], + {} + ] + ], + "multi-line-row-flex-fragmentation-072.html": [ + "4964c14c229673465d0caa2f699d36c73f53e48d", [ + null, [ - "/css/css-backgrounds/reference/background-image-with-border-radius-fidelity-ref.html", - "==" - ] - ], - {} - ] - ], - "background-margin-iframe-root.html": [ - "9c0cc829ff01036ad9bbb5491940288a1fc8ec3a", - [ - null, + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "multi-line-row-flex-fragmentation-073.html": [ + "6afeb6d558b0c42d85f3a7051b2c31e6d900be0a", [ + null, [ - "/css/css-backgrounds/background-margin-iframe-root-ref.html", - "==" - ] - ], - { - "fuzzy": [ [ - null, - [ - [ - 0, - 1 - ], - [ - 0, - 750 - ] - ] + "/css/reference/ref-filled-green-100px-square.xht", + "==" ] - ] - } - ] - ], - "background-margin-root.html": [ - "01fba7eb6adc274cc0b51447f32a25bcb4268239", - [ - null, + ], + {} + ] + ], + "multi-line-row-flex-fragmentation-074.html": [ + "321f8f79889ac0713eefd483a41e84ca89109d29", [ + null, [ - "/css/css-backgrounds/background-margin-root-ref.html", - "==" - ] - ], - { - "fuzzy": [ [ - null, - [ - [ - 0, - 1 - ], - [ - 0, - 19000 - ] - ] + "/css/reference/ref-filled-green-100px-square.xht", + "==" ] - ] - } - ] - ], - "background-margin-transformed-root.html": [ - "4c0e1085c64aef9e2b7c3646bf1504648d9a707c", - [ - null, + ], + {} + ] + ], + "multi-line-row-flex-fragmentation-077.html": [ + "4a0b056113462b0358bed26da6eaff7c1d082937", [ + null, [ - "/css/css-backgrounds/background-margin-transformed-root-ref.html", - "==" - ] - ], - { - "fuzzy": [ [ - null, - [ - [ - 0, - 1 - ], - [ - 0, - 19000 - ] - ] + "/css/reference/ref-filled-green-100px-square.xht", + "==" ] - ] - } - ] - ], - "background-margin-will-change-root.html": [ - "ce34c99d777bbd71f10fac09fa42f5389ee7f88a", - [ - null, + ], + {} + ] + ], + "multi-line-row-flex-fragmentation-078.html": [ + "1427d5770d9fcef85841422f032a1d41108026c6", [ + null, [ - "/css/css-backgrounds/background-margin-will-change-root-ref.html", - "==" - ] - ], - { - "fuzzy": [ [ - null, - [ - [ - 0, - 1 - ], - [ - 0, - 19000 - ] - ] + "/css/reference/ref-filled-green-100px-square.xht", + "==" ] - ] - } - ] - ], - "background-none-none-and-color.html": [ - "49276cd29cca916e77a8da6a46c5602cd5814084", - [ - "css/css-backgrounds/background-none-none-and-color.html", + ], + {} + ] + ], + "multi-line-row-flex-fragmentation-079.html": [ + "57c094d586b9659f8c5e402eedf23825501979e0", [ + null, [ - "/css/css-backgrounds/background-none-none-and-color-ref.html", - "==" - ] - ], - {} - ] - ], - "background-origin": { - "origin-border-box.html": [ - "bf1607287a1102030d37b9d2ff015be6f90ff083", + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "multi-line-row-flex-fragmentation-083a.html": [ + "efc64d5f4abd9cd10ac24d3d380530a96cc1191a", [ - "css/css-backgrounds/background-origin/origin-border-box.html", + null, [ [ - "/css/css-backgrounds/reference/origin-border-box-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "origin-border-box_with_position.html": [ - "a2695d4fb71b7ae5cfdc13bf21071acdc45b2315", + "multi-line-row-flex-fragmentation-083b.html": [ + "9181fd5f011e7520f8a60f9c6fa1faef64a6ef0c", [ - "css/css-backgrounds/background-origin/origin-border-box_with_position.html", + null, [ [ - "/css/css-backgrounds/reference/origin-border-box_with_position-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "origin-border-box_with_radius.html": [ - "4b123cf664101c8704ad8f07da562d37db01927b", + "multi-line-row-flex-fragmentation-083c.html": [ + "b54571898d36984d133206333e2a1bd6ddd86d05", [ - "css/css-backgrounds/background-origin/origin-border-box_with_radius.html", + null, [ [ - "/css/css-backgrounds/reference/origin-border-box_with_radius-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "origin-border-box_with_size.html": [ - "7de6afbfb6c6ecc695f63ba8d83649c26a52dbbc", + "multi-line-row-flex-fragmentation-083d.html": [ + "025fd6743602a7df64ec00e0bc693e5f020933ee", [ - "css/css-backgrounds/background-origin/origin-border-box_with_size.html", + null, [ [ - "/css/css-backgrounds/reference/origin-border-box_with_size-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "origin-content-box.html": [ - "b8bb74405b7e1f0371ce5aed810d7d0fcffda0bc", + "nested-flex-item-expansion-in-mulicol.html": [ + "56aa3ec5c26878e4b12be7fe09e2700021e6b19c", [ - "css/css-backgrounds/background-origin/origin-content-box.html", + null, [ [ - "/css/css-backgrounds/reference/origin-content-box-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "origin-content-box_with_position.html": [ - "5637df98869f66bf93834f1a1a51f40b399c186e", + "single-line-column-flex-fragmentation-001.html": [ + "d1411f9a16a14585b945408b162182ed343419d2", [ - "css/css-backgrounds/background-origin/origin-content-box_with_position.html", + null, [ [ - "/css/css-backgrounds/reference/origin-content-box_with_position-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "origin-content-box_with_radius.html": [ - "5be4fc6b3e66c2ac5cb62cad4875d0b3c01e46a4", + "single-line-column-flex-fragmentation-002.html": [ + "0f19e3ad324ea46ca7d4514fae515f54e49dc8d8", [ - "css/css-backgrounds/background-origin/origin-content-box_with_radius.html", + null, [ [ - "/css/css-backgrounds/reference/origin-content-box_with_radius-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "origin-content-box_with_size.html": [ - "e0c26d5fe16fbee3fbcef7f575c4900117715390", + "single-line-column-flex-fragmentation-003.html": [ + "7520448292be22a681f0dcfdffbd8faa1283e3d5", [ - "css/css-backgrounds/background-origin/origin-content-box_with_size.html", + null, [ [ - "/css/css-backgrounds/reference/origin-content-box_with_size-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "origin-padding-box.html": [ - "0e1cbe00f57e3c97666d7829078195b7d4ed2df8", + "single-line-column-flex-fragmentation-004.html": [ + "fd1e258994b8f694c12d968e181dd68d86b22de8", [ - "css/css-backgrounds/background-origin/origin-padding-box.html", + null, [ [ - "/css/css-backgrounds/reference/origin-padding-box-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "origin-padding-box_with_position.html": [ - "c7a2310b031a100a98ef010b9b3e2b51eb02ca06", + "single-line-column-flex-fragmentation-005.html": [ + "311582248a74dfcb62669f9fe08fdd67d0d81762", [ - "css/css-backgrounds/background-origin/origin-padding-box_with_position.html", + null, [ [ - "/css/css-backgrounds/reference/origin-padding-box_with_position-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "origin-padding-box_with_radius.html": [ - "d0010a66049f13c15e50b2f98f72040edc40f678", + "single-line-column-flex-fragmentation-006.html": [ + "5d1982d4addeef945ce938b4c5fdc3b0a1f62f66", [ - "css/css-backgrounds/background-origin/origin-padding-box_with_radius.html", + null, [ [ - "/css/css-backgrounds/reference/origin-padding-box_with_radius-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "origin-padding-box_with_size.html": [ - "717982666167fdc1e31b70951af2db605c4b8cd1", + "single-line-column-flex-fragmentation-007.html": [ + "4450dd06d3e4c674586173ab0ba440169d04b5ed", [ - "css/css-backgrounds/background-origin/origin-padding-box_with_size.html", + null, [ [ - "/css/css-backgrounds/reference/origin-padding-box_with_size-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] - ] - }, - "background-origin-002.html": [ - "e86311f799f442c9fe634763408dfe4623977891", - [ - null, + ], + "single-line-column-flex-fragmentation-008.html": [ + "5c83abec7f16e9ae5bc21de686026c240c5b45e3", [ + null, [ - "/css/css-backgrounds/reference/background-origin-002-ref.html", - "==" - ] - ], - {} - ] - ], - "background-origin-003.html": [ - "4c2cbdd12c8b356091590d05285e4b986cbd7610", - [ - null, + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "single-line-column-flex-fragmentation-009.html": [ + "e36c4f0781dd1687b8a9dfb0225effaf0981535b", [ + null, [ - "/css/css-backgrounds/reference/background-origin-002-ref.html", - "==" - ] - ], - {} - ] - ], - "background-origin-004.html": [ - "d94c0ffbc7a57a17a6f1bd72b7478c21ae792093", - [ - null, + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "single-line-column-flex-fragmentation-010.html": [ + "398ba30212bf0319a1e08360b00e7512cb632b80", [ + null, [ - "/css/css-backgrounds/reference/background-origin-004-ref.html", - "==" - ] - ], - {} - ] - ], - "background-origin-005.html": [ - "4521554c034b7e184438f3947bec306be55f74f1", - [ - null, + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "single-line-column-flex-fragmentation-011.html": [ + "546bf2b1ae8c11b1e2e81e5333549b2a2f2fe701", [ + null, [ - "/css/css-backgrounds/reference/background-origin-005-ref.html", - "==" - ] - ], - {} - ] - ], - "background-origin-006.html": [ - "9dfa4f99c5ff9507efce1dc53c8b80bec3eb7051", - [ - null, + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "single-line-column-flex-fragmentation-012.html": [ + "8cae4cd43e2f1b19e8c1d85ae0f8bcaf3f732014", [ + null, [ - "/css/css-backgrounds/reference/background-origin-006-ref.html", - "==" - ] - ], - {} - ] - ], - "background-origin-007.html": [ - "8652495f5736d5250041fdfe9037cd402b43c161", - [ - null, + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "single-line-column-flex-fragmentation-013.html": [ + "4582388dc8c3be230d5ed08978283141b9543dea", [ + null, [ - "/css/css-backgrounds/reference/background-origin-007-ref.html", - "==" - ] - ], - {} - ] - ], - "background-origin-008.html": [ - "a4d7e993e3e138398cf91a20ebda38f20846adad", - [ - null, + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "single-line-column-flex-fragmentation-014.html": [ + "92fe81100c8448c464cebab93669fb6e426d23af", [ + null, [ - "/css/css-backgrounds/reference/background-origin-005-ref.html", - "==" - ] - ], - {} - ] - ], - "background-paint-order-001.html": [ - "cf567ff96b7abd1e93146596866c75d1241618c5", - [ - null, + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "single-line-column-flex-fragmentation-015.html": [ + "b8e91335376e139c3164b7b14cdf09306bf52ff2", [ + null, [ - "/css/css-backgrounds/reference/background-paint-order-001-ref.html", - "==" - ] - ], - {} - ] - ], - "background-position": { - "background-position-bottom-right-repeat-round.html": [ - "c6d93e148c0ad777af335c8f6f80cdcaafa6d450", + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "single-line-column-flex-fragmentation-016.html": [ + "f079e1140e201a5b8c35c8b17aac4c49c3978a22", [ - "css/css-backgrounds/background-position/background-position-bottom-right-repeat-round.html", + null, [ [ - "/css/css-backgrounds/background-position/reference/background-position-bottom-right-repeat-round-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "background-position-right-in-body.html": [ - "4c4024e2e596bd61c87f6ba8c3083837a03dba10", + "single-line-column-flex-fragmentation-017.html": [ + "4c4dad3103bfd8809e3ca68997881bb3e06bed7d", [ - "css/css-backgrounds/background-position/background-position-right-in-body.html", + null, [ [ - "/css/filter-effects/reference/green-100x100.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "subpixel-position-center.tentative.html": [ - "b708e123122f7e299919401cf8fb8554f77889bf", + "single-line-column-flex-fragmentation-018.html": [ + "d06e1bf914c0dea4fa17027e6026feab67418ea2", [ null, [ [ - "/css/css-backgrounds/background-position/reference/subpixel-position-center-ref.tentative.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] - ] - }, - "background-position-calc-minmax-001.html": [ - "4e71f55623b49d728cb9f49caa9583c751a26868", - [ - null, + ], + "single-line-column-flex-fragmentation-019.html": [ + "74f7caa0d0cac0f848183ad3fccb7ff07186aaf7", [ + null, [ - "/css/css-backgrounds/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "background-position-negative-percentage-comparison.html": [ - "389ee719196cd3dd1afae63d6d773039d0472111", - [ - null, + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "single-line-column-flex-fragmentation-020.html": [ + "8b230270ceffa202f74e67be467f9f39b6709e4c", [ + null, [ - "/css/css-backgrounds/reference/background-position-negative-percentage-comparison-ref.html", - "==" - ] - ], - {} - ] - ], - "background-position-subpixel-at-border.tentative.html": [ - "ad2fa4dc02183b48f76bb8a782e6894704d7b24b", - [ - null, + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "single-line-column-flex-fragmentation-021.html": [ + "6248205bc16f807bf1caa09670fee624aea07e16", [ + null, [ - "/css/css-backgrounds/reference/background-position-subpixel-at-border-ref.tentative.html", - "==" - ] - ], - {} - ] - ], - "background-position-three-four-values.html": [ - "b3a1314486043970cc579ccdd0f764c5f15d40a0", - [ - null, + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "single-line-column-flex-fragmentation-022.html": [ + "b0439bed67d1682d5419d6e7d66a327cc875d852", [ + null, [ - "/css/css-backgrounds/reference/background-position-three-four-values-ref.html", - "==" - ] - ], - {} - ] - ], - "background-position-xy-three-four-values-passthru.html": [ - "e504ecca7dd9105240157f4842eafd0b14260202", - [ - null, + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "single-line-column-flex-fragmentation-023.html": [ + "dd5c8a7c99bf3bc15083c24b4ee1589149e13116", [ + null, [ - "/css/css-backgrounds/reference/background-position-three-four-values-ref.html", - "==" - ] - ], - {} - ] - ], - "background-repeat": { - "background-repeat-no-repeat.xht": [ - "d102e80cce939e617e1d8e6da7b71e096a222431", + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "single-line-column-flex-fragmentation-024.html": [ + "e3007b419b8e375eed574c16b531b8bd3009faed", [ - "css/css-backgrounds/background-repeat/background-repeat-no-repeat.xht", + null, [ [ - "/css/css-backgrounds/background-repeat/reference/background-repeat-no-repeat.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 1 - ], - [ - 0, - 5 - ] - ] - ] - ] - } + {} ] ], - "background-repeat-repeat-x.xht": [ - "2f3984a7879326808d749fb96df8a1aa45dd6b38", + "single-line-column-flex-fragmentation-025.html": [ + "e7e4615782e6e3648caf44ad58c9512d5b2a8392", [ null, [ [ - "/css/css-backgrounds/background-repeat/reference/background-repeat-repeat-x.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "background-repeat-repeat-y.xht": [ - "b6ba5938a12ee058e9d1f068ea39fc3d4d4372dd", + "single-line-column-flex-fragmentation-026.html": [ + "ad0d1ab9a14b3af12abea0b1934f4b8a30ca15e7", [ null, [ [ - "/css/css-backgrounds/background-repeat/reference/background-repeat-repeat-y.xht", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "background-repeat-round-roundup.xht": [ - "14b0f175a157c8505b7a2dd6cf850fa2dc6670a0", + "single-line-column-flex-fragmentation-027.html": [ + "38ab5e427ee25d37f312165aba75a50b3780bda9", [ null, [ [ - "/css/css-backgrounds/background-repeat/reference/background-repeat-round-roundup.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "background-repeat-round.xht": [ - "507a75c573c1fb0f7ac4c8a802e38bfb21d93b0c", + "single-line-column-flex-fragmentation-028.html": [ + "80562c57cbc3c0bb7dd74fdc702a0a9fbd48fcb8", [ null, [ [ - "/css/css-backgrounds/background-repeat/reference/background-repeat-round.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "background-repeat-space.xht": [ - "8867520c56eb70a6d590b9fa3ffe7e20f53519d0", + "single-line-column-flex-fragmentation-029.html": [ + "e6f7f8a5fb0fc4ace163d142cb29571e185ed627", [ null, [ [ - "/css/css-backgrounds/background-repeat/reference/background-repeat-space.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 53 - ], - [ - 0, - 2796 - ] - ] - ] - ] - } + {} ] ], - "gradient-repeat-spaced-with-borders.html": [ - "289e856b4cdec00cfbd84b7e8aa0f5972b8f98fc", + "single-line-column-flex-fragmentation-030.html": [ + "34f3642cb9b40d83f616ad6426d3a67fdeb65ef7", [ null, [ [ - "/css/css-backgrounds/background-repeat/reference/gradient-repeat-spaced-with-borders.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] - ] - }, - "background-repeat-round-1a.html": [ - "6717ce1b348584c1d55feb3d868a07b4473df432", - [ - null, + ], + "single-line-column-flex-fragmentation-031.html": [ + "5d42f9a2dfae7b50271983f30bb2c8e5b113f6bf", [ + null, [ - "/css/css-backgrounds/background-repeat-round-1-ref.html", - "==" + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "single-line-column-flex-fragmentation-032.html": [ + "c78169725a9de3a79e5370963ae212cff63eea99", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "single-line-column-flex-fragmentation-033.html": [ + "0a7e423e1165d7783c0d8b3177a615af1ba21275", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "single-line-column-flex-fragmentation-034.html": [ + "e84e633878d7d1303a1545e2bcdc9408ac1ae3df", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "single-line-column-flex-fragmentation-035.html": [ + "317336fa2c29235b9f406b8eb564ef9aa3725363", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "single-line-column-flex-fragmentation-036.html": [ + "41f9f93277e10fd779373c45d61a19754a02326f", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "single-line-column-flex-fragmentation-037.html": [ + "f4ce762085347db1f0b75a049109b06e421b9d32", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "single-line-column-flex-fragmentation-038.html": [ + "a537ee7282e960086904cc9549e3271cf61095d9", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "single-line-column-flex-fragmentation-039.html": [ + "c5820951b54a523a3a476ebc2be419cbe44536a0", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "single-line-column-flex-fragmentation-040.html": [ + "bc4fa7b01cbbef0f1b6b922c8289b5f5469f9dd5", + [ + null, + [ + [ + "/css/css-break/flexbox/single-line-column-flex-fragmentation-040-ref.html", + "==" + ] + ], + {} + ] + ], + "single-line-column-flex-fragmentation-041.html": [ + "66a6b0660f4ed8f49e0dbbaa080ba5c65305a071", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "single-line-column-flex-fragmentation-042.html": [ + "be5732c24d2450cd5707a26dadf65a4a316e3b33", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "single-line-column-flex-fragmentation-043.html": [ + "decca1369e3cd94b6ee2a88e0217430ac95f5745", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "single-line-column-flex-fragmentation-044.html": [ + "2ef4c988ec52549cf01e9b244b50e004ddc0d795", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "single-line-column-flex-fragmentation-045.html": [ + "f2d4d745fa2a76bd290b24194d8ae4f7b057073c", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "single-line-column-flex-fragmentation-046.html": [ + "c2eee20a4e84abf77b23ff6251a28e906901f003", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "single-line-column-flex-fragmentation-047.html": [ + "1f47cb1b6dcd39e1329480da892184bd5a701409", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "single-line-column-flex-fragmentation-048.html": [ + "bb1725665ceaa3afe512e3819458224624e68118", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "single-line-column-flex-fragmentation-049.html": [ + "888fb2bb91e160432344bd5cb015897803e326e7", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "single-line-column-flex-fragmentation-050.html": [ + "ae683e938c29a6a8224e506d789284c79ab1ea69", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "single-line-column-flex-fragmentation-051.html": [ + "9fc2a6e44261a494a12f341a8b116164cc6244ec", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "single-line-column-flex-fragmentation-052.html": [ + "faa0d1305554e8693f3fcbb61da3b55eb01fc7c3", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "single-line-column-flex-fragmentation-053.html": [ + "524870e4fc9e49fcb17ee56ff516c5d5dd973ee2", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "single-line-column-flex-fragmentation-054.html": [ + "60c130ed39ffdfb60eb5a9e1b0cab92f2c964bf5", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "single-line-column-flex-fragmentation-055.html": [ + "2958e6167abcf0df60bae8070b61388406e3c9db", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "single-line-column-flex-fragmentation-056.html": [ + "87091a423a11466de8a1131067e890fd2a1cae48", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "single-line-column-flex-fragmentation-057.html": [ + "9261477e7dc3551c27453eda8c527dea5746925d", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "single-line-column-flex-fragmentation-058.html": [ + "ec00e47436b6fea0cd368d395089d6b9327641eb", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "single-line-column-flex-fragmentation-059.html": [ + "ff91f373ec756ac8c101629a7199d75a600d8a96", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "single-line-column-flex-fragmentation-061.html": [ + "2cbb42d775336abd46662e24528a46bada181ac6", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "single-line-column-flex-fragmentation-062.html": [ + "fae736d108255e3854b7a93d2d344e8d98f81319", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "single-line-column-flex-fragmentation-063.html": [ + "f2d407a614e136d5c1c9311725015b1fadb5a091", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "single-line-column-flex-fragmentation-064.html": [ + "9cda2de6cbb6b42e4968986752160fa723c32326", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "single-line-column-flex-fragmentation-067.html": [ + "6ee57d1852d5aace634062c08c7faa4baf68401d", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "single-line-column-flex-fragmentation-070a.html": [ + "aa9af6a290a7fdafbfd4bf2c78fe6cb7211b55a9", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "single-line-column-flex-fragmentation-070b.html": [ + "45a91d96cf6899cf3fd8e4db1e401e3a850271f1", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "single-line-column-flex-fragmentation-070c.html": [ + "149ff6667ccb05e2b4b30e7cc50fa84b2ee041a5", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "single-line-column-flex-fragmentation-070d.html": [ + "2265e71df692bc3c4b6f94243863dfa2f79d5f9a", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "single-line-column-flex-fragmentation-071.html": [ + "8cea4b75112389b0f69d26ca4afa4c0bbc338fd1", + [ + "css/css-break/flexbox/single-line-column-flex-fragmentation-071.html", + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "single-line-row-flex-fragmentation-001.html": [ + "379327a4aff584192f076d3f9d8f3ead232c0f5c", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "single-line-row-flex-fragmentation-002.html": [ + "bcfd587e4aa0d7fc434a386ade7884132d953a2c", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "single-line-row-flex-fragmentation-003.html": [ + "8b2736f1d19de0721d1187de87b03b24c2508704", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "single-line-row-flex-fragmentation-004.html": [ + "d1f143bcc6215077f3d96691b89fac4a4dd24de3", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "single-line-row-flex-fragmentation-005.html": [ + "05ec2157ce0a14e441746f1afa4acf5b702072ee", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "single-line-row-flex-fragmentation-006.html": [ + "e8a2f407e181bdc8dd7de98bf306488c30d37419", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "single-line-row-flex-fragmentation-007.html": [ + "36dad9d895a389df5f940603056607855a3446d6", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "single-line-row-flex-fragmentation-008.html": [ + "dfade0ff4b9544c3a82b5ab608ac671042b88248", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "single-line-row-flex-fragmentation-009.html": [ + "8dbaa6925fa07dbfc60e161bd7ad346aa8735797", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "single-line-row-flex-fragmentation-010.html": [ + "cd952e7241cbe22d0c6afb8137f0710077d0a540", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "single-line-row-flex-fragmentation-011.html": [ + "cf1c6b764ae2ca7f876366e2d6c89044e7fd3bb1", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "single-line-row-flex-fragmentation-012.html": [ + "75acedcae735686687af3b5a27855023a804c070", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "single-line-row-flex-fragmentation-013.html": [ + "5b66c063deb19fdede0c4cafffe32ab78725b3c8", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "single-line-row-flex-fragmentation-014.html": [ + "00f9afa701be64b04e2265a91d0479ac7e9af505", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "single-line-row-flex-fragmentation-015.html": [ + "6cb5ce0a31160522337383becca14f264f9c233f", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "single-line-row-flex-fragmentation-016.html": [ + "343dbc45d114ccf3db6acdd5ccfd0fbe48010d30", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "single-line-row-flex-fragmentation-017.html": [ + "0c0cd4ac2b97aacc8d5494ce1821e1e632e93006", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "single-line-row-flex-fragmentation-018.html": [ + "9e62460cb2479843277d8954457814608a4d8d23", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "single-line-row-flex-fragmentation-019.html": [ + "149338a7e184f7f6d0b0f63dd3cbdc4c940b85d8", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "single-line-row-flex-fragmentation-020.html": [ + "3fe75a4e4310a0db38311553ed1781f42e2fbd39", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "single-line-row-flex-fragmentation-021.html": [ + "d4e29dd815625cd95e53b301753920223101de78", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "single-line-row-flex-fragmentation-022.html": [ + "4d64641e4c4cc8f95eef8a3f0f5162125ee7fcaf", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "single-line-row-flex-fragmentation-023.html": [ + "d344e91f540eec58badb5d254ccd61e23eee284b", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "single-line-row-flex-fragmentation-024.html": [ + "7e5e3f206b210913bcb7f2e96e3d111ebfb3898b", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "single-line-row-flex-fragmentation-025.html": [ + "dd753039c1b908a0dfd17246b4e48d236cc325ee", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "single-line-row-flex-fragmentation-026.html": [ + "9a78bf503b7238cf04cdb969c01ead6ef1affd56", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "single-line-row-flex-fragmentation-027.html": [ + "85550f18a4a2306749a21a4325269ae639481cbf", + [ + null, + [ + [ + "/css/css-break/flexbox/single-line-row-flex-fragmentation-027-ref.html", + "==" + ] + ], + {} + ] + ], + "single-line-row-flex-fragmentation-028.html": [ + "4d0b5e52cd38e3d2a91cd9a3c865a4dc64d4556c", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "single-line-row-flex-fragmentation-029.html": [ + "5d7e72ddf00810d7c73aa5c1d5f316138416a432", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "single-line-row-flex-fragmentation-030.html": [ + "a70ad1473eaf277a4f8ce14b7f84efe363858a7b", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "single-line-row-flex-fragmentation-031.html": [ + "1bda683312ee4228588b1950695b1672fdb23780", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "single-line-row-flex-fragmentation-032.html": [ + "5cdafeb15cc8bcc7110094e90e15ddddff440bb9", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "single-line-row-flex-fragmentation-033.html": [ + "8d3d8f002ed1a275f52ce4ac1a22d58ab43edcd8", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "single-line-row-flex-fragmentation-034.html": [ + "a274219ed9e164cf17abfc166115a23417e0c154", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "single-line-row-flex-fragmentation-035.html": [ + "77313e67d49a0c12fd0f472a081dc7efe666b320", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "single-line-row-flex-fragmentation-036.html": [ + "5881e058bce90b31ee2f85225eea28447fd85e55", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "single-line-row-flex-fragmentation-037.html": [ + "c7895af92a7d9da5bdeb067a22a79c14700ccefb", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "single-line-row-flex-fragmentation-038.html": [ + "d9ea2acc4c1451435b4e5ac33f93f5bfcf6c9bae", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "single-line-row-flex-fragmentation-039.html": [ + "5c3a039d47357425d3d5b1722bcdc70e03d3858c", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "single-line-row-flex-fragmentation-040.html": [ + "90d86129640d020e99baf35a10f5aa0b80c87e83", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "single-line-row-flex-fragmentation-041.html": [ + "112e963a2258aa23427dec54c5e99c20d5cf417c", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "single-line-row-flex-fragmentation-043.html": [ + "e41862d6c4638139e9cb85e659c3ebdb139f655d", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "single-line-row-flex-fragmentation-044.html": [ + "6da4fde6ee94b6a54999148fa419b9d718df7453", + [ + null, + [ + [ + "/css/css-break/flexbox/single-line-row-flex-fragmentation-044-ref.html", + "==" + ] + ], + {} + ] + ], + "single-line-row-flex-fragmentation-047.html": [ + "061e62f3c368c29421d92c25b326e62732b690e5", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "single-line-row-flex-fragmentation-048.html": [ + "96a302716ca0865382b34697b6a3dd198579e128", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ] + }, + "float-000.html": [ + "36a0722805edf73793d20c1739379123d89c698e", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" ] ], {} ] ], - "background-repeat-round-1b.html": [ - "831666efd2ae810f1d20733113b991e3aa8efe74", + "float-001.html": [ + "84b238a7c6d1e8d874b48ae2c7d1573f06c4f5ca", [ - "css/css-backgrounds/background-repeat-round-1b.html", + null, [ [ - "/css/css-backgrounds/background-repeat-round-1-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 1 - ], - [ - 0, - 12 - ] - ] - ] - ] - } + {} ] ], - "background-repeat-round-1c.html": [ - "3fcfd80b1c790f78f6a05b52537d9289831a4483", + "float-002.html": [ + "e1036b0ce8bf31b21cc815d93c2fbed614cdb6fc", [ null, [ [ - "/css/css-backgrounds/background-repeat-round-1-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "background-repeat-round-1d.html": [ - "7b7d42606ddccf6c9cc06155ec7b9282be297e94", + "float-003.html": [ + "1d1bd37bbf5a06e5562bbe8e207fefb5c67a2644", [ - "css/css-backgrounds/background-repeat-round-1d.html", + null, [ [ - "/css/css-backgrounds/background-repeat-round-1-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 1 - ], - [ - 0, - 12 - ] - ] - ] - ] - } + {} ] ], - "background-repeat-round-1e.html": [ - "9fbf786bd138181aca17cc979f973fcd0de38702", + "float-004.html": [ + "f2fce78175e43cd29b5ab4615bfeeca6c4ea97d7", [ - "css/css-backgrounds/background-repeat-round-1e.html", + null, [ [ - "/css/css-backgrounds/background-repeat-round-1-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 1 - ], - [ - 0, - 12 - ] - ] - ] - ] - } + {} ] ], - "background-repeat-round-2.html": [ - "a49224cc1baca9bf37f49a30bba7f5033c7f83bd", + "float-005.html": [ + "ae515e20638cdf50bc61b5d2140eb05fab5bf783", [ - "css/css-backgrounds/background-repeat-round-2.html", + null, [ [ - "/css/css-backgrounds/background-repeat-round-2-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 1 - ], - [ - 0, - 9 - ] - ] - ] - ] - } + {} ] ], - "background-repeat-round-3.html": [ - "e7d6f4527234b4785aea66fccfc82fcf8e5739fa", + "float-006.html": [ + "28be2dcc28d638ebb4658e1896d61cab82ac7cb5", [ - "css/css-backgrounds/background-repeat-round-3.html", + null, [ [ - "/css/css-backgrounds/background-repeat-round-3-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 1 - ], - [ - 0, - 9 - ] - ] - ] - ] - } + {} ] ], - "background-repeat-round-4.html": [ - "be1a4c8ae9ce4ae15c36ba903566c45bda4b9f44", + "float-007.html": [ + "10fc1217fc8cc4d69e698bea8f0308a18edf0a85", [ null, [ [ - "/css/css-backgrounds/background-repeat-round-4-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "background-repeat-space-10.html": [ - "cb1c782116355f25254852b1c0568db8c4c2cba2", + "float-008.html": [ + "8685bf925d36c7799ab0efd96865e41cb9bbbd7d", [ null, [ [ - "/css/css-backgrounds/background-repeat-space-10-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 52 - ], - [ - 0, - 990 - ] - ] - ] - ] - } + {} ] ], - "background-repeat-space-1a.html": [ - "f2dfa9a0a6d83d51d9a94a7b2fca008809a515cc", + "float-009.html": [ + "8f76c75bd8873e973e3c662806698b81c0fa1d8e", [ null, [ [ - "/css/css-backgrounds/background-repeat-space-1-ref.html", + "/css/css-break/float-009-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 52 - ], - [ - 0, - 7950 - ] - ] - ] - ] - } + {} ] ], - "background-repeat-space-1b.html": [ - "b1e6777bf26a2690b9be0f182d8ea441a35678da", + "float-010.html": [ + "68eef4a6d26c96b0bca43d4ae1fa3b8ad74eddb2", [ null, [ [ - "/css/css-backgrounds/background-repeat-space-1-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 52 - ], - [ - 0, - 7950 - ] - ] - ] - ] - } + {} ] ], - "background-repeat-space-1c.html": [ - "3f562042aeed0b9c2f5f86c10fa57ca511bd5625", + "float-012.html": [ + "6896817443d5f3eefdf1a0aa8181d15e0906efe7", [ null, [ [ - "/css/css-backgrounds/background-repeat-space-1-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 52 - ], - [ - 0, - 7950 - ] - ] - ] - ] - } + {} ] ], - "background-repeat-space-2.html": [ - "ac9664482c576dd22243ba29fd7e5e1b28934e3f", + "float-013.html": [ + "5f8c595c042a5bbad8f6687862a0675e95afed17", [ null, [ [ - "/css/css-backgrounds/background-repeat-space-2-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "background-repeat-space-3.html": [ - "c55f918c175aa47d1d4c58b2bcb91ed84344a67e", + "float-014.tentative.html": [ + "95c9d6f89f2aa28cdac9b1b03f6a1978b97ff93b", [ null, [ [ - "/css/css-backgrounds/background-repeat-space-3-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 52 - ], - [ - 0, - 5300 - ] - ] - ] - ] - } + {} ] ], - "background-repeat-space-4.html": [ - "c3b35d6a6dacc0855349e7cbf534f3824d9739a7", + "float-015.tentative.html": [ + "885edbc84c6368c1b3287104597de6b071debd7f", [ - "css/css-backgrounds/background-repeat-space-4.html", + null, [ [ - "/css/css-backgrounds/background-repeat-space-4-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 52 - ], - [ - 0, - 7908 - ] - ] - ] - ] - } + {} ] ], - "background-repeat-space-5.html": [ - "5594efb315a245a1f1282a782cc740d602407229", + "float-016.html": [ + "a8fc29acc2e57bc8d09c40f6f5146407b7fe4433", [ - "css/css-backgrounds/background-repeat-space-5.html", + null, [ [ - "/css/css-backgrounds/background-repeat-space-5-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 52 - ], - [ - 0, - 7960 - ] - ] - ] - ] - } + {} ] ], - "background-repeat-space-6.html": [ - "8d372dd2771dc4de9e357b6fd43359009a438459", + "float-017.html": [ + "5ca1f80a4e8b6061af99f2708f30398f7206e76d", [ - "css/css-backgrounds/background-repeat-space-6.html", + null, [ [ - "/css/css-backgrounds/background-repeat-space-6-ref.html", + "/css/css-break/float-017-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 64 - ], - [ - 0, - 15894 - ] - ] - ] + {} + ] + ], + "float-in-self-collapsing-block-000.html": [ + "e42d941e78ab45e9107ac49ee8c8c2b4c6d43c9d", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" ] - } + ], + {} ] ], - "background-repeat-space-7.html": [ - "d52f76fe5f4653a8a2b62d8cec74915ba4622bdd", + "float-in-self-collapsing-block-001.html": [ + "835a5be09a80c19b079b1aa71fddee8e450f9a20", [ - "css/css-backgrounds/background-repeat-space-7.html", + null, [ [ - "/css/css-backgrounds/background-repeat-space-7-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 64 - ], - [ - 0, - 15878 - ] - ] - ] + {} + ] + ], + "float-inside-small-block.html": [ + "2afd6dacc9c1f910be33a97677c0f5841fe5b035", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" ] - } + ], + {} ] ], - "background-repeat-space-8.html": [ - "17beb1caf822a2ec0351eb18a66dae0358901865", + "float-stretching-bfc-000.html": [ + "c56e9a998c999a3f08554ec44f8950e4d13f5ef6", [ - "css/css-backgrounds/background-repeat-space-8.html", + null, [ [ - "/css/css-backgrounds/background-repeat-space-8-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 80 - ], - [ - 0, - 15880 - ] - ] - ] + {} + ] + ], + "float-stretching-bfc-001.html": [ + "4c6a9f63ea6614bc8bbc7ba0ba75c4beda6d0f2f", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" ] - } + ], + {} ] ], - "background-repeat-space-9.html": [ - "79f4c0c0a140d268060bafaf48cd25406d5f2f63", + "floats-and-text-narrow-and-short-dynamic.html": [ + "09e5021555d50ca0c6919082bfffc81652f65092", [ null, [ [ - "/css/css-backgrounds/background-repeat-space-9-ref.html", + "/css/css-break/floats-and-text-narrow-and-short-dynamic-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 52 - ], - [ - 0, - 981 - ] - ] - ] + {} + ] + ], + "forced-break-at-fragmentainer-start-000.html": [ + "d5796ba641b524b6379c1ab9f37dad6408bc5a10", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" ] - } + ], + {} ] ], - "background-rounded-image-clip-001.html": [ - "e6222190c192c0fa3db307e2c0cecf6d9a99a13c", + "forced-break-at-fragmentainer-start-001.html": [ + "b3ad80ca9a0dfac7574362e6ff8528ee0c39e8e9", [ - "css/css-backgrounds/background-rounded-image-clip-001.html", + null, [ [ - "/css/css-backgrounds/reference/background-rounded-image-clip.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 2 - ], - [ - 0, - 22547 - ] - ] - ] + {} + ] + ], + "form-control.html": [ + "8ef6eedae252f36de3bfeef8c3a6db23bf6f3d89", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" ] - } + ], + {} ] ], - "background-rounded-image-clip-002.html": [ - "4af7702602027ae39c26befcd1f04d2e323e4642", + "fragmented-autowidth-fc-root-beside-floats.html": [ + "348019aaf0954c27669e5935d675ed87ee2144bb", [ - "css/css-backgrounds/background-rounded-image-clip-002.html", + null, [ [ - "/css/reference/ref-filled-green-200px-square.html", + "/css/css-break/fragmented-autowidth-fc-root-beside-floats-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 5 - ], - [ - 0, - 100 - ] - ] - ] + {} + ] + ], + "fragmented-float-overflowing-container.html": [ + "789c30bce73e323e0d4e4a285f569c7cb7f3dd79", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" ] - } + ], + {} ] ], - "background-size": { - "background-size-contain.xht": [ - "7309905bbac46d67f16907d799fb3ba7716bb31a", + "grid": { + "grid-container-fragmentation-001.html": [ + "0b954f2814850a23cf77a4f0595c7a49235e33f6", [ null, [ [ - "/css/css-backgrounds/background-size/reference/background-size-contain.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "background-size-cover-contain-001.xht": [ - "0f43213de63f16e732a8d5bc84dce2ea576e463b", + "grid-container-fragmentation-002.html": [ + "aec5085991c0b0f4df95b7bf6b1e354f15be92e5", [ null, [ @@ -134878,8 +140079,8 @@ {} ] ], - "background-size-cover-contain-002.xht": [ - "d168e154fb34fea05c6c05a201b030099d5cdf01", + "grid-container-fragmentation-003.html": [ + "659d9eaac5fe52785356d0e80bf37e18c2dd1e4b", [ null, [ @@ -134891,2851 +140092,1688 @@ {} ] ], - "background-size-cover-svg.html": [ - "67f3bcac7d5da84f4e1c120974ca0ceeeaf6ffa0", + "grid-container-fragmentation-004.html": [ + "3e276060711faeb56d6576e4748b67c2334ae0d7", [ - "css/css-backgrounds/background-size/background-size-cover-svg.html", + null, [ [ - "/css/css-backgrounds/background-size/reference/background-size-cover-svg-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 2 - ], - [ - 0, - 1200 - ] - ] - ] - ] - } + {} ] ], - "background-size-cover.xht": [ - "c88e7fd2ed34aa61f24fde1a8d424155d430fc37", + "grid-container-fragmentation-005.html": [ + "a110275ff87dff4300a57322e4a0bc01f5eae20a", [ null, [ [ - "/css/css-backgrounds/background-size/reference/background-size-cover.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "background-size-near-zero-color.html": [ - "b85895b85b27f20269eb69788cfc4b755ae009d0", + "grid-container-fragmentation-006.html": [ + "2c25d1f35cf574b4c7dd4af5022b877f7327be8f", [ null, [ [ - "/css/css-backgrounds/background-size/reference/background-size-near-zero-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "background-size-near-zero-gradient.html": [ - "a232fc8c03415f8fbb1bf545f16b12c85eabd0a5", + "grid-container-fragmentation-007.html": [ + "86323ee57a1b7575eb661a1ddff8694e8a54acce", [ null, [ [ - "/css/css-backgrounds/background-size/reference/background-size-near-zero-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "background-size-near-zero-png.html": [ - "c57f322d2321aae268d09470eb7e2ba87d6be23a", + "grid-container-fragmentation-008.html": [ + "38392afc6064b266bcab9a728e53b9eb2e1f5e16", [ null, [ [ - "/css/css-backgrounds/background-size/reference/background-size-near-zero-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "background-size-near-zero-svg.html": [ - "ff7b9bb491b0272e96278001e63d48a3a3a0307b", + "grid-container-fragmentation-009.html": [ + "c4148bb22689ec87442bf0b929819124b7225cd9", [ null, [ [ - "/css/css-backgrounds/background-size/reference/background-size-near-zero-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "vector": { - "background-size-vector-001.html": [ - "96b630366f25b1ec00a9dcd2db1abb9ff864f00d", + "grid-container-fragmentation-010.html": [ + "d3e87d062b9bf26479c1b9093c34a6d50a4d0108", + [ + null, [ - null, [ - [ - "/css/css-backgrounds/background-size/vector/reference/background-size-vector-001-ref.html", - "==" - ] - ], - {} - ] - ], - "background-size-vector-002.html": [ - "a54c8529b963e57fc754b049b65ba3c557c60572", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-container-fragmentation-011.html": [ + "8615244bf5b2a94bc202b4570f1ae2c442525824", + [ + null, [ - null, [ - [ - "/css/css-backgrounds/background-size/vector/reference/background-size-vector-001-ref.html", - "==" - ] - ], - {} - ] - ], - "background-size-vector-003.html": [ - "e3234baabd9b785ea7daa7b420a3d9a3897d5abe", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-container-fragmentation-012.html": [ + "1a6935291bbed2a1efc51aa7a7d2ab10f79b4575", + [ + null, [ - null, [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-t-lime16x128-aqua16x128.html", - "==" - ] - ], - {} - ] - ], - "background-size-vector-004.html": [ - "5fa0857ca4fd3dc948b3b26f4d884647ba4f4e60", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-item-008.html": [ + "b9caacc4af242de39e0876383b61c56e8c46ae48", + [ + null, [ - null, [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-t-lime16x192-aqua16x192.html", - "==" - ] - ], - {} - ] - ], - "background-size-vector-005.html": [ - "425763666e0a1d5663097b741e04eb4e760ee04c", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-item-009.html": [ + "dc095fd4eeed20cf0204b0ba66dd4dc6e2b4095a", + [ + null, [ - null, [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-t-lime16x128-aqua16x128.html", - "==" - ] - ], - {} - ] - ], - "background-size-vector-006.html": [ - "2392366b0feef874d88baf2ab742024202047984", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-item-fragmentation-001.html": [ + "1e2d41775ef84bbabca12f41c4c65a8a4c0f2187", + [ + null, [ - null, [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-t-lime16x192-aqua16x192.html", - "==" - ] - ], - {} - ] - ], - "background-size-vector-007.html": [ - "6dc0339c76441459f68011717a4bc35a1c289015", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-item-fragmentation-002.html": [ + "ce1b6b67ef5c0baa368881e3c36b62666c28b430", + [ + null, [ - null, [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-t-lime16x128-aqua16x128.html", - "==" - ] - ], - {} - ] - ], - "background-size-vector-008.html": [ - "9f7b6344044d1e8e767fa61030ac67fa49283ab0", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-item-fragmentation-003.html": [ + "8c4e42d640f19d2458a9cbc96316b226148b2e69", + [ + null, [ - null, [ - [ - "/css/css-backgrounds/background-size/vector/reference/background-size-vector-008-ref.html", - "==" - ] - ], - {} - ] - ], - "background-size-vector-009.html": [ - "a09eed92589801d943202abaeca3a66272372152", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-item-fragmentation-004.html": [ + "e0eca9c9d4df78a915fa294a57895c6304e316ed", + [ + null, [ - null, [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-t-lime16x128-aqua16x128.html", - "==" - ] - ], - {} - ] - ], - "background-size-vector-010.html": [ - "8a526627b6e0efe7a7ca9113ccd44e3d56d21b26", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-item-fragmentation-005.html": [ + "8b7503f9276a45d147f6176d6cdab0576a61c295", + [ + null, [ - null, [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-t-lime16x192-aqua16x192.html", - "==" - ] - ], - {} - ] - ], - "background-size-vector-011.html": [ - "bd319e78e740e0837ad8cc4b81a541ef5bc6b451", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-item-fragmentation-006.html": [ + "8c458c832c13028ff7e8d29bea7e00bf9cda586b", + [ + null, [ - null, [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-t-lime16x128-aqua16x128.html", - "==" - ] - ], - {} - ] - ], - "background-size-vector-012.html": [ - "59748b0fcf96faed0798c8e76c10253265a22653", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-item-fragmentation-007.html": [ + "cd78a9bc174d632d8baf43cf6ba3c62abd6082e0", + [ + null, [ - null, [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-t-lime16x192-aqua16x192.html", - "==" - ] - ], - {} - ] - ], - "background-size-vector-013.html": [ - "01193f238fcf2adee85dbe844db49726c6d0c73f", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-item-fragmentation-008.html": [ + "79703f65134be32fe3696f77220fce9ea9e25349", + [ + null, [ - null, [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-t-lime16x128-aqua16x128.html", - "==" - ] - ], - {} - ] - ], - "background-size-vector-014.html": [ - "a9e77c8191868d246e8a84a259aa91c8b8a7f67c", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-item-fragmentation-009.html": [ + "33385109416b0b1eed33c4c4e59a01de5eca513c", + [ + null, [ - null, [ - [ - "/css/css-backgrounds/background-size/vector/reference/background-size-vector-008-ref.html", - "==" - ] - ], - {} - ] - ], - "background-size-vector-015.html": [ - "f2eb47dd29e9dc47631f155d1cdac7c675da869c", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-item-fragmentation-010.html": [ + "bd57ef797ad2eb85b0566dc8f4afa9d75f8381b9", + [ + null, [ - null, [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-t-lime16x128-aqua16x128.html", - "==" - ] - ], - {} - ] - ], - "background-size-vector-016.html": [ - "0252faf7f131c200084e05c5cd640d273464e3dc", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-item-fragmentation-011.html": [ + "e353537827bcb98a70c67d6078294ee0e3ebcf77", + [ + null, [ - null, [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-t-lime16x192-aqua16x192.html", - "==" - ] - ], - {} - ] - ], - "background-size-vector-017.html": [ - "5b6863d8b414e26cbe64ae587ac64476418cd6c1", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-item-fragmentation-012.html": [ + "c3b206e26c59436ccfbf00b002915b501e202348", + [ + null, [ - null, [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-t-lime16x128-aqua16x128.html", - "==" - ] - ], - {} - ] - ], - "background-size-vector-018.html": [ - "29a366ebbce866339299ac22b2d4007d8284a6c9", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-item-fragmentation-013.html": [ + "a1e7106e239b124a118c8a4fb58bedabe4358dc7", + [ + null, [ - null, [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-t-lime16x192-aqua16x192.html", - "==" - ] - ], - {} - ] - ], - "background-size-vector-019.html": [ - "5c602345a64f2cd50ef526ef872d5eb117f674c0", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-item-fragmentation-014.html": [ + "09c95d1840fee99a60ca1c4ded390369331f5a03", + [ + null, [ - null, [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-t-lime8x16-aqua8x16.html", - "==" - ] - ], - {} - ] - ], - "background-size-vector-020.html": [ - "998d6da729ec35b97f97eff24fe79dfb4976522b", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-item-fragmentation-015.html": [ + "6dd82de5822e3d77cb12965200a8a01113b58948", + [ + null, [ - null, [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-t-lime8x16-aqua8x16.html", - "==" - ] - ], - {} - ] - ], - "background-size-vector-021.html": [ - "09715b26bc259a5c136aaf21f006d09e566f1821", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-item-fragmentation-016.html": [ + "c16f740bd51dab61fe9ee86f3d6a23dd34d64c18", + [ + null, [ - null, [ - [ - "/css/css-backgrounds/background-size/vector/reference/background-size-vector-021-ref.html", - "==" - ] - ], - {} - ] - ], - "background-size-vector-022.html": [ - "dff3c79d7c69948e59fa8f04ca3e3608822006aa", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-item-fragmentation-017.html": [ + "a5c1abeb1223395ed3b701af82853bbb6ee85e43", + [ + null, [ - null, [ - [ - "/css/css-backgrounds/background-size/vector/reference/background-size-vector-022-ref.html", - "==" - ] - ], - {} - ] - ], - "background-size-vector-023.html": [ - "f78d4f0dcd65f79fc22906272cbe2c4a4431e1c1", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-item-fragmentation-018.html": [ + "18c757352e2276163ea366526562c8ecd20343fb", + [ + null, [ - null, [ - [ - "/css/css-backgrounds/background-size/vector/reference/background-size-vector-021-ref.html", - "==" - ] - ], - {} - ] - ], - "background-size-vector-024.html": [ - "719a65d31a37692edfa99adb69c13bb5b3bd468e", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-item-fragmentation-019.html": [ + "dc14a6f7449f8d05f60e874c2aa8b642b8805d0f", + [ + null, [ - null, [ - [ - "/css/css-backgrounds/background-size/vector/reference/background-size-vector-022-ref.html", - "==" - ] - ], - {} - ] - ], - "background-size-vector-025.html": [ - "e5429c3f0d2e88a9628f1a8d65c7e4617d0cd9b1", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-item-fragmentation-020.html": [ + "f0636c4982d409758d8f18fb2d9849d505a3d844", + [ + null, [ - null, [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-t-lime2x16-aqua2x16.html", - "==" - ] - ], - {} - ] - ], - "background-size-vector-026.html": [ - "32b63570ba9d3dddf2dfdcd7fce6a77c1a33ceae", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-item-fragmentation-021.html": [ + "775422db7b74f270bb1fb987b387451a5e0f4d42", + [ + null, [ - null, [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-t-lime128x16-aqua128x16.html", - "==" - ] - ], - {} - ] - ], - "background-size-vector-027.html": [ - "ff302b8d2cc88373166772105cf0a74768f7aa4c", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-item-fragmentation-022.html": [ + "a31e8b51dfffee2b4e308633815651b3510f218c", + [ + null, [ - null, [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-t-lime24x192-aqua24x192.html", - "==" - ] - ], - {} - ] - ], - "background-size-vector-028.html": [ - "79a13611150003f704a7c189592311de41d81a9e", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-item-fragmentation-023.html": [ + "092aeba9c6ab61e2c7631b9e0090cbb4340b7d1a", + [ + null, [ - null, [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-t-lime128x192-aqua128x192.html", - "==" - ] - ], - {} - ] - ], - "background-size-vector-029.html": [ - "908954968106ae39462b37c1aeab7a9d0c00af3a", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-item-fragmentation-024.html": [ + "691212b240ce8cb8cdf73293cc80d60a42e9ff1a", + [ + null, [ - null, [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-t-lime24x192-aqua24x192.html", - "==" - ] - ], - {} - ] - ], - "diagonal-percentage-vector-background.html": [ - "75c8fd468549a0aac8189e93a572a941725cf790", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-item-fragmentation-025.html": [ + "fc0731f63e3088cab8979864a71172704aeb879f", + [ + null, [ - "css/css-backgrounds/background-size/vector/diagonal-percentage-vector-background.html", [ - [ - "/css/css-backgrounds/background-size/vector/reference/diagonal-percentage-vector-background-ref.html", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 5 - ], - [ - 0, - 360 - ] - ] - ] - ] - } - ] - ], - "tall--auto--omitted-width-percent-height.html": [ - "94f14411f844982f13c2e73ba72a20473f0b018e", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-item-fragmentation-026.html": [ + "9f4be08a44b9e4128a9a30b1004cffacda535108", + [ + null, [ - null, [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime256x384-aqua256x384.html", - "==" - ] - ], - {} - ] - ], - "tall--auto--percent-width-nonpercent-height-viewbox.html": [ - "43b7e0b7ef4b088539e057b8e29d65093a3ffbd9", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-item-fragmentation-027.tentative.html": [ + "c0270db4991cd8ceaf38b0f24449fe122e0c96eb", + [ + null, [ - null, [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime2x16-aqua2x16.html", - "==" - ] - ], - {} - ] - ], - "tall--auto--percent-width-nonpercent-height.html": [ - "fd719d1fce2530e5f81ceaec53edb6f122ebd6ac", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-item-fragmentation-028.html": [ + "1718fa2081aca900de1a4ddc3f50751714d86928", + [ + null, [ - null, [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime256x16-aqua256x16.html", - "==" - ] - ], - {} - ] - ], - "tall--auto--percent-width-omitted-height-viewbox.html": [ - "bf43fccd74a1c792c8987e036cf936e10d542ae9", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-item-fragmentation-029.html": [ + "380fba879cd622e940d50389de758d95599496f5", + [ + null, [ - null, [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime48x384-aqua48x384.html", - "==" - ] - ], - {} - ] - ], - "tall--auto--percent-width-omitted-height.html": [ - "89167b9efb0db1e75474be5a4e865b06b77fe633", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-item-fragmentation-030.html": [ + "a3e05d0956be2380774638a370d1bcdb2076ea37", + [ + null, [ - null, [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime256x384-aqua256x384.html", - "==" - ] - ], - {} - ] - ], - "tall--auto--percent-width-percent-height-viewbox.html": [ - "63882f5e35ee6627b4d6b4e6554385c568d7624a", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-item-fragmentation-031.html": [ + "1a339ab22c9711f8e68ee0b37c2753ccdea14f71", + [ + null, [ - null, [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime48x384-aqua48x384.html", - "==" - ] - ], - {} - ] - ], - "tall--auto--percent-width-percent-height.html": [ - "00a3828c3daff89170287fcce9322772d32b5d3c", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-item-fragmentation-032.html": [ + "33f855f8952d89e325fc1df42c5d5d6b487b169b", + [ + null, [ - null, [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime256x384-aqua256x384.html", - "==" - ] - ], - {} - ] - ], - "tall--auto-32px--nonpercent-width-nonpercent-height-viewbox.html": [ - "3bf5b67835fc332beffe3aa7386ea4a8c626b5bf", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-item-fragmentation-033.html": [ + "c8f54c90a980d89cd6e52a9fa597fde4e9cf13a3", + [ + null, [ - null, [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime8x16-aqua8x16.html", - "==" - ] - ], - {} - ] - ], - "tall--auto-32px--nonpercent-width-nonpercent-height.html": [ - "d5a02c3e38705a72779edf2464ed48f4dc2609c4", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-item-fragmentation-034.html": [ + "9a81c074bf44369b3223b02e7a217209e52dfe36", + [ + null, [ - null, [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime8x16-aqua8x16.html", - "==" - ] - ], - {} - ] - ], - "tall--auto-32px--nonpercent-width-omitted-height-viewbox.html": [ - "c68a854ca756672159d6e66f902f43f853d21f0c", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-item-fragmentation-035.html": [ + "15a544ea229ca1ad6c357f7851f09bfd989c2d3e", + [ + null, [ - null, [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime2x16-aqua2x16.html", - "==" - ] - ], - {} - ] - ], - "tall--auto-32px--nonpercent-width-omitted-height.html": [ - "5b02781c9428dd3f5ca03d86ea58dd95050eeb5b", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-item-fragmentation-036.html": [ + "ba44745e9a02d5afffa3f424f68435633c8f571c", + [ + null, [ - null, [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime8x16-aqua8x16.html", - "==" - ] - ], - {} - ] - ], - "tall--auto-32px--nonpercent-width-percent-height-viewbox.html": [ - "c752411e2adeaca1907570e44d7e5ac98c84f56d", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-item-fragmentation-037.html": [ + "d5d97394c574b092a5672dc4fa8c1c9013ee0493", + [ + null, [ - null, [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime2x16-aqua2x16.html", - "==" - ] - ], - {} - ] - ], - "tall--auto-32px--nonpercent-width-percent-height.html": [ - "4e1eeb57ee78180759c926fb768ce1f8d76596dc", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-item-fragmentation-038.html": [ + "40008b5dcd645035f207a95b9a71c1c852193ecf", + [ + null, [ - null, [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime8x16-aqua8x16.html", - "==" - ] - ], - {} - ] - ], - "tall--auto-32px--omitted-width-nonpercent-height-viewbox.html": [ - "ad202bbb1e2fb9f41d4e7fc93478f0218a8ff35f", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-item-fragmentation-039.html": [ + "5201c49fa42ff8621a512e1b15dc65486654cb7f", + [ + null, [ - null, [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime2x16-aqua2x16.html", - "==" - ] - ], - {} - ] - ], - "tall--auto-32px--omitted-width-nonpercent-height.html": [ - "33963726d4d6af930fde54993e44e67531fb2ec6", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-item-fragmentation-040.html": [ + "8733073741a8696d845343f570ba8437fef99e7a", + [ + null, [ - null, [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime256x16-aqua256x16.html", - "==" - ] - ], - {} - ] - ], - "tall--auto-32px--omitted-width-omitted-height-viewbox.html": [ - "cd92658b0caaac7070f0e3b4d460ef92db83baa5", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-item-fragmentation-041.html": [ + "f26c72655392663544608637a1311832e15052f9", + [ + null, [ - null, [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime2x16-aqua2x16.html", - "==" - ] - ], - {} - ] - ], - "tall--auto-32px--omitted-width-omitted-height.html": [ - "2a1dc95b1afeec8ed9ab73f0efa165f247e5022b", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-item-fragmentation-042.html": [ + "67e2d405205ecdffd4b618782bfae32606225679", + [ + null, [ - null, [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime256x16-aqua256x16.html", - "==" - ] - ], - {} - ] - ], - "tall--auto-32px--omitted-width-percent-height-viewbox.html": [ - "8eb47bc980f1dc5dee8034c74f172af0444a29fa", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-item-fragmentation-043.html": [ + "7a4ddc54e21206a723e5f7f1dd53902d1718eedd", + [ + null, [ - null, [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime2x16-aqua2x16.html", - "==" - ] - ], - {} - ] - ], - "tall--auto-32px--omitted-width-percent-height.html": [ - "8e30113a7cb755963a4cbfe60c0c1621bd107640", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-item-fragmentation-044.html": [ + "8c028479bc87d424f8e29a13780966d6ec475dd4", + [ + null, [ - null, [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime256x16-aqua256x16.html", - "==" - ] - ], - {} - ] - ], - "tall--auto-32px--percent-width-nonpercent-height-viewbox.html": [ - "0f18f0add8567a13f425d3944abbbe6c5dbf18b9", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-item-fragmentation-045.html": [ + "e4010b421ca97048eb992268aa5c87a1752f6c3e", + [ + null, [ - null, [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime2x16-aqua2x16.html", - "==" - ] - ], - {} - ] - ], - "tall--auto-32px--percent-width-nonpercent-height.html": [ - "770ed704c62734c5876c40bea4cedcbe9bd80f0d", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-item-fragmentation-046.html": [ + "ffdc94efba3754e7e6641a953ca5e46b5722eb3f", + [ + null, [ - null, [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime256x16-aqua256x16.html", - "==" - ] - ], - {} - ] - ], - "tall--auto-32px--percent-width-omitted-height-viewbox.html": [ - "8d2ad03a9bb0b26a7fa519781d52f09b5f8c5def", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-item-fragmentation-047.html": [ + "ac6d137cb27b1413c889018a653626f2f470c902", + [ + null, [ - null, [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime2x16-aqua2x16.html", - "==" - ] - ], - {} - ] - ], - "tall--auto-32px--percent-width-omitted-height.html": [ - "f6a416d96ea636a00a25b07f469ef5f19e4c5710", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-item-fragmentation-048.html": [ + "5eed6b9184bb8923f5fc9d449a4413b0c0d950eb", + [ + null, [ - null, [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime256x16-aqua256x16.html", - "==" - ] - ], - {} - ] - ], - "tall--auto-32px--percent-width-percent-height-viewbox.html": [ - "a9b456bab165cc3618b8cee8669c61bf6af0cf76", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-item-infinite-expansion.html": [ + "ec27d0cc3f24439bb1a3b9db1924490f2d2ab099", + [ + null, [ - null, [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime2x16-aqua2x16.html", - "==" - ] - ], - {} - ] - ], - "tall--auto-32px--percent-width-percent-height.html": [ - "b0d8bc732c02127904657004b74c619a25f676d1", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-item-oof-001.html": [ + "e94889228a79b2ec832d01cc82495a4a328d5077", + [ + null, [ - null, [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime256x16-aqua256x16.html", - "==" - ] - ], - {} - ] - ], - "tall--contain--height.html": [ - "e0438d12c50457a7091a9eef2b5953a25cad671d", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-item-oof-002.html": [ + "b1ced43ab803c645f80eaed23b1475e58c0e041a", + [ + null, [ - null, [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-tall-empty.html", - "==" - ] - ], - {} - ] - ], - "tall--contain--nonpercent-width-nonpercent-height-viewbox.html": [ - "6d3fefbaddc591f6514f6d91a497fe5bb4cc6476", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-item-oof-003.html": [ + "59235f9245d0cd75ea2090189a58e02dd79ed0da", + [ + null, [ - null, [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime192x384-aqua192x384.html", - "==" - ] - ], - {} - ] - ], - "tall--contain--nonpercent-width-nonpercent-height.html": [ - "3ee231236aff3b40a6434d5a885c99252ecebb31", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-item-oof-004.html": [ + "f73d91a1927d9b6cf5ccceda4a31c7ab79ef5496", + [ + null, [ - null, [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime192x384-aqua192x384.html", - "==" - ] - ], - {} - ] - ], - "tall--contain--nonpercent-width-omitted-height-viewbox.html": [ - "b65bd2aa7c81e9ca77894b7440e90f807988c900", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-item-oof-005.html": [ + "3536b30a96e788597af6a583525fad56f2471118", + [ + null, [ - null, [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime48x384-aqua48x384.html", - "==" - ] - ], - {} - ] - ], - "tall--contain--nonpercent-width-omitted-height.html": [ - "2d321a3f553b1cc10cf8ecc3c2433a1aa422ab8e", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-item-oof-006.html": [ + "63a14e5cff891cd0197d8be6f549ed550f6774d4", + [ + null, [ - null, [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime256x384-aqua256x384.html", - "==" - ] - ], - {} - ] - ], - "tall--contain--nonpercent-width-percent-height-viewbox.html": [ - "7ee57a464edfe5aa400f45cb09864146bf9fbdb3", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-item-oof-007.html": [ + "6802973edb28a14d44b79a0868c9f6c9127ceeca", + [ + null, [ - null, [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime48x384-aqua48x384.html", - "==" - ] - ], - {} - ] - ], - "tall--contain--nonpercent-width-percent-height.html": [ - "26faea698dfa165be9f85e4c6502887cd66043d7", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-item-oof-008.html": [ + "a8ef5622a3bd303bee0e29e7348bba70f65976ec", + [ + null, [ - null, [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime256x384-aqua256x384.html", - "==" - ] - ], - {} - ] - ], - "tall--contain--omitted-width-nonpercent-height-viewbox.html": [ - "24ee84cec67a1e8922975f9b28b5314a90255eff", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-item-oof-009.html": [ + "6b50367b160191b57b56530a78b23e2185cd2e02", + [ + null, [ - null, [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime48x384-aqua48x384.html", - "==" - ] - ], - {} - ] - ], - "tall--contain--omitted-width-nonpercent-height.html": [ - "7fd0ec9716c4205bed94b35acc6883a474bb754b", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-item-oof-010.html": [ + "9b12550e6b2b82c5465c18d837e8fac9420e36de", + [ + null, [ - null, [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime256x384-aqua256x384.html", - "==" - ] - ], - {} - ] - ], - "tall--contain--omitted-width-omitted-height-viewbox.html": [ - "750263d01d5c75bc37c984bf3741d7775637fe70", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-item-oof-011.html": [ + "81bf627587fb736b6ae9e75f9e2246c73bffd889", + [ + null, [ - null, [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime48x384-aqua48x384.html", - "==" - ] - ], - {} - ] - ], - "tall--contain--omitted-width-omitted-height.html": [ - "fe1f9d870efc45255f2b6722e8b84bfc837b5385", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-item-overflow-001.html": [ + "30d6f3bb21ca1e144c960fffb3cf657dc79cef64", + [ + null, [ - null, [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime256x384-aqua256x384.html", - "==" - ] - ], - {} - ] - ], - "tall--contain--omitted-width-percent-height-viewbox.html": [ - "8996c107853c4523a29affefac975891c963a64b", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "monolithic-overflow-001.tentative.html": [ + "95660ec1068100e48fb489631fc7312b7937ff0c", + [ + null, [ - null, [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime48x384-aqua48x384.html", - "==" - ] - ], - {} - ] - ], - "tall--contain--omitted-width-percent-height.html": [ - "c76f78a172327911d4201d0f968c9eb94536d58a", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "monolithic-overflow-002.tentative.html": [ + "f487c3ded5fd86bf2992d45b593d7bc2d854e7aa", + [ + null, [ - null, [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime256x384-aqua256x384.html", - "==" - ] - ], - {} - ] - ], - "tall--contain--percent-width-nonpercent-height-viewbox.html": [ - "b8772a8a6a2ccc0df34a3be52cc67ad7c5b33e90", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "monolithic-overflow-003.tentative.html": [ + "c7a3903a09756f601fe24cd1c03a868628a88875", + [ + null, [ - null, [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime48x384-aqua48x384.html", - "==" - ] - ], - {} - ] - ], - "tall--contain--percent-width-nonpercent-height.html": [ - "ab813d82aad915847ac54c66e036b4ef91162b9b", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "monolithic-overflow-004.tentative.html": [ + "208100619c37518bacb46abcc683947fea38cfd1", + [ + null, [ - null, [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime256x384-aqua256x384.html", - "==" - ] - ], - {} - ] - ], - "tall--contain--percent-width-omitted-height-viewbox.html": [ - "6a070da5ea0a9896a3a61aeba901734227a5d019", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "monolithic-overflow-005.html": [ + "069ffb5b212e4b3316485422a423c6aad7a878f8", + [ + null, [ - null, [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime48x384-aqua48x384.html", - "==" - ] - ], - {} - ] - ], - "tall--contain--percent-width-omitted-height.html": [ - "bc4fcecc1603442cccfe67c8f7c2278d35655bcd", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "monolithic-overflow-006.html": [ + "af4cfb1216b81fc4f4460ff20736e3e9e528f0a9", + [ + null, [ - null, [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime256x384-aqua256x384.html", - "==" - ] - ], - {} - ] - ], - "tall--contain--percent-width-percent-height-viewbox.html": [ - "1c8d4e0c22854753904d131aaef6793081a8029b", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "monolithic-overflow-007.html": [ + "906ad29fc16f54007a4032b5fa55d89b525ff25f", + [ + null, [ - null, [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime48x384-aqua48x384.html", - "==" - ] - ], - {} - ] - ], - "tall--contain--percent-width-percent-height.html": [ - "9255929790a7472c73ba1db1814b17573d3e2b98", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "monolithic-overflow-008.html": [ + "6e2caf60ce825800d738a938a429a3e41fa0552e", + [ + null, [ - null, [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime256x384-aqua256x384.html", - "==" - ] - ], - {} - ] - ], - "tall--contain--width.html": [ - "434d17f21b27c9a90126f2f2a5f9e42951b17003", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "monolithic-overflow-009.html": [ + "e3416da195115ace4d5fb30a71983b854be70e29", + [ + null, [ - null, [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-tall-empty.html", - "==" - ] - ], - {} - ] - ], - "tall--cover--height.html": [ - "1994e969d2679b4266131f0e89cc70c6238001c8", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "subgrid": { + "subgrid-container-fragmentation-001.html": [ + "959ff4a9053a20335081e6a7675845095f5b5a74", [ null, [ [ - "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "tall--cover--nonpercent-width-nonpercent-height--crisp.html": [ - "93f6b94e6e27ea320984eee456e5fd8c9ad53a7b", + "subgrid-container-fragmentation-002.html": [ + "9b28b37b4215759f2f5a5c1cff4774887b0da1b5", [ null, [ [ - "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime256x512-aqua256x256.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "tall--cover--nonpercent-width-nonpercent-height-viewbox--crisp.html": [ - "4880899870b9b80f22c872e1394e0fad3de02e0e", + "subgrid-container-fragmentation-003.html": [ + "3f1381a7b21db86f2dd727ed4785c758393769a9", [ null, [ [ - "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime256x512-aqua256x256.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "tall--cover--nonpercent-width-nonpercent-height-viewbox.html": [ - "1f54f44724fe4ae377fe73e187cc20639fdc7cd9", + "subgrid-container-fragmentation-004.html": [ + "67c291fbc34e20f7edc020da2714ad82a8e989ad", [ null, [ [ - "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime256x512-aqua256x256.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "tall--cover--nonpercent-width-nonpercent-height.html": [ - "eae4b2288a0f3ba2b69c8c861849c293ebb6b2cc", + "subgrid-container-fragmentation-005.html": [ + "37babe299110bb5bbf488722ae3bafd5f68ba780", [ null, [ [ - "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime256x512-aqua256x256.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "tall--cover--nonpercent-width-omitted-height-viewbox.html": [ - "7179f71c7c8a802ed310491a439b82c7e2f0af76", + "subgrid-item-fragmentation-001.html": [ + "1a26d816d0f99084d56beac62a8b46c73315c2bb", [ null, [ [ - "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime256x768.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "tall--cover--nonpercent-width-omitted-height.html": [ - "57a039221b42749009d3f43e5c39fe55ae3de69b", + "subgrid-item-fragmentation-002.html": [ + "24f7d997a3d81bab4d8bb729ff1db1c78ecda4ca", [ null, [ [ - "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime256x384-aqua256x384.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "tall--cover--nonpercent-width-percent-height-viewbox.html": [ - "45bac2aa717eedd54469d7a5e3cd1fe9fdc2500a", + "subgrid-item-fragmentation-003.html": [ + "49f0b5fc76568f8b1bdde0f621069ce54b0ff543", [ null, [ [ - "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime256x768.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "tall--cover--nonpercent-width-percent-height.html": [ - "74777df0b4f8ad679fa59f60ee20775b64586063", + "subgrid-item-fragmentation-004.html": [ + "85ed105f9605542ff0550b658ceb7405c0f0cb20", [ null, [ [ - "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime256x384-aqua256x384.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "tall--cover--omitted-width-nonpercent-height-viewbox.html": [ - "723c5a7340f91f4d86b5409c76e9c3cbb250b7da", + "subgrid-item-fragmentation-005.html": [ + "3832f0d16e148ceef8176817abb60f3e00235844", [ null, [ [ - "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime256x768.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] - ], - "tall--cover--omitted-width-nonpercent-height.html": [ - "135cd19c2868d006ccc9a855d3d6299bb0593fa2", + ] + } + }, + "increase-fragmentainer-size-tall-border.html": [ + "b7e716b23c4e7db17ef667f30c771d2d1df1cb9a", + [ + null, + [ [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime256x384-aqua256x384.html", - "==" - ] - ], - {} + "/css/reference/ref-filled-green-100px-square.xht", + "==" ] ], - "tall--cover--omitted-width-omitted-height-viewbox.html": [ - "e0e71ca198e030632f8b1720b03ddd1f7b02c6ff", + {} + ] + ], + "ink-overflow-002.html": [ + "8af605efea87b618007641729bd3b579fcb654eb", + [ + null, + [ [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime256x768.html", - "==" - ] - ], - {} + "/css/reference/ref-filled-green-100px-square.xht", + "==" ] ], - "tall--cover--omitted-width-omitted-height.html": [ - "6cc860ccaa0d4b25224556e79a9ca1a1bf4b9222", + {} + ] + ], + "inline-with-float-001.html": [ + "b6a6e1958ff9bb8cd216af572cf3a092fa9a3ac8", + [ + null, + [ [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime256x384-aqua256x384.html", - "==" - ] - ], - {} + "/css/reference/ref-filled-green-100px-square.xht", + "==" ] ], - "tall--cover--omitted-width-percent-height-viewbox.html": [ - "f63cfa2e9a604793104ea581ed5a9ea4b6026b85", + {} + ] + ], + "inline-with-float-002.html": [ + "d9235b421a16f783ad58505f157682a5a739eae7", + [ + null, + [ [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime256x768.html", - "==" - ] - ], - {} + "/css/reference/ref-filled-green-100px-square.xht", + "==" ] ], - "tall--cover--omitted-width-percent-height.html": [ - "148dd019e77edfb80ae06b1d3d058adb331e18a8", + {} + ] + ], + "inline-with-float-004.html": [ + "6b404d9570005a327bd0943334ca518b479e5175", + [ + null, + [ [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime256x384-aqua256x384.html", - "==" - ] - ], - {} + "/css/reference/ref-filled-green-100px-square.xht", + "==" ] ], - "tall--cover--percent-width-nonpercent-height-viewbox.html": [ - "8beff4480285914cb0987b74112671f72bdcfc64", + {} + ] + ], + "line-after-unbreakable-float-after-padding.html": [ + "d3a4018cd809fc09eb68c1b25f4dda4736e64131", + [ + null, + [ [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime256x768.html", - "==" - ] - ], - {} + "/css/css-break/line-after-unbreakable-float-after-padding-ref.html", + "==" ] ], - "tall--cover--percent-width-nonpercent-height.html": [ - "4d2a5abca8e4d8820fc68d7bcb7290c1246d7731", + {} + ] + ], + "line-pushed-by-float-000.html": [ + "1df1c06cc144881a68760ed9031d65f9d9e48009", + [ + null, + [ [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime256x384-aqua256x384.html", - "==" - ] - ], - {} + "/css/reference/ref-filled-green-100px-square.xht", + "==" ] ], - "tall--cover--percent-width-omitted-height-viewbox.html": [ - "83271916482de149f2a5c6220e48d69ceb2742e3", + {} + ] + ], + "line-pushed-by-float-001.html": [ + "49b185349ee1c15b18d75349f1345149683c5548", + [ + null, + [ [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime256x768.html", - "==" - ] - ], - {} + "/css/reference/ref-filled-green-100px-square.xht", + "==" ] ], - "tall--cover--percent-width-omitted-height.html": [ - "72ff0f4ee9b9685469b7b471cec0ec7074fe729a", + {} + ] + ], + "margin-after-overflowed-block.html": [ + "26a2eb22aa69b134847dcb8cc3305625bd47100b", + [ + null, + [ [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime256x384-aqua256x384.html", - "==" - ] - ], - {} + "/css/reference/ref-filled-green-100px-square.xht", + "==" ] ], - "tall--cover--percent-width-percent-height-viewbox.html": [ - "7bd2bb01e88de38f3f1cc9ab7e9d310a18c78642", + {} + ] + ], + "margin-at-break-001.html": [ + "79edf59696eac2b41c33099941ceec52ec1ea080", + [ + null, + [ [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime256x768.html", - "==" - ] - ], - {} + "/css/reference/ref-filled-green-100px-square.xht", + "==" ] ], - "tall--cover--percent-width-percent-height.html": [ - "02c6861a56770d2bad7a9fa9421240a3bda40fac", + {} + ] + ], + "margin-at-break-002.html": [ + "add4d831d10d2556e162485eb37de2552485cf13", + [ + null, + [ [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime256x384-aqua256x384.html", - "==" - ] - ], - {} + "/css/reference/ref-filled-green-100px-square.xht", + "==" ] ], - "tall--cover--width.html": [ - "26ff0ddfbb6581b12a06035746734f909b57bbf0", + {} + ] + ], + "margin-at-break-003.html": [ + "18bc4dbd24fb62c8d87dfde676a3123186a85137", + [ + null, + [ [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-tall-lime.html", - "==" - ] - ], - {} + "/css/reference/ref-filled-green-100px-square.xht", + "==" ] ], - "wide--12px-auto--nonpercent-width-nonpercent-height-viewbox.html": [ - "28c134425019ea41a3f7506f1c729fd13f1b447f", + {} + ] + ], + "margin-at-break-004.html": [ + "59e650e5d5caf8dca43f0f170d7a1b22f6561eac", + [ + null, + [ [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime12x24-aqua12x24.html", - "==" - ] - ], - {} + "/css/reference/ref-filled-green-100px-square.xht", + "==" ] ], - "wide--12px-auto--nonpercent-width-nonpercent-height.html": [ - "9bac184a060bfa3c0f849d682e42468017228994", + {} + ] + ], + "margin-at-break-005.html": [ + "9f47728c66622ee681be59bd247523f482315865", + [ + null, + [ [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime12x24-aqua12x24.html", - "==" - ] - ], - {} + "/css/reference/ref-filled-green-100px-square.xht", + "==" ] ], - "wide--12px-auto--nonpercent-width-omitted-height-viewbox.html": [ - "fe2943e08b90f1a7510f356332461388c66ca8f8", + {} + ] + ], + "monolithic-content-with-forced-break-001.html": [ + "75b676d0ba08ab831d100ba1bc3bb87c62142abf", + [ + null, + [ [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime12x96-aqua12x96.html", - "==" - ] - ], - {} + "/css/reference/ref-filled-green-100px-square.xht", + "==" ] ], - "wide--12px-auto--nonpercent-width-omitted-height.html": [ - "76284feb92113b4ecd4274d5cdf0c04f20968e74", + {} + ] + ], + "monolithic-content-with-forced-break-002.html": [ + "1df3078aa1a8e6e115172f4ce93e0b50d8e5fa7e", + [ + null, + [ [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime12x128-aqua12x128.html", - "==" - ] - ], - {} + "/css/reference/ref-filled-green-100px-square-only.html", + "==" ] ], - "wide--12px-auto--nonpercent-width-percent-height-viewbox.html": [ - "c35f86538b688817afe743e479e60b6f4276b8c7", + {} + ] + ], + "monolithic-content-with-forced-break-003.html": [ + "deabd8fde26d52caca9b58e91750a5006a50821f", + [ + null, + [ [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime12x96-aqua12x96.html", - "==" - ] - ], - {} + "/css/reference/ref-filled-green-100px-square-only.html", + "==" ] ], - "wide--12px-auto--nonpercent-width-percent-height.html": [ - "e4dea86a23f366840c5570e1b353bb37fe847d8d", + {} + ] + ], + "monolithic-overflow-001.tentative.html": [ + "db285a929c8a7fa75b3c5546b127227ec6b2708d", + [ + null, + [ [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime12x128-aqua12x128.html", - "==" - ] - ], - {} + "/css/reference/ref-filled-green-100px-square.xht", + "==" ] ], - "wide--12px-auto--omitted-width-nonpercent-height-viewbox.html": [ - "b6568cea448794d330bc747e3464214681ca62a8", + {} + ] + ], + "monolithic-overflow-002.tentative.html": [ + "387af9c5016a315b9e23bd34f88f8b45a9dbfa82", + [ + null, + [ [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime12x96-aqua12x96.html", - "==" - ] - ], - {} + "/css/reference/ref-filled-green-100px-square.xht", + "==" ] ], - "wide--12px-auto--omitted-width-nonpercent-height.html": [ - "73cd14dc88eb64b9a3204aec976f349491a3e2e1", + {} + ] + ], + "monolithic-overflow-003.tentative.html": [ + "02210aee3d229b8c897951566961797f328e9cac", + [ + null, + [ [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime12x16-aqua12x16.html", - "==" - ] - ], - {} + "/css/reference/ref-filled-green-100px-square.xht", + "==" ] ], - "wide--12px-auto--omitted-width-omitted-height-viewbox.html": [ - "f104b9647336e32dda557f2f2b01c56674fd4f73", + {} + ] + ], + "monolithic-overflow-004.tentative.html": [ + "9a190810af8daa9593c78237da9bb77320cbcafd", + [ + null, + [ [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime12x96-aqua12x96.html", - "==" - ] - ], - {} + "/css/reference/ref-filled-green-100px-square.xht", + "==" ] ], - "wide--12px-auto--omitted-width-omitted-height.html": [ - "58879b83035bd49e1fcf37de38b41ffaa21ea013", + {} + ] + ], + "monolithic-overflow-005.tentative.html": [ + "f1667a15fd5cd73e8a9eb0824f910452454cb4f1", + [ + null, + [ [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime12x128-aqua12x128.html", - "==" - ] - ], - {} + "/css/reference/ref-filled-green-100px-square.xht", + "==" ] ], - "wide--12px-auto--omitted-width-percent-height-viewbox.html": [ - "81f74f7ae36292bb92f1b0958cb0550728ff03b0", + {} + ] + ], + "monolithic-overflow-006.tentative.html": [ + "200f271dc48e6f63f242359cff31e1a21329eb60", + [ + null, + [ [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime12x96-aqua12x96.html", - "==" - ] - ], - {} + "/css/reference/ref-filled-green-100px-square.xht", + "==" ] ], - "wide--12px-auto--omitted-width-percent-height.html": [ - "1c2a6342474bf76af7f2d12cc6122b95fd82d8d4", + {} + ] + ], + "monolithic-with-overflow-lr.html": [ + "cb9d0fbcfe60de8fc479159c233239e5bb272ed6", + [ + null, + [ [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime12x128-aqua12x128.html", - "==" - ] - ], - {} + "/css/reference/ref-filled-green-100px-square.xht", + "==" ] ], - "wide--12px-auto--percent-width-nonpercent-height-viewbox.html": [ - "a926a9fa6bc73e64f343f7dee3e94d144efde835", + {} + ] + ], + "monolithic-with-overflow-rl.html": [ + "47720ff5c60fb47c718be84c29df643839f0ece4", + [ + null, + [ [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime12x96-aqua12x96.html", - "==" - ] - ], - {} + "/css/reference/ref-filled-green-100px-square.xht", + "==" ] ], - "wide--12px-auto--percent-width-nonpercent-height.html": [ - "1a66abff427d7b3b2e1dfb609238fdfd849da8d4", + {} + ] + ], + "monolithic-with-overflow.html": [ + "e803ad62cc282aa1234af3e1476812971e2abb4e", + [ + null, + [ [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime12x16-aqua12x16.html", - "==" - ] - ], - {} + "/css/reference/ref-filled-green-100px-square.xht", + "==" ] ], - "wide--12px-auto--percent-width-omitted-height-viewbox.html": [ - "6906243e9843987d0496dfb2f16c8408d6c70947", + {} + ] + ], + "orphans-in-parallel-flow.html": [ + "0cc084acf2eeb5878e482fb85a64d8667ee0b8b4", + [ + null, + [ [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime12x96-aqua12x96.html", - "==" - ] - ], - {} + "/css/reference/ref-filled-green-100px-square.xht", + "==" ] ], - "wide--12px-auto--percent-width-omitted-height.html": [ - "64966a724e660faf5c89b5b9a19fff4ca3a30a62", + {} + ] + ], + "out-of-flow-in-multicolumn-001.html": [ + "0322f5171014e162ee0870574166e78624602fab", + [ + null, + [ [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime12x128-aqua12x128.html", - "==" - ] - ], - {} + "/css/css-break/out-of-flow-in-multicolumn-001-ref.html", + "==" ] ], - "wide--12px-auto--percent-width-percent-height-viewbox.html": [ - "6db73b498170d30a2d662552dd1ffcb4a833b237", + {} + ] + ], + "out-of-flow-in-multicolumn-002.html": [ + "0138a3a41db6775eadbbde28d43a09c2481de48a", + [ + null, + [ [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime12x96-aqua12x96.html", - "==" - ] - ], - {} + "/css/reference/ref-filled-green-100px-square.xht", + "==" ] ], - "wide--12px-auto--percent-width-percent-height.html": [ - "d1dfaa4cad2aea3f7b542a6ea31783774d97f172", + {} + ] + ], + "out-of-flow-in-multicolumn-003.html": [ + "b37bfad7b73c553cc15648f610a2ce8b3365a5e9", + [ + null, + [ [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime12x128-aqua12x128.html", - "==" - ] - ], - {} + "/css/reference/ref-filled-green-100px-square.xht", + "==" ] ], - "wide--auto--nonpercent-width-nonpercent-height-viewbox.html": [ - "bb399358f878c36ed4a9c085e1ec9bec3fe591b4", + {} + ] + ], + "out-of-flow-in-multicolumn-004.html": [ + "f2e4aa97309b2b016160b6c8918a7a520402f979", + [ + null, + [ [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime8x16-aqua8x16.html", - "==" - ] - ], - {} + "/css/css-break/out-of-flow-in-multicolumn-004-ref.html", + "==" ] ], - "wide--auto--nonpercent-width-nonpercent-height.html": [ - "7363a03961fbad3414eb24731e875906c085c5b3", + {} + ] + ], + "out-of-flow-in-multicolumn-005.html": [ + "a87a074d6c31f5db8ea5468ced35603f061cc323", + [ + null, + [ [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime8x16-aqua8x16.html", - "==" - ] - ], - {} + "/css/reference/ref-filled-green-100px-square.xht", + "==" ] ], - "wide--auto--nonpercent-width-omitted-height-viewbox.html": [ - "e207e2fd88a3d02073897be9c0424515c0ff7e17", + {} + ] + ], + "out-of-flow-in-multicolumn-006.html": [ + "d724ad013729d3343cdf675f4d216cc9a9a62c70", + [ + null, + [ [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime8x64-aqua8x64.html", - "==" - ] - ], - {} + "/css/reference/ref-filled-green-100px-square.xht", + "==" ] ], - "wide--auto--nonpercent-width-omitted-height.html": [ - "d48cc1008b45d7f456c7ef8726cc593bab600296", + {} + ] + ], + "out-of-flow-in-multicolumn-007.html": [ + "0e6988c3ff470b66e76193b646bbec55096717a4", + [ + null, + [ [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime8x128-aqua8x128.html", - "==" - ] - ], - {} + "/css/reference/ref-filled-green-100px-square.xht", + "==" ] ], - "wide--auto--nonpercent-width-percent-height-viewbox.html": [ - "c4405c2cd212d917e1e1f717403fc9ad6b7316f9", - [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime8x64-aqua8x64.html", - "==" - ] - ], - {} - ] - ], - "wide--auto--nonpercent-width-percent-height.html": [ - "2860507a31d074b39705034e6c7bd0cb5d4d182c", - [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime8x128-aqua8x128.html", - "==" - ] - ], - {} - ] - ], - "wide--auto--omitted-width-nonpercent-height-viewbox.html": [ - "0eac7d95e50965f279ccbcd2f69987ec98b56898", - [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime2x16-aqua2x16.html", - "==" - ] - ], - {} - ] - ], - "wide--auto--omitted-width-nonpercent-height.html": [ - "60577d96f4205fba39c5724a5df8c7df99f1f0d1", - [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime768x16-aqua768x16.html", - "==" - ] - ], - {} - ] - ], - "wide--auto--omitted-width-omitted-height-viewbox.html": [ - "521401033e1b20541e1f37029c6d3dd7c0e2a605", - [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime16x128-aqua16x128.html", - "==" - ] - ], - {} - ] - ], - "wide--auto--omitted-width-omitted-height.html": [ - "59d7f74f8e40dcc8b955da65c997b294660243e9", - [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime768x128-aqua768x128.html", - "==" - ] - ], - {} - ] - ], - "wide--auto--omitted-width-percent-height-viewbox.html": [ - "f3c0e84da367a5d703f7676f63691723a2ebf92a", - [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime16x128-aqua16x128.html", - "==" - ] - ], - {} - ] - ], - "wide--auto--omitted-width-percent-height.html": [ - "de567dc43bfc741e8f93577bcc950f8addc5670a", - [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime768x128-aqua768x128.html", - "==" - ] - ], - {} - ] - ], - "wide--auto--percent-width-nonpercent-height-viewbox.html": [ - "13b27bc650bea6a4615894dfb9090734b29e34e1", - [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime2x16-aqua2x16.html", - "==" - ] - ], - {} - ] - ], - "wide--auto--percent-width-nonpercent-height.html": [ - "7e63b29dbf02f6c3b4d9a6e85847779684a0faa3", - [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime768x16-aqua768x16.html", - "==" - ] - ], - {} - ] - ], - "wide--auto--percent-width-omitted-height-viewbox.html": [ - "ed3ef1d458230d8f8152491cd5e6bd32370d89c1", - [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime16x128-aqua16x128.html", - "==" - ] - ], - {} - ] - ], - "wide--auto--percent-width-omitted-height.html": [ - "c9977ffbed3327b62c479cacf3aef7907c56f3de", - [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime768x128-aqua768x128.html", - "==" - ] - ], - {} - ] - ], - "wide--auto--percent-width-percent-height-viewbox.html": [ - "6f9037d769f65992ffe60562ee318a1d8baa6896", - [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime16x128-aqua16x128.html", - "==" - ] - ], - {} - ] - ], - "wide--auto--percent-width-percent-height.html": [ - "a54798382bafcb2c7669051ae167ee761003afd4", - [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime768x128-aqua768x128.html", - "==" - ] - ], - {} - ] - ], - "wide--auto-32px--nonpercent-width-nonpercent-height-viewbox.html": [ - "4049c5895a28639e76e813d0cbd6e3997ce9ff80", - [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime8x16-aqua8x16.html", - "==" - ] - ], - {} - ] - ], - "wide--auto-32px--nonpercent-width-nonpercent-height.html": [ - "f66e430ee6e633f94b87d7e9595d699d870330c0", - [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime8x16-aqua8x16.html", - "==" - ] - ], - {} - ] - ], - "wide--auto-32px--nonpercent-width-omitted-height-viewbox.html": [ - "07422dfdb5150636eef47b6950f99fc21f5dce87", - [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime2x16-aqua2x16.html", - "==" - ] - ], - {} - ] - ], - "wide--auto-32px--nonpercent-width-omitted-height.html": [ - "accc46d6e016a5c4eb508757b4f3c3559616fd66", - [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime8x16-aqua8x16.html", - "==" - ] - ], - {} - ] - ], - "wide--auto-32px--nonpercent-width-percent-height-viewbox.html": [ - "b0ef7476820c2996f349ce336e70383c7df4d7b2", - [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime2x16-aqua2x16.html", - "==" - ] - ], - {} - ] - ], - "wide--auto-32px--nonpercent-width-percent-height.html": [ - "f9978688a6b4f4222671c805d770edd1cfa63afd", - [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime8x16-aqua8x16.html", - "==" - ] - ], - {} - ] - ], - "wide--auto-32px--omitted-width-nonpercent-height-viewbox.html": [ - "a5647237814c4b1945ea57ad0c82679ed4712136", - [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime2x16-aqua2x16.html", - "==" - ] - ], - {} - ] - ], - "wide--auto-32px--omitted-width-nonpercent-height.html": [ - "688dc5b3f9d51acea5089d8eb739a68ae07b918a", - [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime768x16-aqua768x16.html", - "==" - ] - ], - {} - ] - ], - "wide--auto-32px--omitted-width-omitted-height-viewbox.html": [ - "0e8b934a2d2b14aef48e616eecefa96660b65afc", - [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime2x16-aqua2x16.html", - "==" - ] - ], - {} - ] - ], - "wide--auto-32px--omitted-width-omitted-height.html": [ - "b43366bbc13096bc57ef478224daee5f5e89b9bb", - [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime768x16-aqua768x16.html", - "==" - ] - ], - {} - ] - ], - "wide--auto-32px--omitted-width-percent-height-viewbox.html": [ - "95cda276706f77aa83d642b3eaa476c6308379f0", - [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime2x16-aqua2x16.html", - "==" - ] - ], - {} - ] - ], - "wide--auto-32px--omitted-width-percent-height.html": [ - "8622f7394f350a7ec109ad220617c54c631776ae", - [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime768x16-aqua768x16.html", - "==" - ] - ], - {} - ] - ], - "wide--auto-32px--percent-width-nonpercent-height-viewbox.html": [ - "ea6ecc2308511acc1c3b87adf04994914fe296fe", - [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime2x16-aqua2x16.html", - "==" - ] - ], - {} - ] - ], - "wide--auto-32px--percent-width-nonpercent-height.html": [ - "62e9946715a7e41bf44a667190632c67617ede61", - [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime768x16-aqua768x16.html", - "==" - ] - ], - {} - ] - ], - "wide--auto-32px--percent-width-omitted-height-viewbox.html": [ - "f8d819209810c4159bb22fd54eeee11091835ae8", - [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime2x16-aqua2x16.html", - "==" - ] - ], - {} - ] - ], - "wide--auto-32px--percent-width-omitted-height.html": [ - "bce840674fbafa8944f918e03aec1a94012c9622", - [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime768x16-aqua768x16.html", - "==" - ] - ], - {} - ] - ], - "wide--auto-32px--percent-width-percent-height-viewbox.html": [ - "90c1f23fa27a5f71d24183978b23e39fed39350d", - [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime2x16-aqua2x16.html", - "==" - ] - ], - {} - ] - ], - "wide--auto-32px--percent-width-percent-height.html": [ - "c02f00b42ccd18a1df8f9138458bd12b0061bf78", - [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime768x16-aqua768x16.html", - "==" - ] - ], - {} - ] - ], - "wide--contain--height.html": [ - "615c55c2f5b398626eaa162af9d45eeb489cf094", - [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-empty.html", - "==" - ] - ], - {} - ] - ], - "wide--contain--nonpercent-width-nonpercent-height-viewbox.html": [ - "10099c6759ae6b9745d592eeb609256eab7b2ca1", - [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime64x128-aqua64x128.html", - "==" - ] - ], - {} - ] - ], - "wide--contain--nonpercent-width-nonpercent-height.html": [ - "53ce32a42c56a8df3e7fdc5c56fbeea55aad6143", - [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime64x128-aqua64x128.html", - "==" - ] - ], - {} - ] - ], - "wide--contain--nonpercent-width-omitted-height-viewbox.html": [ - "dd6c0eb2557b238ce62602d579d2fc08cd152c45", - [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime16x128-aqua16x128.html", - "==" - ] - ], - {} - ] - ], - "wide--contain--nonpercent-width-omitted-height.html": [ - "c934a7f0568329a651223b69b54c6946904d753b", - [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime768x128-aqua768x128.html", - "==" - ] - ], - {} - ] - ], - "wide--contain--nonpercent-width-percent-height-viewbox.html": [ - "a1d1bb6bf498fac8f9c717f090679fd2a31bec46", - [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime16x128-aqua16x128.html", - "==" - ] - ], - {} - ] - ], - "wide--contain--nonpercent-width-percent-height.html": [ - "01712da257c0fcc6fd7e43b68e34eec0b729d89c", - [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime768x128-aqua768x128.html", - "==" - ] - ], - {} - ] - ], - "wide--contain--omitted-width-nonpercent-height-viewbox.html": [ - "c6d24d1e441d042588c4be9c413a555db084ef43", - [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime16x128-aqua16x128.html", - "==" - ] - ], - {} - ] - ], - "wide--contain--omitted-width-nonpercent-height.html": [ - "caf4e4929023fbfa2fa8a2eabbcd974ea055284f", - [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime768x128-aqua768x128.html", - "==" - ] - ], - {} - ] - ], - "wide--contain--omitted-width-omitted-height-viewbox.html": [ - "519a6d37d6231692458ed7d86ded0825953a5219", - [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime16x128-aqua16x128.html", - "==" - ] - ], - {} - ] - ], - "wide--contain--omitted-width-omitted-height.html": [ - "a0f054c3004d3cc136c69fe50928acab47f58a45", - [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime768x128-aqua768x128.html", - "==" - ] - ], - {} - ] - ], - "wide--contain--omitted-width-percent-height-viewbox.html": [ - "52fa99c09da70397e3314976ab31e24a8a773216", - [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime16x128-aqua16x128.html", - "==" - ] - ], - {} - ] - ], - "wide--contain--omitted-width-percent-height.html": [ - "aa6baca06eb6341a83a51c5b12d7f113d1bb6193", - [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime768x128-aqua768x128.html", - "==" - ] - ], - {} - ] - ], - "wide--contain--percent-width-nonpercent-height-viewbox.html": [ - "de0c750645ae10b5319d24d1fe978b2fb841f8f4", - [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime16x128-aqua16x128.html", - "==" - ] - ], - {} - ] - ], - "wide--contain--percent-width-nonpercent-height.html": [ - "e9209b78b723208efcb1ba6f8d0dd5935285a58c", - [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime768x128-aqua768x128.html", - "==" - ] - ], - {} - ] - ], - "wide--contain--percent-width-omitted-height-viewbox.html": [ - "612a311f288751130dd54137b5cfe32a9272d1c5", - [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime16x128-aqua16x128.html", - "==" - ] - ], - {} - ] - ], - "wide--contain--percent-width-omitted-height.html": [ - "9fe315cd40a747a422a7dc5fe950129ea1690d97", - [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime768x128-aqua768x128.html", - "==" - ] - ], - {} - ] - ], - "wide--contain--percent-width-percent-height-viewbox.html": [ - "9e2653c95810fb469a9921ca52caf2fa02e5f577", - [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime16x128-aqua16x128.html", - "==" - ] - ], - {} - ] - ], - "wide--contain--percent-width-percent-height.html": [ - "94c020834ff25662ad7bd0a541b8465f7cb28410", - [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime768x128-aqua768x128.html", - "==" - ] - ], - {} - ] - ], - "wide--contain--width.html": [ - "abc9ffef59bf4064021dc6cd79612cab4aff963f", - [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-empty.html", - "==" - ] - ], - {} - ] - ], - "wide--cover--height.html": [ - "56550a5f84dbfc434e5307e380be5db6ecf6f093", - [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime.html", - "==" - ] - ], - {} - ] - ], - "wide--cover--nonpercent-width-nonpercent-height-viewbox.html": [ - "09f6319f1d4ccf3072e066bfe15deafc406bdb42", - [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime768x256.html", - "==" - ] - ], - {} - ] - ], - "wide--cover--nonpercent-width-nonpercent-height.html": [ - "e7fbc375ab986946e2628fc5c6777c735c00dc78", - [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime768x256.html", - "==" - ] - ], - {} - ] - ], - "wide--cover--nonpercent-width-omitted-height-viewbox.html": [ - "5c24bdffcba557501bab4ad2052c690bc3b80a04", - [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime768x256.html", - "==" - ] - ], - {} - ] - ], - "wide--cover--nonpercent-width-omitted-height.html": [ - "48373ca9bff5463776dc812f71fcaaac9631b5a3", - [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime768x128-aqua768x128.html", - "==" - ] - ], - {} - ] - ], - "wide--cover--nonpercent-width-percent-height-viewbox.html": [ - "64becf4a81a5e2458eaa8659f73f00ce0684234b", - [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime768x256.html", - "==" - ] - ], - {} - ] - ], - "wide--cover--nonpercent-width-percent-height.html": [ - "6ec016ec28c0dab811b268315b0b1973e8d5bd05", - [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime768x128-aqua768x128.html", - "==" - ] - ], - {} - ] - ], - "wide--cover--omitted-width-nonpercent-height-viewbox.html": [ - "948f5e9455cf333ebaab76bfdcc7326e4a6a3d8f", - [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime768x256.html", - "==" - ] - ], - {} - ] - ], - "wide--cover--omitted-width-nonpercent-height.html": [ - "1000b790648d7859145bfe7c100681ae36463ddf", - [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime768x128-aqua768x128.html", - "==" - ] - ], - {} - ] - ], - "wide--cover--omitted-width-omitted-height-viewbox.html": [ - "fe4b9ca9b1ab1e126c9691248703372ad516a9a7", - [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime768x256.html", - "==" - ] - ], - {} - ] - ], - "wide--cover--omitted-width-omitted-height.html": [ - "656ed819dc6e834b3ce33106566f3b67a383d1fe", - [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime768x128-aqua768x128.html", - "==" - ] - ], - {} - ] - ], - "wide--cover--omitted-width-percent-height-viewbox.html": [ - "8bb52f9fa6dfb4ac60d597344f6dd92ac44edcf3", - [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime768x256.html", - "==" - ] - ], - {} - ] - ], - "wide--cover--omitted-width-percent-height.html": [ - "2f26a9b105a403febbaa526f2c2a2ed7100f0809", - [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime768x128-aqua768x128.html", - "==" - ] - ], - {} - ] - ], - "wide--cover--percent-width-nonpercent-height-viewbox.html": [ - "f5e84e69a29e6ef1d585bdfe1085a24f399d1d7d", - [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime768x256.html", - "==" - ] - ], - {} - ] - ], - "wide--cover--percent-width-nonpercent-height.html": [ - "409f2fa76e59bc2f2aaa8de188d63276dc64e8e1", - [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime768x128-aqua768x128.html", - "==" - ] - ], - {} - ] - ], - "wide--cover--percent-width-omitted-height-viewbox.html": [ - "31133bb6f449687a108fbd8f27bbb4e54b69e6bf", - [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime768x256.html", - "==" - ] - ], - {} - ] - ], - "wide--cover--percent-width-omitted-height.html": [ - "d17c1d163bff9f148e5e8cf58c5c8f34e3932efc", - [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime768x128-aqua768x128.html", - "==" - ] - ], - {} - ] - ], - "wide--cover--percent-width-percent-height-viewbox.html": [ - "d0fc8ea497b280a7b1cb1031e1097b3589201c0f", - [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime768x256.html", - "==" - ] - ], - {} - ] - ], - "wide--cover--percent-width-percent-height.html": [ - "bd82412f99b8b5311aa10c91c78a17aa4af29755", - [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime768x128-aqua768x128.html", - "==" - ] - ], - {} - ] - ], - "wide--cover--width.html": [ - "ec6aa87fe0fdbcf7f2bac42625623059e31213b7", - [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-wide-lime.html", - "==" - ] - ], - {} - ] - ], - "zero-height-ratio-5px-auto.html": [ - "dccf55e6fe3f67215c472aaf99b7f4eaac44da0c", - [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-tall-empty.html", - "==" - ] - ], - {} - ] - ], - "zero-height-ratio-auto-5px.html": [ - "7fddc6d43d6f71047c06ffcd5d00a23b6495fabf", - [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-tall-empty.html", - "==" - ] - ], - {} - ] - ], - "zero-height-ratio-auto-auto.html": [ - "3e62569dc9a2a913b52bd05cb27c06aae887908a", - [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-tall-empty.html", - "==" - ] - ], - {} - ] - ], - "zero-height-ratio-contain.html": [ - "32b246fb36a7d4f3343b611eb8d22816f57cf84d", - [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-tall-empty.html", - "==" - ] - ], - {} - ] - ], - "zero-height-ratio-cover.html": [ - "c4847c398bff005bbaa64f0c1304610abbae19c0", - [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-tall-empty.html", - "==" - ] - ], - {} - ] - ], - "zero-ratio-no-dimensions-5px-auto.html": [ - "28d44ea51ab648c69d2a26849889a842a864faeb", - [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-tall-empty.html", - "==" - ] - ], - {} - ] - ], - "zero-ratio-no-dimensions-auto-5px.html": [ - "a830722b83b00c70f80d0a9124aa1b8ff7790679", - [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-tall-empty.html", - "==" - ] - ], - {} - ] - ], - "zero-ratio-no-dimensions-auto-auto.html": [ - "a3eefc90a7f8bd929375300e959f2d83bc423ae3", - [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-tall-empty.html", - "==" - ] - ], - {} - ] - ], - "zero-ratio-no-dimensions-contain.html": [ - "89f644349cf324e52ce6df7a9952bba1ceeb8312", - [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-tall-empty.html", - "==" - ] - ], - {} - ] - ], - "zero-ratio-no-dimensions-cover.html": [ - "e5ffa3a9afc0e986a9becb3353a0e5e7baffabc7", - [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-tall-empty.html", - "==" - ] - ], - {} - ] - ], - "zero-width-ratio-5px-auto.html": [ - "7a0d687aceb046ac45045262c93df0d69ef0efd1", - [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-tall-empty.html", - "==" - ] - ], - {} - ] - ], - "zero-width-ratio-auto-5px.html": [ - "4a7d22f552ff0fb117f15e94a55e28bcd1abbb3f", - [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-tall-empty.html", - "==" - ] - ], - {} - ] - ], - "zero-width-ratio-auto-auto.html": [ - "1e1ba84ef5046b31d2b49ba07e76885a561bd6d5", - [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-tall-empty.html", - "==" - ] - ], - {} - ] - ], - "zero-width-ratio-contain.html": [ - "b884d95a42e5e6748425a5c878f04f1a9bca61db", - [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-tall-empty.html", - "==" - ] - ], - {} - ] - ], - "zero-width-ratio-cover.html": [ - "d762853946eb746781ef134c8380c3024bdf3550", - [ - null, - [ - [ - "/css/css-backgrounds/background-size/vector/reference/ref-tall-empty.html", - "==" - ] - ], - {} - ] - ] - } - }, - "background-size-002.html": [ - "9a3545ce52e6dae7909d13698e56d5625115bfe2", + {} + ] + ], + "out-of-flow-in-multicolumn-008.html": [ + "98c7764569919918e65a5e4abdcb9ac696b613d4", [ null, [ [ - "/css/css-backgrounds/reference/background-size-002-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "background-size-005.html": [ - "015c01d70d6d006e1c0fbbb696e6223d051054b7", + "out-of-flow-in-multicolumn-009.html": [ + "4db33effbf68a75de3964db66fb6a7618c4233fd", [ null, [ [ - "/css/css-backgrounds/reference/background-size-002-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "background-size-006.html": [ - "81e4c9ea3ecbfd3598b35bd35c4a7cf1bbbcd082", + "out-of-flow-in-multicolumn-010.html": [ + "5ae87e703ded3c28db9c4b90d148a20365050127", [ null, [ [ - "/css/css-backgrounds/reference/background-size-006-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "background-size-007.html": [ - "e6b278de0e5d9b9edc082ae76d1c957f4f6bfc82", + "out-of-flow-in-multicolumn-011.html": [ + "17e8908e3762440666fa4d2fc863ddd0b1b5e072", [ null, [ [ - "/css/reference/ref-nothing-below.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "background-size-008.html": [ - "b1cd64565f56f374fe4324594ba8a8f51226d6ca", + "out-of-flow-in-multicolumn-012.html": [ + "4e59979db2e701bf83e6eb8935b376fc903af6f4", [ null, [ @@ -137747,34 +141785,34 @@ {} ] ], - "background-size-009.html": [ - "9d76478ffade931ef2cd523ae815ddc028cfc8e4", + "out-of-flow-in-multicolumn-013.html": [ + "6580a65b5004cb51f7a2aeb22c0bc291d1caadf7", [ null, [ [ - "/css/css-backgrounds/reference/background-size-006-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "background-size-010.html": [ - "578fcdc79a6379b0a1979bee20e57c844fb0489a", + "out-of-flow-in-multicolumn-014.html": [ + "b6cede0400fc8c9fdc4ef136a7d3326056bda482", [ null, [ [ - "/css/reference/ref-nothing-below.xht", + "/css/css-break/out-of-flow-in-multicolumn-014-ref.html", "==" ] ], {} ] ], - "background-size-011.html": [ - "71bb496baa5fda486a6abe33c9b51cdea57fd1c0", + "out-of-flow-in-multicolumn-015.html": [ + "e2dec2241f42b1e91f0518b9329b3bdcfc9131fa", [ null, [ @@ -137786,21 +141824,21 @@ {} ] ], - "background-size-012.html": [ - "f7ac4e49acfe2d1460ce679d69cf677ed5da6e6b", + "out-of-flow-in-multicolumn-016.html": [ + "26590bc9064268a0e9188be36011e5f60b38f159", [ null, [ [ - "/css/css-backgrounds/reference/background-size-002-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "background-size-013.html": [ - "141631943ce2389b9428ec177186e96b2e47e8d1", + "out-of-flow-in-multicolumn-017.html": [ + "aa56a7cddfcee78a9f57d350a579690953d0ca34", [ null, [ @@ -137812,34 +141850,34 @@ {} ] ], - "background-size-014.html": [ - "0f602c646418eaad6e8549b76e5ad78479876944", + "out-of-flow-in-multicolumn-018.html": [ + "8c42d66a05553139e753e6b72912f506b60bfa12", [ null, [ [ - "/css/css-backgrounds/reference/background-size-006-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "background-size-015.html": [ - "2d39bb1b15656382a2dae23bb5be997eaeeb4ae1", + "out-of-flow-in-multicolumn-019.html": [ + "6506236ebe3d5703283649bb4672d822567c52a4", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-break/out-of-flow-in-multicolumn-019-ref.html", "==" ] ], {} ] ], - "background-size-016.html": [ - "74ce6f9cbaab15b565f22f069f056b4bddbadaee", + "out-of-flow-in-multicolumn-020.html": [ + "23b5019bb8ce216be71507f94c2c289f32ea36c7", [ null, [ @@ -137851,21 +141889,21 @@ {} ] ], - "background-size-017.html": [ - "71f216ffbba9cd3deda2ea74e3d9d4a3b5829f94", + "out-of-flow-in-multicolumn-021.html": [ + "05ce3d98339afbfba6103e4f779368e3a3d4d604", [ null, [ [ - "/css/css-backgrounds/reference/background-size-006-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "background-size-018.html": [ - "d701c2b813588279981be599f70ac2c59f00099e", + "out-of-flow-in-multicolumn-022.html": [ + "71a0abb77c84f35d8ac6581e928a236edda6a5d9", [ null, [ @@ -137877,8 +141915,8 @@ {} ] ], - "background-size-019.html": [ - "c95afa55ea514e1eecdf24a5eafe061e9982e8d4", + "out-of-flow-in-multicolumn-023.html": [ + "3499a67f8736fbf28f690f55edcfda90321ca266", [ null, [ @@ -137890,8 +141928,8 @@ {} ] ], - "background-size-020.html": [ - "d690703ade58beacb3af8ccda68f94f207576a70", + "out-of-flow-in-multicolumn-024.html": [ + "830c5996771fe9f59d1a7ee7712a3cc05c9bcb29", [ null, [ @@ -137903,208 +141941,112 @@ {} ] ], - "background-size-021.html": [ - "502063f69f462dbfc813da47df2e28609de4d587", + "out-of-flow-in-multicolumn-025.html": [ + "c7369e2a9668bab2eebecbc7ad9ce34080ee66c8", [ null, [ [ - "/css/css-backgrounds/reference/background-size-021-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "background-size-025.html": [ - "fb5437fa16822b45d413c2b3445bcb6d563b7abc", + "out-of-flow-in-multicolumn-026.html": [ + "e852c095d77a2dad1c20940eeebb49ab0882c44e", [ - "css/css-backgrounds/background-size-025.html", + null, [ [ - "/css/css-backgrounds/reference/background-size-025-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 70 - ], - [ - 0, - 7294 - ] - ] - ] - ] - } + {} ] ], - "background-size-026.html": [ - "c824d7c0795f6b0b3209215b258ec7f9e3e2ba96", + "out-of-flow-in-multicolumn-027.html": [ + "ffac90b2e7481e4a915391ed4ad8e9e35c7c8eb3", [ null, [ [ - "/css/css-backgrounds/reference/background-size-026-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "background-size-027.html": [ - "b1a603a6851853e82937c8cc98baadf0b304fb3d", + "out-of-flow-in-multicolumn-028.html": [ + "b5378e2e488e8b98955ec7bf79c5c5acc0f4f5e0", [ null, [ [ - "/css/css-backgrounds/reference/background-size-027-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 96 - ], - [ - 0, - 5000 - ] - ] - ] - ] - } + {} ] ], - "background-size-028.html": [ - "20efb4e77b1ef92ccf446970ef60246aead689a0", + "out-of-flow-in-multicolumn-029.html": [ + "6de88c613e45f374a6eee1b764a9f5c73b93f301", [ - "css/css-backgrounds/background-size-028.html", + null, [ [ - "/css/css-backgrounds/reference/background-size-028-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 1 - ], - [ - 0, - 5056 - ] - ] - ] - ] - } + {} ] ], - "background-size-029.html": [ - "29df68962c4b5aed37f0267e9349091b1a2ea9a5", + "out-of-flow-in-multicolumn-030.html": [ + "7737e8ef672544eca58f4751908321ae8c401066", [ - "css/css-backgrounds/background-size-029.html", + null, [ [ - "/css/css-backgrounds/reference/background-size-029-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 91 - ], - [ - 0, - 5292 - ] - ] - ] - ] - } + {} ] ], - "background-size-030.html": [ - "4d6c7284c96d0c9c93d2e935cc5b71b50cd5e9e1", + "out-of-flow-in-multicolumn-031.html": [ + "aaa581c30e4bb971bdf69cea7b3f522aca864d70", [ null, [ [ - "/css/css-backgrounds/reference/background-size-028-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 1, - 1 - ], - [ - 0, - 5056 - ] - ] - ] - ] - } + {} ] ], - "background-size-031.html": [ - "e58df81b415dd7784c0a6f5eaebfb4aa3913b8f1", + "out-of-flow-in-multicolumn-032.html": [ + "b68f951af7d149e49ca86b48a9529c1a982141f3", [ null, [ [ - "/css/css-backgrounds/reference/background-size-031-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 1, - 1 - ], - [ - 0, - 948 - ] - ] - ] - ] - } + {} ] ], - "background-size-034.html": [ - "0debc25b2bb1335b2619b2f592cf5c7135c27ca2", + "out-of-flow-in-multicolumn-033.html": [ + "e1ecebe91bc2139cbae6efcf6b830afdd4d4ef8a", [ null, [ @@ -138116,60 +142058,60 @@ {} ] ], - "background-size-041.html": [ - "89a52102781e08669b1dc427db73dccf0f0d7e2c", + "out-of-flow-in-multicolumn-034.html": [ + "286f6f4340d7535e6e0a5d74f5c7b1749f8ad983", [ null, [ [ - "/css/css-backgrounds/reference/background-size-041-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "background-size-042.html": [ - "9e1e041e6da3f8aad23ad904e8c7ba8dea6396b5", + "out-of-flow-in-multicolumn-035.html": [ + "f1fff4031b8680efbb666ede87b54376cc908ce3", [ null, [ [ - "/css/css-backgrounds/reference/background-size-041-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "background-size-043.html": [ - "e641926ef64d9102fd8d7f7e0284104c4faf193d", + "out-of-flow-in-multicolumn-036.html": [ + "d64f8b5974fce9166ba5656abf253d31a9878847", [ null, [ [ - "/css/css-backgrounds/reference/background-size-043-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "background-size-044.html": [ - "67f032c34519901540fd4442b4111f7b7dcb1806", + "out-of-flow-in-multicolumn-037.html": [ + "215b44f602676b4071a252a48760aefb6b251646", [ null, [ [ - "/css/css-backgrounds/reference/background-size-043-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "background-size-contain-001.html": [ - "145d5abfcfd3f11ea019e15a818684a849b2460e", + "out-of-flow-in-multicolumn-038.html": [ + "189de988c7c9c9b1b817bb8d27c9841496308f89", [ null, [ @@ -138181,8 +142123,8 @@ {} ] ], - "background-size-contain-002.html": [ - "bfbfdbe20a6096b57031bb1f4414eacfeee1f776", + "out-of-flow-in-multicolumn-039.html": [ + "9eaa9f7320f1fd6b3cfa22091b78827cee276ae3", [ null, [ @@ -138194,8 +142136,8 @@ {} ] ], - "background-size-cover-001.html": [ - "f986680640a94b8c6e50980a3de2a1bc57bcdf01", + "out-of-flow-in-multicolumn-040.html": [ + "6b6a73a5d9f268e2496efa25554291b2bc59b2c4", [ null, [ @@ -138207,8 +142149,8 @@ {} ] ], - "background-size-cover-002.html": [ - "6328af2ba20745f2926dc7e6778b61fef7255a46", + "out-of-flow-in-multicolumn-041.html": [ + "6bf7ffb056aa0fe6176d0b4b5dca6bacbf3f25a2", [ null, [ @@ -138220,468 +142162,372 @@ {} ] ], - "background-size-cover-003.html": [ - "83287ee2cf43df5fabc1b899adc4240a8e9f40e8", + "out-of-flow-in-multicolumn-042.html": [ + "4539201e642457b6e9d859f8ecec142779ca17b1", [ - "css/css-backgrounds/background-size-cover-003.html", + null, [ [ - "/css/css-backgrounds/background-size-cover-003-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 255 - ], - [ - 0, - 1 - ] - ] - ] - ] - } + {} ] ], - "background-size-one-value-1x1-image.html": [ - "5caf2d49566331c496a71c6c6e00342a5522ea6f", + "out-of-flow-in-multicolumn-043.html": [ + "bdda35d0e36c5100761b49589cd83254fc3f8eeb", [ null, [ [ - "/css/css-backgrounds/reference/background-size-one-value-1x1-image-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "background-size-percentage-root.html": [ - "896ce85336ed35daa4b80dc43c7d968966cda810", + "out-of-flow-in-multicolumn-044.html": [ + "d06f4040fb4865eb51e81f2a5b6526b8874394c4", [ null, [ [ - "/css/css-backgrounds/background-size-percentage-root-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "background-size-with-negative-value.html": [ - "a9d57f86d604a9b01e9ace6d7fce0f8a34cdbc5d", + "out-of-flow-in-multicolumn-045.html": [ + "c4cda499c1d3ffc40ef59e9e7db05373194028fa", [ null, [ [ - "/css/css-backgrounds/reference/background-size-002-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "bg-color-with-gradient.html": [ - "be08fa5800b80cfbe84925722bc323cc9a4ce366", + "out-of-flow-in-multicolumn-046.html": [ + "16caaf849c615e4f8ca1546a10c2465accf1dcb9", [ - "css/css-backgrounds/bg-color-with-gradient.html", + null, [ [ - "/css/css-backgrounds/bg-color-with-gradient-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 3 - ], - [ - 0, - 6909 - ] - ] - ] - ] - } + {} ] ], - "border-bottom-left-radius-001.xht": [ - "25bfd041d87720402224d93f6666dca4f9fbaa90", + "out-of-flow-in-multicolumn-047.html": [ + "496c3bdaefacf0bc2f0fd47f0421c972684478db", [ null, [ [ - "/css/css-backgrounds/border-radius-001-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-bottom-left-radius-004.xht": [ - "ed444bfabe9c87277ca01f98c429d19467d9cc20", + "out-of-flow-in-multicolumn-048.html": [ + "b96a5c5e31e1c34aa6c91787ee2caa37175bde89", [ null, [ [ - "/css/css-backgrounds/border-bottom-left-radius-004-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 1, - 1 - ], - [ - 0, - 5 - ] - ] - ] - ] - } + {} ] ], - "border-bottom-left-radius-005.xht": [ - "bceaa3d9e9c7b6e2d567813f980333d9a2d1f3dd", + "out-of-flow-in-multicolumn-049.html": [ + "3228868a8ae8cfda366e06006b3bdcb78fe9eefe", [ - "css/css-backgrounds/border-bottom-left-radius-005.xht", + null, [ [ - "/css/css-backgrounds/border-bottom-left-radius-005-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 1 - ], - [ - 0, - 1 - ] - ] - ] - ] - } + {} ] ], - "border-bottom-left-radius-010.xht": [ - "9a4c0ecf76a15b259f85c2f73ed39e86536fe0f7", + "out-of-flow-in-multicolumn-050.html": [ + "c213e0c65502752dce4e76d749d1e25cc89534ba", [ null, [ [ - "/css/css-backgrounds/border-radius-001-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-bottom-left-radius-011.xht": [ - "3f01535efe25707940944cd411e5413853728ab4", + "out-of-flow-in-multicolumn-051.html": [ + "84e7a22f7455aa4d0b2afdc890098f5084c6dfc4", [ null, [ [ - "/css/css-backgrounds/border-radius-001-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-bottom-left-radius-014.xht": [ - "dd2ba266319ecb3fd840f64f5bf0e48af61b186a", + "out-of-flow-in-multicolumn-052.html": [ + "b45aebb96c0f4de8276bf233a05c7350df9ee182", [ null, [ [ - "/css/css-backgrounds/border-radius-001-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-bottom-right-radius-001.xht": [ - "66ec3ed117d26bcff2df04b0f09a05ef3a5ef49f", + "out-of-flow-in-multicolumn-053.html": [ + "ed74f0a51d18457717b8a183db6b1eec91296869", [ null, [ [ - "/css/css-backgrounds/border-radius-001-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-bottom-right-radius-004.xht": [ - "2af4de7bfee9068db7fc664c4a8f41704296e4ac", + "out-of-flow-in-multicolumn-054.html": [ + "d55b62f01da2b41606d18e140188ad9c68516bca", [ - "css/css-backgrounds/border-bottom-right-radius-004.xht", + null, [ [ - "/css/css-backgrounds/border-bottom-right-radius-004-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 73 - ], - [ - 0, - 127 - ] - ] - ] - ] - } + {} ] ], - "border-bottom-right-radius-005.xht": [ - "f53ae0d92f1f6ac26e41a85579845aff8cb43ab7", + "out-of-flow-in-multicolumn-055.html": [ + "fdb080ad5094a30f20446331059400a03de3082b", [ - "css/css-backgrounds/border-bottom-right-radius-005.xht", + null, [ [ - "/css/css-backgrounds/border-bottom-right-radius-005-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 36 - ], - [ - 0, - 131 - ] - ] - ] - ] - } + {} ] ], - "border-bottom-right-radius-010.xht": [ - "7d7261ecedcb3bbbeda4ee602c221d826c9dc57e", + "out-of-flow-in-multicolumn-056.html": [ + "e9c22901f7dfa2a7fdef0567f2e77177803516d4", [ null, [ [ - "/css/css-backgrounds/border-radius-001-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-bottom-right-radius-011.xht": [ - "9ad97820eca2341c6eddce929baca4f17c983302", + "out-of-flow-in-multicolumn-057.html": [ + "ce6b66544eb2981d85c6898dd9218b00e5b69b11", [ null, [ [ - "/css/css-backgrounds/border-radius-001-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-bottom-right-radius-014.xht": [ - "0a2eec7440b2adba2fc31d132488c5a00eaff563", + "out-of-flow-in-multicolumn-058.html": [ + "a8ddcdc8db3fb97ec2ffab5cb32f39742751e41b", [ null, [ [ - "/css/css-backgrounds/border-radius-001-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-bottom-width-medium.html": [ - "ab0d9b8affb9cedc06eec7a759ab9f4aceac2da9", + "out-of-flow-in-multicolumn-059.html": [ + "3575a75d7b8f06f1facbf11ef7f68dd46da30145", [ null, [ [ - "/css/css-backgrounds/reference/border-top-width-3px-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-bottom-width-thick.html": [ - "91f2c4884c0385aa517b1d4ba13fd03e57de0a85", + "out-of-flow-in-multicolumn-060.html": [ + "8de72c6d67a49bf9b6b21e1a6864df49af57c4a3", [ null, [ [ - "/css/css-backgrounds/reference/border-top-width-5px-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-bottom-width-thin.html": [ - "bbc82f4f14b01abc45fbe9d5d2d2088df4c54c50", + "out-of-flow-in-multicolumn-061.html": [ + "86e515b8439d09d1a318dea4b1b88c602bc41414", [ null, [ [ - "/css/css-backgrounds/reference/border-top-width-1px-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-image-002.html": [ - "ac76eb2a5ef7b5fa13e5a89b8bf302b8cd08a7c8", + "out-of-flow-in-multicolumn-062.html": [ + "e01f4a6239c0edca893cbf7714b58e2a59cc08e0", [ - "css/css-backgrounds/border-image-002.html", + null, [ [ - "/css/css-backgrounds/reference/ref-filled-green-100px-square.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-image-003.html": [ - "6d4ee0fde93d57bfb0640e646b5ebc55cb441f1b", + "out-of-flow-in-multicolumn-063.html": [ + "7828e4a7feb5bad7ebd968fcb36ab20bb0097b01", [ - "css/css-backgrounds/border-image-003.html", + null, [ [ - "/css/css-backgrounds/reference/ref-filled-green-100px-square.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-image-004.html": [ - "844d98bb3cd84e99c5c56d9a0b79352412609c2b", + "out-of-flow-in-multicolumn-064.html": [ + "19afe87f8853478e088426f0f68956663571d08a", [ - "css/css-backgrounds/border-image-004.html", + null, [ [ - "/css/css-backgrounds/reference/ref-filled-green-100px-square.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-image-006.html": [ - "e3782f2ecd1a48964491b16c404b23b2c4d01e7f", + "out-of-flow-in-multicolumn-065.html": [ + "13a1bdbafb792a9f2f765b59e72164865bd119cc", [ - "css/css-backgrounds/border-image-006.html", + null, [ [ - "/css/css-backgrounds/reference/border-image-006-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-image-007.html": [ - "41ac9dac37fb5b11c09be99b1a325f9190e00f8d", + "out-of-flow-in-multicolumn-066.html": [ + "024b93f54002a61d04f50144603ddd4b793b9df2", [ - "css/css-backgrounds/border-image-007.html", + null, [ [ - "/css/css-backgrounds/reference/border-image-007-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-image-011.html": [ - "357845bbf719a6eb310ce7f31b58126bbcd55172", + "out-of-flow-in-multicolumn-067.html": [ + "4d38c4608e222edf0b1739a26f3aa82164a5d144", [ - "css/css-backgrounds/border-image-011.html", + null, [ [ - "/css/css-backgrounds/reference/ref-filled-green-100px-square.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-image-012.html": [ - "16a6e9061dfd0371bcf8675d8599f1221bf4f2cb", + "out-of-flow-in-multicolumn-068.html": [ + "6694eba5398acd0f3dee2c19ab92a28794f44a0b", [ - "css/css-backgrounds/border-image-012.html", + null, [ [ - "/css/css-backgrounds/reference/border-image-012-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-image-013.html": [ - "c7cc7d54a39e5aeb9fbf3e0eca77e94786abfbc6", + "out-of-flow-in-multicolumn-069.html": [ + "7fdb32a2709348fe17a16e174cad06c448356116", [ - "css/css-backgrounds/border-image-013.html", + null, [ [ - "/css/css-backgrounds/reference/border-image-013-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-image-017.xht": [ - "33492ca78b31e3078c9c63616340672aed356478", + "out-of-flow-in-multicolumn-070.html": [ + "1986ab81ff1d09c28676b4b57def127a85a849bf", [ null, [ @@ -138693,8 +142539,8 @@ {} ] ], - "border-image-018.xht": [ - "9ce6c82d564b3c68dc7cb0dbf738ad0b6321a5da", + "out-of-flow-in-multicolumn-071.html": [ + "629ebda48b8fcec93af4bd79d26b3001b783cb42", [ null, [ @@ -138706,8 +142552,8 @@ {} ] ], - "border-image-019.xht": [ - "d07db369ab5734a353c905800f9363f3aeb96152", + "out-of-flow-in-multicolumn-072.html": [ + "91f3da2c4b20caad40b1e86428b9d9a1bff30357", [ null, [ @@ -138719,8 +142565,8 @@ {} ] ], - "border-image-020.xht": [ - "c4fc9ace4aae08b502047db062bf61099d224ee4", + "out-of-flow-in-multicolumn-073.html": [ + "57093e2264a39d49b9dd107b710d45058da95995", [ null, [ @@ -138732,668 +142578,437 @@ {} ] ], - "border-image-calc.html": [ - "c8bc4c7c9a092b57a5119ebf02f9972b9386b965", + "out-of-flow-in-multicolumn-074.html": [ + "1c6882d4b6e80b2c9dbaee2202ca61ad31b616cc", [ null, [ [ - "/css/css-backgrounds/border-image-calc-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-image-displayed-with-transparent-border-color.html": [ - "859dc2f5f55000c1f24580210bb5bc1c414f03ef", + "out-of-flow-in-multicolumn-075.html": [ + "34cf1ea74dda8a56c49a59ded805af83de84a75f", [ null, [ [ - "/css/css-backgrounds/border-image-displayed-with-transparent-border-color-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-image-image-type-001.htm": [ - "9486f0b8b6e2d5fcccda1e7d44084db4c6722219", + "out-of-flow-in-multicolumn-076.html": [ + "7f8858d9f379b84abb36e2ee39c909a03897a99c", [ - "css/css-backgrounds/border-image-image-type-001.htm", + null, [ [ - "/css/css-backgrounds/reference/border-image-image-type-001-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-image-image-type-002.htm": [ - "f365793e3f4c40fea9a51be8fd247855c77f76cc", + "out-of-flow-in-multicolumn-077.html": [ + "f37858bb2649fda65899a2f4741c633f20f2b93c", [ - "css/css-backgrounds/border-image-image-type-002.htm", + null, [ [ - "/css/css-backgrounds/reference/border-image-image-type-002-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-image-image-type-003.htm": [ - "b5a7543fcb845f6b54e22f37efdff55ed09d3ef4", + "out-of-flow-in-multicolumn-078.html": [ + "b19bb9f5d10f6da3ecc61015b6bce0644a0fbdf3", [ null, [ [ - "/css/css-backgrounds/reference/border-image-image-type-003-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 3 - ], - [ - 0, - 10800 - ] - ] - ] - ] - } + {} ] ], - "border-image-image-type-004.htm": [ - "222267ca636bac9f3bedd8c151252f4455e0e241", + "out-of-flow-in-multicolumn-079.html": [ + "f4d4c32b99e6978cdedcfcd134f36292dc87ff77", [ - "css/css-backgrounds/border-image-image-type-004.htm", + null, [ [ - "/css/css-backgrounds/reference/border-image-image-type-004-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 1 - ], - [ - 0, - 100 - ] - ] - ] - ] - } + {} ] ], - "border-image-image-type-005.htm": [ - "cb2668d7dd609be32c8a68d438bd84ee3b3b111a", + "out-of-flow-in-multicolumn-080.html": [ + "4b620ae4177a476f807e4ff6db3e278d5a0c7a96", [ - "css/css-backgrounds/border-image-image-type-005.htm", + null, [ [ - "/css/css-backgrounds/reference/border-image-image-type-004-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 1 - ], - [ - 0, - 100 - ] - ] - ] - ] - } + {} ] ], - "border-image-outset-003.html": [ - "27bc02682ca8d27a4f48997c3a8150438b33b86a", + "out-of-flow-in-multicolumn-081.html": [ + "218fa2ad3abac71ba5a9b22d58fb9d94beef17a2", [ null, [ [ - "/css/css-backgrounds/border-image-outset-003-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-image-repeat-002.htm": [ - "a0c081863d42cd4c0ea24996e23ace8537c7a133", + "out-of-flow-in-multicolumn-082.html": [ + "64080738706a77085d2a40fd63a1a476dc2caa5f", [ - "css/css-backgrounds/border-image-repeat-002.htm", + null, [ [ - "/css/css-backgrounds/reference/border-image-repeat-002-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-image-repeat-004.htm": [ - "40194506940c38f2669ae1c5e8fd43b74b2313ce", + "out-of-flow-in-multicolumn-083.html": [ + "d238720ad0c7954ba96901608db6454ba69da4b1", [ - "css/css-backgrounds/border-image-repeat-004.htm", + null, [ [ - "/css/css-backgrounds/reference/border-image-repeat-004-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-image-repeat-005.html": [ - "f5078fc322c936d65415a4bfec5d022357cb714c", + "out-of-flow-in-multicolumn-084.html": [ + "d3fef2ee2ba7d8078229420e92567fd803aaae94", [ null, [ [ - "/css/css-backgrounds/reference/border-image-repeat-005-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-image-repeat-1.html": [ - "6e2a43b89d6d9beccb5d8f4ae5ce9a9ebef576da", + "out-of-flow-in-multicolumn-085.html": [ + "eb8314c2d86684911911b23d2fb7d1a1fd323f66", [ null, [ [ - "/css/css-backgrounds/border-image-repeat-1-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-image-repeat-repeat-001.html": [ - "778bc0e4b5c6988359a4f3a40391d8de2b4d5e19", + "out-of-flow-in-multicolumn-086.html": [ + "17073077e21ef1a2559cc273048e58642dbf9904", [ - "css/css-backgrounds/border-image-repeat-repeat-001.html", + null, [ [ - "/css/css-backgrounds/reference/border-image-repeat-repeat-001-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-image-repeat-round-003.html": [ - "034a5ed98a05a585108847d7bf6be7572df22f54", + "out-of-flow-in-multicolumn-087.html": [ + "bd1c941f87074817a4e21ecbdfb541bb437b7614", [ - "css/css-backgrounds/border-image-repeat-round-003.html", + null, [ [ - "/css/css-backgrounds/reference/border-image-repeat-round-003-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-image-repeat-round-1.html": [ - "c4dc17cf7df08fde88cc19114a7792dc9a7b5674", + "out-of-flow-in-multicolumn-088.html": [ + "9adffb15d48972e5c78090aa76dec2c80d649f44", [ null, [ [ - "/css/css-backgrounds/border-image-repeat-round-1-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 10 - ], - [ - 0, - 596 - ] - ] - ] - ] - } + {} ] ], - "border-image-repeat-round-2.html": [ - "89f8dc0561542bf4f92881c178a3806a7e0436fb", + "out-of-flow-in-multicolumn-089.html": [ + "a13aad886d52d8c59559159c413a5316ec2105c9", [ - "css/css-backgrounds/border-image-repeat-round-2.html", + null, [ [ - "/css/css-backgrounds/border-image-repeat-round-2-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 55 - ], - [ - 0, - 380 - ] - ] - ] - ] - } + {} ] ], - "border-image-repeat-round-stretch-001.html": [ - "fa681b22ed3beb78fd184a2087a834e6baf46e89", + "out-of-flow-in-multicolumn-090.html": [ + "e6cf192dd3555a004c700fb6e25505afe8b05281", [ - "css/css-backgrounds/border-image-repeat-round-stretch-001.html", + null, [ [ - "/css/css-backgrounds/reference/border-image-repeat-round-stretch-001-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-image-repeat-round.html": [ - "cf87e8d16306ed34a11b7e89f7d88fe1f1212c12", + "out-of-flow-in-multicolumn-091.html": [ + "4049412545c7017796e0f7bcda83b943d46af19e", [ - "css/css-backgrounds/border-image-repeat-round.html", + null, [ [ - "/css/css-backgrounds/reference/border-image-repeat-round-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 111 - ], - [ - 0, - 3435 - ] - ] - ] - ] - } + {} ] ], - "border-image-repeat-space-011.html": [ - "bb7a923c0dd963123d30720b580d918daf576ff1", + "out-of-flow-in-multicolumn-092.html": [ + "b21bbee6eaa822db1e1a96e69d3071c56b46ba64", [ - "css/css-backgrounds/border-image-repeat-space-011.html", + null, [ [ - "/css/css-backgrounds/reference/border-image-repeat-space-011-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-image-repeat-space-1.html": [ - "b24883f7bd6d99ba9cb4ed3572ae58201f99f3a8", + "out-of-flow-in-multicolumn-093.html": [ + "7cd94c10b38fa299391af4802e58cce9c99178a2", [ null, [ [ - "/css/css-backgrounds/border-image-repeat-space-1-ref.html", + "/css/css-break/out-of-flow-in-multicolumn-093-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 27 - ], - [ - 0, - 800 - ] - ] - ] - ] - } + {} ] ], - "border-image-repeat-space-10.html": [ - "73423ef27031c4863b4b34faa3fed2ef33554a3d", + "out-of-flow-in-multicolumn-094.html": [ + "1cb04aefea01cd63e2ac0edb2b809380f97978c5", [ - "css/css-backgrounds/border-image-repeat-space-10.html", + null, [ [ - "/css/css-backgrounds/border-image-repeat-space-10-ref.html", + "/css/reference/ref-filled-green-200px-square.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 163 - ], - [ - 0, - 2400 - ] - ] - ] - ] - } + {} ] ], - "border-image-repeat-space-2.html": [ - "b38bc84734284b4a277d70a2d493f366c821786a", + "out-of-flow-in-multicolumn-095.html": [ + "3811791d09667b0e75538860be2589b9b35f7524", [ null, [ [ - "/css/css-backgrounds/border-image-repeat-space-2-ref.html", + "/css/reference/ref-filled-green-200px-square.html", "==" ] ], {} ] ], - "border-image-repeat-space-3.html": [ - "60916b2a5c1460aeaedb3091ebc247e6ca97f829", + "out-of-flow-in-multicolumn-096.html": [ + "f5382d6d3d035970db69549914671637caa5d6c9", [ null, [ [ - "/css/css-backgrounds/border-image-repeat-space-3-ref.html", + "/css/reference/ref-filled-green-200px-square.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 27 - ], - [ - 0, - 1600 - ] - ] - ] - ] - } + {} ] ], - "border-image-repeat-space-4-ref-1.html": [ - "ff7700e9af158ac7b8b281bc8189adc69018b24d", + "out-of-flow-in-multicolumn-097.html": [ + "faac60705b50b5338fb43e5933ac1adae0ac1527", [ null, [ [ - "/css/css-backgrounds/border-image-repeat-space-4-ref-2.html", + "/css/reference/ref-filled-green-200px-square.html", "==" ] ], {} ] ], - "border-image-repeat-space-4.html": [ - "d82969d71c40567f0280283b760f0d71e8097934", + "out-of-flow-in-multicolumn-098.html": [ + "390e86995d3740718fda1058810a5ab9c6588d0a", [ null, [ [ - "/css/css-backgrounds/border-image-repeat-space-4-ref-1.html", + "/css/reference/ref-filled-green-200px-square.html", "==" ] ], {} ] ], - "border-image-repeat-space-5-ref-1.html": [ - "d52cab5bbe96bab47145abdf3ba7dbbeede38ca4", + "out-of-flow-in-multicolumn-099.html": [ + "8c75b2bf5db9bba1b8c02ecee644dc7a954c93ba", [ null, [ [ - "/css/css-backgrounds/border-image-repeat-space-5-ref-2.html", + "/css/reference/ref-filled-green-200px-square.html", "==" ] ], {} ] ], - "border-image-repeat-space-5.html": [ - "db21548af867c06109f04f1e6aeaa5c256beeb02", + "out-of-flow-in-multicolumn-100.html": [ + "1bf71e832de9a2be139af258f6a4c25215d0a0b1", [ null, [ [ - "/css/css-backgrounds/border-image-repeat-space-5-ref-1.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-image-repeat-space-6.html": [ - "045cde139d7cc24348ac2873f2c8e9dd1980f62a", + "out-of-flow-in-multicolumn-101.html": [ + "ed7e1e234d8aa0a12a61b68e5de93d10ce7a4ce5", [ null, [ [ - "/css/css-backgrounds/border-image-repeat-space-6-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-image-repeat-space-7.html": [ - "033a7b43bed1b85fc9fa72b53dc0f9710edd6202", + "out-of-flow-in-multicolumn-102.html": [ + "45cbc0b4533c7c87fed3be713474202fe29e1f47", [ null, [ [ - "/css/css-backgrounds/border-image-repeat-space-7-ref.html", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 53 - ], - [ - 0, - 2320 - ] - ] - ] - ] - } - ] - ], - "border-image-repeat-space-8.html": [ - "0edfba9e9273c533ebac6762a365c8a83b7de3a9", - [ - "css/css-backgrounds/border-image-repeat-space-8.html", - [ - [ - "/css/css-backgrounds/border-image-repeat-space-8-ref.html", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 110 - ], - [ - 0, - 10540 - ] - ] - ] - ] - } - ] - ], - "border-image-repeat-space-9.html": [ - "aa43328f5581b5c35c79a2c7c5456cf87fb92007", - [ - "css/css-backgrounds/border-image-repeat-space-9.html", - [ - [ - "/css/css-backgrounds/border-image-repeat-space-8-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-image-repeat-stretch-round-001.html": [ - "8c2963a5aec867d90b20692ce0c0dfbdc41cac56", + "out-of-flow-in-multicolumn-103.html": [ + "b54cbcd85a88a6e845adec74daefd43349ee4f13", [ - "css/css-backgrounds/border-image-repeat-stretch-round-001.html", + null, [ [ - "/css/css-backgrounds/reference/border-image-repeat-stretch-round-001-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-image-round-and-stretch.html": [ - "a9b4da706d39ab85617f8a952987d3035e0fc400", - [ - "css/css-backgrounds/border-image-round-and-stretch.html", - [ - [ - "/css/css-backgrounds/reference/border-image-round-and-stretch-ref.html", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 163 - ], - [ - 0, - 6375 - ] - ] - ] - ] - } - ] - ], - "border-image-shorthand-001.htm": [ - "26fda73b19cfadc0a95305fe222b415f4999bf7a", + "out-of-flow-in-multicolumn-104.html": [ + "27363ad2b55425b41a21af934e3d418f8c504d38", [ null, [ [ - "/css/css-backgrounds/reference/border-image-shorthand-001-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-image-shorthand-002.htm": [ - "9f47f77a5034fafd08103dd616a7add16a650cc4", + "out-of-flow-in-multicolumn-105.html": [ + "b5cc802239e1c2899d1536b972f56f4aacbd69c4", [ null, [ [ - "/css/css-backgrounds/reference/border-image-shorthand-002-ref.html", + "/css/css-break/out-of-flow-in-multicolumn-105-ref.html", "==" ] ], {} ] ], - "border-image-shorthand-003.htm": [ - "718c3a2b2aaabe004a665fdd880474eb8e550b93", + "out-of-flow-in-multicolumn-106.html": [ + "e97d947ea1c9565533cae2563b6fef15de8beff9", [ null, [ [ - "/css/css-backgrounds/reference/border-image-shorthand-003-ref.html", + "/css/css-break/out-of-flow-in-multicolumn-106-ref.html", "==" ] ], {} ] ], - "border-image-slice-001.xht": [ - "3861dcfad939f09c6247034373e62548204bec8e", + "out-of-flow-in-multicolumn-107.html": [ + "76aa32bb9ce478bffc02698534df25c38bb7655e", [ null, [ @@ -139405,8 +143020,8 @@ {} ] ], - "border-image-slice-002.xht": [ - "3ee6655f4c79a0338a8b33bf4f5f2eaac3fce8e6", + "out-of-flow-in-multicolumn-109.html": [ + "32707fe99a4a53df6c2ade30122dffb8b3a98e19", [ null, [ @@ -139418,263 +143033,47 @@ {} ] ], - "border-image-slice-003.xht": [ - "75d6b6ffd7f58b8ad1e5ee8ff23ec4ad90fe5825", + "out-of-flow-in-multicolumn-110.html": [ + "9da905d075a0060f154ca9967173b03b7ed7d673", [ null, [ [ - "/css/css-backgrounds/reference/ref-if-there-is-no-red.xht", - "==" - ] - ], - {} - ] - ], - "border-image-slice-004.htm": [ - "1e5adb311f597fc4fa3c4413628b70ebd4c4103e", - [ - "css/css-backgrounds/border-image-slice-004.htm", - [ - [ - "/css/css-backgrounds/reference/border-image-slice-004-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-image-slice-005.htm": [ - "5d8bd7df1c3fe1b09a8a9387e355e2c7d111b805", + "out-of-flow-in-multicolumn-111.html": [ + "a7350ac0ada782cfa180f747bc2c691319618648", [ null, [ [ - "/css/css-backgrounds/reference/border-image-slice-005-ref.html", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 92 - ], - [ - 0, - 5314 - ] - ] - ] - ] - } - ] - ], - "border-image-slice-006.htm": [ - "45feaf60ad7ba15066e5ec4de6273f2a48c4ed0f", - [ - "css/css-backgrounds/border-image-slice-006.htm", - [ - [ - "/css/css-backgrounds/reference/border-image-slice-006-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-image-slice-007.htm": [ - "e9c1827fc76c00f0bb81a23f27335a2f2074ace2", + "out-of-flow-in-multicolumn-112.html": [ + "5c9be2f3947e1ee4fd41debfae690eac432f1fc7", [ null, [ [ - "/css/css-backgrounds/reference/border-image-slice-007-ref.html", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 92 - ], - [ - 0, - 5314 - ] - ] - ] - ] - } - ] - ], - "border-image-slice-fill-001.html": [ - "b6eb589c38fc32383485cebfed439ed7f9749e4e", - [ - "css/css-backgrounds/border-image-slice-fill-001.html", - [ - [ - "/css/css-backgrounds/reference/border-image-slice-fill-001-ref.html", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 112 - ], - [ - 0, - 199 - ] - ] - ] - ] - } - ] - ], - "border-image-slice-fill-002.html": [ - "26e40479e9e8f5e4bfe120511a36280a222c266c", - [ - "css/css-backgrounds/border-image-slice-fill-002.html", - [ - [ - "/css/css-backgrounds/reference/border-image-slice-fill-002-ref.html", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 112 - ], - [ - 0, - 199 - ] - ] - ] - ] - } - ] - ], - "border-image-slice-fill-003.html": [ - "05e37c1a20dc3a5c063a6dece89a90bce2102511", - [ - "css/css-backgrounds/border-image-slice-fill-003.html", - [ - [ - "/css/css-backgrounds/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 112 - ], - [ - 0, - 199 - ] - ] - ] - ] - } - ] - ], - "border-image-slice-percentage.html": [ - "f53501c9df1099b7571adfdb5c0126dd9e2502a2", - [ - "css/css-backgrounds/border-image-slice-percentage.html", - [ - [ - "/css/css-backgrounds/reference/border-image-repeat-round-ref.html", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 164 - ], - [ - 0, - 3716 - ] - ] - ] - ] - } - ] - ], - "border-image-space-001.html": [ - "720f0df188d962c9d3797d18df2517da46f203aa", - [ - "css/css-backgrounds/border-image-space-001.html", - [ - [ - "/css/css-backgrounds/reference/border-image-space-001-ref.html", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 80 - ], - [ - 0, - 1728 - ] - ] - ] - ] - } - ] - ], - "border-image-width-001.htm": [ - "2a5d02e8acc53f8e6525c95a07132482e27842d7", - [ - "css/css-backgrounds/border-image-width-001.htm", - [ - [ - "/css/css-backgrounds/reference/border-image-width-001-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-image-width-005.xht": [ - "eeceedef90e9a74a20e151b346e9030fe05d84ea", + "out-of-flow-in-multicolumn-113.html": [ + "9495933b3d3f4ce404931fb8dcd53969a8088c22", [ null, [ @@ -139686,8 +143085,8 @@ {} ] ], - "border-image-width-006.xht": [ - "aa487b76c53a11cba41b285d4d86743bf3ca1324", + "out-of-flow-in-multicolumn-114.html": [ + "75c8447f59451077d285fa40afd7f303509518b5", [ null, [ @@ -139699,8 +143098,8 @@ {} ] ], - "border-image-width-007.xht": [ - "61726c00873739c076812f72645d8324494ff44c", + "out-of-flow-in-multicolumn-115.html": [ + "8346477b257202ca4525956a959be3f47f12d6eb", [ null, [ @@ -139712,258 +143111,216 @@ {} ] ], - "border-image-width-008.html": [ - "20775aeb9d6dcf2d499d4604370c832491919df8", - [ - "css/css-backgrounds/border-image-width-008.html", - [ - [ - "/css/css-backgrounds/border-image-width-008-ref.html", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 2 - ], - [ - 0, - 74 - ] - ] - ] - ] - } - ] - ], - "border-image-width-009.html": [ - "112c2a485ac424e3b1097ded5a59c16aafcefb01", + "out-of-flow-in-multicolumn-116.html": [ + "fac536a65b34163867de1aad2b7f7378046abb47", [ null, [ [ - "/css/css-backgrounds/reference/border-image-width-009-ref.html", - "==" - ] - ], - {} - ] - ], - "border-image-width-should-extend-to-padding.html": [ - "575921a0454a64a979c8ff210cc23a2ed04533a2", - [ - "css/css-backgrounds/border-image-width-should-extend-to-padding.html", - [ - [ - "/css/css-backgrounds/border-image-width-should-extend-to-padding-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-left-width-medium.html": [ - "b7bd80a83388fc5a56f2f1a9ed3c291778f9cd92", + "out-of-flow-in-multicolumn-117.html": [ + "886a12acaba969b0b514342b04a3992bde8897be", [ null, [ [ - "/css/css-backgrounds/reference/border-right-width-3px-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-left-width-thick.html": [ - "c4787cac8adfe088d92a68ab9b21da345825b8ca", + "overflow-clip-000.html": [ + "72b10f5cdd3092a042f1f90bff04e9428d61608e", [ null, [ [ - "/css/css-backgrounds/reference/border-right-width-5px-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-left-width-thin.html": [ - "1b8da56a34fd31ce8b9caf3f62041b838f202117", + "overflow-clip-001.html": [ + "8d084087447809981f7360de9a0dd9003930f1bd", [ null, [ [ - "/css/css-backgrounds/reference/border-right-width-1px-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-radius-001.xht": [ - "5029dd0f15105294d85612a0f50a6b28caaf7da0", + "overflow-clip-002.html": [ + "72f72f41cd4de59e4b0728c164a08fd97c465e7c", [ null, [ [ - "/css/css-backgrounds/border-radius-001-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-radius-002.xht": [ - "9f53fc37587b2a3947c92d94373502bcfc00f2d1", + "overflow-clip-003.html": [ + "0d4b2956f11fb39f3be1290dc89765f76ef01764", [ null, [ [ - "/css/css-backgrounds/border-radius-002-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-radius-003.xht": [ - "398358f1f1d7b3189956cf4463878cca5a90af7f", + "overflow-clip-004.html": [ + "772c4009e1e87c575fa6b96dec22b31ff076c27c", [ null, [ [ - "/css/css-backgrounds/border-radius-003-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-radius-004.xht": [ - "8a000d909c599fc13d292984fa51ee4c0b4b56d1", + "overflow-clip-005.html": [ + "6eec83ad5f6ff92217851cb8efa48add0eba579c", [ null, [ [ - "/css/css-backgrounds/border-radius-004-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-radius-005.xht": [ - "7be93af636d2e57c76ad8c529b8cf005c3161335", + "overflow-clip-006.html": [ + "526577b7b98dfc6eece14055cbcf83e42652897e", [ null, [ [ - "/css/css-backgrounds/border-radius-005-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-radius-006.xht": [ - "89da74c48273ac3270cdec9cf489b73efa412a82", + "overflow-clip-008.html": [ + "931adc755883a0d1a2a72cc9631fe6e754e6bb1a", [ null, [ [ - "/css/css-backgrounds/border-radius-006-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-radius-007.xht": [ - "df442e00852c9c378a3926b9ed2f510a13074701", + "overflow-clip-009.html": [ + "611d65f59533df90a87ff248ecab72f689091c59", [ null, [ [ - "/css/css-backgrounds/border-radius-007-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-radius-008.xht": [ - "a4b1408dd3007cc3b45364e776b82990190a65b3", + "overflow-clip-010.html": [ + "87f2cdd8003402ae4abad8cfe347325eb7a9d662", [ null, [ [ - "/css/css-backgrounds/border-radius-001-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-radius-009.xht": [ - "822f1668596ba85ab65cd98db74821ff69846ddf", + "overflow-clip-011.html": [ + "cea0110c229430d475449e80e8ad9417ca233f01", [ null, [ [ - "/css/css-backgrounds/border-radius-009-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-radius-010.xht": [ - "32d464673a71bbaa4806443902057c39e0ce0631", + "overflow-clip-012.html": [ + "0038ce3235eed5d8f6ad0ddafcd6436d0dee966c", [ null, [ [ - "/css/css-backgrounds/border-radius-010-ref.xht", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "border-radius-011.xht": [ - "8439302d6bd938cfa42cdbb7bf067909384e21f4", + "overflow-clip-013.html": [ + "31137b58fbc4618f63dcb5b38d92e1cd058fea17", [ null, [ [ - "/css/css-backgrounds/border-radius-011-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-radius-012.html": [ - "e3b97e2ea7b7793becf4e31e9e79f0ed7118aeeb", + "overflow-clip-014.html": [ + "4edf112e43265cd13465b6e86e9e1c2f288cf78c", [ null, [ [ - "/css/css-backgrounds/border-radius-012-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-radius-013.html": [ - "090f6a28b3bd35de408b13793eb4e44fa87280e0", + "overflow-clip-015.html": [ + "1eb114458c1bf5a1a69620a6ea3a1f746248d610", [ null, [ @@ -139975,343 +143332,195 @@ {} ] ], - "border-radius-clip-001.html": [ - "971bba1a1885f61b5f4bbc4682ee861abc38c470", - [ - "css/css-backgrounds/border-radius-clip-001.html", - [ - [ - "/css/css-backgrounds/reference/border-radius-clipping-ref.html", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 57 - ], - [ - 0, - 1552 - ] - ] - ] - ] - } - ] - ], - "border-radius-clip-002.htm": [ - "759bd5ce4836899512fe8b435a18bd1aad78cfc2", + "overflow-clip-016.html": [ + "4314c0135e26e6afe8659ce74fe24c14cf46281a", [ null, [ [ - "/css/css-backgrounds/reference/border-radius-clip-002-ref.htm", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 70 - ], - [ - 0, - 50 - ] - ] - ] - ] - } + {} ] ], - "border-radius-clipping-002.html": [ - "eea0ee104fc2610a722f5bbae200c8f6d1ac9823", + "overflow-clip-017.html": [ + "1ab3cdd194f21f90699fe7f27c34a5614228ebb7", [ null, [ [ - "/css/reference/ref-nothing-below.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-radius-clipping-with-transform-001.html": [ - "b2187cf07abfe0b6b7ee24f35f35a57a5bf58789", - [ - "css/css-backgrounds/border-radius-clipping-with-transform-001.html", - [ - [ - "/css/css-backgrounds/border-radius-clipping-with-transform-001-ref.html", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 48 - ], - [ - 0, - 6783 - ] - ] - ] - ] - } - ] - ], - "border-radius-dynamic-from-no-radius.html": [ - "335548f33ad4bb9d7c42b4b07323c0a398aa28fc", + "overflowed-block-with-no-room-after-000.html": [ + "084e16fb38de072fb83f92ba01302a2e404cdd97", [ null, [ [ - "/css/css-backgrounds/border-radius-dynamic-from-no-radius-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "border-radius-horizontal-value-is-zero.html": [ - "3a461699b2375d62e63b35e5437d871272e73870", + "overflowed-block-with-no-room-after-001.html": [ + "48d028ecc2c9ce2924495ff8d037a538eb7b3dc3", [ null, [ [ - "/css/css-backgrounds/reference/border-radius-horizontal-value-is-zero-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "border-radius-shorthand-002.html": [ - "8191cf48f3798a79f239ec3130e3d9eb3bcd78b5", + "overflowed-block-with-room-after-000.html": [ + "319f4af077f69e8fb1dfd59661ec71a8b27c072b", [ null, [ [ - "/css/css-backgrounds/border-radius-shorthand-002-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-right-width-medium.html": [ - "47de799e54fb8549136c7e7fb442604f3106ab70", + "overflowed-block-with-room-after-001.html": [ + "625f06cb588e8904ab753f048dd1150d270033cf", [ null, [ [ - "/css/css-backgrounds/reference/border-right-width-3px-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-right-width-thick.html": [ - "af518a79f51f54136fef2c5d7792b06a2b353d42", + "overflowed-block-with-room-after-002.html": [ + "cb06faec9c9f159ab5dd2db78717e6689e48c6ea", [ null, [ [ - "/css/css-backgrounds/reference/border-right-width-5px-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-right-width-thin.html": [ - "d8483a87ca070473f6c3e1b719ac6228e2b10e4b", + "overflowed-block-with-room-after-003.html": [ + "dfd011109d72dbb515250895f048a130128366a9", [ null, [ [ - "/css/css-backgrounds/reference/border-right-width-1px-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-top-left-radius-001.xht": [ - "0346518e2161a81fc76008f415c746d3342b210b", + "overflowed-block-with-room-after-004.html": [ + "ba3d62241f1f1d2dba6e0971dddaa2430777dc34", [ null, [ [ - "/css/css-backgrounds/border-radius-001-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-top-left-radius-004.xht": [ - "71c98832404424f0d8ccdc2aadbc30bc6c23a206", + "overflowing-block-003.html": [ + "786a61a4927f32dc853fc9964feab8cf652472e4", [ null, [ [ - "/css/css-backgrounds/border-top-left-radius-004-ref.xht", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 1, - 1 - ], - [ - 0, - 5 - ] - ] - ] - ] - } - ] - ], - "border-top-left-radius-005.xht": [ - "68fd36d710933c6412f56a9fb0f8813ce360206c", - [ - "css/css-backgrounds/border-top-left-radius-005.xht", - [ - [ - "/css/css-backgrounds/border-top-left-radius-005-ref.xht", + "/css/css-break/overflowing-block-003-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 1 - ], - [ - 0, - 1 - ] - ] - ] - ] - } + {} ] ], - "border-top-left-radius-010.xht": [ - "9d4afb327cd5e66ea8a9ea73697933dea7690b87", + "overflowing-block-004.html": [ + "edf9e53439bdf46352e0c41480b1692a152927c6", [ null, [ [ - "/css/css-backgrounds/border-radius-001-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-top-left-radius-011.xht": [ - "2fd9ebabf892c681a292915dad66fd539c43eba2", + "parallel-flow-trailing-margin-001.html": [ + "a6391cd9d4738676417f69223038f9f603ea83d1", [ null, [ [ - "/css/css-backgrounds/border-radius-001-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-top-left-radius-014.xht": [ - "8df8f12e1dfa95b56ef4099a0976e4f0b419a972", + "parallel-flow-trailing-margin-002.html": [ + "a308ede37dcc383d3e86dae6163de66668a82878", [ null, [ [ - "/css/css-backgrounds/border-radius-001-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-top-right-radius-001.xht": [ - "30091f329c53a37f688d15754daa04b38dd46d6a", + "relpos-inline.html": [ + "a296f0ae7eb04e0b7fee52f9da9da84ff9ddd884", [ null, [ [ - "/css/css-backgrounds/border-radius-001-ref.xht", + "/css/css-break/relpos-inline-ref.html", "==" ] ], {} ] ], - "border-top-right-radius-004.xht": [ - "3068a24d4368e84594e75082ac861039915360bc", - [ - "css/css-backgrounds/border-top-right-radius-004.xht", - [ - [ - "/css/css-backgrounds/border-top-right-radius-004-ref.xht", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 1 - ], - [ - 0, - 2 - ] - ] - ] - ] - } - ] - ], - "border-top-right-radius-005.xht": [ - "46004d6fa11736a3ddef2d11950026a16c1dc69a", + "rounded-clipped-border.html": [ + "60f4dfd8ba64ddfa5b70b400414a31d5d24b0563", [ - "css/css-backgrounds/border-top-right-radius-005.xht", + null, [ [ - "/css/css-backgrounds/border-top-right-radius-005-ref.xht", + "/css/css-break/rounded-clipped-border-ref.html", "==" ] ], @@ -140322,11 +143531,11 @@ [ [ 0, - 36 + 15 ], [ 0, - 131 + 900 ] ] ] @@ -140334,1339 +143543,282 @@ } ] ], - "border-top-right-radius-010.xht": [ - "8c540304b332cbb2ccf802d28012e1ba617319f1", - [ - null, - [ - [ - "/css/css-backgrounds/border-radius-001-ref.xht", - "==" - ] - ], - {} - ] - ], - "border-top-right-radius-011.xht": [ - "e59567e219ae1a056a08b23f4ce45ebb098cf018", + "ruby-000.html": [ + "0b4e5ea274e3e1012390e954c78dfb9bd506e25f", [ null, [ [ - "/css/css-backgrounds/border-radius-001-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-top-right-radius-014.xht": [ - "ad160426759e8b920dcf5587bf6bd6a099a5fbcb", + "ruby-001.html": [ + "d302bca1c4694b3d06350eda9b66d459bac438ba", [ null, [ [ - "/css/css-backgrounds/border-radius-001-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-top-width-medium.html": [ - "74c7d943f4ca9500218bcf43b360d25a41283c19", + "ruby-002.html": [ + "2c4f6aae5ba72557af07f4dbcf5648673fdeea7e", [ null, [ [ - "/css/css-backgrounds/reference/border-top-width-3px-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-top-width-thick.html": [ - "f67c5e22ed3dc6f3198af6d450c5a23cd22af8e0", + "ruby-003.html": [ + "dc56458dd9e10645425bb4451f0d2ff8054b02ed", [ null, [ [ - "/css/css-backgrounds/reference/border-top-width-5px-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "border-top-width-thin.html": [ - "38597f5a22d4e5adfb3e68ef83a69bd16614cd38", + "soft-break-before-margin-001.html": [ + "6907c33586af3fa6e058fb95560d95d3799bb690", [ null, [ [ - "/css/css-backgrounds/reference/border-top-width-1px-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-width-pixel-snapping-001-a.html": [ - "664e652c2bf277913eff4b15bcebbb4f6c679743", - [ - null, - [ - [ - "/css/css-backgrounds/reference/border-width-pixel-snapping-001-ref.html", - "!=" - ] - ], - {} - ] - ], - "border-width-pixel-snapping-001-b.html": [ - "2bbb4f8b355bca712b1e2d6e4a3c15e01d9fd7e6", + "svg-with-transform.html": [ + "3aa7facf2d6a08e18a792b8739341b9bcc5014e5", [ null, [ [ - "/css/css-backgrounds/reference/border-width-pixel-snapping-001-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-width-small-values-001-a.html": [ - "d5354a3585469bbec045a8d14193fc3332e83d0f", - [ - null, - [ - [ - "/css/css-backgrounds/reference/border-width-small-values-001-ref.html", - "!=" - ] - ], - {} - ] - ], - "border-width-small-values-001-b.html": [ - "ccb5004a64f584a5d26ed636519f945dd3c7580f", - [ - null, - [ - [ - "/css/css-backgrounds/reference/border-width-small-values-001-ref.html", - "!=" - ] - ], - {} - ] - ], - "border-width-small-values-001-c.html": [ - "43651fe2312bbdb1f4a5bd2914ee8e94c6c4076f", - [ - null, - [ - [ - "/css/css-backgrounds/reference/border-width-small-values-001-ref.html", - "!=" - ] - ], - {} - ] - ], - "border-width-small-values-001-d.html": [ - "11ff8b5c5553d5bff1ceff5da36a4342a650610c", - [ - null, - [ - [ - "/css/css-backgrounds/reference/border-width-small-values-001-ref.html", - "!=" - ] - ], - {} - ] - ], - "border-width-small-values-001-e.html": [ - "5fc44349834938dc6b3d6ba60334bcd7737d1a40", - [ - null, - [ - [ - "/css/css-backgrounds/reference/border-width-small-values-001-ref.html", - "!=" - ] - ], - {} - ] - ], - "box-shadow": { - "slice-block-fragmentation-001.html": [ - "1c7193fa7b0c504698af9b5d6e22ca4ba49fa7fd", + "table": { + "border-collapse-001.html": [ + "626935f24952deb6b03875a7686c15adc806ee14", [ null, [ [ - "/css/css-backgrounds/box-shadow/slice-block-fragmentation-001-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "slice-block-fragmentation-002.html": [ - "b645ed82eaf3bd9795474b83b657e2a2376016f2", + "border-spacing-at-breaks.tentative.html": [ + "67588f28b02e258539c456d55af2f421cb6ba96a", [ null, [ [ - "/css/css-backgrounds/box-shadow/slice-block-fragmentation-002-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "slice-block-fragmentation-003.html": [ - "4fca18bfdde70d55f44175effcf5c1471bf8bbd0", + "break-after-table-cell-child.html": [ + "60e09248923e633610555d533961b4f557f420b2", [ null, [ [ - "/css/css-backgrounds/box-shadow/slice-block-fragmentation-003-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "slice-inline-fragmentation-001.html": [ - "46eab59ab2433fd031957e96e10113d8ea247a7d", + "break-after-table-cell.html": [ + "8f7e1ba1f3036e553191324ed29bc296672a6f76", [ null, [ [ - "/css/css-backgrounds/box-shadow/slice-inline-fragmentation-001-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "slice-inline-fragmentation-002.html": [ - "516abcf2a933fb8c6aee29660edd16ee7c7bd5ec", + "break-avoidance-001.html": [ + "6dc765c82a7da8ddf9a32c1b644bf2221178ae6b", [ null, [ [ - "/css/css-backgrounds/box-shadow/slice-inline-fragmentation-002-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "slice-inline-fragmentation-003.html": [ - "336c01f5baed2888f2ca275476e6ff635a410c52", + "break-avoidance-002.html": [ + "25c4496e92d108605daa8812b922ed2d206a2955", [ null, [ [ - "/css/css-backgrounds/box-shadow/slice-inline-fragmentation-003-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] - ] - }, - "box-shadow-005.html": [ - "705ced279d30e6113eed68b819b287f7e48219cd", - [ - null, - [ - [ - "/css/css-backgrounds/reference/box-shadow-005-ref.html", - "==" - ] - ], - {} - ] - ], - "box-shadow-029.html": [ - "9592c8af79d441e985ad05bc471a55fed68cb4d0", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "box-shadow-039.html": [ - "614078d599a0700e3b851b72ddefad50bb4fd50c", - [ - null, - [ - [ - "/css/css-backgrounds/reference/box-shadow-039-ref.html", - "==" - ] - ], - {} - ] - ], - "box-shadow-040.html": [ - "e406acc67a3992015bd091afb283bebd84b790b1", - [ - null, - [ - [ - "/css/css-backgrounds/reference/box-shadow-040-ref.html", - "==" - ] - ], - {} - ] - ], - "box-shadow-041.html": [ - "f91189bcc49300c4098a3303dc1792a1af0a25ec", - [ - null, - [ - [ - "/css/css-backgrounds/reference/box-shadow-041-ref.html", - "==" - ] - ], - {} - ] - ], - "box-shadow-042.html": [ - "0e53b364630624385379e5e7f7e73becf3ec199b", - [ - null, - [ - [ - "/css/css-backgrounds/reference/box-shadow-042-ref.html", - "==" - ] - ], - {} - ] - ], - "box-shadow-body.html": [ - "88d888a7710c7bdd2831a4908a30108b3a34670a", - [ - null, - [ - [ - "/css/css-backgrounds/reference/box-shadow-body-ref.html", - "==" - ] - ], - {} - ] - ], - "box-shadow-border-radius-001.html": [ - "de5060e5b86b248b477462475f03a4373651889b", - [ - "css/css-backgrounds/box-shadow-border-radius-001.html", - [ - [ - "/css/css-backgrounds/reference/box-shadow-border-radius-001-ref.html", - "==" - ], - [ - "/css/css-backgrounds/reference/box-shadow-border-radius-001-notref.html", - "!=" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 56 - ], - [ - 0, - 1192 - ] - ] - ] - ] - } - ] - ], - "box-shadow-calc.html": [ - "14011859851b1234674bbdf6374670c674b56968", - [ - "css/css-backgrounds/box-shadow-calc.html", - [ - [ - "/css/css-backgrounds/box-shadow-calc-ref.html", - "==" - ] - ], - {} - ] - ], - "box-shadow-currentcolor.html": [ - "cdb0b9d9fc20e864c1c81b261661b84ac8bca0df", - [ - null, - [ - [ - "/css/css-backgrounds/box-shadow-currentcolor-ref.html", - "==" - ] - ], - {} - ] - ], - "box-shadow-inset-without-border-radius.html": [ - "8b2c691ebc8fbd318416a1c4f13461fb2576b702", - [ - "css/css-backgrounds/box-shadow-inset-without-border-radius.html", - [ - [ - "/css/css-backgrounds/reference/box-shadow-inset-without-border-radius-ref.html", - "==" - ] - ], - {} - ] - ], - "box-shadow-invalid-001.html": [ - "acd0bdf41bd7899c45bd424e64127f5e30464ef1", - [ - "css/css-backgrounds/box-shadow-invalid-001.html", - [ - [ - "/css/css-backgrounds/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "box-shadow-multiple-001.html": [ - "e95fb6841ad1c9b21aebf2c51f7690f917e0dd1c", - [ - "css/css-backgrounds/box-shadow-multiple-001.html", - [ - [ - "/css/css-backgrounds/reference/box-shadow-multiple-001-ref.html", - "==" - ] - ], - {} - ] - ], - "box-shadow-outset-without-border-radius-001.html": [ - "71735a98ce7ae9d2df7ca7eed7dd7b4020cd72ba", - [ - "css/css-backgrounds/box-shadow-outset-without-border-radius-001.html", - [ - [ - "/css/css-backgrounds/reference/box-shadow-outset-without-border-radius-001-ref.html", - "==" - ] - ], - {} - ] - ], - "box-shadow-overlapping-001.html": [ - "2c77838108d535372866ca5aafc6115c6dbea144", - [ - null, - [ - [ - "/css/css-backgrounds/reference/box-shadow-overlapping-001-ref.html", - "==" - ] - ], - {} - ] - ], - "box-shadow-overlapping-002.html": [ - "60659721fb10e716a13c05c951df26c72641acde", - [ - null, - [ - [ - "/css/css-backgrounds/reference/box-shadow-overlapping-001-ref.html", - "==" - ] - ], - {} - ] - ], - "box-shadow-overlapping-003.html": [ - "dcae3f050633965cf8463de35052ea2e9916efbc", - [ - null, - [ - [ - "/css/css-backgrounds/reference/box-shadow-overlapping-003-ref.html", - "==" - ] - ], - {} - ] - ], - "box-shadow-overlapping-004.html": [ - "97b690b956e6bed8bb6212ab96e895017fd59163", - [ - null, - [ - [ - "/css/css-backgrounds/reference/box-shadow-overlapping-003-ref.html", - "==" - ] - ], - {} - ] - ], - "box-shadow-radius-000.html": [ - "ea6190b57f68eed178c5b57ab3b43dffb94dda4b", - [ - "css/css-backgrounds/box-shadow-radius-000.html", - [ - [ - "/css/css-backgrounds/box-shadow-radius-000-ref.html", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 25 - ], - [ - 0, - 90 - ] - ] - ] - ] - } - ] - ], - "box-shadow-radius-001.html": [ - "9b823a0590fb5890a33ed605912879ce24ad81f5", - [ - null, - [ - [ - "/css/css-backgrounds/box-shadow-radius-001-ref.html", - "==" - ] - ], - {} - ] - ], - "box-shadow-table-border-collapse-001.html": [ - "c6c50b73bde76082d57c49e47675573158567ff9", - [ - null, - [ - [ - "/css/css-backgrounds/reference/box-shadow-table-border-collapse-001-ref.html", - "==" - ] - ], - {} - ] - ], - "child-move-reveals-parent-background.html": [ - "e369eccd07f3c7c4146b1a419d5b110ff6d0eb7c", - [ - null, - [ - [ - "/css/css-backgrounds/child-move-reveals-parent-background-ref.html", - "==" - ] - ], - {} - ] - ], - "color-mix-currentcolor-background-repaint-parent.html": [ - "af894546942453cb50b30334a6a49ab3383d2418", - [ - "css/css-backgrounds/color-mix-currentcolor-background-repaint-parent.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "color-mix-currentcolor-background-repaint.html": [ - "e584c4f9a838847e4f606c300ee31ef2677ec5a1", - [ - "css/css-backgrounds/color-mix-currentcolor-background-repaint.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "color-mix-currentcolor-border-repaint-parent.html": [ - "a8d55ace8fce3e01e9c15e354342d298b627c07b", - [ - "css/css-backgrounds/color-mix-currentcolor-border-repaint-parent.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "color-mix-currentcolor-border-repaint.html": [ - "aeacd72d3d27d26a4cfca69c382c3565e2979971", - [ - "css/css-backgrounds/color-mix-currentcolor-border-repaint.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "color-mix-currentcolor-outline-repaint-parent.html": [ - "e13880560637dd6483b58230d925d76084182505", - [ - "css/css-backgrounds/color-mix-currentcolor-outline-repaint-parent.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "color-mix-currentcolor-outline-repaint.html": [ - "87f87b0edb7fe9aab0e32537cce90ebeb8f97262", - [ - "css/css-backgrounds/color-mix-currentcolor-outline-repaint.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "css-border-radius-001.html": [ - "8b0e2e9a36c67393f0497b174784c5245cee1d7c", - [ - "css/css-backgrounds/css-border-radius-001.html", - [ - [ - "/css/css-backgrounds/reference/css-border-radius-001-ref.html", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 116 - ], - [ - 0, - 8035 - ] - ] - ] - ] - } - ] - ], - "css-box-shadow-001.html": [ - "3a7f268ec57b233e498a9e7ab567c8d996326297", - [ - null, - [ - [ - "/css/css-backgrounds/reference/css-box-shadow-ref-001.html", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 56 - ], - [ - 0, - 250 - ] - ] - ] - ] - } - ] - ], - "css3-background-clip-border-box.html": [ - "e07fd53e179c46e34fcd4ec5f32cff87df11fc4f", - [ - null, - [ - [ - "/css/css-backgrounds/reference/css3-background-clip-border-box-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-background-clip-content-box.html": [ - "bb707a5bf989e7d47450c41b4625906dec29f274", - [ - null, - [ - [ - "/css/css-backgrounds/reference/css3-background-clip-content-box-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-background-clip-padding-box.html": [ - "7009f7b26a9b65f1f2e2ccd665370231934b3f47", - [ - null, - [ - [ - "/css/css-backgrounds/reference/css3-background-clip-padding-box-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-background-clip.html": [ - "97beda239b0671ce36daa047a05701e762fad196", - [ - null, - [ - [ - "/css/css-backgrounds/reference/css3-background-clip-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-background-origin-border-box.html": [ - "0451cd113551d24f78913228e9ed5b11859776bf", - [ - null, - [ - [ - "/css/css-backgrounds/reference/css3-background-origin-border-box-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-background-origin-content-box.html": [ - "7ea2b4b1bc8d073b40dfa7131a2be4cb0d0c771a", - [ - null, - [ - [ - "/css/css-backgrounds/reference/css3-background-origin-content-box-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-background-origin-padding-box.html": [ - "c1dc3f078803c5676b027aea4b9f412554f68fb3", - [ - null, - [ - [ - "/css/css-backgrounds/reference/css3-background-origin-padding-box-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-background-size-001.html": [ - "6da2c9d32672088f364bb69dfccb4ae572ab3f55", - [ - null, - [ - [ - "/css/css-backgrounds/reference/css3-background-size-001-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-background-size-contain.html": [ - "1c65a30a74b4ae8940d45eee10991bf85486f5e5", - [ - null, - [ - [ - "/css/css-backgrounds/reference/css3-background-size-contain-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-background-size.html": [ - "79d6c5417f5aa7c4a013aa5f909106d0a47b80de", - [ - null, - [ - [ - "/css/css-backgrounds/reference/css3-background-size-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-border-image-repeat-repeat.html": [ - "b6db467a668856eac84475dc2b86e03fc4342095", - [ - null, - [ - [ - "/css/css-backgrounds/reference/css3-border-image-repeat-repeat-ref.html", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 58 - ], - [ - 0, - 412 - ] - ] - ] - ] - } - ] - ], - "css3-border-image-repeat-stretch.html": [ - "c83cf383725572c0ebc6c19146416ad59ab2847f", - [ - null, - [ - [ - "/css/css-backgrounds/reference/css3-border-image-repeat-stretch-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-border-image-source.html": [ - "e53ec1fbb1d1254bd44cafcebe4d04e6a61015f3", - [ - null, - [ - [ - "/css/css-backgrounds/reference/css3-border-image-source-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-box-shadow.html": [ - "c6e746c1dec3f8efe8b78fdf2f786c47fb2d4d2a", - [ - null, - [ - [ - "/css/css-backgrounds/reference/css3-box-shadow-ref.html", - "==" - ] - ], - {} - ] - ], - "currentcolor-border-repaint-parent.html": [ - "c84d26c434db7e58b607fd3a0299e4317e1b180b", - [ - "css/css-backgrounds/currentcolor-border-repaint-parent.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "document-canvas-remove-body.html": [ - "35b0383ceaae98e6b3d6002a1e6885f3626de226", - [ - "css/css-backgrounds/document-canvas-remove-body.html", - [ - [ - "/css/css-backgrounds/document-canvas-remove-body-ref.html", - "==" - ] - ], - {} - ] - ], - "fieldset-inset-shadow.html": [ - "cb13cd805d0dafcdd1c288c71809a6531eb76fae", - [ - null, - [ - [ - "/css/css-backgrounds/fieldset-inset-shadow-ref.html", - "==" - ] - ], - {} - ] - ], - "first-letter-space-not-selected.html": [ - "842832c01bac0c0643395ed3387d7263ec4dbf0f", - [ - null, - [ - [ - "/css/css-backgrounds/reference/first-letter-space-not-selected-ref.html", - "==" - ] - ], - {} - ] - ], - "hidpi": { - "simple-bg-color.html": [ - "07bea44d21964b832cd9e4b4f32098ec41a2c206", + ], + "break-avoidance-003.html": [ + "e09eaccfa4249cbdb6a5ddfd45c60573e5903345", [ null, [ [ - "/css/css-backgrounds/hidpi/simple-bg-color-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] - ] - }, - "inline-background-rtl-001.html": [ - "a7149e2f3c83acf175b5de4f8bcbf63a2c20d4f1", - [ - null, - [ - [ - "/css/css-backgrounds/reference/inline-background-rtl-001-ref.html", - "==" - ] - ], - {} - ] - ], - "inner-border-non-renderable.html": [ - "7c3cff798819b7cc592b807a172a0bbebae32c9b", - [ - "css/css-backgrounds/inner-border-non-renderable.html", - [ - [ - "/css/css-backgrounds/inner-border-non-renderable-ref.html", - "==" - ] - ], - {} - ] - ], - "inset-box-shadow-scroll.html": [ - "7eca4ea544ff76740e13490fb995dfda5705336d", - [ - null, - [ - [ - "/css/css-backgrounds/inset-box-shadow-scroll-ref.html", - "==" - ] - ], - {} - ] - ], - "inset-box-shadow-stacking-context-scroll.html": [ - "edd79b88be2a71fc6054e7e866c8cabe03948a89", - [ - null, - [ - [ - "/css/css-backgrounds/inset-box-shadow-scroll-ref.html", - "==" - ] - ], - {} - ] - ], - "linear-gradient-currentcolor-first-line.html": [ - "7c8f8a8fda63982a7ded20fcdd25077ce4c73c39", - [ - "css/css-backgrounds/linear-gradient-currentcolor-first-line.html", - [ - [ - "/css/css-backgrounds/linear-gradient-currentcolor-first-line-ref.html", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 1 - ], - [ - 0, - 265 - ] - ] - ] - ] - } - ] - ], - "local-attachment-content-box-scroll.html": [ - "7644c15886a29f66ca80e60b74d687cc0bdafc8a", - [ - null, - [ - [ - "/css/css-backgrounds/local-attachment-content-box-scroll-ref.html", - "==" - ] - ], - {} - ] - ], - "order-of-images.htm": [ - "9f165fb9b5aacf8f71043fd45ebbafecfacb619e", - [ - "css/css-backgrounds/order-of-images.htm", - [ - [ - "/css/css-backgrounds/reference/order-of-images-ref.html", - "==" - ] - ], - {} - ] - ], - "scroll-positioned-multiple-background-images.html": [ - "a9ca550ce3dea2626de05bf31437a0a19aeedbce", - [ - null, - [ - [ - "/css/css-backgrounds/reference/60x60-green-background.html", - "==" - ] - ], - {} - ] - ], - "subpixel-repeat-no-repeat-mix.html": [ - "1828b974877c2dc780388f044126d0499cc5f9fb", - [ - null, - [ - [ - "/css/css-backgrounds/reference/subpixel-repeat-no-repeat-mix-ref.html", - "==" - ] - ], - {} - ] - ], - "table-cell-background-local-002.html": [ - "5398ce8eff737f3c808c0286958e426250b76c31", - [ - "css/css-backgrounds/table-cell-background-local-002.html", - [ - [ - "/css/css-backgrounds/reference/table-cell-background-local-002-ref.html", - "==" - ] - ], - {} - ] - ], - "table-cell-background-local-003.html": [ - "e2662bec1fa75049c07cbc07c24449e37c4c56a7", - [ - "css/css-backgrounds/table-cell-background-local-003.html", - [ - [ - "/css/css-backgrounds/reference/table-cell-background-local-003-ref.html", - "==" - ] - ], - {} - ] - ], - "table-cell-background-local.html": [ - "e52aa26ef209dccb54f0362ca4a30964904ce7b0", - [ - null, - [ - [ - "/css/css-backgrounds/table-cell-background-local-ref.html", - "==" - ] - ], - {} - ] - ], - "ttwf-reftest-borderRadius.html": [ - "6950d17f27c50d1b54cefe1bc4342af74108955e", - [ - null, - [ - [ - "/css/css-backgrounds/reference/ttwf-reftest-borderRadius-ref.html", - "==" - ] - ], - {} - ] - ] - }, - "css-borders": { - "border-radius-greater-than-width.html": [ - "8c421a213bc2b6b1c5df705ee8e89f774cb81619", - [ - "css/css-borders/border-radius-greater-than-width.html", - [ - [ - "/css/css-borders/reference/border-radius-greater-than-width-ref.html", - "==" - ] - ], - {} - ] - ], - "borders-on-sub-unit-sized-elements.html": [ - "1aff3c9a6b22a8bbaebf8c6b91dfdcc8a6a08e44", - [ - null, - [ - [ - "/css/css-borders/reference/borders-on-sub-unit-sized-elements-ref.html", - "==" - ] - ], - {} - ] - ], - "subpixel-border-width.tentative.html": [ - "d056c01c914c88a239e8b6f0593a1b7dc4bf54dd", - [ - null, - [ - [ - "/css/css-borders/reference/subpixel-border-width-ref.tentative.html", - "==" - ] - ], - {} - ] - ], - "subpixel-borders-with-child-border-box-sizing.html": [ - "0f469e4eb42a8bb9708897a7829c92403b92196d", - [ - null, - [ - [ - "/css/css-borders/reference/subpixel-borders-with-child-border-box-sizing-ref.html", - "==" - ] - ], - {} - ] - ], - "subpixel-borders-with-child.html": [ - "4257983259f721041668178b41eda7161d385282", - [ - null, - [ - [ - "/css/css-borders/reference/subpixel-borders-with-child-ref.html", - "==" - ] - ], - {} - ] - ] - }, - "css-box": { - "margin-trim": { - "block-container-block-001.html": [ - "e31abec3678e39dd37339364a4c2977ed2adae30", + ], + "break-avoidance-004.html": [ + "e8eb516fec6ecea97cc5c296a86317c6b088c4ab", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "block-container-block-002.html": [ - "399141b17e4dcabf718ad5f8133b71caaa8b36d9", + "break-avoidance-005.html": [ + "a9d53e24558daae387c65a8fa63344e1c062ad64", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "block-container-block-end-001.html": [ - "fcee65692ce94ac94dd3e8fbf6f5db4d18bdd6c9", + "break-avoidance-006.html": [ + "b8dc0f41442b35d5eb385c883ac02af7d6acb266", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "block-container-block-end-002.html": [ - "42d559fbe927761b98ca8a47167ca15e5afb78bc", + "break-avoidance-007.html": [ + "4429edb2c8844b1e86d37751e1c4e8a1a24bdb76", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "block-container-block-start-001.html": [ - "c33c7f0abe5aa80c396f0050a47e4ea3c854e9dc", + "break-avoidance-in-table-in-grid.html": [ + "6250ea7e6d63a403b77a8c08f6d4cc9920f7c448", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "block-container-block-start-002.html": [ - "339c990d10edbae71ba9d60707157b9d748aea5a", + "break-before-expansion-001.html": [ + "1f10eb59f52488f21f4752eb09485656d9aaa1a9", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "block-container-non-adjoining-item.html": [ - "215175418b834c74f99f66237aebdcd1b859776f", + "break-before-expansion-002.html": [ + "6c413caa7ee683cef272178ba2e2d9776417da17", [ null, [ [ - "/css/css-box/margin-trim/block-container-non-adjoining-item-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "block-container-replaced-block-end.html": [ - "0225460b7b71f163cb22eea1b7c9b275b258b89f", + "break-before-second-row.html": [ + "3a8d307aa504e106b0756f03e0a9e4e79ab5e922", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "block-container-replaced-block-start.html": [ - "10080c974f3b5a013f1a9cb87c55a85121058098", + "break-before-table-cell-child.html": [ + "3f07edf9ae9ec224dee03818595ece8b897920a3", [ null, [ @@ -141678,8 +143830,8 @@ {} ] ], - "block-container-replaced-block.html": [ - "036066f6910e9e6043cc8ccb9267c56a861bef6e", + "break-before-table-cell.html": [ + "1d50080f760aec561960cbc864e32c3fffbf59a0", [ null, [ @@ -141691,401 +143843,1324 @@ {} ] ], - "flex-block-end-trimmed-only.html": [ - "0a99b3f308bb7f232a8295aa79ce40995ffd94c5", + "break-inside-cell-000.html": [ + "2982eed1e86be6f24e29ee69a0375f9cd2452334", [ null, [ [ - "/css/css-box/margin-trim/flex-block-end-trimmed-only-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "flex-block-start-trimmed-only.html": [ - "5e867ea43d1ce873ac7984ce1a7271680540cf4c", + "break-inside-cell-001.html": [ + "cd55f46889976c06d813753ad7f75c78c42399da", [ null, [ [ - "/css/css-box/margin-trim/flex-block-start-trimmed-only-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "flex-block-trimmed-only.html": [ - "e73048282515e62bec6d9fc663df83b2ff8431c0", + "caption-margin-001.html": [ + "cb2746ef1580e72c110b53c8e5fc7b3160b2e9bb", [ null, [ [ - "/css/css-box/margin-trim/flex-block-trimmed-only-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "flex-column-block-multiline.html": [ - "6536d7f00dfcbc7e6e80ad18731c0b69825176ce", + "caption-margin-002.html": [ + "3bb06bde1dc30cf89594e7f8a3642bf14b72ce5c", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "flex-column-grow.html": [ - "62c55b2bfff07c019ea7e5292b0d81f407ca96be", + "caption-margin-003.html": [ + "e591c9e058ef34fad2afd7d0fa684356d1234b72", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "flex-column-inline-multiline.html": [ - "25003aab08e8f383ac2fdd33963d5e5d5af9afd3", + "caption-margin-004.html": [ + "5c70c70728c80f73fc49c69e289a0588a887fd30", [ null, [ [ - "/css/css-box/margin-trim/flex-column-inline-multiline-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "flex-column-orthogonal-item.html": [ - "9f13e2ce71ca8255e1a16558633c45ecbd45cd73", + "caption-margin-005.html": [ + "a77e2d83b8cf19fbae852e1d51edd94fc0a7f830", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "flex-column-shrink.html": [ - "06395ff6d5e35cbe125f58bed7de482759a1ea70", + "dynamic-caption-child-change-001.html": [ + "c57f4120166b15b3ee177e8b3c64eb25f45ad133", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "flex-column-style-change-triggers-layout-block-end.html": [ - "80f2c62d233113a13b7dfa21627a81f999e1f3b5", + "final-border-spacing-at-fragmentainer-boundary.html": [ + "2e0540d7458dbd696ef601f04f354a2f2faf9acc", [ - "css/css-box/margin-trim/flex-column-style-change-triggers-layout-block-end.html", + null, [ [ - "/css/css-box/margin-trim/flex-column-style-change-triggers-layout-block-end-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "flex-column-style-change-triggers-layout-block-start.html": [ - "15bdcdaebc4a662b7b1bd78de076fcc3769d78df", + "inside-flex-001.html": [ + "db3064fa8c290103d06f919afbdceefd303695b0", [ - "css/css-box/margin-trim/flex-column-style-change-triggers-layout-block-start.html", + null, [ [ - "/css/css-box/margin-trim/flex-column-style-change-triggers-layout-block-start-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "flex-column-style-change-triggers-layout-block.html": [ - "505f62ff2811157d52747a197ba0e0d168164311", + "monolithic-overflow-001.tentative.html": [ + "34487c43279f3e6aa2ddbb41d703d938debc1981", [ - "css/css-box/margin-trim/flex-column-style-change-triggers-layout-block.html", + null, [ [ - "/css/css-box/margin-trim/flex-column-style-change-triggers-layout-block-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "flex-inline-end-trimmed-only.html": [ - "33451daf30a9d0035529c53d40a8f2316109de3f", + "monolithic-overflow-002.tentative.html": [ + "74b63fb68cbec730e898ad4a5e3b8338463714b8", [ null, [ [ - "/css/css-box/margin-trim/flex-inline-end-trimmed-only-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "flex-inline-start-trimmed-only.html": [ - "05cf112e66adc4b1364b789b5697e89c8d0eb594", + "monolithic-overflow-003.tentative.html": [ + "296a309335fa4bb2c109b6a96469843320fe3e95", [ null, [ [ - "/css/css-box/margin-trim/flex-inline-start-trimmed-only-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "flex-inline-trimmed-only.html": [ - "637dc485afed7d29238ccb1e4b24e3d6bbff08a1", + "monolithic-overflow-004.tentative.html": [ + "6f62f433e823698da207befa43ef26279d55a987", [ null, [ [ - "/css/css-box/margin-trim/flex-inline-trimmed-only-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "flex-row-block-multiline.html": [ - "c8fc788ca266e655c725d82c5f23160fbc7b5282", + "monolithic-overflow-005.html": [ + "7204359ad9b1d183c7e2fdf0035b973786920847", [ null, [ [ - "/css/css-box/margin-trim/flex-row-block-multiline-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "flex-row-grow.html": [ - "64395461cfd714e37a8dec5ff339f8fc343d3b59", + "monolithic-overflow-006.html": [ + "a8ebd11511969e82b739ea4c6b0948f177e4036f", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "flex-row-inline-multiline.html": [ - "d563373d50a1cad7542d60f5ec3880a13c5c7347", + "oof-in-cell-with-alignment-001.html": [ + "7933012cb6aeccaf8d8a8cf1d35c8ee0d490a04f", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "flex-row-orthogonal-item.html": [ - "3facc7450caa965d47fb05cfad558136931b51fb", + "oof-in-cell-with-alignment-002.html": [ + "1b9629c9ed9255aeab5649b17759fe46d6b16d46", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "flex-row-shrink.html": [ - "172c946cb4a004aa0f6146f674d5f53ee48b9db4", + "oof-in-cell-with-alignment-003.html": [ + "8d026e42fcdeae71efc5c51b108fd61f93d3a318", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "flex-row-style-change-triggers-layout-inline-end.html": [ - "c17e043548f5918eb30389f28406f6f7a74e8acb", + "oof-in-cell-with-alignment-004.html": [ + "5805415de7d307ebe4fc90b0a1233c4a243f0d92", [ - "css/css-box/margin-trim/flex-row-style-change-triggers-layout-inline-end.html", + null, [ [ - "/css/css-box/margin-trim/flex-row-style-change-triggers-layout-inline-end-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "flex-row-style-change-triggers-layout-inline-start.html": [ - "87118ff69878188808201dd1ded0256e44a65e05", + "overflow-scroll-row.html": [ + "8ed379e5dd29681704c63e46b2702b1536f789b8", [ - "css/css-box/margin-trim/flex-row-style-change-triggers-layout-inline-start.html", + null, [ [ - "/css/css-box/margin-trim/flex-row-style-change-triggers-layout-inline-start-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "flex-row-style-change-triggers-layout-inline.html": [ - "2e02643e58c5c69d4b9a8892cf465213f52bde18", + "overflow-scroll-section.html": [ + "62b3071ae960d0df21353565afb3c51fe3e837c7", [ - "css/css-box/margin-trim/flex-row-style-change-triggers-layout-inline.html", + null, [ [ - "/css/css-box/margin-trim/flex-row-style-change-triggers-layout-inline-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "flex-trim-all-margins.html": [ - "1c2eda8aa095978938005704200bf107a7716fb1", + "repeated-section": { + "abspos-in-monolithic.tentative.html": [ + "6ec70d030d233a8183bbf281503235e2cb005b66", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "abspos-uncontained-text.html": [ + "e0485816bfa71b9329187ea135b400e7ad598dff", + [ + null, + [ + [ + "/css/css-break/table/repeated-section/abspos-uncontained-text-ref.html", + "==" + ] + ], + {} + ] + ], + "abspos-uncontained.tentative.html": [ + "d8b84ce72e3e95bc07571c38ea0336f297b1e95c", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "abspos.tentative.html": [ + "a7297f1dd559f5bb38a1143d0371d17d4ee29bba", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "background-001.tentative.html": [ + "2084f4ad313ead2f0ae05288f7b83ef864383e37", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "balanced-inner-multicol.html": [ + "78340661eda23a2607275e890433c4d99c2c1d3e", + [ + null, + [ + [ + "/css/css-break/table/repeated-section/balanced-inner-multicol-ref.html", + "==" + ] + ], + {} + ] + ], + "block-in-inline.tentative.html": [ + "1a94c697f15707efe09767c64b9c71a9103d78dc", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "break-avoidance-in-bottom-caption.tentative.html": [ + "fe676fd0c11b5665230f28dfa686d57753c52894", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "captions.tentative.html": [ + "1f28d56802cf2aa4f631c509510dd9761243bfc0", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "footer.tentative.html": [ + "8789ef2915fd98bb21e58a4d221f87b8e78f0998", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "header-after-break.tentative.html": [ + "6a5abc011fa20c0df1613055307aec47a26381e1", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "header-footer.tentative.html": [ + "7a1e956a8dacf6b497f9e9d1a87a3f37255b6418", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "header.tentative.html": [ + "6f4ad01097ea0525c7c513ae9f74ede800d7d7cf", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "image.tentative.html": [ + "72fea010d0e4d87ba647e25a5b2f0f401f4a3c48", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "inline-block.tentative.html": [ + "6dee47e375752e73e63030fd0c27951b966683d8", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "multicol.tentative.html": [ + "6dcd51bfe3e088262b407bd686a1db000771fdf7", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "multiple-row-groups.tentative.html": [ + "96e6173249c8d053c95f357161cee6b6f9fcf52c", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "repeated-header-border-spacing.tentative.html": [ + "7471c342a90f118ef7a33ac42a1fc9921617729e", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "repeated-section-in-clipped-overflow-001.tentative.html": [ + "96cd60286d9aeb37cc607671887b23d9c9815a81", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "repeated-section-in-clipped-overflow-002.tentative.html": [ + "b55d8a38906e6e431e57fff6aa2abdfd06d563f0", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "repeated-section-in-clipped-overflow-003.tentative.html": [ + "794a596fdc638e3b9f36e1fa3b5704fdb70ba6fa", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "tall-monolithic-after-repeated-header.tentative.html": [ + "8ded5f5f17e38c1e2b56b550fea1d871519a5481", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "variable-fragmentainer-size-001.html": [ + "f75a8cf216e9a7b03c4d92022b9a1fc880bc9e51", + [ + null, + [ + [ + "/css/css-break/table/repeated-section/variable-fragmentainer-size-001-ref.html", + "==" + ] + ], + {} + ] + ], + "variable-fragmentainer-size-002.html": [ + "c3aceac5aea83753c0f8ff4fa52351ee22626c53", + [ + null, + [ + [ + "/css/css-break/table/repeated-section/variable-fragmentainer-size-002-ref.html", + "==" + ] + ], + {} + ] + ] + }, + "section-with-overflow-000.html": [ + "909052765b6cc616389f52cb4e21857caeab38fd", [ null, [ [ - "/css/css-box/margin-trim/flex-trim-all-margins-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "grid-block-end.html": [ - "ffbc374756c22872c05e6c19d2a296a3cc8f0a1a", + "section-with-overflow-001.html": [ + "665f5247ad2012bc96c44e1534339c3bfdea1446", [ null, [ [ - "/css/css-box/margin-trim/grid-block-end-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "grid-block-start.html": [ - "21d5447253581111503f95bb304107d0b70871d8", + "section-with-overflow-002.html": [ + "c6c63abe0e4b75de709f869f747ae67f2467e22e", [ null, [ [ - "/css/css-box/margin-trim/grid-block-start-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "grid-block.html": [ - "6a4c3bbc9466db04dc06e0d880e7d505d3f5ae82", + "sections-and-captions-mixed-order.html": [ + "67d20e3a464fb64baabb12bdac431fa71044bab3", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-break/table/sections-and-captions-mixed-order-ref.html", "==" ] ], {} ] ], - "grid-inline-end.html": [ - "3754a9b50aa189c52f32def4ca2f739b089e4003", + "specified-block-size-001.html": [ + "ad235534be43aa44f3444602757d57ff4b6cc211", [ null, [ [ - "/css/css-box/margin-trim/grid-inline-end-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "grid-inline-start.html": [ - "e0f4c6d45467eed5ab4ba8d084c58632b231dd8e", + "specified-block-size-002.html": [ + "9605abe343f9c5ed70c1f63e7c076f0a9e18800d", [ null, [ [ - "/css/css-box/margin-trim/grid-inline-start-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "grid-inline.html": [ - "1ac228296afaa9e8ef8437af4f62719796db6329", + "specified-block-size-003.html": [ + "694ef40e3ef2606996a6d01dd5acf30b4b6db2af", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "grid-trim-ignores-collapsed-tracks.html": [ - "15768ea7aa91425b12d9dee0dacd0eb83bf0cc91", + "specified-block-size-004.html": [ + "ca436aba67dd75ca1b263d29935fc875759bdec1", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "specified-block-size-005.html": [ + "b1528509def039dac85ff3ced2926f9b81b4dda8", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "specified-block-size-006.html": [ + "a78af3faf5939cfa7b7032e022d8f2d428dc6edd", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "specified-block-size-007.html": [ + "f342e2a8fad8991e8ea15b50001b70b11bcda346", + [ + null, + [ + [ + "/css/css-break/table/specified-block-size-007-ref.html", + "==" + ] + ], + {} + ] + ], + "specified-block-size-008.html": [ + "6b4cd1163740dea91963e51b8854a6d6d8c7ab44", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "table-border-000.html": [ + "1ec0efa2990867f9b3fd4938fcd46115c2998198", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "table-border-001.html": [ + "97e4ba8dafcbe906dc9c8ea83d611663bc78c98f", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "table-border-002.html": [ + "16c2a50395c5a3a3ae2e8f22197bf6b783a34303", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "table-border-003.html": [ + "26b01599ad9a30c0ff3cedc1ae97b7cbaa5d014e", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "table-border-004.html": [ + "ed8314f1d29e82dae42d3828aa327a513e7d35bf", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "table-border-005.html": [ + "3f8efe9d0aa166ed9d689a372c63e51935eba01d", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "table-border-006.html": [ + "f0ebf25c08ef36b75da1b2770ba398c0ebfd478d", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "table-border-007.html": [ + "66363cd0aefcebdbb82b99a29b68f33819075628", + [ + null, + [ + [ + "/css/css-break/table/table-border-007-ref.html", + "==" + ] + ], + {} + ] + ], + "table-border-008.html": [ + "6140df16749a793592e4eb80734fe6de6bdfe9d1", + [ + null, + [ + [ + "/css/css-break/table/table-border-008-ref.html", + "==" + ] + ], + {} + ] + ], + "table-caption-and-cells-fixed-width.html": [ + "11984c3ea3f74e4506aaa41162451d2be72229b2", + [ + null, + [ + [ + "/css/css-break/table/table-caption-and-cells-fixed-width-ref.html", + "==" + ] + ], + {} + ] + ], + "table-caption-and-cells.html": [ + "365786f49ef9afc8a02e1f04b65ae62cfbc93b26", + [ + null, + [ + [ + "/css/css-break/table/table-caption-and-cells-ref.html", + "==" + ] + ], + {} + ] + ], + "table-caption-with-block.html": [ + "1d3aa3317ebdce4166255957ecdb025aa49790ea", + [ + null, + [ + [ + "/css/css-break/table/table-caption-with-block-ref.html", + "==" + ] + ], + {} + ] + ], + "table-cell-border-001.html": [ + "062cd9f92e3c278244ff41cf85d1804e3f18f1a6", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "table-cell-border-002.html": [ + "9aa05f2acee001b0fea7b8d8105cc5eb99ab90ed", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "table-cell-expansion-001.html": [ + "b10d516787ac03841f8720b2d84d2081fe73f52a", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "table-cell-expansion-002.html": [ + "6df44aa7636ac37d5b33cdf40e7d08d9ea48f0b6", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "table-cell-expansion-003.html": [ + "32e12012ac894558f695982516e9f95efe419606", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "table-cell-expansion-004.html": [ + "2390e218c9ec8216957e8e71019b52203ad48b6d", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "table-cell-expansion-005.html": [ + "23fcc73e166e95aafc3008981e0e961225c9816d", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "table-cell-expansion-006.html": [ + "102866477454ab75a034f32269238345e3533e6e", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "table-cell-expansion-007.html": [ + "bafe31200d079105284a16c4d2b01f8499da517e", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "table-cell-expansion-008.html": [ + "7e4cf1697006676758700d88e0942a153d3c8170", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "table-cell-expansion-009.html": [ + "ec34d0b7072136d96041d6711e0d3599d2c21c37", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "table-cell-expansion-010.html": [ + "0e6b849c9b04335cc51832953e2d29576fc154e6", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "table-col-paint-htb-ltr.html": [ + "ea066d13544b308de72b2fc6b9d75ceecc0a60f8", + [ + null, + [ + [ + "/css/css-break/table/table-col-paint-htb-ltr-ref.html", + "==" + ] + ], + {} + ] + ], + "table-col-paint-vlr-rtl.html": [ + "ab45d314042e9e780856afa1c39b5d5ef0f00a3f", + [ + null, + [ + [ + "/css/css-break/table/table-col-paint-vlr-rtl-ref.html", + "==" + ] + ], + {} + ] + ], + "table-col-paint-vrl-rtl.html": [ + "e31d1d4dc60275c6f757cb56b9c990000b0716a8", + [ + null, + [ + [ + "/css/css-break/table/table-col-paint-vrl-rtl-ref.html", + "==" + ] + ], + {} + ] + ], + "table-collapsed-borders-paint-at-boundary.tentative.html": [ + "0227b571a248a1843e5fd5abadce177f64951caa", + [ + null, + [ + [ + "/css/css-break/table/table-collapsed-borders-paint-at-boundary-ref.html", + "==" + ] + ], + {} + ] + ], + "table-collapsed-borders-paint-htb-ltr.html": [ + "60e146296b226faf1914715aa837a86ac497ce25", + [ + null, + [ + [ + "/css/css-break/table/table-collapsed-borders-paint-htb-ltr-ref.html", + "==" + ] + ], + {} + ] + ], + "table-collapsed-borders-paint-vlr-rtl.html": [ + "d03968ec4d32b37bb86fc0d30c33f2d1afca399a", + [ + null, + [ + [ + "/css/css-break/table/table-collapsed-borders-paint-vlr-rtl-ref.html", + "==" + ] + ], + {} + ] + ], + "table-collapsed-borders-paint-vrl-ltr.html": [ + "6dff501fec734ff9dd75d725e1e1f014b93dd5b5", + [ + null, + [ + [ + "/css/css-break/table/table-collapsed-borders-paint-vrl-ltr-ref.html", + "==" + ] + ], + {} + ] + ], + "table-grid-paint-htb-ltr.html": [ + "e2be9ce16c2cd1808fb32c9c48935a983519e705", + [ + null, + [ + [ + "/css/css-break/table/table-grid-paint-htb-ltr-ref.html", + "==" + ] + ], + {} + ] + ], + "table-grid-paint-vlr-rtl.html": [ + "b26363056be2fb5fcb961c49872051446a7d692f", + [ + null, + [ + [ + "/css/css-break/table/table-grid-paint-vlr-rtl-ref.html", + "==" + ] + ], + {} + ] + ], + "table-grid-paint-vrl-rtl.html": [ + "0d83c6c402a82c604cb928a6c43dd5dc5cc9fc7c", + [ + null, + [ + [ + "/css/css-break/table/table-grid-paint-vrl-rtl-ref.html", + "==" + ] + ], + {} + ] + ], + "table-row-paint-htb-ltr.html": [ + "ecc156bd38bcc414b8d66abf84d355c040f0782d", + [ + null, + [ + [ + "/css/css-break/table/table-row-paint-htb-ltr-ref.html", + "==" + ] + ], + {} + ] + ], + "table-row-paint-vlr-rtl.html": [ + "f3d32c9df664c75350ee8b029267be13b0894eee", + [ + null, + [ + [ + "/css/css-break/table/table-row-paint-vlr-rtl-ref.html", + "==" + ] + ], + {} + ] + ], + "table-row-paint-vrl-rtl.html": [ + "a74a952b4b9e9f96cd6be5878011eaf34f4632ba", + [ + null, + [ + [ + "/css/css-break/table/table-row-paint-vrl-rtl-ref.html", + "==" + ] + ], + {} + ] + ], + "table-rowspan-001.html": [ + "fe431d79a7c4f4edb0c56d85f877d98764ac8ad0", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "table-section-paint-htb-ltr.html": [ + "ff0eda1be83c900c256fe3ac994e16408f10f8f9", + [ + null, + [ + [ + "/css/css-break/table/table-section-paint-htb-ltr-ref.html", + "==" + ] + ], + {} + ] + ], + "table-section-paint-vlr-rtl.html": [ + "1dbdb212ace7aee3afffa21d01863912ae62cdd2", + [ + null, + [ + [ + "/css/css-break/table/table-section-paint-vlr-rtl-ref.html", + "==" + ] + ], + {} + ] + ], + "table-section-paint-vrl-rtl.html": [ + "d079c35818e1a920b2a07375114388876d2e880a", + [ + null, + [ + [ + "/css/css-break/table/table-section-paint-vrl-rtl-ref.html", + "==" + ] + ], + {} + ] + ], + "tall-bottom-aligned-cell-with-bottom-padding.html": [ + "1e7ff9b12e31149fbe4f5d9038c553ecbf8a32a4", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "truncated-border-spacing-at-fragmentainer-end.html": [ + "0a93b64275433feeba66876a54944573cb27157b", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ] - } - }, - "css-break": { - "abspos-in-offset-relpos.html": [ - "b996c365866370715a39ebb8ae3ffbb4419e393a", + }, + "tall-break-inside-avoid-at-start.html": [ + "6e9ab8bd9f56502247a6d8c2c2045b8f3af3605d", [ null, [ @@ -142097,60 +145172,60 @@ {} ] ], - "abspos-in-opacity-000.html": [ - "f41c0353630d41be14ee3d56e89b7796540db673", + "tall-content-inside-constrained-block-000.tentative.html": [ + "7cae4b93939386902a1df6ceb978d50093db23b0", [ - "css/css-break/abspos-in-opacity-000.html", + null, [ [ - "/css/css-break/abspos-in-opacity-000-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "abspos-in-opacity-001.html": [ - "e81c55832175763d92a64da5b81b4fd0772b77be", + "tall-content-inside-constrained-block-001.tentative.html": [ + "5584995b005b920659a367274ac78bff631023e1", [ - "css/css-break/abspos-in-opacity-001.html", + null, [ [ - "/css/css-break/abspos-in-opacity-001-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "abspos-in-opacity-002.html": [ - "e6d61eacd1af3e34111013a44afca09d92fe1418", + "tall-content-inside-constrained-block-002.tentative.html": [ + "e92a811b7bf23eaf1224cd4ff0e009f17a53d95d", [ - "css/css-break/abspos-in-opacity-002.html", + null, [ [ - "/css/reference/ref-filled-greenish-100px-square.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "abspos-in-opacity-003.html": [ - "13a1b31add5cb2c755dc6d36ee8e74a27de8a001", + "tall-content-inside-constrained-block-003.tentative.html": [ + "78148780a9497587483087ea8c45bfda4b3502b7", [ - "css/css-break/abspos-in-opacity-003.html", + null, [ [ - "/css/reference/ref-filled-greenish-100px-square.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "abspos-inside-relpos-inside-monolithic.html": [ - "879097f3fc2a7c933a1c2bea460beed1f6bc5e2b", + "tall-content-inside-constrained-block-004.tentative.html": [ + "c44a65841cd35fa012c911cbc2c13f8b8ca79a5a", [ null, [ @@ -142162,75 +145237,75 @@ {} ] ], - "avoid-border-break.html": [ - "56f47e83c57f0914b87910870d67d5490d9e4eb3", + "tall-content-inside-constrained-block-005.tentative.html": [ + "6e834e78daeee12c42fa44510b3680961b9b1c89", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "background-attachment-fixed.html": [ - "003873228d65166a7aadea0f5dec0702b94fab51", + "tall-content-inside-constrained-block-006.tentative.html": [ + "f907e38a2a0e428e13a5c6110c2a3a707afa7b01", [ - "css/css-break/background-attachment-fixed.html", + null, [ [ - "/css/css-break/background-attachment-fixed-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "background-image-000.html": [ - "27e78dc21cf932b9fea8a10ce1c677ce5dad6be5", + "tall-float-pushed-to-next-fragmentainer-000.html": [ + "a5f02184687fd21337c935d0ecc7ae07d6ae3bda", [ - "css/css-break/background-image-000.html", + null, [ [ - "/css/css-break/background-image-000-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "background-image-001.html": [ - "aec44ef759399e37a7abda4bb8cf25010344aa94", + "tall-float-pushed-to-next-fragmentainer-001.html": [ + "d172f935744ee3d44fdeb0c2f5f758321af4172a", [ - "css/css-break/background-image-001.html", + null, [ [ - "/css/css-break/background-image-001-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "background-image-002.html": [ - "50bf40f8b23138b1e8b6b9925f3d646e36d522e7", + "tall-float-pushed-to-next-fragmentainer-002.html": [ + "1ba22353c0754a1e52224adae491971a7f86645c", [ - "css/css-break/background-image-002.html", + null, [ [ - "/css/css-break/background-image-002-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "background-image-003.html": [ - "be36d998d6e59d985a1fab0598da407a7b4c8a11", + "tall-float-pushed-to-next-fragmentainer-003.html": [ + "3e28c5c347e6aa85d0f4a1e4b3d7508e0616e32e", [ - "css/css-break/background-image-003.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -142240,10 +145315,10 @@ {} ] ], - "become-unfragmented-001.html": [ - "df104fc494dfc3bd5070c04abf66becaea468a24", + "tall-float-pushed-to-next-fragmentainer-004.html": [ + "3f4d39fc1c7ac6be999d011e9f257002552c3e13", [ - "css/css-break/become-unfragmented-001.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -142253,8 +145328,8 @@ {} ] ], - "block-end-aligned-abspos-nested.html": [ - "b74a28e7319bad9f70a404bb613513778f42615f", + "tall-line-in-short-fragmentainer-000.html": [ + "8e9515c4b6c0f85e8fe7635e207f2f67cb7283b9", [ null, [ @@ -142266,21 +145341,21 @@ {} ] ], - "block-end-aligned-abspos-with-overflow.html": [ - "9000c6351384be8cec767405f7f7aecaf2223173", + "tall-line-in-short-fragmentainer-001.html": [ + "8f74878187a59dee3d060f14ee653264ae6e67f6", [ null, [ [ - "/css/css-break/block-end-aligned-abspos-with-overflow-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "block-in-inline-000.html": [ - "ae9ee3421b4e0e2971a4ba41033d9368525c5289", + "tall-line-in-short-fragmentainer-002.html": [ + "ee277549633d08bdf6a36f124055b6cfc45afa5d", [ null, [ @@ -142292,8 +145367,8 @@ {} ] ], - "block-in-inline-001.html": [ - "de967599fe30e7debf002fb1ba5858060882e5b5", + "trailing-child-margin-000.html": [ + "d204483a33ebff421cf9f3da9fab2d1183fcd1c0", [ null, [ @@ -142305,8 +145380,8 @@ {} ] ], - "block-in-inline-002.html": [ - "c5e44c901c6ceda32d9f4fd81b0dc5608e43f7e8", + "trailing-child-margin-001.html": [ + "7f13b8953d9949b6b9f25bfc33662406537a8f9c", [ null, [ @@ -142318,8 +145393,8 @@ {} ] ], - "block-in-inline-003.html": [ - "a276fde583903efe83545a6bb147ecf3f7bb3b28", + "trailing-child-margin-002.html": [ + "3011d23711459b6c21300e0e53d38180b987ec09", [ null, [ @@ -142331,8 +145406,8 @@ {} ] ], - "block-in-inline-004.html": [ - "338f4ad52ccb87ba5e164efda3a60cac82e9c82f", + "transform-000.html": [ + "7f8bfa8ca4a33ac9e87a7f7b83b26b791cede0fa", [ null, [ @@ -142344,10 +145419,10 @@ {} ] ], - "block-in-inline-008.html": [ - "013cb8447e4e824874e439a1e7b213eeb78d54f7", + "transform-001.html": [ + "37985dd3f0e633566751fe879915038d13b3967f", [ - "css/css-break/block-in-inline-008.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -142357,10 +145432,10 @@ {} ] ], - "block-in-inline-009.html": [ - "0acb317464f847405df6f8061f5c23fd66eebb2f", + "transform-002.html": [ + "10c62cd45c89c840f81e12ec96d6430eb50bed43", [ - "css/css-break/block-in-inline-009.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -142370,10 +145445,10 @@ {} ] ], - "block-in-inline-011.html": [ - "1906feffdd7d0a1f6301c3f7b89f250c5df21c1b", + "transform-003.html": [ + "1879bab38331cc40457e214878dcdc004db6ff89", [ - "css/css-break/block-in-inline-011.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -142383,9827 +145458,6582 @@ {} ] ], - "block-max-height-001.html": [ - "acb4316d13eee6d791e8c27e5e1b8ab2be03e0ac", + "transform-004.html": [ + "df7e92ac5d79edcf62dfb66c849990dfd6ec118b", [ null, [ [ - "/css/css-break/block-max-height-001-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "block-max-height-001b.html": [ - "e24cea67b3d6e37b57858ecf54599076412b7cfa", + "transform-005.html": [ + "83f674f8fd306027b305cf8092c28040ce836461", [ null, [ [ - "/css/css-break/block-max-height-001b-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "block-max-height-002.html": [ - "75aeb6229a90e62783852c2dcae1fe33d6ef6741", + "transform-006.html": [ + "eb0500318bfb9a75bdbab1b4d64d0c4770590850", [ null, [ [ - "/css/css-break/block-max-height-001-ref.html", + "/css/css-break/transform-006-ref.html", "==" ] ], {} ] ], - "block-max-height-002b.html": [ - "cf8cc98eb5835619645d00ab41c2de14e0f6c961", + "transform-007.html": [ + "22b8276f28b4bebb7d4a7279b4187eb3f3f439e2", [ null, [ [ - "/css/css-break/block-max-height-001b-ref.html", + "/css/css-break/transform-007-ref.html", "==" ] ], {} ] ], - "block-max-height-003.html": [ - "c58bad29cac96aadf8bb9b003edccc00a7618846", + "transform-008.html": [ + "b3b80d72d66587d58a4f4f1ebb7ecd2e478c10e6", [ null, [ [ - "/css/css-break/block-max-height-001-ref.html", + "/css/css-break/transform-008-ref.html", "==" ] ], {} ] ], - "block-max-height-003b.html": [ - "019c290d71529c4bf8eb9f83c24a81921918faae", + "transform-009.html": [ + "f0653f7976b97c7fe9a0cd57fc7725aa7573cf39", [ null, [ [ - "/css/css-break/block-max-height-001b-ref.html", + "/css/css-break/transform-009-ref.html", "==" ] ], {} ] ], - "block-max-height-004.html": [ - "4ceb23a80bf0beb9032ee7567e034e27360157b1", + "transform-012.html": [ + "4156aff6298fffe862fe109f4693124cda6ec5db", [ - "css/css-break/block-max-height-004.html", + null, [ [ - "/css/css-break/block-max-height-004-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "block-min-height-001.html": [ - "47ceff763195d254b22dd8739e1a46b0168df50f", + "transform-013.html": [ + "31cce10b52f38c4960d1d265e07fd1b363d20ae0", [ null, [ [ - "/css/css-break/block-min-height-001-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "block-min-height-001b.html": [ - "8ed26c5952646d78d43382ccd56b8cd94f5d2d0f", + "transform-014.html": [ + "16fc15d760d4afa95d7488d22e334f1cd809ef45", [ null, [ [ - "/css/css-break/block-min-height-001b-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-image-000.html": [ - "a588830310daa17b5dfe6035e899b731ca79e4f6", + "transform-015.html": [ + "676c291b6ef89e6d25e09447f624bc7889b34ac4", [ - "css/css-break/border-image-000.html", + null, [ [ - "/css/css-break/reference/border-image-000-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "borders-000.html": [ - "7c79f4c0d405bf8342987c6e66b759f6937b4485", + "transform-016.html": [ + "5a10d860c3feaa787db420b0fec4f5bfaaa6fa96", [ null, [ [ - "/css/css-break/borders-000-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "borders-001.html": [ - "2fa8c8c96fc65eaadbc1ea5fedeb6f0313aa8816", + "transform-017.html": [ + "b01e3ccee765916161302bbe3fe5040201ffc9c4", [ null, [ [ - "/css/css-break/borders-001-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "borders-002.html": [ - "b8bc3a4848b014d5ce293bd7f0a54a1765e2d96a", + "transform-018.html": [ + "dc9a791e6a8fdb025ceb4f43c1643617af1a5aab", [ null, [ [ - "/css/css-break/borders-002-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "borders-003.html": [ - "f3d9410d0cd4672add12d370de7aa059d787aa83", + "transform-019.html": [ + "758ff713ba273d417294293c9277eb33b209d8d9", [ null, [ [ - "/css/css-break/borders-003-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "borders-004.html": [ - "5ffca58757e879887babdaad18c27145c5ddb468", + "transform-020.html": [ + "e15df5f7342c79ef4759c8f744c0ac838ed69225", [ null, [ [ - "/css/css-break/borders-004-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "borders-005.html": [ - "a96c4e42eccc4e01f6608333809aafab3b6003a4", + "transform-021.html": [ + "c97ef30b7f5db59bf1975b68459a1226d6384c5d", [ null, [ [ - "/css/css-break/borders-005-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "borders-006.html": [ - "a2c59f7b99702e88d1326c5a6f56e582243e5606", + "truncated-margin-at-fragmentainer-end-001.html": [ + "cfb8590f9026194020afaea854f1d4d9fc570b49", [ null, [ [ - "/css/css-break/borders-006-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "borders-007.html": [ - "d7c5f0568ae59261b6051282c0119d52d7791430", + "truncated-margin-at-fragmentainer-end-002.html": [ + "1539927dc26b143fa725d1301f845568a13c63a1", [ null, [ [ - "/css/css-break/borders-007-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "box-decoration-break-clone-001.html": [ - "c247c9dbe09918fbf4e0f096687456fe859c1eb3", + "widows-001.html": [ + "d3b3af6ff06d1f469027d6d9183c3f2ce13cbaac", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-break/reference/widows-001-ref.html", "==" ] ], {} ] ], - "box-decoration-break-clone-002.html": [ - "8aff0d4a9472fe70df97f8c39a16700766db3e4d", + "widows-block-in-inline-001.html": [ + "8b5438bbc7251b597247617bac1063f4f32831e4", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-break/reference/widows-block-in-inline-001-ref.html", "==" ] ], {} ] ], - "box-decoration-break-clone-003.html": [ - "702f01b4cb31975ca270ff99df09a8422630ee59", + "widows-orphans-001.html": [ + "b21146d12e00d29d2f80c8a67a136cd9e8d3ee48", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-break/reference/widows-orphans-001-ref.html", "==" ] ], {} ] ], - "box-decoration-break-clone-004.html": [ - "d1840bfe96203496b1e31edf40c1b21f9d057636", + "widows-orphans-002.html": [ + "d13cc848ae78a71e2d202f6886f506c98d4ad629", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-break/reference/widows-orphans-001-ref.html", "==" ] ], {} ] ], - "box-shadow-001.html": [ - "d35aeb682dcfcc77c41f8b09642b3481a4b7f39d", + "widows-orphans-003.html": [ + "ed7bee47011583d1503b5c0e88b6adae076804ed", [ null, [ [ - "/css/css-break/box-shadow-001-ref.html", + "/css/css-break/reference/widows-orphans-001-ref.html", "==" ] ], {} ] ], - "box-shadow-002.html": [ - "d26bb8c72e34e6a30f86b20bb0f45cfcc1ff9b6e", + "widows-orphans-004.html": [ + "1507086efa0de8dcc73e9698745abaad32867596", [ null, [ [ - "/css/css-break/box-shadow-002-ref.html", + "/css/css-break/reference/widows-orphans-001-ref.html", "==" ] ], {} ] ], - "box-shadow-003.html": [ - "ba8fedfe1b7bab543d3c22b3ca1303869d2a2d1e", + "widows-orphans-006.html": [ + "39913266412df2a383b6fc091291333856e65c38", [ null, [ [ - "/css/css-break/box-shadow-003-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "box-shadow-004.html": [ - "bdf66fcddd34c86e12e81c99d0c203d6a880a080", + "widows-orphans-007.html": [ + "23809c8ffedf7c4702562a08adfbb23f2fd462fd", [ null, [ [ - "/css/css-break/box-shadow-004-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "br-clear-all.html": [ - "ac3a67ffd034ecb315c66da5682500dea47ee2d4", + "widows-orphans-008.html": [ + "02fdb1332b8cff6efe3d92316ff640bb8819d4bb", [ - "css/css-break/br-clear-all.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-break/reference/widows-orphans-008-ref.html", "==" ] ], {} ] ], - "break-at-end-container-edge-000.html": [ - "4836f399de4fc8af657ff7729215ee7e89054798", + "widows-orphans-009.html": [ + "8b71d5a73efb52d1c4fd3435bcc50f4e1da41032", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-break/reference/widows-orphans-009-ref.html", "==" ] ], {} ] ], - "break-at-end-container-edge-001.html": [ - "d6d3374bc77bd4a920cb33273b9e38b5e80293f0", + "widows-orphans-010.html": [ + "99a76921a2b1ec5582a93a83cb59af6bae09bc5b", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-break/reference/widows-orphans-010-ref.html", "==" ] ], {} ] ], - "break-at-end-container-edge-002.html": [ - "0002a558a1e0a2f5b9b53fb72f1045782f75bc0d", + "widows-orphans-011.html": [ + "c3741a977a74a345de08a1fde4f29a4ab8b72c65", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-break/reference/widows-orphans-011-ref.html", "==" ] ], {} ] ], - "break-at-end-container-edge-003.html": [ - "aafe3975ee0640532d624cfdd7b5d8feab34ab9a", + "widows-orphans-012.html": [ + "f24f8cbbf6d19755ab28e10d5b9ef0fac9748449", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-break/reference/widows-orphans-012-ref.html", "==" ] ], {} ] ], - "break-at-end-container-edge-004.html": [ - "c9d8b8fad5bf0ea4bb49fc65acc4a155dab62f25", + "widows-orphans-013.html": [ + "c9eae4375f701e61f21f4e08da9f272d7a58b2ef", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-break/reference/widows-orphans-013-ref.html", "==" ] ], {} ] ], - "break-between-avoid-000.html": [ - "4816be7ae7d5d2a0bc2ea736d8af6b91027b134d", + "widows-orphans-014.html": [ + "96cccecc8004ee4cca40ec21c1218464e8dd84ad", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-break/reference/widows-orphans-014-ref.html", "==" ] ], {} ] ], - "break-between-avoid-001.html": [ - "b26f04abaf4ae7bd27d635c719a8402106300690", + "widows-orphans-015.html": [ + "054490a785df0375de2522f6835c90c0a0afbd09", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-break/reference/widows-orphans-016-ref.html", "==" ] ], {} ] ], - "break-between-avoid-002.html": [ - "14fa2c3832adb9ffa3caf0270ea48a9107a0a93a", + "widows-orphans-016.html": [ + "e9597acab4702cb91804b96ba3dc926954966a3a", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-break/reference/widows-orphans-016-ref.html", "==" ] ], {} ] ], - "break-between-avoid-003.html": [ - "de738d145ff5919eccdcea3aa924be92c51f26d8", + "widows-orphans-017.html": [ + "2bc99b81889a733e3117e504ba3619be81df8fc4", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-break/reference/widows-orphans-017-ref.html", "==" ] ], {} ] ], - "break-between-avoid-004.html": [ - "71545b76c03bf07b6075b1e358ab1dc597621e47", + "widows-orphans-018.html": [ + "3ffd3dbddd8bc86fa422e73522c62c61996a92fd", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-break/reference/widows-orphans-009-ref.html", "==" ] ], {} ] ], - "break-between-avoid-005.html": [ - "f42110a6c4eda93a78227b65dd5ad2ea8b2e110e", + "widows-orphans-019.html": [ + "cf5ff7572c86779b2c85b86dd61e6de15e77872f", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "break-between-avoid-006.html": [ - "91e05b5a9287e076517175fb421a2f37da21b34e", + "will-change-filter.html": [ + "2970ddf37c18ad36312187ec2096285e63d0ad6e", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] - ], - "break-between-avoid-007.html": [ - "b39ea5e949520af0e61ba80f9febe7f71dbe62a6", + ] + }, + "css-cascade": { + "all-prop-001.html": [ + "9c07dfe1b8d6edc692826ad1435a7e467b8d9ddd", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-cascade/all-prop-001-ref.html", "==" ] ], {} ] ], - "break-between-avoid-008.html": [ - "5fae4e10cbc7783f7a3f65d6a1da4c65b9e66c36", + "all-prop-002.html": [ + "1e5b450ce1652ea4d0e77a517a63e3b8159ffddc", [ - "css/css-break/break-between-avoid-008.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-cascade/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "break-between-avoid-009.html": [ - "d2e84f210a5d1030588c9da5d45e467c934893e8", + "all-prop-inherit-color.html": [ + "6cd8425cb9c8c725134de3583a2dd0effcf417a4", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-cascade/reference/ref-green-text.html", "==" ] ], {} ] ], - "break-between-avoid-010.html": [ - "f07017a64cabdb74b5f8e6a619b896d93fd7585e", + "all-prop-initial-color.html": [ + "83a78bd08602ce9aa7cb8f681e9f3626fc3083b6", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-cascade/reference/ref-green-text.html", "==" ] ], {} ] ], - "break-between-avoid-011.html": [ - "201677a2eac31a2ba2218988b61e434831e523bf", + "all-prop-initial-visited.html": [ + "6fb7936652a77dade7d5e72032064b67d2886637", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-cascade/all-prop-initial-visited-ref.html", "==" ] ], {} ] ], - "break-between-avoid-012.html": [ - "e92f6a986434e9e4af42a13c097f3493a25bef13", + "all-prop-revert-color.html": [ + "786bd0810936ab7473ae27f79320a2119a53f1cc", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-cascade/reference/ref-green-text.html", "==" ] ], {} ] ], - "break-between-avoid-013.html": [ - "236b99e94eeca13930127066150968933030b531", + "all-prop-revert-visited.html": [ + "9df1277acab8e226c85b544597184cfe291e18ea", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-cascade/all-prop-revert-visited-ref.html", "==" ] ], {} ] ], - "break-between-avoid-014.html": [ - "91da7644835f5010ff0585f271930b9718e6ebc7", + "all-prop-unset-color.html": [ + "457901f84148be52335d3a7e36c8e943fa664068", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-cascade/reference/ref-green-text.html", "==" ] ], {} ] ], - "break-between-force-000.html": [ - "9bccf7395e5a83f52bd743cb6021577a85833b5e", + "all-prop-unset-visited.html": [ + "598d3f5edc1ea7d389a25e4765ab811ffe45cc7d", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-cascade/all-prop-unset-visited-ref.html", "==" ] ], {} ] ], - "break-between-force-001.html": [ - "8ea340b12230066cfedc0c21cf04551a13543e78", + "import-conditional-001.html": [ + "a841f265457a3f7bba741143d586e98f8e0354ef", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-cascade/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "break-between-force-002.html": [ - "7e3b79e4f1bcf06290d54961a8f330d47bebea1f", + "import-conditional-002.html": [ + "79e850a742bf685b9bea33e632ad8695b0d1f79c", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-cascade/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "break-float-dynamic-001.html": [ - "f849b148fb6f9253c6f32dda72116a8066c287f8", + "import-removal.html": [ + "6fb1ea345814f056baa8cb0a07ff2cc1e231d836", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "break-float-dynamic-002.html": [ - "93e30ff04eecd443d1abaa326980a1aaa70ca555", + "important-prop.html": [ + "e8abffdf883c180221d8a98b32a62b6109fbe261", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-cascade/important-prop-ref.html", "==" ] ], {} ] ], - "break-inside-avoid-min-block-size-1.html": [ - "733aae58d6fffb3af0739cfa503fa802ee3e7735", + "initial-background-color.html": [ + "80897e0ef2b4260c873eccba0752f2e0a1968b5b", [ null, [ [ - "/css/css-break/break-inside-avoid-min-block-size-1-ref.html", + "/css/css-cascade/reference/all-green.html", "==" ] ], {} ] ], - "break-inside-avoid-min-block-size-2.html": [ - "e7669d8ebe13ca5a7d161f9e27feb0dd26d6de09", + "initial-color-background-001.html": [ + "50e1384b0f2f485e8abe71f7e9f5dab5ad95c121", [ null, [ [ - "/css/css-break/break-inside-avoid-min-block-size-2-ref.html", + "/css/css-cascade/initial-color-background-001-ref.html", "==" ] ], {} ] ], - "break-overflowed-block-dynamic-001.html": [ - "9afdab1d8b4021261ad0ccf51f5d2d487afee830", + "layer-media-toggle.html": [ + "83a037a2bda9d04438428eb179e4eb11732f1a0b", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-cascade/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "change-block-background.html": [ - "48d33e39b467fab57e26628bd28de1915cc1ff9c", + "layer-slotted-rule.html": [ + "a33a5a6787a3f26d12079ac03c915797d65bd48a", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-cascade/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "change-break-after.html": [ - "752a84ae7b264cfc286f03003d5d068409c507bb", + "layer-stylesheet-sharing-important.html": [ + "7b3ff4abc6b5f8e4b5b457921ca73e9dda5fc622", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-cascade/layer-stylesheet-sharing-ref.html", "==" ] ], {} ] ], - "change-break-after2.html": [ - "b35a187a29cb84bbe56200a31b61bafb1cb20b40", + "layer-stylesheet-sharing.html": [ + "c172baaf8185b5ddcfb1f7231186d4008227c29f", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-cascade/layer-stylesheet-sharing-ref.html", "==" ] ], {} ] ], - "change-break-before.html": [ - "303a1fb00d691448ab238c9b52782a303af6056f", + "revert-layer-001.html": [ + "009867e751afcd1c58855bbe57ed6b1cc532102c", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-cascade/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "change-break-inside.html": [ - "e7b7047984a3c71b959bb81766bef79772a3da2e", + "revert-layer-002.html": [ + "38d3d33d9390a03d8e52438e7cfc6fe909f3f9d8", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-cascade/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "change-inline-color.html": [ - "9da2c8e8f85a28c3a7c93c5c974e55557c307c36", + "revert-layer-003.html": [ + "e4e331c82d92857eb538f6344f45cc05eb2ed910", [ null, [ [ - "/css/css-break/change-inline-color-ref.html", + "/css/css-cascade/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "class-c-breakpoint-after-float-000.html": [ - "46880977bbbb1bdf7837a25f11f4348d7c651032", + "revert-layer-004.html": [ + "b751359857a053073d38eb6f978c59e2c08f5f9c", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-cascade/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "class-c-breakpoint-after-float-001.html": [ - "be675ccf48727ac5851b7528497c7db05cf56aea", + "revert-layer-005.html": [ + "6cd4030727d85953c52e7a24809e38e00b301898", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-cascade/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "class-c-breakpoint-after-float-002.html": [ - "110b4e7e1af5f98caed40c6fc34d3154911bba6c", + "revert-layer-006.html": [ + "678c3e1e9bce6b18b2b56b634e728cb15aa550b3", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-cascade/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "class-c-breakpoint-after-float-003.html": [ - "0923e1ac9e344cfd2216a405c8c26b88d86e363e", + "revert-layer-007.html": [ + "7915beeafad13cb77df12056eacc91f0b1428e9f", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-cascade/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "class-c-breakpoint-after-float-004.html": [ - "30cdc56db7dc2d971326babc783cbf2b1288a85a", + "revert-layer-009.html": [ + "e5c8e62ae0a0464eb15bde96fa92a1e6f91b96ba", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-cascade/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "clearance-parallel-flow-001.html": [ - "f7acd7f4f087d4de36b6e64ee8a372d6f057306a", + "revert-layer-010.html": [ + "278905c6cf324729edb0ad89607bf8563b686be8", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-cascade/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "clearance-parallel-flow-002.html": [ - "a2367e0dde3d0ea563e304c80137a63623793f83", + "revert-layer-011.html": [ + "73a3772f80a3bab4980ae0ed1d65b3b1fe0c8727", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-cascade/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "clearance-self-collapsing-past-fragmented-float.html": [ - "14445edc463ed0ed1a8e629abdce768411cbc97d", + "revert-layer-012.html": [ + "e065defb53b5cc1d320ce511ccb59bca18e85a2e", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-cascade/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "clipping-001.html": [ - "da15ec7a2e383b34570130e24bf1707423dd12a1", + "revert-layer-013.html": [ + "862ee72746bb9085c3102e555a601e6220add639", [ - "css/css-break/clipping-001.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-cascade/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "clipping-002.html": [ - "e1f2c4e1c6bbe3b455c223c8c617f2f33237ccd8", + "revert-layer-014.html": [ + "6b968625628309959508d452e3b30d5b9a9799f0", [ - "css/css-break/clipping-002.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-cascade/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "contain-strict-with-opacity-and-oof.html": [ - "b3323a60c75247249f4494834bbf2b57dda172d4", + "revert-layer-015.html": [ + "a60f5d78f5e3640312ee562ccab9b57bc95ef2d3", [ - "css/css-break/contain-strict-with-opacity-and-oof.html", + null, [ [ - "/css/css-break/contain-strict-with-opacity-and-oof-ref.html", + "/css/css-cascade/revert-layer-015-ref.html", "==" ] ], {} ] ], - "fieldset-001.html": [ - "d320fe15bebcfbdd332ee9411b548dab60f8fba6", + "revert-val-001.html": [ + "b3d79d9e6909afc2a8fbd8a7e7ab4c5db6ebb3ab", [ null, [ [ - "/css/css-break/fieldset-001-ref.html", + "/css/css-cascade/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "fieldset-002.html": [ - "9331b81b11979d562da007dae98a7af0f8f184a4", + "revert-val-002.html": [ + "d145ea42b299a67e4056f38422cad733824e5a05", [ null, [ [ - "/css/css-break/fieldset-002-ref.html", + "/css/css-cascade/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "fieldset-003.html": [ - "dbf69a403481124f3b1022f1470c14eae789f888", + "scope-featureless.html": [ + "ca0b1f0217900cb43f162c1d200a13d26ebcbed8", [ null, [ [ - "/css/css-break/fieldset-003-ref.html", + "/css/css-cascade/scope-featureless-ref.html", "==" ] ], {} ] ], - "fieldset-004.html": [ - "4b49e6a594636a405d9f7037779e385cd0c73d9b", + "scope-part.html": [ + "6583db20c07068bf7a272012fdc0a4649c3b4016", [ - null, + "css/css-cascade/scope-part.html", [ [ - "/css/css-break/fieldset-004-ref.html", + "/css/css-cascade/scope-part-ref.html", "==" ] ], {} ] ], - "fieldset-005.html": [ - "814e4d33c57c4bc97aae0b328a041a4b66b660fb", + "scope-pseudo-element.html": [ + "29c446906092dc4bccec7fb4b21fb8b4a20b8f8f", [ - "css/css-break/fieldset-005.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-cascade/scope-pseudo-element-ref.html", "==" ] ], {} ] ], - "fieldset-006.html": [ - "b642a870e85d6234b9de48b8a93266be00fe1284", + "scope-shadow-sharing.html": [ + "e078721e0f5a07ab90a62495f0632644fb12d754", [ - "css/css-break/fieldset-006.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-cascade/scope-shadow-sharing-ref.html", "==" ] ], {} ] ], - "fieldset-007.html": [ - "37bd1ac2e58275e97a4f31f1b89a4ae50aea7ae9", + "scope-visited.html": [ + "392aeb667b201072ff1a70aec745f75019cff54b", [ - "css/css-break/fieldset-007.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-cascade/scope-visited-ref.html", "==" ] ], {} ] ], - "fieldset.html": [ - "fe76988293b8d1d9a6226b23bb9b40e86fcc007a", + "unset-val-001.html": [ + "857cb5d40dc40bfe800290fd6d4aa1c39c33ffd9", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-cascade/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "flexbox": { - "flex-container-fragmentation-001.html": [ - "2076de1e0b22f54eb24753baeb12e74b5e89feac", + "unset-val-002.html": [ + "61f941a038606ab4394041bd16c7a512f2746772", + [ + null, [ - "css/css-break/flexbox/flex-container-fragmentation-001.html", [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "flex-container-fragmentation-002.html": [ - "91ebe6d6cd8cf42b40be0a9db1a16c0a2a20d062", + "/css/css-cascade/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ] + }, + "css-color": { + "a98rgb-001.html": [ + "727a0aef7d83069ebf420fe551cde09fd2033dea", + [ + null, [ - "css/css-break/flexbox/flex-container-fragmentation-002.html", [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "flex-container-fragmentation-003.html": [ - "d1d192f9c19b0934d319149e142fdb037cfd0fd6", + "/css/css-color/greensquare-ref.html", + "==" + ] + ], + {} + ] + ], + "a98rgb-002.html": [ + "930c7692525430119ee5f9897006a3921c2edfa2", + [ + null, [ - "css/css-break/flexbox/flex-container-fragmentation-003.html", [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "flex-container-fragmentation-004.html": [ - "dffce5a19c6138d29614c4f98606d44896df708c", + "/css/css-color/blacksquare-ref.html", + "==" + ] + ], + {} + ] + ], + "a98rgb-003.html": [ + "f4ad2b7bd9bd04df12299b39abfc8e51184ee9c4", + [ + null, [ - "css/css-break/flexbox/flex-container-fragmentation-004.html", [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "flex-container-fragmentation-005.html": [ - "d8b1e30934227d16153be3a0083a87dba45e7c02", + "/css/css-color/a98rgb-003-ref.html", + "==" + ] + ], + {} + ] + ], + "a98rgb-004.html": [ + "24c476b7c75c042b9a92c72a57184fdf833e64df", + [ + null, [ - "css/css-break/flexbox/flex-container-fragmentation-005.html", [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "flex-container-fragmentation-006.html": [ - "171c981c24f73d2604ae179dc277167917cc1a5d", + "/css/css-color/a98rgb-004-ref.html", + "==" + ] + ], + {} + ] + ], + "animation": { + "opacity-animation-ending-correctly-001.html": [ + "1fb36cd366ff260f073c7de6d8062d9fceff5340", [ - "css/css-break/flexbox/flex-container-fragmentation-006.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-color/animation/opacity-animation-ending-correctly-001-ref.html", "==" ] ], {} ] ], - "flex-container-fragmentation-007.tentative.html": [ - "62bcf82bb782b4ce114ab10f322b71903423af32", + "opacity-animation-ending-correctly-002.html": [ + "7ba097fb105ab683d6a8a7484007821a13a75a62", [ - "css/css-break/flexbox/flex-container-fragmentation-007.tentative.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-color/animation/opacity-animation-ending-correctly-001-ref.html", "==" ] ], {} ] - ], - "flex-container-fragmentation-008.html": [ - "b9fd1aa2ff51e75b849203819e3561eb604221cc", + ] + }, + "at-color-profile-001.html": [ + "f2a971532c823dfe821a0eed1a9fe0e7a8631a71", + [ + null, [ - "css/css-break/flexbox/flex-container-fragmentation-008.html", [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "flex-container-fragmentation-009.html": [ - "f4032458c9974912b44c08e97f80d2479efca2d4", + "/css/css-color/greensquare-090-ref.html", + "==" + ] + ], + {} + ] + ], + "background-color-hsl-001.html": [ + "2b8c7d313c7ffe74ca62d8f1c177e9c66b73d998", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "flex-container-fragmentation-010.html": [ - "9a1f4026ec91da535bdc196907c1ec9171bc4883", + "/css/css-color/background-color-hsl-001-ref.html", + "==" + ] + ], + {} + ] + ], + "background-color-hsl-002.html": [ + "a1e9a0127e345270d107fc9724a84a101f425f84", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "flex-container-fragmentation-011.html": [ - "b4058558ff463714f74db1fc7ffadda50dd07b9b", + "/css/css-color/background-color-hsl-002-ref.html", + "==" + ] + ], + {} + ] + ], + "background-color-hsl-003.html": [ + "f9c256e1773d5b3e98557f61cce22959025af680", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "flex-fragmented-with-float-descendant-001.html": [ - "f4cb7a842435fa820cc7bfbd4708709d9b2578d9", + "/css/css-color/background-color-hsl-003-ref.html", + "==" + ] + ], + {} + ] + ], + "background-color-hsl-004.html": [ + "1cd6684c710343f6ee967c2fe2bcc561a0efd5eb", + [ + null, [ - "css/css-break/flexbox/flex-fragmented-with-float-descendant-001.html", [ - [ - "/css/css-break/flexbox/flex-fragmented-with-float-descendant-001-ref.html", - "==" - ] - ], - {} - ] - ], - "flex-item-content-overflow-001a.html": [ - "0b8074e03b9958a0fb049cd70a3e551e0f2305a0", + "/css/css-color/background-color-hsl-004-ref.html", + "==" + ] + ], + {} + ] + ], + "background-color-rgb-001.html": [ + "061eeac2fac9b38389c3b60e8203f789187927e0", + [ + null, [ - "css/css-break/flexbox/flex-item-content-overflow-001a.html", [ - [ - "/css/css-break/flexbox/flex-item-content-overflow-001-ref.html", - "==" - ] - ], - {} - ] - ], - "flex-item-content-overflow-001b.html": [ - "50f958614ce845e99a67f94899bcaa01cea31d85", + "/css/css-color/background-color-rgb-001-ref.html", + "==" + ] + ], + {} + ] + ], + "background-color-rgb-002.html": [ + "8919f0ea3e49ebada41217e16e8b87ed7556798d", + [ + null, [ - "css/css-break/flexbox/flex-item-content-overflow-001b.html", [ - [ - "/css/css-break/flexbox/flex-item-content-overflow-001-ref.html", - "==" - ] - ], - {} - ] - ], - "flex-item-content-overflow-002a.html": [ - "18e659dd3e292ebc13a73aba5e0f88d5126436e2", + "/css/css-color/background-color-rgb-002-ref.html", + "==" + ] + ], + {} + ] + ], + "background-color-rgb-003.html": [ + "6a22ba0dbbbb0323a291a7b31b55d641448714e5", + [ + null, [ - "css/css-break/flexbox/flex-item-content-overflow-002a.html", [ - [ - "/css/css-break/flexbox/flex-item-content-overflow-001-ref.html", - "==" - ] - ], - {} - ] - ], - "flex-item-content-overflow-002b.html": [ - "af985b2aa2ea1953d50d237cc30d14afed16aa26", + "/css/css-color/background-color-rgb-003-ref.html", + "==" + ] + ], + {} + ] + ], + "body-opacity-0-to-1-stacking-context.html": [ + "c2cd4d550472defab2facbe25c87f0321858c1f5", + [ + null, [ - "css/css-break/flexbox/flex-item-content-overflow-002b.html", [ - [ - "/css/css-break/flexbox/flex-item-content-overflow-001-ref.html", - "==" - ] - ], - {} - ] - ], - "flex-item-content-overflow-003.html": [ - "d3a5b976ccd3fa0dc972b7b61b4a37ba9365e442", + "/css/css-color/greensquare-ref.html", + "==" + ] + ], + {} + ] + ], + "border-bottom-color.xht": [ + "994bb4e904ccc28fb54865031ffe55c7ec50bac2", + [ + null, [ - "css/css-break/flexbox/flex-item-content-overflow-003.html", [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "increase-fragmentainer-size-flex-item-trailing-margin.html": [ - "94845449fbf185b2004cc532ecb401eab4e4221d", + "/css/css-color/border-color-ref.xht", + "==" + ] + ], + {} + ] + ], + "border-color-currentcolor.html": [ + "525a89e312dfaa76b165b7583c980933e7e73163", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "monolithic-overflow-001.tentative.html": [ - "1171485181359f84e0f25ecda21b9655f5e0493a", + "/css/css-color/border-color-currentcolor-ref.html", + "==" + ] + ], + {} + ] + ], + "border-left-color.xht": [ + "3214f2d8143cda12ecdcf8df00016e678cf2de52", + [ + null, [ - "css/css-break/flexbox/monolithic-overflow-001.tentative.html", [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "monolithic-overflow-002.tentative.html": [ - "298f749a8d727784a4c452d4de02a661aecbe6bf", + "/css/css-color/border-color-ref.xht", + "==" + ] + ], + {} + ] + ], + "border-right-color.xht": [ + "70f7721c22d266f0854eba6f7edeeb05364e8b45", + [ + null, [ - "css/css-break/flexbox/monolithic-overflow-002.tentative.html", [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "monolithic-overflow-003.tentative.html": [ - "ed223e809fb7e36e830dd83eafec350b8d4ae577", + "/css/css-color/border-color-ref.xht", + "==" + ] + ], + {} + ] + ], + "border-top-color.xht": [ + "706da7e3c8d81bcc3771b35a62721b6a86d2975e", + [ + null, [ - "css/css-break/flexbox/monolithic-overflow-003.tentative.html", [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "monolithic-overflow-004.tentative.html": [ - "ed7fea725c6261e4d34cc0e9686c315e6ab7464b", + "/css/css-color/border-color-ref.xht", + "==" + ] + ], + {} + ] + ], + "canvas-change-opacity.html": [ + "1c1ea718bfd49dc70b32d22f3411145cf33237ae", + [ + null, [ - "css/css-break/flexbox/monolithic-overflow-004.tentative.html", [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-column-flex-fragmentation-001.html": [ - "9f064d4ae40ea9e98f0b1a18c5b8fc143bbb6027", + "/css/css-color/greensquare-ref.html", + "==" + ] + ], + {} + ] + ], + "clip-opacity-out-of-flow.html": [ + "2ad019380642acb4e002bc4bce1a86d547e84ea3", + [ + null, [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-column-flex-fragmentation-002.html": [ - "ea8190173f361baca5d89cd36f409c79f403c566", - [ - null, [ + "/css/css-color/clip-opacity-out-of-flow-ref.html", + "==" + ] + ], + { + "fuzzy": [ [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" + null, + [ + [ + 0, + 1 + ], + [ + 0, + 60000 + ] + ] ] - ], - {} - ] - ], - "multi-line-column-flex-fragmentation-003.html": [ - "eb00937ea41e54978f2be986945b9312e9d5a376", + ] + } + ] + ], + "color-001.html": [ + "580307ba0736edc113f594f2ae0dfe039d4f7a8d", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-column-flex-fragmentation-004.html": [ - "71e29df7f3d9c0a9ea95db15093ce909b5f3cf34", + "/css/css-color/greentext-ref.html", + "==" + ] + ], + {} + ] + ], + "color-002.html": [ + "7d2f5b318e6e885d54cf3fa1c1b21e53f48b4bac", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-column-flex-fragmentation-005.html": [ - "a713943ee719ae5da35e202199efa0f2f32acf34", + "/css/css-color/blacktext-ref.html", + "==" + ] + ], + {} + ] + ], + "color-003.html": [ + "c9ed7c773ba0f29753176479c35ef6d1bb801bed", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-column-flex-fragmentation-006.html": [ - "f3936040bb4b03ed1162bf1f18ed030aaa0cd7eb", + "/css/css-color/greentext-ref.html", + "==" + ] + ], + {} + ] + ], + "color-layers-no-blend-mode.html": [ + "2ee8d46c6376a331b157cbe84c4c435a65787aae", + [ + "css/css-color/color-layers-no-blend-mode.html", [ - null, [ + "/css/css-color/color-layers-no-blend-mode-ref.html", + "==" + ] + ], + { + "fuzzy": [ [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" + null, + [ + [ + 0, + 3 + ], + [ + 0, + 127500 + ] + ] ] - ], - {} - ] - ], - "multi-line-column-flex-fragmentation-007.html": [ - "e5602f0bb6020054a60c0bacc62d66abcd5ea916", + ] + } + ] + ], + "color-mix-basic-001.html": [ + "c69a292159003c578918bd1be9e495c6cbdb094e", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-column-flex-fragmentation-008.html": [ - "9d4f0a6f615f7ca18c55217100198d1661909f76", + "/css/css-color/color-mix-basic-001-ref.html", + "==" + ] + ], + {} + ] + ], + "color-mix-currentcolor-001.html": [ + "0f502d22ec85e45664280c356ee1c06c8e742fab", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-column-flex-fragmentation-009.html": [ - "8e4ae4e19615a340d8963e214f1137077dba4069", + "/css/css-color/color-mix-currentcolor-001-ref.html", + "==" + ] + ], + {} + ] + ], + "color-mix-currentcolor-002.html": [ + "fb050688379c8709af9b1d6dca324731e71fc246", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-column-flex-fragmentation-010.html": [ - "98008eec4e38da034acc01231c67b7b4ac98a38b", + "/css/css-color/color-mix-currentcolor-002-ref.html", + "==" + ] + ], + {} + ] + ], + "color-mix-currentcolor-003.html": [ + "7d9b110aeb1685f3011f6a819935a550cde13f0b", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-column-flex-fragmentation-011.html": [ - "c3fbd41fcaafb10d089a01d90bb25c7946afd0a9", + "/css/css-color/color-mix-currentcolor-003-ref.html", + "==" + ] + ], + {} + ] + ], + "color-mix-currentcolor-nested-for-color-property.html": [ + "ddcce29e7483066a65daa07dc1f76ed64a7d2f7f", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-column-flex-fragmentation-012.html": [ - "7552a741857a07e94878e495da1118438725110e", + "/css/css-color/color-mix-currentcolor-nested-for-color-property-ref.html", + "==" + ] + ], + {} + ] + ], + "color-mix-currentcolor-visited.html": [ + "28db2d6736fe3b5e4b012c758a5b2e1a42bbf674", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-column-flex-fragmentation-013.html": [ - "ed739947e3d754b2f331d3a9a3dae6f327f559f4", + "/css/css-color/color-mix-currentcolor-visited-ref.html", + "==" + ] + ], + {} + ] + ], + "color-mix-non-srgb-001.html": [ + "550a919d241f805a24704015f3b50ac8a84064f3", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-column-flex-fragmentation-014.html": [ - "bcc32dd9ba9a10fb71ac2ea51a78c6d983993d09", + "/css/css-color/color-mix-non-srgb-001-ref.html", + "==" + ] + ], + {} + ] + ], + "color-mix-percents-01.html": [ + "425ef9a63621ef635fc3e800ee92a59dd32978d0", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-column-flex-fragmentation-015.html": [ - "563f3663c38259aea6e245c53e24077f6e6d45ef", + "/css/css-color/color-mix-percents-01-ref.html", + "==" + ] + ], + {} + ] + ], + "color-mix-percents-02.html": [ + "27939f510910e2dd8d976b80eca9b88df2d2a672", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-column-flex-fragmentation-016.html": [ - "e81ad10e037e4bc4208bfdf3eae72ea9b98b8adc", + "/css/css-color/color-mix-percents-01-ref.html", + "==" + ] + ], + {} + ] + ], + "composited-filters-under-opacity.html": [ + "f613748af3ac5bb59c9fa207937ae6207d71062e", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-column-flex-fragmentation-017.html": [ - "070b0d6e854f631743fb77522b0fc5d4ea2ac72e", + "/css/css-color/composited-filters-under-opacity-ref.html", + "==" + ] + ], + {} + ] + ], + "currentcolor-001.html": [ + "e08129ee52272c1ef3d98cecd3f2890f39cca98d", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-column-flex-fragmentation-018.html": [ - "a491dfac810a6a4e4dc4ee9668b5e55b90e87e54", + "/css/css-color/greensquare-ref.html", + "==" + ] + ], + {} + ] + ], + "currentcolor-002.html": [ + "aa5d736c688d45d340e0947f13c7a895ea312643", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-column-flex-fragmentation-019.html": [ - "414326a5815a6a34bcaf04ff274ec8d331c17c99", + "/css/css-color/greensquare-ref.html", + "==" + ] + ], + {} + ] + ], + "currentcolor-003.html": [ + "d3ad9c4c15dd0ef58ae303c60cf6106b43c3a617", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-column-flex-fragmentation-020.html": [ - "18030dd0025679163fb9103918bb99aadf75ff17", + "/css/css-color/currentcolor-003-ref.html", + "==" + ] + ], + {} + ] + ], + "currentcolor-004.html": [ + "06a429071ab7dac4f8583ba17a41d73f6d637e3d", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-column-flex-fragmentation-021.html": [ - "833da1afce4d57a9c0644d962d3e7b014c93a93b", + "/css/css-color/currentcolor-004-ref.html", + "==" + ] + ], + {} + ] + ], + "currentcolor-visited-fallback.html": [ + "a83506b5e581ac28a4864b47426e30d796f6d3d8", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-column-flex-fragmentation-022.html": [ - "60f543b5d12e466352feb63467a9f16c16b3e75b", + "/css/css-color/currentcolor-visited-fallback-ref.html", + "==" + ] + ], + {} + ] + ], + "deprecated-sameas-001.html": [ + "b03af9eb29fb6f4e23a036a927dd35bbf12bf112", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-column-flex-fragmentation-023.html": [ - "626d2679ea4063ae4135dcb63034eeb22e4e7a97", + "/css/css-color/deprecated-sameas-ButtonBorder-ref.html", + "==" + ] + ], + {} + ] + ], + "deprecated-sameas-002.html": [ + "873b32025137003110216dbeab02696e3bbb1732", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-column-flex-fragmentation-024.html": [ - "4cd53adf6d5e4117ea1c327bd569855f8ee7980b", + "/css/css-color/deprecated-sameas-Canvas-ref.html", + "==" + ] + ], + {} + ] + ], + "deprecated-sameas-003.html": [ + "b0a5466e8f6aab82168f9eacbacbc0263f3a6bf8", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-column-flex-fragmentation-025.html": [ - "93dd9b4a6211a9dc0688cd6b1bd17658d4a5ed1f", + "/css/css-color/deprecated-sameas-Canvas-ref.html", + "==" + ] + ], + {} + ] + ], + "deprecated-sameas-004.html": [ + "8be2be1eb7f733eb73f9943e06a2490ce7bc90f3", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-column-flex-fragmentation-026.html": [ - "204cc15a2d514fc1c081dcdbaa29de9f8650d69b", + "/css/css-color/deprecated-sameas-Canvas-ref.html", + "==" + ] + ], + {} + ] + ], + "deprecated-sameas-005.html": [ + "8ed192f2b63c163964c51520117dd956ea17a750", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-column-flex-fragmentation-027.html": [ - "95b73907b860320a6859e77095d3f1519f6fc4d5", + "/css/css-color/deprecated-sameas-ButtonFace-ref.html", + "==" + ] + ], + {} + ] + ], + "deprecated-sameas-006.html": [ + "1a1a4776ef68130ecd96b945303ddec2723e6448", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-column-flex-fragmentation-028.html": [ - "d96cd56d6924c315d30094bef6805dd5c46b983a", + "/css/css-color/deprecated-sameas-ButtonFace-ref.html", + "==" + ] + ], + {} + ] + ], + "deprecated-sameas-007.html": [ + "b10783723dde047a52e9bea78b631da697ba153a", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-column-flex-fragmentation-029.html": [ - "ec47c9f3af5c6ca997592a4d03b6796c860534d4", + "/css/css-color/deprecated-sameas-CanvasText-ref.html", + "==" + ] + ], + {} + ] + ], + "deprecated-sameas-008.html": [ + "e8ffb845741bf86d9ac7e4045e558495c34c3b2e", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-column-flex-fragmentation-030.html": [ - "443984588b1d9f65cf2fbadf834db984fb8a93cc", + "/css/css-color/deprecated-sameas-ButtonBorder-ref.html", + "==" + ] + ], + {} + ] + ], + "deprecated-sameas-009.html": [ + "4940e6de677f1d19dabffcaf2922ea98c29c8301", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-column-flex-fragmentation-031.html": [ - "fc88e70a9cd1f790759f772ee10d791c25cddc99", + "/css/css-color/deprecated-sameas-Canvas-ref.html", + "==" + ] + ], + {} + ] + ], + "deprecated-sameas-010.html": [ + "53e2588f9b8829da858a3da3eece5f4e4b2758e0", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-column-flex-fragmentation-032.html": [ - "978dbd1fa2f8e0e17e6abbbfbf0c7f0a0c1225a1", + "/css/css-color/deprecated-sameas-GrayText-ref.html", + "==" + ] + ], + {} + ] + ], + "deprecated-sameas-011.html": [ + "3a15d0150103a9130197b3b0715133c51616acab", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-column-flex-fragmentation-033.html": [ - "5e511bdf5534ea0e4426ed9800220ebb7924727c", + "/css/css-color/deprecated-sameas-Canvas-ref.html", + "==" + ] + ], + {} + ] + ], + "deprecated-sameas-012.html": [ + "14d7ebf83449a4349162fb0d644eafd448651382", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-column-flex-fragmentation-034.html": [ - "0a2e0367f22533d2fd46ad27b243936c735fb856", + "/css/css-color/deprecated-sameas-CanvasText-ref.html", + "==" + ] + ], + {} + ] + ], + "deprecated-sameas-013.html": [ + "374ab4775a079445299ca16f7ac8df211f518e40", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-column-flex-fragmentation-035.html": [ - "c26d055c34b2528f66fa0f868c264d118557c9e1", + "/css/css-color/deprecated-sameas-Canvas-ref.html", + "==" + ] + ], + {} + ] + ], + "deprecated-sameas-014.html": [ + "3ee9a8e088dcbfd5b3ccf3c38de807c98646c7a1", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-column-flex-fragmentation-036.tentative.html": [ - "7c6a55feee61de73e64e87020243840e6bba341f", + "/css/css-color/deprecated-sameas-CanvasText-ref.html", + "==" + ] + ], + {} + ] + ], + "deprecated-sameas-015.html": [ + "71aba26527aa4ce8fbc858ffa7f8748af2b48303", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-column-flex-fragmentation-037.html": [ - "5fd1fa283bca402e250fc6a2dd5a7b30db96ca01", + "/css/css-color/deprecated-sameas-Canvas-ref.html", + "==" + ] + ], + {} + ] + ], + "deprecated-sameas-016.html": [ + "3a1e9cbf1f21c61351a0944fcb3bc4595fc3bc60", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-column-flex-fragmentation-038.html": [ - "c970d4a69b8f3ed5e9c4ee58a91c587fc084920b", + "/css/css-color/deprecated-sameas-ButtonBorder-ref.html", + "==" + ] + ], + {} + ] + ], + "deprecated-sameas-017.html": [ + "eed5571ff254398511edf03e9c7de7a2e01b0307", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-column-flex-fragmentation-039.html": [ - "30c8983d20f50cd3664d70433c8f746d22deb8d3", + "/css/css-color/deprecated-sameas-ButtonFace-ref.html", + "==" + ] + ], + {} + ] + ], + "deprecated-sameas-018.html": [ + "11e3e3a1bd62c0c97ab40802e21f1e30c2520ae8", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-column-flex-fragmentation-040.html": [ - "ce99ab6889e5403aa834fc5c07ab5aa9b04d7a58", + "/css/css-color/deprecated-sameas-ButtonBorder-ref.html", + "==" + ] + ], + {} + ] + ], + "deprecated-sameas-019.html": [ + "c99239e2ef3165d439477defa50e40d4e6f6a972", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-column-flex-fragmentation-041.html": [ - "e81a37429d8160c1c792d039a4c578eb1a3f7053", + "/css/css-color/deprecated-sameas-ButtonBorder-ref.html", + "==" + ] + ], + {} + ] + ], + "deprecated-sameas-020.html": [ + "85dc1261d3764f8ee199a7458eb420dceecf574d", + [ + null, [ - null, [ - [ - "/css/css-break/flexbox/multi-line-column-flex-fragmentation-041-ref.html", - "==" - ] - ], - {} - ] - ], - "multi-line-column-flex-fragmentation-042.html": [ - "90c93834e2e68b031e8aaba40f8696d69c4ab4cf", + "/css/css-color/deprecated-sameas-ButtonBorder-ref.html", + "==" + ] + ], + {} + ] + ], + "deprecated-sameas-021.html": [ + "ce3de2f3b55338f048bc55aa36c23d90c05571eb", + [ + null, [ - null, [ - [ - "/css/css-break/flexbox/multi-line-column-flex-fragmentation-042-ref.html", - "==" - ] - ], - {} - ] - ], - "multi-line-column-flex-fragmentation-043.html": [ - "37b306913686f210a800756541e4c1494b1be484", + "/css/css-color/deprecated-sameas-Canvas-ref.html", + "==" + ] + ], + {} + ] + ], + "deprecated-sameas-022.html": [ + "c873dc2d1084f40e2918d3f6301eab615d60988f", + [ + null, [ - null, [ - [ - "/css/css-break/flexbox/multi-line-column-flex-fragmentation-043-ref.html", - "==" - ] - ], - {} - ] - ], - "multi-line-column-flex-fragmentation-044.html": [ - "676cb28c818ee552f16f96efb60a9155695737c5", + "/css/css-color/deprecated-sameas-ButtonBorder-ref.html", + "==" + ] + ], + {} + ] + ], + "deprecated-sameas-023.html": [ + "a074329c628c09e5f8520ef5bfa0c4539d439913", + [ + null, [ - null, [ - [ - "/css/css-break/flexbox/multi-line-column-flex-fragmentation-044-ref.html", - "==" - ] - ], - {} - ] - ], - "multi-line-column-flex-fragmentation-045.html": [ - "b445a15113ca3aa74036a95a6e6e49bed2ca95fa", + "/css/css-color/deprecated-sameas-CanvasText-ref.html", + "==" + ] + ], + {} + ] + ], + "display-p3-001.html": [ + "74fe34a7ca918c35d8d7453ef18f73c0e82b31c0", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-column-flex-fragmentation-046.html": [ - "f009b1a3e796f73f9d3472b6c79bc291b15a437c", + "/css/css-color/greensquare-ref.html", + "==" + ] + ], + {} + ] + ], + "display-p3-002.html": [ + "6a930298d69fa284fa2d2fdc22f85ac1f9e80cf3", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-column-flex-fragmentation-047.html": [ - "a09eaea6b5ca6ce59ee26678d08227f208f170e7", + "/css/css-color/blacksquare-ref.html", + "==" + ] + ], + {} + ] + ], + "display-p3-003.html": [ + "122c0f0a13946dc8e3cebb3ae4862f233e3936ec", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-column-flex-fragmentation-048.html": [ - "82800413950cb29fa1ba2be1f6fc90f82a1631a3", + "/css/css-color/whitesquare-ref.html", + "==" + ] + ], + {} + ] + ], + "display-p3-004.html": [ + "8b0999adbe5415aae9015425242bf0e39c353cce", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-column-flex-fragmentation-049.html": [ - "ae683e938c29a6a8224e506d789284c79ab1ea69", + "/css/css-color/display-p3-004-ref.html", + "==" + ] + ], + {} + ] + ], + "display-p3-005.html": [ + "db255dc60cdb199ec16f650674d59b4ab43e529e", + [ + null, [ - "css/css-break/flexbox/multi-line-column-flex-fragmentation-049.html", [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-column-flex-fragmentation-050.html": [ - "b0467d5b80501113d638d3262f994a9b95e13020", + "/css/css-color/yellowsquare-ref.html", + "==" + ] + ], + {} + ] + ], + "display-p3-006.html": [ + "0285af8ba2aa478795d1bca862c1198a1667ce65", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-column-flex-fragmentation-051.html": [ - "f886bcc7bee0ff742e559f698b60aba8c5cdf165", + "/css/css-color/mossgreensquare-ref.html", + "==" + ] + ], + {} + ] + ], + "filters-under-will-change-opacity.html": [ + "feb5355f8bcdc76502b554858df782632a7a319f", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-column-flex-fragmentation-052.html": [ - "9496418e857391718041d52ad19c2b9545068877", + "/css/css-color/composited-filters-under-opacity-ref.html", + "==" + ] + ], + {} + ] + ], + "hex-001.html": [ + "0c90f877874316689e55623a69b1776646bef12d", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-column-flex-fragmentation-053.html": [ - "aa1f1debce968a181563154c9c7f83adfef64eed", + "/css/css-color/greensquare-ref.html", + "==" + ] + ], + {} + ] + ], + "hex-002.html": [ + "ee3f5a45eec5f30d1b408ccbb53380e9110c268f", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-row-flex-fragmentation-001.html": [ - "ba6b0103e447994a2778cbd9ea356a490f62b8fb", + "/css/css-color/greensquare-ref.html", + "==" + ] + ], + {} + ] + ], + "hex-003.html": [ + "2ee4ec61e5df8a91c48fb656280bc88e5a54702c", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-row-flex-fragmentation-002.html": [ - "62c1e313bfe3cc3d0908a2e1031322818601e7c2", + "/css/css-color/hex-003-ref.html", + "==" + ] + ], + {} + ] + ], + "hex-004.html": [ + "39e12ffee1ee9185396e5a8afc3b7c5bcd38eba7", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-row-flex-fragmentation-003.html": [ - "4d1b7e1c7d8d3faa4e4cb273935c66c6e35afd85", + "/css/css-color/hex-003-ref.html", + "==" + ] + ], + {} + ] + ], + "hsl-001.html": [ + "a71ce6bad650dd6ee5d57c7c08eba1eeab873815", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-row-flex-fragmentation-004.html": [ - "a00469746efa83d89268c2ca415b6e00a89acfb4", + "/css/css-color/greensquare-ref.html", + "==" + ] + ], + {} + ] + ], + "hsl-002.html": [ + "fae6126fdc7153a2947f2cc9347f7beeeef4aa9c", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-row-flex-fragmentation-005.html": [ - "d1e4f97c27d3db3f25cd8016842bcbc4d6eafbf3", + "/css/css-color/greensquare-ref.html", + "==" + ] + ], + {} + ] + ], + "hsl-003.html": [ + "e175e2a2ffdb7e2228528eff6cbaf944d24e021a", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-row-flex-fragmentation-006.html": [ - "1b93be60e3c3ae56a620fc7f8afafbed5ebd2405", + "/css/css-color/greensquare-ref.html", + "==" + ] + ], + {} + ] + ], + "hsl-004.html": [ + "2af529158e0ef84a6dc5c236e54b3207c7e63786", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-row-flex-fragmentation-007.html": [ - "968f3dd2d836e092c5f34d638734fb0fe9737b2f", + "/css/css-color/greensquare-ref.html", + "==" + ] + ], + {} + ] + ], + "hsl-005.html": [ + "7dc793595b7f2e641c7e120e5b6cf147299e75b9", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-row-flex-fragmentation-008.html": [ - "1f0abea62907bc11195fa3ab6458828415b8631c", + "/css/css-color/greensquare-ref.html", + "==" + ] + ], + {} + ] + ], + "hsl-006.html": [ + "348a8a80c6c777c3563b9ddac92ad696ace9406c", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-row-flex-fragmentation-009.html": [ - "b9283be27b640c59ce21db71aea61106db39457e", + "/css/css-color/greensquare-ref.html", + "==" + ] + ], + {} + ] + ], + "hsl-007.html": [ + "9e1bc08add141969b258495b14d0815a2e9c712c", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-row-flex-fragmentation-010.html": [ - "18cd9d7ee7575fd2791c65580ac2a613aa7951da", + "/css/css-color/greensquare-ref.html", + "==" + ] + ], + {} + ] + ], + "hsl-008.html": [ + "1024a1f83c9696f16f002dabc54d45a413e9caea", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-row-flex-fragmentation-011.html": [ - "e2e3624c0e3a4efc5105e085a6213a704aa45340", + "/css/css-color/greensquare-ref.html", + "==" + ] + ], + {} + ] + ], + "hsl-clamp-negative-saturation.html": [ + "25b54c2e2cb5a1b8debcfa150fbae1f1f65fa2fa", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-row-flex-fragmentation-012.html": [ - "bb5af266103311a1ada217590f534baab3b1b99b", + "/css/css-color/hsl-clamp-negative-saturation-ref.html", + "==" + ] + ], + {} + ] + ], + "hsla-001.html": [ + "c3b2633a0a9af9814818f9e671c9f5c7db978524", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-row-flex-fragmentation-013.html": [ - "f85ac0be872dbe7bd4fc6a104bf8fed8e74f1915", + "/css/css-color/greensquare-ref.html", + "==" + ] + ], + {} + ] + ], + "hsla-002.html": [ + "a51c5f2b96b260341e57e18dcfa370e222ae3d79", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-row-flex-fragmentation-014.html": [ - "ac48296e8874a0ed952d50737e0e2504883d3620", + "/css/css-color/greensquare-ref.html", + "==" + ] + ], + {} + ] + ], + "hsla-003.html": [ + "c9845934364a0aadf325fe6cc8f0a48e485e8e9c", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-row-flex-fragmentation-016.html": [ - "f723663ac8d56c56e5fc632f1de4b9a3c97b4262", + "/css/css-color/greensquare-ref.html", + "==" + ] + ], + {} + ] + ], + "hsla-004.html": [ + "aa095cafa552fb4a3caae6a369fe8f00edbe0b3d", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-row-flex-fragmentation-017.html": [ - "037f55baceded3f688d610de7520acac221c85d1", + "/css/css-color/greensquare-ref.html", + "==" + ] + ], + {} + ] + ], + "hsla-005.html": [ + "ab88515c57b33bb7bec472871304dbca80a3cd64", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-row-flex-fragmentation-018.html": [ - "f12e6519a756c57f421724bc66f1e8d073553bc5", + "/css/css-color/greensquare-ref.html", + "==" + ] + ], + {} + ] + ], + "hsla-006.html": [ + "f9a93cd2c4ee1dbe9e1da3b506e85885f1909b5e", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-row-flex-fragmentation-019.html": [ - "3c85a703f99f6ea3f4113d6550cd4ac56a3401d7", + "/css/css-color/greensquare-ref.html", + "==" + ] + ], + {} + ] + ], + "hsla-007.html": [ + "8c583fcda019c89916184f0b8899b0a01e30af0b", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-row-flex-fragmentation-020.html": [ - "334e53468e08aa0e87478774c6a9f5f6166ea2b2", + "/css/css-color/greensquare-ref.html", + "==" + ] + ], + {} + ] + ], + "hsla-008.html": [ + "e5aaa243736fdc9e1edf3c976902dedefeb1f99e", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-row-flex-fragmentation-021.html": [ - "74890bea9138834d67add4b4782839b2791be25c", + "/css/css-color/greensquare-ref.html", + "==" + ] + ], + {} + ] + ], + "hsla-clamp-negative-saturation.html": [ + "239151efe3a5cf2a3ffd88c533120e1eca3d2504", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-row-flex-fragmentation-022.html": [ - "2122609a0ec2306e74489a9d2d84447545f76c6d", + "/css/css-color/hsla-clamp-negative-saturation-ref.html", + "==" + ] + ], + {} + ] + ], + "hwb-001.html": [ + "d1dce30c8ef85e0d5e536f261ad872185ac0e5f0", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-row-flex-fragmentation-023.html": [ - "32f7d31c18a093d5fee3516151fad5ef8ff91cf8", + "/css/css-color/greensquare-ref.html", + "==" + ] + ], + {} + ] + ], + "hwb-002.html": [ + "1850c999b5069b7f36192d705ba46b7f4da88e8a", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-row-flex-fragmentation-024.html": [ - "372b3e170d20411398e1fa6ac538d0d68f9728eb", + "/css/css-color/blacksquare-ref.html", + "==" + ] + ], + {} + ] + ], + "hwb-003.html": [ + "f56a68a5dcefa29bf7d6a5849804a98e40694da4", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-row-flex-fragmentation-025.html": [ - "8ea8803651b02fef3a546525cb38a6f9fe4d4a8e", + "/css/css-color/hwb-003-ref.html", + "==" + ] + ], + {} + ] + ], + "hwb-004.html": [ + "31b1dc5ad522ff376b8e9ab8b281370aa7ab4ee2", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-row-flex-fragmentation-026.html": [ - "b83375e249eb30285c211a5fb17f52bb7ffda8dd", + "/css/css-color/hwb-004-ref.html", + "==" + ] + ], + {} + ] + ], + "hwb-005.html": [ + "e3603e9a9019e2dd5c4d693a934418d257e0f5f7", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-row-flex-fragmentation-027.html": [ - "45e4a1452ff22f23de9d62e8bc7fbdd4208827f7", + "/css/css-color/hwb-005-ref.html", + "==" + ] + ], + {} + ] + ], + "inline-opacity-float-child.html": [ + "98afcbcc2d8f3aad53ca95689a505297ab994d3b", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-row-flex-fragmentation-028.html": [ - "5abb90c9a40a0790f83310025fbb5e847d6ee66a", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "lab-001.html": [ + "177cf96ef1dfede4a1194d72182d97191e866cb2", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-row-flex-fragmentation-029.html": [ - "23f9defb5570626479e474a92cec026de60b9af9", + "/css/css-color/greensquare-ref.html", + "==" + ] + ], + {} + ] + ], + "lab-002.html": [ + "e30696995dbc2a582ae17b83ff216cc1c66d726d", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-row-flex-fragmentation-030.html": [ - "52ac3bf2162b1b69c1ee6e0fe584f2dacdffa320", + "/css/css-color/blacksquare-ref.html", + "==" + ] + ], + {} + ] + ], + "lab-003.html": [ + "9308e16456cd5746ddd60c23066dff4c94dad7d8", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-row-flex-fragmentation-031.html": [ - "e5780d254e1238d628a7487a3f5f1c25fe872a81", + "/css/css-color/whitesquare-ref.html", + "==" + ] + ], + {} + ] + ], + "lab-004.html": [ + "b2ebfc187a7a3bd30acfccf4609442fd5693af69", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-row-flex-fragmentation-032.html": [ - "274f88a794fe1783abe7d6c580ca7c3eb8a58144", + "/css/css-color/lab-004-ref.html", + "==" + ] + ], + {} + ] + ], + "lab-005.html": [ + "532d84f14b4426f712f2b8edfef823bff409807b", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-row-flex-fragmentation-033.html": [ - "eaf1aefc4a6dd37fcde82f42d7e44b1f87b024a8", + "/css/css-color/lab-005-ref.html", + "==" + ] + ], + {} + ] + ], + "lab-006.html": [ + "55d6351ddb6aca74c93368b1d7a0a026ae0df668", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-row-flex-fragmentation-034.html": [ - "0fb81034688c221d0167ba5f1b45a4ef6b699e8a", + "/css/css-color/lab-006-ref.html", + "==" + ] + ], + {} + ] + ], + "lab-007.html": [ + "89edbb75496a9056cb7250eb1ac31f6914ec21fb", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-row-flex-fragmentation-035.html": [ - "43653071aea705cd3e7156325c4580dcbfc8f5ff", + "/css/css-color/lab-007-ref.html", + "==" + ] + ], + {} + ] + ], + "lab-008.html": [ + "b0510a620ea1ab1afb27af11f7697a1a18af9747", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-row-flex-fragmentation-036.html": [ - "013c9e2013797d222d72fb88ae0e8d8e3a20cb52", + "/css/css-color/greensquare-display-p3-ref.html", + "==" + ] + ], + {} + ] + ], + "lab-l-over-100-1.html": [ + "be8833593d7dde1456ffabc7cef6023061e95e91", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-row-flex-fragmentation-037.html": [ - "62bf337d850a912c528c4cac6cbde587d33d4da1", + "/css/css-color/lab-l-over-100-ref.html", + "==" + ] + ], + {} + ] + ], + "lab-l-over-100-2.html": [ + "20a95680947532c7852589d6e38c2005e6b085cb", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-row-flex-fragmentation-038.html": [ - "e745987aec8377f59aa8e87c6df04effd0753521", + "/css/css-color/lab-l-over-100-ref.html", + "==" + ] + ], + {} + ] + ], + "lch-001.html": [ + "904e2e5bd7c75dade264e22aa3a145ad56625d67", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-row-flex-fragmentation-039.html": [ - "6ef65db744fae14795d00c2f4db39117b0c24704", + "/css/css-color/greensquare-ref.html", + "==" + ] + ], + {} + ] + ], + "lch-002.html": [ + "7eec1a14ac6bfa9d23f8c55869e317e1689f1759", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-row-flex-fragmentation-040.html": [ - "0eaff879c53801997f66baba193dfc63579b65ef", + "/css/css-color/blacksquare-ref.html", + "==" + ] + ], + {} + ] + ], + "lch-003.html": [ + "f323d4978c94730c4a098bd5ae23dfce146fd2b6", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-row-flex-fragmentation-041.tentative.html": [ - "028051c059018e1d4e16a916e5e0a93403a3abb1", + "/css/css-color/whitesquare-ref.html", + "==" + ] + ], + {} + ] + ], + "lch-004.html": [ + "30eac4542286b7af9cee2a2d3cb7b4b1081cbbec", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-row-flex-fragmentation-042.tentative.html": [ - "725d1f97f37d9b628a139c2a84fe2b57d2c7886f", + "/css/css-color/lch-004-ref.html", + "==" + ] + ], + {} + ] + ], + "lch-005.html": [ + "3986ddc11be587f02064db4ee16404896ce2e718", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-row-flex-fragmentation-043.html": [ - "7d0500ad05d7b908fc173471ad45ab69e3d6b729", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-row-flex-fragmentation-044.html": [ - "8262b0e32f26ee48cf482083f94c48bb809b661d", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-row-flex-fragmentation-045.html": [ - "f5a43339478dbfea2baf600707197d4607d9f9dd", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-row-flex-fragmentation-046.html": [ - "99e25337920a9f0d458dc941bb779def3f850388", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-row-flex-fragmentation-047.html": [ - "f5947287853b5f312ee0c9aaf056c0c20147e4f0", - [ - null, - [ - [ - "/css/css-break/flexbox/multi-line-row-flex-fragmentation-047-ref.html", - "==" - ] - ], - {} - ] - ], - "multi-line-row-flex-fragmentation-048.html": [ - "5c32606312d3de0c528f28a31586a737c69e281f", - [ - null, - [ - [ - "/css/css-break/flexbox/multi-line-row-flex-fragmentation-048-ref.html", - "==" - ] - ], - {} - ] - ], - "multi-line-row-flex-fragmentation-049.html": [ - "e36c48c1594333351ac0a66548ff2aa2520ab8bf", - [ - null, - [ - [ - "/css/css-break/flexbox/multi-line-row-flex-fragmentation-049-ref.html", - "==" - ] - ], - {} - ] - ], - "multi-line-row-flex-fragmentation-050.html": [ - "a96268df0f11b3c1ab9b48806ad9e4702250cb15", - [ - null, - [ - [ - "/css/css-break/flexbox/multi-line-row-flex-fragmentation-050-ref.html", - "==" - ] - ], - {} - ] - ], - "multi-line-row-flex-fragmentation-051.html": [ - "0f826cf3c588ef0f7ab3505d149693314457b332", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-row-flex-fragmentation-052.html": [ - "8f5a612f5d39332f4ef94c5689c63b6a15884f6b", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-row-flex-fragmentation-053.html": [ - "f42d5784830af75fe66965567a8694ddaf2ca30c", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-row-flex-fragmentation-054.html": [ - "9752217ba432e2879c1e532a428e84d3235a1109", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-row-flex-fragmentation-055.html": [ - "39d2c6434d31c8cf8f3c9629120a5e058ddca4f1", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-row-flex-fragmentation-056.html": [ - "0b71c13cce9bb60261cacdcfcc483ffe9eebc744", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-row-flex-fragmentation-057.html": [ - "c20e684b45290d0d69dd3cbd3a6e1386f36d3a29", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-row-flex-fragmentation-058.html": [ - "4746c8f93d3ea7824a9a8514d90d3c95f9d1e41b", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-row-flex-fragmentation-059.html": [ - "fd77f0fd44cf106cb3dfae9ebe5f71b53940ff37", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-row-flex-fragmentation-060.html": [ - "3dcf3c888c44e4b5f1a7ac78ecb97200e29b7cf5", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-row-flex-fragmentation-061.html": [ - "10f8a666e4f12636cad0b42c7032be185b1b9371", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-row-flex-fragmentation-062.html": [ - "1d9d8739a9147c084a5a8ad814a85ad05a553888", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-row-flex-fragmentation-065.html": [ - "10ae8ca41d7d1bb68b9ad3d2f1b400f61c8e2238", - [ - "css/css-break/flexbox/multi-line-row-flex-fragmentation-065.html", - [ - [ - "/css/css-break/flexbox/multi-line-row-flex-fragmentation-065-ref.html", - "==" - ] - ], - {} - ] - ], - "multi-line-row-flex-fragmentation-066.html": [ - "b4c7fcd12f33f94cb22747e192b4d53f06dd3bb8", - [ - "css/css-break/flexbox/multi-line-row-flex-fragmentation-066.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-row-flex-fragmentation-067.html": [ - "797089cabed144bc46ff8317cf0931c6beeb3143", - [ - "css/css-break/flexbox/multi-line-row-flex-fragmentation-067.html", - [ - [ - "/css/css-break/flexbox/multi-line-row-flex-fragmentation-067-ref.html", - "==" - ] - ], - {} - ] - ], - "multi-line-row-flex-fragmentation-068.html": [ - "809f0c9a3a43436924ba81bb742b2d4d41b5bbe2", - [ - "css/css-break/flexbox/multi-line-row-flex-fragmentation-068.html", - [ - [ - "/css/css-break/flexbox/multi-line-row-flex-fragmentation-068-ref.html", - "==" - ] - ], - {} - ] - ], - "multi-line-row-flex-fragmentation-069.html": [ - "3c3ee17bb48762489bf1328400b1c2b8b1de7d65", - [ - "css/css-break/flexbox/multi-line-row-flex-fragmentation-069.html", - [ - [ - "/css/css-break/flexbox/multi-line-row-flex-fragmentation-069-ref.html", - "==" - ] - ], - {} - ] - ], - "multi-line-row-flex-fragmentation-070.html": [ - "ea301c33b20e26969e69a294af293031ff90c9b2", - [ - "css/css-break/flexbox/multi-line-row-flex-fragmentation-070.html", - [ - [ - "/css/css-break/flexbox/multi-line-row-flex-fragmentation-070-ref.html", - "==" - ] - ], - {} - ] - ], - "multi-line-row-flex-fragmentation-071.html": [ - "4a855f7fcec8bef0a04520131cc0d56a6f5f2ebe", - [ - "css/css-break/flexbox/multi-line-row-flex-fragmentation-071.html", - [ - [ - "/css/css-break/flexbox/multi-line-row-flex-fragmentation-071-ref.html", - "==" - ] - ], - {} - ] - ], - "multi-line-row-flex-fragmentation-072.html": [ - "4964c14c229673465d0caa2f699d36c73f53e48d", - [ - "css/css-break/flexbox/multi-line-row-flex-fragmentation-072.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-row-flex-fragmentation-073.html": [ - "6afeb6d558b0c42d85f3a7051b2c31e6d900be0a", - [ - "css/css-break/flexbox/multi-line-row-flex-fragmentation-073.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-row-flex-fragmentation-074.html": [ - "321f8f79889ac0713eefd483a41e84ca89109d29", - [ - "css/css-break/flexbox/multi-line-row-flex-fragmentation-074.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-row-flex-fragmentation-077.html": [ - "4a0b056113462b0358bed26da6eaff7c1d082937", - [ - "css/css-break/flexbox/multi-line-row-flex-fragmentation-077.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-row-flex-fragmentation-078.html": [ - "1427d5770d9fcef85841422f032a1d41108026c6", - [ - "css/css-break/flexbox/multi-line-row-flex-fragmentation-078.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "multi-line-row-flex-fragmentation-079.html": [ - "57c094d586b9659f8c5e402eedf23825501979e0", - [ - "css/css-break/flexbox/multi-line-row-flex-fragmentation-079.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "nested-flex-item-expansion-in-mulicol.html": [ - "56aa3ec5c26878e4b12be7fe09e2700021e6b19c", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-column-flex-fragmentation-001.html": [ - "d1411f9a16a14585b945408b162182ed343419d2", - [ - "css/css-break/flexbox/single-line-column-flex-fragmentation-001.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-column-flex-fragmentation-002.html": [ - "0f19e3ad324ea46ca7d4514fae515f54e49dc8d8", - [ - "css/css-break/flexbox/single-line-column-flex-fragmentation-002.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-column-flex-fragmentation-003.html": [ - "7520448292be22a681f0dcfdffbd8faa1283e3d5", - [ - "css/css-break/flexbox/single-line-column-flex-fragmentation-003.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-column-flex-fragmentation-004.html": [ - "fd1e258994b8f694c12d968e181dd68d86b22de8", - [ - "css/css-break/flexbox/single-line-column-flex-fragmentation-004.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-column-flex-fragmentation-005.html": [ - "311582248a74dfcb62669f9fe08fdd67d0d81762", - [ - "css/css-break/flexbox/single-line-column-flex-fragmentation-005.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-column-flex-fragmentation-006.html": [ - "5d1982d4addeef945ce938b4c5fdc3b0a1f62f66", - [ - "css/css-break/flexbox/single-line-column-flex-fragmentation-006.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-column-flex-fragmentation-007.html": [ - "4450dd06d3e4c674586173ab0ba440169d04b5ed", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-column-flex-fragmentation-008.html": [ - "5c83abec7f16e9ae5bc21de686026c240c5b45e3", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-column-flex-fragmentation-009.html": [ - "e36c4f0781dd1687b8a9dfb0225effaf0981535b", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-column-flex-fragmentation-010.html": [ - "398ba30212bf0319a1e08360b00e7512cb632b80", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-column-flex-fragmentation-011.html": [ - "546bf2b1ae8c11b1e2e81e5333549b2a2f2fe701", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-column-flex-fragmentation-012.html": [ - "8cae4cd43e2f1b19e8c1d85ae0f8bcaf3f732014", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-column-flex-fragmentation-013.html": [ - "4582388dc8c3be230d5ed08978283141b9543dea", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-column-flex-fragmentation-014.html": [ - "92fe81100c8448c464cebab93669fb6e426d23af", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-column-flex-fragmentation-015.html": [ - "b8e91335376e139c3164b7b14cdf09306bf52ff2", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-column-flex-fragmentation-016.html": [ - "f079e1140e201a5b8c35c8b17aac4c49c3978a22", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-column-flex-fragmentation-017.html": [ - "4c4dad3103bfd8809e3ca68997881bb3e06bed7d", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-column-flex-fragmentation-018.html": [ - "d06e1bf914c0dea4fa17027e6026feab67418ea2", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-column-flex-fragmentation-019.html": [ - "74f7caa0d0cac0f848183ad3fccb7ff07186aaf7", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-column-flex-fragmentation-020.html": [ - "8b230270ceffa202f74e67be467f9f39b6709e4c", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-column-flex-fragmentation-021.html": [ - "6248205bc16f807bf1caa09670fee624aea07e16", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-column-flex-fragmentation-022.html": [ - "b0439bed67d1682d5419d6e7d66a327cc875d852", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-column-flex-fragmentation-023.html": [ - "dd5c8a7c99bf3bc15083c24b4ee1589149e13116", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-column-flex-fragmentation-024.html": [ - "e3007b419b8e375eed574c16b531b8bd3009faed", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-column-flex-fragmentation-025.html": [ - "e7e4615782e6e3648caf44ad58c9512d5b2a8392", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-column-flex-fragmentation-026.html": [ - "ad0d1ab9a14b3af12abea0b1934f4b8a30ca15e7", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square-only.html", - "==" - ] - ], - {} - ] - ], - "single-line-column-flex-fragmentation-027.html": [ - "38ab5e427ee25d37f312165aba75a50b3780bda9", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-column-flex-fragmentation-028.html": [ - "80562c57cbc3c0bb7dd74fdc702a0a9fbd48fcb8", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-column-flex-fragmentation-029.html": [ - "e6f7f8a5fb0fc4ace163d142cb29571e185ed627", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-column-flex-fragmentation-030.html": [ - "34f3642cb9b40d83f616ad6426d3a67fdeb65ef7", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-column-flex-fragmentation-031.html": [ - "5d42f9a2dfae7b50271983f30bb2c8e5b113f6bf", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-column-flex-fragmentation-032.html": [ - "c78169725a9de3a79e5370963ae212cff63eea99", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-column-flex-fragmentation-033.html": [ - "0a7e423e1165d7783c0d8b3177a615af1ba21275", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-column-flex-fragmentation-034.html": [ - "e84e633878d7d1303a1545e2bcdc9408ac1ae3df", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-column-flex-fragmentation-035.html": [ - "317336fa2c29235b9f406b8eb564ef9aa3725363", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-column-flex-fragmentation-036.html": [ - "41f9f93277e10fd779373c45d61a19754a02326f", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-column-flex-fragmentation-037.html": [ - "f4ce762085347db1f0b75a049109b06e421b9d32", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-column-flex-fragmentation-038.html": [ - "a537ee7282e960086904cc9549e3271cf61095d9", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-column-flex-fragmentation-039.html": [ - "c5820951b54a523a3a476ebc2be419cbe44536a0", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-column-flex-fragmentation-040.html": [ - "bc4fa7b01cbbef0f1b6b922c8289b5f5469f9dd5", - [ - null, - [ - [ - "/css/css-break/flexbox/single-line-column-flex-fragmentation-040-ref.html", - "==" - ] - ], - {} - ] - ], - "single-line-column-flex-fragmentation-041.html": [ - "66a6b0660f4ed8f49e0dbbaa080ba5c65305a071", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-column-flex-fragmentation-042.html": [ - "be5732c24d2450cd5707a26dadf65a4a316e3b33", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-column-flex-fragmentation-043.html": [ - "decca1369e3cd94b6ee2a88e0217430ac95f5745", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-column-flex-fragmentation-044.html": [ - "2ef4c988ec52549cf01e9b244b50e004ddc0d795", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-column-flex-fragmentation-045.html": [ - "f2d4d745fa2a76bd290b24194d8ae4f7b057073c", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-column-flex-fragmentation-046.html": [ - "c2eee20a4e84abf77b23ff6251a28e906901f003", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-column-flex-fragmentation-047.html": [ - "1f47cb1b6dcd39e1329480da892184bd5a701409", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-column-flex-fragmentation-048.html": [ - "bb1725665ceaa3afe512e3819458224624e68118", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-column-flex-fragmentation-049.html": [ - "888fb2bb91e160432344bd5cb015897803e326e7", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-column-flex-fragmentation-050.html": [ - "ae683e938c29a6a8224e506d789284c79ab1ea69", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-column-flex-fragmentation-051.html": [ - "9fc2a6e44261a494a12f341a8b116164cc6244ec", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-column-flex-fragmentation-052.html": [ - "faa0d1305554e8693f3fcbb61da3b55eb01fc7c3", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-column-flex-fragmentation-053.html": [ - "524870e4fc9e49fcb17ee56ff516c5d5dd973ee2", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-column-flex-fragmentation-054.html": [ - "60c130ed39ffdfb60eb5a9e1b0cab92f2c964bf5", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-column-flex-fragmentation-055.html": [ - "2958e6167abcf0df60bae8070b61388406e3c9db", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-column-flex-fragmentation-056.html": [ - "87091a423a11466de8a1131067e890fd2a1cae48", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-column-flex-fragmentation-057.html": [ - "9261477e7dc3551c27453eda8c527dea5746925d", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-column-flex-fragmentation-058.html": [ - "ec00e47436b6fea0cd368d395089d6b9327641eb", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-column-flex-fragmentation-059.html": [ - "ff91f373ec756ac8c101629a7199d75a600d8a96", - [ - "css/css-break/flexbox/single-line-column-flex-fragmentation-059.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-column-flex-fragmentation-061.html": [ - "2cbb42d775336abd46662e24528a46bada181ac6", - [ - "css/css-break/flexbox/single-line-column-flex-fragmentation-061.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-column-flex-fragmentation-062.html": [ - "fae736d108255e3854b7a93d2d344e8d98f81319", - [ - "css/css-break/flexbox/single-line-column-flex-fragmentation-062.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-column-flex-fragmentation-063.html": [ - "f2d407a614e136d5c1c9311725015b1fadb5a091", - [ - "css/css-break/flexbox/single-line-column-flex-fragmentation-063.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-column-flex-fragmentation-064.html": [ - "9cda2de6cbb6b42e4968986752160fa723c32326", - [ - "css/css-break/flexbox/single-line-column-flex-fragmentation-064.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-column-flex-fragmentation-067.html": [ - "6ee57d1852d5aace634062c08c7faa4baf68401d", - [ - "css/css-break/flexbox/single-line-column-flex-fragmentation-067.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-row-flex-fragmentation-001.html": [ - "379327a4aff584192f076d3f9d8f3ead232c0f5c", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-row-flex-fragmentation-002.html": [ - "bcfd587e4aa0d7fc434a386ade7884132d953a2c", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-row-flex-fragmentation-003.html": [ - "8b2736f1d19de0721d1187de87b03b24c2508704", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-row-flex-fragmentation-004.html": [ - "d1f143bcc6215077f3d96691b89fac4a4dd24de3", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-row-flex-fragmentation-005.html": [ - "05ec2157ce0a14e441746f1afa4acf5b702072ee", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-row-flex-fragmentation-006.html": [ - "e8a2f407e181bdc8dd7de98bf306488c30d37419", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-row-flex-fragmentation-007.html": [ - "36dad9d895a389df5f940603056607855a3446d6", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-row-flex-fragmentation-008.html": [ - "dfade0ff4b9544c3a82b5ab608ac671042b88248", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-row-flex-fragmentation-009.html": [ - "8dbaa6925fa07dbfc60e161bd7ad346aa8735797", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-row-flex-fragmentation-010.html": [ - "cd952e7241cbe22d0c6afb8137f0710077d0a540", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-row-flex-fragmentation-011.html": [ - "cf1c6b764ae2ca7f876366e2d6c89044e7fd3bb1", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-row-flex-fragmentation-012.html": [ - "75acedcae735686687af3b5a27855023a804c070", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-row-flex-fragmentation-013.html": [ - "5b66c063deb19fdede0c4cafffe32ab78725b3c8", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-row-flex-fragmentation-014.html": [ - "00f9afa701be64b04e2265a91d0479ac7e9af505", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-row-flex-fragmentation-015.html": [ - "6cb5ce0a31160522337383becca14f264f9c233f", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-row-flex-fragmentation-016.html": [ - "343dbc45d114ccf3db6acdd5ccfd0fbe48010d30", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-row-flex-fragmentation-017.html": [ - "0c0cd4ac2b97aacc8d5494ce1821e1e632e93006", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-row-flex-fragmentation-018.html": [ - "9e62460cb2479843277d8954457814608a4d8d23", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-row-flex-fragmentation-019.html": [ - "149338a7e184f7f6d0b0f63dd3cbdc4c940b85d8", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-row-flex-fragmentation-020.html": [ - "3fe75a4e4310a0db38311553ed1781f42e2fbd39", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-row-flex-fragmentation-021.html": [ - "d4e29dd815625cd95e53b301753920223101de78", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-row-flex-fragmentation-022.html": [ - "4d64641e4c4cc8f95eef8a3f0f5162125ee7fcaf", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-row-flex-fragmentation-023.html": [ - "d344e91f540eec58badb5d254ccd61e23eee284b", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-row-flex-fragmentation-024.html": [ - "7e5e3f206b210913bcb7f2e96e3d111ebfb3898b", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-row-flex-fragmentation-025.html": [ - "dd753039c1b908a0dfd17246b4e48d236cc325ee", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-row-flex-fragmentation-026.html": [ - "9a78bf503b7238cf04cdb969c01ead6ef1affd56", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-row-flex-fragmentation-027.html": [ - "85550f18a4a2306749a21a4325269ae639481cbf", - [ - null, - [ - [ - "/css/css-break/flexbox/single-line-row-flex-fragmentation-027-ref.html", - "==" - ] - ], - {} - ] - ], - "single-line-row-flex-fragmentation-028.html": [ - "4d0b5e52cd38e3d2a91cd9a3c865a4dc64d4556c", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-row-flex-fragmentation-029.html": [ - "5d7e72ddf00810d7c73aa5c1d5f316138416a432", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-row-flex-fragmentation-030.html": [ - "a70ad1473eaf277a4f8ce14b7f84efe363858a7b", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-row-flex-fragmentation-031.html": [ - "1bda683312ee4228588b1950695b1672fdb23780", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-row-flex-fragmentation-032.html": [ - "5cdafeb15cc8bcc7110094e90e15ddddff440bb9", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-row-flex-fragmentation-033.html": [ - "8d3d8f002ed1a275f52ce4ac1a22d58ab43edcd8", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-row-flex-fragmentation-034.html": [ - "a274219ed9e164cf17abfc166115a23417e0c154", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-row-flex-fragmentation-035.html": [ - "77313e67d49a0c12fd0f472a081dc7efe666b320", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-row-flex-fragmentation-036.html": [ - "5881e058bce90b31ee2f85225eea28447fd85e55", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-row-flex-fragmentation-037.html": [ - "c7895af92a7d9da5bdeb067a22a79c14700ccefb", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-row-flex-fragmentation-038.html": [ - "d9ea2acc4c1451435b4e5ac33f93f5bfcf6c9bae", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-row-flex-fragmentation-039.html": [ - "5c3a039d47357425d3d5b1722bcdc70e03d3858c", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-row-flex-fragmentation-040.html": [ - "90d86129640d020e99baf35a10f5aa0b80c87e83", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-row-flex-fragmentation-041.html": [ - "112e963a2258aa23427dec54c5e99c20d5cf417c", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-row-flex-fragmentation-043.html": [ - "e41862d6c4638139e9cb85e659c3ebdb139f655d", - [ - "css/css-break/flexbox/single-line-row-flex-fragmentation-043.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-row-flex-fragmentation-044.html": [ - "6da4fde6ee94b6a54999148fa419b9d718df7453", + "/css/css-color/lch-005-ref.html", + "==" + ] + ], + {} + ] + ], + "lch-006.html": [ + "457e88d405d8f840e4b238dfa39b2a80676481f6", + [ + null, [ - "css/css-break/flexbox/single-line-row-flex-fragmentation-044.html", [ - [ - "/css/css-break/flexbox/single-line-row-flex-fragmentation-044-ref.html", - "==" - ] - ], - {} - ] - ], - "single-line-row-flex-fragmentation-047.html": [ - "061e62f3c368c29421d92c25b326e62732b690e5", + "/css/css-color/lch-006-ref.html", + "==" + ] + ], + {} + ] + ], + "lch-007.html": [ + "009347c1af72a295656b0f6a16e8fea94d789744", + [ + null, [ - "css/css-break/flexbox/single-line-row-flex-fragmentation-047.html", [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "single-line-row-flex-fragmentation-048.html": [ - "96a302716ca0865382b34697b6a3dd198579e128", + "/css/css-color/lch-007-ref.html", + "==" + ] + ], + {} + ] + ], + "lch-008.html": [ + "feedb9853b93bb03702f24c509a65e9a073cf988", + [ + null, [ - "css/css-break/flexbox/single-line-row-flex-fragmentation-048.html", [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] + "/css/css-color/greensquare-display-p3-ref.html", + "==" + ] + ], + {} ] - }, - "float-000.html": [ - "36a0722805edf73793d20c1739379123d89c698e", + ], + "lch-009.html": [ + "375fd08de5833cc0ef0619e762c98b2bc289b13c", [ - "css/css-break/float-000.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/whitesquare-ref.html", "==" ] ], {} ] ], - "float-001.html": [ - "84b238a7c6d1e8d874b48ae2c7d1573f06c4f5ca", + "lch-010.html": [ + "965e05ff5dc0a16b169ba5f22d261c180f719a74", [ - "css/css-break/float-001.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/blacksquare-ref.html", "==" ] ], {} ] ], - "float-002.html": [ - "e1036b0ce8bf31b21cc815d93c2fbed614cdb6fc", + "lch-l-over-100-1.html": [ + "12d594d1a340f864b0de6d0bf54ce8047c63464d", [ - "css/css-break/float-002.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/lch-l-over-100-ref.html", "==" ] ], {} ] ], - "float-003.html": [ - "1d1bd37bbf5a06e5562bbe8e207fefb5c67a2644", + "lch-l-over-100-2.html": [ + "68789b9c859f758fa938ddeaf41b3afb2cb105df", [ - "css/css-break/float-003.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/lch-l-over-100-ref.html", "==" ] ], {} ] ], - "float-004.html": [ - "f2fce78175e43cd29b5ab4615bfeeca6c4ea97d7", + "light-dark-currentcolor.html": [ + "512a492b293d469b4c66052dd0b1d4ba9ca15b30", [ - "css/css-break/float-004.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "float-005.html": [ - "ae515e20638cdf50bc61b5d2140eb05fab5bf783", + "light-dark-inheritance.html": [ + "1128b57319b0e9b8b4224b6c3005e18d349d8191", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "float-006.html": [ - "28be2dcc28d638ebb4658e1896d61cab82ac7cb5", + "named-001.html": [ + "61a98dcb7bb02fab3db18ed337eee5ddb07724fc", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/rebeccapurple-ref.html", "==" ] ], {} ] ], - "float-007.html": [ - "10fc1217fc8cc4d69e698bea8f0308a18edf0a85", + "oklab-001.html": [ + "835a8ca4a91d52322af1d51bf6dae0d6a8968009", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/greensquare-ref.html", "==" ] ], {} ] ], - "float-008.html": [ - "8685bf925d36c7799ab0efd96865e41cb9bbbd7d", + "oklab-002.html": [ + "4ddf4d9e7e6e07b41a162846d65127a54ec5e0d2", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/blacksquare-ref.html", "==" ] ], {} ] ], - "float-009.html": [ - "8f76c75bd8873e973e3c662806698b81c0fa1d8e", + "oklab-003.html": [ + "38c921e31ac0893c14892fc57906e1120653cac0", [ null, [ [ - "/css/css-break/float-009-ref.html", + "/css/css-color/whitesquare-ref.html", "==" ] ], {} ] ], - "float-010.html": [ - "68eef4a6d26c96b0bca43d4ae1fa3b8ad74eddb2", + "oklab-004.html": [ + "c403f244f94495543f82899018bdbb89481a2464", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/oklab-004-ref.html", "==" ] ], {} ] ], - "float-012.html": [ - "6896817443d5f3eefdf1a0aa8181d15e0906efe7", + "oklab-005.html": [ + "0738d21017b2007bfa7e64cdf22573c2ae5f4974", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/oklab-005-ref.html", "==" ] ], {} ] ], - "float-013.html": [ - "5f8c595c042a5bbad8f6687862a0675e95afed17", + "oklab-006.html": [ + "2a918ecbda58cf2ee05664a4e53da7809b3ef754", [ - "css/css-break/float-013.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/oklab-006-ref.html", "==" ] ], {} ] ], - "float-014.tentative.html": [ - "95c9d6f89f2aa28cdac9b1b03f6a1978b97ff93b", + "oklab-007.html": [ + "5fdf0ab15b4edadf3abd0e778c04fb8bff0e9b29", [ - "css/css-break/float-014.tentative.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/oklab-007-ref.html", "==" ] ], {} ] ], - "float-015.tentative.html": [ - "885edbc84c6368c1b3287104597de6b071debd7f", + "oklab-008.html": [ + "be8b4ae596c584ba0f17d07962387f40c72d5f1e", [ - "css/css-break/float-015.tentative.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/greensquare-display-p3-ref.html", "==" ] ], {} ] ], - "float-016.html": [ - "a8fc29acc2e57bc8d09c40f6f5146407b7fe4433", + "oklab-009.html": [ + "49bd916f5d7b5ceadb07ce1bdcde703887c67866", [ - "css/css-break/float-016.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/greensquare-ref.html", "==" ] ], {} ] ], - "float-017.html": [ - "5ca1f80a4e8b6061af99f2708f30398f7206e76d", + "oklab-l-almost-0.html": [ + "e8cc1b9042d44b70fd98448ef3ef92a6bb5aac0a", [ - "css/css-break/float-017.html", + null, [ [ - "/css/css-break/float-017-ref.html", + "/css/css-color/oklab-l-almost-0-ref.html", "==" ] ], {} ] ], - "float-in-self-collapsing-block-000.html": [ - "e42d941e78ab45e9107ac49ee8c8c2b4c6d43c9d", + "oklab-l-almost-1.html": [ + "352e7b58aa6a94a25cc0d14248f1da04a192daeb", [ - "css/css-break/float-in-self-collapsing-block-000.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/oklab-l-almost-1-ref.html", "==" ] ], {} ] ], - "float-in-self-collapsing-block-001.html": [ - "835a5be09a80c19b079b1aa71fddee8e450f9a20", + "oklab-l-over-1-1.html": [ + "a16fe7886f83b7ad5dabe4878341618060abeff5", [ - "css/css-break/float-in-self-collapsing-block-001.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/oklab-l-over-1-ref.html", "==" ] ], {} ] ], - "float-inside-small-block.html": [ - "2afd6dacc9c1f910be33a97677c0f5841fe5b035", + "oklab-l-over-1-2.html": [ + "6300cb8af3bc581b3f42199de94303e6c698952b", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/oklab-l-over-1-ref.html", "==" ] ], {} ] ], - "float-stretching-bfc-000.html": [ - "c56e9a998c999a3f08554ec44f8950e4d13f5ef6", + "oklch-001.html": [ + "f32b7fe888b304576790175a0f7e6b5bbe45b354", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/greensquare-ref.html", "==" ] ], {} ] ], - "float-stretching-bfc-001.html": [ - "4c6a9f63ea6614bc8bbc7ba0ba75c4beda6d0f2f", + "oklch-002.html": [ + "5c456319db6e3ee1c19f0d7db7a579853c65428b", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/blacksquare-ref.html", "==" ] ], {} ] ], - "floats-and-text-narrow-and-short-dynamic.html": [ - "09e5021555d50ca0c6919082bfffc81652f65092", + "oklch-003.html": [ + "abfaff1d793fe203fd61f22e9041151b3fb44b0f", [ null, [ [ - "/css/css-break/floats-and-text-narrow-and-short-dynamic-ref.html", + "/css/css-color/whitesquare-ref.html", "==" ] ], {} ] ], - "forced-break-at-fragmentainer-start-000.html": [ - "d5796ba641b524b6379c1ab9f37dad6408bc5a10", + "oklch-004.html": [ + "c5fc4d09c982a170ebc175ad8df778f1824f6641", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-color/oklch-004-ref.html", "==" ] ], {} ] ], - "forced-break-at-fragmentainer-start-001.html": [ - "b3ad80ca9a0dfac7574362e6ff8528ee0c39e8e9", + "oklch-005.html": [ + "0c7623315ce0ff5dc7b2549f042eb50d91a4b895", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/oklch-005-ref.html", "==" ] ], {} ] ], - "form-control.html": [ - "8ef6eedae252f36de3bfeef8c3a6db23bf6f3d89", + "oklch-006.html": [ + "dc0193e52d5ee6ea086d3b659290298e2d319149", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/oklch-006-ref.html", "==" ] ], {} ] ], - "fragmented-autowidth-fc-root-beside-floats.html": [ - "348019aaf0954c27669e5935d675ed87ee2144bb", + "oklch-007.html": [ + "3ff21b25e51c78abe9c60de3e8c1260c1b4e49fe", [ null, [ [ - "/css/css-break/fragmented-autowidth-fc-root-beside-floats-ref.html", + "/css/css-color/oklch-007-ref.html", "==" ] ], {} ] ], - "fragmented-float-overflowing-container.html": [ - "789c30bce73e323e0d4e4a285f569c7cb7f3dd79", + "oklch-008.html": [ + "baa7c5c372540977d536abffa29fc8086a4e2f57", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/greensquare-display-p3-ref.html", "==" ] ], {} ] ], - "grid": { - "grid-container-fragmentation-001.html": [ - "0b954f2814850a23cf77a4f0595c7a49235e33f6", + "oklch-009.html": [ + "1882c476c1c8678dd8e0e7d443735c25d63f02ca", + [ + null, [ - "css/css-break/grid/grid-container-fragmentation-001.html", [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-container-fragmentation-002.html": [ - "aec5085991c0b0f4df95b7bf6b1e354f15be92e5", - [ - "css/css-break/grid/grid-container-fragmentation-002.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-container-fragmentation-003.html": [ - "659d9eaac5fe52785356d0e80bf37e18c2dd1e4b", - [ - "css/css-break/grid/grid-container-fragmentation-003.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-container-fragmentation-004.html": [ - "3e276060711faeb56d6576e4748b67c2334ae0d7", - [ - "css/css-break/grid/grid-container-fragmentation-004.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-container-fragmentation-005.html": [ - "a110275ff87dff4300a57322e4a0bc01f5eae20a", - [ - "css/css-break/grid/grid-container-fragmentation-005.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-container-fragmentation-006.html": [ - "2c25d1f35cf574b4c7dd4af5022b877f7327be8f", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-container-fragmentation-007.html": [ - "86323ee57a1b7575eb661a1ddff8694e8a54acce", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-container-fragmentation-008.html": [ - "38392afc6064b266bcab9a728e53b9eb2e1f5e16", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-container-fragmentation-009.html": [ - "c4148bb22689ec87442bf0b929819124b7225cd9", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square-only.html", - "==" - ] - ], - {} - ] - ], - "grid-container-fragmentation-010.html": [ - "d3e87d062b9bf26479c1b9093c34a6d50a4d0108", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-container-fragmentation-011.html": [ - "8615244bf5b2a94bc202b4570f1ae2c442525824", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-item-008.html": [ - "b9caacc4af242de39e0876383b61c56e8c46ae48", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-item-009.html": [ - "dc095fd4eeed20cf0204b0ba66dd4dc6e2b4095a", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-item-fragmentation-001.html": [ - "1e2d41775ef84bbabca12f41c4c65a8a4c0f2187", - [ - "css/css-break/grid/grid-item-fragmentation-001.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-item-fragmentation-002.html": [ - "ce1b6b67ef5c0baa368881e3c36b62666c28b430", - [ - "css/css-break/grid/grid-item-fragmentation-002.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-item-fragmentation-003.html": [ - "8c4e42d640f19d2458a9cbc96316b226148b2e69", - [ - "css/css-break/grid/grid-item-fragmentation-003.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-item-fragmentation-004.html": [ - "e0eca9c9d4df78a915fa294a57895c6304e316ed", - [ - "css/css-break/grid/grid-item-fragmentation-004.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-item-fragmentation-005.html": [ - "8b7503f9276a45d147f6176d6cdab0576a61c295", - [ - "css/css-break/grid/grid-item-fragmentation-005.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-item-fragmentation-006.html": [ - "8c458c832c13028ff7e8d29bea7e00bf9cda586b", - [ - "css/css-break/grid/grid-item-fragmentation-006.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-item-fragmentation-007.html": [ - "cd78a9bc174d632d8baf43cf6ba3c62abd6082e0", - [ - "css/css-break/grid/grid-item-fragmentation-007.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-item-fragmentation-008.html": [ - "79703f65134be32fe3696f77220fce9ea9e25349", - [ - "css/css-break/grid/grid-item-fragmentation-008.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-item-fragmentation-009.html": [ - "33385109416b0b1eed33c4c4e59a01de5eca513c", - [ - "css/css-break/grid/grid-item-fragmentation-009.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-item-fragmentation-010.html": [ - "bd57ef797ad2eb85b0566dc8f4afa9d75f8381b9", - [ - "css/css-break/grid/grid-item-fragmentation-010.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-item-fragmentation-011.html": [ - "e353537827bcb98a70c67d6078294ee0e3ebcf77", - [ - "css/css-break/grid/grid-item-fragmentation-011.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-item-fragmentation-012.html": [ - "c3b206e26c59436ccfbf00b002915b501e202348", - [ - "css/css-break/grid/grid-item-fragmentation-012.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-item-fragmentation-013.html": [ - "a1e7106e239b124a118c8a4fb58bedabe4358dc7", - [ - "css/css-break/grid/grid-item-fragmentation-013.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-item-fragmentation-014.html": [ - "09c95d1840fee99a60ca1c4ded390369331f5a03", - [ - "css/css-break/grid/grid-item-fragmentation-014.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-item-fragmentation-015.html": [ - "6dd82de5822e3d77cb12965200a8a01113b58948", - [ - "css/css-break/grid/grid-item-fragmentation-015.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-item-fragmentation-016.html": [ - "c16f740bd51dab61fe9ee86f3d6a23dd34d64c18", - [ - "css/css-break/grid/grid-item-fragmentation-016.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-item-fragmentation-017.html": [ - "a5c1abeb1223395ed3b701af82853bbb6ee85e43", - [ - "css/css-break/grid/grid-item-fragmentation-017.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-item-fragmentation-018.html": [ - "18c757352e2276163ea366526562c8ecd20343fb", - [ - "css/css-break/grid/grid-item-fragmentation-018.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-item-fragmentation-019.html": [ - "dc14a6f7449f8d05f60e874c2aa8b642b8805d0f", - [ - "css/css-break/grid/grid-item-fragmentation-019.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-item-fragmentation-020.html": [ - "f0636c4982d409758d8f18fb2d9849d505a3d844", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-item-fragmentation-021.html": [ - "775422db7b74f270bb1fb987b387451a5e0f4d42", - [ - "css/css-break/grid/grid-item-fragmentation-021.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-item-fragmentation-022.html": [ - "a31e8b51dfffee2b4e308633815651b3510f218c", - [ - "css/css-break/grid/grid-item-fragmentation-022.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-item-fragmentation-023.html": [ - "092aeba9c6ab61e2c7631b9e0090cbb4340b7d1a", - [ - "css/css-break/grid/grid-item-fragmentation-023.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-item-fragmentation-024.html": [ - "691212b240ce8cb8cdf73293cc80d60a42e9ff1a", - [ - "css/css-break/grid/grid-item-fragmentation-024.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-item-fragmentation-025.html": [ - "fc0731f63e3088cab8979864a71172704aeb879f", - [ - "css/css-break/grid/grid-item-fragmentation-025.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-item-fragmentation-026.html": [ - "9f4be08a44b9e4128a9a30b1004cffacda535108", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-item-fragmentation-027.tentative.html": [ - "c0270db4991cd8ceaf38b0f24449fe122e0c96eb", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-item-fragmentation-028.html": [ - "1718fa2081aca900de1a4ddc3f50751714d86928", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-item-fragmentation-029.html": [ - "380fba879cd622e940d50389de758d95599496f5", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-item-fragmentation-030.html": [ - "a3e05d0956be2380774638a370d1bcdb2076ea37", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-item-fragmentation-031.html": [ - "1a339ab22c9711f8e68ee0b37c2753ccdea14f71", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-item-fragmentation-032.html": [ - "33f855f8952d89e325fc1df42c5d5d6b487b169b", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-item-fragmentation-033.html": [ - "c8f54c90a980d89cd6e52a9fa597fde4e9cf13a3", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-item-fragmentation-034.html": [ - "9a81c074bf44369b3223b02e7a217209e52dfe36", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-item-fragmentation-035.html": [ - "15a544ea229ca1ad6c357f7851f09bfd989c2d3e", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-item-fragmentation-036.html": [ - "ba44745e9a02d5afffa3f424f68435633c8f571c", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-item-fragmentation-037.html": [ - "d5d97394c574b092a5672dc4fa8c1c9013ee0493", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-item-fragmentation-038.html": [ - "40008b5dcd645035f207a95b9a71c1c852193ecf", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-item-fragmentation-039.html": [ - "5201c49fa42ff8621a512e1b15dc65486654cb7f", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-item-fragmentation-040.html": [ - "8733073741a8696d845343f570ba8437fef99e7a", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-item-fragmentation-041.html": [ - "f26c72655392663544608637a1311832e15052f9", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-item-fragmentation-042.html": [ - "67e2d405205ecdffd4b618782bfae32606225679", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-item-fragmentation-043.html": [ - "7a4ddc54e21206a723e5f7f1dd53902d1718eedd", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-item-fragmentation-044.html": [ - "8c028479bc87d424f8e29a13780966d6ec475dd4", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-item-fragmentation-045.html": [ - "e4010b421ca97048eb992268aa5c87a1752f6c3e", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-item-fragmentation-046.html": [ - "ffdc94efba3754e7e6641a953ca5e46b5722eb3f", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-item-fragmentation-047.html": [ - "ac6d137cb27b1413c889018a653626f2f470c902", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-item-fragmentation-048.html": [ - "5eed6b9184bb8923f5fc9d449a4413b0c0d950eb", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-item-infinite-expansion.html": [ - "ec27d0cc3f24439bb1a3b9db1924490f2d2ab099", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-item-oof-001.html": [ - "e94889228a79b2ec832d01cc82495a4a328d5077", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-item-oof-002.html": [ - "b1ced43ab803c645f80eaed23b1475e58c0e041a", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-item-oof-003.html": [ - "59235f9245d0cd75ea2090189a58e02dd79ed0da", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-item-oof-004.html": [ - "f73d91a1927d9b6cf5ccceda4a31c7ab79ef5496", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-item-oof-005.html": [ - "3536b30a96e788597af6a583525fad56f2471118", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-item-oof-006.html": [ - "63a14e5cff891cd0197d8be6f549ed550f6774d4", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-item-oof-007.html": [ - "6802973edb28a14d44b79a0868c9f6c9127ceeca", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-item-oof-008.html": [ - "a8ef5622a3bd303bee0e29e7348bba70f65976ec", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-item-oof-009.html": [ - "6b50367b160191b57b56530a78b23e2185cd2e02", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-item-oof-010.html": [ - "9b12550e6b2b82c5465c18d837e8fac9420e36de", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-item-oof-011.html": [ - "81bf627587fb736b6ae9e75f9e2246c73bffd889", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-item-overflow-001.html": [ - "30d6f3bb21ca1e144c960fffb3cf657dc79cef64", - [ - "css/css-break/grid/grid-item-overflow-001.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "monolithic-overflow-001.tentative.html": [ - "95660ec1068100e48fb489631fc7312b7937ff0c", - [ - "css/css-break/grid/monolithic-overflow-001.tentative.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "monolithic-overflow-002.tentative.html": [ - "f487c3ded5fd86bf2992d45b593d7bc2d854e7aa", - [ - "css/css-break/grid/monolithic-overflow-002.tentative.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "monolithic-overflow-003.tentative.html": [ - "c7a3903a09756f601fe24cd1c03a868628a88875", - [ - "css/css-break/grid/monolithic-overflow-003.tentative.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "monolithic-overflow-004.tentative.html": [ - "208100619c37518bacb46abcc683947fea38cfd1", - [ - "css/css-break/grid/monolithic-overflow-004.tentative.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "monolithic-overflow-005.html": [ - "069ffb5b212e4b3316485422a423c6aad7a878f8", - [ - "css/css-break/grid/monolithic-overflow-005.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "monolithic-overflow-006.html": [ - "af4cfb1216b81fc4f4460ff20736e3e9e528f0a9", - [ - "css/css-break/grid/monolithic-overflow-006.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "monolithic-overflow-007.html": [ - "906ad29fc16f54007a4032b5fa55d89b525ff25f", - [ - "css/css-break/grid/monolithic-overflow-007.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "monolithic-overflow-008.html": [ - "6e2caf60ce825800d738a938a429a3e41fa0552e", - [ - "css/css-break/grid/monolithic-overflow-008.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "monolithic-overflow-009.html": [ - "e3416da195115ace4d5fb30a71983b854be70e29", - [ - "css/css-break/grid/monolithic-overflow-009.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "subgrid": { - "subgrid-container-fragmentation-001.html": [ - "959ff4a9053a20335081e6a7675845095f5b5a74", - [ - "css/css-break/grid/subgrid/subgrid-container-fragmentation-001.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "subgrid-container-fragmentation-002.html": [ - "9b28b37b4215759f2f5a5c1cff4774887b0da1b5", - [ - "css/css-break/grid/subgrid/subgrid-container-fragmentation-002.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "subgrid-container-fragmentation-003.html": [ - "3f1381a7b21db86f2dd727ed4785c758393769a9", - [ - "css/css-break/grid/subgrid/subgrid-container-fragmentation-003.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "subgrid-container-fragmentation-004.html": [ - "67c291fbc34e20f7edc020da2714ad82a8e989ad", - [ - "css/css-break/grid/subgrid/subgrid-container-fragmentation-004.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "subgrid-container-fragmentation-005.html": [ - "37babe299110bb5bbf488722ae3bafd5f68ba780", - [ - "css/css-break/grid/subgrid/subgrid-container-fragmentation-005.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "subgrid-item-fragmentation-001.html": [ - "1a26d816d0f99084d56beac62a8b46c73315c2bb", - [ - "css/css-break/grid/subgrid/subgrid-item-fragmentation-001.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "subgrid-item-fragmentation-002.html": [ - "24f7d997a3d81bab4d8bb729ff1db1c78ecda4ca", - [ - "css/css-break/grid/subgrid/subgrid-item-fragmentation-002.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "subgrid-item-fragmentation-003.html": [ - "49f0b5fc76568f8b1bdde0f621069ce54b0ff543", - [ - "css/css-break/grid/subgrid/subgrid-item-fragmentation-003.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "subgrid-item-fragmentation-004.html": [ - "85ed105f9605542ff0550b658ceb7405c0f0cb20", - [ - "css/css-break/grid/subgrid/subgrid-item-fragmentation-004.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "subgrid-item-fragmentation-005.html": [ - "3832f0d16e148ceef8176817abb60f3e00235844", - [ - "css/css-break/grid/subgrid/subgrid-item-fragmentation-005.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ] - } - }, - "increase-fragmentainer-size-tall-border.html": [ - "b7e716b23c4e7db17ef667f30c771d2d1df1cb9a", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/whitesquare-ref.html", "==" ] ], {} ] ], - "ink-overflow-002.html": [ - "8af605efea87b618007641729bd3b579fcb654eb", + "oklch-010.html": [ + "b5f9ac206b45eb031ac0330fef22923a319cf472", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/blacksquare-ref.html", "==" ] ], {} ] ], - "inline-with-float-001.html": [ - "b6a6e1958ff9bb8cd216af572cf3a092fa9a3ac8", + "oklch-011.html": [ + "6944867cd8d434eeebe30038cd6ececc26e38428", [ - "css/css-break/inline-with-float-001.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/greensquare-ref.html", "==" ] ], {} ] ], - "inline-with-float-002.html": [ - "d9235b421a16f783ad58505f157682a5a739eae7", + "oklch-l-almost-0.html": [ + "c171befe6428ffcd19c82761f0389a04cbdd3dbc", [ - "css/css-break/inline-with-float-002.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/oklch-l-almost-0-ref.html", "==" ] ], {} ] ], - "inline-with-float-004.html": [ - "6b404d9570005a327bd0943334ca518b479e5175", + "oklch-l-almost-1.html": [ + "c98cea292f9f5c7a79db3d0e88ab8427cf377c1a", [ - "css/css-break/inline-with-float-004.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/oklch-l-almost-1-ref.html", "==" ] ], {} ] ], - "line-after-unbreakable-float-after-padding.html": [ - "d3a4018cd809fc09eb68c1b25f4dda4736e64131", + "oklch-l-over-1-1.html": [ + "c734723541d10f7ab0c2d2b18995c70ba1aff8ec", [ null, [ [ - "/css/css-break/line-after-unbreakable-float-after-padding-ref.html", + "/css/css-color/oklch-l-over-1-ref.html", "==" ] ], {} ] ], - "line-pushed-by-float-000.html": [ - "1df1c06cc144881a68760ed9031d65f9d9e48009", + "oklch-l-over-1-2.html": [ + "59eac2b367764b855952c152de3bce8c627e548f", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/oklch-l-over-1-ref.html", "==" ] ], {} ] ], - "line-pushed-by-float-001.html": [ - "49b185349ee1c15b18d75349f1345149683c5548", + "opacity-overlapping-letters.html": [ + "65ab3742de39205341e04b18001deea3f7be192d", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/opacity-overlapping-letters-ref.html", "==" ] ], {} ] ], - "margin-after-overflowed-block.html": [ - "26a2eb22aa69b134847dcb8cc3305625bd47100b", + "out-of-gamut-legacy-rgb.html": [ + "e872dec314cba8e0bef568730fc83f36098d97b8", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/out-of-gamut-legacy-rgb-ref.html", "==" ] ], {} ] ], - "margin-at-break-001.html": [ - "79edf59696eac2b41c33099941ceec52ec1ea080", + "predefined-001.html": [ + "dff6bd9a11130b4972d5d283d96fb6bc793f5dd2", [ - "css/css-break/margin-at-break-001.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/greensquare-090-ref.html", "==" ] ], {} ] ], - "margin-at-break-002.html": [ - "add4d831d10d2556e162485eb37de2552485cf13", + "predefined-002.html": [ + "9ed4b392d1ee7a92cb0afea734d741382e8763f4", [ - "css/css-break/margin-at-break-002.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/greensquare-090-ref.html", "==" ] ], {} ] ], - "margin-at-break-003.html": [ - "18bc4dbd24fb62c8d87dfde676a3123186a85137", + "predefined-005.html": [ + "02eb39ffffb69a6626492aa8df1be7e72b5db175", [ - "css/css-break/margin-at-break-003.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/greensquare-090-ref.html", "==" ] ], {} ] ], - "margin-at-break-004.html": [ - "59e650e5d5caf8dca43f0f170d7a1b22f6561eac", + "predefined-006.html": [ + "bfbccbcb14b6d2c2d0e7b7f7f0b34489e9c374bb", [ - "css/css-break/margin-at-break-004.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/greensquare-090-ref.html", "==" ] ], {} ] ], - "margin-at-break-005.html": [ - "9f47728c66622ee681be59bd247523f482315865", + "predefined-007.html": [ + "c008fef5ca9df0baabf359872c4d81080f29e03c", [ - "css/css-break/margin-at-break-005.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/greensquare-090-ref.html", "==" ] ], {} ] ], - "monolithic-content-with-forced-break-001.html": [ - "75b676d0ba08ab831d100ba1bc3bb87c62142abf", + "predefined-008.html": [ + "00bbc6249dd0a72c9e274369d7bfe6a837bbfe76", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/greensquare-090-ref.html", "==" ] ], {} ] ], - "monolithic-content-with-forced-break-002.html": [ - "1df3078aa1a8e6e115172f4ce93e0b50d8e5fa7e", + "predefined-009.html": [ + "27d818e817ec255fcc8126caff035ede6025db14", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-color/greensquare-090-ref.html", "==" ] ], {} ] ], - "monolithic-content-with-forced-break-003.html": [ - "deabd8fde26d52caca9b58e91750a5006a50821f", + "predefined-010.html": [ + "391c001273832bd5c9e316c90a3542cf552a9cec", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-color/greensquare-090-ref.html", "==" ] ], {} ] ], - "monolithic-overflow-001.tentative.html": [ - "db285a929c8a7fa75b3c5546b127227ec6b2708d", + "predefined-011.html": [ + "78065d990f4340ff018d8432a7ba553f9dcb7f87", [ - "css/css-break/monolithic-overflow-001.tentative.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/greensquare-090-ref.html", "==" ] ], {} ] ], - "monolithic-overflow-002.tentative.html": [ - "387af9c5016a315b9e23bd34f88f8b45a9dbfa82", + "predefined-012.html": [ + "70b92df6bcdd136339641ee089ac4394c469c952", [ - "css/css-break/monolithic-overflow-002.tentative.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/greensquare-090-ref.html", "==" ] ], {} ] ], - "monolithic-overflow-003.tentative.html": [ - "02210aee3d229b8c897951566961797f328e9cac", + "predefined-016.html": [ + "f80e60537015c34235bc7b707a65c1acc14304d7", [ - "css/css-break/monolithic-overflow-003.tentative.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/greensquare-090-ref.html", "==" ] ], {} ] ], - "monolithic-overflow-004.tentative.html": [ - "9a190810af8daa9593c78237da9bb77320cbcafd", + "prophoto-rgb-001.html": [ + "ca4c866c98fab7fabc7d0a20ac042a409496d77f", [ - "css/css-break/monolithic-overflow-004.tentative.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/greensquare-ref.html", "==" ] ], {} ] ], - "monolithic-overflow-005.tentative.html": [ - "f1667a15fd5cd73e8a9eb0824f910452454cb4f1", + "prophoto-rgb-002.html": [ + "46e5445d04c7454ff3c3931a75b3a7a64e916627", [ - "css/css-break/monolithic-overflow-005.tentative.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/blacksquare-ref.html", "==" ] ], {} ] ], - "monolithic-overflow-006.tentative.html": [ - "200f271dc48e6f63f242359cff31e1a21329eb60", + "prophoto-rgb-003.html": [ + "3a9ede14588c504c34b7ab6c590eecb8311aa753", [ - "css/css-break/monolithic-overflow-006.tentative.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/prophoto-rgb-003-ref.html", "==" ] ], {} ] ], - "monolithic-with-overflow-lr.html": [ - "cb9d0fbcfe60de8fc479159c233239e5bb272ed6", + "prophoto-rgb-004.html": [ + "7912ff6dfb50a811fcf104356029b0a5cba5504d", [ - "css/css-break/monolithic-with-overflow-lr.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/prophoto-rgb-004-ref.html", "==" ] ], {} ] ], - "monolithic-with-overflow-rl.html": [ - "47720ff5c60fb47c718be84c29df643839f0ece4", + "prophoto-rgb-005.html": [ + "73e5cc80866d22bf6e0702a41b35800bfd33b0d3", [ - "css/css-break/monolithic-with-overflow-rl.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/greensquare-display-p3-ref.html", "==" ] ], {} ] ], - "monolithic-with-overflow.html": [ - "e803ad62cc282aa1234af3e1476812971e2abb4e", + "rec2020-001.html": [ + "b51a458c11ab8acd4cc3822682cb0399b8c53e69", [ - "css/css-break/monolithic-with-overflow.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/greensquare-ref.html", "==" ] ], {} ] ], - "orphans-in-parallel-flow.html": [ - "0cc084acf2eeb5878e482fb85a64d8667ee0b8b4", + "rec2020-002.html": [ + "bca9f50436ed1e77405d715ad58b115e60736d59", [ - "css/css-break/orphans-in-parallel-flow.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/blacksquare-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-001.html": [ - "0322f5171014e162ee0870574166e78624602fab", + "rec2020-003.html": [ + "6c6fc9d738b4eccd609ced0c52a1dd91be7e4998", [ null, [ [ - "/css/css-break/out-of-flow-in-multicolumn-001-ref.html", + "/css/css-color/rec2020-003-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-002.html": [ - "0138a3a41db6775eadbbde28d43a09c2481de48a", + "rec2020-004.html": [ + "4719ba764ce0017bce56ae5c8ac6cb5b69391859", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/rec2020-004-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-003.html": [ - "b37bfad7b73c553cc15648f610a2ce8b3365a5e9", + "rec2020-005.html": [ + "74e2305e338ad0f4e395748c1cdf2de8e630c1f5", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/greensquare-display-p3-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-004.html": [ - "f2e4aa97309b2b016160b6c8918a7a520402f979", + "relative-currentcolor-a98rgb-01.html": [ + "b264aff7a4af535e800bc13a53bdad6a6f7e7cf1", [ null, [ [ - "/css/css-break/out-of-flow-in-multicolumn-004-ref.html", + "/css/css-color/relative-green-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-005.html": [ - "a87a074d6c31f5db8ea5468ced35603f061cc323", + "relative-currentcolor-displayp3-01.html": [ + "d366da215fa984777a496413cf507db586d651fd", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/relative-green-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-006.html": [ - "d724ad013729d3343cdf675f4d216cc9a9a62c70", + "relative-currentcolor-hsl-01.html": [ + "2b5e06322ac03be97cd111d07005aabd15d18fb9", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/relative-green-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-007.html": [ - "0e6988c3ff470b66e76193b646bbec55096717a4", + "relative-currentcolor-hsl-02.html": [ + "dba5d49350148be67cebdfc656942d258d295249", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/relative-green-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-008.html": [ - "98c7764569919918e65a5e4abdcb9ac696b613d4", + "relative-currentcolor-hwb-01.html": [ + "7c757e1d0f014ae61085f103168a6497838968ea", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/relative-green-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-009.html": [ - "4db33effbf68a75de3964db66fb6a7618c4233fd", + "relative-currentcolor-lab-01.html": [ + "da59cccec124e1c2ea5b1334de290f6a4b8d118c", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/relative-green-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-010.html": [ - "5ae87e703ded3c28db9c4b90d148a20365050127", + "relative-currentcolor-lch-01.html": [ + "be734812f63ab10915f0616fb1eed6199f735108", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/relative-green-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-011.html": [ - "17e8908e3762440666fa4d2fc863ddd0b1b5e072", + "relative-currentcolor-oklab-01.html": [ + "94d88d384c158d0e566dde51b54ead58213fc7d8", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/relative-green-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-012.html": [ - "4e59979db2e701bf83e6eb8935b376fc903af6f4", + "relative-currentcolor-oklch-01.html": [ + "0582817c60b196985dcf00bb4ebf7cf1810644b0", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/relative-green-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-013.html": [ - "6580a65b5004cb51f7a2aeb22c0bc291d1caadf7", + "relative-currentcolor-prophoto-01.html": [ + "973cd9c756ffad8f13822311392678cd2c406518", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/relative-green-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-014.html": [ - "b6cede0400fc8c9fdc4ef136a7d3326056bda482", + "relative-currentcolor-rec2020-01.html": [ + "820d9faf457e3f89cb78f33a8182fff2be7bc960", [ null, [ [ - "/css/css-break/out-of-flow-in-multicolumn-014-ref.html", + "/css/css-color/relative-green-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-015.html": [ - "e2dec2241f42b1e91f0518b9329b3bdcfc9131fa", + "relative-currentcolor-rec2020-02.html": [ + "a323370012c4a79af64fe29cd4affdf1422d3cb3", [ - "css/css-break/out-of-flow-in-multicolumn-015.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/relative-rec2020-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-016.html": [ - "26590bc9064268a0e9188be36011e5f60b38f159", + "relative-currentcolor-rgb-01.html": [ + "5ad90529c886999cd32ec02ecd0808bc67505ff4", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/relative-green-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-017.html": [ - "aa56a7cddfcee78a9f57d350a579690953d0ca34", + "relative-currentcolor-rgb-02.html": [ + "b5ccce19f99b4601698844a305b491488e579e5b", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/relative-green-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-018.html": [ - "8c42d66a05553139e753e6b72912f506b60bfa12", + "relative-currentcolor-xyzd50-01.html": [ + "3caa71c84b58d627b0db5d83807b9affd742c72a", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/relative-green-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-019.html": [ - "6506236ebe3d5703283649bb4672d822567c52a4", + "relative-currentcolor-xyzd65-01.html": [ + "7a857ce0cd8ca2514182c59c24c5e751bafa5688", [ null, [ [ - "/css/css-break/out-of-flow-in-multicolumn-019-ref.html", + "/css/css-color/relative-green-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-020.html": [ - "23b5019bb8ce216be71507f94c2c289f32ea36c7", + "rgb-001.html": [ + "3e5900167789039a0497dc87ff1a7277514e745c", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/greensquare-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-021.html": [ - "05ce3d98339afbfba6103e4f779368e3a3d4d604", + "rgb-002.html": [ + "c87f7878d995a255e97349e82fcac88669d0da40", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/greensquare-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-022.html": [ - "71a0abb77c84f35d8ac6581e928a236edda6a5d9", + "rgb-003.html": [ + "5fc0fbfe2895179bed2b9bc0ec596c88ed0ca769", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/greensquare-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-023.html": [ - "3499a67f8736fbf28f690f55edcfda90321ca266", + "rgb-004.html": [ + "d4078f30e474a3c752dd528d05a7bf79181a4954", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/greensquare-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-024.html": [ - "830c5996771fe9f59d1a7ee7712a3cc05c9bcb29", + "rgb-005.html": [ + "ec5e2f5b94615e14456b8add89e47d4e69f1969f", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/greensquare-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-025.html": [ - "c7369e2a9668bab2eebecbc7ad9ce34080ee66c8", + "rgb-006.html": [ + "45b11138e3ef7821caa1f0efac985e2e323c753d", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/greensquare-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-026.html": [ - "e852c095d77a2dad1c20940eeebb49ab0882c44e", + "rgb-007.html": [ + "fd881c3184f9f33301e26c4b3002bd6ef8e0b272", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/greensquare-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-027.html": [ - "ffac90b2e7481e4a915391ed4ad8e9e35c7c8eb3", + "rgb-008.html": [ + "868427535677a53e734e2a2defb8c066f1023058", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/greensquare-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-028.html": [ - "b5378e2e488e8b98955ec7bf79c5c5acc0f4f5e0", + "rgba-001.html": [ + "3f9989a4131b4626c1e0b9c798d5cbb34bdf919e", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/greensquare-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-029.html": [ - "6de88c613e45f374a6eee1b764a9f5c73b93f301", + "rgba-002.html": [ + "3a734bdc3036ce406a09312b9aed6dc146514ff8", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/greensquare-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-030.html": [ - "7737e8ef672544eca58f4751908321ae8c401066", + "rgba-003.html": [ + "5204931df55ec909466f84a4f453209571d11183", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/greensquare-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-031.html": [ - "aaa581c30e4bb971bdf69cea7b3f522aca864d70", + "rgba-004.html": [ + "ce9cf48ba04a2986a7cb059b79e907d0be22b448", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/greensquare-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-032.html": [ - "b68f951af7d149e49ca86b48a9529c1a982141f3", + "rgba-005.html": [ + "579b57a0683315e2316fc42ba2f8bd064739b27c", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/greensquare-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-033.html": [ - "e1ecebe91bc2139cbae6efcf6b830afdd4d4ef8a", + "rgba-006.html": [ + "b7b371952a61a96978f9465c94294bef5f83215c", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/greensquare-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-034.html": [ - "286f6f4340d7535e6e0a5d74f5c7b1749f8ad983", + "rgba-007.html": [ + "cca349781b7d2a96d9056c732900841e975112b5", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/greensquare-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-035.html": [ - "f1fff4031b8680efbb666ede87b54376cc908ce3", + "rgba-008.html": [ + "8d6c85116648e4cbeebc983532c720d9f7196a7e", [ - "css/css-break/out-of-flow-in-multicolumn-035.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/greensquare-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-036.html": [ - "d64f8b5974fce9166ba5656abf253d31a9878847", + "srgb-linear-001.html": [ + "94f33af04d78ab92ddf037dfb35f7010bd4fa670", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/greensquare-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-037.html": [ - "215b44f602676b4071a252a48760aefb6b251646", + "srgb-linear-002.html": [ + "bd221a64cb2c6806ffeb078340ea5d9c94e4e040", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/blacksquare-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-038.html": [ - "189de988c7c9c9b1b817bb8d27c9841496308f89", + "srgb-linear-003.html": [ + "654549a53711c1693d785c79b9787cd28ddaa530", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/srgb-linear-003-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-039.html": [ - "9eaa9f7320f1fd6b3cfa22091b78827cee276ae3", + "srgb-linear-004.html": [ + "739e3877f124eeb7a4a80035f48961ed2d028b52", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/srgb-linear-004-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-040.html": [ - "6b6a73a5d9f268e2496efa25554291b2bc59b2c4", + "system-color-hightlights-vs-getSelection-001.html": [ + "12495cd7adbcffa40b27d5d874e4e1040596dd96", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/reference/system-color-hightlights-vs-getSelection-001-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-041.html": [ - "6bf7ffb056aa0fe6176d0b4b5dca6bacbf3f25a2", + "system-color-hightlights-vs-getSelection-002.html": [ + "f4025cd3f0382a11875d322d2d9e89b8704b4a00", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/reference/system-color-hightlights-vs-getSelection-002-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-042.html": [ - "4539201e642457b6e9d859f8ecec142779ca17b1", + "t31-color-currentColor-b.xht": [ + "b4ff486168877f9eb7326bb8648b0d19abc5d8ff", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/t31-color-currentColor-b-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-043.html": [ - "bdda35d0e36c5100761b49589cd83254fc3f8eeb", + "t31-color-text-a.xht": [ + "ecc6410c8d36289462d5ad8d58603e4a502bd78c", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" + "/css/css-color/t31-color-text-a-ref.xht", + "!=" ] ], {} ] ], - "out-of-flow-in-multicolumn-044.html": [ - "d06f4040fb4865eb51e81f2a5b6526b8874394c4", + "t32-opacity-basic-0.0-a.xht": [ + "1f08e1729c00386bd8f1e3f1727c4da1257ebd15", [ - "css/css-break/out-of-flow-in-multicolumn-044.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/t32-opacity-basic-0.0-a-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-045.html": [ - "c4cda499c1d3ffc40ef59e9e7db05373194028fa", + "t32-opacity-basic-0.6-a.xht": [ + "541964f8d6131e3b47b0edf6ea867cd331603a5d", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/t32-opacity-basic-0.6-a-ref.xht", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-046.html": [ - "16caaf849c615e4f8ca1546a10c2465accf1dcb9", + "t32-opacity-basic-1.0-a.xht": [ + "4df4574eca940a905d04eac88b217881d8b2204a", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/t32-opacity-basic-1.0-a-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-047.html": [ - "496c3bdaefacf0bc2f0fd47f0421c972684478db", + "t32-opacity-clamping-0.0-b.xht": [ + "79a7637e234d87f4953eb12edc2cebb82f7ef1a4", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/t32-opacity-basic-0.0-a-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-048.html": [ - "b96a5c5e31e1c34aa6c91787ee2caa37175bde89", + "t32-opacity-clamping-1.0-b.xht": [ + "60504ec62a3d356131046c14203c8c4bb9ec672f", [ - "css/css-break/out-of-flow-in-multicolumn-048.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/t32-opacity-clamping-1.0-b-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-049.html": [ - "3228868a8ae8cfda366e06006b3bdcb78fe9eefe", + "t32-opacity-offscreen-b.xht": [ + "e9ba0c7d94db213d22692462df6229aaa2a8ccdf", [ - "css/css-break/out-of-flow-in-multicolumn-049.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/t32-opacity-offscreen-b-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-050.html": [ - "c213e0c65502752dce4e76d749d1e25cc89534ba", + "t32-opacity-offscreen-multiple-boxes-1-c.xht": [ + "5920d305e53a968ca58764e99db86e8a85d04e68", [ - "css/css-break/out-of-flow-in-multicolumn-050.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/t32-opacity-offscreen-multiple-boxes-1-c-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-051.html": [ - "84e7a22f7455aa4d0b2afdc890098f5084c6dfc4", + "t32-opacity-offscreen-multiple-boxes-2-c.xht": [ + "ce02031a55e5ae25f8df275250f585b012166c3f", [ - "css/css-break/out-of-flow-in-multicolumn-051.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/t32-opacity-offscreen-multiple-boxes-2-c-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-052.html": [ - "b45aebb96c0f4de8276bf233a05c7350df9ee182", + "t32-opacity-offscreen-with-alpha-c.xht": [ + "035609e8a46aea92633b7b71f9bc40ba58a13569", [ - "css/css-break/out-of-flow-in-multicolumn-052.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/t32-opacity-offscreen-with-alpha-c-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 1 + ], + [ + 0, + 5120 + ] + ] + ] + ] + } ] ], - "out-of-flow-in-multicolumn-053.html": [ - "ed74f0a51d18457717b8a183db6b1eec91296869", + "t32-opacity-zorder-c.xht": [ + "a6896d54fe5150bfe0815141c1d3dfb0c5e45486", [ - "css/css-break/out-of-flow-in-multicolumn-053.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/t32-opacity-zorder-c-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-054.html": [ - "d55b62f01da2b41606d18e140188ad9c68516bca", + "t41-html4-keywords-a.xht": [ + "b866dd55c1ed5c82802f7b7445f52c9e82fb76d7", [ - "css/css-break/out-of-flow-in-multicolumn-054.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/t41-html4-keywords-a-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-055.html": [ - "fdb080ad5094a30f20446331059400a03de3082b", + "t421-rgb-clip-outside-gamut-b.xht": [ + "410a6a9430e7723af075ed9d1a08223e9ffbd2e5", [ - "css/css-break/out-of-flow-in-multicolumn-055.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/t421-rgb-clip-outside-gamut-b-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-056.html": [ - "e9c22901f7dfa2a7fdef0567f2e77177803516d4", + "t421-rgb-func-int-a.xht": [ + "c37dfd91afa06f9701d4c924ffc051554e2e035f", [ - "css/css-break/out-of-flow-in-multicolumn-056.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/t422-rgba-func-int-a-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-057.html": [ - "ce6b66544eb2981d85c6898dd9218b00e5b69b11", + "t421-rgb-func-no-mixed-f.xht": [ + "59a375b75d3ff874a32fec5c7dec9809eaf68d20", [ - "css/css-break/out-of-flow-in-multicolumn-057.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/t422-rgba-func-no-mixed-f-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-058.html": [ - "a8ddcdc8db3fb97ec2ffab5cb32f39742751e41b", + "t421-rgb-func-pct-a.xht": [ + "51a4c9112d0be42bf8bf3905d20599a07d47f494", [ - "css/css-break/out-of-flow-in-multicolumn-058.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/t422-rgba-func-int-a-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-059.html": [ - "3575a75d7b8f06f1facbf11ef7f68dd46da30145", + "t421-rgb-func-whitespace-b.xht": [ + "29c513a13297b13d9a1eb3cddcac0b674eb94409", [ - "css/css-break/out-of-flow-in-multicolumn-059.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/t422-rgba-func-whitespace-b-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-060.html": [ - "8de72c6d67a49bf9b6b21e1a6864df49af57c4a3", + "t421-rgb-hex-parsing-f.xht": [ + "f3f3aad63c3d68543eb77482ea028ef1ed48a4ac", [ - "css/css-break/out-of-flow-in-multicolumn-060.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/t422-rgba-func-no-mixed-f-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-061.html": [ - "86e515b8439d09d1a318dea4b1b88c602bc41414", + "t421-rgb-hex3-a.xht": [ + "b21e4887a36a64722d687b014fa800219d8f293c", [ - "css/css-break/out-of-flow-in-multicolumn-061.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/t422-rgba-func-int-a-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-062.html": [ - "e01f4a6239c0edca893cbf7714b58e2a59cc08e0", + "t421-rgb-hex3-expand-b.xht": [ + "71dc06d30d1899e26fc02741e2c76d1383e47cf7", [ - "css/css-break/out-of-flow-in-multicolumn-062.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/t421-rgb-hex3-expand-b-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-063.html": [ - "7828e4a7feb5bad7ebd968fcb36ab20bb0097b01", + "t421-rgb-hex6-a.xht": [ + "a88e181b45d7e5f2def796e1de612c553eaff71c", [ - "css/css-break/out-of-flow-in-multicolumn-063.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/t422-rgba-func-int-a-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-064.html": [ - "19afe87f8853478e088426f0f68956663571d08a", + "t421-rgb-values-meaning-b.xht": [ + "9d12b1b2e9b525d250104db80dc331301fb0fc46", [ - "css/css-break/out-of-flow-in-multicolumn-064.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/t421-rgb-values-meaning-b-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-065.html": [ - "13a1bdbafb792a9f2f765b59e72164865bd119cc", + "t422-rgba-a0.0-a.xht": [ + "3b7c934d15d8928432443049c8952fe1285339f8", [ - "css/css-break/out-of-flow-in-multicolumn-065.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/t32-opacity-basic-0.0-a-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-066.html": [ - "024b93f54002a61d04f50144603ddd4b793b9df2", + "t422-rgba-a0.6-a.xht": [ + "a710a0b62513969e8a7479a81fef70d09d87d956", [ - "css/css-break/out-of-flow-in-multicolumn-066.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/t422-rgba-a0.6-a-ref.xht", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-067.html": [ - "4d38c4608e222edf0b1739a26f3aa82164a5d144", + "t422-rgba-a1.0-a.xht": [ + "b974af96bfff98e253c0155b3d8cece26e057f47", [ - "css/css-break/out-of-flow-in-multicolumn-067.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/t422-rgba-a1.0-a-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-068.html": [ - "6694eba5398acd0f3dee2c19ab92a28794f44a0b", + "t422-rgba-clamping-a0.0-b.xht": [ + "cd9810fe395e1f09bf2b98bf997443b2126ceb65", [ - "css/css-break/out-of-flow-in-multicolumn-068.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/t422-rgba-clamping-a0.0-b-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-069.html": [ - "7fdb32a2709348fe17a16e174cad06c448356116", + "t422-rgba-clamping-a1.0-b.xht": [ + "662bd3e6dba35deb8ac8c97322462f6ddd939818", [ - "css/css-break/out-of-flow-in-multicolumn-069.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/t422-rgba-clamping-a1.0-b-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-070.html": [ - "1986ab81ff1d09c28676b4b57def127a85a849bf", + "t422-rgba-clip-outside-device-gamut-b.xht": [ + "81ac05b38809daff4a514877bd406c26b125e59b", [ - "css/css-break/out-of-flow-in-multicolumn-070.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/t422-rgba-clip-outside-device-gamut-b-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-071.html": [ - "629ebda48b8fcec93af4bd79d26b3001b783cb42", + "t422-rgba-func-int-a.xht": [ + "c85bad25e39351b3dfb78e6cfbac5fb583dd0098", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/t422-rgba-func-int-a-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-072.html": [ - "91f3da2c4b20caad40b1e86428b9d9a1bff30357", + "t422-rgba-func-no-mixed-f.xht": [ + "1bfd92bdbc628456425fe6371d82ed770d554d2c", [ - "css/css-break/out-of-flow-in-multicolumn-072.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/t422-rgba-func-no-mixed-f-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-073.html": [ - "57093e2264a39d49b9dd107b710d45058da95995", + "t422-rgba-func-pct-a.xht": [ + "9070bed11a691e4e13202c7b1821be269e6c27f5", [ - "css/css-break/out-of-flow-in-multicolumn-073.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/t422-rgba-func-int-a-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-074.html": [ - "1c6882d4b6e80b2c9dbaee2202ca61ad31b616cc", + "t422-rgba-func-whitespace-b.xht": [ + "ca80260b757e232fedaadcf16f53746582fb2a2e", [ - "css/css-break/out-of-flow-in-multicolumn-074.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/t422-rgba-func-whitespace-b-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-075.html": [ - "34cf1ea74dda8a56c49a59ded805af83de84a75f", + "t422-rgba-values-meaning-b.xht": [ + "2149ef398eda4e8d06b404e220fda4b859e49309", [ - "css/css-break/out-of-flow-in-multicolumn-075.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/t422-rgba-values-meaning-b-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-076.html": [ - "7f8858d9f379b84abb36e2ee39c909a03897a99c", + "t423-transparent-1-a.xht": [ + "d8680884bfcd3be39fa94a7cfc3da80584419cfa", [ - "css/css-break/out-of-flow-in-multicolumn-076.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/t422-rgba-clamping-a0.0-b-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-077.html": [ - "f37858bb2649fda65899a2f4741c633f20f2b93c", + "t423-transparent-2-a.xht": [ + "0427ec5ff6819f9d25ce5d48a264d096cbd8b95d", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/t423-transparent-2-a-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-078.html": [ - "b19bb9f5d10f6da3ecc61015b6bce0644a0fbdf3", + "t424-hsl-basic-a.xht": [ + "9fc453c939cf99167c034817a29ec59f240ecc85", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/t424-hsl-basic-a-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-079.html": [ - "f4d4c32b99e6978cdedcfcd134f36292dc87ff77", + "t424-hsl-h-rotating-b.xht": [ + "b310316f68a49e588863cccd96561173893fca6e", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/t424-hsl-h-rotating-b-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-080.html": [ - "4b620ae4177a476f807e4ff6db3e278d5a0c7a96", + "t424-hsl-parsing-f.xht": [ + "ca89eae62d036ef6e4adee2bf88268c7655864c9", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/t424-hsl-parsing-f-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-081.html": [ - "218fa2ad3abac71ba5a9b22d58fb9d94beef17a2", + "t424-hsl-values-b-1.html": [ + "11d78a4afcc1380c8d4b7464b1c51399500f839c", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/t424-hsl-values-b-1-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-082.html": [ - "64080738706a77085d2a40fd63a1a476dc2caa5f", + "t424-hsl-values-b-10.html": [ + "6a18362610a1db849d51d4d3f3f6ec18836ace94", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/t424-hsl-values-b-10-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-083.html": [ - "d238720ad0c7954ba96901608db6454ba69da4b1", + "t424-hsl-values-b-11.html": [ + "c76e7bafeabda981cfbadff69cab032ca0444efb", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/t424-hsl-values-b-11-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-084.html": [ - "d3fef2ee2ba7d8078229420e92567fd803aaae94", + "t424-hsl-values-b-12.html": [ + "cba1cb9c4b33ae4a65e116effd5e4f40e14ef364", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/t424-hsl-values-b-12-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-085.html": [ - "eb8314c2d86684911911b23d2fb7d1a1fd323f66", + "t424-hsl-values-b-13.html": [ + "bf69977f5e4e505042828e4e44d91e5337442fbf", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/t424-hsl-values-b-13-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-086.html": [ - "17073077e21ef1a2559cc273048e58642dbf9904", + "t424-hsl-values-b-14.html": [ + "48fbe10210956b4166575845a6adca620d339969", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/t424-hsl-values-b-14-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-087.html": [ - "bd1c941f87074817a4e21ecbdfb541bb437b7614", + "t424-hsl-values-b-15.html": [ + "15f88c885c935b8f3e76c485a8f5696ef1ba8730", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/t424-hsl-values-b-15-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-088.html": [ - "9adffb15d48972e5c78090aa76dec2c80d649f44", + "t424-hsl-values-b-2.html": [ + "15e81d5f121719d24e036c98138d283384901cf3", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/t424-hsl-values-b-2-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-089.html": [ - "a13aad886d52d8c59559159c413a5316ec2105c9", + "t424-hsl-values-b-3.html": [ + "546b8bfc6f600c4ab0c37f19930687e1d6a9b773", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/t424-hsl-values-b-3-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-090.html": [ - "e6cf192dd3555a004c700fb6e25505afe8b05281", + "t424-hsl-values-b-4.html": [ + "9f981a44c9d59710323e3c02d2150328cefccb29", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/t424-hsl-values-b-4-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-091.html": [ - "4049412545c7017796e0f7bcda83b943d46af19e", + "t424-hsl-values-b-5.html": [ + "5d4e569db0e5da2d93886dcb48e7d177d8ad68c2", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/t424-hsl-values-b-5-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-092.html": [ - "b21bbee6eaa822db1e1a96e69d3071c56b46ba64", + "t424-hsl-values-b-6.html": [ + "9e54ba00227d96c354569147ded8a587ac6e0cfc", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/t424-hsl-values-b-6-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-093.html": [ - "7cd94c10b38fa299391af4802e58cce9c99178a2", + "t424-hsl-values-b-7.html": [ + "9b237d0b8ae9300418412263abbcb0c0e60c3a62", [ null, [ [ - "/css/css-break/out-of-flow-in-multicolumn-093-ref.html", + "/css/css-color/t424-hsl-values-b-7-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-094.html": [ - "1cb04aefea01cd63e2ac0edb2b809380f97978c5", + "t424-hsl-values-b-8.html": [ + "906857b8eeaafd1620f4ab4ce453bbd7d07da5fc", [ null, [ [ - "/css/reference/ref-filled-green-200px-square.html", + "/css/css-color/t424-hsl-values-b-8-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-095.html": [ - "3811791d09667b0e75538860be2589b9b35f7524", + "t424-hsl-values-b-9.html": [ + "eac48ff3d4e8c9744584e8fc3360e603a63bb337", [ null, [ [ - "/css/reference/ref-filled-green-200px-square.html", + "/css/css-color/t424-hsl-values-b-9-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-096.html": [ - "f5382d6d3d035970db69549914671637caa5d6c9", + "t425-hsla-basic-a.xht": [ + "435041b5fa9b0f003adb893e96550765f7effc3c", [ null, [ [ - "/css/reference/ref-filled-green-200px-square.html", + "/css/css-color/t425-hsla-basic-a-ref.xht", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-097.html": [ - "faac60705b50b5338fb43e5933ac1adae0ac1527", + "t425-hsla-h-rotating-b.xht": [ + "a192442be7ddda6501238fe98f4f988c8f3be50a", [ null, [ [ - "/css/reference/ref-filled-green-200px-square.html", + "/css/css-color/t425-hsla-h-rotating-b-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-098.html": [ - "390e86995d3740718fda1058810a5ab9c6588d0a", + "t425-hsla-parsing-f.xht": [ + "67ce55f4ac61cbf9b3d103078e6a329316397799", [ null, [ [ - "/css/reference/ref-filled-green-200px-square.html", + "/css/css-color/t424-hsl-parsing-f-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-099.html": [ - "8c75b2bf5db9bba1b8c02ecee644dc7a954c93ba", + "t425-hsla-values-b.xht": [ + "27ed578652f2e2dcc65565de8062ec300dd61131", [ null, [ [ - "/css/reference/ref-filled-green-200px-square.html", + "/css/css-color/t425-hsla-values-b-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-100.html": [ - "1bf71e832de9a2be139af258f6a4c25215d0a0b1", + "t43-svg-keywords-a.xht": [ + "9066863c9b7c8577a9f9c17ad41da8a030307cd3", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/t43-svg-keywords-a-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-101.html": [ - "ed7e1e234d8aa0a12a61b68e5de93d10ce7a4ce5", + "t44-currentcolor-background-b.xht": [ + "816d622e8ff119ccb9db6a0a789b88d3515f2943", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/t44-currentcolor-background-b-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-102.html": [ - "45cbc0b4533c7c87fed3be713474202fe29e1f47", + "t44-currentcolor-border-b.xht": [ + "3d7441e5f56e59eb91f3eae25721888c5e58e855", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/t44-currentcolor-border-b-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-103.html": [ - "b54cbcd85a88a6e845adec74daefd43349ee4f13", + "t44-currentcolor-inherited-c.xht": [ + "569a616e6219455f15b08d2c5cca84b2df918bb7", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/t44-currentcolor-inherited-c-ref.xht", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-104.html": [ - "27363ad2b55425b41a21af934e3d418f8c504d38", + "tagged-images-001.html": [ + "0af9c0ce51e109588772a291e7b0250549c7fbe8", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/009900-image-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-105.html": [ - "b5cc802239e1c2899d1536b972f56f4aacbd69c4", + "tagged-images-002.html": [ + "b7c76b35502e13e65c4e8204ea1f05d15940f0ea", [ null, [ [ - "/css/css-break/out-of-flow-in-multicolumn-105-ref.html", + "/css/css-color/009900-image-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-106.html": [ - "e97d947ea1c9565533cae2563b6fef15de8beff9", + "tagged-images-003.html": [ + "14f154b88acfd622c72f50f3d8f1fe4641a6ee00", [ null, [ [ - "/css/css-break/out-of-flow-in-multicolumn-106-ref.html", + "/css/css-color/greensquare-090-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-107.html": [ - "76aa32bb9ce478bffc02698534df25c38bb7655e", + "tagged-images-004.html": [ + "bd874c9717230264c16539b87dc821655cfb2734", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/greensquare-090-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-109.html": [ - "32707fe99a4a53df6c2ade30122dffb8b3a98e19", + "untagged-images-001.html": [ + "a1aafb759c0d5994cc45ddd9422a1f7e39fa66e8", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/009900-tagged-image-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-110.html": [ - "9da905d075a0060f154ca9967173b03b7ed7d673", + "xyz-001.html": [ + "6fdf98e2dfc9f6d5341d12e5367b3159127e5df3", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/greensquare-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-111.html": [ - "a7350ac0ada782cfa180f747bc2c691319618648", + "xyz-002.html": [ + "832a1948a2cb51c4d4c192d0b06520ddf61ce0a0", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/blacksquare-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-112.html": [ - "5c9be2f3947e1ee4fd41debfae690eac432f1fc7", + "xyz-003.html": [ + "d9f3326c582343b6ebaf181ba57f4eb2e706bc33", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/xyz-003-ref.html", "==" ] ], - {} - ] - ], - "out-of-flow-in-multicolumn-113.html": [ - "9495933b3d3f4ce404931fb8dcd53969a8088c22", + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 1 + ], + [ + 0, + 18432 + ] + ] + ] + ] + } + ] + ], + "xyz-004.html": [ + "e1e30c17d8bab6d7c10562e93ee721143136f89c", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/xyz-004-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-114.html": [ - "75c8447f59451077d285fa40afd7f303509518b5", + "xyz-005.html": [ + "a8a01e4065bf0489652a99368a1f8638f9855efc", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/greensquare-display-p3-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-115.html": [ - "8346477b257202ca4525956a959be3f47f12d6eb", + "xyz-d50-001.html": [ + "da5ad5090c3488854e65b0eaf4aa89d32bd37035", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/greensquare-ref.html", "==" ] ], {} ] ], - "out-of-flow-in-multicolumn-116.html": [ - "fac536a65b34163867de1aad2b7f7378046abb47", + "xyz-d50-002.html": [ + "140f25ebf202c203a51f78d8ff4792b24668b358", [ - "css/css-break/out-of-flow-in-multicolumn-116.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/blacksquare-ref.html", "==" ] ], {} ] ], - "overflow-clip-000.html": [ - "72b10f5cdd3092a042f1f90bff04e9428d61608e", + "xyz-d50-003.html": [ + "7630115187454cab97615eec49e59a6e446da285", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/xyz-d50-003-ref.html", "==" ] ], {} ] ], - "overflow-clip-001.html": [ - "8d084087447809981f7360de9a0dd9003930f1bd", + "xyz-d50-004.html": [ + "f4aa9a0a1d5730e5180fc06e6a21a9bb51908066", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/xyz-d50-004-ref.html", "==" ] ], {} ] ], - "overflow-clip-002.html": [ - "72f72f41cd4de59e4b0728c164a08fd97c465e7c", + "xyz-d50-005.html": [ + "f43c07b16ec1895026135256cb328fa6728ca468", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/greensquare-display-p3-ref.html", "==" ] ], {} ] ], - "overflow-clip-003.html": [ - "0d4b2956f11fb39f3be1290dc89765f76ef01764", + "xyz-d65-001.html": [ + "d3a976634768e284787201b9f256679cd578141e", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/greensquare-ref.html", "==" ] ], {} ] ], - "overflow-clip-004.html": [ - "772c4009e1e87c575fa6b96dec22b31ff076c27c", + "xyz-d65-002.html": [ + "eb237eda72e4fd6756cab88f2e8cc1f9c593ba75", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/blacksquare-ref.html", "==" ] ], {} ] ], - "overflow-clip-005.html": [ - "6eec83ad5f6ff92217851cb8efa48add0eba579c", + "xyz-d65-003.html": [ + "d5e5cda1f16809b1d8c0a22572ae2a316d3a30cb", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/xyz-d65-003-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 1 + ], + [ + 0, + 18432 + ] + ] + ] + ] + } ] ], - "overflow-clip-006.html": [ - "526577b7b98dfc6eece14055cbcf83e42652897e", + "xyz-d65-004.html": [ + "ddb2977ec80097d9db116e2fae576a50de1312e2", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/xyz-d65-004-ref.html", "==" ] ], {} ] ], - "overflow-clip-008.html": [ - "931adc755883a0d1a2a72cc9631fe6e754e6bb1a", + "xyz-d65-005.html": [ + "a99a5e9682bf36fd50c185fec9c0e5b4117dfb0e", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-color/greensquare-display-p3-ref.html", "==" ] ], {} ] - ], - "overflow-clip-009.html": [ - "611d65f59533df90a87ff248ecab72f689091c59", + ] + }, + "css-color-adjust": { + "rendering": { + "dark-color-scheme": { + "color-scheme-change-checkbox.html": [ + "b163b4a40c5ac75b728cf312dbd50e0f48169aa7", + [ + null, + [ + [ + "/css/css-color-adjust/rendering/dark-color-scheme/color-scheme-change-checkbox-notref.html", + "!=" + ] + ], + {} + ] + ], + "color-scheme-iframe-background-about-blank.tentative.html": [ + "f9ab24fdc19b54ab3ba062c4fcc6d0a5a2fbade2", + [ + null, + [ + [ + "/css/css-color-adjust/rendering/dark-color-scheme/color-scheme-iframe-background-about-blank-ref.html", + "==" + ] + ], + {} + ] + ], + "color-scheme-iframe-background-mismatch-alpha.html": [ + "bab634cfda765536a4b428146ff64a63cac851a9", + [ + null, + [ + [ + "/css/css-color-adjust/rendering/dark-color-scheme/support/dark-frame-alpha.html", + "==" + ] + ], + {} + ] + ], + "color-scheme-iframe-background-mismatch-opaque-cross-origin.sub.html": [ + "0485044ca4f2fc2083f965c6b31c1cb666294162", + [ + null, + [ + [ + "/css/css-color-adjust/rendering/dark-color-scheme/support/dark-frame-opaque.html", + "==" + ] + ], + {} + ] + ], + "color-scheme-iframe-background-mismatch-opaque.html": [ + "d984fdd245f8da340eaee3aa87bbcdef1f15e2e2", + [ + null, + [ + [ + "/css/css-color-adjust/rendering/dark-color-scheme/support/dark-frame-opaque.html", + "==" + ] + ], + {} + ] + ], + "color-scheme-iframe-background-mismatch-used-preferred.html": [ + "fb774c356429f75ac81c562560a1a3baab259981", + [ + null, + [ + [ + "/css/css-color-adjust/rendering/dark-color-scheme/color-scheme-iframe-background-mismatch-used-preferred-ref.html", + "==" + ] + ], + {} + ] + ], + "color-scheme-iframe-background.html": [ + "caef99cf2d983d91fbe9e2ce7e8a801aa9245bd8", + [ + null, + [ + [ + "/css/css-color-adjust/rendering/dark-color-scheme/color-scheme-iframe-background-ref.html", + "==" + ] + ], + {} + ] + ], + "color-scheme-iframe-preferred-page-dark.html": [ + "551bc7ec00d2e1598ef6a8a12dff63996aae2faa", + [ + "css/css-color-adjust/rendering/dark-color-scheme/color-scheme-iframe-preferred-page-dark.html", + [ + [ + "/css/css-color-adjust/rendering/dark-color-scheme/color-scheme-iframe-preferred-page-dark-ref.html", + "==" + ] + ], + {} + ] + ], + "color-scheme-iframe-preferred-page-light.html": [ + "20a874629b5af183cbfd5a4dbdb10fb72618ce31", + [ + "css/css-color-adjust/rendering/dark-color-scheme/color-scheme-iframe-preferred-page-light.html", + [ + [ + "/css/css-color-adjust/rendering/dark-color-scheme/color-scheme-iframe-preferred-page-light-ref.html", + "==" + ] + ], + {} + ] + ], + "color-scheme-iframe-preferred.html": [ + "1c8814b112492a0efaee5b8f944db1234a341131", + [ + null, + [ + [ + "/css/css-color-adjust/rendering/dark-color-scheme/color-scheme-iframe-preferred-ref.html", + "==" + ] + ], + {} + ] + ], + "color-scheme-table-border-currentcolor-responsive.html": [ + "1d42a4fddabe8c3337ced4f9ad9b676b4b25c09b", + [ + null, + [ + [ + "/css/css-color-adjust/rendering/dark-color-scheme/color-scheme-table-border-currentcolor-responsive-ref.html", + "==" + ] + ], + {} + ] + ], + "color-scheme-visited-link-initial.html": [ + "6412acdb9f138d5e37947c8e3113837664392826", + [ + null, + [ + [ + "/css/css-color-adjust/rendering/dark-color-scheme/color-scheme-visited-link-initial-ref.html", + "==" + ] + ], + {} + ] + ] + } + } + }, + "css-conditional": { + "at-media-001.html": [ + "b2f4781d0ccbe69cbafba3ea4f71f40ebc7e9043", [ - "css/css-break/overflow-clip-009.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-conditional/at-supports-001-ref.html", "==" ] ], {} ] ], - "overflow-clip-010.html": [ - "87f2cdd8003402ae4abad8cfe347325eb7a9d662", + "at-media-002.html": [ + "7ba46b3291a67a8c3b4447258e325784975b9828", [ - "css/css-break/overflow-clip-010.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-conditional/at-supports-001-ref.html", "==" ] ], {} ] ], - "overflow-clip-011.html": [ - "cea0110c229430d475449e80e8ad9417ca233f01", + "at-media-003.html": [ + "1b21765363387c3f53841a9aeef30980957987f4", [ - "css/css-break/overflow-clip-011.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-conditional/at-supports-001-ref.html", "==" ] ], {} ] ], - "overflow-clip-012.html": [ - "0038ce3235eed5d8f6ad0ddafcd6436d0dee966c", + "at-media-content-001.html": [ + "8ad16b4f2ef2f009a5cc51537ee1949ce5815034", [ - "css/css-break/overflow-clip-012.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-conditional/at-supports-001-ref.html", "==" ] ], {} ] ], - "overflow-clip-013.html": [ - "31137b58fbc4618f63dcb5b38d92e1cd058fea17", + "at-media-content-002.html": [ + "9e5cf43052faaea7644996be6cccafed1dc6fc0f", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-conditional/at-supports-001-ref.html", "==" ] ], {} ] ], - "overflow-clip-014.html": [ - "4edf112e43265cd13465b6e86e9e1c2f288cf78c", + "at-media-content-003.html": [ + "7d867a5b7e468c96e22bd27cb60d3381a564fdf5", [ - "css/css-break/overflow-clip-014.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-conditional/at-supports-001-ref.html", "==" ] ], {} ] ], - "overflow-clip-015.html": [ - "1eb114458c1bf5a1a69620a6ea3a1f746248d610", + "at-media-content-004.html": [ + "bfd3e8343243c37428eba8b8476dc8cead5b39ba", [ - "css/css-break/overflow-clip-015.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-conditional/at-supports-001-ref.html", "==" ] ], {} ] ], - "overflow-clip-016.html": [ - "4314c0135e26e6afe8659ce74fe24c14cf46281a", + "at-media-dynamic-001.html": [ + "8a1c93e4d2ba3546ac87bc2c6d29a69b6add8692", [ - "css/css-break/overflow-clip-016.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-conditional/at-supports-001-ref.html", "==" ] ], {} ] ], - "overflow-clip-017.html": [ - "1ab3cdd194f21f90699fe7f27c34a5614228ebb7", + "at-media-whitespace-optional-001.html": [ + "49fd608dd75d9cfc8f811b407a413f4bdba77541", [ - "css/css-break/overflow-clip-017.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-conditional/reference/background-lime.html", "==" ] ], {} ] ], - "overflowed-block-with-no-room-after-000.html": [ - "084e16fb38de072fb83f92ba01302a2e404cdd97", + "at-media-whitespace-optional-002.html": [ + "7ae37f5bf301de5439be3695d3212bd7ceb5fefb", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-conditional/reference/background-lime.html", "==" ] ], {} ] ], - "overflowed-block-with-no-room-after-001.html": [ - "48d028ecc2c9ce2924495ff8d037a538eb7b3dc3", + "at-supports-001.html": [ + "6ba1bd3e2b0e5e07f06d25f86046bc2daa0d4528", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-conditional/at-supports-001-ref.html", "==" ] ], {} ] ], - "overflowed-block-with-room-after-000.html": [ - "319f4af077f69e8fb1dfd59661ec71a8b27c072b", + "at-supports-002.html": [ + "4b703951e5b0a4a375420d47b4874f3aa500d317", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-conditional/at-supports-001-ref.html", "==" ] ], {} ] ], - "overflowed-block-with-room-after-001.html": [ - "625f06cb588e8904ab753f048dd1150d270033cf", + "at-supports-003.html": [ + "029ce3744ccaa8aace376539c5d79b51694c9128", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-conditional/at-supports-001-ref.html", "==" ] ], {} ] ], - "overflowed-block-with-room-after-002.html": [ - "cb06faec9c9f159ab5dd2db78717e6689e48c6ea", + "at-supports-004.html": [ + "f2cdfe3f164def302a9529f1d61712ad851077f9", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-conditional/at-supports-001-ref.html", "==" ] ], {} ] ], - "overflowed-block-with-room-after-003.html": [ - "dfd011109d72dbb515250895f048a130128366a9", + "at-supports-005.html": [ + "62475029b473d1c300399c5b2b32e2de03ea68d5", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-conditional/at-supports-001-ref.html", "==" ] ], {} ] ], - "overflowed-block-with-room-after-004.html": [ - "ba3d62241f1f1d2dba6e0971dddaa2430777dc34", + "at-supports-006.html": [ + "4e6ea9bcf88b07fe350d19e02c01c05094a8ad90", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-conditional/at-supports-001-ref.html", "==" ] ], {} ] ], - "parallel-flow-trailing-margin-001.html": [ - "a6391cd9d4738676417f69223038f9f603ea83d1", + "at-supports-007.html": [ + "975a84726d4e1a8daab0d35eece3781bf7c3342e", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-conditional/at-supports-001-ref.html", "==" ] ], {} ] ], - "parallel-flow-trailing-margin-002.html": [ - "a308ede37dcc383d3e86dae6163de66668a82878", + "at-supports-008.html": [ + "f133c3725180bb620dd3c0f01e644c2ba99ae013", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-conditional/at-supports-001-ref.html", "==" ] ], {} ] ], - "relpos-inline.html": [ - "a296f0ae7eb04e0b7fee52f9da9da84ff9ddd884", + "at-supports-009.html": [ + "2d53fd8a5a65b0e44c2d69d24499897269608b9e", [ null, [ [ - "/css/css-break/relpos-inline-ref.html", + "/css/css-conditional/at-supports-001-ref.html", "==" ] ], {} ] ], - "rounded-clipped-border.html": [ - "60f4dfd8ba64ddfa5b70b400414a31d5d24b0563", + "at-supports-010.html": [ + "468afe7e3e6a766a37a50a610e3dc6a3aa41baf7", [ - "css/css-break/rounded-clipped-border.html", + null, [ [ - "/css/css-break/rounded-clipped-border-ref.html", + "/css/css-conditional/at-supports-001-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 15 - ], - [ - 0, - 900 - ] - ] - ] - ] - } + {} ] ], - "ruby-000.html": [ - "0b4e5ea274e3e1012390e954c78dfb9bd506e25f", + "at-supports-011.html": [ + "02e744e4b88799146bb6afe0d78b1b27369d2f1d", [ - "css/css-break/ruby-000.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-conditional/at-supports-001-ref.html", "==" ] ], {} ] ], - "ruby-001.html": [ - "d302bca1c4694b3d06350eda9b66d459bac438ba", + "at-supports-012.html": [ + "e46e5a367d47f4fdf045ff8ecf5c8b696a17e6d8", [ - "css/css-break/ruby-001.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-conditional/at-supports-001-ref.html", "==" ] ], {} ] ], - "ruby-002.html": [ - "d17cc563f38ce7505066724f2a2c9bc7f7c38a5c", + "at-supports-013.html": [ + "1c5f633614a6673705edc4ba5256f26cfb787b22", [ - "css/css-break/ruby-002.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-conditional/at-supports-001-ref.html", "==" ] ], {} ] ], - "ruby-003.html": [ - "dc56458dd9e10645425bb4451f0d2ff8054b02ed", + "at-supports-014.html": [ + "c26d8057d4683ff6c9d1d77647574dc1280d2085", [ - "css/css-break/ruby-003.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-conditional/at-supports-001-ref.html", "==" ] ], {} ] ], - "soft-break-before-margin-001.html": [ - "6907c33586af3fa6e058fb95560d95d3799bb690", + "at-supports-015.html": [ + "a8a9019f259eabab5b4da028603e6092db7c6f68", [ - "css/css-break/soft-break-before-margin-001.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-conditional/at-supports-001-ref.html", "==" ] ], {} ] ], - "svg-with-transform.html": [ - "3aa7facf2d6a08e18a792b8739341b9bcc5014e5", + "at-supports-016.html": [ + "f8feaa470097a4932a3cd45f30ecaff63a8a0769", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-conditional/at-supports-001-ref.html", "==" ] ], {} ] ], - "table": { - "border-collapse-001.html": [ - "626935f24952deb6b03875a7686c15adc806ee14", - [ - "css/css-break/table/border-collapse-001.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "border-spacing-at-breaks.tentative.html": [ - "67588f28b02e258539c456d55af2f421cb6ba96a", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "break-after-table-cell-child.html": [ - "60e09248923e633610555d533961b4f557f420b2", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square-only.html", - "==" - ] - ], - {} - ] - ], - "break-after-table-cell.html": [ - "8f7e1ba1f3036e553191324ed29bc296672a6f76", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square-only.html", - "==" - ] - ], - {} - ] - ], - "break-avoidance-001.html": [ - "6dc765c82a7da8ddf9a32c1b644bf2221178ae6b", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "break-avoidance-002.html": [ - "25c4496e92d108605daa8812b922ed2d206a2955", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "break-avoidance-003.html": [ - "e09eaccfa4249cbdb6a5ddfd45c60573e5903345", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "break-avoidance-004.html": [ - "e8eb516fec6ecea97cc5c296a86317c6b088c4ab", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "break-avoidance-005.html": [ - "a9d53e24558daae387c65a8fa63344e1c062ad64", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "break-avoidance-006.html": [ - "b8dc0f41442b35d5eb385c883ac02af7d6acb266", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "break-avoidance-007.html": [ - "4429edb2c8844b1e86d37751e1c4e8a1a24bdb76", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "break-avoidance-in-table-in-grid.html": [ - "6250ea7e6d63a403b77a8c08f6d4cc9920f7c448", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "break-before-expansion-001.html": [ - "1f10eb59f52488f21f4752eb09485656d9aaa1a9", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "break-before-expansion-002.html": [ - "6c413caa7ee683cef272178ba2e2d9776417da17", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "break-before-second-row.html": [ - "3a8d307aa504e106b0756f03e0a9e4e79ab5e922", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "break-before-table-cell-child.html": [ - "3f07edf9ae9ec224dee03818595ece8b897920a3", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square-only.html", - "==" - ] - ], - {} - ] - ], - "break-before-table-cell.html": [ - "1d50080f760aec561960cbc864e32c3fffbf59a0", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square-only.html", - "==" - ] - ], - {} - ] - ], - "break-inside-cell-000.html": [ - "2982eed1e86be6f24e29ee69a0375f9cd2452334", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "break-inside-cell-001.html": [ - "cd55f46889976c06d813753ad7f75c78c42399da", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "caption-margin-001.html": [ - "cb2746ef1580e72c110b53c8e5fc7b3160b2e9bb", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "caption-margin-002.html": [ - "3bb06bde1dc30cf89594e7f8a3642bf14b72ce5c", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "caption-margin-003.html": [ - "e591c9e058ef34fad2afd7d0fa684356d1234b72", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "caption-margin-004.html": [ - "5c70c70728c80f73fc49c69e289a0588a887fd30", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "caption-margin-005.html": [ - "a77e2d83b8cf19fbae852e1d51edd94fc0a7f830", - [ - "css/css-break/table/caption-margin-005.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "dynamic-caption-child-change-001.html": [ - "c57f4120166b15b3ee177e8b3c64eb25f45ad133", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "final-border-spacing-at-fragmentainer-boundary.html": [ - "2e0540d7458dbd696ef601f04f354a2f2faf9acc", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "inside-flex-001.html": [ - "db3064fa8c290103d06f919afbdceefd303695b0", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "monolithic-overflow-001.tentative.html": [ - "34487c43279f3e6aa2ddbb41d703d938debc1981", - [ - "css/css-break/table/monolithic-overflow-001.tentative.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "monolithic-overflow-002.tentative.html": [ - "74b63fb68cbec730e898ad4a5e3b8338463714b8", - [ - "css/css-break/table/monolithic-overflow-002.tentative.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "monolithic-overflow-003.tentative.html": [ - "296a309335fa4bb2c109b6a96469843320fe3e95", - [ - "css/css-break/table/monolithic-overflow-003.tentative.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "monolithic-overflow-004.tentative.html": [ - "6f62f433e823698da207befa43ef26279d55a987", + "at-supports-017.html": [ + "42ca8c103b5128294afa2eb40a947ae3179baeb8", + [ + null, [ - "css/css-break/table/monolithic-overflow-004.tentative.html", [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "monolithic-overflow-005.html": [ - "7204359ad9b1d183c7e2fdf0035b973786920847", + "/css/css-conditional/at-supports-001-ref.html", + "==" + ] + ], + {} + ] + ], + "at-supports-018.html": [ + "024c232f10ccf0904f5da972a2906cd72272ff43", + [ + null, [ - "css/css-break/table/monolithic-overflow-005.html", [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "monolithic-overflow-006.html": [ - "a8ebd11511969e82b739ea4c6b0948f177e4036f", + "/css/css-conditional/at-supports-001-ref.html", + "==" + ] + ], + {} + ] + ], + "at-supports-019.html": [ + "7e6bf448d727875fed6f9beff67116c562a91c19", + [ + null, [ - "css/css-break/table/monolithic-overflow-006.html", [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "oof-in-cell-with-alignment-001.html": [ - "7933012cb6aeccaf8d8a8cf1d35c8ee0d490a04f", + "/css/css-conditional/at-supports-001-ref.html", + "==" + ] + ], + {} + ] + ], + "at-supports-020.html": [ + "eed31e5eade6e518df68a5d93709ac449aa9025b", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "oof-in-cell-with-alignment-002.html": [ - "1b9629c9ed9255aeab5649b17759fe46d6b16d46", + "/css/css-conditional/at-supports-001-ref.html", + "==" + ] + ], + {} + ] + ], + "at-supports-021.html": [ + "a3fdc83ccb004662365bd6f7265ba4f88e7db1a4", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "oof-in-cell-with-alignment-003.html": [ - "8d026e42fcdeae71efc5c51b108fd61f93d3a318", + "/css/css-conditional/at-supports-001-ref.html", + "==" + ] + ], + {} + ] + ], + "at-supports-022.html": [ + "ec41734b42f663bdf094abb04a52fd8d287e3241", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "oof-in-cell-with-alignment-004.html": [ - "5805415de7d307ebe4fc90b0a1233c4a243f0d92", + "/css/css-conditional/at-supports-001-ref.html", + "==" + ] + ], + {} + ] + ], + "at-supports-023.html": [ + "e3df4f6f70b1d83c337199704fc9c0be57cc5c87", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "overflow-scroll-row.html": [ - "8ed379e5dd29681704c63e46b2702b1536f789b8", + "/css/css-conditional/at-supports-001-ref.html", + "==" + ] + ], + {} + ] + ], + "at-supports-024.html": [ + "94827ff53be9375255ce78f7b1298076a511b6c7", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "overflow-scroll-section.html": [ - "62b3071ae960d0df21353565afb3c51fe3e837c7", + "/css/css-conditional/at-supports-001-ref.html", + "==" + ] + ], + {} + ] + ], + "at-supports-025.html": [ + "e7079ee5cba014a3fa8e4f5c6125397ffed62b2f", + [ + null, [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "repeated-section": { - "abspos-in-monolithic.tentative.html": [ - "6ec70d030d233a8183bbf281503235e2cb005b66", [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} + "/css/css-conditional/at-supports-001-ref.html", + "==" ] ], - "abspos-uncontained-text.html": [ - "e0485816bfa71b9329187ea135b400e7ad598dff", + {} + ] + ], + "at-supports-026.html": [ + "842a0ad663bdfc3f433dcf70c392a47f8bb865a6", + [ + null, + [ [ - null, - [ - [ - "/css/css-break/table/repeated-section/abspos-uncontained-text-ref.html", - "==" - ] - ], - {} + "/css/css-conditional/at-supports-001-ref.html", + "==" ] ], - "abspos-uncontained.tentative.html": [ - "d8b84ce72e3e95bc07571c38ea0336f297b1e95c", + {} + ] + ], + "at-supports-027.html": [ + "11a0ed1f0f816af15a8514a2f2786ac7944cbaf5", + [ + null, + [ [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} + "/css/css-conditional/at-supports-027-ref.html", + "==" ] ], - "abspos.tentative.html": [ - "a7297f1dd559f5bb38a1143d0371d17d4ee29bba", + {} + ] + ], + "at-supports-028.html": [ + "3abc95ebd0b8713fda94ae2cd5b05e8b088103ec", + [ + null, + [ [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} + "/css/css-conditional/at-supports-001-ref.html", + "==" ] ], - "background-001.tentative.html": [ - "2084f4ad313ead2f0ae05288f7b83ef864383e37", + {} + ] + ], + "at-supports-029.html": [ + "b78a711fe9610ddc9564cdd6893aa01ef3742b79", + [ + null, + [ [ - "css/css-break/table/repeated-section/background-001.tentative.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} + "/css/css-conditional/at-supports-027-ref.html", + "==" ] ], - "balanced-inner-multicol.html": [ - "78340661eda23a2607275e890433c4d99c2c1d3e", + {} + ] + ], + "at-supports-030.html": [ + "a2b66cfa63382b289b3c04faa90b88110bc7f783", + [ + null, + [ [ - null, - [ - [ - "/css/css-break/table/repeated-section/balanced-inner-multicol-ref.html", - "==" - ] - ], - {} + "/css/css-conditional/at-supports-001-ref.html", + "==" ] ], - "block-in-inline.tentative.html": [ - "1a94c697f15707efe09767c64b9c71a9103d78dc", + {} + ] + ], + "at-supports-031.html": [ + "2b4621d4943f0a89a9076c705dd3837084aae839", + [ + null, + [ [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} + "/css/css-conditional/at-supports-001-ref.html", + "==" ] ], - "break-avoidance-in-bottom-caption.tentative.html": [ - "fe676fd0c11b5665230f28dfa686d57753c52894", + {} + ] + ], + "at-supports-032.html": [ + "d53deb1757e34e2bef83d82f1885ed4a89ccbb66", + [ + null, + [ [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} + "/css/css-conditional/at-supports-001-ref.html", + "==" ] ], - "captions.tentative.html": [ - "1f28d56802cf2aa4f631c509510dd9761243bfc0", + {} + ] + ], + "at-supports-033.html": [ + "d2c682fb8d13ee0fb2e3ca4b3d35de45f307f761", + [ + null, + [ [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} + "/css/css-conditional/at-supports-001-ref.html", + "==" ] ], - "footer.tentative.html": [ - "8789ef2915fd98bb21e58a4d221f87b8e78f0998", + {} + ] + ], + "at-supports-034.html": [ + "d9b9612eecb1a99f0d7e3a41d53e0c18bc8479ad", + [ + null, + [ [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} + "/css/css-conditional/at-supports-001-ref.html", + "==" ] ], - "header-after-break.tentative.html": [ - "6a5abc011fa20c0df1613055307aec47a26381e1", + {} + ] + ], + "at-supports-035.html": [ + "23a706b32b8f1980d2135248f7921cc680905e79", + [ + null, + [ [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} + "/css/css-conditional/at-supports-001-ref.html", + "==" ] ], - "header-footer.tentative.html": [ - "7a1e956a8dacf6b497f9e9d1a87a3f37255b6418", + {} + ] + ], + "at-supports-036.html": [ + "f352d5dbcf6108e9dacfe419958e67f3fe85b4be", + [ + null, + [ [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} + "/css/css-conditional/at-supports-001-ref.html", + "==" ] ], - "header.tentative.html": [ - "6f4ad01097ea0525c7c513ae9f74ede800d7d7cf", + {} + ] + ], + "at-supports-037.html": [ + "7f23db6fdd334467e278820c0123875b1a16ca7e", + [ + null, + [ [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} + "/css/css-conditional/at-supports-001-ref.html", + "==" ] ], - "image.tentative.html": [ - "72fea010d0e4d87ba647e25a5b2f0f401f4a3c48", + {} + ] + ], + "at-supports-038.html": [ + "868a1e1f98e34949af65c7a0f8ead5ecaabe8c65", + [ + null, + [ [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} + "/css/css-conditional/at-supports-001-ref.html", + "==" ] ], - "inline-block.tentative.html": [ - "6dee47e375752e73e63030fd0c27951b966683d8", + {} + ] + ], + "at-supports-039.html": [ + "58e7ac2f00da80b9147e9dc7280292267a09ebad", + [ + null, + [ [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} + "/css/css-conditional/at-supports-001-ref.html", + "==" ] ], - "multicol.tentative.html": [ - "6dcd51bfe3e088262b407bd686a1db000771fdf7", + {} + ] + ], + "at-supports-043.html": [ + "bf74ca6614b93c01bd93b3a98594c4dc9030b159", + [ + null, + [ [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} + "/css/css-conditional/at-supports-001-ref.html", + "==" ] ], - "multiple-row-groups.tentative.html": [ - "96e6173249c8d053c95f357161cee6b6f9fcf52c", + {} + ] + ], + "at-supports-044.html": [ + "e0fd6c0b023f4a0140271383510c61a37288243a", + [ + null, + [ [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} + "/css/css-conditional/at-supports-001-ref.html", + "==" ] ], - "repeated-header-border-spacing.tentative.html": [ - "7471c342a90f118ef7a33ac42a1fc9921617729e", + {} + ] + ], + "at-supports-045.html": [ + "8beeadf206ad46d417e1b7020784870f704dee4b", + [ + null, + [ [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} + "/css/css-conditional/at-supports-001-ref.html", + "==" ] ], - "repeated-section-in-clipped-overflow-001.tentative.html": [ - "96cd60286d9aeb37cc607671887b23d9c9815a81", + {} + ] + ], + "at-supports-046.html": [ + "a239a117968f4a7d2f70f04c841de2c9ca2ece1c", + [ + null, + [ [ - "css/css-break/table/repeated-section/repeated-section-in-clipped-overflow-001.tentative.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} + "/css/css-conditional/at-supports-001-ref.html", + "==" ] ], - "repeated-section-in-clipped-overflow-002.tentative.html": [ - "b55d8a38906e6e431e57fff6aa2abdfd06d563f0", + {} + ] + ], + "at-supports-048.html": [ + "dc0ed9dc425595f7da0066ff8036954d27d65a4c", + [ + null, + [ [ - "css/css-break/table/repeated-section/repeated-section-in-clipped-overflow-002.tentative.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} + "/css/css-conditional/at-supports-048-ref.html", + "==" ] ], - "repeated-section-in-clipped-overflow-003.tentative.html": [ - "794a596fdc638e3b9f36e1fa3b5704fdb70ba6fa", + {} + ] + ], + "at-supports-content-001.html": [ + "19c99f504be7766978dc3816d186e7c2dabe126e", + [ + null, + [ [ - "css/css-break/table/repeated-section/repeated-section-in-clipped-overflow-003.tentative.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} + "/css/css-conditional/at-supports-001-ref.html", + "==" ] ], - "tall-monolithic-after-repeated-header.tentative.html": [ - "8ded5f5f17e38c1e2b56b550fea1d871519a5481", + {} + ] + ], + "at-supports-content-002.html": [ + "dda1b8863f6af297f14a077ec21d2c7692a59314", + [ + null, + [ [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} + "/css/css-conditional/at-supports-001-ref.html", + "==" ] ], - "variable-fragmentainer-size-001.html": [ - "f75a8cf216e9a7b03c4d92022b9a1fc880bc9e51", + {} + ] + ], + "at-supports-content-003.html": [ + "bd4d1135eddb72dc60ea31e645145acd13e69a16", + [ + null, + [ [ - null, - [ - [ - "/css/css-break/table/repeated-section/variable-fragmentainer-size-001-ref.html", - "==" - ] - ], - {} + "/css/css-conditional/at-supports-001-ref.html", + "==" ] ], - "variable-fragmentainer-size-002.html": [ - "c3aceac5aea83753c0f8ff4fa52351ee22626c53", + {} + ] + ], + "at-supports-content-004.html": [ + "c44184ba67b1e83291204ab47bf0a12f114d5fb0", + [ + null, + [ [ - null, - [ - [ - "/css/css-break/table/repeated-section/variable-fragmentainer-size-002-ref.html", - "==" - ] - ], - {} + "/css/css-conditional/at-supports-001-ref.html", + "==" ] - ] - }, - "section-with-overflow-000.html": [ - "909052765b6cc616389f52cb4e21857caeab38fd", + ], + {} + ] + ], + "at-supports-font-format-001.html": [ + "d4cab3ad119366869ce9f9e5cad670147e88ad79", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "section-with-overflow-001.html": [ - "665f5247ad2012bc96c44e1534339c3bfdea1446", + "/css/css-conditional/at-supports-001-ref.html", + "==" + ] + ], + {} + ] + ], + "at-supports-font-tech-001.html": [ + "86e5332b90eaac340a82af7ab15cfb239e19069a", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "section-with-overflow-002.html": [ - "c6c63abe0e4b75de709f869f747ae67f2467e22e", + "/css/css-conditional/at-supports-001-ref.html", + "==" + ] + ], + {} + ] + ], + "at-supports-namespace-001.html": [ + "07ec7552f378a1d7c66c4d3a65bf9308abc6e111", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "sections-and-captions-mixed-order.html": [ - "67d20e3a464fb64baabb12bdac431fa71044bab3", + "/css/css-conditional/at-supports-001-ref.html", + "==" + ] + ], + {} + ] + ], + "at-supports-namespace-002.html": [ + "a8365f5fb258131b628d2b3637ddc3f10b36d505", + [ + null, [ - null, [ - [ - "/css/css-break/table/sections-and-captions-mixed-order-ref.html", - "==" - ] - ], - {} - ] - ], - "specified-block-size-001.html": [ - "ad235534be43aa44f3444602757d57ff4b6cc211", + "/css/css-conditional/at-supports-001-ref.html", + "==" + ] + ], + {} + ] + ], + "at-supports-selector-001.html": [ + "5e2d385ad36db9a339c4e9ca1a2bad6d24886ec4", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "specified-block-size-002.html": [ - "9605abe343f9c5ed70c1f63e7c076f0a9e18800d", + "/css/css-conditional/at-supports-001-ref.html", + "==" + ] + ], + {} + ] + ], + "at-supports-selector-002.html": [ + "6c4a58f346baa7b7788dd6be5e5926759c279a82", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "specified-block-size-003.html": [ - "694ef40e3ef2606996a6d01dd5acf30b4b6db2af", + "/css/css-conditional/at-supports-001-ref.html", + "==" + ] + ], + {} + ] + ], + "at-supports-selector-003.html": [ + "804fb3c383538bc3959ce51744a6b76e25cb5771", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "specified-block-size-004.html": [ - "ca436aba67dd75ca1b263d29935fc875759bdec1", + "/css/css-conditional/at-supports-001-ref.html", + "==" + ] + ], + {} + ] + ], + "at-supports-selector-004.html": [ + "47241f37a35792c554545b3f8f6365afc835b07d", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "specified-block-size-005.html": [ - "b1528509def039dac85ff3ced2926f9b81b4dda8", + "/css/css-conditional/at-supports-001-ref.html", + "==" + ] + ], + {} + ] + ], + "at-supports-selector-detecting-invalid-in-logical-combinations.html": [ + "ff4c09195a9de215117241abc0601a4f79f5cad1", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "specified-block-size-006.html": [ - "a78af3faf5939cfa7b7032e022d8f2d428dc6edd", + "/css/css-conditional/at-supports-selector-detecting-invalid-in-logical-combinations-ref.html", + "==" + ] + ], + {} + ] + ], + "at-supports-selector-file-selector-button.html": [ + "a51e503ef696fc0075234747a709ab8190fcf6d1", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "specified-block-size-007.html": [ - "f342e2a8fad8991e8ea15b50001b70b11bcda346", + "/css/css-conditional/at-supports-001-ref.html", + "==" + ] + ], + {} + ] + ], + "at-supports-selector-placeholder.html": [ + "8ad858581478dad4721079b54c079fd93fab57c7", + [ + null, [ - null, [ - [ - "/css/css-break/table/specified-block-size-007-ref.html", - "==" - ] - ], - {} - ] - ], - "specified-block-size-008.html": [ - "6b4cd1163740dea91963e51b8854a6d6d8c7ab44", + "/css/css-conditional/at-supports-001-ref.html", + "==" + ] + ], + {} + ] + ], + "at-supports-selector-webkit-slider-thumb.tentative.html": [ + "3f777a7574a6d493c4d8a2fc2360c65cd1048ff4", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "table-border-000.html": [ - "1ec0efa2990867f9b3fd4938fcd46115c2998198", + "/css/css-conditional/at-supports-001-ref.html", + "==" + ] + ], + {} + ] + ], + "container-queries": { + "canvas-as-container-001.html": [ + "bd9fd3ddc491443114d0a37e961b2ac05c66ab86", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "table-border-001.html": [ - "97e4ba8dafcbe906dc9c8ea83d611663bc78c98f", + "canvas-as-container-002.html": [ + "7c2d44f6824d56e1730b5baf98455f46267287a8", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "table-border-002.html": [ - "16c2a50395c5a3a3ae2e8f22197bf6b783a34303", + "canvas-as-container-003.html": [ + "0115052b76d0c62b58c3c3ac7ea91f10928ddeab", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "table-border-003.html": [ - "26b01599ad9a30c0ff3cedc1ae97b7cbaa5d014e", + "canvas-as-container-004.html": [ + "7e1ec8d733ae3e0acdd79a8ae5c5aa722434e024", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "table-border-004.html": [ - "ed8314f1d29e82dae42d3828aa327a513e7d35bf", + "change-display-in-container.html": [ + "978c3e81bce34b67bcb4e8a1fa4249c66a996768", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-conditional/container-queries/change-display-in-container-ref.html", "==" ] ], {} ] ], - "table-border-005.html": [ - "3f8efe9d0aa166ed9d689a372c63e51935eba01d", + "chrome-legacy-skip-recalc.html": [ + "675f649bf82a259c6cbb10845fd914417e315127", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/reference/pass_if_pass_below.html", "==" ] ], {} ] ], - "table-border-006.html": [ - "f0ebf25c08ef36b75da1b2770ba398c0ebfd478d", + "container-for-cue.html": [ + "802f6143428764b404e3fc41c1bfdab9047ac50b", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-conditional/container-queries/container-for-cue-ref.html", "==" ] ], {} ] ], - "table-border-007.html": [ - "66363cd0aefcebdbb82b99a29b68f33819075628", + "container-units-gradient-invalidation.html": [ + "a0fa974fc298b09ba7e77ae07cb583235009680a", [ null, [ [ - "/css/css-break/table/table-border-007-ref.html", + "/css/css-conditional/container-queries/container-units-gradient-ref.html", "==" ] ], {} ] ], - "table-border-008.html": [ - "6140df16749a793592e4eb80734fe6de6bdfe9d1", + "container-units-gradient.html": [ + "6965bf8c0d0b7055fc8728316178fffd07ba72d9", [ null, [ [ - "/css/css-break/table/table-border-008-ref.html", + "/css/css-conditional/container-queries/container-units-gradient-ref.html", "==" ] ], {} ] ], - "table-caption-and-cells-fixed-width.html": [ - "11984c3ea3f74e4506aaa41162451d2be72229b2", + "container-units-rule-cache.html": [ + "3ff8e29e64f63022b44df29a4d661758edff99ca", [ null, [ [ - "/css/css-break/table/table-caption-and-cells-fixed-width-ref.html", + "/css/css-conditional/container-queries/container-units-rule-cache-ref.html", "==" ] ], {} ] ], - "table-caption-and-cells.html": [ - "365786f49ef9afc8a02e1f04b65ae62cfbc93b26", + "container-units-sharing-via-rule-node.html": [ + "dcb22f20ccf4f121d08b817cbfec5898e8953289", [ null, [ [ - "/css/css-break/table/table-caption-and-cells-ref.html", + "/css/css-conditional/container-queries/container-units-sharing-via-rule-node-ref.html", "==" ] ], {} ] ], - "table-caption-with-block.html": [ - "1d3aa3317ebdce4166255957ecdb025aa49790ea", + "counters-in-container-dynamic.html": [ + "9542b34095bac6995fa2c94e1328e0fc78fa2133", [ null, [ [ - "/css/css-break/table/table-caption-with-block-ref.html", - "==" - ] - ], - {} - ] - ], - "table-cell-border-001.html": [ - "062cd9f92e3c278244ff41cf85d1804e3f18f1a6", - [ - "css/css-break/table/table-cell-border-001.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "table-cell-border-002.html": [ - "9aa05f2acee001b0fea7b8d8105cc5eb99ab90ed", - [ - "css/css-break/table/table-cell-border-002.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-conditional/container-queries/counters-ref.html", "==" ] ], {} ] ], - "table-cell-expansion-001.html": [ - "b10d516787ac03841f8720b2d84d2081fe73f52a", + "counters-in-container.html": [ + "e94aba632649971f65ce9661d375ad38998d949d", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-conditional/container-queries/counters-ref.html", "==" ] ], {} ] ], - "table-cell-expansion-002.html": [ - "6df44aa7636ac37d5b33cdf40e7d08d9ea48f0b6", + "custom-layout-container-001.https.html": [ + "40594a431e4465fd56bbbf069476a9af0b541880", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "table-cell-expansion-003.html": [ - "32e12012ac894558f695982516e9f95efe419606", + "dialog-backdrop-create.html": [ + "a962a9635578c8021c89c4bf57e0afc980dd244c", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-conditional/container-queries/top-layer-dialog-backdrop-ref.html", "==" ] ], {} ] ], - "table-cell-expansion-004.html": [ - "2390e218c9ec8216957e8e71019b52203ad48b6d", + "dialog-backdrop-remove.html": [ + "1cb1cc92d47cc310d503b09e5620a713ee3eaaaf", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-conditional/container-queries/top-layer-dialog-backdrop-ref.html", "==" ] ], {} ] ], - "table-cell-expansion-005.html": [ - "23fcc73e166e95aafc3008981e0e961225c9816d", + "display-in-container.html": [ + "4666ab64b2b3063a8dfb4d7be7c4c30d9dc76129", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-conditional/container-queries/display-in-container-ref.html", "==" ] ], {} ] ], - "table-cell-expansion-006.html": [ - "102866477454ab75a034f32269238345e3533e6e", + "fieldset-legend-change.html": [ + "51cd8c1953387e455b10d256a4d61a8c16195961", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-conditional/container-queries/fieldset-legend-change-ref.html", "==" ] ], {} ] ], - "table-cell-expansion-007.html": [ - "bafe31200d079105284a16c4d2b01f8499da517e", + "inline-size-bfc-floats.html": [ + "f4d5af65f56a5c8f8e182e7167177c9ef48b7568", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-conditional/container-queries/inline-size-bfc-floats-ref.html", "==" ] ], {} ] ], - "table-cell-expansion-008.html": [ - "7e4cf1697006676758700d88e0942a153d3c8170", + "inner-first-line-non-matching.html": [ + "01d46a037f542d0b1f75af8b5dedb5224327af81", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-conditional/container-queries/inner-first-line-non-matching-ref.html", "==" ] ], {} ] ], - "table-cell-expansion-009.html": [ - "ec34d0b7072136d96041d6711e0d3599d2c21c37", + "multicol-inside-container.html": [ + "73febc303a9184a248897b0a0a8c215df22ac778", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "table-cell-expansion-010.html": [ - "0e6b849c9b04335cc51832953e2d29576fc154e6", + "no-layout-containment-abspos-dynamic.html": [ + "773476101f624dc0094621687ff6cdbc04eb2c76", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "table-col-paint-htb-ltr.html": [ - "ea066d13544b308de72b2fc6b9d75ceecc0a60f8", + "no-layout-containment-abspos.html": [ + "f456d71044a29e0656db1b5169cbae32d4e1cb3a", [ null, [ [ - "/css/css-break/table/table-col-paint-htb-ltr-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "table-col-paint-vlr-rtl.html": [ - "ab45d314042e9e780856afa1c39b5d5ef0f00a3f", + "no-layout-containment-baseline.html": [ + "1f8161e2185116b182c7e088ab42016235ac3771", [ null, [ [ - "/css/css-break/table/table-col-paint-vlr-rtl-ref.html", + "/css/css-conditional/container-queries/no-layout-containment-baseline-ref.html", "==" ] ], {} ] ], - "table-col-paint-vrl-rtl.html": [ - "e31d1d4dc60275c6f757cb56b9c990000b0716a8", + "no-layout-containment-fixedpos-dynamic.html": [ + "d73a31c003469cd64fe9cc2dcac5ff1e493a14ae", [ null, [ [ - "/css/css-break/table/table-col-paint-vrl-rtl-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "table-collapsed-borders-paint-at-boundary.tentative.html": [ - "0227b571a248a1843e5fd5abadce177f64951caa", + "no-layout-containment-fixedpos.html": [ + "0730763a553efdba37aaaa4cbfe874b4e05bccb1", [ null, [ [ - "/css/css-break/table/table-collapsed-borders-paint-at-boundary-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "table-collapsed-borders-paint-htb-ltr.html": [ - "60e146296b226faf1914715aa837a86ac497ce25", + "pseudo-elements-002.html": [ + "1198fb959d00e6befd2de62e76c10a547b589a4a", [ null, [ [ - "/css/css-break/table/table-collapsed-borders-paint-htb-ltr-ref.html", + "/css/css-conditional/container-queries/pseudo-elements-002-ref.html", "==" ] ], {} ] ], - "table-collapsed-borders-paint-vlr-rtl.html": [ - "d03968ec4d32b37bb86fc0d30c33f2d1afca399a", + "pseudo-elements-002b.html": [ + "e1159c33bfea4ce57391913e417faffb47201b60", [ null, [ [ - "/css/css-break/table/table-collapsed-borders-paint-vlr-rtl-ref.html", + "/css/css-conditional/container-queries/pseudo-elements-002b-ref.html", "==" ] ], {} ] ], - "table-collapsed-borders-paint-vrl-ltr.html": [ - "6dff501fec734ff9dd75d725e1e1f014b93dd5b5", + "pseudo-elements-009.html": [ + "913b8ca5b130961e1b90fd233429dab16d67c20f", [ null, [ [ - "/css/css-break/table/table-collapsed-borders-paint-vrl-ltr-ref.html", + "/css/css-conditional/container-queries/pseudo-elements-009-ref.html", "==" ] ], {} ] ], - "table-grid-paint-htb-ltr.html": [ - "e2be9ce16c2cd1808fb32c9c48935a983519e705", + "pseudo-elements-010.html": [ + "c090488d193755d7f8825e9d6275fa82465ed9d5", [ null, [ [ - "/css/css-break/table/table-grid-paint-htb-ltr-ref.html", + "/css/css-conditional/container-queries/pseudo-elements-010-ref.html", "==" ] ], {} ] ], - "table-grid-paint-vlr-rtl.html": [ - "b26363056be2fb5fcb961c49872051446a7d692f", + "pseudo-elements-011.html": [ + "364d7ec38514d17b37bc08a8e342ad840eac1d70", [ null, [ [ - "/css/css-break/table/table-grid-paint-vlr-rtl-ref.html", + "/css/css-conditional/container-queries/pseudo-elements-010-ref.html", "==" ] ], {} ] ], - "table-grid-paint-vrl-rtl.html": [ - "0d83c6c402a82c604cb928a6c43dd5dc5cc9fc7c", + "pseudo-elements-012.html": [ + "31617f838b66f5020eed36474072c27238fc0e56", [ null, [ [ - "/css/css-break/table/table-grid-paint-vrl-rtl-ref.html", + "/css/css-conditional/container-queries/pseudo-elements-010-ref.html", "==" ] ], {} ] ], - "table-row-paint-htb-ltr.html": [ - "ecc156bd38bcc414b8d66abf84d355c040f0782d", + "resize-while-content-visibility-hidden.html": [ + "da4218b88bdba20c10ffc104f4e7b4f9a992a978", [ null, [ [ - "/css/css-break/table/table-row-paint-htb-ltr-ref.html", + "/css/css-conditional/container-queries/resize-while-content-visibility-hidden-ref.html", "==" ] ], {} ] ], - "table-row-paint-vlr-rtl.html": [ - "f3d32c9df664c75350ee8b029267be13b0894eee", + "scrollbar-container-units-block.html": [ + "aabc8063573b814a8af203961a82ad18c6a93f13", [ null, [ [ - "/css/css-break/table/table-row-paint-vlr-rtl-ref.html", + "/css/css-conditional/container-queries/scrollbar-container-units-block-ref.html", "==" ] ], {} ] ], - "table-row-paint-vrl-rtl.html": [ - "a74a952b4b9e9f96cd6be5878011eaf34f4632ba", + "scrollbar-container-units-inline.html": [ + "794ae9441c04d68f339f624c49c3d290e05b24ba", [ null, [ [ - "/css/css-break/table/table-row-paint-vrl-rtl-ref.html", + "/css/css-conditional/container-queries/scrollbar-container-units-inline-ref.html", "==" ] ], {} ] ], - "table-rowspan-001.html": [ - "fe431d79a7c4f4edb0c56d85f877d98764ac8ad0", + "size-container-with-quotes.html": [ + "30a4191d3371af6912610b2e9a878c8024d87f8c", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-conditional/container-queries/size-container-with-quotes-ref.html", "==" ] ], {} ] ], - "table-section-paint-htb-ltr.html": [ - "ff0eda1be83c900c256fe3ac994e16408f10f8f9", + "svg-foreignobject-no-size-container.html": [ + "38f7230e18783a35f02248bbcc3b4b23ca2b714e", [ null, [ [ - "/css/css-break/table/table-section-paint-htb-ltr-ref.html", + "/css/css-conditional/container-queries/svg-foreignobject-no-size-container-ref.html", "==" ] ], {} ] ], - "table-section-paint-vlr-rtl.html": [ - "1dbdb212ace7aee3afffa21d01863912ae62cdd2", + "svg-g-no-size-container.html": [ + "a4a089a5bebec7f98ad6c071081196fa5abbed4b", [ null, [ [ - "/css/css-break/table/table-section-paint-vlr-rtl-ref.html", + "/css/css-conditional/container-queries/svg-g-no-size-container-ref.html", "==" ] ], {} ] ], - "table-section-paint-vrl-rtl.html": [ - "d079c35818e1a920b2a07375114388876d2e880a", + "table-inside-container-changing-display.html": [ + "5ae71aad2d0488a2e0d2e69d775c900877a23496", [ null, [ [ - "/css/css-break/table/table-section-paint-vrl-rtl-ref.html", + "/css/css-conditional/container-queries/table-inside-container-changing-display-ref.html", "==" ] ], {} ] ], - "tall-bottom-aligned-cell-with-bottom-padding.html": [ - "1e7ff9b12e31149fbe4f5d9038c553ecbf8a32a4", + "top-layer-dialog-backdrop.html": [ + "207d0ab43ce74663ffbc778e1dfe007facaa4af4", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-conditional/container-queries/top-layer-dialog-backdrop-ref.html", "==" ] ], {} ] ], - "truncated-border-spacing-at-fragmentainer-end.html": [ - "0a93b64275433feeba66876a54944573cb27157b", + "whitespace-update-after-removal.html": [ + "066f4254d24c4d9ff5a3284720b930d054490818", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-conditional/container-queries/change-display-in-container-ref.html", "==" ] ], @@ -152211,12203 +152041,13193 @@ ] ] }, - "tall-break-inside-avoid-at-start.html": [ - "6e9ab8bd9f56502247a6d8c2c2045b8f3af3605d", + "css-supports-001.xht": [ + "9221309d45fd637e613a1c11519a09fa105a4830", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-conditional/support/pass.xht", "==" ] ], {} ] ], - "tall-content-inside-constrained-block-000.tentative.html": [ - "7cae4b93939386902a1df6ceb978d50093db23b0", + "css-supports-002.xht": [ + "48326acb7eedc08991128d176626c2141da47880", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-conditional/support/pass.xht", "==" ] ], {} ] ], - "tall-content-inside-constrained-block-001.tentative.html": [ - "5584995b005b920659a367274ac78bff631023e1", + "css-supports-003.xht": [ + "f7713dc3a81535c19c7717ef2790a4283d540d04", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-conditional/support/pass.xht", "==" ] ], {} ] ], - "tall-content-inside-constrained-block-002.tentative.html": [ - "e92a811b7bf23eaf1224cd4ff0e009f17a53d95d", + "css-supports-004.xht": [ + "7c81650745b72338feeec6cf03644411e302bf4e", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-conditional/support/pass.xht", "==" ] ], {} ] ], - "tall-content-inside-constrained-block-003.tentative.html": [ - "78148780a9497587483087ea8c45bfda4b3502b7", + "css-supports-005.xht": [ + "e6e4348b06d64324bca35a4164353c37baa527bc", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-conditional/support/pass.xht", "==" ] ], {} ] ], - "tall-content-inside-constrained-block-004.tentative.html": [ - "c44a65841cd35fa012c911cbc2c13f8b8ca79a5a", + "css-supports-006.xht": [ + "5a47f3559d6560a0126e19cda344538d3b2c4666", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-conditional/support/pass.xht", "==" ] ], {} ] ], - "tall-content-inside-constrained-block-005.tentative.html": [ - "6e834e78daeee12c42fa44510b3680961b9b1c89", + "css-supports-007.xht": [ + "250ffc5443890c561a90cdbfe82473f7ade941ff", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-conditional/support/pass.xht", "==" ] ], {} ] ], - "tall-content-inside-constrained-block-006.tentative.html": [ - "f907e38a2a0e428e13a5c6110c2a3a707afa7b01", + "css-supports-008.xht": [ + "396317500f680a3ddba4a688ab36bec3efbed8b5", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-conditional/support/pass.xht", "==" ] ], {} ] ], - "tall-float-pushed-to-next-fragmentainer-000.html": [ - "a5f02184687fd21337c935d0ecc7ae07d6ae3bda", + "css-supports-009.xht": [ + "0b00565004adabd0f38b0336753174687a104da1", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-conditional/support/pass.xht", "==" ] ], {} ] ], - "tall-float-pushed-to-next-fragmentainer-001.html": [ - "d172f935744ee3d44fdeb0c2f5f758321af4172a", + "css-supports-010.xht": [ + "c2270936d313f00645c750f06ac07c7723c04d80", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-conditional/support/pass.xht", "==" ] ], {} ] ], - "tall-float-pushed-to-next-fragmentainer-002.html": [ - "1ba22353c0754a1e52224adae491971a7f86645c", + "css-supports-011.xht": [ + "b1f15fce269bb68cd4af96cc2ae599d64bf1a931", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-conditional/support/pass.xht", "==" ] ], {} ] ], - "tall-float-pushed-to-next-fragmentainer-003.html": [ - "3e28c5c347e6aa85d0f4a1e4b3d7508e0616e32e", + "css-supports-012.xht": [ + "ba88446825220ff4106dffe8b1410d95ab597f72", [ - "css/css-break/tall-float-pushed-to-next-fragmentainer-003.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-conditional/support/pass.xht", "==" ] ], {} ] ], - "tall-float-pushed-to-next-fragmentainer-004.html": [ - "3f4d39fc1c7ac6be999d011e9f257002552c3e13", + "css-supports-013.xht": [ + "2c0b62e616409922f3269ea6fd2a2852aba62246", [ - "css/css-break/tall-float-pushed-to-next-fragmentainer-004.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-conditional/support/pass.xht", "==" ] ], {} ] ], - "tall-line-in-short-fragmentainer-000.html": [ - "8e9515c4b6c0f85e8fe7635e207f2f67cb7283b9", + "css-supports-014.xht": [ + "90c3bb4e33e07b08987ae9a340bff9334ee9d1e6", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-conditional/support/pass.xht", "==" ] ], {} ] ], - "tall-line-in-short-fragmentainer-001.html": [ - "8f74878187a59dee3d060f14ee653264ae6e67f6", + "css-supports-015.xht": [ + "8013bb88eb807ce4a92b4fdd807ae7f285601d51", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-conditional/support/pass.xht", "==" ] ], {} ] ], - "tall-line-in-short-fragmentainer-002.html": [ - "ee277549633d08bdf6a36f124055b6cfc45afa5d", + "css-supports-016.xht": [ + "5f06f91b63c0d1d6bc9d216ce7f71fa8a0bfc644", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-conditional/support/pass.xht", "==" ] ], {} ] ], - "trailing-child-margin-000.html": [ - "d204483a33ebff421cf9f3da9fab2d1183fcd1c0", + "css-supports-017.xht": [ + "92b8d04e7f24bbacf653cb0946c59cb7038977b2", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-conditional/support/pass.xht", "==" ] ], {} ] ], - "trailing-child-margin-001.html": [ - "7f13b8953d9949b6b9f25bfc33662406537a8f9c", + "css-supports-018.xht": [ + "56d4bea959ec1f3236bf1d47d377cf7d62b18d27", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-conditional/support/pass.xht", "==" ] ], {} ] ], - "trailing-child-margin-002.html": [ - "3011d23711459b6c21300e0e53d38180b987ec09", + "css-supports-019.xht": [ + "109c8528ba54da05ee43ad4215b2195ceac825cb", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-conditional/support/pass.xht", "==" ] ], {} ] ], - "transform-000.html": [ - "7f8bfa8ca4a33ac9e87a7f7b83b26b791cede0fa", + "css-supports-020.xht": [ + "808f2268ea3612cef3c4d01cb5226f4a9fde5a28", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-conditional/support/pass.xht", "==" ] ], {} ] ], - "transform-001.html": [ - "37985dd3f0e633566751fe879915038d13b3967f", + "css-supports-021.xht": [ + "46ca79f596ef40c227135e3d15284c5aac448270", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-conditional/support/pass.xht", "==" ] ], {} ] ], - "transform-002.html": [ - "10c62cd45c89c840f81e12ec96d6430eb50bed43", + "css-supports-022.xht": [ + "25912d3e71f0e0c95d1810aa5e45cb54f5dbd879", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-conditional/support/pass.xht", "==" ] ], {} ] ], - "transform-003.html": [ - "1879bab38331cc40457e214878dcdc004db6ff89", + "css-supports-023.xht": [ + "7afb0ce6dc4c3154c1fe376316b15dfcc9c51ad2", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-conditional/support/pass.xht", "==" ] ], {} ] ], - "transform-004.html": [ - "df7e92ac5d79edcf62dfb66c849990dfd6ec118b", + "css-supports-024.xht": [ + "ae4b926b4eff4315785b2db5222707c41a07c40d", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-conditional/support/pass.xht", "==" ] ], {} ] ], - "transform-005.html": [ - "83f674f8fd306027b305cf8092c28040ce836461", + "css-supports-025.xht": [ + "182f2874f189ae6383f973770673d2229924e81f", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-conditional/support/pass.xht", "==" ] ], {} ] ], - "transform-006.html": [ - "eb0500318bfb9a75bdbab1b4d64d0c4770590850", + "css-supports-026.xht": [ + "7584bba6861440d373928aea73fa772da6379fd4", [ null, [ [ - "/css/css-break/transform-006-ref.html", + "/css/css-conditional/support/pass.xht", "==" ] ], {} ] ], - "transform-007.html": [ - "22b8276f28b4bebb7d4a7279b4187eb3f3f439e2", + "css-supports-029.xht": [ + "5f9b011e926e3955257ea50af404078ed2815c7a", [ null, [ [ - "/css/css-break/transform-007-ref.html", + "/css/css-conditional/support/pass.xht", "==" ] ], {} ] ], - "transform-008.html": [ - "b3b80d72d66587d58a4f4f1ebb7ecd2e478c10e6", + "css-supports-030.xht": [ + "2cfcbfe07a236dccaa3f2ebb031ef0eb84c5ae7f", [ - "css/css-break/transform-008.html", + null, [ [ - "/css/css-break/transform-008-ref.html", + "/css/css-conditional/support/pass.xht", "==" ] ], {} ] ], - "transform-009.html": [ - "f0653f7976b97c7fe9a0cd57fc7725aa7573cf39", + "css-supports-031.xht": [ + "dd9caf07af8d110f5c7b86d6c3fa4c8ea2e8b0ee", [ - "css/css-break/transform-009.html", + null, [ [ - "/css/css-break/transform-009-ref.html", + "/css/css-conditional/support/pass.xht", "==" ] ], {} ] ], - "transform-012.html": [ - "4156aff6298fffe862fe109f4693124cda6ec5db", + "css-supports-032.xht": [ + "8a2ac0655e8c5d1bba80a5b1f0e95320a305603d", [ - "css/css-break/transform-012.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-conditional/support/pass.xht", "==" ] ], {} ] ], - "transform-013.html": [ - "31cce10b52f38c4960d1d265e07fd1b363d20ae0", + "css-supports-033.xht": [ + "19b707deaca966ddad44f40eea7b370d5a1e514a", [ - "css/css-break/transform-013.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-conditional/support/pass.xht", "==" ] ], {} ] ], - "transform-014.html": [ - "16fc15d760d4afa95d7488d22e334f1cd809ef45", + "css-supports-034.xht": [ + "19b707deaca966ddad44f40eea7b370d5a1e514a", [ - "css/css-break/transform-014.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-conditional/support/pass.xht", "==" ] ], {} ] ], - "transform-015.html": [ - "676c291b6ef89e6d25e09447f624bc7889b34ac4", + "css-supports-035.xht": [ + "7dc202b8a4c3711d751a6cd82c540af9b8b2a509", [ - "css/css-break/transform-015.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-conditional/support/pass.xht", "==" ] ], {} ] ], - "transform-016.html": [ - "5a10d860c3feaa787db420b0fec4f5bfaaa6fa96", + "css-supports-036.xht": [ + "9d6d26837d3373faa713770681bca9137f5b00c9", [ - "css/css-break/transform-016.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-conditional/support/pass.xht", "==" ] ], {} ] ], - "transform-017.html": [ - "b01e3ccee765916161302bbe3fe5040201ffc9c4", + "css-supports-037.xht": [ + "137be1b598ecbdcd34c352eba2a845cd8443cfad", [ - "css/css-break/transform-017.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-conditional/support/pass.xht", "==" ] ], {} ] ], - "transform-018.html": [ - "dc9a791e6a8fdb025ceb4f43c1643617af1a5aab", + "css-supports-038.xht": [ + "bf969d70467c1b8f89485c77f73d5a442a6ace25", [ - "css/css-break/transform-018.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-conditional/support/pass.xht", "==" ] ], {} ] ], - "transform-019.html": [ - "758ff713ba273d417294293c9277eb33b209d8d9", + "css-supports-039.xht": [ + "1032263b1c49bb60932a30ec6e7aaebc6455f169", [ - "css/css-break/transform-019.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-conditional/support/pass.xht", "==" ] ], {} ] ], - "transform-020.html": [ - "e15df5f7342c79ef4759c8f744c0ac838ed69225", + "css-supports-040.xht": [ + "0b15778bc082fa6c631e1ccc9e166abd6e69885f", [ - "css/css-break/transform-020.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-conditional/support/pass.xht", "==" ] ], {} ] ], - "transform-021.html": [ - "c97ef30b7f5db59bf1975b68459a1226d6384c5d", + "css-supports-041.xht": [ + "f01b2be784e53f4785938f4a0602bfde27f09f53", [ - "css/css-break/transform-021.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-conditional/support/pass.xht", "==" ] ], {} ] ], - "truncated-margin-at-fragmentainer-end-001.html": [ - "cfb8590f9026194020afaea854f1d4d9fc570b49", + "css-supports-042.xht": [ + "5a106119bab1e7aa64b487fe59e3b75813613ba9", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-conditional/support/pass.xht", "==" ] ], {} ] ], - "truncated-margin-at-fragmentainer-end-002.html": [ - "1539927dc26b143fa725d1301f845568a13c63a1", + "css-supports-043.xht": [ + "8e4d0e5b795968ea2c3704dc5cd436b2aed9cd3e", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-conditional/support/pass.xht", "==" ] ], {} ] ], - "widows-001.html": [ - "d3b3af6ff06d1f469027d6d9183c3f2ce13cbaac", + "css-supports-044.xht": [ + "0c66cfafa5c6d65e1025740621542c1824613547", [ null, [ [ - "/css/css-break/reference/widows-001-ref.html", + "/css/css-conditional/support/pass.xht", "==" ] ], {} ] ], - "widows-block-in-inline-001.html": [ - "8b5438bbc7251b597247617bac1063f4f32831e4", + "css-supports-045.xht": [ + "d11e108371522faee64875fb330305b7da8372f0", [ - "css/css-break/widows-block-in-inline-001.html", + null, [ [ - "/css/css-break/reference/widows-block-in-inline-001-ref.html", + "/css/css-conditional/support/pass.xht", "==" ] ], {} ] ], - "widows-orphans-001.html": [ - "b21146d12e00d29d2f80c8a67a136cd9e8d3ee48", + "css-supports-046.xht": [ + "1913dff0c3552f00a1660053f7a4d95065762343", [ null, [ [ - "/css/css-break/reference/widows-orphans-001-ref.html", + "/css/css-conditional/support/pass.xht", "==" ] ], {} ] - ], - "widows-orphans-002.html": [ - "d13cc848ae78a71e2d202f6886f506c98d4ad629", + ] + }, + "css-contain": { + "contain-animation-001.html": [ + "449221428c3d76d31ff84a5792c7578c36cbebed", [ null, [ [ - "/css/css-break/reference/widows-orphans-001-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "widows-orphans-003.html": [ - "ed7bee47011583d1503b5c0e88b6adae076804ed", + "contain-body-bg-001.html": [ + "b7890faebabd1fc104ec54c0a8576b243675daf6", [ null, [ [ - "/css/css-break/reference/widows-orphans-001-ref.html", + "/css/css-contain/reference/contain-body-bg-001-ref.html", "==" ] ], {} ] ], - "widows-orphans-004.html": [ - "1507086efa0de8dcc73e9698745abaad32867596", + "contain-body-bg-002.html": [ + "71237d977e117f057e9c906b3e7882e06a1ddfd3", [ null, [ [ - "/css/css-break/reference/widows-orphans-001-ref.html", + "/css/css-contain/reference/contain-body-bg-001-ref.html", "==" ] ], {} ] ], - "widows-orphans-006.html": [ - "39913266412df2a383b6fc091291333856e65c38", + "contain-body-bg-003.html": [ + "0aaf8b0da859ba89dda8977bf18663be012d1fb5", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-contain/reference/contain-body-bg-001-ref.html", "==" ] ], {} ] ], - "widows-orphans-007.html": [ - "23809c8ffedf7c4702562a08adfbb23f2fd462fd", + "contain-body-bg-004.html": [ + "af046a96c43565c5c28988473b0bd7402610f8cc", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-contain/reference/contain-body-bg-001-ref.html", "==" ] ], {} ] ], - "widows-orphans-008.html": [ - "02fdb1332b8cff6efe3d92316ff640bb8819d4bb", + "contain-body-dir-001.html": [ + "c055778fe41a198cfea7036700ac31f9040fb2b8", [ null, [ [ - "/css/css-break/reference/widows-orphans-008-ref.html", + "/css/css-contain/reference/contain-body-w-m-001-ref.html", "==" ] ], {} ] ], - "widows-orphans-009.html": [ - "8b71d5a73efb52d1c4fd3435bcc50f4e1da41032", + "contain-body-dir-002.html": [ + "31e188f8d1529dcc5f39d16aa44a51f2c1c479aa", [ null, [ [ - "/css/css-break/reference/widows-orphans-009-ref.html", + "/css/css-contain/reference/contain-body-w-m-001-ref.html", "==" ] ], {} ] ], - "widows-orphans-010.html": [ - "99a76921a2b1ec5582a93a83cb59af6bae09bc5b", + "contain-body-dir-003.html": [ + "cd01c6f253725c61b5433d6b31c9510fc53bfc6b", [ null, [ [ - "/css/css-break/reference/widows-orphans-010-ref.html", + "/css/css-contain/reference/contain-body-w-m-001-ref.html", "==" ] ], {} ] ], - "widows-orphans-011.html": [ - "c3741a977a74a345de08a1fde4f29a4ab8b72c65", + "contain-body-dir-004.html": [ + "8b39b4324b533023b6986e12201faf49f47d0191", [ null, [ [ - "/css/css-break/reference/widows-orphans-011-ref.html", + "/css/css-contain/reference/contain-body-w-m-001-ref.html", "==" ] ], {} ] ], - "widows-orphans-012.html": [ - "f24f8cbbf6d19755ab28e10d5b9ef0fac9748449", + "contain-body-overflow-001.html": [ + "7f368756ca730e86b64fe0bc93f95af2506b12c9", [ null, [ [ - "/css/css-break/reference/widows-orphans-012-ref.html", + "/css/css-contain/reference/contain-body-overflow-001-ref.html", "==" ] ], {} ] ], - "widows-orphans-013.html": [ - "c9eae4375f701e61f21f4e08da9f272d7a58b2ef", + "contain-body-overflow-002.html": [ + "bf741491c62cbadaba021f01899c61daef7e6e5e", [ null, [ [ - "/css/css-break/reference/widows-orphans-013-ref.html", + "/css/css-contain/reference/contain-body-overflow-001-ref.html", "==" ] ], {} ] ], - "widows-orphans-014.html": [ - "96cccecc8004ee4cca40ec21c1218464e8dd84ad", + "contain-body-overflow-003.html": [ + "d38cf53c2f47fd964b0cfc912eced2ce25e62c8e", [ null, [ [ - "/css/css-break/reference/widows-orphans-014-ref.html", + "/css/css-contain/reference/contain-body-overflow-001-ref.html", "==" ] ], {} ] ], - "widows-orphans-015.html": [ - "054490a785df0375de2522f6835c90c0a0afbd09", + "contain-body-overflow-004.html": [ + "5064d00c8b6a8b320182e10f649ce84ba8b4063e", [ null, [ [ - "/css/css-break/reference/widows-orphans-016-ref.html", + "/css/css-contain/reference/contain-body-overflow-001-ref.html", "==" ] ], {} ] ], - "widows-orphans-016.html": [ - "e9597acab4702cb91804b96ba3dc926954966a3a", + "contain-body-t-o-001.html": [ + "36f70a1df4c87c7ea1556efb96800055238c86a3", [ null, [ [ - "/css/css-break/reference/widows-orphans-016-ref.html", + "/css/css-contain/reference/contain-body-t-o-001-ref.html", "==" ] ], {} ] ], - "widows-orphans-017.html": [ - "2bc99b81889a733e3117e504ba3619be81df8fc4", + "contain-body-t-o-002.html": [ + "47d3f480d1018f979dc4c238979e4181e668b00f", [ null, [ [ - "/css/css-break/reference/widows-orphans-017-ref.html", + "/css/css-contain/reference/contain-body-t-o-001-ref.html", "==" ] ], {} ] ], - "widows-orphans-018.html": [ - "3ffd3dbddd8bc86fa422e73522c62c61996a92fd", + "contain-body-t-o-003.html": [ + "2323d07838f18bb260e4aff465f1c726f55e31ab", [ null, [ [ - "/css/css-break/reference/widows-orphans-009-ref.html", + "/css/css-contain/reference/contain-body-t-o-001-ref.html", "==" ] ], {} ] ], - "widows-orphans-019.html": [ - "cf5ff7572c86779b2c85b86dd61e6de15e77872f", + "contain-body-t-o-004.html": [ + "3eea6b8d322fbc7966ad3116b90f53ee9689120e", [ - "css/css-break/widows-orphans-019.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-contain/reference/contain-body-t-o-001-ref.html", "==" ] ], {} ] ], - "will-change-filter.html": [ - "2970ddf37c18ad36312187ec2096285e63d0ad6e", + "contain-body-w-m-001.html": [ + "b37e96115c77dd5041980baa4880981b02ec2097", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-contain/reference/contain-body-w-m-001-ref.html", "==" ] ], {} ] - ] - }, - "css-cascade": { - "all-prop-001.html": [ - "9c07dfe1b8d6edc692826ad1435a7e467b8d9ddd", + ], + "contain-body-w-m-002.html": [ + "15040f0399362cc27b21625f77ab074d74331444", [ null, [ [ - "/css/css-cascade/all-prop-001-ref.html", + "/css/css-contain/reference/contain-body-w-m-001-ref.html", "==" ] ], {} ] ], - "all-prop-002.html": [ - "1e5b450ce1652ea4d0e77a517a63e3b8159ffddc", + "contain-body-w-m-003.html": [ + "87b1d63466bebf09c5f0a86c4e9de3400921dd4d", [ null, [ [ - "/css/css-cascade/reference/ref-filled-green-100px-square.xht", + "/css/css-contain/reference/contain-body-w-m-001-ref.html", "==" ] ], {} ] ], - "all-prop-inherit-color.html": [ - "6cd8425cb9c8c725134de3583a2dd0effcf417a4", + "contain-body-w-m-004.html": [ + "736d4a58aae6bcd5eec17952dbca7d4690aaa428", [ null, [ [ - "/css/css-cascade/reference/ref-green-text.html", + "/css/css-contain/reference/contain-body-w-m-001-ref.html", "==" ] ], {} ] ], - "all-prop-initial-color.html": [ - "83a78bd08602ce9aa7cb8f681e9f3626fc3083b6", + "contain-content-001.html": [ + "9d8e1e5c099c868bb1b1c40a1917162ca598a351", [ null, [ [ - "/css/css-cascade/reference/ref-green-text.html", + "/css/css-contain/reference/contain-layout-ifc-022-ref.html", "==" ] ], {} ] ], - "all-prop-initial-visited.html": [ - "6fb7936652a77dade7d5e72032064b67d2886637", + "contain-content-002.html": [ + "7468df7cde83ecd055d47b90d3b99161f3b994f8", [ null, [ [ - "/css/css-cascade/all-prop-initial-visited-ref.html", + "/css/css-contain/reference/contain-paint-ifc-011-ref.html", "==" ] ], {} ] ], - "all-prop-revert-color.html": [ - "786bd0810936ab7473ae27f79320a2119a53f1cc", + "contain-content-003.html": [ + "24d877740f2d4665f87a046130c9e46a37694613", [ null, [ [ - "/css/css-cascade/reference/ref-green-text.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "all-prop-revert-visited.html": [ - "9df1277acab8e226c85b544597184cfe291e18ea", + "contain-content-004.html": [ + "5276b4d08c220045ccf6a6be828e1ae284d82376", [ null, [ [ - "/css/css-cascade/all-prop-revert-visited-ref.html", + "/css/css-contain/reference/contain-layout-cell-001-ref.html", "==" ] ], {} ] ], - "all-prop-unset-color.html": [ - "457901f84148be52335d3a7e36c8e943fa664068", + "contain-content-011.html": [ + "8bed8c4d2283bc5d6eef5e613754cfe52358c0ce", [ null, [ [ - "/css/css-cascade/reference/ref-green-text.html", + "/css/css-contain/reference/contain-content-011-ref.html", "==" ] ], {} ] ], - "all-prop-unset-visited.html": [ - "598d3f5edc1ea7d389a25e4765ab811ffe45cc7d", + "contain-html-bg-001.html": [ + "6d77ce081eb32c9d482083142cc3d15bf6ef7c72", [ null, [ [ - "/css/css-cascade/all-prop-unset-visited-ref.html", + "/css/css-contain/reference/contain-body-bg-001-ref.html", "==" ] ], {} ] ], - "import-conditional-001.html": [ - "a841f265457a3f7bba741143d586e98f8e0354ef", + "contain-html-bg-002.html": [ + "57324052b204e42b092808ebb59a8a914fc1c13d", [ - "css/css-cascade/import-conditional-001.html", + null, [ [ - "/css/css-cascade/reference/ref-filled-green-100px-square.xht", + "/css/css-contain/reference/contain-body-bg-001-ref.html", "==" ] ], {} ] ], - "import-conditional-002.html": [ - "79e850a742bf685b9bea33e632ad8695b0d1f79c", + "contain-html-bg-003.html": [ + "f1115ceb2f5c08d3b652ebe57a65c2a8eedc676f", [ - "css/css-cascade/import-conditional-002.html", + null, [ [ - "/css/css-cascade/reference/ref-filled-green-100px-square.xht", + "/css/css-contain/reference/contain-body-bg-001-ref.html", "==" ] ], {} ] ], - "import-removal.html": [ - "6fb1ea345814f056baa8cb0a07ff2cc1e231d836", + "contain-html-bg-004.html": [ + "05fa3f820eb94c7e8c63fd8bf561c1d574bc7870", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-contain/reference/contain-body-bg-001-ref.html", "==" ] ], {} ] ], - "important-prop.html": [ - "e8abffdf883c180221d8a98b32a62b6109fbe261", + "contain-html-dir-001.html": [ + "c02c2e2765a2027093f0d6bfe92860222f520fbe", [ null, [ [ - "/css/css-cascade/important-prop-ref.html", + "/css/css-contain/reference/contain-body-w-m-001-ref.html", "==" ] ], {} ] ], - "initial-background-color.html": [ - "80897e0ef2b4260c873eccba0752f2e0a1968b5b", + "contain-html-dir-002.html": [ + "7d23558538d9ecb034806865169469acb1b161a4", [ null, [ [ - "/css/css-cascade/reference/all-green.html", + "/css/css-contain/reference/contain-body-w-m-001-ref.html", "==" ] ], {} ] ], - "initial-color-background-001.html": [ - "50e1384b0f2f485e8abe71f7e9f5dab5ad95c121", + "contain-html-dir-003.html": [ + "125f4b70e3feef9e474049702982987cd484e61e", [ null, [ [ - "/css/css-cascade/initial-color-background-001-ref.html", + "/css/css-contain/reference/contain-body-w-m-001-ref.html", "==" ] ], {} ] ], - "layer-media-toggle.html": [ - "83a037a2bda9d04438428eb179e4eb11732f1a0b", + "contain-html-dir-004.html": [ + "af31f64082b20081100513582e51f09c0553806b", [ null, [ [ - "/css/css-cascade/reference/ref-filled-green-100px-square.xht", + "/css/css-contain/reference/contain-body-w-m-001-ref.html", "==" ] ], {} ] ], - "layer-slotted-rule.html": [ - "a33a5a6787a3f26d12079ac03c915797d65bd48a", + "contain-html-overflow-001.html": [ + "736ad1a54dde015f265ca2d80eb0222a04d6ffaf", [ - "css/css-cascade/layer-slotted-rule.html", + null, [ [ - "/css/css-cascade/reference/ref-filled-green-100px-square.xht", + "/css/css-contain/reference/contain-body-overflow-001-ref.html", "==" ] ], {} ] ], - "layer-stylesheet-sharing-important.html": [ - "7b3ff4abc6b5f8e4b5b457921ca73e9dda5fc622", + "contain-html-overflow-002.html": [ + "2fd0b5e1a35ed5f14feaabb4b7d5944d4b78aa25", [ null, [ [ - "/css/css-cascade/layer-stylesheet-sharing-ref.html", + "/css/css-contain/reference/contain-body-overflow-001-ref.html", "==" ] ], {} ] ], - "layer-stylesheet-sharing.html": [ - "c172baaf8185b5ddcfb1f7231186d4008227c29f", + "contain-html-overflow-003.html": [ + "88ce0918916eab7c443cb0a09f085a3036f01db7", [ - "css/css-cascade/layer-stylesheet-sharing.html", + null, [ [ - "/css/css-cascade/layer-stylesheet-sharing-ref.html", + "/css/css-contain/reference/contain-body-overflow-001-ref.html", "==" ] ], {} ] ], - "revert-layer-001.html": [ - "009867e751afcd1c58855bbe57ed6b1cc532102c", + "contain-html-overflow-004.html": [ + "15339ed3dc004b47fd8c4b85ce9d6b6d84ffdbb2", [ - "css/css-cascade/revert-layer-001.html", + null, [ [ - "/css/css-cascade/reference/ref-filled-green-100px-square.xht", + "/css/css-contain/reference/contain-body-overflow-001-ref.html", "==" ] ], {} ] ], - "revert-layer-002.html": [ - "38d3d33d9390a03d8e52438e7cfc6fe909f3f9d8", + "contain-html-t-o-001.html": [ + "d74fa252660f0b870435b1b7769897121a6e5f76", [ - "css/css-cascade/revert-layer-002.html", + null, [ [ - "/css/css-cascade/reference/ref-filled-green-100px-square.xht", + "/css/css-contain/reference/contain-body-t-o-001-ref.html", "==" ] ], {} ] ], - "revert-layer-003.html": [ - "e4e331c82d92857eb538f6344f45cc05eb2ed910", + "contain-html-t-o-002.html": [ + "9ee3837bd2ad715d2f16820881d89514c134d5dd", [ - "css/css-cascade/revert-layer-003.html", + null, [ [ - "/css/css-cascade/reference/ref-filled-green-100px-square.xht", + "/css/css-contain/reference/contain-body-t-o-001-ref.html", "==" ] ], {} ] ], - "revert-layer-004.html": [ - "b751359857a053073d38eb6f978c59e2c08f5f9c", + "contain-html-t-o-003.html": [ + "87e70d505a6fab6ad6d92863c05abec3ff078136", [ - "css/css-cascade/revert-layer-004.html", + null, [ [ - "/css/css-cascade/reference/ref-filled-green-100px-square.xht", + "/css/css-contain/reference/contain-body-t-o-001-ref.html", "==" ] ], {} ] ], - "revert-layer-005.html": [ - "6cd4030727d85953c52e7a24809e38e00b301898", + "contain-html-t-o-004.html": [ + "5f7ea2ef18733b807f1fb4ff30166bdbaa0e4189", [ - "css/css-cascade/revert-layer-005.html", + null, [ [ - "/css/css-cascade/reference/ref-filled-green-100px-square.xht", + "/css/css-contain/reference/contain-body-t-o-001-ref.html", "==" ] ], {} ] ], - "revert-layer-006.html": [ - "678c3e1e9bce6b18b2b56b634e728cb15aa550b3", + "contain-html-w-m-001.html": [ + "e8c0a8222d0993a08cbf8c8be6bb150cbd86243b", [ - "css/css-cascade/revert-layer-006.html", + null, [ [ - "/css/css-cascade/reference/ref-filled-green-100px-square.xht", + "/css/css-contain/reference/contain-body-w-m-001-ref.html", "==" ] ], {} ] ], - "revert-layer-007.html": [ - "7915beeafad13cb77df12056eacc91f0b1428e9f", + "contain-html-w-m-002.html": [ + "f4001a75c02b0f5b07e574c6efb8fd2bbf48efd8", [ - "css/css-cascade/revert-layer-007.html", + null, [ [ - "/css/css-cascade/reference/ref-filled-green-100px-square.xht", + "/css/css-contain/reference/contain-body-w-m-001-ref.html", "==" ] ], {} ] ], - "revert-layer-009.html": [ - "e5c8e62ae0a0464eb15bde96fa92a1e6f91b96ba", + "contain-html-w-m-003.html": [ + "c56d42ed7a40bf993cb4a5309692641aeeced600", [ - "css/css-cascade/revert-layer-009.html", + null, [ [ - "/css/css-cascade/reference/ref-filled-green-100px-square.xht", + "/css/css-contain/reference/contain-body-w-m-001-ref.html", "==" ] ], {} ] ], - "revert-layer-010.html": [ - "278905c6cf324729edb0ad89607bf8563b686be8", + "contain-html-w-m-004.html": [ + "09a32ba50578075f4d41c3007bf38c49a43b5a3f", [ - "css/css-cascade/revert-layer-010.html", + null, [ [ - "/css/css-cascade/reference/ref-filled-green-100px-square.xht", + "/css/css-contain/reference/contain-body-w-m-001-ref.html", "==" ] ], {} ] ], - "revert-layer-011.html": [ - "73a3772f80a3bab4980ae0ed1d65b3b1fe0c8727", + "contain-inline-size-bfc-floats-001.html": [ + "0600959756851ac021e3d0ee791becf35fc4604f", [ - "css/css-cascade/revert-layer-011.html", + null, [ [ - "/css/css-cascade/reference/ref-filled-green-100px-square.xht", + "/css/css-contain/contain-inline-size-bfc-floats-001-ref.html", "==" ] ], {} ] ], - "revert-layer-012.html": [ - "e065defb53b5cc1d320ce511ccb59bca18e85a2e", + "contain-inline-size-bfc-floats-002.html": [ + "691f47c5aa7305859eb4258e9bad991bb171f9bc", [ null, [ [ - "/css/css-cascade/reference/ref-filled-green-100px-square.xht", + "/css/css-contain/contain-inline-size-bfc-floats-002-ref.html", "==" ] ], {} ] ], - "revert-layer-013.html": [ - "862ee72746bb9085c3102e555a601e6220add639", + "contain-inline-size-fieldset.html": [ + "036bffe802a24a77e4ae7768fddb456fbc2848d4", [ null, [ [ - "/css/css-cascade/reference/ref-filled-green-100px-square.xht", + "/css/css-contain/contain-inline-size-fieldset-ref.html", "==" ] ], {} ] ], - "revert-layer-014.html": [ - "6b968625628309959508d452e3b30d5b9a9799f0", + "contain-inline-size-flex.html": [ + "7517ffaca2d1018e6942867f4a502517a8066bf8", [ null, [ [ - "/css/css-cascade/reference/ref-filled-green-100px-square.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "revert-layer-015.html": [ - "a60f5d78f5e3640312ee562ccab9b57bc95ef2d3", + "contain-inline-size-flexitem.html": [ + "12f60fadac02aea7a0c23cd96d294b7be13bba14", [ null, [ [ - "/css/css-cascade/revert-layer-015-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "revert-val-001.html": [ - "b3d79d9e6909afc2a8fbd8a7e7ab4c5db6ebb3ab", + "contain-inline-size-grid-stretches-auto-rows.html": [ + "c168950929d58c2c7b0b4c4228f2185f8a7b4e88", [ null, [ [ - "/css/css-cascade/reference/ref-filled-green-100px-square.xht", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "revert-val-002.html": [ - "d145ea42b299a67e4056f38422cad733824e5a05", + "contain-inline-size-grid.html": [ + "5cd8bfc96e34e36ff1a340e9e09963df9b22ec89", [ null, [ [ - "/css/css-cascade/reference/ref-filled-green-100px-square.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "scope-visited.html": [ - "afccb41a4f2f21fb0f81b4f7d7e1c311b5613348", + "contain-inline-size-intrinsic.html": [ + "5d59b6b8d99ddec8212e831d8e7cebc4c69b385a", [ - "css/css-cascade/scope-visited.html", + null, [ [ - "/css/css-cascade/scope-visited-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "unset-val-001.html": [ - "857cb5d40dc40bfe800290fd6d4aa1c39c33ffd9", + "contain-inline-size-legend.html": [ + "13c8d7d7f469e000952283dbd1cad4356eb491fc", [ null, [ [ - "/css/css-cascade/reference/ref-filled-green-100px-square.xht", + "/css/css-contain/contain-inline-size-legend-ref.html", "==" ] ], {} ] ], - "unset-val-002.html": [ - "61f941a038606ab4394041bd16c7a512f2746772", + "contain-inline-size-multicol.html": [ + "43510677f5d82362856ee2aeb069c5e25e4c6714", [ null, [ [ - "/css/css-cascade/reference/ref-filled-green-100px-square.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] - ] - }, - "css-color": { - "a98rgb-001.html": [ - "727a0aef7d83069ebf420fe551cde09fd2033dea", + ], + "contain-inline-size-regular-container.html": [ + "bb87a9354c11aef317e08b7429552b32a16069f6", [ null, [ [ - "/css/css-color/greensquare-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "a98rgb-002.html": [ - "930c7692525430119ee5f9897006a3921c2edfa2", + "contain-inline-size-removed.html": [ + "6e82f8c760edb5a8bc61e5b88517443069618519", [ null, [ [ - "/css/css-color/blacksquare-ref.html", + "/css/css-contain/reference/pass_if_pass_below_clipped.html", "==" ] ], {} ] ], - "a98rgb-003.html": [ - "f4ad2b7bd9bd04df12299b39abfc8e51184ee9c4", + "contain-inline-size-table.html": [ + "de726caa907ea4997d7f128889c65517c5d02365", [ null, [ [ - "/css/css-color/a98rgb-003-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "a98rgb-004.html": [ - "24c476b7c75c042b9a92c72a57184fdf833e64df", + "contain-inline-size-vertical-rl-.html": [ + "357ea4fcafac5e1f9cc48a37f35d4de594ffb83f", [ null, [ [ - "/css/css-color/a98rgb-004-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "animation": { - "opacity-animation-ending-correctly-001.html": [ - "1fb36cd366ff260f073c7de6d8062d9fceff5340", - [ - null, - [ - [ - "/css/css-color/animation/opacity-animation-ending-correctly-001-ref.html", - "==" - ] - ], - {} - ] - ], - "opacity-animation-ending-correctly-002.html": [ - "7ba097fb105ab683d6a8a7484007821a13a75a62", - [ - null, - [ - [ - "/css/css-color/animation/opacity-animation-ending-correctly-001-ref.html", - "==" - ] - ], - {} - ] - ] - }, - "at-color-profile-001.html": [ - "f2a971532c823dfe821a0eed1a9fe0e7a8631a71", + "contain-layout-001.html": [ + "85b959da2b9a151c13be3dc83485646341752915", [ null, [ [ - "/css/css-color/greensquare-090-ref.html", + "/css/reference/pass_if_pass_below.html", "==" ] ], {} ] ], - "background-color-hsl-001.html": [ - "2b8c7d313c7ffe74ca62d8f1c177e9c66b73d998", + "contain-layout-002.html": [ + "c243c8eb29fb894bc8397053cf17a889cc16838c", [ null, [ [ - "/css/css-color/background-color-hsl-001-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "background-color-hsl-002.html": [ - "a1e9a0127e345270d107fc9724a84a101f425f84", + "contain-layout-003.html": [ + "bc672d9ba1a3a645147d0acc0d61c73c2c1b8956", [ null, [ [ - "/css/css-color/background-color-hsl-002-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "background-color-hsl-003.html": [ - "f9c256e1773d5b3e98557f61cce22959025af680", + "contain-layout-004.html": [ + "08d379d996e71fb77f2290bade118fef11e465a3", [ null, [ [ - "/css/css-color/background-color-hsl-003-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "background-color-hsl-004.html": [ - "1cd6684c710343f6ee967c2fe2bcc561a0efd5eb", + "contain-layout-005.html": [ + "72256d43487ac4ad3d481e178d2077a82102ebbf", [ null, [ [ - "/css/css-color/background-color-hsl-004-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "background-color-rgb-001.html": [ - "061eeac2fac9b38389c3b60e8203f789187927e0", + "contain-layout-006.html": [ + "57dc518a65b3773f63ab1b3d91eedb4f58ddaa57", [ null, [ [ - "/css/css-color/background-color-rgb-001-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "background-color-rgb-002.html": [ - "8919f0ea3e49ebada41217e16e8b87ed7556798d", + "contain-layout-007.html": [ + "39be5fe7fd06edc63704ee2e10c20dee14d01738", [ null, [ [ - "/css/css-color/background-color-rgb-002-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "background-color-rgb-003.html": [ - "6a22ba0dbbbb0323a291a7b31b55d641448714e5", + "contain-layout-009.html": [ + "39ef1271af19b44d968934937a02fea92df0a307", [ null, [ [ - "/css/css-color/background-color-rgb-003-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "body-opacity-0-to-1-stacking-context.html": [ - "c2cd4d550472defab2facbe25c87f0321858c1f5", + "contain-layout-010.html": [ + "6e4dde8aeb1ecabb8fda646fab16fae13c07aa7d", [ - "css/css-color/body-opacity-0-to-1-stacking-context.html", + null, [ [ - "/css/css-color/greensquare-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-bottom-color.xht": [ - "994bb4e904ccc28fb54865031ffe55c7ec50bac2", + "contain-layout-011.html": [ + "99021b48526a7a903288c63a876f81c40903dedf", [ null, [ [ - "/css/css-color/border-color-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-color-currentcolor.html": [ - "525a89e312dfaa76b165b7583c980933e7e73163", + "contain-layout-012.html": [ + "9a2534ee69b6cf9a0b7538bca92b72a8eb33b36e", [ - "css/css-color/border-color-currentcolor.html", + null, [ [ - "/css/css-color/border-color-currentcolor-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-left-color.xht": [ - "3214f2d8143cda12ecdcf8df00016e678cf2de52", + "contain-layout-013.html": [ + "08e1e4d9ec708698d3ffef9947045076cdbc542b", [ null, [ [ - "/css/css-color/border-color-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-right-color.xht": [ - "70f7721c22d266f0854eba6f7edeeb05364e8b45", + "contain-layout-014.html": [ + "bf0e47eee10ee8613a2a36f6622f7e83737f7875", [ null, [ [ - "/css/css-color/border-color-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "border-top-color.xht": [ - "706da7e3c8d81bcc3771b35a62721b6a86d2975e", + "contain-layout-016.html": [ + "e8fdede2774447062fee4200ae698ba5d2706635", [ null, [ [ - "/css/css-color/border-color-ref.xht", + "/css/reference/pass_if_pass_below.html", "==" ] ], {} ] ], - "canvas-change-opacity.html": [ - "1c1ea718bfd49dc70b32d22f3411145cf33237ae", + "contain-layout-017.html": [ + "fd74c5a5f4aa81b14da7aaa3e6da927e30a2e9cb", [ null, [ [ - "/css/css-color/greensquare-ref.html", + "/css/reference/nothing.html", "==" ] ], {} ] ], - "color-001.html": [ - "580307ba0736edc113f594f2ae0dfe039d4f7a8d", + "contain-layout-018.html": [ + "5d7ebc0195cbbb7bc303784ab05296885c323f40", [ null, [ [ - "/css/css-color/greentext-ref.html", + "/css/reference/nothing.html", "==" ] ], {} ] ], - "color-002.html": [ - "7d2f5b318e6e885d54cf3fa1c1b21e53f48b4bac", + "contain-layout-019.html": [ + "5d112e26f9f3a38cb821c2668d391cbe2748726b", [ null, [ [ - "/css/css-color/blacktext-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "color-003.html": [ - "c9ed7c773ba0f29753176479c35ef6d1bb801bed", + "contain-layout-020.html": [ + "655d4431d8951e96192b704f025751854118148b", [ null, [ [ - "/css/css-color/greentext-ref.html", + "/css/css-contain/reference/contain-layout-020-ref.html", "==" ] ], {} ] ], - "color-contrast-001.html": [ - "d2fd196a33a338c08cba1445a4e44a8809dad9ad", + "contain-layout-021.html": [ + "fcb81308284a238beece9816ac4e5755d22af544", [ null, [ [ - "/css/css-color/greensquare-ref.html", + "/css/css-contain/reference/contain-layout-021-ref.html", "==" ] ], {} ] ], - "color-mix-basic-001.html": [ - "c69a292159003c578918bd1be9e495c6cbdb094e", + "contain-layout-baseline-001.html": [ + "cf8e94faa48eb3cfca6db0264b6f1a10e18b0e1d", [ null, [ [ - "/css/css-color/color-mix-basic-001-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "color-mix-currentcolor-001.html": [ - "0f502d22ec85e45664280c356ee1c06c8e742fab", + "contain-layout-baseline-002.html": [ + "9b86afa9ae9ae391fdc24b74b9cdcce39df88da1", [ null, [ [ - "/css/css-color/color-mix-currentcolor-001-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "color-mix-currentcolor-002.html": [ - "fb050688379c8709af9b1d6dca324731e71fc246", + "contain-layout-baseline-003.html": [ + "d4f8c738787c6a4f1b6e096c5dcd599604281fc9", [ null, [ [ - "/css/css-color/color-mix-currentcolor-002-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "color-mix-currentcolor-003.html": [ - "7d9b110aeb1685f3011f6a819935a550cde13f0b", + "contain-layout-baseline-004.html": [ + "11e81b270bc6a99ddc610e046ab2b1a19e635a79", [ - "css/css-color/color-mix-currentcolor-003.html", + null, [ [ - "/css/css-color/color-mix-currentcolor-003-ref.html", + "/css/css-contain/reference/contain-layout-baseline-004-ref.html", "==" ] ], {} ] ], - "color-mix-currentcolor-nested-for-color-property.html": [ - "ddcce29e7483066a65daa07dc1f76ed64a7d2f7f", + "contain-layout-baseline-005.html": [ + "fb706cbf0300eb09dd6daaf3a6e91417e40ad1b8", [ - "css/css-color/color-mix-currentcolor-nested-for-color-property.html", + null, [ [ - "/css/css-color/color-mix-currentcolor-nested-for-color-property-ref.html", + "/css/css-contain/reference/contain-layout-baseline-005-ref.html", "==" ] ], {} ] ], - "color-mix-currentcolor-visited.html": [ - "28db2d6736fe3b5e4b012c758a5b2e1a42bbf674", + "contain-layout-breaks-001.html": [ + "a85cf2c6c8e00f1d21fa5a63da81eff8148f3d71", [ - "css/css-color/color-mix-currentcolor-visited.html", + null, [ [ - "/css/css-color/color-mix-currentcolor-visited-ref.html", + "/css/css-contain/reference/contain-style-breaks-004-ref.html", "==" ] ], {} ] ], - "color-mix-non-srgb-001.html": [ - "7563581a4cf6f8438e1ad9a8a25671c3f052ce79", + "contain-layout-breaks-002.html": [ + "7b5c17ac55418c06b5e7543b441095a7f00c08a5", [ null, [ [ - "/css/css-color/color-mix-non-srgb-001-ref.html", + "/css/css-contain/reference/contain-layout-breaks-002-ref.html", "==" ] ], {} ] ], - "color-mix-percents-01.html": [ - "425ef9a63621ef635fc3e800ee92a59dd32978d0", + "contain-layout-button-001.tentative.html": [ + "f5a664e566f6bc0324d14779f67b15e6d36d1615", [ null, [ [ - "/css/css-color/color-mix-percents-01-ref.html", + "/css/css-contain/reference/contain-layout-button-001-ref.html", "==" ] ], {} ] ], - "color-mix-percents-02.html": [ - "27939f510910e2dd8d976b80eca9b88df2d2a672", + "contain-layout-button-002.tentative.html": [ + "15026d55f8c63712d19d8297c7c63e8543d3bf2f", [ null, [ [ - "/css/css-color/color-mix-percents-01-ref.html", + "/css/css-contain/reference/contain-layout-button-002-ref.html", "==" ] ], {} ] ], - "composited-filters-under-opacity.html": [ - "f613748af3ac5bb59c9fa207937ae6207d71062e", + "contain-layout-cell-001.html": [ + "66710060a7bf0bef0dd8e7a631761ef3e2e9e2cd", [ null, [ [ - "/css/css-color/composited-filters-under-opacity-ref.html", + "/css/css-contain/reference/contain-layout-cell-001-ref.html", "==" ] ], {} ] ], - "currentcolor-001.html": [ - "e08129ee52272c1ef3d98cecd3f2890f39cca98d", + "contain-layout-cell-002.html": [ + "2c10eb21e0c5f7d54630c22a0505d22559b6ad42", [ null, [ [ - "/css/css-color/greensquare-ref.html", + "/css/css-contain/reference/contain-layout-cell-001-ref.html", "==" ] ], {} ] ], - "currentcolor-002.html": [ - "aa5d736c688d45d340e0947f13c7a895ea312643", + "contain-layout-containing-block-absolute-001.html": [ + "036cf7d8dd6f6de18e5aa4cf9f1df25799b10094", [ null, [ [ - "/css/css-color/greensquare-ref.html", + "/css/css-contain/contain-paint-containing-block-absolute-001-ref.html", "==" ] ], {} ] ], - "currentcolor-003.html": [ - "d3ad9c4c15dd0ef58ae303c60cf6106b43c3a617", + "contain-layout-containing-block-fixed-001.html": [ + "979d71d406d293a3a0a507bf4a4c6a07826cbef7", [ null, [ [ - "/css/css-color/currentcolor-003-ref.html", + "/css/css-contain/contain-paint-containing-block-fixed-001-ref.html", "==" ] ], {} ] ], - "currentcolor-004.html": [ - "06a429071ab7dac4f8583ba17a41d73f6d637e3d", + "contain-layout-dynamic-004.html": [ + "d3c9eb686066eb4681975aca26d9e5962456ee01", [ - "css/css-color/currentcolor-004.html", + null, [ [ - "/css/css-color/currentcolor-004-ref.html", + "/css/css-contain/contain-layout-dynamic-004-ref.html", "==" ] ], {} ] ], - "currentcolor-visited-fallback.html": [ - "a83506b5e581ac28a4864b47426e30d796f6d3d8", + "contain-layout-dynamic-005.html": [ + "a430ae5181ba9c97e5f8620c763a9e332acff17f", [ - "css/css-color/currentcolor-visited-fallback.html", + null, [ [ - "/css/css-color/currentcolor-visited-fallback-ref.html", + "/css/css-contain/contain-layout-dynamic-005-ref.html", "==" ] ], {} ] ], - "deprecated-sameas-001.html": [ - "b03af9eb29fb6f4e23a036a927dd35bbf12bf112", + "contain-layout-flexbox-001.html": [ + "2b206edb57f46f3baa9dcfbcc24591b852cf8697", [ null, [ [ - "/css/css-color/deprecated-sameas-ButtonBorder-ref.html", + "/css/css-contain/reference/contain-layout-flexbox-001-ref.html", "==" ] ], {} ] ], - "deprecated-sameas-002.html": [ - "dcac061654bf30cb6ca73c197208897115aabef7", + "contain-layout-formatting-context-float-001.html": [ + "3486f6399985935b224b6d32df37273794a8cb0f", [ null, [ [ - "/css/css-color/deprecated-sameas-CanvasText-ref.html", + "/css/css-contain/contain-paint-formatting-context-float-001-ref.html", "==" ] ], {} ] ], - "deprecated-sameas-003.html": [ - "b0a5466e8f6aab82168f9eacbacbc0263f3a6bf8", + "contain-layout-formatting-context-margin-001.html": [ + "3b8f9caa7519d1afe798adeb4e64b58222592225", [ null, [ [ - "/css/css-color/deprecated-sameas-Canvas-ref.html", + "/css/css-contain/contain-layout-formatting-context-margin-001-ref.html", "==" ] ], {} ] ], - "deprecated-sameas-004.html": [ - "8be2be1eb7f733eb73f9943e06a2490ce7bc90f3", + "contain-layout-grid-001.html": [ + "a6bcc4dbc2adda58602281eac5c2c0b2c0a9de61", [ null, [ [ - "/css/css-color/deprecated-sameas-Canvas-ref.html", + "/css/css-contain/reference/contain-layout-grid-001-ref.html", "==" ] ], {} ] ], - "deprecated-sameas-005.html": [ - "8ed192f2b63c163964c51520117dd956ea17a750", + "contain-layout-ifc-022.html": [ + "1b66fe347e1f58b3f21979fbd44f873955c2e5a9", [ null, [ [ - "/css/css-color/deprecated-sameas-ButtonFace-ref.html", + "/css/css-contain/reference/contain-layout-ifc-022-ref.html", "==" ] ], {} ] ], - "deprecated-sameas-006.html": [ - "1a1a4776ef68130ecd96b945303ddec2723e6448", + "contain-layout-ignored-cases-ib-split-001.html": [ + "d9f976deb8ca604315f105a339de9eac7ee48741", [ null, [ [ - "/css/css-color/deprecated-sameas-ButtonFace-ref.html", + "/css/css-contain/contain-layout-ignored-cases-ib-split-001-ref.html", "==" ] ], {} ] ], - "deprecated-sameas-007.html": [ - "b10783723dde047a52e9bea78b631da697ba153a", + "contain-layout-ignored-cases-no-principal-box-001.html": [ + "bd2f4cb8178054e0aab0b208610e8a2ba97b1141", [ null, [ [ - "/css/css-color/deprecated-sameas-CanvasText-ref.html", + "/css/css-contain/contain-paint-ignored-cases-no-principal-box-001-ref.html", "==" ] ], {} ] ], - "deprecated-sameas-008.html": [ - "e8ffb845741bf86d9ac7e4045e558495c34c3b2e", + "contain-layout-ignored-cases-no-principal-box-002.html": [ + "de2edfb58f86fea5a8a0367b595dc471b568bc85", [ null, [ [ - "/css/css-color/deprecated-sameas-ButtonBorder-ref.html", + "/css/css-contain/contain-layout-ignored-cases-no-principal-box-002-ref.html", "==" ] ], {} ] ], - "deprecated-sameas-009.html": [ - "4940e6de677f1d19dabffcaf2922ea98c29c8301", + "contain-layout-ignored-cases-no-principal-box-003.html": [ + "d40a02115665782b81d14e6c3d5e5b0c5f38690a", [ null, [ [ - "/css/css-color/deprecated-sameas-Canvas-ref.html", + "/css/css-contain/contain-layout-ignored-cases-no-principal-box-003-ref.html", "==" ] ], {} ] ], - "deprecated-sameas-010.html": [ - "53e2588f9b8829da858a3da3eece5f4e4b2758e0", + "contain-layout-independent-formatting-context-001.html": [ + "94c88bc49cb123e98b114136b7836cd6f24c9574", [ null, [ [ - "/css/css-color/deprecated-sameas-GrayText-ref.html", + "/css/css-contain/reference/contain-paint-independent-formatting-context-001-ref.html", "==" ] ], {} ] ], - "deprecated-sameas-011.html": [ - "3a15d0150103a9130197b3b0715133c51616acab", + "contain-layout-independent-formatting-context-002.html": [ + "8491e3d28f90f09beb4121eed411d1a3e122284b", [ null, [ [ - "/css/css-color/deprecated-sameas-Canvas-ref.html", + "/css/css-contain/reference/contain-paint-independent-formatting-context-001-ref.html", "==" ] ], {} ] ], - "deprecated-sameas-012.html": [ - "14d7ebf83449a4349162fb0d644eafd448651382", + "contain-layout-independent-formatting-context-003.html": [ + "a10afd3cdee90b988e0c3d25b533d3c1b4e8bb06", [ null, [ [ - "/css/css-color/deprecated-sameas-CanvasText-ref.html", + "/css/css-contain/reference/contain-paint-independent-formatting-context-003-ref.html", "==" ] ], {} ] ], - "deprecated-sameas-013.html": [ - "374ab4775a079445299ca16f7ac8df211f518e40", + "contain-layout-ink-overflow-013.html": [ + "ca11f420877490d38a7df4b172640e5b4d0e92cb", [ null, [ [ - "/css/css-color/deprecated-sameas-Canvas-ref.html", + "/css/css-contain/reference/contain-layout-ink-overflow-013-ref.html", "==" ] ], {} ] ], - "deprecated-sameas-014.html": [ - "3ee9a8e088dcbfd5b3ccf3c38de807c98646c7a1", + "contain-layout-ink-overflow-014.html": [ + "cbb752d625eca13df978aa81908fbf32013686d9", [ null, [ [ - "/css/css-color/deprecated-sameas-CanvasText-ref.html", + "/css/css-contain/reference/contain-layout-ink-overflow-014-ref.html", "==" ] ], {} ] ], - "deprecated-sameas-015.html": [ - "71aba26527aa4ce8fbc858ffa7f8748af2b48303", + "contain-layout-ink-overflow-015.html": [ + "0eaaf9ab436ee4cf18c451ca429683cbbe09d76b", [ null, [ [ - "/css/css-color/deprecated-sameas-Canvas-ref.html", + "/css/css-contain/reference/contain-layout-ink-overflow-015-ref.html", "==" ] ], {} ] ], - "deprecated-sameas-016.html": [ - "3a1e9cbf1f21c61351a0944fcb3bc4595fc3bc60", + "contain-layout-ink-overflow-016.html": [ + "e4ade9d7a46ff8d4c3944792024b34c3634e0d29", [ null, [ [ - "/css/css-color/deprecated-sameas-ButtonBorder-ref.html", + "/css/css-contain/reference/contain-layout-ink-overflow-015-ref.html", "==" ] ], {} ] ], - "deprecated-sameas-017.html": [ - "eed5571ff254398511edf03e9c7de7a2e01b0307", + "contain-layout-ink-overflow-017.html": [ + "d6b6f83b3a5f2980b599a0b4ef9a41dd345c52ce", [ null, [ [ - "/css/css-color/deprecated-sameas-ButtonFace-ref.html", + "/css/css-contain/reference/contain-layout-ink-overflow-014-ref.html", "==" ] ], {} ] ], - "deprecated-sameas-018.html": [ - "11e3e3a1bd62c0c97ab40802e21f1e30c2520ae8", + "contain-layout-ink-overflow-018.html": [ + "bf00128bbb1728d46e29c4a756f8663def956cac", [ null, [ [ - "/css/css-color/deprecated-sameas-ButtonBorder-ref.html", + "/css/css-contain/reference/contain-layout-ink-overflow-015-ref.html", "==" ] ], {} ] ], - "deprecated-sameas-019.html": [ - "c99239e2ef3165d439477defa50e40d4e6f6a972", + "contain-layout-ink-overflow-019.html": [ + "5cda6cd5bebb2f3353778eb17285b4dd487ca881", [ null, [ [ - "/css/css-color/deprecated-sameas-ButtonBorder-ref.html", + "/css/css-contain/reference/contain-layout-ink-overflow-019-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 1, + 1 + ], + [ + 0, + 50 + ] + ] + ] + ] + } ] ], - "deprecated-sameas-020.html": [ - "85dc1261d3764f8ee199a7458eb420dceecf574d", + "contain-layout-ink-overflow-020.html": [ + "2ed9062eb462e5abe26b203171fbe38b59fb87cf", [ null, [ [ - "/css/css-color/deprecated-sameas-ButtonBorder-ref.html", + "/css/css-contain/reference/contain-layout-ink-overflow-020-ref.html", "==" ] ], {} ] ], - "deprecated-sameas-021.html": [ - "ce3de2f3b55338f048bc55aa36c23d90c05571eb", + "contain-layout-overflow-001.html": [ + "05c66fa1e985261dcf8bab284ad05c9b88e293ba", [ null, [ [ - "/css/css-color/deprecated-sameas-Canvas-ref.html", + "/css/css-contain/contain-layout-overflow-001-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 1, + 1 + ], + [ + 0, + 50 + ] + ] + ] + ] + } ] ], - "deprecated-sameas-022.html": [ - "c873dc2d1084f40e2918d3f6301eab615d60988f", + "contain-layout-overflow-002.html": [ + "4929dc5d33e760503c9a7d98d6adbafa3f07637a", [ null, [ [ - "/css/css-color/deprecated-sameas-ButtonBorder-ref.html", + "/css/css-contain/contain-layout-overflow-002-ref.html", "==" ] ], {} ] ], - "deprecated-sameas-023.html": [ - "a074329c628c09e5f8520ef5bfa0c4539d439913", + "contain-layout-size-003.html": [ + "50b5f0b65cd2c7ef04bd14507432dc35fdc915c4", [ null, [ [ - "/css/css-color/deprecated-sameas-CanvasText-ref.html", + "/css/css-contain/reference/contain-layout-size-003-ref.html", "==" ] ], {} ] ], - "display-p3-001.html": [ - "74fe34a7ca918c35d8d7453ef18f73c0e82b31c0", + "contain-layout-stacking-context-001.html": [ + "4ec3bcee6fdf7d46f076ddf460c8081d9b19e8ee", [ null, [ [ - "/css/css-color/greensquare-ref.html", + "/css/css-contain/contain-paint-stacking-context-001-ref.html", "==" ] ], {} ] ], - "display-p3-002.html": [ - "6a930298d69fa284fa2d2fdc22f85ac1f9e80cf3", + "contain-layout-suppress-baseline-001.html": [ + "b023cfdf96d64f8c374709a992ca2343d56133db", [ null, [ [ - "/css/css-color/blacksquare-ref.html", + "/css/css-contain/contain-layout-suppress-baseline-001-ref.html", "==" ] ], {} ] ], - "display-p3-003.html": [ - "122c0f0a13946dc8e3cebb3ae4862f233e3936ec", + "contain-layout-suppress-baseline-002.html": [ + "a370386edeea604609831bfdf1df7757d370f747", [ null, [ [ - "/css/css-color/whitesquare-ref.html", + "/css/css-contain/contain-layout-suppress-baseline-002-ref.html", "==" ] ], {} ] ], - "display-p3-004.html": [ - "8b0999adbe5415aae9015425242bf0e39c353cce", + "contain-paint-001.html": [ + "ca2eb6e6f98fd8aec3fbd3b252658e7e966f03a2", [ null, [ [ - "/css/css-color/display-p3-004-ref.html", + "/css/css-contain/reference/contain-paint-001-ref.html", "==" ] ], {} ] ], - "display-p3-005.html": [ - "db255dc60cdb199ec16f650674d59b4ab43e529e", + "contain-paint-002.html": [ + "6f495f56173078d323fd2f6ba47bc92ea32e1aab", [ null, [ [ - "/css/css-color/yellowsquare-ref.html", + "/css/reference/pass_if_pass_below.html", "==" ] ], {} ] ], - "display-p3-006.html": [ - "0285af8ba2aa478795d1bca862c1198a1667ce65", + "contain-paint-004.html": [ + "d37676dda9c4910d9e22b9553ea93616ca617d1a", [ null, [ [ - "/css/css-color/mossgreensquare-ref.html", + "/css/reference/nothing.html", "==" ] ], {} ] ], - "filters-under-will-change-opacity.html": [ - "feb5355f8bcdc76502b554858df782632a7a319f", + "contain-paint-005.html": [ + "a6817be517fdbeb608eb656e7dcab998edd163a4", [ null, [ [ - "/css/css-color/composited-filters-under-opacity-ref.html", + "/css/reference/pass_if_pass_below.html", "==" ] ], {} ] ], - "hex-001.html": [ - "0c90f877874316689e55623a69b1776646bef12d", + "contain-paint-006.html": [ + "b04a78f99857ca8b8dc01b6c208cc3e0aae02710", [ null, [ [ - "/css/css-color/greensquare-ref.html", + "/css/reference/pass_if_pass_below.html", "==" ] ], {} ] ], - "hex-002.html": [ - "ee3f5a45eec5f30d1b408ccbb53380e9110c268f", + "contain-paint-007.html": [ + "b02bd535b787a0ab0c82ffb4d46979ff517bfb85", [ null, [ [ - "/css/css-color/greensquare-ref.html", + "/css/css-contain/reference/contain-paint-007-ref.html", "==" ] ], {} ] ], - "hex-003.html": [ - "2ee4ec61e5df8a91c48fb656280bc88e5a54702c", + "contain-paint-008.html": [ + "ab1ba6beab66a7637b912c36e33f1708bc24ee19", [ null, [ [ - "/css/css-color/hex-003-ref.html", + "/css/css-contain/reference/contain-paint-008-ref.html", "==" ] ], {} ] ], - "hex-004.html": [ - "39e12ffee1ee9185396e5a8afc3b7c5bcd38eba7", + "contain-paint-009.html": [ + "34ca8d72b5994a1a47f3dc95bd8b738e913eb997", [ null, [ [ - "/css/css-color/hex-003-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "hsl-001.html": [ - "a71ce6bad650dd6ee5d57c7c08eba1eeab873815", + "contain-paint-010.html": [ + "13f4a9395ca68541bd5ffba594be1ba6d36c5e85", [ null, [ [ - "/css/css-color/greensquare-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "hsl-002.html": [ - "fae6126fdc7153a2947f2cc9347f7beeeef4aa9c", + "contain-paint-011.html": [ + "d18a667025f43803a3285431fc07315d61a37265", [ null, [ [ - "/css/css-color/greensquare-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "hsl-003.html": [ - "e175e2a2ffdb7e2228528eff6cbaf944d24e021a", + "contain-paint-012.html": [ + "471726a99c659ab0d6a7870ee2519994051b425f", [ null, [ [ - "/css/css-color/greensquare-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "hsl-004.html": [ - "2af529158e0ef84a6dc5c236e54b3207c7e63786", + "contain-paint-014.html": [ + "ee6bc7876f6f0a1f3653c62819fd16553b1610b7", [ null, [ [ - "/css/css-color/greensquare-ref.html", + "/css/reference/nothing.html", "==" ] ], {} ] ], - "hsl-005.html": [ - "7dc793595b7f2e641c7e120e5b6cf147299e75b9", + "contain-paint-015.html": [ + "702bfb62b1878c2b95355a9867b31f80110df18c", [ null, [ [ - "/css/css-color/greensquare-ref.html", + "/css/reference/pass_if_pass_below.html", "==" ] ], {} ] ], - "hsl-006.html": [ - "348a8a80c6c777c3563b9ddac92ad696ace9406c", + "contain-paint-016.html": [ + "cb16009e11e1e66900988a7c184af8058d9dcffc", [ null, [ [ - "/css/css-color/greensquare-ref.html", + "/css/reference/pass_if_pass_below.html", "==" ] ], {} ] ], - "hsl-007.html": [ - "9e1bc08add141969b258495b14d0815a2e9c712c", + "contain-paint-017.html": [ + "d1e57d4d5c0c3db98acc242a40a79eda38bc2e2c", [ null, [ [ - "/css/css-color/greensquare-ref.html", + "/css/reference/pass_if_pass_below.html", "==" ] ], {} ] ], - "hsl-008.html": [ - "1024a1f83c9696f16f002dabc54d45a413e9caea", + "contain-paint-018.html": [ + "f4b92dab876080663d000ce03dc3a26bfa8969d7", [ null, [ [ - "/css/css-color/greensquare-ref.html", + "/css/reference/pass_if_pass_below.html", "==" ] ], {} ] ], - "hsla-001.html": [ - "c3b2633a0a9af9814818f9e671c9f5c7db978524", + "contain-paint-019.html": [ + "90c5a8f0540964ae829d586854e2695d1722a1da", [ null, [ [ - "/css/css-color/greensquare-ref.html", + "/css/reference/nothing.html", "==" ] ], {} ] ], - "hsla-002.html": [ - "a51c5f2b96b260341e57e18dcfa370e222ae3d79", + "contain-paint-020.html": [ + "44a62172ed64b5e027639f39b8cf73522ddfa680", [ null, [ [ - "/css/css-color/greensquare-ref.html", + "/css/reference/pass_if_pass_below.html", "==" ] ], {} ] ], - "hsla-003.html": [ - "c9845934364a0aadf325fe6cc8f0a48e485e8e9c", + "contain-paint-021.html": [ + "c1f145245d29702914c5e35d7a4a8053f452c156", [ null, [ [ - "/css/css-color/greensquare-ref.html", + "/css/reference/nothing.html", "==" ] ], {} ] ], - "hsla-004.html": [ - "aa095cafa552fb4a3caae6a369fe8f00edbe0b3d", + "contain-paint-022.html": [ + "91b3884d465fe40214870f36d3ad772b90722008", [ null, [ [ - "/css/css-color/greensquare-ref.html", + "/css/css-contain/reference/contain-paint-022-ref.html", "==" ] ], {} ] ], - "hsla-005.html": [ - "ab88515c57b33bb7bec472871304dbca80a3cd64", + "contain-paint-023.html": [ + "695dc4e778c794d2d63460b8665077211ffd3c04", [ null, [ [ - "/css/css-color/greensquare-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "hsla-006.html": [ - "f9a93cd2c4ee1dbe9e1da3b506e85885f1909b5e", + "contain-paint-024.html": [ + "ea92aeb43b0dc08765dc2c7e1b4bc59ec62b271d", [ null, [ [ - "/css/css-color/greensquare-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "hsla-007.html": [ - "8c583fcda019c89916184f0b8899b0a01e30af0b", + "contain-paint-025.html": [ + "0a41b62b2c169d2a5e571bde059a78ad2d5c2a16", [ null, [ [ - "/css/css-color/greensquare-ref.html", + "/css/reference/nothing.html", "==" ] ], {} ] ], - "hsla-008.html": [ - "e5aaa243736fdc9e1edf3c976902dedefeb1f99e", + "contain-paint-026.html": [ + "f6da8679f039eb1a2c8c94bc7b500f88b0b1ea5c", [ null, [ [ - "/css/css-color/greensquare-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "hwb-001.html": [ - "d1dce30c8ef85e0d5e536f261ad872185ac0e5f0", + "contain-paint-047.html": [ + "7fdc4a8f0d7c8b78d92907c25a5d7ea9ab56e4f3", [ null, [ [ - "/css/css-color/greensquare-ref.html", + "/css/css-contain/reference/contain-paint-047-ref.html", "==" ] ], {} ] ], - "hwb-002.html": [ - "1850c999b5069b7f36192d705ba46b7f4da88e8a", + "contain-paint-048.html": [ + "870484e5759c00fd3af34d2e2bc66ecf2e25e331", [ null, [ [ - "/css/css-color/blacksquare-ref.html", + "/css/css-contain/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "hwb-003.html": [ - "f56a68a5dcefa29bf7d6a5849804a98e40694da4", + "contain-paint-050.html": [ + "a25e126921ea16a0e3dce00703a839faf5b33e20", [ null, [ [ - "/css/css-color/hwb-003-ref.html", + "/css/css-contain/contain-paint-050-ref.html", "==" ] ], {} ] ], - "hwb-004.html": [ - "31b1dc5ad522ff376b8e9ab8b281370aa7ab4ee2", + "contain-paint-baseline-001.html": [ + "c44444dd05b9869f494df0c657c8adc4a3b3c5fc", [ null, [ [ - "/css/css-color/hwb-004-ref.html", + "/css/css-contain/reference/contain-baseline-ref.html", "==" ] ], {} ] ], - "hwb-005.html": [ - "e3603e9a9019e2dd5c4d693a934418d257e0f5f7", + "contain-paint-cell-001.html": [ + "5a4a7a4e691ed09b61d022e2e2ce442805446764", [ null, [ [ - "/css/css-color/hwb-005-ref.html", + "/css/css-contain/reference/contain-paint-047-ref.html", "==" ] ], {} ] ], - "inline-opacity-float-child.html": [ - "98afcbcc2d8f3aad53ca95689a505297ab994d3b", + "contain-paint-cell-002.html": [ + "f6707003884937e619623d8691460f4f42e7170c", [ - "css/css-color/inline-opacity-float-child.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-contain/reference/contain-paint-047-ref.html", "==" ] ], {} ] ], - "lab-001.html": [ - "177cf96ef1dfede4a1194d72182d97191e866cb2", + "contain-paint-change-opacity.html": [ + "4fe3f439b54ee306eccf0d670e43249ddbf6010d", [ null, [ [ - "/css/css-color/greensquare-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "lab-002.html": [ - "e30696995dbc2a582ae17b83ff216cc1c66d726d", + "contain-paint-clip-001.html": [ + "6637e08393b972cbe1c075b2e9b79e681ff5dab2", [ null, [ [ - "/css/css-color/blacksquare-ref.html", + "/css/css-contain/contain-paint-clip-001-ref.html", "==" ] ], {} ] ], - "lab-003.html": [ - "9308e16456cd5746ddd60c23066dff4c94dad7d8", + "contain-paint-clip-002.html": [ + "ba16325b973cb58d2f655ecfa322097add27ac87", [ null, [ [ - "/css/css-color/whitesquare-ref.html", + "/css/css-contain/contain-paint-clip-002-ref.html", "==" ] ], {} ] ], - "lab-004.html": [ - "b2ebfc187a7a3bd30acfccf4609442fd5693af69", + "contain-paint-clip-003.html": [ + "30a7335f1521ce2f9ed0d6e440373a384523a6d6", [ null, [ [ - "/css/css-color/lab-004-ref.html", + "/css/css-contain/contain-paint-clip-003-ref.html", "==" ] ], {} ] ], - "lab-005.html": [ - "532d84f14b4426f712f2b8edfef823bff409807b", + "contain-paint-clip-004.html": [ + "709f191e85aa2201aecf9a6ebff64bd1407f481f", [ null, [ [ - "/css/css-color/lab-005-ref.html", + "/css/css-contain/contain-paint-clip-004-ref.html", "==" ] ], {} ] ], - "lab-006.html": [ - "55d6351ddb6aca74c93368b1d7a0a026ae0df668", + "contain-paint-clip-005.html": [ + "fce4a89fbb8ac2c416798e8ccbc96998fa85b2a5", [ null, [ [ - "/css/css-color/lab-006-ref.html", + "/css/css-contain/contain-paint-clip-003-ref.html", "==" ] ], {} ] ], - "lab-007.html": [ - "89edbb75496a9056cb7250eb1ac31f6914ec21fb", + "contain-paint-clip-006.html": [ + "a4d6835a1655453b9b6a1970fccd682dc05ef145", [ null, [ [ - "/css/css-color/lab-007-ref.html", + "/css/css-contain/contain-paint-clip-006-ref.html", "==" ] ], {} ] ], - "lab-008.html": [ - "b0510a620ea1ab1afb27af11f7697a1a18af9747", + "contain-paint-clip-011.html": [ + "d9b9052f4bcf4d997f2c99cb70f423389defb07a", [ null, [ [ - "/css/css-color/greensquare-display-p3-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "lab-l-over-100-1.html": [ - "287eba982456112335f95f9f5d999698dab4287a", + "contain-paint-clip-012.html": [ + "090aa1586c65f9c42203ac8fd22bf5011b997f7d", [ - "css/css-color/lab-l-over-100-1.html", + null, [ [ - "/css/css-color/lab-l-over-100-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "lab-l-over-100-2.html": [ - "e85d289d21fa0b3269b7bfb3ab22f810c79547fe", + "contain-paint-clip-013.html": [ + "7c539bf93d750888d767c7f529cd009437c5f16c", [ - "css/css-color/lab-l-over-100-2.html", + null, [ [ - "/css/css-color/lab-l-over-100-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "lch-001.html": [ - "904e2e5bd7c75dade264e22aa3a145ad56625d67", + "contain-paint-clip-014.html": [ + "296187f36a7e6f22c6c7881c9f37d2651e100ca4", [ null, [ [ - "/css/css-color/greensquare-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "lch-002.html": [ - "7eec1a14ac6bfa9d23f8c55869e317e1689f1759", + "contain-paint-clip-015.html": [ + "9519015a53b5ee510c6e7cf0af620ead2e56361d", [ null, [ [ - "/css/css-color/blacksquare-ref.html", + "/css/css-contain/reference/contain-paint-clip-015-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 99 + ], + [ + 0, + 410 + ] + ] + ] + ] + } ] ], - "lch-003.html": [ - "f323d4978c94730c4a098bd5ae23dfce146fd2b6", + "contain-paint-clip-016.html": [ + "e141561357964318a54b89713b4a9a428db25ab4", [ null, [ [ - "/css/css-color/whitesquare-ref.html", + "/css/css-contain/reference/contain-paint-clip-015-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 99 + ], + [ + 0, + 410 + ] + ] + ] + ] + } ] ], - "lch-004.html": [ - "30eac4542286b7af9cee2a2d3cb7b4b1081cbbec", + "contain-paint-clip-017.html": [ + "a6f427516e425b3c3282817c2a1b3672f16c042b", [ null, [ [ - "/css/css-color/lch-004-ref.html", + "/css/css-contain/reference/contain-paint-clip-015-ref.html", "==" ] ], {} ] ], - "lch-005.html": [ - "3986ddc11be587f02064db4ee16404896ce2e718", + "contain-paint-clip-018.html": [ + "5b36a06e17a7bc897ed5709df1cf9217087eb36b", [ - "css/css-color/lch-005.html", + null, [ [ - "/css/css-color/lch-005-ref.html", + "/css/css-contain/reference/contain-paint-clip-015-ref.html", "==" ] ], {} ] ], - "lch-006.html": [ - "457e88d405d8f840e4b238dfa39b2a80676481f6", + "contain-paint-clip-019.html": [ + "34b12642dbdaa57754c747b923ca86807e39bd8e", [ null, [ [ - "/css/css-color/lch-006-ref.html", + "/css/css-contain/reference/contain-paint-clip-019-ref.html", "==" ] ], {} ] ], - "lch-007.html": [ - "009347c1af72a295656b0f6a16e8fea94d789744", + "contain-paint-containing-block-absolute-001.html": [ + "dd46c313db8889a3692fe0a57414a182a7e590e2", [ null, [ [ - "/css/css-color/lch-007-ref.html", + "/css/css-contain/contain-paint-containing-block-absolute-001-ref.html", "==" ] ], {} ] ], - "lch-008.html": [ - "feedb9853b93bb03702f24c509a65e9a073cf988", + "contain-paint-containing-block-fixed-001.html": [ + "6fa52a5eb422c57b27765c6331c7f4a02f9bd93f", [ null, [ [ - "/css/css-color/greensquare-display-p3-ref.html", + "/css/css-contain/contain-paint-containing-block-fixed-001-ref.html", "==" ] ], {} ] ], - "lch-009.html": [ - "375fd08de5833cc0ef0619e762c98b2bc289b13c", + "contain-paint-dynamic-002.html": [ + "0096e83d5bfc18d31503c2ae3cef432918f4bb9a", [ - "css/css-color/lch-009.html", + null, [ [ - "/css/css-color/whitesquare-ref.html", + "/css/css-contain/contain-paint-dynamic-002-ref.html", "==" ] ], {} ] ], - "lch-010.html": [ - "965e05ff5dc0a16b169ba5f22d261c180f719a74", + "contain-paint-dynamic-003.html": [ + "e7fcbac0e6ac45ee15a49aa2bb68a5800696648b", [ - "css/css-color/lch-010.html", + null, [ [ - "/css/css-color/blacksquare-ref.html", + "/css/css-contain/contain-paint-dynamic-003-ref.html", "==" ] ], {} ] ], - "lch-l-over-100-1.html": [ - "6e0c62330c39d329bb71323caf393e8d4426e535", + "contain-paint-dynamic-004.html": [ + "8e286db8b107ad09bc9a846528c28d3a30d62de8", [ - "css/css-color/lch-l-over-100-1.html", + null, [ [ - "/css/css-color/lch-l-over-100-ref.html", + "/css/css-contain/contain-paint-dynamic-004-ref.html", "==" ] ], {} ] ], - "lch-l-over-100-2.html": [ - "7752d0dc0eb4d59cbb12364441b59732d025fd1d", + "contain-paint-dynamic-005.html": [ + "bedac635cec58218f53cd6137d23ca583d3fd0e9", [ - "css/css-color/lch-l-over-100-2.html", + null, [ [ - "/css/css-color/lch-l-over-100-ref.html", + "/css/css-contain/contain-paint-dynamic-005-ref.html", "==" ] ], {} ] ], - "light-dark-currentcolor.html": [ - "512a492b293d469b4c66052dd0b1d4ba9ca15b30", + "contain-paint-formatting-context-float-001.html": [ + "95242072b100ca3f27203f2f9c6748e4dd7c89b4", [ - "css/css-color/light-dark-currentcolor.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-contain/contain-paint-formatting-context-float-001-ref.html", "==" ] ], {} ] ], - "light-dark-inheritance.html": [ - "1128b57319b0e9b8b4224b6c3005e18d349d8191", + "contain-paint-formatting-context-margin-001.html": [ + "ebf88866a947e6db1a5760b8d88d03f85682718e", [ - "css/css-color/light-dark-inheritance.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-contain/contain-paint-formatting-context-margin-001-ref.html", "==" ] ], {} ] ], - "named-001.html": [ - "61a98dcb7bb02fab3db18ed337eee5ddb07724fc", + "contain-paint-ifc-011.html": [ + "992a0377ad6191e69e21f810226579c935ec01ce", [ null, [ [ - "/css/css-color/rebeccapurple-ref.html", + "/css/css-contain/reference/contain-paint-ifc-011-ref.html", "==" ] ], {} ] ], - "oklab-001.html": [ - "835a8ca4a91d52322af1d51bf6dae0d6a8968009", + "contain-paint-ignored-cases-ib-split-001.html": [ + "eb21a2d460957cb6fdd887c69dec4f9247bcd951", [ null, [ [ - "/css/css-color/greensquare-ref.html", + "/css/css-contain/contain-paint-ignored-cases-ib-split-001-ref.html", "==" ] ], {} ] ], - "oklab-002.html": [ - "4ddf4d9e7e6e07b41a162846d65127a54ec5e0d2", + "contain-paint-ignored-cases-internal-table-001a.html": [ + "6e3bdbd27369951d402eb17e8aba91b161d88fff", [ null, [ [ - "/css/css-color/blacksquare-ref.html", + "/css/css-contain/contain-paint-ignored-cases-internal-table-001-ref.html", "==" ] ], {} ] ], - "oklab-003.html": [ - "38c921e31ac0893c14892fc57906e1120653cac0", + "contain-paint-ignored-cases-internal-table-001b.html": [ + "e531eb6ca398d66c2634df926ac4981db86247d8", [ null, [ [ - "/css/css-color/whitesquare-ref.html", + "/css/css-contain/contain-paint-ignored-cases-internal-table-001-ref.html", "==" ] ], {} ] ], - "oklab-004.html": [ - "c403f244f94495543f82899018bdbb89481a2464", + "contain-paint-ignored-cases-no-principal-box-001.html": [ + "4b9c9072099191488fc0f551d3c8c0813c0caec8", [ null, [ [ - "/css/css-color/oklab-004-ref.html", + "/css/css-contain/contain-paint-ignored-cases-no-principal-box-001-ref.html", "==" ] ], {} ] ], - "oklab-005.html": [ - "0738d21017b2007bfa7e64cdf22573c2ae5f4974", + "contain-paint-ignored-cases-ruby-containing-block-001.html": [ + "08fa9555a6ed25b65bb4032e30c689170bde9836", [ null, [ [ - "/css/css-color/oklab-005-ref.html", + "/css/css-contain/contain-paint-ignored-cases-ruby-containing-block-001-ref.html", "==" ] ], {} ] ], - "oklab-006.html": [ - "2a918ecbda58cf2ee05664a4e53da7809b3ef754", + "contain-paint-ignored-cases-ruby-stacking-and-clipping-001.html": [ + "756035518dfb3a181462e4a99f1ea7381c0c261c", [ null, [ [ - "/css/css-color/oklab-006-ref.html", + "/css/css-contain/contain-paint-ignored-cases-ruby-stacking-and-clipping-001-ref.html", "==" ] ], {} ] ], - "oklab-007.html": [ - "5fdf0ab15b4edadf3abd0e778c04fb8bff0e9b29", + "contain-paint-independent-formatting-context-001.html": [ + "e4c06a992b351974d5506070db3dd8dadd53173e", [ null, [ [ - "/css/css-color/oklab-007-ref.html", + "/css/css-contain/reference/contain-paint-independent-formatting-context-001-ref.html", "==" ] ], {} ] ], - "oklab-008.html": [ - "be8b4ae596c584ba0f17d07962387f40c72d5f1e", + "contain-paint-independent-formatting-context-002.html": [ + "353196970c99e9b5ed556b850d4eda034d16df77", [ null, [ [ - "/css/css-color/greensquare-display-p3-ref.html", + "/css/css-contain/reference/contain-paint-independent-formatting-context-001-ref.html", "==" ] ], {} ] ], - "oklab-009.html": [ - "49bd916f5d7b5ceadb07ce1bdcde703887c67866", + "contain-paint-independent-formatting-context-003.html": [ + "fe1f7f2775db9cd82292c181560c2f9997de197d", [ - "css/css-color/oklab-009.html", + null, [ [ - "/css/css-color/greensquare-ref.html", + "/css/css-contain/reference/contain-paint-independent-formatting-context-003-ref.html", "==" ] ], {} ] ], - "oklab-l-over-1-1.html": [ - "612fe32acb1a8314aca1fff850080edd9e77107b", + "contain-paint-size-001.html": [ + "2546b2b9aa565624e6a6d0978d8879531650e82e", [ - "css/css-color/oklab-l-over-1-1.html", + null, [ [ - "/css/css-color/oklab-l-over-1-ref.html", + "/css/css-contain/reference/contain-paint-size-001-ref.html", "==" ] ], {} ] ], - "oklab-l-over-1-2.html": [ - "11948f014bfd279daced1c65571cb9aacd228413", + "contain-paint-size-002.html": [ + "18d03e7f5224432b05d71727fa24ee4552d37894", [ - "css/css-color/oklab-l-over-1-2.html", + null, [ [ - "/css/css-color/oklab-l-over-1-ref.html", + "/css/css-contain/reference/contain-paint-size-001-ref.html", "==" ] ], {} ] ], - "oklch-001.html": [ - "f32b7fe888b304576790175a0f7e6b5bbe45b354", + "contain-paint-size-003.html": [ + "2d2166406555b8b01d06ab467fd4b18038b12e5d", [ null, [ [ - "/css/css-color/greensquare-ref.html", + "/css/css-contain/reference/contain-layout-size-003-ref.html", "==" ] ], {} ] ], - "oklch-002.html": [ - "5c456319db6e3ee1c19f0d7db7a579853c65428b", + "contain-paint-stacking-context-001a.html": [ + "71102b6c73a3d88cdd953ecf82c69602ff87baa2", [ null, [ [ - "/css/css-color/blacksquare-ref.html", + "/css/css-contain/contain-paint-stacking-context-001-ref.html", "==" ] ], {} ] ], - "oklch-003.html": [ - "abfaff1d793fe203fd61f22e9041151b3fb44b0f", + "contain-paint-stacking-context-001b.html": [ + "0c4d3323bf7cb28b5a31de8aac41563013b2ecd4", [ null, [ [ - "/css/css-color/whitesquare-ref.html", + "/css/css-contain/contain-paint-stacking-context-001-ref.html", "==" ] ], {} ] ], - "oklch-004.html": [ - "c5fc4d09c982a170ebc175ad8df778f1824f6641", + "contain-paint-table-001.html": [ + "0622a1cbd2d31d55dcc221a2dbca26eb5880fce2", [ null, [ [ - "/css/css-color/oklch-004-ref.html", + "/css/css-contain/reference/contain-paint-047-ref.html", "==" ] ], {} ] ], - "oklch-005.html": [ - "0c7623315ce0ff5dc7b2549f042eb50d91a4b895", + "contain-paint-table-002.html": [ + "2d51f91f0389c2c5ac0bcd8cca7efe7a51381872", [ null, [ [ - "/css/css-color/oklch-005-ref.html", + "/css/css-contain/reference/contain-paint-047-ref.html", "==" ] ], {} ] ], - "oklch-006.html": [ - "dc0193e52d5ee6ea086d3b659290298e2d319149", + "contain-size-001.html": [ + "49dfc41601eb32f80c76a427403beb2f98d3f404", [ null, [ [ - "/css/css-color/oklch-006-ref.html", + "/css/css-contain/reference/pass_if_pass_below_clipped.html", "==" ] ], {} ] ], - "oklch-007.html": [ - "3ff21b25e51c78abe9c60de3e8c1260c1b4e49fe", + "contain-size-002.html": [ + "b30b02482da592925b6f4aa278ec82d6b30fe36f", [ null, [ [ - "/css/css-color/oklch-007-ref.html", + "/css/css-contain/reference/pass_if_pass_below_clipped.html", "==" ] ], {} ] ], - "oklch-008.html": [ - "baa7c5c372540977d536abffa29fc8086a4e2f57", + "contain-size-003.html": [ + "95596c96910dcfb5fa2d5b5c4261ab910019929c", [ null, [ [ - "/css/css-color/greensquare-display-p3-ref.html", + "/css/css-contain/reference/pass_if_pass_below_clipped.html", "==" ] ], {} ] ], - "oklch-009.html": [ - "1882c476c1c8678dd8e0e7d443735c25d63f02ca", + "contain-size-004.html": [ + "58277ce1bf67aca59385a0087c1c03ae81b5f4ce", [ - "css/css-color/oklch-009.html", + null, [ [ - "/css/css-color/whitesquare-ref.html", + "/css/css-contain/reference/contain-size-004-ref.html", "==" ] ], {} ] ], - "oklch-010.html": [ - "b5f9ac206b45eb031ac0330fef22923a319cf472", + "contain-size-005.html": [ + "139f8a97bea0aae6ab718764a24b35fa0acca6db", [ - "css/css-color/oklch-010.html", + null, [ [ - "/css/css-color/blacksquare-ref.html", + "/css/css-contain/reference/contain-size-005-ref.html", "==" ] ], {} ] ], - "oklch-011.html": [ - "6944867cd8d434eeebe30038cd6ececc26e38428", + "contain-size-006.html": [ + "f5a5faa49d3090ad2c088ac609e325a86d3d906e", [ - "css/css-color/oklch-011.html", + null, [ [ - "/css/css-color/greensquare-ref.html", + "/css/css-contain/reference/pass_if_pass_below_clipped.html", "==" ] ], {} ] ], - "oklch-l-over-1-1.html": [ - "4eb3cda8462639e740c4e606252fc9784dab580e", + "contain-size-007.html": [ + "4d4bce8e9264f6f4a9d390a7e43d05169dd00192", [ - "css/css-color/oklch-l-over-1-1.html", + null, [ [ - "/css/css-color/oklch-l-over-1-ref.html", + "/css/css-contain/reference/pass_if_pass_below_clipped.html", "==" ] ], {} ] ], - "oklch-l-over-1-2.html": [ - "de8b1a6cdd05c32267cded3a633456db04127888", + "contain-size-008.html": [ + "63deea8199fc13fd8c81021a0275b5127ed31e77", [ - "css/css-color/oklch-l-over-1-2.html", + null, [ [ - "/css/css-color/oklch-l-over-1-ref.html", + "/css/css-contain/reference/pass_if_pass_below_clipped.html", "==" ] ], {} ] ], - "opacity-overlapping-letters.html": [ - "65ab3742de39205341e04b18001deea3f7be192d", + "contain-size-009.html": [ + "a285d5e2b38e5b4e5aa7cf924f859a9f782aed53", [ null, [ [ - "/css/css-color/opacity-overlapping-letters-ref.html", + "/css/css-contain/reference/pass_if_pass_below_clipped.html", "==" ] ], {} ] ], - "out-of-gamut-legacy-rgb.html": [ - "e872dec314cba8e0bef568730fc83f36098d97b8", + "contain-size-010.html": [ + "0061894ce0307c8a66ff39667fb39b7c8836d09b", [ - "css/css-color/out-of-gamut-legacy-rgb.html", + null, [ [ - "/css/css-color/out-of-gamut-legacy-rgb-ref.html", + "/css/css-contain/reference/pass_if_pass_below_clipped.html", "==" ] ], {} ] ], - "predefined-001.html": [ - "dff6bd9a11130b4972d5d283d96fb6bc793f5dd2", + "contain-size-011.html": [ + "f2a146938ecf1e59a82a41470db5a836b08b88e5", [ null, [ [ - "/css/css-color/greensquare-090-ref.html", + "/css/reference/nothing.html", "==" ] ], {} ] ], - "predefined-002.html": [ - "9ed4b392d1ee7a92cb0afea734d741382e8763f4", + "contain-size-012.html": [ + "5c8e4f0370647465b9c07e8bd6e487df4c37a0fd", [ null, [ [ - "/css/css-color/greensquare-090-ref.html", + "/css/css-contain/reference/pass_if_pass_below_clipped.html", "==" ] ], {} ] ], - "predefined-005.html": [ - "02eb39ffffb69a6626492aa8df1be7e72b5db175", + "contain-size-012b.html": [ + "e52f34578532f95360db41c785c041006a541a07", [ null, [ [ - "/css/css-color/greensquare-090-ref.html", + "/css/css-contain/reference/pass_if_pass_below_clipped.html", "==" ] ], {} ] ], - "predefined-006.html": [ - "bfbccbcb14b6d2c2d0e7b7f7f0b34489e9c374bb", + "contain-size-013.html": [ + "4d1cbc403bd48b21f8d657d4adc7a50bffbb618c", [ null, [ [ - "/css/css-color/greensquare-090-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "predefined-007.html": [ - "c008fef5ca9df0baabf359872c4d81080f29e03c", + "contain-size-021.html": [ + "199849e8adb16bf12dd2577aad995425f0f4a97d", [ null, [ [ - "/css/css-color/greensquare-090-ref.html", + "/css/css-contain/reference/contain-size-021-ref.html", "==" ] ], {} ] ], - "predefined-008.html": [ - "00bbc6249dd0a72c9e274369d7bfe6a837bbfe76", + "contain-size-023.html": [ + "f83a10d85cbbfe9bd11801899172908bf57fb49a", [ null, [ [ - "/css/css-color/greensquare-090-ref.html", + "/css/css-contain/reference/contain-size-023-ref.html", "==" ] ], {} ] ], - "predefined-009.html": [ - "27d818e817ec255fcc8126caff035ede6025db14", + "contain-size-025.html": [ + "3eb4b15961c0cf32cd6b9d353cb0b3c8244c8cbc", [ null, [ [ - "/css/css-color/greensquare-090-ref.html", + "/css/css-contain/reference/contain-size-025-ref.html", "==" ] ], {} ] ], - "predefined-010.html": [ - "391c001273832bd5c9e316c90a3542cf552a9cec", + "contain-size-027.html": [ + "8dcff1745f39334e3b0e6517205726c3eaf3f103", [ null, [ [ - "/css/css-color/greensquare-090-ref.html", + "/css/css-contain/reference/contain-size-027-ref.html", "==" ] ], {} ] ], - "predefined-011.html": [ - "78065d990f4340ff018d8432a7ba553f9dcb7f87", + "contain-size-041.html": [ + "93def48c65265fbed965e10605b2e98847728464", [ null, [ [ - "/css/css-color/greensquare-090-ref.html", + "/css/css-contain/reference/contain-size-025-ref.html", "==" ] ], {} ] ], - "predefined-012.html": [ - "70b92df6bcdd136339641ee089ac4394c469c952", + "contain-size-042.html": [ + "52c5281b05ca1c31e180610ba56b76f0afd2ed57", [ null, [ [ - "/css/css-color/greensquare-090-ref.html", + "/css/css-contain/reference/contain-size-022-ref.html", "==" ] ], {} ] ], - "predefined-016.html": [ - "f80e60537015c34235bc7b707a65c1acc14304d7", + "contain-size-051.html": [ + "d1eab897a87bf0cbf104d5be56dcf86022f5d2a7", [ null, [ [ - "/css/css-color/greensquare-090-ref.html", + "/css/css-contain/reference/contain-size-051-ref.html", "==" ] ], {} ] ], - "prophoto-rgb-001.html": [ - "ca4c866c98fab7fabc7d0a20ac042a409496d77f", + "contain-size-052.html": [ + "a4d1afdd85ae470d0e4f361f21773ce9c6aa0745", [ null, [ [ - "/css/css-color/greensquare-ref.html", + "/css/css-contain/reference/contain-size-051-ref.html", "==" ] ], {} ] ], - "prophoto-rgb-002.html": [ - "46e5445d04c7454ff3c3931a75b3a7a64e916627", + "contain-size-056.html": [ + "e8c140adedfb0133ee36433b935e9a064c55810d", [ null, [ [ - "/css/css-color/blacksquare-ref.html", + "/css/css-contain/reference/contain-size-056-ref.html", "==" ] ], {} ] ], - "prophoto-rgb-003.html": [ - "3a9ede14588c504c34b7ab6c590eecb8311aa753", + "contain-size-061.html": [ + "1738b7f2a0358c1de808e171b143155813d4eb3c", [ null, [ [ - "/css/css-color/prophoto-rgb-003-ref.html", + "/css/css-contain/reference/contain-size-061-ref.html", "==" ] ], {} ] ], - "prophoto-rgb-004.html": [ - "7912ff6dfb50a811fcf104356029b0a5cba5504d", + "contain-size-062.html": [ + "10d7d48c95f532c35cbdb945c40b854211d9359b", [ null, [ [ - "/css/css-color/prophoto-rgb-004-ref.html", + "/css/css-contain/reference/contain-size-062-ref.html", "==" ] ], {} ] ], - "prophoto-rgb-005.html": [ - "73e5cc80866d22bf6e0702a41b35800bfd33b0d3", + "contain-size-063.html": [ + "9c843ab7cc88c8ce450e1a34fab452a76c021372", [ null, [ [ - "/css/css-color/greensquare-display-p3-ref.html", + "/css/css-contain/reference/contain-size-063-ref.html", "==" ] ], {} ] ], - "rec2020-001.html": [ - "b51a458c11ab8acd4cc3822682cb0399b8c53e69", + "contain-size-064.html": [ + "043a569eb40edbe576a6073a7686087d5bf43239", [ null, [ [ - "/css/css-color/greensquare-ref.html", + "/css/css-contain/reference/contain-size-064-ref.html", "==" ] ], {} ] ], - "rec2020-002.html": [ - "bca9f50436ed1e77405d715ad58b115e60736d59", + "contain-size-baseline-001.html": [ + "d8436c4508e0a75244c26db7334282c92bf6cb45", [ null, [ [ - "/css/css-color/blacksquare-ref.html", + "/css/css-contain/reference/contain-baseline-ref.html", "==" ] ], {} ] ], - "rec2020-003.html": [ - "6c6fc9d738b4eccd609ced0c52a1dd91be7e4998", + "contain-size-block-001.html": [ + "0ed82ff8fc5b8adaeef2bfd973cd79973b8f4fa6", [ null, [ [ - "/css/css-color/rec2020-003-ref.html", + "/css/css-contain/contain-size-block-001-ref.html", "==" ] ], {} ] ], - "rec2020-004.html": [ - "4719ba764ce0017bce56ae5c8ac6cb5b69391859", + "contain-size-block-002.html": [ + "4dc92103eabc6231b4d8260cbb35ac7337b2362b", [ null, [ [ - "/css/css-color/rec2020-004-ref.html", + "/css/css-contain/contain-size-block-002-ref.html", "==" ] ], {} ] ], - "rec2020-005.html": [ - "74e2305e338ad0f4e395748c1cdf2de8e630c1f5", + "contain-size-block-003.html": [ + "cf7e2310169c57658ebc688db3a927152868d97a", [ null, [ [ - "/css/css-color/greensquare-display-p3-ref.html", + "/css/css-contain/contain-size-block-003-ref.html", "==" ] ], {} ] ], - "relative-currentcolor-a98rgb-01.html": [ - "b264aff7a4af535e800bc13a53bdad6a6f7e7cf1", + "contain-size-block-004.html": [ + "b6cca54a8c65ca798b836aa7b6ea92627482dc76", [ - "css/css-color/relative-currentcolor-a98rgb-01.html", + null, [ [ - "/css/css-color/relative-green-ref.html", + "/css/css-contain/contain-size-block-004-ref.html", "==" ] ], {} ] ], - "relative-currentcolor-displayp3-01.html": [ - "d366da215fa984777a496413cf507db586d651fd", + "contain-size-borders.html": [ + "16b5b06295fcc0b44944b1b92afa3ee42271b68f", [ - "css/css-color/relative-currentcolor-displayp3-01.html", + null, [ [ - "/css/css-color/relative-green-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "relative-currentcolor-hsl-01.html": [ - "2b5e06322ac03be97cd111d07005aabd15d18fb9", + "contain-size-breaks-001.html": [ + "e859b9c9f0367cbb567d0400dd9334c83c9a5f97", [ - "css/css-color/relative-currentcolor-hsl-01.html", + null, [ [ - "/css/css-color/relative-green-ref.html", + "/css/css-contain/reference/contain-size-breaks-001-ref.html", "==" ] ], {} ] ], - "relative-currentcolor-hsl-02.html": [ - "dba5d49350148be67cebdfc656942d258d295249", + "contain-size-button-001.html": [ + "9048352f114f33fb161ae7ceb4ce0a2f4eceb445", [ - "css/css-color/relative-currentcolor-hsl-02.html", + null, [ [ - "/css/css-color/relative-green-ref.html", + "/css/css-contain/reference/contain-size-button-001-ref.html", "==" ] ], {} ] ], - "relative-currentcolor-hwb-01.html": [ - "7c757e1d0f014ae61085f103168a6497838968ea", + "contain-size-button-002.html": [ + "d6b6d0d10d4e9a08cbbbb57812130752381dd1a2", [ - "css/css-color/relative-currentcolor-hwb-01.html", + null, [ [ - "/css/css-color/relative-green-ref.html", + "/css/css-contain/contain-size-button-002-ref.html", "==" ] ], {} ] ], - "relative-currentcolor-lab-01.html": [ - "da59cccec124e1c2ea5b1334de290f6a4b8d118c", + "contain-size-fieldset-001.html": [ + "f92424716ce55fdfbc0ad9954ab2893d63b389b2", [ - "css/css-color/relative-currentcolor-lab-01.html", + null, [ [ - "/css/css-color/relative-green-ref.html", + "/css/css-contain/reference/contain-size-fieldset-001-ref.html", "==" ] ], {} ] ], - "relative-currentcolor-lch-01.html": [ - "be734812f63ab10915f0616fb1eed6199f735108", + "contain-size-fieldset-002.html": [ + "54f6cb1f2694a70022c0dd93bb6ca59e33b85743", [ - "css/css-color/relative-currentcolor-lch-01.html", + null, [ [ - "/css/css-color/relative-green-ref.html", + "/css/css-contain/reference/contain-size-fieldset-002-ref.html", "==" ] ], {} ] ], - "relative-currentcolor-oklab-01.html": [ - "94d88d384c158d0e566dde51b54ead58213fc7d8", + "contain-size-fieldset-003.html": [ + "e618d44f6ddacb50ae27362ccf305c5be4b9c0a9", [ - "css/css-color/relative-currentcolor-oklab-01.html", + null, [ [ - "/css/css-color/relative-green-ref.html", + "/css/css-contain/contain-size-fieldset-003-ref.html", "==" ] ], {} ] ], - "relative-currentcolor-oklch-01.html": [ - "0582817c60b196985dcf00bb4ebf7cf1810644b0", + "contain-size-fieldset-004.html": [ + "2ea5d2583bb0f059cd8f5813e49844d1b1535726", [ - "css/css-color/relative-currentcolor-oklch-01.html", + null, [ [ - "/css/css-color/relative-green-ref.html", + "/css/css-contain/contain-size-fieldset-004-ref.html", "==" ] ], {} ] ], - "relative-currentcolor-prophoto-01.html": [ - "973cd9c756ffad8f13822311392678cd2c406518", + "contain-size-flex-001.html": [ + "72ab97043b7b9fd20d21442c29c61492e040bbb7", [ - "css/css-color/relative-currentcolor-prophoto-01.html", + null, [ [ - "/css/css-color/relative-green-ref.html", + "/css/css-contain/contain-size-flex-001-ref.html", "==" ] ], {} ] ], - "relative-currentcolor-rec2020-01.html": [ - "820d9faf457e3f89cb78f33a8182fff2be7bc960", + "contain-size-flexbox-001.html": [ + "16ba62eda041abe11424f63c65d6dfd46aa82570", [ - "css/css-color/relative-currentcolor-rec2020-01.html", + null, [ [ - "/css/css-color/relative-green-ref.html", + "/css/css-contain/reference/contain-size-flexbox-001-ref.html", "==" ] ], {} ] ], - "relative-currentcolor-rec2020-02.html": [ - "a323370012c4a79af64fe29cd4affdf1422d3cb3", + "contain-size-flexbox-002.html": [ + "531af691afe80364c43e0055ef90306ceeaca00f", [ - "css/css-color/relative-currentcolor-rec2020-02.html", + null, [ [ - "/css/css-color/relative-rec2020-ref.html", + "/css/css-contain/reference/contain-size-flexbox-002-ref.html", "==" ] ], {} ] ], - "relative-currentcolor-rgb-01.html": [ - "5ad90529c886999cd32ec02ecd0808bc67505ff4", + "contain-size-grid-001.html": [ + "4510c1e55368aeea38a79ba66059acd4d7660ddb", [ - "css/css-color/relative-currentcolor-rgb-01.html", + null, [ [ - "/css/css-color/relative-green-ref.html", + "/css/css-contain/reference/contain-size-grid-001-ref.html", "==" ] ], {} ] ], - "relative-currentcolor-rgb-02.html": [ - "603938d0dbd9037442ac18b4a18b898e5afe079c", + "contain-size-grid-002.html": [ + "43361c298343117362f35596611a9faf854cea47", [ - "css/css-color/relative-currentcolor-rgb-02.html", + null, [ [ - "/css/css-color/relative-green-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "relative-currentcolor-xyzd50-01.html": [ - "3caa71c84b58d627b0db5d83807b9affd742c72a", + "contain-size-grid-005.html": [ + "bd750d2f54d7c6ddf018883d3cd6e0d1ec85c449", [ - "css/css-color/relative-currentcolor-xyzd50-01.html", + null, [ [ - "/css/css-color/relative-green-ref.html", + "/css/css-contain/reference/contain-size-grid-005-ref.html", "==" ] ], {} ] ], - "relative-currentcolor-xyzd65-01.html": [ - "7a857ce0cd8ca2514182c59c24c5e751bafa5688", + "contain-size-grid-indefinite-height-min-height-flex-row.html": [ + "5899475fc2550c52421ee5d9b2fe65b209e68aec", [ - "css/css-color/relative-currentcolor-xyzd65-01.html", + null, [ [ - "/css/css-color/relative-green-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "rgb-001.html": [ - "3e5900167789039a0497dc87ff1a7277514e745c", + "contain-size-grid-stretches-auto-rows.html": [ + "10b84665aa91edc2245fae08c9ee259c8bc1863a", [ null, [ [ - "/css/css-color/greensquare-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "rgb-002.html": [ - "c87f7878d995a255e97349e82fcac88669d0da40", + "contain-size-inline-block-001.html": [ + "41458550272f896d47e15210c82f4c22d386d9e0", [ null, [ [ - "/css/css-color/greensquare-ref.html", + "/css/css-contain/contain-size-inline-block-001-ref.html", "==" ] ], {} ] ], - "rgb-003.html": [ - "5fc0fbfe2895179bed2b9bc0ec596c88ed0ca769", + "contain-size-inline-block-002.html": [ + "d3a69e5f357bef37bcd2dbb3a0877ea4d8bdc977", [ null, [ [ - "/css/css-color/greensquare-ref.html", + "/css/css-contain/contain-size-inline-block-002-ref.html", "==" ] ], {} ] ], - "rgb-004.html": [ - "d4078f30e474a3c752dd528d05a7bf79181a4954", + "contain-size-inline-block-003.html": [ + "7ea22635d35b4471362545d0abcf7f417511323d", [ null, [ [ - "/css/css-color/greensquare-ref.html", + "/css/css-contain/contain-size-inline-block-003-ref.html", "==" ] ], {} ] ], - "rgb-005.html": [ - "ec5e2f5b94615e14456b8add89e47d4e69f1969f", + "contain-size-inline-block-004.html": [ + "1de39348b718cd90530be9a0089b4075f3190a8f", [ null, [ [ - "/css/css-color/greensquare-ref.html", + "/css/css-contain/contain-size-inline-block-004-ref.html", "==" ] ], {} ] ], - "rgb-006.html": [ - "45b11138e3ef7821caa1f0efac985e2e323c753d", + "contain-size-inline-flex-001.html": [ + "15a2c943bb65e658de58330b4cec76fbdc5294ad", [ null, [ [ - "/css/css-color/greensquare-ref.html", + "/css/css-contain/contain-size-inline-flex-001-ref.html", "==" ] ], {} ] ], - "rgb-007.html": [ - "fd881c3184f9f33301e26c4b3002bd6ef8e0b272", + "contain-size-monolithic-001.html": [ + "0e101bbab1b296ab46a607d2f952c17ba4243bd4", [ null, [ [ - "/css/css-color/greensquare-ref.html", + "/css/css-contain/reference/contain-size-monolithic-001-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 16 + ], + [ + 0, + 2 + ] + ] + ] + ] + } ] ], - "rgb-008.html": [ - "868427535677a53e734e2a2defb8c066f1023058", + "contain-size-monolithic-002.html": [ + "7f407df30b7e459673fc6481e0b150f0ae39d46a", [ null, [ [ - "/css/css-color/greensquare-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "rgba-001.html": [ - "3f9989a4131b4626c1e0b9c798d5cbb34bdf919e", + "contain-size-multicol-001.html": [ + "81465c02d6114aa4a27637b2e77b3d62161c0864", [ null, [ [ - "/css/css-color/greensquare-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "rgba-002.html": [ - "3a734bdc3036ce406a09312b9aed6dc146514ff8", + "contain-size-multicol-002.html": [ + "0e35e2fed26ddd9a59a063218242722b22b9d1b6", [ null, [ [ - "/css/css-color/greensquare-ref.html", + "/css/css-contain/contain-size-multicol-002-ref.html", "==" ] ], {} ] ], - "rgba-003.html": [ - "5204931df55ec909466f84a4f453209571d11183", + "contain-size-multicol-003.html": [ + "447e3cc98dd78c4c5789c66e74e46ff37f25dd4e", [ null, [ [ - "/css/css-color/greensquare-ref.html", + "/css/css-contain/contain-size-multicol-003-ref.html", "==" ] ], {} ] ], - "rgba-004.html": [ - "ce9cf48ba04a2986a7cb059b79e907d0be22b448", + "contain-size-multicol-004.html": [ + "e63c213ab101501e0161700ebf2675db5e955dbc", [ null, [ [ - "/css/css-color/greensquare-ref.html", + "/css/css-contain/contain-size-multicol-004-ref.html", "==" ] ], {} ] ], - "rgba-005.html": [ - "579b57a0683315e2316fc42ba2f8bd064739b27c", + "contain-size-removed.html": [ + "9db8f44d633d02107da5956df2e0c767a2a4a6a9", [ null, [ [ - "/css/css-color/greensquare-ref.html", + "/css/css-contain/reference/pass_if_pass_below_clipped.html", "==" ] ], {} ] ], - "rgba-006.html": [ - "b7b371952a61a96978f9465c94294bef5f83215c", + "contain-size-replaced-001.html": [ + "b0dba02f1cd56f4fccc772cfb948dbabb1d600e2", [ null, [ [ - "/css/css-color/greensquare-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "rgba-007.html": [ - "cca349781b7d2a96d9056c732900841e975112b5", + "contain-size-replaced-002.html": [ + "20e4c8a1a6682217026e258c452cff31ff621473", [ null, [ [ - "/css/css-color/greensquare-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "rgba-008.html": [ - "8d6c85116648e4cbeebc983532c720d9f7196a7e", + "contain-size-replaced-003a.html": [ + "832e8b29f2cf6ee5a59d160f90c2a3436bee60f5", [ null, [ [ - "/css/css-color/greensquare-ref.html", + "/css/css-contain/contain-size-replaced-003-ref.html", "==" ] ], {} ] ], - "srgb-linear-001.html": [ - "94f33af04d78ab92ddf037dfb35f7010bd4fa670", + "contain-size-replaced-003b.html": [ + "b6ae094ad3b5291c1f1d19f3c6e031c574779edc", [ null, [ [ - "/css/css-color/greensquare-ref.html", + "/css/css-contain/contain-size-replaced-003-ref.html", "==" ] ], {} ] ], - "srgb-linear-002.html": [ - "bd221a64cb2c6806ffeb078340ea5d9c94e4e040", + "contain-size-replaced-003c.html": [ + "9018eaa68516394773a92abb6aa0a26ee87382aa", [ null, [ [ - "/css/css-color/blacksquare-ref.html", + "/css/css-contain/contain-size-replaced-003-ref.html", "==" ] ], {} ] ], - "srgb-linear-003.html": [ - "654549a53711c1693d785c79b9787cd28ddaa530", + "contain-size-replaced-004.html": [ + "9f84481504660e4129f10532c761b04fc2030f3f", [ null, [ [ - "/css/css-color/srgb-linear-003-ref.html", + "/css/css-contain/contain-size-replaced-004-ref.html", "==" ] ], {} ] ], - "srgb-linear-004.html": [ - "739e3877f124eeb7a4a80035f48961ed2d028b52", + "contain-size-replaced-005.html": [ + "754f3608e3a8bf17cbfa12cd7418e12f79f12fa0", [ null, [ [ - "/css/css-color/srgb-linear-004-ref.html", + "/css/css-contain/contain-size-replaced-005-ref.html", "==" ] ], {} ] ], - "system-color-hightlights-vs-getSelection-001.html": [ - "12495cd7adbcffa40b27d5d874e4e1040596dd96", + "contain-size-replaced-006.html": [ + "f716ce42a89202a9a4209fed18de407d8ed15ce7", [ - "css/css-color/system-color-hightlights-vs-getSelection-001.html", + null, [ [ - "/css/css-color/reference/system-color-hightlights-vs-getSelection-001-ref.html", + "/css/css-contain/contain-size-replaced-006-ref.html", "==" ] ], {} ] ], - "system-color-hightlights-vs-getSelection-002.html": [ - "f4025cd3f0382a11875d322d2d9e89b8704b4a00", + "contain-size-replaced-007.html": [ + "6a17057bdd5b54f5fa53530afc790bdf8bde8277", [ - "css/css-color/system-color-hightlights-vs-getSelection-002.html", + null, [ [ - "/css/css-color/reference/system-color-hightlights-vs-getSelection-002-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "t31-color-currentColor-b.xht": [ - "b4ff486168877f9eb7326bb8648b0d19abc5d8ff", + "contain-size-scrollbars-001.html": [ + "26f0d81da8ceac6df92325bf33d15d01c0d3d432", [ null, [ [ - "/css/css-color/t31-color-currentColor-b-ref.html", + "/css/css-contain/reference/contain-size-scrollbars-001-ref.html", "==" ] ], {} ] ], - "t31-color-text-a.xht": [ - "ecc6410c8d36289462d5ad8d58603e4a502bd78c", + "contain-size-scrollbars-002.html": [ + "4fe1aae744fe239af396a405809ce6cadeef296a", [ null, [ [ - "/css/css-color/t31-color-text-a-ref.xht", - "!=" + "/css/css-contain/reference/contain-size-scrollbars-001-ref.html", + "==" ] ], {} ] ], - "t32-opacity-basic-0.0-a.xht": [ - "1f08e1729c00386bd8f1e3f1727c4da1257ebd15", + "contain-size-scrollbars-003.html": [ + "4684440bdbfd9886fd34a6ba1144ae1724b6a157", [ null, [ [ - "/css/css-color/t32-opacity-basic-0.0-a-ref.html", + "/css/css-contain/reference/contain-size-scrollbars-001-ref.html", "==" ] ], {} ] ], - "t32-opacity-basic-0.6-a.xht": [ - "541964f8d6131e3b47b0edf6ea867cd331603a5d", + "contain-size-scrollbars-004.html": [ + "6a45fdd23f4b797565e3cfa1934308f62709a0ca", [ - "css/css-color/t32-opacity-basic-0.6-a.xht", + null, [ [ - "/css/css-color/t32-opacity-basic-0.6-a-ref.xht", + "/css/css-contain/reference/contain-size-scrollbars-004-ref.html", "==" ] ], {} ] ], - "t32-opacity-basic-1.0-a.xht": [ - "4df4574eca940a905d04eac88b217881d8b2204a", + "contain-size-select-001.html": [ + "479eb810aafa161ea49630d699c05f959bd2641e", [ null, [ [ - "/css/css-color/t32-opacity-basic-1.0-a-ref.html", + "/css/css-contain/reference/contain-size-select-001-ref.html", "==" ] ], {} ] ], - "t32-opacity-clamping-0.0-b.xht": [ - "79a7637e234d87f4953eb12edc2cebb82f7ef1a4", + "contain-size-select-002.html": [ + "3fdea550470adb6b061c59447a3c3fb6145b08ce", [ null, [ [ - "/css/css-color/t32-opacity-basic-0.0-a-ref.html", + "/css/css-contain/reference/contain-size-select-001-ref.html", "==" ] ], {} ] ], - "t32-opacity-clamping-1.0-b.xht": [ - "60504ec62a3d356131046c14203c8c4bb9ec672f", + "contain-size-select-elem-001.html": [ + "fbb776a2568ce9d84602b846f91743bc3225d80b", [ null, [ [ - "/css/css-color/t32-opacity-clamping-1.0-b-ref.html", + "/css/css-contain/contain-size-select-elem-001-ref.html", "==" ] ], {} ] ], - "t32-opacity-offscreen-b.xht": [ - "e9ba0c7d94db213d22692462df6229aaa2a8ccdf", + "contain-size-select-elem-002.html": [ + "c9fcfbd2cdf8d105de2310f224f8d7c95f9c81f6", [ null, [ [ - "/css/css-color/t32-opacity-offscreen-b-ref.html", + "/css/css-contain/contain-size-select-elem-002-ref.html", "==" ] ], {} ] ], - "t32-opacity-offscreen-multiple-boxes-1-c.xht": [ - "5920d305e53a968ca58764e99db86e8a85d04e68", + "contain-size-select-elem-003.html": [ + "85428064ec33a8948f59db0ef2cfe91549999948", [ null, [ [ - "/css/css-color/t32-opacity-offscreen-multiple-boxes-1-c-ref.html", + "/css/css-contain/contain-size-select-elem-003-ref.html", "==" ] ], {} ] ], - "t32-opacity-offscreen-multiple-boxes-2-c.xht": [ - "ce02031a55e5ae25f8df275250f585b012166c3f", + "contain-size-select-elem-004.html": [ + "818f4a3016862dc42d121bf4fe0322cfebf110f4", [ null, [ [ - "/css/css-color/t32-opacity-offscreen-multiple-boxes-2-c-ref.html", + "/css/css-contain/contain-size-select-elem-004-ref.html", "==" ] ], {} ] ], - "t32-opacity-offscreen-with-alpha-c.xht": [ - "035609e8a46aea92633b7b71f9bc40ba58a13569", + "contain-size-select-elem-005.html": [ + "127b3cd5f87af2078b1ce8618120c37994a68e5a", [ null, [ [ - "/css/css-color/t32-opacity-offscreen-with-alpha-c-ref.html", + "/css/css-contain/contain-size-select-elem-005-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 1 - ], - [ - 0, - 5120 - ] - ] - ] - ] - } + {} ] ], - "t32-opacity-zorder-c.xht": [ - "a6896d54fe5150bfe0815141c1d3dfb0c5e45486", + "contain-size-table-caption-001.html": [ + "8ef46b766690e99c74ce5bda3a248058598546aa", [ null, [ [ - "/css/css-color/t32-opacity-zorder-c-ref.html", + "/css/css-contain/contain-size-table-caption-001-ref.html", "==" ] ], {} ] ], - "t41-html4-keywords-a.xht": [ - "b866dd55c1ed5c82802f7b7445f52c9e82fb76d7", + "contain-strict-001.html": [ + "e5451e2d94da719407a809ddf91be97c306f05b1", [ null, [ [ - "/css/css-color/t41-html4-keywords-a-ref.html", + "/css/css-contain/reference/contain-paint-size-001-ref.html", "==" ] ], {} ] ], - "t421-rgb-clip-outside-gamut-b.xht": [ - "410a6a9430e7723af075ed9d1a08223e9ffbd2e5", + "contain-strict-002.html": [ + "5985fc850f80983fe3e0beb312c737c413f9cccb", [ null, [ [ - "/css/css-color/t421-rgb-clip-outside-gamut-b-ref.html", + "/css/css-contain/reference/contain-paint-size-001-ref.html", "==" ] ], {} ] ], - "t421-rgb-func-int-a.xht": [ - "c37dfd91afa06f9701d4c924ffc051554e2e035f", + "contain-strict-003.html": [ + "903df07868416e738125441831ec6363dfebe9f7", [ null, [ [ - "/css/css-color/t422-rgba-func-int-a-ref.html", + "/css/css-contain/reference/contain-layout-size-003-ref.html", "==" ] ], {} ] ], - "t421-rgb-func-no-mixed-f.xht": [ - "59a375b75d3ff874a32fec5c7dec9809eaf68d20", + "contain-strict-011.html": [ + "3e1256ba9ce3ff99acccda1d806f46f20086b8f2", [ null, [ [ - "/css/css-color/t422-rgba-func-no-mixed-f-ref.html", + "/css/css-contain/reference/contain-strict-011-ref.html", "==" ] ], {} ] ], - "t421-rgb-func-pct-a.xht": [ - "51a4c9112d0be42bf8bf3905d20599a07d47f494", + "contain-style-baseline-001.html": [ + "f13b1e8efbf90f6d65b767f57cb3a5f642035e40", [ null, [ [ - "/css/css-color/t422-rgba-func-int-a-ref.html", + "/css/css-contain/reference/contain-baseline-ref.html", "==" ] ], {} ] ], - "t421-rgb-func-whitespace-b.xht": [ - "29c513a13297b13d9a1eb3cddcac0b674eb94409", + "contain-style-breaks-001.html": [ + "9e5c27a075eddb80dfd9305abcba50aeefec5088", [ null, [ [ - "/css/css-color/t422-rgba-func-whitespace-b-ref.html", + "/css/css-contain/reference/contain-style-breaks-001-ref.html", "==" ] ], {} ] ], - "t421-rgb-hex-parsing-f.xht": [ - "f3f3aad63c3d68543eb77482ea028ef1ed48a4ac", + "contain-style-breaks-002.html": [ + "1b089c84a2d862d36d554e06757391dd33a75a78", [ null, [ [ - "/css/css-color/t422-rgba-func-no-mixed-f-ref.html", + "/css/css-contain/reference/contain-style-breaks-001-ref.html", "==" ] ], {} ] ], - "t421-rgb-hex3-a.xht": [ - "b21e4887a36a64722d687b014fa800219d8f293c", + "contain-style-breaks-003.html": [ + "2cfd5900c13d1000e4a58624f4be106f2a49ab95", [ null, [ [ - "/css/css-color/t422-rgba-func-int-a-ref.html", + "/css/css-contain/reference/contain-style-breaks-001-ref.html", "==" ] ], {} ] ], - "t421-rgb-hex3-expand-b.xht": [ - "71dc06d30d1899e26fc02741e2c76d1383e47cf7", + "contain-style-breaks-004.html": [ + "98e79a6dba3ec6f26016e37d356dc4da90f071de", [ null, [ [ - "/css/css-color/t421-rgb-hex3-expand-b-ref.html", + "/css/css-contain/reference/contain-style-breaks-004-ref.html", "==" ] ], {} ] ], - "t421-rgb-hex6-a.xht": [ - "a88e181b45d7e5f2def796e1de612c553eaff71c", + "contain-style-breaks-005.html": [ + "bfcd1fbd91695530992ba7614e43cebf606d8be5", [ null, [ [ - "/css/css-color/t422-rgba-func-int-a-ref.html", + "/css/css-contain/reference/contain-style-breaks-004-ref.html", "==" ] ], {} ] ], - "t421-rgb-values-meaning-b.xht": [ - "9d12b1b2e9b525d250104db80dc331301fb0fc46", + "contain-style-counters-001.html": [ + "bd480858eddaed7ac8e8cd404fa25494b3327fda", [ null, [ [ - "/css/css-color/t421-rgb-values-meaning-b-ref.html", + "/css/css-contain/reference/contain-style-counters-001-ref.html", "==" ] ], {} ] ], - "t422-rgba-a0.0-a.xht": [ - "3b7c934d15d8928432443049c8952fe1285339f8", + "contain-style-counters-002.html": [ + "862ee789b7a508ce26c84415325f9c6cf99c0db3", [ null, [ [ - "/css/css-color/t32-opacity-basic-0.0-a-ref.html", + "/css/css-contain/reference/contain-style-counters-002-ref.html", "==" ] ], {} ] ], - "t422-rgba-a0.6-a.xht": [ - "a710a0b62513969e8a7479a81fef70d09d87d956", + "contain-style-counters-003.html": [ + "3e3e1b910a67d522eb6d2be82d93fe1d947c4bf0", [ - "css/css-color/t422-rgba-a0.6-a.xht", + null, [ [ - "/css/css-color/t422-rgba-a0.6-a-ref.xht", + "/css/css-contain/reference/contain-style-counters-003-ref.html", "==" ] ], {} ] ], - "t422-rgba-a1.0-a.xht": [ - "b974af96bfff98e253c0155b3d8cece26e057f47", + "contain-style-counters-004.html": [ + "56e7e3d87e76ed391c57665b2d6a294b5c7d1e3e", [ null, [ [ - "/css/css-color/t422-rgba-a1.0-a-ref.html", + "/css/css-contain/reference/contain-style-counters-004-ref.html", "==" ] ], {} ] ], - "t422-rgba-clamping-a0.0-b.xht": [ - "cd9810fe395e1f09bf2b98bf997443b2126ceb65", + "contain-style-counters-005.html": [ + "6e22f7aa59480545053cd10090890174e8a44faf", [ null, [ [ - "/css/css-color/t422-rgba-clamping-a0.0-b-ref.html", + "/css/css-contain/reference/contain-style-counters-005-ref.html", "==" ] ], {} ] ], - "t422-rgba-clamping-a1.0-b.xht": [ - "662bd3e6dba35deb8ac8c97322462f6ddd939818", + "contain-style-ol-ordinal-li-container.html": [ + "4076407332474a89c674156f923d003413fb8fa0", [ null, [ [ - "/css/css-color/t422-rgba-clamping-a1.0-b-ref.html", + "/css/css-contain/reference/contain-style-ol-ordinal-li-container-ref.html", "==" ] ], {} ] ], - "t422-rgba-clip-outside-device-gamut-b.xht": [ - "81ac05b38809daff4a514877bd406c26b125e59b", + "contain-style-ol-ordinal-pseudo-reversed.html": [ + "dc895abda3b6aacc9cd7d958efb4791e676c9efa", [ null, [ [ - "/css/css-color/t422-rgba-clip-outside-device-gamut-b-ref.html", + "/css/css-contain/reference/contain-style-ol-ordinal-pseudo-reversed-ref.html", "==" ] ], {} ] ], - "t422-rgba-func-int-a.xht": [ - "c85bad25e39351b3dfb78e6cfbac5fb583dd0098", + "contain-style-ol-ordinal-pseudo.html": [ + "a9ccfb5930e7f41762b827850ca9a54b5a46b5c1", [ null, [ [ - "/css/css-color/t422-rgba-func-int-a-ref.html", + "/css/css-contain/reference/contain-style-ol-ordinal-pseudo-ref.html", "==" ] ], {} ] ], - "t422-rgba-func-no-mixed-f.xht": [ - "1bfd92bdbc628456425fe6371d82ed770d554d2c", + "contain-style-ol-ordinal-reversed.html": [ + "22f2f20cffebfacb38ea70b718966514f5d5a768", [ null, [ [ - "/css/css-color/t422-rgba-func-no-mixed-f-ref.html", + "/css/css-contain/reference/contain-style-ol-ordinal-reversed-ref.html", "==" ] ], {} ] ], - "t422-rgba-func-pct-a.xht": [ - "9070bed11a691e4e13202c7b1821be269e6c27f5", + "contain-style-ol-ordinal-start-reversed.html": [ + "175aa814031f6bdc3f8156aa289d2f97fa3678dd", [ null, [ [ - "/css/css-color/t422-rgba-func-int-a-ref.html", + "/css/css-contain/reference/contain-style-ol-ordinal-start-reversed-ref.html", "==" ] ], {} ] ], - "t422-rgba-func-whitespace-b.xht": [ - "ca80260b757e232fedaadcf16f53746582fb2a2e", + "contain-style-ol-ordinal-start.html": [ + "dc23b65f1455301cd3d8319147b8e6ac204a3f6a", [ null, [ [ - "/css/css-color/t422-rgba-func-whitespace-b-ref.html", + "/css/css-contain/reference/contain-style-ol-ordinal-start-ref.html", "==" ] ], {} ] ], - "t422-rgba-values-meaning-b.xht": [ - "2149ef398eda4e8d06b404e220fda4b859e49309", + "contain-style-ol-ordinal.html": [ + "0901325a4ef1a700d169bd7d9953b926b5cc1530", [ null, [ [ - "/css/css-color/t422-rgba-values-meaning-b-ref.html", + "/css/css-contain/reference/contain-style-ol-ordinal-ref.html", "==" ] ], {} ] ], - "t423-transparent-1-a.xht": [ - "d8680884bfcd3be39fa94a7cfc3da80584419cfa", + "contain-subgrid-001.html": [ + "59a104bfbad86c146ae3d9653478e11b645af7cd", [ null, [ [ - "/css/css-color/t422-rgba-clamping-a0.0-b-ref.html", + "/css/css-contain/reference/contain-subgrid-001.html", "==" ] ], {} ] ], - "t423-transparent-2-a.xht": [ - "0427ec5ff6819f9d25ce5d48a264d096cbd8b95d", + "content-visibility": { + "content-visibility-001.html": [ + "b6b10164e81115e09342345c61d5c19ab5a75304", + [ + null, + [ + [ + "/css/css-contain/content-visibility/container-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-002.html": [ + "4d838218393f87cb1cfa0959fe2f7e98b4f48d07", + [ + null, + [ + [ + "/css/css-contain/content-visibility/container-with-child-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-003.html": [ + "d3cc902b90fd5d06fa2b9f440e704015e858d509", + [ + null, + [ + [ + "/css/css-contain/content-visibility/content-visibility-003-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-004.html": [ + "7091dd930dd984d75c13e23474cb5366736e568e", + [ + null, + [ + [ + "/css/css-contain/content-visibility/content-visibility-004-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-005.html": [ + "7b4a791cc7e3d3a414bc5f4a210a438ffb7e079d", + [ + null, + [ + [ + "/css/css-contain/content-visibility/container-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-006.html": [ + "8a0a3db0d1027dbcecf305cf54f3a7815776d41b", + [ + null, + [ + [ + "/css/css-contain/content-visibility/container-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-007.html": [ + "eec9b1d900cfd4c2cd2d0903c61af6f25249ebe7", + [ + null, + [ + [ + "/css/css-contain/content-visibility/container-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-008.html": [ + "fec85498793781106fff4cbe9367b06abf97d1b1", + [ + null, + [ + [ + "/css/css-contain/content-visibility/container-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-009.html": [ + "d65a475233638d950a482c75cb4f3144be03ebf6", + [ + null, + [ + [ + "/css/css-contain/content-visibility/positioned-container-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-010.html": [ + "a613bf2754d79654e6115f0efb1fa4c26c25bfc0", + [ + null, + [ + [ + "/css/css-contain/content-visibility/container-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-011.html": [ + "c69c36900f61e3d269039533d2c046a10ef6045b", + [ + null, + [ + [ + "/css/css-contain/content-visibility/positioned-container-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-012.html": [ + "6a52890256a2f4f68435f6c2143df127267e8590", + [ + null, + [ + [ + "/css/css-contain/content-visibility/container-with-child-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-013.html": [ + "18c8b9dfeec4ea8a877c724442e70401bdfe4365", + [ + null, + [ + [ + "/css/css-contain/content-visibility/container-with-child-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-014.html": [ + "e3ee8af0878003f56095313e1208b5896fc4c946", + [ + null, + [ + [ + "/css/css-contain/content-visibility/container-with-child-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-019.sub.https.html": [ + "fe48390a7c012fe4206c0c2aeaf05c3e80138789", + [ + null, + [ + [ + "/css/css-contain/content-visibility/content-visibility-019-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-020.html": [ + "38dbcd88bcc9ed28adca1bd0086e83f752e0e7fa", + [ + null, + [ + [ + "/css/css-contain/content-visibility/content-visibility-020-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-021.html": [ + "f9e597cd557855eb5d460446d31c749ce4ebae8a", + [ + null, + [ + [ + "/css/css-contain/content-visibility/content-visibility-021-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-022.html": [ + "8912d70ed41a0129c97768b62e29436d14b60768", + [ + null, + [ + [ + "/css/css-contain/content-visibility/content-visibility-022-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-023.html": [ + "b561a8b0cdb17a6e57b0a50f8690bcb6fb7fd404", + [ + null, + [ + [ + "/css/css-contain/content-visibility/content-visibility-023-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-024.html": [ + "2c8f59d745a72a994424ce0dd89d0fefd35eade8", + [ + null, + [ + [ + "/css/css-contain/content-visibility/content-visibility-024-ref.html", + "==" + ] + ], + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 5 + ], + [ + 0, + 100 + ] + ] + ] + ] + } + ] + ], + "content-visibility-025.html": [ + "019cd1cc8368cc94af56eb8b93c57979d870ac50", + [ + null, + [ + [ + "/css/css-contain/content-visibility/content-visibility-025-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-027.html": [ + "912cefd815de2b505993df82e69381f615702693", + [ + null, + [ + [ + "/css/css-contain/content-visibility/content-visibility-027-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-028.html": [ + "6a8a1e2df042661142a1401d8aab91a22acf561d", + [ + null, + [ + [ + "/css/css-contain/content-visibility/container-with-child-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-032.html": [ + "0a8894f75e145b3abd080597785b08b818f2c470", + [ + null, + [ + [ + "/css/css-contain/content-visibility/content-visibility-032-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-033.sub.https.html": [ + "59bad85af9883abeb36fe92c49b433fdfb6af1c2", + [ + null, + [ + [ + "/css/css-contain/content-visibility/content-visibility-033-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-034.html": [ + "d45200611bc51e32a1d329124c84e344788d37b3", + [ + null, + [ + [ + "/css/css-contain/content-visibility/content-visibility-034-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-037.html": [ + "c40b22026b4e5f80d7f41db5df74089e0006251f", + [ + null, + [ + [ + "/css/css-contain/content-visibility/container-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-040.html": [ + "a7add41687aff7541332bb90c2e41ff8b9052a4b", + [ + null, + [ + [ + "/css/css-contain/content-visibility/container-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-041.html": [ + "82c4feb131635a273d3f311fc4b8b2dabe2c3852", + [ + null, + [ + [ + "/css/css-contain/content-visibility/container-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-042.html": [ + "381af12dc56c7bdd088d2d886dee0e693149eb10", + [ + null, + [ + [ + "/css/css-contain/content-visibility/content-visibility-042-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-043.html": [ + "a230315e693d26ef59a21458366e5baa692e1086", + [ + null, + [ + [ + "/css/css-contain/content-visibility/container-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-045.html": [ + "b965d4d1a0a6e663b0ecae84c9af180012eec82e", + [ + null, + [ + [ + "/css/css-contain/content-visibility/container-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-046.html": [ + "6f1cd28e397d8047520cdcf2a0be2866d049119d", + [ + null, + [ + [ + "/css/css-contain/content-visibility/container-with-child-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-049.html": [ + "7a3f138d66073496143e952ac7ce12d2466a6428", + [ + null, + [ + [ + "/css/css-contain/content-visibility/content-visibility-049-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-051.html": [ + "15718cad32ce09c56e46e158e6da0ee9173928b0", + [ + null, + [ + [ + "/css/css-contain/content-visibility/container-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-052.html": [ + "2df45ae149e7c955b2f1d4e6f8dc21ea4a8e7ba9", + [ + null, + [ + [ + "/css/css-contain/content-visibility/container-with-pos-children-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-055.html": [ + "3dae93a504ce8e81b16b6284eef10cd0649a58b1", + [ + null, + [ + [ + "/css/css-contain/content-visibility/spacer-and-container-scrolled-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-056.html": [ + "dae94aa09509a3f139e45c4b6f4be1eb270a6aa7", + [ + null, + [ + [ + "/css/css-contain/content-visibility/spacer-and-container-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-057.html": [ + "d6a0d4f697fec394cb9e67cd93b83303f62c4702", + [ + null, + [ + [ + "/css/css-contain/content-visibility/container-with-child-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-058.html": [ + "fe9d70b60f6a1f2b245f5415ef503dac31704480", + [ + null, + [ + [ + "/css/css-contain/content-visibility/content-visibility-058-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-060.html": [ + "84b7bc9c1493dffa06a18135747f96c57ea1be8e", + [ + null, + [ + [ + "/css/css-contain/content-visibility/spacer-and-container-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-061.html": [ + "2181799a2960b617e4d25b3a9d502ae5b4fb53c2", + [ + null, + [ + [ + "/css/css-contain/content-visibility/spacer-and-container-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-062.html": [ + "ab99e82014d4725b294342d35f681eeac087fe91", + [ + null, + [ + [ + "/css/css-contain/content-visibility/spacer-and-container-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-063.html": [ + "e8a01460199e6ffa9aa2423034161593d769f507", + [ + null, + [ + [ + "/css/css-contain/content-visibility/spacer-and-container-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-064.html": [ + "1098e7595795b655d9f756ac2624ae179cd3b5c3", + [ + null, + [ + [ + "/css/css-contain/content-visibility/content-visibility-064-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-065.html": [ + "341f259b4cd378280098c35906ca78fd4ac9183d", + [ + null, + [ + [ + "/css/css-contain/content-visibility/spacer-and-container-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-066.html": [ + "d608d301f42fdf1851adeba0e01657d038267405", + [ + null, + [ + [ + "/css/css-contain/content-visibility/spacer-and-container-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-067.html": [ + "843a3bb6a93dc737d412807e60b0209d8ee60813", + [ + null, + [ + [ + "/css/css-contain/content-visibility/spacer-and-container-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-073.html": [ + "555479b8800b5e71548c243357267aa9255dc113", + [ + null, + [ + [ + "/css/css-contain/content-visibility/inline-container-with-child-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-074.html": [ + "ff6381ce3d0950c0b3c3822171c2b81d851ded15", + [ + null, + [ + [ + "/css/css-contain/content-visibility/content-visibility-074-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-075.html": [ + "ade27bdfaa72e776fc268514adcc9899c1341c2d", + [ + null, + [ + [ + "/css/css-contain/content-visibility/content-visibility-075-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-076.html": [ + "2aadcde0c70bef0b40d15c32609774b23eb5f9cb", + [ + null, + [ + [ + "/css/css-contain/content-visibility/content-visibility-075-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-078.html": [ + "27e300cf113e07b5ee5086f01bf2ac53a53f7dfd", + [ + null, + [ + [ + "/css/css-contain/content-visibility/content-visibility-078-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-079.html": [ + "c2cbbfb5a3d20f1d4888fcc98326ea9d90510a84", + [ + null, + [ + [ + "/css/css-contain/content-visibility/content-visibility-079-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-082.html": [ + "3313ca0f650b8cf990bcb385a3f9d27def81f0f2", + [ + null, + [ + [ + "/css/css-contain/content-visibility/container-focus-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-083.html": [ + "488465f02b817490e3e8273d834ca096016ffc94", + [ + null, + [ + [ + "/css/css-contain/content-visibility/spacer-and-container-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-084.html": [ + "742b1d51899114952f6dbff65be228638b2682a0", + [ + null, + [ + [ + "/css/css-contain/content-visibility/spacer-and-container-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-085.html": [ + "b451746bbba7729bc59bf355fa20c680c203547d", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "content-visibility-094.html": [ + "0434530298b578ed0ea81cef43987e69ea59142f", + [ + null, + [ + [ + "/css/css-contain/content-visibility/content-visibility-094-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-095.html": [ + "245a8dd827c31c166050cc5f2d0e6b1fd2eb7cf2", + [ + null, + [ + [ + "/css/css-contain/content-visibility/content-visibility-095-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-096.html": [ + "1d1a26c680975946a5289c27352b2e8646579284", + [ + null, + [ + [ + "/css/css-contain/content-visibility/content-visibility-096-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-097.html": [ + "5548f480f6ae4ab2376b668c8a0a41178e377b1f", + [ + null, + [ + [ + "/css/css-contain/content-visibility/content-visibility-097-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-098.html": [ + "6494ad4a38802eba39903d5b878127eddc654879", + [ + null, + [ + [ + "/css/css-contain/content-visibility/container-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-099.html": [ + "1abff2b9be0405dc69946f609bd8ccc864e13e9e", + [ + null, + [ + [ + "/css/css-contain/content-visibility/content-visibility-099-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-animation-and-scroll.html": [ + "3900918819ef72eb8a12be755e10f122b765c5d4", + [ + null, + [ + [ + "/css/css-contain/content-visibility/content-visibility-animation-and-scroll-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-animation-becomes-visible.html": [ + "53976c651aaa6fa4a91b50a76693daf31a547295", + [ + null, + [ + [ + "/css/css-contain/content-visibility/content-visibility-animation-becomes-visible-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-auto-in-iframe.html": [ + "ba02cac6684d2c283de114c0b00fcd4e6f99f724", + [ + null, + [ + [ + "/css/css-contain/content-visibility/content-visibility-auto-in-iframe-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-auto-intrinsic-width.html": [ + "bd90fff5143e43d4e1fddd6a1113b97b2a2957a7", + [ + null, + [ + [ + "/css/css-contain/content-visibility/container-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-auto-nested-scroll.html": [ + "ced9d79ec697e249480722cea6fb4cb92b211e1d", + [ + null, + [ + [ + "/css/css-contain/content-visibility/content-visibility-auto-nested-scroll-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-auto-nested.html": [ + "d9b9db6bb5fdb02c124d5cc72c17730b007ef85a", + [ + null, + [ + [ + "/css/css-contain/content-visibility/content-visibility-auto-nested-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-auto-svg-image.html": [ + "46de764072df987da7ba52e1790e9334af68bd20", + [ + null, + [ + [ + "/css/css-contain/content-visibility/content-visibility-auto-svg-image-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-canvas.html": [ + "fe469489528c45797b8ff68bfc739c39cefdf7b0", + [ + null, + [ + [ + "/css/css-contain/content-visibility/content-visibility-canvas-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-fieldset-size.html": [ + "830bf851ff1ac6ee27d02f9f4e43b094bb86e26f", + [ + null, + [ + [ + "/css/css-contain/content-visibility/content-visibility-fieldset-size-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-intrinsic-size-001.html": [ + "3a378d17e8947ff63928fcf86e7aa17ff51786aa", + [ + null, + [ + [ + "/css/css-contain/content-visibility/content-visibility-intrinsic-size-001-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-on-g.html": [ + "4ff07892680c64255757915bcc675a97dd67b317", + [ + null, + [ + [ + "/css/css-contain/content-visibility/content-visibility-on-g-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-on-root-svg.html": [ + "440d1ad94bfe7bea06b5cd6a614019215ff62cc4", + [ + null, + [ + [ + "/css/css-contain/content-visibility/content-visibility-on-root-svg-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-paint-containment-001.html": [ + "b18a9cb1e92eb81706473d4b09b3368ea1efa09b", + [ + null, + [ + [ + "/css/css-contain/content-visibility/content-visibility-paint-containment-001-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-paint-containment-002.html": [ + "bfe6d13b39492f8a971662bab452cbfc8fc0e232", + [ + null, + [ + [ + "/css/css-contain/content-visibility/content-visibility-paint-containment-002-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-paint-containment-003.html": [ + "0a4de9c4e55cb85241b3aff06e6929d165426f72", + [ + null, + [ + [ + "/css/css-contain/content-visibility/content-visibility-paint-containment-003-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-resize-observer-no-error.html": [ + "f323e606039e72a696d2de75eb0d43c7f9cab095", + [ + null, + [ + [ + "/css/css-contain/content-visibility/content-visibility-resize-observer-no-error-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-video.html": [ + "bed5954fe410cd4f21b7e06eb3c1abeaa62b7ca2", + [ + null, + [ + [ + "/css/css-contain/content-visibility/content-visibility-video-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-vs-scrollIntoView-001.html": [ + "b7af3462572086263174072990cbe9e4c13e20b8", + [ + null, + [ + [ + "/css/css-contain/content-visibility/content-visibility-vs-scrollIntoView-001-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-vs-scrollIntoView-002.html": [ + "5358fc6db8ae79fb5eeca6e9adeaeb7a802e5492", + [ + null, + [ + [ + "/css/css-contain/content-visibility/content-visibility-vs-scrollIntoView-002-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-with-popover-top-layer-000.html": [ + "fef4f5e5405e038aa10c1c0e21a71df6a82cd78f", + [ + null, + [ + [ + "/css/css-contain/content-visibility/container-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-with-popover-top-layer-001.html": [ + "fb3c9096da6305883ff42ce59981f34ad1f4b112", + [ + null, + [ + [ + "/css/css-contain/content-visibility/container-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-with-popover-top-layer-002.html": [ + "48b436f4de19ee35f3684794c49b786bcd9cb005", + [ + null, + [ + [ + "/css/css-contain/content-visibility/container-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-with-popover-top-layer-003.html": [ + "df3cf07a0159f9254f0fd78d193716c74aa70068", + [ + null, + [ + [ + "/css/css-contain/content-visibility/content-with-popover-top-layer-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-with-popover-top-layer-004.html": [ + "bbf4567e37d4c1df68ce9119ec3952722324f12e", + [ + null, + [ + [ + "/css/css-contain/content-visibility/spacer-with-popover-top-layer-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-with-popover-top-layer-005.html": [ + "264d7b317e0a3fb2fc655c6cceda29d2fe252f9d", + [ + null, + [ + [ + "/css/css-contain/content-visibility/spacer-with-popover-top-layer-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-with-popover-top-layer-and-auto-descendant.html": [ + "aed0227ef1d5b81776e48360c8db67175bea4e4a", + [ + null, + [ + [ + "/css/css-contain/content-visibility/content-visibility-with-popover-top-layer-and-auto-descendant-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-with-popover-top-layer-hide-after-addition.html": [ + "e3934bf46f80d7e22c0209470b8b7ed6f92e47cd", + [ + null, + [ + [ + "/css/css-contain/content-visibility/container-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-with-top-layer-000.html": [ + "61856611f9eb8b170325a12114df78beefaaf2d5", + [ + null, + [ + [ + "/css/css-contain/content-visibility/container-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-with-top-layer-001.html": [ + "43242eb2cb16438b4e748f97cf2c2b5408ba3a8b", + [ + null, + [ + [ + "/css/css-contain/content-visibility/container-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-with-top-layer-002.html": [ + "f54c639d7b2465e8c296d62e438c28ff8f9a37a5", + [ + null, + [ + [ + "/css/css-contain/content-visibility/container-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-with-top-layer-003.html": [ + "7fb1f20b7ecd38b3fbc5df22dacc55a73227a49e", + [ + null, + [ + [ + "/css/css-contain/content-visibility/content-with-top-layer-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-with-top-layer-004.html": [ + "e21b11e92db1fe8e7684536d04371ae077c8e66a", + [ + null, + [ + [ + "/css/css-contain/content-visibility/spacer-with-top-layer-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-with-top-layer-005.html": [ + "5283aea19734d1349622a249715c0a190d1ebad5", + [ + null, + [ + [ + "/css/css-contain/content-visibility/spacer-with-top-layer-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-with-top-layer-and-auto-descendant.html": [ + "a55337bf44d02e742be98e257a26cdf8b0221b35", + [ + null, + [ + [ + "/css/css-contain/content-visibility/content-visibility-with-top-layer-and-auto-descendant-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-with-top-layer-hide-after-addition.html": [ + "54f632ffbdf58924b3f03643dbff09137ca324b9", + [ + null, + [ + [ + "/css/css-contain/content-visibility/container-ref.html", + "==" + ] + ], + {} + ] + ], + "content-visibility-with-top-layer-in-auto-subtree-removal.html": [ + "af7be8615260032798f7499dcd317638e6781701", + [ + null, + [ + [ + "/css/css-contain/content-visibility/container-with-child-ref.html", + "==" + ] + ], + {} + ] + ], + "dynamic-change-paint-fully-obscuring-child-001.html": [ + "781a11ca40a36b4ce5d99c6c0b665ee2ef4d4e2c", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "element-reassigned-to-skipped-slot.html": [ + "d71ee9eef02a65440e9fb46c70e6016d01b01a22", + [ + null, + [ + [ + "/css/css-contain/content-visibility/container-ref.html", + "==" + ] + ], + {} + ] + ], + "element-reassigned-to-slot-in-skipped-subtree.html": [ + "df6b64d7bc926b942910fb818b002390b7fa565a", + [ + null, + [ + [ + "/css/css-contain/content-visibility/container-ref.html", + "==" + ] + ], + {} + ] + ], + "scrollIntoView-target-with-contents-hidden.html": [ + "42c8e43c8d43ca14a130ed779b6f56d973f64aef", + [ + null, + [ + [ + "/css/css-contain/content-visibility/scrollIntoView-target-with-contents-hidden-ref.html", + "==" + ] + ], + {} + ] + ], + "scrollIntoView-with-focus-target-with-contents-hidden.html": [ + "454d1bafa7079507d7c4d6a8f274997f79f6ca8d", + [ + null, + [ + [ + "/css/css-contain/content-visibility/scrollIntoView-with-focus-target-with-contents-hidden-ref.html", + "==" + ] + ], + {} + ] + ] + }, + "counter-scoping-001.html": [ + "ab948e19081e1383fdc68ef8b27f2b6db0e30e95", [ null, [ [ - "/css/css-color/t423-transparent-2-a-ref.html", + "/css/css-contain/reference/counter-scoping-001-ref.html", "==" ] ], {} ] ], - "t424-hsl-basic-a.xht": [ - "9fc453c939cf99167c034817a29ec59f240ecc85", + "counter-scoping-002.html": [ + "077dca5b7a72c8635a31a75a9a9396815bb44474", [ null, [ [ - "/css/css-color/t424-hsl-basic-a-ref.html", + "/css/css-contain/reference/counter-scoping-001-ref.html", "==" ] ], {} ] ], - "t424-hsl-clip-outside-gamut-b.xht": [ - "d66c2db925a8d5afdf0fc558c26b0d20bec92367", + "counter-scoping-003.html": [ + "a12dbfa7001aee455eea7391368a190a7575110c", [ null, [ [ - "/css/css-color/t424-hsl-clip-outside-gamut-b-ref.html", + "/css/css-contain/reference/counter-scoping-003-ref.html", "==" ] ], {} ] ], - "t424-hsl-h-rotating-b.xht": [ - "b310316f68a49e588863cccd96561173893fca6e", + "counter-scoping-004.html": [ + "3aad43f8535a5a222dc710db59c77deefe2b2390", [ null, [ [ - "/css/css-color/t424-hsl-h-rotating-b-ref.html", + "/css/css-contain/reference/counter-scoping-004-ref.html", "==" ] ], {} ] ], - "t424-hsl-parsing-f.xht": [ - "ca89eae62d036ef6e4adee2bf88268c7655864c9", + "quote-scoping-001.html": [ + "8c38e45b1ace138cbb795c77fdece555967e043d", [ null, [ [ - "/css/css-color/t424-hsl-parsing-f-ref.html", + "/css/css-contain/reference/quote-scoping-001-ref.html", "==" ] ], {} ] ], - "t424-hsl-values-b-1.html": [ - "11d78a4afcc1380c8d4b7464b1c51399500f839c", + "quote-scoping-002.html": [ + "9477afdfb1cf3073695a521c28cb9643a66bf00d", [ null, [ [ - "/css/css-color/t424-hsl-values-b-1-ref.html", + "/css/css-contain/reference/quote-scoping-002-ref.html", "==" ] ], {} ] ], - "t424-hsl-values-b-10.html": [ - "6a18362610a1db849d51d4d3f3f6ec18836ace94", + "quote-scoping-003.html": [ + "2a909511c3451c98bcdd059d506279923e6ce709", [ null, [ [ - "/css/css-color/t424-hsl-values-b-10-ref.html", + "/css/css-contain/reference/quote-scoping-003-ref.html", "==" ] ], {} ] ], - "t424-hsl-values-b-11.html": [ - "c76e7bafeabda981cfbadff69cab032ca0444efb", + "quote-scoping-004.html": [ + "d86382be08532323baad174808181e338adbc932", [ null, [ [ - "/css/css-color/t424-hsl-values-b-11-ref.html", + "/css/css-contain/reference/quote-scoping-003-ref.html", "==" ] ], {} ] ], - "t424-hsl-values-b-12.html": [ - "cba1cb9c4b33ae4a65e116effd5e4f40e14ef364", + "quote-scoping-empty-style-boundaries.html": [ + "89614565ba9787f91dc5ae65d92cdcd8aea82e13", [ null, [ [ - "/css/css-color/t424-hsl-values-b-12-ref.html", + "/css/css-contain/reference/quote-scoping-empty-style-boundaries-ref.html", "==" ] ], {} ] ], - "t424-hsl-values-b-13.html": [ - "bf69977f5e4e505042828e4e44d91e5337442fbf", + "quote-scoping-invalidation-001.html": [ + "61ec4a481ffd20af97be0620334edfad6cef1954", [ null, [ [ - "/css/css-color/t424-hsl-values-b-13-ref.html", + "/css/css-contain/reference/quote-scoping-invalidation-001-ref.html", "==" ] ], {} ] ], - "t424-hsl-values-b-14.html": [ - "48fbe10210956b4166575845a6adca620d339969", + "quote-scoping-invalidation-002.html": [ + "727ee9a58128bbb4eaeff87f2f3df988e8547da9", [ null, [ [ - "/css/css-color/t424-hsl-values-b-14-ref.html", + "/css/css-contain/reference/quote-scoping-invalidation-002-ref.html", "==" ] ], {} ] ], - "t424-hsl-values-b-15.html": [ - "15f88c885c935b8f3e76c485a8f5696ef1ba8730", + "quote-scoping-invalidation-003.html": [ + "24e69eb38fe7d18fd5e2359fdfb5d64440343192", [ null, [ [ - "/css/css-color/t424-hsl-values-b-15-ref.html", + "/css/css-contain/reference/quote-scoping-invalidation-003-ref.html", "==" ] ], {} ] ], - "t424-hsl-values-b-2.html": [ - "15e81d5f121719d24e036c98138d283384901cf3", + "quote-scoping-invalidation-004.html": [ + "11b0d24f6680879aafd21853ea7abb07a55072c4", [ null, [ [ - "/css/css-color/t424-hsl-values-b-2-ref.html", + "/css/css-contain/reference/quote-scoping-invalidation-004-ref.html", "==" ] ], {} ] - ], - "t424-hsl-values-b-3.html": [ - "546b8bfc6f600c4ab0c37f19930687e1d6a9b773", + ] + }, + "css-content": { + "attr-case-sensitivity-001.html": [ + "03fcc3bc98d1855bcad938a55f0c08873b19c8d4", [ null, [ [ - "/css/css-color/t424-hsl-values-b-3-ref.html", + "/css/css-content/attr-case-sensitivity-ref-001.html", "==" ] ], {} ] ], - "t424-hsl-values-b-4.html": [ - "9f981a44c9d59710323e3c02d2150328cefccb29", + "attr-case-sensitivity-002.html": [ + "a1c4e88b8b99236e2fa07adf43335a6f3c319875", [ null, [ [ - "/css/css-color/t424-hsl-values-b-4-ref.html", + "/css/css-content/attr-case-sensitivity-ref-002.html", "==" + ], + [ + "/css/css-content/attr-case-sensitivity-ref-003.html", + "!=" ] ], {} ] ], - "t424-hsl-values-b-5.html": [ - "5d4e569db0e5da2d93886dcb48e7d177d8ad68c2", + "attr-case-sensitivity-003.html": [ + "d62a68f8899bd96b0ca9ce0d9f39c90ac749d4d3", [ null, [ [ - "/css/css-color/t424-hsl-values-b-5-ref.html", + "/css/css-content/attr-case-sensitivity-ref-003.html", "==" + ], + [ + "/css/css-content/attr-case-sensitivity-ref-002.html", + "!=" ] ], {} ] ], - "t424-hsl-values-b-6.html": [ - "9e54ba00227d96c354569147ded8a587ac6e0cfc", + "content-none-details.html": [ + "6ac94c3e865aaf808fb9cdb1f11807c2e43a3e8c", [ null, [ [ - "/css/css-color/t424-hsl-values-b-6-ref.html", + "/css/css-content/content-none-details-ref.html", "==" ] ], {} ] ], - "t424-hsl-values-b-7.html": [ - "9b237d0b8ae9300418412263abbcb0c0e60c3a62", + "content-none-fieldset.html": [ + "4ada3b7b01d79e38abc171edf4bf7607fb856cef", [ null, [ [ - "/css/css-color/t424-hsl-values-b-7-ref.html", + "/css/css-content/content-none-fieldset-ref.html", "==" ] ], {} ] ], - "t424-hsl-values-b-8.html": [ - "906857b8eeaafd1620f4ab4ce453bbd7d07da5fc", + "content-none-input.html": [ + "5cc76ba11de411520a880aac2f582f9f9068c165", [ null, [ [ - "/css/css-color/t424-hsl-values-b-8-ref.html", + "/css/css-content/content-none-input-ref.html", "==" ] ], {} ] ], - "t424-hsl-values-b-9.html": [ - "eac48ff3d4e8c9744584e8fc3360e603a63bb337", + "content-none-math.html": [ + "2d5e78f678f62ee5c3ded1680875f4cefe3bc737", [ null, [ [ - "/css/css-color/t424-hsl-values-b-9-ref.html", + "/css/css-content/content-none-math-ref.html", "==" ] ], {} ] ], - "t425-hsla-basic-a.xht": [ - "435041b5fa9b0f003adb893e96550765f7effc3c", + "content-none-option.html": [ + "5eff47776119aecfccd8efcf728eac1d0b116be3", [ - "css/css-color/t425-hsla-basic-a.xht", + null, [ [ - "/css/css-color/t425-hsla-basic-a-ref.xht", + "/css/css-content/content-none-option-ref.html", "==" ] ], {} ] ], - "t425-hsla-clip-outside-device-gamut-b.xht": [ - "d30cf8c48393c1527d59a4bb87451f09a72491f6", + "content-none-root-block.html": [ + "c8d15df3eafe1e9a2f8d0b4485c7538c9ccec749", [ null, [ [ - "/css/css-color/t425-hsla-clip-outside-device-gamut-b-ref.html", + "/css/css-content/content-none-root-block-ref.html", "==" ] ], {} ] ], - "t425-hsla-h-rotating-b.xht": [ - "a192442be7ddda6501238fe98f4f988c8f3be50a", + "content-none-root-columns.html": [ + "b3fceb1c4f4d4f8bb5304430ff19b73903f58b11", [ null, [ [ - "/css/css-color/t425-hsla-h-rotating-b-ref.html", + "/css/css-content/content-none-root-columns-ref.html", "==" ] ], {} ] ], - "t425-hsla-parsing-f.xht": [ - "67ce55f4ac61cbf9b3d103078e6a329316397799", + "content-none-root-flex.html": [ + "0b6c6cab14f078006224898e032add1022eb6ebb", [ null, [ [ - "/css/css-color/t424-hsl-parsing-f-ref.html", + "/css/css-content/content-none-root-flex-ref.html", "==" ] ], {} ] ], - "t425-hsla-values-b.xht": [ - "27ed578652f2e2dcc65565de8062ec300dd61131", + "content-none-root-grid.html": [ + "e97f7848acb82fe154a00776b909f87ac2f0f904", [ null, [ [ - "/css/css-color/t425-hsla-values-b-ref.html", + "/css/css-content/content-none-root-grid-ref.html", "==" ] ], {} ] ], - "t43-svg-keywords-a.xht": [ - "9066863c9b7c8577a9f9c17ad41da8a030307cd3", + "content-none-root-ruby.html": [ + "8434d9619068e5f48539ee0d942412372e31c813", [ null, [ [ - "/css/css-color/t43-svg-keywords-a-ref.html", + "/css/css-content/content-none-root-ruby-ref.html", "==" ] ], {} ] ], - "t44-currentcolor-background-b.xht": [ - "816d622e8ff119ccb9db6a0a789b88d3515f2943", + "content-none-root-table.html": [ + "92e4a7730b938f1f155ef2fff5f044f3ee531e68", [ null, [ [ - "/css/css-color/t44-currentcolor-background-b-ref.html", + "/css/css-content/content-none-root-table-ref.html", "==" ] ], {} ] ], - "t44-currentcolor-border-b.xht": [ - "3d7441e5f56e59eb91f3eae25721888c5e58e855", + "content-none-select-1.html": [ + "450dd66e216be980689be8cc56f8f2fe91d27bfa", [ null, [ [ - "/css/css-color/t44-currentcolor-border-b-ref.html", + "/css/css-content/content-none-select-1-ref.html", "==" ] ], - {} + { + "timeout": "long" + } ] ], - "t44-currentcolor-inherited-c.xht": [ - "569a616e6219455f15b08d2c5cca84b2df918bb7", + "content-none-select-2.html": [ + "4b8f0f5c3247a383eab241a116ca48c010d19b3c", [ null, [ [ - "/css/css-color/t44-currentcolor-inherited-c-ref.xht", + "/css/css-content/content-none-select-2-ref.html", "==" ] ], {} ] ], - "tagged-images-001.html": [ - "0af9c0ce51e109588772a291e7b0250549c7fbe8", + "content-none-span-dynamic.html": [ + "078be9928a61603987467c2a97bf5a27985a19a3", [ null, [ [ - "/css/css-color/009900-image-ref.html", + "/css/css-content/content-none-span-ref.html", "==" ] ], {} ] ], - "tagged-images-002.html": [ - "b7c76b35502e13e65c4e8204ea1f05d15940f0ea", + "content-none-span.html": [ + "b963869cfeed60f2423b970c707a91e3ce838b22", [ null, [ [ - "/css/css-color/009900-image-ref.html", + "/css/css-content/content-none-span-ref.html", "==" ] ], {} ] ], - "tagged-images-003.html": [ - "14f154b88acfd622c72f50f3d8f1fe4641a6ee00", + "content-none-table.html": [ + "723e2e41467db17fd6ad5af5ec0e9e44d0ce9a89", [ null, [ [ - "/css/css-color/greensquare-090-ref.html", + "/css/css-content/content-none-table-ref.html", "==" ] ], {} ] ], - "tagged-images-004.html": [ - "bd874c9717230264c16539b87dc821655cfb2734", + "element-replacement-alt.html": [ + "e9ee9344c268faabb238f651b1335a5b9db47351", [ null, [ [ - "/css/css-color/greensquare-090-ref.html", + "/css/css-content/element-replacement-alt-ref.html", "==" ] ], {} ] ], - "untagged-images-001.html": [ - "a1aafb759c0d5994cc45ddd9422a1f7e39fa66e8", + "element-replacement-display-contents.html": [ + "3782f4c2c764c06870176ffeac5d548bdd854d20", [ null, [ [ - "/css/css-color/009900-tagged-image-ref.html", + "/css/reference/blank.html", "==" ] ], {} ] ], - "xyz-001.html": [ - "6fdf98e2dfc9f6d5341d12e5367b3159127e5df3", + "element-replacement-display-none.html": [ + "6c61da381803221837b084831bb0f2709ebc88d6", [ null, [ [ - "/css/css-color/greensquare-ref.html", + "/css/reference/blank.html", "==" ] ], {} ] ], - "xyz-002.html": [ - "832a1948a2cb51c4d4c192d0b06520ddf61ce0a0", + "element-replacement-dynamic.html": [ + "c025759094e8fa1d0ce5d876474477d50877a050", [ null, [ [ - "/css/css-color/blacksquare-ref.html", + "/css/css-content/element-replacement-ref.html", "==" ] ], {} ] ], - "xyz-003.html": [ - "d9f3326c582343b6ebaf181ba57f4eb2e706bc33", + "element-replacement-gradient.html": [ + "bb1010b07533ebab2332b784b40b8622578c28bf", [ - "css/css-color/xyz-003.html", + null, [ [ - "/css/css-color/xyz-003-ref.html", + "/css/css-content/element-replacement-gradient-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 1 - ], - [ - 0, - 18432 - ] - ] - ] - ] - } + {} ] ], - "xyz-004.html": [ - "e1e30c17d8bab6d7c10562e93ee721143136f89c", + "element-replacement-image-alt.html": [ + "89cd63e5c4e626ad4974fd088580132ba46fe534", [ null, [ [ - "/css/css-color/xyz-004-ref.html", + "/css/css-content/element-replacement-ref.html", "==" ] ], {} ] ], - "xyz-005.html": [ - "a8a01e4065bf0489652a99368a1f8638f9855efc", + "element-replacement-image-no-src.tentative.html": [ + "0c400ed5740bdd54170b6c0a2654f340d4237a9c", [ null, [ [ - "/css/css-color/greensquare-display-p3-ref.html", + "/css/css-content/element-replacement-image-no-src-ref.html", "==" ] ], {} ] ], - "xyz-d50-001.html": [ - "da5ad5090c3488854e65b0eaf4aa89d32bd37035", + "element-replacement-image-src.tentative.html": [ + "33547e2c24cbc9e16120b82883b553a7a8fb0b45", [ null, [ [ - "/css/css-color/greensquare-ref.html", + "/css/css-content/element-replacement-image-no-src-ref.html", "==" ] ], {} ] ], - "xyz-d50-002.html": [ - "140f25ebf202c203a51f78d8ff4792b24668b358", + "element-replacement-on-replaced-element.tentative.html": [ + "79a465541f3975c3ba8e0d9bff051aba7d3c2cff", [ null, [ [ - "/css/css-color/blacksquare-ref.html", + "/css/css-content/element-replacement-on-replaced-element-ref.html", "==" ] ], {} ] ], - "xyz-d50-003.html": [ - "7630115187454cab97615eec49e59a6e446da285", + "element-replacement.html": [ + "a78e9f713b2428763ed4244aae1b6269a15d6637", [ - "css/css-color/xyz-d50-003.html", + null, [ [ - "/css/css-color/xyz-d50-003-ref.html", + "/css/css-content/element-replacement-ref.html", "==" ] ], {} ] ], - "xyz-d50-004.html": [ - "f4aa9a0a1d5730e5180fc06e6a21a9bb51908066", + "pseudo-element-inline-box.html": [ + "5c1666261e9cfe7781286846c06f58987717744e", [ - "css/css-color/xyz-d50-004.html", + null, [ [ - "/css/css-color/xyz-d50-004-ref.html", + "/css/css-content/pseudo-element-inline-box-ref.html", "==" ] ], {} ] ], - "xyz-d50-005.html": [ - "f43c07b16ec1895026135256cb328fa6728ca468", + "quotes-001.html": [ + "26fddec97a962ed5e3a30aca8b3d894c542b675f", [ null, [ [ - "/css/css-color/greensquare-display-p3-ref.html", + "/css/css-content/reference/quotes-001-ref.html", "==" ] ], {} ] ], - "xyz-d65-001.html": [ - "d3a976634768e284787201b9f256679cd578141e", + "quotes-002.html": [ + "e87938cf9812ba7bfd37235a4cb8de7d920f5043", [ null, [ [ - "/css/css-color/greensquare-ref.html", + "/css/css-content/reference/quotes-002-ref.html", "==" ] ], {} ] ], - "xyz-d65-002.html": [ - "eb237eda72e4fd6756cab88f2e8cc1f9c593ba75", + "quotes-003.html": [ + "ed568f2d045577ae15fa5a6d2a3a76a41a5c359c", [ null, [ [ - "/css/css-color/blacksquare-ref.html", + "/css/css-content/reference/quotes-003-ref.html", "==" ] ], {} ] ], - "xyz-d65-003.html": [ - "d5e5cda1f16809b1d8c0a22572ae2a316d3a30cb", + "quotes-004.html": [ + "0fbe91d1946d4b7d68bdb90f04f68f412d23c8a8", [ - "css/css-color/xyz-d65-003.html", + null, [ [ - "/css/css-color/xyz-d65-003-ref.html", + "/css/css-content/reference/quotes-004-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 1 - ], - [ - 0, - 18432 - ] - ] - ] - ] - } + {} ] ], - "xyz-d65-004.html": [ - "ddb2977ec80097d9db116e2fae576a50de1312e2", + "quotes-005.html": [ + "d813a589de042fcc16cd5bb006a0a3c5458960ee", [ null, [ [ - "/css/css-color/xyz-d65-004-ref.html", + "/css/css-content/reference/quotes-005-ref.html", "==" ] ], {} ] ], - "xyz-d65-005.html": [ - "a99a5e9682bf36fd50c185fec9c0e5b4117dfb0e", + "quotes-006.html": [ + "b4f876f4460827c3587bbf17bbfb53920751d90b", [ null, [ [ - "/css/css-color/greensquare-display-p3-ref.html", + "/css/css-content/reference/quotes-006-ref.html", "==" ] ], {} ] - ] - }, - "css-color-adjust": { - "rendering": { - "dark-color-scheme": { - "color-scheme-change-checkbox.html": [ - "b163b4a40c5ac75b728cf312dbd50e0f48169aa7", - [ - null, - [ - [ - "/css/css-color-adjust/rendering/dark-color-scheme/color-scheme-change-checkbox-notref.html", - "!=" - ] - ], - {} - ] - ], - "color-scheme-iframe-background-about-blank.tentative.html": [ - "a5a9843ac80d97d529d04f65c9f2250d3ba0dc25", - [ - "css/css-color-adjust/rendering/dark-color-scheme/color-scheme-iframe-background-about-blank.tentative.html", - [ - [ - "/css/css-color-adjust/rendering/dark-color-scheme/color-scheme-iframe-background-about-blank-ref.html", - "==" - ] - ], - {} - ] - ], - "color-scheme-iframe-background-mismatch-alpha.html": [ - "bab634cfda765536a4b428146ff64a63cac851a9", - [ - null, - [ - [ - "/css/css-color-adjust/rendering/dark-color-scheme/support/dark-frame-alpha.html", - "==" - ] - ], - {} - ] - ], - "color-scheme-iframe-background-mismatch-opaque-cross-origin.sub.html": [ - "0485044ca4f2fc2083f965c6b31c1cb666294162", - [ - null, - [ - [ - "/css/css-color-adjust/rendering/dark-color-scheme/support/dark-frame-opaque.html", - "==" - ] - ], - {} - ] - ], - "color-scheme-iframe-background-mismatch-opaque.html": [ - "d984fdd245f8da340eaee3aa87bbcdef1f15e2e2", - [ - null, - [ - [ - "/css/css-color-adjust/rendering/dark-color-scheme/support/dark-frame-opaque.html", - "==" - ] - ], - {} - ] - ], - "color-scheme-iframe-background-mismatch-used-preferred.html": [ - "fb774c356429f75ac81c562560a1a3baab259981", - [ - null, - [ - [ - "/css/css-color-adjust/rendering/dark-color-scheme/color-scheme-iframe-background-mismatch-used-preferred-ref.html", - "==" - ] - ], - {} - ] - ], - "color-scheme-iframe-background.html": [ - "caef99cf2d983d91fbe9e2ce7e8a801aa9245bd8", - [ - null, - [ - [ - "/css/css-color-adjust/rendering/dark-color-scheme/color-scheme-iframe-background-ref.html", - "==" - ] - ], - {} - ] - ], - "color-scheme-iframe-preferred.html": [ - "1c8814b112492a0efaee5b8f944db1234a341131", - [ - null, - [ - [ - "/css/css-color-adjust/rendering/dark-color-scheme/color-scheme-iframe-preferred-ref.html", - "==" - ] - ], - {} - ] - ], - "color-scheme-table-border-currentcolor-responsive.html": [ - "1d42a4fddabe8c3337ced4f9ad9b676b4b25c09b", - [ - "css/css-color-adjust/rendering/dark-color-scheme/color-scheme-table-border-currentcolor-responsive.html", - [ - [ - "/css/css-color-adjust/rendering/dark-color-scheme/color-scheme-table-border-currentcolor-responsive-ref.html", - "==" - ] - ], - {} - ] - ], - "color-scheme-visited-link-initial.html": [ - "6412acdb9f138d5e37947c8e3113837664392826", - [ - null, - [ - [ - "/css/css-color-adjust/rendering/dark-color-scheme/color-scheme-visited-link-initial-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-as-image.html": [ - "6fc33f56ceafc180575abdcaf63c891104203fc7", - [ - "css/css-color-adjust/rendering/dark-color-scheme/svg-as-image.html", - [ - [ - "/css/css-color-adjust/rendering/dark-color-scheme/svg-as-image-ref.html", - "==" - ] - ], - {} - ] - ] - } - } - }, - "css-conditional": { - "at-media-001.html": [ - "b2f4781d0ccbe69cbafba3ea4f71f40ebc7e9043", + ], + "quotes-007.html": [ + "b6791d42a5229bd031621532c6506ed56db20a16", [ - "css/css-conditional/at-media-001.html", + null, [ [ - "/css/css-conditional/at-supports-001-ref.html", + "/css/css-content/reference/quotes-007-ref.html", "==" ] ], {} ] ], - "at-media-002.html": [ - "7ba46b3291a67a8c3b4447258e325784975b9828", + "quotes-008.html": [ + "5369fd0bbfe8240314627b2991fd6b97d1b7cc18", [ - "css/css-conditional/at-media-002.html", + null, [ [ - "/css/css-conditional/at-supports-001-ref.html", + "/css/css-content/reference/quotes-008-ref.html", "==" ] ], {} ] ], - "at-media-003.html": [ - "1b21765363387c3f53841a9aeef30980957987f4", + "quotes-009.html": [ + "ae1688f5a4ebac99b8dd2e934ceaaf8280fe8f6d", [ null, [ [ - "/css/css-conditional/at-supports-001-ref.html", + "/css/css-content/reference/quotes-009-ref.html", "==" ] ], {} ] ], - "at-media-content-001.html": [ - "8ad16b4f2ef2f009a5cc51537ee1949ce5815034", + "quotes-010.html": [ + "022bdd561b450af4c43a1531b61b493517c046de", [ - "css/css-conditional/at-media-content-001.html", + null, [ [ - "/css/css-conditional/at-supports-001-ref.html", + "/css/css-content/reference/quotes-010-ref.html", "==" ] ], {} ] ], - "at-media-content-002.html": [ - "9e5cf43052faaea7644996be6cccafed1dc6fc0f", + "quotes-011.html": [ + "3a3dc87d16807f3e2059db7527192f6c78f5d2ae", [ - "css/css-conditional/at-media-content-002.html", + null, [ [ - "/css/css-conditional/at-supports-001-ref.html", + "/css/css-content/reference/quotes-011-ref.html", "==" ] ], {} ] ], - "at-media-content-003.html": [ - "7d867a5b7e468c96e22bd27cb60d3381a564fdf5", + "quotes-012.html": [ + "481b73dc77458f5d779416717f0405de2d9f2903", [ - "css/css-conditional/at-media-content-003.html", + null, [ [ - "/css/css-conditional/at-supports-001-ref.html", + "/css/css-content/reference/quotes-012-ref.html", "==" ] ], {} ] ], - "at-media-content-004.html": [ - "bfd3e8343243c37428eba8b8476dc8cead5b39ba", + "quotes-013.html": [ + "9db9526a8c6196af71651acc74780a1fe30f2f98", [ - "css/css-conditional/at-media-content-004.html", + null, [ [ - "/css/css-conditional/at-supports-001-ref.html", + "/css/css-content/reference/quotes-013-ref.html", "==" ] ], {} ] ], - "at-media-dynamic-001.html": [ - "8a1c93e4d2ba3546ac87bc2c6d29a69b6add8692", + "quotes-014.html": [ + "967510a6538a789f049efe7a89c5e81d882ed949", [ - "css/css-conditional/at-media-dynamic-001.html", + null, [ [ - "/css/css-conditional/at-supports-001-ref.html", + "/css/css-content/reference/quotes-014-ref.html", "==" ] ], {} ] ], - "at-media-whitespace-optional-001.html": [ - "49fd608dd75d9cfc8f811b407a413f4bdba77541", + "quotes-015.html": [ + "86a96085f216a7b201762ed00da285c6200fbb39", [ null, [ [ - "/css/css-conditional/reference/background-lime.html", + "/css/css-content/reference/quotes-015-ref.html", "==" ] ], {} ] ], - "at-media-whitespace-optional-002.html": [ - "7ae37f5bf301de5439be3695d3212bd7ceb5fefb", + "quotes-016.html": [ + "ebb812024403c317ef6f1fed3c6202e7506ecc64", [ null, [ [ - "/css/css-conditional/reference/background-lime.html", + "/css/css-content/reference/quotes-016-ref.html", "==" ] ], {} ] ], - "at-supports-001.html": [ - "6ba1bd3e2b0e5e07f06d25f86046bc2daa0d4528", + "quotes-017.html": [ + "f03ec2136338fd5ff0072385b2438d76081d95c6", [ null, [ [ - "/css/css-conditional/at-supports-001-ref.html", + "/css/css-content/reference/quotes-017-ref.html", "==" ] ], {} ] ], - "at-supports-002.html": [ - "4b703951e5b0a4a375420d47b4874f3aa500d317", + "quotes-018.html": [ + "48bd318398d894a32301c7cd0d02dad9ed6eddb6", [ null, [ [ - "/css/css-conditional/at-supports-001-ref.html", + "/css/css-content/reference/quotes-018-ref.html", "==" ] ], {} ] ], - "at-supports-003.html": [ - "029ce3744ccaa8aace376539c5d79b51694c9128", + "quotes-019.html": [ + "5bd522ee1abb26b9286095937e895eab66a36f55", [ null, [ [ - "/css/css-conditional/at-supports-001-ref.html", + "/css/css-content/reference/quotes-019-ref.html", "==" ] ], {} ] ], - "at-supports-004.html": [ - "f2cdfe3f164def302a9529f1d61712ad851077f9", + "quotes-020.html": [ + "0c1827d807c52825e141a561a7228d2b86d6efd3", [ null, [ [ - "/css/css-conditional/at-supports-001-ref.html", + "/css/css-content/reference/quotes-020-ref.html", "==" ] ], {} ] ], - "at-supports-005.html": [ - "62475029b473d1c300399c5b2b32e2de03ea68d5", + "quotes-021.html": [ + "bf23f1b033f231dec307f5e69a9b457b81efc6de", [ null, [ [ - "/css/css-conditional/at-supports-001-ref.html", + "/css/css-content/reference/quotes-021-ref.html", "==" ] ], {} ] ], - "at-supports-006.html": [ - "4e6ea9bcf88b07fe350d19e02c01c05094a8ad90", + "quotes-022.html": [ + "430b98b2c802b0599ae3789d078c113cacd0ffb0", [ null, [ [ - "/css/css-conditional/at-supports-001-ref.html", + "/css/css-content/reference/quotes-022-ref.html", "==" ] ], {} ] ], - "at-supports-007.html": [ - "975a84726d4e1a8daab0d35eece3781bf7c3342e", + "quotes-023.html": [ + "e88d6abffcd190c829bb8124d5ce03cb3675abe4", [ null, [ [ - "/css/css-conditional/at-supports-001-ref.html", + "/css/css-content/reference/quotes-023-ref.html", "==" ] ], {} ] ], - "at-supports-008.html": [ - "f133c3725180bb620dd3c0f01e644c2ba99ae013", + "quotes-024.html": [ + "99b29a2d67adfefbf8e2742425936de2b64ef0b5", [ null, [ [ - "/css/css-conditional/at-supports-001-ref.html", + "/css/css-content/reference/quotes-024-ref.html", "==" ] ], {} ] ], - "at-supports-009.html": [ - "2d53fd8a5a65b0e44c2d69d24499897269608b9e", + "quotes-025.html": [ + "28e1f2904bf561e6724d3210ae3645e6a4a4b852", [ null, [ [ - "/css/css-conditional/at-supports-001-ref.html", + "/css/css-content/reference/quotes-025-ref.html", "==" ] ], {} ] ], - "at-supports-010.html": [ - "468afe7e3e6a766a37a50a610e3dc6a3aa41baf7", + "quotes-026.html": [ + "ee1d5c56649aa9378c3e3ac57428429300c84b89", [ null, [ [ - "/css/css-conditional/at-supports-001-ref.html", + "/css/css-content/reference/quotes-026-ref.html", "==" ] ], {} ] ], - "at-supports-011.html": [ - "02e744e4b88799146bb6afe0d78b1b27369d2f1d", + "quotes-027.html": [ + "051d308539560d0dfc11442f35fbf2b8db7a20a8", [ null, [ [ - "/css/css-conditional/at-supports-001-ref.html", + "/css/css-content/reference/quotes-027-ref.html", "==" ] ], {} ] ], - "at-supports-012.html": [ - "e46e5a367d47f4fdf045ff8ecf5c8b696a17e6d8", + "quotes-028.html": [ + "5ec2ad0f02c88af43efcb155cadfadced1d90dbd", [ null, [ [ - "/css/css-conditional/at-supports-001-ref.html", + "/css/css-content/reference/quotes-028-ref.html", "==" ] ], {} ] ], - "at-supports-013.html": [ - "1c5f633614a6673705edc4ba5256f26cfb787b22", + "quotes-029.html": [ + "760605d0e203fea105fd9ab93e81d788bb193162", [ null, [ [ - "/css/css-conditional/at-supports-001-ref.html", + "/css/css-content/reference/quotes-029-ref.html", "==" ] ], {} ] ], - "at-supports-014.html": [ - "c26d8057d4683ff6c9d1d77647574dc1280d2085", + "quotes-030.html": [ + "095c37fedb6bae93b3ae248289dca86e6b9cecf5", [ null, [ [ - "/css/css-conditional/at-supports-001-ref.html", + "/css/css-content/reference/quotes-030-ref.html", "==" ] ], {} ] ], - "at-supports-015.html": [ - "a8a9019f259eabab5b4da028603e6092db7c6f68", + "quotes-031.html": [ + "72d2027341df7d58db855bec42c709c6012584e0", [ null, [ [ - "/css/css-conditional/at-supports-001-ref.html", + "/css/css-content/reference/quotes-031-ref.html", "==" ] ], {} ] ], - "at-supports-016.html": [ - "f8feaa470097a4932a3cd45f30ecaff63a8a0769", + "quotes-032.html": [ + "cb0b36312be585ae2633d7d18c93f2098aaa5157", [ null, [ [ - "/css/css-conditional/at-supports-001-ref.html", + "/css/css-content/reference/quotes-032-ref.html", "==" ] ], {} ] ], - "at-supports-017.html": [ - "42ca8c103b5128294afa2eb40a947ae3179baeb8", + "quotes-033.html": [ + "ca5447886473a9d36ea4b2c319ad238f01d1ca6d", [ null, [ [ - "/css/css-conditional/at-supports-001-ref.html", + "/css/css-content/reference/quotes-033-ref.html", "==" ] ], {} ] ], - "at-supports-018.html": [ - "024c232f10ccf0904f5da972a2906cd72272ff43", + "quotes-034.html": [ + "1c0c744c308c80344d98372418a5a7f52b685d17", [ null, [ [ - "/css/css-conditional/at-supports-001-ref.html", + "/css/css-content/reference/quotes-034-ref.html", "==" ] ], {} ] ], - "at-supports-019.html": [ - "7e6bf448d727875fed6f9beff67116c562a91c19", + "quotes-first-letter-001.html": [ + "651615f5259d0cf4b972552e6e6a454c1127b7e3", [ null, [ [ - "/css/css-conditional/at-supports-001-ref.html", + "/css/css-content/reference/quotes-first-letter-001-ref.html", "==" ] ], {} ] ], - "at-supports-020.html": [ - "eed31e5eade6e518df68a5d93709ac449aa9025b", + "quotes-first-letter-002.html": [ + "8c40b1418a3ca0e3074ce6130ad372f8bb03c263", [ null, [ [ - "/css/css-conditional/at-supports-001-ref.html", + "/css/css-content/reference/quotes-first-letter-002-ref.html", "==" ] ], {} ] ], - "at-supports-021.html": [ - "a3fdc83ccb004662365bd6f7265ba4f88e7db1a4", + "quotes-first-letter-003.html": [ + "fd556d2ab12b704491c3ab36bbb4d1d045247d6a", [ null, [ [ - "/css/css-conditional/at-supports-001-ref.html", + "/css/css-content/reference/quotes-first-letter-001-ref.html", "==" ] ], {} ] ], - "at-supports-022.html": [ - "ec41734b42f663bdf094abb04a52fd8d287e3241", + "quotes-first-letter-004.html": [ + "932ea8516e12a9cd8d53de56fbea7d6317d2cbe6", [ null, [ [ - "/css/css-conditional/at-supports-001-ref.html", + "/css/css-content/reference/quotes-first-letter-001-ref.html", "==" ] ], {} ] ], - "at-supports-023.html": [ - "e3df4f6f70b1d83c337199704fc9c0be57cc5c87", + "quotes-first-letter-005.html": [ + "a22589a661b5a043c7b1b5eb291e6aac20b0f688", [ null, [ [ - "/css/css-conditional/at-supports-001-ref.html", + "/css/css-content/reference/quotes-first-letter-002-ref.html", "==" ] ], {} ] ], - "at-supports-024.html": [ - "94827ff53be9375255ce78f7b1298076a511b6c7", + "quotes-slot-scoping.html": [ + "3caeabef4eccc76d8703825bf5db09e129186987", [ null, [ [ - "/css/css-conditional/at-supports-001-ref.html", + "/css/css-content/quotes-slot-scoping-ref.html", "==" ] ], {} ] - ], - "at-supports-025.html": [ - "e7079ee5cba014a3fa8e4f5c6125397ffed62b2f", - [ - null, + ] + }, + "css-counter-styles": { + "arabic-indic": { + "css3-counter-styles-101.html": [ + "21cd9be228950b69fe6f4ffe9d8b8a0be857d7c6", [ + null, [ - "/css/css-conditional/at-supports-001-ref.html", - "==" - ] - ], - {} - ] - ], - "at-supports-026.html": [ - "842a0ad663bdfc3f433dcf70c392a47f8bb865a6", - [ - null, + [ + "/css/css-counter-styles/arabic-indic/css3-counter-styles-101-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-102.html": [ + "5c86456c94546354d680555ac0f06a06afd83e41", [ + null, [ - "/css/css-conditional/at-supports-001-ref.html", - "==" - ] - ], - {} - ] - ], - "at-supports-027.html": [ - "11a0ed1f0f816af15a8514a2f2786ac7944cbaf5", - [ - null, + [ + "/css/css-counter-styles/arabic-indic/css3-counter-styles-102-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-103.html": [ + "e2e01134d648686d9831ae0eeb3f74eadb7752a1", [ + null, [ - "/css/css-conditional/at-supports-027-ref.html", - "==" - ] - ], - {} + [ + "/css/css-counter-styles/arabic-indic/css3-counter-styles-103-ref.html", + "==" + ] + ], + {} + ] ] - ], - "at-supports-028.html": [ - "3abc95ebd0b8713fda94ae2cd5b05e8b088103ec", - [ - null, + }, + "armenian": { + "css3-counter-styles-006.html": [ + "7500274ce995bf562763cd12f1144db54419c143", [ + null, [ - "/css/css-conditional/at-supports-001-ref.html", - "==" - ] - ], - {} - ] - ], - "at-supports-029.html": [ - "b78a711fe9610ddc9564cdd6893aa01ef3742b79", - [ - null, + [ + "/css/css-counter-styles/armenian/css3-counter-styles-006-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-007.html": [ + "dd5653019cda39f5e37c3e2b3d1d16ab9d8fe0e0", [ + null, [ - "/css/css-conditional/at-supports-027-ref.html", - "==" - ] - ], - {} - ] - ], - "at-supports-030.html": [ - "a2b66cfa63382b289b3c04faa90b88110bc7f783", - [ - null, + [ + "/css/css-counter-styles/armenian/css3-counter-styles-007-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-008.html": [ + "0ea36af37cd3534c88b4b1132dbf249d7ea34de8", [ + null, [ - "/css/css-conditional/at-supports-001-ref.html", - "==" - ] - ], - {} - ] - ], - "at-supports-031.html": [ - "2b4621d4943f0a89a9076c705dd3837084aae839", - [ - null, + [ + "/css/css-counter-styles/armenian/css3-counter-styles-008-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-009.html": [ + "72db60d0f165cbe26f0cc690acc27423cc68158a", [ + null, [ - "/css/css-conditional/at-supports-001-ref.html", - "==" - ] - ], - {} + [ + "/css/css-counter-styles/armenian/css3-counter-styles-009-ref.html", + "==" + ] + ], + {} + ] ] - ], - "at-supports-032.html": [ - "d53deb1757e34e2bef83d82f1885ed4a89ccbb66", - [ - null, + }, + "bengali": { + "css3-counter-styles-116.html": [ + "2fc9bf6878b8c344f683ac442a46a8c18dda6398", [ + null, [ - "/css/css-conditional/at-supports-001-ref.html", - "==" - ] - ], - {} - ] - ], - "at-supports-033.html": [ - "d2c682fb8d13ee0fb2e3ca4b3d35de45f307f761", - [ - null, + [ + "/css/css-counter-styles/bengali/css3-counter-styles-116-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-117.html": [ + "58ba8400ec37509d72668dd44827c005b566ff3c", [ + null, [ - "/css/css-conditional/at-supports-001-ref.html", - "==" - ] - ], - {} - ] - ], - "at-supports-034.html": [ - "d9b9612eecb1a99f0d7e3a41d53e0c18bc8479ad", - [ - null, + [ + "/css/css-counter-styles/bengali/css3-counter-styles-117-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-118.html": [ + "1215a1c201dc0e0e76ad0f09204f154b6db833c9", [ + null, [ - "/css/css-conditional/at-supports-001-ref.html", - "==" - ] - ], - {} + [ + "/css/css-counter-styles/bengali/css3-counter-styles-118-ref.html", + "==" + ] + ], + {} + ] ] - ], - "at-supports-035.html": [ - "23a706b32b8f1980d2135248f7921cc680905e79", - [ - null, + }, + "cambodian": { + "css3-counter-styles-158.html": [ + "76154c86b208f877fbf6abe58968e709d2511599", [ + null, [ - "/css/css-conditional/at-supports-001-ref.html", - "==" - ] - ], - {} - ] - ], - "at-supports-036.html": [ - "f352d5dbcf6108e9dacfe419958e67f3fe85b4be", - [ - null, + [ + "/css/css-counter-styles/cambodian/css3-counter-styles-158-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-159.html": [ + "d53f1e229fd515482022758f549d314d21c5d546", [ + null, [ - "/css/css-conditional/at-supports-001-ref.html", - "==" - ] - ], - {} - ] - ], - "at-supports-037.html": [ - "7f23db6fdd334467e278820c0123875b1a16ca7e", - [ - null, + [ + "/css/css-counter-styles/cambodian/css3-counter-styles-159-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-160.html": [ + "46223ab4daf0ba08b8af1875d2006626d1d2acf2", [ + null, [ - "/css/css-conditional/at-supports-001-ref.html", - "==" - ] - ], - {} + [ + "/css/css-counter-styles/cambodian/css3-counter-styles-160-ref.html", + "==" + ] + ], + {} + ] ] - ], - "at-supports-038.html": [ - "868a1e1f98e34949af65c7a0f8ead5ecaabe8c65", - [ - null, + }, + "cjk-decimal": { + "counter-cjk-decimal.html": [ + "0461b7809236b0917634bb095499b78075490b24", [ + null, [ - "/css/css-conditional/at-supports-001-ref.html", - "==" - ] - ], - {} - ] - ], - "at-supports-039.html": [ - "58e7ac2f00da80b9147e9dc7280292267a09ebad", - [ - null, + [ + "/css/css-counter-styles/cjk-decimal/counter-cjk-decimal-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-001.html": [ + "e5be28f73679ec0dca50e85af297e9b725c3093a", [ + null, [ - "/css/css-conditional/at-supports-001-ref.html", - "==" - ] - ], - {} - ] - ], - "at-supports-043.html": [ - "bf74ca6614b93c01bd93b3a98594c4dc9030b159", - [ - null, + [ + "/css/css-counter-styles/cjk-decimal/css3-counter-styles-001-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-004.html": [ + "921c4ace80f75c115c674a6150bbc59be1301435", [ + null, [ - "/css/css-conditional/at-supports-001-ref.html", - "==" - ] - ], - {} - ] - ], - "at-supports-044.html": [ - "e0fd6c0b023f4a0140271383510c61a37288243a", - [ - "css/css-conditional/at-supports-044.html", + [ + "/css/css-counter-styles/cjk-decimal/css3-counter-styles-004-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-005.html": [ + "c059d354f246fd1e27241e9e1afaebdb55f71e09", [ + null, [ - "/css/css-conditional/at-supports-001-ref.html", - "==" - ] - ], - {} + [ + "/css/css-counter-styles/cjk-decimal/css3-counter-styles-005-ref.html", + "==" + ] + ], + {} + ] ] - ], - "at-supports-045.html": [ - "8beeadf206ad46d417e1b7020784870f704dee4b", - [ - null, + }, + "cjk-earthly-branch": { + "css3-counter-styles-201.html": [ + "730a7f7eca7c7518d142bae5e2508070a5d4cb67", [ + null, [ - "/css/css-conditional/at-supports-001-ref.html", - "==" - ] - ], - {} - ] - ], - "at-supports-046.html": [ - "a239a117968f4a7d2f70f04c841de2c9ca2ece1c", - [ - null, + [ + "/css/css-counter-styles/cjk-earthly-branch/css3-counter-styles-201-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-202.html": [ + "3bc22758dc26db1d60eae413a182f2f33774bb05", [ + null, [ - "/css/css-conditional/at-supports-001-ref.html", - "==" - ] - ], - {} - ] - ], - "at-supports-048.html": [ - "dc0ed9dc425595f7da0066ff8036954d27d65a4c", - [ - "css/css-conditional/at-supports-048.html", + [ + "/css/css-counter-styles/cjk-earthly-branch/css3-counter-styles-202-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-203.html": [ + "1b343bfcc27de606e3ee2a737d15dc841fccc9f5", [ + null, [ - "/css/css-conditional/at-supports-048-ref.html", - "==" - ] - ], - {} + [ + "/css/css-counter-styles/cjk-earthly-branch/css3-counter-styles-203-ref.html", + "==" + ] + ], + {} + ] ] - ], - "at-supports-content-001.html": [ - "19c99f504be7766978dc3816d186e7c2dabe126e", - [ - "css/css-conditional/at-supports-content-001.html", + }, + "cjk-heavenly-stem": { + "css3-counter-styles-204.html": [ + "6ba9000d07cc2c814ca4f8e5cb9d9efc5049a416", [ + null, [ - "/css/css-conditional/at-supports-001-ref.html", - "==" - ] - ], - {} - ] - ], - "at-supports-content-002.html": [ - "dda1b8863f6af297f14a077ec21d2c7692a59314", - [ - "css/css-conditional/at-supports-content-002.html", + [ + "/css/css-counter-styles/cjk-heavenly-stem/css3-counter-styles-204-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-205.html": [ + "8c0f67dc1a1fe13e9165c9acea4b4252921f5abc", [ + null, [ - "/css/css-conditional/at-supports-001-ref.html", - "==" - ] - ], - {} - ] - ], - "at-supports-content-003.html": [ - "bd4d1135eddb72dc60ea31e645145acd13e69a16", - [ - "css/css-conditional/at-supports-content-003.html", + [ + "/css/css-counter-styles/cjk-heavenly-stem/css3-counter-styles-205-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-206.html": [ + "9c7a4a0d2bbd0419940e5aff227f4901997a8bc7", [ + null, [ - "/css/css-conditional/at-supports-001-ref.html", - "==" - ] - ], - {} + [ + "/css/css-counter-styles/cjk-heavenly-stem/css3-counter-styles-206-ref.html", + "==" + ] + ], + {} + ] ] - ], - "at-supports-content-004.html": [ - "c44184ba67b1e83291204ab47bf0a12f114d5fb0", + }, + "counter-name-case-sensitive.html": [ + "f6423b20cad397bc6e9a6d9220bba22fa936c229", [ - "css/css-conditional/at-supports-content-004.html", + null, [ [ - "/css/css-conditional/at-supports-001-ref.html", + "/css/css-counter-styles/counter-name-case-sensitive-ref.html", "==" ] ], {} ] ], - "at-supports-font-format-001.html": [ - "d4cab3ad119366869ce9f9e5cad670147e88ad79", - [ - null, + "counter-style-at-rule": { + "access-from-shadow-dom.html": [ + "94ec03722b80615fa0b1e1089d24c0e472e3cd17", [ + null, [ - "/css/css-conditional/at-supports-001-ref.html", - "==" - ] - ], - {} - ] - ], - "at-supports-font-tech-001.html": [ - "86e5332b90eaac340a82af7ab15cfb239e19069a", - [ - null, + [ + "/css/css-counter-styles/counter-style-at-rule/access-from-shadow-dom-ref.html", + "==" + ] + ], + {} + ] + ], + "broken-symbols.html": [ + "eea52a75b47b0400160a099160e0bf6212c4e91c", [ + null, [ - "/css/css-conditional/at-supports-001-ref.html", - "==" - ] - ], - {} - ] - ], - "at-supports-namespace-001.html": [ - "07ec7552f378a1d7c66c4d3a65bf9308abc6e111", - [ - null, + [ + "/css/css-counter-styles/counter-style-at-rule/broken-symbols-ref.html", + "==" + ] + ], + {} + ] + ], + "dependent-builtin.html": [ + "553dd72dca23b34220f831264d98bb70b7a86ef0", [ + null, [ - "/css/css-conditional/at-supports-001-ref.html", - "==" - ] - ], - {} - ] - ], - "at-supports-namespace-002.html": [ - "a8365f5fb258131b628d2b3637ddc3f10b36d505", - [ - null, + [ + "/css/css-counter-styles/counter-style-at-rule/dependent-builtin-ref.html", + "==" + ] + ], + {} + ] + ], + "descriptor-fallback-invalid.html": [ + "e19d9d649a03dfb15e3d15d506c9029e7cbfe725", [ + null, [ - "/css/css-conditional/at-supports-001-ref.html", - "==" - ] - ], - {} - ] - ], - "at-supports-selector-001.html": [ - "5e2d385ad36db9a339c4e9ca1a2bad6d24886ec4", - [ - null, + [ + "/css/css-counter-styles/counter-style-at-rule/descriptor-fallback-invalid-ref.html", + "==" + ] + ], + {} + ] + ], + "descriptor-fallback.html": [ + "7cbfb88592a5b4d3ab03ab039ea9e2aa6dafb90a", [ + null, [ - "/css/css-conditional/at-supports-001-ref.html", - "==" - ] - ], - {} - ] - ], - "at-supports-selector-002.html": [ - "6c4a58f346baa7b7788dd6be5e5926759c279a82", - [ - null, + [ + "/css/css-counter-styles/counter-style-at-rule/descriptor-fallback-ref.html", + "==" + ] + ], + {} + ] + ], + "descriptor-negative-invalid.html": [ + "f7376ea5dd866398814b12ba4ef7d26af1f839a5", [ + null, [ - "/css/css-conditional/at-supports-001-ref.html", - "==" - ] - ], - {} - ] - ], - "at-supports-selector-003.html": [ - "804fb3c383538bc3959ce51744a6b76e25cb5771", - [ - null, + [ + "/css/css-counter-styles/counter-style-at-rule/descriptor-negative-invalid-ref.html", + "==" + ] + ], + {} + ] + ], + "descriptor-negative.html": [ + "cf06bc4c7c7dc3763fe9d6356ca693510d4e6b6a", [ + null, [ - "/css/css-conditional/at-supports-001-ref.html", - "==" - ] - ], - {} - ] - ], - "at-supports-selector-004.html": [ - "47241f37a35792c554545b3f8f6365afc835b07d", - [ - null, + [ + "/css/css-counter-styles/counter-style-at-rule/descriptor-negative-ref.html", + "==" + ] + ], + {} + ] + ], + "descriptor-pad-invalid.html": [ + "4145eb7889dc5da7d8220c6d749e16712d7fded0", [ + null, [ - "/css/css-conditional/at-supports-001-ref.html", - "==" - ] - ], - {} - ] - ], - "at-supports-selector-detecting-invalid-in-logical-combinations.html": [ - "ff4c09195a9de215117241abc0601a4f79f5cad1", - [ - null, + [ + "/css/css-counter-styles/counter-style-at-rule/descriptor-pad-invalid-ref.html", + "==" + ] + ], + {} + ] + ], + "descriptor-pad.html": [ + "220e36b7875f635389dd8bf26bd5360c96196314", [ + null, [ - "/css/css-conditional/at-supports-selector-detecting-invalid-in-logical-combinations-ref.html", - "==" - ] - ], - {} - ] - ], - "at-supports-selector-file-selector-button.html": [ - "a51e503ef696fc0075234747a709ab8190fcf6d1", - [ - "css/css-conditional/at-supports-selector-file-selector-button.html", + [ + "/css/css-counter-styles/counter-style-at-rule/descriptor-pad-ref.html", + "==" + ] + ], + {} + ] + ], + "descriptor-prefix-invalid.html": [ + "33aa5452ac0bda36eff0aaf43687c0734e33c2c0", [ + null, [ - "/css/css-conditional/at-supports-001-ref.html", - "==" - ] - ], - {} - ] - ], - "at-supports-selector-placeholder.html": [ - "8ad858581478dad4721079b54c079fd93fab57c7", - [ - "css/css-conditional/at-supports-selector-placeholder.html", + [ + "/css/css-counter-styles/counter-style-at-rule/descriptor-prefix-invalid-ref.html", + "==" + ] + ], + {} + ] + ], + "descriptor-prefix.html": [ + "ecf18420aad8be51888f21d0363f89053d7a4896", [ + null, [ - "/css/css-conditional/at-supports-001-ref.html", - "==" - ] - ], - {} - ] - ], - "at-supports-selector-webkit-slider-thumb.tentative.html": [ - "3f777a7574a6d493c4d8a2fc2360c65cd1048ff4", - [ - "css/css-conditional/at-supports-selector-webkit-slider-thumb.tentative.html", + [ + "/css/css-counter-styles/counter-style-at-rule/descriptor-prefix-ref.html", + "==" + ] + ], + {} + ] + ], + "descriptor-range-invalid.html": [ + "2f55ef074bfb4a9758f2dc00241ca9ead0c5115a", [ + null, [ - "/css/css-conditional/at-supports-001-ref.html", - "==" - ] - ], - {} - ] - ], - "css-supports-001.xht": [ - "9221309d45fd637e613a1c11519a09fa105a4830", - [ - null, + [ + "/css/css-counter-styles/counter-style-at-rule/descriptor-range-invalid-ref.html", + "==" + ] + ], + {} + ] + ], + "descriptor-range.html": [ + "699c985431c8ad81977a004d50db686c8bdaf4d3", [ + null, [ - "/css/css-conditional/support/pass.xht", - "==" - ] - ], - {} - ] - ], - "css-supports-002.xht": [ - "48326acb7eedc08991128d176626c2141da47880", - [ - null, + [ + "/css/css-counter-styles/counter-style-at-rule/descriptor-range-ref.html", + "==" + ] + ], + {} + ] + ], + "descriptor-suffix-invalid.html": [ + "f62181bf9c458906b17032692c8479bf6ab1c8b4", [ + null, [ - "/css/css-conditional/support/pass.xht", - "==" - ] - ], - {} - ] - ], - "css-supports-003.xht": [ - "f7713dc3a81535c19c7717ef2790a4283d540d04", - [ - null, + [ + "/css/css-counter-styles/counter-style-at-rule/descriptor-suffix-invalid-ref.html", + "==" + ] + ], + {} + ] + ], + "descriptor-suffix.html": [ + "c558d6b30d96d8c0632acffd1b0e714575999040", [ + null, [ - "/css/css-conditional/support/pass.xht", - "==" - ] - ], - {} - ] - ], - "css-supports-004.xht": [ - "7c81650745b72338feeec6cf03644411e302bf4e", - [ - null, + [ + "/css/css-counter-styles/counter-style-at-rule/descriptor-suffix-ref.html", + "==" + ] + ], + {} + ] + ], + "descriptor-symbols-invalid.html": [ + "a0d0e3560b27cfc61467a6e77534c3e542499a3b", [ + null, [ - "/css/css-conditional/support/pass.xht", - "==" - ] - ], - {} - ] - ], - "css-supports-005.xht": [ - "e6e4348b06d64324bca35a4164353c37baa527bc", - [ - null, + [ + "/css/css-counter-styles/counter-style-at-rule/descriptor-symbols-invalid-ref.html", + "==" + ] + ], + {} + ] + ], + "descriptor-symbols.html": [ + "15568f08e452c159eee52ed954588a080ccfb989", [ + null, [ - "/css/css-conditional/support/pass.xht", - "==" - ] - ], - {} - ] - ], - "css-supports-006.xht": [ - "5a47f3559d6560a0126e19cda344538d3b2c4666", - [ - null, + [ + "/css/css-counter-styles/counter-style-at-rule/descriptor-symbols-ref.html", + "==" + ] + ], + {} + ] + ], + "disclosure-styles.html": [ + "e33b4cc2ac6769cd14929248c5b10d91d23524be", [ + null, [ - "/css/css-conditional/support/pass.xht", - "==" - ] - ], - {} - ] - ], - "css-supports-007.xht": [ - "250ffc5443890c561a90cdbfe82473f7ade941ff", - [ - null, + [ + "/css/css-counter-styles/counter-style-at-rule/disclosure-styles-ref.html", + "==" + ] + ], + {} + ] + ], + "empty-string-symbol.html": [ + "7efea106f516406342a66e0cfe7d9b48c19b555b", [ + null, [ - "/css/css-conditional/support/pass.xht", - "==" - ] - ], - {} - ] - ], - "css-supports-008.xht": [ - "396317500f680a3ddba4a688ab36bec3efbed8b5", - [ - null, + [ + "/css/css-counter-styles/counter-style-at-rule/empty-string-symbol-notref.html", + "!=" + ] + ], + {} + ] + ], + "fallbacks-in-shadow-dom.html": [ + "d51f70bc31c011fe9853755715a710837090a700", [ + null, [ - "/css/css-conditional/support/pass.xht", - "==" - ] - ], - {} - ] - ], - "css-supports-009.xht": [ - "0b00565004adabd0f38b0336753174687a104da1", - [ - null, + [ + "/css/css-counter-styles/counter-style-at-rule/fallbacks-in-shadow-dom-ref.html", + "==" + ] + ], + {} + ] + ], + "name-case-sensitivity.html": [ + "1e478bf17e82f6b088936a5b24dc8d1bcc810d5b", [ + null, [ - "/css/css-conditional/support/pass.xht", - "==" - ] - ], - {} - ] - ], - "css-supports-010.xht": [ - "c2270936d313f00645c750f06ac07c7723c04d80", - [ - null, + [ + "/css/css-counter-styles/counter-style-at-rule/name-case-sensitivity-ref.html", + "==" + ] + ], + {} + ] + ], + "override-in-shadow-dom.html": [ + "62064eb6fe86cf356794cfab36d52ca322781d0c", [ + null, [ - "/css/css-conditional/support/pass.xht", - "==" - ] - ], - {} - ] - ], - "css-supports-011.xht": [ - "b1f15fce269bb68cd4af96cc2ae599d64bf1a931", - [ - null, + [ + "/css/css-counter-styles/counter-style-at-rule/override-in-shadow-dom-ref.html", + "==" + ] + ], + {} + ] + ], + "redefine-attr-mapping.html": [ + "1656f9f33ebaf59c90849438196a57f072057ae6", [ + null, [ - "/css/css-conditional/support/pass.xht", - "==" - ] - ], - {} - ] - ], - "css-supports-012.xht": [ - "ba88446825220ff4106dffe8b1410d95ab597f72", - [ - null, + [ + "/css/css-counter-styles/counter-style-at-rule/redefine-attr-mapping-ref.html", + "==" + ] + ], + {} + ] + ], + "redefine-builtin.html": [ + "af90fcab8c8adb1d663676a14b62aee97e098d0c", [ + null, [ - "/css/css-conditional/support/pass.xht", - "==" - ] - ], - {} - ] - ], - "css-supports-013.xht": [ - "2c0b62e616409922f3269ea6fd2a2852aba62246", - [ - null, + [ + "/css/css-counter-styles/counter-style-at-rule/redefine-builtin-ref.html", + "==" + ] + ], + {} + ] + ], + "shadow-dom-part.html": [ + "cc43eee8eff3888f874feb2f818d08faaafdab9e", [ + null, [ - "/css/css-conditional/support/pass.xht", - "==" - ] - ], - {} - ] - ], - "css-supports-014.xht": [ - "90c3bb4e33e07b08987ae9a340bff9334ee9d1e6", - [ - null, + [ + "/css/css-counter-styles/counter-style-at-rule/shadow-dom-part-ref.html", + "==" + ] + ], + {} + ] + ], + "symbols-function-invalid.html": [ + "35aa83258726c89efc2c0e31a1e3927362c7f4e2", [ + null, [ - "/css/css-conditional/support/pass.xht", - "==" - ] - ], - {} - ] - ], - "css-supports-015.xht": [ - "8013bb88eb807ce4a92b4fdd807ae7f285601d51", - [ - null, + [ + "/css/css-counter-styles/counter-style-at-rule/symbols-function-invalid-ref.html", + "==" + ] + ], + {} + ] + ], + "symbols-function.html": [ + "9f129582fff8590b5e5325b057e06692193c4c7e", [ + null, [ - "/css/css-conditional/support/pass.xht", - "==" - ] - ], - {} - ] - ], - "css-supports-016.xht": [ - "5f06f91b63c0d1d6bc9d216ce7f71fa8a0bfc644", - [ - null, + [ + "/css/css-counter-styles/counter-style-at-rule/symbols-function-ref.html", + "==" + ] + ], + {} + ] + ], + "system-additive-invalid.html": [ + "1a8f94c04140cd4546d70b96693487393eab18b8", [ + null, [ - "/css/css-conditional/support/pass.xht", - "==" - ] - ], - {} - ] - ], - "css-supports-017.xht": [ - "92b8d04e7f24bbacf653cb0946c59cb7038977b2", - [ - null, + [ + "/css/css-counter-styles/counter-style-at-rule/system-common-invalid-ref.html", + "==" + ] + ], + {} + ] + ], + "system-additive.html": [ + "74568bccd183ef48f35edd1dd5cdc8cb049fdfd2", [ + null, [ - "/css/css-conditional/support/pass.xht", - "==" - ] - ], - {} - ] - ], - "css-supports-018.xht": [ - "56d4bea959ec1f3236bf1d47d377cf7d62b18d27", - [ - null, + [ + "/css/css-counter-styles/counter-style-at-rule/system-additive-ref.html", + "==" + ] + ], + {} + ] + ], + "system-alphabetic-invalid.html": [ + "c0f8ae926db7c5643fd2e1b456c8e3e4ada7ec26", [ + null, [ - "/css/css-conditional/support/pass.xht", - "==" - ] - ], - {} - ] - ], - "css-supports-019.xht": [ - "109c8528ba54da05ee43ad4215b2195ceac825cb", - [ - null, + [ + "/css/css-counter-styles/counter-style-at-rule/system-common-invalid2-ref.html", + "==" + ] + ], + {} + ] + ], + "system-alphabetic.html": [ + "9447eaf940401aa3304634a5ba89d48b3c465ca0", [ + null, [ - "/css/css-conditional/support/pass.xht", - "==" - ] - ], - {} - ] - ], - "css-supports-020.xht": [ - "808f2268ea3612cef3c4d01cb5226f4a9fde5a28", - [ - null, + [ + "/css/css-counter-styles/counter-style-at-rule/system-alphabetic-ref.html", + "==" + ] + ], + {} + ] + ], + "system-cyclic-invalid.html": [ + "602df644511f81ea505727c7d5bf344c53f19780", [ + null, [ - "/css/css-conditional/support/pass.xht", - "==" - ] - ], - {} - ] - ], - "css-supports-021.xht": [ - "46ca79f596ef40c227135e3d15284c5aac448270", - [ - null, + [ + "/css/css-counter-styles/counter-style-at-rule/system-common-invalid-ref.html", + "==" + ] + ], + {} + ] + ], + "system-cyclic.html": [ + "4244610d0010f4f0fcd1430cc2b5ac1a22148ad1", [ + null, [ - "/css/css-conditional/support/pass.xht", - "==" - ] - ], - {} - ] - ], - "css-supports-022.xht": [ - "25912d3e71f0e0c95d1810aa5e45cb54f5dbd879", - [ - null, + [ + "/css/css-counter-styles/counter-style-at-rule/system-cyclic-ref.html", + "==" + ] + ], + {} + ] + ], + "system-extends-fixed.html": [ + "7721be7c42f3e3d70f18049b59230ced9b3bb892", [ + null, [ - "/css/css-conditional/support/pass.xht", - "==" - ] - ], - {} - ] - ], - "css-supports-023.xht": [ - "7afb0ce6dc4c3154c1fe376316b15dfcc9c51ad2", - [ - null, + [ + "/css/css-counter-styles/counter-style-at-rule/system-extends-fixed-ref.html", + "==" + ] + ], + {} + ] + ], + "system-extends-invalid.html": [ + "446fe45e561f9a0a746830bf6642746131cdf0a9", [ + null, [ - "/css/css-conditional/support/pass.xht", - "==" - ] - ], - {} - ] - ], - "css-supports-024.xht": [ - "ae4b926b4eff4315785b2db5222707c41a07c40d", - [ - null, + [ + "/css/css-counter-styles/counter-style-at-rule/system-extends-invalid-ref.html", + "==" + ] + ], + {} + ] + ], + "system-extends.html": [ + "287930d0f607c0582d2069b045dfc0f6d78b39fa", [ + null, [ - "/css/css-conditional/support/pass.xht", - "==" - ] - ], - {} - ] - ], - "css-supports-025.xht": [ - "182f2874f189ae6383f973770673d2229924e81f", - [ - null, + [ + "/css/css-counter-styles/counter-style-at-rule/system-extends-ref.html", + "==" + ] + ], + {} + ] + ], + "system-fixed-invalid.html": [ + "b12b786bf319d05b8617aaca8c0e244ed9b85e8f", [ + null, [ - "/css/css-conditional/support/pass.xht", - "==" - ] - ], - {} - ] - ], - "css-supports-026.xht": [ - "7584bba6861440d373928aea73fa772da6379fd4", - [ - null, + [ + "/css/css-counter-styles/counter-style-at-rule/system-common-invalid2-ref.html", + "==" + ] + ], + {} + ] + ], + "system-fixed.html": [ + "900c95297e5e57549ef5c51ca51f930a4ab97b4a", [ + null, [ - "/css/css-conditional/support/pass.xht", - "==" - ] - ], - {} - ] - ], - "css-supports-029.xht": [ - "5f9b011e926e3955257ea50af404078ed2815c7a", - [ - null, + [ + "/css/css-counter-styles/counter-style-at-rule/system-fixed-ref.html", + "==" + ] + ], + {} + ] + ], + "system-numeric-invalid.html": [ + "064da8eec7c976cf9bd045d024ecf9200313a6bc", [ + null, [ - "/css/css-conditional/support/pass.xht", - "==" - ] - ], - {} - ] - ], - "css-supports-030.xht": [ - "2cfcbfe07a236dccaa3f2ebb031ef0eb84c5ae7f", - [ - null, + [ + "/css/css-counter-styles/counter-style-at-rule/system-common-invalid2-ref.html", + "==" + ] + ], + {} + ] + ], + "system-numeric.html": [ + "b5be5913687c2de26ac7a3e695964919d928b937", [ + null, [ - "/css/css-conditional/support/pass.xht", - "==" - ] - ], - {} - ] - ], - "css-supports-031.xht": [ - "dd9caf07af8d110f5c7b86d6c3fa4c8ea2e8b0ee", - [ - null, + [ + "/css/css-counter-styles/counter-style-at-rule/system-numeric-ref.html", + "==" + ] + ], + {} + ] + ], + "system-symbolic-invalid.html": [ + "1c0fac4ee87ad78c094f58cfd18202af08587bb7", [ + null, [ - "/css/css-conditional/support/pass.xht", - "==" - ] - ], - {} - ] - ], - "css-supports-032.xht": [ - "8a2ac0655e8c5d1bba80a5b1f0e95320a305603d", - [ - null, + [ + "/css/css-counter-styles/counter-style-at-rule/system-common-invalid-ref.html", + "==" + ] + ], + {} + ] + ], + "system-symbolic.html": [ + "a3ab8b1a98a34ed0cbd2525c3f2b61973b45999d", [ + null, [ - "/css/css-conditional/support/pass.xht", - "==" - ] - ], - {} + [ + "/css/css-counter-styles/counter-style-at-rule/system-symbolic-ref.html", + "==" + ] + ], + {} + ] ] - ], - "css-supports-033.xht": [ - "19b707deaca966ddad44f40eea7b370d5a1e514a", + }, + "counter-suffix.html": [ + "3624530437c8e9c34d93c9fe910202adda9568de", [ null, [ [ - "/css/css-conditional/support/pass.xht", + "/css/css-counter-styles/counter-suffix-ref.html", "==" ] ], {} ] ], - "css-supports-034.xht": [ - "19b707deaca966ddad44f40eea7b370d5a1e514a", - [ - null, + "cssom": { + "cssom-additive-symbols-setter-invalid.html": [ + "fd382553df86d6b093d5d580f97b6791dab8b77b", [ + null, [ - "/css/css-conditional/support/pass.xht", - "==" - ] - ], - {} - ] - ], - "css-supports-035.xht": [ - "7dc202b8a4c3711d751a6cd82c540af9b8b2a509", - [ - null, + [ + "/css/css-counter-styles/cssom/cssom-additive-symbols-setter-ref.html", + "==" + ] + ], + {} + ] + ], + "cssom-additive-symbols-setter.html": [ + "1ff6b424464a6a637116d81e99f0098bfcc5ec32", [ + null, [ - "/css/css-conditional/support/pass.xht", - "==" - ] - ], - {} - ] - ], - "css-supports-036.xht": [ - "9d6d26837d3373faa713770681bca9137f5b00c9", - [ - null, + [ + "/css/css-counter-styles/cssom/cssom-additive-symbols-setter-ref.html", + "==" + ] + ], + {} + ] + ], + "cssom-fallback-setter-invalid.html": [ + "c5c43a32237647209945e65fab10c97d24debd50", [ + null, [ - "/css/css-conditional/support/pass.xht", - "==" - ] - ], - {} - ] - ], - "css-supports-037.xht": [ - "137be1b598ecbdcd34c352eba2a845cd8443cfad", - [ - null, + [ + "/css/css-counter-styles/cssom/cssom-fallback-setter-ref.html", + "==" + ] + ], + {} + ] + ], + "cssom-fallback-setter.html": [ + "399463f3f18e67cfbf52b936bed71ef975b0f3c4", [ + null, [ - "/css/css-conditional/support/pass.xht", - "==" - ] - ], - {} - ] - ], - "css-supports-038.xht": [ - "bf969d70467c1b8f89485c77f73d5a442a6ace25", - [ - null, + [ + "/css/css-counter-styles/cssom/cssom-fallback-setter-ref.html", + "==" + ] + ], + {} + ] + ], + "cssom-name-setter-invalid.html": [ + "01edc415e90e6f7ce6ab5df98fec7def8e7c4f06", [ + null, [ - "/css/css-conditional/support/pass.xht", - "==" - ] - ], - {} - ] - ], - "css-supports-039.xht": [ - "1032263b1c49bb60932a30ec6e7aaebc6455f169", - [ - null, + [ + "/css/css-counter-styles/cssom/cssom-name-setter-ref.html", + "==" + ] + ], + {} + ] + ], + "cssom-name-setter.html": [ + "4cb926dd1291e3e513875e45e21a4fa2e3ca2506", [ + null, [ - "/css/css-conditional/support/pass.xht", - "==" - ] - ], - {} - ] - ], - "css-supports-040.xht": [ - "0b15778bc082fa6c631e1ccc9e166abd6e69885f", - [ - null, + [ + "/css/css-counter-styles/cssom/cssom-name-setter-ref.html", + "==" + ] + ], + {} + ] + ], + "cssom-negative-setter-invalid.html": [ + "e15447ba4ddf52d2764f2080abc1e4966ca85f26", [ + null, [ - "/css/css-conditional/support/pass.xht", - "==" - ] - ], - {} - ] - ], - "css-supports-041.xht": [ - "f01b2be784e53f4785938f4a0602bfde27f09f53", - [ - null, + [ + "/css/css-counter-styles/cssom/cssom-negative-setter-ref.html", + "==" + ] + ], + {} + ] + ], + "cssom-negative-setter.html": [ + "06238841ec5d558ec4a97123480e4548a150b49a", [ + null, [ - "/css/css-conditional/support/pass.xht", - "==" - ] - ], - {} - ] - ], - "css-supports-042.xht": [ - "5a106119bab1e7aa64b487fe59e3b75813613ba9", - [ - null, + [ + "/css/css-counter-styles/cssom/cssom-negative-setter-ref.html", + "==" + ] + ], + {} + ] + ], + "cssom-pad-setter-invalid.html": [ + "c263a1bb5fa8e94de60800100339abc819d6836e", [ + null, [ - "/css/css-conditional/support/pass.xht", - "==" - ] - ], - {} - ] - ], - "css-supports-043.xht": [ - "8e4d0e5b795968ea2c3704dc5cd436b2aed9cd3e", - [ - null, + [ + "/css/css-counter-styles/cssom/cssom-pad-setter-ref.html", + "==" + ] + ], + {} + ] + ], + "cssom-pad-setter.html": [ + "df1732dae6290fd27bdebb303fe56ed989a5e080", [ + null, [ - "/css/css-conditional/support/pass.xht", - "==" - ] - ], - {} - ] - ], - "css-supports-044.xht": [ - "0c66cfafa5c6d65e1025740621542c1824613547", - [ - null, + [ + "/css/css-counter-styles/cssom/cssom-pad-setter-ref.html", + "==" + ] + ], + {} + ] + ], + "cssom-prefix-suffix-setter-invalid.html": [ + "7aba3a0a5b915356ae95bf96345d9f3d54ba0712", [ + null, [ - "/css/css-conditional/support/pass.xht", - "==" - ] - ], - {} - ] - ], - "css-supports-045.xht": [ - "d11e108371522faee64875fb330305b7da8372f0", - [ - null, + [ + "/css/css-counter-styles/cssom/cssom-prefix-suffix-setter-ref.html", + "==" + ] + ], + {} + ] + ], + "cssom-prefix-suffix-setter.html": [ + "899caa26ba7f47eb9d2013172be1270334a1d541", [ + null, [ - "/css/css-conditional/support/pass.xht", - "==" - ] - ], - {} - ] - ], - "css-supports-046.xht": [ - "1913dff0c3552f00a1660053f7a4d95065762343", - [ - null, + [ + "/css/css-counter-styles/cssom/cssom-prefix-suffix-setter-ref.html", + "==" + ] + ], + {} + ] + ], + "cssom-range-setter-invalid.html": [ + "2fc459551f084c319b787114c3b5076d92c0eb08", [ + null, [ - "/css/css-conditional/support/pass.xht", - "==" - ] - ], - {} - ] - ] - }, - "css-contain": { - "contain-animation-001.html": [ - "449221428c3d76d31ff84a5792c7578c36cbebed", - [ - null, + [ + "/css/css-counter-styles/cssom/cssom-range-setter-ref.html", + "==" + ] + ], + {} + ] + ], + "cssom-range-setter.html": [ + "10d94f0cdb39c44b90accf2e18238ea2401184ee", [ + null, [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "contain-body-bg-001.html": [ - "b7890faebabd1fc104ec54c0a8576b243675daf6", - [ - null, + [ + "/css/css-counter-styles/cssom/cssom-range-setter-ref.html", + "==" + ] + ], + {} + ] + ], + "cssom-symbols-setter-invalid.html": [ + "3b40b0d4a3bb7d5d99757c0316b6ad2d07fc4f1e", [ + null, [ - "/css/css-contain/reference/contain-body-bg-001-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-body-bg-002.html": [ - "71237d977e117f057e9c906b3e7882e06a1ddfd3", - [ - null, + [ + "/css/css-counter-styles/cssom/cssom-symbols-setter-ref.html", + "==" + ] + ], + {} + ] + ], + "cssom-symbols-setter.html": [ + "cd9f66d23860120cab626a3be309d50839201704", [ + null, [ - "/css/css-contain/reference/contain-body-bg-001-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-body-bg-003.html": [ - "0aaf8b0da859ba89dda8977bf18663be012d1fb5", - [ - null, + [ + "/css/css-counter-styles/cssom/cssom-symbols-setter-ref.html", + "==" + ] + ], + {} + ] + ], + "cssom-system-setter-1.html": [ + "a616a60e0b08759e8c07c01f643cd0f5e4005731", [ + null, [ - "/css/css-contain/reference/contain-body-bg-001-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-body-bg-004.html": [ - "af046a96c43565c5c28988473b0bd7402610f8cc", - [ - null, + [ + "/css/css-counter-styles/cssom/cssom-system-setter-ref.html", + "==" + ] + ], + {} + ] + ], + "cssom-system-setter-2.html": [ + "f1cc65d7fccf0f704d73c4919acab2a2df9de5f6", [ + null, [ - "/css/css-contain/reference/contain-body-bg-001-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-body-dir-001.html": [ - "c055778fe41a198cfea7036700ac31f9040fb2b8", - [ - null, + [ + "/css/css-counter-styles/cssom/cssom-system-setter-ref.html", + "==" + ] + ], + {} + ] + ], + "cssom-system-setter-invalid.html": [ + "e56ec1a23e4388d4daaaea11f3e887bc9ba8070f", [ + null, [ - "/css/css-contain/reference/contain-body-w-m-001-ref.html", - "==" - ] - ], - {} + [ + "/css/css-counter-styles/cssom/cssom-system-setter-ref.html", + "==" + ] + ], + {} + ] ] - ], - "contain-body-dir-002.html": [ - "31e188f8d1529dcc5f39d16aa44a51f2c1c479aa", - [ - null, + }, + "devanagari": { + "css3-counter-styles-119.html": [ + "c736f7f5a323eb73857048cbd81289900a40ef04", [ + null, [ - "/css/css-contain/reference/contain-body-w-m-001-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-body-dir-003.html": [ - "cd01c6f253725c61b5433d6b31c9510fc53bfc6b", - [ - null, + [ + "/css/css-counter-styles/devanagari/css3-counter-styles-119-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-120.html": [ + "e52763b761c0c1c40853a5c2f4e0b4882d7dad8a", [ + null, [ - "/css/css-contain/reference/contain-body-w-m-001-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-body-dir-004.html": [ - "8b39b4324b533023b6986e12201faf49f47d0191", - [ - null, + [ + "/css/css-counter-styles/devanagari/css3-counter-styles-120-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-121.html": [ + "8db16780da3e8f396655f18c441c86ec75a3e93b", [ + null, [ - "/css/css-contain/reference/contain-body-w-m-001-ref.html", - "==" - ] - ], - {} + [ + "/css/css-counter-styles/devanagari/css3-counter-styles-121-ref.html", + "==" + ] + ], + {} + ] ] - ], - "contain-body-overflow-001.html": [ - "7f368756ca730e86b64fe0bc93f95af2506b12c9", - [ - null, + }, + "ethiopic-numeric": { + "counter-ethiopic-numeric.html": [ + "710869280de7bd3ccd6180880d98408e8f5ec36e", [ + null, [ - "/css/css-contain/reference/contain-body-overflow-001-ref.html", - "==" - ] - ], - {} + [ + "/css/css-counter-styles/ethiopic-numeric/counter-ethiopic-numeric-ref.html", + "==" + ] + ], + {} + ] ] - ], - "contain-body-overflow-002.html": [ - "bf741491c62cbadaba021f01899c61daef7e6e5e", - [ - null, + }, + "georgian": { + "css3-counter-styles-010.html": [ + "daed9f4151f0a5c12238bfb728842a0bc64833e2", [ + null, [ - "/css/css-contain/reference/contain-body-overflow-001-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-body-overflow-003.html": [ - "d38cf53c2f47fd964b0cfc912eced2ce25e62c8e", - [ - null, + [ + "/css/css-counter-styles/georgian/css3-counter-styles-010-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-011.html": [ + "d09bc3f8bb424fd3556babf63f58ba720c8f8e23", [ + null, [ - "/css/css-contain/reference/contain-body-overflow-001-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-body-overflow-004.html": [ - "5064d00c8b6a8b320182e10f649ce84ba8b4063e", - [ - null, + [ + "/css/css-counter-styles/georgian/css3-counter-styles-011-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-012.html": [ + "df68197a1d060cdce718e19ab952f056696367ef", [ + null, [ - "/css/css-contain/reference/contain-body-overflow-001-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-body-t-o-001.html": [ - "36f70a1df4c87c7ea1556efb96800055238c86a3", - [ - null, + [ + "/css/css-counter-styles/georgian/css3-counter-styles-012-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-014.html": [ + "41fc2b402699ee985843b09f0d193f75f5eef245", [ + null, [ - "/css/css-contain/reference/contain-body-t-o-001-ref.html", - "==" - ] - ], - {} + [ + "/css/css-counter-styles/georgian/css3-counter-styles-014-ref.html", + "==" + ] + ], + {} + ] ] - ], - "contain-body-t-o-002.html": [ - "47d3f480d1018f979dc4c238979e4181e668b00f", - [ - null, + }, + "gujarati": { + "css3-counter-styles-122.html": [ + "2e9bc5035622ac441e76d0709084451ceac72326", [ + null, [ - "/css/css-contain/reference/contain-body-t-o-001-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-body-t-o-003.html": [ - "2323d07838f18bb260e4aff465f1c726f55e31ab", - [ - null, + [ + "/css/css-counter-styles/gujarati/css3-counter-styles-122-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-123.html": [ + "97f7e9439616afe399a8bf40672aa3534d3c0cb1", [ + null, [ - "/css/css-contain/reference/contain-body-t-o-001-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-body-t-o-004.html": [ - "3eea6b8d322fbc7966ad3116b90f53ee9689120e", - [ - null, + [ + "/css/css-counter-styles/gujarati/css3-counter-styles-123-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-124.html": [ + "e9abca06f174fb9226e5e465f18876bc484f0a65", [ + null, [ - "/css/css-contain/reference/contain-body-t-o-001-ref.html", - "==" - ] - ], - {} + [ + "/css/css-counter-styles/gujarati/css3-counter-styles-124-ref.html", + "==" + ] + ], + {} + ] ] - ], - "contain-body-w-m-001.html": [ - "b37e96115c77dd5041980baa4880981b02ec2097", - [ - null, + }, + "gurmukhi": { + "css3-counter-styles-125.html": [ + "1c1e882eb5393e3dfbde4dd8e2fb0b1f60631c72", [ + null, [ - "/css/css-contain/reference/contain-body-w-m-001-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-body-w-m-002.html": [ - "15040f0399362cc27b21625f77ab074d74331444", - [ - null, + [ + "/css/css-counter-styles/gurmukhi/css3-counter-styles-125-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-126.html": [ + "a113b31b6b47abbbc78fe0d136813ccb5768f68e", [ + null, [ - "/css/css-contain/reference/contain-body-w-m-001-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-body-w-m-003.html": [ - "87b1d63466bebf09c5f0a86c4e9de3400921dd4d", - [ - null, + [ + "/css/css-counter-styles/gurmukhi/css3-counter-styles-126-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-127.html": [ + "9c58d36e0e14b82ed1a180168124cb85bd949544", [ + null, [ - "/css/css-contain/reference/contain-body-w-m-001-ref.html", - "==" - ] - ], - {} + [ + "/css/css-counter-styles/gurmukhi/css3-counter-styles-127-ref.html", + "==" + ] + ], + {} + ] ] - ], - "contain-body-w-m-004.html": [ - "736d4a58aae6bcd5eec17952dbca7d4690aaa428", - [ - null, + }, + "hebrew": { + "counter-hebrew-nested.html": [ + "bbbdf6431353d91be751d4adca8f15aaf373ce29", [ + null, [ - "/css/css-contain/reference/contain-body-w-m-001-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-content-001.html": [ - "9d8e1e5c099c868bb1b1c40a1917162ca598a351", - [ - null, + [ + "/css/css-counter-styles/hebrew/counter-hebrew-nested-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-015.html": [ + "4bebc4e9ebb2ec985bcb8c3d21643b67262b3ec5", [ + null, [ - "/css/css-contain/reference/contain-layout-ifc-022-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-content-002.html": [ - "7468df7cde83ecd055d47b90d3b99161f3b994f8", - [ - null, + [ + "/css/css-counter-styles/hebrew/css3-counter-styles-015-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-016.html": [ + "77a7ac2cec151df8b0ea3b1f985309546fc4206d", [ + null, [ - "/css/css-contain/reference/contain-paint-ifc-011-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-content-003.html": [ - "24d877740f2d4665f87a046130c9e46a37694613", - [ - null, + [ + "/css/css-counter-styles/hebrew/css3-counter-styles-016-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-016a.html": [ + "3eb14594bf3e320fe7178d0289e085ad3b068a42", [ + null, [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "contain-content-004.html": [ - "5276b4d08c220045ccf6a6be828e1ae284d82376", - [ - null, + [ + "/css/css-counter-styles/hebrew/css3-counter-styles-016a-ref.html", + "==" + ], + [ + "/css/css-counter-styles/hebrew/css3-counter-styles-016a-alt-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-017.html": [ + "789fdf7f2383f67c594215abc4a04350f23eab5d", [ + null, [ - "/css/css-contain/reference/contain-layout-cell-001-ref.html", - "==" - ] - ], - {} + [ + "/css/css-counter-styles/hebrew/css3-counter-styles-017-ref.html", + "==" + ] + ], + {} + ] ] - ], - "contain-content-011.html": [ - "8bed8c4d2283bc5d6eef5e613754cfe52358c0ce", - [ - null, + }, + "hiragana": { + "css3-counter-styles-030.html": [ + "37bc6efe4c010ea38a1524d3ca90b1e0ef60840e", [ + null, [ - "/css/css-contain/reference/contain-content-011-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-html-bg-001.html": [ - "6d77ce081eb32c9d482083142cc3d15bf6ef7c72", - [ - null, + [ + "/css/css-counter-styles/hiragana/css3-counter-styles-030-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-031.html": [ + "194517b774dfe43c7f3c0f35c6c3b3e603633b48", [ + null, [ - "/css/css-contain/reference/contain-body-bg-001-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-html-bg-002.html": [ - "57324052b204e42b092808ebb59a8a914fc1c13d", - [ - null, + [ + "/css/css-counter-styles/hiragana/css3-counter-styles-031-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-032.html": [ + "929eaf9ec6498b9981d7a1d8e2fd077f237f780b", [ + null, [ - "/css/css-contain/reference/contain-body-bg-001-ref.html", - "==" - ] - ], - {} + [ + "/css/css-counter-styles/hiragana/css3-counter-styles-032-ref.html", + "==" + ] + ], + {} + ] ] - ], - "contain-html-bg-003.html": [ - "f1115ceb2f5c08d3b652ebe57a65c2a8eedc676f", - [ - null, + }, + "hiragana-iroha": { + "css3-counter-styles-033.html": [ + "7011527bd15ffe933e93a72f2a50a7db91975a7a", [ + null, [ - "/css/css-contain/reference/contain-body-bg-001-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-html-bg-004.html": [ - "05fa3f820eb94c7e8c63fd8bf561c1d574bc7870", - [ - null, + [ + "/css/css-counter-styles/hiragana-iroha/css3-counter-styles-033-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-034.html": [ + "98a07b43b4793b3147088192f356fc5e1e80f506", [ + null, [ - "/css/css-contain/reference/contain-body-bg-001-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-html-dir-001.html": [ - "c02c2e2765a2027093f0d6bfe92860222f520fbe", - [ - null, + [ + "/css/css-counter-styles/hiragana-iroha/css3-counter-styles-034-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-035.html": [ + "a667031e2b1b4d3c10604757ba1040a1f7821afd", [ + null, [ - "/css/css-contain/reference/contain-body-w-m-001-ref.html", - "==" - ] - ], - {} + [ + "/css/css-counter-styles/hiragana-iroha/css3-counter-styles-035-ref.html", + "==" + ] + ], + {} + ] ] - ], - "contain-html-dir-002.html": [ - "7d23558538d9ecb034806865169469acb1b161a4", - [ - null, + }, + "japanese-formal": { + "counter-japanese-formal.html": [ + "6558514755197c58f2d5d063d363bbe295767288", [ + null, [ - "/css/css-contain/reference/contain-body-w-m-001-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-html-dir-003.html": [ - "125f4b70e3feef9e474049702982987cd484e61e", - [ - null, + [ + "/css/css-counter-styles/japanese-formal/counter-japanese-formal-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-047.html": [ + "0c35c7381d9982f0bc121ba504643a4f99d9f9d0", [ + null, [ - "/css/css-contain/reference/contain-body-w-m-001-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-html-dir-004.html": [ - "af31f64082b20081100513582e51f09c0553806b", - [ - null, + [ + "/css/css-counter-styles/japanese-formal/css3-counter-styles-047-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-048.html": [ + "c8fa76acbe3e461c2a37a6193899023c4a0e20b9", [ + null, [ - "/css/css-contain/reference/contain-body-w-m-001-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-html-overflow-001.html": [ - "736ad1a54dde015f265ca2d80eb0222a04d6ffaf", - [ - null, + [ + "/css/css-counter-styles/japanese-formal/css3-counter-styles-048-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-049.html": [ + "32fd887e1c82c1b03580b5f190aafb8be07213e0", [ + null, [ - "/css/css-contain/reference/contain-body-overflow-001-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-html-overflow-002.html": [ - "2fd0b5e1a35ed5f14feaabb4b7d5944d4b78aa25", - [ - null, + [ + "/css/css-counter-styles/japanese-formal/css3-counter-styles-049-ref.html", + "==" + ], + [ + "/css/css-counter-styles/japanese-formal/css3-counter-styles-049-alt-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-050.html": [ + "f157901cdaa159468a2734573990d2239325621b", [ + null, [ - "/css/css-contain/reference/contain-body-overflow-001-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-html-overflow-003.html": [ - "88ce0918916eab7c443cb0a09f085a3036f01db7", - [ - null, + [ + "/css/css-counter-styles/japanese-formal/css3-counter-styles-050-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-051.html": [ + "baa3cf9792b5f6da13eb8883a72f9e0dad1c2c07", [ + null, [ - "/css/css-contain/reference/contain-body-overflow-001-ref.html", - "==" - ] - ], - {} + [ + "/css/css-counter-styles/japanese-formal/css3-counter-styles-051-ref.html", + "==" + ] + ], + {} + ] ] - ], - "contain-html-overflow-004.html": [ - "15339ed3dc004b47fd8c4b85ce9d6b6d84ffdbb2", - [ - null, + }, + "japanese-informal": { + "counter-japanese-informal.html": [ + "5263e99944181db28872558950008124175142b8", [ + null, [ - "/css/css-contain/reference/contain-body-overflow-001-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-html-t-o-001.html": [ - "d74fa252660f0b870435b1b7769897121a6e5f76", - [ - null, + [ + "/css/css-counter-styles/japanese-informal/counter-japanese-informal-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-042.html": [ + "5e30b3fd65cfaa6cac0a690083a967d2c1c444c5", [ + null, [ - "/css/css-contain/reference/contain-body-t-o-001-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-html-t-o-002.html": [ - "9ee3837bd2ad715d2f16820881d89514c134d5dd", - [ - null, + [ + "/css/css-counter-styles/japanese-informal/css3-counter-styles-042-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-043.html": [ + "e848de7947843ced6a035cc16aee4d3469633ff7", [ + null, [ - "/css/css-contain/reference/contain-body-t-o-001-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-html-t-o-003.html": [ - "87e70d505a6fab6ad6d92863c05abec3ff078136", - [ - null, + [ + "/css/css-counter-styles/japanese-informal/css3-counter-styles-043-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-044.html": [ + "abb002b3feb9b2c9059ca5bcbdef8b845f0deb3c", [ + null, [ - "/css/css-contain/reference/contain-body-t-o-001-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-html-t-o-004.html": [ - "5f7ea2ef18733b807f1fb4ff30166bdbaa0e4189", - [ - null, + [ + "/css/css-counter-styles/japanese-informal/css3-counter-styles-044-ref.html", + "==" + ], + [ + "/css/css-counter-styles/japanese-informal/css3-counter-styles-044-alt-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-045.html": [ + "889294e7ff14d3755c4c141690fd3f3145c3b66e", [ + null, [ - "/css/css-contain/reference/contain-body-t-o-001-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-html-w-m-001.html": [ - "e8c0a8222d0993a08cbf8c8be6bb150cbd86243b", - [ - null, + [ + "/css/css-counter-styles/japanese-informal/css3-counter-styles-045-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-046.html": [ + "d4502311203dfdf6a90d9c457264893adfb15f2f", [ + null, [ - "/css/css-contain/reference/contain-body-w-m-001-ref.html", - "==" - ] - ], - {} + [ + "/css/css-counter-styles/japanese-informal/css3-counter-styles-046-ref.html", + "==" + ] + ], + {} + ] ] - ], - "contain-html-w-m-002.html": [ - "f4001a75c02b0f5b07e574c6efb8fd2bbf48efd8", - [ - null, + }, + "kannada": { + "css3-counter-styles-128.html": [ + "e6183794c0316f1d7bff8bccc4699a2408cfe2d5", [ + null, [ - "/css/css-contain/reference/contain-body-w-m-001-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-html-w-m-003.html": [ - "c56d42ed7a40bf993cb4a5309692641aeeced600", - [ - null, + [ + "/css/css-counter-styles/kannada/css3-counter-styles-128-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-129.html": [ + "902911542b0e3f91ef31433ab6d3c2c6ee151ab2", [ + null, [ - "/css/css-contain/reference/contain-body-w-m-001-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-html-w-m-004.html": [ - "09a32ba50578075f4d41c3007bf38c49a43b5a3f", - [ - null, + [ + "/css/css-counter-styles/kannada/css3-counter-styles-129-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-130.html": [ + "8bd508c4cacd2fe76578a400f73e94d6abd0e69c", [ + null, [ - "/css/css-contain/reference/contain-body-w-m-001-ref.html", - "==" - ] - ], - {} + [ + "/css/css-counter-styles/kannada/css3-counter-styles-130-ref.html", + "==" + ] + ], + {} + ] ] - ], - "contain-inline-size-bfc-floats-001.html": [ - "0600959756851ac021e3d0ee791becf35fc4604f", - [ - null, + }, + "katakana": { + "css3-counter-styles-036.html": [ + "0d955835f1cd60ec63cb491bdaac2293e2e9733f", [ + null, [ - "/css/css-contain/contain-inline-size-bfc-floats-001-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-inline-size-bfc-floats-002.html": [ - "691f47c5aa7305859eb4258e9bad991bb171f9bc", - [ - null, + [ + "/css/css-counter-styles/katakana/css3-counter-styles-036-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-037.html": [ + "3b6523e4c72937797e4c7df8e902343942a661b0", [ + null, [ - "/css/css-contain/contain-inline-size-bfc-floats-002-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-inline-size-fieldset.html": [ - "036bffe802a24a77e4ae7768fddb456fbc2848d4", - [ - null, + [ + "/css/css-counter-styles/katakana/css3-counter-styles-037-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-038.html": [ + "a5736b6c29576b49486b1a652bc400d2cd64bca5", [ + null, [ - "/css/css-contain/contain-inline-size-fieldset-ref.html", - "==" - ] - ], - {} + [ + "/css/css-counter-styles/katakana/css3-counter-styles-038-ref.html", + "==" + ] + ], + {} + ] ] - ], - "contain-inline-size-flex.html": [ - "7517ffaca2d1018e6942867f4a502517a8066bf8", - [ - null, + }, + "katakana-iroha": { + "css3-counter-styles-039.html": [ + "04c1a96d2ab534ecdf9b7eefd87ee1e2c41698f4", [ + null, [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "contain-inline-size-flexitem.html": [ - "12f60fadac02aea7a0c23cd96d294b7be13bba14", - [ - null, + [ + "/css/css-counter-styles/katakana-iroha/css3-counter-styles-039-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-040.html": [ + "081e0afc3dee7ec61182979c217c5029d47c140e", [ + null, [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "contain-inline-size-grid-stretches-auto-rows.html": [ - "c168950929d58c2c7b0b4c4228f2185f8a7b4e88", - [ - "css/css-contain/contain-inline-size-grid-stretches-auto-rows.html", + [ + "/css/css-counter-styles/katakana-iroha/css3-counter-styles-040-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-041.html": [ + "3eda2310ca010bd714a1f8c158695ce3dc532c48", [ + null, [ - "/css/reference/ref-filled-green-100px-square-only.html", - "==" - ] - ], - {} + [ + "/css/css-counter-styles/katakana-iroha/css3-counter-styles-041-ref.html", + "==" + ] + ], + {} + ] ] - ], - "contain-inline-size-grid.html": [ - "5cd8bfc96e34e36ff1a340e9e09963df9b22ec89", - [ - null, + }, + "khmer": { + "css3-counter-styles-161.html": [ + "b486cd0738f8178105008f475926f9c1adc301c0", [ + null, [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "contain-inline-size-intrinsic.html": [ - "5d59b6b8d99ddec8212e831d8e7cebc4c69b385a", - [ - null, + [ + "/css/css-counter-styles/khmer/css3-counter-styles-161-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-162.html": [ + "bf60c05ff1f670aec12846b3353b9224b8fbf257", [ + null, [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "contain-inline-size-legend.html": [ - "13c8d7d7f469e000952283dbd1cad4356eb491fc", - [ - null, + [ + "/css/css-counter-styles/khmer/css3-counter-styles-162-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-163.html": [ + "dcc1a138507d63b696d0ff41806f588cf5fc2474", [ + null, [ - "/css/css-contain/contain-inline-size-legend-ref.html", - "==" - ] - ], - {} + [ + "/css/css-counter-styles/khmer/css3-counter-styles-163-ref.html", + "==" + ] + ], + {} + ] ] - ], - "contain-inline-size-multicol.html": [ - "43510677f5d82362856ee2aeb069c5e25e4c6714", - [ - null, + }, + "korean-hangul-formal": { + "counter-korean-hangul-formal.html": [ + "468e0b87b15f9796edbbabd17dc915110ae71ed8", [ + null, [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "contain-inline-size-regular-container.html": [ - "bb87a9354c11aef317e08b7429552b32a16069f6", - [ - null, + [ + "/css/css-counter-styles/korean-hangul-formal/counter-korean-hangul-formal-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-052.html": [ + "ff557273b9aed64fe7fcbd34118a19d96b534fc8", [ + null, [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "contain-inline-size-removed.html": [ - "6e82f8c760edb5a8bc61e5b88517443069618519", - [ - null, + [ + "/css/css-counter-styles/korean-hangul-formal/css3-counter-styles-052-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-053.html": [ + "7d2ebdc88a903d485df56aefe538fe2ca7be59a7", [ + null, [ - "/css/css-contain/reference/pass_if_pass_below_clipped.html", - "==" - ] - ], - {} - ] - ], - "contain-inline-size-table.html": [ - "de726caa907ea4997d7f128889c65517c5d02365", - [ - null, + [ + "/css/css-counter-styles/korean-hangul-formal/css3-counter-styles-053-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-054.html": [ + "e7a0631bc692af59bd572d44c41c8b640ee28e51", [ + null, [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "contain-inline-size-vertical-rl-.html": [ - "357ea4fcafac5e1f9cc48a37f35d4de594ffb83f", - [ - null, + [ + "/css/css-counter-styles/korean-hangul-formal/css3-counter-styles-054-ref.html", + "==" + ], + [ + "/css/css-counter-styles/korean-hangul-formal/css3-counter-styles-054-alt-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-055.html": [ + "029c8a6f97139dd2dcf81ff0ed8dbc8bd9d61bd9", [ + null, [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "contain-layout-001.html": [ - "85b959da2b9a151c13be3dc83485646341752915", - [ - null, + [ + "/css/css-counter-styles/korean-hangul-formal/css3-counter-styles-055-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-056.html": [ + "d86af1d6bb33d170abf1a833ae22d6846a413781", [ + null, [ - "/css/reference/pass_if_pass_below.html", - "==" - ] - ], - {} + [ + "/css/css-counter-styles/korean-hangul-formal/css3-counter-styles-056-ref.html", + "==" + ] + ], + {} + ] ] - ], - "contain-layout-002.html": [ - "c243c8eb29fb894bc8397053cf17a889cc16838c", - [ - null, + }, + "korean-hanja-formal": { + "counter-korean-hanja-formal.html": [ + "c6fb66a733dce05f1d743b332cd40f54da588519", [ + null, [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "contain-layout-003.html": [ - "bc672d9ba1a3a645147d0acc0d61c73c2c1b8956", - [ - null, + [ + "/css/css-counter-styles/korean-hanja-formal/counter-korean-hanja-formal-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-062.html": [ + "9be2ef33939a1f1a08462a6452c7886b46b9ad0b", [ + null, [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "contain-layout-004.html": [ - "08d379d996e71fb77f2290bade118fef11e465a3", - [ - null, + [ + "/css/css-counter-styles/korean-hanja-formal/css3-counter-styles-062-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-063.html": [ + "b58660d699003b60426463e82dd8cc06f45b7a28", [ + null, [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "contain-layout-005.html": [ - "72256d43487ac4ad3d481e178d2077a82102ebbf", - [ - null, + [ + "/css/css-counter-styles/korean-hanja-formal/css3-counter-styles-063-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-064.html": [ + "2dc899ff37c2179873614e7f31ca0fb5de02ba64", [ + null, [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "contain-layout-006.html": [ - "57dc518a65b3773f63ab1b3d91eedb4f58ddaa57", - [ - null, + [ + "/css/css-counter-styles/korean-hanja-formal/css3-counter-styles-064-ref.html", + "==" + ], + [ + "/css/css-counter-styles/korean-hanja-formal/css3-counter-styles-064-alt-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-065.html": [ + "b094d644b82ca8d8665d6a61623e06d475920c56", [ + null, [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "contain-layout-007.html": [ - "39be5fe7fd06edc63704ee2e10c20dee14d01738", - [ - null, + [ + "/css/css-counter-styles/korean-hanja-formal/css3-counter-styles-065-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-066.html": [ + "2825c62d0a7c6c4d558c399342ecaa7212f92939", [ + null, [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} + [ + "/css/css-counter-styles/korean-hanja-formal/css3-counter-styles-066-ref.html", + "==" + ] + ], + {} + ] ] - ], - "contain-layout-009.html": [ - "39ef1271af19b44d968934937a02fea92df0a307", - [ - null, + }, + "korean-hanja-informal": { + "counter-korean-hanja-informal.html": [ + "dc16c886dc7d0a3017c123beb410bb9fac7a3498", [ + null, [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "contain-layout-010.html": [ - "6e4dde8aeb1ecabb8fda646fab16fae13c07aa7d", - [ - null, + [ + "/css/css-counter-styles/korean-hanja-informal/counter-korean-hanja-informal-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-057.html": [ + "d366198b9a8258dc505c5ccae89b5cfe1df123df", [ + null, [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "contain-layout-011.html": [ - "99021b48526a7a903288c63a876f81c40903dedf", - [ - null, + [ + "/css/css-counter-styles/korean-hanja-informal/css3-counter-styles-057-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-058.html": [ + "fcac1ad3eb243adfb2b45acc603c9c1729c7c42b", [ + null, [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "contain-layout-012.html": [ - "9a2534ee69b6cf9a0b7538bca92b72a8eb33b36e", - [ - null, + [ + "/css/css-counter-styles/korean-hanja-informal/css3-counter-styles-058-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-059.html": [ + "1982ecd27b770737fed3b83e9d22931653aa5cf4", [ + null, [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "contain-layout-013.html": [ - "08e1e4d9ec708698d3ffef9947045076cdbc542b", - [ - null, + [ + "/css/css-counter-styles/korean-hanja-informal/css3-counter-styles-059-ref.html", + "==" + ], + [ + "/css/css-counter-styles/korean-hanja-informal/css3-counter-styles-059-alt-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-060.html": [ + "8688ec98b24968363df76bca4d6a8c24243ae26a", [ + null, [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "contain-layout-014.html": [ - "bf0e47eee10ee8613a2a36f6622f7e83737f7875", - [ - null, + [ + "/css/css-counter-styles/korean-hanja-informal/css3-counter-styles-060-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-061.html": [ + "b223a837edb0f40f5a89e898f8929a4cf4f684d1", [ + null, [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} + [ + "/css/css-counter-styles/korean-hanja-informal/css3-counter-styles-061-ref.html", + "==" + ] + ], + {} + ] ] - ], - "contain-layout-016.html": [ - "e8fdede2774447062fee4200ae698ba5d2706635", - [ - null, + }, + "lao": { + "css3-counter-styles-131.html": [ + "a06be2446a72574868ce1f598557e7b580dc7e34", [ + null, [ - "/css/reference/pass_if_pass_below.html", - "==" - ] - ], - {} - ] - ], - "contain-layout-017.html": [ - "fd74c5a5f4aa81b14da7aaa3e6da927e30a2e9cb", - [ - null, + [ + "/css/css-counter-styles/lao/css3-counter-styles-131-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-132.html": [ + "d8f24d6babbd18c6d39a470ed935b6852ead78f5", [ + null, [ - "/css/reference/nothing.html", - "==" - ] - ], - {} - ] - ], - "contain-layout-018.html": [ - "5d7ebc0195cbbb7bc303784ab05296885c323f40", - [ - null, + [ + "/css/css-counter-styles/lao/css3-counter-styles-132-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-133.html": [ + "41bf1fb8614b3242ca3e8b69cda2b4c8529b9275", [ + null, [ - "/css/reference/nothing.html", - "==" - ] - ], - {} + [ + "/css/css-counter-styles/lao/css3-counter-styles-133-ref.html", + "==" + ] + ], + {} + ] ] - ], - "contain-layout-019.html": [ - "5d112e26f9f3a38cb821c2668d391cbe2748726b", - [ - null, + }, + "lower-armenian": { + "css3-counter-styles-111.html": [ + "075d8cc98f8dcf09f46289527ae624473f518043", [ + null, [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "contain-layout-020.html": [ - "655d4431d8951e96192b704f025751854118148b", - [ - null, + [ + "/css/css-counter-styles/lower-armenian/css3-counter-styles-111-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-112.html": [ + "4f078c37d3bfb0fc4cebcfa80c28167111f5fd8e", [ + null, [ - "/css/css-contain/reference/contain-layout-020-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-layout-021.html": [ - "fcb81308284a238beece9816ac4e5755d22af544", - [ - null, + [ + "/css/css-counter-styles/lower-armenian/css3-counter-styles-112-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-114.html": [ + "b6a1888fb11193d6d6e1713bda43f7b65aa9c6d5", [ + null, [ - "/css/css-contain/reference/contain-layout-021-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-layout-baseline-001.html": [ - "cf8e94faa48eb3cfca6db0264b6f1a10e18b0e1d", - [ - null, + [ + "/css/css-counter-styles/lower-armenian/css3-counter-styles-114-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-115.html": [ + "0d8cafb810d8b0b20b992f9e55d88d7387227c64", [ + null, [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} + [ + "/css/css-counter-styles/lower-armenian/css3-counter-styles-115-ref.html", + "==" + ] + ], + {} + ] ] - ], - "contain-layout-baseline-002.html": [ - "9b86afa9ae9ae391fdc24b74b9cdcce39df88da1", - [ - null, + }, + "lower-greek": { + "css3-counter-styles-027.html": [ + "d76e28f64fc0c23824ac12a0406ae8006fadb709", [ + null, [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "contain-layout-baseline-003.html": [ - "d4f8c738787c6a4f1b6e096c5dcd599604281fc9", - [ - null, + [ + "/css/css-counter-styles/lower-greek/css3-counter-styles-027-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-028.html": [ + "3ae4ad59b3b976c2856df582dc661c001c1f8a7e", [ + null, [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "contain-layout-baseline-004.html": [ - "11e81b270bc6a99ddc610e046ab2b1a19e635a79", - [ - null, + [ + "/css/css-counter-styles/lower-greek/css3-counter-styles-028-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-029.html": [ + "ac4caaf49d3d833ee1d0060b34e314ee0347ac64", [ + null, [ - "/css/css-contain/reference/contain-layout-baseline-004-ref.html", - "==" - ] - ], - {} + [ + "/css/css-counter-styles/lower-greek/css3-counter-styles-029-ref.html", + "==" + ] + ], + {} + ] ] - ], - "contain-layout-baseline-005.html": [ - "0971402e6b9f3afcf3224cd3e95d195606e0c698", - [ - null, + }, + "lower-roman": { + "css3-counter-styles-019.html": [ + "86bae7acbbc0b2fc24baeec45779ca9da5315b23", [ + null, [ - "/css/css-contain/reference/contain-layout-baseline-005-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-layout-breaks-001.html": [ - "a85cf2c6c8e00f1d21fa5a63da81eff8148f3d71", - [ - null, + [ + "/css/css-counter-styles/lower-roman/css3-counter-styles-019-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-020.html": [ + "db434a4177b0057d06c5e61392475f31a5941f61", [ + null, [ - "/css/css-contain/reference/contain-style-breaks-004-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-layout-breaks-002.html": [ - "7b5c17ac55418c06b5e7543b441095a7f00c08a5", - [ - null, + [ + "/css/css-counter-styles/lower-roman/css3-counter-styles-020-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-020a.html": [ + "94482bc14cdca3d742da8fbed37890d23d612be3", [ + null, [ - "/css/css-contain/reference/contain-layout-breaks-002-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-layout-button-001.html": [ - "b53b28879e2ce884b61f741032afbf486afb3bf5", - [ - null, + [ + "/css/css-counter-styles/lower-roman/css3-counter-styles-020a-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-020b.html": [ + "34025cc92f293144bc74fd6bad0af09e3114b0f0", [ + null, [ - "/css/css-contain/reference/contain-layout-button-001-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-layout-cell-001.html": [ - "66710060a7bf0bef0dd8e7a631761ef3e2e9e2cd", - [ - null, + [ + "/css/css-counter-styles/lower-roman/css3-counter-styles-020b-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-021.html": [ + "30c4c9981dd59b308a0b4471e0379924fe9bc0d4", [ + null, [ - "/css/css-contain/reference/contain-layout-cell-001-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-layout-cell-002.html": [ - "2c10eb21e0c5f7d54630c22a0505d22559b6ad42", - [ - null, + [ + "/css/css-counter-styles/lower-roman/css3-counter-styles-021-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-022.html": [ + "6bd53de981c281466ac213bb8f5d318213699f06", [ + null, [ - "/css/css-contain/reference/contain-layout-cell-001-ref.html", - "==" - ] - ], - {} + [ + "/css/css-counter-styles/lower-roman/css3-counter-styles-022-ref.html", + "==" + ] + ], + {} + ] ] - ], - "contain-layout-containing-block-absolute-001.html": [ - "036cf7d8dd6f6de18e5aa4cf9f1df25799b10094", - [ - null, + }, + "malayalam": { + "css3-counter-styles-134.html": [ + "9698be73e6d821a8f67b26a4ee2ee32bf73b5752", [ + null, [ - "/css/css-contain/contain-paint-containing-block-absolute-001-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-layout-containing-block-fixed-001.html": [ - "979d71d406d293a3a0a507bf4a4c6a07826cbef7", - [ - null, + [ + "/css/css-counter-styles/malayalam/css3-counter-styles-134-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-135.html": [ + "79a4bc092a43830017bc26ba336d2c1e6ce41af4", [ + null, [ - "/css/css-contain/contain-paint-containing-block-fixed-001-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-layout-flexbox-001.html": [ - "2b206edb57f46f3baa9dcfbcc24591b852cf8697", - [ - null, + [ + "/css/css-counter-styles/malayalam/css3-counter-styles-135-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-136.html": [ + "b79af7b2997ab624075a2efe7409c54e577b4bf4", [ + null, [ - "/css/css-contain/reference/contain-layout-flexbox-001-ref.html", - "==" - ] - ], - {} + [ + "/css/css-counter-styles/malayalam/css3-counter-styles-136-ref.html", + "==" + ] + ], + {} + ] ] - ], - "contain-layout-formatting-context-float-001.html": [ - "3486f6399985935b224b6d32df37273794a8cb0f", - [ - null, + }, + "mongolian": { + "css3-counter-styles-137.html": [ + "109250c300675259cabe6a2b1fa86ea5df2062a8", [ + null, [ - "/css/css-contain/contain-paint-formatting-context-float-001-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-layout-formatting-context-margin-001.html": [ - "3b8f9caa7519d1afe798adeb4e64b58222592225", - [ - null, + [ + "/css/css-counter-styles/mongolian/css3-counter-styles-137-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-138.html": [ + "10b344e44b6880b6fd322d7f512411f6e1989dc2", [ + null, [ - "/css/css-contain/contain-layout-formatting-context-margin-001-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-layout-grid-001.html": [ - "a6bcc4dbc2adda58602281eac5c2c0b2c0a9de61", - [ - null, + [ + "/css/css-counter-styles/mongolian/css3-counter-styles-138-ref.html", + "==" + ] + ], + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 255 + ], + [ + 0, + 240 + ] + ] + ] + ] + } + ] + ], + "css3-counter-styles-139.html": [ + "923142ac070c3f82beff520cbc4e5166ed21b647", [ + null, [ - "/css/css-contain/reference/contain-layout-grid-001-ref.html", - "==" - ] - ], - {} + [ + "/css/css-counter-styles/mongolian/css3-counter-styles-139-ref.html", + "==" + ] + ], + {} + ] ] - ], - "contain-layout-ifc-022.html": [ - "1b66fe347e1f58b3f21979fbd44f873955c2e5a9", - [ - null, + }, + "myanmar": { + "css3-counter-styles-140.html": [ + "45441745fb7389e52500eb8d931fef0465da5420", [ + null, [ - "/css/css-contain/reference/contain-layout-ifc-022-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-layout-ignored-cases-ib-split-001.html": [ - "d9f976deb8ca604315f105a339de9eac7ee48741", - [ - null, + [ + "/css/css-counter-styles/myanmar/css3-counter-styles-140-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-141.html": [ + "30e8f1a94db323ae1f4efeba118b4b8bf301d992", [ + null, [ - "/css/css-contain/contain-layout-ignored-cases-ib-split-001-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-layout-ignored-cases-no-principal-box-001.html": [ - "bd2f4cb8178054e0aab0b208610e8a2ba97b1141", - [ - null, + [ + "/css/css-counter-styles/myanmar/css3-counter-styles-141-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-142.html": [ + "b279441869f26d7300763faa3c760ae7a24a4782", [ + null, [ - "/css/css-contain/contain-paint-ignored-cases-no-principal-box-001-ref.html", - "==" - ] - ], - {} + [ + "/css/css-counter-styles/myanmar/css3-counter-styles-142-ref.html", + "==" + ] + ], + {} + ] ] - ], - "contain-layout-ignored-cases-no-principal-box-002.html": [ - "de2edfb58f86fea5a8a0367b595dc471b568bc85", - [ - null, + }, + "oriya": { + "css3-counter-styles-143.html": [ + "c66805bdf1bee4b9176504e7cd73b2a6a2c53953", [ + null, [ - "/css/css-contain/contain-layout-ignored-cases-no-principal-box-002-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-layout-ignored-cases-no-principal-box-003.html": [ - "d40a02115665782b81d14e6c3d5e5b0c5f38690a", - [ - null, + [ + "/css/css-counter-styles/oriya/css3-counter-styles-143-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-144.html": [ + "28b79d505fda53e91087652705fe67eb01f84e60", [ + null, [ - "/css/css-contain/contain-layout-ignored-cases-no-principal-box-003-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-layout-independent-formatting-context-001.html": [ - "94c88bc49cb123e98b114136b7836cd6f24c9574", - [ - null, + [ + "/css/css-counter-styles/oriya/css3-counter-styles-144-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-145.html": [ + "07883894141743f097e104646df5735f4283351d", [ + null, [ - "/css/css-contain/reference/contain-paint-independent-formatting-context-001-ref.html", - "==" - ] - ], - {} + [ + "/css/css-counter-styles/oriya/css3-counter-styles-145-ref.html", + "==" + ] + ], + {} + ] ] - ], - "contain-layout-independent-formatting-context-002.html": [ - "8491e3d28f90f09beb4121eed411d1a3e122284b", - [ - null, + }, + "persian": { + "css3-counter-styles-104.html": [ + "b79a35d336dd344ee7db85b973ac4e8d9e95058c", [ + null, [ - "/css/css-contain/reference/contain-paint-independent-formatting-context-001-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-layout-independent-formatting-context-003.html": [ - "a10afd3cdee90b988e0c3d25b533d3c1b4e8bb06", - [ - null, + [ + "/css/css-counter-styles/persian/css3-counter-styles-104-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-105.html": [ + "db0eb25cc215365e012c4a2ee0dc20cbeed271f3", [ + null, [ - "/css/css-contain/reference/contain-paint-independent-formatting-context-003-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-layout-ink-overflow-013.html": [ - "ca11f420877490d38a7df4b172640e5b4d0e92cb", - [ - null, + [ + "/css/css-counter-styles/persian/css3-counter-styles-105-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-106.html": [ + "9a93e2ef63ea90c56320bed7309daffe713fb1d0", [ + null, [ - "/css/css-contain/reference/contain-layout-ink-overflow-013-ref.html", - "==" - ] - ], - {} + [ + "/css/css-counter-styles/persian/css3-counter-styles-106-ref.html", + "==" + ] + ], + {} + ] ] - ], - "contain-layout-ink-overflow-014.html": [ - "cbb752d625eca13df978aa81908fbf32013686d9", - [ - null, + }, + "simp-chinese-formal": { + "counter-simp-chinese-formal.html": [ + "29bf9520a0c84a8709e40f4623e67bc0e488125d", [ + null, [ - "/css/css-contain/reference/contain-layout-ink-overflow-014-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-layout-ink-overflow-015.html": [ - "0eaaf9ab436ee4cf18c451ca429683cbbe09d76b", - [ - null, + [ + "/css/css-counter-styles/simp-chinese-formal/counter-simp-chinese-formal-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-076.html": [ + "b62563409786f6935b8a952da9e558db95586ee6", [ + null, [ - "/css/css-contain/reference/contain-layout-ink-overflow-015-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-layout-ink-overflow-016.html": [ - "e4ade9d7a46ff8d4c3944792024b34c3634e0d29", - [ - null, + [ + "/css/css-counter-styles/simp-chinese-formal/css3-counter-styles-076-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-077.html": [ + "7e34e2e89027dc64de188f97828b738170533618", [ + null, [ - "/css/css-contain/reference/contain-layout-ink-overflow-015-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-layout-ink-overflow-017.html": [ - "d6b6f83b3a5f2980b599a0b4ef9a41dd345c52ce", - [ - null, + [ + "/css/css-counter-styles/simp-chinese-formal/css3-counter-styles-077-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-078.html": [ + "d52e018180cf72b233886d09248ef0635265cccc", [ + null, [ - "/css/css-contain/reference/contain-layout-ink-overflow-014-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-layout-ink-overflow-018.html": [ - "bf00128bbb1728d46e29c4a756f8663def956cac", - [ - null, + [ + "/css/css-counter-styles/simp-chinese-formal/css3-counter-styles-078-ref.html", + "==" + ], + [ + "/css/css-counter-styles/simp-chinese-formal/css3-counter-styles-078-alt-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-079.html": [ + "284412d1ad3acd819fc66cb42aaa45e0e259421a", [ + null, [ - "/css/css-contain/reference/contain-layout-ink-overflow-015-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-layout-ink-overflow-019.html": [ - "d4909aa70f597b31ca0c13a7c63ce3a810d44ccc", - [ - null, + [ + "/css/css-counter-styles/simp-chinese-formal/css3-counter-styles-079-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-080.html": [ + "f838522566989f0f359c83b1768dcbbacb522306", [ + null, [ - "/css/css-contain/reference/contain-layout-ink-overflow-019-ref.html", - "==" - ] - ], - {} + [ + "/css/css-counter-styles/simp-chinese-formal/css3-counter-styles-080-ref.html", + "==" + ] + ], + {} + ] ] - ], - "contain-layout-ink-overflow-020.html": [ - "2ed9062eb462e5abe26b203171fbe38b59fb87cf", - [ - null, + }, + "simp-chinese-informal": { + "counter-simp-chinese-informal.html": [ + "2cf2984972fc5fdd71405c5042a77651ef68a4f8", [ + null, [ - "/css/css-contain/reference/contain-layout-ink-overflow-020-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-layout-overflow-001.html": [ - "5bf984e2bf12263526165048c4aeb0e9236c5bbb", - [ - null, + [ + "/css/css-counter-styles/simp-chinese-informal/counter-simp-chinese-informal-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-071.html": [ + "8daf67c76a4780b594e96705fa506df3f1eaefc9", [ + null, [ - "/css/css-contain/contain-layout-overflow-001-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-layout-overflow-002.html": [ - "4929dc5d33e760503c9a7d98d6adbafa3f07637a", - [ - null, + [ + "/css/css-counter-styles/simp-chinese-informal/css3-counter-styles-071-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-072.html": [ + "cfb05badfcf8a7763ab92817ffc4ffc4731c711c", [ + null, [ - "/css/css-contain/contain-layout-overflow-002-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-layout-size-003.html": [ - "50b5f0b65cd2c7ef04bd14507432dc35fdc915c4", - [ - null, + [ + "/css/css-counter-styles/simp-chinese-informal/css3-counter-styles-072-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-073.html": [ + "15a7314044a494bb354c352a2991a209c7e6b222", [ + null, [ - "/css/css-contain/reference/contain-layout-size-003-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-layout-stacking-context-001.html": [ - "4ec3bcee6fdf7d46f076ddf460c8081d9b19e8ee", - [ - null, + [ + "/css/css-counter-styles/simp-chinese-informal/css3-counter-styles-073-ref.html", + "==" + ], + [ + "/css/css-counter-styles/simp-chinese-informal/css3-counter-styles-073-alt-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-074.html": [ + "4dd91d03fa8e56a116289f8637b1d22c401db20f", [ + null, [ - "/css/css-contain/contain-paint-stacking-context-001-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-layout-suppress-baseline-001.html": [ - "b023cfdf96d64f8c374709a992ca2343d56133db", - [ - null, + [ + "/css/css-counter-styles/simp-chinese-informal/css3-counter-styles-074-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-075.html": [ + "8d7450cd134860880369fb7575f4aa3f62c6c479", [ + null, [ - "/css/css-contain/contain-layout-suppress-baseline-001-ref.html", - "==" - ] - ], - {} + [ + "/css/css-counter-styles/simp-chinese-informal/css3-counter-styles-075-ref.html", + "==" + ] + ], + {} + ] ] - ], - "contain-layout-suppress-baseline-002.html": [ - "a370386edeea604609831bfdf1df7757d370f747", - [ - null, + }, + "tamil": { + "css3-counter-styles-146.html": [ + "74fbb919850d91fc410c806bc5216fa6a3ab145a", [ + null, [ - "/css/css-contain/contain-layout-suppress-baseline-002-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-paint-001.html": [ - "ca2eb6e6f98fd8aec3fbd3b252658e7e966f03a2", - [ - null, + [ + "/css/css-counter-styles/tamil/css3-counter-styles-146-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-147.html": [ + "9a48a832989f97e12c086929c14dc11bf9c63199", [ + null, [ - "/css/css-contain/reference/contain-paint-001-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-paint-002.html": [ - "6f495f56173078d323fd2f6ba47bc92ea32e1aab", - [ - null, + [ + "/css/css-counter-styles/tamil/css3-counter-styles-147-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-148.html": [ + "e149cb06bd7eb31c2c515eb9ab1e3170393ae504", [ + null, [ - "/css/reference/pass_if_pass_below.html", - "==" - ] - ], - {} + [ + "/css/css-counter-styles/tamil/css3-counter-styles-148-ref.html", + "==" + ] + ], + {} + ] ] - ], - "contain-paint-004.html": [ - "d37676dda9c4910d9e22b9553ea93616ca617d1a", - [ - null, + }, + "telugu": { + "css3-counter-styles-149.html": [ + "b7008b7809982c47e287aefd111eac1781a7dda7", [ + null, [ - "/css/reference/nothing.html", - "==" - ] - ], - {} - ] - ], - "contain-paint-005.html": [ - "a6817be517fdbeb608eb656e7dcab998edd163a4", - [ - null, + [ + "/css/css-counter-styles/telugu/css3-counter-styles-149-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-150.html": [ + "3f4e3c71e0cde9cf1448cb7d0772ad26e216a4f6", [ + null, [ - "/css/reference/pass_if_pass_below.html", - "==" - ] - ], - {} - ] - ], - "contain-paint-006.html": [ - "b04a78f99857ca8b8dc01b6c208cc3e0aae02710", - [ - null, + [ + "/css/css-counter-styles/telugu/css3-counter-styles-150-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-151.html": [ + "c763a65c76fe7ef16cee9fba02b0a1bed4974ace", [ + null, [ - "/css/reference/pass_if_pass_below.html", - "==" - ] - ], - {} + [ + "/css/css-counter-styles/telugu/css3-counter-styles-151-ref.html", + "==" + ] + ], + {} + ] ] - ], - "contain-paint-007.html": [ - "b02bd535b787a0ab0c82ffb4d46979ff517bfb85", - [ - null, + }, + "thai": { + "css3-counter-styles-152.html": [ + "9b1e76a4c926d46342d5f8e9cef50de41694f2eb", [ + null, [ - "/css/css-contain/reference/contain-paint-007-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-paint-008.html": [ - "ab1ba6beab66a7637b912c36e33f1708bc24ee19", - [ - null, + [ + "/css/css-counter-styles/thai/css3-counter-styles-152-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-153.html": [ + "9de0fae60fcea883164e827d238125e5141e5beb", [ + null, [ - "/css/css-contain/reference/contain-paint-008-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-paint-009.html": [ - "34ca8d72b5994a1a47f3dc95bd8b738e913eb997", - [ - null, + [ + "/css/css-counter-styles/thai/css3-counter-styles-153-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-154.html": [ + "5362b78e4121c54bf64bb1494f33ce46d519f2e5", [ + null, [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} + [ + "/css/css-counter-styles/thai/css3-counter-styles-154-ref.html", + "==" + ] + ], + {} + ] ] - ], - "contain-paint-010.html": [ - "13f4a9395ca68541bd5ffba594be1ba6d36c5e85", - [ - "css/css-contain/contain-paint-010.html", + }, + "tibetan": { + "css3-counter-styles-155.html": [ + "2e7b9ea3749b10bf3a22463085a3afd705d2eff4", [ + null, [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "contain-paint-011.html": [ - "d18a667025f43803a3285431fc07315d61a37265", - [ - null, + [ + "/css/css-counter-styles/tibetan/css3-counter-styles-155-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-156.html": [ + "5827e0ad77423e91e9d3f88e0451f910bc80b729", [ + null, [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "contain-paint-012.html": [ - "471726a99c659ab0d6a7870ee2519994051b425f", - [ - null, + [ + "/css/css-counter-styles/tibetan/css3-counter-styles-156-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-157.html": [ + "47aaa4660b75f77a96cdd308ed09a5efd5f17947", [ + null, [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} + [ + "/css/css-counter-styles/tibetan/css3-counter-styles-157-ref.html", + "==" + ] + ], + {} + ] ] - ], - "contain-paint-014.html": [ - "ee6bc7876f6f0a1f3653c62819fd16553b1610b7", - [ - null, + }, + "trad-chinese-formal": { + "counter-trad-chinese-formal.html": [ + "4829d3da42f2a43e42b69e38793f6f1bffb7848d", [ + null, [ - "/css/reference/nothing.html", - "==" - ] - ], - {} - ] - ], - "contain-paint-015.html": [ - "702bfb62b1878c2b95355a9867b31f80110df18c", - [ - null, + [ + "/css/css-counter-styles/trad-chinese-formal/counter-trad-chinese-formal-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-086.html": [ + "3acb5ad2d70815a9dc0ef2e1d7c0de1bb73ff7a3", [ + null, [ - "/css/reference/pass_if_pass_below.html", - "==" - ] - ], - {} - ] - ], - "contain-paint-016.html": [ - "cb16009e11e1e66900988a7c184af8058d9dcffc", - [ - null, + [ + "/css/css-counter-styles/trad-chinese-formal/css3-counter-styles-086-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-087.html": [ + "cd70ee34d56d6e9645d19c362ba7fc88d233c12c", [ + null, [ - "/css/reference/pass_if_pass_below.html", - "==" - ] - ], - {} - ] - ], - "contain-paint-017.html": [ - "d1e57d4d5c0c3db98acc242a40a79eda38bc2e2c", - [ - null, + [ + "/css/css-counter-styles/trad-chinese-formal/css3-counter-styles-087-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-088.html": [ + "9eeee257954501cd08ea7c455efce74603c23d2c", [ + null, [ - "/css/reference/pass_if_pass_below.html", - "==" - ] - ], - {} - ] - ], - "contain-paint-018.html": [ - "f4b92dab876080663d000ce03dc3a26bfa8969d7", - [ - null, + [ + "/css/css-counter-styles/trad-chinese-formal/css3-counter-styles-088-ref.html", + "==" + ], + [ + "/css/css-counter-styles/trad-chinese-formal/css3-counter-styles-088-alt-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-089.html": [ + "ec96c7dfc56e2ddb41e527c57e410e68f26e29c8", [ + null, [ - "/css/reference/pass_if_pass_below.html", - "==" - ] - ], - {} - ] - ], - "contain-paint-019.html": [ - "90c5a8f0540964ae829d586854e2695d1722a1da", - [ - null, + [ + "/css/css-counter-styles/trad-chinese-formal/css3-counter-styles-089-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-090.html": [ + "2153679bcb3a05aeb1b87f3b3d96e130520041af", [ + null, [ - "/css/reference/nothing.html", - "==" - ] - ], - {} + [ + "/css/css-counter-styles/trad-chinese-formal/css3-counter-styles-090-ref.html", + "==" + ] + ], + {} + ] ] - ], - "contain-paint-020.html": [ - "44a62172ed64b5e027639f39b8cf73522ddfa680", - [ - null, + }, + "trad-chinese-informal": { + "counter-trad-chinese-informal.html": [ + "8fdc1c6cbbaaa50155968e3cbf85667caa8cbc6f", [ + null, [ - "/css/reference/pass_if_pass_below.html", - "==" - ] - ], - {} - ] - ], - "contain-paint-021.html": [ - "c1f145245d29702914c5e35d7a4a8053f452c156", - [ - null, + [ + "/css/css-counter-styles/trad-chinese-informal/counter-trad-chinese-informal-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-081.html": [ + "64ce4a6eed3eaa90512374d9a83ba51113ee4773", [ + null, [ - "/css/reference/nothing.html", - "==" - ] - ], - {} - ] - ], - "contain-paint-022.html": [ - "91b3884d465fe40214870f36d3ad772b90722008", - [ - null, + [ + "/css/css-counter-styles/trad-chinese-informal/css3-counter-styles-081-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-082.html": [ + "3b552ee3486c2023fd45aefc9e10ff064c0aa36e", [ + null, [ - "/css/css-contain/reference/contain-paint-022-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-paint-023.html": [ - "695dc4e778c794d2d63460b8665077211ffd3c04", - [ - null, + [ + "/css/css-counter-styles/trad-chinese-informal/css3-counter-styles-082-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-083.html": [ + "c450a527923761ab2d56d4f43ccb4d9911747567", [ + null, [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "contain-paint-024.html": [ - "ea92aeb43b0dc08765dc2c7e1b4bc59ec62b271d", - [ - null, + [ + "/css/css-counter-styles/trad-chinese-informal/css3-counter-styles-083-ref.html", + "==" + ], + [ + "/css/css-counter-styles/trad-chinese-informal/css3-counter-styles-083-alt-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-084.html": [ + "bf386b103f5dc659e012671c00edc473439cd8c4", [ + null, [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "contain-paint-025.html": [ - "0a41b62b2c169d2a5e571bde059a78ad2d5c2a16", - [ - null, + [ + "/css/css-counter-styles/trad-chinese-informal/css3-counter-styles-084-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-085.html": [ + "94b575ffafce5a23889e895faa51e96133c5b6e1", [ + null, [ - "/css/reference/nothing.html", - "==" - ] - ], - {} + [ + "/css/css-counter-styles/trad-chinese-informal/css3-counter-styles-085-ref.html", + "==" + ] + ], + {} + ] ] - ], - "contain-paint-026.html": [ - "f6da8679f039eb1a2c8c94bc7b500f88b0b1ea5c", - [ - "css/css-contain/contain-paint-026.html", + }, + "upper-armenian": { + "css3-counter-styles-107.html": [ + "f997ebd07b6c2ed629daf9d5f17ff70765cc7ee0", [ + null, [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "contain-paint-047.html": [ - "7fdc4a8f0d7c8b78d92907c25a5d7ea9ab56e4f3", - [ - null, + [ + "/css/css-counter-styles/upper-armenian/css3-counter-styles-107-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-108.html": [ + "7a55dbbc695635b6f46e5ebace9c30b5a5e093fd", [ + null, [ - "/css/css-contain/reference/contain-paint-047-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-paint-048.html": [ - "870484e5759c00fd3af34d2e2bc66ecf2e25e331", - [ - null, + [ + "/css/css-counter-styles/upper-armenian/css3-counter-styles-108-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-109.html": [ + "0299db5484c129661ca986db381e624012c23de0", [ + null, [ - "/css/css-contain/reference/ref-if-there-is-no-red.xht", - "==" - ] - ], - {} - ] - ], - "contain-paint-050.html": [ - "a25e126921ea16a0e3dce00703a839faf5b33e20", - [ - null, + [ + "/css/css-counter-styles/upper-armenian/css3-counter-styles-109-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-110.html": [ + "9687b6c31c53d5afd2a7a0345a2e138eb7b27836", [ + null, [ - "/css/css-contain/contain-paint-050-ref.html", - "==" - ] - ], - {} + [ + "/css/css-counter-styles/upper-armenian/css3-counter-styles-110-ref.html", + "==" + ] + ], + {} + ] ] - ], - "contain-paint-baseline-001.html": [ - "c44444dd05b9869f494df0c657c8adc4a3b3c5fc", - [ - null, + }, + "upper-roman": { + "css3-counter-styles-023.html": [ + "cab6d4694fa55c00b56f352f050c5ff26015461e", [ + null, [ - "/css/css-contain/reference/contain-baseline-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-paint-cell-001.html": [ - "5a4a7a4e691ed09b61d022e2e2ce442805446764", - [ - null, + [ + "/css/css-counter-styles/upper-roman/css3-counter-styles-023-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-024.html": [ + "e3a539ccd8970ba25dab81a14b2f1a1bdc1a5c63", [ + null, [ - "/css/css-contain/reference/contain-paint-047-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-paint-cell-002.html": [ - "f6707003884937e619623d8691460f4f42e7170c", - [ - null, + [ + "/css/css-counter-styles/upper-roman/css3-counter-styles-024-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-024a.html": [ + "336503883e3fb7460a3b53ba4148f15d130353c5", [ + null, [ - "/css/css-contain/reference/contain-paint-047-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-paint-change-opacity.html": [ - "4fe3f439b54ee306eccf0d670e43249ddbf6010d", - [ - "css/css-contain/contain-paint-change-opacity.html", + [ + "/css/css-counter-styles/upper-roman/css3-counter-styles-024a-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-025.html": [ + "322679183f2965ec1b247913d8202fd5b168540c", [ + null, [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "contain-paint-clip-001.html": [ - "6637e08393b972cbe1c075b2e9b79e681ff5dab2", - [ - null, + [ + "/css/css-counter-styles/upper-roman/css3-counter-styles-025-ref.html", + "==" + ] + ], + {} + ] + ], + "css3-counter-styles-026.html": [ + "40f78b2ae398ba4bd2f718b77acf43c5076d532d", [ + null, [ - "/css/css-contain/contain-paint-clip-001-ref.html", - "==" - ] - ], - {} + [ + "/css/css-counter-styles/upper-roman/css3-counter-styles-026-ref.html", + "==" + ] + ], + {} + ] ] - ], - "contain-paint-clip-002.html": [ - "ba16325b973cb58d2f655ecfa322097add27ac87", + } + }, + "css-display": { + "display-change-iframe.html": [ + "5fc53274e2ac5e16278fd20799ba60a74f2ec41b", [ null, [ [ - "/css/css-contain/contain-paint-clip-002-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "contain-paint-clip-003.html": [ - "30a7335f1521ce2f9ed0d6e440373a384523a6d6", + "display-change-object-iframe.html": [ + "a44cfde79ee2b81365fa43ebae224e9b27cfa6da", [ null, [ [ - "/css/css-contain/contain-paint-clip-003-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "contain-paint-clip-004.html": [ - "709f191e85aa2201aecf9a6ebff64bd1407f481f", + "display-contents-alignment-001.html": [ + "6a6bf8c748f716d43fdd98564bfc55be1fb9bfd6", [ null, [ [ - "/css/css-contain/contain-paint-clip-004-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-paint-clip-005.html": [ - "fce4a89fbb8ac2c416798e8ccbc96998fa85b2a5", - [ - "css/css-contain/contain-paint-clip-005.html", - [ - [ - "/css/css-contain/contain-paint-clip-003-ref.html", + "/css/css-display/display-contents-alignment-001-ref.html", "==" ] ], {} ] ], - "contain-paint-clip-006.html": [ - "a4d6835a1655453b9b6a1970fccd682dc05ef145", + "display-contents-alignment-002.html": [ + "d8fa0d9efeb95873bc1800e5f816a1f3b9923d4b", [ null, [ [ - "/css/css-contain/contain-paint-clip-006-ref.html", + "/css/css-display/display-contents-alignment-002-ref.html", "==" ] ], {} ] ], - "contain-paint-clip-011.html": [ - "d9b9052f4bcf4d997f2c99cb70f423389defb07a", + "display-contents-before-after-001.html": [ + "65fc9fee845b4a21b9ddf3da39b5be6935b31eb6", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-display/display-contents-pass-ref.html", "==" ] ], {} ] ], - "contain-paint-clip-012.html": [ - "090aa1586c65f9c42203ac8fd22bf5011b997f7d", + "display-contents-before-after-002.html": [ + "5860a73c3d3161a9d019cf207936692d8d0d1604", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-display/display-contents-pass-ref.html", "==" ] ], {} ] ], - "contain-paint-clip-013.html": [ - "7c539bf93d750888d767c7f529cd009437c5f16c", + "display-contents-before-after-003.html": [ + "30451426cf14f2082b7baec00d80d9ea274bf057", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-display/display-contents-pass-ref.html", "==" ] ], {} ] ], - "contain-paint-clip-014.html": [ - "296187f36a7e6f22c6c7881c9f37d2651e100ca4", + "display-contents-block-001.html": [ + "5a5a4f9e6cb49da68f1b2d6d4b502cd0a29ed34c", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-display/display-contents-pass-no-red-ref.html", "==" ] ], {} ] ], - "contain-paint-clip-015.html": [ - "9519015a53b5ee510c6e7cf0af620ead2e56361d", - [ - null, - [ - [ - "/css/css-contain/reference/contain-paint-clip-015-ref.html", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 99 - ], - [ - 0, - 410 - ] - ] - ] - ] - } - ] - ], - "contain-paint-clip-016.html": [ - "e141561357964318a54b89713b4a9a428db25ab4", - [ - null, - [ - [ - "/css/css-contain/reference/contain-paint-clip-015-ref.html", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 99 - ], - [ - 0, - 410 - ] - ] - ] - ] - } - ] - ], - "contain-paint-clip-017.html": [ - "a6f427516e425b3c3282817c2a1b3672f16c042b", + "display-contents-block-002.html": [ + "2dd8a10b5e8e40b10241e5cd2499e22d18199bce", [ null, [ [ - "/css/css-contain/reference/contain-paint-clip-015-ref.html", + "/css/css-display/display-contents-block-002-ref.html", "==" ] ], {} ] ], - "contain-paint-clip-018.html": [ - "5b36a06e17a7bc897ed5709df1cf9217087eb36b", + "display-contents-button.html": [ + "3711972a270bd071b0db2eb942a2951523d32a96", [ null, [ [ - "/css/css-contain/reference/contain-paint-clip-015-ref.html", + "/css/css-display/display-contents-pass-ref.html", "==" ] ], {} ] ], - "contain-paint-clip-019.html": [ - "34b12642dbdaa57754c747b923ca86807e39bd8e", + "display-contents-details-001.html": [ + "b1cefa6ffde9953c1e7e9c1fb0174db9447c65d8", [ null, [ [ - "/css/css-contain/reference/contain-paint-clip-019-ref.html", + "/css/css-display/display-contents-details-001-ref.html", "==" ] ], {} ] ], - "contain-paint-containing-block-absolute-001.html": [ - "dd46c313db8889a3692fe0a57414a182a7e590e2", + "display-contents-details.html": [ + "927621bba5148789c971dea8bdb5c15d4c0aabc4", [ null, [ [ - "/css/css-contain/contain-paint-containing-block-absolute-001-ref.html", + "/css/css-display/display-contents-pass-ref.html", "==" ] ], {} ] ], - "contain-paint-containing-block-fixed-001.html": [ - "6fa52a5eb422c57b27765c6331c7f4a02f9bd93f", + "display-contents-dynamic-before-after-001.html": [ + "b8dc4ba1e884ee123d5a98a072129599d0b8bb2b", [ null, [ [ - "/css/css-contain/contain-paint-containing-block-fixed-001-ref.html", + "/css/css-display/display-contents-pass-green-no-red-ref.html", "==" ] ], {} ] ], - "contain-paint-formatting-context-float-001.html": [ - "95242072b100ca3f27203f2f9c6748e4dd7c89b4", + "display-contents-dynamic-before-after-first-letter-001.html": [ + "7684a4b9002bd43700d0b84f8b41a852a7df0c93", [ null, [ [ - "/css/css-contain/contain-paint-formatting-context-float-001-ref.html", + "/css/css-display/display-contents-pass-green-no-red-ref.html", "==" ] ], {} ] ], - "contain-paint-formatting-context-margin-001.html": [ - "ebf88866a947e6db1a5760b8d88d03f85682718e", + "display-contents-dynamic-fieldset-legend-001.html": [ + "a17828bd7a8d242ee3f95700cc0d0a2b88f19235", [ null, [ [ - "/css/css-contain/contain-paint-formatting-context-margin-001-ref.html", + "/css/css-display/display-contents-dynamic-fieldset-legend-001-ref.html", "==" ] ], {} ] ], - "contain-paint-ifc-011.html": [ - "992a0377ad6191e69e21f810226579c935ec01ce", + "display-contents-dynamic-flex-001-inline.html": [ + "2d797795b074635d7cc9bf41f73915bd56c6874d", [ null, [ [ - "/css/css-contain/reference/contain-paint-ifc-011-ref.html", + "/css/css-display/display-contents-flex-001-ref.html", "==" ] ], {} ] ], - "contain-paint-ignored-cases-ib-split-001.html": [ - "eb21a2d460957cb6fdd887c69dec4f9247bcd951", + "display-contents-dynamic-flex-001-none.html": [ + "bf2af1a5b2137e9a289d13907b9e4f13459eb7a9", [ null, [ [ - "/css/css-contain/contain-paint-ignored-cases-ib-split-001-ref.html", + "/css/css-display/display-contents-flex-001-ref.html", "==" ] ], {} ] ], - "contain-paint-ignored-cases-internal-table-001a.html": [ - "6e3bdbd27369951d402eb17e8aba91b161d88fff", + "display-contents-dynamic-flex-002-inline.html": [ + "a31d923150a6d9042f5d9b1066e222db0ef41455", [ null, [ [ - "/css/css-contain/contain-paint-ignored-cases-internal-table-001-ref.html", + "/css/css-display/display-contents-flex-002-ref.html", "==" ] ], {} ] ], - "contain-paint-ignored-cases-internal-table-001b.html": [ - "e531eb6ca398d66c2634df926ac4981db86247d8", + "display-contents-dynamic-flex-002-none.html": [ + "64fbf03b8add0767b10f2846ad219ec0b8552d9a", [ null, [ [ - "/css/css-contain/contain-paint-ignored-cases-internal-table-001-ref.html", + "/css/css-display/display-contents-flex-002-ref.html", "==" ] ], {} ] ], - "contain-paint-ignored-cases-no-principal-box-001.html": [ - "4b9c9072099191488fc0f551d3c8c0813c0caec8", + "display-contents-dynamic-flex-003-inline.html": [ + "435a10a724fa87e61ae9c53082cc0ce4a99494f5", [ null, [ [ - "/css/css-contain/contain-paint-ignored-cases-no-principal-box-001-ref.html", + "/css/css-display/display-contents-flex-002-ref.html", "==" ] ], {} ] ], - "contain-paint-ignored-cases-ruby-containing-block-001.html": [ - "08fa9555a6ed25b65bb4032e30c689170bde9836", + "display-contents-dynamic-flex-003-none.html": [ + "5c357c1632bcf97c50a8c74bbd16cc52d419894b", [ null, [ [ - "/css/css-contain/contain-paint-ignored-cases-ruby-containing-block-001-ref.html", + "/css/css-display/display-contents-flex-002-ref.html", "==" ] ], {} ] ], - "contain-paint-ignored-cases-ruby-stacking-and-clipping-001.html": [ - "756035518dfb3a181462e4a99f1ea7381c0c261c", + "display-contents-dynamic-generated-content-fieldset-001.html": [ + "8f8a0ba4797109b162db35da511afb2a0c3885f2", [ null, [ [ - "/css/css-contain/contain-paint-ignored-cases-ruby-stacking-and-clipping-001-ref.html", + "/css/css-display/display-contents-dynamic-generated-content-fieldset-001-ref.html", "==" ] ], {} ] ], - "contain-paint-independent-formatting-context-001.html": [ - "e4c06a992b351974d5506070db3dd8dadd53173e", + "display-contents-dynamic-inline-flex-001-inline.html": [ + "f14e133a0419aa809d00c12eced98f8d7d0cfd69", [ null, [ [ - "/css/css-contain/reference/contain-paint-independent-formatting-context-001-ref.html", + "/css/css-display/display-contents-inline-flex-001-ref.html", "==" ] ], {} ] ], - "contain-paint-independent-formatting-context-002.html": [ - "353196970c99e9b5ed556b850d4eda034d16df77", + "display-contents-dynamic-inline-flex-001-none.html": [ + "f14e133a0419aa809d00c12eced98f8d7d0cfd69", [ null, [ [ - "/css/css-contain/reference/contain-paint-independent-formatting-context-001-ref.html", + "/css/css-display/display-contents-inline-flex-001-ref.html", "==" ] ], {} ] ], - "contain-paint-independent-formatting-context-003.html": [ - "fe1f7f2775db9cd82292c181560c2f9997de197d", + "display-contents-dynamic-list-001-inline.html": [ + "f44ee28fd23cd234a6e4c246707c7ee1e79bb9bf", [ null, [ [ - "/css/css-contain/reference/contain-paint-independent-formatting-context-003-ref.html", + "/css/css-display/display-contents-list-001-ref.html", "==" ] ], {} ] ], - "contain-paint-size-001.html": [ - "2546b2b9aa565624e6a6d0978d8879531650e82e", + "display-contents-dynamic-list-001-none.html": [ + "f44ee28fd23cd234a6e4c246707c7ee1e79bb9bf", [ null, [ [ - "/css/css-contain/reference/contain-paint-size-001-ref.html", + "/css/css-display/display-contents-list-001-ref.html", "==" ] ], {} ] ], - "contain-paint-size-002.html": [ - "18d03e7f5224432b05d71727fa24ee4552d37894", + "display-contents-dynamic-multicol-001-inline.html": [ + "b8b2c6bb100c33e2ca621140455d543d19eb7bd0", [ null, [ [ - "/css/css-contain/reference/contain-paint-size-001-ref.html", + "/css/css-display/display-contents-multicol-001-ref.html", "==" ] ], {} ] ], - "contain-paint-size-003.html": [ - "2d2166406555b8b01d06ab467fd4b18038b12e5d", + "display-contents-dynamic-multicol-001-none.html": [ + "f171fc09fcdcf9d1c4db93e7fa94deea4b665ee7", [ null, [ [ - "/css/css-contain/reference/contain-layout-size-003-ref.html", + "/css/css-display/display-contents-multicol-001-ref.html", "==" ] ], {} ] ], - "contain-paint-stacking-context-001a.html": [ - "71102b6c73a3d88cdd953ecf82c69602ff87baa2", + "display-contents-dynamic-pseudo-insertion-001.html": [ + "f35c3cc47b47f01eac3c14429e6254f07374524f", [ null, [ [ - "/css/css-contain/contain-paint-stacking-context-001-ref.html", + "/css/css-display/display-contents-dynamic-pseudo-insertion-001-ref.html", "==" ] ], {} ] ], - "contain-paint-stacking-context-001b.html": [ - "0c4d3323bf7cb28b5a31de8aac41563013b2ecd4", + "display-contents-dynamic-table-001-inline.html": [ + "4f2578cbb0eb60c0ea9d3540481c431de86c8de7", [ null, [ [ - "/css/css-contain/contain-paint-stacking-context-001-ref.html", + "/css/css-display/display-contents-table-001-ref.html", "==" ] ], {} ] ], - "contain-paint-table-001.html": [ - "0622a1cbd2d31d55dcc221a2dbca26eb5880fce2", + "display-contents-dynamic-table-001-none.html": [ + "eb4297d4314528ece43f1c3427c4a037d3267e76", [ null, [ [ - "/css/css-contain/reference/contain-paint-047-ref.html", + "/css/css-display/display-contents-table-001-ref.html", "==" ] ], {} ] ], - "contain-paint-table-002.html": [ - "2d51f91f0389c2c5ac0bcd8cca7efe7a51381872", + "display-contents-dynamic-table-002-inline.html": [ + "e7a9d200d710d3bb84991eab13e449d03d4bb064", [ null, [ [ - "/css/css-contain/reference/contain-paint-047-ref.html", + "/css/css-display/display-contents-table-002-ref.html", "==" ] ], {} ] ], - "contain-size-001.html": [ - "49dfc41601eb32f80c76a427403beb2f98d3f404", + "display-contents-dynamic-table-002-none.html": [ + "964b6d72f0a237765fc677e4c3b0f9cb0cf027b6", [ null, [ [ - "/css/css-contain/reference/pass_if_pass_below_clipped.html", + "/css/css-display/display-contents-table-002-ref.html", "==" ] ], {} ] ], - "contain-size-002.html": [ - "b30b02482da592925b6f4aa278ec82d6b30fe36f", + "display-contents-fieldset-002.html": [ + "612d483d7ccde68724097996ce10bda3c596a574", [ null, [ [ - "/css/css-contain/reference/pass_if_pass_below_clipped.html", + "/css/css-display/display-contents-fieldset-002-ref.html", "==" ] ], {} ] ], - "contain-size-003.html": [ - "95596c96910dcfb5fa2d5b5c4261ab910019929c", + "display-contents-fieldset-nested-legend.html": [ + "abda0ad32d0bac5f336de344e479d62ebf2252c6", [ null, [ [ - "/css/css-contain/reference/pass_if_pass_below_clipped.html", + "/css/css-display/display-contents-fieldset-nested-legend-ref.html", "==" ] ], {} ] ], - "contain-size-004.html": [ - "58277ce1bf67aca59385a0087c1c03ae81b5f4ce", + "display-contents-fieldset.html": [ + "f38a3763cfb954966c4eb8527d45a213635ea525", [ null, [ [ - "/css/css-contain/reference/contain-size-004-ref.html", + "/css/css-display/display-contents-pass-ref.html", "==" ] ], {} ] ], - "contain-size-005.html": [ - "139f8a97bea0aae6ab718764a24b35fa0acca6db", + "display-contents-first-letter-001.html": [ + "eb645c9ee711d6af8106724ade73dab58ca10786", [ null, [ [ - "/css/css-contain/reference/contain-size-005-ref.html", + "/css/css-display/display-contents-pass-green-no-red-ref.html", "==" ] ], {} ] ], - "contain-size-006.html": [ - "f5a5faa49d3090ad2c088ac609e325a86d3d906e", + "display-contents-first-letter-002.html": [ + "8d1d8572ac125ebb6c90c38afdf348d04afab01c", [ null, [ [ - "/css/css-contain/reference/pass_if_pass_below_clipped.html", + "/css/css-display/display-contents-pass-green-no-red-ref.html", "==" ] ], {} ] ], - "contain-size-007.html": [ - "4d4bce8e9264f6f4a9d390a7e43d05169dd00192", + "display-contents-first-line-001.html": [ + "7fbd4b3bff40aea32b9de02ae3c8937193703bf6", [ null, [ [ - "/css/css-contain/reference/pass_if_pass_below_clipped.html", + "/css/css-display/display-contents-pass-green-no-red-ref.html", "==" ] ], {} ] ], - "contain-size-008.html": [ - "63deea8199fc13fd8c81021a0275b5127ed31e77", + "display-contents-first-line-002.html": [ + "ae900235a5e9bed2fff278d5ecd2b3a48098a8f1", [ null, [ [ - "/css/css-contain/reference/pass_if_pass_below_clipped.html", + "/css/css-display/display-contents-pass-green-no-red-ref.html", "==" ] ], {} ] ], - "contain-size-009.html": [ - "a285d5e2b38e5b4e5aa7cf924f859a9f782aed53", + "display-contents-flex-001.html": [ + "da4cd7200837593f782018a3778381a43779f83b", [ null, [ [ - "/css/css-contain/reference/pass_if_pass_below_clipped.html", + "/css/css-display/display-contents-flex-001-ref.html", "==" ] ], {} ] ], - "contain-size-010.html": [ - "0061894ce0307c8a66ff39667fb39b7c8836d09b", + "display-contents-flex-002.html": [ + "869ca00b72d7d2a4ce66331c053a5006b9eb328f", [ null, [ [ - "/css/css-contain/reference/pass_if_pass_below_clipped.html", + "/css/css-display/display-contents-flex-002-ref.html", "==" ] ], {} ] ], - "contain-size-011.html": [ - "f2a146938ecf1e59a82a41470db5a836b08b88e5", + "display-contents-flex-003.html": [ + "6425db9421f66b6975c181f9449d8793dcb339f2", [ null, [ [ - "/css/reference/nothing.html", + "/css/css-display/display-contents-flex-002-ref.html", "==" ] ], {} ] ], - "contain-size-012.html": [ - "5c8e4f0370647465b9c07e8bd6e487df4c37a0fd", + "display-contents-float-001.html": [ + "d51e7c1d4a258688231bb8fd8769944271b570cd", [ null, [ [ - "/css/css-contain/reference/pass_if_pass_below_clipped.html", + "/css/css-display/display-contents-pass-no-red-ref.html", "==" ] ], {} ] ], - "contain-size-012b.html": [ - "e52f34578532f95360db41c785c041006a541a07", + "display-contents-inline-001.html": [ + "9527382e8b551d4a38984426e386c951c6b3750f", [ null, [ [ - "/css/css-contain/reference/pass_if_pass_below_clipped.html", + "/css/css-display/display-contents-pass-no-red-ref.html", "==" ] ], {} ] ], - "contain-size-013.html": [ - "4d1cbc403bd48b21f8d657d4adc7a50bffbb618c", + "display-contents-inline-flex-001.html": [ + "43b502731aefbaa348671e32171f0e1eb4bca04b", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-display/display-contents-inline-flex-001-ref.html", "==" ] ], {} ] ], - "contain-size-021.html": [ - "199849e8adb16bf12dd2577aad995425f0f4a97d", + "display-contents-line-height.html": [ + "31fd5a6d479d57a0e6a9c7dba1ad54e59473be51", [ null, [ [ - "/css/css-contain/reference/contain-size-021-ref.html", + "/css/css-display/display-contents-line-height-ref.html", "==" ] ], {} ] ], - "contain-size-023.html": [ - "f83a10d85cbbfe9bd11801899172908bf57fb49a", + "display-contents-list-001.html": [ + "7b1fd44cae25282e0fcaf69abd3d3d3eb8c1ced6", [ null, [ [ - "/css/css-contain/reference/contain-size-023-ref.html", + "/css/css-display/display-contents-list-001-ref.html", "==" ] ], {} ] ], - "contain-size-025.html": [ - "3eb4b15961c0cf32cd6b9d353cb0b3c8244c8cbc", + "display-contents-multicol-001.html": [ + "2213fdc684e48cd2f5f08b2daf8a6506a9b946f5", [ null, [ [ - "/css/css-contain/reference/contain-size-025-ref.html", + "/css/css-display/display-contents-multicol-001-ref.html", "==" ] ], {} ] ], - "contain-size-027.html": [ - "8dcff1745f39334e3b0e6517205726c3eaf3f103", + "display-contents-oof-001.html": [ + "03509bf9ef351ef28518570af8913a3089c6188e", [ null, [ [ - "/css/css-contain/reference/contain-size-027-ref.html", + "/css/css-display/display-contents-pass-no-red-ref.html", "==" ] ], {} ] ], - "contain-size-041.html": [ - "93def48c65265fbed965e10605b2e98847728464", + "display-contents-oof-002.html": [ + "8df8251a671a6d5e0ea7aa8099b089f975ab799e", [ null, [ [ - "/css/css-contain/reference/contain-size-025-ref.html", + "/css/css-display/display-contents-pass-no-red-ref.html", "==" ] ], {} ] ], - "contain-size-042.html": [ - "52c5281b05ca1c31e180610ba56b76f0afd2ed57", + "display-contents-root-background.html": [ + "6770266f513164d2bc3453e0a5c1f7522a216f98", [ null, [ [ - "/css/css-contain/reference/contain-size-022-ref.html", + "/css/css-display/display-contents-root-background-ref.html", "==" ] ], {} ] ], - "contain-size-051.html": [ - "d1eab897a87bf0cbf104d5be56dcf86022f5d2a7", + "display-contents-shadow-dom-1.html": [ + "45dd6d9b775327890a32ba537bed45a122753479", [ null, [ [ - "/css/css-contain/reference/contain-size-051-ref.html", + "/css/css-display/display-contents-shadow-dom-1-ref.html", "==" ] ], {} ] ], - "contain-size-052.html": [ - "a4d1afdd85ae470d0e4f361f21773ce9c6aa0745", + "display-contents-shadow-host-whitespace.html": [ + "84b04dba1013af9091f3d943ca106ab655676842", [ null, [ [ - "/css/css-contain/reference/contain-size-051-ref.html", + "/css/reference/pass_if_two_words.html", "==" ] ], {} ] ], - "contain-size-056.html": [ - "e8c140adedfb0133ee36433b935e9a064c55810d", + "display-contents-sharing-001.html": [ + "3ecb8eb2b1f4d4e69c1ebe061c6f66ef0087e20c", [ null, [ [ - "/css/css-contain/reference/contain-size-056-ref.html", + "/css/css-display/display-contents-sharing-001-ref.html", "==" ] ], {} ] ], - "contain-size-061.html": [ - "1738b7f2a0358c1de808e171b143155813d4eb3c", + "display-contents-slot-attach-whitespace.html": [ + "c29b5ba6348130981ff47505c8f8281806a3ef64", [ null, [ [ - "/css/css-contain/reference/contain-size-061-ref.html", + "/css/reference/pass_if_two_words.html", "==" ] ], {} ] ], - "contain-size-062.html": [ - "10d7d48c95f532c35cbdb945c40b854211d9359b", + "display-contents-state-change-001.html": [ + "3923041e0deb677494dc3368cec8f97ab295fa67", [ null, [ [ - "/css/css-contain/reference/contain-size-062-ref.html", + "/css/css-display/display-contents-state-change-001-ref.html", "==" ] ], {} ] ], - "contain-size-063.html": [ - "9c843ab7cc88c8ce450e1a34fab452a76c021372", + "display-contents-suppression-dynamic-001.html": [ + "5007e1f57d35538bf43f7ccc616d53bddafb20c7", [ null, [ [ - "/css/css-contain/reference/contain-size-063-ref.html", + "/css/css-display/display-contents-suppression-dynamic-001-ref.html", "==" ] ], {} ] ], - "contain-size-064.html": [ - "043a569eb40edbe576a6073a7686087d5bf43239", + "display-contents-svg-elements.html": [ + "7ccc92f72070bc4646c83d731d4d62816d6715ba", [ null, [ [ - "/css/css-contain/reference/contain-size-064-ref.html", + "/css/css-display/display-contents-svg-elements-ref.html", "==" ] ], {} ] ], - "contain-size-baseline-001.html": [ - "d8436c4508e0a75244c26db7334282c92bf6cb45", + "display-contents-table-001.html": [ + "d3c37fe361ab21d63bc844bb87c1f8e525831a89", [ null, [ [ - "/css/css-contain/reference/contain-baseline-ref.html", + "/css/css-display/display-contents-table-001-ref.html", "==" ] ], {} ] ], - "contain-size-block-001.html": [ - "0ed82ff8fc5b8adaeef2bfd973cd79973b8f4fa6", + "display-contents-table-002.html": [ + "2a30a1b8b11fd92cd813f7cc97bf7282ed814f4e", [ null, [ [ - "/css/css-contain/contain-size-block-001-ref.html", + "/css/css-display/display-contents-table-002-ref.html", "==" ] ], {} ] ], - "contain-size-block-002.html": [ - "4dc92103eabc6231b4d8260cbb35ac7337b2362b", + "display-contents-td-001.html": [ + "5585024a4997df12890e3226410ab52c23c4e8bd", [ null, [ [ - "/css/css-contain/contain-size-block-002-ref.html", + "/css/css-display/display-contents-pass-ref.html", "==" ] ], {} ] ], - "contain-size-block-003.html": [ - "cf7e2310169c57658ebc688db3a927152868d97a", + "display-contents-text-inherit-002.html": [ + "51bf96846c7d432f5393ccfb0a1e29be52fcdd9f", [ null, [ [ - "/css/css-contain/contain-size-block-003-ref.html", + "/css/css-display/display-contents-text-inherit-ref.html", "==" ] ], {} ] ], - "contain-size-block-004.html": [ - "b6cca54a8c65ca798b836aa7b6ea92627482dc76", + "display-contents-text-inherit.html": [ + "b7e769cd69f9eccf3ca898fed013a8be8f362c31", [ null, [ [ - "/css/css-contain/contain-size-block-004-ref.html", + "/css/css-display/display-contents-text-inherit-ref.html", "==" ] ], {} ] ], - "contain-size-borders.html": [ - "16b5b06295fcc0b44944b1b92afa3ee42271b68f", + "display-contents-text-only-001.html": [ + "0f4ebf7aae140830adfb4fa94aefef566e725f87", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-display/display-contents-text-only-001-ref.html", "==" ] ], {} ] ], - "contain-size-breaks-001.html": [ - "e859b9c9f0367cbb567d0400dd9334c83c9a5f97", + "display-contents-tr-001.html": [ + "f0f6894c95b301feacc52f1cf45467faf44b90d4", [ null, [ [ - "/css/css-contain/reference/contain-size-breaks-001-ref.html", + "/css/css-display/display-contents-tr-001-ref.html", "==" ] ], {} ] ], - "contain-size-button-001.html": [ - "9048352f114f33fb161ae7ceb4ce0a2f4eceb445", + "display-contents-unusual-html-elements-none.html": [ + "53f5f9e5c7f447bc87cc1ee460323b93df2cdc68", [ null, [ [ - "/css/css-contain/reference/contain-size-button-001-ref.html", + "/css/css-display/display-contents-pass-ref.html", "==" ] ], {} ] ], - "contain-size-button-002.html": [ - "d6b6d0d10d4e9a08cbbbb57812130752381dd1a2", + "display-contents-whitespace-inside-inline.html": [ + "a97c02575ba216c656ba9fc552b2390faf8e307c", [ null, [ [ - "/css/css-contain/contain-size-button-002-ref.html", + "/css/css-display/display-contents-whitespace-inside-inline-ref.html", "==" ] ], {} ] ], - "contain-size-fieldset-001.html": [ - "f92424716ce55fdfbc0ad9954ab2893d63b389b2", + "display-first-line-002.html": [ + "fef1d0b001c3bf46d9c5eea6741dc804bd057c72", [ null, [ [ - "/css/css-contain/reference/contain-size-fieldset-001-ref.html", + "/css/css-display/display-first-line-002-ref.html", "==" ] ], {} ] ], - "contain-size-fieldset-002.html": [ - "54f6cb1f2694a70022c0dd93bb6ca59e33b85743", + "display-flow-root-001.html": [ + "3d1dcb020df129dd10d66bb4b04d62c3c280cfb6", [ null, [ [ - "/css/css-contain/reference/contain-size-fieldset-002-ref.html", + "/css/css-display/display-flow-root-001-ref.html", "==" ] ], {} ] ], - "contain-size-fieldset-003.html": [ - "e618d44f6ddacb50ae27362ccf305c5be4b9c0a9", + "display-flow-root-002.html": [ + "0640db93db4f6de8f5f85e7ef255e4da8774e24e", [ null, [ [ - "/css/css-contain/contain-size-fieldset-003-ref.html", + "/css/css-display/display-flow-root-002-ref.html", "==" ] ], {} ] ], - "contain-size-fieldset-004.html": [ - "2ea5d2583bb0f059cd8f5813e49844d1b1535726", + "display-flow-root-list-item-001.html": [ + "6c5bece5864aa15f7bd34b26055ed755b43db1f1", [ null, [ [ - "/css/css-contain/contain-size-fieldset-004-ref.html", + "/css/css-display/display-flow-root-list-item-001-ref.html", "==" ] ], {} ] ], - "contain-size-flex-001.html": [ - "72ab97043b7b9fd20d21442c29c61492e040bbb7", + "display-inline-dynamic-001.html": [ + "7df697f940d4a20d26c92fa40266ed1f67d4cd19", [ null, [ [ - "/css/css-contain/contain-size-flex-001-ref.html", + "/css/css-display/display-inline-dynamic-001-ref.html", "==" ] ], {} ] ], - "contain-size-flexbox-001.html": [ - "16ba62eda041abe11424f63c65d6dfd46aa82570", + "display-math-on-pseudo-elements-002.html": [ + "426adb6a23bc3faa8c83dc20eddb3a7e21a7e19e", [ null, [ [ - "/css/css-contain/reference/contain-size-flexbox-001-ref.html", + "/css/css-display/display-math-on-pseudo-elements-002-ref.html", "==" ] ], {} ] ], - "contain-size-flexbox-002.html": [ - "531af691afe80364c43e0055ef90306ceeaca00f", + "display-none-inline-img.html": [ + "f97ca7bbd3519453b362405c542a065a25c43368", [ null, [ [ - "/css/css-contain/reference/contain-size-flexbox-002-ref.html", + "/css/css-display/display-none-inline-img-ref.html", "==" ] ], {} ] ], - "contain-size-grid-001.html": [ - "4510c1e55368aeea38a79ba66059acd4d7660ddb", - [ - null, + "run-in": { + "counter-increment-applies-to-011.xht": [ + "73b1c94f4ba20fce9053e6df39c00d342b3c65d3", [ + null, [ - "/css/css-contain/reference/contain-size-grid-001-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-size-grid-002.html": [ - "43361c298343117362f35596611a9faf854cea47", - [ - null, + [ + "/css/reference/pass_if_number_5.xht", + "==" + ] + ], + {} + ] + ], + "counter-reset-applies-to-011.xht": [ + "8038177d70ecd05b05d18fc0cd44b8490caf56e8", [ + null, [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "contain-size-grid-005.html": [ - "bd750d2f54d7c6ddf018883d3cd6e0d1ec85c449", - [ - null, + [ + "/css/reference/pass_if_number_5.xht", + "==" + ] + ], + {} + ] + ], + "font-style-applies-to-004.xht": [ + "449a5c420bc652a0dc8602b9fccacbf388b74642", [ + null, [ - "/css/css-contain/reference/contain-size-grid-005-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-size-grid-indefinite-height-min-height-flex-row.html": [ - "5899475fc2550c52421ee5d9b2fe65b209e68aec", - [ - "css/css-contain/contain-size-grid-indefinite-height-min-height-flex-row.html", + [ + "/css/reference/pass_if_filler_text_slanted.xht", + "==" + ] + ], + {} + ] + ], + "font-variant-applies-to-004.xht": [ + "af4508220729090422a23411dd0152b25b60f615", [ + null, [ - "/css/reference/ref-filled-green-100px-square-only.html", - "==" - ] - ], - {} - ] - ], - "contain-size-grid-stretches-auto-rows.html": [ - "10b84665aa91edc2245fae08c9ee259c8bc1863a", - [ - "css/css-contain/contain-size-grid-stretches-auto-rows.html", + [ + "/css/reference/pass_if_filler_text_match_smallcaps.xht", + "==" + ] + ], + {} + ] + ], + "font-weight-applies-to-004.xht": [ + "bcbf70e3d3e4cd98c6b9d64adbd10ac6bd8d1c7c", [ + null, [ - "/css/reference/ref-filled-green-100px-square-only.html", - "==" - ] - ], - {} - ] - ], - "contain-size-inline-block-001.html": [ - "41458550272f896d47e15210c82f4c22d386d9e0", - [ - null, + [ + "/css/reference/pass_if_filler_text_match_bold.xht", + "==" + ] + ], + {} + ] + ], + "height-applies-to-011.xht": [ + "67acc00c794dee4a9c3ac6bda800c17912ee3db0", [ + null, [ - "/css/css-contain/contain-size-inline-block-001-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-size-inline-block-002.html": [ - "d3a69e5f357bef37bcd2dbb3a0877ea4d8bdc977", - [ - null, + [ + "/css/reference/pass_if_square_96px_black.html", + "==" + ] + ], + {} + ] + ], + "letter-spacing-applies-to-004.xht": [ + "33c71fbcb132a49d87b38b090cef61e2ae7f07cf", [ + null, [ - "/css/css-contain/contain-size-inline-block-002-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-size-inline-block-003.html": [ - "7ea22635d35b4471362545d0abcf7f417511323d", - [ - null, + [ + "/css/reference/black_box_ends_when_blue_box_ends_6_boxes_ahem.html", + "==" + ] + ], + {} + ] + ], + "list-style-applies-to-011.xht": [ + "4b0a0e46ce9f4374636a0c33e634beb3412c703d", [ + null, [ - "/css/css-contain/contain-size-inline-block-003-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-size-inline-block-004.html": [ - "1de39348b718cd90530be9a0089b4075f3190a8f", - [ - null, + [ + "/css/reference/single_square_list_marker.xht", + "==" + ] + ], + {} + ] + ], + "list-style-type-applies-to-011.xht": [ + "fed66d951f161af7de54336b7ab4eec5acf2a677", [ + null, [ - "/css/css-contain/contain-size-inline-block-004-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-size-inline-flex-001.html": [ - "15a2c943bb65e658de58330b4cec76fbdc5294ad", - [ - null, + [ + "/css/reference/single_square_list_marker.xht", + "==" + ] + ], + {} + ] + ], + "max-height-applies-to-011.xht": [ + "f27561c182619fb6ce3465c4067887e81eb92f4a", [ + null, [ - "/css/css-contain/contain-size-inline-flex-001-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-size-monolithic-001.html": [ - "0e101bbab1b296ab46a607d2f952c17ba4243bd4", - [ - null, + [ + "/css/reference/pass_if_square_96px_black.html", + "==" + ] + ], + {} + ] + ], + "max-width-applies-to-011.xht": [ + "65337647e009f7ded029379c79a7567fed598483", [ + null, [ - "/css/css-contain/reference/contain-size-monolithic-001-ref.html", - "==" - ] - ], - { - "fuzzy": [ [ - null, - [ - [ - 0, - 16 - ], - [ - 0, - 2 - ] - ] + "/css/reference/pass_if_square_96px_black.html", + "==" ] - ] - } - ] - ], - "contain-size-monolithic-002.html": [ - "7f407df30b7e459673fc6481e0b150f0ae39d46a", - [ - null, + ], + {} + ] + ], + "min-height-applies-to-011.xht": [ + "ca2a6ba0faeaecdbc3aa63851a1c268734f553d6", [ + null, [ - "/css/reference/ref-filled-green-100px-square-only.html", - "==" - ] - ], - {} - ] - ], - "contain-size-multicol-001.html": [ - "81465c02d6114aa4a27637b2e77b3d62161c0864", - [ - null, + [ + "/css/reference/pass_if_square_96px_black.html", + "==" + ] + ], + {} + ] + ], + "min-width-applies-to-011.xht": [ + "b905bf938399741c815c686929afb1eaab6ea11e", [ + null, [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "contain-size-multicol-002.html": [ - "0e35e2fed26ddd9a59a063218242722b22b9d1b6", - [ - null, + [ + "/css/reference/pass_if_square_96px_black.html", + "==" + ] + ], + {} + ] + ], + "quotes-applies-to-011.xht": [ + "9594507359fed4901c788f64fd3b93b5ea0eb512", [ + null, [ - "/css/css-contain/contain-size-multicol-002-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-size-multicol-003.html": [ - "447e3cc98dd78c4c5789c66e74e46ff37f25dd4e", - [ - null, + [ + "/css/reference/pass_if_pass_below.html", + "==" + ] + ], + {} + ] + ], + "run-in-abspos-between-001.xht": [ + "1af8ee4567466de393c923760f402f91c232d852", [ + null, [ - "/css/css-contain/contain-size-multicol-003-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-size-multicol-004.html": [ - "e63c213ab101501e0161700ebf2675db5e955dbc", - [ - null, + [ + "/css/css-display/run-in/run-in-basic-ref.xht", + "==" + ] + ], + {} + ] + ], + "run-in-abspos-between-002.xht": [ + "8303df2bf6fa04c87e7e1e7d425c305d0aca20a7", [ + null, [ - "/css/css-contain/contain-size-multicol-004-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-size-removed.html": [ - "9db8f44d633d02107da5956df2e0c767a2a4a6a9", - [ - null, + [ + "/css/css-display/run-in/run-in-basic-ref.xht", + "==" + ] + ], + {} + ] + ], + "run-in-abspos-between-003.xht": [ + "5053a7a5ea06ec58f26c57a43c114c5f5e2fe1f6", [ + null, [ - "/css/css-contain/reference/pass_if_pass_below_clipped.html", - "==" - ] - ], - {} - ] - ], - "contain-size-replaced-001.html": [ - "b0dba02f1cd56f4fccc772cfb948dbabb1d600e2", - [ - null, + [ + "/css/css-display/run-in/run-in-text-ref.xht", + "==" + ] + ], + {} + ] + ], + "run-in-basic-001.xht": [ + "d28a657595e8d8a93bb3424ef3590a0761bcf221", [ + null, [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "contain-size-replaced-002.html": [ - "20e4c8a1a6682217026e258c452cff31ff621473", - [ - null, + [ + "/css/css-display/run-in/run-in-basic-ref.xht", + "==" + ] + ], + {} + ] + ], + "run-in-basic-002.xht": [ + "6c7b7c3c9e71c80b99ef3b8c8bde0da763c63138", [ + null, [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "contain-size-replaced-003a.html": [ - "832e8b29f2cf6ee5a59d160f90c2a3436bee60f5", - [ - null, + [ + "/css/css-display/run-in/run-in-basic-ref.xht", + "==" + ] + ], + {} + ] + ], + "run-in-basic-003.xht": [ + "16121978c32fb280bccc97a5570e4145348f9cf1", [ + null, [ - "/css/css-contain/contain-size-replaced-003-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-size-replaced-003b.html": [ - "b6ae094ad3b5291c1f1d19f3c6e031c574779edc", - [ - null, + [ + "/css/css-display/run-in/run-in-basic-ref.xht", + "==" + ] + ], + {} + ] + ], + "run-in-basic-004.xht": [ + "faad2521e231683fd472ebdc4f2a0edf7f578f19", [ + null, [ - "/css/css-contain/contain-size-replaced-003-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-size-replaced-003c.html": [ - "9018eaa68516394773a92abb6aa0a26ee87382aa", - [ - null, - [ - [ - "/css/css-contain/contain-size-replaced-003-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-size-replaced-004.html": [ - "9f84481504660e4129f10532c761b04fc2030f3f", - [ - null, - [ - [ - "/css/css-contain/contain-size-replaced-004-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-size-replaced-005.html": [ - "754f3608e3a8bf17cbfa12cd7418e12f79f12fa0", - [ - null, - [ - [ - "/css/css-contain/contain-size-replaced-005-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-size-replaced-006.html": [ - "f716ce42a89202a9a4209fed18de407d8ed15ce7", - [ - null, - [ - [ - "/css/css-contain/contain-size-replaced-006-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-size-replaced-007.html": [ - "6a17057bdd5b54f5fa53530afc790bdf8bde8277", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "contain-size-scrollbars-001.html": [ - "26f0d81da8ceac6df92325bf33d15d01c0d3d432", - [ - null, - [ - [ - "/css/css-contain/reference/contain-size-scrollbars-001-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-size-scrollbars-002.html": [ - "4fe1aae744fe239af396a405809ce6cadeef296a", - [ - null, - [ - [ - "/css/css-contain/reference/contain-size-scrollbars-001-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-size-scrollbars-003.html": [ - "4684440bdbfd9886fd34a6ba1144ae1724b6a157", - [ - null, - [ - [ - "/css/css-contain/reference/contain-size-scrollbars-001-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-size-scrollbars-004.html": [ - "6a45fdd23f4b797565e3cfa1934308f62709a0ca", - [ - null, - [ - [ - "/css/css-contain/reference/contain-size-scrollbars-004-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-size-select-001.html": [ - "479eb810aafa161ea49630d699c05f959bd2641e", - [ - null, - [ - [ - "/css/css-contain/reference/contain-size-select-001-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-size-select-002.html": [ - "3fdea550470adb6b061c59447a3c3fb6145b08ce", - [ - null, - [ - [ - "/css/css-contain/reference/contain-size-select-001-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-size-select-elem-001.html": [ - "fbb776a2568ce9d84602b846f91743bc3225d80b", - [ - null, - [ - [ - "/css/css-contain/contain-size-select-elem-001-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-size-select-elem-002.html": [ - "c9fcfbd2cdf8d105de2310f224f8d7c95f9c81f6", - [ - null, - [ - [ - "/css/css-contain/contain-size-select-elem-002-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-size-select-elem-003.html": [ - "85428064ec33a8948f59db0ef2cfe91549999948", - [ - null, - [ - [ - "/css/css-contain/contain-size-select-elem-003-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-size-select-elem-004.html": [ - "818f4a3016862dc42d121bf4fe0322cfebf110f4", - [ - null, - [ - [ - "/css/css-contain/contain-size-select-elem-004-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-size-select-elem-005.html": [ - "127b3cd5f87af2078b1ce8618120c37994a68e5a", - [ - null, - [ - [ - "/css/css-contain/contain-size-select-elem-005-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-size-table-caption-001.html": [ - "8ef46b766690e99c74ce5bda3a248058598546aa", - [ - null, - [ - [ - "/css/css-contain/contain-size-table-caption-001-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-strict-001.html": [ - "e5451e2d94da719407a809ddf91be97c306f05b1", - [ - null, - [ - [ - "/css/css-contain/reference/contain-paint-size-001-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-strict-002.html": [ - "5985fc850f80983fe3e0beb312c737c413f9cccb", - [ - null, - [ - [ - "/css/css-contain/reference/contain-paint-size-001-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-strict-003.html": [ - "903df07868416e738125441831ec6363dfebe9f7", - [ - null, - [ - [ - "/css/css-contain/reference/contain-layout-size-003-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-strict-011.html": [ - "3e1256ba9ce3ff99acccda1d806f46f20086b8f2", - [ - null, - [ - [ - "/css/css-contain/reference/contain-strict-011-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-style-baseline-001.html": [ - "f13b1e8efbf90f6d65b767f57cb3a5f642035e40", - [ - null, - [ - [ - "/css/css-contain/reference/contain-baseline-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-style-breaks-001.html": [ - "9e5c27a075eddb80dfd9305abcba50aeefec5088", - [ - null, - [ - [ - "/css/css-contain/reference/contain-style-breaks-001-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-style-breaks-002.html": [ - "1b089c84a2d862d36d554e06757391dd33a75a78", - [ - null, - [ - [ - "/css/css-contain/reference/contain-style-breaks-001-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-style-breaks-003.html": [ - "2cfd5900c13d1000e4a58624f4be106f2a49ab95", - [ - null, - [ - [ - "/css/css-contain/reference/contain-style-breaks-001-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-style-breaks-004.html": [ - "98e79a6dba3ec6f26016e37d356dc4da90f071de", - [ - null, - [ - [ - "/css/css-contain/reference/contain-style-breaks-004-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-style-breaks-005.html": [ - "bfcd1fbd91695530992ba7614e43cebf606d8be5", - [ - null, - [ - [ - "/css/css-contain/reference/contain-style-breaks-004-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-style-counters-001.html": [ - "bd480858eddaed7ac8e8cd404fa25494b3327fda", - [ - null, + [ + "/css/css-display/run-in/run-in-basic-ref.xht", + "==" + ] + ], + {} + ] + ], + "run-in-basic-005.xht": [ + "47c7632bbb480782dfb6d802c25659ff185a982e", [ + null, [ - "/css/css-contain/reference/contain-style-counters-001-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-style-counters-002.html": [ - "48494ce2be7f7e0039acc8327187417a3b64c495", - [ - null, + [ + "/css/css-display/run-in/run-in-block-ref.xht", + "==" + ] + ], + {} + ] + ], + "run-in-basic-006.xht": [ + "d77b02a0013f344f1566b26b2fce7a182fd052ea", [ + null, [ - "/css/css-contain/reference/contain-style-counters-001-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-style-counters-003.html": [ - "3e3e1b910a67d522eb6d2be82d93fe1d947c4bf0", - [ - null, + [ + "/css/css-display/run-in/run-in-basic-ref.xht", + "==" + ] + ], + {} + ] + ], + "run-in-basic-007.xht": [ + "4138a9f69741b9034d0efb59afcc3ed4601f5976", [ + null, [ - "/css/css-contain/reference/contain-style-counters-003-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-style-counters-004.html": [ - "56e7e3d87e76ed391c57665b2d6a294b5c7d1e3e", - [ - "css/css-contain/contain-style-counters-004.html", + [ + "/css/css-display/run-in/run-in-basic-007-ref.xht", + "==" + ] + ], + {} + ] + ], + "run-in-basic-008.xht": [ + "412eec67868f15dd1bf078d86e608f489cf08342", [ + null, [ - "/css/css-contain/reference/contain-style-counters-004-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-style-counters-005.html": [ - "6e22f7aa59480545053cd10090890174e8a44faf", - [ - null, + [ + "/css/css-display/run-in/run-in-basic-ref.xht", + "==" + ] + ], + {} + ] + ], + "run-in-basic-009.xht": [ + "14c997804d260d37b5dba4f2e19b8639c59dd623", [ + null, [ - "/css/css-contain/reference/contain-style-counters-005-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-style-ol-ordinal-li-container.html": [ - "4076407332474a89c674156f923d003413fb8fa0", - [ - null, + [ + "/css/css-display/run-in/run-in-basic-ref.xht", + "==" + ] + ], + {} + ] + ], + "run-in-basic-010.xht": [ + "2dc30223e6989de345083602caa200148c5cd0d2", [ + null, [ - "/css/css-contain/reference/contain-style-ol-ordinal-li-container-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-style-ol-ordinal-pseudo-reversed.html": [ - "dc895abda3b6aacc9cd7d958efb4791e676c9efa", - [ - null, + [ + "/css/css-display/run-in/run-in-basic-ref.xht", + "==" + ] + ], + {} + ] + ], + "run-in-basic-011.xht": [ + "afc85413af3638c5b4b1e5bb4736f35f77cd3308", [ + null, [ - "/css/css-contain/reference/contain-style-ol-ordinal-pseudo-reversed-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-style-ol-ordinal-pseudo.html": [ - "a9ccfb5930e7f41762b827850ca9a54b5a46b5c1", - [ - null, + [ + "/css/css-display/run-in/run-in-basic-ref.xht", + "==" + ] + ], + {} + ] + ], + "run-in-basic-012.xht": [ + "c5d35bf236a1c5d15281f5b3e602fe5a471476be", [ + null, [ - "/css/css-contain/reference/contain-style-ol-ordinal-pseudo-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-style-ol-ordinal-reversed.html": [ - "22f2f20cffebfacb38ea70b718966514f5d5a768", - [ - null, + [ + "/css/css-display/run-in/run-in-basic-ref.xht", + "==" + ] + ], + {} + ] + ], + "run-in-basic-013.xht": [ + "af810ac289df4bd1c7ebe433f16c31e1266bee4c", [ + null, [ - "/css/css-contain/reference/contain-style-ol-ordinal-reversed-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-style-ol-ordinal-start-reversed.html": [ - "175aa814031f6bdc3f8156aa289d2f97fa3678dd", - [ - null, + [ + "/css/css-display/run-in/run-in-basic-ref.xht", + "==" + ] + ], + {} + ] + ], + "run-in-basic-014.xht": [ + "9f52e92cecaac7e478e13440f022669327a82e4a", [ + null, [ - "/css/css-contain/reference/contain-style-ol-ordinal-start-reversed-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-style-ol-ordinal-start.html": [ - "dc23b65f1455301cd3d8319147b8e6ac204a3f6a", - [ - null, + [ + "/css/css-display/run-in/run-in-pre-ref.xht", + "==" + ] + ], + {} + ] + ], + "run-in-basic-015.xht": [ + "8eee5e98df1e94ab27a44041eddc5f022ab8d522", [ + null, [ - "/css/css-contain/reference/contain-style-ol-ordinal-start-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-style-ol-ordinal.html": [ - "0901325a4ef1a700d169bd7d9953b926b5cc1530", - [ - null, + [ + "/css/css-display/run-in/run-in-pre-ref.xht", + "==" + ] + ], + {} + ] + ], + "run-in-basic-016.xht": [ + "4e8d71ae890e58d3c0edb426b42df02e6d932ee9", [ + null, [ - "/css/css-contain/reference/contain-style-ol-ordinal-ref.html", - "==" - ] - ], - {} - ] - ], - "contain-subgrid-001.html": [ - "59a104bfbad86c146ae3d9653478e11b645af7cd", - [ - null, + [ + "/css/css-display/run-in/run-in-pre-ref.xht", + "==" + ] + ], + {} + ] + ], + "run-in-basic-017.xht": [ + "065fe751f38452aec883fa1b3ca04a405d0e3675", [ + null, [ - "/css/css-contain/reference/contain-subgrid-001.html", - "==" - ] - ], - {} - ] - ], - "container-queries": { - "canvas-as-container-001.html": [ - "f904d1fe249bb3ad773f054b7f930deba36eccce", + [ + "/css/css-display/run-in/run-in-pre-ref.xht", + "==" + ] + ], + {} + ] + ], + "run-in-basic-018.xht": [ + "d776c2df87c61c32070d015297058d916beee716", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-display/run-in/run-in-basic-ref.xht", "==" ] ], {} ] ], - "canvas-as-container-002.html": [ - "689feeb5fffdc25ccd03e41c29a317ad1018ced2", + "run-in-block-between-001.xht": [ + "503924f23b5c5e6afc8a5feb2e649725bc14e7d5", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-display/run-in/run-in-text-ref.xht", "==" ] ], {} ] ], - "canvas-as-container-003.html": [ - "74199cc72b7e68b8d51eb783439e58e12f4ee867", + "run-in-block-between-002.xht": [ + "eeace162a0ae4e3dce4d41643e9070a863743402", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-display/run-in/run-in-text-ref.xht", "==" ] ], {} ] ], - "canvas-as-container-004.html": [ - "b23846382b743d260ea87a291dec31af843c16e9", + "run-in-block-between-003.xht": [ + "ca901199c6815a53dc07b6055b40e528aeb47944", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-display/run-in/run-in-basic-ref.xht", "==" ] ], {} ] ], - "change-display-in-container.html": [ - "8c58d22b7de99f0234ed2b3e45065a2bba2161c8", + "run-in-breaking-001.xht": [ + "7ec7bf8e3fca25d29f2d312990ab01975ad8040d", [ null, [ [ - "/css/css-contain/container-queries/change-display-in-container-ref.html", + "/css/css-display/run-in/run-in-breaking-001-ref.xht", "==" ] ], {} ] ], - "chrome-legacy-skip-recalc.html": [ - "b86a4091a2ca4909515746b2904508908e278816", + "run-in-breaking-002.xht": [ + "ac48e594f0265eba06e02b68309d92ef8fe4a2b0", [ null, [ [ - "/css/reference/pass_if_pass_below.html", + "/css/css-display/run-in/run-in-breaking-002-ref.xht", "==" ] ], {} ] ], - "container-for-cue.html": [ - "a460f79af061de93f269ad56455f878408437b85", + "run-in-clear-001.xht": [ + "47afe8d8630e32db0c6c7ede9bf22ff088544802", [ - "css/css-contain/container-queries/container-for-cue.html", + null, [ [ - "/css/css-contain/container-queries/container-for-cue-ref.html", + "/css/css-display/run-in/run-in-text-ref.xht", "==" ] ], {} ] ], - "container-units-gradient-invalidation.html": [ - "665a14dcaa1264e456c9a2ae7e7e47ea11a722b6", + "run-in-clear-002.xht": [ + "f392b4f47d9c45892e0702a4c68372c83fabf55f", [ null, [ [ - "/css/css-contain/container-queries/container-units-gradient-ref.html", + "/css/css-display/run-in/run-in-text-ref.xht", "==" ] ], {} ] ], - "container-units-gradient.html": [ - "3d6f5378c22fd33554309420fee047c68eaa51e2", + "run-in-contains-abspos-001.xht": [ + "83b3be2a60eefee38b5e1e81b8f112b2c62cbe95", [ null, [ [ - "/css/css-contain/container-queries/container-units-gradient-ref.html", + "/css/css-display/run-in/run-in-basic-ref.xht", "==" ] ], {} ] ], - "container-units-rule-cache.html": [ - "cc93f7793ae6bd57a8ee30e5d6322a6ff43e93cb", + "run-in-contains-block-001.xht": [ + "ec4f293e9c0f48fbc78d7992d277b393738de922", [ - "css/css-contain/container-queries/container-units-rule-cache.html", + null, [ [ - "/css/css-contain/container-queries/container-units-rule-cache-ref.html", + "/css/css-display/run-in/run-in-text-ref.xht", "==" ] ], {} ] ], - "container-units-sharing-via-rule-node.html": [ - "e1a5c714516bfea5e482acc4f5b9811bbc975a21", + "run-in-contains-block-002.xht": [ + "d0fcecd408073f8d70bbcb262aba7e9c3ea93e8b", [ - "css/css-contain/container-queries/container-units-sharing-via-rule-node.html", + null, [ [ - "/css/css-contain/container-queries/container-units-sharing-via-rule-node-ref.html", + "/css/css-display/run-in/run-in-text-ref.xht", "==" ] ], {} ] ], - "counters-in-container-dynamic.html": [ - "d85ab6cb425ba792914b39901cd3f3ba3943b606", + "run-in-contains-block-003.xht": [ + "83d04ce737a7492936584ead897ebed212f5b73c", [ null, [ [ - "/css/css-contain/container-queries/counters-ref.html", + "/css/css-display/run-in/run-in-basic-ref.xht", "==" ] ], {} ] ], - "counters-in-container.html": [ - "376f52ea7c2ccccda15e2f99af9ce08bee42f424", + "run-in-contains-block-004.xht": [ + "da9a9e42739a4a855dd4f40e5e93a521724430d4", [ null, [ [ - "/css/css-contain/container-queries/counters-ref.html", + "/css/css-display/run-in/run-in-text-ref.xht", "==" ] ], {} ] ], - "custom-layout-container-001.https.html": [ - "8f301e8ebf626035f967d01e585e0832eefe72de", + "run-in-contains-block-005.xht": [ + "c55842087af26d01507185f1b770d24aa9822aab", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-display/run-in/run-in-basic-ref.xht", "==" ] ], {} ] ], - "dialog-backdrop-create.html": [ - "ef74973addc2ffa660ee38b84686982cbb889a92", + "run-in-contains-block-inside-inline-001.xht": [ + "656558368b118df4c489a71a3cc3d71d3d4fae8c", [ - "css/css-contain/container-queries/dialog-backdrop-create.html", + null, [ [ - "/css/css-contain/container-queries/top-layer-dialog-backdrop-ref.html", + "/css/css-display/run-in/run-in-text-ref.xht", "==" ] ], {} ] ], - "dialog-backdrop-remove.html": [ - "47b40304924aa00613fd520083d12ae65fa82596", + "run-in-contains-block-inside-inline-002.xht": [ + "4c47b020f49853c1400252b09e0f3586cb225242", [ null, [ [ - "/css/css-contain/container-queries/top-layer-dialog-backdrop-ref.html", + "/css/css-display/run-in/run-in-text-ref.xht", "==" ] ], {} ] ], - "display-in-container.html": [ - "a2a4cd731c8b90b4dcfda30a015b293deef56968", + "run-in-contains-block-inside-inline-003.xht": [ + "a3b56dcb47845ad7311901cd0fe28d7d6e2eb672", [ null, [ [ - "/css/css-contain/container-queries/display-in-container-ref.html", + "/css/css-display/run-in/run-in-basic-ref.xht", "==" ] ], {} ] ], - "fieldset-legend-change.html": [ - "15b44a0e5231e501929642cc8b088e7204c9d8b4", + "run-in-contains-float-001.xht": [ + "4b1cf5df5d7215b19ab0220cf81e9e62d156d429", [ null, [ [ - "/css/css-contain/container-queries/fieldset-legend-change-ref.html", + "/css/css-display/run-in/run-in-basic-ref.xht", "==" ] ], {} ] ], - "inline-size-bfc-floats.html": [ - "88b81c67599576677aec1d0b6ac89d4414d15582", + "run-in-contains-inline-001.xht": [ + "15621f1071736f7d40696bf826d34f318e777ee1", [ null, [ [ - "/css/css-contain/container-queries/inline-size-bfc-floats-ref.html", + "/css/css-display/run-in/run-in-basic-ref.xht", "==" ] ], {} ] ], - "inner-first-line-non-matching.html": [ - "5f39124e514bcfc2b7293b6e36c7e3c3f4bbd5df", + "run-in-contains-inline-002.xht": [ + "e37201ff339a230052c479f4b7818d1f4de2ee91", [ null, [ [ - "/css/css-contain/container-queries/inner-first-line-non-matching-ref.html", + "/css/css-display/run-in/run-in-basic-ref.xht", "==" ] ], {} ] ], - "multicol-inside-container.html": [ - "9fc8393a513f236996d60fdc39e2401a3dba0376", + "run-in-contains-inline-003.xht": [ + "413c386054fc2e96792afd3e1a468131e3e5102e", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-display/run-in/run-in-basic-ref.xht", "==" ] ], {} ] ], - "pseudo-elements-002.html": [ - "a44c64c70071109bca11ba0f910cb14213522c9f", + "run-in-contains-inline-004.xht": [ + "6c4010759489b2dbdd85884f45190f4a0470f11c", [ - "css/css-contain/container-queries/pseudo-elements-002.html", + null, [ [ - "/css/css-contain/container-queries/pseudo-elements-002-ref.html", + "/css/css-display/run-in/run-in-basic-ref.xht", "==" ] ], {} ] ], - "pseudo-elements-002b.html": [ - "e1874e035b0784abeccfce306eaa3203b41daf37", + "run-in-contains-inline-005.xht": [ + "6be696b4a1262bc28ebd193d5ad73963cdccad2d", [ - "css/css-contain/container-queries/pseudo-elements-002b.html", + null, [ [ - "/css/css-contain/container-queries/pseudo-elements-002b-ref.html", + "/css/css-display/run-in/run-in-basic-ref.xht", "==" ] ], {} ] ], - "pseudo-elements-009.html": [ - "769a5962ff706db4ba2d5a29afaa348c94061c42", + "run-in-contains-inline-006.xht": [ + "7cd2ad774fa1e5f6865fc7b503561961c089140c", [ - "css/css-contain/container-queries/pseudo-elements-009.html", + null, [ [ - "/css/css-contain/container-queries/pseudo-elements-009-ref.html", + "/css/css-display/run-in/run-in-basic-ref.xht", "==" ] ], {} ] ], - "pseudo-elements-010.html": [ - "e2e8f8659c500e1d91798cbd03437621d7ae01af", + "run-in-contains-inline-007.xht": [ + "9ff76e714e12327bb8d9d13168df09fc9f72316d", [ - "css/css-contain/container-queries/pseudo-elements-010.html", + null, [ [ - "/css/css-contain/container-queries/pseudo-elements-010-ref.html", + "/css/css-display/run-in/run-in-basic-ref.xht", "==" ] ], {} ] ], - "pseudo-elements-011.html": [ - "26dabbe1dfe58a3350ec4fbf9a9671943a174a8d", + "run-in-contains-inline-block-001.xht": [ + "663b9483086097de7171a89d77ef9964541b017e", [ - "css/css-contain/container-queries/pseudo-elements-011.html", + null, [ [ - "/css/css-contain/container-queries/pseudo-elements-010-ref.html", + "/css/css-display/run-in/run-in-basic-ref.xht", "==" ] ], {} ] ], - "pseudo-elements-012.html": [ - "7c36d9270d92be6b017253dd4080b8a1e8c61546", + "run-in-contains-inline-table-001.xht": [ + "b916dbc711802f06fa9fc6b36e5d38d203e6b28a", [ - "css/css-contain/container-queries/pseudo-elements-012.html", + null, [ [ - "/css/css-contain/container-queries/pseudo-elements-010-ref.html", + "/css/css-display/run-in/run-in-basic-ref.xht", "==" ] ], {} ] ], - "resize-while-content-visibility-hidden.html": [ - "a3658f7f34fdda98b2d1198fecce3b6e1a5fef38", + "run-in-contains-relpos-block-001.xht": [ + "a22138e0c0d494710d550a033c622d4ada190ba6", [ null, [ [ - "/css/css-contain/container-queries/resize-while-content-visibility-hidden-ref.html", + "/css/css-display/run-in/run-in-text-ref.xht", "==" ] ], {} ] ], - "size-container-with-quotes.html": [ - "b88f882cd043195bb4f1b323c369515fe6107e36", + "run-in-contains-relpos-block-002.xht": [ + "64fa6f6e1abed68879d4e19e8a5f78ad7127d8a8", [ - "css/css-contain/container-queries/size-container-with-quotes.html", + null, [ [ - "/css/css-contain/container-queries/size-container-with-quotes-ref.html", + "/css/css-display/run-in/run-in-text-ref.xht", "==" ] ], {} ] ], - "svg-foreignobject-no-size-container.html": [ - "38fc493a16259bec9091850aed09fbeeae313187", + "run-in-contains-relpos-block-003.xht": [ + "c5756fce4840a201ed57449a57a10f253d95e4de", [ null, [ [ - "/css/css-contain/container-queries/svg-foreignobject-no-size-container-ref.html", + "/css/css-display/run-in/run-in-basic-ref.xht", "==" ] ], {} ] ], - "svg-g-no-size-container.html": [ - "ed9e85367676d988ebff81d60a9ab9201b6ef8d6", + "run-in-contains-run-in-001.xht": [ + "cebbfef67c40d38ee9eaa62e4b65208cac62d699", [ null, [ [ - "/css/css-contain/container-queries/svg-g-no-size-container-ref.html", + "/css/css-display/run-in/run-in-text-ref.xht", "==" ] ], {} ] ], - "table-inside-container-changing-display.html": [ - "33a4f4fe721b11e6ea10b0c15b8e42465fd1f1f1", + "run-in-contains-run-in-002.xht": [ + "e3f978be084e0047cc0ccc92d29f6ebf434c0dc4", [ null, [ [ - "/css/css-contain/container-queries/table-inside-container-changing-display-ref.html", + "/css/css-display/run-in/run-in-text-ref.xht", "==" ] ], {} ] ], - "top-layer-dialog-backdrop.html": [ - "25635167a54ce461a221e2c649c48fc897245581", + "run-in-contains-run-in-003.xht": [ + "5a812b382b2239a9014737145cb0025132ca681a", [ null, [ [ - "/css/css-contain/container-queries/top-layer-dialog-backdrop-ref.html", + "/css/css-display/run-in/run-in-basic-ref.xht", "==" ] ], {} ] ], - "whitespace-update-after-removal.html": [ - "a7df55efc6eb9ce9b25646ce614cc922dcecf7ee", + "run-in-contains-table-001.xht": [ + "9001a7e4e0960e7be73dbc97f4039236ccde56dc", [ null, [ [ - "/css/css-contain/container-queries/change-display-in-container-ref.html", + "/css/css-display/run-in/run-in-text-ref.xht", "==" ] ], {} ] - ] - }, - "content-visibility": { - "content-visibility-001.html": [ - "b6b10164e81115e09342345c61d5c19ab5a75304", + ], + "run-in-contains-table-002.xht": [ + "3fd6adda3a6445b312e9e280e20701787016d8a1", [ null, [ [ - "/css/css-contain/content-visibility/container-ref.html", + "/css/css-display/run-in/run-in-text-ref.xht", "==" ] ], {} ] ], - "content-visibility-002.html": [ - "4d838218393f87cb1cfa0959fe2f7e98b4f48d07", + "run-in-contains-table-003.xht": [ + "ab76e87e2d1c4574dc7f9d9210edf14d6aed7de7", [ null, [ [ - "/css/css-contain/content-visibility/container-with-child-ref.html", + "/css/css-display/run-in/run-in-basic-ref.xht", "==" ] ], {} ] ], - "content-visibility-003.html": [ - "d3cc902b90fd5d06fa2b9f440e704015e858d509", + "run-in-contains-table-caption-001.xht": [ + "d98b535a3de0c6bfa7e7a8bf8edf38e0307674e0", [ null, [ [ - "/css/css-contain/content-visibility/content-visibility-003-ref.html", + "/css/css-display/run-in/run-in-basic-ref.xht", "==" ] ], {} ] ], - "content-visibility-004.html": [ - "7091dd930dd984d75c13e23474cb5366736e568e", + "run-in-contains-table-cell-001.xht": [ + "433e1c65deff43cc9f6633bf852ed6f896803f7b", [ null, [ [ - "/css/css-contain/content-visibility/content-visibility-004-ref.html", + "/css/css-display/run-in/run-in-basic-ref.xht", "==" ] ], {} ] ], - "content-visibility-005.html": [ - "7b4a791cc7e3d3a414bc5f4a210a438ffb7e079d", + "run-in-contains-table-column-001.xht": [ + "d9fc2f03185b179a032dfdbdd18b3dd65942582a", [ null, [ [ - "/css/css-contain/content-visibility/container-ref.html", + "/css/css-display/run-in/run-in-basic-ref.xht", "==" ] ], {} ] ], - "content-visibility-006.html": [ - "8a0a3db0d1027dbcecf305cf54f3a7815776d41b", + "run-in-contains-table-column-group-001.xht": [ + "f4aeb8b7b03c92bd3a6a110c6d6091f9bffcb804", [ null, [ [ - "/css/css-contain/content-visibility/container-ref.html", + "/css/css-display/run-in/run-in-basic-ref.xht", "==" ] ], {} ] ], - "content-visibility-007.html": [ - "eec9b1d900cfd4c2cd2d0903c61af6f25249ebe7", + "run-in-contains-table-inside-inline-001.xht": [ + "6270d647f9273776d4d5978027f2453a7814bd62", [ null, [ [ - "/css/css-contain/content-visibility/container-ref.html", + "/css/css-display/run-in/run-in-text-ref.xht", "==" ] ], {} ] ], - "content-visibility-008.html": [ - "fec85498793781106fff4cbe9367b06abf97d1b1", + "run-in-contains-table-inside-inline-002.xht": [ + "edd543d45b08c52196d8b8f2a5957845fab0ef78", [ null, [ [ - "/css/css-contain/content-visibility/container-ref.html", + "/css/css-display/run-in/run-in-text-ref.xht", "==" ] ], {} ] ], - "content-visibility-009.html": [ - "d65a475233638d950a482c75cb4f3144be03ebf6", + "run-in-contains-table-inside-inline-003.xht": [ + "5df9c526c3b7d631dfbe9de0e98228f16e862922", [ null, [ [ - "/css/css-contain/content-visibility/positioned-container-ref.html", + "/css/css-display/run-in/run-in-basic-ref.xht", "==" ] ], {} ] ], - "content-visibility-010.html": [ - "a613bf2754d79654e6115f0efb1fa4c26c25bfc0", + "run-in-contains-table-row-001.xht": [ + "eb1c69292cd6f51a52430c7272a884a5077279d3", [ null, [ [ - "/css/css-contain/content-visibility/container-ref.html", + "/css/css-display/run-in/run-in-basic-ref.xht", "==" ] ], {} ] ], - "content-visibility-011.html": [ - "c69c36900f61e3d269039533d2c046a10ef6045b", + "run-in-contains-table-row-group-001.xht": [ + "9d8936f05fcdadf09e7377981b0cecd9b1c1e300", [ null, [ [ - "/css/css-contain/content-visibility/positioned-container-ref.html", + "/css/css-display/run-in/run-in-basic-ref.xht", "==" ] ], {} ] ], - "content-visibility-012.html": [ - "6a52890256a2f4f68435f6c2143df127267e8590", + "run-in-display-none-between-001.xht": [ + "bdcd34d277895b197120b2b43f571c39f8c199bd", [ null, [ [ - "/css/css-contain/content-visibility/container-with-child-ref.html", + "/css/css-display/run-in/run-in-basic-ref.xht", "==" ] ], {} ] ], - "content-visibility-013.html": [ - "18c8b9dfeec4ea8a877c724442e70401bdfe4365", + "run-in-display-none-between-002.xht": [ + "c9dddee3cdc86560f8aa0df8cbedd37af97d4b63", [ null, [ [ - "/css/css-contain/content-visibility/container-with-child-ref.html", + "/css/css-display/run-in/run-in-basic-ref.xht", "==" ] ], {} ] ], - "content-visibility-014.html": [ - "e3ee8af0878003f56095313e1208b5896fc4c946", + "run-in-display-none-between-003.xht": [ + "ac28260492b114d30c552f5c16e66a9f64dedea5", [ null, [ [ - "/css/css-contain/content-visibility/container-with-child-ref.html", + "/css/css-display/run-in/run-in-text-ref.xht", "==" ] ], {} ] ], - "content-visibility-019.sub.https.html": [ - "fe48390a7c012fe4206c0c2aeaf05c3e80138789", + "run-in-fixedpos-between-001.xht": [ + "11396660f2dce2cd03b1334b162342909da7fe75", [ - "css/css-contain/content-visibility/content-visibility-019.sub.https.html", + null, [ [ - "/css/css-contain/content-visibility/content-visibility-019-ref.html", + "/css/css-display/run-in/run-in-basic-ref.xht", "==" ] ], {} ] ], - "content-visibility-020.html": [ - "38dbcd88bcc9ed28adca1bd0086e83f752e0e7fa", + "run-in-fixedpos-between-002.xht": [ + "e97fe47cad5ea3e0d5735fa9bca849da83ad2916", [ - "css/css-contain/content-visibility/content-visibility-020.html", + null, [ [ - "/css/css-contain/content-visibility/content-visibility-020-ref.html", + "/css/css-display/run-in/run-in-basic-ref.xht", "==" ] ], {} ] ], - "content-visibility-021.html": [ - "f9e597cd557855eb5d460446d31c749ce4ebae8a", + "run-in-fixedpos-between-003.xht": [ + "9af28a390c701e1789bd55f07736c20d6123e323", [ null, [ [ - "/css/css-contain/content-visibility/content-visibility-021-ref.html", + "/css/css-display/run-in/run-in-text-ref.xht", "==" ] ], {} ] ], - "content-visibility-022.html": [ - "8912d70ed41a0129c97768b62e29436d14b60768", + "run-in-float-between-001.xht": [ + "3ac540cc1c7e91ecf365660e5134166f988f8cec", [ null, [ [ - "/css/css-contain/content-visibility/content-visibility-022-ref.html", + "/css/css-display/run-in/run-in-basic-ref.xht", "==" ] ], {} ] ], - "content-visibility-023.html": [ - "b561a8b0cdb17a6e57b0a50f8690bcb6fb7fd404", + "run-in-float-between-002.xht": [ + "a5ad3c7de43699e62e799ef77cc633876f337183", [ null, [ [ - "/css/css-contain/content-visibility/content-visibility-023-ref.html", + "/css/css-display/run-in/run-in-basic-ref.xht", "==" ] ], {} ] ], - "content-visibility-024.html": [ - "2c8f59d745a72a994424ce0dd89d0fefd35eade8", + "run-in-float-between-003.xht": [ + "8d4b9e52f2f38d53b48962653a75a4cc4e95e062", [ - "css/css-contain/content-visibility/content-visibility-024.html", + null, [ [ - "/css/css-contain/content-visibility/content-visibility-024-ref.html", + "/css/css-display/run-in/run-in-text-ref.xht", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 5 - ], - [ - 0, - 100 - ] - ] - ] - ] - } + {} ] ], - "content-visibility-025.html": [ - "019cd1cc8368cc94af56eb8b93c57979d870ac50", + "run-in-inherit-001.xht": [ + "f87e093ea97b11c54656f19e1875a5cb83eaca2c", [ null, [ [ - "/css/css-contain/content-visibility/content-visibility-025-ref.html", + "/css/css-display/run-in/run-in-inherit-001-ref.xht", "==" ] ], {} ] ], - "content-visibility-027.html": [ - "912cefd815de2b505993df82e69381f615702693", + "run-in-inline-between-001.xht": [ + "76710eafd99209aaaa73bac5567d0b34f77ba41e", [ null, [ [ - "/css/css-contain/content-visibility/content-visibility-027-ref.html", + "/css/css-display/run-in/run-in-text-ref.xht", "==" ] ], {} ] ], - "content-visibility-028.html": [ - "6a8a1e2df042661142a1401d8aab91a22acf561d", + "run-in-inline-between-002.xht": [ + "bba6f3b24632ce627a5ab919dc5accb36791864c", [ - "css/css-contain/content-visibility/content-visibility-028.html", + null, [ [ - "/css/css-contain/content-visibility/container-with-child-ref.html", + "/css/css-display/run-in/run-in-text-ref.xht", "==" ] ], {} ] ], - "content-visibility-032.html": [ - "0a8894f75e145b3abd080597785b08b818f2c470", + "run-in-inline-between-003.xht": [ + "358b4231c99e6ea94512899fba4bc1d5fcede32e", [ null, [ [ - "/css/css-contain/content-visibility/content-visibility-032-ref.html", + "/css/css-display/run-in/run-in-basic-ref.xht", "==" ] ], {} ] ], - "content-visibility-033.sub.https.html": [ - "59bad85af9883abeb36fe92c49b433fdfb6af1c2", + "run-in-inline-block-between-001.xht": [ + "17271636b2a596670febb594963f65732f605c50", [ null, [ [ - "/css/css-contain/content-visibility/content-visibility-033-ref.html", + "/css/css-display/run-in/run-in-text-ref.xht", "==" ] ], {} ] ], - "content-visibility-034.html": [ - "d45200611bc51e32a1d329124c84e344788d37b3", + "run-in-inline-block-between-002.xht": [ + "1ceb4bed25ac2e33494d97c505b29a24f26fc715", [ null, [ [ - "/css/css-contain/content-visibility/content-visibility-034-ref.html", + "/css/css-display/run-in/run-in-text-ref.xht", "==" ] ], {} ] ], - "content-visibility-037.html": [ - "c40b22026b4e5f80d7f41db5df74089e0006251f", + "run-in-inline-block-between-003.xht": [ + "351f27756eadb839a55248a41dd94a05ca3e800d", [ null, [ [ - "/css/css-contain/content-visibility/container-ref.html", + "/css/css-display/run-in/run-in-basic-ref.xht", "==" ] ], {} ] ], - "content-visibility-040.html": [ - "a7add41687aff7541332bb90c2e41ff8b9052a4b", + "run-in-inline-table-between-001.xht": [ + "c7449056b03566f7133bae3df120aed6806493a4", [ - "css/css-contain/content-visibility/content-visibility-040.html", + null, [ [ - "/css/css-contain/content-visibility/container-ref.html", + "/css/css-display/run-in/run-in-text-ref.xht", "==" ] ], {} ] ], - "content-visibility-041.html": [ - "82c4feb131635a273d3f311fc4b8b2dabe2c3852", + "run-in-inline-table-between-002.xht": [ + "49164c05ecf09dc7097e6cf43302f9ca836474cb", [ null, [ [ - "/css/css-contain/content-visibility/container-ref.html", + "/css/css-display/run-in/run-in-text-ref.xht", "==" ] ], {} ] ], - "content-visibility-042.html": [ - "381af12dc56c7bdd088d2d886dee0e693149eb10", + "run-in-inline-table-between-003.xht": [ + "9b73d0cadc359981644d816adfd00296dcbaae1f", [ null, [ [ - "/css/css-contain/content-visibility/content-visibility-042-ref.html", + "/css/css-display/run-in/run-in-basic-ref.xht", "==" ] ], {} ] ], - "content-visibility-043.html": [ - "a230315e693d26ef59a21458366e5baa692e1086", + "run-in-listitem-between-001.xht": [ + "bfe6d35ca74665c4af5b75da13f58bdeb6eeb8c5", [ null, [ [ - "/css/css-contain/content-visibility/container-ref.html", + "/css/css-display/run-in/run-in-text-ref.xht", "==" ] ], {} ] ], - "content-visibility-045.html": [ - "b965d4d1a0a6e663b0ecae84c9af180012eec82e", + "run-in-listitem-between-002.xht": [ + "1eda2aa7b27c48a61d746aa852c50981e659737c", [ null, [ [ - "/css/css-contain/content-visibility/container-ref.html", + "/css/css-display/run-in/run-in-text-ref.xht", "==" ] ], {} ] ], - "content-visibility-046.html": [ - "6f1cd28e397d8047520cdcf2a0be2866d049119d", + "run-in-listitem-between-003.xht": [ + "06fda02c743ffbadf4f8d0b1325a295e17afa7a5", [ null, [ [ - "/css/css-contain/content-visibility/container-with-child-ref.html", + "/css/css-display/run-in/run-in-basic-ref.xht", "==" ] ], {} ] ], - "content-visibility-049.html": [ - "7a3f138d66073496143e952ac7ce12d2466a6428", + "run-in-relpos-between-001.xht": [ + "c16b9fc942786390e15ffcd72bd8ac2edec4ff8e", [ - "css/css-contain/content-visibility/content-visibility-049.html", + null, [ [ - "/css/css-contain/content-visibility/content-visibility-049-ref.html", + "/css/css-display/run-in/run-in-text-ref.xht", "==" ] ], {} ] ], - "content-visibility-051.html": [ - "15718cad32ce09c56e46e158e6da0ee9173928b0", + "run-in-relpos-between-002.xht": [ + "bb7c91a0c6155de8d15027f63cf69617d36b768f", [ null, [ [ - "/css/css-contain/content-visibility/container-ref.html", + "/css/css-display/run-in/run-in-text-ref.xht", "==" ] ], {} ] ], - "content-visibility-052.html": [ - "2df45ae149e7c955b2f1d4e6f8dc21ea4a8e7ba9", + "run-in-relpos-between-003.xht": [ + "cea7d4f4b0e2740b911dc4f0a364fc44ef25b950", [ null, [ [ - "/css/css-contain/content-visibility/container-with-pos-children-ref.html", + "/css/css-display/run-in/run-in-basic-ref.xht", "==" ] ], {} ] ], - "content-visibility-055.html": [ - "3dae93a504ce8e81b16b6284eef10cd0649a58b1", + "run-in-replaced-001.xht": [ + "01af2d38a326f9c46ea89c4698ba62c3c9436f9a", [ null, [ [ - "/css/css-contain/content-visibility/spacer-and-container-scrolled-ref.html", + "/css/css-display/run-in/run-in-replaced-001-ref.xht", "==" ] ], {} ] ], - "content-visibility-056.html": [ - "dae94aa09509a3f139e45c4b6f4be1eb270a6aa7", + "run-in-restyle-001.xht": [ + "05bd61a0b5996ad35fab406322bf7c2049684307", [ null, [ [ - "/css/css-contain/content-visibility/spacer-and-container-ref.html", + "/css/css-display/run-in/run-in-text-ref.xht", "==" ] ], {} ] ], - "content-visibility-057.html": [ - "d6a0d4f697fec394cb9e67cd93b83303f62c4702", + "run-in-restyle-002.xht": [ + "40d23e4fb0a20b88ef7017cbd0cf6e06c893891b", [ null, [ [ - "/css/css-contain/content-visibility/container-with-child-ref.html", + "/css/css-display/run-in/run-in-text-ref.xht", "==" ] ], {} ] ], - "content-visibility-058.html": [ - "fe9d70b60f6a1f2b245f5415ef503dac31704480", + "run-in-restyle-003.xht": [ + "226081278db0881c3274934ea0e87aab56ea79d5", [ null, [ [ - "/css/css-contain/content-visibility/content-visibility-058-ref.html", + "/css/css-display/run-in/run-in-basic-ref.xht", "==" ] ], {} ] ], - "content-visibility-060.html": [ - "84b7bc9c1493dffa06a18135747f96c57ea1be8e", + "run-in-run-in-between-001.xht": [ + "13077566c010b927846f499e14252cbe9415ff9a", [ null, [ [ - "/css/css-contain/content-visibility/spacer-and-container-ref.html", + "/css/css-display/run-in/run-in-text-ref.xht", "==" ] ], {} ] ], - "content-visibility-061.html": [ - "2181799a2960b617e4d25b3a9d502ae5b4fb53c2", + "run-in-run-in-between-002.xht": [ + "220c45ed246b2a8e5e46976b676b2837c0d21d56", [ null, [ [ - "/css/css-contain/content-visibility/spacer-and-container-ref.html", + "/css/css-display/run-in/run-in-text-ref.xht", "==" ] ], {} ] ], - "content-visibility-062.html": [ - "ab99e82014d4725b294342d35f681eeac087fe91", + "run-in-run-in-between-003.xht": [ + "555774420c12484bb9469b7fad4cd40c6c092bb9", [ null, [ [ - "/css/css-contain/content-visibility/spacer-and-container-ref.html", + "/css/css-display/run-in/run-in-basic-ref.xht", "==" ] ], {} ] ], - "content-visibility-063.html": [ - "e8a01460199e6ffa9aa2423034161593d769f507", + "run-in-run-in-between-004.xht": [ + "c9af78ddb7142e36ec36612da1b8d5f98c1aadf7", [ null, [ [ - "/css/css-contain/content-visibility/spacer-and-container-ref.html", + "/css/css-display/run-in/run-in-text-ref.xht", "==" ] ], {} ] ], - "content-visibility-064.html": [ - "1098e7595795b655d9f756ac2624ae179cd3b5c3", + "run-in-run-in-between-005.xht": [ + "9839d9bd59dae1f3621fe3959d643cb4c6fa9026", [ null, [ [ - "/css/css-contain/content-visibility/content-visibility-064-ref.html", + "/css/css-display/run-in/run-in-text-ref.xht", "==" ] ], {} ] ], - "content-visibility-065.html": [ - "341f259b4cd378280098c35906ca78fd4ac9183d", + "run-in-run-in-between-006.xht": [ + "ae2bceef2dfdd25ec3a067b42b0350fffc5cd140", [ null, [ [ - "/css/css-contain/content-visibility/spacer-and-container-ref.html", + "/css/css-display/run-in/run-in-basic-ref.xht", "==" ] ], {} ] ], - "content-visibility-066.html": [ - "d608d301f42fdf1851adeba0e01657d038267405", + "run-in-run-in-between-007.xht": [ + "910831a74226122a872a77ca65fdb8cda3e9d4ed", [ null, [ [ - "/css/css-contain/content-visibility/spacer-and-container-ref.html", + "/css/css-display/run-in/run-in-text-ref.xht", "==" ] ], {} ] ], - "content-visibility-067.html": [ - "843a3bb6a93dc737d412807e60b0209d8ee60813", + "run-in-run-in-between-008.xht": [ + "00e24408e805443925bbcd276de904797510d44c", [ null, [ [ - "/css/css-contain/content-visibility/spacer-and-container-ref.html", + "/css/css-display/run-in/run-in-text-ref.xht", "==" ] ], {} ] ], - "content-visibility-073.html": [ - "555479b8800b5e71548c243357267aa9255dc113", + "run-in-table-between-001.xht": [ + "79a98d1fb38f6bd2f60620dd9c80a9a08e93d9bf", [ null, [ [ - "/css/css-contain/content-visibility/inline-container-with-child-ref.html", + "/css/css-display/run-in/run-in-text-ref.xht", "==" ] ], {} ] ], - "content-visibility-074.html": [ - "ff6381ce3d0950c0b3c3822171c2b81d851ded15", + "run-in-table-between-002.xht": [ + "2ca80275469cdec5c0a90f30f9bd06301cc15b79", [ null, [ [ - "/css/css-contain/content-visibility/content-visibility-074-ref.html", + "/css/css-display/run-in/run-in-text-ref.xht", "==" ] ], {} ] ], - "content-visibility-075.html": [ - "ade27bdfaa72e776fc268514adcc9899c1341c2d", + "run-in-table-between-003.xht": [ + "aa4d9f4497f99a6bb8e1da5c5e576cb0d5e8aa5e", [ - "css/css-contain/content-visibility/content-visibility-075.html", + null, [ [ - "/css/css-contain/content-visibility/content-visibility-075-ref.html", + "/css/css-display/run-in/run-in-basic-ref.xht", "==" ] ], {} ] ], - "content-visibility-076.html": [ - "2aadcde0c70bef0b40d15c32609774b23eb5f9cb", + "run-in-table-cell-between-001.xht": [ + "18fcc2f79700a6dba0ea16b33cebd4551d0b9922", [ - "css/css-contain/content-visibility/content-visibility-076.html", + null, [ [ - "/css/css-contain/content-visibility/content-visibility-075-ref.html", + "/css/css-display/run-in/run-in-text-ref.xht", "==" ] ], {} ] ], - "content-visibility-078.html": [ - "27e300cf113e07b5ee5086f01bf2ac53a53f7dfd", + "run-in-table-cell-between-002.xht": [ + "04f5e80c534bff60e139548f2e5977a05cf9861b", [ null, [ [ - "/css/css-contain/content-visibility/content-visibility-078-ref.html", + "/css/css-display/run-in/run-in-text-ref.xht", "==" ] ], {} ] ], - "content-visibility-079.html": [ - "c2cbbfb5a3d20f1d4888fcc98326ea9d90510a84", + "run-in-table-cell-between-003.xht": [ + "49ab6455543120e03847c08453ff0ef89bde66c2", [ - "css/css-contain/content-visibility/content-visibility-079.html", + null, [ [ - "/css/css-contain/content-visibility/content-visibility-079-ref.html", + "/css/css-display/run-in/run-in-basic-ref.xht", "==" ] ], {} ] ], - "content-visibility-082.html": [ - "3313ca0f650b8cf990bcb385a3f9d27def81f0f2", + "run-in-table-row-between-001.xht": [ + "06b0852bb859f37c8c1b63cc07d2fd2d3e97e473", [ null, [ [ - "/css/css-contain/content-visibility/container-focus-ref.html", + "/css/css-display/run-in/run-in-text-ref.xht", "==" ] ], {} ] ], - "content-visibility-083.html": [ - "488465f02b817490e3e8273d834ca096016ffc94", + "run-in-table-row-between-002.xht": [ + "a5e069daac88cc51c837c3adb4ecb190eed95872", [ null, [ [ - "/css/css-contain/content-visibility/spacer-and-container-ref.html", + "/css/css-display/run-in/run-in-text-ref.xht", "==" ] ], {} ] ], - "content-visibility-084.html": [ - "742b1d51899114952f6dbff65be228638b2682a0", + "run-in-table-row-between-003.xht": [ + "755b46351b7e39c9d5f4098f4d890bb7d0386675", [ null, [ [ - "/css/css-contain/content-visibility/spacer-and-container-ref.html", + "/css/css-display/run-in/run-in-basic-ref.xht", "==" ] ], {} ] ], - "content-visibility-085.html": [ - "b451746bbba7729bc59bf355fa20c680c203547d", + "run-in-text-between-001.xht": [ + "cdbd7acca0ee9bcf90d155f436d865e4916551ca", [ - "css/css-contain/content-visibility/content-visibility-085.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-display/run-in/run-in-text-ref.xht", "==" ] ], {} ] ], - "content-visibility-094.html": [ - "0434530298b578ed0ea81cef43987e69ea59142f", + "run-in-text-between-002.xht": [ + "545dee956e09829d20ed4b7b6011f73ea99fd3a1", [ - "css/css-contain/content-visibility/content-visibility-094.html", + null, [ [ - "/css/css-contain/content-visibility/content-visibility-094-ref.html", + "/css/css-display/run-in/run-in-text-ref.xht", "==" ] ], {} ] ], - "content-visibility-095.html": [ - "245a8dd827c31c166050cc5f2d0e6b1fd2eb7cf2", + "run-in-text-between-003.xht": [ + "66a4451d32ba2c3841b10b303c6454d99fbcf5fa", [ - "css/css-contain/content-visibility/content-visibility-095.html", + null, [ [ - "/css/css-contain/content-visibility/content-visibility-095-ref.html", + "/css/css-display/run-in/run-in-text-ref.xht", "==" ] ], {} ] ], - "content-visibility-animation-and-scroll.html": [ - "3900918819ef72eb8a12be755e10f122b765c5d4", + "run-in-text-between-004.xht": [ + "9411b648191821911caa65bfe20404831c58afa2", [ - "css/css-contain/content-visibility/content-visibility-animation-and-scroll.html", + null, [ [ - "/css/css-contain/content-visibility/content-visibility-animation-and-scroll-ref.html", + "/css/css-display/run-in/run-in-basic-ref.xht", "==" ] ], {} ] ], - "content-visibility-animation-becomes-visible.html": [ - "53976c651aaa6fa4a91b50a76693daf31a547295", + "run-in-text-between-005.xht": [ + "e981b9e2d35f6dc43c819ea9261a60b142e3747e", [ - "css/css-contain/content-visibility/content-visibility-animation-becomes-visible.html", + null, [ [ - "/css/css-contain/content-visibility/content-visibility-animation-becomes-visible-ref.html", + "/css/css-display/run-in/run-in-basic-ref.xht", "==" ] ], {} ] ], - "content-visibility-auto-in-iframe.html": [ - "ba02cac6684d2c283de114c0b00fcd4e6f99f724", + "text-decoration-applies-to-004.xht": [ + "7efedf6ad98ad4399a631749d65bf540dea87069", [ null, [ [ - "/css/css-contain/content-visibility/content-visibility-auto-in-iframe-ref.html", + "/css/reference/pass_if_filler_text_underlined.html", "==" ] ], {} ] ], - "content-visibility-auto-intrinsic-width.html": [ - "bd90fff5143e43d4e1fddd6a1113b97b2a2957a7", + "text-transform-applies-to-004.xht": [ + "8b5e2af0caef2233a52e62c101084b24b218c1c7", [ null, [ [ - "/css/css-contain/content-visibility/container-ref.html", + "/css/reference/pass_if_letter_uppercase.html", "==" ] ], {} ] ], - "content-visibility-auto-nested-scroll.html": [ - "ced9d79ec697e249480722cea6fb4cb92b211e1d", + "width-applies-to-011.xht": [ + "fcf32f426b773c5ea1b56cbbd5c330ddfe54dce6", [ - "css/css-contain/content-visibility/content-visibility-auto-nested-scroll.html", + null, [ [ - "/css/css-contain/content-visibility/content-visibility-auto-nested-scroll-ref.html", + "/css/reference/pass_if_square_96px_black.html", "==" ] ], {} ] - ], - "content-visibility-auto-nested.html": [ - "d9b9db6bb5fdb02c124d5cc72c17730b007ef85a", + ] + }, + "select-4-option-optgroup-display-none.html": [ + "a6da3d53c71c87a9774af3403ed9f38fb25f75c6", + [ + null, + [ + [ + "/css/css-display/select-4-option-optgroup-display-none-ref.html", + "==" + ] + ], + {} + ] + ] + }, + "css-exclusions": { + "css3-exclusions": { + "exclusions-wrap-flow-01.xht": [ + "45f3d1a1c6592296b2c79ed0b08d84c9b2df6bf9", [ - "css/css-contain/content-visibility/content-visibility-auto-nested.html", + null, [ [ - "/css/css-contain/content-visibility/content-visibility-auto-nested-ref.html", + "/css/css-exclusions/css3-exclusions/exclusions-wrap-flow-01-ref.xht", "==" ] ], {} ] ], - "content-visibility-canvas.html": [ - "fe469489528c45797b8ff68bfc739c39cefdf7b0", + "exclusions-wrap-flow-02.xht": [ + "4ff8cc4e98cbf0b3a5ff8a09c6f47a110f709245", [ null, [ [ - "/css/css-contain/content-visibility/content-visibility-canvas-ref.html", + "/css/css-exclusions/css3-exclusions/exclusions-wrap-flow-01-ref.xht", "==" ] ], {} ] ], - "content-visibility-fieldset-size.html": [ - "830bf851ff1ac6ee27d02f9f4e43b094bb86e26f", + "exclusions-wrap-flow-03.xht": [ + "48802eac21a3c535ac2eb3938444d02180f2b285", [ null, [ [ - "/css/css-contain/content-visibility/content-visibility-fieldset-size-ref.html", + "/css/css-exclusions/css3-exclusions/exclusions-wrap-flow-01-ref.xht", "==" ] ], {} ] ], - "content-visibility-on-g.html": [ - "4ff07892680c64255757915bcc675a97dd67b317", + "exclusions-wrap-flow-04.xht": [ + "ca2c7e35de243937c56cec779f9c54e45e8ea6cc", [ - "css/css-contain/content-visibility/content-visibility-on-g.html", + null, [ [ - "/css/css-contain/content-visibility/content-visibility-on-g-ref.html", + "/css/css-exclusions/css3-exclusions/exclusions-wrap-flow-01-ref.xht", "==" ] ], {} ] - ], - "content-visibility-on-root-svg.html": [ - "440d1ad94bfe7bea06b5cd6a614019215ff62cc4", + ] + } + }, + "css-fill-stroke": { + "paint-order-001.html": [ + "8fd100c431e088f49d232d728e9790807f21be52", + [ + null, [ - "css/css-contain/content-visibility/content-visibility-on-root-svg.html", [ + "/css/css-fill-stroke/reference/paint-order-001-ref.tentative.html", + "==" + ] + ], + { + "fuzzy": [ [ - "/css/css-contain/content-visibility/content-visibility-on-root-svg-ref.html", + null, + [ + [ + 0, + 1 + ], + [ + 0, + 5 + ] + ] + ] + ] + } + ] + ] + }, + "css-flexbox": { + "abspos": { + "abspos-autopos-htb-ltr.html": [ + "53229296ff22f1f0943dba5d28d38ec2e22bacfd", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "content-visibility-resize-observer-no-error.html": [ - "f323e606039e72a696d2de75eb0d43c7f9cab095", + "abspos-autopos-htb-rtl.html": [ + "1788c0d3b86670681f2f466d4aba906285c3d8d7", [ null, [ [ - "/css/css-contain/content-visibility/content-visibility-resize-observer-no-error-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "content-visibility-video.html": [ - "bed5954fe410cd4f21b7e06eb3c1abeaa62b7ca2", + "abspos-autopos-vlr-ltr.html": [ + "c3435235aafaea7d5afaf0dcaf5a95770a95ce08", [ null, [ [ - "/css/css-contain/content-visibility/content-visibility-video-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "content-visibility-vs-scrollIntoView-001.html": [ - "b7af3462572086263174072990cbe9e4c13e20b8", + "abspos-autopos-vlr-rtl.html": [ + "0c7b701a4731d77165dfd238e3ada51aa9a470df", [ - "css/css-contain/content-visibility/content-visibility-vs-scrollIntoView-001.html", + null, [ [ - "/css/css-contain/content-visibility/content-visibility-vs-scrollIntoView-001-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "content-visibility-vs-scrollIntoView-002.html": [ - "5358fc6db8ae79fb5eeca6e9adeaeb7a802e5492", + "abspos-autopos-vrl-ltr.html": [ + "618bda43879ab04fcd4728bb0e6ab273ae46f9a0", [ - "css/css-contain/content-visibility/content-visibility-vs-scrollIntoView-002.html", + null, [ [ - "/css/css-contain/content-visibility/content-visibility-vs-scrollIntoView-002-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "content-visibility-with-popover-top-layer-000.html": [ - "fef4f5e5405e038aa10c1c0e21a71df6a82cd78f", + "abspos-autopos-vrl-rtl.html": [ + "0c7b701a4731d77165dfd238e3ada51aa9a470df", [ - "css/css-contain/content-visibility/content-visibility-with-popover-top-layer-000.html", + null, [ [ - "/css/css-contain/content-visibility/container-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "content-visibility-with-popover-top-layer-001.html": [ - "fb3c9096da6305883ff42ce59981f34ad1f4b112", + "dynamic-align-self-001.html": [ + "208c006d2d056888dba662ea593410970e848ca9", [ - "css/css-contain/content-visibility/content-visibility-with-popover-top-layer-001.html", + null, [ [ - "/css/css-contain/content-visibility/container-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "content-visibility-with-popover-top-layer-002.html": [ - "48b436f4de19ee35f3684794c49b786bcd9cb005", + "flex-abspos-staticpos-align-self-safe-001.html": [ + "b7302cb962dbff9bfc99592ac7a2d2f2aae52b21", [ - "css/css-contain/content-visibility/content-visibility-with-popover-top-layer-002.html", + null, [ [ - "/css/css-contain/content-visibility/container-ref.html", + "/css/css-flexbox/abspos/flex-abspos-staticpos-align-self-safe-001-ref.html", "==" ] ], {} ] ], - "content-visibility-with-popover-top-layer-003.html": [ - "df3cf07a0159f9254f0fd78d193716c74aa70068", + "flex-abspos-staticpos-fallback-justify-content-001.html": [ + "004ce831c2933efadd3d5434ce4201b8d60c3a09", [ - "css/css-contain/content-visibility/content-visibility-with-popover-top-layer-003.html", + null, [ [ - "/css/css-contain/content-visibility/content-with-popover-top-layer-ref.html", + "/css/css-flexbox/abspos/flex-abspos-staticpos-fallback-justify-content-001-ref.html", "==" ] ], {} ] ], - "content-visibility-with-popover-top-layer-004.html": [ - "bbf4567e37d4c1df68ce9119ec3952722324f12e", + "flex-abspos-staticpos-justify-self-001.html": [ + "1f826ca38f4e8d7cfadf2fdf154a401b88e473a8", [ - "css/css-contain/content-visibility/content-visibility-with-popover-top-layer-004.html", + null, [ [ - "/css/css-contain/content-visibility/spacer-with-popover-top-layer-ref.html", + "/css/css-flexbox/abspos/flex-abspos-staticpos-justify-self-001-ref.html", "==" ] ], {} ] ], - "content-visibility-with-popover-top-layer-005.html": [ - "264d7b317e0a3fb2fc655c6cceda29d2fe252f9d", + "flex-abspos-staticpos-margin-001.html": [ + "535fa2ecbf642f5159cf91a28f6d9cdd1ec411b8", [ - "css/css-contain/content-visibility/content-visibility-with-popover-top-layer-005.html", + null, [ [ - "/css/css-contain/content-visibility/spacer-with-popover-top-layer-ref.html", + "/css/css-flexbox/abspos/flex-abspos-staticpos-margin-001-ref.html", "==" ] ], {} ] ], - "content-visibility-with-popover-top-layer-and-auto-descendant.html": [ - "aed0227ef1d5b81776e48360c8db67175bea4e4a", + "flex-abspos-staticpos-margin-002.html": [ + "624a9e8592f6c766f9ea6990855b2b35a77f526a", [ - "css/css-contain/content-visibility/content-visibility-with-popover-top-layer-and-auto-descendant.html", + null, [ [ - "/css/css-contain/content-visibility/content-visibility-with-popover-top-layer-and-auto-descendant-ref.html", + "/css/css-flexbox/abspos/flex-abspos-staticpos-margin-002-ref.html", "==" ] ], {} ] ], - "content-visibility-with-popover-top-layer-hide-after-addition.html": [ - "e3934bf46f80d7e22c0209470b8b7ed6f92e47cd", + "flex-abspos-staticpos-margin-003.html": [ + "64ef7a7fe5116296d43b0f2060539b48148549c2", [ - "css/css-contain/content-visibility/content-visibility-with-popover-top-layer-hide-after-addition.html", + null, [ [ - "/css/css-contain/content-visibility/container-ref.html", + "/css/css-flexbox/abspos/flex-abspos-staticpos-margin-003-ref.html", "==" ] ], {} ] ], - "content-visibility-with-top-layer-000.html": [ - "61856611f9eb8b170325a12114df78beefaaf2d5", + "flexbox-abspos-child-001a.html": [ + "fabe204b2796257fd3a74216a87c79960c42a9f9", [ null, [ [ - "/css/css-contain/content-visibility/container-ref.html", + "/css/css-flexbox/abspos/flexbox-abspos-child-001-ref.html", "==" ] ], {} ] ], - "content-visibility-with-top-layer-001.html": [ - "43242eb2cb16438b4e748f97cf2c2b5408ba3a8b", + "flexbox-abspos-child-001b.html": [ + "30fc58c3d12e336663d0aaadf959e23d87a525a1", [ null, [ [ - "/css/css-contain/content-visibility/container-ref.html", + "/css/css-flexbox/abspos/flexbox-abspos-child-001-ref.html", "==" ] ], {} ] ], - "content-visibility-with-top-layer-002.html": [ - "f54c639d7b2465e8c296d62e438c28ff8f9a37a5", + "flexbox-abspos-child-002.html": [ + "8234085681ddc0f72e8da84471363ecb08d4d460", [ null, [ [ - "/css/css-contain/content-visibility/container-ref.html", + "/css/css-flexbox/abspos/flexbox-abspos-child-002-ref.html", "==" ] ], {} ] ], - "content-visibility-with-top-layer-003.html": [ - "7fb1f20b7ecd38b3fbc5df22dacc55a73227a49e", + "flexbox_absolute-atomic.html": [ + "dae6b3e43ea71f3795508dd0ca4b243d4510c383", [ - "css/css-contain/content-visibility/content-visibility-with-top-layer-003.html", + null, [ [ - "/css/css-contain/content-visibility/content-with-top-layer-ref.html", + "/css/css-flexbox/abspos/flexbox_absolute-atomic-ref.html", "==" ] ], {} ] ], - "content-visibility-with-top-layer-004.html": [ - "e21b11e92db1fe8e7684536d04371ae077c8e66a", + "flexbox_inline-abspos.html": [ + "56077ae58566efca2ff41b73edcb7a2d899a36d5", [ - "css/css-contain/content-visibility/content-visibility-with-top-layer-004.html", + null, [ [ - "/css/css-contain/content-visibility/spacer-with-top-layer-ref.html", + "/css/reference/blank.html", "==" ] ], {} ] ], - "content-visibility-with-top-layer-005.html": [ - "5283aea19734d1349622a249715c0a190d1ebad5", + "position-absolute-005.html": [ + "3199dfb9a699986ecbc7ff474628cf1cfbf0b0b6", [ - "css/css-contain/content-visibility/content-visibility-with-top-layer-005.html", + null, [ [ - "/css/css-contain/content-visibility/spacer-with-top-layer-ref.html", + "/css/css-flexbox/abspos/position-absolute-005-ref.html", "==" ] ], {} ] ], - "content-visibility-with-top-layer-and-auto-descendant.html": [ - "a55337bf44d02e742be98e257a26cdf8b0221b35", + "position-absolute-006.html": [ + "bc9bc2c0e13d45904af90ca8f1dfe2a53241c79a", [ - "css/css-contain/content-visibility/content-visibility-with-top-layer-and-auto-descendant.html", + null, [ [ - "/css/css-contain/content-visibility/content-visibility-with-top-layer-and-auto-descendant-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "content-visibility-with-top-layer-hide-after-addition.html": [ - "54f632ffbdf58924b3f03643dbff09137ca324b9", + "position-absolute-007.html": [ + "3f7106c10260d516b6cd9148ff5e55e2777899bf", [ null, [ [ - "/css/css-contain/content-visibility/container-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "content-visibility-with-top-layer-in-auto-subtree-removal.html": [ - "af7be8615260032798f7499dcd317638e6781701", + "position-absolute-008.html": [ + "7a9f8b6dfe8d202a1bf6f913edeb77f6a122b836", [ - "css/css-contain/content-visibility/content-visibility-with-top-layer-in-auto-subtree-removal.html", + null, [ [ - "/css/css-contain/content-visibility/container-with-child-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "dynamic-change-paint-fully-obscuring-child-001.html": [ - "781a11ca40a36b4ce5d99c6c0b665ee2ef4d4e2c", + "position-absolute-009.html": [ + "5751bea1b94cc2fcd5a924b5c8bf81e3cbbc91ec", [ null, [ @@ -164419,52 +165239,52 @@ {} ] ], - "element-reassigned-to-skipped-slot.html": [ - "d71ee9eef02a65440e9fb46c70e6016d01b01a22", + "position-absolute-010.html": [ + "c59cc7d67dfdfc2d48782b7790bbb4e46d97bca9", [ null, [ [ - "/css/css-contain/content-visibility/container-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "element-reassigned-to-slot-in-skipped-subtree.html": [ - "df6b64d7bc926b942910fb818b002390b7fa565a", + "position-absolute-011.html": [ + "142cd4b4160978e78dcdde193a9e00da8e63a6c7", [ null, [ [ - "/css/css-contain/content-visibility/container-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "scrollIntoView-target-with-contents-hidden.html": [ - "42c8e43c8d43ca14a130ed779b6f56d973f64aef", + "position-absolute-containing-block-001.html": [ + "1edfdb04caa0d65148a6994a8c85d8363c74850a", [ null, [ [ - "/css/css-contain/content-visibility/scrollIntoView-target-with-contents-hidden-ref.html", + "/css/css-flexbox/abspos/position-absolute-containing-block-001-ref.html", "==" ] ], {} ] ], - "scrollIntoView-with-focus-target-with-contents-hidden.html": [ - "454d1bafa7079507d7c4d6a8f274997f79f6ca8d", + "position-absolute-containing-block-002.html": [ + "aecbf0b4c997ceb748496d7fa09aed6ba8c0f92a", [ null, [ [ - "/css/css-contain/content-visibility/scrollIntoView-with-focus-target-with-contents-hidden-ref.html", + "/css/css-flexbox/abspos/position-absolute-containing-block-002-ref.html", "==" ] ], @@ -164472,2657 +165292,2719 @@ ] ] }, - "counter-scoping-001.html": [ - "ab948e19081e1383fdc68ef8b27f2b6db0e30e95", + "align-baseline.html": [ + "31bcca69771751f3277d6f078456f982a375d067", [ - "css/css-contain/counter-scoping-001.html", + null, [ [ - "/css/css-contain/reference/counter-scoping-001-ref.html", + "/css/css-flexbox/reference/align-baseline-ref.html", "==" ] ], {} ] ], - "counter-scoping-002.html": [ - "077dca5b7a72c8635a31a75a9a9396815bb44474", + "align-content-001.htm": [ + "5fd60351247f09e991ec5b361635397631ab4616", [ null, [ [ - "/css/css-contain/reference/counter-scoping-001-ref.html", + "/css/css-flexbox/reference/align-content-001-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 1 + ], + [ + 0, + 6217 + ] + ] + ] + ] + } ] ], - "counter-scoping-003.html": [ - "a12dbfa7001aee455eea7391368a190a7575110c", + "align-content-002.htm": [ + "09453086142d04aae1c70959720139e1dfecbef1", [ null, [ [ - "/css/css-contain/reference/counter-scoping-003-ref.html", + "/css/css-flexbox/reference/align-content-001-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 1 + ], + [ + 0, + 6225 + ] + ] + ] + ] + } ] ], - "counter-scoping-004.html": [ - "3aad43f8535a5a222dc710db59c77deefe2b2390", + "align-content-003.htm": [ + "df6033bca9e94397971704a4bdc24c4f25b1229c", [ - "css/css-contain/counter-scoping-004.html", + null, [ [ - "/css/css-contain/reference/counter-scoping-004-ref.html", + "/css/css-flexbox/reference/align-content-001-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 1 + ], + [ + 0, + 6225 + ] + ] + ] + ] + } ] ], - "quote-scoping-001.html": [ - "8c38e45b1ace138cbb795c77fdece555967e043d", + "align-content-004.htm": [ + "4c39bfcc331a4fea0a990c2fafa7426e818d4943", [ null, [ [ - "/css/css-contain/reference/quote-scoping-001-ref.html", + "/css/css-flexbox/reference/align-content-001-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 1 + ], + [ + 0, + 4835 + ] + ] + ] + ] + } ] ], - "quote-scoping-002.html": [ - "9477afdfb1cf3073695a521c28cb9643a66bf00d", + "align-content-005.htm": [ + "a9b70b742bf81181b7fd52531d4e79dfa11eb8df", [ null, [ [ - "/css/css-contain/reference/quote-scoping-002-ref.html", + "/css/css-flexbox/reference/align-content-001-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 1 + ], + [ + 0, + 7236 + ] + ] + ] + ] + } ] ], - "quote-scoping-003.html": [ - "2a909511c3451c98bcdd059d506279923e6ce709", + "align-content-006.htm": [ + "703b3b0f89e0f94ef744c64e90113b1faa4adcae", [ null, [ [ - "/css/css-contain/reference/quote-scoping-003-ref.html", + "/css/css-flexbox/reference/align-content-001-ref.html", "==" ] ], {} ] ], - "quote-scoping-004.html": [ - "d86382be08532323baad174808181e338adbc932", + "align-content-wrap-004.html": [ + "161832190a2a3088ab3b9ad198d4e3083a291551", [ null, [ [ - "/css/css-contain/reference/quote-scoping-003-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "quote-scoping-empty-style-boundaries.html": [ - "89614565ba9787f91dc5ae65d92cdcd8aea82e13", + "align-content_center.html": [ + "6f401a64ff3c73d2f612bb1399fb2bd1e658511e", [ null, [ [ - "/css/css-contain/reference/quote-scoping-empty-style-boundaries-ref.html", + "/css/css-flexbox/reference/align-content_center-ref.html", "==" ] ], {} ] ], - "quote-scoping-invalidation-001.html": [ - "61ec4a481ffd20af97be0620334edfad6cef1954", + "align-content_flex-end.html": [ + "9024d05440df611193f5af92f5df7d13fff585ae", [ - "css/css-contain/quote-scoping-invalidation-001.html", + null, [ [ - "/css/css-contain/reference/quote-scoping-invalidation-001-ref.html", + "/css/css-flexbox/reference/align-content_flex-end-ref.html", "==" ] ], {} ] ], - "quote-scoping-invalidation-002.html": [ - "727ee9a58128bbb4eaeff87f2f3df988e8547da9", + "align-content_flex-start.html": [ + "e86ac72756f9aff20029cd2d61a36d955034b431", [ - "css/css-contain/quote-scoping-invalidation-002.html", + null, [ [ - "/css/css-contain/reference/quote-scoping-invalidation-002-ref.html", + "/css/css-flexbox/reference/align-content_flex-start-ref.html", "==" ] ], {} ] ], - "quote-scoping-invalidation-003.html": [ - "24e69eb38fe7d18fd5e2359fdfb5d64440343192", + "align-content_space-around.html": [ + "8949a301329834e3b0b535990b9dedac27fdb945", [ - "css/css-contain/quote-scoping-invalidation-003.html", + null, [ [ - "/css/css-contain/reference/quote-scoping-invalidation-003-ref.html", + "/css/css-flexbox/reference/align-content_space-around-ref.html", "==" ] ], {} ] ], - "quote-scoping-invalidation-004.html": [ - "11b0d24f6680879aafd21853ea7abb07a55072c4", + "align-content_space-between.html": [ + "da3ba308b90a96124c16f75ca7a3ee3545d57b3d", [ - "css/css-contain/quote-scoping-invalidation-004.html", + null, [ [ - "/css/css-contain/reference/quote-scoping-invalidation-004-ref.html", + "/css/css-flexbox/reference/align-content_space-between-ref.html", "==" ] ], {} ] - ] - }, - "css-content": { - "attr-case-sensitivity-001.html": [ - "03fcc3bc98d1855bcad938a55f0c08873b19c8d4", + ], + "align-content_stretch.html": [ + "7c890e90e4044abf286014a21662e284dd0f532e", [ - "css/css-content/attr-case-sensitivity-001.html", + null, [ [ - "/css/css-content/attr-case-sensitivity-ref-001.html", + "/css/css-flexbox/reference/align-content_stretch-ref.html", "==" ] ], {} ] ], - "attr-case-sensitivity-002.html": [ - "a1c4e88b8b99236e2fa07adf43335a6f3c319875", + "align-items-001.htm": [ + "fcd9205ef41680031fc1b8f5428ac6febaa14393", [ - "css/css-content/attr-case-sensitivity-002.html", + null, [ [ - "/css/css-content/attr-case-sensitivity-ref-002.html", + "/css/css-flexbox/reference/align-content-001-ref.html", "==" - ], - [ - "/css/css-content/attr-case-sensitivity-ref-003.html", - "!=" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 1 + ], + [ + 0, + 6217 + ] + ] + ] + ] + } ] ], - "attr-case-sensitivity-003.html": [ - "d62a68f8899bd96b0ca9ce0d9f39c90ac749d4d3", + "align-items-002.htm": [ + "751f803325f09a850538fa6a2d75c7e3ad7e2d03", [ - "css/css-content/attr-case-sensitivity-003.html", + null, [ [ - "/css/css-content/attr-case-sensitivity-ref-003.html", + "/css/css-flexbox/reference/align-content-001-ref.html", "==" - ], - [ - "/css/css-content/attr-case-sensitivity-ref-002.html", - "!=" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 1 + ], + [ + 0, + 6356 + ] + ] + ] + ] + } ] ], - "content-none-details.html": [ - "6ac94c3e865aaf808fb9cdb1f11807c2e43a3e8c", + "align-items-003.htm": [ + "e2ddd3c33449664ee397abcc7925119f2559cedf", [ - "css/css-content/content-none-details.html", + null, [ [ - "/css/css-content/content-none-details-ref.html", + "/css/css-flexbox/reference/align-content-001-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 1 + ], + [ + 0, + 6347 + ] + ] + ] + ] + } ] ], - "content-none-fieldset.html": [ - "4ada3b7b01d79e38abc171edf4bf7607fb856cef", + "align-items-004.htm": [ + "c1464e1e0a000bb7ea27cf634b0c7876cf405978", [ - "css/css-content/content-none-fieldset.html", + null, [ [ - "/css/css-content/content-none-fieldset-ref.html", + "/css/css-flexbox/reference/align-content-001-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 1 + ], + [ + 0, + 6405 + ] + ] + ] + ] + } ] ], - "content-none-input.html": [ - "5cc76ba11de411520a880aac2f582f9f9068c165", + "align-items-005.htm": [ + "7bfc2dc3e433c02afa95d4d4e645010e96fa40d1", [ - "css/css-content/content-none-input.html", + null, [ [ - "/css/css-content/content-none-input-ref.html", + "/css/css-flexbox/reference/align-content-001-ref.html", "==" ] ], {} ] ], - "content-none-math.html": [ - "2d5e78f678f62ee5c3ded1680875f4cefe3bc737", + "align-items-006.html": [ + "ea8590b33336d205b30773da36f931122cac18c0", [ - "css/css-content/content-none-math.html", + null, [ [ - "/css/css-content/content-none-math-ref.html", + "/css/css-flexbox/reference/align-content-001-ref.html", "==" ] ], {} ] ], - "content-none-option.html": [ - "5eff47776119aecfccd8efcf728eac1d0b116be3", + "align-items-007.html": [ + "704c82fc6ad92410ff50ba4e5bbe02913ab33fe9", [ - "css/css-content/content-none-option.html", + null, [ [ - "/css/css-content/content-none-option-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "content-none-root-block.html": [ - "c8d15df3eafe1e9a2f8d0b4485c7538c9ccec749", + "align-items-008.html": [ + "88aa10690bed3222ef81fec56d9ee94b55d74652", [ - "css/css-content/content-none-root-block.html", + null, [ [ - "/css/css-content/content-none-root-block-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "content-none-root-columns.html": [ - "b3fceb1c4f4d4f8bb5304430ff19b73903f58b11", + "align-items-009.html": [ + "dc89b0aa9effafd3d8ae6e0dab4848499f260bcb", [ - "css/css-content/content-none-root-columns.html", + null, [ [ - "/css/css-content/content-none-root-columns-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "content-none-root-flex.html": [ - "0b6c6cab14f078006224898e032add1022eb6ebb", + "align-items-baseline-column-horz.html": [ + "2e599afda020bd797bd960958bbd6db2e19d24d0", [ - "css/css-content/content-none-root-flex.html", + null, [ [ - "/css/css-content/content-none-root-flex-ref.html", + "/css/css-flexbox/align-items-baseline-column-horz-ref.html", "==" ] ], {} ] ], - "content-none-root-grid.html": [ - "e97f7848acb82fe154a00776b909f87ac2f0f904", + "align-items-baseline-column-vert.html": [ + "3e4a32207300cdf0b6938e33ea71bc59a8f962c5", [ - "css/css-content/content-none-root-grid.html", + null, [ [ - "/css/css-content/content-none-root-grid-ref.html", + "/css/css-flexbox/align-items-baseline-column-vert-ref.html", "==" ] ], {} ] ], - "content-none-root-ruby.html": [ - "8434d9619068e5f48539ee0d942412372e31c813", + "align-items-baseline-overflow-non-visible.html": [ + "48c34b365ec80754ee4d39578b6a25acd7f9725d", [ - "css/css-content/content-none-root-ruby.html", + null, [ [ - "/css/css-content/content-none-root-ruby-ref.html", + "/css/css-flexbox/reference/align-items-baseline-overflow-non-visible-ref.html", "==" ] ], {} ] ], - "content-none-root-table.html": [ - "92e4a7730b938f1f155ef2fff5f044f3ee531e68", + "align-items-baseline-row-horz.html": [ + "394e9f70cdf93b235d1af674bd42b7fb37b8372c", [ - "css/css-content/content-none-root-table.html", + null, [ [ - "/css/css-content/content-none-root-table-ref.html", + "/css/css-flexbox/align-items-baseline-row-horz-ref.html", "==" ] ], {} ] ], - "content-none-select-1.html": [ - "450dd66e216be980689be8cc56f8f2fe91d27bfa", + "align-items-baseline-row-vert.html": [ + "4a6eb60e1d933c67b8ac8ee649d51dc559349ca4", [ - "css/css-content/content-none-select-1.html", + null, [ [ - "/css/css-content/content-none-select-1-ref.html", + "/css/css-flexbox/align-items-baseline-row-vert-ref.html", "==" ] ], - { - "timeout": "long" - } + {} ] ], - "content-none-select-2.html": [ - "4b8f0f5c3247a383eab241a116ca48c010d19b3c", + "align-self-001.html": [ + "77eb5a6b5c5365264541c7b4397f8f348f9cf969", [ - "css/css-content/content-none-select-2.html", + null, [ [ - "/css/css-content/content-none-select-2-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "content-none-span-dynamic.html": [ - "078be9928a61603987467c2a97bf5a27985a19a3", + "align-self-002.html": [ + "d4dbf6066feab3ca3e421bbf2375c3688c9316b9", [ - "css/css-content/content-none-span-dynamic.html", + null, [ [ - "/css/css-content/content-none-span-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "content-none-span.html": [ - "b963869cfeed60f2423b970c707a91e3ce838b22", + "align-self-003.html": [ + "f049dcd0f05ab8bc53c48155562c0fa80c1f542b", [ - "css/css-content/content-none-span.html", + null, [ [ - "/css/css-content/content-none-span-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "content-none-table.html": [ - "723e2e41467db17fd6ad5af5ec0e9e44d0ce9a89", + "align-self-004.html": [ + "7a0760f39b45a7f549ce4ad6eb03bbae53dab379", [ - "css/css-content/content-none-table.html", + null, [ [ - "/css/css-content/content-none-table-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "element-replacement-alt.html": [ - "e9ee9344c268faabb238f651b1335a5b9db47351", + "align-self-005.html": [ + "ec169060bf1a0631c919398e8cd326800f216a44", [ null, [ [ - "/css/css-content/element-replacement-alt-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "element-replacement-display-contents.html": [ - "3782f4c2c764c06870176ffeac5d548bdd854d20", + "align-self-007.html": [ + "4b7cb5cf16d25226388fd394d20d11a1d8f31097", [ null, [ [ - "/css/reference/blank.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "element-replacement-display-none.html": [ - "6c61da381803221837b084831bb0f2709ebc88d6", + "align-self-008.html": [ + "c62f231a3359f7b05c53af565b2eafecba72ce24", [ null, [ [ - "/css/reference/blank.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "element-replacement-dynamic.html": [ - "c025759094e8fa1d0ce5d876474477d50877a050", + "align-self-009.html": [ + "648d48785c901a5ea1d3f1e3453762986ccdbe3f", [ null, [ [ - "/css/css-content/element-replacement-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "element-replacement-gradient.html": [ - "bb1010b07533ebab2332b784b40b8622578c28bf", + "align-self-011.html": [ + "5f8067176b7ad3063a9c1fee898f5684dd434871", [ - "css/css-content/element-replacement-gradient.html", + null, [ [ - "/css/css-content/element-replacement-gradient-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "element-replacement-image-alt.html": [ - "89cd63e5c4e626ad4974fd088580132ba46fe534", + "align-self-012.html": [ + "401e703fc35e4af93fc784dc3538bc5154e59320", [ null, [ [ - "/css/css-content/element-replacement-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "element-replacement-image-no-src.tentative.html": [ - "0c400ed5740bdd54170b6c0a2654f340d4237a9c", + "align-self-013.html": [ + "34711ac69df91739120e907d751c619221798725", [ null, [ [ - "/css/css-content/element-replacement-image-no-src-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "element-replacement-image-src.tentative.html": [ - "33547e2c24cbc9e16120b82883b553a7a8fb0b45", + "align-self-015.html": [ + "14ec3617975380f5a82e62be76bef00943f94341", [ null, [ [ - "/css/css-content/element-replacement-image-no-src-ref.html", + "/css/css-flexbox/reference/align-self-015-ref.html", "==" ] ], {} ] ], - "element-replacement-on-replaced-element.tentative.html": [ - "79a465541f3975c3ba8e0d9bff051aba7d3c2cff", + "anonymous-block.html": [ + "915cca757d73cc711bc3cb47e7539bb4e3e49554", [ null, [ [ - "/css/css-content/element-replacement-on-replaced-element-ref.html", + "/css/css-flexbox/reference/anonymous-block-ref.html", "==" ] ], {} ] ], - "element-replacement.html": [ - "a78e9f713b2428763ed4244aae1b6269a15d6637", + "anonymous-flex-item-001.html": [ + "3e749d43f76981a5cc0b372c7ba0c364c350b6b2", [ null, [ [ - "/css/css-content/element-replacement-ref.html", + "/css/reference/pass_if_two_words.html", "==" ] ], {} ] ], - "pseudo-element-inline-box.html": [ - "5c1666261e9cfe7781286846c06f58987717744e", + "anonymous-flex-item-002.html": [ + "8fdeb27110e15c743e0b84cd4f278f1d8996c994", [ null, [ [ - "/css/css-content/pseudo-element-inline-box-ref.html", + "/css/reference/pass_if_two_words.html", "==" ] ], {} ] ], - "quotes-001.html": [ - "26fddec97a962ed5e3a30aca8b3d894c542b675f", + "anonymous-flex-item-003.html": [ + "cc896e9410cd1706a61d083494801cda98bd72af", [ null, [ [ - "/css/css-content/reference/quotes-001-ref.html", + "/css/reference/pass_if_two_words.html", "==" ] ], {} ] ], - "quotes-002.html": [ - "e87938cf9812ba7bfd37235a4cb8de7d920f5043", + "anonymous-flex-item-004.html": [ + "a3dfbc3e4d020a946bf672271f3ab6714a869c6f", [ null, [ [ - "/css/css-content/reference/quotes-002-ref.html", + "/css/css-flexbox/anonymous-flex-item-split-ref.html", "==" ] ], {} ] ], - "quotes-003.html": [ - "ed568f2d045577ae15fa5a6d2a3a76a41a5c359c", + "anonymous-flex-item-005.html": [ + "a7de7b7a8546bf652f7330fbaccf56ccaecb34cf", [ null, [ [ - "/css/css-content/reference/quotes-003-ref.html", + "/css/css-flexbox/anonymous-flex-item-split-ref.html", "==" ] ], {} ] ], - "quotes-004.html": [ - "0fbe91d1946d4b7d68bdb90f04f68f412d23c8a8", + "anonymous-flex-item-006.html": [ + "6320b814294cdbf0a91fee0bb5b597a5f70d57d6", [ null, [ [ - "/css/css-content/reference/quotes-004-ref.html", + "/css/css-flexbox/anonymous-flex-item-split-ref.html", "==" ] ], {} ] ], - "quotes-005.html": [ - "d813a589de042fcc16cd5bb006a0a3c5458960ee", + "aspect-ratio-intrinsic-size-001.html": [ + "76b74c53867ffab120f55dd5d3acd54cc56c5f1b", [ null, [ [ - "/css/css-content/reference/quotes-005-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "quotes-006.html": [ - "b4f876f4460827c3587bbf17bbfb53920751d90b", + "aspect-ratio-intrinsic-size-002.html": [ + "0cbb662a4ec39ca2d9d2896ab3bf8e39f711825d", [ null, [ [ - "/css/css-content/reference/quotes-006-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "quotes-007.html": [ - "b6791d42a5229bd031621532c6506ed56db20a16", + "aspect-ratio-intrinsic-size-003.html": [ + "7a23bbce30f46df479b121e0356a7f0a030cca60", [ null, [ [ - "/css/css-content/reference/quotes-007-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "quotes-008.html": [ - "5369fd0bbfe8240314627b2991fd6b97d1b7cc18", + "aspect-ratio-intrinsic-size-004.html": [ + "9549de783d4114171eb6dc67109eef1a1eda487b", [ null, [ [ - "/css/css-content/reference/quotes-008-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "quotes-009.html": [ - "ae1688f5a4ebac99b8dd2e934ceaaf8280fe8f6d", + "aspect-ratio-intrinsic-size-005.html": [ + "225a58d4fb4f341a19b372ab272c1370643e0d70", [ null, [ [ - "/css/css-content/reference/quotes-009-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "quotes-010.html": [ - "022bdd561b450af4c43a1531b61b493517c046de", + "aspect-ratio-intrinsic-size-006.html": [ + "aa74d757264ad970604a01a4f9870d0dc79a02a4", [ null, [ [ - "/css/css-content/reference/quotes-010-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "quotes-011.html": [ - "3a3dc87d16807f3e2059db7527192f6c78f5d2ae", + "aspect-ratio-intrinsic-size-007.html": [ + "5a6b896e97c365e16ba836dfdd1538e2dd9a3bff", [ null, [ [ - "/css/css-content/reference/quotes-011-ref.html", + "/css/css-flexbox/aspect-ratio-intrinsic-size-007-ref.html", "==" ] ], {} ] ], - "quotes-012.html": [ - "481b73dc77458f5d779416717f0405de2d9f2903", + "auto-height-column-with-border-and-padding.html": [ + "2151c21f61e915883a11bb78d7f785bdc5f5606c", [ null, [ [ - "/css/css-content/reference/quotes-012-ref.html", + "/css/css-flexbox/reference/auto-height-column-with-border-and-padding-ref.html", "==" ] ], {} ] ], - "quotes-013.html": [ - "9db9526a8c6196af71651acc74780a1fe30f2f98", + "auto-height-with-flex.html": [ + "9151f8cd0979d287dec542e4034bbf3bacc0a8d3", [ null, [ [ - "/css/css-content/reference/quotes-013-ref.html", + "/css/css-flexbox/reference/auto-height-with-flex-ref.html", "==" ] ], {} ] ], - "quotes-014.html": [ - "967510a6538a789f049efe7a89c5e81d882ed949", + "auto-margins-001.html": [ + "a9ea45ee753b8dd6fdfb4263644c827edddd44dd", [ null, [ [ - "/css/css-content/reference/quotes-014-ref.html", + "/css/css-flexbox/auto-margins-001-ref.html", "==" ] ], {} ] ], - "quotes-015.html": [ - "86a96085f216a7b201762ed00da285c6200fbb39", + "auto-margins-002.html": [ + "454bc922f6a7c082de3e08d336b2c615ea15ed3b", [ null, [ [ - "/css/css-content/reference/quotes-015-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "quotes-016.html": [ - "ebb812024403c317ef6f1fed3c6202e7506ecc64", + "auto-margins-003.html": [ + "2e3e7ec209c5fac3303ce66363cac44412da6c97", [ null, [ [ - "/css/css-content/reference/quotes-016-ref.html", + "/css/css-flexbox/reference/auto-margins-003-ref.html", "==" ] ], {} ] ], - "quotes-017.html": [ - "f03ec2136338fd5ff0072385b2438d76081d95c6", + "baseline-synthesis-001.html": [ + "b1fa84c94caef8a350391c011c45a0431aedf1c6", [ null, [ [ - "/css/css-content/reference/quotes-017-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "quotes-018.html": [ - "48bd318398d894a32301c7cd0d02dad9ed6eddb6", + "baseline-synthesis-002.html": [ + "7cb1709fb3160da06e5f115f5d5aab1a901e86a4", [ null, [ [ - "/css/css-content/reference/quotes-018-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "quotes-019.html": [ - "5bd522ee1abb26b9286095937e895eab66a36f55", + "baseline-synthesis-003.html": [ + "98f0e7c2374b5dbe9cd288f13baffdacd806b357", [ null, [ [ - "/css/css-content/reference/quotes-019-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "quotes-020.html": [ - "0c1827d807c52825e141a561a7228d2b86d6efd3", + "baseline-synthesis-004.html": [ + "36c116c2dce4688f145e6362e15444515ce62048", [ null, [ [ - "/css/css-content/reference/quotes-020-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "quotes-021.html": [ - "bf23f1b033f231dec307f5e69a9b457b81efc6de", + "baseline-synthesis-vert-lr-line-under.html": [ + "5fcb75e6cd52f60939a16a6cfe927f7ec5dd9010", [ - "css/css-content/quotes-021.html", + null, [ [ - "/css/css-content/reference/quotes-021-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "quotes-022.html": [ - "430b98b2c802b0599ae3789d078c113cacd0ffb0", + "canvas-contain-size.html": [ + "66fb7261e8fc0d965765c5ba93c48fc3167d9017", [ null, [ [ - "/css/css-content/reference/quotes-022-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "quotes-023.html": [ - "e88d6abffcd190c829bb8124d5ce03cb3675abe4", + "column-flex-child-with-max-width.html": [ + "b1a6a84ded65341c37d7048c07de2fb5ee9036a9", + [ + "css/css-flexbox/column-flex-child-with-max-width.html", + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "content-height-with-scrollbars.html": [ + "1872d5f81d7f9a9fc5ae004f71b63d94b71df19a", [ null, [ [ - "/css/css-content/reference/quotes-023-ref.html", + "/css/css-flexbox/reference/content-height-with-scrollbars-ref.html", "==" ] ], {} ] ], - "quotes-024.html": [ - "99b29a2d67adfefbf8e2742425936de2b64ef0b5", + "cross-axis-scrollbar.html": [ + "6bb325175562a231af8177e8d12f0bc35ac187a6", [ null, [ [ - "/css/css-content/reference/quotes-024-ref.html", + "/css/css-flexbox/reference/cross-axis-scrollbar-ref.html", "==" ] ], {} ] ], - "quotes-025.html": [ - "28e1f2904bf561e6724d3210ae3645e6a4a4b852", + "css-box-justify-content.html": [ + "d5c7244f08dcad0b0955290804ec5959754a963d", [ null, [ [ - "/css/css-content/reference/quotes-025-ref.html", + "/css/css-flexbox/reference/css-box-justify-content-ref.html", "==" ] ], {} ] ], - "quotes-026.html": [ - "ee1d5c56649aa9378c3e3ac57428429300c84b89", + "css-flexbox-img-expand-evenly.html": [ + "b809d5b270280797b312da0aa09b72876cf1f93c", [ null, [ [ - "/css/css-content/reference/quotes-026-ref.html", + "/css/css-flexbox/reference/css-flexbox-img-expand-evenly-ref.html", "==" ] ], {} ] ], - "quotes-027.html": [ - "051d308539560d0dfc11442f35fbf2b8db7a20a8", + "css-flexbox-row-reverse-wrap-reverse.html": [ + "6e3ad38187e0555add1651937299d0834d3d218c", [ null, [ [ - "/css/css-content/reference/quotes-027-ref.html", + "/css/css-flexbox/css-flexbox-row-ref.html", "==" ] ], {} ] ], - "quotes-028.html": [ - "5ec2ad0f02c88af43efcb155cadfadced1d90dbd", + "css-flexbox-row-reverse-wrap.html": [ + "b24a380355aac8716a57e3dfb7496d6265ecbd26", [ null, [ [ - "/css/css-content/reference/quotes-028-ref.html", + "/css/css-flexbox/css-flexbox-row-ref.html", "==" ] ], {} ] ], - "quotes-029.html": [ - "760605d0e203fea105fd9ab93e81d788bb193162", + "css-flexbox-row-reverse.html": [ + "d8fac64ca1bfea2772b472c2a5a9f404fb89acf4", [ null, [ [ - "/css/css-content/reference/quotes-029-ref.html", + "/css/css-flexbox/css-flexbox-row-ref.html", "==" ] ], {} ] ], - "quotes-030.html": [ - "095c37fedb6bae93b3ae248289dca86e6b9cecf5", + "css-flexbox-row-wrap-reverse.html": [ + "5f8bcda0e2e425b8029ef86f08ff5791ca01e80d", [ null, [ [ - "/css/css-content/reference/quotes-030-ref.html", + "/css/css-flexbox/css-flexbox-row-ref.html", "==" ] ], {} ] ], - "quotes-031.html": [ - "72d2027341df7d58db855bec42c709c6012584e0", + "css-flexbox-row-wrap.html": [ + "c5de361547215d7a8f26f0b1f7555f1758d80b01", [ null, [ [ - "/css/css-content/reference/quotes-031-ref.html", + "/css/css-flexbox/css-flexbox-row-ref.html", "==" ] ], {} ] ], - "quotes-032.html": [ - "cb0b36312be585ae2633d7d18c93f2098aaa5157", + "css-flexbox-row.html": [ + "d32a84f2e471eddd0600999022a22c9777c0697b", [ null, [ [ - "/css/css-content/reference/quotes-032-ref.html", + "/css/css-flexbox/css-flexbox-row-ref.html", "==" ] ], {} ] ], - "quotes-033.html": [ - "ca5447886473a9d36ea4b2c319ad238f01d1ca6d", + "css-flexbox-test1.html": [ + "534b3d79d1a46bed0a8f1088eddca71b3d2656c5", [ null, [ [ - "/css/css-content/reference/quotes-033-ref.html", + "/css/css-flexbox/css-flexbox-test1-ref.html", "==" ] ], {} ] ], - "quotes-034.html": [ - "1c0c744c308c80344d98372418a5a7f52b685d17", + "display-flex-001.htm": [ + "7d0f6c9fda6aa0829efbcff898d485b2143d46f1", [ null, [ [ - "/css/css-content/reference/quotes-034-ref.html", + "/css/css-flexbox/reference/align-content-001-ref.html", "==" ] ], {} ] ], - "quotes-first-letter-001.html": [ - "651615f5259d0cf4b972552e6e6a454c1127b7e3", + "dynamic-baseline-change-nested.html": [ + "803b31410dbe07b56d39019de8426dc2575b4e7c", [ - "css/css-content/quotes-first-letter-001.html", + null, [ [ - "/css/css-content/reference/quotes-first-letter-001-ref.html", + "/css/css-flexbox/dynamic-baseline-change-ref.html", "==" ] ], {} ] ], - "quotes-first-letter-002.html": [ - "8c40b1418a3ca0e3074ce6130ad372f8bb03c263", + "dynamic-baseline-change.html": [ + "f13b87f0c1431010137bc76d516f92173c7aa1ed", [ - "css/css-content/quotes-first-letter-002.html", + null, [ [ - "/css/css-content/reference/quotes-first-letter-002-ref.html", + "/css/css-flexbox/dynamic-baseline-change-ref.html", "==" ] ], {} ] ], - "quotes-first-letter-003.html": [ - "fd556d2ab12b704491c3ab36bbb4d1d045247d6a", + "dynamic-bsize-change.html": [ + "7148f26e2770b669dfcc69435e3a506882ffd457", [ - "css/css-content/quotes-first-letter-003.html", + null, [ [ - "/css/css-content/reference/quotes-first-letter-001-ref.html", + "/css/css-flexbox/dynamic-bsize-change-ref.html", "==" ] ], {} ] ], - "quotes-first-letter-004.html": [ - "932ea8516e12a9cd8d53de56fbea7d6317d2cbe6", + "dynamic-change-simplified-layout-002.html": [ + "d419bb3c700cd18b972a741fe0a03454445b80a4", [ - "css/css-content/quotes-first-letter-004.html", + null, [ [ - "/css/css-content/reference/quotes-first-letter-001-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "quotes-first-letter-005.html": [ - "a22589a661b5a043c7b1b5eb291e6aac20b0f688", + "dynamic-change-simplified-layout.html": [ + "5d15e22c5eba93488c8e6e667b61306669c32026", [ - "css/css-content/quotes-first-letter-005.html", + null, [ [ - "/css/css-content/reference/quotes-first-letter-002-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "quotes-slot-scoping.html": [ - "3caeabef4eccc76d8703825bf5db09e129186987", + "dynamic-isize-change-001.html": [ + "cf4a03004398457bcc59471ef54138442247144b", [ null, [ [ - "/css/css-content/quotes-slot-scoping-ref.html", + "/css/css-flexbox/dynamic-isize-change-001-ref.html", "==" ] ], {} ] - ] - }, - "css-counter-styles": { - "arabic-indic": { - "css3-counter-styles-101.html": [ - "21cd9be228950b69fe6f4ffe9d8b8a0be857d7c6", + ], + "dynamic-isize-change-002.html": [ + "cc859b73f9ae9406d6a00713ca645c1c0493ed23", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/arabic-indic/css3-counter-styles-101-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-102.html": [ - "5c86456c94546354d680555ac0f06a06afd83e41", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "dynamic-isize-change-003.html": [ + "9df13e313fda0b32a827f67432972ec3d73240b3", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/arabic-indic/css3-counter-styles-102-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-103.html": [ - "e2e01134d648686d9831ae0eeb3f74eadb7752a1", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "dynamic-isize-change-004.html": [ + "1627e32d966d92610ffd2577abf42a72a16a8cf7", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/arabic-indic/css3-counter-styles-103-ref.html", - "==" - ] - ], - {} - ] + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} ] - }, - "armenian": { - "css3-counter-styles-006.html": [ - "7500274ce995bf562763cd12f1144db54419c143", + ], + "dynamic-orthogonal-flex-item.html": [ + "90791f0be82361c4f1527ce6009be52a94d06aaa", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/armenian/css3-counter-styles-006-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-007.html": [ - "dd5653019cda39f5e37c3e2b3d1d16ab9d8fe0e0", + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "dynamic-stretch-change.html": [ + "f2fdf1b24f4acd733b0623034494e46e61d16259", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/armenian/css3-counter-styles-007-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-008.html": [ - "0ea36af37cd3534c88b4b1132dbf249d7ea34de8", + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "fieldset-as-item-dynamic.html": [ + "814b228e3650a65b742ae9c0f2fd6e9fc5b2a4cd", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/armenian/css3-counter-styles-008-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-009.html": [ - "72db60d0f165cbe26f0cc690acc27423cc68158a", + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "fieldset-as-item-overflow.html": [ + "17bc82a0b51a7f76253e1ca9f75c9840abbd366f", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/armenian/css3-counter-styles-009-ref.html", - "==" - ] - ], - {} - ] + "/css/css-flexbox/fieldset-as-item-overflow-ref.html", + "==" + ] + ], + {} ] - }, - "bengali": { - "css3-counter-styles-116.html": [ - "2fc9bf6878b8c344f683ac442a46a8c18dda6398", + ], + "fieldset-baseline-alignment.html": [ + "d3fdba3d7f476cff486e765791f9c9d8f5de7b06", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/bengali/css3-counter-styles-116-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-117.html": [ - "58ba8400ec37509d72668dd44827c005b566ff3c", + "/css/css-flexbox/fieldset-baseline-alignment-ref.html", + "==" + ] + ], + {} + ] + ], + "fit-content-item-001.html": [ + "ac5c3406991a8b6d5db29d301be9680d7983c8d7", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/bengali/css3-counter-styles-117-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-118.html": [ - "1215a1c201dc0e0e76ad0f09204f154b6db833c9", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "fit-content-item-002.html": [ + "c1be5ff5a9612d765de4a9e47ee3f4b6950a935b", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/bengali/css3-counter-styles-118-ref.html", - "==" - ] - ], - {} - ] + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} ] - }, - "cambodian": { - "css3-counter-styles-158.html": [ - "76154c86b208f877fbf6abe58968e709d2511599", + ], + "fit-content-item-003.html": [ + "2cc310d729c1da75ea2313cb767a514fb061b694", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/cambodian/css3-counter-styles-158-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-159.html": [ - "d53f1e229fd515482022758f549d314d21c5d546", + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "fit-content-item-004.html": [ + "5fbbf4bd510d82a733ca26a41c23cc63b0b83ea1", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/cambodian/css3-counter-styles-159-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-160.html": [ - "46223ab4daf0ba08b8af1875d2006626d1d2acf2", + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "fixed-table-layout-with-percentage-width-in-flex-item.html": [ + "507e0e9fcefd131757ef20bf7cad88a22f6df028", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/cambodian/css3-counter-styles-160-ref.html", - "==" - ] - ], - {} - ] + "/css/css-flexbox/fixed-table-layout-with-percentage-width-in-flex-item-ref.html", + "==" + ] + ], + {} ] - }, - "cjk-decimal": { - "counter-cjk-decimal.html": [ - "0461b7809236b0917634bb095499b78075490b24", + ], + "flex-001.htm": [ + "1806e06dc92f4675adeb909f4e99ee506c60d61b", + [ + null, [ - "css/css-counter-styles/cjk-decimal/counter-cjk-decimal.html", [ - [ - "/css/css-counter-styles/cjk-decimal/counter-cjk-decimal-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-001.html": [ - "e5be28f73679ec0dca50e85af297e9b725c3093a", + "/css/css-flexbox/reference/justify-content-001-ref.html", + "==" + ] + ], + {} + ] + ], + "flex-002.htm": [ + "10e384dc538518d1b42297de99be9c19aae81f62", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/cjk-decimal/css3-counter-styles-001-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-004.html": [ - "921c4ace80f75c115c674a6150bbc59be1301435", + "/css/css-flexbox/reference/justify-content-001-ref.html", + "==" + ] + ], + {} + ] + ], + "flex-003.htm": [ + "b48a79b06f424ed50c17f715a39edc1958a20c9e", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/cjk-decimal/css3-counter-styles-004-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-005.html": [ - "c059d354f246fd1e27241e9e1afaebdb55f71e09", + "/css/css-flexbox/reference/justify-content-001-ref.html", + "==" + ] + ], + {} + ] + ], + "flex-004.htm": [ + "8c82affd9bc6dcba1e43f04abf17f6dd6c407010", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/cjk-decimal/css3-counter-styles-005-ref.html", - "==" - ] - ], - {} - ] + "/css/css-flexbox/reference/justify-content-001-ref.html", + "==" + ] + ], + {} ] - }, - "cjk-earthly-branch": { - "css3-counter-styles-201.html": [ - "730a7f7eca7c7518d142bae5e2508070a5d4cb67", + ], + "flex-align-content-center.html": [ + "13ddc295bb0f60d7deb3a21be74f02d4bb0b063e", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/cjk-earthly-branch/css3-counter-styles-201-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-202.html": [ - "3bc22758dc26db1d60eae413a182f2f33774bb05", + "/css/css-flexbox/reference/flex-align-content-center-ref.html", + "==" + ] + ], + {} + ] + ], + "flex-align-content-end.html": [ + "0572d58773bbf89f03a5a67356edd1169fe9f679", + [ + null, [ - "css/css-counter-styles/cjk-earthly-branch/css3-counter-styles-202.html", [ - [ - "/css/css-counter-styles/cjk-earthly-branch/css3-counter-styles-202-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-203.html": [ - "1b343bfcc27de606e3ee2a737d15dc841fccc9f5", + "/css/css-flexbox/reference/flex-align-content-end-ref.html", + "==" + ] + ], + {} + ] + ], + "flex-align-content-space-around.html": [ + "2ed87ba3a8726bf9a69b82409629f8c987573c8d", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/cjk-earthly-branch/css3-counter-styles-203-ref.html", - "==" - ] - ], - {} - ] + "/css/css-flexbox/reference/flex-align-content-space-around-ref.html", + "==" + ] + ], + {} ] - }, - "cjk-heavenly-stem": { - "css3-counter-styles-204.html": [ - "6ba9000d07cc2c814ca4f8e5cb9d9efc5049a416", + ], + "flex-align-content-space-between.html": [ + "395d6cf5018aef6a3ac7806560a88ffd8a98506a", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/cjk-heavenly-stem/css3-counter-styles-204-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-205.html": [ - "8c0f67dc1a1fe13e9165c9acea4b4252921f5abc", + "/css/css-flexbox/reference/flex-align-content-space-between-ref.html", + "==" + ] + ], + {} + ] + ], + "flex-align-content-start.html": [ + "721658c62763aca9dc5e6857928e20659c37a8d4", + [ + null, [ - "css/css-counter-styles/cjk-heavenly-stem/css3-counter-styles-205.html", [ - [ - "/css/css-counter-styles/cjk-heavenly-stem/css3-counter-styles-205-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-206.html": [ - "9c7a4a0d2bbd0419940e5aff227f4901997a8bc7", + "/css/css-flexbox/reference/flex-align-content-start-ref.html", + "==" + ] + ], + {} + ] + ], + "flex-aspect-ratio-img-column-001.html": [ + "ad84dc23fe7e92a75a9ad1c9e75dcea35f231d8c", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/cjk-heavenly-stem/css3-counter-styles-206-ref.html", - "==" - ] - ], - {} - ] + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} ] - }, - "counter-name-case-sensitive.html": [ - "f6423b20cad397bc6e9a6d9220bba22fa936c229", + ], + "flex-aspect-ratio-img-column-002.html": [ + "3849d454a02c22428e64bc4e6158e82d4d178809", [ - "css/css-counter-styles/counter-name-case-sensitive.html", + null, [ [ - "/css/css-counter-styles/counter-name-case-sensitive-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "counter-style-at-rule": { - "access-from-shadow-dom.html": [ - "94ec03722b80615fa0b1e1089d24c0e472e3cd17", + "flex-aspect-ratio-img-column-003.html": [ + "a3ee677bd972a530415c8332f4c4f571d18a482a", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/counter-style-at-rule/access-from-shadow-dom-ref.html", - "==" - ] - ], - {} - ] - ], - "broken-symbols.html": [ - "eea52a75b47b0400160a099160e0bf6212c4e91c", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "flex-aspect-ratio-img-column-004.html": [ + "5ae39e11fe0454f3e70302dcb2591d9855adaaf6", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/counter-style-at-rule/broken-symbols-ref.html", - "==" - ] - ], - {} - ] - ], - "dependent-builtin.html": [ - "553dd72dca23b34220f831264d98bb70b7a86ef0", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "flex-aspect-ratio-img-column-005.html": [ + "0bd7ef8b23fb19d100d27431ba093a0dee182f34", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/counter-style-at-rule/dependent-builtin-ref.html", - "==" - ] - ], - {} - ] - ], - "descriptor-fallback-invalid.html": [ - "e19d9d649a03dfb15e3d15d506c9029e7cbfe725", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "flex-aspect-ratio-img-column-006.html": [ + "bb7e2c446cab7fd01555a2586f2964862e54555d", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/counter-style-at-rule/descriptor-fallback-invalid-ref.html", - "==" - ] - ], - {} - ] - ], - "descriptor-fallback.html": [ - "7cbfb88592a5b4d3ab03ab039ea9e2aa6dafb90a", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "flex-aspect-ratio-img-column-007.html": [ + "7e8af7bcdd91531d0bccacd5545971cb7e211982", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/counter-style-at-rule/descriptor-fallback-ref.html", - "==" - ] - ], - {} - ] - ], - "descriptor-negative-invalid.html": [ - "f7376ea5dd866398814b12ba4ef7d26af1f839a5", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "flex-aspect-ratio-img-column-008.html": [ + "efdfa35718292e5305027113ed4c08c15de4a5ae", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/counter-style-at-rule/descriptor-negative-invalid-ref.html", - "==" - ] - ], - {} - ] - ], - "descriptor-negative.html": [ - "cf06bc4c7c7dc3763fe9d6356ca693510d4e6b6a", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "flex-aspect-ratio-img-column-009.html": [ + "407a6d9455b5788e63a101050308d015be2f40e1", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/counter-style-at-rule/descriptor-negative-ref.html", - "==" - ] - ], - {} - ] - ], - "descriptor-pad-invalid.html": [ - "4145eb7889dc5da7d8220c6d749e16712d7fded0", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "flex-aspect-ratio-img-column-010.html": [ + "70ebd378a4a7c00059bed9e7ff57febd5a252fba", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/counter-style-at-rule/descriptor-pad-invalid-ref.html", - "==" - ] - ], - {} - ] - ], - "descriptor-pad.html": [ - "220e36b7875f635389dd8bf26bd5360c96196314", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "flex-aspect-ratio-img-column-012.html": [ + "e78ededfb2b2c5872e782b4c51d896c8f495e45b", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/counter-style-at-rule/descriptor-pad-ref.html", - "==" - ] - ], - {} - ] - ], - "descriptor-prefix-invalid.html": [ - "33aa5452ac0bda36eff0aaf43687c0734e33c2c0", + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "flex-aspect-ratio-img-column-013.html": [ + "81640d518c97c19388d3a53f35ed6aad1e3c48d5", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/counter-style-at-rule/descriptor-prefix-invalid-ref.html", - "==" - ] - ], - {} - ] - ], - "descriptor-prefix.html": [ - "ecf18420aad8be51888f21d0363f89053d7a4896", + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "flex-aspect-ratio-img-column-014.html": [ + "b4f2b223cf6fcc7b60a3217b2042e435d52ef0fd", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/counter-style-at-rule/descriptor-prefix-ref.html", - "==" - ] - ], - {} - ] - ], - "descriptor-range-invalid.html": [ - "2f55ef074bfb4a9758f2dc00241ca9ead0c5115a", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "flex-aspect-ratio-img-column-015.html": [ + "688955db0e70fcb0aa728465dfb557c218e9dfd4", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/counter-style-at-rule/descriptor-range-invalid-ref.html", - "==" - ] - ], - {} - ] - ], - "descriptor-range.html": [ - "699c985431c8ad81977a004d50db686c8bdaf4d3", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "flex-aspect-ratio-img-column-016.html": [ + "473aea9e4b0235c44bbc17d92b76b1749e1c505d", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/counter-style-at-rule/descriptor-range-ref.html", - "==" - ] - ], - {} - ] - ], - "descriptor-suffix-invalid.html": [ - "f62181bf9c458906b17032692c8479bf6ab1c8b4", + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "flex-aspect-ratio-img-column-018.html": [ + "04b12875c05b6ba2e3871271ec365bfe1d7d345f", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/counter-style-at-rule/descriptor-suffix-invalid-ref.html", - "==" - ] - ], - {} - ] - ], - "descriptor-suffix.html": [ - "c558d6b30d96d8c0632acffd1b0e714575999040", + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "flex-aspect-ratio-img-row-001.html": [ + "14fabf760ca4293abf5af9e618b2e2ed627be2b2", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/counter-style-at-rule/descriptor-suffix-ref.html", - "==" - ] - ], - {} - ] - ], - "descriptor-symbols-invalid.html": [ - "a0d0e3560b27cfc61467a6e77534c3e542499a3b", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "flex-aspect-ratio-img-row-002.html": [ + "9f2c63240f8452003bb82349434e862413f95f68", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/counter-style-at-rule/descriptor-symbols-invalid-ref.html", - "==" - ] - ], - {} - ] - ], - "descriptor-symbols.html": [ - "15568f08e452c159eee52ed954588a080ccfb989", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "flex-aspect-ratio-img-row-003.html": [ + "a3a8e4a0e386f5d4d25f37301049edb522f13426", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/counter-style-at-rule/descriptor-symbols-ref.html", - "==" - ] - ], - {} - ] - ], - "disclosure-styles.html": [ - "79ac6ca145d0b435a72469c61d09d0dd4a8c9d03", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "flex-aspect-ratio-img-row-004.html": [ + "0ef496620390697a49d00f70028258647b2d4a3c", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/counter-style-at-rule/disclosure-styles-ref.html", - "==" - ] - ], - {} - ] - ], - "empty-string-symbol.html": [ - "7efea106f516406342a66e0cfe7d9b48c19b555b", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "flex-aspect-ratio-img-row-006.html": [ + "2d6f0857a2e54391da34453fbc355b3834ee6d06", + [ + null, [ - "css/css-counter-styles/counter-style-at-rule/empty-string-symbol.html", [ - [ - "/css/css-counter-styles/counter-style-at-rule/empty-string-symbol-notref.html", - "!=" - ] - ], - {} - ] - ], - "fallbacks-in-shadow-dom.html": [ - "d51f70bc31c011fe9853755715a710837090a700", + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "flex-aspect-ratio-img-row-007.html": [ + "42441477583ed24dbc4fa22fb5d58f77ca1f177f", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/counter-style-at-rule/fallbacks-in-shadow-dom-ref.html", - "==" - ] - ], - {} - ] - ], - "name-case-sensitivity.html": [ - "1e478bf17e82f6b088936a5b24dc8d1bcc810d5b", + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "flex-aspect-ratio-img-row-008.html": [ + "58dee77510fa96383dea0b88386a13033b68157f", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/counter-style-at-rule/name-case-sensitivity-ref.html", - "==" - ] - ], - {} - ] - ], - "override-in-shadow-dom.html": [ - "62064eb6fe86cf356794cfab36d52ca322781d0c", + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "flex-aspect-ratio-img-row-009.html": [ + "e7dc55d2711d90e96f60ca0a7fadfeafcb9b2bec", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/counter-style-at-rule/override-in-shadow-dom-ref.html", - "==" - ] - ], - {} - ] - ], - "redefine-attr-mapping.html": [ - "1656f9f33ebaf59c90849438196a57f072057ae6", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "flex-aspect-ratio-img-row-010.html": [ + "f57ba6f625cf1d9bb317c40ccb741f759a549a5d", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/counter-style-at-rule/redefine-attr-mapping-ref.html", - "==" - ] - ], - {} - ] - ], - "redefine-builtin.html": [ - "af90fcab8c8adb1d663676a14b62aee97e098d0c", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "flex-aspect-ratio-img-row-011.html": [ + "4c10b513fd815624d0e968aee1bd917f1d1264a6", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/counter-style-at-rule/redefine-builtin-ref.html", - "==" - ] - ], - {} - ] - ], - "shadow-dom-part.html": [ - "cc43eee8eff3888f874feb2f818d08faaafdab9e", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "flex-aspect-ratio-img-row-012.html": [ + "35806891e2b72813a203d8f287716322d91fc28d", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/counter-style-at-rule/shadow-dom-part-ref.html", - "==" - ] - ], - {} - ] - ], - "symbols-function-invalid.html": [ - "35aa83258726c89efc2c0e31a1e3927362c7f4e2", + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "flex-aspect-ratio-img-row-014.html": [ + "9f12b65f8435ef781d2a98170a70eb66574f73e5", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/counter-style-at-rule/symbols-function-invalid-ref.html", - "==" - ] - ], - {} - ] - ], - "symbols-function.html": [ - "9f129582fff8590b5e5325b057e06692193c4c7e", + "/css/css-flexbox/reference/flex-aspect-ratio-img-row-014-ref.html", + "==" + ] + ], + {} + ] + ], + "flex-aspect-ratio-img-row-015.html": [ + "e28829036052006620ae2d00478d12322ce3cdbc", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/counter-style-at-rule/symbols-function-ref.html", - "==" - ] - ], - {} - ] - ], - "system-additive-invalid.html": [ - "1a8f94c04140cd4546d70b96693487393eab18b8", + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "flex-aspect-ratio-img-row-016.html": [ + "0c5135afed5a6c6ac4543c91a89f7dbab1b3c83d", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/counter-style-at-rule/system-common-invalid-ref.html", - "==" - ] - ], - {} - ] - ], - "system-additive.html": [ - "74568bccd183ef48f35edd1dd5cdc8cb049fdfd2", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "flex-aspect-ratio-img-row-017.html": [ + "b2408159b5af0c445333b4a3e6ab0d9d4353d78f", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/counter-style-at-rule/system-additive-ref.html", - "==" - ] - ], - {} - ] - ], - "system-alphabetic-invalid.html": [ - "c0f8ae926db7c5643fd2e1b456c8e3e4ada7ec26", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "flex-basis-001.html": [ + "85e3bc69c435da542f520bc0e5b9b0afe911f0ad", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/counter-style-at-rule/system-common-invalid2-ref.html", - "==" - ] - ], - {} - ] - ], - "system-alphabetic.html": [ - "9447eaf940401aa3304634a5ba89d48b3c465ca0", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "flex-basis-002.html": [ + "bbeb8fd6cce24335b628edfb78bcb3e7eed99356", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/counter-style-at-rule/system-alphabetic-ref.html", - "==" - ] - ], - {} - ] - ], - "system-cyclic-invalid.html": [ - "602df644511f81ea505727c7d5bf344c53f19780", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "flex-basis-003.html": [ + "48fd3362a5cd4d43f3fe74f8b5df08317fcf8b01", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/counter-style-at-rule/system-common-invalid-ref.html", - "==" - ] - ], - {} - ] - ], - "system-cyclic.html": [ - "4244610d0010f4f0fcd1430cc2b5ac1a22148ad1", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "flex-basis-004.html": [ + "7e2d3c9ea5d25413d4205226a81a29e131f848b7", + [ + null, [ - "css/css-counter-styles/counter-style-at-rule/system-cyclic.html", [ - [ - "/css/css-counter-styles/counter-style-at-rule/system-cyclic-ref.html", - "==" - ] - ], - {} - ] - ], - "system-extends-fixed.html": [ - "7721be7c42f3e3d70f18049b59230ced9b3bb892", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "flex-basis-005.html": [ + "67efac4bbb1392c23d8f3562893c907bd3fe4f73", + [ + null, [ - "css/css-counter-styles/counter-style-at-rule/system-extends-fixed.html", [ - [ - "/css/css-counter-styles/counter-style-at-rule/system-extends-fixed-ref.html", - "==" - ] - ], - {} - ] - ], - "system-extends-invalid.html": [ - "446fe45e561f9a0a746830bf6642746131cdf0a9", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "flex-basis-006.html": [ + "641718cea1dda83a6b49d5b6258c9951a761f115", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/counter-style-at-rule/system-extends-invalid-ref.html", - "==" - ] - ], - {} - ] - ], - "system-extends.html": [ - "287930d0f607c0582d2069b045dfc0f6d78b39fa", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "flex-basis-007.html": [ + "e99a4420fcd18e6711377044f4a2793f62f22231", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/counter-style-at-rule/system-extends-ref.html", - "==" - ] - ], - {} - ] - ], - "system-fixed-invalid.html": [ - "b12b786bf319d05b8617aaca8c0e244ed9b85e8f", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "flex-basis-008.html": [ + "26c8cb3c78aa0e9f9f2aa4b9beaecc0b56be60f1", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/counter-style-at-rule/system-common-invalid2-ref.html", - "==" - ] - ], - {} - ] - ], - "system-fixed.html": [ - "900c95297e5e57549ef5c51ca51f930a4ab97b4a", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "flex-basis-010.html": [ + "79992974b054b553b9052cba32a16fd89c37a866", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/counter-style-at-rule/system-fixed-ref.html", - "==" - ] - ], - {} - ] - ], - "system-numeric-invalid.html": [ - "064da8eec7c976cf9bd045d024ecf9200313a6bc", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "flex-basis-011.html": [ + "9edb5dc975206d2103d9eebfbfd7f9de450f9192", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/counter-style-at-rule/system-common-invalid2-ref.html", - "==" - ] - ], - {} - ] - ], - "system-numeric.html": [ - "b5be5913687c2de26ac7a3e695964919d928b937", + "/css/css-flexbox/flex-basis-011-ref.html", + "==" + ] + ], + {} + ] + ], + "flex-basis-012.html": [ + "b1adddeb23368e7e18553436e1254ad9d8e2f582", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/counter-style-at-rule/system-numeric-ref.html", - "==" - ] - ], - {} - ] - ], - "system-symbolic-invalid.html": [ - "1c0fac4ee87ad78c094f58cfd18202af08587bb7", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "flex-basis-item-margins-001.html": [ + "fe732443e6b13e025e78a19deedaccc47daefec4", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/counter-style-at-rule/system-common-invalid-ref.html", - "==" - ] - ], - {} - ] - ], - "system-symbolic.html": [ - "a3ab8b1a98a34ed0cbd2525c3f2b61973b45999d", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "flex-box-wrap.html": [ + "7d6c6a95676baaf271e58b3f1692aeeaeb7e091c", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/counter-style-at-rule/system-symbolic-ref.html", - "==" - ] - ], - {} - ] + "/css/css-flexbox/reference/flex-box-wrap-ref.html", + "==" + ] + ], + {} ] - }, - "counter-suffix.html": [ - "3624530437c8e9c34d93c9fe910202adda9568de", + ], + "flex-child-percent-basis-resize-1.html": [ + "7631e02a2261211aee6156d81cac9fdc4c2aea6d", [ - "css/css-counter-styles/counter-suffix.html", + null, [ [ - "/css/css-counter-styles/counter-suffix-ref.html", + "/css/css-flexbox/flex-child-percent-basis-resize-1-ref.html", "==" ] ], {} ] ], - "cssom": { - "cssom-additive-symbols-setter-invalid.html": [ - "fd382553df86d6b093d5d580f97b6791dab8b77b", + "flex-container-margin.html": [ + "4ea7441cb07dbc419d562092e00d08f9d4e13e2e", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/cssom/cssom-additive-symbols-setter-ref.html", - "==" - ] - ], - {} - ] - ], - "cssom-additive-symbols-setter.html": [ - "1ff6b424464a6a637116d81e99f0098bfcc5ec32", + "/css/css-flexbox/reference/flex-container-margin-ref.html", + "==" + ] + ], + {} + ] + ], + "flex-container-max-content-001.html": [ + "94a68b5753da3376910b86790279d0df675ff3d8", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/cssom/cssom-additive-symbols-setter-ref.html", - "==" - ] - ], - {} - ] - ], - "cssom-fallback-setter-invalid.html": [ - "c5c43a32237647209945e65fab10c97d24debd50", + "/css/css-flexbox/flex-container-max-content-001-ref.html", + "==" + ] + ], + {} + ] + ], + "flex-container-min-content-001.html": [ + "c328230362d5c4fe8a6342b37769e37dd2babb46", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/cssom/cssom-fallback-setter-ref.html", - "==" - ] - ], - {} - ] - ], - "cssom-fallback-setter.html": [ - "399463f3f18e67cfbf52b936bed71ef975b0f3c4", + "/css/css-flexbox/flex-container-min-content-001-ref.html", + "==" + ] + ], + {} + ] + ], + "flex-direction-column-reverse.html": [ + "dc19045be7e4a99d2fb7f30adec490022761ed30", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/cssom/cssom-fallback-setter-ref.html", - "==" - ] - ], - {} - ] - ], - "cssom-name-setter-invalid.html": [ - "01edc415e90e6f7ce6ab5df98fec7def8e7c4f06", + "/css/css-flexbox/reference/flex-direction-column-reverse-ref.html", + "==" + ] + ], + {} + ] + ], + "flex-direction-column.html": [ + "bf322e6c0441ecf215b5d000bdddc1ea4c99a2a1", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/cssom/cssom-name-setter-ref.html", - "==" - ] - ], - {} - ] - ], - "cssom-name-setter.html": [ - "4cb926dd1291e3e513875e45e21a4fa2e3ca2506", + "/css/css-flexbox/reference/flex-direction-column-ref.html", + "==" + ] + ], + {} + ] + ], + "flex-direction-modify.html": [ + "b13ee04fdcb7282871e3f445bc84d1c39fca33ac", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/cssom/cssom-name-setter-ref.html", - "==" - ] - ], - {} - ] - ], - "cssom-negative-setter-invalid.html": [ - "e15447ba4ddf52d2764f2080abc1e4966ca85f26", + "/css/css-flexbox/reference/flex-direction-modify.html", + "==" + ] + ], + {} + ] + ], + "flex-direction-row-reverse.html": [ + "01cb9df02c8ee93c3a346e8b8c8dd3766f1add61", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/cssom/cssom-negative-setter-ref.html", - "==" - ] - ], - {} - ] - ], - "cssom-negative-setter.html": [ - "06238841ec5d558ec4a97123480e4548a150b49a", + "/css/css-flexbox/reference/flex-direction-row-reverse-ref.html", + "==" + ] + ], + {} + ] + ], + "flex-direction-row-vertical.html": [ + "f6d496dbb846920071bd00328a1ba8dd4f17de8f", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/cssom/cssom-negative-setter-ref.html", - "==" - ] - ], - {} - ] - ], - "cssom-pad-setter-invalid.html": [ - "c263a1bb5fa8e94de60800100339abc819d6836e", + "/css/css-flexbox/flex-direction-row-vertical-ref.html", + "==" + ] + ], + {} + ] + ], + "flex-direction-with-element-insert.html": [ + "42fbdc8a1a07346bd2c20543e82cd2c50e3a6f32", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/cssom/cssom-pad-setter-ref.html", - "==" - ] - ], - {} - ] - ], - "cssom-pad-setter.html": [ - "df1732dae6290fd27bdebb303fe56ed989a5e080", + "/css/css-flexbox/reference/flex-direction-with-element-insert.html", + "==" + ] + ], + {} + ] + ], + "flex-direction.html": [ + "709b1b036a2abff289cae6bd8e8461887dfdcc97", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/cssom/cssom-pad-setter-ref.html", - "==" - ] - ], - {} - ] - ], - "cssom-prefix-suffix-setter-invalid.html": [ - "7aba3a0a5b915356ae95bf96345d9f3d54ba0712", + "/css/css-flexbox/reference/flex-direction.html", + "==" + ] + ], + {} + ] + ], + "flex-flow-001.html": [ + "98ba1568fec4ac83b3fce5fee38375213d4c676c", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/cssom/cssom-prefix-suffix-setter-ref.html", - "==" - ] - ], - {} - ] - ], - "cssom-prefix-suffix-setter.html": [ - "899caa26ba7f47eb9d2013172be1270334a1d541", + "/css/css-flexbox/flex-flow-001-ref.html", + "==" + ] + ], + {} + ] + ], + "flex-flow-002.html": [ + "ba3701e4ded97b76792c7c364cb160ad0e19d974", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/cssom/cssom-prefix-suffix-setter-ref.html", - "==" - ] - ], - {} - ] - ], - "cssom-range-setter-invalid.html": [ - "2fc459551f084c319b787114c3b5076d92c0eb08", + "/css/css-flexbox/flex-flow-002-ref.html", + "==" + ] + ], + {} + ] + ], + "flex-flow-003.html": [ + "59dc83740260e18eaa6ebbea98b3f7e56596983e", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/cssom/cssom-range-setter-ref.html", - "==" - ] - ], - {} - ] - ], - "cssom-range-setter.html": [ - "10d94f0cdb39c44b90accf2e18238ea2401184ee", + "/css/css-flexbox/flex-flow-002-ref.html", + "==" + ] + ], + {} + ] + ], + "flex-flow-004.html": [ + "5907f16447d34c3293241332a339beff89cf5b70", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/cssom/cssom-range-setter-ref.html", - "==" - ] - ], - {} - ] - ], - "cssom-symbols-setter-invalid.html": [ - "3b40b0d4a3bb7d5d99757c0316b6ad2d07fc4f1e", + "/css/css-flexbox/flex-flow-001-ref.html", + "==" + ] + ], + {} + ] + ], + "flex-flow-005.html": [ + "d84979c001d3bdb621e6a58601fad78e2ba91ef7", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/cssom/cssom-symbols-setter-ref.html", - "==" - ] - ], - {} - ] - ], - "cssom-symbols-setter.html": [ - "cd9f66d23860120cab626a3be309d50839201704", + "/css/css-flexbox/flex-flow-002-ref.html", + "==" + ] + ], + {} + ] + ], + "flex-flow-006.html": [ + "e76e52fa97841ee9430d8fccaa3adb9f6c09271a", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/cssom/cssom-symbols-setter-ref.html", - "==" - ] - ], - {} - ] - ], - "cssom-system-setter-1.html": [ - "a616a60e0b08759e8c07c01f643cd0f5e4005731", + "/css/css-flexbox/flex-flow-002-ref.html", + "==" + ] + ], + {} + ] + ], + "flex-flow-007.html": [ + "785289c9c8fb77d7a1e81f612e9803bbbae8e283", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/cssom/cssom-system-setter-ref.html", - "==" - ] - ], - {} - ] - ], - "cssom-system-setter-2.html": [ - "f1cc65d7fccf0f704d73c4919acab2a2df9de5f6", + "/css/css-flexbox/flex-flow-007-ref.html", + "==" + ] + ], + {} + ] + ], + "flex-flow-008.html": [ + "0d0f99eebe1cfba36937fe9d2ec1e168ec160d01", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/cssom/cssom-system-setter-ref.html", - "==" - ] - ], - {} - ] - ], - "cssom-system-setter-invalid.html": [ - "e56ec1a23e4388d4daaaea11f3e887bc9ba8070f", + "/css/css-flexbox/flex-flow-002-ref.html", + "==" + ] + ], + {} + ] + ], + "flex-flow-009.html": [ + "566980f0cd306a21e68ef3e7df3341981c0736f6", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/cssom/cssom-system-setter-ref.html", - "==" - ] - ], - {} - ] + "/css/css-flexbox/flex-flow-002-ref.html", + "==" + ] + ], + {} ] - }, - "devanagari": { - "css3-counter-styles-119.html": [ - "c736f7f5a323eb73857048cbd81289900a40ef04", + ], + "flex-flow-010.html": [ + "f12024fea065f828890970729cc0df67fc2397e7", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/devanagari/css3-counter-styles-119-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-120.html": [ - "e52763b761c0c1c40853a5c2f4e0b4882d7dad8a", + "/css/css-flexbox/flex-flow-007-ref.html", + "==" + ] + ], + {} + ] + ], + "flex-flow-011.html": [ + "79878a018a8f8d34f6ceff36d1de91c8cabf82b0", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/devanagari/css3-counter-styles-120-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-121.html": [ - "8db16780da3e8f396655f18c441c86ec75a3e93b", + "/css/css-flexbox/flex-flow-002-ref.html", + "==" + ] + ], + {} + ] + ], + "flex-flow-012.html": [ + "d0376df188b0791ac783f50f0241cbb39495921f", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/devanagari/css3-counter-styles-121-ref.html", - "==" - ] - ], - {} - ] + "/css/css-flexbox/flex-flow-002-ref.html", + "==" + ] + ], + {} ] - }, - "ethiopic-numeric": { - "counter-ethiopic-numeric.html": [ - "710869280de7bd3ccd6180880d98408e8f5ec36e", + ], + "flex-grow-001.xht": [ + "029090ae798cdbe19f653205b5d480b44528cbd4", + [ + null, [ - "css/css-counter-styles/ethiopic-numeric/counter-ethiopic-numeric.html", [ - [ - "/css/css-counter-styles/ethiopic-numeric/counter-ethiopic-numeric-ref.html", - "==" - ] - ], - {} - ] + "/css/css-flexbox/flex-grow-001-ref.xht", + "==" + ] + ], + {} ] - }, - "georgian": { - "css3-counter-styles-010.html": [ - "daed9f4151f0a5c12238bfb728842a0bc64833e2", - [ - null, - [ - [ - "/css/css-counter-styles/georgian/css3-counter-styles-010-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-011.html": [ - "d09bc3f8bb424fd3556babf63f58ba720c8f8e23", - [ - null, - [ - [ - "/css/css-counter-styles/georgian/css3-counter-styles-011-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-012.html": [ - "df68197a1d060cdce718e19ab952f056696367ef", + ], + "flex-grow-002.html": [ + "51cb26675d731f2b8f8bc42adf5cc307054e2b7b", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/georgian/css3-counter-styles-012-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-014.html": [ - "41fc2b402699ee985843b09f0d193f75f5eef245", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "flex-grow-003.html": [ + "9e9fd31425985884a110b504ed0c37317a7ecb4f", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/georgian/css3-counter-styles-014-ref.html", - "==" - ] - ], - {} - ] + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} ] - }, - "gujarati": { - "css3-counter-styles-122.html": [ - "2e9bc5035622ac441e76d0709084451ceac72326", + ], + "flex-grow-004.html": [ + "84346b51e928aad8b260e840932c498a1d19ff92", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/gujarati/css3-counter-styles-122-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-123.html": [ - "97f7e9439616afe399a8bf40672aa3534d3c0cb1", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "flex-grow-005.html": [ + "45a76a2b6304fe57fa05b628d9a4a7f74423b506", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/gujarati/css3-counter-styles-123-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-124.html": [ - "e9abca06f174fb9226e5e465f18876bc484f0a65", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "flex-grow-006.html": [ + "2b37a554a1fb94d73082d5f6cf70fe4580422a18", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/gujarati/css3-counter-styles-124-ref.html", - "==" - ] - ], - {} - ] + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} ] - }, - "gurmukhi": { - "css3-counter-styles-125.html": [ - "1c1e882eb5393e3dfbde4dd8e2fb0b1f60631c72", + ], + "flex-grow-007.html": [ + "79a8a47db36ee48ecf99697bdab98dc6ca45f4a2", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/gurmukhi/css3-counter-styles-125-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-126.html": [ - "a113b31b6b47abbbc78fe0d136813ccb5768f68e", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "flex-grow-008.html": [ + "46f510f125dca8a32a6e8dc99df390352627eab5", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/gurmukhi/css3-counter-styles-126-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-127.html": [ - "9c58d36e0e14b82ed1a180168124cb85bd949544", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "flex-height-min-content.html": [ + "f719d1f66ae5903c83f112130fa6073d777480ec", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/gurmukhi/css3-counter-styles-127-ref.html", - "==" - ] - ], - {} - ] + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} ] - }, - "hebrew": { - "counter-hebrew-nested.html": [ - "bbbdf6431353d91be751d4adca8f15aaf373ce29", + ], + "flex-inline.html": [ + "3248694034b144da121b50699528f53e50ef4cb3", + [ + null, [ - "css/css-counter-styles/hebrew/counter-hebrew-nested.html", [ - [ - "/css/css-counter-styles/hebrew/counter-hebrew-nested-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-015.html": [ - "4bebc4e9ebb2ec985bcb8c3d21643b67262b3ec5", + "/css/css-flexbox/reference/flex-inline-ref.html", + "==" + ] + ], + {} + ] + ], + "flex-item-and-percentage-abspos.html": [ + "76bdff21b8658a34f10e3784951372ad3eb3a879", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/hebrew/css3-counter-styles-015-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-016.html": [ - "77a7ac2cec151df8b0ea3b1f985309546fc4206d", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "flex-item-contains-size-layout-001.html": [ + "fde2a311268737f7cbf749b92f50ea5e7546c463", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/hebrew/css3-counter-styles-016-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-016a.html": [ - "3eb14594bf3e320fe7178d0289e085ad3b068a42", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "flex-item-max-height-min-content.html": [ + "bf2bc67453d52931c747d8fb3fed874dfbfb52e9", + [ + null, [ - "css/css-counter-styles/hebrew/css3-counter-styles-016a.html", [ - [ - "/css/css-counter-styles/hebrew/css3-counter-styles-016a-ref.html", - "==" - ], - [ - "/css/css-counter-styles/hebrew/css3-counter-styles-016a-alt-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-017.html": [ - "789fdf7f2383f67c594215abc4a04350f23eab5d", + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "flex-item-max-width-min-content.html": [ + "dc5ce0523a6a12e50aaf23f26c3529d23040bee7", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/hebrew/css3-counter-styles-017-ref.html", - "==" - ] - ], - {} - ] + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} ] - }, - "hiragana": { - "css3-counter-styles-030.html": [ - "37bc6efe4c010ea38a1524d3ca90b1e0ef60840e", + ], + "flex-item-min-height-min-content.html": [ + "7bb06a8ef7b78e7432e4dbbdbc8eea8d9474eb85", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/hiragana/css3-counter-styles-030-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-031.html": [ - "194517b774dfe43c7f3c0f35c6c3b3e603633b48", + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "flex-item-min-width-min-content.html": [ + "ee232956f27b9d2df466e0139baea4e2421d9f53", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/hiragana/css3-counter-styles-031-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-032.html": [ - "929eaf9ec6498b9981d7a1d8e2fd077f237f780b", + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "flex-item-transferred-sizes-padding-border-sizing.html": [ + "fc1a163e01ee1eaca8186619aee3e8d0e25c3155", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/hiragana/css3-counter-styles-032-ref.html", - "==" - ] - ], - {} - ] + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} ] - }, - "hiragana-iroha": { - "css3-counter-styles-033.html": [ - "7011527bd15ffe933e93a72f2a50a7db91975a7a", + ], + "flex-item-transferred-sizes-padding-content-sizing.html": [ + "68a4e36b96cef9ee138779a846a677c2b92585ac", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/hiragana-iroha/css3-counter-styles-033-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-034.html": [ - "98a07b43b4793b3147088192f356fc5e1e80f506", + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "flex-item-vertical-align.html": [ + "be9b66d07f316a01e8c2d46f60533706e0442856", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/hiragana-iroha/css3-counter-styles-034-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-035.html": [ - "a667031e2b1b4d3c10604757ba1040a1f7821afd", + "/css/css-flexbox/reference/flex-item-vertical-align-ref.html", + "==" + ] + ], + {} + ] + ], + "flex-item-z-ordering-001.html": [ + "d7344eb93c5e1336cdc42691f16832155ca86855", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/hiragana-iroha/css3-counter-styles-035-ref.html", - "==" - ] - ], - {} - ] + "/css/css-flexbox/reference/flex-item-z-ordering-001-ref.html", + "==" + ] + ], + {} ] - }, - "japanese-formal": { - "counter-japanese-formal.html": [ - "6558514755197c58f2d5d063d363bbe295767288", + ], + "flex-item-z-ordering-002.html": [ + "349c508e7c544ed31dc73f81e11e9058cf8febdb", + [ + "css/css-flexbox/flex-item-z-ordering-002.html", [ - "css/css-counter-styles/japanese-formal/counter-japanese-formal.html", [ - [ - "/css/css-counter-styles/japanese-formal/counter-japanese-formal-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-047.html": [ - "0c35c7381d9982f0bc121ba504643a4f99d9f9d0", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "flex-lines": { + "multi-line-wrap-reverse-column-reverse.html": [ + "48c18fc5362af607854e03fc79fab9abc408fe36", [ null, [ [ - "/css/css-counter-styles/japanese-formal/css3-counter-styles-047-ref.html", + "/css/css-flexbox/flex-lines/multi-line-wrap-reverse-column-reverse-ref.html", "==" ] ], {} ] ], - "css3-counter-styles-048.html": [ - "c8fa76acbe3e461c2a37a6193899023c4a0e20b9", + "multi-line-wrap-reverse-row-reverse.html": [ + "52943ae0a42a9f18f6e045c69bd878829dac4778", [ null, [ [ - "/css/css-counter-styles/japanese-formal/css3-counter-styles-048-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-049.html": [ - "32fd887e1c82c1b03580b5f190aafb8be07213e0", - [ - "css/css-counter-styles/japanese-formal/css3-counter-styles-049.html", - [ - [ - "/css/css-counter-styles/japanese-formal/css3-counter-styles-049-ref.html", - "==" - ], - [ - "/css/css-counter-styles/japanese-formal/css3-counter-styles-049-alt-ref.html", + "/css/css-flexbox/flex-lines/multi-line-wrap-reverse-row-reverse-ref.html", "==" ] ], {} ] ], - "css3-counter-styles-050.html": [ - "f157901cdaa159468a2734573990d2239325621b", + "multi-line-wrap-with-column-reverse.html": [ + "83acae4167d24df3a2ca70fe62b3f036ff5065d5", [ null, [ [ - "/css/css-counter-styles/japanese-formal/css3-counter-styles-050-ref.html", + "/css/css-flexbox/flex-lines/multi-line-wrap-with-column-reverse-ref.html", "==" ] ], {} ] ], - "css3-counter-styles-051.html": [ - "baa3cf9792b5f6da13eb8883a72f9e0dad1c2c07", + "multi-line-wrap-with-row-reverse.html": [ + "220ce0a7b205bf31dea69b5a4460b7790a1132dc", [ null, [ [ - "/css/css-counter-styles/japanese-formal/css3-counter-styles-051-ref.html", + "/css/css-flexbox/flex-lines/multi-line-wrap-with-row-reverse-ref.html", "==" ] ], @@ -167130,7722 +168012,6868 @@ ] ] }, - "japanese-informal": { - "counter-japanese-informal.html": [ - "5263e99944181db28872558950008124175142b8", + "flex-margin-no-collapse.html": [ + "1df2d79426b16b27a1988f9dcebdab7d8b865b0e", + [ + null, [ - "css/css-counter-styles/japanese-informal/counter-japanese-informal.html", [ - [ - "/css/css-counter-styles/japanese-informal/counter-japanese-informal-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-042.html": [ - "5e30b3fd65cfaa6cac0a690083a967d2c1c444c5", + "/css/css-flexbox/reference/flex-margin-no-collapse-ref.html", + "==" + ] + ], + {} + ] + ], + "flex-minimum-height-flex-items-001.xht": [ + "3d9562e8aaaab80f7c5bde524b3e205668fdaa1e", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/japanese-informal/css3-counter-styles-042-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-043.html": [ - "e848de7947843ced6a035cc16aee4d3469633ff7", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "flex-minimum-height-flex-items-002.xht": [ + "9addd30ca35910357fc369279698ffb21add174d", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/japanese-informal/css3-counter-styles-043-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-044.html": [ - "abb002b3feb9b2c9059ca5bcbdef8b845f0deb3c", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "flex-minimum-height-flex-items-003.xht": [ + "3dc59b9659fa881f0acf84c30e99d2b462f1af8d", + [ + null, [ - "css/css-counter-styles/japanese-informal/css3-counter-styles-044.html", [ - [ - "/css/css-counter-styles/japanese-informal/css3-counter-styles-044-ref.html", - "==" - ], - [ - "/css/css-counter-styles/japanese-informal/css3-counter-styles-044-alt-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-045.html": [ - "889294e7ff14d3755c4c141690fd3f3145c3b66e", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "flex-minimum-height-flex-items-004.xht": [ + "5e72772382ebb3b5fe82110237f652fe76162547", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/japanese-informal/css3-counter-styles-045-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-046.html": [ - "d4502311203dfdf6a90d9c457264893adfb15f2f", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "flex-minimum-height-flex-items-005.xht": [ + "b180d8d47ae3973b84440ed9db1e750fde83977a", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/japanese-informal/css3-counter-styles-046-ref.html", - "==" - ] - ], - {} - ] + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} ] - }, - "kannada": { - "css3-counter-styles-128.html": [ - "e6183794c0316f1d7bff8bccc4699a2408cfe2d5", + ], + "flex-minimum-height-flex-items-006.xht": [ + "1387c6f1d141dacd4fb2abc3bb39f214d074e7d3", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/kannada/css3-counter-styles-128-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-129.html": [ - "902911542b0e3f91ef31433ab6d3c2c6ee151ab2", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "flex-minimum-height-flex-items-007.xht": [ + "790ecb9141e40ecd583d0541cabb52939d5cfa37", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/kannada/css3-counter-styles-129-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-130.html": [ - "8bd508c4cacd2fe76578a400f73e94d6abd0e69c", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "flex-minimum-height-flex-items-008.xht": [ + "ead7a424b374fddb247046d2a36a37a11669baae", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/kannada/css3-counter-styles-130-ref.html", - "==" - ] - ], - {} - ] + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} ] - }, - "katakana": { - "css3-counter-styles-036.html": [ - "0d955835f1cd60ec63cb491bdaac2293e2e9733f", + ], + "flex-minimum-height-flex-items-011.xht": [ + "3c86b0d66ec2668982145dad72409e2e345441f5", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/katakana/css3-counter-styles-036-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-037.html": [ - "3b6523e4c72937797e4c7df8e902343942a661b0", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "flex-minimum-height-flex-items-013.html": [ + "a039c4ac5f4e21e3b54476b644ca9129f8e5f046", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/katakana/css3-counter-styles-037-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-038.html": [ - "a5736b6c29576b49486b1a652bc400d2cd64bca5", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "flex-minimum-height-flex-items-014.html": [ + "b130ff5561f721d69058902f9c5081b3f6471ace", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/katakana/css3-counter-styles-038-ref.html", - "==" - ] - ], - {} - ] + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} ] - }, - "katakana-iroha": { - "css3-counter-styles-039.html": [ - "04c1a96d2ab534ecdf9b7eefd87ee1e2c41698f4", + ], + "flex-minimum-height-flex-items-015.html": [ + "81fd54915f52177649ff0e0d4d1a5fb657ddccfa", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/katakana-iroha/css3-counter-styles-039-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-040.html": [ - "081e0afc3dee7ec61182979c217c5029d47c140e", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "flex-minimum-height-flex-items-016.html": [ + "a5dc87633e7a8a32e8ec1b62c877244f72357339", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/katakana-iroha/css3-counter-styles-040-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-041.html": [ - "3eda2310ca010bd714a1f8c158695ce3dc532c48", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "flex-minimum-height-flex-items-017.html": [ + "b5e194219ec9fb9566c0ed63b3def51661eb6866", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/katakana-iroha/css3-counter-styles-041-ref.html", - "==" - ] - ], - {} - ] + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} ] - }, - "khmer": { - "css3-counter-styles-161.html": [ - "b486cd0738f8178105008f475926f9c1adc301c0", + ], + "flex-minimum-height-flex-items-018.html": [ + "983cac476e83ae97355cc6ad3fc55c6f732a6bf2", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/khmer/css3-counter-styles-161-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-162.html": [ - "bf60c05ff1f670aec12846b3353b9224b8fbf257", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "flex-minimum-height-flex-items-019.html": [ + "3572a6cc88e50ade3a8f7faff5a343bc84d9f581", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/khmer/css3-counter-styles-162-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-163.html": [ - "dcc1a138507d63b696d0ff41806f588cf5fc2474", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "flex-minimum-height-flex-items-020.html": [ + "dad3b6479685107439fb0bf37ebd21538a7abc6e", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/khmer/css3-counter-styles-163-ref.html", - "==" - ] - ], - {} - ] + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} ] - }, - "korean-hangul-formal": { - "counter-korean-hangul-formal.html": [ - "468e0b87b15f9796edbbabd17dc915110ae71ed8", + ], + "flex-minimum-height-flex-items-021.html": [ + "ed8d1d425180615aa0f5193f891c1c313438f79c", + [ + null, [ - "css/css-counter-styles/korean-hangul-formal/counter-korean-hangul-formal.html", [ - [ - "/css/css-counter-styles/korean-hangul-formal/counter-korean-hangul-formal-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-052.html": [ - "ff557273b9aed64fe7fcbd34118a19d96b534fc8", + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "flex-minimum-height-flex-items-022.html": [ + "943ac525fb570adcf62d7ff0edfc88cdd5727a85", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/korean-hangul-formal/css3-counter-styles-052-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-053.html": [ - "7d2ebdc88a903d485df56aefe538fe2ca7be59a7", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "flex-minimum-height-flex-items-023.html": [ + "576d9bf7d4b58a2c086c75e247784d9258bb2dff", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/korean-hangul-formal/css3-counter-styles-053-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-054.html": [ - "e7a0631bc692af59bd572d44c41c8b640ee28e51", + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "flex-minimum-height-flex-items-024.html": [ + "37052f7ec345e8e420a805b1bcada3b5a09211d5", + [ + null, [ - "css/css-counter-styles/korean-hangul-formal/css3-counter-styles-054.html", [ - [ - "/css/css-counter-styles/korean-hangul-formal/css3-counter-styles-054-ref.html", - "==" - ], - [ - "/css/css-counter-styles/korean-hangul-formal/css3-counter-styles-054-alt-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-055.html": [ - "029c8a6f97139dd2dcf81ff0ed8dbc8bd9d61bd9", + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "flex-minimum-height-flex-items-026.html": [ + "9f46c953c4a8396c7dcb58012b16235c0b9e5377", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/korean-hangul-formal/css3-counter-styles-055-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-056.html": [ - "d86af1d6bb33d170abf1a833ae22d6846a413781", + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "flex-minimum-height-flex-items-027.html": [ + "052ff6a5bd89c56b51d76a1782ac87d1a9d1e2c3", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/korean-hangul-formal/css3-counter-styles-056-ref.html", - "==" - ] - ], - {} - ] + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} ] - }, - "korean-hanja-formal": { - "counter-korean-hanja-formal.html": [ - "c6fb66a733dce05f1d743b332cd40f54da588519", + ], + "flex-minimum-height-flex-items-028.html": [ + "45cf76837d345b8e84daec72462f8ae8c42f19b5", + [ + null, [ - "css/css-counter-styles/korean-hanja-formal/counter-korean-hanja-formal.html", [ - [ - "/css/css-counter-styles/korean-hanja-formal/counter-korean-hanja-formal-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-062.html": [ - "9be2ef33939a1f1a08462a6452c7886b46b9ad0b", + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "flex-minimum-height-flex-items-029.html": [ + "62b77b92fc91f206d96b6208d65bfb3bd524088f", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/korean-hanja-formal/css3-counter-styles-062-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-063.html": [ - "b58660d699003b60426463e82dd8cc06f45b7a28", + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "flex-minimum-height-flex-items-030.html": [ + "a3dc56e59e433e64a6f024c5d9ea8264cb658210", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/korean-hanja-formal/css3-counter-styles-063-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-064.html": [ - "2dc899ff37c2179873614e7f31ca0fb5de02ba64", + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "flex-minimum-width-flex-items-001.xht": [ + "cd18483ba414160c46e30bc282dec0c2fcd2f418", + [ + null, [ - "css/css-counter-styles/korean-hanja-formal/css3-counter-styles-064.html", [ - [ - "/css/css-counter-styles/korean-hanja-formal/css3-counter-styles-064-ref.html", - "==" - ], - [ - "/css/css-counter-styles/korean-hanja-formal/css3-counter-styles-064-alt-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-065.html": [ - "b094d644b82ca8d8665d6a61623e06d475920c56", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "flex-minimum-width-flex-items-002.xht": [ + "344ff4def75d70903729f6bbe92711b6a38fc792", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/korean-hanja-formal/css3-counter-styles-065-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-066.html": [ - "2825c62d0a7c6c4d558c399342ecaa7212f92939", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "flex-minimum-width-flex-items-003.xht": [ + "cb3d053f6d34d9578a708915e523555282e3792c", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/korean-hanja-formal/css3-counter-styles-066-ref.html", - "==" - ] - ], - {} - ] + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} ] - }, - "korean-hanja-informal": { - "counter-korean-hanja-informal.html": [ - "dc16c886dc7d0a3017c123beb410bb9fac7a3498", + ], + "flex-minimum-width-flex-items-004.xht": [ + "987137845ff8282ce37529edf60f02e2e0abdf37", + [ + null, [ - "css/css-counter-styles/korean-hanja-informal/counter-korean-hanja-informal.html", [ - [ - "/css/css-counter-styles/korean-hanja-informal/counter-korean-hanja-informal-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-057.html": [ - "d366198b9a8258dc505c5ccae89b5cfe1df123df", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "flex-minimum-width-flex-items-005.xht": [ + "486b6959974c251331dd5c75b1b834fd301ecd00", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/korean-hanja-informal/css3-counter-styles-057-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-058.html": [ - "fcac1ad3eb243adfb2b45acc603c9c1729c7c42b", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "flex-minimum-width-flex-items-006.xht": [ + "1b06ecab7d2b8a30450fcc4fce0d29344941bf20", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/korean-hanja-informal/css3-counter-styles-058-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-059.html": [ - "1982ecd27b770737fed3b83e9d22931653aa5cf4", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "flex-minimum-width-flex-items-007.xht": [ + "158c573825fe7e30d985ae2c480f190f825cfded", + [ + null, [ - "css/css-counter-styles/korean-hanja-informal/css3-counter-styles-059.html", [ - [ - "/css/css-counter-styles/korean-hanja-informal/css3-counter-styles-059-ref.html", - "==" - ], - [ - "/css/css-counter-styles/korean-hanja-informal/css3-counter-styles-059-alt-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-060.html": [ - "8688ec98b24968363df76bca4d6a8c24243ae26a", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "flex-minimum-width-flex-items-008.xht": [ + "3daa38a450d2044491d73011d3fe3a676cf5ffb0", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/korean-hanja-informal/css3-counter-styles-060-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-061.html": [ - "b223a837edb0f40f5a89e898f8929a4cf4f684d1", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "flex-minimum-width-flex-items-009.html": [ + "1700c4a494c89a6c7f7f2b123f0d673d498cc5c5", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/korean-hanja-informal/css3-counter-styles-061-ref.html", - "==" - ] - ], - {} - ] + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} ] - }, - "lao": { - "css3-counter-styles-131.html": [ - "a06be2446a72574868ce1f598557e7b580dc7e34", + ], + "flex-minimum-width-flex-items-010.html": [ + "8845b4896e58d47dac4fc8b25b9fc36b8d594521", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/lao/css3-counter-styles-131-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-132.html": [ - "d8f24d6babbd18c6d39a470ed935b6852ead78f5", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "flex-minimum-width-flex-items-011.html": [ + "0eb6c5fa49c4d5d4ac331a8ba6f194f53d717451", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/lao/css3-counter-styles-132-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-133.html": [ - "41bf1fb8614b3242ca3e8b69cda2b4c8529b9275", + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "flex-minimum-width-flex-items-012.html": [ + "2ce9129eb1100bcbb94b5849d734af0bdd3c8ee1", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/lao/css3-counter-styles-133-ref.html", - "==" - ] - ], - {} - ] + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} ] - }, - "lower-armenian": { - "css3-counter-styles-111.html": [ - "075d8cc98f8dcf09f46289527ae624473f518043", + ], + "flex-minimum-width-flex-items-013.html": [ + "52d334d5197c8a7a5fc3c1bdeb75495dc845f78f", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/lower-armenian/css3-counter-styles-111-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-112.html": [ - "4f078c37d3bfb0fc4cebcfa80c28167111f5fd8e", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "flex-minimum-width-flex-items-015.html": [ + "d4020fe75e3ee1e52b07576132f8db2f880ebfcd", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/lower-armenian/css3-counter-styles-112-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-114.html": [ - "b6a1888fb11193d6d6e1713bda43f7b65aa9c6d5", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "flex-minimum-width-flex-items-016.html": [ + "a3f4eb4a85cebf937e5568f7431358af71e388e3", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/lower-armenian/css3-counter-styles-114-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-115.html": [ - "0d8cafb810d8b0b20b992f9e55d88d7387227c64", + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "flex-order.html": [ + "be24b2817e232b7ad7fc936b7b22787591d3d9db", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/lower-armenian/css3-counter-styles-115-ref.html", - "==" - ] - ], - {} - ] + "/css/css-flexbox/flex-order-ref.html", + "==" + ] + ], + {} ] - }, - "lower-greek": { - "css3-counter-styles-027.html": [ - "d76e28f64fc0c23824ac12a0406ae8006fadb709", + ], + "flex-shrink-001.html": [ + "b4e4851690b8e155496531e66943f9b0e6a37b24", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/lower-greek/css3-counter-styles-027-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-028.html": [ - "3ae4ad59b3b976c2856df582dc661c001c1f8a7e", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "flex-shrink-002.html": [ + "a65d6f2d8e8839c0614a48b4bc7d788601d77698", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/lower-greek/css3-counter-styles-028-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-029.html": [ - "ac4caaf49d3d833ee1d0060b34e314ee0347ac64", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "flex-shrink-003.html": [ + "dc50d88c60b4414ef5f879810f0948b23438c725", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/lower-greek/css3-counter-styles-029-ref.html", - "==" - ] - ], - {} - ] + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} ] - }, - "lower-roman": { - "css3-counter-styles-019.html": [ - "86bae7acbbc0b2fc24baeec45779ca9da5315b23", + ], + "flex-shrink-004.html": [ + "6d4e4a3e06063dd10c0d85e70423e400fcbdc9ba", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/lower-roman/css3-counter-styles-019-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-020.html": [ - "db434a4177b0057d06c5e61392475f31a5941f61", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "flex-shrink-005.html": [ + "464ac85f7a077bcfcabefe3145f5e07e1fe36e6a", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/lower-roman/css3-counter-styles-020-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-020a.html": [ - "94482bc14cdca3d742da8fbed37890d23d612be3", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "flex-shrink-006.html": [ + "5a80a7ccead0018e05ff1dc668e1b9ce04f2956b", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/lower-roman/css3-counter-styles-020a-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-020b.html": [ - "34025cc92f293144bc74fd6bad0af09e3114b0f0", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "flex-shrink-007.html": [ + "80f11abf51864e37cb6448c476f47cac5ce3f91d", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/lower-roman/css3-counter-styles-020b-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-021.html": [ - "30c4c9981dd59b308a0b4471e0379924fe9bc0d4", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "flex-shrink-008.html": [ + "a76c73cd814690f07c3187495d6b91ade17f6d3a", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/lower-roman/css3-counter-styles-021-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-022.html": [ - "6bd53de981c281466ac213bb8f5d318213699f06", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "flex-vertical-align-effect.html": [ + "5ce535b513674d978008806988f8fbdb9eef816e", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/lower-roman/css3-counter-styles-022-ref.html", - "==" - ] - ], - {} - ] + "/css/css-flexbox/reference/flex-vertical-align-effect.html", + "==" + ] + ], + {} ] - }, - "malayalam": { - "css3-counter-styles-134.html": [ - "9698be73e6d821a8f67b26a4ee2ee32bf73b5752", + ], + "flex-wrap-002.html": [ + "d2e07afb45f88611f149a4acfa38928a50571e02", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/malayalam/css3-counter-styles-134-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-135.html": [ - "79a4bc092a43830017bc26ba336d2c1e6ce41af4", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "flex-wrap-003.html": [ + "b1a6619363aba8fb0b01177c596f4fdbf263fc37", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/malayalam/css3-counter-styles-135-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-136.html": [ - "b79af7b2997ab624075a2efe7409c54e577b4bf4", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "flex-wrap-004.html": [ + "679f62ae3e6659fa5627a3e2fb0276bcf6a13420", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/malayalam/css3-counter-styles-136-ref.html", - "==" - ] - ], - {} - ] + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} ] - }, - "mongolian": { - "css3-counter-styles-137.html": [ - "109250c300675259cabe6a2b1fa86ea5df2062a8", + ], + "flex-wrap-005.html": [ + "fb897f21c67dcb630c5eac346687b78f8f5e244a", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/mongolian/css3-counter-styles-137-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-138.html": [ - "10b344e44b6880b6fd322d7f512411f6e1989dc2", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "flex-wrap-006.html": [ + "e616412c2b2f1bd35d9f86800551f2a2065a9265", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/mongolian/css3-counter-styles-138-ref.html", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 255 - ], - [ - 0, - 240 - ] - ] - ] - ] - } - ] - ], - "css3-counter-styles-139.html": [ - "923142ac070c3f82beff520cbc4e5166ed21b647", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "flexbox-align-items-center-nested-001.html": [ + "b6e2fdff0aaffc2df8187389183cd170bf6fb301", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/mongolian/css3-counter-styles-139-ref.html", - "==" - ] - ], - {} - ] + "/css/css-flexbox/flexbox-align-items-center-nested-001-ref.html", + "==" + ] + ], + {} ] - }, - "myanmar": { - "css3-counter-styles-140.html": [ - "45441745fb7389e52500eb8d931fef0465da5420", + ], + "flexbox-align-self-baseline-horiz-001a.xhtml": [ + "0460f4162f5f424b4693c19cab688f5b5db16fa3", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/myanmar/css3-counter-styles-140-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-141.html": [ - "30e8f1a94db323ae1f4efeba118b4b8bf301d992", + "/css/css-flexbox/flexbox-align-self-baseline-horiz-001-ref.xhtml", + "==" + ] + ], + {} + ] + ], + "flexbox-align-self-baseline-horiz-001b.xhtml": [ + "3a656e41e94041274f0e763a1b11789e886da419", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/myanmar/css3-counter-styles-141-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-142.html": [ - "b279441869f26d7300763faa3c760ae7a24a4782", + "/css/css-flexbox/flexbox-align-self-baseline-horiz-001-ref.xhtml", + "==" + ] + ], + {} + ] + ], + "flexbox-align-self-baseline-horiz-002.xhtml": [ + "8aa364ec51a4ea9dd1232a7fb0519cdbc225ccc8", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/myanmar/css3-counter-styles-142-ref.html", - "==" - ] - ], - {} - ] + "/css/css-flexbox/flexbox-align-self-baseline-horiz-002-ref.xhtml", + "==" + ] + ], + {} ] - }, - "oriya": { - "css3-counter-styles-143.html": [ - "c66805bdf1bee4b9176504e7cd73b2a6a2c53953", + ], + "flexbox-align-self-baseline-horiz-003.xhtml": [ + "0b8e8499c3ff10498eed8bf6a9e791472e4c43d4", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/oriya/css3-counter-styles-143-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-144.html": [ - "28b79d505fda53e91087652705fe67eb01f84e60", + "/css/css-flexbox/flexbox-align-self-baseline-horiz-003-ref.xhtml", + "==" + ] + ], + {} + ] + ], + "flexbox-align-self-baseline-horiz-004.xhtml": [ + "14fbf4bc6e7c674ccb8b2ff4b41e85e8fcb7e6b2", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/oriya/css3-counter-styles-144-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-145.html": [ - "07883894141743f097e104646df5735f4283351d", + "/css/css-flexbox/flexbox-align-self-baseline-horiz-004-ref.xhtml", + "==" + ] + ], + {} + ] + ], + "flexbox-align-self-baseline-horiz-005.xhtml": [ + "cfe0d1b02b46d462a48d0e629c7fa2cf8ef60086", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/oriya/css3-counter-styles-145-ref.html", - "==" - ] - ], - {} - ] + "/css/css-flexbox/flexbox-align-self-baseline-horiz-005-ref.xhtml", + "==" + ] + ], + {} ] - }, - "persian": { - "css3-counter-styles-104.html": [ - "b79a35d336dd344ee7db85b973ac4e8d9e95058c", + ], + "flexbox-align-self-baseline-horiz-006.xhtml": [ + "417f966587d30e2308a52f8880b503dddd970c41", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/persian/css3-counter-styles-104-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-105.html": [ - "db0eb25cc215365e012c4a2ee0dc20cbeed271f3", + "/css/css-flexbox/flexbox-align-self-baseline-horiz-006-ref.xhtml", + "==" + ] + ], + {} + ] + ], + "flexbox-align-self-baseline-horiz-007.xhtml": [ + "50d74f5ebf645f078682f217eb514e59ebebab42", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/persian/css3-counter-styles-105-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-106.html": [ - "9a93e2ef63ea90c56320bed7309daffe713fb1d0", + "/css/css-flexbox/flexbox-align-self-baseline-horiz-007-ref.xhtml", + "==" + ] + ], + {} + ] + ], + "flexbox-align-self-baseline-horiz-008.xhtml": [ + "00bc4d9fce8033483de8f6e9172a166842a8ccf0", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/persian/css3-counter-styles-106-ref.html", - "==" - ] - ], - {} - ] + "/css/css-flexbox/flexbox-align-self-baseline-horiz-008-ref.xhtml", + "==" + ] + ], + {} ] - }, - "simp-chinese-formal": { - "counter-simp-chinese-formal.html": [ - "29bf9520a0c84a8709e40f4623e67bc0e488125d", + ], + "flexbox-align-self-horiz-001-block.xhtml": [ + "365354506f86a16a2f2313296d5d99fa284400ab", + [ + null, [ - "css/css-counter-styles/simp-chinese-formal/counter-simp-chinese-formal.html", [ - [ - "/css/css-counter-styles/simp-chinese-formal/counter-simp-chinese-formal-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-076.html": [ - "b62563409786f6935b8a952da9e558db95586ee6", - [ - null, - [ - [ - "/css/css-counter-styles/simp-chinese-formal/css3-counter-styles-076-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-077.html": [ - "7e34e2e89027dc64de188f97828b738170533618", + "/css/css-flexbox/flexbox-align-self-horiz-001-ref.xhtml", + "==" + ] + ], + {} + ] + ], + "flexbox-align-self-horiz-001-table.xhtml": [ + "c168c822e998771c82c87fe82975f2743ba00aa3", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/simp-chinese-formal/css3-counter-styles-077-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-078.html": [ - "d52e018180cf72b233886d09248ef0635265cccc", + "/css/css-flexbox/flexbox-align-self-horiz-001-ref.xhtml", + "==" + ] + ], + {} + ] + ], + "flexbox-align-self-horiz-002.xhtml": [ + "d1273d1f55b8284821a8ed47b7cfc617670f8e52", + [ + null, [ - "css/css-counter-styles/simp-chinese-formal/css3-counter-styles-078.html", [ - [ - "/css/css-counter-styles/simp-chinese-formal/css3-counter-styles-078-ref.html", - "==" - ], - [ - "/css/css-counter-styles/simp-chinese-formal/css3-counter-styles-078-alt-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-079.html": [ - "284412d1ad3acd819fc66cb42aaa45e0e259421a", + "/css/css-flexbox/flexbox-align-self-horiz-002-ref.xhtml", + "==" + ] + ], + {} + ] + ], + "flexbox-align-self-horiz-003.xhtml": [ + "4414d0a0a071ddad0f342a9f25efcc5a1b944132", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/simp-chinese-formal/css3-counter-styles-079-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-080.html": [ - "f838522566989f0f359c83b1768dcbbacb522306", + "/css/css-flexbox/flexbox-align-self-horiz-003-ref.xhtml", + "==" + ] + ], + {} + ] + ], + "flexbox-align-self-horiz-004.xhtml": [ + "b7bdf396a077cece36dc8c6f79b11ad680db9dda", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/simp-chinese-formal/css3-counter-styles-080-ref.html", - "==" - ] - ], - {} - ] + "/css/css-flexbox/flexbox-align-self-horiz-004-ref.xhtml", + "==" + ] + ], + {} ] - }, - "simp-chinese-informal": { - "counter-simp-chinese-informal.html": [ - "2cf2984972fc5fdd71405c5042a77651ef68a4f8", + ], + "flexbox-align-self-horiz-005.xhtml": [ + "cff89d3251668a12e2c74a1dcc82457c5f49d8c0", + [ + null, [ - "css/css-counter-styles/simp-chinese-informal/counter-simp-chinese-informal.html", [ - [ - "/css/css-counter-styles/simp-chinese-informal/counter-simp-chinese-informal-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-071.html": [ - "8daf67c76a4780b594e96705fa506df3f1eaefc9", + "/css/css-flexbox/flexbox-align-self-horiz-005-ref.xhtml", + "==" + ] + ], + {} + ] + ], + "flexbox-align-self-stretch-vert-001.html": [ + "578dff9cae91d6c71d3a2a28fb186b8610ec78aa", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/simp-chinese-informal/css3-counter-styles-071-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-072.html": [ - "cfb05badfcf8a7763ab92817ffc4ffc4731c711c", + "/css/css-flexbox/flexbox-align-self-stretch-vert-001-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox-align-self-stretch-vert-002.html": [ + "c2b90301193160fcc95aa665768b7992265ce774", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/simp-chinese-informal/css3-counter-styles-072-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-073.html": [ - "15a7314044a494bb354c352a2991a209c7e6b222", + "/css/css-flexbox/flexbox-align-self-stretch-vert-002-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox-align-self-vert-001.xhtml": [ + "c439ff0f6ca724276a88fb55d1d96dfdc5178b07", + [ + null, [ - "css/css-counter-styles/simp-chinese-informal/css3-counter-styles-073.html", [ - [ - "/css/css-counter-styles/simp-chinese-informal/css3-counter-styles-073-ref.html", - "==" - ], - [ - "/css/css-counter-styles/simp-chinese-informal/css3-counter-styles-073-alt-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-074.html": [ - "4dd91d03fa8e56a116289f8637b1d22c401db20f", + "/css/css-flexbox/flexbox-align-self-vert-001-ref.xhtml", + "==" + ] + ], + {} + ] + ], + "flexbox-align-self-vert-002.xhtml": [ + "2ff89bdf5f52c8e040dd665d53888c0566cafc5d", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/simp-chinese-informal/css3-counter-styles-074-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-075.html": [ - "8d7450cd134860880369fb7575f4aa3f62c6c479", + "/css/css-flexbox/flexbox-align-self-vert-002-ref.xhtml", + "==" + ] + ], + {} + ] + ], + "flexbox-align-self-vert-003.xhtml": [ + "721ce548563fddbefd8acc6f2d47fd2c031a2f5b", + [ + null, [ - null, [ + "/css/css-flexbox/flexbox-align-self-vert-003-ref.xhtml", + "==" + ] + ], + { + "fuzzy": [ [ - "/css/css-counter-styles/simp-chinese-informal/css3-counter-styles-075-ref.html", - "==" + null, + [ + [ + 0, + 58 + ], + [ + 0, + 33 + ] + ] ] - ], - {} - ] + ] + } ] - }, - "tamil": { - "css3-counter-styles-146.html": [ - "74fbb919850d91fc410c806bc5216fa6a3ab145a", + ], + "flexbox-align-self-vert-004.xhtml": [ + "ff98bafd6000e8c73a15e62e6e244039d8173036", + [ + null, [ - null, [ + "/css/css-flexbox/flexbox-align-self-vert-004-ref.xhtml", + "==" + ] + ], + { + "fuzzy": [ [ - "/css/css-counter-styles/tamil/css3-counter-styles-146-ref.html", - "==" + null, + [ + [ + 0, + 58 + ], + [ + 0, + 33 + ] + ] ] - ], - {} - ] - ], - "css3-counter-styles-147.html": [ - "9a48a832989f97e12c086929c14dc11bf9c63199", + ] + } + ] + ], + "flexbox-align-self-vert-rtl-001.xhtml": [ + "a32ed619c88656b30d1387b9ec45edbbccc56574", + [ + null, [ - null, [ + "/css/css-flexbox/flexbox-align-self-vert-rtl-001-ref.xhtml", + "==" + ] + ], + { + "fuzzy": [ [ - "/css/css-counter-styles/tamil/css3-counter-styles-147-ref.html", - "==" + null, + [ + [ + 0, + 60 + ], + [ + 0, + 101 + ] + ] ] - ], - {} - ] - ], - "css3-counter-styles-148.html": [ - "e149cb06bd7eb31c2c515eb9ab1e3170393ae504", + ] + } + ] + ], + "flexbox-align-self-vert-rtl-002.xhtml": [ + "a3a81e25d10a86d8a729ecec36afb1d0e0bf578d", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/tamil/css3-counter-styles-148-ref.html", - "==" - ] - ], - {} - ] + "/css/css-flexbox/flexbox-align-self-vert-rtl-002-ref.xhtml", + "==" + ] + ], + {} ] - }, - "telugu": { - "css3-counter-styles-149.html": [ - "b7008b7809982c47e287aefd111eac1781a7dda7", + ], + "flexbox-align-self-vert-rtl-003.xhtml": [ + "9a3bfccb35abbcda22341a143510344ba88c2437", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/telugu/css3-counter-styles-149-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-150.html": [ - "3f4e3c71e0cde9cf1448cb7d0772ad26e216a4f6", + "/css/css-flexbox/flexbox-align-self-vert-rtl-003-ref.xhtml", + "==" + ] + ], + {} + ] + ], + "flexbox-align-self-vert-rtl-004.xhtml": [ + "4f4f49afda37f66b50e6b502bf0244540d1bf84e", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/telugu/css3-counter-styles-150-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-151.html": [ - "c763a65c76fe7ef16cee9fba02b0a1bed4974ace", + "/css/css-flexbox/flexbox-align-self-vert-rtl-004-ref.xhtml", + "==" + ] + ], + {} + ] + ], + "flexbox-align-self-vert-rtl-005.xhtml": [ + "420c334c841efb113d7e769deb3062097ff54307", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/telugu/css3-counter-styles-151-ref.html", - "==" - ] - ], - {} - ] + "/css/css-flexbox/flexbox-align-self-vert-rtl-005-ref.xhtml", + "==" + ] + ], + {} ] - }, - "thai": { - "css3-counter-styles-152.html": [ - "9b1e76a4c926d46342d5f8e9cef50de41694f2eb", + ], + "flexbox-anonymous-items-001.html": [ + "0c85c46d55adf19f16b1196cf19cdb4c6c23d3ca", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/thai/css3-counter-styles-152-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-153.html": [ - "9de0fae60fcea883164e827d238125e5141e5beb", + "/css/css-flexbox/flexbox-anonymous-items-001-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox-baseline-align-self-baseline-horiz-001.html": [ + "a7308f74876ee406e41b20824c0acf244599400f", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/thai/css3-counter-styles-153-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-154.html": [ - "5362b78e4121c54bf64bb1494f33ce46d519f2e5", + "/css/css-flexbox/flexbox-baseline-align-self-baseline-horiz-001-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox-baseline-align-self-baseline-vert-001.html": [ + "97963fb41e605cbb42c05d7d3e217e794f82c9ab", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/thai/css3-counter-styles-154-ref.html", - "==" - ] - ], - {} - ] + "/css/css-flexbox/flexbox-baseline-align-self-baseline-vert-001-ref.html", + "==" + ] + ], + {} ] - }, - "tibetan": { - "css3-counter-styles-155.html": [ - "2e7b9ea3749b10bf3a22463085a3afd705d2eff4", + ], + "flexbox-baseline-empty-001a.html": [ + "50334acc8bab8e734a59934cacdf454f8d8c0f57", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/tibetan/css3-counter-styles-155-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-156.html": [ - "5827e0ad77423e91e9d3f88e0451f910bc80b729", + "/css/css-flexbox/flexbox-baseline-empty-001-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox-baseline-empty-001b.html": [ + "2195df4f543cc6d446cdbdafbffa2b496947a87f", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/tibetan/css3-counter-styles-156-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-157.html": [ - "47aaa4660b75f77a96cdd308ed09a5efd5f17947", + "/css/css-flexbox/flexbox-baseline-empty-001-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox-baseline-multi-item-horiz-001a.html": [ + "94bbdec20214e4cd346a151610faa42723deca41", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/tibetan/css3-counter-styles-157-ref.html", - "==" - ] - ], - {} - ] + "/css/css-flexbox/flexbox-baseline-multi-item-horiz-001-ref.html", + "==" + ] + ], + {} ] - }, - "trad-chinese-formal": { - "counter-trad-chinese-formal.html": [ - "4829d3da42f2a43e42b69e38793f6f1bffb7848d", + ], + "flexbox-baseline-multi-item-horiz-001b.html": [ + "d40a986405bd47fb210b139d3e9c814f6ded093d", + [ + null, [ - "css/css-counter-styles/trad-chinese-formal/counter-trad-chinese-formal.html", [ - [ - "/css/css-counter-styles/trad-chinese-formal/counter-trad-chinese-formal-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-086.html": [ - "3acb5ad2d70815a9dc0ef2e1d7c0de1bb73ff7a3", + "/css/css-flexbox/flexbox-baseline-multi-item-horiz-001-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox-baseline-multi-item-vert-001a.html": [ + "06c2f7063e88540bc57442c6be6b0726a56e57a6", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/trad-chinese-formal/css3-counter-styles-086-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-087.html": [ - "cd70ee34d56d6e9645d19c362ba7fc88d233c12c", + "/css/css-flexbox/flexbox-baseline-multi-item-vert-001-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox-baseline-multi-item-vert-001b.html": [ + "6928bba97fb642326d2c4526ecec3054df48b878", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/trad-chinese-formal/css3-counter-styles-087-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-088.html": [ - "9eeee257954501cd08ea7c455efce74603c23d2c", + "/css/css-flexbox/flexbox-baseline-multi-item-vert-001-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox-baseline-multi-line-horiz-001.html": [ + "0faf41bb3c9cf8f6e6fa6923b50f1adc565fff55", + [ + null, [ - "css/css-counter-styles/trad-chinese-formal/css3-counter-styles-088.html", [ - [ - "/css/css-counter-styles/trad-chinese-formal/css3-counter-styles-088-ref.html", - "==" - ], - [ - "/css/css-counter-styles/trad-chinese-formal/css3-counter-styles-088-alt-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-089.html": [ - "ec96c7dfc56e2ddb41e527c57e410e68f26e29c8", + "/css/css-flexbox/flexbox-baseline-multi-line-horiz-001-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox-baseline-multi-line-horiz-002.html": [ + "a58a7ec5f5e13d9348e08c86b4b7566cce1118fe", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/trad-chinese-formal/css3-counter-styles-089-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-090.html": [ - "2153679bcb3a05aeb1b87f3b3d96e130520041af", + "/css/css-flexbox/flexbox-baseline-multi-line-horiz-002-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox-baseline-multi-line-horiz-003.html": [ + "ef7d787beb6ad8386a1e4078ad1a41bb5fc31592", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/trad-chinese-formal/css3-counter-styles-090-ref.html", - "==" - ] - ], - {} - ] + "/css/css-flexbox/flexbox-baseline-multi-line-horiz-003-ref.html", + "==" + ] + ], + {} ] - }, - "trad-chinese-informal": { - "counter-trad-chinese-informal.html": [ - "8fdc1c6cbbaaa50155968e3cbf85667caa8cbc6f", + ], + "flexbox-baseline-multi-line-horiz-004.html": [ + "21db212f99274d9bde5f69f080b76da64e0360f2", + [ + null, [ - "css/css-counter-styles/trad-chinese-informal/counter-trad-chinese-informal.html", [ - [ - "/css/css-counter-styles/trad-chinese-informal/counter-trad-chinese-informal-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-081.html": [ - "64ce4a6eed3eaa90512374d9a83ba51113ee4773", + "/css/css-flexbox/flexbox-baseline-multi-line-horiz-004-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox-baseline-multi-line-vert-001.html": [ + "d2b510ade630e2f33f6a3e4de50f956c9995ee7a", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/trad-chinese-informal/css3-counter-styles-081-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-082.html": [ - "3b552ee3486c2023fd45aefc9e10ff064c0aa36e", + "/css/css-flexbox/flexbox-baseline-multi-line-vert-001-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox-baseline-multi-line-vert-002.html": [ + "062d808d897b5421954f9148ec55171d2b00ddf3", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/trad-chinese-informal/css3-counter-styles-082-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-083.html": [ - "c450a527923761ab2d56d4f43ccb4d9911747567", + "/css/css-flexbox/flexbox-baseline-multi-line-vert-002-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox-baseline-nested-001.html": [ + "57999e57ced9416dfbb12dae5dc5ae4e56ea3cfb", + [ + null, [ - "css/css-counter-styles/trad-chinese-informal/css3-counter-styles-083.html", [ - [ - "/css/css-counter-styles/trad-chinese-informal/css3-counter-styles-083-ref.html", - "==" - ], - [ - "/css/css-counter-styles/trad-chinese-informal/css3-counter-styles-083-alt-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-084.html": [ - "bf386b103f5dc659e012671c00edc473439cd8c4", + "/css/css-flexbox/flexbox-baseline-nested-001-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox-baseline-single-item-001a.html": [ + "b9df6c23f0e7e03e5670006699fd6e2c0003e81a", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/trad-chinese-informal/css3-counter-styles-084-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-085.html": [ - "94b575ffafce5a23889e895faa51e96133c5b6e1", + "/css/css-flexbox/flexbox-baseline-single-item-001-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox-baseline-single-item-001b.html": [ + "523045894bbed0414922502f2d9fd3f2b666382e", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/trad-chinese-informal/css3-counter-styles-085-ref.html", - "==" - ] - ], - {} - ] + "/css/css-flexbox/flexbox-baseline-single-item-001-ref.html", + "==" + ] + ], + {} ] - }, - "upper-armenian": { - "css3-counter-styles-107.html": [ - "f997ebd07b6c2ed629daf9d5f17ff70765cc7ee0", + ], + "flexbox-basic-block-horiz-001.xhtml": [ + "1345263df3971064483dbfbdc3bef29a76f06bcd", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/upper-armenian/css3-counter-styles-107-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-108.html": [ - "7a55dbbc695635b6f46e5ebace9c30b5a5e093fd", + "/css/css-flexbox/flexbox-basic-block-horiz-001-ref.xhtml", + "==" + ] + ], + {} + ] + ], + "flexbox-basic-block-horiz-001v.xhtml": [ + "f1dfdfdb86ca172056183534cf7c1d906b4c5d6f", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/upper-armenian/css3-counter-styles-108-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-109.html": [ - "0299db5484c129661ca986db381e624012c23de0", + "/css/css-flexbox/flexbox-basic-block-horiz-001-ref.xhtml", + "==" + ] + ], + {} + ] + ], + "flexbox-basic-block-vert-001.xhtml": [ + "92c32c828caab079e80226fbcf9dae88589f3357", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/upper-armenian/css3-counter-styles-109-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-110.html": [ - "9687b6c31c53d5afd2a7a0345a2e138eb7b27836", + "/css/css-flexbox/flexbox-basic-block-vert-001-ref.xhtml", + "==" + ] + ], + {} + ] + ], + "flexbox-basic-block-vert-001v.xhtml": [ + "da943dfc56f32501f743a0f43fc40416b8a054c4", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/upper-armenian/css3-counter-styles-110-ref.html", - "==" - ] - ], - {} - ] + "/css/css-flexbox/flexbox-basic-block-vert-001-ref.xhtml", + "==" + ] + ], + {} ] - }, - "upper-roman": { - "css3-counter-styles-023.html": [ - "cab6d4694fa55c00b56f352f050c5ff26015461e", + ], + "flexbox-basic-canvas-horiz-001.xhtml": [ + "6d3629e3267bfc74cf42eff2f6b7b53a6c0807d5", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/upper-roman/css3-counter-styles-023-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-024.html": [ - "e3a539ccd8970ba25dab81a14b2f1a1bdc1a5c63", + "/css/css-flexbox/flexbox-basic-canvas-horiz-001-ref.xhtml", + "==" + ] + ], + {} + ] + ], + "flexbox-basic-canvas-horiz-001v.xhtml": [ + "ad623d77f7ffc72cf69d97b0c717db70a33cea38", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/upper-roman/css3-counter-styles-024-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-024a.html": [ - "336503883e3fb7460a3b53ba4148f15d130353c5", + "/css/css-flexbox/flexbox-basic-canvas-horiz-001-ref.xhtml", + "==" + ] + ], + {} + ] + ], + "flexbox-basic-canvas-vert-001.xhtml": [ + "ba47c207ab8f3755201b2237584ed0f6d53dd135", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/upper-roman/css3-counter-styles-024a-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-025.html": [ - "322679183f2965ec1b247913d8202fd5b168540c", + "/css/css-flexbox/flexbox-basic-canvas-vert-001-ref.xhtml", + "==" + ] + ], + {} + ] + ], + "flexbox-basic-canvas-vert-001v.xhtml": [ + "d37b45f2337b80d2c6e0072f310aa98a7b7b7c0a", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/upper-roman/css3-counter-styles-025-ref.html", - "==" - ] - ], - {} - ] - ], - "css3-counter-styles-026.html": [ - "40f78b2ae398ba4bd2f718b77acf43c5076d532d", + "/css/css-flexbox/flexbox-basic-canvas-vert-001-ref.xhtml", + "==" + ] + ], + {} + ] + ], + "flexbox-basic-fieldset-horiz-001.xhtml": [ + "8a504859dccc86944743b3976a7bd42653b9f6d3", + [ + null, [ - null, [ - [ - "/css/css-counter-styles/upper-roman/css3-counter-styles-026-ref.html", - "==" - ] - ], - {} - ] + "/css/css-flexbox/flexbox-basic-fieldset-horiz-001-ref.xhtml", + "==" + ] + ], + {} ] - } - }, - "css-display": { - "display-change-iframe.html": [ - "5fc53274e2ac5e16278fd20799ba60a74f2ec41b", + ], + "flexbox-basic-fieldset-vert-001.xhtml": [ + "75d592f4cb90358cfb44098c028e1c6fc83c2ef7", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/flexbox-basic-fieldset-vert-001-ref.xhtml", "==" ] ], {} ] ], - "display-change-object-iframe.html": [ - "a44cfde79ee2b81365fa43ebae224e9b27cfa6da", + "flexbox-basic-iframe-horiz-001.xhtml": [ + "323b065199e1ca5c256ad7cd6b05927b00aa4be6", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/flexbox-basic-iframe-horiz-001-ref.xhtml", "==" ] ], {} ] ], - "display-contents-alignment-001.html": [ - "6a6bf8c748f716d43fdd98564bfc55be1fb9bfd6", + "flexbox-basic-iframe-vert-001.xhtml": [ + "08ea016d7bd2a1c70e4be0212b413b4482119fcd", [ null, [ [ - "/css/css-display/display-contents-alignment-001-ref.html", + "/css/css-flexbox/flexbox-basic-iframe-vert-001-ref.xhtml", "==" ] ], {} ] ], - "display-contents-alignment-002.html": [ - "d8fa0d9efeb95873bc1800e5f816a1f3b9923d4b", + "flexbox-basic-img-horiz-001.xhtml": [ + "b5f3a6fce640a2af6a5e9d0ed1176c0d7e272633", [ null, [ [ - "/css/css-display/display-contents-alignment-002-ref.html", + "/css/css-flexbox/flexbox-basic-img-horiz-001-ref.xhtml", "==" ] ], {} ] ], - "display-contents-before-after-001.html": [ - "65fc9fee845b4a21b9ddf3da39b5be6935b31eb6", + "flexbox-basic-img-vert-001.xhtml": [ + "e5513137dcbad6e696d48d7229671a96f3725b45", [ null, [ [ - "/css/css-display/display-contents-pass-ref.html", + "/css/css-flexbox/flexbox-basic-img-vert-001-ref.xhtml", "==" ] ], {} ] ], - "display-contents-before-after-002.html": [ - "5860a73c3d3161a9d019cf207936692d8d0d1604", + "flexbox-basic-textarea-horiz-001.xhtml": [ + "7906d242afa3ce8497b3b4bfcdc667ead27ee515", [ null, [ [ - "/css/css-display/display-contents-pass-ref.html", + "/css/css-flexbox/flexbox-basic-textarea-horiz-001-ref.xhtml", "==" ] ], {} ] ], - "display-contents-before-after-003.html": [ - "30451426cf14f2082b7baec00d80d9ea274bf057", + "flexbox-basic-textarea-vert-001.xhtml": [ + "ac092edf8b2389d7d09d1e4ef6bf441041e412d3", [ null, [ [ - "/css/css-display/display-contents-pass-ref.html", + "/css/css-flexbox/flexbox-basic-textarea-vert-001-ref.xhtml", "==" ] ], {} ] ], - "display-contents-block-001.html": [ - "5a5a4f9e6cb49da68f1b2d6d4b502cd0a29ed34c", + "flexbox-basic-video-horiz-001.xhtml": [ + "c976ccffbde87be226de794e9c7c0fad63e3bdba", [ null, [ [ - "/css/css-display/display-contents-pass-no-red-ref.html", + "/css/css-flexbox/flexbox-basic-video-horiz-001-ref.xhtml", "==" ] ], {} ] ], - "display-contents-block-002.html": [ - "2dd8a10b5e8e40b10241e5cd2499e22d18199bce", + "flexbox-basic-video-vert-001.xhtml": [ + "7e4133269d1f75c13cbbb6191f6883baebf3708e", [ null, [ [ - "/css/css-display/display-contents-block-002-ref.html", + "/css/css-flexbox/flexbox-basic-video-vert-001-ref.xhtml", "==" ] ], {} ] ], - "display-contents-button.html": [ - "3711972a270bd071b0db2eb942a2951523d32a96", + "flexbox-break-request-horiz-001a.html": [ + "583f461bc21eefa3ce19e014aa421c7af3040649", [ null, [ [ - "/css/css-display/display-contents-pass-ref.html", + "/css/css-flexbox/flexbox-break-request-horiz-001-ref.html", "==" ] ], {} ] ], - "display-contents-details-001.html": [ - "b1cefa6ffde9953c1e7e9c1fb0174db9447c65d8", + "flexbox-break-request-horiz-001b.html": [ + "545c8c4c6d3a202cd6b6b6fb581b7e6f608a08f9", [ null, [ [ - "/css/css-display/display-contents-details-001-ref.html", + "/css/css-flexbox/flexbox-break-request-horiz-001-ref.html", "==" ] ], {} ] ], - "display-contents-details.html": [ - "0dcda91ab380d8291e8aa3074794ee80866aaf3b", + "flexbox-break-request-horiz-002a.html": [ + "3bf1ac438b1c7e8faff4bce09a8154c59eb2ff23", [ null, [ [ - "/css/css-display/display-contents-pass-ref.html", + "/css/css-flexbox/flexbox-break-request-horiz-002-ref.html", "==" ] ], {} ] ], - "display-contents-dynamic-before-after-001.html": [ - "b8dc4ba1e884ee123d5a98a072129599d0b8bb2b", + "flexbox-break-request-horiz-002b.html": [ + "3a53dace61a5198000c4ef38dc04751ab0a698be", [ null, [ [ - "/css/css-display/display-contents-pass-green-no-red-ref.html", + "/css/css-flexbox/flexbox-break-request-horiz-002-ref.html", "==" ] ], {} ] ], - "display-contents-dynamic-before-after-first-letter-001.html": [ - "7684a4b9002bd43700d0b84f8b41a852a7df0c93", + "flexbox-break-request-vert-001a.html": [ + "57fd0d5eb92fbc7f143265f9deefd38dffce3ef9", [ null, [ [ - "/css/css-display/display-contents-pass-green-no-red-ref.html", + "/css/css-flexbox/flexbox-break-request-vert-001-ref.html", "==" ] ], {} ] ], - "display-contents-dynamic-fieldset-legend-001.html": [ - "a17828bd7a8d242ee3f95700cc0d0a2b88f19235", + "flexbox-break-request-vert-001b.html": [ + "8c5a88683d9e482926c549436613b80f3bc28806", [ - "css/css-display/display-contents-dynamic-fieldset-legend-001.html", + null, [ [ - "/css/css-display/display-contents-dynamic-fieldset-legend-001-ref.html", + "/css/css-flexbox/flexbox-break-request-vert-001-ref.html", "==" ] ], {} ] ], - "display-contents-dynamic-flex-001-inline.html": [ - "2d797795b074635d7cc9bf41f73915bd56c6874d", + "flexbox-break-request-vert-002a.html": [ + "e68b98a5ae0844345764786677096780d43e093f", [ null, [ [ - "/css/css-display/display-contents-flex-001-ref.html", + "/css/css-flexbox/flexbox-break-request-vert-002-ref.html", "==" ] ], {} ] ], - "display-contents-dynamic-flex-001-none.html": [ - "bf2af1a5b2137e9a289d13907b9e4f13459eb7a9", + "flexbox-break-request-vert-002b.html": [ + "cda5fecd44f3757dc23a3ef49549bebb37b9b433", [ null, [ [ - "/css/css-display/display-contents-flex-001-ref.html", + "/css/css-flexbox/flexbox-break-request-vert-002-ref.html", "==" ] ], {} ] ], - "display-contents-dynamic-flex-002-inline.html": [ - "a31d923150a6d9042f5d9b1066e222db0ef41455", + "flexbox-collapsed-item-baseline-001.html": [ + "0ffa27761933548c8f0d122f700b7631031c6c15", [ null, [ [ - "/css/css-display/display-contents-flex-002-ref.html", + "/css/css-flexbox/flexbox-collapsed-item-baseline-001-ref.html", "==" ] ], {} ] ], - "display-contents-dynamic-flex-002-none.html": [ - "64fbf03b8add0767b10f2846ad219ec0b8552d9a", + "flexbox-collapsed-item-horiz-001.html": [ + "2c4385af8c8552e87c6d3c8a2a3064ab001992ea", [ null, [ [ - "/css/css-display/display-contents-flex-002-ref.html", + "/css/css-flexbox/flexbox-collapsed-item-horiz-001-ref.html", "==" ] ], {} ] ], - "display-contents-dynamic-flex-003-inline.html": [ - "435a10a724fa87e61ae9c53082cc0ce4a99494f5", + "flexbox-collapsed-item-horiz-002.html": [ + "97af3805ce92928b47b9ca9c2513e0a4715bbda9", [ null, [ [ - "/css/css-display/display-contents-flex-002-ref.html", + "/css/css-flexbox/flexbox-collapsed-item-horiz-002-ref.html", "==" ] ], {} ] ], - "display-contents-dynamic-flex-003-none.html": [ - "5c357c1632bcf97c50a8c74bbd16cc52d419894b", + "flexbox-collapsed-item-horiz-003.html": [ + "4476bc18f2ae25b64808cd2cbda93de37dc318dc", [ null, [ [ - "/css/css-display/display-contents-flex-002-ref.html", + "/css/css-flexbox/flexbox-collapsed-item-horiz-003-ref.html", "==" ] ], {} ] ], - "display-contents-dynamic-generated-content-fieldset-001.html": [ - "8f8a0ba4797109b162db35da511afb2a0c3885f2", + "flexbox-column-row-gap-001.html": [ + "25b28e8094754df403205ef468c682b19a6284c3", [ null, [ [ - "/css/css-display/display-contents-dynamic-generated-content-fieldset-001-ref.html", + "/css/css-flexbox/flexbox-column-row-gap-001-ref.html", "==" ] ], {} ] ], - "display-contents-dynamic-inline-flex-001-inline.html": [ - "f14e133a0419aa809d00c12eced98f8d7d0cfd69", + "flexbox-column-row-gap-002.html": [ + "fcd19cf8d483267ec511482942c7dd64b03f98e6", [ null, [ [ - "/css/css-display/display-contents-inline-flex-001-ref.html", + "/css/css-flexbox/flexbox-column-row-gap-002-ref.html", "==" ] ], {} ] ], - "display-contents-dynamic-inline-flex-001-none.html": [ - "f14e133a0419aa809d00c12eced98f8d7d0cfd69", + "flexbox-column-row-gap-003.html": [ + "2dcd02717317a4c445e53df881ea555010cd20f6", [ null, [ [ - "/css/css-display/display-contents-inline-flex-001-ref.html", + "/css/css-flexbox/flexbox-column-row-gap-003-ref.html", "==" ] ], {} ] ], - "display-contents-dynamic-list-001-inline.html": [ - "f44ee28fd23cd234a6e4c246707c7ee1e79bb9bf", + "flexbox-column-row-gap-004.html": [ + "0d86b3818ff02aae7cb05d527bb487b653eebf3d", [ null, [ [ - "/css/css-display/display-contents-list-001-ref.html", + "/css/css-flexbox/flexbox-column-row-gap-004-ref.html", "==" ] ], {} ] ], - "display-contents-dynamic-list-001-none.html": [ - "f44ee28fd23cd234a6e4c246707c7ee1e79bb9bf", + "flexbox-definite-cross-size-constrained-percentage.html": [ + "ae0836fdad630fa54047d2b005d7db42cb81644f", [ null, [ [ - "/css/css-display/display-contents-list-001-ref.html", + "/css/css-flexbox/flexbox-definite-cross-size-constrained-percentage-ref.html", "==" ] ], {} ] ], - "display-contents-dynamic-multicol-001-inline.html": [ - "b8b2c6bb100c33e2ca621140455d543d19eb7bd0", + "flexbox-definite-sizes-001.html": [ + "5bff6146e0ebe32a3e535c3566b98b84818d4773", [ null, [ [ - "/css/css-display/display-contents-multicol-001-ref.html", + "/css/css-flexbox/flexbox-definite-sizes-001-ref.html", "==" ] ], {} ] ], - "display-contents-dynamic-multicol-001-none.html": [ - "f171fc09fcdcf9d1c4db93e7fa94deea4b665ee7", + "flexbox-definite-sizes-002.html": [ + "126fd5e50c25a5bad04c096c59a9184d6e165ce7", [ null, [ [ - "/css/css-display/display-contents-multicol-001-ref.html", + "/css/css-flexbox/flexbox-definite-sizes-001-ref.html", "==" ] ], {} ] ], - "display-contents-dynamic-pseudo-insertion-001.html": [ - "f35c3cc47b47f01eac3c14429e6254f07374524f", + "flexbox-definite-sizes-003.html": [ + "bc5b0751dbe356c012aa4b76a60eb5415a4063b3", [ null, [ [ - "/css/css-display/display-contents-dynamic-pseudo-insertion-001-ref.html", + "/css/css-flexbox/flexbox-definite-sizes-001-ref.html", "==" ] ], {} ] ], - "display-contents-dynamic-table-001-inline.html": [ - "4f2578cbb0eb60c0ea9d3540481c431de86c8de7", + "flexbox-definite-sizes-004.html": [ + "cf54aabe9936b3963e7343d566d957633fc26c69", [ null, [ [ - "/css/css-display/display-contents-table-001-ref.html", + "/css/css-flexbox/flexbox-definite-sizes-001-ref.html", "==" ] ], {} ] ], - "display-contents-dynamic-table-001-none.html": [ - "eb4297d4314528ece43f1c3427c4a037d3267e76", + "flexbox-definite-sizes-005.html": [ + "76beb2a41db70d2f00de159d1285fbc5310a3d40", [ null, [ [ - "/css/css-display/display-contents-table-001-ref.html", + "/css/css-flexbox/flexbox-definite-sizes-005-ref.html", "==" ] ], {} ] ], - "display-contents-dynamic-table-002-inline.html": [ - "e7a9d200d710d3bb84991eab13e449d03d4bb064", + "flexbox-definite-sizes-006.html": [ + "4b5aaf8dc443ed986dafc334c79dd3d7627698f8", [ null, [ [ - "/css/css-display/display-contents-table-002-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "display-contents-dynamic-table-002-none.html": [ - "964b6d72f0a237765fc677e4c3b0f9cb0cf027b6", + "flexbox-dyn-resize-001.html": [ + "d64c4bdf28ecb783af4f342d515dcf63134602c6", [ null, [ [ - "/css/css-display/display-contents-table-002-ref.html", + "/css/css-flexbox/flexbox-dyn-resize-001-ref.html", "==" ] ], {} ] ], - "display-contents-fieldset-002.html": [ - "612d483d7ccde68724097996ce10bda3c596a574", + "flexbox-flex-basis-content-001a.html": [ + "1ac926498cb39a7665836387d3c6efc92fba536d", [ null, [ [ - "/css/css-display/display-contents-fieldset-002-ref.html", + "/css/css-flexbox/flexbox-flex-basis-content-001-ref.html", "==" ] ], {} ] ], - "display-contents-fieldset-nested-legend.html": [ - "a3bd2fc9983aabd8f046b4d4e51511bd65295a5b", + "flexbox-flex-basis-content-001b.html": [ + "b41fd409b74ddff9fa74872a308b0b3b523d85a2", [ null, [ [ - "/css/css-display/display-contents-fieldset-nested-legend-ref.html", + "/css/css-flexbox/flexbox-flex-basis-content-001-ref.html", "==" ] ], {} ] ], - "display-contents-fieldset.html": [ - "f38a3763cfb954966c4eb8527d45a213635ea525", + "flexbox-flex-basis-content-002a.html": [ + "68c67987dd87f644fd5c65349da070ff4c03c5a3", [ null, [ [ - "/css/css-display/display-contents-pass-ref.html", + "/css/css-flexbox/flexbox-flex-basis-content-002-ref.html", "==" ] ], {} ] ], - "display-contents-first-letter-001.html": [ - "eb645c9ee711d6af8106724ade73dab58ca10786", + "flexbox-flex-basis-content-002b.html": [ + "d6d4171eed115654fdde15f587b3b762c4eab1fb", [ null, [ [ - "/css/css-display/display-contents-pass-green-no-red-ref.html", + "/css/css-flexbox/flexbox-flex-basis-content-002-ref.html", "==" ] ], {} ] ], - "display-contents-first-letter-002.html": [ - "8d1d8572ac125ebb6c90c38afdf348d04afab01c", + "flexbox-flex-basis-content-003a.html": [ + "83dbae086844c52e83897d73866fffbb5ff0e2d3", [ null, [ [ - "/css/css-display/display-contents-pass-green-no-red-ref.html", + "/css/css-flexbox/flexbox-flex-basis-content-003-ref.html", "==" ] ], {} ] ], - "display-contents-first-line-001.html": [ - "7fbd4b3bff40aea32b9de02ae3c8937193703bf6", + "flexbox-flex-basis-content-003b.html": [ + "a81403c098f010a0fe0b18b0de9511827bdceca0", [ null, [ [ - "/css/css-display/display-contents-pass-green-no-red-ref.html", + "/css/css-flexbox/flexbox-flex-basis-content-003-ref.html", "==" ] ], {} ] ], - "display-contents-first-line-002.html": [ - "ae900235a5e9bed2fff278d5ecd2b3a48098a8f1", + "flexbox-flex-basis-content-004a.html": [ + "65a86b508f470e945dd102b9e0e7043e80844034", [ null, [ [ - "/css/css-display/display-contents-pass-green-no-red-ref.html", + "/css/css-flexbox/flexbox-flex-basis-content-004-ref.html", "==" ] ], {} ] ], - "display-contents-flex-001.html": [ - "da4cd7200837593f782018a3778381a43779f83b", + "flexbox-flex-basis-content-004b.html": [ + "a686f1aa1e19bdc7ebbec7a3ddb105031818a4f2", [ null, [ [ - "/css/css-display/display-contents-flex-001-ref.html", + "/css/css-flexbox/flexbox-flex-basis-content-004-ref.html", "==" ] ], {} ] ], - "display-contents-flex-002.html": [ - "869ca00b72d7d2a4ce66331c053a5006b9eb328f", + "flexbox-flex-direction-column-percentage-ignored.html": [ + "037ef3e83f8731680c1741921904403deeaa72bd", [ null, [ [ - "/css/css-display/display-contents-flex-002-ref.html", + "/css/css-flexbox/reference/flexbox-flex-direction-column-percentage-ignored-ref.html", "==" ] ], {} ] ], - "display-contents-flex-003.html": [ - "6425db9421f66b6975c181f9449d8793dcb339f2", + "flexbox-flex-direction-column-reverse.htm": [ + "aeff3f7cc1adef5b752e18fd4a77a1a5df2dd852", [ null, [ [ - "/css/css-display/display-contents-flex-002-ref.html", + "/css/css-flexbox/reference/flexbox-flex-direction-ref.htm", "==" ] ], {} ] ], - "display-contents-float-001.html": [ - "d51e7c1d4a258688231bb8fd8769944271b570cd", + "flexbox-flex-direction-column.htm": [ + "56920400cd82ae196630e439be6d7b026bb5b4ae", [ null, [ [ - "/css/css-display/display-contents-pass-no-red-ref.html", + "/css/css-flexbox/reference/flexbox-flex-direction-ref.htm", "==" ] ], {} ] ], - "display-contents-inline-001.html": [ - "9527382e8b551d4a38984426e386c951c6b3750f", + "flexbox-flex-direction-default.htm": [ + "0d41d54e6d41cb92aa73107e21b3b8f7f47e2630", [ null, [ [ - "/css/css-display/display-contents-pass-no-red-ref.html", + "/css/css-flexbox/reference/flexbox-flex-direction-ref.htm", "==" ] ], {} ] ], - "display-contents-inline-flex-001.html": [ - "43b502731aefbaa348671e32171f0e1eb4bca04b", + "flexbox-flex-direction-row-reverse.htm": [ + "eaa2649382b8ce03c62e2036f585f6757d492ceb", [ null, [ [ - "/css/css-display/display-contents-inline-flex-001-ref.html", + "/css/css-flexbox/reference/flexbox-flex-direction-ref.htm", "==" ] ], {} ] ], - "display-contents-line-height.html": [ - "31fd5a6d479d57a0e6a9c7dba1ad54e59473be51", + "flexbox-flex-direction-row.htm": [ + "9dbb80f23347ee8d3c273789f3422dfcf75ea095", [ null, [ [ - "/css/css-display/display-contents-line-height-ref.html", + "/css/css-flexbox/reference/flexbox-flex-direction-ref.htm", "==" ] ], {} ] ], - "display-contents-list-001.html": [ - "7b1fd44cae25282e0fcaf69abd3d3d3eb8c1ced6", + "flexbox-flex-flow-001.html": [ + "a29b89aa6904ca41a773638c99dec4da733fb5bc", [ null, [ [ - "/css/css-display/display-contents-list-001-ref.html", + "/css/css-flexbox/flexbox-flex-flow-001-ref.html", "==" ] ], {} ] ], - "display-contents-multicol-001.html": [ - "2213fdc684e48cd2f5f08b2daf8a6506a9b946f5", + "flexbox-flex-flow-002.html": [ + "8ba3abdf4bc39ee818c06bcdc3cf0fba281c1696", [ null, [ [ - "/css/css-display/display-contents-multicol-001-ref.html", + "/css/css-flexbox/flexbox-flex-flow-002-ref.html", "==" ] ], {} ] ], - "display-contents-oof-001.html": [ - "03509bf9ef351ef28518570af8913a3089c6188e", + "flexbox-flex-wrap-default.htm": [ + "e3046fd12680fe58377b31839e8d6364d686f3db", [ null, [ [ - "/css/css-display/display-contents-pass-no-red-ref.html", + "/css/css-flexbox/reference/flexbox-flex-wrap-nowrap-ref.htm", "==" ] ], {} ] ], - "display-contents-oof-002.html": [ - "8df8251a671a6d5e0ea7aa8099b089f975ab799e", + "flexbox-flex-wrap-flexing.html": [ + "b172fe6fbdbb7ec34f0eb88110e8325b2173a1cf", [ null, [ [ - "/css/css-display/display-contents-pass-no-red-ref.html", + "/css/css-flexbox/flexbox-flex-wrap-flexing-ref.html", "==" ] ], {} ] ], - "display-contents-root-background.html": [ - "6770266f513164d2bc3453e0a5c1f7522a216f98", + "flexbox-flex-wrap-horiz-001.html": [ + "75137a2f312a237ec77669a8b0310d7425e3bf4b", [ null, [ [ - "/css/css-display/display-contents-root-background-ref.html", + "/css/css-flexbox/flexbox-flex-wrap-horiz-001-ref.html", "==" ] ], {} ] ], - "display-contents-shadow-dom-1.html": [ - "45dd6d9b775327890a32ba537bed45a122753479", + "flexbox-flex-wrap-horiz-002.html": [ + "901a31ec578d301bbf845ac356e2c5c167a0084e", [ - "css/css-display/display-contents-shadow-dom-1.html", + null, [ [ - "/css/css-display/display-contents-shadow-dom-1-ref.html", + "/css/css-flexbox/flexbox-flex-wrap-horiz-002-ref.html", "==" ] ], {} ] ], - "display-contents-shadow-host-whitespace.html": [ - "84b04dba1013af9091f3d943ca106ab655676842", + "flexbox-flex-wrap-nowrap.htm": [ + "3f385e0f70ddb6c135c149354527a51765baacc5", [ null, [ [ - "/css/reference/pass_if_two_words.html", + "/css/css-flexbox/reference/flexbox-flex-wrap-nowrap-ref.htm", "==" ] ], {} ] ], - "display-contents-sharing-001.html": [ - "3ecb8eb2b1f4d4e69c1ebe061c6f66ef0087e20c", + "flexbox-flex-wrap-vert-001.html": [ + "b5229b65be4653a67d8de2be793ee1c93819be5b", [ null, [ [ - "/css/css-display/display-contents-sharing-001-ref.html", + "/css/css-flexbox/flexbox-flex-wrap-vert-001-ref.html", "==" ] ], {} ] ], - "display-contents-slot-attach-whitespace.html": [ - "c29b5ba6348130981ff47505c8f8281806a3ef64", + "flexbox-flex-wrap-vert-002.html": [ + "8a2dcbc402d7c3e8addc7a5b623b935922f6ff08", [ - "css/css-display/display-contents-slot-attach-whitespace.html", + null, [ [ - "/css/reference/pass_if_two_words.html", + "/css/css-flexbox/flexbox-flex-wrap-vert-002-ref.html", "==" ] ], {} ] ], - "display-contents-state-change-001.html": [ - "3923041e0deb677494dc3368cec8f97ab295fa67", + "flexbox-flex-wrap-wrap-reverse.htm": [ + "9c12a37b459b332d1627caeb081ad3291f958175", [ null, [ [ - "/css/css-display/display-contents-state-change-001-ref.html", + "/css/css-flexbox/reference/flexbox-flex-direction-ref.htm", "==" ] ], {} ] ], - "display-contents-suppression-dynamic-001.html": [ - "5007e1f57d35538bf43f7ccc616d53bddafb20c7", + "flexbox-flex-wrap-wrap.htm": [ + "dbd3081e442470054fb766488df06e5be45e4f43", [ null, [ [ - "/css/css-display/display-contents-suppression-dynamic-001-ref.html", + "/css/css-flexbox/reference/flexbox-flex-direction-ref.htm", "==" ] ], {} ] ], - "display-contents-svg-elements.html": [ - "7ccc92f72070bc4646c83d731d4d62816d6715ba", + "flexbox-gap-position-absolute.html": [ + "850f1a42d4e48b1cb8e5a10bee24dfa3966ad7df", [ null, [ [ - "/css/css-display/display-contents-svg-elements-ref.html", + "/css/css-flexbox/flexbox-gap-position-absolute-ref.html", "==" ] ], {} ] ], - "display-contents-table-001.html": [ - "d3c37fe361ab21d63bc844bb87c1f8e525831a89", + "flexbox-iframe-intrinsic-size-001.html": [ + "8c5127b690fb687cdc6fb4ceb5a311484e66d2d6", [ null, [ [ - "/css/css-display/display-contents-table-001-ref.html", + "/css/css-flexbox/flexbox-iframe-intrinsic-size-001-ref.html", "==" ] ], {} ] ], - "display-contents-table-002.html": [ - "2a30a1b8b11fd92cd813f7cc97bf7282ed814f4e", + "flexbox-items-as-stacking-contexts-001.xhtml": [ + "fac905339110967578289f18ae156e4a651d81ab", [ null, [ [ - "/css/css-display/display-contents-table-002-ref.html", + "/css/css-flexbox/flexbox-items-as-stacking-contexts-001-ref.xhtml", "==" ] ], {} ] ], - "display-contents-td-001.html": [ - "5585024a4997df12890e3226410ab52c23c4e8bd", + "flexbox-items-as-stacking-contexts-002.html": [ + "4b21404a9bd71ce25aafbe1f972b6716f91bad8f", [ null, [ [ - "/css/css-display/display-contents-pass-ref.html", + "/css/css-flexbox/flexbox-items-as-stacking-contexts-002-ref.html", "==" ] ], {} ] ], - "display-contents-text-inherit-002.html": [ - "51bf96846c7d432f5393ccfb0a1e29be52fcdd9f", + "flexbox-items-as-stacking-contexts-003.html": [ + "5f0fd8ba35ee8214ac61edec55577b28b0e1c3f4", [ null, [ [ - "/css/css-display/display-contents-text-inherit-ref.html", + "/css/css-flexbox/flexbox-items-as-stacking-contexts-003-ref.html", "==" ] ], {} ] ], - "display-contents-text-inherit.html": [ - "b7e769cd69f9eccf3ca898fed013a8be8f362c31", + "flexbox-justify-content-horiz-001a.xhtml": [ + "494c35bb68703a67ceb6e15817b221ddf488c13a", [ null, [ [ - "/css/css-display/display-contents-text-inherit-ref.html", + "/css/css-flexbox/flexbox-justify-content-horiz-001-ref.xhtml", "==" ] ], {} ] ], - "display-contents-text-only-001.html": [ - "0f4ebf7aae140830adfb4fa94aefef566e725f87", + "flexbox-justify-content-horiz-001b.xhtml": [ + "468d5150fb33d22e9bf56b23af6b74e87d04dd74", [ null, [ [ - "/css/css-display/display-contents-text-only-001-ref.html", + "/css/css-flexbox/flexbox-justify-content-horiz-001-ref.xhtml", "==" ] ], {} ] ], - "display-contents-tr-001.html": [ - "f0f6894c95b301feacc52f1cf45467faf44b90d4", + "flexbox-justify-content-horiz-002.xhtml": [ + "93d34ab798ba277e1a77506aaa764cee4c80b7ca", [ null, [ [ - "/css/css-display/display-contents-tr-001-ref.html", + "/css/css-flexbox/flexbox-justify-content-horiz-002-ref.xhtml", "==" ] ], {} ] ], - "display-contents-unusual-html-elements-none.html": [ - "53f5f9e5c7f447bc87cc1ee460323b93df2cdc68", + "flexbox-justify-content-horiz-003.xhtml": [ + "40c8fb5c027bd5f0c7823f4a327d97513a187d3c", [ null, [ [ - "/css/css-display/display-contents-pass-ref.html", + "/css/css-flexbox/flexbox-justify-content-horiz-003-ref.xhtml", "==" ] ], {} ] ], - "display-contents-whitespace-inside-inline.html": [ - "a97c02575ba216c656ba9fc552b2390faf8e307c", + "flexbox-justify-content-horiz-004.xhtml": [ + "8f46426e4f67df2e13ad47a69a31a86d909b66de", [ null, [ [ - "/css/css-display/display-contents-whitespace-inside-inline-ref.html", + "/css/css-flexbox/flexbox-justify-content-horiz-004-ref.xhtml", "==" ] ], {} ] ], - "display-first-line-002.html": [ - "fef1d0b001c3bf46d9c5eea6741dc804bd057c72", + "flexbox-justify-content-horiz-005.xhtml": [ + "53cba03fbe579ee64179cb5c90cc9734beab9366", [ null, [ [ - "/css/css-display/display-first-line-002-ref.html", + "/css/css-flexbox/flexbox-justify-content-horiz-005-ref.xhtml", "==" ] ], {} ] ], - "display-flow-root-001.html": [ - "3d1dcb020df129dd10d66bb4b04d62c3c280cfb6", + "flexbox-justify-content-horiz-006.xhtml": [ + "dcbe6184c7e8156bad3c87c95af58d8e335fe958", [ null, [ [ - "/css/css-display/display-flow-root-001-ref.html", + "/css/css-flexbox/flexbox-justify-content-horiz-006-ref.xhtml", "==" ] ], {} ] ], - "display-flow-root-002.html": [ - "0640db93db4f6de8f5f85e7ef255e4da8774e24e", + "flexbox-justify-content-vert-001a.xhtml": [ + "d4b32b3914483f7673ba28b14914e7587556e5a1", [ null, [ [ - "/css/css-display/display-flow-root-002-ref.html", + "/css/css-flexbox/flexbox-justify-content-vert-001-ref.xhtml", "==" ] ], {} ] ], - "display-flow-root-list-item-001.html": [ - "6c5bece5864aa15f7bd34b26055ed755b43db1f1", + "flexbox-justify-content-vert-001b.xhtml": [ + "0ce154e2421b14c0707f5243760e878c71e2e280", [ null, [ [ - "/css/css-display/display-flow-root-list-item-001-ref.html", + "/css/css-flexbox/flexbox-justify-content-vert-001-ref.xhtml", "==" ] ], {} ] ], - "display-inline-dynamic-001.html": [ - "7df697f940d4a20d26c92fa40266ed1f67d4cd19", + "flexbox-justify-content-vert-002.xhtml": [ + "21683a6cc7d3e480409849b11e5fd3baecb60644", [ null, [ [ - "/css/css-display/display-inline-dynamic-001-ref.html", + "/css/css-flexbox/flexbox-justify-content-vert-002-ref.xhtml", "==" ] ], {} ] ], - "display-math-on-pseudo-elements-002.html": [ - "426adb6a23bc3faa8c83dc20eddb3a7e21a7e19e", + "flexbox-justify-content-vert-003.xhtml": [ + "8b99455e71590dc294be187f8ebfde6a43d6ed76", [ null, [ [ - "/css/css-display/display-math-on-pseudo-elements-002-ref.html", + "/css/css-flexbox/flexbox-justify-content-vert-003-ref.xhtml", "==" ] ], {} ] ], - "display-none-inline-img.html": [ - "f97ca7bbd3519453b362405c542a065a25c43368", + "flexbox-justify-content-vert-004.xhtml": [ + "770ba7ba44c01f68250137c88c28f0596eec06c2", [ null, [ [ - "/css/css-display/display-none-inline-img-ref.html", + "/css/css-flexbox/flexbox-justify-content-vert-004-ref.xhtml", "==" ] ], {} ] ], - "run-in": { - "counter-increment-applies-to-011.xht": [ - "73b1c94f4ba20fce9053e6df39c00d342b3c65d3", + "flexbox-justify-content-vert-005.xhtml": [ + "bb99dd09b45f72c6aeb260ebd8e37782c173c01d", + [ + null, [ - null, [ - [ - "/css/reference/pass_if_number_5.xht", - "==" - ] - ], - {} - ] - ], - "counter-reset-applies-to-011.xht": [ - "8038177d70ecd05b05d18fc0cd44b8490caf56e8", + "/css/css-flexbox/flexbox-justify-content-vert-005-ref.xhtml", + "==" + ] + ], + {} + ] + ], + "flexbox-justify-content-vert-006.xhtml": [ + "38a7f91d783c246a42b2e88c14d0a173142afddf", + [ + null, [ - null, [ - [ - "/css/reference/pass_if_number_5.xht", - "==" - ] - ], - {} - ] - ], - "font-style-applies-to-004.xht": [ - "449a5c420bc652a0dc8602b9fccacbf388b74642", + "/css/css-flexbox/flexbox-justify-content-vert-006-ref.xhtml", + "==" + ] + ], + {} + ] + ], + "flexbox-justify-content-wmvert-001.xhtml": [ + "f676c6c1cdc5eceaa0ccb5fb77e7f4650618fb0b", + [ + null, [ - null, [ - [ - "/css/reference/pass_if_filler_text_slanted.xht", - "==" - ] - ], - {} - ] - ], - "font-variant-applies-to-004.xht": [ - "af4508220729090422a23411dd0152b25b60f615", + "/css/css-flexbox/flexbox-justify-content-wmvert-001-ref.xhtml", + "==" + ] + ], + {} + ] + ], + "flexbox-margin-auto-horiz-001.xhtml": [ + "76d7a88312aee623aacbecfe3c6d28a0d41834f4", + [ + null, [ - null, [ - [ - "/css/reference/pass_if_filler_text_match_smallcaps.xht", - "==" - ] - ], - {} - ] - ], - "font-weight-applies-to-004.xht": [ - "bcbf70e3d3e4cd98c6b9d64adbd10ac6bd8d1c7c", + "/css/css-flexbox/flexbox-margin-auto-horiz-001-ref.xhtml", + "==" + ] + ], + {} + ] + ], + "flexbox-margin-auto-horiz-002.xhtml": [ + "a31bc7d6f7ad433fe628a4e6fee507a24c2a921e", + [ + null, [ - null, [ - [ - "/css/reference/pass_if_filler_text_match_bold.xht", - "==" - ] - ], - {} - ] - ], - "height-applies-to-011.xht": [ - "67acc00c794dee4a9c3ac6bda800c17912ee3db0", + "/css/css-flexbox/flexbox-margin-auto-horiz-002-ref.xhtml", + "==" + ] + ], + {} + ] + ], + "flexbox-mbp-horiz-001-reverse.xhtml": [ + "11c723221ff426891b6e3c9ddc1f36b659eada58", + [ + null, [ - null, [ - [ - "/css/reference/pass_if_square_96px_black.html", - "==" - ] - ], - {} - ] - ], - "letter-spacing-applies-to-004.xht": [ - "33c71fbcb132a49d87b38b090cef61e2ae7f07cf", + "/css/css-flexbox/flexbox-mbp-horiz-001-reverse-ref.xhtml", + "==" + ] + ], + {} + ] + ], + "flexbox-mbp-horiz-001-rtl-reverse.xhtml": [ + "b09f121fe778cf22d8ad13d7ca3667b33d104808", + [ + null, [ - null, [ - [ - "/css/reference/black_box_ends_when_blue_box_ends_6_boxes_ahem.html", - "==" - ] - ], - {} - ] - ], - "list-style-applies-to-011.xht": [ - "4b0a0e46ce9f4374636a0c33e634beb3412c703d", + "/css/css-flexbox/flexbox-mbp-horiz-001-ref.xhtml", + "==" + ] + ], + {} + ] + ], + "flexbox-mbp-horiz-001-rtl.xhtml": [ + "00f5aa54f68a2dc47ea870b1904f021669024f67", + [ + null, [ - null, [ - [ - "/css/reference/single_square_list_marker.xht", - "==" - ] - ], - {} - ] - ], - "list-style-type-applies-to-011.xht": [ - "fed66d951f161af7de54336b7ab4eec5acf2a677", + "/css/css-flexbox/flexbox-mbp-horiz-001-reverse-ref.xhtml", + "==" + ] + ], + {} + ] + ], + "flexbox-mbp-horiz-001.xhtml": [ + "31560f4461872bb0cabf43a928f23ff239accdb7", + [ + null, [ - null, [ - [ - "/css/reference/single_square_list_marker.xht", - "==" - ] - ], - {} - ] - ], - "max-height-applies-to-011.xht": [ - "f27561c182619fb6ce3465c4067887e81eb92f4a", + "/css/css-flexbox/flexbox-mbp-horiz-001-ref.xhtml", + "==" + ] + ], + {} + ] + ], + "flexbox-mbp-horiz-002a.xhtml": [ + "b47b7aa55a7858781f72ff1408623d8bf97b8d44", + [ + null, [ - null, [ - [ - "/css/reference/pass_if_square_96px_black.html", - "==" - ] - ], - {} - ] - ], - "max-width-applies-to-011.xht": [ - "65337647e009f7ded029379c79a7567fed598483", + "/css/css-flexbox/flexbox-mbp-horiz-002-ref.xhtml", + "==" + ] + ], + {} + ] + ], + "flexbox-mbp-horiz-002b.xhtml": [ + "b8a8616552e850bc9b1149cbe4cb6a3c552cb19c", + [ + null, [ - null, [ - [ - "/css/reference/pass_if_square_96px_black.html", - "==" - ] - ], - {} - ] - ], - "min-height-applies-to-011.xht": [ - "ca2a6ba0faeaecdbc3aa63851a1c268734f553d6", + "/css/css-flexbox/flexbox-mbp-horiz-002-ref.xhtml", + "==" + ] + ], + {} + ] + ], + "flexbox-mbp-horiz-002v.xhtml": [ + "a02e3406c90d9b3d1077d988e20344540f3b5084", + [ + null, [ - null, [ - [ - "/css/reference/pass_if_square_96px_black.html", - "==" - ] - ], - {} - ] - ], - "min-width-applies-to-011.xht": [ - "b905bf938399741c815c686929afb1eaab6ea11e", + "/css/css-flexbox/flexbox-mbp-horiz-002-ref.xhtml", + "==" + ] + ], + {} + ] + ], + "flexbox-mbp-horiz-003-reverse.xhtml": [ + "cbe4c58b41634042d196ff8b4de43c0d2ba0d901", + [ + null, [ - null, [ - [ - "/css/reference/pass_if_square_96px_black.html", - "==" - ] - ], - {} - ] - ], - "quotes-applies-to-011.xht": [ - "9594507359fed4901c788f64fd3b93b5ea0eb512", + "/css/css-flexbox/flexbox-mbp-horiz-003-reverse-ref.xhtml", + "==" + ] + ], + {} + ] + ], + "flexbox-mbp-horiz-003.xhtml": [ + "f0dc49b5ac20e00de54801daf406f937f2cecab1", + [ + null, [ - null, [ - [ - "/css/reference/pass_if_pass_below.html", - "==" - ] - ], - {} - ] - ], - "run-in-abspos-between-001.xht": [ - "1af8ee4567466de393c923760f402f91c232d852", + "/css/css-flexbox/flexbox-mbp-horiz-003-ref.xhtml", + "==" + ] + ], + {} + ] + ], + "flexbox-mbp-horiz-003v.xhtml": [ + "8baef3022729bb7a59b94b84c7054a28e1d78646", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-basic-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-abspos-between-002.xht": [ - "8303df2bf6fa04c87e7e1e7d425c305d0aca20a7", + "/css/css-flexbox/flexbox-mbp-horiz-003-ref.xhtml", + "==" + ] + ], + {} + ] + ], + "flexbox-mbp-horiz-004.xhtml": [ + "b513253fd19fdace9da5e3ba45ccc4915b47d03b", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-basic-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-abspos-between-003.xht": [ - "5053a7a5ea06ec58f26c57a43c114c5f5e2fe1f6", + "/css/css-flexbox/flexbox-mbp-horiz-004-ref.xhtml", + "==" + ] + ], + {} + ] + ], + "flexbox-min-height-auto-001.html": [ + "f69ed9561914980f534a89e65a69fcde35bb9e4f", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-text-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-basic-001.xht": [ - "d28a657595e8d8a93bb3424ef3590a0761bcf221", + "/css/css-flexbox/flexbox-min-height-auto-001-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox-min-height-auto-002a.html": [ + "0fd9207fb4b9c0c87fd3ae28994b757b992205c7", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-basic-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-basic-002.xht": [ - "6c7b7c3c9e71c80b99ef3b8c8bde0da763c63138", + "/css/css-flexbox/flexbox-min-height-auto-002-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox-min-height-auto-002b.html": [ + "412b4b98c714320202c2fe02794583796bd546af", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-basic-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-basic-003.xht": [ - "16121978c32fb280bccc97a5570e4145348f9cf1", + "/css/css-flexbox/flexbox-min-height-auto-002-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox-min-height-auto-002c.html": [ + "3093c65e5f9f259446a6c9605e98fb0f5ba48b0e", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-basic-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-basic-004.xht": [ - "faad2521e231683fd472ebdc4f2a0edf7f578f19", + "/css/css-flexbox/flexbox-min-height-auto-002-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox-min-height-auto-003.html": [ + "15ef35d9cd7f46078af9084832f841ed9a3e2e80", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-basic-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-basic-005.xht": [ - "47c7632bbb480782dfb6d802c25659ff185a982e", + "/css/css-flexbox/flexbox-min-height-auto-003-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox-min-height-auto-004.html": [ + "a04b9b573e2b9c8c8a44f10ee35ecc7c711f5e7f", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-block-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-basic-006.xht": [ - "d77b02a0013f344f1566b26b2fce7a182fd052ea", + "/css/css-flexbox/flexbox-min-height-auto-004-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox-min-width-auto-001.html": [ + "cb347abead55e6739fe5a04b203a1aeb6eb1af4a", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-basic-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-basic-007.xht": [ - "4138a9f69741b9034d0efb59afcc3ed4601f5976", + "/css/css-flexbox/flexbox-min-width-auto-001-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox-min-width-auto-002a.html": [ + "fe60255c937bc579b953c59b6b9ad596cab07daf", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-basic-007-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-basic-008.xht": [ - "412eec67868f15dd1bf078d86e608f489cf08342", + "/css/css-flexbox/flexbox-min-width-auto-002-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox-min-width-auto-002b.html": [ + "a56b214dc6820838903b12c8a60e53da601dbe98", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-basic-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-basic-009.xht": [ - "14c997804d260d37b5dba4f2e19b8639c59dd623", + "/css/css-flexbox/flexbox-min-width-auto-002-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox-min-width-auto-002c.html": [ + "95b98e5b583c511a26d3d76b2565af9d8631b1b4", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-basic-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-basic-010.xht": [ - "2dc30223e6989de345083602caa200148c5cd0d2", + "/css/css-flexbox/flexbox-min-width-auto-002-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox-min-width-auto-003.html": [ + "ecc7ab71700450c5f0859891ea11783a24761807", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-basic-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-basic-011.xht": [ - "afc85413af3638c5b4b1e5bb4736f35f77cd3308", + "/css/css-flexbox/flexbox-min-width-auto-003-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox-min-width-auto-004.html": [ + "a090f2154f8e6ad8c5c46ed87d224b5ef37f6c10", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-basic-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-basic-012.xht": [ - "c5d35bf236a1c5d15281f5b3e602fe5a471476be", + "/css/css-flexbox/flexbox-min-width-auto-004-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox-min-width-auto-005.html": [ + "7cf43c4d493d8dcfb4c84efdc5cb6cd6fd8ba957", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-basic-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-basic-013.xht": [ - "af810ac289df4bd1c7ebe433f16c31e1266bee4c", + "/css/css-flexbox/reference/flexbox-min-width-auto-005-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox-min-width-auto-006.html": [ + "30e077e438fd3079742be03f17f46e00592f9aaa", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-basic-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-basic-014.xht": [ - "9f52e92cecaac7e478e13440f022669327a82e4a", + "/css/css-flexbox/reference/flexbox-min-width-auto-006-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox-order-only-flexitems.html": [ + "0d99139e0d5233c08f0ebd67b9612accf5dd53b2", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-pre-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-basic-015.xht": [ - "8eee5e98df1e94ab27a44041eddc5f022ab8d522", + "/css/css-flexbox/reference/flexbox-order-only-flexitems-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox-overflow-horiz-001.html": [ + "afc08d8c470d484db1b51ca1b7931d9bdf8b1ac2", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-pre-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-basic-016.xht": [ - "4e8d71ae890e58d3c0edb426b42df02e6d932ee9", + "/css/css-flexbox/flexbox-overflow-horiz-001-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox-overflow-horiz-002.html": [ + "545ebb12e742200d3f55013e90f109f5ebc88f8f", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-pre-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-basic-017.xht": [ - "065fe751f38452aec883fa1b3ca04a405d0e3675", + "/css/css-flexbox/flexbox-overflow-horiz-002-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox-overflow-horiz-003.html": [ + "66cbe76622530018b05fe1e5bdcd0406caf2aa54", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-pre-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-basic-018.xht": [ - "d776c2df87c61c32070d015297058d916beee716", + "/css/css-flexbox/flexbox-overflow-horiz-003-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox-overflow-horiz-004.html": [ + "ca7471f1d28a08a0d61480783f46221abc34e89e", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-basic-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-block-between-001.xht": [ - "503924f23b5c5e6afc8a5feb2e649725bc14e7d5", + "/css/css-flexbox/flexbox-overflow-horiz-004-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox-overflow-horiz-005.html": [ + "da4e063ca8719449ebcdae6b310850e21be3f018", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-text-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-block-between-002.xht": [ - "eeace162a0ae4e3dce4d41643e9070a863743402", + "/css/css-flexbox/flexbox-overflow-horiz-005-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox-overflow-padding-001.html": [ + "1b5737a9e8ee2499f3b29e619e5d19c8aa81b7e5", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-text-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-block-between-003.xht": [ - "ca901199c6815a53dc07b6055b40e528aeb47944", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "flexbox-overflow-padding-002.html": [ + "60feedb44c7f21403adccf25e734d9b75209e886", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-basic-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-breaking-001.xht": [ - "7ec7bf8e3fca25d29f2d312990ab01975ad8040d", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "flexbox-overflow-vert-001.html": [ + "9c6ad35c18b7ce820cafff3ee45c270b159f1cb8", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-breaking-001-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-breaking-002.xht": [ - "ac48e594f0265eba06e02b68309d92ef8fe4a2b0", + "/css/css-flexbox/flexbox-overflow-vert-001-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox-overflow-vert-002.html": [ + "aeec44e54d17632dd9f4fa76dc42c48b6ca611ca", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-breaking-002-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-clear-001.xht": [ - "47afe8d8630e32db0c6c7ede9bf22ff088544802", + "/css/css-flexbox/flexbox-overflow-vert-002-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox-overflow-vert-003.html": [ + "965b99a40fe28dc01b31f6bb422fdfe5ef7ee3df", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-text-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-clear-002.xht": [ - "f392b4f47d9c45892e0702a4c68372c83fabf55f", + "/css/css-flexbox/flexbox-overflow-vert-003-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox-overflow-vert-004.html": [ + "579cb4fd1a2031867978713a22c3fac9a59a1bed", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-text-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-contains-abspos-001.xht": [ - "83b3be2a60eefee38b5e1e81b8f112b2c62cbe95", + "/css/css-flexbox/flexbox-overflow-vert-004-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox-overflow-vert-005.html": [ + "1de6d1b8c0756457e2bdbd39945c97755054b583", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-basic-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-contains-block-001.xht": [ - "ec4f293e9c0f48fbc78d7992d277b393738de922", + "/css/css-flexbox/flexbox-overflow-vert-005-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox-paint-ordering-001.xhtml": [ + "06b42e126a82a4717b4eb7a32875aa9079b4d2bb", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-text-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-contains-block-002.xht": [ - "d0fcecd408073f8d70bbcb262aba7e9c3ea93e8b", + "/css/css-flexbox/flexbox-paint-ordering-001-ref.xhtml", + "==" + ] + ], + {} + ] + ], + "flexbox-paint-ordering-002.xhtml": [ + "55a18d5b77773d03d18c1dab5aaffc508434f262", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-text-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-contains-block-003.xht": [ - "83d04ce737a7492936584ead897ebed212f5b73c", + "/css/css-flexbox/flexbox-paint-ordering-002-ref.xhtml", + "==" + ] + ], + {} + ] + ], + "flexbox-paint-ordering-003.html": [ + "1a5175cb312b7203ca103d5423d3641184aacc48", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-basic-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-contains-block-004.xht": [ - "da9a9e42739a4a855dd4f40e5e93a521724430d4", + "/css/css-flexbox/flexbox-paint-ordering-003-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox-root-node-001a.html": [ + "195503b943b9ca53543f7c950d0fe110c3745a99", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-text-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-contains-block-005.xht": [ - "c55842087af26d01507185f1b770d24aa9822aab", + "/css/css-flexbox/flexbox-root-node-001-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox-root-node-001b.html": [ + "87d4fc1e10049f93c33bad30c2418055d9a36f5f", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-basic-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-contains-block-inside-inline-001.xht": [ - "656558368b118df4c489a71a3cc3d71d3d4fae8c", + "/css/css-flexbox/flexbox-root-node-001-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox-safe-overflow-position-001.html": [ + "8114832aa3493dbc0953c59ad4c84bb2754eb0c3", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-text-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-contains-block-inside-inline-002.xht": [ - "4c47b020f49853c1400252b09e0f3586cb225242", + "/css/css-flexbox/flexbox-safe-overflow-position-001-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox-safe-overflow-position-002.html": [ + "38700c760386667586cde5e7813034e875cb6792", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-text-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-contains-block-inside-inline-003.xht": [ - "a3b56dcb47845ad7311901cd0fe28d7d6e2eb672", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "flexbox-safe-overflow-position-003.html": [ + "0849a8ea88e39e87e1af760df32f2b38f233b2d8", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-basic-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-contains-float-001.xht": [ - "4b1cf5df5d7215b19ab0220cf81e9e62d156d429", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "flexbox-safe-overflow-position-004.html": [ + "59245cf35273dd9ee0b3d60745e7d1d087ba4599", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-basic-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-contains-inline-001.xht": [ - "15621f1071736f7d40696bf826d34f318e777ee1", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "flexbox-safe-overflow-position-005.html": [ + "c39defda73e8919f0e38faa6f680b8ad4161d1c4", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-basic-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-contains-inline-002.xht": [ - "e37201ff339a230052c479f4b7818d1f4de2ee91", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "flexbox-safe-overflow-position-006.html": [ + "fc1b66ff0cc0aa95b6874d3b128d3de411470245", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-basic-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-contains-inline-003.xht": [ - "413c386054fc2e96792afd3e1a468131e3e5102e", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "flexbox-single-line-clamp-1.html": [ + "f97d5c578a190ad775918e15ae755c30cdfff877", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-basic-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-contains-inline-004.xht": [ - "6c4010759489b2dbdd85884f45190f4a0470f11c", + "/css/css-flexbox/flexbox-single-line-clamp-1-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox-single-line-clamp-2.html": [ + "be9e50b90d6876b888be93746219782cfbe785b5", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-basic-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-contains-inline-005.xht": [ - "6be696b4a1262bc28ebd193d5ad73963cdccad2d", + "/css/css-flexbox/flexbox-single-line-clamp-2-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox-single-line-clamp-3.html": [ + "f3afbd41001139ea8e77e883697bd391611c2659", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-basic-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-contains-inline-006.xht": [ - "7cd2ad774fa1e5f6865fc7b503561961c089140c", + "/css/css-flexbox/flexbox-single-line-clamp-3-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox-sizing-horiz-001.xhtml": [ + "0f9b5846de892a857916996662409e620586cae1", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-basic-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-contains-inline-007.xht": [ - "9ff76e714e12327bb8d9d13168df09fc9f72316d", + "/css/css-flexbox/flexbox-sizing-horiz-001-ref.xhtml", + "==" + ] + ], + {} + ] + ], + "flexbox-sizing-horiz-002.xhtml": [ + "c450dd30169b5abf3065960a5b70991a68bc5022", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-basic-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-contains-inline-block-001.xht": [ - "663b9483086097de7171a89d77ef9964541b017e", + "/css/css-flexbox/flexbox-sizing-horiz-002-ref.xhtml", + "==" + ] + ], + {} + ] + ], + "flexbox-sizing-vert-001.xhtml": [ + "5ac29a7001b62a63f05803b44f2a6e304e5977f7", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-basic-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-contains-inline-table-001.xht": [ - "b916dbc711802f06fa9fc6b36e5d38d203e6b28a", + "/css/css-flexbox/flexbox-sizing-vert-001-ref.xhtml", + "==" + ] + ], + {} + ] + ], + "flexbox-sizing-vert-002.xhtml": [ + "9cba454e909b46684e5ec550c577a6e06e6f0c02", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-basic-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-contains-relpos-block-001.xht": [ - "a22138e0c0d494710d550a033c622d4ada190ba6", + "/css/css-flexbox/flexbox-sizing-vert-002-ref.xhtml", + "==" + ] + ], + {} + ] + ], + "flexbox-table-fixup-001.xhtml": [ + "00e1a54ffa198298cd1500343265a2a8fa6c5e93", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-text-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-contains-relpos-block-002.xht": [ - "64fa6f6e1abed68879d4e19e8a5f78ad7127d8a8", + "/css/css-flexbox/flexbox-table-fixup-001-ref.xhtml", + "==" + ] + ], + {} + ] + ], + "flexbox-whitespace-handling-001a.xhtml": [ + "3bae116b40aa472ab7b77381b8b55595ce17afb8", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-text-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-contains-relpos-block-003.xht": [ - "c5756fce4840a201ed57449a57a10f253d95e4de", + "/css/css-flexbox/flexbox-whitespace-handling-001-ref.xhtml", + "==" + ] + ], + {} + ] + ], + "flexbox-whitespace-handling-001b.xhtml": [ + "43a4c60ce0c87913883e905024fd1f6fb5e1b5dc", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-basic-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-contains-run-in-001.xht": [ - "cebbfef67c40d38ee9eaa62e4b65208cac62d699", + "/css/css-flexbox/flexbox-whitespace-handling-001-ref.xhtml", + "==" + ] + ], + {} + ] + ], + "flexbox-whitespace-handling-002.xhtml": [ + "c80947f81226944fb5f0628a6f1b1191ee237cdb", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-text-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-contains-run-in-002.xht": [ - "e3f978be084e0047cc0ccc92d29f6ebf434c0dc4", + "/css/css-flexbox/flexbox-whitespace-handling-002-ref.xhtml", + "==" + ] + ], + {} + ] + ], + "flexbox-with-multi-column-property.html": [ + "56b56ca0935bc8869a4b19e0d70e2cf7cdb0a0b8", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-text-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-contains-run-in-003.xht": [ - "5a812b382b2239a9014737145cb0025132ca681a", + "/css/css-flexbox/reference/flexbox-with-multi-column-property-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox-with-pseudo-elements-001.html": [ + "0abf6ea898a7fe69a3232327d4c176a4ddd0e3e1", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-basic-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-contains-table-001.xht": [ - "9001a7e4e0960e7be73dbc97f4039236ccde56dc", + "/css/css-flexbox/flexbox-with-pseudo-elements-001-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox-with-pseudo-elements-002.html": [ + "6e0738e7496d8f36304118a8cc1be4ac945b552f", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-text-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-contains-table-002.xht": [ - "3fd6adda3a6445b312e9e280e20701787016d8a1", + "/css/css-flexbox/flexbox-with-pseudo-elements-002-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox-with-pseudo-elements-003.html": [ + "fe531b126f31ad159ecdc572312252dd82d6aa80", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-text-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-contains-table-003.xht": [ - "ab76e87e2d1c4574dc7f9d9210edf14d6aed7de7", + "/css/css-flexbox/flexbox-with-pseudo-elements-003-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox-writing-mode-001.html": [ + "b2fb6d3f1f070a5ca7540c8f67b71ca855b9b70a", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-basic-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-contains-table-caption-001.xht": [ - "d98b535a3de0c6bfa7e7a8bf8edf38e0307674e0", + "/css/css-flexbox/flexbox-writing-mode-001-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox-writing-mode-002.html": [ + "8e1c724ed7bf574d5558a2f467e50ec95408cda1", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-basic-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-contains-table-cell-001.xht": [ - "433e1c65deff43cc9f6633bf852ed6f896803f7b", + "/css/css-flexbox/flexbox-writing-mode-002-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox-writing-mode-003.html": [ + "9b4450487f3694c7509507301f32bed496736925", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-basic-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-contains-table-column-001.xht": [ - "d9fc2f03185b179a032dfdbdd18b3dd65942582a", + "/css/css-flexbox/flexbox-writing-mode-003-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox-writing-mode-004.html": [ + "38f4158680859b236b1d54054f1cf6b50137181a", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-basic-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-contains-table-column-group-001.xht": [ - "f4aeb8b7b03c92bd3a6a110c6d6091f9bffcb804", + "/css/css-flexbox/flexbox-writing-mode-004-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox-writing-mode-005.html": [ + "65826fc2e37f5eba89bb7be6a86a51d1410eb19c", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-basic-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-contains-table-inside-inline-001.xht": [ - "6270d647f9273776d4d5978027f2453a7814bd62", + "/css/css-flexbox/flexbox-writing-mode-005-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox-writing-mode-006.html": [ + "3e8352a45a2c519d53e8eea64c2c7d17270e2f4b", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-text-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-contains-table-inside-inline-002.xht": [ - "edd543d45b08c52196d8b8f2a5957845fab0ef78", + "/css/css-flexbox/flexbox-writing-mode-006-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox-writing-mode-007.html": [ + "521af54af49fbb4901dca1b7a0243135c0b35c23", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-text-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-contains-table-inside-inline-003.xht": [ - "5df9c526c3b7d631dfbe9de0e98228f16e862922", + "/css/css-flexbox/flexbox-writing-mode-007-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox-writing-mode-008.html": [ + "98fd83fbc86118e827b9766dd8b74898b5f7fe54", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-basic-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-contains-table-row-001.xht": [ - "eb1c69292cd6f51a52430c7272a884a5077279d3", + "/css/css-flexbox/flexbox-writing-mode-008-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox-writing-mode-009.html": [ + "edd63a982a3771e0e1c789c6369e0279558b821f", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-basic-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-contains-table-row-group-001.xht": [ - "9d8936f05fcdadf09e7377981b0cecd9b1c1e300", + "/css/css-flexbox/flexbox-writing-mode-009-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox-writing-mode-010.html": [ + "542bde16ce5827de3dda6317b4336259e55ead44", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-basic-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-display-none-between-001.xht": [ - "bdcd34d277895b197120b2b43f571c39f8c199bd", + "/css/css-flexbox/flexbox-writing-mode-010-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox-writing-mode-011.html": [ + "697edb9be00f244652f343c4e15d52f71c36063a", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-basic-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-display-none-between-002.xht": [ - "c9dddee3cdc86560f8aa0df8cbedd37af97d4b63", + "/css/css-flexbox/flexbox-writing-mode-011-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox-writing-mode-012.html": [ + "b722d459e14a741ec499ffe33e3857cb4dcea342", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-basic-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-display-none-between-003.xht": [ - "ac28260492b114d30c552f5c16e66a9f64dedea5", + "/css/css-flexbox/flexbox-writing-mode-012-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox-writing-mode-013.html": [ + "3d90e7120274e1e1ff9f0cc8ae34c471de42072d", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-text-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-fixedpos-between-001.xht": [ - "11396660f2dce2cd03b1334b162342909da7fe75", + "/css/css-flexbox/flexbox-writing-mode-013-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox-writing-mode-014.html": [ + "299229b1c3bd72a4e6eb5697af9d7535d3257973", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-basic-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-fixedpos-between-002.xht": [ - "e97fe47cad5ea3e0d5735fa9bca849da83ad2916", + "/css/css-flexbox/flexbox-writing-mode-014-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox-writing-mode-015.html": [ + "eb7fa1b981cfbe40bf1daebaf45ff52be03241e5", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-basic-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-fixedpos-between-003.xht": [ - "9af28a390c701e1789bd55f07736c20d6123e323", + "/css/css-flexbox/flexbox-writing-mode-015-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox-writing-mode-016.html": [ + "94c732358351f990c2a4d7533b2e36598c2ec197", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-text-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-float-between-001.xht": [ - "3ac540cc1c7e91ecf365660e5134166f988f8cec", + "/css/css-flexbox/flexbox-writing-mode-016-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox-writing-mode-slr-row-mix.html": [ + "a4d841f3b310fdd087ca6bf0bb21684724a36860", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-basic-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-float-between-002.xht": [ - "a5ad3c7de43699e62e799ef77cc633876f337183", + "/css/css-flexbox/flexbox-writing-mode-slr-row-mix-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox-writing-mode-slr-rtl.html": [ + "8bc0f54819b23405d8a6acfa859fc8bc358ebf89", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-basic-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-float-between-003.xht": [ - "8d4b9e52f2f38d53b48962653a75a4cc4e95e062", + "/css/css-flexbox/flexbox-writing-mode-003-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox-writing-mode-slr.html": [ + "4eb27c4e457d57e53b6198c49d7162df1b5da08c", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-text-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-inherit-001.xht": [ - "f87e093ea97b11c54656f19e1875a5cb83eaca2c", + "/css/css-flexbox/flexbox-writing-mode-slr-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox-writing-mode-srl-row-mix.html": [ + "8724d9574d127eb5dfb34735816c303fd4b794b5", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-inherit-001-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-inline-between-001.xht": [ - "76710eafd99209aaaa73bac5567d0b34f77ba41e", + "/css/css-flexbox/flexbox-writing-mode-srl-row-mix-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox-writing-mode-srl-rtl.html": [ + "bf9936d195711a35375d9abe8fd60f853ff2c605", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-text-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-inline-between-002.xht": [ - "bba6f3b24632ce627a5ab919dc5accb36791864c", + "/css/css-flexbox/flexbox-writing-mode-005-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox-writing-mode-srl.html": [ + "cc2b5136df98a66254fae00c045278a0bb282244", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-text-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-inline-between-003.xht": [ - "358b4231c99e6ea94512899fba4bc1d5fcede32e", + "/css/css-flexbox/flexbox-writing-mode-002-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox_align-content-center.html": [ + "37c76f4c02ce49a30ea1c293020c7e4de7dae3e3", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-basic-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-inline-block-between-001.xht": [ - "17271636b2a596670febb594963f65732f605c50", + "/css/css-flexbox/flexbox_align-content-center-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox_align-content-flexend.html": [ + "b26bf330b338bcef4a8b6d8af48bbf3ac6bb9f51", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-text-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-inline-block-between-002.xht": [ - "1ceb4bed25ac2e33494d97c505b29a24f26fc715", + "/css/css-flexbox/flexbox_align-content-flexend-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox_align-content-flexstart.html": [ + "e6e4a08321caa63f709f2027fbdc6b18d6752dc7", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-text-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-inline-block-between-003.xht": [ - "351f27756eadb839a55248a41dd94a05ca3e800d", + "/css/css-flexbox/flexbox_align-content-flexstart-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox_align-content-spacearound.html": [ + "31c06bab81f8ab56bdb62beeba00163bc8af1248", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-basic-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-inline-table-between-001.xht": [ - "c7449056b03566f7133bae3df120aed6806493a4", + "/css/css-flexbox/flexbox_align-content-spacearound-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox_align-content-spacebetween.html": [ + "aa97f2be5648d8d8fb33ac69c4a25b1daa4db0f1", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-text-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-inline-table-between-002.xht": [ - "49164c05ecf09dc7097e6cf43302f9ca836474cb", + "/css/css-flexbox/flexbox_align-content-spacebetween-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox_align-content-stretch-2.html": [ + "e04079bc916e8e36e10923c5047bcfe29aae36b9", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-text-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-inline-table-between-003.xht": [ - "9b73d0cadc359981644d816adfd00296dcbaae1f", + "/css/css-flexbox/flexbox_align-content-stretch-2-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox_align-content-stretch.html": [ + "545f4e1ea5bfd9ee1aea7127a3408a1acf1ed3a4", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-basic-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-listitem-between-001.xht": [ - "bfe6d35ca74665c4af5b75da13f58bdeb6eeb8c5", + "/css/css-flexbox/flexbox_align-content-stretch-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox_align-items-baseline.html": [ + "10d637b11b83bc52095f505708c357700768941b", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-text-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-listitem-between-002.xht": [ - "1eda2aa7b27c48a61d746aa852c50981e659737c", + "/css/css-flexbox/flexbox_align-items-baseline-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox_align-items-center-2.html": [ + "bbdccef989a1a0d2ecfa286acaa77f9fe00f04cb", + [ + null, [ - "css/css-display/run-in/run-in-listitem-between-002.xht", [ - [ - "/css/css-display/run-in/run-in-text-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-listitem-between-003.xht": [ - "06fda02c743ffbadf4f8d0b1325a295e17afa7a5", + "/css/css-flexbox/flexbox_align-items-center-2-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox_align-items-center-3.html": [ + "b140cd11eeca341823d6f31bfa3a38162ae0b1b9", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-basic-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-relpos-between-001.xht": [ - "c16b9fc942786390e15ffcd72bd8ac2edec4ff8e", + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "flexbox_align-items-center.html": [ + "5a680473b6e8dad65f439e8e262fd738255ba8dd", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-text-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-relpos-between-002.xht": [ - "bb7c91a0c6155de8d15027f63cf69617d36b768f", + "/css/css-flexbox/flexbox_align-items-center-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox_align-items-flexend-2.html": [ + "d71458518b304c63b00dafcf408092b2346080ac", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-text-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-relpos-between-003.xht": [ - "cea7d4f4b0e2740b911dc4f0a364fc44ef25b950", + "/css/css-flexbox/flexbox_align-items-flexend-2-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox_align-items-flexend.html": [ + "dcee2762fe72c2f1559e0952959cca384096086f", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-basic-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-replaced-001.xht": [ - "01af2d38a326f9c46ea89c4698ba62c3c9436f9a", + "/css/css-flexbox/flexbox_align-items-flexend-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox_align-items-flexstart-2.html": [ + "d67b81e198ff78e2ba053b9c953e9759d2788671", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-replaced-001-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-restyle-001.xht": [ - "05bd61a0b5996ad35fab406322bf7c2049684307", + "/css/css-flexbox/flexbox_align-items-flexstart-2-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox_align-items-flexstart.html": [ + "d5558e5927a79adb0a909d632b2c892762ea9690", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-text-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-restyle-002.xht": [ - "40d23e4fb0a20b88ef7017cbd0cf6e06c893891b", + "/css/css-flexbox/flexbox_align-items-flexstart-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox_align-items-stretch-2.html": [ + "c74ad830e6b2586be1a13f0eec4a7e655b288da4", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-text-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-restyle-003.xht": [ - "226081278db0881c3274934ea0e87aab56ea79d5", + "/css/css-flexbox/flexbox_align-items-stretch-2-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox_align-items-stretch-3.html": [ + "19df131db2eb9affaa066d089b424a3da2514a87", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-basic-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-run-in-between-001.xht": [ - "13077566c010b927846f499e14252cbe9415ff9a", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "flexbox_align-items-stretch-4.html": [ + "422f8b3261e670c0fe626870ac744ae6d494e51c", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-text-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-run-in-between-002.xht": [ - "220c45ed246b2a8e5e46976b676b2837c0d21d56", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "flexbox_align-items-stretch.html": [ + "bea0d7f0152c766ed30e1db55f540e6e05132334", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-text-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-run-in-between-003.xht": [ - "555774420c12484bb9469b7fad4cd40c6c092bb9", + "/css/css-flexbox/flexbox_align-items-stretch-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox_align-self-auto.html": [ + "ccede24a660c7d6c455167e69fd1c2ce940f6696", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-basic-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-run-in-between-004.xht": [ - "c9af78ddb7142e36ec36612da1b8d5f98c1aadf7", + "/css/css-flexbox/flexbox_align-self-auto-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox_align-self-baseline.html": [ + "1c2b1e39967177eccf923c8770c110df03273820", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-text-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-run-in-between-005.xht": [ - "9839d9bd59dae1f3621fe3959d643cb4c6fa9026", + "/css/css-flexbox/flexbox_align-self-baseline-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox_align-self-center.html": [ + "e269708c54406d8a718363152ddca384b5823719", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-text-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-run-in-between-006.xht": [ - "ae2bceef2dfdd25ec3a067b42b0350fffc5cd140", + "/css/css-flexbox/flexbox_align-self-center-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox_align-self-flexend.html": [ + "f85931db39f3238d385688d48e4393a8ad726716", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-basic-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-run-in-between-007.xht": [ - "910831a74226122a872a77ca65fdb8cda3e9d4ed", + "/css/css-flexbox/flexbox_align-self-flexend-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox_align-self-flexstart.html": [ + "0f03881cd1b4d470c6a1e32e2195158f467ba3f3", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-text-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-run-in-between-008.xht": [ - "00e24408e805443925bbcd276de904797510d44c", + "/css/css-flexbox/flexbox_align-self-flexstart-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox_align-self-stretch.html": [ + "52874469876cbefff110f39fd8a2810a9b0f0063", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-text-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-table-between-001.xht": [ - "79a98d1fb38f6bd2f60620dd9c80a9a08e93d9bf", + "/css/css-flexbox/flexbox_align-self-stretch-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox_block.html": [ + "7bcec042b2022b076ac88a5208e8a87e9085cddc", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-text-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-table-between-002.xht": [ - "2ca80275469cdec5c0a90f30f9bd06301cc15b79", + "/css/reference/blank.html", + "==" + ] + ], + {} + ] + ], + "flexbox_box-clear.html": [ + "356f6ee9d2b4a5e094eea4d0a962622d9d8a0c12", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-text-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-table-between-003.xht": [ - "aa4d9f4497f99a6bb8e1da5c5e576cb0d5e8aa5e", + "/css/css-flexbox/flexbox_box-clear-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox_columns-flexitems-2.html": [ + "b6ca52f2a885b6f31f6c956338ffc27c4b7ccf90", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-basic-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-table-cell-between-001.xht": [ - "18fcc2f79700a6dba0ea16b33cebd4551d0b9922", + "/css/css-flexbox/flexbox_columns-flexitems-2-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox_columns-flexitems.html": [ + "0a7e4d9d50045ed43f81f964732f9a83978291ca", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-text-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-table-cell-between-002.xht": [ - "04f5e80c534bff60e139548f2e5977a05cf9861b", + "/css/css-flexbox/flexbox_columns-flexitems-ref.html", + "==" + ] + ], + {} + ] + ], + "flexbox_columns.html": [ + "d39c2db55f2a144e5ab9efa713572bd27da72c07", + [ + null, [ - null, [ - [ - "/css/css-display/run-in/run-in-text-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-table-cell-between-003.xht": [ - "49ab6455543120e03847c08453ff0ef89bde66c2", - [ - null, - [ - [ - "/css/css-display/run-in/run-in-basic-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-table-row-between-001.xht": [ - "06b0852bb859f37c8c1b63cc07d2fd2d3e97e473", - [ - null, - [ - [ - "/css/css-display/run-in/run-in-text-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-table-row-between-002.xht": [ - "a5e069daac88cc51c837c3adb4ecb190eed95872", - [ - null, - [ - [ - "/css/css-display/run-in/run-in-text-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-table-row-between-003.xht": [ - "755b46351b7e39c9d5f4098f4d890bb7d0386675", - [ - null, - [ - [ - "/css/css-display/run-in/run-in-basic-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-text-between-001.xht": [ - "cdbd7acca0ee9bcf90d155f436d865e4916551ca", - [ - null, - [ - [ - "/css/css-display/run-in/run-in-text-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-text-between-002.xht": [ - "545dee956e09829d20ed4b7b6011f73ea99fd3a1", - [ - null, - [ - [ - "/css/css-display/run-in/run-in-text-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-text-between-003.xht": [ - "66a4451d32ba2c3841b10b303c6454d99fbcf5fa", - [ - null, - [ - [ - "/css/css-display/run-in/run-in-text-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-text-between-004.xht": [ - "9411b648191821911caa65bfe20404831c58afa2", - [ - null, - [ - [ - "/css/css-display/run-in/run-in-basic-ref.xht", - "==" - ] - ], - {} - ] - ], - "run-in-text-between-005.xht": [ - "e981b9e2d35f6dc43c819ea9261a60b142e3747e", - [ - null, - [ - [ - "/css/css-display/run-in/run-in-basic-ref.xht", - "==" - ] - ], - {} - ] - ], - "text-decoration-applies-to-004.xht": [ - "7efedf6ad98ad4399a631749d65bf540dea87069", - [ - null, - [ - [ - "/css/reference/pass_if_filler_text_underlined.html", - "==" - ] - ], - {} - ] - ], - "text-transform-applies-to-004.xht": [ - "8b5e2af0caef2233a52e62c101084b24b218c1c7", - [ - null, - [ - [ - "/css/reference/pass_if_letter_uppercase.html", - "==" - ] - ], - {} - ] - ], - "width-applies-to-011.xht": [ - "fcf32f426b773c5ea1b56cbbd5c330ddfe54dce6", - [ - null, - [ - [ - "/css/reference/pass_if_square_96px_black.html", - "==" - ] - ], - {} - ] + "/css/css-flexbox/flexbox_columns-ref.html", + "==" + ] + ], + {} ] - }, - "select-4-option-optgroup-display-none.html": [ - "a6da3d53c71c87a9774af3403ed9f38fb25f75c6", + ], + "flexbox_direction-column-reverse.html": [ + "8d2cd330e4c65c46a4ff2c8e36811c88c7bdc4e6", [ null, [ [ - "/css/css-display/select-4-option-optgroup-display-none-ref.html", + "/css/css-flexbox/flexbox_direction-column-reverse-ref.html", "==" ] ], {} ] - ] - }, - "css-exclusions": { - "css3-exclusions": { - "exclusions-wrap-flow-01.xht": [ - "45f3d1a1c6592296b2c79ed0b08d84c9b2df6bf9", - [ - null, - [ - [ - "/css/css-exclusions/css3-exclusions/exclusions-wrap-flow-01-ref.xht", - "==" - ] - ], - {} - ] - ], - "exclusions-wrap-flow-02.xht": [ - "4ff8cc4e98cbf0b3a5ff8a09c6f47a110f709245", - [ - null, - [ - [ - "/css/css-exclusions/css3-exclusions/exclusions-wrap-flow-01-ref.xht", - "==" - ] - ], - {} - ] - ], - "exclusions-wrap-flow-03.xht": [ - "48802eac21a3c535ac2eb3938444d02180f2b285", - [ - null, - [ - [ - "/css/css-exclusions/css3-exclusions/exclusions-wrap-flow-01-ref.xht", - "==" - ] - ], - {} - ] - ], - "exclusions-wrap-flow-04.xht": [ - "ca2c7e35de243937c56cec779f9c54e45e8ea6cc", - [ - null, - [ - [ - "/css/css-exclusions/css3-exclusions/exclusions-wrap-flow-01-ref.xht", - "==" - ] - ], - {} - ] - ] - } - }, - "css-fill-stroke": { - "paint-order-001.tentative.html": [ - "9d1604116ba4a432740f09285e7bb9e348585796", + ], + "flexbox_direction-column.html": [ + "7647d9e9f3a4c6dcc870a816e68bb5197fd3f511", [ - "css/css-fill-stroke/paint-order-001.tentative.html", + null, [ [ - "/css/css-fill-stroke/reference/paint-order-001-ref.tentative.html", + "/css/css-flexbox/flexbox_direction-column-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 1 - ], - [ - 0, - 5 - ] - ] - ] - ] - } - ] - ] - }, - "css-flexbox": { - "abspos": { - "abspos-autopos-htb-ltr.html": [ - "53229296ff22f1f0943dba5d28d38ec2e22bacfd", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "abspos-autopos-htb-rtl.html": [ - "1788c0d3b86670681f2f466d4aba906285c3d8d7", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "abspos-autopos-vlr-ltr.html": [ - "c3435235aafaea7d5afaf0dcaf5a95770a95ce08", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "abspos-autopos-vlr-rtl.html": [ - "0c7b701a4731d77165dfd238e3ada51aa9a470df", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "abspos-autopos-vrl-ltr.html": [ - "618bda43879ab04fcd4728bb0e6ab273ae46f9a0", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "abspos-autopos-vrl-rtl.html": [ - "0c7b701a4731d77165dfd238e3ada51aa9a470df", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "dynamic-align-self-001.html": [ - "208c006d2d056888dba662ea593410970e848ca9", - [ - "css/css-flexbox/abspos/dynamic-align-self-001.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "flex-abspos-staticpos-align-self-safe-001.html": [ - "b7302cb962dbff9bfc99592ac7a2d2f2aae52b21", - [ - null, - [ - [ - "/css/css-flexbox/abspos/flex-abspos-staticpos-align-self-safe-001-ref.html", - "==" - ] - ], - {} - ] - ], - "flex-abspos-staticpos-fallback-justify-content-001.html": [ - "004ce831c2933efadd3d5434ce4201b8d60c3a09", - [ - null, - [ - [ - "/css/css-flexbox/abspos/flex-abspos-staticpos-fallback-justify-content-001-ref.html", - "==" - ] - ], - {} - ] - ], - "flex-abspos-staticpos-justify-self-001.html": [ - "1f826ca38f4e8d7cfadf2fdf154a401b88e473a8", - [ - null, - [ - [ - "/css/css-flexbox/abspos/flex-abspos-staticpos-justify-self-001-ref.html", - "==" - ] - ], - {} - ] - ], - "flex-abspos-staticpos-margin-001.html": [ - "535fa2ecbf642f5159cf91a28f6d9cdd1ec411b8", - [ - null, - [ - [ - "/css/css-flexbox/abspos/flex-abspos-staticpos-margin-001-ref.html", - "==" - ] - ], - {} - ] - ], - "flex-abspos-staticpos-margin-002.html": [ - "624a9e8592f6c766f9ea6990855b2b35a77f526a", - [ - null, - [ - [ - "/css/css-flexbox/abspos/flex-abspos-staticpos-margin-002-ref.html", - "==" - ] - ], - {} - ] - ], - "flex-abspos-staticpos-margin-003.html": [ - "64ef7a7fe5116296d43b0f2060539b48148549c2", - [ - null, - [ - [ - "/css/css-flexbox/abspos/flex-abspos-staticpos-margin-003-ref.html", - "==" - ] - ], - {} - ] - ], - "flexbox-abspos-child-001a.html": [ - "fabe204b2796257fd3a74216a87c79960c42a9f9", - [ - null, - [ - [ - "/css/css-flexbox/abspos/flexbox-abspos-child-001-ref.html", - "==" - ] - ], - {} - ] - ], - "flexbox-abspos-child-001b.html": [ - "30fc58c3d12e336663d0aaadf959e23d87a525a1", - [ - null, - [ - [ - "/css/css-flexbox/abspos/flexbox-abspos-child-001-ref.html", - "==" - ] - ], - {} - ] - ], - "flexbox-abspos-child-002.html": [ - "8234085681ddc0f72e8da84471363ecb08d4d460", - [ - null, - [ - [ - "/css/css-flexbox/abspos/flexbox-abspos-child-002-ref.html", - "==" - ] - ], - {} - ] - ], - "flexbox_absolute-atomic.html": [ - "dae6b3e43ea71f3795508dd0ca4b243d4510c383", - [ - null, - [ - [ - "/css/css-flexbox/abspos/flexbox_absolute-atomic-ref.html", - "==" - ] - ], - {} - ] - ], - "flexbox_inline-abspos.html": [ - "56077ae58566efca2ff41b73edcb7a2d899a36d5", - [ - null, - [ - [ - "/css/reference/blank.html", - "==" - ] - ], - {} - ] - ], - "position-absolute-005.html": [ - "3199dfb9a699986ecbc7ff474628cf1cfbf0b0b6", - [ - null, - [ - [ - "/css/css-flexbox/abspos/position-absolute-005-ref.html", - "==" - ] - ], - {} - ] - ], - "position-absolute-006.html": [ - "bc9bc2c0e13d45904af90ca8f1dfe2a53241c79a", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "position-absolute-007.html": [ - "3f7106c10260d516b6cd9148ff5e55e2777899bf", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "position-absolute-008.html": [ - "7a9f8b6dfe8d202a1bf6f913edeb77f6a122b836", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "position-absolute-009.html": [ - "5751bea1b94cc2fcd5a924b5c8bf81e3cbbc91ec", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "position-absolute-010.html": [ - "c59cc7d67dfdfc2d48782b7790bbb4e46d97bca9", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "position-absolute-011.html": [ - "142cd4b4160978e78dcdde193a9e00da8e63a6c7", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "position-absolute-containing-block-001.html": [ - "1edfdb04caa0d65148a6994a8c85d8363c74850a", - [ - null, - [ - [ - "/css/css-flexbox/abspos/position-absolute-containing-block-001-ref.html", - "==" - ] - ], - {} - ] - ], - "position-absolute-containing-block-002.html": [ - "aecbf0b4c997ceb748496d7fa09aed6ba8c0f92a", - [ - null, - [ - [ - "/css/css-flexbox/abspos/position-absolute-containing-block-002-ref.html", - "==" - ] - ], - {} - ] + {} ] - }, - "align-baseline.html": [ - "31bcca69771751f3277d6f078456f982a375d067", + ], + "flexbox_direction-row-reverse.html": [ + "501cd0d514523e5421f1a1ae94c2340f2077a2f5", [ null, [ [ - "/css/css-flexbox/reference/align-baseline-ref.html", + "/css/css-flexbox/flexbox_direction-row-reverse-ref.html", "==" ] ], {} ] ], - "align-content-001.htm": [ - "5fd60351247f09e991ec5b361635397631ab4616", + "flexbox_display.html": [ + "7ab0dd36478c4b8f5dc2c875669856d3248c6903", [ null, [ [ - "/css/css-flexbox/reference/align-content-001-ref.html", + "/css/css-flexbox/flexbox_display-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 1 - ], - [ - 0, - 6217 - ] - ] - ] - ] - } + {} ] ], - "align-content-002.htm": [ - "09453086142d04aae1c70959720139e1dfecbef1", + "flexbox_fbfc.html": [ + "5a75c70ebefb0480a8fd30667888cce3fc38fa80", [ null, [ [ - "/css/css-flexbox/reference/align-content-001-ref.html", + "/css/css-flexbox/flexbox_fbfc-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 1 - ], - [ - 0, - 6225 - ] - ] - ] - ] - } + {} ] ], - "align-content-003.htm": [ - "df6033bca9e94397971704a4bdc24c4f25b1229c", + "flexbox_fbfc2.html": [ + "56e71cfa408c0c583642e05bf4350f736707d848", [ null, [ [ - "/css/css-flexbox/reference/align-content-001-ref.html", + "/css/css-flexbox/flexbox_fbfc2-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 1 - ], - [ - 0, - 6225 - ] - ] - ] - ] - } + {} ] ], - "align-content-004.htm": [ - "4c39bfcc331a4fea0a990c2fafa7426e818d4943", + "flexbox_first-line.html": [ + "ad8d12c2753df5e3e660856f5a105611d50488ad", [ null, [ [ - "/css/css-flexbox/reference/align-content-001-ref.html", + "/css/css-flexbox/flexbox_first-line-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 1 - ], - [ - 0, - 4835 - ] - ] - ] - ] - } + {} ] ], - "align-content-005.htm": [ - "a9b70b742bf81181b7fd52531d4e79dfa11eb8df", + "flexbox_flex-0-0-0-unitless.html": [ + "3a108b53478867f7d274d177cd2f8b6ab536b937", [ null, [ [ - "/css/css-flexbox/reference/align-content-001-ref.html", + "/css/css-flexbox/flexbox_flex-0-0-0-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 1 - ], - [ - 0, - 7236 - ] - ] - ] - ] - } + {} ] ], - "align-content-006.htm": [ - "703b3b0f89e0f94ef744c64e90113b1faa4adcae", + "flexbox_flex-0-0-0.html": [ + "374638ba35d6fff6500cc9c7d5123dad245163af", [ null, [ [ - "/css/css-flexbox/reference/align-content-001-ref.html", + "/css/css-flexbox/flexbox_flex-0-0-0-ref.html", "==" ] ], {} ] ], - "align-content-wrap-004.html": [ - "161832190a2a3088ab3b9ad198d4e3083a291551", + "flexbox_flex-0-0-1-unitless-basis.html": [ + "94a6ccd3a2e3e5af12ad96b5facca9a0f7fb503e", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/flexbox_flex-unitless-basis-ref.html", "==" ] ], {} ] ], - "align-content_center.html": [ - "6f401a64ff3c73d2f612bb1399fb2bd1e658511e", + "flexbox_flex-0-0-N-shrink.html": [ + "f643048aa3493e0cc200daa002e664ff09a88b86", [ null, [ [ - "/css/css-flexbox/reference/align-content_center-ref.html", + "/css/css-flexbox/flexbox_flex-0-0-N-shrink-ref.html", "==" ] ], {} ] ], - "align-content_flex-end.html": [ - "9024d05440df611193f5af92f5df7d13fff585ae", + "flexbox_flex-0-0-N-unitless-basis.html": [ + "94a6ccd3a2e3e5af12ad96b5facca9a0f7fb503e", [ null, [ [ - "/css/css-flexbox/reference/align-content_flex-end-ref.html", + "/css/css-flexbox/flexbox_flex-unitless-basis-ref.html", "==" ] ], {} ] ], - "align-content_flex-start.html": [ - "e86ac72756f9aff20029cd2d61a36d955034b431", + "flexbox_flex-0-0-N.html": [ + "412781bb34a9a3219b9973f2386eecb0c325872f", [ null, [ [ - "/css/css-flexbox/reference/align-content_flex-start-ref.html", + "/css/css-flexbox/flexbox_flex-0-0-N-ref.html", "==" ] ], {} ] ], - "align-content_space-around.html": [ - "8949a301329834e3b0b535990b9dedac27fdb945", + "flexbox_flex-0-0-Npercent-shrink.html": [ + "cb3ebc351c2621435e458b428bd5bba8161fe6c5", [ null, [ [ - "/css/css-flexbox/reference/align-content_space-around-ref.html", + "/css/css-flexbox/flexbox_flex-0-0-Npercent-shrink-ref.html", "==" ] ], {} ] ], - "align-content_space-between.html": [ - "da3ba308b90a96124c16f75ca7a3ee3545d57b3d", + "flexbox_flex-0-0-Npercent.html": [ + "1b2fd80bf9f3b9d80046cc7dfcc8df76b12ba022", [ null, [ [ - "/css/css-flexbox/reference/align-content_space-between-ref.html", + "/css/css-flexbox/flexbox_flex-0-0-Npercent-ref.html", "==" ] ], {} ] ], - "align-content_stretch.html": [ - "7c890e90e4044abf286014a21662e284dd0f532e", + "flexbox_flex-0-0-auto-shrink.html": [ + "d857151cd7e7768cbe7ff5f5146abfc8568bd88e", [ null, [ [ - "/css/css-flexbox/reference/align-content_stretch-ref.html", + "/css/css-flexbox/flexbox_flex-0-0-auto-shrink-ref.html", "==" ] ], {} ] ], - "align-items-001.htm": [ - "fcd9205ef41680031fc1b8f5428ac6febaa14393", + "flexbox_flex-0-0-auto.html": [ + "90e5cb12ae4936f6af1a4df2f996c7ccf1d3ae8a", [ null, [ [ - "/css/css-flexbox/reference/align-content-001-ref.html", + "/css/css-flexbox/flexbox_flex-0-0-auto-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 1 - ], - [ - 0, - 6217 - ] - ] - ] - ] - } + {} ] ], - "align-items-002.htm": [ - "751f803325f09a850538fa6a2d75c7e3ad7e2d03", + "flexbox_flex-0-0.html": [ + "f8b5289f651927a49468a49e04e3d7482e882585", [ null, [ [ - "/css/css-flexbox/reference/align-content-001-ref.html", + "/css/css-flexbox/flexbox_flex-0-0-0-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 1 - ], - [ - 0, - 6356 - ] - ] - ] - ] - } + {} ] ], - "align-items-003.htm": [ - "e2ddd3c33449664ee397abcc7925119f2559cedf", + "flexbox_flex-0-1-0-unitless.html": [ + "e04ca3e8a3560ba7060886edca631bffa289c969", [ null, [ [ - "/css/css-flexbox/reference/align-content-001-ref.html", + "/css/css-flexbox/flexbox_flex-0-1-0-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 1 - ], - [ - 0, - 6347 - ] - ] - ] - ] - } + {} ] ], - "align-items-004.htm": [ - "c1464e1e0a000bb7ea27cf634b0c7876cf405978", + "flexbox_flex-0-1-0.html": [ + "0dc6165693aaedba2184ba61006c3b68fc07d344", [ null, [ [ - "/css/css-flexbox/reference/align-content-001-ref.html", + "/css/css-flexbox/flexbox_flex-0-1-0-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 1 - ], - [ - 0, - 6405 - ] - ] - ] - ] - } + {} ] ], - "align-items-005.htm": [ - "7bfc2dc3e433c02afa95d4d4e645010e96fa40d1", + "flexbox_flex-0-1-1-unitless-basis.html": [ + "6863882a75183215da822f166e804c65cbc6af09", [ null, [ [ - "/css/css-flexbox/reference/align-content-001-ref.html", + "/css/css-flexbox/flexbox_flex-unitless-basis-ref.html", "==" ] ], {} ] ], - "align-items-006.html": [ - "ea8590b33336d205b30773da36f931122cac18c0", + "flexbox_flex-0-1-N-shrink.html": [ + "05016e664779219b63ed59ea88b1ae2e4fb4f5e3", [ null, [ [ - "/css/css-flexbox/reference/align-content-001-ref.html", + "/css/css-flexbox/flexbox_flex-0-1-N-shrink-ref.html", "==" ] ], {} ] ], - "align-items-007.html": [ - "704c82fc6ad92410ff50ba4e5bbe02913ab33fe9", + "flexbox_flex-0-1-N-unitless-basis.html": [ + "0f8e618227d88c1aa5849cf921a4db669625ccf9", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/flexbox_flex-unitless-basis-ref.html", "==" ] ], {} ] ], - "align-items-008.html": [ - "88aa10690bed3222ef81fec56d9ee94b55d74652", + "flexbox_flex-0-1-N.html": [ + "0d358efc30293510f04bb15c79c25133bb4d937e", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/flexbox_flex-0-1-N-ref.html", "==" ] ], {} ] ], - "align-items-009.html": [ - "dc89b0aa9effafd3d8ae6e0dab4848499f260bcb", + "flexbox_flex-0-1-Npercent-shrink.html": [ + "4504543fab6183aa1ecac45512dcae7edd24b0b4", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-flexbox/flexbox_flex-0-1-Npercent-shrink-ref.html", "==" ] ], {} ] ], - "align-items-baseline-column-horz.html": [ - "2e599afda020bd797bd960958bbd6db2e19d24d0", + "flexbox_flex-0-1-Npercent.html": [ + "be8354fb7b2553e437c0822f63c5f4a4767bbddb", [ null, [ [ - "/css/css-flexbox/align-items-baseline-column-horz-ref.html", + "/css/css-flexbox/flexbox_flex-0-1-Npercent-ref.html", "==" ] ], {} ] ], - "align-items-baseline-column-vert.html": [ - "3e4a32207300cdf0b6938e33ea71bc59a8f962c5", + "flexbox_flex-0-1-auto-shrink.html": [ + "dddb127caafe2423a23a45203b316c2efaf235d2", [ null, [ [ - "/css/css-flexbox/align-items-baseline-column-vert-ref.html", + "/css/css-flexbox/flexbox_flex-0-1-auto-shrink-ref.html", "==" ] ], {} ] ], - "align-items-baseline-overflow-non-visible.html": [ - "48c34b365ec80754ee4d39578b6a25acd7f9725d", + "flexbox_flex-0-1-auto.html": [ + "5a3c8a7c458f87b7de77e73803ef5a788323d78c", [ null, [ [ - "/css/css-flexbox/reference/align-items-baseline-overflow-non-visible-ref.html", + "/css/css-flexbox/flexbox_flex-0-1-auto-ref.html", "==" ] ], {} ] ], - "align-items-baseline-row-horz.html": [ - "394e9f70cdf93b235d1af674bd42b7fb37b8372c", + "flexbox_flex-0-1.html": [ + "329ee10bcbbaef861211a8e3a6957e4b6e6a9a1e", [ null, [ [ - "/css/css-flexbox/align-items-baseline-row-horz-ref.html", + "/css/css-flexbox/flexbox_flex-0-1-0-ref.html", "==" ] ], {} ] ], - "align-items-baseline-row-vert.html": [ - "4a6eb60e1d933c67b8ac8ee649d51dc559349ca4", + "flexbox_flex-0-N-0-unitless.html": [ + "de605b3ef2247f7ca48708fd498ad1916666505c", [ null, [ [ - "/css/css-flexbox/align-items-baseline-row-vert-ref.html", + "/css/css-flexbox/flexbox_flex-0-N-0-ref.html", "==" ] ], {} ] ], - "align-self-001.html": [ - "77eb5a6b5c5365264541c7b4397f8f348f9cf969", + "flexbox_flex-0-N-0.html": [ + "321fa44041cd3b001591b1ed66aae5b169dcf548", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/flexbox_flex-0-N-0-ref.html", "==" ] ], {} ] ], - "align-self-002.html": [ - "d4dbf6066feab3ca3e421bbf2375c3688c9316b9", + "flexbox_flex-0-N-N-shrink.html": [ + "4f76687cf9f3f7ece1933a45437495d37a11765a", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/flexbox_flex-0-N-N-shrink-ref.html", "==" ] ], {} ] ], - "align-self-003.html": [ - "f049dcd0f05ab8bc53c48155562c0fa80c1f542b", + "flexbox_flex-0-N-N.html": [ + "dc91af05b48b657e0b85ff7469af6c2e08e3ad21", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/flexbox_flex-0-N-N-ref.html", "==" ] ], {} ] ], - "align-self-004.html": [ - "7a0760f39b45a7f549ce4ad6eb03bbae53dab379", + "flexbox_flex-0-N-Npercent-shrink.html": [ + "df275096d15eee96417e332129889ac2f9d578ea", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/flexbox_flex-0-N-Npercent-shrink-ref.html", "==" ] ], {} ] ], - "align-self-005.html": [ - "ec169060bf1a0631c919398e8cd326800f216a44", + "flexbox_flex-0-N-Npercent.html": [ + "3f739eb39c4fb44f89be71d0c30e5692e00bb0a0", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/flexbox_flex-0-N-Npercent-ref.html", "==" ] ], {} ] ], - "align-self-007.html": [ - "4b7cb5cf16d25226388fd394d20d11a1d8f31097", + "flexbox_flex-0-N-auto-shrink.html": [ + "1fad1c1e411785abc97c6e6075a1e0f0cb50b37a", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/flexbox_flex-0-N-auto-shrink-ref.html", "==" ] ], {} ] ], - "align-self-008.html": [ - "c62f231a3359f7b05c53af565b2eafecba72ce24", + "flexbox_flex-0-N-auto.html": [ + "3d5948fc66640ef193cefa9462216866ff28be86", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/flexbox_flex-0-N-auto-ref.html", "==" ] ], {} ] ], - "align-self-009.html": [ - "648d48785c901a5ea1d3f1e3453762986ccdbe3f", + "flexbox_flex-0-N.html": [ + "356a36dda165f9f6d9c3245b0db0e8e8ca64131a", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/flexbox_flex-0-N-0-ref.html", "==" ] ], {} ] ], - "align-self-011.html": [ - "5f8067176b7ad3063a9c1fee898f5684dd434871", + "flexbox_flex-0-auto.html": [ + "e56a8fa32a838aff95d0356b6e670598a0815480", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/flexbox_flex-initial-ref.html", "==" ] ], {} ] ], - "align-self-012.html": [ - "401e703fc35e4af93fc784dc3538bc5154e59320", + "flexbox_flex-1-0-0-unitless.html": [ + "8c36acd2ee88cf036bb10c915c2842923e73647f", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/flexbox_flex-1-0-0-ref.html", "==" ] ], {} ] ], - "align-self-013.html": [ - "34711ac69df91739120e907d751c619221798725", + "flexbox_flex-1-0-0.html": [ + "7761004699ced59a236c4c89de96a4c13d97517a", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/flexbox_flex-1-0-0-ref.html", "==" ] ], {} ] ], - "align-self-015.html": [ - "14ec3617975380f5a82e62be76bef00943f94341", + "flexbox_flex-1-0-N-shrink.html": [ + "890ac0c039162c168c0c6e8fc4f13a0e2ec5ca0b", [ null, [ [ - "/css/css-flexbox/reference/align-self-015-ref.html", + "/css/css-flexbox/flexbox_flex-1-0-N-shrink-ref.html", "==" ] ], {} ] ], - "anonymous-block.html": [ - "915cca757d73cc711bc3cb47e7539bb4e3e49554", + "flexbox_flex-1-0-N.html": [ + "65ab66e1b246b83d5028553ed74866846abd3672", [ null, [ [ - "/css/css-flexbox/reference/anonymous-block-ref.html", + "/css/css-flexbox/flexbox_flex-1-0-N-ref.html", "==" ] ], {} ] ], - "anonymous-flex-item-001.html": [ - "3e749d43f76981a5cc0b372c7ba0c364c350b6b2", + "flexbox_flex-1-0-Npercent-shrink.html": [ + "c22d8b450095cdf843a59b558c6d7a208ac31970", [ null, [ [ - "/css/reference/pass_if_two_words.html", + "/css/css-flexbox/flexbox_flex-1-0-Npercent-shrink-ref.html", "==" ] ], {} ] ], - "anonymous-flex-item-002.html": [ - "8fdeb27110e15c743e0b84cd4f278f1d8996c994", + "flexbox_flex-1-0-Npercent.html": [ + "6b84d4509aa4e5b8780de7bf7bc070248af911a1", [ null, [ [ - "/css/reference/pass_if_two_words.html", + "/css/css-flexbox/flexbox_flex-1-0-Npercent-ref.html", "==" ] ], {} ] ], - "anonymous-flex-item-003.html": [ - "cc896e9410cd1706a61d083494801cda98bd72af", + "flexbox_flex-1-0-auto-shrink.html": [ + "c8055f59eac48a8f2b8bf1836c6ada9575c4ea4d", [ null, [ [ - "/css/reference/pass_if_two_words.html", + "/css/css-flexbox/flexbox_flex-1-0-auto-shrink-ref.html", "==" ] ], {} ] ], - "anonymous-flex-item-004.html": [ - "a3dfbc3e4d020a946bf672271f3ab6714a869c6f", + "flexbox_flex-1-0-auto.html": [ + "108181a9d773b68030ec5235369141d23d008d58", [ null, [ [ - "/css/css-flexbox/anonymous-flex-item-split-ref.html", + "/css/css-flexbox/flexbox_flex-1-0-auto-ref.html", "==" ] ], {} ] ], - "anonymous-flex-item-005.html": [ - "a7de7b7a8546bf652f7330fbaccf56ccaecb34cf", + "flexbox_flex-1-0.html": [ + "b11bef40db96fa05bf76562e74b828ab875ca574", [ null, [ [ - "/css/css-flexbox/anonymous-flex-item-split-ref.html", + "/css/css-flexbox/flexbox_flex-1-0-0-ref.html", "==" ] ], {} ] ], - "anonymous-flex-item-006.html": [ - "6320b814294cdbf0a91fee0bb5b597a5f70d57d6", + "flexbox_flex-1-1-0-unitless.html": [ + "17f6a838072f0b296589091d5b7740c1c9130d5b", [ null, [ [ - "/css/css-flexbox/anonymous-flex-item-split-ref.html", + "/css/css-flexbox/flexbox_flex-1-1-0-ref.html", "==" ] ], {} ] ], - "aspect-ratio-intrinsic-size-001.html": [ - "76b74c53867ffab120f55dd5d3acd54cc56c5f1b", + "flexbox_flex-1-1-0.html": [ + "a8e21f44a7f2200a4e1c80da0f202d87ba4501a0", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-flexbox/flexbox_flex-1-1-0-ref.html", "==" ] ], {} ] ], - "aspect-ratio-intrinsic-size-002.html": [ - "0cbb662a4ec39ca2d9d2896ab3bf8e39f711825d", + "flexbox_flex-1-1-N-shrink.html": [ + "333193b1fa32ed1ae2c931791702dc1d1c4d2d60", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-flexbox/flexbox_flex-1-1-N-shrink-ref.html", "==" ] ], {} ] ], - "aspect-ratio-intrinsic-size-003.html": [ - "7a23bbce30f46df479b121e0356a7f0a030cca60", + "flexbox_flex-1-1-N.html": [ + "0761c42723d6071f94f4f6e5b43fbf9aee60e04b", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-flexbox/flexbox_flex-1-1-N-ref.html", "==" ] ], {} ] ], - "aspect-ratio-intrinsic-size-004.html": [ - "9549de783d4114171eb6dc67109eef1a1eda487b", + "flexbox_flex-1-1-Npercent-shrink.html": [ + "b7fbc8632716c73ac7f4c657ed818bf0ba5b7de4", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-flexbox/flexbox_flex-1-1-Npercent-shrink-ref.html", "==" ] ], {} ] ], - "aspect-ratio-intrinsic-size-005.html": [ - "225a58d4fb4f341a19b372ab272c1370643e0d70", + "flexbox_flex-1-1-Npercent.html": [ + "3ca032fb6283e117639e53bac03e321b7731cf72", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-flexbox/flexbox_flex-1-1-Npercent-ref.html", "==" ] ], {} ] ], - "aspect-ratio-intrinsic-size-006.html": [ - "aa74d757264ad970604a01a4f9870d0dc79a02a4", + "flexbox_flex-1-1-auto-shrink.html": [ + "4c3b14d2394764d18d89a76b79ed3270750b5c87", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-flexbox/flexbox_flex-1-1-auto-shrink-ref.html", "==" ] ], {} ] ], - "aspect-ratio-intrinsic-size-007.html": [ - "5a6b896e97c365e16ba836dfdd1538e2dd9a3bff", + "flexbox_flex-1-1-auto.html": [ + "3a1efa8d16e21a3676389ed5a54d0fa55e3389b1", [ null, [ [ - "/css/css-flexbox/aspect-ratio-intrinsic-size-007-ref.html", + "/css/css-flexbox/flexbox_flex-1-1-auto-ref.html", "==" ] ], {} ] ], - "auto-height-column-with-border-and-padding.html": [ - "2151c21f61e915883a11bb78d7f785bdc5f5606c", + "flexbox_flex-1-1.html": [ + "8863c80db224703062144a4aebeb98add9304305", [ null, [ [ - "/css/css-flexbox/reference/auto-height-column-with-border-and-padding-ref.html", + "/css/css-flexbox/flexbox_flex-1-1-0-ref.html", "==" ] ], {} ] ], - "auto-height-with-flex.html": [ - "9151f8cd0979d287dec542e4034bbf3bacc0a8d3", + "flexbox_flex-1-N-0-unitless.html": [ + "e94509a14b1569e1fddb3a8b291043969f76ea4e", [ null, [ [ - "/css/css-flexbox/reference/auto-height-with-flex-ref.html", + "/css/css-flexbox/flexbox_flex-1-N-0-ref.html", "==" ] ], {} ] ], - "auto-margins-001.html": [ - "a9ea45ee753b8dd6fdfb4263644c827edddd44dd", + "flexbox_flex-1-N-0.html": [ + "a4dbcf81c2f60c5be234330633b4a93545cc681d", [ null, [ [ - "/css/css-flexbox/auto-margins-001-ref.html", + "/css/css-flexbox/flexbox_flex-1-N-0-ref.html", "==" ] ], {} ] ], - "auto-margins-002.html": [ - "454bc922f6a7c082de3e08d336b2c615ea15ed3b", + "flexbox_flex-1-N-N-shrink.html": [ + "1fe35c7a3e22702c2f61c53f94c3b680f19b0c67", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/flexbox_flex-1-N-N-shrink-ref.html", "==" ] ], {} ] ], - "auto-margins-003.html": [ - "2e3e7ec209c5fac3303ce66363cac44412da6c97", + "flexbox_flex-1-N-N.html": [ + "291f3b43bdda5aba8497c67f19373eab2c1609c2", [ null, [ [ - "/css/css-flexbox/reference/auto-margins-003-ref.html", + "/css/css-flexbox/flexbox_flex-1-N-N-ref.html", "==" ] ], {} ] ], - "baseline-synthesis-001.html": [ - "b1fa84c94caef8a350391c011c45a0431aedf1c6", + "flexbox_flex-1-N-Npercent-shrink.html": [ + "11d1f81b96252effb7cff35aa99d8845e0cd00a2", [ - "css/css-flexbox/baseline-synthesis-001.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/flexbox_flex-1-N-Npercent-shrink-ref.html", "==" ] ], {} ] ], - "baseline-synthesis-002.html": [ - "7cb1709fb3160da06e5f115f5d5aab1a901e86a4", + "flexbox_flex-1-N-Npercent.html": [ + "49c2d7fda8501f68a7bc1b699a48350c8f2e8ed1", [ - "css/css-flexbox/baseline-synthesis-002.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/flexbox_flex-1-N-Npercent-ref.html", "==" ] ], {} ] ], - "baseline-synthesis-003.html": [ - "98f0e7c2374b5dbe9cd288f13baffdacd806b357", + "flexbox_flex-1-N-auto-shrink.html": [ + "bdd64e7f3e1746664286a8193ce217c979c6a4bb", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/flexbox_flex-1-N-auto-shrink-ref.html", "==" ] ], {} ] ], - "baseline-synthesis-004.html": [ - "36c116c2dce4688f145e6362e15444515ce62048", + "flexbox_flex-1-N-auto.html": [ + "4abd0f2dda074eef2b7cffb0d3a016990965d737", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/flexbox_flex-1-N-auto-ref.html", "==" ] ], {} ] ], - "baseline-synthesis-vert-lr-line-under.html": [ - "5fcb75e6cd52f60939a16a6cfe927f7ec5dd9010", + "flexbox_flex-1-N.html": [ + "73d64b652874b276790cd2e23ec46baf588e8976", [ - "css/css-flexbox/baseline-synthesis-vert-lr-line-under.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/flexbox_flex-1-N-0-ref.html", "==" ] ], {} ] ], - "canvas-contain-size.html": [ - "66fb7261e8fc0d965765c5ba93c48fc3167d9017", + "flexbox_flex-N-0-0-unitless.html": [ + "bdb60617f6fcd32e57ad2c98c4434bdb771f4d9b", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-flexbox/flexbox_flex-N-0-0-ref.html", "==" ] ], {} ] ], - "content-height-with-scrollbars.html": [ - "1872d5f81d7f9a9fc5ae004f71b63d94b71df19a", + "flexbox_flex-N-0-0.html": [ + "720388b74d458af9e5b6b2a581c0b43596bddc8d", [ null, [ [ - "/css/css-flexbox/reference/content-height-with-scrollbars-ref.html", + "/css/css-flexbox/flexbox_flex-N-0-0-ref.html", "==" ] ], {} ] ], - "cross-axis-scrollbar.html": [ - "6bb325175562a231af8177e8d12f0bc35ac187a6", + "flexbox_flex-N-0-N-shrink.html": [ + "5d2193a02b2a3c5b2ec7650de3f9dbc143167c13", [ null, [ [ - "/css/css-flexbox/reference/cross-axis-scrollbar-ref.html", + "/css/css-flexbox/flexbox_flex-N-0-N-shrink-ref.html", "==" ] ], {} ] ], - "css-box-justify-content.html": [ - "d5c7244f08dcad0b0955290804ec5959754a963d", + "flexbox_flex-N-0-N.html": [ + "58dbbaaac04aef7c431b840ed2416a178602a342", [ null, [ [ - "/css/css-flexbox/reference/css-box-justify-content-ref.html", + "/css/css-flexbox/flexbox_flex-N-0-N-ref.html", "==" ] ], {} ] ], - "css-flexbox-img-expand-evenly.html": [ - "b809d5b270280797b312da0aa09b72876cf1f93c", + "flexbox_flex-N-0-Npercent-shrink.html": [ + "7ecf22ba67ef9664bc46644d8944a33967d09cf5", [ null, [ [ - "/css/css-flexbox/reference/css-flexbox-img-expand-evenly-ref.html", + "/css/css-flexbox/flexbox_flex-N-0-Npercent-shrink-ref.html", "==" ] ], {} ] ], - "css-flexbox-row-reverse-wrap-reverse.html": [ - "6e3ad38187e0555add1651937299d0834d3d218c", + "flexbox_flex-N-0-Npercent.html": [ + "d8d8761f6d2feb59f53e792cbffbe94adb229a08", [ null, [ [ - "/css/css-flexbox/css-flexbox-row-ref.html", + "/css/css-flexbox/flexbox_flex-N-0-Npercent-ref.html", "==" ] ], {} ] ], - "css-flexbox-row-reverse-wrap.html": [ - "b24a380355aac8716a57e3dfb7496d6265ecbd26", + "flexbox_flex-N-0-auto-shrink.html": [ + "2060a67884a62fd2b6a53ffd52972384960a83ce", [ null, [ [ - "/css/css-flexbox/css-flexbox-row-ref.html", + "/css/css-flexbox/flexbox_flex-N-0-auto-shrink-ref.html", "==" ] ], {} ] ], - "css-flexbox-row-reverse.html": [ - "d8fac64ca1bfea2772b472c2a5a9f404fb89acf4", + "flexbox_flex-N-0-auto.html": [ + "b05f948e8d3442e24ccdd9ede7a18cdfbf31ad4f", [ null, [ [ - "/css/css-flexbox/css-flexbox-row-ref.html", + "/css/css-flexbox/flexbox_flex-N-0-auto-ref.html", "==" ] ], {} ] ], - "css-flexbox-row-wrap-reverse.html": [ - "5f8bcda0e2e425b8029ef86f08ff5791ca01e80d", + "flexbox_flex-N-0.html": [ + "46e051bc63b572102d3ea39fe1c38632b95a61a1", [ null, [ [ - "/css/css-flexbox/css-flexbox-row-ref.html", + "/css/css-flexbox/flexbox_flex-N-0-0-ref.html", "==" ] ], {} ] ], - "css-flexbox-row-wrap.html": [ - "c5de361547215d7a8f26f0b1f7555f1758d80b01", + "flexbox_flex-N-1-0-unitless.html": [ + "5fcd2b0d54df13567f92ade53efce585d66957c2", [ null, [ [ - "/css/css-flexbox/css-flexbox-row-ref.html", + "/css/css-flexbox/flexbox_flex-N-1-0-ref.html", "==" ] ], {} ] ], - "css-flexbox-row.html": [ - "d32a84f2e471eddd0600999022a22c9777c0697b", + "flexbox_flex-N-1-0.html": [ + "7e7643d57aff5a2c00a77c55144836bfcf8404f2", [ null, [ [ - "/css/css-flexbox/css-flexbox-row-ref.html", + "/css/css-flexbox/flexbox_flex-N-1-0-ref.html", "==" ] ], {} ] ], - "css-flexbox-test1.html": [ - "534b3d79d1a46bed0a8f1088eddca71b3d2656c5", + "flexbox_flex-N-1-N-shrink.html": [ + "26050d96c228d5f2e56f2d1b0abea050f5677ad2", [ null, [ [ - "/css/css-flexbox/css-flexbox-test1-ref.html", + "/css/css-flexbox/flexbox_flex-N-1-N-shrink-ref.html", "==" ] ], {} ] ], - "display-flex-001.htm": [ - "7d0f6c9fda6aa0829efbcff898d485b2143d46f1", + "flexbox_flex-N-1-N.html": [ + "bcc04113068ac653df3eda62d7bec694a966fd94", [ null, [ [ - "/css/css-flexbox/reference/align-content-001-ref.html", + "/css/css-flexbox/flexbox_flex-N-1-N-ref.html", "==" ] ], {} ] ], - "dynamic-baseline-change-nested.html": [ - "803b31410dbe07b56d39019de8426dc2575b4e7c", + "flexbox_flex-N-1-Npercent-shrink.html": [ + "d620ef1151bec87d97a03e06b7cf2c5a39ce05c3", [ null, [ [ - "/css/css-flexbox/dynamic-baseline-change-ref.html", + "/css/css-flexbox/flexbox_flex-N-1-Npercent-shrink-ref.html", "==" ] ], {} ] ], - "dynamic-baseline-change.html": [ - "f13b87f0c1431010137bc76d516f92173c7aa1ed", + "flexbox_flex-N-1-Npercent.html": [ + "fee9bbf95bec4df0825b558b7015bb6dfaace297", [ null, [ [ - "/css/css-flexbox/dynamic-baseline-change-ref.html", + "/css/css-flexbox/flexbox_flex-N-1-Npercent-ref.html", "==" ] ], {} ] ], - "dynamic-bsize-change.html": [ - "7148f26e2770b669dfcc69435e3a506882ffd457", + "flexbox_flex-N-1-auto-shrink.html": [ + "addb21384f5b69150a9b6390e9a93fa31cfb8645", [ null, [ [ - "/css/css-flexbox/dynamic-bsize-change-ref.html", + "/css/css-flexbox/flexbox_flex-N-1-auto-shrink-ref.html", "==" ] ], {} ] ], - "dynamic-change-simplified-layout-002.html": [ - "d419bb3c700cd18b972a741fe0a03454445b80a4", + "flexbox_flex-N-1-auto.html": [ + "67cb3a2996248543388a65ae8a6914abf11a6ae9", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/flexbox_flex-N-1-auto-ref.html", "==" ] ], {} ] ], - "dynamic-change-simplified-layout.html": [ - "5d15e22c5eba93488c8e6e667b61306669c32026", + "flexbox_flex-N-1.html": [ + "655493168e2bed6cd3f3013b56ef2130b7a6b14d", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/flexbox_flex-N-1-0-ref.html", "==" ] ], {} ] ], - "dynamic-isize-change-001.html": [ - "cf4a03004398457bcc59471ef54138442247144b", + "flexbox_flex-N-N-0-unitless.html": [ + "ee655252ccf22dfae33c45629733bb4898f1aae5", [ - "css/css-flexbox/dynamic-isize-change-001.html", + null, [ [ - "/css/css-flexbox/dynamic-isize-change-001-ref.html", + "/css/css-flexbox/flexbox_flex-N-N-0-ref.html", "==" ] ], {} ] ], - "dynamic-isize-change-002.html": [ - "cc859b73f9ae9406d6a00713ca645c1c0493ed23", + "flexbox_flex-N-N-0.html": [ + "b6053669eb0e32d3adba61605037da42de9f16e0", [ - "css/css-flexbox/dynamic-isize-change-002.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/flexbox_flex-N-N-0-ref.html", "==" ] ], {} ] ], - "dynamic-isize-change-003.html": [ - "9df13e313fda0b32a827f67432972ec3d73240b3", + "flexbox_flex-N-N-N-shrink.html": [ + "f82bdd746eff2eca0a3c9a1facfa715f1812ec1b", [ - "css/css-flexbox/dynamic-isize-change-003.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/flexbox_flex-N-N-N-shrink-ref.html", "==" ] ], {} ] ], - "dynamic-isize-change-004.html": [ - "1627e32d966d92610ffd2577abf42a72a16a8cf7", + "flexbox_flex-N-N-N.html": [ + "f7f1b5acf2570e559fc1176e59abd99956dfc057", [ - "css/css-flexbox/dynamic-isize-change-004.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/flexbox_flex-N-N-N-ref.html", "==" ] ], {} ] ], - "dynamic-orthogonal-flex-item.html": [ - "90791f0be82361c4f1527ce6009be52a94d06aaa", + "flexbox_flex-N-N-Npercent-shrink.html": [ + "a018f73544751fa1dcfb72d795f2aa53036a3ba1", [ - "css/css-flexbox/dynamic-orthogonal-flex-item.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-flexbox/flexbox_flex-N-N-Npercent-shrink-ref.html", "==" ] ], {} ] ], - "dynamic-stretch-change.html": [ - "f2fdf1b24f4acd733b0623034494e46e61d16259", + "flexbox_flex-N-N-Npercent.html": [ + "ed49973a252b208f096ab55341648ea9e0d8100d", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-flexbox/flexbox_flex-N-N-Npercent-ref.html", "==" ] ], {} ] ], - "fieldset-as-item-dynamic.html": [ - "814b228e3650a65b742ae9c0f2fd6e9fc5b2a4cd", + "flexbox_flex-N-N-auto-shrink.html": [ + "9fec902ce518846b167039d1b500a1512881e805", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-flexbox/flexbox_flex-N-N-auto-shrink-ref.html", "==" ] ], {} ] ], - "fieldset-as-item-overflow.html": [ - "17bc82a0b51a7f76253e1ca9f75c9840abbd366f", + "flexbox_flex-N-N-auto.html": [ + "29d50462e101bbe74c3e4616bb5b344cf6c7504e", [ null, [ [ - "/css/css-flexbox/fieldset-as-item-overflow-ref.html", + "/css/css-flexbox/flexbox_flex-N-N-auto-ref.html", "==" ] ], {} ] ], - "fieldset-baseline-alignment.html": [ - "d3fdba3d7f476cff486e765791f9c9d8f5de7b06", + "flexbox_flex-N-N.html": [ + "3b26bd25507c7820e828816effca33b04664cf56", [ null, [ [ - "/css/css-flexbox/fieldset-baseline-alignment-ref.html", + "/css/css-flexbox/flexbox_flex-N-N-0-ref.html", "==" ] ], {} ] ], - "fit-content-item-001.html": [ - "ac5c3406991a8b6d5db29d301be9680d7983c8d7", + "flexbox_flex-auto.html": [ + "bfef8ffa46268b0ac262c821c715cf1ce0ec064f", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/flexbox_flex-auto-ref.html", "==" ] ], {} ] ], - "fit-content-item-002.html": [ - "c1be5ff5a9612d765de4a9e47ee3f4b6950a935b", + "flexbox_flex-basis-shrink.html": [ + "25856c77ef341c558f5d1ebf2838d8bd61d5d9d2", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-flexbox/flexbox_flex-basis-shrink-ref.html", "==" ] ], {} ] ], - "fit-content-item-003.html": [ - "2cc310d729c1da75ea2313cb767a514fb061b694", + "flexbox_flex-basis.html": [ + "4806917151f917947840926613b57bbd40d30aaf", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-flexbox/flexbox_flex-basis-ref.html", "==" ] ], {} ] ], - "fit-content-item-004.html": [ - "5fbbf4bd510d82a733ca26a41c23cc63b0b83ea1", + "flexbox_flex-formatting-interop.html": [ + "a6ef26fa27de06ba922431ed61ccd905572d7863", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-flexbox/flexbox_flex-formatting-interop-ref.html", "==" ] ], {} ] ], - "fixed-table-layout-with-percentage-width-in-flex-item.html": [ - "507e0e9fcefd131757ef20bf7cad88a22f6df028", + "flexbox_flex-initial-2.html": [ + "79c58207a3f9837552ab49337d0633489fdd2c75", [ - "css/css-flexbox/fixed-table-layout-with-percentage-width-in-flex-item.html", + null, [ [ - "/css/css-flexbox/fixed-table-layout-with-percentage-width-in-flex-item-ref.html", + "/css/css-flexbox/flexbox_flex-initial-2-ref.html", "==" ] ], {} ] ], - "flex-001.htm": [ - "1806e06dc92f4675adeb909f4e99ee506c60d61b", + "flexbox_flex-initial.html": [ + "b27171d8e070a876142ea05d7bc1d93666bfbfd9", [ null, [ [ - "/css/css-flexbox/reference/justify-content-001-ref.html", + "/css/css-flexbox/flexbox_flex-initial-ref.html", "==" ] ], {} ] ], - "flex-002.htm": [ - "10e384dc538518d1b42297de99be9c19aae81f62", + "flexbox_flex-natural-mixed-basis-auto.html": [ + "5cac508f9a9d129d97ddd8ba20796bcbbc703e72", [ null, [ [ - "/css/css-flexbox/reference/justify-content-001-ref.html", + "/css/css-flexbox/flexbox_flex-natural-mixed-basis-auto-ref.html", "==" ] ], {} ] ], - "flex-003.htm": [ - "b48a79b06f424ed50c17f715a39edc1958a20c9e", + "flexbox_flex-natural-mixed-basis.html": [ + "cbef001e2c01d9875dd4ab3538f7a1ceaf095a86", [ null, [ [ - "/css/css-flexbox/reference/justify-content-001-ref.html", + "/css/css-flexbox/flexbox_flex-natural-mixed-basis-ref.html", "==" ] ], {} ] ], - "flex-004.htm": [ - "8c82affd9bc6dcba1e43f04abf17f6dd6c407010", + "flexbox_flex-natural-variable-auto-basis.html": [ + "11fc45dd7de9e7e64f66cff85d8fd51501bc0300", [ null, [ [ - "/css/css-flexbox/reference/justify-content-001-ref.html", + "/css/css-flexbox/flexbox_flex-natural-variable-auto-basis-ref.html", "==" ] ], {} ] ], - "flex-align-content-center.html": [ - "13ddc295bb0f60d7deb3a21be74f02d4bb0b063e", + "flexbox_flex-natural-variable-zero-basis.html": [ + "6ea8f29ac90edfdee901d5bbf4aba2462f6ce934", [ null, [ [ - "/css/css-flexbox/reference/flex-align-content-center-ref.html", + "/css/css-flexbox/flexbox_flex-natural-variable-zero-basis-ref.html", "==" ] ], {} ] ], - "flex-align-content-end.html": [ - "0572d58773bbf89f03a5a67356edd1169fe9f679", + "flexbox_flex-natural.html": [ + "81521498246e00ba43a7418818efd722e323b9c3", [ null, [ [ - "/css/css-flexbox/reference/flex-align-content-end-ref.html", + "/css/css-flexbox/flexbox_flex-natural-ref.html", "==" ] ], {} ] ], - "flex-align-content-space-around.html": [ - "2ed87ba3a8726bf9a69b82409629f8c987573c8d", + "flexbox_flex-none-wrappable-content.html": [ + "81fafbf3091b7d8a77c618c311c900fceb3427e5", [ null, [ [ - "/css/css-flexbox/reference/flex-align-content-space-around-ref.html", + "/css/css-flexbox/flexbox_flex-none-wrappable-content-ref.html", "==" ] ], {} ] ], - "flex-align-content-space-between.html": [ - "395d6cf5018aef6a3ac7806560a88ffd8a98506a", + "flexbox_flex-none.html": [ + "2b781a276df23d62218d78a344196d55bd49c161", [ null, [ [ - "/css/css-flexbox/reference/flex-align-content-space-between-ref.html", + "/css/css-flexbox/flexbox_flex-none-ref.html", "==" ] ], {} ] ], - "flex-align-content-start.html": [ - "721658c62763aca9dc5e6857928e20659c37a8d4", + "flexbox_flow-column-reverse-wrap-reverse.html": [ + "2b65260306a91df2f398ef67775d6aeec28e1681", [ null, [ [ - "/css/css-flexbox/reference/flex-align-content-start-ref.html", + "/css/css-flexbox/flexbox_flow-column-reverse-wrap-reverse-ref.html", "==" ] ], {} ] ], - "flex-aspect-ratio-img-column-001.html": [ - "ad84dc23fe7e92a75a9ad1c9e75dcea35f231d8c", + "flexbox_flow-column-reverse-wrap.html": [ + "014bbddc320d8908509150f28f32adcca1f85c77", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/flexbox_flow-column-reverse-wrap-ref.html", "==" ] ], {} ] ], - "flex-aspect-ratio-img-column-002.html": [ - "3849d454a02c22428e64bc4e6158e82d4d178809", + "flexbox_flow-column-wrap-reverse.html": [ + "602e0d8933518d5b9c3e2e37657eb0c38c13eded", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/flexbox_flow-column-wrap-reverse-ref.html", "==" ] ], {} ] ], - "flex-aspect-ratio-img-column-003.html": [ - "a3ee677bd972a530415c8332f4c4f571d18a482a", + "flexbox_flow-column-wrap.html": [ + "c5b95c20d924884522ce9205a01c596adb5de42b", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/flexbox_flow-column-wrap-ref.html", "==" ] ], {} ] ], - "flex-aspect-ratio-img-column-004.html": [ - "5ae39e11fe0454f3e70302dcb2591d9855adaaf6", + "flexbox_flow-row-wrap-reverse.html": [ + "28d7c343f5294ebd0783f7dd92ee20b186f226fa", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/flexbox_flow-row-wrap-reverse-ref.html", "==" ] ], {} ] ], - "flex-aspect-ratio-img-column-005.html": [ - "0bd7ef8b23fb19d100d27431ba093a0dee182f34", + "flexbox_flow-row-wrap.html": [ + "a1a17abaccb17874597f8bf5c727ccb2ef33079b", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/flexbox_flow-row-wrap-ref.html", "==" ] ], {} ] ], - "flex-aspect-ratio-img-column-006.html": [ - "bb7e2c446cab7fd01555a2586f2964862e54555d", + "flexbox_generated-flex.html": [ + "b2bb8a3ede7e0a163f74de0a2e316eaf7848420e", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/flexbox_generated-flex-ref.html", "==" ] ], {} ] ], - "flex-aspect-ratio-img-column-007.html": [ - "7e8af7bcdd91531d0bccacd5545971cb7e211982", + "flexbox_generated-nested-flex.html": [ + "2a095c16e44530e96ed893edd14aa2c5e600319a", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/flexbox_generated-flex-ref.html", "==" ] ], {} ] ], - "flex-aspect-ratio-img-column-008.html": [ - "efdfa35718292e5305027113ed4c08c15de4a5ae", + "flexbox_generated.html": [ + "1c84d8803ec3e16f77e426a46869efa1700baf72", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/flexbox_generated-ref.html", "==" ] ], {} ] ], - "flex-aspect-ratio-img-column-009.html": [ - "407a6d9455b5788e63a101050308d015be2f40e1", + "flexbox_inline-float.html": [ + "345b3fa7c9a8793a9f4251bbd795dadb7b2b7ca2", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/reference/blank.html", "==" ] ], {} ] ], - "flex-aspect-ratio-img-column-010.html": [ - "70ebd378a4a7c00059bed9e7ff57febd5a252fba", + "flexbox_inline.html": [ + "28d8f81c905039a063c1d62f9ee51382ecc49b97", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/flexbox_inline-ref.html", "==" ] ], {} ] ], - "flex-aspect-ratio-img-column-012.html": [ - "e78ededfb2b2c5872e782b4c51d896c8f495e45b", + "flexbox_item-bottom-float.html": [ + "d8e012c6e9b10d2fc14b59917ac806a9b1c751ee", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-flexbox/flexbox_item-bottom-float-ref.html", "==" ] ], {} ] ], - "flex-aspect-ratio-img-column-013.html": [ - "81640d518c97c19388d3a53f35ed6aad1e3c48d5", + "flexbox_item-clear.html": [ + "bd7cea697ea01b6de8a86bc96f9bc4acc457caec", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-flexbox/flexbox_item-clear-ref.html", "==" ] ], {} ] ], - "flex-aspect-ratio-img-column-014.html": [ - "b4f2b223cf6fcc7b60a3217b2042e435d52ef0fd", + "flexbox_item-float.html": [ + "3de8b31d8b8334e755d4f896bd06f9a4bc581f1c", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/flexbox_item-float-ref.html", "==" ] ], {} ] ], - "flex-aspect-ratio-img-column-015.html": [ - "688955db0e70fcb0aa728465dfb557c218e9dfd4", + "flexbox_item-top-float.html": [ + "15569fc37d5df7a0ba7bedaed5850b3653fb1782", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/flexbox_item-top-float-ref.html", "==" ] ], {} ] ], - "flex-aspect-ratio-img-column-016.html": [ - "473aea9e4b0235c44bbc17d92b76b1749e1c505d", + "flexbox_item-vertical-align.html": [ + "7043c950a6fad7d4c8400d583debe386fb8a9ff6", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-flexbox/flexbox_item-vertical-align-ref.html", "==" ] ], {} ] ], - "flex-aspect-ratio-img-column-018.html": [ - "04b12875c05b6ba2e3871271ec365bfe1d7d345f", + "flexbox_justifycontent-center.html": [ + "e26d69204093b31c4fe274957db4873f4b15fd5a", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-flexbox/flexbox_justifycontent-center-ref.html", "==" ] ], {} ] ], - "flex-aspect-ratio-img-row-001.html": [ - "14fabf760ca4293abf5af9e618b2e2ed627be2b2", + "flexbox_justifycontent-end-rtl.html": [ + "e30d8a77528ee535b30d0219ad575d1d2edfe9d7", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/flexbox_justifycontent-end-rtl-ref.html", "==" ] ], {} ] ], - "flex-aspect-ratio-img-row-002.html": [ - "9f2c63240f8452003bb82349434e862413f95f68", + "flexbox_justifycontent-end.html": [ + "f6b7f279b664758881d262913bc2d52504222386", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/flexbox_justifycontent-end-ref.html", "==" ] ], {} ] ], - "flex-aspect-ratio-img-row-003.html": [ - "a3a8e4a0e386f5d4d25f37301049edb522f13426", + "flexbox_justifycontent-flex-end.html": [ + "ee7f711f132385f2683d293d648217308a8e7e16", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/flexbox_justifycontent-flex-end-ref.html", "==" ] ], {} ] ], - "flex-aspect-ratio-img-row-004.html": [ - "0ef496620390697a49d00f70028258647b2d4a3c", + "flexbox_justifycontent-flex-start.html": [ + "66e85cde7ec77ee072b287122e2874957f2b3e74", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/flexbox_justifycontent-flex-start-ref.html", "==" ] ], {} ] ], - "flex-aspect-ratio-img-row-006.html": [ - "2d6f0857a2e54391da34453fbc355b3834ee6d06", + "flexbox_justifycontent-left-001.html": [ + "6f56e4db7a5dea31c9772c6e5f3a69c8827d13b8", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-flexbox/flexbox_justifycontent-left-001-ref.html", "==" ] ], {} ] ], - "flex-aspect-ratio-img-row-007.html": [ - "42441477583ed24dbc4fa22fb5d58f77ca1f177f", + "flexbox_justifycontent-left-002.html": [ + "e18c43a4acb733feda47cfd9eb767d0efc09eff5", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-flexbox/flexbox_justifycontent-left-002-ref.html", "==" ] ], {} ] ], - "flex-aspect-ratio-img-row-008.html": [ - "58dee77510fa96383dea0b88386a13033b68157f", + "flexbox_justifycontent-right-001.html": [ + "9f6dbdc461675860de054ed39742b5115b03f47b", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-flexbox/flexbox_justifycontent-right-001-ref.html", "==" ] ], {} ] ], - "flex-aspect-ratio-img-row-009.html": [ - "e7dc55d2711d90e96f60ca0a7fadfeafcb9b2bec", + "flexbox_justifycontent-right-002.html": [ + "2aeffe3b410939038003348a8330b054a9a82ad5", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/flexbox_justifycontent-right-002-ref.html", "==" ] ], {} ] ], - "flex-aspect-ratio-img-row-010.html": [ - "f57ba6f625cf1d9bb317c40ccb741f759a549a5d", + "flexbox_justifycontent-spacearound-negative.html": [ + "85dbba75363510579c40dbbc72b117ae4e847788", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/flexbox_justifycontent-spacearound-negative-ref.html", "==" ] ], {} ] ], - "flex-aspect-ratio-img-row-011.html": [ - "4c10b513fd815624d0e968aee1bd917f1d1264a6", + "flexbox_justifycontent-spacearound-only.html": [ + "62bfd90f0dcae9bc18fe93ea6c47f78ba43640ca", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/flexbox_justifycontent-spacearound-only-ref.html", "==" ] ], {} ] ], - "flex-aspect-ratio-img-row-012.html": [ - "35806891e2b72813a203d8f287716322d91fc28d", + "flexbox_justifycontent-spacearound.html": [ + "2cbcf25444d63e2c3bcbf53de87dfa31cf652ff5", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-flexbox/flexbox_justifycontent-spacearound-ref.html", "==" ] ], {} ] ], - "flex-aspect-ratio-img-row-014.html": [ - "9f12b65f8435ef781d2a98170a70eb66574f73e5", + "flexbox_justifycontent-spacebetween-negative.html": [ + "081c7caa3dc79933b3c16e9eda53dcfbc3131c94", [ null, [ [ - "/css/css-flexbox/reference/flex-aspect-ratio-img-row-014-ref.html", + "/css/css-flexbox/flexbox_justifycontent-spacebetween-negative-ref.html", "==" ] ], {} ] ], - "flex-aspect-ratio-img-row-015.html": [ - "e28829036052006620ae2d00478d12322ce3cdbc", + "flexbox_justifycontent-spacebetween-only.html": [ + "bb746a49561d9c3770fedea79bdaaa7586729353", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-flexbox/flexbox_justifycontent-spacebetween-only-ref.html", "==" ] ], {} ] ], - "flex-aspect-ratio-img-row-016.html": [ - "0c5135afed5a6c6ac4543c91a89f7dbab1b3c83d", + "flexbox_justifycontent-spacebetween.html": [ + "f04d5dac57138529e007acf6c2f9ea5e696de6b7", [ - "css/css-flexbox/flex-aspect-ratio-img-row-016.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/flexbox_justifycontent-spacebetween-ref.html", "==" ] ], {} ] ], - "flex-aspect-ratio-img-row-017.html": [ - "b2408159b5af0c445333b4a3e6ab0d9d4353d78f", + "flexbox_justifycontent-start-rtl.html": [ + "c94328797ae81564f8782f4f11058cd34dd5a17f", [ - "css/css-flexbox/flex-aspect-ratio-img-row-017.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/flexbox_justifycontent-start-rtl-ref.html", "==" ] ], {} ] ], - "flex-basis-001.html": [ - "85e3bc69c435da542f520bc0e5b9b0afe911f0ad", + "flexbox_justifycontent-start.html": [ + "176af6d4f8354a235baa7b244d4150a98a2cd812", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/flexbox_justifycontent-start-ref.html", "==" ] ], {} ] ], - "flex-basis-002.html": [ - "bbeb8fd6cce24335b628edfb78bcb3e7eed99356", + "flexbox_margin-auto-overflow.html": [ + "8d7860f8866a14861a736119c3169d3b6d2d53f5", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/flexbox_margin-auto-overflow-ref.html", "==" ] ], {} ] ], - "flex-basis-003.html": [ - "48fd3362a5cd4d43f3fe74f8b5df08317fcf8b01", + "flexbox_margin-auto.html": [ + "dd86f184cd58cdb8031de2cef02d3bddabca3352", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/flexbox_margin-auto-ref.html", "==" ] ], {} ] ], - "flex-basis-004.html": [ - "7e2d3c9ea5d25413d4205226a81a29e131f848b7", + "flexbox_margin-left-ex.html": [ + "ea57ef28013b8dcfec9be7db8a85d122519859a9", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/flexbox_margin-left-ex-ref.html", "==" ] ], {} ] ], - "flex-basis-005.html": [ - "67efac4bbb1392c23d8f3562893c907bd3fe4f73", + "flexbox_margin.html": [ + "af406340032741024b79bb5e69b41e0daa78f487", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/flexbox_margin-ref.html", "==" ] ], {} ] ], - "flex-basis-006.html": [ - "641718cea1dda83a6b49d5b6258c9951a761f115", + "flexbox_nested-flex.html": [ + "0cd4aeaffe2e7f0c0e168281261dad2cd4b232e1", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/flexbox_generated-flex-ref.html", "==" ] ], {} ] ], - "flex-basis-007.html": [ - "e99a4420fcd18e6711377044f4a2793f62f22231", + "flexbox_object.html": [ + "701af7b78b6af3ea084ad3529adb9c5bda45ea34", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/flexbox_object-ref.html", "==" ] ], {} ] ], - "flex-basis-008.html": [ - "26c8cb3c78aa0e9f9f2aa4b9beaecc0b56be60f1", + "flexbox_order-abspos-space-around.html": [ + "9c1d5dde2dc16e8d5dfcc87e91509b69b0ea5ee4", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/flexbox_order-abspos-space-around-ref.html", "==" ] ], {} ] ], - "flex-basis-010.html": [ - "79992974b054b553b9052cba32a16fd89c37a866", + "flexbox_order-box.html": [ + "a0d283516aa6760ed65c73ec571d834d5f7546a6", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/flexbox_order-box-ref.html", "==" ] ], {} ] ], - "flex-basis-011.html": [ - "9edb5dc975206d2103d9eebfbfd7f9de450f9192", + "flexbox_order-noninteger-invalid.html": [ + "2f409b0dacd7cc9bb169b2e91b66c699f47d0118", [ null, [ [ - "/css/css-flexbox/flex-basis-011-ref.html", + "/css/reference/blank.html", "==" ] ], {} ] ], - "flex-basis-012.html": [ - "b1adddeb23368e7e18553436e1254ad9d8e2f582", + "flexbox_order.html": [ + "8ed5eb490b464e47a8912c23ddc60476059169bc", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/flexbox_order-ref.html", "==" ] ], {} ] ], - "flex-basis-item-margins-001.html": [ - "fe732443e6b13e025e78a19deedaccc47daefec4", + "flexbox_quirks_body.html": [ + "4be3896fadcc96c22bf3c8c8876e8f718c8c2f50", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/reference/flexbox_quirks_body-ref.html", "==" ] ], {} ] ], - "flex-box-wrap.html": [ - "7d6c6a95676baaf271e58b3f1692aeeaeb7e091c", + "flexbox_rowspan-overflow-automatic.html": [ + "3a024fc506248b15eefe6c9f5382a74c1806554e", [ null, [ [ - "/css/css-flexbox/reference/flex-box-wrap-ref.html", + "/css/css-flexbox/flexbox_rowspan-ref.html", "==" ] ], {} ] ], - "flex-child-percent-basis-resize-1.html": [ - "7631e02a2261211aee6156d81cac9fdc4c2aea6d", + "flexbox_rowspan-overflow.html": [ + "55165a61c17fd046b33bded35a9c9af8eede93cd", [ null, [ [ - "/css/css-flexbox/flex-child-percent-basis-resize-1-ref.html", + "/css/css-flexbox/flexbox_rowspan-ref.html", "==" ] ], {} ] ], - "flex-container-margin.html": [ - "4ea7441cb07dbc419d562092e00d08f9d4e13e2e", + "flexbox_rowspan.html": [ + "67a0dc6b2ec56c501093cdb02b5b0faadcc79deb", [ null, [ [ - "/css/css-flexbox/reference/flex-container-margin-ref.html", + "/css/css-flexbox/flexbox_rowspan-ref.html", "==" ] ], {} ] ], - "flex-container-max-content-001.html": [ - "94a68b5753da3376910b86790279d0df675ff3d8", + "flexbox_rtl-direction.html": [ + "97d0ba21d37f22e71cfdc0660cd7dc7fd5af9672", [ null, [ [ - "/css/css-flexbox/flex-container-max-content-001-ref.html", + "/css/css-flexbox/flexbox_rtl-direction-ref.html", "==" ] ], {} ] ], - "flex-container-min-content-001.html": [ - "c328230362d5c4fe8a6342b37769e37dd2babb46", + "flexbox_rtl-flow-reverse.html": [ + "f4789694be88376d0ec395fab793874a03c5b88b", [ - "css/css-flexbox/flex-container-min-content-001.html", + null, [ [ - "/css/css-flexbox/flex-container-min-content-001-ref.html", + "/css/css-flexbox/flexbox_rtl-flow-reverse-ref.html", "==" ] ], {} ] ], - "flex-direction-column-reverse.html": [ - "dc19045be7e4a99d2fb7f30adec490022761ed30", + "flexbox_rtl-flow.html": [ + "954a6b7fe5418089c0878b48f91e85774c73cf08", [ null, [ [ - "/css/css-flexbox/reference/flex-direction-column-reverse-ref.html", + "/css/css-flexbox/flexbox_rtl-flow-ref.html", "==" ] ], {} ] ], - "flex-direction-column.html": [ - "bf322e6c0441ecf215b5d000bdddc1ea4c99a2a1", + "flexbox_rtl-order.html": [ + "7613240ebc663867c8e8c66e31d244dc721121cd", [ null, [ [ - "/css/css-flexbox/reference/flex-direction-column-ref.html", + "/css/css-flexbox/flexbox_rtl-order-ref.html", "==" ] ], {} ] ], - "flex-direction-modify.html": [ - "b13ee04fdcb7282871e3f445bc84d1c39fca33ac", + "flexbox_stf-abspos.html": [ + "b6f2691cd76d62cfc1cf64a74a8b91029a3b86a0", [ null, [ [ - "/css/css-flexbox/reference/flex-direction-modify.html", + "/css/reference/blank.html", "==" ] ], {} ] ], - "flex-direction-row-reverse.html": [ - "01cb9df02c8ee93c3a346e8b8c8dd3766f1add61", + "flexbox_stf-fixpos.html": [ + "f211201efdea7b552f8ee7ee8cfc850a71fbad3c", [ null, [ [ - "/css/css-flexbox/reference/flex-direction-row-reverse-ref.html", + "/css/reference/blank.html", "==" ] ], {} ] ], - "flex-direction-row-vertical.html": [ - "f6d496dbb846920071bd00328a1ba8dd4f17de8f", + "flexbox_stf-float.html": [ + "223b3aba2ed7aee3253e0bfc121e7af1d97dec30", [ null, [ [ - "/css/css-flexbox/flex-direction-row-vertical-ref.html", + "/css/reference/blank.html", "==" ] ], {} ] ], - "flex-direction-with-element-insert.html": [ - "42fbdc8a1a07346bd2c20543e82cd2c50e3a6f32", + "flexbox_stf-inline-block.html": [ + "ea2741165e310f7f86e03c251f2fc8b16fabaa5a", [ null, [ [ - "/css/css-flexbox/reference/flex-direction-with-element-insert.html", + "/css/reference/blank.html", "==" ] ], {} ] ], - "flex-direction.html": [ - "709b1b036a2abff289cae6bd8e8461887dfdcc97", + "flexbox_stf-table-caption.html": [ + "7da1436cd01bbc8437f9af493589d1e8a72c17c3", [ null, [ [ - "/css/css-flexbox/reference/flex-direction.html", + "/css/reference/blank.html", "==" ] ], {} ] ], - "flex-flow-001.html": [ - "98ba1568fec4ac83b3fce5fee38375213d4c676c", + "flexbox_stf-table-cell.html": [ + "c1d7b5a54b2099b75a874efeabfd82835158bc62", [ null, [ [ - "/css/css-flexbox/flex-flow-001-ref.html", + "/css/reference/blank.html", "==" ] ], {} ] ], - "flex-flow-002.html": [ - "ba3701e4ded97b76792c7c364cb160ad0e19d974", + "flexbox_stf-table-row-group.html": [ + "8cb16e9acb1036a623bf0fb21c29dc9502ca7cd4", [ null, [ [ - "/css/css-flexbox/flex-flow-002-ref.html", + "/css/reference/blank.html", "==" ] ], {} ] ], - "flex-flow-003.html": [ - "59dc83740260e18eaa6ebbea98b3f7e56596983e", + "flexbox_stf-table-row.html": [ + "f10dddc4754ec0b11246558f5b0d5cd1310b8351", [ null, [ [ - "/css/css-flexbox/flex-flow-002-ref.html", + "/css/reference/blank.html", "==" ] ], {} ] ], - "flex-flow-004.html": [ - "5907f16447d34c3293241332a339beff89cf5b70", + "flexbox_stf-table-singleline-2.html": [ + "9600a85dd125d1c7cd06bde393a2f8e5ce9f1067", [ null, [ [ - "/css/css-flexbox/flex-flow-001-ref.html", + "/css/css-flexbox/flexbox_stf-table-singleline-ref.html", "==" ] ], {} ] ], - "flex-flow-005.html": [ - "d84979c001d3bdb621e6a58601fad78e2ba91ef7", + "flexbox_stf-table-singleline.html": [ + "7f9491a25cea582016b9273df74ffac41e3c97f6", [ null, [ [ - "/css/css-flexbox/flex-flow-002-ref.html", + "/css/css-flexbox/flexbox_stf-table-singleline-ref.html", "==" ] ], {} ] ], - "flex-flow-006.html": [ - "e76e52fa97841ee9430d8fccaa3adb9f6c09271a", + "flexbox_stf-table.html": [ + "79de59307f950c7355fd66f3becedcc46d271bde", [ null, [ [ - "/css/css-flexbox/flex-flow-002-ref.html", + "/css/reference/blank.html", "==" ] ], {} ] ], - "flex-flow-007.html": [ - "785289c9c8fb77d7a1e81f612e9803bbbae8e283", + "flexbox_table-fixed-layout.html": [ + "52872e81bf8dab9b78b60f770af78e07b32f1430", [ null, [ [ - "/css/css-flexbox/flex-flow-007-ref.html", + "/css/reference/blank.html", "==" ] ], {} ] ], - "flex-flow-008.html": [ - "0d0f99eebe1cfba36937fe9d2ec1e168ec160d01", + "flexbox_visibility-collapse-line-wrapping.html": [ + "340335fab2c24d08d41bec1301c157c6bdc8c4fa", [ null, [ [ - "/css/css-flexbox/flex-flow-002-ref.html", + "/css/css-flexbox/flexbox_visibility-collapse-line-wrapping-ref.html", "==" ] ], {} ] ], - "flex-flow-009.html": [ - "566980f0cd306a21e68ef3e7df3341981c0736f6", + "flexbox_visibility-collapse.html": [ + "6b2705fd94f6266e8acb7762c7acbb5fdd250f0b", [ null, [ [ - "/css/css-flexbox/flex-flow-002-ref.html", + "/css/css-flexbox/flexbox_visibility-collapse-ref.html", "==" ] ], {} ] ], - "flex-flow-010.html": [ - "f12024fea065f828890970729cc0df67fc2397e7", + "flexbox_width-overflow.html": [ + "b19d92e83bf828665cd405a7f74d03405f422686", [ null, [ [ - "/css/css-flexbox/flex-flow-007-ref.html", + "/css/reference/blank.html", "==" ] ], {} ] ], - "flex-flow-011.html": [ - "79878a018a8f8d34f6ceff36d1de91c8cabf82b0", + "flexbox_wrap-long.html": [ + "a097cd66be7b09a0cd87837d518b7ee73946e0f1", [ null, [ [ - "/css/css-flexbox/flex-flow-002-ref.html", + "/css/css-flexbox/flexbox_wrap-long-ref.html", "==" ] ], {} ] ], - "flex-flow-012.html": [ - "d0376df188b0791ac783f50f0241cbb39495921f", + "flexbox_wrap-reverse.html": [ + "fb2c9f1a990722eaa2663c256a7ba0dc62148fc8", [ null, [ [ - "/css/css-flexbox/flex-flow-002-ref.html", + "/css/css-flexbox/flexbox_wrap-reverse-ref.html", "==" ] ], {} ] ], - "flex-grow-001.xht": [ - "029090ae798cdbe19f653205b5d480b44528cbd4", + "flexbox_wrap.html": [ + "7927df7c0a9096888aa8f634fb08766f73154f94", [ null, [ [ - "/css/css-flexbox/flex-grow-001-ref.xht", + "/css/css-flexbox/flexbox_wrap-ref.html", "==" ] ], {} ] ], - "flex-grow-002.html": [ - "51cb26675d731f2b8f8bc42adf5cc307054e2b7b", + "flexbox_writing_mode_vertical_lays_out_contents_from_top_to_bottom.html": [ + "ab87de963c3af0c24eb556a2251ae5d7ae1c108b", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/reference/flexbox_writing_mode_vertical_lays_out_contents_from_top_to_bottom-ref.html", "==" ] ], {} ] ], - "flex-grow-003.html": [ - "9e9fd31425985884a110b504ed0c37317a7ecb4f", + "flexible-box-float.html": [ + "11f34fb7461ea82669fcb3f3154eba37287c5869", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/reference/flex-box-float-ref.html", "==" ] ], {} ] ], - "flex-grow-004.html": [ - "84346b51e928aad8b260e840932c498a1d19ff92", + "flexible-order.html": [ + "6f8d5f691a4be328999f375aa4ef940d01021e74", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/reference/flexible-order-ref.html", "==" ] ], {} ] ], - "flex-grow-005.html": [ - "45a76a2b6304fe57fa05b628d9a4a7f74423b506", + "flexitem-stretch-range.html": [ + "43ecc81d52ddfbcf3d42ad2ed10577e851822636", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/reference/flexitem-stretch-range-ref.html", "==" ] ], {} ] ], - "flex-grow-006.html": [ - "2b37a554a1fb94d73082d5f6cf70fe4580422a18", + "gap-001-lr.html": [ + "cb4ea49d76dac017f9846a764eb32f84ddc99127", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/gap-001-lr-ref.html", "==" ] ], {} ] ], - "flex-grow-007.html": [ - "79a8a47db36ee48ecf99697bdab98dc6ca45f4a2", + "gap-001-ltr.html": [ + "ddc5c2f22ad8c777475543a724f302f25418e13c", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/gap-001-ltr-ref.html", "==" ] ], {} ] ], - "flex-grow-008.html": [ - "46f510f125dca8a32a6e8dc99df390352627eab5", + "gap-001-rl.html": [ + "fd8c9d74b1b5fd75d681b7d036b7581af7851397", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/gap-001-rl-ref.html", "==" ] ], {} ] ], - "flex-height-min-content.html": [ - "f719d1f66ae5903c83f112130fa6073d777480ec", + "gap-001-rtl.html": [ + "53e0979ba08cba14e10cbbac773e82617b6c9733", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/gap-001-rtl-ref.html", "==" ] ], {} ] ], - "flex-inline.html": [ - "3248694034b144da121b50699528f53e50ef4cb3", + "gap-002-lr.html": [ + "d6bc3b8edbfd5417e27c689fe37f4002b88d8677", [ null, [ [ - "/css/css-flexbox/reference/flex-inline-ref.html", + "/css/css-flexbox/gap-002-lr-ref.html", "==" ] ], {} ] ], - "flex-item-and-percentage-abspos.html": [ - "76bdff21b8658a34f10e3784951372ad3eb3a879", + "gap-002-ltr.html": [ + "ac40f57c6b7abbd27186b72f1a6a4feed86117ec", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/gap-002-ltr-ref.html", "==" ] ], {} ] ], - "flex-item-contains-size-layout-001.html": [ - "fde2a311268737f7cbf749b92f50ea5e7546c463", + "gap-002-rl.html": [ + "436c4dd5c7b952af92654bd0cca5e0090d087e9f", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/gap-002-rl-ref.html", "==" ] ], {} ] ], - "flex-item-transferred-sizes-padding-border-sizing.html": [ - "fc1a163e01ee1eaca8186619aee3e8d0e25c3155", + "gap-002-rtl.html": [ + "63d3775ec334371c8c2da4feee61bd4eaa34d52a", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-flexbox/gap-002-rtl-ref.html", "==" ] ], {} ] ], - "flex-item-transferred-sizes-padding-content-sizing.html": [ - "68a4e36b96cef9ee138779a846a677c2b92585ac", + "gap-003-lr.html": [ + "b90efe9530ac7017b50bad9d4f04eb2aab5c717b", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-flexbox/gap-003-lr-ref.html", "==" ] ], {} ] ], - "flex-item-vertical-align.html": [ - "be9b66d07f316a01e8c2d46f60533706e0442856", + "gap-003-ltr.html": [ + "c5507d24945ab927189c7b0489818e9ab92a518a", [ null, [ [ - "/css/css-flexbox/reference/flex-item-vertical-align-ref.html", + "/css/css-flexbox/gap-003-ltr-ref.html", "==" ] ], {} ] ], - "flex-item-z-ordering-001.html": [ - "d7344eb93c5e1336cdc42691f16832155ca86855", + "gap-003-rl.html": [ + "234427a5ad5136e11536e42584fe0c7640dbb5d1", [ null, [ [ - "/css/css-flexbox/reference/flex-item-z-ordering-001-ref.html", + "/css/css-flexbox/gap-003-rl-ref.html", "==" ] ], {} ] ], - "flex-lines": { - "multi-line-wrap-reverse-column-reverse.html": [ - "48c18fc5362af607854e03fc79fab9abc408fe36", - [ - null, - [ - [ - "/css/css-flexbox/flex-lines/multi-line-wrap-reverse-column-reverse-ref.html", - "==" - ] - ], - {} - ] - ], - "multi-line-wrap-reverse-row-reverse.html": [ - "52943ae0a42a9f18f6e045c69bd878829dac4778", - [ - null, - [ - [ - "/css/css-flexbox/flex-lines/multi-line-wrap-reverse-row-reverse-ref.html", - "==" - ] - ], - {} - ] - ], - "multi-line-wrap-with-column-reverse.html": [ - "83acae4167d24df3a2ca70fe62b3f036ff5065d5", - [ - null, - [ - [ - "/css/css-flexbox/flex-lines/multi-line-wrap-with-column-reverse-ref.html", - "==" - ] - ], - {} - ] - ], - "multi-line-wrap-with-row-reverse.html": [ - "220ce0a7b205bf31dea69b5a4460b7790a1132dc", - [ - null, - [ - [ - "/css/css-flexbox/flex-lines/multi-line-wrap-with-row-reverse-ref.html", - "==" - ] - ], - {} - ] - ] - }, - "flex-margin-no-collapse.html": [ - "1df2d79426b16b27a1988f9dcebdab7d8b865b0e", + "gap-003-rtl.html": [ + "9064e72ca3cff3e27527e0708559f8eef2d1a5f9", [ null, [ [ - "/css/css-flexbox/reference/flex-margin-no-collapse-ref.html", + "/css/css-flexbox/gap-003-rtl-ref.html", "==" ] ], {} ] ], - "flex-minimum-height-flex-items-001.xht": [ - "3d9562e8aaaab80f7c5bde524b3e205668fdaa1e", + "gap-004-lr.html": [ + "04bb570741ce65f3bac3923294627c1cd43a1092", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/gap-004-lr-ref.html", "==" ] ], {} ] ], - "flex-minimum-height-flex-items-002.xht": [ - "9addd30ca35910357fc369279698ffb21add174d", + "gap-004-ltr.html": [ + "741ec40b84002d2c05bca02c40f574fdde81bd95", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/gap-004-ltr-ref.html", "==" ] ], {} ] ], - "flex-minimum-height-flex-items-003.xht": [ - "3dc59b9659fa881f0acf84c30e99d2b462f1af8d", + "gap-004-rl.html": [ + "6054a5bfe5a0ca73b273900dfff48f664c15fdb1", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/gap-004-rl-ref.html", "==" ] ], {} ] ], - "flex-minimum-height-flex-items-004.xht": [ - "5e72772382ebb3b5fe82110237f652fe76162547", + "gap-004-rtl.html": [ + "181fa58efcd53ddc738655a1e63bc66f9130ebf5", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/gap-004-rtl-ref.html", "==" ] ], {} ] ], - "flex-minimum-height-flex-items-005.xht": [ - "b180d8d47ae3973b84440ed9db1e750fde83977a", + "gap-005-lr.html": [ + "d765094a266f884ad159933180f266400fa5080e", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/gap-005-lr-ref.html", "==" ] ], {} ] ], - "flex-minimum-height-flex-items-006.xht": [ - "1387c6f1d141dacd4fb2abc3bb39f214d074e7d3", + "gap-005-ltr.html": [ + "ead370c4c4a8b29f7e8bb7340e27a42f1140315c", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/gap-005-ltr-ref.html", "==" ] ], {} ] ], - "flex-minimum-height-flex-items-007.xht": [ - "790ecb9141e40ecd583d0541cabb52939d5cfa37", + "gap-005-rl.html": [ + "225c04c970de59de67295af9c9554c228acb4f96", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/gap-005-rl-ref.html", "==" ] ], {} ] ], - "flex-minimum-height-flex-items-008.xht": [ - "ead7a424b374fddb247046d2a36a37a11669baae", + "gap-005-rtl.html": [ + "99d715a282852a532d2a178f93780b910e4c0324", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/gap-005-rtl-ref.html", "==" ] ], {} ] ], - "flex-minimum-height-flex-items-011.xht": [ - "3c86b0d66ec2668982145dad72409e2e345441f5", + "gap-006-lr.html": [ + "7c5ed6e69e418e441bd4cd85f5483ab403fceadf", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/gap-006-lr-ref.html", "==" ] ], {} ] ], - "flex-minimum-height-flex-items-013.html": [ - "a039c4ac5f4e21e3b54476b644ca9129f8e5f046", + "gap-006-ltr.html": [ + "d2fd6321db7f3a0dad2d69796ae4ce8f82e240f9", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/gap-006-ltr-ref.html", "==" ] ], {} ] ], - "flex-minimum-height-flex-items-014.html": [ - "b130ff5561f721d69058902f9c5081b3f6471ace", + "gap-006-rl.html": [ + "01fef78c9c81bb290e44c326745821f409d2add0", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/gap-006-rl-ref.html", "==" ] ], {} ] ], - "flex-minimum-height-flex-items-015.html": [ - "81fd54915f52177649ff0e0d4d1a5fb657ddccfa", + "gap-006-rtl.html": [ + "0bfa0785994340da2dd986d2d5a4914fea8090ea", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/gap-006-rtl-ref.html", "==" ] ], {} ] ], - "flex-minimum-height-flex-items-016.html": [ - "a5dc87633e7a8a32e8ec1b62c877244f72357339", + "gap-007-lr.html": [ + "9d0a3717816f1850c4cf0a666fe563c9309c7b33", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/gap-007-lr-ref.html", "==" ] ], {} ] ], - "flex-minimum-height-flex-items-017.html": [ - "b5e194219ec9fb9566c0ed63b3def51661eb6866", + "gap-007-ltr.html": [ + "6b24fc44eea9e8cca2d62e550d45ebe395b050db", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/gap-007-ltr-ref.html", "==" ] ], {} ] ], - "flex-minimum-height-flex-items-018.html": [ - "983cac476e83ae97355cc6ad3fc55c6f732a6bf2", + "gap-007-rl.html": [ + "1461416abe9557d55d5eed623b314f0260dc4ddf", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/gap-007-rl-ref.html", "==" ] ], {} ] ], - "flex-minimum-height-flex-items-019.html": [ - "3572a6cc88e50ade3a8f7faff5a343bc84d9f581", + "gap-007-rtl.html": [ + "cff3440a760bbd45b32c87017f7c95099bf9ef1c", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/gap-007-rtl-ref.html", "==" ] ], {} ] ], - "flex-minimum-height-flex-items-020.html": [ - "dad3b6479685107439fb0bf37ebd21538a7abc6e", + "gap-008-ltr.html": [ + "88a83cb4264cb139eaff5712aaa3a09efeefde87", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-flexbox/gap-008-ltr-ref.html", "==" ] ], {} ] ], - "flex-minimum-height-flex-items-021.html": [ - "ed8d1d425180615aa0f5193f891c1c313438f79c", + "gap-009-ltr.html": [ + "86355f0a4583cb106c0114b57962ad225cb5b0e0", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-flexbox/gap-009-ltr-ref.html", "==" ] ], {} ] ], - "flex-minimum-height-flex-items-022.html": [ - "943ac525fb570adcf62d7ff0edfc88cdd5727a85", + "gap-010-ltr.html": [ + "6b3465838de83ac35e95bdd99a5de21bbd3322c3", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/gap-010-ltr-ref.html", "==" ] ], {} ] ], - "flex-minimum-height-flex-items-023.html": [ - "576d9bf7d4b58a2c086c75e247784d9258bb2dff", + "gap-011.html": [ + "d1d579e30b8779634d94d4bfc5cfdcfd6200e9f6", [ - "css/css-flexbox/flex-minimum-height-flex-items-023.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "flex-minimum-height-flex-items-024.html": [ - "37052f7ec345e8e420a805b1bcada3b5a09211d5", + "gap-012.html": [ + "19b39b9a783d0aef9db8a0bef2c04c489a62bf21", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "flex-minimum-height-flex-items-026.html": [ - "9f46c953c4a8396c7dcb58012b16235c0b9e5377", + "gap-013.html": [ + "30e4c43e7193525ab6c7ea88b472d6b05b8204da", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "flex-minimum-height-flex-items-027.html": [ - "052ff6a5bd89c56b51d76a1782ac87d1a9d1e2c3", + "gap-014.html": [ + "c600478c73cd6436ddfd6e025612f1b74d401699", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "flex-minimum-height-flex-items-028.html": [ - "45cf76837d345b8e84daec72462f8ae8c42f19b5", + "gap-015.html": [ + "e54598e2000f727b0b5bf6091bc002b635779d4e", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "flex-minimum-height-flex-items-029.html": [ - "62b77b92fc91f206d96b6208d65bfb3bd524088f", + "gap-016.html": [ + "a54417725678f99e77773805dc8a70b86eb77c9e", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "flex-minimum-height-flex-items-030.html": [ - "a3dc56e59e433e64a6f024c5d9ea8264cb658210", + "gap-019.html": [ + "d55f86e5d2436eaa057ce237e58b9014f8686568", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "flex-minimum-width-flex-items-001.xht": [ - "cd18483ba414160c46e30bc282dec0c2fcd2f418", + "gap-020.html": [ + "2f0c02dfc1983583b1092e7ada827d499e632ef5", [ null, [ @@ -174857,8 +174885,8 @@ {} ] ], - "flex-minimum-width-flex-items-002.xht": [ - "344ff4def75d70903729f6bbe92711b6a38fc792", + "gap-021.html": [ + "5f37e94136f2ebc32b3dc4fcebac9efd9815d6d8", [ null, [ @@ -174870,8 +174898,8 @@ {} ] ], - "flex-minimum-width-flex-items-003.xht": [ - "cb3d053f6d34d9578a708915e523555282e3792c", + "grandchild-span-height.html": [ + "c087edb68d48036f5b3a45114a62d9db03a5a86e", [ null, [ @@ -174883,34 +174911,34 @@ {} ] ], - "flex-minimum-width-flex-items-004.xht": [ - "987137845ff8282ce37529edf60f02e2e0abdf37", + "grid-flex-item-001.html": [ + "67ee0fb001d7b136f026190bfee0940aeb4ff849", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "flex-minimum-width-flex-items-005.xht": [ - "486b6959974c251331dd5c75b1b834fd301ecd00", + "grid-flex-item-002.html": [ + "41396992057e146cd48dd9a885e65b67ee60d01e", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "flex-minimum-width-flex-items-006.xht": [ - "1b06ecab7d2b8a30450fcc4fce0d29344941bf20", + "grid-flex-item-003.html": [ + "1996370f03caa8ab3c9bdaed4c451fd2301b5514", [ null, [ @@ -174922,8 +174950,8 @@ {} ] ], - "flex-minimum-width-flex-items-007.xht": [ - "158c573825fe7e30d985ae2c480f190f825cfded", + "grid-flex-item-004.html": [ + "885fb8c1952cf0767653f646c3e1ea4c92815769", [ null, [ @@ -174935,21 +174963,21 @@ {} ] ], - "flex-minimum-width-flex-items-008.xht": [ - "3daa38a450d2044491d73011d3fe3a676cf5ffb0", + "grid-flex-item-005.html": [ + "95c57d1429e5de2a138571435134152c2c33561b", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "flex-minimum-width-flex-items-009.html": [ - "1700c4a494c89a6c7f7f2b123f0d673d498cc5c5", + "grid-flex-item-006.html": [ + "b5d49c4824c794513c823a9c949789f565476cd0", [ null, [ @@ -174961,8 +174989,8 @@ {} ] ], - "flex-minimum-width-flex-items-010.html": [ - "8845b4896e58d47dac4fc8b25b9fc36b8d594521", + "grid-flex-item-007.html": [ + "bdea17d0692981c4742448f1c429e90236418858", [ null, [ @@ -174974,21 +175002,21 @@ {} ] ], - "flex-minimum-width-flex-items-011.html": [ - "0eb6c5fa49c4d5d4ac331a8ba6f194f53d717451", + "image-items-flake-001.html": [ + "90319f1ad83d26d414d8ddcd4a9ab59042a4bd62", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "flex-minimum-width-flex-items-012.html": [ - "2ce9129eb1100bcbb94b5849d734af0bdd3c8ee1", + "image-nested-within-definite-column-flexbox.html": [ + "7bfeb4de6539f7250b66bd06669c643fdf0f187f", [ null, [ @@ -175000,34 +175028,335 @@ {} ] ], - "flex-minimum-width-flex-items-013.html": [ - "52d334d5197c8a7a5fc3c1bdeb75495dc845f78f", + "inline-flex-min-content-height.html": [ + "b84b9afc0b67b83d3d3e2abb73c9b7e22aeb3cbe", [ - "css/css-flexbox/flex-minimum-width-flex-items-013.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "flex-minimum-width-flex-items-015.html": [ - "d4020fe75e3ee1e52b07576132f8db2f880ebfcd", + "intrinsic-size": { + "auto-min-size-001.html": [ + "a026091aa793af8b664ef4f1c222c9d8d566848c", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "col-wrap-001.html": [ + "45da5123896a7b6ebd430b1ea0b67f1965771ea7", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "col-wrap-002.html": [ + "0e61cf7846213a7237e574a248965fcd40695889", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "col-wrap-003.html": [ + "518bf9f65844e00998b7154f074b14d93e71df40", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "col-wrap-006.html": [ + "52560057c8327cabd99fa7c7813ec630db42e7ec", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "col-wrap-007.html": [ + "7f50f504569fa7e0a40e95fb881970f8145a6489", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "col-wrap-008.html": [ + "5edde9495d1382e774cd295cabf81766b0b41a7b", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "col-wrap-009.html": [ + "62514dbcffea07f87bf01930dd45e00d2e6a6af1", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "col-wrap-011.html": [ + "9970d43d0cdc58e5b12f63bd0b397e5dac12fa75", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "col-wrap-012.html": [ + "a46ceea2ec495123ff05d0ffcbe5b2f5d5067a4d", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "col-wrap-013.html": [ + "d8eab3f1331d90611c4dc93acfd4fbb93470e7e0", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "col-wrap-014.html": [ + "5861d829b5822e236de2288ca7e0f3c1a3716cec", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "col-wrap-015.html": [ + "23b762f36a9b2bdbd74b740e67c95c68ab626b07", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "col-wrap-016.html": [ + "a013bbd3566b806e6038d619d0cb80e11b97a358", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "col-wrap-017.html": [ + "c7a64643bf1d4b3482334beaf2ca70c6dd9e7435", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "col-wrap-020.html": [ + "ffbfa711c31700f2825a58ebcaf83809f7254b0e", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "row-001.html": [ + "d6f92804ac14ed9eac080ca103519dd44c788cb7", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "row-002.html": [ + "1756ee00378bc4fd22529bfbd0ecb8c06e8009e5", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "row-003.html": [ + "dda650fa668c58d10ab767a5b39ced3a384ed176", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "row-004.html": [ + "692457a093206606cbad6bbebb2cc49a33231222", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "row-006.html": [ + "c7b6171cf4e3174913cee9d73bd6d702fd8459f2", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "row-007.html": [ + "b2f4f0ab19eff34321bc176bc88924dbbd2fcec2", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "row-wrap-002.tentative.html": [ + "7ed61fa8bffa9541de2c9d1c9bcbe902bf5eb010", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ] + }, + "item-with-max-height-and-scrollbar.html": [ + "167417a2563eaf54650f8347584e7e5b53d13903", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/reference/item-with-max-height-and-scrollbar-ref.html", "==" ] ], {} ] ], - "flex-minimum-width-flex-items-016.html": [ - "a3f4eb4a85cebf937e5568f7431358af71e388e3", + "item-with-table-with-infinite-max-intrinsic-width.html": [ + "f475db5bcffd1449be231da943cd1511b15e20b1", [ null, [ @@ -175039,6648 +175368,6811 @@ {} ] ], - "flex-order.html": [ - "be24b2817e232b7ad7fc936b7b22787591d3d9db", + "justify-content-001.htm": [ + "75ba056bf3615ecc38c8cef162f70a2ecd51ac41", [ null, [ [ - "/css/css-flexbox/flex-order-ref.html", + "/css/css-flexbox/reference/justify-content-001-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 1, + 1 + ], + [ + 0, + 5841 + ] + ] + ] + ] + } ] ], - "flex-shrink-001.html": [ - "b4e4851690b8e155496531e66943f9b0e6a37b24", + "justify-content-002.htm": [ + "e3c671a53faf491f8015551594fe055e549b2d61", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/reference/justify-content-001-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 1 + ], + [ + 0, + 6578 + ] + ] + ] + ] + } ] ], - "flex-shrink-002.html": [ - "a65d6f2d8e8839c0614a48b4bc7d788601d77698", + "justify-content-003.htm": [ + "985ec6b469de59be5f55b8776273e8fee7effe3b", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/reference/justify-content-001-ref.html", "==" ] ], {} ] ], - "flex-shrink-003.html": [ - "dc50d88c60b4414ef5f879810f0948b23438c725", + "justify-content-004.htm": [ + "88dcfe8c026bd2fcef003f644c8b12a097b0331d", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/reference/justify-content-001-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 1 + ], + [ + 0, + 5838 + ] + ] + ] + ] + } ] ], - "flex-shrink-004.html": [ - "6d4e4a3e06063dd10c0d85e70423e400fcbdc9ba", + "justify-content-005.htm": [ + "7203d7f1d17ce9b7de7f8abd26f2bbb3686c358f", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/reference/justify-content-001-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 1, + 1 + ], + [ + 0, + 5832 + ] + ] + ] + ] + } ] ], - "flex-shrink-005.html": [ - "464ac85f7a077bcfcabefe3145f5e07e1fe36e6a", + "layout-algorithm_algo-cross-line-001.html": [ + "7fcc96f3c0c07068a00ed6a3a8007d44cca021fb", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/reference/layout-algorithm_algo-cross-line-001-ref.html", "==" ] ], {} ] ], - "flex-shrink-006.html": [ - "5a80a7ccead0018e05ff1dc668e1b9ce04f2956b", + "layout-algorithm_algo-cross-line-002.html": [ + "1d860b44003fa9e2a765e37fdff8a8afbf78a27e", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/reference/layout-algorithm_algo-cross-line-002-ref.html", "==" ] ], {} ] ], - "flex-shrink-007.html": [ - "80f11abf51864e37cb6448c476f47cac5ce3f91d", + "min-size-auto-overflow-clip.html": [ + "ec3bc5f5932a2c47796063cafff5162dc4f01284", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/min-size-auto-overflow-clip-ref.html", "==" ] ], {} ] ], - "flex-shrink-008.html": [ - "a76c73cd814690f07c3187495d6b91ade17f6d3a", + "multiline-column-max-height.html": [ + "5a165233f855d10de870d110a2d9ed8c0abc147b", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/reference/multiline-column-max-height-ref.html", "==" ] ], {} ] ], - "flex-vertical-align-effect.html": [ - "5ce535b513674d978008806988f8fbdb9eef816e", + "multiline-reverse-wrap-baseline.html": [ + "310ad28232c5b9af94c8b00ae4b2f4399d62a284", [ null, [ [ - "/css/css-flexbox/reference/flex-vertical-align-effect.html", + "/css/css-flexbox/reference/multiline-reverse-wrap-baseline-ref.html", "==" ] ], {} ] ], - "flex-wrap-002.html": [ - "d2e07afb45f88611f149a4acfa38928a50571e02", + "multiline-shrink-to-fit.html": [ + "e2a65a501ff5cd39113ccfa679ae95faeeb2fd7b", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/reference/multiline-shrink-to-fit-ref.html", "==" ] ], {} ] ], - "flex-wrap-003.html": [ - "b1a6619363aba8fb0b01177c596f4fdbf263fc37", + "negative-margins-001.html": [ + "cd14ce0d4ede6f950ea6fd92176cfea662e45170", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/reference/negative-margins-001-ref.html", "==" ] ], {} ] ], - "flex-wrap-004.html": [ - "679f62ae3e6659fa5627a3e2fb0276bcf6a13420", + "nested-flex-image-loading-invalidates-intrinsic-sizes.html": [ + "246740960c0b9891b8f22bd76f9edd8b6cbf3c62", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "flex-wrap-005.html": [ - "fb897f21c67dcb630c5eac346687b78f8f5e244a", + "nested-orthogonal-flexbox-relayout.html": [ + "ef158c6a4884b8ee2840bafe27e605e618aa8be5", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/reference/nested-orthogonal-flexbox-relayout-ref.html", "==" ] ], {} ] ], - "flex-wrap-006.html": [ - "e616412c2b2f1bd35d9f86800551f2a2065a9265", + "order": { + "order-abs-children-painting-order-different-container.html": [ + "202581dd1d1b668722182aa22744b092c064cb95", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "order-abs-children-painting-order.html": [ + "248f380e5aebb651069116cb32722389a511d962", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "order-with-column-reverse.html": [ + "5083d6843649bbbb2bf9d417ae4022042c87e0aa", + [ + null, + [ + [ + "/css/css-flexbox/order/order-with-column-reverse-ref.html", + "==" + ] + ], + {} + ] + ], + "order-with-row-reverse.html": [ + "c36d4831b940dde2dd06bccde26311171a1bb57d", + [ + null, + [ + [ + "/css/css-flexbox/order/order-with-row-reverse-ref.html", + "==" + ] + ], + {} + ] + ] + }, + "order-painting.html": [ + "68e0fd6aac3c629eeb3252971fa5fea49c46b489", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-flexbox/reference/order-painting-ref.html", "==" ] ], {} ] ], - "flexbox-align-items-center-nested-001.html": [ - "b6e2fdff0aaffc2df8187389183cd170bf6fb301", + "ortho-table-item-001.html": [ + "dca42e559f296def8d5109f4cc688527d19d1be3", [ null, [ [ - "/css/css-flexbox/flexbox-align-items-center-nested-001-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "flexbox-align-self-baseline-horiz-001a.xhtml": [ - "0460f4162f5f424b4693c19cab688f5b5db16fa3", + "overflow-area-001.html": [ + "10685c6e84a1683f75e6822b66d9e02645973ccc", [ null, [ [ - "/css/css-flexbox/flexbox-align-self-baseline-horiz-001-ref.xhtml", + "/css/css-flexbox/reference/overflow-area-001-ref.html", "==" ] ], {} ] ], - "flexbox-align-self-baseline-horiz-001b.xhtml": [ - "3a656e41e94041274f0e763a1b11789e886da419", + "overflow-area-002.html": [ + "1287270f1ef645fb4e04a67fb90b368d03b3f208", [ null, [ [ - "/css/css-flexbox/flexbox-align-self-baseline-horiz-001-ref.xhtml", + "/css/css-flexbox/reference/overflow-area-002-ref.html", "==" ] ], {} ] ], - "flexbox-align-self-baseline-horiz-002.xhtml": [ - "8aa364ec51a4ea9dd1232a7fb0519cdbc225ccc8", + "overflow-area-003.html": [ + "ff86dea30f10bf9e8411871b98a249500d74832b", [ null, [ [ - "/css/css-flexbox/flexbox-align-self-baseline-horiz-002-ref.xhtml", + "/css/css-flexbox/reference/overflow-area-003-ref.html", "==" ] ], {} ] ], - "flexbox-align-self-baseline-horiz-003.xhtml": [ - "0b8e8499c3ff10498eed8bf6a9e791472e4c43d4", + "overflow-auto-001.html": [ + "08c1bdbafabad98e7d823c47246f455cc0861fef", [ null, [ [ - "/css/css-flexbox/flexbox-align-self-baseline-horiz-003-ref.xhtml", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "flexbox-align-self-baseline-horiz-004.xhtml": [ - "14fbf4bc6e7c674ccb8b2ff4b41e85e8fcb7e6b2", + "overflow-auto-005.html": [ + "65b6d73e9a0fb3d939be2968b41749e551791f3f", [ null, [ [ - "/css/css-flexbox/flexbox-align-self-baseline-horiz-004-ref.xhtml", + "/css/css-flexbox/reference/overflow-auto-005-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 3 + ], + [ + 0, + 3 + ] + ] + ] + ] + } ] ], - "flexbox-align-self-baseline-horiz-005.xhtml": [ - "cfe0d1b02b46d462a48d0e629c7fa2cf8ef60086", + "overflow-auto-007.html": [ + "1bb6230c3da33340605a31afb178236598472b60", [ null, [ [ - "/css/css-flexbox/flexbox-align-self-baseline-horiz-005-ref.xhtml", + "/css/css-flexbox/reference/overflow-auto-007-ref.html", "==" ] ], {} ] ], - "flexbox-align-self-baseline-horiz-006.xhtml": [ - "417f966587d30e2308a52f8880b503dddd970c41", + "overflow-top-left.html": [ + "682199815e03d214941a24b6a167d22ee852ced2", [ null, [ [ - "/css/css-flexbox/flexbox-align-self-baseline-horiz-006-ref.xhtml", + "/css/css-flexbox/overflow-top-left-ref.html", "==" ] ], {} ] ], - "flexbox-align-self-baseline-horiz-007.xhtml": [ - "50d74f5ebf645f078682f217eb514e59ebebab42", + "padding-overflow.html": [ + "163be06a91758492002a8505c346103cf0a0b4cc", [ null, [ [ - "/css/css-flexbox/flexbox-align-self-baseline-horiz-007-ref.xhtml", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "flexbox-align-self-baseline-horiz-008.xhtml": [ - "00bc4d9fce8033483de8f6e9172a166842a8ccf0", + "percentage-descendant-of-anonymous-flex-item.html": [ + "592b5212ea6e5bd787aa9aab0d7f1c16c78bc134", [ null, [ [ - "/css/css-flexbox/flexbox-align-self-baseline-horiz-008-ref.xhtml", + "/css/css-flexbox/reference/percentage-descendant-of-anonymous-flex-item-ref.html", "==" ] ], {} ] ], - "flexbox-align-self-horiz-001-block.xhtml": [ - "365354506f86a16a2f2313296d5d99fa284400ab", + "percentage-heights-002.html": [ + "cfdf5be2ff536fad657d762cc20577a168cbec01", [ null, [ [ - "/css/css-flexbox/flexbox-align-self-horiz-001-ref.xhtml", + "/css/css-flexbox/percentage-heights-002-ref.html", "==" ] ], {} ] ], - "flexbox-align-self-horiz-001-table.xhtml": [ - "c168c822e998771c82c87fe82975f2743ba00aa3", + "percentage-heights-004.html": [ + "3fb0806b63d6b634129d1ba3e804042a762e4d29", [ - "css/css-flexbox/flexbox-align-self-horiz-001-table.xhtml", + null, [ [ - "/css/css-flexbox/flexbox-align-self-horiz-001-ref.xhtml", + "/css/css-flexbox/percentage-heights-004-ref.html", "==" ] ], {} ] ], - "flexbox-align-self-horiz-002.xhtml": [ - "d1273d1f55b8284821a8ed47b7cfc617670f8e52", + "percentage-heights-005.html": [ + "5f3cfeec7e026ed3100c6af37ccc12ad9a5c5258", [ null, [ [ - "/css/css-flexbox/flexbox-align-self-horiz-002-ref.xhtml", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "flexbox-align-self-horiz-003.xhtml": [ - "4414d0a0a071ddad0f342a9f25efcc5a1b944132", + "percentage-heights-006.html": [ + "2f0b4a51e1b3ce7698420fe85be130f955d83537", [ null, [ [ - "/css/css-flexbox/flexbox-align-self-horiz-003-ref.xhtml", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "flexbox-align-self-horiz-004.xhtml": [ - "b7bdf396a077cece36dc8c6f79b11ad680db9dda", + "percentage-heights-007.html": [ + "c885245bc367bbfb7e14889af9ad63690c3a3d3e", [ null, [ [ - "/css/css-flexbox/flexbox-align-self-horiz-004-ref.xhtml", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "flexbox-align-self-horiz-005.xhtml": [ - "cff89d3251668a12e2c74a1dcc82457c5f49d8c0", + "percentage-heights-008.html": [ + "3fc44867eea71089d492c465dd0125cf82a816ee", [ null, [ [ - "/css/css-flexbox/flexbox-align-self-horiz-005-ref.xhtml", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "flexbox-align-self-stretch-vert-001.html": [ - "578dff9cae91d6c71d3a2a28fb186b8610ec78aa", + "percentage-heights-009.html": [ + "b3de59562bc1ff6b78d9c7b29a5836d47bf8a81b", [ null, [ [ - "/css/css-flexbox/flexbox-align-self-stretch-vert-001-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "flexbox-align-self-stretch-vert-002.html": [ - "c2b90301193160fcc95aa665768b7992265ce774", + "percentage-heights-010.html": [ + "003cc2487ae56d0172c9253be663b5c3dfdf83ff", [ null, [ [ - "/css/css-flexbox/flexbox-align-self-stretch-vert-002-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "flexbox-align-self-vert-001.xhtml": [ - "c439ff0f6ca724276a88fb55d1d96dfdc5178b07", + "percentage-heights-014.html": [ + "8e9ce201a649a8f6b9b11379e4186012d21108c2", [ - "css/css-flexbox/flexbox-align-self-vert-001.xhtml", + null, [ [ - "/css/css-flexbox/flexbox-align-self-vert-001-ref.xhtml", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "flexbox-align-self-vert-002.xhtml": [ - "2ff89bdf5f52c8e040dd665d53888c0566cafc5d", + "percentage-heights-015.html": [ + "bdeb7c8d0cbb0219fa190bc2c40fc24585ab8f45", [ null, [ [ - "/css/css-flexbox/flexbox-align-self-vert-002-ref.xhtml", + "/css/css-flexbox/percentage-heights-015-ref.html", "==" ] ], {} ] ], - "flexbox-align-self-vert-003.xhtml": [ - "721ce548563fddbefd8acc6f2d47fd2c031a2f5b", + "percentage-heights-016.html": [ + "2090257eb54dad6aa1e67f462668de656e0f1db0", [ null, [ [ - "/css/css-flexbox/flexbox-align-self-vert-003-ref.xhtml", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 58 - ], - [ - 0, - 33 - ] - ] - ] - ] - } + {} ] ], - "flexbox-align-self-vert-004.xhtml": [ - "ff98bafd6000e8c73a15e62e6e244039d8173036", + "percentage-heights-017.html": [ + "484a6a219511c15d2bdc46debf19f077fc3d82c3", [ null, [ [ - "/css/css-flexbox/flexbox-align-self-vert-004-ref.xhtml", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 58 - ], - [ - 0, - 33 - ] - ] - ] - ] - } + {} ] ], - "flexbox-align-self-vert-rtl-001.xhtml": [ - "a32ed619c88656b30d1387b9ec45edbbccc56574", + "percentage-heights-018.html": [ + "4cdcd5d3f12ddfc6eb74e69c6c24b9e4a4b4f611", [ null, [ [ - "/css/css-flexbox/flexbox-align-self-vert-rtl-001-ref.xhtml", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 60 - ], - [ - 0, - 101 - ] - ] - ] - ] - } + {} ] ], - "flexbox-align-self-vert-rtl-002.xhtml": [ - "a3a81e25d10a86d8a729ecec36afb1d0e0bf578d", + "percentage-heights-019.html": [ + "4cc714c5cdcb555ff446005ff4c617d3e367f9ce", [ null, [ [ - "/css/css-flexbox/flexbox-align-self-vert-rtl-002-ref.xhtml", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "flexbox-align-self-vert-rtl-003.xhtml": [ - "9a3bfccb35abbcda22341a143510344ba88c2437", + "percentage-max-height-001.html": [ + "8e6dd227a038c8f237c769dad8e92976fe9ca832", [ null, [ [ - "/css/css-flexbox/flexbox-align-self-vert-rtl-003-ref.xhtml", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "flexbox-align-self-vert-rtl-004.xhtml": [ - "4f4f49afda37f66b50e6b502bf0244540d1bf84e", + "percentage-max-height-002.html": [ + "f674ec57d78521d5604afa93bbfe18f80a07dcec", [ null, [ [ - "/css/css-flexbox/flexbox-align-self-vert-rtl-004-ref.xhtml", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "flexbox-align-self-vert-rtl-005.xhtml": [ - "420c334c841efb113d7e769deb3062097ff54307", + "percentage-max-height-003.html": [ + "eaab8a35e6fc31ee2144015c04adf12058768cb1", [ null, [ [ - "/css/css-flexbox/flexbox-align-self-vert-rtl-005-ref.xhtml", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "flexbox-anonymous-items-001.html": [ - "0c85c46d55adf19f16b1196cf19cdb4c6c23d3ca", + "percentage-max-height-004.html": [ + "3d155e3579ed760a1a5cfaf81a967d045528798e", [ null, [ [ - "/css/css-flexbox/flexbox-anonymous-items-001-ref.html", + "/css/css-flexbox/percentage-max-height-004-ref.html", "==" ] ], {} ] ], - "flexbox-baseline-align-self-baseline-horiz-001.html": [ - "a7308f74876ee406e41b20824c0acf244599400f", + "percentage-padding-002.html": [ + "9eaaff013ef26f557f5f883fea76b81b6031769f", [ null, [ [ - "/css/css-flexbox/flexbox-baseline-align-self-baseline-horiz-001-ref.html", + "/css/css-flexbox/percentage-padding-002-ref.html", "==" ] ], {} ] ], - "flexbox-baseline-align-self-baseline-vert-001.html": [ - "97963fb41e605cbb42c05d7d3e217e794f82c9ab", + "percentage-padding-003.html": [ + "ee84f1570efb877843384b923e8a28ee58537f70", [ null, [ [ - "/css/css-flexbox/flexbox-baseline-align-self-baseline-vert-001-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "flexbox-baseline-empty-001a.html": [ - "50334acc8bab8e734a59934cacdf454f8d8c0f57", + "percentage-padding-004.html": [ + "ca96e546cc86e6a0c0db1a9884653cdecfab7409", [ null, [ [ - "/css/css-flexbox/flexbox-baseline-empty-001-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "flexbox-baseline-empty-001b.html": [ - "2195df4f543cc6d446cdbdafbffa2b496947a87f", + "percentage-size-subitems-001.html": [ + "70f3953052a3a770c6cd15ee169607a00fc452b0", [ null, [ [ - "/css/css-flexbox/flexbox-baseline-empty-001-ref.html", + "/css/css-flexbox/reference/percentage-size-subitems-001-ref.html", "==" ] ], {} ] ], - "flexbox-baseline-multi-item-horiz-001a.html": [ - "94bbdec20214e4cd346a151610faa42723deca41", + "percentage-widths-001.html": [ + "b1b5acff629ec900ebed5798fa471aafbbf8dceb", [ null, [ [ - "/css/css-flexbox/flexbox-baseline-multi-item-horiz-001-ref.html", + "/css/css-flexbox/percentage-widths-001-ref.html", "==" ] ], {} ] ], - "flexbox-baseline-multi-item-horiz-001b.html": [ - "d40a986405bd47fb210b139d3e9c814f6ded093d", + "position-absolute-scrollbar-freeze.html": [ + "ac510f11e9160b1ed646047ed5aa44d2ebaa8a6f", [ null, [ [ - "/css/css-flexbox/flexbox-baseline-multi-item-horiz-001-ref.html", + "/css/css-flexbox/position-absolute-scrollbar-freeze-ref.html", "==" ] ], {} ] ], - "flexbox-baseline-multi-item-vert-001a.html": [ - "06c2f7063e88540bc57442c6be6b0726a56e57a6", + "position-fixed-001.html": [ + "a3de19d6d9df95a505c547e48dea3de82af44de5", [ null, [ [ - "/css/css-flexbox/flexbox-baseline-multi-item-vert-001-ref.html", + "/css/css-flexbox/reference/position-fixed-001-ref.html", "==" ] ], {} ] ], - "flexbox-baseline-multi-item-vert-001b.html": [ - "6928bba97fb642326d2c4526ecec3054df48b878", + "position-relative-percentage-top-002.html": [ + "698f310e90268e74193313aba2e5966914cf8457", [ null, [ [ - "/css/css-flexbox/flexbox-baseline-multi-item-vert-001-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "flexbox-baseline-multi-line-horiz-001.html": [ - "0faf41bb3c9cf8f6e6fa6923b50f1adc565fff55", + "position-relative-percentage-top-003.html": [ + "0570b246af1ce71f3669ff758d7ee942f48b2c5f", [ null, [ [ - "/css/css-flexbox/flexbox-baseline-multi-line-horiz-001-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "flexbox-baseline-multi-line-horiz-002.html": [ - "a58a7ec5f5e13d9348e08c86b4b7566cce1118fe", + "remove-wrapped-001.html": [ + "fd38ccce27acd0cdf89a96473dbc65b963870925", [ null, [ [ - "/css/css-flexbox/flexbox-baseline-multi-line-horiz-002-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "flexbox-baseline-multi-line-horiz-003.html": [ - "ef7d787beb6ad8386a1e4078ad1a41bb5fc31592", + "remove-wrapped-002.html": [ + "a8048b84a3bafe0e2f65b6990e2e4e68922b4222", [ null, [ [ - "/css/css-flexbox/flexbox-baseline-multi-line-horiz-003-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "flexbox-baseline-multi-line-horiz-004.html": [ - "21db212f99274d9bde5f69f080b76da64e0360f2", + "scrollbars-auto.html": [ + "ed1ffb8d93aec7c95eb3c9bbdbb6bd31ae402593", [ null, [ [ - "/css/css-flexbox/flexbox-baseline-multi-line-horiz-004-ref.html", + "/css/css-flexbox/scrollbars-auto-ref.html", "==" ] ], {} ] ], - "flexbox-baseline-multi-line-vert-001.html": [ - "d2b510ade630e2f33f6a3e4de50f956c9995ee7a", + "scrollbars-no-margin.html": [ + "092e4c5ea9ff6b47440f2556482f978b88f1a82e", [ null, [ [ - "/css/css-flexbox/flexbox-baseline-multi-line-vert-001-ref.html", + "/css/css-flexbox/scrollbars-no-margin-ref.html", "==" ] ], {} ] ], - "flexbox-baseline-multi-line-vert-002.html": [ - "062d808d897b5421954f9148ec55171d2b00ddf3", + "scrollbars.html": [ + "0eca05bfc63f9522e6d624c35469ba69e7410968", [ null, [ [ - "/css/css-flexbox/flexbox-baseline-multi-line-vert-002-ref.html", + "/css/css-flexbox/scrollbars-ref.html", "==" ] ], {} ] ], - "flexbox-baseline-nested-001.html": [ - "57999e57ced9416dfbb12dae5dc5ae4e56ea3cfb", + "select-element-zero-height-001.html": [ + "9e07c8019dce59b3e0d7ceb60d97f39556d0354f", [ - "css/css-flexbox/flexbox-baseline-nested-001.html", + null, [ [ - "/css/css-flexbox/flexbox-baseline-nested-001-ref.html", + "/css/css-flexbox/select-element-zero-height-001-ref.html", "==" ] ], {} ] ], - "flexbox-baseline-single-item-001a.html": [ - "b9df6c23f0e7e03e5670006699fd6e2c0003e81a", + "select-element-zero-height-002.html": [ + "4ca56cc6e9d5b27bd1ac399bc6ed4dfe455a652b", [ null, [ [ - "/css/css-flexbox/flexbox-baseline-single-item-001-ref.html", + "/css/css-flexbox/select-element-zero-height-002-ref.html", "==" ] ], {} ] ], - "flexbox-baseline-single-item-001b.html": [ - "523045894bbed0414922502f2d9fd3f2b666382e", + "stretch-flex-item-checkbox-input.html": [ + "896905d5e988eb574e69c40e8b93feec689c2485", [ null, [ [ - "/css/css-flexbox/flexbox-baseline-single-item-001-ref.html", + "/css/css-flexbox/stretch-flex-item-checkbox-input-ref.html", "==" ] ], {} ] ], - "flexbox-basic-block-horiz-001.xhtml": [ - "1345263df3971064483dbfbdc3bef29a76f06bcd", + "stretch-flex-item-radio-input.html": [ + "bf8a08e703f2df516b45b32552e0ce2141039f30", [ null, [ [ - "/css/css-flexbox/flexbox-basic-block-horiz-001-ref.xhtml", + "/css/css-flexbox/stretch-flex-item-radio-input-ref.html", "==" ] ], {} ] ], - "flexbox-basic-block-horiz-001v.xhtml": [ - "f1dfdfdb86ca172056183534cf7c1d906b4c5d6f", + "stretch-input-in-column.html": [ + "4136c45d17a6bf946a4f788d95458c04ac6c6a6d", [ null, [ [ - "/css/css-flexbox/flexbox-basic-block-horiz-001-ref.xhtml", + "/css/css-flexbox/reference/stretch-input-in-column-ref.html", "==" ] ], {} ] ], - "flexbox-basic-block-vert-001.xhtml": [ - "92c32c828caab079e80226fbcf9dae88589f3357", + "stretch-obeys-min-max-001.html": [ + "597b0f00a4c595c7f5af80840766882b0689102b", [ null, [ [ - "/css/css-flexbox/flexbox-basic-block-vert-001-ref.xhtml", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "flexbox-basic-block-vert-001v.xhtml": [ - "da943dfc56f32501f743a0f43fc40416b8a054c4", + "stretch-obeys-min-max-002.html": [ + "d1e24cc7a7adfab9e10fcb174ca6f895a985e422", [ null, [ [ - "/css/css-flexbox/flexbox-basic-block-vert-001-ref.xhtml", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "flexbox-basic-canvas-horiz-001.xhtml": [ - "6d3629e3267bfc74cf42eff2f6b7b53a6c0807d5", + "stretch-obeys-min-max-003.html": [ + "77fd6955bda6b4ce898157f02d0591b052312611", [ null, [ [ - "/css/css-flexbox/flexbox-basic-canvas-horiz-001-ref.xhtml", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "flexbox-basic-canvas-horiz-001v.xhtml": [ - "ad623d77f7ffc72cf69d97b0c717db70a33cea38", + "stretching-orthogonal-flows.html": [ + "acaa787faf657b76a5b213fb9203088d5d28f4c4", [ null, [ [ - "/css/css-flexbox/flexbox-basic-canvas-horiz-001-ref.xhtml", + "/css/css-flexbox/reference/stretching-orthogonal-flows-ref.html", "==" ] ], {} ] ], - "flexbox-basic-canvas-vert-001.xhtml": [ - "ba47c207ab8f3755201b2237584ed0f6d53dd135", + "svg-no-natural-size-grandchild.html": [ + "6f99654014e68b989695ac7f9fee46e51b62eeaf", [ null, [ [ - "/css/css-flexbox/flexbox-basic-canvas-vert-001-ref.xhtml", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "flexbox-basic-canvas-vert-001v.xhtml": [ - "d37b45f2337b80d2c6e0072f310aa98a7b7b7c0a", + "svg-root-as-flex-item-001.html": [ + "56d134e69be56204aacaf8f50d1109c157b6d697", [ null, [ [ - "/css/css-flexbox/flexbox-basic-canvas-vert-001-ref.xhtml", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "flexbox-basic-fieldset-horiz-001.xhtml": [ - "8a504859dccc86944743b3976a7bd42653b9f6d3", + "svg-root-as-flex-item-002.html": [ + "0594eb406ee1197ccc803af49041b0eff20481e3", [ null, [ [ - "/css/css-flexbox/flexbox-basic-fieldset-horiz-001-ref.xhtml", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "flexbox-basic-fieldset-vert-001.xhtml": [ - "75d592f4cb90358cfb44098c028e1c6fc83c2ef7", + "svg-root-as-flex-item-003.html": [ + "778690d7948f6c2b9952483859a9484a1349b3cb", [ null, [ [ - "/css/css-flexbox/flexbox-basic-fieldset-vert-001-ref.xhtml", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "flexbox-basic-iframe-horiz-001.xhtml": [ - "323b065199e1ca5c256ad7cd6b05927b00aa4be6", + "svg-root-as-flex-item-004.html": [ + "1321433634599bf4c185b4882d6ca3bee4b71e2b", [ null, [ [ - "/css/css-flexbox/flexbox-basic-iframe-horiz-001-ref.xhtml", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "flexbox-basic-iframe-vert-001.xhtml": [ - "08ea016d7bd2a1c70e4be0212b413b4482119fcd", + "svg-root-as-flex-item-005.html": [ + "19501347662f387141f0eb0dbb16c23906c35589", [ null, [ [ - "/css/css-flexbox/flexbox-basic-iframe-vert-001-ref.xhtml", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "flexbox-basic-img-horiz-001.xhtml": [ - "b5f3a6fce640a2af6a5e9d0ed1176c0d7e272633", + "synthesize-vrl-baseline.html": [ + "1e753da0a2c1349d06608d5d84bfcb3e91083330", [ null, [ [ - "/css/css-flexbox/flexbox-basic-img-horiz-001-ref.xhtml", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "flexbox-basic-img-vert-001.xhtml": [ - "e5513137dcbad6e696d48d7229671a96f3725b45", + "table-as-flex-item-max-content.html": [ + "c7316aab950ddb1ceb6f05933ae9f1cec481f191", [ null, [ [ - "/css/css-flexbox/flexbox-basic-img-vert-001-ref.xhtml", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "flexbox-basic-textarea-horiz-001.xhtml": [ - "7906d242afa3ce8497b3b4bfcdc667ead27ee515", + "table-as-item-auto-min-width.html": [ + "66a77327f0f25e07db87e342ebb590358d045f7a", [ null, [ [ - "/css/css-flexbox/flexbox-basic-textarea-horiz-001-ref.xhtml", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "flexbox-basic-textarea-vert-001.xhtml": [ - "ac092edf8b2389d7d09d1e4ef6bf441041e412d3", + "table-as-item-change-cell.html": [ + "a83f518a232e82bf76a8b9c7a8d6cae71808b420", [ null, [ [ - "/css/css-flexbox/flexbox-basic-textarea-vert-001-ref.xhtml", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "flexbox-basic-video-horiz-001.xhtml": [ - "c976ccffbde87be226de794e9c7c0fad63e3bdba", + "table-as-item-fixed-min-width-2.html": [ + "f04f9e58f7ae23f0205815fba0293efa70273aa6", [ null, [ [ - "/css/css-flexbox/flexbox-basic-video-horiz-001-ref.xhtml", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "flexbox-basic-video-vert-001.xhtml": [ - "7e4133269d1f75c13cbbb6191f6883baebf3708e", + "table-as-item-fixed-min-width-3.html": [ + "a13a94f56f6a8591521f4f38de227c2d483cc00a", [ null, [ [ - "/css/css-flexbox/flexbox-basic-video-vert-001-ref.xhtml", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "flexbox-break-request-horiz-001a.html": [ - "583f461bc21eefa3ce19e014aa421c7af3040649", + "table-as-item-fixed-min-width.html": [ + "83f0511031ef31fa52b96bbeb24672f1d61ca964", [ null, [ [ - "/css/css-flexbox/flexbox-break-request-horiz-001-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "flexbox-break-request-horiz-001b.html": [ - "545c8c4c6d3a202cd6b6b6fb581b7e6f608a08f9", + "table-as-item-flex-cross-size.html": [ + "bfb6c34f556562a8a38c6a961daa5cebe0d96cf5", [ null, [ [ - "/css/css-flexbox/flexbox-break-request-horiz-001-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "flexbox-break-request-horiz-002a.html": [ - "3bf1ac438b1c7e8faff4bce09a8154c59eb2ff23", + "table-as-item-inflexible-in-column-1.html": [ + "201a97fb4521bb05cfd148733132208c85e3404e", [ null, [ [ - "/css/css-flexbox/flexbox-break-request-horiz-002-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "flexbox-break-request-horiz-002b.html": [ - "3a53dace61a5198000c4ef38dc04751ab0a698be", + "table-as-item-inflexible-in-column-2.html": [ + "05a5cbc81c79fb0f5f8e2ce8b7dabcf8b8aae3f3", [ null, [ [ - "/css/css-flexbox/flexbox-break-request-horiz-002-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "flexbox-break-request-vert-001a.html": [ - "57fd0d5eb92fbc7f143265f9deefd38dffce3ef9", + "table-as-item-inflexible-in-row-1.html": [ + "073e7f7274ab7b3b52252d1d1b7301816c7dbf5e", [ null, [ [ - "/css/css-flexbox/flexbox-break-request-vert-001-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "flexbox-break-request-vert-001b.html": [ - "8c5a88683d9e482926c549436613b80f3bc28806", + "table-as-item-inflexible-in-row-2.html": [ + "4ef3db11f28569e92cee0d85bcdee79f24932cb4", [ null, [ [ - "/css/css-flexbox/flexbox-break-request-vert-001-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "flexbox-break-request-vert-002a.html": [ - "e68b98a5ae0844345764786677096780d43e093f", + "table-as-item-large-intrinsic-size.html": [ + "1aba63b4fb4bfa5f4566c30a4da4a67e275882d6", [ null, [ [ - "/css/css-flexbox/flexbox-break-request-vert-002-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "flexbox-break-request-vert-002b.html": [ - "cda5fecd44f3757dc23a3ef49549bebb37b9b433", + "table-as-item-min-content-height-1.tentative.html": [ + "f60561b453881cb7e4e0b17155800ef4c8b1ce16", [ null, [ [ - "/css/css-flexbox/flexbox-break-request-vert-002-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "flexbox-collapsed-item-baseline-001.html": [ - "0ffa27761933548c8f0d122f700b7631031c6c15", + "table-as-item-min-content-height-2.tentative.html": [ + "cac19f95003fb24088cbde2cb470cabaaa310587", [ null, [ [ - "/css/css-flexbox/flexbox-collapsed-item-baseline-001-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "flexbox-collapsed-item-horiz-001.html": [ - "2c4385af8c8552e87c6d3c8a2a3064ab001992ea", + "table-as-item-min-height-1.html": [ + "9b0b9d25088317d346cc4fa4ec9d137503e0d04c", [ null, [ [ - "/css/css-flexbox/flexbox-collapsed-item-horiz-001-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "flexbox-collapsed-item-horiz-002.html": [ - "97af3805ce92928b47b9ca9c2513e0a4715bbda9", + "table-as-item-narrow-content-2.html": [ + "96af10770f2de07a9adae7603eaa0cd0ebad0121", [ null, [ [ - "/css/css-flexbox/flexbox-collapsed-item-horiz-002-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "flexbox-collapsed-item-horiz-003.html": [ - "4476bc18f2ae25b64808cd2cbda93de37dc318dc", + "table-as-item-narrow-content.html": [ + "31cf112518198044d485b4ba5ff477773c29487c", [ null, [ [ - "/css/css-flexbox/flexbox-collapsed-item-horiz-003-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "flexbox-column-row-gap-001.html": [ - "25b28e8094754df403205ef468c682b19a6284c3", + "table-as-item-percent-width-cell-001.html": [ + "b578b233405fdc164be5c26456f8bc1d558cf85c", [ null, [ [ - "/css/css-flexbox/flexbox-column-row-gap-001-ref.html", + "/css/css-flexbox/table-as-item-percent-width-cell-001-ref.html", "==" ] ], {} ] ], - "flexbox-column-row-gap-002.html": [ - "fcd19cf8d483267ec511482942c7dd64b03f98e6", + "table-as-item-specified-height.html": [ + "f8f3740fcd413fa253207ee4fbe74b5afac7b68a", [ null, [ [ - "/css/css-flexbox/flexbox-column-row-gap-002-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "flexbox-column-row-gap-003.html": [ - "2dcd02717317a4c445e53df881ea555010cd20f6", + "table-as-item-specified-width-vertical.html": [ + "623e7508e901560a13cab3175246cb7f510e9fce", [ null, [ [ - "/css/css-flexbox/flexbox-column-row-gap-003-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "flexbox-column-row-gap-004.html": [ - "0d86b3818ff02aae7cb05d527bb487b653eebf3d", + "table-as-item-specified-width.html": [ + "2d6850fdd73c9ccaf439fd6b547472880d95cb8c", [ null, [ [ - "/css/css-flexbox/flexbox-column-row-gap-004-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "flexbox-definite-cross-size-constrained-percentage.html": [ - "ae0836fdad630fa54047d2b005d7db42cb81644f", + "table-as-item-stretch-cross-size-2.html": [ + "04e5b1e342e7cf61fbfec5ef6e82d9ca25909472", [ null, [ [ - "/css/css-flexbox/flexbox-definite-cross-size-constrained-percentage-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "flexbox-definite-sizes-001.html": [ - "5bff6146e0ebe32a3e535c3566b98b84818d4773", + "table-as-item-stretch-cross-size-3.html": [ + "bba29bdd29b7a7be22d1b9ff3454cbac6d6aa10d", [ null, [ [ - "/css/css-flexbox/flexbox-definite-sizes-001-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "flexbox-definite-sizes-002.html": [ - "126fd5e50c25a5bad04c096c59a9184d6e165ce7", + "table-as-item-stretch-cross-size-4.html": [ + "0e70b4687ce95c13f1ecc6bc058ae9295481a422", [ null, [ [ - "/css/css-flexbox/flexbox-definite-sizes-001-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "flexbox-definite-sizes-003.html": [ - "bc5b0751dbe356c012aa4b76a60eb5415a4063b3", + "table-as-item-stretch-cross-size-5.html": [ + "f5b898ac12a61893616adbbfce9010559a19b551", [ null, [ [ - "/css/css-flexbox/flexbox-definite-sizes-001-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "flexbox-definite-sizes-004.html": [ - "cf54aabe9936b3963e7343d566d957633fc26c69", + "table-as-item-stretch-cross-size.html": [ + "06d685be8b4ad3ab84790d62b60fcf7abf19042b", [ null, [ [ - "/css/css-flexbox/flexbox-definite-sizes-001-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "flexbox-definite-sizes-005.html": [ - "76beb2a41db70d2f00de159d1285fbc5310a3d40", + "table-as-item-wide-content.html": [ + "45ad49ec2d69808cb09892515ea882716edd369d", [ null, [ [ - "/css/css-flexbox/flexbox-definite-sizes-005-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "flexbox-definite-sizes-006.html": [ - "4b5aaf8dc443ed986dafc334c79dd3d7627698f8", + "table-item-flex-percentage-min-width.html": [ + "a67e4fe15f65aab403c376cff6ecda5a25da51bf", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-flexbox/table-item-flex-percentage-min-width-ref.html", "==" ] ], {} ] ], - "flexbox-dyn-resize-001.html": [ - "d64c4bdf28ecb783af4f342d515dcf63134602c6", + "table-item-flex-percentage-width.html": [ + "f21b5f0c6562c3970ae95202f5e3adf7a3deb489", [ null, [ [ - "/css/css-flexbox/flexbox-dyn-resize-001-ref.html", + "/css/css-flexbox/table-item-flex-percentage-width-ref.html", "==" ] ], {} ] ], - "flexbox-flex-basis-content-001a.html": [ - "1ac926498cb39a7665836387d3c6efc92fba536d", + "table-with-float-paint.html": [ + "da78a0a576b375a85f7f63ce97093e9ab90e614b", [ null, [ [ - "/css/css-flexbox/flexbox-flex-basis-content-001-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "flexbox-flex-basis-content-001b.html": [ - "b41fd409b74ddff9fa74872a308b0b3b523d85a2", + "table-with-infinite-max-intrinsic-width.html": [ + "7f4a4645f339e27eacabf8cfae3a9f791ef06ddc", [ null, [ [ - "/css/css-flexbox/flexbox-flex-basis-content-001-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "flexbox-flex-basis-content-002a.html": [ - "68c67987dd87f644fd5c65349da070ff4c03c5a3", + "text-overflow-on-flexbox-001.html": [ + "ba0430999460c1aa2bf2b3021ac899524761dd97", [ null, [ [ - "/css/css-flexbox/flexbox-flex-basis-content-002-ref.html", + "/css/css-flexbox/reference/text-overflow-on-flexbox-001-ref.html", "==" ] ], {} ] ], - "flexbox-flex-basis-content-002b.html": [ - "d6d4171eed115654fdde15f587b3b762c4eab1fb", + "webkit-box-vertical-writing-mode.html": [ + "c041b011d678a74abf916764e44a71d8e8ae16d0", [ null, [ [ - "/css/css-flexbox/flexbox-flex-basis-content-002-ref.html", + "/css/css-flexbox/webkit-box-vertical-writing-mode-ref.html", "==" ] ], {} ] ], - "flexbox-flex-basis-content-003a.html": [ - "83dbae086844c52e83897d73866fffbb5ff0e2d3", + "whitespace-in-flexitem-001.html": [ + "a2fae9bd569d86d6216a674714e05861114f13e6", [ null, [ [ - "/css/css-flexbox/flexbox-flex-basis-content-003-ref.html", + "/css/css-flexbox/whitespace-in-flexitem-001-ref.html", "==" ] ], {} ] - ], - "flexbox-flex-basis-content-003b.html": [ - "a81403c098f010a0fe0b18b0de9511827bdceca0", + ] + }, + "css-font-loading": { + "fontface-descriptor-updates.html": [ + "038b96da1e54654e1739e7034e1790c11c75a538", [ null, [ [ - "/css/css-flexbox/flexbox-flex-basis-content-003-ref.html", + "/css/css-font-loading/fontface-descriptor-updates-ref.html", "==" ] ], {} ] ], - "flexbox-flex-basis-content-004a.html": [ - "65a86b508f470e945dd102b9e0e7043e80844034", + "fontface-override-descriptors.html": [ + "34506b154793caac0ca3091fa6c1a250f99e7b3c", [ null, [ [ - "/css/css-flexbox/flexbox-flex-basis-content-004-ref.html", + "/css/css-font-loading/fontface-override-descriptors-ref.html", "==" ] ], {} ] ], - "flexbox-flex-basis-content-004b.html": [ - "a686f1aa1e19bdc7ebbec7a3ddb105031818a4f2", + "fontface-size-adjust-descriptor.html": [ + "40e7a7f70aa847f0d517d1b28b657249e02a42ae", [ null, [ [ - "/css/css-flexbox/flexbox-flex-basis-content-004-ref.html", + "/css/css-font-loading/fontface-size-adjust-descriptor-ref.html", "==" ] ], {} ] ], - "flexbox-flex-direction-column-percentage-ignored.html": [ - "037ef3e83f8731680c1741921904403deeaa72bd", + "fontfaceset-clear-css-connected-2.html": [ + "af285460ef6dbfee1f1ff97054fc042530447367", [ null, [ [ - "/css/css-flexbox/reference/flexbox-flex-direction-column-percentage-ignored-ref.html", + "/css/css-font-loading/fontfaceset-clear-css-connected-2-ref.html", "==" ] ], {} ] ], - "flexbox-flex-direction-column-reverse.htm": [ - "aeff3f7cc1adef5b752e18fd4a77a1a5df2dd852", + "fontfaceset-delete-css-connected-2.html": [ + "250ebb2b3b03611d039516df5429358267de1fcf", [ null, [ [ - "/css/css-flexbox/reference/flexbox-flex-direction-ref.htm", + "/css/css-font-loading/fontfaceset-delete-css-connected-2-ref.html", "==" ] ], {} ] - ], - "flexbox-flex-direction-column.htm": [ - "56920400cd82ae196630e439be6d7b026bb5b4ae", + ] + }, + "css-fonts": { + "alternates-order.html": [ + "64bae31b8700e4755b778844a9d1280b95df9340", [ null, [ [ - "/css/css-flexbox/reference/flexbox-flex-direction-ref.htm", + "/css/css-fonts/alternates-order-ref.html", "==" ] ], {} ] ], - "flexbox-flex-direction-default.htm": [ - "0d41d54e6d41cb92aa73107e21b3b8f7f47e2630", + "ascent-descent-override.html": [ + "a2e02cc73de315f728ac2d7369a5173a588692ae", [ null, [ [ - "/css/css-flexbox/reference/flexbox-flex-direction-ref.htm", + "/css/css-fonts/ascent-descent-override-ref.html", "==" ] ], {} ] ], - "flexbox-flex-direction-row-reverse.htm": [ - "eaa2649382b8ce03c62e2036f585f6757d492ceb", + "downloadable-font-scoped-to-document.html": [ + "2dbc350069cd9c61925967655f83217b800fc9eb", [ null, [ [ - "/css/css-flexbox/reference/flexbox-flex-direction-ref.htm", + "/css/css-fonts/downloadable-font-scoped-to-document-ref.html", "==" ] ], {} ] ], - "flexbox-flex-direction-row.htm": [ - "9dbb80f23347ee8d3c273789f3422dfcf75ea095", + "first-available-font-001.html": [ + "5eb88f7bf6713b80e0adb4728681e62c3f2dc2bc", [ null, [ [ - "/css/css-flexbox/reference/flexbox-flex-direction-ref.htm", + "/css/css-fonts/first-available-font-001-ref.html", "==" ] ], {} ] ], - "flexbox-flex-flow-001.html": [ - "a29b89aa6904ca41a773638c99dec4da733fb5bc", + "first-available-font-002.html": [ + "df47df840bdef12fb7f958cd8146f3fe55dcf3f2", [ null, [ [ - "/css/css-flexbox/flexbox-flex-flow-001-ref.html", + "/css/css-fonts/first-available-font-002-ref.html", "==" ] ], {} ] ], - "flexbox-flex-flow-002.html": [ - "8ba3abdf4bc39ee818c06bcdc3cf0fba281c1696", + "first-available-font-003.html": [ + "d6b1b2695ff28c4e6e214ab74f89fe5739632441", [ null, [ [ - "/css/css-flexbox/flexbox-flex-flow-002-ref.html", + "/css/css-fonts/first-available-font-003-ref.html", "==" ] ], {} ] ], - "flexbox-flex-wrap-default.htm": [ - "e3046fd12680fe58377b31839e8d6364d686f3db", + "first-available-font-004.html": [ + "05ae07d6fdf2ca09bd71c2d9f6182fffebbedd51", [ null, [ [ - "/css/css-flexbox/reference/flexbox-flex-wrap-nowrap-ref.htm", + "/css/css-fonts/first-available-font-003-ref.html", "==" ] ], {} ] ], - "flexbox-flex-wrap-flexing.html": [ - "b172fe6fbdbb7ec34f0eb88110e8325b2173a1cf", + "first-available-font-005.html": [ + "3a6b8871dd10f32ea2376822e21f84208c0fea7b", [ null, [ [ - "/css/css-flexbox/flexbox-flex-wrap-flexing-ref.html", + "/css/css-fonts/first-available-font-005-ref.html", "==" ] ], {} ] ], - "flexbox-flex-wrap-horiz-001.html": [ - "75137a2f312a237ec77669a8b0310d7425e3bf4b", + "first-available-font-006.html": [ + "3766fd1bfa5d3fa44edbf9c3b7ec2fe70295a55e", [ null, [ [ - "/css/css-flexbox/flexbox-flex-wrap-horiz-001-ref.html", + "/css/css-fonts/first-available-font-005-ref.html", "==" ] ], {} ] ], - "flexbox-flex-wrap-horiz-002.html": [ - "901a31ec578d301bbf845ac356e2c5c167a0084e", + "first-available-font-007.html": [ + "0efbb3497968f2d2704ac6e5b5f9c6e6924c3f1c", [ null, [ [ - "/css/css-flexbox/flexbox-flex-wrap-horiz-002-ref.html", + "/css/css-fonts/first-available-font-005-ref.html", "==" ] ], {} ] ], - "flexbox-flex-wrap-nowrap.htm": [ - "3f385e0f70ddb6c135c149354527a51765baacc5", + "font-colorization.html": [ + "252d15fc5610ef6df5f73625b9dca56892565d83", [ null, [ [ - "/css/css-flexbox/reference/flexbox-flex-wrap-nowrap-ref.htm", + "/css/css-fonts/font-colorization-ref.html", "==" ] ], {} ] ], - "flexbox-flex-wrap-vert-001.html": [ - "b5229b65be4653a67d8de2be793ee1c93819be5b", + "font-default-01.html": [ + "99fc58b7e187fb586c73bc8cf2ee30b716227c0c", [ null, [ [ - "/css/css-flexbox/flexbox-flex-wrap-vert-001-ref.html", + "/css/css-fonts/font-default-01-ref.html", "==" ] ], {} ] ], - "flexbox-flex-wrap-vert-002.html": [ - "8a2dcbc402d7c3e8addc7a5b623b935922f6ff08", + "font-default-02.html": [ + "24f619421405445da989f931f5ae031e962fd09f", [ null, [ [ - "/css/css-flexbox/flexbox-flex-wrap-vert-002-ref.html", + "/css/css-fonts/font-default-02-ref.html", "==" ] ], {} ] ], - "flexbox-flex-wrap-wrap-reverse.htm": [ - "9c12a37b459b332d1627caeb081ad3291f958175", + "font-default-03.html": [ + "a72a4bc00d47e20c6b39b98a7369d09aca2bf891", [ null, [ [ - "/css/css-flexbox/reference/flexbox-flex-direction-ref.htm", + "/css/css-fonts/font-default-03-ref.html", "==" ] ], {} ] ], - "flexbox-flex-wrap-wrap.htm": [ - "dbd3081e442470054fb766488df06e5be45e4f43", + "font-default-04.html": [ + "5493d7205fbf2b959e12bab17802c7539f425380", [ null, [ [ - "/css/css-flexbox/reference/flexbox-flex-direction-ref.htm", + "/css/css-fonts/font-default-04-a-ref.html", + "==" + ], + [ + "/css/css-fonts/font-default-04-b-ref.html", + "==" + ], + [ + "/css/css-fonts/font-default-04-c-ref.html", "==" ] ], {} ] ], - "flexbox-gap-position-absolute.html": [ - "850f1a42d4e48b1cb8e5a10bee24dfa3966ad7df", + "font-display": { + "font-display-change.html": [ + "64130ca52afa23bcc018bd9ccf97d81fab6a5c33", + [ + null, + [ + [ + "/css/css-fonts/font-display/font-display-change-ref.html", + "==" + ] + ], + {} + ] + ], + "font-display-feature-policy-02.tentative.html": [ + "65f76b07846faf193e2b0900f45211303aa290f9", + [ + null, + [ + [ + "/css/css-fonts/font-display/font-display-feature-policy-02.tentative-ref.html", + "==" + ] + ], + {} + ] + ], + "font-display-preload.html": [ + "46f392ff8473d11d05f9ebc6afe7b2bcdcf102bd", + [ + null, + [ + [ + "/css/css-fonts/font-display/font-display-preload-ref.html", + "==" + ] + ], + {} + ] + ], + "font-display.html": [ + "a2b62c0676f4e12b529ede83f7df6e3b4e6765b1", + [ + null, + [ + [ + "/css/css-fonts/font-display/font-display-ref.html", + "==" + ] + ], + { + "timeout": "long" + } + ] + ] + }, + "font-face-stretch-auto-static.html": [ + "ce3c94fa2feb25483d44883cb5a883d74fea641b", [ null, [ [ - "/css/css-flexbox/flexbox-gap-position-absolute-ref.html", + "/css/css-fonts/font-face-stretch-auto-static-ref.html", "==" ] ], {} ] ], - "flexbox-iframe-intrinsic-size-001.html": [ - "8c5127b690fb687cdc6fb4ceb5a311484e66d2d6", + "font-face-stretch-auto-variable.html": [ + "142f16bb31b37b61f28ac46a7fc342a47d5ffd05", [ null, [ [ - "/css/css-flexbox/flexbox-iframe-intrinsic-size-001-ref.html", + "/css/css-fonts/font-face-stretch-auto-variable-ref.html", "==" ] ], {} ] ], - "flexbox-items-as-stacking-contexts-001.xhtml": [ - "fac905339110967578289f18ae156e4a651d81ab", + "font-face-stretch-default-variable.html": [ + "dfb7f95d12ff110e9e7b612e498d77da76464253", [ null, [ [ - "/css/css-flexbox/flexbox-items-as-stacking-contexts-001-ref.xhtml", + "/css/css-fonts/font-face-stretch-default-variable-ref.html", "==" ] ], {} ] ], - "flexbox-items-as-stacking-contexts-002.html": [ - "4b21404a9bd71ce25aafbe1f972b6716f91bad8f", + "font-face-style-auto-static.html": [ + "8c8cae3e91936d74e495f8e0a094524a53f2dcbe", [ null, [ [ - "/css/css-flexbox/flexbox-items-as-stacking-contexts-002-ref.html", + "/css/css-fonts/font-face-style-auto-static-ref.html", "==" ] ], {} ] ], - "flexbox-items-as-stacking-contexts-003.html": [ - "5f0fd8ba35ee8214ac61edec55577b28b0e1c3f4", + "font-face-style-auto-variable.html": [ + "4e503865ce97deeb02c448b611b8d0c0bd3ad05d", [ null, [ [ - "/css/css-flexbox/flexbox-items-as-stacking-contexts-003-ref.html", + "/css/css-fonts/font-face-style-auto-variable-ref.html", "==" ] ], {} ] ], - "flexbox-justify-content-horiz-001a.xhtml": [ - "494c35bb68703a67ceb6e15817b221ddf488c13a", + "font-face-style-default-variable.html": [ + "55ff17f6bd6de165109eabd911bf4d2c2322fccf", [ null, [ [ - "/css/css-flexbox/flexbox-justify-content-horiz-001-ref.xhtml", + "/css/css-fonts/font-face-style-default-variable-ref.html", "==" ] ], {} ] ], - "flexbox-justify-content-horiz-001b.xhtml": [ - "468d5150fb33d22e9bf56b23af6b74e87d04dd74", + "font-face-unicode-range-2.html": [ + "e94c1b235fbc79c88b7a3106fd62f3f1431b4410", [ null, [ [ - "/css/css-flexbox/flexbox-justify-content-horiz-001-ref.xhtml", + "/css/css-fonts/font-face-unicode-range-2-ref.html", "==" ] ], {} ] ], - "flexbox-justify-content-horiz-002.xhtml": [ - "93d34ab798ba277e1a77506aaa764cee4c80b7ca", + "font-face-unicode-range-nbsp.html": [ + "39c8fb8206f4cd0bfd70ba923cdd58f8f9b5568e", [ null, [ [ - "/css/css-flexbox/flexbox-justify-content-horiz-002-ref.xhtml", + "/css/css-fonts/font-face-unicode-range-nbsp-ref.html", "==" ] ], {} ] ], - "flexbox-justify-content-horiz-003.xhtml": [ - "40c8fb5c027bd5f0c7823f4a327d97513a187d3c", + "font-face-weight-auto-static.html": [ + "af84d4b1f1a91417225c955c98bdb746b665aea8", [ null, [ [ - "/css/css-flexbox/flexbox-justify-content-horiz-003-ref.xhtml", + "/css/css-fonts/font-face-weight-auto-static-ref.html", "==" ] ], {} ] ], - "flexbox-justify-content-horiz-004.xhtml": [ - "8f46426e4f67df2e13ad47a69a31a86d909b66de", + "font-face-weight-auto-variable.html": [ + "7baf6466610c4fc137511d99da8d3309dccccc67", [ null, [ [ - "/css/css-flexbox/flexbox-justify-content-horiz-004-ref.xhtml", + "/css/css-fonts/font-face-weight-auto-variable-ref.html", "==" ] ], {} ] ], - "flexbox-justify-content-horiz-005.xhtml": [ - "53cba03fbe579ee64179cb5c90cc9734beab9366", + "font-face-weight-default-variable.html": [ + "1d1c1d091fe1133361bbb7c7ba64a0ece4aebc57", [ null, [ [ - "/css/css-flexbox/flexbox-justify-content-horiz-005-ref.xhtml", + "/css/css-fonts/font-face-weight-default-variable-ref.html", "==" ] ], {} ] ], - "flexbox-justify-content-horiz-006.xhtml": [ - "dcbe6184c7e8156bad3c87c95af58d8e335fe958", + "font-family-name-001.xht": [ + "5bb7a66ebd54dbe9dc78219f77c441654cd27818", [ null, [ [ - "/css/css-flexbox/flexbox-justify-content-horiz-006-ref.xhtml", + "/css/css-fonts/font-family-name-ref.xht", "==" ] ], {} ] ], - "flexbox-justify-content-vert-001a.xhtml": [ - "d4b32b3914483f7673ba28b14914e7587556e5a1", + "font-family-name-002.xht": [ + "3be21fa8dfceba2adb9800039c3f1eb8ab152c65", [ null, [ [ - "/css/css-flexbox/flexbox-justify-content-vert-001-ref.xhtml", + "/css/css-fonts/font-family-name-ref.xht", "==" ] ], {} ] ], - "flexbox-justify-content-vert-001b.xhtml": [ - "0ce154e2421b14c0707f5243760e878c71e2e280", + "font-family-name-003.xht": [ + "7b9245b20d8a2f088ccdcf9fedd50b0470691590", [ null, [ [ - "/css/css-flexbox/flexbox-justify-content-vert-001-ref.xhtml", + "/css/css-fonts/font-family-name-ref.xht", "==" ] ], {} ] ], - "flexbox-justify-content-vert-002.xhtml": [ - "21683a6cc7d3e480409849b11e5fd3baecb60644", + "font-family-name-004.xht": [ + "5c27586fc93252f550998cf1ed714f54c3e06e58", [ null, [ [ - "/css/css-flexbox/flexbox-justify-content-vert-002-ref.xhtml", + "/css/css-fonts/font-family-name-ref.xht", "==" ] ], {} ] ], - "flexbox-justify-content-vert-003.xhtml": [ - "8b99455e71590dc294be187f8ebfde6a43d6ed76", + "font-family-name-005.xht": [ + "10e5a3186e89f5ee9650caed3cc5d56b5330101d", [ null, [ [ - "/css/css-flexbox/flexbox-justify-content-vert-003-ref.xhtml", + "/css/css-fonts/font-family-name-ref.xht", "==" ] ], {} ] ], - "flexbox-justify-content-vert-004.xhtml": [ - "770ba7ba44c01f68250137c88c28f0596eec06c2", + "font-family-name-006.xht": [ + "0d5790b9c4fa43d29732124fd5ab5c486f7b18d7", [ null, [ [ - "/css/css-flexbox/flexbox-justify-content-vert-004-ref.xhtml", + "/css/css-fonts/font-family-name-ref.xht", "==" ] ], {} ] ], - "flexbox-justify-content-vert-005.xhtml": [ - "bb99dd09b45f72c6aeb260ebd8e37782c173c01d", + "font-family-name-007.xht": [ + "b5b4e2bf3e214f0b55ecae04acefd522bd667eda", [ null, [ [ - "/css/css-flexbox/flexbox-justify-content-vert-005-ref.xhtml", + "/css/css-fonts/font-family-name-ref.xht", "==" ] ], {} ] ], - "flexbox-justify-content-vert-006.xhtml": [ - "38a7f91d783c246a42b2e88c14d0a173142afddf", + "font-family-name-008.xht": [ + "8d2b7d49b41deaef0affa0dc38c851cd4b3f5b5b", [ null, [ [ - "/css/css-flexbox/flexbox-justify-content-vert-006-ref.xhtml", + "/css/css-fonts/font-family-name-ref.xht", "==" ] ], {} ] ], - "flexbox-justify-content-wmvert-001.xhtml": [ - "f676c6c1cdc5eceaa0ccb5fb77e7f4650618fb0b", + "font-family-name-009.xht": [ + "b985b53e5c3b9e66676478d1c882c977052bb5d9", [ null, [ [ - "/css/css-flexbox/flexbox-justify-content-wmvert-001-ref.xhtml", + "/css/css-fonts/font-family-name-ref.xht", "==" ] ], {} ] ], - "flexbox-margin-auto-horiz-001.xhtml": [ - "76d7a88312aee623aacbecfe3c6d28a0d41834f4", + "font-family-name-010.xht": [ + "63833e8cfb883c04b339ea2f02d7633757ab6302", [ null, [ [ - "/css/css-flexbox/flexbox-margin-auto-horiz-001-ref.xhtml", + "/css/css-fonts/font-family-name-ref.xht", "==" ] ], {} ] ], - "flexbox-margin-auto-horiz-002.xhtml": [ - "a31bc7d6f7ad433fe628a4e6fee507a24c2a921e", + "font-family-name-011.xht": [ + "d506c149dc2132ba40d2b6f6f6466fc49ec3fd51", [ null, [ [ - "/css/css-flexbox/flexbox-margin-auto-horiz-002-ref.xhtml", + "/css/css-fonts/font-family-name-ref.xht", "==" ] ], {} ] ], - "flexbox-mbp-horiz-001-reverse.xhtml": [ - "11c723221ff426891b6e3c9ddc1f36b659eada58", + "font-family-name-012.xht": [ + "dad90c4e9ed7718967a9beee36993376a13ab73b", [ null, [ [ - "/css/css-flexbox/flexbox-mbp-horiz-001-reverse-ref.xhtml", + "/css/css-fonts/font-family-name-ref.xht", "==" ] ], {} ] ], - "flexbox-mbp-horiz-001-rtl-reverse.xhtml": [ - "b09f121fe778cf22d8ad13d7ca3667b33d104808", + "font-family-name-013.xht": [ + "afc4161806da2458e24dd9d93d5e64ff1dc3c163", [ null, [ [ - "/css/css-flexbox/flexbox-mbp-horiz-001-ref.xhtml", + "/css/css-fonts/font-family-name-ref.xht", "==" ] ], {} ] ], - "flexbox-mbp-horiz-001-rtl.xhtml": [ - "00f5aa54f68a2dc47ea870b1904f021669024f67", + "font-family-name-014.xht": [ + "bc87ff5105387330c9efa2eccb3a7314720fb2e1", [ null, [ [ - "/css/css-flexbox/flexbox-mbp-horiz-001-reverse-ref.xhtml", + "/css/css-fonts/font-family-name-ref.xht", "==" ] ], {} ] ], - "flexbox-mbp-horiz-001.xhtml": [ - "31560f4461872bb0cabf43a928f23ff239accdb7", + "font-family-name-015.xht": [ + "1c97fae52b6260038bfda47aa569f107300639f1", [ null, [ [ - "/css/css-flexbox/flexbox-mbp-horiz-001-ref.xhtml", + "/css/css-fonts/font-family-name-ref.xht", "==" ] ], {} ] ], - "flexbox-mbp-horiz-002a.xhtml": [ - "b47b7aa55a7858781f72ff1408623d8bf97b8d44", + "font-family-name-016.xht": [ + "52a74e31bb8e280e21b718d9efbf5f0c86952b2c", [ null, [ [ - "/css/css-flexbox/flexbox-mbp-horiz-002-ref.xhtml", + "/css/css-fonts/font-family-name-016-ref.xht", "==" ] ], {} ] ], - "flexbox-mbp-horiz-002b.xhtml": [ - "b8a8616552e850bc9b1149cbe4cb6a3c552cb19c", + "font-family-name-017.xht": [ + "031612f611b5ac0950b276b8f8c435fa5d59771d", [ null, [ [ - "/css/css-flexbox/flexbox-mbp-horiz-002-ref.xhtml", + "/css/css-fonts/font-family-name-mixcase-ref.xht", "==" ] ], {} ] ], - "flexbox-mbp-horiz-002v.xhtml": [ - "a02e3406c90d9b3d1077d988e20344540f3b5084", + "font-family-name-018.xht": [ + "ef1f591d54413e58e481db885fd454d8de46e3ea", [ null, [ [ - "/css/css-flexbox/flexbox-mbp-horiz-002-ref.xhtml", + "/css/css-fonts/font-family-name-mixcase-ref.xht", "==" ] ], {} ] ], - "flexbox-mbp-horiz-003-reverse.xhtml": [ - "cbe4c58b41634042d196ff8b4de43c0d2ba0d901", + "font-family-name-019.xht": [ + "de25caeabee9e77319a847ace7bcc568a621dfc4", [ null, [ [ - "/css/css-flexbox/flexbox-mbp-horiz-003-reverse-ref.xhtml", + "/css/css-fonts/font-family-name-mixcase-ref.xht", "==" ] ], {} ] ], - "flexbox-mbp-horiz-003.xhtml": [ - "f0dc49b5ac20e00de54801daf406f937f2cecab1", + "font-family-name-020.xht": [ + "6241f7f1cb6a4987125c2d5e120ce5ae9a2ac913", [ null, [ [ - "/css/css-flexbox/flexbox-mbp-horiz-003-ref.xhtml", + "/css/css-fonts/font-family-name-mixcase-ref.xht", "==" ] ], {} ] ], - "flexbox-mbp-horiz-003v.xhtml": [ - "8baef3022729bb7a59b94b84c7054a28e1d78646", + "font-family-name-021.xht": [ + "738216750781218da849fc37064234b87a8ad7ca", [ null, [ [ - "/css/css-flexbox/flexbox-mbp-horiz-003-ref.xhtml", + "/css/css-fonts/font-family-name-ref.xht", "==" ] ], {} ] ], - "flexbox-mbp-horiz-004.xhtml": [ - "b513253fd19fdace9da5e3ba45ccc4915b47d03b", + "font-family-name-022.xht": [ + "6b9ee378af48dc3fa1309b3bf9b8f8e03b1fb6f6", [ null, [ [ - "/css/css-flexbox/flexbox-mbp-horiz-004-ref.xhtml", + "/css/css-fonts/font-family-name-022-ref.xht", "==" ] ], {} ] ], - "flexbox-min-height-auto-001.html": [ - "f69ed9561914980f534a89e65a69fcde35bb9e4f", + "font-family-name-023.xht": [ + "9e82760bc19b67fe60bb2af87ea68fd01d2e00e7", [ null, [ [ - "/css/css-flexbox/flexbox-min-height-auto-001-ref.html", + "/css/css-fonts/font-family-name-023-ref.xht", "==" ] ], {} ] ], - "flexbox-min-height-auto-002a.html": [ - "0fd9207fb4b9c0c87fd3ae28994b757b992205c7", + "font-family-name-024.xht": [ + "20aec304fa45f0cb4f14e56a6cd83046f1c7b0ed", [ null, [ [ - "/css/css-flexbox/flexbox-min-height-auto-002-ref.html", + "/css/css-fonts/font-family-name-024-ref.xht", "==" ] ], {} ] ], - "flexbox-min-height-auto-002b.html": [ - "412b4b98c714320202c2fe02794583796bd546af", + "font-family-name-025.html": [ + "a4d5359fbfb4dff9ad27ccac73fa66a4ee5f5dc5", [ null, [ [ - "/css/css-flexbox/flexbox-min-height-auto-002-ref.html", + "/css/css-fonts/font-family-name-025-ref.html", "==" ] ], {} ] ], - "flexbox-min-height-auto-002c.html": [ - "3093c65e5f9f259446a6c9605e98fb0f5ba48b0e", + "font-feature-resolution-001.html": [ + "45f316af5c9c90e460cd11965e19f2f04a1b5b4e", [ null, [ [ - "/css/css-flexbox/flexbox-min-height-auto-002-ref.html", + "/css/css-fonts/font-feature-resolution-001-ref.html", "==" ] ], {} ] ], - "flexbox-min-height-auto-003.html": [ - "15ef35d9cd7f46078af9084832f841ed9a3e2e80", + "font-feature-resolution-002.html": [ + "05cc4db7464853c35548a924ea7c132e31b56f52", [ null, [ [ - "/css/css-flexbox/flexbox-min-height-auto-003-ref.html", + "/css/css-fonts/font-feature-resolution-002-ref.html", "==" ] ], {} ] ], - "flexbox-min-height-auto-004.html": [ - "a04b9b573e2b9c8c8a44f10ee35ecc7c711f5e7f", + "font-feature-settings-descriptor-01.html": [ + "8f7c50661a7ae62af5707f02c50bfbe5067e0bcc", [ null, [ [ - "/css/css-flexbox/flexbox-min-height-auto-004-ref.html", + "/css/css-fonts/font-feature-settings-descriptor-01-ref.html", "==" ] ], {} ] ], - "flexbox-min-width-auto-001.html": [ - "cb347abead55e6739fe5a04b203a1aeb6eb1af4a", + "font-feature-settings-tibetan.html": [ + "45cde9acb5d2b4aba2ea53f7c0080551369f4abb", [ null, [ [ - "/css/css-flexbox/flexbox-min-width-auto-001-ref.html", + "/css/css-fonts/font-feature-settings-tibetan-ref.html", "==" ] ], {} ] ], - "flexbox-min-width-auto-002a.html": [ - "fe60255c937bc579b953c59b6b9ad596cab07daf", + "font-features-across-space-1.html": [ + "a01d05e0590abb6a997745f74500828f69767dbb", [ null, [ [ - "/css/css-flexbox/flexbox-min-width-auto-002-ref.html", + "/css/css-fonts/font-features-across-space-1-ref.html", "==" ] ], {} ] ], - "flexbox-min-width-auto-002b.html": [ - "a56b214dc6820838903b12c8a60e53da601dbe98", + "font-features-across-space-2.html": [ + "2aaeb245cbcfa9a0e4a16daf08212de6e35d9fd6", [ null, [ [ - "/css/css-flexbox/flexbox-min-width-auto-002-ref.html", + "/css/css-fonts/font-features-across-space-1-ref.html", "==" ] ], {} ] ], - "flexbox-min-width-auto-002c.html": [ - "95b98e5b583c511a26d3d76b2565af9d8631b1b4", + "font-features-across-space-3.html": [ + "751f2cc21650d4424f3808e68c0c17467e6e7f9f", [ null, [ [ - "/css/css-flexbox/flexbox-min-width-auto-002-ref.html", + "/css/css-fonts/font-features-across-space-1-ref.html", "==" ] ], {} ] ], - "flexbox-min-width-auto-003.html": [ - "ecc7ab71700450c5f0859891ea11783a24761807", + "font-kerning-01.html": [ + "6755500fd246b52af1a8c5326faed7ba2f9a5504", [ null, [ [ - "/css/css-flexbox/flexbox-min-width-auto-003-ref.html", + "/css/css-fonts/font-kerning-01-ref.html", "==" ] ], {} ] ], - "flexbox-min-width-auto-004.html": [ - "a090f2154f8e6ad8c5c46ed87d224b5ef37f6c10", + "font-kerning-02.html": [ + "1990cfc2dd638143d045c94d1bc7e6bb1f7322e7", [ null, [ [ - "/css/css-flexbox/flexbox-min-width-auto-004-ref.html", + "/css/css-fonts/font-kerning-02-ref.html", "==" ] ], {} ] ], - "flexbox-min-width-auto-005.html": [ - "7cf43c4d493d8dcfb4c84efdc5cb6cd6fd8ba957", + "font-kerning-03.html": [ + "550f26ebc7319cf84fb702105f6d2e9876a44bee", [ null, [ [ - "/css/css-flexbox/reference/flexbox-min-width-auto-005-ref.html", + "/css/css-fonts/font-kerning-03-ref.html", "==" ] ], {} ] ], - "flexbox-min-width-auto-006.html": [ - "30e077e438fd3079742be03f17f46e00592f9aaa", + "font-kerning-04.html": [ + "e4e8e09ff5172552384591d3c89edd6ed203fe8c", [ null, [ [ - "/css/css-flexbox/reference/flexbox-min-width-auto-006-ref.html", + "/css/css-fonts/font-kerning-04-ref.html", "==" ] ], {} ] ], - "flexbox-order-only-flexitems.html": [ - "0d99139e0d5233c08f0ebd67b9612accf5dd53b2", + "font-kerning-05.html": [ + "4faf67de221213ffc02115a0d35aa53657515637", [ null, [ [ - "/css/css-flexbox/reference/flexbox-order-only-flexitems-ref.html", + "/css/css-fonts/font-kerning-05-ref.html", "==" ] ], {} ] ], - "flexbox-overflow-horiz-001.html": [ - "afc08d8c470d484db1b51ca1b7931d9bdf8b1ac2", + "font-language-override-01.html": [ + "51826794e3f7e8df3516b52871e0c6eece5a3765", [ null, [ [ - "/css/css-flexbox/flexbox-overflow-horiz-001-ref.html", + "/css/css-fonts/font-language-override-01-ref.html", "==" ] ], {} ] ], - "flexbox-overflow-horiz-002.html": [ - "545ebb12e742200d3f55013e90f109f5ebc88f8f", + "font-language-override-02.html": [ + "3f05c9e97e2bfbb5e4cb442b3a8ae265482cf244", [ null, [ [ - "/css/css-flexbox/flexbox-overflow-horiz-002-ref.html", + "/css/css-fonts/font-language-override-02-ref.html", "==" + ], + [ + "/css/css-fonts/font-language-override-02-notref.html", + "!=" ] ], {} ] ], - "flexbox-overflow-horiz-003.html": [ - "66cbe76622530018b05fe1e5bdcd0406caf2aa54", + "font-language-override-03.html": [ + "5bda1d7a0134666dcc36fdab03d763de3ebffb2a", [ null, [ [ - "/css/css-flexbox/flexbox-overflow-horiz-003-ref.html", + "/css/css-fonts/font-language-override-02-ref.html", "==" ] ], {} ] ], - "flexbox-overflow-horiz-004.html": [ - "ca7471f1d28a08a0d61480783f46221abc34e89e", + "font-palette-10.html": [ + "83b1dd917bd523b6d45949c98192cd5a54092b1b", [ null, [ [ - "/css/css-flexbox/flexbox-overflow-horiz-004-ref.html", + "/css/css-fonts/font-palette-10-ref.html", "==" ] ], {} ] ], - "flexbox-overflow-horiz-005.html": [ - "da4e063ca8719449ebcdae6b310850e21be3f018", + "font-palette-11.html": [ + "5c62968e86646037193cbbedb6811911ed034409", [ null, [ [ - "/css/css-flexbox/flexbox-overflow-horiz-005-ref.html", + "/css/css-fonts/font-palette-11-ref.html", "==" ] ], {} ] ], - "flexbox-overflow-padding-001.html": [ - "1b5737a9e8ee2499f3b29e619e5d19c8aa81b7e5", + "font-palette-12.html": [ + "be3a5935697c2dce87e0d5c0a2e4ee51fa23a3f4", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-fonts/font-palette-12-ref.html", "==" ] ], {} ] ], - "flexbox-overflow-padding-002.html": [ - "60feedb44c7f21403adccf25e734d9b75209e886", + "font-palette-13.html": [ + "9d7cc21d9239a9e4dca8fb521c1909d508aec8af", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" + "/css/css-fonts/font-palette-13-notref.html", + "!=" ] ], {} ] ], - "flexbox-overflow-vert-001.html": [ - "9c6ad35c18b7ce820cafff3ee45c270b159f1cb8", + "font-palette-14.html": [ + "da3d3ebd1a12918a50cd18130a89cddc60261b3d", [ null, [ [ - "/css/css-flexbox/flexbox-overflow-vert-001-ref.html", + "/css/css-fonts/font-palette-14-ref.html", "==" ] ], {} ] ], - "flexbox-overflow-vert-002.html": [ - "aeec44e54d17632dd9f4fa76dc42c48b6ca611ca", + "font-palette-15.html": [ + "2fb28993bc9d522398accd17633b0727627e4125", [ null, [ [ - "/css/css-flexbox/flexbox-overflow-vert-002-ref.html", + "/css/css-fonts/font-palette-15-ref.html", "==" ] ], {} ] ], - "flexbox-overflow-vert-003.html": [ - "965b99a40fe28dc01b31f6bb422fdfe5ef7ee3df", + "font-palette-16.html": [ + "a28ba4bb135ceaae3a7017d70e9039aa89ed0208", [ null, [ [ - "/css/css-flexbox/flexbox-overflow-vert-003-ref.html", - "==" + "/css/css-fonts/font-palette-16-notref.html", + "!=" ] ], {} ] ], - "flexbox-overflow-vert-004.html": [ - "579cb4fd1a2031867978713a22c3fac9a59a1bed", + "font-palette-17.html": [ + "dcc6aa5b2e1ef1b8a29b89a1956f9e00d25ad0b9", [ null, [ [ - "/css/css-flexbox/flexbox-overflow-vert-004-ref.html", - "==" + "/css/css-fonts/font-palette-17-notref.html", + "!=" ] ], {} ] ], - "flexbox-overflow-vert-005.html": [ - "1de6d1b8c0756457e2bdbd39945c97755054b583", + "font-palette-18.html": [ + "441daebb9df2b54c0960110bb3dccc90978735fa", [ null, [ [ - "/css/css-flexbox/flexbox-overflow-vert-005-ref.html", - "==" + "/css/css-fonts/font-palette-18-notref.html", + "!=" ] ], {} ] ], - "flexbox-paint-ordering-001.xhtml": [ - "06b42e126a82a4717b4eb7a32875aa9079b4d2bb", + "font-palette-19.html": [ + "abc70c9c3abf97e78675dc9c9ff675bfc0a1124a", [ null, [ [ - "/css/css-flexbox/flexbox-paint-ordering-001-ref.xhtml", - "==" + "/css/css-fonts/font-palette-19-notref.html", + "!=" ] ], {} ] ], - "flexbox-paint-ordering-002.xhtml": [ - "55a18d5b77773d03d18c1dab5aaffc508434f262", + "font-palette-2.html": [ + "960c683ae1cb49b22f4c633c86bbb615ccf79e1b", [ null, [ [ - "/css/css-flexbox/flexbox-paint-ordering-002-ref.xhtml", + "/css/css-fonts/font-palette-2-ref.html", "==" ] ], {} ] ], - "flexbox-paint-ordering-003.html": [ - "1a5175cb312b7203ca103d5423d3641184aacc48", + "font-palette-20.html": [ + "3fbdab80af8dfba404087179f4d0d02dd04a8775", [ null, [ [ - "/css/css-flexbox/flexbox-paint-ordering-003-ref.html", + "/css/css-fonts/font-palette-20-ref.html", "==" ] ], {} ] ], - "flexbox-root-node-001a.html": [ - "195503b943b9ca53543f7c950d0fe110c3745a99", + "font-palette-21.html": [ + "75709ccdc6cbba1f21c775245d964cca1bd0d96d", [ null, [ [ - "/css/css-flexbox/flexbox-root-node-001-ref.html", + "/css/css-fonts/font-palette-21-ref.html", "==" ] ], {} ] ], - "flexbox-root-node-001b.html": [ - "87d4fc1e10049f93c33bad30c2418055d9a36f5f", + "font-palette-22.html": [ + "ca2457e0086f5713c186f086635d5f699bfb4f07", [ null, [ [ - "/css/css-flexbox/flexbox-root-node-001-ref.html", - "==" + "/css/css-fonts/font-palette-22-notref.html", + "!=" ] ], {} ] ], - "flexbox-safe-overflow-position-001.html": [ - "8114832aa3493dbc0953c59ad4c84bb2754eb0c3", + "font-palette-23.html": [ + "1217b0fcaed9f4cfc1b58177a2d0d6ec643fe75e", [ null, [ [ - "/css/css-flexbox/flexbox-safe-overflow-position-001-ref.html", + "/css/css-fonts/font-palette-23-ref.html", "==" ] ], {} ] ], - "flexbox-safe-overflow-position-002.html": [ - "350d0fa8d38ccf729ef4707e203dddc93790a38e", + "font-palette-24.html": [ + "57607d9791e5dcfebf5545a81542235309cf79f5", [ - "css/css-flexbox/flexbox-safe-overflow-position-002.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-fonts/font-palette-24-ref.html", "==" ] ], {} ] ], - "flexbox-safe-overflow-position-003.html": [ - "61eb8f4033cfa78b705751754c1f8c75c2b82455", + "font-palette-25.html": [ + "2c58fb95e74d33cbaee72c521676394b093ad305", [ - "css/css-flexbox/flexbox-safe-overflow-position-003.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-fonts/font-palette-25-ref.html", "==" ] ], {} ] ], - "flexbox-safe-overflow-position-004.html": [ - "ca336b298db34397c157eff677c1a8329a07fb9d", + "font-palette-26.html": [ + "29b86e015d1ecaff82bbea4dd739bcf6e908f346", [ - "css/css-flexbox/flexbox-safe-overflow-position-004.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-fonts/font-palette-26-ref.html", "==" ] ], {} ] ], - "flexbox-safe-overflow-position-005.html": [ - "96c959e6157efd77e482594edcd2b23ef7a52016", + "font-palette-27.html": [ + "928b9561670c108ab57fa1bf416cb39cf510cb20", [ - "css/css-flexbox/flexbox-safe-overflow-position-005.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-fonts/font-palette-27-ref.html", "==" ] ], {} ] ], - "flexbox-safe-overflow-position-006.html": [ - "fc1b66ff0cc0aa95b6874d3b128d3de411470245", + "font-palette-28.html": [ + "a0b638f4ff37b820f27a2edb62157c6210c097d0", [ - "css/css-flexbox/flexbox-safe-overflow-position-006.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-fonts/font-palette-27-ref.html", "==" ] ], {} ] ], - "flexbox-single-line-clamp-1.html": [ - "f97d5c578a190ad775918e15ae755c30cdfff877", + "font-palette-29.html": [ + "56e136f32dcc171a07dce966720cf31045e783f2", [ null, [ [ - "/css/css-flexbox/flexbox-single-line-clamp-1-ref.html", + "/css/css-fonts/font-palette-29-ref.html", "==" ] ], {} ] ], - "flexbox-single-line-clamp-2.html": [ - "be9e50b90d6876b888be93746219782cfbe785b5", + "font-palette-3.html": [ + "9599b3cf845f2a239d6cfe05396caeedbf69dc44", [ null, [ [ - "/css/css-flexbox/flexbox-single-line-clamp-2-ref.html", - "==" + "/css/css-fonts/font-palette-3-notref.html", + "!=" ] ], {} ] ], - "flexbox-single-line-clamp-3.html": [ - "f3afbd41001139ea8e77e883697bd391611c2659", + "font-palette-30.html": [ + "ea9c9076132ed9f7b5183777d846e527d9bb194f", [ null, [ [ - "/css/css-flexbox/flexbox-single-line-clamp-3-ref.html", + "/css/css-fonts/font-palette-30-ref.html", "==" ] ], {} ] ], - "flexbox-sizing-horiz-001.xhtml": [ - "0f9b5846de892a857916996662409e620586cae1", + "font-palette-31.html": [ + "26f47a9ee6ef1e39446ef14eb03d05af05c7d722", [ null, [ [ - "/css/css-flexbox/flexbox-sizing-horiz-001-ref.xhtml", + "/css/css-fonts/font-palette-31-ref.html", "==" ] ], {} ] ], - "flexbox-sizing-horiz-002.xhtml": [ - "c450dd30169b5abf3065960a5b70991a68bc5022", + "font-palette-32.html": [ + "af6f62d485e5f6693eec682dbc5391088268b960", [ null, [ [ - "/css/css-flexbox/flexbox-sizing-horiz-002-ref.xhtml", + "/css/css-fonts/font-palette-32-ref.html", "==" ] ], {} ] ], - "flexbox-sizing-vert-001.xhtml": [ - "5ac29a7001b62a63f05803b44f2a6e304e5977f7", + "font-palette-33.html": [ + "afd094458cc14869bd84de528d81b24b10ed2557", [ null, [ [ - "/css/css-flexbox/flexbox-sizing-vert-001-ref.xhtml", + "/css/css-fonts/font-palette-33-ref.html", "==" ] ], {} ] ], - "flexbox-sizing-vert-002.xhtml": [ - "9cba454e909b46684e5ec550c577a6e06e6f0c02", + "font-palette-34.html": [ + "ebc80d780cf2ac7d87ad80f120b9ec5f70b93ee5", [ null, [ [ - "/css/css-flexbox/flexbox-sizing-vert-002-ref.xhtml", + "/css/css-fonts/font-palette-34-ref.html", "==" ] ], {} ] ], - "flexbox-table-fixup-001.xhtml": [ - "00e1a54ffa198298cd1500343265a2a8fa6c5e93", + "font-palette-35.html": [ + "bef0dcdd2d05b6dd89a2cec1e762f9393f0d5e70", [ null, [ [ - "/css/css-flexbox/flexbox-table-fixup-001-ref.xhtml", + "/css/css-fonts/font-palette-35-ref.html", "==" ] ], {} ] ], - "flexbox-whitespace-handling-001a.xhtml": [ - "3bae116b40aa472ab7b77381b8b55595ce17afb8", + "font-palette-36.html": [ + "8a0fd7f6b515edd9eaae010f65a3b2d2ec784c1e", [ null, [ [ - "/css/css-flexbox/flexbox-whitespace-handling-001-ref.xhtml", + "/css/css-fonts/font-palette-36-ref.html", "==" ] ], {} ] ], - "flexbox-whitespace-handling-001b.xhtml": [ - "43a4c60ce0c87913883e905024fd1f6fb5e1b5dc", + "font-palette-4.html": [ + "540ba2542190205fbebc43b3b90381ab19a07b5e", [ null, [ [ - "/css/css-flexbox/flexbox-whitespace-handling-001-ref.xhtml", - "==" + "/css/css-fonts/font-palette-4-notref.html", + "!=" ] ], {} ] ], - "flexbox-whitespace-handling-002.xhtml": [ - "c80947f81226944fb5f0628a6f1b1191ee237cdb", + "font-palette-5.html": [ + "7c5139daba70ec82fd738541d85ef4f232dee761", [ null, [ [ - "/css/css-flexbox/flexbox-whitespace-handling-002-ref.xhtml", - "==" + "/css/css-fonts/font-palette-5-notref.html", + "!=" ] ], {} ] ], - "flexbox-with-multi-column-property.html": [ - "56b56ca0935bc8869a4b19e0d70e2cf7cdb0a0b8", + "font-palette-6.html": [ + "947716ab6bdf370d0dd3a05636d5e8c491c559fb", [ null, [ [ - "/css/css-flexbox/reference/flexbox-with-multi-column-property-ref.html", - "==" + "/css/css-fonts/font-palette-6-notref.html", + "!=" ] ], {} ] ], - "flexbox-with-pseudo-elements-001.html": [ - "0abf6ea898a7fe69a3232327d4c176a4ddd0e3e1", + "font-palette-7.html": [ + "253c7f4dd678c8b346e236945c0539c35dea4495", [ null, [ [ - "/css/css-flexbox/flexbox-with-pseudo-elements-001-ref.html", - "==" + "/css/css-fonts/font-palette-7-notref.html", + "!=" ] ], {} ] ], - "flexbox-with-pseudo-elements-002.html": [ - "6e0738e7496d8f36304118a8cc1be4ac945b552f", + "font-palette-8.html": [ + "ce842ff794ec91b2cbe76154b15b12bd89f39877", [ null, [ [ - "/css/css-flexbox/flexbox-with-pseudo-elements-002-ref.html", - "==" + "/css/css-fonts/font-palette-8-notref.html", + "!=" ] ], {} ] ], - "flexbox-with-pseudo-elements-003.html": [ - "fe531b126f31ad159ecdc572312252dd82d6aa80", + "font-palette-9.html": [ + "e5e3915bb6796eae776e1f7fc60a8b03194c48e6", [ null, [ [ - "/css/css-flexbox/flexbox-with-pseudo-elements-003-ref.html", - "==" + "/css/css-fonts/font-palette-9-notref.html", + "!=" ] ], {} ] ], - "flexbox-writing-mode-001.html": [ - "b2fb6d3f1f070a5ca7540c8f67b71ca855b9b70a", + "font-palette-add-2.html": [ + "1a9b00eaf1e33d7dee910c3f839c49632795a5c3", [ null, [ [ - "/css/css-flexbox/flexbox-writing-mode-001-ref.html", + "/css/css-fonts/font-palette-add-2-ref.html", "==" ] ], {} ] ], - "flexbox-writing-mode-002.html": [ - "8e1c724ed7bf574d5558a2f467e50ec95408cda1", + "font-palette-add.html": [ + "a38c619097ed446e5c44ed2bf47b3beb5590613d", [ null, [ [ - "/css/css-flexbox/flexbox-writing-mode-002-ref.html", - "==" + "/css/css-fonts/font-palette-add-notref.html", + "!=" ] ], {} ] ], - "flexbox-writing-mode-003.html": [ - "9b4450487f3694c7509507301f32bed496736925", + "font-palette-empty-font-family.html": [ + "eb69f8fbc8e1bb7641cf0092e7b780c853487d8c", [ null, [ [ - "/css/css-flexbox/flexbox-writing-mode-003-ref.html", + "/css/css-fonts/font-palette-empty-font-family-ref.html", "==" ] ], {} ] ], - "flexbox-writing-mode-004.html": [ - "38f4158680859b236b1d54054f1cf6b50137181a", + "font-palette-modify-2.html": [ + "7a19924192c7f39191391c06485ccd8ff93ba2b9", [ null, [ [ - "/css/css-flexbox/flexbox-writing-mode-004-ref.html", + "/css/css-fonts/font-palette-modify-2-ref.html", "==" ] ], {} ] ], - "flexbox-writing-mode-005.html": [ - "65826fc2e37f5eba89bb7be6a86a51d1410eb19c", + "font-palette-modify.html": [ + "49992ad8a13fb9182206aaa67d7809c451c28faa", [ null, [ [ - "/css/css-flexbox/flexbox-writing-mode-005-ref.html", - "==" + "/css/css-fonts/font-palette-modify-notref.html", + "!=" ] ], {} ] ], - "flexbox-writing-mode-006.html": [ - "3e8352a45a2c519d53e8eea64c2c7d17270e2f4b", + "font-palette-non-ident-font-family.html": [ + "8d6ec751a3f9f0797205e7d0fd4881a785e5aa3b", [ null, [ [ - "/css/css-flexbox/flexbox-writing-mode-006-ref.html", + "/css/css-fonts/font-palette-non-ident-font-family-ref.html", "==" ] ], {} ] ], - "flexbox-writing-mode-007.html": [ - "521af54af49fbb4901dca1b7a0243135c0b35c23", + "font-palette-remove-2.html": [ + "2cdb070a2cd38561c5ee6ec54f42605fbe38feb9", [ null, [ [ - "/css/css-flexbox/flexbox-writing-mode-007-ref.html", + "/css/css-fonts/font-palette-remove-2-ref.html", "==" ] ], {} ] ], - "flexbox-writing-mode-008.html": [ - "98fd83fbc86118e827b9766dd8b74898b5f7fe54", + "font-palette-remove.html": [ + "16b5acaec58094dad5fd79985e1ccede639dc8f4", [ null, [ [ - "/css/css-flexbox/flexbox-writing-mode-008-ref.html", - "==" + "/css/css-fonts/font-palette-remove-notref.html", + "!=" ] ], {} ] ], - "flexbox-writing-mode-009.html": [ - "edd63a982a3771e0e1c789c6369e0279558b821f", + "font-palette.html": [ + "091df364319243d0c351ba5ac66047a4f8e3c263", [ null, [ [ - "/css/css-flexbox/flexbox-writing-mode-009-ref.html", + "/css/css-fonts/font-palette-ref.html", "==" ] ], {} ] ], - "flexbox-writing-mode-010.html": [ - "542bde16ce5827de3dda6317b4336259e55ead44", + "font-size-adjust-001.html": [ + "1397d33f2528e61e0b80679e1c4ab1dda9cfbeb4", [ null, [ [ - "/css/css-flexbox/flexbox-writing-mode-010-ref.html", + "/css/css-fonts/font-size-adjust-001-ref.html", "==" ] ], {} ] ], - "flexbox-writing-mode-011.html": [ - "697edb9be00f244652f343c4e15d52f71c36063a", + "font-size-adjust-002.html": [ + "e4d87538c8c9c91a8b689e7dd71ea139fcf1fcb5", [ null, [ [ - "/css/css-flexbox/flexbox-writing-mode-011-ref.html", + "/css/css-fonts/font-size-adjust-002-ref.html", "==" ] ], {} ] ], - "flexbox-writing-mode-012.html": [ - "b722d459e14a741ec499ffe33e3857cb4dcea342", + "font-size-adjust-005.xht": [ + "4f73773f55e3030b8262b3ce9096d0022fd0610b", [ null, [ [ - "/css/css-flexbox/flexbox-writing-mode-012-ref.html", + "/css/CSS2/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "flexbox-writing-mode-013.html": [ - "3d90e7120274e1e1ff9f0cc8ae34c471de42072d", + "font-size-adjust-006.xht": [ + "0b96ff1c4313f33045b5d2f26f47e67f9c69a651", [ null, [ [ - "/css/css-flexbox/flexbox-writing-mode-013-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "flexbox-writing-mode-014.html": [ - "299229b1c3bd72a4e6eb5697af9d7535d3257973", + "font-size-adjust-007.xht": [ + "0fd85c0105171062a81652267e5b6b84d128ada9", [ null, [ [ - "/css/css-flexbox/flexbox-writing-mode-014-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "flexbox-writing-mode-015.html": [ - "eb7fa1b981cfbe40bf1daebaf45ff52be03241e5", + "font-size-adjust-008.xht": [ + "cae02b35af82db73522cfd8a3800f33506e47b80", [ null, [ [ - "/css/css-flexbox/flexbox-writing-mode-015-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "flexbox-writing-mode-016.html": [ - "94c732358351f990c2a4d7533b2e36598c2ec197", + "font-size-adjust-009.html": [ + "133f96f450cd9a45cf0822a7ffc082976371dac4", [ null, [ [ - "/css/css-flexbox/flexbox-writing-mode-016-ref.html", + "/css/css-fonts/font-size-adjust-009-ref.html", "==" ] ], {} ] ], - "flexbox_align-content-center.html": [ - "37c76f4c02ce49a30ea1c293020c7e4de7dae3e3", + "font-size-adjust-010.html": [ + "c3b2bc195ec1c3ed067cac3bea60fd4bf446690b", [ null, [ [ - "/css/css-flexbox/flexbox_align-content-center-ref.html", + "/css/css-fonts/font-size-adjust-009-ref.html", "==" ] ], {} ] ], - "flexbox_align-content-flexend.html": [ - "b26bf330b338bcef4a8b6d8af48bbf3ac6bb9f51", + "font-size-adjust-011.html": [ + "3f6afd8a3708aa86d94443b8a1d8bbffe2ffef5d", [ null, [ [ - "/css/css-flexbox/flexbox_align-content-flexend-ref.html", + "/css/css-fonts/font-size-adjust-009-ref.html", "==" ] ], {} ] ], - "flexbox_align-content-flexstart.html": [ - "e6e4a08321caa63f709f2027fbdc6b18d6752dc7", + "font-size-adjust-012.html": [ + "8052ac6400850d4e9528f5f5b108cd06cc1abdc8", [ null, [ [ - "/css/css-flexbox/flexbox_align-content-flexstart-ref.html", + "/css/css-fonts/font-size-adjust-012-ref.html", "==" ] ], - {} - ] - ], - "flexbox_align-content-spacearound.html": [ - "31c06bab81f8ab56bdb62beeba00163bc8af1248", - [ - null, - [ - [ - "/css/css-flexbox/flexbox_align-content-spacearound-ref.html", - "==" + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 130 + ], + [ + 0, + 350 + ] + ] + ] ] - ], - {} + } ] ], - "flexbox_align-content-spacebetween.html": [ - "aa97f2be5648d8d8fb33ac69c4a25b1daa4db0f1", + "font-size-adjust-013.html": [ + "5fab02732eb956512e4fa21689f93444fd1a96b7", [ null, [ [ - "/css/css-flexbox/flexbox_align-content-spacebetween-ref.html", + "/css/css-fonts/font-size-adjust-013-ref.html", "==" ] ], - {} - ] - ], - "flexbox_align-content-stretch-2.html": [ - "e04079bc916e8e36e10923c5047bcfe29aae36b9", - [ - null, - [ - [ - "/css/css-flexbox/flexbox_align-content-stretch-2-ref.html", - "==" + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 130 + ], + [ + 0, + 350 + ] + ] + ] ] - ], - {} + } ] ], - "flexbox_align-content-stretch.html": [ - "545f4e1ea5bfd9ee1aea7127a3408a1acf1ed3a4", + "font-size-adjust-014.html": [ + "a6e87ff0edbd422cfc181bfbe26830802535b2e2", [ null, [ [ - "/css/css-flexbox/flexbox_align-content-stretch-ref.html", + "/css/css-fonts/font-size-adjust-014-ref.html", "==" ] ], {} ] ], - "flexbox_align-items-baseline.html": [ - "10d637b11b83bc52095f505708c357700768941b", + "font-size-adjust-ic-height.html": [ + "5157d76847a8fdc63e51e2c34a4d945d3250e6e1", [ null, [ [ - "/css/css-flexbox/flexbox_align-items-baseline-ref.html", + "/css/css-fonts/font-size-adjust-ic-height-ref.html", "==" ] ], {} ] ], - "flexbox_align-items-center-2.html": [ - "bbdccef989a1a0d2ecfa286acaa77f9fe00f04cb", + "font-size-adjust-metrics-override.html": [ + "b7787b93073ac2b287170ca4262f8c4ebcd527db", [ null, [ [ - "/css/css-flexbox/flexbox_align-items-center-2-ref.html", + "/css/css-fonts/font-size-adjust-metrics-override-ref.html", "==" ] ], {} ] ], - "flexbox_align-items-center-3.html": [ - "b140cd11eeca341823d6f31bfa3a38162ae0b1b9", + "font-size-adjust-order-001.html": [ + "a8b56a3083f31e90cbbdee507f263cc884db6c66", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-fonts/font-size-adjust-order-001-ref.html", "==" ] ], {} ] ], - "flexbox_align-items-center.html": [ - "5a680473b6e8dad65f439e8e262fd738255ba8dd", + "font-size-adjust-reload.html": [ + "1a2bc5145698ef2eada6eddb250b13d2f58ce9f8", [ null, [ [ - "/css/css-flexbox/flexbox_align-items-center-ref.html", + "/css/css-fonts/font-size-adjust-reload-ref.html", "==" ] ], {} ] ], - "flexbox_align-items-flexend-2.html": [ - "d71458518b304c63b00dafcf408092b2346080ac", + "font-size-adjust-text-orientation.html": [ + "ab73e86e87f9ada84b62a69d7caa2601c97ec57b", [ null, [ [ - "/css/css-flexbox/flexbox_align-items-flexend-2-ref.html", + "/css/css-fonts/font-size-adjust-text-orientation-ref.html", "==" ] ], {} ] ], - "flexbox_align-items-flexend.html": [ - "dcee2762fe72c2f1559e0952959cca384096086f", + "font-size-adjust-units-001.html": [ + "4e27ef1116ed7ba48fb5fbc38b49c315eeeef71c", [ null, [ [ - "/css/css-flexbox/flexbox_align-items-flexend-ref.html", + "/css/css-fonts/font-size-adjust-units-001-ref.html", "==" ] ], {} ] ], - "flexbox_align-items-flexstart-2.html": [ - "d67b81e198ff78e2ba053b9c953e9759d2788671", + "font-size-adjust-zero-1.html": [ + "a34a38b570db8fe80b32c29d329cb212a5e72ec5", [ null, [ [ - "/css/css-flexbox/flexbox_align-items-flexstart-2-ref.html", + "/css/css-fonts/font-size-zero-2-ref.html", "==" ] ], {} ] ], - "flexbox_align-items-flexstart.html": [ - "d5558e5927a79adb0a909d632b2c892762ea9690", + "font-size-adjust-zero-2.html": [ + "3126f7457b2662a0dc3b176819d2ae1ca5a93163", [ null, [ [ - "/css/css-flexbox/flexbox_align-items-flexstart-ref.html", + "/css/css-fonts/font-size-zero-2-ref.html", "==" ] ], {} ] ], - "flexbox_align-items-stretch-2.html": [ - "c74ad830e6b2586be1a13f0eec4a7e655b288da4", + "font-size-monospace-adjust.html": [ + "f1a0b7294d350225d00cfc76c6d3081e8aa7220f", [ null, [ [ - "/css/css-flexbox/flexbox_align-items-stretch-2-ref.html", + "/css/css-fonts/font-size-monospace-adjust-ref.html", "==" ] ], {} ] ], - "flexbox_align-items-stretch-3.html": [ - "19df131db2eb9affaa066d089b424a3da2514a87", + "font-size-xxx-large.html": [ + "44a30688754442f24d60010ae8001e59c7781b3f", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-fonts/font-size-xxx-large-ref.html", "==" ] ], {} ] ], - "flexbox_align-items-stretch-4.html": [ - "422f8b3261e670c0fe626870ac744ae6d494e51c", + "font-size-zero-1-ref.html": [ + "b468121c67aa6ceb69c71cb41cb1a4b5b2b3308e", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" + "/css/css-fonts/font-size-zero-1-notref.html", + "!=" ] ], {} ] ], - "flexbox_align-items-stretch.html": [ - "bea0d7f0152c766ed30e1db55f540e6e05132334", + "font-size-zero-1.html": [ + "85369593e4478527310edc692b79671367f1e5ec", [ null, [ [ - "/css/css-flexbox/flexbox_align-items-stretch-ref.html", + "/css/css-fonts/font-size-zero-1-ref.html", "==" ] ], {} ] ], - "flexbox_align-self-auto.html": [ - "ccede24a660c7d6c455167e69fd1c2ce940f6696", + "font-size-zero-2.html": [ + "d6696984d520647c4874c949cee78e9c8a17bd56", [ null, [ [ - "/css/css-flexbox/flexbox_align-self-auto-ref.html", + "/css/css-fonts/font-size-zero-2-ref.html", "==" ] ], {} ] ], - "flexbox_align-self-baseline.html": [ - "1c2b1e39967177eccf923c8770c110df03273820", + "font-stretch-01.html": [ + "11f3b40504d99a47b1595fc87ec0300defd13277", [ null, [ [ - "/css/css-flexbox/flexbox_align-self-baseline-ref.html", + "/css/css-fonts/font-stretch-pass-ref.html", "==" ] ], {} ] ], - "flexbox_align-self-center.html": [ - "e269708c54406d8a718363152ddca384b5823719", + "font-stretch-02.html": [ + "7635040414005c9852060ebe348421015fbcdd8d", [ null, [ [ - "/css/css-flexbox/flexbox_align-self-center-ref.html", + "/css/css-fonts/font-stretch-pass-ref.html", "==" ] ], {} ] ], - "flexbox_align-self-flexend.html": [ - "f85931db39f3238d385688d48e4393a8ad726716", + "font-stretch-03.html": [ + "82b2a84ceb7a30cd344b6386d833bd15e3899406", [ null, [ [ - "/css/css-flexbox/flexbox_align-self-flexend-ref.html", + "/css/css-fonts/font-stretch-pass-ref.html", "==" ] ], {} ] ], - "flexbox_align-self-flexstart.html": [ - "0f03881cd1b4d470c6a1e32e2195158f467ba3f3", + "font-stretch-04.html": [ + "c70a0ecf0342d95b25028ebc74f3450cddf4d6e3", [ null, [ [ - "/css/css-flexbox/flexbox_align-self-flexstart-ref.html", + "/css/css-fonts/font-stretch-pass-ref.html", "==" ] ], {} ] ], - "flexbox_align-self-stretch.html": [ - "52874469876cbefff110f39fd8a2810a9b0f0063", + "font-stretch-05.html": [ + "6497aabcac32c1eb6cad58333bcb6dadc175afa7", [ null, [ [ - "/css/css-flexbox/flexbox_align-self-stretch-ref.html", + "/css/css-fonts/font-stretch-pass-ref.html", "==" ] ], {} ] ], - "flexbox_block.html": [ - "7bcec042b2022b076ac88a5208e8a87e9085cddc", + "font-stretch-06.html": [ + "aaec9aa32628238d912da6ead3c02cd820c0400c", [ null, [ [ - "/css/reference/blank.html", + "/css/css-fonts/font-stretch-pass-ref.html", "==" ] ], {} ] ], - "flexbox_box-clear.html": [ - "356f6ee9d2b4a5e094eea4d0a962622d9d8a0c12", + "font-stretch-07.html": [ + "80b7f2b8e5b3e9dd10030d108f56c7a7b2590d23", [ null, [ [ - "/css/css-flexbox/flexbox_box-clear-ref.html", + "/css/css-fonts/font-stretch-pass-ref.html", "==" ] ], {} ] ], - "flexbox_columns-flexitems-2.html": [ - "b6ca52f2a885b6f31f6c956338ffc27c4b7ccf90", + "font-stretch-08.html": [ + "e9da4465babb985b2a8f6d1445af8c302837ff34", [ null, [ [ - "/css/css-flexbox/flexbox_columns-flexitems-2-ref.html", + "/css/css-fonts/font-stretch-pass-ref.html", "==" ] ], {} ] ], - "flexbox_columns-flexitems.html": [ - "0a7e4d9d50045ed43f81f964732f9a83978291ca", + "font-stretch-09.html": [ + "0fcd04ea54b8b5926dc4df6a939034cd6efeda95", [ null, [ [ - "/css/css-flexbox/flexbox_columns-flexitems-ref.html", + "/css/css-fonts/font-stretch-pass-ref.html", "==" ] ], {} ] ], - "flexbox_columns.html": [ - "d39c2db55f2a144e5ab9efa713572bd27da72c07", + "font-stretch-10.html": [ + "55a3fa5e00727df4d6fbd2d54270e562a3d1c24a", [ - "css/css-flexbox/flexbox_columns.html", + null, [ [ - "/css/css-flexbox/flexbox_columns-ref.html", + "/css/css-fonts/font-stretch-pass-ref.html", "==" ] ], {} ] ], - "flexbox_direction-column-reverse.html": [ - "8d2cd330e4c65c46a4ff2c8e36811c88c7bdc4e6", + "font-stretch-11.html": [ + "cc2d7f8a44f61ff270daef79e5eb46ee036d768c", [ null, [ [ - "/css/css-flexbox/flexbox_direction-column-reverse-ref.html", + "/css/css-fonts/font-stretch-pass-ref.html", "==" ] ], {} ] ], - "flexbox_direction-column.html": [ - "7647d9e9f3a4c6dcc870a816e68bb5197fd3f511", + "font-stretch-12.html": [ + "00369cab4bf61d9a922db13ace998e57e16fd03d", [ null, [ [ - "/css/css-flexbox/flexbox_direction-column-ref.html", + "/css/css-fonts/font-stretch-pass-ref.html", "==" ] ], {} ] ], - "flexbox_direction-row-reverse.html": [ - "501cd0d514523e5421f1a1ae94c2340f2077a2f5", + "font-stretch-13.html": [ + "c9bd6b9c5790737b7dec4b696df1496eaaf75cb8", [ null, [ [ - "/css/css-flexbox/flexbox_direction-row-reverse-ref.html", + "/css/css-fonts/font-stretch-pass-ref.html", "==" ] ], {} ] ], - "flexbox_display.html": [ - "7ab0dd36478c4b8f5dc2c875669856d3248c6903", + "font-stretch-14.html": [ + "f6812c68785f168073ff713b057cd65ad6dc5232", [ null, [ [ - "/css/css-flexbox/flexbox_display-ref.html", + "/css/css-fonts/font-stretch-pass-ref.html", "==" ] ], {} ] ], - "flexbox_fbfc.html": [ - "5a75c70ebefb0480a8fd30667888cce3fc38fa80", + "font-stretch-15.html": [ + "0157a02c35cfc40a2801f45b84cd0f5db7ba0600", [ null, [ [ - "/css/css-flexbox/flexbox_fbfc-ref.html", + "/css/css-fonts/font-stretch-pass-ref.html", "==" ] ], {} ] ], - "flexbox_fbfc2.html": [ - "56e71cfa408c0c583642e05bf4350f736707d848", + "font-stretch-16.html": [ + "d110052e5f161291e73ad40796393d3c9f479dc5", [ null, [ [ - "/css/css-flexbox/flexbox_fbfc2-ref.html", + "/css/css-fonts/font-stretch-pass-ref.html", "==" ] ], {} ] ], - "flexbox_first-line.html": [ - "ad8d12c2753df5e3e660856f5a105611d50488ad", + "font-stretch-17.html": [ + "760cd60dc31dee01c196db55957ba01f4221da48", [ null, [ [ - "/css/css-flexbox/flexbox_first-line-ref.html", + "/css/css-fonts/font-stretch-pass-ref.html", "==" ] ], {} ] ], - "flexbox_flex-0-0-0-unitless.html": [ - "3a108b53478867f7d274d177cd2f8b6ab536b937", + "font-stretch-18.html": [ + "9440746b09b9d932c2f4ad1b258012b7e34f29ee", [ null, [ [ - "/css/css-flexbox/flexbox_flex-0-0-0-ref.html", + "/css/css-fonts/font-stretch-pass-ref.html", "==" ] ], {} ] ], - "flexbox_flex-0-0-0.html": [ - "374638ba35d6fff6500cc9c7d5123dad245163af", + "font-synthesis-01.html": [ + "cf6d099e0ddc303b5f27cc37b0bc31874f14dd9c", [ null, [ [ - "/css/css-flexbox/flexbox_flex-0-0-0-ref.html", + "/css/css-fonts/font-synthesis-01-ref.html", "==" ] ], {} ] ], - "flexbox_flex-0-0-1-unitless-basis.html": [ - "94a6ccd3a2e3e5af12ad96b5facca9a0f7fb503e", + "font-synthesis-02.html": [ + "59243c4cb7a8ad36cbfe68e29326e14f2faa4a5f", [ null, [ [ - "/css/css-flexbox/flexbox_flex-unitless-basis-ref.html", + "/css/css-fonts/font-synthesis-02-ref.html", "==" ] ], {} ] ], - "flexbox_flex-0-0-N-shrink.html": [ - "f643048aa3493e0cc200daa002e664ff09a88b86", + "font-synthesis-03.html": [ + "53cac8ee4019b47ae23c4485cd0d213c9d6d2cdc", [ null, [ [ - "/css/css-flexbox/flexbox_flex-0-0-N-shrink-ref.html", + "/css/css-fonts/font-synthesis-03-ref.html", "==" ] ], {} ] ], - "flexbox_flex-0-0-N-unitless-basis.html": [ - "94a6ccd3a2e3e5af12ad96b5facca9a0f7fb503e", + "font-synthesis-04.html": [ + "908171546927819e643d257fe8c44e6256bbd2e7", [ null, [ [ - "/css/css-flexbox/flexbox_flex-unitless-basis-ref.html", + "/css/css-fonts/font-synthesis-04-ref.html", "==" ] ], {} ] ], - "flexbox_flex-0-0-N.html": [ - "412781bb34a9a3219b9973f2386eecb0c325872f", + "font-synthesis-05.html": [ + "e521e6c67cf2c69d32c31bab763ca9a644bc7766", [ null, [ [ - "/css/css-flexbox/flexbox_flex-0-0-N-ref.html", + "/css/css-fonts/font-synthesis-05-ref.html", "==" ] ], {} ] ], - "flexbox_flex-0-0-Npercent-shrink.html": [ - "cb3ebc351c2621435e458b428bd5bba8161fe6c5", + "font-synthesis-06.html": [ + "2e190d1b99e50897d18da393f3aae49d41edb12c", [ null, [ [ - "/css/css-flexbox/flexbox_flex-0-0-Npercent-shrink-ref.html", + "/css/css-fonts/font-synthesis-06-ref.html", "==" ] ], {} ] ], - "flexbox_flex-0-0-Npercent.html": [ - "1b2fd80bf9f3b9d80046cc7dfcc8df76b12ba022", + "font-synthesis-07.html": [ + "8f8572412df46c92aecf98092dcd65a47e4abb75", [ null, [ [ - "/css/css-flexbox/flexbox_flex-0-0-Npercent-ref.html", + "/css/css-fonts/font-synthesis-07-ref.html", "==" ] ], {} ] ], - "flexbox_flex-0-0-auto-shrink.html": [ - "d857151cd7e7768cbe7ff5f5146abfc8568bd88e", + "font-synthesis-08.html": [ + "b3de1afcaee681b7e79969b325fc6bf98de4ec1c", [ null, [ [ - "/css/css-flexbox/flexbox_flex-0-0-auto-shrink-ref.html", + "/css/css-fonts/font-synthesis-08-ref.html", "==" ] ], {} ] ], - "flexbox_flex-0-0-auto.html": [ - "90e5cb12ae4936f6af1a4df2f996c7ccf1d3ae8a", + "font-synthesis-position-001.html": [ + "1ed13f67c1950f3abf4b599c2b58ad1b0db3d169", [ null, [ [ - "/css/css-flexbox/flexbox_flex-0-0-auto-ref.html", + "/css/css-fonts/font-synthesis-position-001-ref.html", "==" ] ], {} ] ], - "flexbox_flex-0-0.html": [ - "f8b5289f651927a49468a49e04e3d7482e882585", + "font-synthesis-small-caps-first-letter.html": [ + "9e31777c73af5763c8c093fd6820becab033fe2a", [ null, [ [ - "/css/css-flexbox/flexbox_flex-0-0-0-ref.html", + "/css/css-fonts/font-synthesis-small-caps-first-letter-ref.html", "==" ] ], {} ] ], - "flexbox_flex-0-1-0-unitless.html": [ - "e04ca3e8a3560ba7060886edca631bffa289c969", + "font-synthesis-small-caps-first-line.html": [ + "77d66e58d8a8a3a58ccb352fad6ce9c71e3297a2", [ null, [ [ - "/css/css-flexbox/flexbox_flex-0-1-0-ref.html", + "/css/css-fonts/font-synthesis-small-caps-first-line-ref.html", "==" ] ], {} ] ], - "flexbox_flex-0-1-0.html": [ - "0dc6165693aaedba2184ba61006c3b68fc07d344", + "font-synthesis-small-caps-not-applied.html": [ + "7e05b012ed03526b93ae2e3f221dd6b9e8b94868", [ null, [ [ - "/css/css-flexbox/flexbox_flex-0-1-0-ref.html", + "/css/css-fonts/font-synthesis-small-caps-not-applied-ref.html", "==" ] ], {} ] ], - "flexbox_flex-0-1-1-unitless-basis.html": [ - "6863882a75183215da822f166e804c65cbc6af09", + "font-synthesis-small-caps.html": [ + "953ebf5a3a3bf5d69a6ecfd3480b09a07410beb5", [ null, [ [ - "/css/css-flexbox/flexbox_flex-unitless-basis-ref.html", + "/css/css-fonts/font-synthesis-small-caps-ref.html", "==" ] ], {} ] ], - "flexbox_flex-0-1-N-shrink.html": [ - "05016e664779219b63ed59ea88b1ae2e4fb4f5e3", + "font-synthesis-style-binary.html": [ + "1391d9738611e204a3b720dcd378bb7587db3b7d", [ null, [ [ - "/css/css-flexbox/flexbox_flex-0-1-N-shrink-ref.html", + "/css/css-fonts/font-synthesis-style-binary-ref.html", "==" ] ], {} ] ], - "flexbox_flex-0-1-N-unitless-basis.html": [ - "0f8e618227d88c1aa5849cf921a4db669625ccf9", + "font-synthesis-style-first-letter.html": [ + "1296baf05f9c430cda6c52e5a63e813c79862b9a", [ null, [ [ - "/css/css-flexbox/flexbox_flex-unitless-basis-ref.html", + "/css/css-fonts/font-synthesis-style-first-letter-ref.html", "==" ] ], {} ] ], - "flexbox_flex-0-1-N.html": [ - "0d358efc30293510f04bb15c79c25133bb4d937e", + "font-synthesis-style-first-line.html": [ + "147c8eb7ff85a5af873e03aaba297e09909e418e", [ null, [ [ - "/css/css-flexbox/flexbox_flex-0-1-N-ref.html", + "/css/css-fonts/font-synthesis-style-first-line-ref.html", "==" ] ], {} ] ], - "flexbox_flex-0-1-Npercent-shrink.html": [ - "4504543fab6183aa1ecac45512dcae7edd24b0b4", + "font-synthesis-style.html": [ + "2970e377ed408c765a0f097286eea9fcb00624dc", [ null, [ [ - "/css/css-flexbox/flexbox_flex-0-1-Npercent-shrink-ref.html", + "/css/css-fonts/font-synthesis-style-ref.html", "==" ] ], {} ] ], - "flexbox_flex-0-1-Npercent.html": [ - "be8354fb7b2553e437c0822f63c5f4a4767bbddb", + "font-synthesis-weight-binary.html": [ + "3af12a4f4eb1050565b990e2aea9b8ce4295b973", [ null, [ [ - "/css/css-flexbox/flexbox_flex-0-1-Npercent-ref.html", + "/css/css-fonts/font-synthesis-weight-binary-ref.html", "==" ] ], {} ] ], - "flexbox_flex-0-1-auto-shrink.html": [ - "dddb127caafe2423a23a45203b316c2efaf235d2", + "font-synthesis-weight-first-letter.html": [ + "3d60b2a22847e1b99f1ee53d27c231a41bbc60da", [ null, [ [ - "/css/css-flexbox/flexbox_flex-0-1-auto-shrink-ref.html", + "/css/css-fonts/font-synthesis-weight-first-letter-ref.html", "==" ] ], {} ] ], - "flexbox_flex-0-1-auto.html": [ - "5a3c8a7c458f87b7de77e73803ef5a788323d78c", + "font-synthesis-weight-first-line.html": [ + "5093a9e17b667bb7995cc1f9d234439cf76e76e6", [ null, [ [ - "/css/css-flexbox/flexbox_flex-0-1-auto-ref.html", + "/css/css-fonts/font-synthesis-weight-first-line-ref.html", "==" ] ], {} ] ], - "flexbox_flex-0-1.html": [ - "329ee10bcbbaef861211a8e3a6957e4b6e6a9a1e", + "font-synthesis-weight.html": [ + "6213817edf6052fddbd63c63b820edd307fcfee9", [ null, [ [ - "/css/css-flexbox/flexbox_flex-0-1-0-ref.html", + "/css/css-fonts/font-synthesis-weight-ref.html", "==" ] ], {} ] ], - "flexbox_flex-0-N-0-unitless.html": [ - "de605b3ef2247f7ca48708fd498ad1916666505c", + "font-variant-01.html": [ + "ed69967d3b08219d6e430b967b608a040cd356e0", [ null, [ [ - "/css/css-flexbox/flexbox_flex-0-N-0-ref.html", + "/css/css-fonts/font-variant-01-ref.html", "==" ] ], {} ] ], - "flexbox_flex-0-N-0.html": [ - "321fa44041cd3b001591b1ed66aae5b169dcf548", + "font-variant-02.html": [ + "acda863b7d1b8beac7329071c7bb0412b73673e7", [ null, [ [ - "/css/css-flexbox/flexbox_flex-0-N-0-ref.html", + "/css/css-fonts/font-variant-02-ref.html", "==" ] ], {} ] ], - "flexbox_flex-0-N-N-shrink.html": [ - "4f76687cf9f3f7ece1933a45437495d37a11765a", + "font-variant-03.html": [ + "7e130cc831747f919a515e6a7e67dfe13690ea5c", [ null, [ [ - "/css/css-flexbox/flexbox_flex-0-N-N-shrink-ref.html", + "/css/css-fonts/font-variant-03-ref.html", "==" ] ], {} ] ], - "flexbox_flex-0-N-N.html": [ - "dc91af05b48b657e0b85ff7469af6c2e08e3ad21", + "font-variant-04.html": [ + "be426398eeea422ddcca29ecc0ef96749a2c0f53", [ null, [ [ - "/css/css-flexbox/flexbox_flex-0-N-N-ref.html", + "/css/css-fonts/font-variant-04-ref.html", "==" ] ], {} ] ], - "flexbox_flex-0-N-Npercent-shrink.html": [ - "df275096d15eee96417e332129889ac2f9d578ea", + "font-variant-alternates-01.html": [ + "82c465fed55712260abf113d27a6f4cf9fc9dcfd", [ null, [ [ - "/css/css-flexbox/flexbox_flex-0-N-Npercent-shrink-ref.html", + "/css/css-fonts/font-variant-alternates-01-ref.html", "==" ] ], {} ] ], - "flexbox_flex-0-N-Npercent.html": [ - "3f739eb39c4fb44f89be71d0c30e5692e00bb0a0", + "font-variant-alternates-02.html": [ + "9610508177d93cb6683052cdc1759a4e2dd1f7be", [ null, [ [ - "/css/css-flexbox/flexbox_flex-0-N-Npercent-ref.html", + "/css/css-fonts/font-variant-alternates-02-ref.html", "==" ] ], {} ] ], - "flexbox_flex-0-N-auto-shrink.html": [ - "1fad1c1e411785abc97c6e6075a1e0f0cb50b37a", + "font-variant-alternates-03.html": [ + "1027363726771e9619a005be0d4ad125ed34fa95", [ null, [ [ - "/css/css-flexbox/flexbox_flex-0-N-auto-shrink-ref.html", + "/css/css-fonts/font-variant-alternates-03-ref.html", "==" ] ], {} ] ], - "flexbox_flex-0-N-auto.html": [ - "3d5948fc66640ef193cefa9462216866ff28be86", + "font-variant-alternates-04.html": [ + "abd361bbf8fa4ce2f7f575589e2f9c608654f8b4", [ null, [ [ - "/css/css-flexbox/flexbox_flex-0-N-auto-ref.html", + "/css/css-fonts/font-variant-alternates-04-ref.html", "==" ] ], {} ] ], - "flexbox_flex-0-N.html": [ - "356a36dda165f9f6d9c3245b0db0e8e8ca64131a", + "font-variant-alternates-05.html": [ + "5ea6450da6a2da07d43d1fe3e7401f9673b70182", [ null, [ [ - "/css/css-flexbox/flexbox_flex-0-N-0-ref.html", + "/css/css-fonts/font-variant-alternates-05-ref.html", "==" ] ], {} ] ], - "flexbox_flex-0-auto.html": [ - "e56a8fa32a838aff95d0356b6e670598a0815480", + "font-variant-alternates-06.html": [ + "c3f315723cbbc8c7e7affe3d973c221d4571a512", [ null, [ [ - "/css/css-flexbox/flexbox_flex-initial-ref.html", + "/css/css-fonts/font-variant-alternates-06-ref.html", "==" ] ], {} ] ], - "flexbox_flex-1-0-0-unitless.html": [ - "8c36acd2ee88cf036bb10c915c2842923e73647f", + "font-variant-alternates-07.html": [ + "fdcba5f699d39616e975e9cdb5a65270b2aa4a05", [ null, [ [ - "/css/css-flexbox/flexbox_flex-1-0-0-ref.html", + "/css/css-fonts/font-variant-alternates-07-ref.html", "==" ] ], {} ] ], - "flexbox_flex-1-0-0.html": [ - "7761004699ced59a236c4c89de96a4c13d97517a", + "font-variant-alternates-08.html": [ + "4ec305b59d72e86718719503afa70c85d02aebd6", [ null, [ [ - "/css/css-flexbox/flexbox_flex-1-0-0-ref.html", + "/css/css-fonts/font-variant-alternates-08-ref.html", "==" ] ], {} ] ], - "flexbox_flex-1-0-N-shrink.html": [ - "890ac0c039162c168c0c6e8fc4f13a0e2ec5ca0b", + "font-variant-alternates-09.html": [ + "2c67b1439e6de429e3749466ab4714898367a58c", [ null, [ [ - "/css/css-flexbox/flexbox_flex-1-0-N-shrink-ref.html", + "/css/css-fonts/font-variant-alternates-09-ref.html", "==" ] ], {} ] ], - "flexbox_flex-1-0-N.html": [ - "65ab66e1b246b83d5028553ed74866846abd3672", + "font-variant-alternates-10.html": [ + "ac8341d8abaf19e49f935885c2128d143015d19b", [ null, [ [ - "/css/css-flexbox/flexbox_flex-1-0-N-ref.html", + "/css/css-fonts/font-variant-alternates-10-ref.html", "==" ] ], {} ] ], - "flexbox_flex-1-0-Npercent-shrink.html": [ - "c22d8b450095cdf843a59b558c6d7a208ac31970", + "font-variant-alternates-11.html": [ + "2e73fc07aec7a43ac03359126eda7bcf8c1b09bb", [ null, [ [ - "/css/css-flexbox/flexbox_flex-1-0-Npercent-shrink-ref.html", + "/css/css-fonts/font-variant-alternates-11-ref.html", "==" ] ], {} ] ], - "flexbox_flex-1-0-Npercent.html": [ - "6b84d4509aa4e5b8780de7bf7bc070248af911a1", + "font-variant-alternates-12.html": [ + "0f2b9d317b95a41c82f3a2d792f66c86146822fb", [ null, [ [ - "/css/css-flexbox/flexbox_flex-1-0-Npercent-ref.html", + "/css/css-fonts/font-variant-alternates-12-ref.html", "==" ] ], {} ] ], - "flexbox_flex-1-0-auto-shrink.html": [ - "c8055f59eac48a8f2b8bf1836c6ada9575c4ea4d", + "font-variant-alternates-13.html": [ + "872c7dd82725d95135d3658afd19874a940bea1a", [ null, [ [ - "/css/css-flexbox/flexbox_flex-1-0-auto-shrink-ref.html", + "/css/css-fonts/font-variant-alternates-13-ref.html", "==" ] ], {} ] ], - "flexbox_flex-1-0-auto.html": [ - "108181a9d773b68030ec5235369141d23d008d58", + "font-variant-alternates-14.html": [ + "45c2d02302d5a955f4c1d7998f0b7a0083a414fe", [ null, [ [ - "/css/css-flexbox/flexbox_flex-1-0-auto-ref.html", + "/css/css-fonts/font-variant-alternates-14-ref.html", "==" ] ], {} ] ], - "flexbox_flex-1-0.html": [ - "b11bef40db96fa05bf76562e74b828ab875ca574", + "font-variant-alternates-15.html": [ + "58a58d3cd153cdd6e3c50fbc2484ad44c9a03ba2", [ null, [ [ - "/css/css-flexbox/flexbox_flex-1-0-0-ref.html", + "/css/css-fonts/font-variant-alternates-15-ref.html", "==" ] ], {} ] ], - "flexbox_flex-1-1-0-unitless.html": [ - "17f6a838072f0b296589091d5b7740c1c9130d5b", + "font-variant-alternates-16.html": [ + "8353073ae1dd9a52de8ca4a1d20c22f96e3a8493", [ null, [ [ - "/css/css-flexbox/flexbox_flex-1-1-0-ref.html", + "/css/css-fonts/font-variant-alternates-16-ref.html", "==" ] ], {} ] ], - "flexbox_flex-1-1-0.html": [ - "a8e21f44a7f2200a4e1c80da0f202d87ba4501a0", + "font-variant-alternates-17.html": [ + "799bf653f8e322bff31c9d12f70877b850f6409e", [ null, [ [ - "/css/css-flexbox/flexbox_flex-1-1-0-ref.html", + "/css/css-fonts/font-variant-alternates-17-ref.html", "==" ] ], {} ] ], - "flexbox_flex-1-1-N-shrink.html": [ - "333193b1fa32ed1ae2c931791702dc1d1c4d2d60", + "font-variant-alternates-18.html": [ + "26e1ecd0c222260114afee112e391d46481b9fc9", [ null, [ [ - "/css/css-flexbox/flexbox_flex-1-1-N-shrink-ref.html", + "/css/css-fonts/font-variant-alternates-18-ref.html", "==" ] ], {} ] ], - "flexbox_flex-1-1-N.html": [ - "0761c42723d6071f94f4f6e5b43fbf9aee60e04b", + "font-variant-alternates-19.html": [ + "6e9caf2e47cf8875a7756c8c2ce0ac7be2b22e26", [ null, [ [ - "/css/css-flexbox/flexbox_flex-1-1-N-ref.html", + "/css/css-fonts/font-variant-alternates-19-ref.html", "==" ] ], {} ] ], - "flexbox_flex-1-1-Npercent-shrink.html": [ - "b7fbc8632716c73ac7f4c657ed818bf0ba5b7de4", + "font-variant-alternates-layers.html": [ + "2cd60985da3876eebfdac16fb1fe1f819f267b8b", [ null, [ [ - "/css/css-flexbox/flexbox_flex-1-1-Npercent-shrink-ref.html", + "/css/css-fonts/font-variant-alternates-layers-ref.html", "==" ] ], {} ] ], - "flexbox_flex-1-1-Npercent.html": [ - "3ca032fb6283e117639e53bac03e321b7731cf72", + "font-variant-caps-01.html": [ + "9e96486e33f8ae964e1de2118218ecc88f1bff29", [ null, [ [ - "/css/css-flexbox/flexbox_flex-1-1-Npercent-ref.html", + "/css/css-fonts/font-variant-caps-01-ref.html", "==" ] ], {} ] ], - "flexbox_flex-1-1-auto-shrink.html": [ - "4c3b14d2394764d18d89a76b79ed3270750b5c87", + "font-variant-caps-02.html": [ + "1e73873f6bbc5e1f3f6d33eaeec72099787018d5", [ null, [ [ - "/css/css-flexbox/flexbox_flex-1-1-auto-shrink-ref.html", + "/css/css-fonts/font-variant-caps-02-ref.html", "==" ] ], {} ] ], - "flexbox_flex-1-1-auto.html": [ - "3a1efa8d16e21a3676389ed5a54d0fa55e3389b1", + "font-variant-caps-03.html": [ + "3aaabc71113b5728abcbfbcbb47e3371bb5bcf76", [ null, [ [ - "/css/css-flexbox/flexbox_flex-1-1-auto-ref.html", + "/css/css-fonts/font-variant-caps-03-ref.html", "==" ] ], {} ] ], - "flexbox_flex-1-1.html": [ - "8863c80db224703062144a4aebeb98add9304305", + "font-variant-caps-04.html": [ + "69390e3602fa1af9e4c7120c4ca2ee786afba259", [ null, [ [ - "/css/css-flexbox/flexbox_flex-1-1-0-ref.html", + "/css/css-fonts/font-variant-caps-04-ref.html", "==" ] ], {} ] ], - "flexbox_flex-1-N-0-unitless.html": [ - "e94509a14b1569e1fddb3a8b291043969f76ea4e", + "font-variant-caps-05.html": [ + "640ab4d8c16b3409392d52e6bd952aeda81506ab", [ null, [ [ - "/css/css-flexbox/flexbox_flex-1-N-0-ref.html", + "/css/css-fonts/font-variant-caps-05-ref.html", "==" ] ], {} ] ], - "flexbox_flex-1-N-0.html": [ - "a4dbcf81c2f60c5be234330633b4a93545cc681d", + "font-variant-caps-06.html": [ + "e7793381e741fe9d8e0db0a736a56bfb96630285", [ null, [ [ - "/css/css-flexbox/flexbox_flex-1-N-0-ref.html", + "/css/css-fonts/font-variant-caps-06-ref.html", "==" ] ], {} ] ], - "flexbox_flex-1-N-N-shrink.html": [ - "1fe35c7a3e22702c2f61c53f94c3b680f19b0c67", + "font-variant-caps-07.html": [ + "b631f9638e215e144eb08af438d5b77b55b861fe", [ null, [ [ - "/css/css-flexbox/flexbox_flex-1-N-N-shrink-ref.html", + "/css/css-fonts/font-variant-caps-07-ref.html", "==" ] ], {} ] ], - "flexbox_flex-1-N-N.html": [ - "291f3b43bdda5aba8497c67f19373eab2c1609c2", + "font-variant-caps.html": [ + "7d89802f1cf0dd4f2e197f025d183c5bc8e4aa35", [ null, [ [ - "/css/css-flexbox/flexbox_flex-1-N-N-ref.html", + "/css/css-fonts/font-variant-caps-ref.html", "==" ] ], {} ] ], - "flexbox_flex-1-N-Npercent-shrink.html": [ - "11d1f81b96252effb7cff35aa99d8845e0cd00a2", + "font-variant-east-asian-01.html": [ + "ce9917c76e4990540e66fb088231f8bd8d6a942b", [ null, [ [ - "/css/css-flexbox/flexbox_flex-1-N-Npercent-shrink-ref.html", + "/css/css-fonts/font-variant-east-asian-01-ref.html", "==" ] ], {} ] ], - "flexbox_flex-1-N-Npercent.html": [ - "49c2d7fda8501f68a7bc1b699a48350c8f2e8ed1", + "font-variant-east-asian-02.html": [ + "392aee4ba767192fc7ea841dab7cbf932ae5e8f1", [ null, [ [ - "/css/css-flexbox/flexbox_flex-1-N-Npercent-ref.html", + "/css/css-fonts/font-variant-east-asian-02-ref.html", "==" ] ], {} ] ], - "flexbox_flex-1-N-auto-shrink.html": [ - "bdd64e7f3e1746664286a8193ce217c979c6a4bb", + "font-variant-east-asian-03.html": [ + "fbee1ba488211d94ae141f4772595f10fde7bc75", [ null, [ [ - "/css/css-flexbox/flexbox_flex-1-N-auto-shrink-ref.html", + "/css/css-fonts/font-variant-east-asian-03-ref.html", "==" ] ], {} ] ], - "flexbox_flex-1-N-auto.html": [ - "4abd0f2dda074eef2b7cffb0d3a016990965d737", + "font-variant-east-asian-04.html": [ + "7194fe47f4a5b315488e4b1838de19084df74c31", [ null, [ [ - "/css/css-flexbox/flexbox_flex-1-N-auto-ref.html", + "/css/css-fonts/font-variant-east-asian-04-ref.html", "==" ] ], {} ] ], - "flexbox_flex-1-N.html": [ - "73d64b652874b276790cd2e23ec46baf588e8976", + "font-variant-east-asian-05.html": [ + "e41730b6fd7faba2f5f8fdf88ca4361f03b351ac", [ null, [ [ - "/css/css-flexbox/flexbox_flex-1-N-0-ref.html", + "/css/css-fonts/font-variant-east-asian-05-ref.html", "==" ] ], {} ] ], - "flexbox_flex-N-0-0-unitless.html": [ - "bdb60617f6fcd32e57ad2c98c4434bdb771f4d9b", + "font-variant-east-asian-06.html": [ + "df18dac0090482590bcbef9237c9c36403799c9b", [ null, [ [ - "/css/css-flexbox/flexbox_flex-N-0-0-ref.html", + "/css/css-fonts/font-variant-east-asian-06-ref.html", "==" ] ], {} ] ], - "flexbox_flex-N-0-0.html": [ - "720388b74d458af9e5b6b2a581c0b43596bddc8d", + "font-variant-east-asian-07.html": [ + "c1825175288178203732e077ab2fa8f3dd173563", [ null, [ [ - "/css/css-flexbox/flexbox_flex-N-0-0-ref.html", + "/css/css-fonts/font-variant-east-asian-07-ref.html", "==" ] ], {} ] ], - "flexbox_flex-N-0-N-shrink.html": [ - "5d2193a02b2a3c5b2ec7650de3f9dbc143167c13", + "font-variant-east-asian-08.html": [ + "ef957317e395dc2d554a0eb942bbd704e080a26f", [ null, [ [ - "/css/css-flexbox/flexbox_flex-N-0-N-shrink-ref.html", + "/css/css-fonts/font-variant-east-asian-08-ref.html", "==" ] ], {} ] ], - "flexbox_flex-N-0-N.html": [ - "58dbbaaac04aef7c431b840ed2416a178602a342", + "font-variant-east-asian-09.html": [ + "5498eb445a9a1e33502c74579547de248b4d9437", [ null, [ [ - "/css/css-flexbox/flexbox_flex-N-0-N-ref.html", + "/css/css-fonts/font-variant-east-asian-09-ref.html", "==" ] ], {} ] ], - "flexbox_flex-N-0-Npercent-shrink.html": [ - "7ecf22ba67ef9664bc46644d8944a33967d09cf5", + "font-variant-east-asian-10.html": [ + "867fd21643069f24cfc48005bb4bbc50ed1795ae", [ null, [ [ - "/css/css-flexbox/flexbox_flex-N-0-Npercent-shrink-ref.html", + "/css/css-fonts/font-variant-east-asian-10-ref.html", "==" ] ], {} ] ], - "flexbox_flex-N-0-Npercent.html": [ - "d8d8761f6d2feb59f53e792cbffbe94adb229a08", + "font-variant-east-asian.html": [ + "3fbb43e1cb2b804ae0f1f0dd6c13635bc8db8212", [ null, [ [ - "/css/css-flexbox/flexbox_flex-N-0-Npercent-ref.html", + "/css/css-fonts/font-variant-east-asian-ref.html", "==" ] ], {} ] ], - "flexbox_flex-N-0-auto-shrink.html": [ - "2060a67884a62fd2b6a53ffd52972384960a83ce", + "font-variant-emoji-003.html": [ + "e197afa7c40f6537a7ab3c57c7143b52126d139f", [ null, [ [ - "/css/css-flexbox/flexbox_flex-N-0-auto-shrink-ref.html", + "/css/css-fonts/font-variant-emoji-003-ref.html", "==" ] ], {} ] ], - "flexbox_flex-N-0-auto.html": [ - "b05f948e8d3442e24ccdd9ede7a18cdfbf31ad4f", + "font-variant-emoji-004.html": [ + "d76828dff01d5fab2b374656caab1003d2f84840", [ null, [ [ - "/css/css-flexbox/flexbox_flex-N-0-auto-ref.html", + "/css/css-fonts/font-variant-emoji-004-ref.html", "==" ] ], {} ] ], - "flexbox_flex-N-0.html": [ - "46e051bc63b572102d3ea39fe1c38632b95a61a1", + "font-variant-emoji-1.html": [ + "53cf539edd8b61a7f08f8b95ae83f4f7a5179308", [ null, [ [ - "/css/css-flexbox/flexbox_flex-N-0-0-ref.html", - "==" + "/css/css-fonts/font-variant-emoji-1-notref.html", + "!=" ] ], {} ] ], - "flexbox_flex-N-1-0-unitless.html": [ - "5fcd2b0d54df13567f92ade53efce585d66957c2", + "font-variant-emoji-2.html": [ + "cce4b0360476ee1f5129b211f4d41e84f404d7ea", [ null, [ [ - "/css/css-flexbox/flexbox_flex-N-1-0-ref.html", + "/css/css-fonts/font-variant-emoji-2-ref.html", "==" ] ], {} ] ], - "flexbox_flex-N-1-0.html": [ - "7e7643d57aff5a2c00a77c55144836bfcf8404f2", + "font-variant-ligatures-01.html": [ + "519bfd4bf43e5ec09968602bc88257482cab83d7", [ null, [ [ - "/css/css-flexbox/flexbox_flex-N-1-0-ref.html", + "/css/css-fonts/font-variant-ligatures-01-ref.html", "==" ] ], {} ] ], - "flexbox_flex-N-1-N-shrink.html": [ - "26050d96c228d5f2e56f2d1b0abea050f5677ad2", + "font-variant-ligatures-02.html": [ + "46a20216b42dbd3b952601642b40841f2ad687d4", [ null, [ [ - "/css/css-flexbox/flexbox_flex-N-1-N-shrink-ref.html", + "/css/css-fonts/font-variant-ligatures-02-ref.html", "==" ] ], {} ] ], - "flexbox_flex-N-1-N.html": [ - "bcc04113068ac653df3eda62d7bec694a966fd94", + "font-variant-ligatures-03.html": [ + "c783cde23d18bbb3082dd5964024a7ca3f6c5f22", [ null, [ [ - "/css/css-flexbox/flexbox_flex-N-1-N-ref.html", + "/css/css-fonts/font-variant-ligatures-03-ref.html", "==" ] ], {} ] ], - "flexbox_flex-N-1-Npercent-shrink.html": [ - "d620ef1151bec87d97a03e06b7cf2c5a39ce05c3", + "font-variant-ligatures-04.html": [ + "818454825da491e780f07c6c1cec6c15a44c7231", [ null, [ [ - "/css/css-flexbox/flexbox_flex-N-1-Npercent-shrink-ref.html", + "/css/css-fonts/font-variant-ligatures-04-ref.html", "==" ] ], {} ] ], - "flexbox_flex-N-1-Npercent.html": [ - "fee9bbf95bec4df0825b558b7015bb6dfaace297", + "font-variant-ligatures-05.html": [ + "fc1d9ca782c2bc59681044794bd415ebcedca70a", [ null, [ [ - "/css/css-flexbox/flexbox_flex-N-1-Npercent-ref.html", + "/css/css-fonts/font-variant-ligatures-05-ref.html", "==" ] ], {} ] ], - "flexbox_flex-N-1-auto-shrink.html": [ - "addb21384f5b69150a9b6390e9a93fa31cfb8645", + "font-variant-ligatures-06.html": [ + "749eb4546259c164bea683a978a2a037d3535d41", [ null, [ [ - "/css/css-flexbox/flexbox_flex-N-1-auto-shrink-ref.html", + "/css/css-fonts/font-variant-ligatures-06-ref.html", "==" ] ], {} ] ], - "flexbox_flex-N-1-auto.html": [ - "67cb3a2996248543388a65ae8a6914abf11a6ae9", + "font-variant-ligatures-07.html": [ + "0c617a7014e30ab9dc648331c50f9cb42024cf7d", [ null, [ [ - "/css/css-flexbox/flexbox_flex-N-1-auto-ref.html", + "/css/css-fonts/font-variant-ligatures-07-ref.html", "==" ] ], {} ] ], - "flexbox_flex-N-1.html": [ - "655493168e2bed6cd3f3013b56ef2130b7a6b14d", + "font-variant-ligatures-08.html": [ + "a1e21aab851e1ab8b3e2e9b0a0956507ec550173", [ null, [ [ - "/css/css-flexbox/flexbox_flex-N-1-0-ref.html", + "/css/css-fonts/font-variant-ligatures-08-ref.html", "==" ] ], {} ] ], - "flexbox_flex-N-N-0-unitless.html": [ - "ee655252ccf22dfae33c45629733bb4898f1aae5", + "font-variant-ligatures-09.html": [ + "8fce03c4f0feee8aab588cf446f01cf62eef1086", [ null, [ [ - "/css/css-flexbox/flexbox_flex-N-N-0-ref.html", + "/css/css-fonts/font-variant-ligatures-09-ref.html", "==" ] ], {} ] ], - "flexbox_flex-N-N-0.html": [ - "b6053669eb0e32d3adba61605037da42de9f16e0", + "font-variant-ligatures-10.html": [ + "b39cb5b775db857f2510ecf342bb544e5b97292a", [ null, [ [ - "/css/css-flexbox/flexbox_flex-N-N-0-ref.html", + "/css/css-fonts/font-variant-ligatures-10-ref.html", "==" ] ], {} ] ], - "flexbox_flex-N-N-N-shrink.html": [ - "f82bdd746eff2eca0a3c9a1facfa715f1812ec1b", + "font-variant-ligatures-11.optional.html": [ + "f7cf0ecd08968e604a239ea4bdac3d1c01869a47", [ null, [ [ - "/css/css-flexbox/flexbox_flex-N-N-N-shrink-ref.html", + "/css/css-fonts/font-variant-ligatures-11-ref.html", "==" ] ], {} ] ], - "flexbox_flex-N-N-N.html": [ - "f7f1b5acf2570e559fc1176e59abd99956dfc057", + "font-variant-ligatures.html": [ + "ff217e279ff102d2d1c88a04f0593859c6b19199", [ null, [ [ - "/css/css-flexbox/flexbox_flex-N-N-N-ref.html", + "/css/css-fonts/font-variant-ligatures-ref.html", "==" ] ], {} ] ], - "flexbox_flex-N-N-Npercent-shrink.html": [ - "a018f73544751fa1dcfb72d795f2aa53036a3ba1", + "font-variant-numeric-01.html": [ + "9a45c446ff209ad4bf8f71581ec9465e65e210f1", [ null, [ [ - "/css/css-flexbox/flexbox_flex-N-N-Npercent-shrink-ref.html", + "/css/css-fonts/font-variant-numeric-01-ref.html", "==" ] ], {} ] ], - "flexbox_flex-N-N-Npercent.html": [ - "ed49973a252b208f096ab55341648ea9e0d8100d", + "font-variant-numeric-02.html": [ + "254d8140de38e8cc605c61ad6871b5fa304f5168", [ null, [ [ - "/css/css-flexbox/flexbox_flex-N-N-Npercent-ref.html", + "/css/css-fonts/font-variant-numeric-02-ref.html", "==" ] ], {} ] ], - "flexbox_flex-N-N-auto-shrink.html": [ - "9fec902ce518846b167039d1b500a1512881e805", + "font-variant-numeric-03.html": [ + "f2f0f5d105ab46196b22279545ca22fd91b6b37d", [ null, [ [ - "/css/css-flexbox/flexbox_flex-N-N-auto-shrink-ref.html", + "/css/css-fonts/font-variant-numeric-03-ref.html", "==" ] ], {} ] ], - "flexbox_flex-N-N-auto.html": [ - "29d50462e101bbe74c3e4616bb5b344cf6c7504e", + "font-variant-numeric-04.html": [ + "e322b63e20f7a733c620e053accda94d9be7b2ae", [ null, [ [ - "/css/css-flexbox/flexbox_flex-N-N-auto-ref.html", + "/css/css-fonts/font-variant-numeric-04-ref.html", "==" ] ], {} ] ], - "flexbox_flex-N-N.html": [ - "3b26bd25507c7820e828816effca33b04664cf56", + "font-variant-numeric-05.html": [ + "a9eabe6a75a3a01b5f5d067c0c5469480501b942", [ null, [ [ - "/css/css-flexbox/flexbox_flex-N-N-0-ref.html", + "/css/css-fonts/font-variant-numeric-05-ref.html", "==" ] ], {} ] ], - "flexbox_flex-auto.html": [ - "bfef8ffa46268b0ac262c821c715cf1ce0ec064f", + "font-variant-numeric-06.html": [ + "d3777d8a17ff398d083b6038755c807c7f52e104", [ null, [ [ - "/css/css-flexbox/flexbox_flex-auto-ref.html", + "/css/css-fonts/font-variant-numeric-06-ref.html", "==" ] ], {} ] ], - "flexbox_flex-basis-shrink.html": [ - "25856c77ef341c558f5d1ebf2838d8bd61d5d9d2", + "font-variant-numeric-07.html": [ + "ed0c23eeca6ccf2e0a1e2170beb64e84360f9333", [ null, [ [ - "/css/css-flexbox/flexbox_flex-basis-shrink-ref.html", + "/css/css-fonts/font-variant-numeric-07-ref.html", "==" ] ], {} ] ], - "flexbox_flex-basis.html": [ - "4806917151f917947840926613b57bbd40d30aaf", + "font-variant-numeric-08.html": [ + "5ff0985fce8863b5678e49610e84eb84030b0dbf", [ null, [ [ - "/css/css-flexbox/flexbox_flex-basis-ref.html", + "/css/css-fonts/font-variant-numeric-08-ref.html", "==" ] ], {} ] ], - "flexbox_flex-formatting-interop.html": [ - "a6ef26fa27de06ba922431ed61ccd905572d7863", + "font-variant-numeric-09.html": [ + "48926a78a1c14c6820413002dd9a3cf34ea19000", [ null, [ [ - "/css/css-flexbox/flexbox_flex-formatting-interop-ref.html", + "/css/css-fonts/font-variant-numeric-09-ref.html", "==" ] ], {} ] ], - "flexbox_flex-initial-2.html": [ - "79c58207a3f9837552ab49337d0633489fdd2c75", + "font-variant-numeric.html": [ + "a2a6c32826bda5c7bd42706dbc811d128c303338", [ null, [ [ - "/css/css-flexbox/flexbox_flex-initial-2-ref.html", + "/css/css-fonts/font-variant-numeric-ref.html", "==" ] ], {} ] ], - "flexbox_flex-initial.html": [ - "b27171d8e070a876142ea05d7bc1d93666bfbfd9", + "font-variant-position-01.html": [ + "17a0e417b1dd3556019901be792713a1c09e0ee9", [ null, [ [ - "/css/css-flexbox/flexbox_flex-initial-ref.html", + "/css/css-fonts/font-variant-position-01-ref.html", "==" ] ], {} ] ], - "flexbox_flex-natural-mixed-basis-auto.html": [ - "5cac508f9a9d129d97ddd8ba20796bcbbc703e72", + "font-variant-position-02.html": [ + "bf4f813fac793adffa4c9e4a678857b3d5f690e8", [ null, [ [ - "/css/css-flexbox/flexbox_flex-natural-mixed-basis-auto-ref.html", + "/css/css-fonts/font-variant-position-02-ref.html", "==" ] ], {} ] ], - "flexbox_flex-natural-mixed-basis.html": [ - "cbef001e2c01d9875dd4ab3538f7a1ceaf095a86", + "font-variant-position-03.html": [ + "5c649104b3ddb80c5d32c73fcdf2fef69e186e67", [ null, [ [ - "/css/css-flexbox/flexbox_flex-natural-mixed-basis-ref.html", + "/css/css-fonts/font-variant-position-03-ref.html", "==" ] ], {} ] ], - "flexbox_flex-natural-variable-auto-basis.html": [ - "11fc45dd7de9e7e64f66cff85d8fd51501bc0300", + "font-variant-position-04.html": [ + "de1cbd8779509a602be2032adbd27ce478ee0077", [ null, [ [ - "/css/css-flexbox/flexbox_flex-natural-variable-auto-basis-ref.html", - "==" + "/css/css-fonts/font-variant-position-04-notref.html", + "!=" ] ], {} ] ], - "flexbox_flex-natural-variable-zero-basis.html": [ - "6ea8f29ac90edfdee901d5bbf4aba2462f6ce934", + "font-variant-position-05.html": [ + "f93cb9861732768b5c2ebaacb43be00992d931c2", [ null, [ [ - "/css/css-flexbox/flexbox_flex-natural-variable-zero-basis-ref.html", - "==" + "/css/css-fonts/font-variant-position-05-notref.html", + "!=" ] ], {} ] ], - "flexbox_flex-natural.html": [ - "81521498246e00ba43a7418818efd722e323b9c3", + "font-variant-position.html": [ + "857062407dbdac2fe8ad803a14f48f647461f323", [ null, [ [ - "/css/css-flexbox/flexbox_flex-natural-ref.html", + "/css/css-fonts/font-variant-position-ref.html", "==" ] ], {} ] ], - "flexbox_flex-none-wrappable-content.html": [ - "81fafbf3091b7d8a77c618c311c900fceb3427e5", + "font-weight-bolder-001.xht": [ + "60821ab8092c833a9363eec15b0903c2ddda1ec1", [ null, [ [ - "/css/css-flexbox/flexbox_flex-none-wrappable-content-ref.html", + "/css/css-fonts/font-weight-bolder-001-ref.xht", "==" ] ], {} ] ], - "flexbox_flex-none.html": [ - "2b781a276df23d62218d78a344196d55bd49c161", + "font-weight-lighter-001.xht": [ + "c529c79c757fdd93c99fc848081933d8ab7e13ad", [ null, [ [ - "/css/css-flexbox/flexbox_flex-none-ref.html", + "/css/css-fonts/font-weight-lighter-001-ref.xht", "==" ] ], {} ] ], - "flexbox_flow-column-reverse-wrap-reverse.html": [ - "2b65260306a91df2f398ef67775d6aeec28e1681", + "font-weight-normal-001.xht": [ + "1106b7c92fb9f709fdbd6126df811f8934b43633", [ null, [ [ - "/css/css-flexbox/flexbox_flow-column-reverse-wrap-reverse-ref.html", + "/css/css-fonts/font-weight-normal-001-ref.xht", "==" ] ], {} ] ], - "flexbox_flow-column-reverse-wrap.html": [ - "014bbddc320d8908509150f28f32adcca1f85c77", + "hiragana-katakana-kerning.html": [ + "9d72378581a0e5d96b0611c9bcd9228721030e64", [ null, [ [ - "/css/css-flexbox/flexbox_flow-column-reverse-wrap-ref.html", - "==" + "/css/css-fonts/hiragana-katakana-kerning-notref.html", + "!=" ] ], {} ] ], - "flexbox_flow-column-wrap-reverse.html": [ - "602e0d8933518d5b9c3e2e37657eb0c38c13eded", + "line-gap-override.html": [ + "487fb2ea59d91cc57715a44e33198fc6223c1d68", [ null, [ [ - "/css/css-flexbox/flexbox_flow-column-wrap-reverse-ref.html", + "/css/css-fonts/line-gap-override-ref.html", "==" ] ], {} ] ], - "flexbox_flow-column-wrap.html": [ - "c5b95c20d924884522ce9205a01c596adb5de42b", - [ - null, + "matching": { + "fixed-stretch-style-over-weight.html": [ + "c2b27be120608c1ae7d5da934ed770875dd21a82", [ + null, [ - "/css/css-flexbox/flexbox_flow-column-wrap-ref.html", - "==" - ] - ], - {} - ] - ], - "flexbox_flow-row-wrap-reverse.html": [ - "28d7c343f5294ebd0783f7dd92ee20b186f226fa", - [ - null, + [ + "/css/css-fonts/matching/fixed-stretch-style-over-weight-ref.html", + "==" + ] + ], + {} + ] + ], + "font-unicode-PUA-primary-font.html": [ + "1b03c98e403a2bd7e8a109f3b70d9c29e5f6d98f", [ + null, [ - "/css/css-flexbox/flexbox_flow-row-wrap-reverse-ref.html", - "==" - ] - ], - {} - ] - ], - "flexbox_flow-row-wrap.html": [ - "a1a17abaccb17874597f8bf5c727ccb2ef33079b", - [ - null, + [ + "/css/css-fonts/matching/font-unicode-PUA-primary-font-notref.html", + "!=" + ] + ], + {} + ] + ], + "font-unicode-PUA.html": [ + "9ed897aa006317c2eee63ecd69cc37c068c34217", [ + null, [ - "/css/css-flexbox/flexbox_flow-row-wrap-ref.html", - "==" - ] - ], - {} - ] - ], - "flexbox_generated-flex.html": [ - "b2bb8a3ede7e0a163f74de0a2e316eaf7848420e", - [ - null, + [ + "/css/css-fonts/matching/font-unicode-PUA-ref.html", + "==" + ] + ], + {} + ] + ], + "range-descriptor-reversed.html": [ + "71b424d5fe7f09a4bd5872656ac77fa67713d071", [ + null, [ - "/css/css-flexbox/flexbox_generated-flex-ref.html", - "==" - ] - ], - {} - ] - ], - "flexbox_generated-nested-flex.html": [ - "2a095c16e44530e96ed893edd14aa2c5e600319a", - [ - null, + [ + "/css/css-fonts/matching/range-descriptor-reversed-ref.html", + "==" + ], + [ + "/css/css-fonts/matching/stretch-distance-over-weight-distance-ref.html", + "==" + ] + ], + {} + ] + ], + "stretch-distance-over-weight-distance.html": [ + "e899c8b4d0df867e56a7409adda4dbfafd69260d", [ + null, [ - "/css/css-flexbox/flexbox_generated-flex-ref.html", - "==" - ] - ], - {} - ] - ], - "flexbox_generated.html": [ - "1c84d8803ec3e16f77e426a46869efa1700baf72", - [ - null, + [ + "/css/css-fonts/matching/stretch-distance-over-weight-distance-ref.html", + "==" + ] + ], + {} + ] + ], + "style-ranges-over-weight-direction.html": [ + "f263a11127717e46402fe184f90703fa2e7c3912", [ + null, [ - "/css/css-flexbox/flexbox_generated-ref.html", - "==" - ] - ], - {} + [ + "/css/css-fonts/matching/style-ranges-over-weight-direction-ref.html", + "==" + ] + ], + {} + ] ] - ], - "flexbox_inline-float.html": [ - "345b3fa7c9a8793a9f4251bbd795dadb7b2b7ca2", - [ - null, + }, + "math-script-level-and-math-style": { + "font-size-math-001.tentative.html": [ + "b9964985600f01aa38e9fdf32cfe5f33a835d052", [ + null, [ - "/css/reference/blank.html", - "==" - ] - ], - {} - ] - ], - "flexbox_inline.html": [ - "28d8f81c905039a063c1d62f9ee51382ecc49b97", - [ - null, + [ + "/css/css-fonts/math-script-level-and-math-style/font-size-math-001.tentative-ref.html", + "==" + ] + ], + {} + ] + ], + "font-size-math-002.tentative.html": [ + "7491409f2fa1e15397be8c96cfd68a9e594893ed", [ + null, [ - "/css/css-flexbox/flexbox_inline-ref.html", - "==" - ] - ], - {} - ] - ], - "flexbox_item-bottom-float.html": [ - "d8e012c6e9b10d2fc14b59917ac806a9b1c751ee", - [ - null, + [ + "/css/css-fonts/math-script-level-and-math-style/font-size-math-002.tentative-ref.html", + "==" + ] + ], + {} + ] + ], + "math-script-level-003.tentative.html": [ + "47b67aa8a819d3c75d205ce493f753108f767829", [ + null, [ - "/css/css-flexbox/flexbox_item-bottom-float-ref.html", - "==" - ] - ], - {} - ] - ], - "flexbox_item-clear.html": [ - "bd7cea697ea01b6de8a86bc96f9bc4acc457caec", - [ - null, + [ + "/css/css-fonts/math-script-level-and-math-style/math-script-level-003.tentative-ref.html", + "==" + ] + ], + {} + ] + ], + "math-script-level-auto-and-math-style-001.tentative.html": [ + "bb59dfdd17857197e26d13cbe011540c90f97afb", [ + null, [ - "/css/css-flexbox/flexbox_item-clear-ref.html", - "==" - ] - ], - {} - ] - ], - "flexbox_item-float.html": [ - "3de8b31d8b8334e755d4f896bd06f9a4bc581f1c", - [ - null, + [ + "/css/css-fonts/math-script-level-and-math-style/math-script-level-auto-and-math-style-001.tentative-ref.html", + "==" + ] + ], + {} + ] + ], + "math-script-level-auto-and-math-style-002.tentative.html": [ + "21c912528ab03ccff1895960cd09ee2bd3785239", [ + null, [ - "/css/css-flexbox/flexbox_item-float-ref.html", - "==" - ] - ], - {} - ] - ], - "flexbox_item-top-float.html": [ - "15569fc37d5df7a0ba7bedaed5850b3653fb1782", - [ - null, + [ + "/css/css-fonts/math-script-level-and-math-style/math-script-level-auto-and-math-style-002.tentative-ref.html", + "==" + ] + ], + {} + ] + ], + "math-script-level-auto-and-math-style-003.tentative.html": [ + "5739a12bb56eacc30f2433f701110d5fc7b44009", [ + null, [ - "/css/css-flexbox/flexbox_item-top-float-ref.html", - "==" - ] - ], - {} - ] - ], - "flexbox_item-vertical-align.html": [ - "7043c950a6fad7d4c8400d583debe386fb8a9ff6", - [ - null, + [ + "/css/css-fonts/math-script-level-and-math-style/math-script-level-auto-and-math-style-003.tentative-ref.html", + "==" + ] + ], + {} + ] + ], + "math-script-level-auto-and-math-style-004.tentative.html": [ + "aed3bf9142c94d9ce699d635798137cdcd467341", [ + null, [ - "/css/css-flexbox/flexbox_item-vertical-align-ref.html", - "==" - ] - ], - {} - ] - ], - "flexbox_justifycontent-center.html": [ - "e26d69204093b31c4fe274957db4873f4b15fd5a", - [ - null, + [ + "/css/css-fonts/math-script-level-and-math-style/math-script-level-auto-and-math-style-004.tentative-ref.html", + "==" + ] + ], + {} + ] + ], + "math-script-level-auto-and-math-style-005.tentative.html": [ + "01b876b515adf88ed4dafbb05b78b0277488ede5", [ + null, [ - "/css/css-flexbox/flexbox_justifycontent-center-ref.html", - "==" - ] - ], - {} - ] - ], - "flexbox_justifycontent-end-rtl.html": [ - "e30d8a77528ee535b30d0219ad575d1d2edfe9d7", - [ - null, + [ + "/css/css-fonts/math-script-level-and-math-style/math-script-level-auto-and-math-style-005.tentative-ref.html", + "==" + ] + ], + {} + ] + ], + "math-script-level-font-size-clamping-001.tentative.html": [ + "36b477aa328cb9e1a3d3f65a041106366a0557a1", [ + null, [ - "/css/css-flexbox/flexbox_justifycontent-end-rtl-ref.html", - "==" - ] - ], - {} + [ + "/css/css-fonts/math-script-level-and-math-style/math-script-level-font-size-clamping-001.tentative-ref.html", + "==" + ] + ], + {} + ] ] - ], - "flexbox_justifycontent-end.html": [ - "f6b7f279b664758881d262913bc2d52504222386", + }, + "metrics-override-normal-keyword.html": [ + "cf8c711ef27ed209950aef87b76d3ceb133f27f2", [ null, [ [ - "/css/css-flexbox/flexbox_justifycontent-end-ref.html", + "/css/css-fonts/metrics-override-normal-keyword-ref.html", "==" ] ], {} ] ], - "flexbox_justifycontent-flex-end.html": [ - "ee7f711f132385f2683d293d648217308a8e7e16", + "palette-values-rule-add-2.html": [ + "25859a7e4ba07b069dd06a28d1fe31861ec68aa0", [ null, [ [ - "/css/css-flexbox/flexbox_justifycontent-flex-end-ref.html", + "/css/css-fonts/palette-values-rule-add-2-ref.html", "==" ] ], {} ] ], - "flexbox_justifycontent-flex-start.html": [ - "66e85cde7ec77ee072b287122e2874957f2b3e74", + "palette-values-rule-add.html": [ + "51dbfbe730c699879636aa0419fff14b2b925298", [ null, [ [ - "/css/css-flexbox/flexbox_justifycontent-flex-start-ref.html", - "==" + "/css/css-fonts/palette-values-rule-add-notref.html", + "!=" ] ], {} ] ], - "flexbox_justifycontent-left-001.html": [ - "6f56e4db7a5dea31c9772c6e5f3a69c8827d13b8", + "palette-values-rule-delete-2.html": [ + "4e65142ff8da909485aeb149bf459928299eb5dd", [ null, [ [ - "/css/css-flexbox/flexbox_justifycontent-left-001-ref.html", + "/css/css-fonts/palette-values-rule-delete-2-ref.html", "==" ] ], {} ] ], - "flexbox_justifycontent-left-002.html": [ - "e18c43a4acb733feda47cfd9eb767d0efc09eff5", + "palette-values-rule-delete.html": [ + "e2d7b53e1db5cf3d4af6e7fc3333a5a180d88c47", [ null, [ [ - "/css/css-flexbox/flexbox_justifycontent-left-002-ref.html", - "==" + "/css/css-fonts/palette-values-rule-delete-notref.html", + "!=" ] ], {} ] ], - "flexbox_justifycontent-right-001.html": [ - "9f6dbdc461675860de054ed39742b5115b03f47b", + "quoted-generic-ignored.html": [ + "4207ad5cf43e6b6db198fb14b0d00f6c3c2d4e97", [ null, [ [ - "/css/css-flexbox/flexbox_justifycontent-right-001-ref.html", + "/css/css-fonts/quoted-generic-ignored-ref.html", "==" ] ], {} ] ], - "flexbox_justifycontent-right-002.html": [ - "2aeffe3b410939038003348a8330b054a9a82ad5", + "rcap-in-monospace.html": [ + "def59b074f07b5e05ff944da8c150fac6fd806a6", [ null, [ [ - "/css/css-flexbox/flexbox_justifycontent-right-002-ref.html", + "/css/css-fonts/rcap-in-monospace-ref.html", "==" ] ], {} ] ], - "flexbox_justifycontent-spacearound-negative.html": [ - "85dbba75363510579c40dbbc72b117ae4e847788", + "rch-in-monospace.html": [ + "86ad1d87326016216ba24eef750d09c7c26352f3", [ null, [ [ - "/css/css-flexbox/flexbox_justifycontent-spacearound-negative-ref.html", + "/css/css-fonts/rch-in-monospace-ref.html", "==" ] ], {} ] ], - "flexbox_justifycontent-spacearound-only.html": [ - "62bfd90f0dcae9bc18fe93ea6c47f78ba43640ca", + "rem-in-monospace.html": [ + "0358d811b403e6443ca5d861257a70a19093e5ce", [ null, [ [ - "/css/css-flexbox/flexbox_justifycontent-spacearound-only-ref.html", + "/css/css-fonts/rem-in-monospace-ref.html", "==" ] ], {} ] ], - "flexbox_justifycontent-spacearound.html": [ - "2cbcf25444d63e2c3bcbf53de87dfa31cf652ff5", + "rex-in-monospace.html": [ + "89fc9ff9cca2b28fdf3b549adcc7ed18474049fb", [ null, [ [ - "/css/css-flexbox/flexbox_justifycontent-spacearound-ref.html", + "/css/css-fonts/rex-in-monospace-ref.html", "==" ] ], {} ] ], - "flexbox_justifycontent-spacebetween-negative.html": [ - "081c7caa3dc79933b3c16e9eda53dcfbc3131c94", + "ric-in-monospace.html": [ + "1ad6dac924c69c36e4a7691b2c0a15f1a6ebe133", [ null, [ [ - "/css/css-flexbox/flexbox_justifycontent-spacebetween-negative-ref.html", + "/css/css-fonts/ric-in-monospace-ref.html", "==" ] ], {} ] ], - "flexbox_justifycontent-spacebetween-only.html": [ - "bb746a49561d9c3770fedea79bdaaa7586729353", + "rlh-in-monospace.html": [ + "26a57a78a551bdfafc65a893acd1fa5116d678e7", [ null, [ [ - "/css/css-flexbox/flexbox_justifycontent-spacebetween-only-ref.html", + "/css/css-fonts/rlh-in-monospace-ref.html", "==" ] ], {} ] ], - "flexbox_justifycontent-spacebetween.html": [ - "f04d5dac57138529e007acf6c2f9ea5e696de6b7", + "separators.html": [ + "b2ec6a2a53403c987a2ca8841e5dea4f0dd80038", [ null, [ [ - "/css/css-flexbox/flexbox_justifycontent-spacebetween-ref.html", + "/css/css-fonts/separators-ref.html", "==" ] ], {} ] ], - "flexbox_justifycontent-start-rtl.html": [ - "c94328797ae81564f8782f4f11058cd34dd5a17f", + "size-adjust-01.html": [ + "024a22097e182d6ffdbfd16dd9832e2fe35bb0b9", [ null, [ [ - "/css/css-flexbox/flexbox_justifycontent-start-rtl-ref.html", + "/css/css-fonts/size-adjust-01-ref.html", "==" ] ], {} ] ], - "flexbox_justifycontent-start.html": [ - "176af6d4f8354a235baa7b244d4150a98a2cd812", + "size-adjust-02.html": [ + "3255b5ccaf010251668ee05467dbb3f5bbb041f8", [ null, [ [ - "/css/css-flexbox/flexbox_justifycontent-start-ref.html", + "/css/css-fonts/size-adjust-02-ref.html", "==" ] ], {} ] ], - "flexbox_margin-auto-overflow.html": [ - "8d7860f8866a14861a736119c3169d3b6d2d53f5", + "size-adjust-03.html": [ + "f9de6499fa3f07d8b493a5bc9b718262108d7d48", [ null, [ [ - "/css/css-flexbox/flexbox_margin-auto-overflow-ref.html", + "/css/css-fonts/size-adjust-03-ref.html", "==" ] ], {} ] ], - "flexbox_margin-auto.html": [ - "dd86f184cd58cdb8031de2cef02d3bddabca3352", + "size-adjust-text-decoration.tentative.html": [ + "f1183dcf209051e6e657869b1b3911315baf647d", [ null, [ [ - "/css/css-flexbox/flexbox_margin-auto-ref.html", + "/css/css-fonts/size-adjust-text-decoration-tentative-ref.html", "==" ] ], {} ] ], - "flexbox_margin-left-ex.html": [ - "ea57ef28013b8dcfec9be7db8a85d122519859a9", + "size-adjust-unicode-range-system-fallback.html": [ + "6cfc23fec58fe650eb1c01487bec33b824004eb1", [ null, [ [ - "/css/css-flexbox/flexbox_margin-left-ex-ref.html", + "/css/css-fonts/size-adjust-unicode-range-system-fallback-ref.html", "==" ] ], {} ] ], - "flexbox_margin.html": [ - "af406340032741024b79bb5e69b41e0daa78f487", + "size-adjust.tentative.html": [ + "22517f394165c59afbbb228b63a5e40e2e1ad7e4", [ null, [ [ - "/css/css-flexbox/flexbox_margin-ref.html", + "/css/css-fonts/size-adjust-tentative-ref.html", "==" ] ], {} ] ], - "flexbox_nested-flex.html": [ - "0cd4aeaffe2e7f0c0e168281261dad2cd4b232e1", + "standard-font-family-10.html": [ + "5dde6348d3985307999572b342433cfc8f800d9c", [ null, [ [ - "/css/css-flexbox/flexbox_generated-flex-ref.html", - "==" + "/css/css-fonts/standard-font-family-10-notref.html", + "!=" ] ], {} ] ], - "flexbox_object.html": [ - "701af7b78b6af3ea084ad3529adb9c5bda45ea34", + "standard-font-family-11.html": [ + "15abb9a30ae6fb79b072ac79743c8e019900d24f", [ null, [ [ - "/css/css-flexbox/flexbox_object-ref.html", - "==" + "/css/css-fonts/standard-font-family-11-notref.html", + "!=" ] ], {} ] ], - "flexbox_order-abspos-space-around.html": [ - "9c1d5dde2dc16e8d5dfcc87e91509b69b0ea5ee4", + "standard-font-family-12.html": [ + "7c34b0b8ca3cfdaab25ecfa930349b649f3c7a82", [ null, [ [ - "/css/css-flexbox/flexbox_order-abspos-space-around-ref.html", - "==" + "/css/css-fonts/standard-font-family-12-notref.html", + "!=" ] ], {} ] ], - "flexbox_order-box.html": [ - "a0d283516aa6760ed65c73ec571d834d5f7546a6", + "standard-font-family-13.html": [ + "1f8186f482ddb0aef05c5b3477f0037d3f14b7c3", [ null, [ [ - "/css/css-flexbox/flexbox_order-box-ref.html", - "==" + "/css/css-fonts/standard-font-family-13-notref.html", + "!=" ] ], {} ] ], - "flexbox_order-noninteger-invalid.html": [ - "2f409b0dacd7cc9bb169b2e91b66c699f47d0118", + "standard-font-family-14.html": [ + "5b694ef09b3271cd8524d1b3d882838a1e9eb175", [ null, [ [ - "/css/reference/blank.html", - "==" + "/css/css-fonts/standard-font-family-14-notref.html", + "!=" ] ], {} ] ], - "flexbox_order.html": [ - "8ed5eb490b464e47a8912c23ddc60476059169bc", + "standard-font-family-15.html": [ + "2e21b833c96237a6f0f2e272dd5ee11ece192940", [ null, [ [ - "/css/css-flexbox/flexbox_order-ref.html", - "==" + "/css/css-fonts/standard-font-family-15-notref.html", + "!=" ] ], {} ] ], - "flexbox_quirks_body.html": [ - "4be3896fadcc96c22bf3c8c8876e8f718c8c2f50", + "standard-font-family-16.html": [ + "0b470bd6407c8ff741c10497650f008b772d8126", [ null, [ [ - "/css/css-flexbox/reference/flexbox_quirks_body-ref.html", - "==" + "/css/css-fonts/standard-font-family-16-notref.html", + "!=" ] ], {} ] ], - "flexbox_rowspan-overflow-automatic.html": [ - "3a024fc506248b15eefe6c9f5382a74c1806554e", + "standard-font-family-17.html": [ + "9ce56ed8fa6ec6cc1ea7b7ddc8f4a7221730dfff", [ null, [ [ - "/css/css-flexbox/flexbox_rowspan-ref.html", - "==" + "/css/css-fonts/standard-font-family-17-notref.html", + "!=" ] ], {} ] ], - "flexbox_rowspan-overflow.html": [ - "55165a61c17fd046b33bded35a9c9af8eede93cd", + "standard-font-family-18.html": [ + "69e5cabd6ec261a5f3f63f0dcce2d738851c1b10", [ null, [ [ - "/css/css-flexbox/flexbox_rowspan-ref.html", - "==" + "/css/css-fonts/standard-font-family-18-notref.html", + "!=" ] ], {} ] ], - "flexbox_rowspan.html": [ - "67a0dc6b2ec56c501093cdb02b5b0faadcc79deb", + "standard-font-family-19.html": [ + "43dc24b16750566f9e7d8d2d69bcdfc8bebef265", [ null, [ [ - "/css/css-flexbox/flexbox_rowspan-ref.html", - "==" + "/css/css-fonts/standard-font-family-19-notref.html", + "!=" ] ], {} ] ], - "flexbox_rtl-direction.html": [ - "97d0ba21d37f22e71cfdc0660cd7dc7fd5af9672", + "standard-font-family-2.html": [ + "2827c6c2cb8ff3936000e67e27298771ec1ee729", [ null, [ [ - "/css/css-flexbox/flexbox_rtl-direction-ref.html", + "/css/css-fonts/standard-font-family-2-ref.html", "==" ] ], {} ] ], - "flexbox_rtl-flow-reverse.html": [ - "f4789694be88376d0ec395fab793874a03c5b88b", + "standard-font-family-20.html": [ + "7d0335e06160ea15af645d73d4537bfe29e1f008", [ null, [ [ - "/css/css-flexbox/flexbox_rtl-flow-reverse-ref.html", - "==" + "/css/css-fonts/standard-font-family-20-notref.html", + "!=" ] ], {} ] ], - "flexbox_rtl-flow.html": [ - "954a6b7fe5418089c0878b48f91e85774c73cf08", + "standard-font-family-3.html": [ + "38d2410a438f298416ba6f82f54510583233d9ce", [ null, [ [ - "/css/css-flexbox/flexbox_rtl-flow-ref.html", - "==" + "/css/css-fonts/standard-font-family-3-notref.html", + "!=" ] ], {} ] ], - "flexbox_rtl-order.html": [ - "7613240ebc663867c8e8c66e31d244dc721121cd", + "standard-font-family-4.html": [ + "11146c9b71d5802661d54ff27b700d2bd213b9c5", [ null, [ [ - "/css/css-flexbox/flexbox_rtl-order-ref.html", - "==" + "/css/css-fonts/standard-font-family-4-notref.html", + "!=" ] ], {} ] ], - "flexbox_stf-abspos.html": [ - "b6f2691cd76d62cfc1cf64a74a8b91029a3b86a0", + "standard-font-family-5.html": [ + "7d2646bb1b712099ef9ccde25450e02b336c809e", [ null, [ [ - "/css/reference/blank.html", - "==" + "/css/css-fonts/standard-font-family-5-notref.html", + "!=" ] ], {} ] ], - "flexbox_stf-fixpos.html": [ - "f211201efdea7b552f8ee7ee8cfc850a71fbad3c", + "standard-font-family-6.html": [ + "f6a0f158b94619e9937233d0973474df17c3f24a", [ null, [ [ - "/css/reference/blank.html", + "/css/css-fonts/standard-font-family-6-ref.html", "==" ] ], {} ] ], - "flexbox_stf-float.html": [ - "223b3aba2ed7aee3253e0bfc121e7af1d97dec30", + "standard-font-family-7.html": [ + "11af83fc9e6e36eb0b27131eeaed323272287e94", [ null, [ [ - "/css/reference/blank.html", + "/css/css-fonts/standard-font-family-7-ref.html", "==" ] ], {} ] ], - "flexbox_stf-inline-block.html": [ - "ea2741165e310f7f86e03c251f2fc8b16fabaa5a", + "standard-font-family-8.html": [ + "b64cb8fb4cc0912e08f4747d95fe4f07454d3548", [ null, [ [ - "/css/reference/blank.html", - "==" + "/css/css-fonts/standard-font-family-8-notref.html", + "!=" ] ], {} ] ], - "flexbox_stf-table-caption.html": [ - "7da1436cd01bbc8437f9af493589d1e8a72c17c3", + "standard-font-family-9.html": [ + "e5afe8ab9ae55ede92e28cbb4451843655a1ba12", [ null, [ [ - "/css/reference/blank.html", - "==" + "/css/css-fonts/standard-font-family-9-notref.html", + "!=" ] ], {} ] ], - "flexbox_stf-table-cell.html": [ - "c1d7b5a54b2099b75a874efeabfd82835158bc62", + "standard-font-family.html": [ + "b093ad442e1049b6747f115d86ec0220717553d2", [ null, [ [ - "/css/reference/blank.html", + "/css/css-fonts/standard-font-family-ref.html", "==" ] ], {} ] ], - "flexbox_stf-table-row-group.html": [ - "8cb16e9acb1036a623bf0fb21c29dc9502ca7cd4", + "synthetic-bold-space-width.html": [ + "ecb0dd1c912d5a82d694f163586c0d3cdbf003e2", [ null, [ [ - "/css/reference/blank.html", + "/css/css-fonts/synthetic-bold-space-width-ref.html", "==" ] ], {} ] ], - "flexbox_stf-table-row.html": [ - "f10dddc4754ec0b11246558f5b0d5cd1310b8351", + "system-ui-ar.html": [ + "a65a564f9bae9729c033c3de8d51bf4ae2fab2fb", [ null, [ [ - "/css/reference/blank.html", - "==" + "/css/css-fonts/system-ui-ar-notref.html", + "!=" ] ], {} ] ], - "flexbox_stf-table-singleline-2.html": [ - "9600a85dd125d1c7cd06bde393a2f8e5ce9f1067", + "system-ui-ja-vs-zh.html": [ + "f3700697d5f23df31fc1b9307ea68a87ce2dc846", [ null, [ [ - "/css/css-flexbox/flexbox_stf-table-singleline-ref.html", - "==" + "/css/css-fonts/system-ui-zh.html", + "!=" ] ], {} ] ], - "flexbox_stf-table-singleline.html": [ - "7f9491a25cea582016b9273df74ffac41e3c97f6", + "system-ui-ja.html": [ + "2b16fe005c6a1acd8d242fb7fbdc7ea5971aebc6", [ null, [ [ - "/css/css-flexbox/flexbox_stf-table-singleline-ref.html", - "==" + "/css/css-fonts/system-ui-ja-notref.html", + "!=" ] ], {} ] ], - "flexbox_stf-table.html": [ - "79de59307f950c7355fd66f3becedcc46d271bde", + "system-ui-mixed.html": [ + "a62bd216c7fb63777d31b4ca07cc80eda211e8ba", [ null, [ [ - "/css/reference/blank.html", + "/css/css-fonts/system-ui-mixed-ref.html", "==" ] ], {} ] ], - "flexbox_table-fixed-layout.html": [ - "52872e81bf8dab9b78b60f770af78e07b32f1430", + "system-ui-ur-vs-ar.html": [ + "210534fd869b90020079e26453709fac15a7d907", [ null, [ [ - "/css/reference/blank.html", - "==" + "/css/css-fonts/system-ui-ar.html", + "!=" ] ], {} ] ], - "flexbox_visibility-collapse-line-wrapping.html": [ - "340335fab2c24d08d41bec1301c157c6bdc8c4fa", + "system-ui-ur.html": [ + "bd26d29720b89141ebff8c874b8116ce71358045", [ null, [ [ - "/css/css-flexbox/flexbox_visibility-collapse-line-wrapping-ref.html", - "==" + "/css/css-fonts/system-ui-ur-notref.html", + "!=" ] ], {} ] ], - "flexbox_visibility-collapse.html": [ - "6b2705fd94f6266e8acb7762c7acbb5fdd250f0b", + "system-ui-zh.html": [ + "c99a39331618a29d82dad0a18cdf94ad6cf0d991", [ null, [ [ - "/css/css-flexbox/flexbox_visibility-collapse-ref.html", - "==" + "/css/css-fonts/system-ui-zh-notref.html", + "!=" ] ], {} ] ], - "flexbox_width-overflow.html": [ - "b19d92e83bf828665cd405a7f74d03405f422686", + "system-ui.html": [ + "8ad66aeb89cb71af8c8121ecab294af1bb3488cb", [ null, [ [ - "/css/reference/blank.html", - "==" + "/css/css-fonts/system-ui-notref.html", + "!=" ] ], {} ] ], - "flexbox_wrap-long.html": [ - "a097cd66be7b09a0cd87837d518b7ee73946e0f1", + "test-synthetic-italic-2.html": [ + "6e8910e22c86c309de1403060f9a5061dbbf571c", [ null, [ [ - "/css/css-flexbox/flexbox_wrap-long-ref.html", + "/css/css-fonts/test-synthetic-italic-2-ref.html", "==" ] ], {} ] ], - "flexbox_wrap-reverse.html": [ - "fb2c9f1a990722eaa2663c256a7ba0dc62148fc8", + "test-synthetic-italic-3.html": [ + "f3c1a371562a299f110315b3aefb19fe5f20edbd", [ null, [ [ - "/css/css-flexbox/flexbox_wrap-reverse-ref.html", + "/css/css-fonts/test-synthetic-italic-3-ref.html", "==" ] ], {} ] ], - "flexbox_wrap.html": [ - "7927df7c0a9096888aa8f634fb08766f73154f94", + "variation-sequences.html": [ + "c1f69a5be5875556b5c64e962169aa9efca19ade", [ - null, + "css/css-fonts/variation-sequences.html", [ [ - "/css/css-flexbox/flexbox_wrap-ref.html", + "/css/css-fonts/variation-sequences-ref.html", "==" ] ], {} ] ], - "flexbox_writing_mode_vertical_lays_out_contents_from_top_to_bottom.html": [ - "ab87de963c3af0c24eb556a2251ae5d7ae1c108b", - [ - null, + "variations": { + "font-descriptor-range-reversed.html": [ + "14d426245d3bdb56e67007edde5e9a49473e5694", [ + null, [ - "/css/css-flexbox/reference/flexbox_writing_mode_vertical_lays_out_contents_from_top_to_bottom-ref.html", - "==" - ] - ], - {} - ] - ], - "flexible-box-float.html": [ - "11f34fb7461ea82669fcb3f3154eba37287c5869", - [ - null, + [ + "/css/css-fonts/variations/font-descriptor-range-reversed-ref.html", + "==" + ] + ], + {} + ] + ], + "font-slant-1.html": [ + "f3985defde8d1151c3b2a9085bc7ca674b7b200e", [ + null, [ - "/css/css-flexbox/reference/flex-box-float-ref.html", - "==" - ] - ], - {} - ] - ], - "flexible-order.html": [ - "6f8d5f691a4be328999f375aa4ef940d01021e74", - [ - null, + [ + "/css/css-fonts/variations/font-slant-1-ref.html", + "==" + ] + ], + {} + ] + ], + "font-slant-2a.html": [ + "386ff83f8d5e0d9bab6faa20daf900739764d4bf", [ + null, [ - "/css/css-flexbox/reference/flexible-order-ref.html", - "==" - ] - ], - {} - ] - ], - "flexitem-stretch-range.html": [ - "43ecc81d52ddfbcf3d42ad2ed10577e851822636", - [ - null, + [ + "/css/css-fonts/variations/font-slant-2-ref.html", + "==" + ] + ], + {} + ] + ], + "font-slant-2b.html": [ + "0fb280827e21bcadc7c3176598a25b422eed3b2b", [ + null, [ - "/css/css-flexbox/reference/flexitem-stretch-range-ref.html", - "==" - ] - ], - {} - ] - ], - "gap-001-lr.html": [ - "cb4ea49d76dac017f9846a764eb32f84ddc99127", - [ - null, + [ + "/css/css-fonts/variations/font-slant-2-ref.html", + "==" + ] + ], + {} + ] + ], + "font-slant-2c.html": [ + "5436fc1b671df41829116c37c5fd5eb35551c3db", [ + null, [ - "/css/css-flexbox/gap-001-lr-ref.html", - "==" - ] - ], - {} - ] - ], - "gap-001-ltr.html": [ - "ddc5c2f22ad8c777475543a724f302f25418e13c", - [ - null, + [ + "/css/css-fonts/variations/font-slant-2-ref.html", + "==" + ] + ], + {} + ] + ], + "font-slant-3.html": [ + "047409ec35a3bbb1637fc8e0823e1563d776ec07", [ + null, [ - "/css/css-flexbox/gap-001-ltr-ref.html", - "==" - ] - ], - {} - ] - ], - "gap-001-rl.html": [ - "fd8c9d74b1b5fd75d681b7d036b7581af7851397", - [ - null, + [ + "/css/css-fonts/variations/font-slant-3-ref.html", + "==" + ] + ], + {} + ] + ], + "font-weight-metrics.html": [ + "f10e591defcd3aa5f215158aa2218e1b4a499549", [ + null, [ - "/css/css-flexbox/gap-001-rl-ref.html", - "==" - ] - ], - {} - ] - ], - "gap-001-rtl.html": [ - "53e0979ba08cba14e10cbbac773e82617b6c9733", - [ - null, + [ + "/css/css-fonts/variations/font-weight-metrics-ref.html", + "==" + ] + ], + {} + ] + ], + "slnt-backslant-variable.html": [ + "36a4305da72590c01280bee49ba08825cd3bcb59", [ + null, [ - "/css/css-flexbox/gap-001-rtl-ref.html", - "==" - ] - ], - {} - ] - ], - "gap-002-lr.html": [ - "d6bc3b8edbfd5417e27c689fe37f4002b88d8677", - [ - null, + [ + "/css/css-fonts/variations/slnt-backslant-variable-ref.html", + "==" + ] + ], + {} + ] + ], + "slnt-variable.html": [ + "ae937037940b4533442777853dd43d76c241ce3f", [ + null, [ - "/css/css-flexbox/gap-002-lr-ref.html", - "==" - ] - ], - {} - ] - ], - "gap-002-ltr.html": [ - "ac40f57c6b7abbd27186b72f1a6a4feed86117ec", - [ - null, + [ + "/css/css-fonts/variations/slnt-variable-ref.html", + "==" + ] + ], + {} + ] + ], + "variable-box-font.html": [ + "a9023fabe5ae43154c2e104ca4da83e28af6da43", [ + null, [ - "/css/css-flexbox/gap-002-ltr-ref.html", - "==" - ] - ], - {} - ] - ], - "gap-002-rl.html": [ - "436c4dd5c7b952af92654bd0cca5e0090d087e9f", - [ - null, + [ + "/css/css-fonts/variations/variable-box-font-ref.html", + "==" + ] + ], + {} + ] + ], + "variable-gpos-m2b.html": [ + "c39cce33a6c419865e4e2284fb64079cae4e0d84", [ + null, [ - "/css/css-flexbox/gap-002-rl-ref.html", - "==" - ] - ], - {} - ] - ], - "gap-002-rtl.html": [ - "63d3775ec334371c8c2da4feee61bd4eaa34d52a", - [ - null, + [ + "/css/css-fonts/variations/variable-gpos-m2b-ref.html", + "==" + ] + ], + {} + ] + ], + "variable-gsub.html": [ + "ed432f65ebf504fb6568f494affe8f8ea5dd4866", [ + null, [ - "/css/css-flexbox/gap-002-rtl-ref.html", - "==" - ] - ], - {} - ] - ], - "gap-003-lr.html": [ - "b90efe9530ac7017b50bad9d4f04eb2aab5c717b", - [ - null, + [ + "/css/css-fonts/variations/variable-gsub-ref.html", + "==" + ] + ], + {} + ] + ], + "variable-opsz-size-adjust.html": [ + "b673f3cb7bf4e72fa8aa6ff38b2f18fbd0705717", [ + null, [ - "/css/css-flexbox/gap-003-lr-ref.html", - "==" - ] - ], - {} - ] - ], - "gap-003-ltr.html": [ - "c5507d24945ab927189c7b0489818e9ab92a518a", - [ - null, + [ + "/css/css-fonts/variations/variable-opsz-size-adjust-ref.html", + "==" + ] + ], + {} + ] + ], + "variable-opsz.html": [ + "d274a478280018de975a74e2781d2ac96d1e97f5", [ + null, [ - "/css/css-flexbox/gap-003-ltr-ref.html", - "==" - ] - ], - {} + [ + "/css/css-fonts/variations/variable-opsz-ref.html", + "==" + ] + ], + {} + ] ] - ], - "gap-003-rl.html": [ - "234427a5ad5136e11536e42584fe0c7640dbb5d1", + }, + "web-font-no-longer-accessible-when-stylesheet-removed.html": [ + "aac3e77a819019d349123fac2265531f3746f826", [ null, [ [ - "/css/css-flexbox/gap-003-rl-ref.html", + "/css/css-fonts/web-font-no-longer-accessible-when-stylesheet-removed-ref.html", "==" ] ], {} ] - ], - "gap-003-rtl.html": [ - "9064e72ca3cff3e27527e0708559f8eef2d1a5f9", - [ - null, + ] + }, + "css-grid": { + "abspos": { + "absolute-positioning-changing-containing-block-001.html": [ + "31030835c8c9aa2517d29401a72a912658801304", [ + null, [ - "/css/css-flexbox/gap-003-rtl-ref.html", - "==" - ] - ], - {} - ] - ], - "gap-004-lr.html": [ - "04bb570741ce65f3bac3923294627c1cd43a1092", - [ - null, + [ + "/css/css-grid/abspos/absolute-positioning-changing-containing-block-001-ref.html", + "==" + ] + ], + {} + ] + ], + "descendant-static-position-001.html": [ + "ec19e4acff1ab6b6a30f28f66e1b6c16c9753705", [ + null, [ - "/css/css-flexbox/gap-004-lr-ref.html", - "==" - ] - ], - {} - ] - ], - "gap-004-ltr.html": [ - "741ec40b84002d2c05bca02c40f574fdde81bd95", - [ - null, + [ + "/css/css-grid/abspos/descendant-static-position-001-ref.html", + "==" + ] + ], + {} + ] + ], + "descendant-static-position-002.html": [ + "97fa299c0a0a20840ebaa0c1532695634b13c537", [ + null, [ - "/css/css-flexbox/gap-004-ltr-ref.html", - "==" - ] - ], - {} - ] - ], - "gap-004-rl.html": [ - "6054a5bfe5a0ca73b273900dfff48f664c15fdb1", - [ - null, + [ + "/css/css-grid/abspos/descendant-static-position-002-ref.html", + "==" + ] + ], + {} + ] + ], + "descendant-static-position-003.html": [ + "399ade2e8764eb0b0ee444340c0722707ab8dcac", [ + null, [ - "/css/css-flexbox/gap-004-rl-ref.html", - "==" - ] - ], - {} - ] - ], - "gap-004-rtl.html": [ - "181fa58efcd53ddc738655a1e63bc66f9130ebf5", - [ - null, + [ + "/css/css-grid/abspos/descendant-static-position-003-ref.html", + "==" + ] + ], + {} + ] + ], + "descendant-static-position-004.html": [ + "5f87dccd80e6f38bf2bcab536c18b3fb8daa37cf", [ + null, [ - "/css/css-flexbox/gap-004-rtl-ref.html", - "==" - ] - ], - {} - ] - ], - "gap-005-lr.html": [ - "d765094a266f884ad159933180f266400fa5080e", - [ - null, - [ - [ - "/css/css-flexbox/gap-005-lr-ref.html", - "==" - ] - ], - {} - ] - ], - "gap-005-ltr.html": [ - "ead370c4c4a8b29f7e8bb7340e27a42f1140315c", - [ - null, + [ + "/css/css-grid/abspos/descendant-static-position-004-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-abspos-staticpos-align-self-001.html": [ + "8fd4eca36ce161c6a29d9c5683708aa2d2c64ac6", [ + null, [ - "/css/css-flexbox/gap-005-ltr-ref.html", - "==" - ] - ], - {} - ] - ], - "gap-005-rl.html": [ - "225c04c970de59de67295af9c9554c228acb4f96", - [ - null, + [ + "/css/css-grid/abspos/grid-abspos-staticpos-align-self-001-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-abspos-staticpos-align-self-002.html": [ + "a78dfc42450befba82455910c75e67cd55f2e2be", [ + null, [ - "/css/css-flexbox/gap-005-rl-ref.html", - "==" - ] - ], - {} - ] - ], - "gap-005-rtl.html": [ - "99d715a282852a532d2a178f93780b910e4c0324", - [ - null, + [ + "/css/css-grid/abspos/grid-abspos-staticpos-align-self-002-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-abspos-staticpos-align-self-img-001.html": [ + "cb5906603b35912cf2e649b1fa0a049d801ec236", [ + null, [ - "/css/css-flexbox/gap-005-rtl-ref.html", - "==" - ] - ], - {} - ] - ], - "gap-006-lr.html": [ - "7c5ed6e69e418e441bd4cd85f5483ab403fceadf", - [ - null, + [ + "/css/css-grid/abspos/grid-abspos-staticpos-align-self-img-001-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-abspos-staticpos-align-self-img-002.html": [ + "5b029df8494ac033d7ec66ca12494aa14c30b1e8", [ + null, [ - "/css/css-flexbox/gap-006-lr-ref.html", - "==" - ] - ], - {} - ] - ], - "gap-006-ltr.html": [ - "d2fd6321db7f3a0dad2d69796ae4ce8f82e240f9", - [ - null, + [ + "/css/css-grid/abspos/grid-abspos-staticpos-align-self-img-002-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-abspos-staticpos-align-self-img-last-baseline-001.html": [ + "35fb55cfe93cd3bf2311ea1ab9178b3bb38bb619", [ + null, [ - "/css/css-flexbox/gap-006-ltr-ref.html", - "==" - ] - ], - {} - ] - ], - "gap-006-rl.html": [ - "01fef78c9c81bb290e44c326745821f409d2add0", - [ - 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-flexbox/gap-006-rl-ref.html", - "==" - ] - ], - {} - ] - ], - "gap-006-rtl.html": [ - "0bfa0785994340da2dd986d2d5a4914fea8090ea", - [ - 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-flexbox/gap-006-rtl-ref.html", - "==" - ] - ], - {} - ] - ], - "gap-007-lr.html": [ - "9d0a3717816f1850c4cf0a666fe563c9309c7b33", - [ - 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-flexbox/gap-007-lr-ref.html", - "==" - ] - ], - {} - ] - ], - "gap-007-ltr.html": [ - "6b24fc44eea9e8cca2d62e550d45ebe395b050db", - [ - null, + [ + "/css/css-grid/abspos/grid-abspos-staticpos-align-self-last-baseline-002-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-abspos-staticpos-align-self-rtl-001.html": [ + "31def24fe8ccee24f6bb669bc82184970062000a", [ + null, [ - "/css/css-flexbox/gap-007-ltr-ref.html", - "==" - ] - ], - {} - ] - ], - "gap-007-rl.html": [ - "1461416abe9557d55d5eed623b314f0260dc4ddf", - [ - null, + [ + "/css/css-grid/abspos/grid-abspos-staticpos-align-self-rtl-001-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-abspos-staticpos-align-self-rtl-002.html": [ + "21936e964da68377b1f61d1be4312e1b3a0d4788", [ + null, [ - "/css/css-flexbox/gap-007-rl-ref.html", - "==" - ] - ], - {} - ] - ], - "gap-007-rtl.html": [ - "cff3440a760bbd45b32c87017f7c95099bf9ef1c", - [ - null, + [ + "/css/css-grid/abspos/grid-abspos-staticpos-align-self-rtl-002-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-abspos-staticpos-align-self-rtl-003.html": [ + "e53bd1933859dbdf861eed7721f134251ca294ae", [ + null, [ - "/css/css-flexbox/gap-007-rtl-ref.html", - "==" - ] - ], - {} - ] - ], - "gap-008-ltr.html": [ - "88a83cb4264cb139eaff5712aaa3a09efeefde87", - [ - null, + [ + "/css/css-grid/abspos/grid-abspos-staticpos-align-self-rtl-003-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-abspos-staticpos-align-self-rtl-004.html": [ + "12805427e803bc743f5c123a380ed623785eb9a2", [ + null, [ - "/css/css-flexbox/gap-008-ltr-ref.html", - "==" - ] - ], - {} - ] - ], - "gap-009-ltr.html": [ - "86355f0a4583cb106c0114b57962ad225cb5b0e0", - [ - null, + [ + "/css/css-grid/abspos/grid-abspos-staticpos-align-self-rtl-004-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-abspos-staticpos-align-self-rtl-last-baseline-001.html": [ + "8804a39a5675bd6a1d1dfac429727e69bccb97f6", [ + null, [ - "/css/css-flexbox/gap-009-ltr-ref.html", - "==" - ] - ], - {} - ] - ], - "gap-010-ltr.html": [ - "6b3465838de83ac35e95bdd99a5de21bbd3322c3", - [ - 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-flexbox/gap-010-ltr-ref.html", - "==" - ] - ], - {} - ] - ], - "gap-011.html": [ - "d1d579e30b8779634d94d4bfc5cfdcfd6200e9f6", - [ - 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/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "gap-012.html": [ - "19b39b9a783d0aef9db8a0bef2c04c489a62bf21", - [ - 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/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "gap-013.html": [ - "30e4c43e7193525ab6c7ea88b472d6b05b8204da", - [ - 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", [ + null, [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "gap-014.html": [ - "c600478c73cd6436ddfd6e025612f1b74d401699", - [ - null, + [ + "/css/css-grid/abspos/grid-abspos-staticpos-align-self-safe-001-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-abspos-staticpos-align-self-vertWM-001.html": [ + "2feeb2c3a130ede88bb0c42bf8e70fc9b0223b75", [ + null, [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "gap-015.html": [ - "e54598e2000f727b0b5bf6091bc002b635779d4e", - [ - null, + [ + "/css/css-grid/abspos/grid-abspos-staticpos-align-self-vertWM-001-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-abspos-staticpos-align-self-vertWM-002.html": [ + "659f6b727e72edc9077e7353c3e0443840479145", [ + null, [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "gap-016.html": [ - "a54417725678f99e77773805dc8a70b86eb77c9e", - [ - null, + [ + "/css/css-grid/abspos/grid-abspos-staticpos-align-self-vertWM-002-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-abspos-staticpos-align-self-vertWM-003.html": [ + "61bdc0496e00e9b7fb977637c23c2071eb4b727c", [ + null, [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "gap-019.html": [ - "d55f86e5d2436eaa057ce237e58b9014f8686568", - [ - "css/css-flexbox/gap-019.html", + [ + "/css/css-grid/abspos/grid-abspos-staticpos-align-self-vertWM-003-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-abspos-staticpos-align-self-vertWM-004.html": [ + "84e9265aadd4e7a8621527e1f8a78c223a7e5ad8", [ + null, [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "gap-020.html": [ - "2f0c02dfc1983583b1092e7ada827d499e632ef5", - [ - "css/css-flexbox/gap-020.html", + [ + "/css/css-grid/abspos/grid-abspos-staticpos-align-self-vertWM-004-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-abspos-staticpos-align-self-vertWM-last-baseline-001.html": [ + "be1bc8cce958ecd1be8a9fa0d3bdacd65d4b0193", [ + null, [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "gap-021.html": [ - "5f37e94136f2ebc32b3dc4fcebac9efd9815d6d8", - [ - "css/css-flexbox/gap-021.html", + [ + "/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/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grandchild-span-height.html": [ - "c087edb68d48036f5b3a45114a62d9db03a5a86e", - [ - "css/css-flexbox/grandchild-span-height.html", + [ + "/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/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-flex-item-001.html": [ - "67ee0fb001d7b136f026190bfee0940aeb4ff849", - [ - 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/reference/ref-filled-green-100px-square-only.html", - "==" - ] - ], - {} - ] - ], - "grid-flex-item-002.html": [ - "41396992057e146cd48dd9a885e65b67ee60d01e", - [ - null, + [ + "/css/css-grid/abspos/grid-abspos-staticpos-align-self-vertWM-last-baseline-004-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-abspos-staticpos-justify-self-001.html": [ + "3f9a59f6b9e33f1d42eff2306fccee1b3a453555", [ + null, [ - "/css/reference/ref-filled-green-100px-square-only.html", - "==" - ] - ], - {} - ] - ], - "grid-flex-item-003.html": [ - "1996370f03caa8ab3c9bdaed4c451fd2301b5514", - [ - null, + [ + "/css/css-grid/abspos/grid-abspos-staticpos-justify-self-001-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-abspos-staticpos-justify-self-002.html": [ + "d0b607565e5e152469da3a07818e55f081833556", [ + null, [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-flex-item-004.html": [ - "885fb8c1952cf0767653f646c3e1ea4c92815769", - [ - null, + [ + "/css/css-grid/abspos/grid-abspos-staticpos-justify-self-002-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-abspos-staticpos-justify-self-img-001.html": [ + "d402fd889a8830eaab027d16274cd32f03e9de6a", [ + null, [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-flex-item-005.html": [ - "95c57d1429e5de2a138571435134152c2c33561b", - [ - null, + [ + "/css/css-grid/abspos/grid-abspos-staticpos-justify-self-img-001-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-abspos-staticpos-justify-self-img-002.html": [ + "6f4e86573259ef473ca01417ceba5ce6ed6ed3b8", [ + null, [ - "/css/reference/ref-filled-green-100px-square-only.html", - "==" - ] - ], - {} - ] - ], - "grid-flex-item-006.html": [ - "b5d49c4824c794513c823a9c949789f565476cd0", - [ - null, + [ + "/css/css-grid/abspos/grid-abspos-staticpos-justify-self-img-002-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-abspos-staticpos-justify-self-img-last-baseline-001.html": [ + "76e8a62c2608bbf2f1ad2e68bde3d39981d14158", [ + null, [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-flex-item-007.html": [ - "bdea17d0692981c4742448f1c429e90236418858", - [ - "css/css-flexbox/grid-flex-item-007.html", + [ + "/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": [ + "57c738d89afb4da8582c36bdb4b99c0cdc2c1b41", [ + null, [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "image-items-flake-001.html": [ - "90319f1ad83d26d414d8ddcd4a9ab59042a4bd62", - [ - 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/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "image-nested-within-definite-column-flexbox.html": [ - "7bfeb4de6539f7250b66bd06669c643fdf0f187f", - [ - "css/css-flexbox/image-nested-within-definite-column-flexbox.html", + [ + "/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/reference/ref-filled-green-100px-square-only.html", - "==" - ] - ], - {} - ] - ], - "inline-flex-min-content-height.html": [ - "b84b9afc0b67b83d3d3e2abb73c9b7e22aeb3cbe", - [ - null, + [ + "/css/css-grid/abspos/grid-abspos-staticpos-justify-self-last-baseline-002-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-abspos-staticpos-justify-self-rtl-001.html": [ + "3080c49453a075944b433f0264c774f4b697f518", [ + null, [ - "/css/reference/ref-filled-green-100px-square-only.html", - "==" - ] - ], - {} - ] - ], - "intrinsic-size": { - "auto-min-size-001.html": [ - "a026091aa793af8b664ef4f1c222c9d8d566848c", + [ + "/css/css-grid/abspos/grid-abspos-staticpos-justify-self-rtl-001-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-abspos-staticpos-justify-self-rtl-002.html": [ + "4c3a4a849e2e451d4638bdad682464f7e1b07cbb", [ - "css/css-flexbox/intrinsic-size/auto-min-size-001.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-grid/abspos/grid-abspos-staticpos-justify-self-rtl-002-ref.html", "==" ] ], {} ] ], - "col-wrap-001.html": [ - "45da5123896a7b6ebd430b1ea0b67f1965771ea7", + "grid-abspos-staticpos-justify-self-rtl-003.html": [ + "f27bb62c04b28f5cdf6ff1c5410f8667838365d9", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-grid/abspos/grid-abspos-staticpos-justify-self-rtl-003-ref.html", "==" ] ], {} ] ], - "col-wrap-002.html": [ - "0e61cf7846213a7237e574a248965fcd40695889", + "grid-abspos-staticpos-justify-self-rtl-004.html": [ + "a8647bbe8719f9df737bd47bfdf3c975a52eabcd", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-grid/abspos/grid-abspos-staticpos-justify-self-rtl-004-ref.html", "==" ] ], {} ] ], - "col-wrap-003.html": [ - "518bf9f65844e00998b7154f074b14d93e71df40", + "grid-abspos-staticpos-justify-self-rtl-last-baseline-001.html": [ + "1f2be10532ec1439f703d70dc0ce10d41ce71086", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-grid/abspos/grid-abspos-staticpos-justify-self-rtl-last-baseline-001-ref.html", "==" ] ], {} ] ], - "col-wrap-006.html": [ - "52560057c8327cabd99fa7c7813ec630db42e7ec", + "grid-abspos-staticpos-justify-self-rtl-last-baseline-002.html": [ + "519c96f27b82bf4a6116520e391d5f603fcf0442", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-grid/abspos/grid-abspos-staticpos-justify-self-rtl-last-baseline-002-ref.html", "==" ] ], {} ] ], - "col-wrap-007.html": [ - "7f50f504569fa7e0a40e95fb881970f8145a6489", + "grid-abspos-staticpos-justify-self-rtl-last-baseline-003.html": [ + "90af5052cceaff188fc6ddde5695bf317d575da5", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-grid/abspos/grid-abspos-staticpos-justify-self-rtl-last-baseline-003-ref.html", "==" ] ], {} ] ], - "col-wrap-008.html": [ - "5edde9495d1382e774cd295cabf81766b0b41a7b", + "grid-abspos-staticpos-justify-self-rtl-last-baseline-004.html": [ + "66df456e7b047410f3077fd56c2e97c31a303402", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-grid/abspos/grid-abspos-staticpos-justify-self-rtl-last-baseline-004-ref.html", "==" ] ], {} ] ], - "col-wrap-009.html": [ - "62514dbcffea07f87bf01930dd45e00d2e6a6af1", + "grid-abspos-staticpos-justify-self-vertWM-001.html": [ + "ef5af105f62a453927e6981a1e956fccf908abf8", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-grid/abspos/grid-abspos-staticpos-justify-self-vertWM-001-ref.html", "==" ] ], {} ] ], - "col-wrap-011.html": [ - "9970d43d0cdc58e5b12f63bd0b397e5dac12fa75", + "grid-abspos-staticpos-justify-self-vertWM-002.html": [ + "bed8a0a75cef63d2e8bffec9ddf418954d7059dd", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-grid/abspos/grid-abspos-staticpos-justify-self-vertWM-002-ref.html", "==" ] ], {} ] ], - "col-wrap-012.html": [ - "a46ceea2ec495123ff05d0ffcbe5b2f5d5067a4d", + "grid-abspos-staticpos-justify-self-vertWM-003.html": [ + "2626c49d229bc51cb632f28612952562d2819269", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-grid/abspos/grid-abspos-staticpos-justify-self-vertWM-003-ref.html", "==" ] ], {} ] ], - "col-wrap-013.html": [ - "d8eab3f1331d90611c4dc93acfd4fbb93470e7e0", + "grid-abspos-staticpos-justify-self-vertWM-004.html": [ + "4574da3a82de395fcc3bbc4c9fcb33a14afd10cf", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-grid/abspos/grid-abspos-staticpos-justify-self-vertWM-004-ref.html", "==" ] ], {} ] ], - "col-wrap-014.html": [ - "5861d829b5822e236de2288ca7e0f3c1a3716cec", + "grid-abspos-staticpos-justify-self-vertWM-last-baseline-001.html": [ + "f7ada7a8e5ee841d4fa8921428d87f38cfadec9f", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-grid/abspos/grid-abspos-staticpos-justify-self-vertWM-last-baseline-001-ref.html", "==" ] ], {} ] ], - "col-wrap-015.html": [ - "23b762f36a9b2bdbd74b740e67c95c68ab626b07", + "grid-abspos-staticpos-justify-self-vertWM-last-baseline-002.html": [ + "aa1303d35316fd8c91c0c0922a87e89d1ebaeb8d", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-grid/abspos/grid-abspos-staticpos-justify-self-vertWM-last-baseline-002-ref.html", "==" ] ], {} ] ], - "col-wrap-016.html": [ - "a013bbd3566b806e6038d619d0cb80e11b97a358", + "grid-abspos-staticpos-justify-self-vertWM-last-baseline-003.html": [ + "4ab166e688a87b9a51da2e2d294d9940bcc02fc0", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-grid/abspos/grid-abspos-staticpos-justify-self-vertWM-last-baseline-003-ref.html", "==" ] ], {} ] ], - "col-wrap-017.html": [ - "c7a64643bf1d4b3482334beaf2ca70c6dd9e7435", + "grid-abspos-staticpos-justify-self-vertWM-last-baseline-004.html": [ + "26e7e66b0a018fe75bfa24838662993fbb583adb", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-grid/abspos/grid-abspos-staticpos-justify-self-vertWM-last-baseline-004-ref.html", "==" ] ], {} ] ], - "row-001.html": [ - "d6f92804ac14ed9eac080ca103519dd44c788cb7", + "grid-item-absolute-positioning-dynamic-001.html": [ + "bcd5dbaab5db71463fa2ec511fcb4d21e7942b90", [ - "css/css-flexbox/intrinsic-size/row-001.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/reference/ref-filled-green-200px-square.html", "==" ] ], {} ] ], - "row-002.html": [ - "1756ee00378bc4fd22529bfbd0ecb8c06e8009e5", + "grid-paint-positioned-children-001.html": [ + "549335e49fb781ae2dec98716fc633a2dbe3d746", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-grid/abspos/grid-paint-positioned-children-001-ref.html", "==" ] ], {} ] ], - "row-003.html": [ - "dda650fa668c58d10ab767a5b39ced3a384ed176", + "grid-positioned-children-writing-modes-001.html": [ + "8b9df8bebada6b6b66ef5da68dc733d66934cf10", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-grid/abspos/grid-positioned-children-writing-modes-001-ref.html", "==" ] ], {} ] ], - "row-004.html": [ - "692457a093206606cbad6bbebb2cc49a33231222", + "grid-positioned-item-dynamic-change-001.html": [ + "ff0c04e24ee87ddcb9d9cb60500e3f18bbbe12bd", [ null, [ @@ -181692,8 +182184,8 @@ {} ] ], - "row-006.html": [ - "c7b6171cf4e3174913cee9d73bd6d702fd8459f2", + "grid-positioned-item-dynamic-change-002.html": [ + "8fe117b0b162d39ae0e44dab853b6848ac7b6f54", [ null, [ @@ -181705,8 +182197,8 @@ {} ] ], - "row-007.html": [ - "b2f4f0ab19eff34321bc176bc88924dbbd2fcec2", + "grid-positioned-item-dynamic-change-003.html": [ + "c28f7ccc2c8023aa96ba2d42e8aca892ca873568", [ null, [ @@ -181718,7415 +182210,5984 @@ {} ] ], - "row-wrap-002.tentative.html": [ - "7ed61fa8bffa9541de2c9d1c9bcbe902bf5eb010", + "grid-positioned-item-dynamic-change-004.html": [ + "87dd67989064c6b869c492d6acee89e4e7690cb8", [ - "css/css-flexbox/intrinsic-size/row-wrap-002.tentative.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-grid/abspos/grid-positioned-item-dynamic-change-004-ref.html", "==" ] ], {} ] - ] - }, - "item-with-max-height-and-scrollbar.html": [ - "167417a2563eaf54650f8347584e7e5b53d13903", - [ - null, + ], + "grid-positioned-item-dynamic-change-005.html": [ + "e943391d2c88558a5d295acbdbc4bdcb8959cef2", [ + null, [ - "/css/css-flexbox/reference/item-with-max-height-and-scrollbar-ref.html", - "==" - ] - ], - {} - ] - ], - "item-with-table-with-infinite-max-intrinsic-width.html": [ - "f475db5bcffd1449be231da943cd1511b15e20b1", - [ - null, + [ + "/css/css-grid/abspos/grid-positioned-item-dynamic-change-005-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-positioned-item-dynamic-change-006.html": [ + "ee1581e2e1c9b7fe95c1fdedcbefbe4a735f37bc", [ + null, [ - "/css/reference/ref-filled-green-100px-square-only.html", - "==" - ] - ], - {} - ] - ], - "justify-content-001.htm": [ - "75ba056bf3615ecc38c8cef162f70a2ecd51ac41", - [ - null, + [ + "/css/css-grid/abspos/grid-positioned-item-dynamic-change-006-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-positioned-item-dynamic-change-007.html": [ + "3c5f227dd0a1d20452d93f6f5e54b797c1c2269f", [ + null, [ - "/css/css-flexbox/reference/justify-content-001-ref.html", - "==" - ] - ], - { - "fuzzy": [ [ - null, - [ - [ - 1, - 1 - ], - [ - 0, - 5841 - ] - ] + "/css/css-grid/abspos/grid-positioned-item-dynamic-change-007-ref.html", + "==" ] - ] - } - ] - ], - "justify-content-002.htm": [ - "e3c671a53faf491f8015551594fe055e549b2d61", - [ - null, + ], + {} + ] + ], + "grid-positioned-items-background-001.html": [ + "f5e49fbffe574e9e16cfd12dedb643b02c5f28dd", [ + null, [ - "/css/css-flexbox/reference/justify-content-001-ref.html", - "==" - ] - ], - { - "fuzzy": [ [ - null, - [ - [ - 0, - 1 - ], - [ - 0, - 6578 - ] - ] + "/css/css-grid/abspos/grid-positioned-items-background-001-ref.html", + "==" ] - ] - } - ] - ], - "justify-content-003.htm": [ - "985ec6b469de59be5f55b8776273e8fee7effe3b", - [ - null, + ], + {} + ] + ], + "grid-positioned-items-background-rtl-001.html": [ + "81f4f10f5c5cf97eea5d89352206cf8cbce7595a", [ + null, [ - "/css/css-flexbox/reference/justify-content-001-ref.html", - "==" - ] - ], - {} - ] - ], - "justify-content-004.htm": [ - "88dcfe8c026bd2fcef003f644c8b12a097b0331d", - [ - null, + [ + "/css/css-grid/abspos/grid-positioned-items-background-rtl-001-ref.html", + "==" + ] + ], + {} + ] + ], + "orthogonal-positioned-grid-items-001.html": [ + "54f937defd29125d955180f344e40501de6a2126", [ + null, [ - "/css/css-flexbox/reference/justify-content-001-ref.html", - "==" - ] - ], - { - "fuzzy": [ [ - null, - [ - [ - 0, - 1 - ], - [ - 0, - 5838 - ] - ] + "/css/css-grid/abspos/orthogonal-positioned-grid-items-001-ref.html", + "==" ] - ] - } - ] - ], - "justify-content-005.htm": [ - "7203d7f1d17ce9b7de7f8abd26f2bbb3686c358f", - [ - null, + ], + {} + ] + ], + "orthogonal-positioned-grid-items-002.html": [ + "50aea1650214be2ab6c1d267aee7dae09969ede8", [ + null, [ - "/css/css-flexbox/reference/justify-content-001-ref.html", - "==" - ] - ], - { - "fuzzy": [ [ - null, - [ - [ - 1, - 1 - ], - [ - 0, - 5832 - ] - ] + "/css/css-grid/abspos/orthogonal-positioned-grid-items-001-ref.html", + "==" ] - ] - } - ] - ], - "layout-algorithm_algo-cross-line-001.html": [ - "7fcc96f3c0c07068a00ed6a3a8007d44cca021fb", - [ - null, + ], + {} + ] + ], + "orthogonal-positioned-grid-items-003.html": [ + "4e118624b8ac8b9122a26308b16b1d92b30162e7", [ + null, [ - "/css/css-flexbox/reference/layout-algorithm_algo-cross-line-001-ref.html", - "==" - ] - ], - {} - ] - ], - "layout-algorithm_algo-cross-line-002.html": [ - "1d860b44003fa9e2a765e37fdff8a8afbf78a27e", - [ - null, + [ + "/css/css-grid/abspos/orthogonal-positioned-grid-items-001-ref.html", + "==" + ] + ], + {} + ] + ], + "orthogonal-positioned-grid-items-004.html": [ + "7a724092a2bc963c5fff9febe9d4490024840b15", [ + null, [ - "/css/css-flexbox/reference/layout-algorithm_algo-cross-line-002-ref.html", - "==" - ] - ], - {} - ] - ], - "multiline-column-max-height.html": [ - "5a165233f855d10de870d110a2d9ed8c0abc147b", - [ - null, + [ + "/css/css-grid/abspos/orthogonal-positioned-grid-items-001-ref.html", + "==" + ] + ], + {} + ] + ], + "orthogonal-positioned-grid-items-005.html": [ + "dacbc852899c1e62ab91614d249e3a0edd2e3628", [ + null, [ - "/css/css-flexbox/reference/multiline-column-max-height-ref.html", - "==" - ] - ], - {} - ] - ], - "multiline-reverse-wrap-baseline.html": [ - "310ad28232c5b9af94c8b00ae4b2f4399d62a284", - [ - null, + [ + "/css/css-grid/abspos/orthogonal-positioned-grid-items-005-ref.html", + "==" + ] + ], + {} + ] + ], + "orthogonal-positioned-grid-items-006.html": [ + "00930da29806e6103fb846f9698ab002385733b7", [ + null, [ - "/css/css-flexbox/reference/multiline-reverse-wrap-baseline-ref.html", - "==" - ] - ], - {} - ] - ], - "multiline-shrink-to-fit.html": [ - "e2a65a501ff5cd39113ccfa679ae95faeeb2fd7b", - [ - null, + [ + "/css/css-grid/abspos/orthogonal-positioned-grid-items-006-ref.html", + "==" + ] + ], + {} + ] + ], + "orthogonal-positioned-grid-items-007.html": [ + "a663f0fdb7c0909be13a3e7afdb9c0bf62d9cb16", [ + null, [ - "/css/css-flexbox/reference/multiline-shrink-to-fit-ref.html", - "==" - ] - ], - {} - ] - ], - "negative-margins-001.html": [ - "cd14ce0d4ede6f950ea6fd92176cfea662e45170", - [ - null, + [ + "/css/css-grid/abspos/orthogonal-positioned-grid-items-007-ref.html", + "==" + ] + ], + {} + ] + ], + "orthogonal-positioned-grid-items-008.html": [ + "fab723d18858b7938a512b62256fa2fae859c594", [ + null, [ - "/css/css-flexbox/reference/negative-margins-001-ref.html", - "==" - ] - ], - {} - ] - ], - "nested-flex-image-loading-invalidates-intrinsic-sizes.html": [ - "246740960c0b9891b8f22bd76f9edd8b6cbf3c62", - [ - "css/css-flexbox/nested-flex-image-loading-invalidates-intrinsic-sizes.html", + [ + "/css/css-grid/abspos/orthogonal-positioned-grid-items-008-ref.html", + "==" + ] + ], + {} + ] + ], + "orthogonal-positioned-grid-items-009.html": [ + "dd1849e988cc650d8049132a87735c4e906f2d61", [ + null, [ - "/css/reference/ref-filled-green-100px-square-only.html", - "==" - ] - ], - {} - ] - ], - "nested-orthogonal-flexbox-relayout.html": [ - "ef158c6a4884b8ee2840bafe27e605e618aa8be5", - [ - null, + [ + "/css/css-grid/abspos/orthogonal-positioned-grid-items-009-ref.html", + "==" + ] + ], + {} + ] + ], + "orthogonal-positioned-grid-items-010.html": [ + "b1d5353770eb7046b51ef6c8019d367437977a91", [ + null, [ - "/css/css-flexbox/reference/nested-orthogonal-flexbox-relayout-ref.html", - "==" - ] - ], - {} - ] - ], - "order": { - "order-abs-children-painting-order-different-container.html": [ - "202581dd1d1b668722182aa22744b092c064cb95", + [ + "/css/css-grid/abspos/orthogonal-positioned-grid-items-009-ref.html", + "==" + ] + ], + {} + ] + ], + "orthogonal-positioned-grid-items-011.html": [ + "c0772d46abdc21bb33b52b2dad90cc5586f0aa4c", [ - "css/css-flexbox/order/order-abs-children-painting-order-different-container.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-grid/abspos/orthogonal-positioned-grid-items-011-ref.html", "==" ] ], {} ] ], - "order-abs-children-painting-order.html": [ - "248f380e5aebb651069116cb32722389a511d962", + "orthogonal-positioned-grid-items-012.html": [ + "8e29b822ab94f431cba1831371b577731302f868", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-grid/abspos/orthogonal-positioned-grid-items-012-ref.html", "==" ] ], {} ] ], - "order-with-column-reverse.html": [ - "5083d6843649bbbb2bf9d417ae4022042c87e0aa", + "orthogonal-positioned-grid-items-013.html": [ + "b78f706fd83a2a81f8266b8e70899aa6d30d7da0", [ null, [ [ - "/css/css-flexbox/order/order-with-column-reverse-ref.html", + "/css/css-grid/abspos/orthogonal-positioned-grid-items-013-ref.html", "==" ] ], {} ] ], - "order-with-row-reverse.html": [ - "c36d4831b940dde2dd06bccde26311171a1bb57d", + "orthogonal-positioned-grid-items-014.html": [ + "37d643b9e8435c4fd4a47a477fe37579af31cc63", [ null, [ [ - "/css/css-flexbox/order/order-with-row-reverse-ref.html", + "/css/css-grid/abspos/orthogonal-positioned-grid-items-014-ref.html", "==" ] ], {} ] - ] - }, - "order-painting.html": [ - "68e0fd6aac3c629eeb3252971fa5fea49c46b489", - [ - null, + ], + "orthogonal-positioned-grid-items-015.html": [ + "a1da3f6f3fa16e4d5e7737a72d2dba4326c80e8c", [ + null, [ - "/css/css-flexbox/reference/order-painting-ref.html", - "==" - ] - ], - {} - ] - ], - "ortho-table-item-001.html": [ - "dca42e559f296def8d5109f4cc688527d19d1be3", - [ - null, + [ + "/css/css-grid/abspos/orthogonal-positioned-grid-items-015-ref.html", + "==" + ] + ], + {} + ] + ], + "orthogonal-positioned-grid-items-016.html": [ + "06aedf3d2daa0143711a0180fd3b4f10d216d5fe", [ + null, [ - "/css/reference/ref-filled-green-100px-square-only.html", - "==" - ] - ], - {} - ] - ], - "overflow-area-001.html": [ - "10685c6e84a1683f75e6822b66d9e02645973ccc", - [ - null, + [ + "/css/css-grid/abspos/orthogonal-positioned-grid-items-016-ref.html", + "==" + ] + ], + {} + ] + ], + "orthogonal-positioned-grid-items-017.html": [ + "f0f91ec321de218e3615750b3fbc4f9b28408e08", [ + null, [ - "/css/css-flexbox/reference/overflow-area-001-ref.html", - "==" - ] - ], - {} - ] - ], - "overflow-area-002.html": [ - "1287270f1ef645fb4e04a67fb90b368d03b3f208", - [ - null, + [ + "/css/css-grid/abspos/orthogonal-positioned-grid-items-017-ref.html", + "==" + ] + ], + {} + ] + ], + "positioned-grid-descendants-017.html": [ + "e1c23a2a0fef274ef56cb1971363e48abb2d3ec5", [ + null, [ - "/css/css-flexbox/reference/overflow-area-002-ref.html", - "==" - ] - ], - {} - ] - ], - "overflow-area-003.html": [ - "ff86dea30f10bf9e8411871b98a249500d74832b", - [ - null, + [ + "/css/css-grid/abspos/positioned-grid-descendants-017-ref.html", + "==" + ] + ], + {} + ] + ], + "positioned-grid-items-001.html": [ + "48dee4bfc093881c00f7b8419bf2d71e7b406cb2", [ + null, [ - "/css/css-flexbox/reference/overflow-area-003-ref.html", - "==" - ] - ], - {} - ] - ], - "overflow-auto-001.html": [ - "08c1bdbafabad98e7d823c47246f455cc0861fef", - [ - null, + [ + "/css/css-grid/abspos/positioned-grid-items-001-ref.html", + "==" + ] + ], + {} + ] + ], + "positioned-grid-items-002.html": [ + "54c40b69e552051d718be5f224e92c581a136ea4", [ + null, [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "overflow-auto-005.html": [ - "65b6d73e9a0fb3d939be2968b41749e551791f3f", - [ - null, + [ + "/css/css-grid/abspos/positioned-grid-items-001-ref.html", + "==" + ] + ], + {} + ] + ], + "positioned-grid-items-003.html": [ + "09583f4903dcd64984071465a5fff25afb1e432a", [ + null, [ - "/css/css-flexbox/reference/overflow-auto-005-ref.html", - "==" - ] - ], - { - "fuzzy": [ [ - null, - [ - [ - 0, - 3 - ], - [ - 0, - 3 - ] - ] + "/css/css-grid/abspos/positioned-grid-items-001-ref.html", + "==" ] - ] - } - ] - ], - "overflow-auto-007.html": [ - "1bb6230c3da33340605a31afb178236598472b60", - [ - null, + ], + {} + ] + ], + "positioned-grid-items-004.html": [ + "525fe057164f4ddd9d324871f75c750eae55955e", [ + null, [ - "/css/css-flexbox/reference/overflow-auto-007-ref.html", - "==" - ] - ], - {} - ] - ], - "overflow-top-left.html": [ - "682199815e03d214941a24b6a167d22ee852ced2", - [ - null, + [ + "/css/css-grid/abspos/positioned-grid-items-001-ref.html", + "==" + ] + ], + {} + ] + ], + "positioned-grid-items-005.html": [ + "9767714c04511782468fa716639e96b722892940", [ + null, [ - "/css/css-flexbox/overflow-top-left-ref.html", - "==" - ] - ], - {} - ] - ], - "percentage-descendant-of-anonymous-flex-item.html": [ - "592b5212ea6e5bd787aa9aab0d7f1c16c78bc134", - [ - null, + [ + "/css/css-grid/abspos/positioned-grid-items-005-ref.html", + "==" + ] + ], + {} + ] + ], + "positioned-grid-items-006.html": [ + "5ae2f2cd36d4097e9d86a322e0bcd04b66d84de2", [ + null, [ - "/css/css-flexbox/reference/percentage-descendant-of-anonymous-flex-item-ref.html", - "==" - ] - ], - {} - ] - ], - "percentage-heights-002.html": [ - "cfdf5be2ff536fad657d762cc20577a168cbec01", - [ - null, + [ + "/css/css-grid/abspos/positioned-grid-items-006-ref.html", + "==" + ] + ], + {} + ] + ], + "positioned-grid-items-007.html": [ + "cf17b29746d093153781f68464fffb2013cde5bc", [ + null, [ - "/css/css-flexbox/percentage-heights-002-ref.html", - "==" - ] - ], - {} - ] - ], - "percentage-heights-004.html": [ - "3fb0806b63d6b634129d1ba3e804042a762e4d29", - [ - null, + [ + "/css/css-grid/abspos/positioned-grid-items-007-ref.html", + "==" + ] + ], + {} + ] + ], + "positioned-grid-items-008.html": [ + "88d9572ed7df79d9fa5137bbbc245a80d3e3cd6b", [ + null, [ - "/css/css-flexbox/percentage-heights-004-ref.html", - "==" - ] - ], - {} - ] - ], - "percentage-heights-005.html": [ - "5f3cfeec7e026ed3100c6af37ccc12ad9a5c5258", - [ - null, + [ + "/css/css-grid/abspos/positioned-grid-items-008-ref.html", + "==" + ] + ], + {} + ] + ], + "positioned-grid-items-009.html": [ + "bdfd41d8b297a67a4a95caadd470935d16184cbb", [ + null, [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "percentage-heights-006.html": [ - "2f0b4a51e1b3ce7698420fe85be130f955d83537", - [ - null, + [ + "/css/css-grid/abspos/positioned-grid-items-009-ref.html", + "==" + ] + ], + {} + ] + ], + "positioned-grid-items-010.html": [ + "676deceb40fb933563a3bfb1ea81b7f5f768d850", [ + null, [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "percentage-heights-007.html": [ - "c885245bc367bbfb7e14889af9ad63690c3a3d3e", - [ - null, + [ + "/css/css-grid/abspos/positioned-grid-items-009-ref.html", + "==" + ] + ], + {} + ] + ], + "positioned-grid-items-011.html": [ + "e13c39837e49c455995801031146a80aab2f679e", [ + null, [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "percentage-heights-008.html": [ - "3fc44867eea71089d492c465dd0125cf82a816ee", - [ - null, + [ + "/css/css-grid/abspos/positioned-grid-items-011-ref.html", + "==" + ] + ], + {} + ] + ], + "positioned-grid-items-012.html": [ + "c9ff571653532777974ee3da2971d47e3789643d", [ + null, [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "percentage-heights-009.html": [ - "b3de59562bc1ff6b78d9c7b29a5836d47bf8a81b", - [ - null, + [ + "/css/css-grid/abspos/positioned-grid-items-012-ref.html", + "==" + ] + ], + {} + ] + ], + "positioned-grid-items-013.html": [ + "2bad6861b24ff8ed20750539f2da51df9ec3b09a", [ + null, [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "percentage-heights-010.html": [ - "003cc2487ae56d0172c9253be663b5c3dfdf83ff", - [ - null, + [ + "/css/css-grid/abspos/positioned-grid-items-013-ref.html", + "==" + ] + ], + {} + ] + ], + "positioned-grid-items-014.html": [ + "aef497d541b2855b45fa9c2da6fe0af9fe7226ba", [ + null, [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "percentage-heights-014.html": [ - "8e9ce201a649a8f6b9b11379e4186012d21108c2", - [ - null, + [ + "/css/css-grid/abspos/positioned-grid-items-014-ref.html", + "==" + ] + ], + {} + ] + ], + "positioned-grid-items-015.html": [ + "4de8be1a86a04778f0bd71a634f8044a459ed369", [ + null, [ - "/css/reference/ref-filled-green-100px-square-only.html", - "==" - ] - ], - {} - ] - ], - "percentage-heights-015.html": [ - "bdeb7c8d0cbb0219fa190bc2c40fc24585ab8f45", - [ - "css/css-flexbox/percentage-heights-015.html", + [ + "/css/css-grid/abspos/positioned-grid-items-015-ref.html", + "==" + ] + ], + {} + ] + ], + "positioned-grid-items-016.html": [ + "bc3ac50d2b74ee5f54cecffe152a63e3a7494653", [ + null, [ - "/css/css-flexbox/percentage-heights-015-ref.html", - "==" - ] - ], - {} - ] - ], - "percentage-heights-016.html": [ - "2090257eb54dad6aa1e67f462668de656e0f1db0", - [ - "css/css-flexbox/percentage-heights-016.html", + [ + "/css/css-grid/abspos/positioned-grid-items-016-ref.html", + "==" + ] + ], + {} + ] + ], + "positioned-grid-items-017.html": [ + "115abf49710b32454011d6c3981c88634a7c4aa5", [ + null, [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "percentage-heights-017.html": [ - "484a6a219511c15d2bdc46debf19f077fc3d82c3", - [ - "css/css-flexbox/percentage-heights-017.html", + [ + "/css/css-grid/abspos/positioned-grid-items-017-ref.html", + "==" + ] + ], + {} + ] + ], + "positioned-grid-items-018.html": [ + "0c9d21642ef828911c04d937c48052bf297baaf3", [ + null, [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "percentage-heights-018.html": [ - "4cdcd5d3f12ddfc6eb74e69c6c24b9e4a4b4f611", - [ - "css/css-flexbox/percentage-heights-018.html", + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "positioned-grid-items-019.html": [ + "b0aeac3a1dcaa6637a0e20481e6029ca2354c9e6", [ + null, [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "percentage-heights-019.html": [ - "4cc714c5cdcb555ff446005ff4c617d3e367f9ce", - [ - null, + [ + "/css/css-grid/abspos/positioned-grid-items-019-ref.html", + "==" + ] + ], + {} + ] + ], + "positioned-grid-items-020.html": [ + "baddf0bed62feb28921a56bf8565a071921801fd", [ + null, [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "percentage-max-height-001.html": [ - "8e6dd227a038c8f237c769dad8e92976fe9ca832", - [ - null, + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "positioned-grid-items-021.html": [ + "1e3d89de6ca16d21bb9f1437f6f49b5ae25e7d68", [ + null, [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "percentage-max-height-002.html": [ - "f674ec57d78521d5604afa93bbfe18f80a07dcec", - [ - null, + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "positioned-grid-items-022.html": [ + "df35b546f8fa9cd720b781d6d429a3322217154b", [ + null, [ - "/css/reference/ref-filled-green-100px-square-only.html", - "==" - ] - ], - {} - ] - ], - "percentage-max-height-003.html": [ - "eaab8a35e6fc31ee2144015c04adf12058768cb1", - [ - null, + [ + "/css/css-grid/abspos/positioned-grid-items-022-ref.html", + "==" + ] + ], + {} + ] + ], + "positioned-grid-items-023.html": [ + "a30f20e33edf8bc477839157d2aad02815aea9a2", [ + null, [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "percentage-max-height-004.html": [ - "3d155e3579ed760a1a5cfaf81a967d045528798e", - [ - null, + [ + "/css/css-grid/abspos/positioned-grid-items-023-ref.html", + "==" + ] + ], + {} + ] + ], + "positioned-grid-items-024.html": [ + "b214787026abe911d314128754b39dd86e181e12", [ + null, [ - "/css/css-flexbox/percentage-max-height-004-ref.html", - "==" - ] - ], - {} - ] - ], - "percentage-padding-002.html": [ - "9eaaff013ef26f557f5f883fea76b81b6031769f", - [ - null, + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "positioned-grid-items-025.html": [ + "d4c1b01a53d9356c209f32aa2d873f933d4230ae", [ + null, [ - "/css/css-flexbox/percentage-padding-002-ref.html", - "==" - ] - ], - {} - ] - ], - "percentage-padding-003.html": [ - "ee84f1570efb877843384b923e8a28ee58537f70", - [ - "css/css-flexbox/percentage-padding-003.html", + [ + "/css/css-grid/abspos/positioned-grid-items-025-ref.html", + "==" + ] + ], + {} + ] + ], + "positioned-grid-items-negative-indices-001.html": [ + "f723b2486c14bf993bfaf8bf4639f79fbac18e97", [ + null, [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "percentage-padding-004.html": [ - "ca96e546cc86e6a0c0db1a9884653cdecfab7409", - [ - "css/css-flexbox/percentage-padding-004.html", + [ + "/css/css-grid/abspos/positioned-grid-items-negative-indices-001-ref.html", + "==" + ] + ], + {} + ] + ], + "positioned-grid-items-negative-indices-002.html": [ + "4a023e1c62de988a0d36e5333becbf6fb3defef4", [ + null, [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "percentage-size-subitems-001.html": [ - "70f3953052a3a770c6cd15ee169607a00fc452b0", - [ - null, + [ + "/css/css-grid/abspos/positioned-grid-items-negative-indices-002-ref.html", + "==" + ] + ], + {} + ] + ], + "positioned-grid-items-negative-indices-003.html": [ + "099dd9ca068d0d7bea479430a6c8e86d73f00a68", [ + null, [ - "/css/css-flexbox/reference/percentage-size-subitems-001-ref.html", - "==" - ] - ], - {} - ] - ], - "percentage-widths-001.html": [ - "b1b5acff629ec900ebed5798fa471aafbbf8dceb", - [ - null, + [ + "/css/css-grid/abspos/positioned-grid-items-negative-indices-003-ref.html", + "==" + ] + ], + {} + ] + ], + "positioned-grid-items-sizing-001.html": [ + "7fb303c0dd0df39d614f8bee8bd003494fcd233c", [ + null, [ - "/css/css-flexbox/percentage-widths-001-ref.html", - "==" - ] - ], - {} + [ + "/css/css-grid/abspos/positioned-grid-items-sizing-001-ref.html", + "==" + ] + ], + {} + ] ] - ], - "position-absolute-scrollbar-freeze.html": [ - "ac510f11e9160b1ed646047ed5aa44d2ebaa8a6f", - [ - null, + }, + "alignment": { + "grid-align-baseline-005.html": [ + "c217a3b6de67bf78bd5d9f119ae1a31b0b73b939", [ + null, [ - "/css/css-flexbox/position-absolute-scrollbar-freeze-ref.html", - "==" - ] - ], - {} - ] - ], - "position-fixed-001.html": [ - "a3de19d6d9df95a505c547e48dea3de82af44de5", - [ - null, + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-baseline-001.html": [ + "ef8c0e4d3403f6aab952ae844d84490d7e569055", [ + null, [ - "/css/css-flexbox/reference/position-fixed-001-ref.html", - "==" - ] - ], - {} - ] - ], - "position-relative-percentage-top-002.html": [ - "698f310e90268e74193313aba2e5966914cf8457", - [ - null, + [ + "/css/css-grid/alignment/references/grid-baseline-001-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-baseline-002.html": [ + "b52eeff27e51e3136c4425e7761838ab8ceecc9f", [ + null, [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "position-relative-percentage-top-003.html": [ - "0570b246af1ce71f3669ff758d7ee942f48b2c5f", - [ - null, + [ + "/css/css-grid/alignment/references/grid-baseline-002-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-baseline-003.html": [ + "bd411abed91841b00a518e12cbd24a2bb60a4f57", [ + null, [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "scrollbars-auto.html": [ - "ed1ffb8d93aec7c95eb3c9bbdbb6bd31ae402593", - [ - null, + [ + "/css/css-grid/alignment/references/grid-baseline-003-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-baseline-align-001.html": [ + "e32031779fc30ca54e7283f2317b6e9ae5b7d105", [ + null, [ - "/css/css-flexbox/scrollbars-auto-ref.html", - "==" - ] - ], - {} - ] - ], - "scrollbars-no-margin.html": [ - "092e4c5ea9ff6b47440f2556482f978b88f1a82e", - [ - null, + [ + "/css/css-grid/alignment/references/grid-baseline-align-001-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-baseline-align-cycles-001.html": [ + "b6b04144ed9e2196da98b69310f1e62c6c1ef966", [ + null, [ - "/css/css-flexbox/scrollbars-no-margin-ref.html", - "==" - ] - ], - {} - ] - ], - "scrollbars.html": [ - "0eca05bfc63f9522e6d624c35469ba69e7410968", - [ - null, + [ + "/css/css-grid/alignment/references/grid-baseline-align-cycles-001-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-baseline-justify-001.html": [ + "171fcd3fcde8dd0b7b9e866569cf4d29449ece44", [ + null, [ - "/css/css-flexbox/scrollbars-ref.html", - "==" - ] - ], - {} - ] - ], - "select-element-zero-height-001.html": [ - "9e07c8019dce59b3e0d7ceb60d97f39556d0354f", - [ - null, + [ + "/css/css-grid/alignment/references/grid-baseline-justify-001-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-block-axis-alignment-auto-margins-008.html": [ + "9b489ac11940b14e45fb2c4a03219f605ffe0e47", [ + null, [ - "/css/css-flexbox/select-element-zero-height-001-ref.html", - "==" - ] - ], - {} - ] - ], - "select-element-zero-height-002.html": [ - "4ca56cc6e9d5b27bd1ac399bc6ed4dfe455a652b", - [ - null, + [ + "/css/css-grid/reference/grid-block-axis-alignment-auto-margins-008-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-container-auto-margins-scrollbars-001.html": [ + "51c7b18e949f647adb8805ddff6ee5dff110935b", [ + null, [ - "/css/css-flexbox/select-element-zero-height-002-ref.html", - "==" - ] - ], - {} - ] - ], - "stretch-flex-item-checkbox-input.html": [ - "896905d5e988eb574e69c40e8b93feec689c2485", - [ - null, + [ + "/css/css-grid/reference/grid-container-auto-margins-scrollbars-001-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-content-distribution-001.html": [ + "7b53a2897b83d20ff7cd12db85f576830953b56e", [ + null, [ - "/css/css-flexbox/stretch-flex-item-checkbox-input-ref.html", - "==" - ] - ], - {} - ] - ], - "stretch-flex-item-radio-input.html": [ - "bf8a08e703f2df516b45b32552e0ce2141039f30", - [ - null, + [ + "/css/reference/ref-filled-green-200px-square.html", + "==" + ] + ], + {} + ] + ], + "grid-content-distribution-002.html": [ + "194934bb93e5fdfdc57f573a6ef6235c19a99ed9", [ + null, [ - "/css/css-flexbox/stretch-flex-item-radio-input-ref.html", - "==" - ] - ], - {} - ] - ], - "stretch-input-in-column.html": [ - "4136c45d17a6bf946a4f788d95458c04ac6c6a6d", - [ - null, + [ + "/css/reference/ref-filled-green-200px-square.html", + "==" + ] + ], + {} + ] + ], + "grid-content-distribution-003.html": [ + "ed6e32263906647ee56f2003a64412846e593436", [ + null, [ - "/css/css-flexbox/reference/stretch-input-in-column-ref.html", - "==" - ] - ], - {} - ] - ], - "stretch-obeys-min-max-001.html": [ - "597b0f00a4c595c7f5af80840766882b0689102b", - [ - null, + [ + "/css/reference/ref-filled-green-200px-square.html", + "==" + ] + ], + {} + ] + ], + "grid-content-distribution-004.html": [ + "419d0fb1bd3064e1ff39c8eb204fccde696f5a05", [ + null, [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "stretch-obeys-min-max-002.html": [ - "d1e24cc7a7adfab9e10fcb174ca6f895a985e422", - [ - null, + [ + "/css/reference/ref-filled-green-200px-square.html", + "==" + ] + ], + {} + ] + ], + "grid-content-distribution-005.html": [ + "2830aecab6bf3fef7866cbcbe7af2a048698dbf7", [ + null, [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "stretch-obeys-min-max-003.html": [ - "77fd6955bda6b4ce898157f02d0591b052312611", - [ - null, + [ + "/css/reference/ref-filled-green-200px-square.html", + "==" + ] + ], + {} + ] + ], + "grid-content-distribution-006.html": [ + "61cfe2b68ed333799b49b1b602db0860e8606470", [ + null, [ - "/css/reference/ref-filled-green-100px-square-only.html", - "==" - ] - ], - {} - ] - ], - "stretching-orthogonal-flows.html": [ - "acaa787faf657b76a5b213fb9203088d5d28f4c4", - [ - null, + [ + "/css/reference/ref-filled-green-200px-square.html", + "==" + ] + ], + {} + ] + ], + "grid-content-distribution-007.html": [ + "d4dce5dc95a97423e1434f493fd235c42b23625c", [ + null, [ - "/css/css-flexbox/reference/stretching-orthogonal-flows-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-no-natural-size-grandchild.html": [ - "6f99654014e68b989695ac7f9fee46e51b62eeaf", - [ - null, + [ + "/css/reference/ref-filled-green-200px-square.html", + "==" + ] + ], + {} + ] + ], + "grid-content-distribution-008.html": [ + "3e381ec68b3bb0d2630f874fd2491619f46009dc", [ + null, [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "svg-root-as-flex-item-001.html": [ - "56d134e69be56204aacaf8f50d1109c157b6d697", - [ - null, + [ + "/css/reference/ref-filled-green-200px-square.html", + "==" + ] + ], + {} + ] + ], + "grid-content-distribution-009.html": [ + "aa28a980b66052774b044c0a6f6c4adbfad9189f", [ + null, [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "svg-root-as-flex-item-002.html": [ - "0594eb406ee1197ccc803af49041b0eff20481e3", - [ - null, + [ + "/css/reference/ref-filled-green-200px-square.html", + "==" + ] + ], + {} + ] + ], + "grid-content-distribution-010.html": [ + "cb08775cd24666ce28673cd51dfb3287933f32ce", [ + null, [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "svg-root-as-flex-item-003.html": [ - "778690d7948f6c2b9952483859a9484a1349b3cb", - [ - null, + [ + "/css/reference/ref-filled-green-200px-square.html", + "==" + ] + ], + {} + ] + ], + "grid-content-distribution-011.html": [ + "57eb3d0eac2c9931c6e468e697eb33fbc2da1635", [ + null, [ - "/css/reference/ref-filled-green-100px-square-only.html", - "==" - ] - ], - {} - ] - ], - "svg-root-as-flex-item-004.html": [ - "1321433634599bf4c185b4882d6ca3bee4b71e2b", - [ - null, + [ + "/css/reference/ref-filled-green-200px-square.html", + "==" + ] + ], + {} + ] + ], + "grid-content-distribution-012.html": [ + "e45dbec8fce1595df1a8676d275aec8c80b75d56", [ + null, [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "svg-root-as-flex-item-005.html": [ - "19501347662f387141f0eb0dbb16c23906c35589", - [ - null, + [ + "/css/reference/ref-filled-green-200px-square.html", + "==" + ] + ], + {} + ] + ], + "grid-content-distribution-013.html": [ + "3e1df650fb1426296b1c46adbe2068202ecf7249", [ + null, [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "synthesize-vrl-baseline.html": [ - "1e753da0a2c1349d06608d5d84bfcb3e91083330", - [ - null, + [ + "/css/reference/ref-filled-green-200px-square.html", + "==" + ] + ], + {} + ] + ], + "grid-content-distribution-014.html": [ + "423aad172bc960952545c5f185e4a2111854b7c1", [ + null, [ - "/css/reference/ref-filled-green-100px-square-only.html", - "==" - ] - ], - {} - ] - ], - "table-as-flex-item-max-content.html": [ - "c7316aab950ddb1ceb6f05933ae9f1cec481f191", - [ - "css/css-flexbox/table-as-flex-item-max-content.html", + [ + "/css/reference/ref-filled-green-200px-square.html", + "==" + ] + ], + {} + ] + ], + "grid-content-distribution-015.html": [ + "ef4c857db6686d79590614600a4dffdd90fa97fc", [ + null, [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "table-as-item-auto-min-width.html": [ - "66a77327f0f25e07db87e342ebb590358d045f7a", - [ - null, + [ + "/css/reference/ref-filled-green-200px-square.html", + "==" + ] + ], + {} + ] + ], + "grid-content-distribution-016.html": [ + "11a66915de5a088d9be061737533f83be12ac8d4", [ + null, [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "table-as-item-change-cell.html": [ - "a83f518a232e82bf76a8b9c7a8d6cae71808b420", - [ - null, + [ + "/css/reference/ref-filled-green-200px-square.html", + "==" + ] + ], + {} + ] + ], + "grid-content-distribution-017.html": [ + "9a490ad94839795abcea7f766e2921d2ae7918b8", [ + null, [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "table-as-item-fixed-min-width-2.html": [ - "f04f9e58f7ae23f0205815fba0293efa70273aa6", - [ - null, + [ + "/css/reference/ref-filled-green-300px-square.html", + "==" + ] + ], + {} + ] + ], + "grid-content-distribution-018.html": [ + "1ba4f54aa461e4b5f74554b10d48a718ac2e4cfe", [ + null, [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "table-as-item-fixed-min-width-3.html": [ - "a13a94f56f6a8591521f4f38de227c2d483cc00a", - [ - null, + [ + "/css/reference/ref-filled-green-200px-square.html", + "==" + ] + ], + {} + ] + ], + "grid-content-distribution-019.html": [ + "49ca22eb24563610eff52ac651bf3b3fca2cd33b", [ + null, [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "table-as-item-fixed-min-width.html": [ - "83f0511031ef31fa52b96bbeb24672f1d61ca964", - [ - null, + [ + "/css/reference/ref-filled-green-200px-square.html", + "==" + ] + ], + {} + ] + ], + "grid-content-distribution-020.html": [ + "249f57d93fe8f161c443d69fe0ec327fb8282056", [ + null, [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "table-as-item-flex-cross-size.html": [ - "bfb6c34f556562a8a38c6a961daa5cebe0d96cf5", - [ - null, + [ + "/css/reference/ref-filled-green-300px-square.html", + "==" + ] + ], + {} + ] + ], + "grid-content-distribution-021.html": [ + "6a5469fc8c79e8849ad052d974bfa55bb1b9c2f9", [ + null, [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "table-as-item-inflexible-in-column-1.html": [ - "201a97fb4521bb05cfd148733132208c85e3404e", - [ - null, + [ + "/css/reference/ref-filled-green-200px-square.html", + "==" + ] + ], + {} + ] + ], + "grid-content-distribution-022.html": [ + "15a69c110257633bacc0f58b0360a932ee02b2f0", [ + null, [ - "/css/reference/ref-filled-green-100px-square-only.html", - "==" - ] - ], - {} - ] - ], - "table-as-item-inflexible-in-column-2.html": [ - "05a5cbc81c79fb0f5f8e2ce8b7dabcf8b8aae3f3", - [ - null, + [ + "/css/reference/ref-filled-green-300px-square.html", + "==" + ] + ], + {} + ] + ], + "grid-content-distribution-023.html": [ + "f5d07b764873a66c83d04c56d2629dd68369e599", [ + null, [ - "/css/reference/ref-filled-green-100px-square-only.html", - "==" - ] - ], - {} - ] - ], - "table-as-item-inflexible-in-row-1.html": [ - "073e7f7274ab7b3b52252d1d1b7301816c7dbf5e", - [ - null, + [ + "/css/reference/ref-filled-green-200px-square.html", + "==" + ] + ], + {} + ] + ], + "grid-content-distribution-024.html": [ + "1b6932bca56477666124a965fad25b43c43deb3f", [ + null, [ - "/css/reference/ref-filled-green-100px-square-only.html", - "==" - ] - ], - {} - ] - ], - "table-as-item-inflexible-in-row-2.html": [ - "4ef3db11f28569e92cee0d85bcdee79f24932cb4", - [ - null, + [ + "/css/reference/ref-filled-green-200px-square.html", + "==" + ] + ], + {} + ] + ], + "grid-content-distribution-025.html": [ + "f229a56f4fb1e24bfa94f86b4cafd624d6a61788", [ + null, [ - "/css/reference/ref-filled-green-100px-square-only.html", - "==" - ] - ], - {} - ] - ], - "table-as-item-large-intrinsic-size.html": [ - "1aba63b4fb4bfa5f4566c30a4da4a67e275882d6", - [ - "css/css-flexbox/table-as-item-large-intrinsic-size.html", + [ + "/css/reference/ref-filled-green-300px-square.html", + "==" + ] + ], + {} + ] + ], + "grid-content-distribution-026.html": [ + "8f5a8111c542a9b808795238c6f9dd4f5df90b0e", [ + null, [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "table-as-item-min-content-height-1.tentative.html": [ - "f60561b453881cb7e4e0b17155800ef4c8b1ce16", - [ - null, + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "grid-content-distribution-027.html": [ + "35e300ee64d87926f505c07df57ad18a29e604d9", [ + 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-only.html", + "==" + ] + ], + {} + ] + ], + "grid-content-distribution-028.html": [ + "216b05a4d6c89dbe888caaeeff45818dec1ca537", [ + 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-only.html", + "==" + ] + ], + {} + ] + ], + "grid-content-distribution-029.html": [ + "95f52813799cd1578adead83c68d1e681f6a8558", [ + null, [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "table-as-item-narrow-content-2.html": [ - "96af10770f2de07a9adae7603eaa0cd0ebad0121", - [ - null, + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "grid-content-distribution-with-collapsed-tracks-001.html": [ + "ebd169cf5913112ef7c9c1fa02cdb2115ceef605", [ + null, [ - "/css/reference/ref-filled-green-100px-square-only.html", - "==" - ] - ], - {} - ] - ], - "table-as-item-narrow-content.html": [ - "31cf112518198044d485b4ba5ff477773c29487c", - [ - null, + [ + "/css/reference/ref-filled-green-200px-square.html", + "==" + ] + ], + {} + ] + ], + "grid-content-distribution-with-collapsed-tracks-002.html": [ + "a48c377ef321b018742e3275f5c9fbc8f09663c7", [ + null, [ - "/css/reference/ref-filled-green-100px-square-only.html", - "==" - ] - ], - {} - ] - ], - "table-as-item-percent-width-cell-001.html": [ - "b578b233405fdc164be5c26456f8bc1d558cf85c", - [ - null, + [ + "/css/reference/ref-filled-green-200px-square.html", + "==" + ] + ], + {} + ] + ], + "grid-content-distribution-with-collapsed-tracks-003.html": [ + "25c03022a37613dbb6df341ed1edfcf718be48a8", [ + null, [ - "/css/css-flexbox/table-as-item-percent-width-cell-001-ref.html", - "==" - ] - ], - {} - ] - ], - "table-as-item-specified-height.html": [ - "f8f3740fcd413fa253207ee4fbe74b5afac7b68a", - [ - null, + [ + "/css/reference/ref-filled-green-200px-square.html", + "==" + ] + ], + {} + ] + ], + "grid-content-distribution-with-collapsed-tracks-004.html": [ + "a280a69871e1d26fac55a2d99608b31947e67f8a", [ + null, [ - "/css/reference/ref-filled-green-100px-square-only.html", - "==" - ] - ], - {} - ] - ], - "table-as-item-specified-width-vertical.html": [ - "623e7508e901560a13cab3175246cb7f510e9fce", - [ - "css/css-flexbox/table-as-item-specified-width-vertical.html", + [ + "/css/reference/ref-filled-green-200px-square.html", + "==" + ] + ], + {} + ] + ], + "grid-content-distribution-with-collapsed-tracks-005.html": [ + "34d62116ed36617a043460b59a3ca1adabd85413", [ + null, [ - "/css/reference/ref-filled-green-100px-square-only.html", - "==" - ] - ], - {} - ] - ], - "table-as-item-specified-width.html": [ - "2d6850fdd73c9ccaf439fd6b547472880d95cb8c", - [ - null, + [ + "/css/reference/ref-filled-green-200px-square.html", + "==" + ] + ], + {} + ] + ], + "grid-content-distribution-with-collapsed-tracks-006.html": [ + "151d34d2bb409ab4ad857616dddf76335b0f9406", [ + null, [ - "/css/reference/ref-filled-green-100px-square-only.html", - "==" - ] - ], - {} - ] - ], - "table-as-item-stretch-cross-size-2.html": [ - "04e5b1e342e7cf61fbfec5ef6e82d9ca25909472", - [ - null, + [ + "/css/reference/ref-filled-green-200px-square.html", + "==" + ] + ], + {} + ] + ], + "grid-content-distribution-with-collapsed-tracks-007.html": [ + "061e93bae7a0560a3a709b3834d2c614e6922645", [ + null, [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "table-as-item-stretch-cross-size-3.html": [ - "bba29bdd29b7a7be22d1b9ff3454cbac6d6aa10d", - [ - null, + [ + "/css/reference/ref-filled-green-200px-square.html", + "==" + ] + ], + {} + ] + ], + "grid-content-distribution-with-collapsed-tracks-008.html": [ + "1b7135e70b325813974c76fd9824ecf1a853597e", [ + null, [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "table-as-item-stretch-cross-size-4.html": [ - "0e70b4687ce95c13f1ecc6bc058ae9295481a422", - [ - null, + [ + "/css/reference/ref-filled-green-200px-square.html", + "==" + ] + ], + {} + ] + ], + "grid-content-distribution-with-collapsed-tracks-009.html": [ + "0bc4adae76e4b089a25b35a3dacf1a5bba380225", [ + null, [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "table-as-item-stretch-cross-size-5.html": [ - "f5b898ac12a61893616adbbfce9010559a19b551", - [ - null, + [ + "/css/reference/ref-filled-green-200px-square.html", + "==" + ] + ], + {} + ] + ], + "grid-content-distribution-with-collapsed-tracks-010.html": [ + "eccf0041c8159540a02e91b323101cdc7f4f099b", [ + null, [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "table-as-item-stretch-cross-size.html": [ - "06d685be8b4ad3ab84790d62b60fcf7abf19042b", - [ - null, + [ + "/css/reference/ref-filled-green-200px-square.html", + "==" + ] + ], + {} + ] + ], + "grid-content-distribution-with-collapsed-tracks-011.html": [ + "fca4df588da8fe453ff9e17f20049d41be0d7b6d", [ + null, [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "table-as-item-wide-content.html": [ - "45ad49ec2d69808cb09892515ea882716edd369d", - [ - null, + [ + "/css/reference/ref-filled-green-200px-square.html", + "==" + ] + ], + {} + ] + ], + "grid-content-distribution-with-collapsed-tracks-012.html": [ + "4250c14126c1435e5a4fefc68820d4c305ab29c8", [ + null, [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "table-item-flex-percentage-min-width.html": [ - "a67e4fe15f65aab403c376cff6ecda5a25da51bf", - [ - null, + [ + "/css/reference/ref-filled-green-200px-square.html", + "==" + ] + ], + {} + ] + ], + "grid-content-distribution-with-collapsed-tracks-013.html": [ + "f20741e4a00ec5226cfa83ff65570ddf275278be", [ + null, [ - "/css/css-flexbox/table-item-flex-percentage-min-width-ref.html", - "==" - ] - ], - {} - ] - ], - "table-item-flex-percentage-width.html": [ - "f21b5f0c6562c3970ae95202f5e3adf7a3deb489", - [ - null, + [ + "/css/reference/ref-filled-green-200px-square.html", + "==" + ] + ], + {} + ] + ], + "grid-content-distribution-with-collapsed-tracks-014.html": [ + "78d2477109b130163c15b7f661f46d3d1f867db2", [ + null, [ - "/css/css-flexbox/table-item-flex-percentage-width-ref.html", - "==" - ] - ], - {} - ] - ], - "table-with-float-paint.html": [ - "da78a0a576b375a85f7f63ce97093e9ab90e614b", - [ - null, + [ + "/css/reference/ref-filled-green-200px-square.html", + "==" + ] + ], + {} + ] + ], + "grid-content-distribution-with-collapsed-tracks-015.html": [ + "e8247e0419bfc6facc030e3c666d6bbe552bcad1", [ + null, [ - "/css/reference/ref-filled-green-100px-square-only.html", - "==" - ] - ], - {} - ] - ], - "table-with-infinite-max-intrinsic-width.html": [ - "7f4a4645f339e27eacabf8cfae3a9f791ef06ddc", - [ - null, + [ + "/css/reference/ref-filled-green-200px-square.html", + "==" + ] + ], + {} + ] + ], + "grid-content-distribution-with-collapsed-tracks-016.html": [ + "511961f34e5eebe8a2aea28a417bf7039b06eb67", [ + null, [ - "/css/reference/ref-filled-green-100px-square-only.html", - "==" - ] - ], - {} - ] - ], - "text-overflow-on-flexbox-001.html": [ - "ba0430999460c1aa2bf2b3021ac899524761dd97", - [ - null, + [ + "/css/reference/ref-filled-green-300px-square.html", + "==" + ] + ], + {} + ] + ], + "grid-content-distribution-with-collapsed-tracks-017.html": [ + "f587301599a675d0487d3765dfe4fa35f6c32203", [ + null, [ - "/css/css-flexbox/reference/text-overflow-on-flexbox-001-ref.html", - "==" - ] - ], - {} - ] - ], - "webkit-box-vertical-writing-mode.html": [ - "c041b011d678a74abf916764e44a71d8e8ae16d0", - [ - null, + [ + "/css/reference/ref-filled-green-200px-square.html", + "==" + ] + ], + {} + ] + ], + "grid-content-distribution-with-collapsed-tracks-018.html": [ + "d91c1c5cab22c2a50e1b42d1a280e0f2180c2890", [ + null, [ - "/css/css-flexbox/webkit-box-vertical-writing-mode-ref.html", - "==" - ] - ], - {} - ] - ], - "whitespace-in-flexitem-001.html": [ - "a2fae9bd569d86d6216a674714e05861114f13e6", - [ - null, + [ + "/css/reference/ref-filled-green-200px-square.html", + "==" + ] + ], + {} + ] + ], + "grid-content-distribution-with-collapsed-tracks-019.html": [ + "7a09ce699d6ba88251a9b84448d392d3ed42db29", [ + null, [ - "/css/css-flexbox/whitespace-in-flexitem-001-ref.html", - "==" - ] - ], - {} - ] - ] - }, - "css-font-loading": { - "fontface-descriptor-updates.html": [ - "038b96da1e54654e1739e7034e1790c11c75a538", - [ - null, + [ + "/css/reference/ref-filled-green-300px-square.html", + "==" + ] + ], + {} + ] + ], + "grid-content-distribution-with-collapsed-tracks-020.html": [ + "f0a29e7f45a5523781680f19ccf96e98394e4785", [ + null, [ - "/css/css-font-loading/fontface-descriptor-updates-ref.html", - "==" - ] - ], - {} - ] - ], - "fontface-override-descriptors.html": [ - "34506b154793caac0ca3091fa6c1a250f99e7b3c", - [ - null, + [ + "/css/reference/ref-filled-green-200px-square.html", + "==" + ] + ], + {} + ] + ], + "grid-content-distribution-with-collapsed-tracks-021.html": [ + "d45f528d497f26ab564c17f1cdad71bdca265ea0", [ + null, [ - "/css/css-font-loading/fontface-override-descriptors-ref.html", - "==" - ] - ], - {} - ] - ], - "fontface-size-adjust-descriptor.html": [ - "40e7a7f70aa847f0d517d1b28b657249e02a42ae", - [ - null, + [ + "/css/reference/ref-filled-green-300px-square.html", + "==" + ] + ], + {} + ] + ], + "grid-content-distribution-with-collapsed-tracks-022.html": [ + "7f837ba4b2e812ed09299164645625a3684af477", [ + null, [ - "/css/css-font-loading/fontface-size-adjust-descriptor-ref.html", - "==" - ] - ], - {} - ] - ], - "fontfaceset-clear-css-connected-2.html": [ - "af285460ef6dbfee1f1ff97054fc042530447367", - [ - "css/css-font-loading/fontfaceset-clear-css-connected-2.html", + [ + "/css/reference/ref-filled-green-200px-square.html", + "==" + ] + ], + {} + ] + ], + "grid-content-distribution-with-collapsed-tracks-023.html": [ + "11de67a099a5c6889a1803496770eabdb7b46d69", [ + null, [ - "/css/css-font-loading/fontfaceset-clear-css-connected-2-ref.html", - "==" - ] - ], - {} - ] - ], - "fontfaceset-delete-css-connected-2.html": [ - "250ebb2b3b03611d039516df5429358267de1fcf", - [ - "css/css-font-loading/fontfaceset-delete-css-connected-2.html", + [ + "/css/reference/ref-filled-green-200px-square.html", + "==" + ] + ], + {} + ] + ], + "grid-content-distribution-with-collapsed-tracks-024.html": [ + "9afd058692de8bf2c19e167ff24b1a53b3b7564c", [ + null, [ - "/css/css-font-loading/fontfaceset-delete-css-connected-2-ref.html", - "==" - ] - ], - {} - ] - ] - }, - "css-fonts": { - "alternates-order.html": [ - "64bae31b8700e4755b778844a9d1280b95df9340", - [ - null, + [ + "/css/reference/ref-filled-green-300px-square.html", + "==" + ] + ], + {} + ] + ], + "grid-gutters-001.html": [ + "310aa4322ac37f6cc906b27a005da6a95210bbd0", [ + null, [ - "/css/css-fonts/alternates-order-ref.html", - "==" - ] - ], - {} - ] - ], - "ascent-descent-override.html": [ - "a2e02cc73de315f728ac2d7369a5173a588692ae", - [ - null, + [ + "/css/css-grid/reference/grid-equal-gutters-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-gutters-002.html": [ + "dbe9d145332b3f4bcdda2a3282c2cf87f00c9387", [ + null, [ - "/css/css-fonts/ascent-descent-override-ref.html", - "==" - ] - ], - {} - ] - ], - "first-available-font-001.html": [ - "5eb88f7bf6713b80e0adb4728681e62c3f2dc2bc", - [ - null, + [ + "/css/css-grid/reference/grid-equal-gutters-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-gutters-003.html": [ + "51bc25b3f600925b148d8a1e53d484bc704aad9d", [ + null, [ - "/css/css-fonts/first-available-font-001-ref.html", - "==" - ] - ], - {} - ] - ], - "first-available-font-002.html": [ - "df47df840bdef12fb7f958cd8146f3fe55dcf3f2", - [ - null, + [ + "/css/css-grid/reference/grid-different-gutters-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-gutters-004.html": [ + "c7d549a1b6e35879f1f89125e07d1a2a5e63fa0e", [ + null, [ - "/css/css-fonts/first-available-font-002-ref.html", - "==" - ] - ], - {} - ] - ], - "first-available-font-003.html": [ - "d6b1b2695ff28c4e6e214ab74f89fe5739632441", - [ - null, + [ + "/css/css-grid/reference/grid-different-gutters-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-gutters-005.html": [ + "cc67190affbbe6da53a98ba742a86fff239475bc", [ + null, [ - "/css/css-fonts/first-available-font-003-ref.html", - "==" - ] - ], - {} - ] - ], - "first-available-font-004.html": [ - "05ae07d6fdf2ca09bd71c2d9f6182fffebbedd51", - [ - null, + [ + "/css/css-grid/reference/grid-different-gutters-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-gutters-006.html": [ + "87fb7ec49dcacf92273bf8f381339e0c6ad26525", [ + null, [ - "/css/css-fonts/first-available-font-003-ref.html", - "==" - ] - ], - {} - ] - ], - "first-available-font-005.html": [ - "3a6b8871dd10f32ea2376822e21f84208c0fea7b", - [ - null, + [ + "/css/css-grid/reference/grid-different-gutters-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-gutters-007.html": [ + "4d66cf6750dbf8c8e090d4dd4e18513c175ad2ad", [ + null, [ - "/css/css-fonts/first-available-font-005-ref.html", - "==" - ] - ], - {} - ] - ], - "first-available-font-006.html": [ - "3766fd1bfa5d3fa44edbf9c3b7ec2fe70295a55e", - [ - null, + [ + "/css/css-grid/reference/grid-equal-gutters-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-gutters-008.html": [ + "a96eba3828303838cafa49ca749bb4c73b4cfa8d", [ + null, [ - "/css/css-fonts/first-available-font-005-ref.html", - "==" - ] - ], - {} - ] - ], - "first-available-font-007.html": [ - "0efbb3497968f2d2704ac6e5b5f9c6e6924c3f1c", - [ - null, + [ + "/css/css-grid/reference/grid-equal-gutters-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-gutters-009.html": [ + "dfc595f8204c25fec8947967df746336d07d7eaa", [ + null, [ - "/css/css-fonts/first-available-font-005-ref.html", - "==" - ] - ], - {} - ] - ], - "font-colorization.html": [ - "252d15fc5610ef6df5f73625b9dca56892565d83", - [ - null, + [ + "/css/css-grid/reference/grid-percentage-gap-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-gutters-010.html": [ + "22be6df72e8cb7f953eae294c994e6171693ad57", [ + null, [ - "/css/css-fonts/font-colorization-ref.html", - "==" - ] - ], - {} - ] - ], - "font-default-01.html": [ - "99fc58b7e187fb586c73bc8cf2ee30b716227c0c", - [ - null, + [ + "/css/css-grid/reference/grid-percentage-gap-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-gutters-011.html": [ + "daeba00aee1fcabba3103c476beea9692ea7754d", [ + null, [ - "/css/css-fonts/font-default-01-ref.html", - "==" - ] - ], - {} - ] - ], - "font-default-02.html": [ - "24f619421405445da989f931f5ae031e962fd09f", - [ - null, + [ + "/css/css-grid/reference/grid-different-gutters-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-gutters-012.html": [ + "b4af6f7a281e7f358b21ec7a5feb74628d103e4e", [ + null, [ - "/css/css-fonts/font-default-02-ref.html", - "==" - ] - ], - {} - ] - ], - "font-default-03.html": [ - "a72a4bc00d47e20c6b39b98a7369d09aca2bf891", - [ - null, + [ + "/css/css-grid/reference/grid-different-gutters-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-gutters-013.html": [ + "e72814725d2cb90fba6f3bd4d1e8370f37382fbb", [ + null, [ - "/css/css-fonts/font-default-03-ref.html", - "==" - ] - ], - {} - ] - ], - "font-default-04.html": [ - "5493d7205fbf2b959e12bab17802c7539f425380", - [ - null, + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-gutters-014.html": [ + "404e694ec8698a4efa3361eb6b3a5c20f8865b42", [ + null, [ - "/css/css-fonts/font-default-04-a-ref.html", - "==" + [ + "/css/css-grid/alignment/grid-gutters-014-ref.html", + "==" + ] ], + {} + ] + ], + "grid-gutters-015.html": [ + "ed1048fd69714a8d813b92103719f0171f165472", + [ + null, [ - "/css/css-fonts/font-default-04-b-ref.html", - "==" + [ + "/css/css-grid/alignment/grid-gutters-015-ref.html", + "==" + ] ], + {} + ] + ], + "grid-gutters-016.html": [ + "163787cfee6a9762ec018bd05ee2d3d7b4273114", + [ + null, [ - "/css/css-fonts/font-default-04-c-ref.html", - "==" - ] - ], - {} - ] - ], - "font-display": { - "font-display-change.html": [ - "64130ca52afa23bcc018bd9ccf97d81fab6a5c33", + [ + "/css/css-grid/alignment/grid-gutters-016-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-inline-axis-alignment-auto-margins-008.html": [ + "eb9666465542a34cc29853dd71dc326ff4cbbd63", [ null, [ [ - "/css/css-fonts/font-display/font-display-change-ref.html", + "/css/css-grid/reference/grid-inline-axis-alignment-auto-margins-008-ref.html", "==" ] ], {} ] ], - "font-display-feature-policy-02.tentative.html": [ - "65f76b07846faf193e2b0900f45211303aa290f9", + "grid-inline-baseline.html": [ + "0ff058553cbc0825854244c1c56cffcc31a474c1", [ null, [ [ - "/css/css-fonts/font-display/font-display-feature-policy-02.tentative-ref.html", + "/css/css-grid/reference/grid-inline-baseline-ref.html", "==" ] ], {} ] ], - "font-display-preload.html": [ - "46f392ff8473d11d05f9ebc6afe7b2bcdcf102bd", + "grid-item-aspect-ratio-stretch-1.html": [ + "909406f5e9e75e301886472d654de31df6951da8", [ null, [ [ - "/css/css-fonts/font-display/font-display-preload-ref.html", + "/css/css-grid/alignment/grid-item-aspect-ratio-stretch-1-ref.html", "==" ] ], {} ] ], - "font-display.html": [ - "a2b62c0676f4e12b529ede83f7df6e3b4e6765b1", + "grid-item-aspect-ratio-stretch-2.html": [ + "2a4dd2d787d34be1097beaaec73922296aad666c", [ null, [ [ - "/css/css-fonts/font-display/font-display-ref.html", + "/css/css-grid/alignment/grid-item-aspect-ratio-stretch-2-ref.html", "==" ] ], { - "timeout": "long" + "fuzzy": [ + [ + null, + [ + [ + 0, + 1 + ], + [ + 0, + 2 + ] + ] + ] + ] } ] - ] - }, - "font-face-stretch-auto-static.html": [ - "ce3c94fa2feb25483d44883cb5a883d74fea641b", - [ - "css/css-fonts/font-face-stretch-auto-static.html", - [ - [ - "/css/css-fonts/font-face-stretch-auto-static-ref.html", - "==" - ] - ], - {} - ] - ], - "font-face-stretch-auto-variable.html": [ - "142f16bb31b37b61f28ac46a7fc342a47d5ffd05", - [ - "css/css-fonts/font-face-stretch-auto-variable.html", + ], + "grid-item-aspect-ratio-stretch-3.html": [ + "43202541b2eb14ff54176c01f72dd58e77e9e73f", [ + null, [ - "/css/css-fonts/font-face-stretch-auto-variable-ref.html", - "==" - ] - ], - {} - ] - ], - "font-face-stretch-default-variable.html": [ - "dfb7f95d12ff110e9e7b612e498d77da76464253", - [ - "css/css-fonts/font-face-stretch-default-variable.html", + [ + "/css/css-grid/alignment/grid-item-aspect-ratio-stretch-3-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-item-aspect-ratio-stretch-4.html": [ + "f689cce023bcb279341870288683988d4bce6af4", [ + null, [ - "/css/css-fonts/font-face-stretch-default-variable-ref.html", - "==" - ] - ], - {} - ] - ], - "font-face-style-auto-static.html": [ - "8c8cae3e91936d74e495f8e0a094524a53f2dcbe", - [ - "css/css-fonts/font-face-style-auto-static.html", + [ + "/css/css-grid/alignment/grid-item-aspect-ratio-stretch-4-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-item-auto-margins-001.html": [ + "be5eb6efbeed1b46b5c988fe3e98b4c8d083966b", [ + null, [ - "/css/css-fonts/font-face-style-auto-static-ref.html", - "==" - ] - ], - {} - ] - ], - "font-face-style-auto-variable.html": [ - "4e503865ce97deeb02c448b611b8d0c0bd3ad05d", - [ - "css/css-fonts/font-face-style-auto-variable.html", + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-item-auto-margins-002.html": [ + "037794e6cc4fdf618fb9762889ed69a7bb3bece7", [ + null, [ - "/css/css-fonts/font-face-style-auto-variable-ref.html", - "==" - ] - ], - {} - ] - ], - "font-face-style-default-variable.html": [ - "55ff17f6bd6de165109eabd911bf4d2c2322fccf", - [ - "css/css-fonts/font-face-style-default-variable.html", + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-item-content-baseline-001.html": [ + "aa33f3c15b24e945449dd0aeea9d5cfa3e34a9f8", [ + null, [ - "/css/css-fonts/font-face-style-default-variable-ref.html", - "==" - ] - ], - {} - ] - ], - "font-face-unicode-range-2.html": [ - "e94c1b235fbc79c88b7a3106fd62f3f1431b4410", - [ - null, + [ + "/css/css-grid/alignment/grid-item-content-baseline-001-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-item-content-baseline-002.html": [ + "3d12f68cb0db505f05aac4a9f82d1b1ad28a23a5", [ + null, [ - "/css/css-fonts/font-face-unicode-range-2-ref.html", - "==" - ] - ], - {} - ] - ], - "font-face-unicode-range-nbsp.html": [ - "39c8fb8206f4cd0bfd70ba923cdd58f8f9b5568e", - [ - "css/css-fonts/font-face-unicode-range-nbsp.html", + [ + "/css/css-grid/alignment/grid-item-content-baseline-002-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-item-content-baseline-003.html": [ + "8845afe86411ec481c187e32f35f4ce097fb7fb8", [ + null, [ - "/css/css-fonts/font-face-unicode-range-nbsp-ref.html", - "==" - ] - ], - {} - ] - ], - "font-face-weight-auto-static.html": [ - "af84d4b1f1a91417225c955c98bdb746b665aea8", - [ - "css/css-fonts/font-face-weight-auto-static.html", + [ + "/css/css-grid/alignment/grid-item-content-baseline-003-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-item-content-baseline-004.html": [ + "81a046be91ba3432e998a78eb75d109fa3765ff5", [ + null, [ - "/css/css-fonts/font-face-weight-auto-static-ref.html", - "==" - ] - ], - {} - ] - ], - "font-face-weight-auto-variable.html": [ - "7baf6466610c4fc137511d99da8d3309dccccc67", - [ - "css/css-fonts/font-face-weight-auto-variable.html", + [ + "/css/css-grid/alignment/grid-item-content-baseline-004-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-item-mixed-baseline-001.html": [ + "f724b3b6c4980d3e98d82143d3d734d335be2fa4", [ + null, [ - "/css/css-fonts/font-face-weight-auto-variable-ref.html", - "==" - ] - ], - {} - ] - ], - "font-face-weight-default-variable.html": [ - "1d1c1d091fe1133361bbb7c7ba64a0ece4aebc57", - [ - "css/css-fonts/font-face-weight-default-variable.html", + [ + "/css/css-grid/alignment/grid-item-mixed-baseline-001-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-item-mixed-baseline-002.html": [ + "d14a8cae7a8e439ccef7f5dd5a75a003e23303d1", [ + null, [ - "/css/css-fonts/font-face-weight-default-variable-ref.html", - "==" - ] - ], - {} - ] - ], - "font-family-name-001.xht": [ - "5bb7a66ebd54dbe9dc78219f77c441654cd27818", - [ - null, + [ + "/css/css-grid/alignment/grid-item-mixed-baseline-002-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-item-mixed-baseline-003.html": [ + "0a78d59e982937169adfb61719ece1841c92e09c", [ + null, [ - "/css/css-fonts/font-family-name-ref.xht", - "==" - ] - ], - {} - ] - ], - "font-family-name-002.xht": [ - "3be21fa8dfceba2adb9800039c3f1eb8ab152c65", - [ - null, + [ + "/css/css-grid/alignment/grid-item-mixed-baseline-003-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-item-mixed-baseline-004.html": [ + "6202845f6f5552ad2aaffda48d8a42798450bb13", [ + null, [ - "/css/css-fonts/font-family-name-ref.xht", - "==" - ] - ], - {} - ] - ], - "font-family-name-003.xht": [ - "7b9245b20d8a2f088ccdcf9fedd50b0470691590", - [ - null, + [ + "/css/css-grid/alignment/grid-item-mixed-baseline-004-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-item-no-aspect-ratio-stretch-1.html": [ + "1b5ae0a6ad80610515ed53f5ea34e812fe040d27", [ + null, [ - "/css/css-fonts/font-family-name-ref.xht", - "==" - ] - ], - {} - ] - ], - "font-family-name-004.xht": [ - "5c27586fc93252f550998cf1ed714f54c3e06e58", - [ - null, + [ + "/css/css-grid/alignment/grid-item-no-aspect-ratio-stretch-1-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-item-no-aspect-ratio-stretch-2.html": [ + "5371e560a5f80eae466485ccd89486c33d741190", [ + null, [ - "/css/css-fonts/font-family-name-ref.xht", - "==" - ] - ], - {} - ] - ], - "font-family-name-005.xht": [ - "10e5a3186e89f5ee9650caed3cc5d56b5330101d", - [ - null, + [ + "/css/css-grid/alignment/grid-item-no-aspect-ratio-stretch-2-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-item-no-aspect-ratio-stretch-3.html": [ + "e2b05bd21664eaa61e4ec3a2abb74f431c8fdc1c", [ + null, [ - "/css/css-fonts/font-family-name-ref.xht", - "==" - ] - ], - {} - ] - ], - "font-family-name-006.xht": [ - "0d5790b9c4fa43d29732124fd5ab5c486f7b18d7", - [ - null, + [ + "/css/css-grid/alignment/grid-item-no-aspect-ratio-stretch-3-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-item-no-aspect-ratio-stretch-4.html": [ + "a53c0fd87c541b7381ff21410d81deaa2f49078b", [ + null, [ - "/css/css-fonts/font-family-name-ref.xht", - "==" - ] - ], - {} - ] - ], - "font-family-name-007.xht": [ - "b5b4e2bf3e214f0b55ecae04acefd522bd667eda", - [ - null, + [ + "/css/css-grid/alignment/grid-item-no-aspect-ratio-stretch-4-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-item-no-aspect-ratio-stretch-5.html": [ + "c28022c6e748da6df4bfc8c78492349c8d368a9a", [ + null, [ - "/css/css-fonts/font-family-name-ref.xht", - "==" - ] - ], - {} - ] - ], - "font-family-name-008.xht": [ - "8d2b7d49b41deaef0affa0dc38c851cd4b3f5b5b", - [ - null, + [ + "/css/css-grid/alignment/grid-item-no-aspect-ratio-stretch-5-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-item-no-aspect-ratio-stretch-6.html": [ + "b4f172c10da92b3fd5e315d3983cf712e6abd41f", [ + null, [ - "/css/css-fonts/font-family-name-ref.xht", - "==" - ] - ], - {} - ] - ], - "font-family-name-009.xht": [ - "b985b53e5c3b9e66676478d1c882c977052bb5d9", - [ - null, + [ + "/css/css-grid/alignment/grid-item-no-aspect-ratio-stretch-6-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-item-self-baseline-001.html": [ + "ccc50c764975906b59f54aa1205a4513149e85f2", [ + null, [ - "/css/css-fonts/font-family-name-ref.xht", - "==" - ] - ], - {} - ] - ], - "font-family-name-010.xht": [ - "63833e8cfb883c04b339ea2f02d7633757ab6302", - [ - null, + [ + "/css/css-grid/alignment/grid-item-self-baseline-001-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-justify-baseline-001.html": [ + "959767bd7c780ace786d371b91ed43ed93f64590", [ + null, [ - "/css/css-fonts/font-family-name-ref.xht", - "==" - ] - ], - {} - ] - ], - "font-family-name-011.xht": [ - "d506c149dc2132ba40d2b6f6f6466fc49ec3fd51", - [ - null, + [ + "/css/css-grid/alignment/grid-justify-baseline-001-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-self-alignment-baseline-with-grid-001.html": [ + "19a26d8d6aa5509e81243ab431135676b3a18517", [ + null, [ - "/css/css-fonts/font-family-name-ref.xht", - "==" - ] - ], - {} - ] - ], - "font-family-name-012.xht": [ - "dad90c4e9ed7718967a9beee36993376a13ab73b", - [ - null, + [ + "/css/css-grid/alignment/grid-self-alignment-baseline-with-grid-001-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-self-alignment-baseline-with-grid-002.html": [ + "a426f879c6e8cdc0ccdad6cc193c094ca58d63b5", [ + null, [ - "/css/css-fonts/font-family-name-ref.xht", - "==" - ] - ], - {} - ] - ], - "font-family-name-013.xht": [ - "afc4161806da2458e24dd9d93d5e64ff1dc3c163", - [ - null, + [ + "/css/css-grid/alignment/grid-self-alignment-baseline-with-grid-001-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-self-alignment-baseline-with-grid-003.html": [ + "ed3bf30317fb278af487a090c51fba867289f1cc", [ + null, [ - "/css/css-fonts/font-family-name-ref.xht", - "==" - ] - ], - {} - ] - ], - "font-family-name-014.xht": [ - "bc87ff5105387330c9efa2eccb3a7314720fb2e1", - [ - null, + [ + "/css/css-grid/alignment/grid-self-alignment-baseline-with-grid-001-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-self-alignment-baseline-with-grid-004.html": [ + "5e20b88d356620c0883ff4ebda4bec3aaa1d5853", [ + null, [ - "/css/css-fonts/font-family-name-ref.xht", - "==" - ] - ], - {} - ] - ], - "font-family-name-015.xht": [ - "1c97fae52b6260038bfda47aa569f107300639f1", - [ - null, + [ + "/css/css-grid/alignment/grid-self-alignment-baseline-with-grid-001-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-self-alignment-stretch-input-range.html": [ + "fb17f3a4a8b25503a61e786bde78e0726105a74e", [ + null, [ - "/css/css-fonts/font-family-name-ref.xht", - "==" - ] - ], - {} - ] - ], - "font-family-name-016.xht": [ - "52a74e31bb8e280e21b718d9efbf5f0c86952b2c", - [ - null, + [ + "/css/css-grid/alignment/grid-self-alignment-stretch-input-range-ref.html", + "==" + ] + ], + {} + ] + ], + "replaced-alignment-with-aspect-ratio-001.html": [ + "d7ab97b9ec0091b7869b1fbb69e7317ced70cc20", [ + null, [ - "/css/css-fonts/font-family-name-016-ref.xht", - "==" - ] - ], - {} - ] - ], - "font-family-name-017.xht": [ - "031612f611b5ac0950b276b8f8c435fa5d59771d", - [ - null, + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "replaced-alignment-with-aspect-ratio-002.html": [ + "1a4e344dd045806ed512d9e3562d9f3b96d1fbd8", [ + null, [ - "/css/css-fonts/font-family-name-mixcase-ref.xht", - "==" - ] - ], - {} - ] - ], - "font-family-name-018.xht": [ - "ef1f591d54413e58e481db885fd454d8de46e3ea", - [ - null, + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "replaced-alignment-with-aspect-ratio-003.tentative.html": [ + "2c27480d5a7a903e0d8301b8215190331022185f", [ + null, [ - "/css/css-fonts/font-family-name-mixcase-ref.xht", - "==" - ] - ], - {} - ] - ], - "font-family-name-019.xht": [ - "de25caeabee9e77319a847ace7bcc568a621dfc4", - [ - null, + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "replaced-alignment-with-aspect-ratio-004.html": [ + "437b379332e90ab7ae4a48c17d3f9c7730ba3b98", [ + null, [ - "/css/css-fonts/font-family-name-mixcase-ref.xht", - "==" - ] - ], - {} - ] - ], - "font-family-name-020.xht": [ - "6241f7f1cb6a4987125c2d5e120ce5ae9a2ac913", - [ - null, + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "replaced-alignment-with-aspect-ratio-005.html": [ + "b14c45d0c2d9cb93577b71df90d430aff37734d6", [ + null, [ - "/css/css-fonts/font-family-name-mixcase-ref.xht", - "==" - ] - ], - {} - ] - ], - "font-family-name-021.xht": [ - "738216750781218da849fc37064234b87a8ad7ca", - [ - null, + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "replaced-alignment-with-aspect-ratio-006.html": [ + "ed14e36057948ad5c90f702b6181adba8a72cca7", [ + null, [ - "/css/css-fonts/font-family-name-ref.xht", - "==" - ] - ], - {} - ] - ], - "font-family-name-022.xht": [ - "6b9ee378af48dc3fa1309b3bf9b8f8e03b1fb6f6", - [ - null, + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "replaced-alignment-with-aspect-ratio-007.html": [ + "0c841c7654c237dd5cb17f5790cd738a79caef24", [ + null, [ - "/css/css-fonts/font-family-name-022-ref.xht", - "==" - ] - ], - {} - ] - ], - "font-family-name-023.xht": [ - "9e82760bc19b67fe60bb2af87ea68fd01d2e00e7", - [ - null, + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "replaced-alignment-with-aspect-ratio-008.html": [ + "9227332851a46f597fbe8bb9d12f5d0b45975cfa", [ + null, [ - "/css/css-fonts/font-family-name-023-ref.xht", - "==" - ] - ], - {} - ] - ], - "font-family-name-024.xht": [ - "20aec304fa45f0cb4f14e56a6cd83046f1c7b0ed", - [ - null, + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "replaced-alignment-with-aspect-ratio-009.html": [ + "ff721b8f19b4c2c781fd0c3c69d3e44e541d63a8", [ + null, [ - "/css/css-fonts/font-family-name-024-ref.xht", - "==" - ] - ], - {} - ] - ], - "font-family-name-025.html": [ - "a4d5359fbfb4dff9ad27ccac73fa66a4ee5f5dc5", - [ - null, - [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "self-baseline": { + "grid-self-baseline-001.html": [ + "61621ab0d6bfbffde43d402d481263c301094e93", [ - "/css/css-fonts/font-family-name-025-ref.html", - "==" + null, + [ + [ + "/css/css-grid/alignment/self-baseline/grid-self-baseline-001-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "font-feature-resolution-001.html": [ - "45f316af5c9c90e460cd11965e19f2f04a1b5b4e", - [ - null, - [ + "grid-self-baseline-002-b.html": [ + "9d3b55793512be253f6e10fc37dccbf23c7163d7", [ - "/css/css-fonts/font-feature-resolution-001-ref.html", - "==" + null, + [ + [ + "/css/css-grid/alignment/self-baseline/grid-self-baseline-002-b-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "font-feature-resolution-002.html": [ - "05cc4db7464853c35548a924ea7c132e31b56f52", - [ - null, - [ + "grid-self-baseline-002.html": [ + "d563dd9a2c473a3a55eeedecec6947aadda30175", [ - "/css/css-fonts/font-feature-resolution-002-ref.html", - "==" + null, + [ + [ + "/css/css-grid/alignment/self-baseline/grid-self-baseline-002-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "font-feature-settings-descriptor-01.html": [ - "8f7c50661a7ae62af5707f02c50bfbe5067e0bcc", - [ - null, - [ + "grid-self-baseline-003.html": [ + "746fb1a0b02abc2ea70db106ce5cb5783af41207", [ - "/css/css-fonts/font-feature-settings-descriptor-01-ref.html", - "==" + null, + [ + [ + "/css/css-grid/alignment/self-baseline/grid-self-baseline-003-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "font-feature-settings-tibetan.html": [ - "45cde9acb5d2b4aba2ea53f7c0080551369f4abb", - [ - null, - [ + "grid-self-baseline-004.html": [ + "9b08598cefbe898260699e3d16feebb466f602d7", [ - "/css/css-fonts/font-feature-settings-tibetan-ref.html", - "==" + null, + [ + [ + "/css/css-grid/alignment/self-baseline/grid-self-baseline-004-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "font-features-across-space-1.html": [ - "a01d05e0590abb6a997745f74500828f69767dbb", - [ - null, - [ + "grid-self-baseline-005.html": [ + "0e2e0c51aad3cc501b72071ad0218b65e0051514", [ - "/css/css-fonts/font-features-across-space-1-ref.html", - "==" + null, + [ + [ + "/css/css-grid/alignment/self-baseline/grid-self-baseline-005-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "font-features-across-space-2.html": [ - "2aaeb245cbcfa9a0e4a16daf08212de6e35d9fd6", - [ - null, - [ + "grid-self-baseline-006.html": [ + "bbadf59158bccdc44f1ad8f9e8190dbfc90273e8", [ - "/css/css-fonts/font-features-across-space-1-ref.html", - "==" + null, + [ + [ + "/css/css-grid/alignment/self-baseline/grid-self-baseline-006-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "font-features-across-space-3.html": [ - "751f2cc21650d4424f3808e68c0c17467e6e7f9f", - [ - null, - [ + "grid-self-baseline-007.html": [ + "5a6488f08ed07e378e2bc62ae2a2c5f7628c6381", [ - "/css/css-fonts/font-features-across-space-1-ref.html", - "==" + null, + [ + [ + "/css/css-grid/alignment/self-baseline/grid-self-baseline-007-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "font-kerning-01.html": [ - "6755500fd246b52af1a8c5326faed7ba2f9a5504", - [ - null, - [ + "grid-self-baseline-008.html": [ + "5398b7e9c1bab53b145774cb9b48e3615ef69af7", [ - "/css/css-fonts/font-kerning-01-ref.html", - "==" + null, + [ + [ + "/css/css-grid/alignment/self-baseline/grid-self-baseline-008-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "font-kerning-02.html": [ - "1990cfc2dd638143d045c94d1bc7e6bb1f7322e7", - [ - null, - [ + "grid-self-baseline-changes-grid-area-size-001.html": [ + "5b2ecaaab06b1f86397818fe5522cbc1e0a2f55a", [ - "/css/css-fonts/font-kerning-02-ref.html", - "==" + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} ] ], - {} - ] - ], - "font-kerning-03.html": [ - "550f26ebc7319cf84fb702105f6d2e9876a44bee", - [ - null, - [ + "grid-self-baseline-changes-grid-area-size-002.html": [ + "fb4e3f1a4c476a9680274f03ea3737ed461cafbe", [ - "/css/css-fonts/font-kerning-03-ref.html", - "==" + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} ] ], - {} - ] - ], - "font-kerning-04.html": [ - "e4e8e09ff5172552384591d3c89edd6ed203fe8c", - [ - null, - [ + "grid-self-baseline-changes-grid-area-size-003.html": [ + "c06394ad5868ee4d559a621d69a4f4f8b945c015", [ - "/css/css-fonts/font-kerning-04-ref.html", - "==" + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} ] ], - {} - ] - ], - "font-kerning-05.html": [ - "4faf67de221213ffc02115a0d35aa53657515637", - [ - null, - [ + "grid-self-baseline-changes-grid-area-size-004.html": [ + "e877b81480dc008c71eae8ce3d8ae49dc17eb02a", [ - "/css/css-fonts/font-kerning-05-ref.html", - "==" + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} ] ], - {} - ] - ], - "font-language-override-01.html": [ - "51826794e3f7e8df3516b52871e0c6eece5a3765", - [ - null, - [ + "grid-self-baseline-changes-grid-area-size-005.html": [ + "21cc0b8ac21c5f401d20d661437221b64118bbf5", [ - "/css/css-fonts/font-language-override-01-ref.html", - "==" + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} ] ], - {} - ] - ], - "font-language-override-02.html": [ - "3f05c9e97e2bfbb5e4cb442b3a8ae265482cf244", - [ - null, - [ - [ - "/css/css-fonts/font-language-override-02-ref.html", - "==" - ], + "grid-self-baseline-changes-grid-area-size-006.html": [ + "ed3449babed07eabb6669811e862e561cae53e8e", [ - "/css/css-fonts/font-language-override-02-notref.html", - "!=" + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} ] ], - {} - ] - ], - "font-language-override-03.html": [ - "5bda1d7a0134666dcc36fdab03d763de3ebffb2a", - [ - null, - [ + "grid-self-baseline-changes-grid-area-size-007.html": [ + "4b854119b79a0d678a154cdaee9af9261748591f", [ - "/css/css-fonts/font-language-override-02-ref.html", - "==" + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} ] ], - {} - ] - ], - "font-palette-10.html": [ - "83b1dd917bd523b6d45949c98192cd5a54092b1b", - [ - "css/css-fonts/font-palette-10.html", - [ + "grid-self-baseline-changes-grid-area-size-008.html": [ + "6eb65039e2b2a0c5a956750cb5ef2820e6cbabbc", [ - "/css/css-fonts/font-palette-10-ref.html", - "==" + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} ] ], - {} - ] - ], - "font-palette-11.html": [ - "5c62968e86646037193cbbedb6811911ed034409", - [ - "css/css-fonts/font-palette-11.html", - [ + "grid-self-baseline-changes-grid-area-size-009.html": [ + "a173d290ea5a6aea3efc15bcfdc4729c76c3e3d2", [ - "/css/css-fonts/font-palette-11-ref.html", - "==" + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} ] ], - {} - ] - ], - "font-palette-12.html": [ - "be3a5935697c2dce87e0d5c0a2e4ee51fa23a3f4", - [ - "css/css-fonts/font-palette-12.html", - [ + "grid-self-baseline-changes-grid-area-size-010.html": [ + "0c1c1dbb360d5337282488f166cd0fd4fb70e1c3", [ - "/css/css-fonts/font-palette-12-ref.html", - "==" + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} ] ], - {} - ] - ], - "font-palette-13.html": [ - "9d7cc21d9239a9e4dca8fb521c1909d508aec8af", - [ - "css/css-fonts/font-palette-13.html", - [ + "grid-self-baseline-changes-grid-area-size-011.html": [ + "dba173a4396a8d441ab6ed80e599a7aaca732570", [ - "/css/css-fonts/font-palette-13-notref.html", - "!=" + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} ] ], - {} - ] - ], - "font-palette-14.html": [ - "da3d3ebd1a12918a50cd18130a89cddc60261b3d", - [ - "css/css-fonts/font-palette-14.html", - [ + "grid-self-baseline-changes-grid-area-size-012.html": [ + "ff5903459ba3d63de65eeb74c612ce74cfd370ba", [ - "/css/css-fonts/font-palette-14-ref.html", - "==" + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} ] ], - {} - ] - ], - "font-palette-15.html": [ - "2fb28993bc9d522398accd17633b0727627e4125", - [ - "css/css-fonts/font-palette-15.html", - [ + "grid-self-baseline-horiz-001.html": [ + "c70926b9a51e131424ae1e7e6260be4e48c688ca", [ - "/css/css-fonts/font-palette-15-ref.html", - "==" + null, + [ + [ + "/css/css-grid/alignment/self-baseline/grid-self-baseline-horiz-001-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "font-palette-16.html": [ - "a28ba4bb135ceaae3a7017d70e9039aa89ed0208", - [ - "css/css-fonts/font-palette-16.html", - [ + "grid-self-baseline-horiz-002.html": [ + "8b7d080669fde3d93d4a570d99fae74aa5d173c0", [ - "/css/css-fonts/font-palette-16-notref.html", - "!=" + null, + [ + [ + "/css/css-grid/alignment/self-baseline/grid-self-baseline-horiz-002-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "font-palette-17.html": [ - "dcc6aa5b2e1ef1b8a29b89a1956f9e00d25ad0b9", - [ - "css/css-fonts/font-palette-17.html", - [ + "grid-self-baseline-horiz-003.html": [ + "f97ffc7d281774edc212f18f939d07b2703f58fb", [ - "/css/css-fonts/font-palette-17-notref.html", - "!=" + null, + [ + [ + "/css/css-grid/alignment/self-baseline/grid-self-baseline-horiz-003-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "font-palette-18.html": [ - "441daebb9df2b54c0960110bb3dccc90978735fa", - [ - "css/css-fonts/font-palette-18.html", - [ + "grid-self-baseline-horiz-004.html": [ + "472e0c1db9e63b62253aefaa4d7e74399ae9fcca", [ - "/css/css-fonts/font-palette-18-notref.html", - "!=" + null, + [ + [ + "/css/css-grid/alignment/self-baseline/grid-self-baseline-horiz-004-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "font-palette-19.html": [ - "abc70c9c3abf97e78675dc9c9ff675bfc0a1124a", - [ - "css/css-fonts/font-palette-19.html", - [ + "grid-self-baseline-horiz-005.html": [ + "d482d7fbff7cb1e7a15ae0d9c0e1c13eca678c4d", [ - "/css/css-fonts/font-palette-19-notref.html", - "!=" + null, + [ + [ + "/css/css-grid/alignment/self-baseline/grid-self-baseline-horiz-005-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "font-palette-2.html": [ - "960c683ae1cb49b22f4c633c86bbb615ccf79e1b", - [ - "css/css-fonts/font-palette-2.html", - [ + "grid-self-baseline-horiz-006.html": [ + "f06a24723f00ae0d02baf77b48676a05634269d5", [ - "/css/css-fonts/font-palette-2-ref.html", - "==" + null, + [ + [ + "/css/css-grid/alignment/self-baseline/grid-self-baseline-horiz-006-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "font-palette-20.html": [ - "3fbdab80af8dfba404087179f4d0d02dd04a8775", - [ - "css/css-fonts/font-palette-20.html", - [ + "grid-self-baseline-horiz-007.html": [ + "1b9178b16b0625117f7cfdeb9e60dce24ddd4eeb", [ - "/css/css-fonts/font-palette-20-ref.html", - "==" + null, + [ + [ + "/css/css-grid/alignment/self-baseline/grid-self-baseline-horiz-007-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "font-palette-21.html": [ - "75709ccdc6cbba1f21c775245d964cca1bd0d96d", - [ - null, - [ + "grid-self-baseline-vertical-lr-001.html": [ + "e4023de1a26435c4cb8b8c700be5ae6307508316", [ - "/css/css-fonts/font-palette-21-ref.html", - "==" + null, + [ + [ + "/css/css-grid/alignment/self-baseline/grid-self-baseline-vertical-lr-001-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "font-palette-22.html": [ - "ca2457e0086f5713c186f086635d5f699bfb4f07", - [ - "css/css-fonts/font-palette-22.html", - [ + "grid-self-baseline-vertical-lr-002.html": [ + "a6d73382161629e609a83b45b2e650174ed77081", [ - "/css/css-fonts/font-palette-22-notref.html", - "!=" + null, + [ + [ + "/css/css-grid/alignment/self-baseline/grid-self-baseline-vertical-lr-002-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "font-palette-23.html": [ - "1217b0fcaed9f4cfc1b58177a2d0d6ec643fe75e", - [ - "css/css-fonts/font-palette-23.html", - [ + "grid-self-baseline-vertical-lr-003.html": [ + "d100bfb9138e051c78342cf5987c0ebb682feae3", [ - "/css/css-fonts/font-palette-23-ref.html", - "==" + null, + [ + [ + "/css/css-grid/alignment/self-baseline/grid-self-baseline-vertical-lr-003-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "font-palette-24.html": [ - "57607d9791e5dcfebf5545a81542235309cf79f5", - [ - "css/css-fonts/font-palette-24.html", - [ + "grid-self-baseline-vertical-lr-004.html": [ + "4e57fdba679c9affbd765d53f4f7fa2d75d01dd2", [ - "/css/css-fonts/font-palette-24-ref.html", - "==" + null, + [ + [ + "/css/css-grid/alignment/self-baseline/grid-self-baseline-vertical-lr-004-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "font-palette-25.html": [ - "2c58fb95e74d33cbaee72c521676394b093ad305", - [ - "css/css-fonts/font-palette-25.html", - [ + "grid-self-baseline-vertical-lr-005.html": [ + "f3d9b2368d1bbad978c28a9b1bf4937b695849ed", [ - "/css/css-fonts/font-palette-25-ref.html", - "==" + null, + [ + [ + "/css/css-grid/alignment/self-baseline/grid-self-baseline-vertical-lr-005-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "font-palette-26.html": [ - "29b86e015d1ecaff82bbea4dd739bcf6e908f346", - [ - "css/css-fonts/font-palette-26.html", - [ + "grid-self-baseline-vertical-lr-006.html": [ + "7a4a8118f5a7176754bc4194b4425978468143a2", [ - "/css/css-fonts/font-palette-26-ref.html", - "==" + null, + [ + [ + "/css/css-grid/alignment/self-baseline/grid-self-baseline-vertical-lr-006-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "font-palette-27.html": [ - "928b9561670c108ab57fa1bf416cb39cf510cb20", - [ - "css/css-fonts/font-palette-27.html", - [ + "grid-self-baseline-vertical-lr-007.html": [ + "8e2422403a63fe568042763e860a17da2ad1d2e9", [ - "/css/css-fonts/font-palette-27-ref.html", - "==" + null, + [ + [ + "/css/css-grid/alignment/self-baseline/grid-self-baseline-vertical-lr-007-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "font-palette-28.html": [ - "a0b638f4ff37b820f27a2edb62157c6210c097d0", - [ - "css/css-fonts/font-palette-28.html", - [ + "grid-self-baseline-vertical-rl-001.html": [ + "890cde5a00c3659d8a1e4a6b6ce2696cd5e27f21", [ - "/css/css-fonts/font-palette-27-ref.html", - "==" + null, + [ + [ + "/css/css-grid/alignment/self-baseline/grid-self-baseline-vertical-rl-001-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "font-palette-29.html": [ - "56e136f32dcc171a07dce966720cf31045e783f2", - [ - "css/css-fonts/font-palette-29.html", - [ + "grid-self-baseline-vertical-rl-002.html": [ + "345d71d0af264dfbd6bea14656b3586a92b39d5d", [ - "/css/css-fonts/font-palette-29-ref.html", - "==" + null, + [ + [ + "/css/css-grid/alignment/self-baseline/grid-self-baseline-vertical-rl-002-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "font-palette-3.html": [ - "9599b3cf845f2a239d6cfe05396caeedbf69dc44", - [ - "css/css-fonts/font-palette-3.html", - [ + "grid-self-baseline-vertical-rl-003.html": [ + "9567b08c693bb8972d63b5943ee1f38b57c18032", [ - "/css/css-fonts/font-palette-3-notref.html", - "!=" + null, + [ + [ + "/css/css-grid/alignment/self-baseline/grid-self-baseline-vertical-rl-003-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "font-palette-30.html": [ - "ea9c9076132ed9f7b5183777d846e527d9bb194f", - [ - "css/css-fonts/font-palette-30.html", - [ + "grid-self-baseline-vertical-rl-004.html": [ + "35c3fa49bea5692c9da74f5e4fe2d8e0b3ca5b01", [ - "/css/css-fonts/font-palette-30-ref.html", - "==" + null, + [ + [ + "/css/css-grid/alignment/self-baseline/grid-self-baseline-vertical-rl-004-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "font-palette-31.html": [ - "26f47a9ee6ef1e39446ef14eb03d05af05c7d722", - [ - "css/css-fonts/font-palette-31.html", - [ + "grid-self-baseline-vertical-rl-005.html": [ + "639a76fe146071c2382e5c8b8eeb92a25c8325ed", [ - "/css/css-fonts/font-palette-31-ref.html", - "==" + null, + [ + [ + "/css/css-grid/alignment/self-baseline/grid-self-baseline-vertical-rl-005-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "font-palette-32.html": [ - "af6f62d485e5f6693eec682dbc5391088268b960", - [ - "css/css-fonts/font-palette-32.html", - [ + "grid-self-baseline-vertical-rl-006.html": [ + "4ace6d0343931e281e563268826c485897d55a87", [ - "/css/css-fonts/font-palette-32-ref.html", - "==" + null, + [ + [ + "/css/css-grid/alignment/self-baseline/grid-self-baseline-vertical-rl-006-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "font-palette-33.html": [ - "afd094458cc14869bd84de528d81b24b10ed2557", - [ - "css/css-fonts/font-palette-33.html", - [ + "grid-self-baseline-vertical-rl-007.html": [ + "dd06aae4c50d170d6042ef4a89497a2155683384", [ - "/css/css-fonts/font-palette-33-ref.html", - "==" + null, + [ + [ + "/css/css-grid/alignment/self-baseline/grid-self-baseline-vertical-rl-007-ref.html", + "==" + ] + ], + {} ] - ], - {} - ] - ], - "font-palette-34.html": [ - "ebc80d780cf2ac7d87ad80f120b9ec5f70b93ee5", - [ - "css/css-fonts/font-palette-34.html", + ] + } + }, + "animation": { + "grid-template-columns-001.html": [ + "4e618edb22efc021e7d49a5b7e618c6e77a25d51", [ + null, [ - "/css/css-fonts/font-palette-34-ref.html", - "==" - ] - ], - {} - ] - ], - "font-palette-35.html": [ - "bef0dcdd2d05b6dd89a2cec1e762f9393f0d5e70", - [ - null, + [ + "/css/css-grid/animation/grid-template-columns-001-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-template-rows-001.html": [ + "403fed432ac5512d194c187e6bdd813c7dcee0b5", [ + null, [ - "/css/css-fonts/font-palette-35-ref.html", - "==" - ] - ], - {} + [ + "/css/css-grid/animation/grid-template-rows-001-ref.html", + "==" + ] + ], + {} + ] ] - ], - "font-palette-36.html": [ - "8a0fd7f6b515edd9eaae010f65a3b2d2ec784c1e", + }, + "anonymous-grid-items-001.html": [ + "f5ddd5c340176596b0da1ff731c07f219e7c435e", [ - "css/css-fonts/font-palette-36.html", + null, [ [ - "/css/css-fonts/font-palette-36-ref.html", + "/css/css-grid/reference/anonymous-grid-items-001-ref.html", "==" ] ], {} ] ], - "font-palette-4.html": [ - "540ba2542190205fbebc43b3b90381ab19a07b5e", - [ - "css/css-fonts/font-palette-4.html", - [ - [ - "/css/css-fonts/font-palette-4-notref.html", - "!=" - ] - ], - {} - ] - ], - "font-palette-5.html": [ - "7c5139daba70ec82fd738541d85ef4f232dee761", - [ - "css/css-fonts/font-palette-5.html", - [ - [ - "/css/css-fonts/font-palette-5-notref.html", - "!=" - ] - ], - {} - ] - ], - "font-palette-6.html": [ - "947716ab6bdf370d0dd3a05636d5e8c491c559fb", - [ - "css/css-fonts/font-palette-6.html", - [ - [ - "/css/css-fonts/font-palette-6-notref.html", - "!=" - ] - ], - {} - ] - ], - "font-palette-7.html": [ - "253c7f4dd678c8b346e236945c0539c35dea4495", - [ - "css/css-fonts/font-palette-7.html", - [ - [ - "/css/css-fonts/font-palette-7-notref.html", - "!=" - ] - ], - {} - ] - ], - "font-palette-8.html": [ - "ce842ff794ec91b2cbe76154b15b12bd89f39877", - [ - "css/css-fonts/font-palette-8.html", - [ - [ - "/css/css-fonts/font-palette-8-notref.html", - "!=" - ] - ], - {} - ] - ], - "font-palette-9.html": [ - "e5e3915bb6796eae776e1f7fc60a8b03194c48e6", - [ - "css/css-fonts/font-palette-9.html", - [ - [ - "/css/css-fonts/font-palette-9-notref.html", - "!=" - ] - ], - {} - ] - ], - "font-palette-add-2.html": [ - "1a9b00eaf1e33d7dee910c3f839c49632795a5c3", + "child-border-box-and-max-content-001.html": [ + "8d3cda88b44e9bc60ee3a8e344b05f80aabcbe3f", [ - "css/css-fonts/font-palette-add-2.html", + null, [ [ - "/css/css-fonts/font-palette-add-2-ref.html", + "/css/css-grid/child-border-box-and-max-content-001-ref.html", "==" ] ], {} ] ], - "font-palette-add.html": [ - "a38c619097ed446e5c44ed2bf47b3beb5590613d", - [ - "css/css-fonts/font-palette-add.html", - [ - [ - "/css/css-fonts/font-palette-add-notref.html", - "!=" - ] - ], - {} - ] - ], - "font-palette-empty-font-family.html": [ - "eb69f8fbc8e1bb7641cf0092e7b780c853487d8c", + "child-border-box-and-max-content-002.html": [ + "fe3e6db0d7a1f243ff383b8e9f9f5527a78f6750", [ null, [ [ - "/css/css-fonts/font-palette-empty-font-family-ref.html", + "/css/css-grid/child-border-box-and-max-content-002-ref.html", "==" ] ], {} ] ], - "font-palette-modify-2.html": [ - "7a19924192c7f39191391c06485ccd8ff93ba2b9", + "chrome-bug-001.html": [ + "7b24f41a47eeb090ec53e9a6e37a4f8a977ca802", [ - "css/css-fonts/font-palette-modify-2.html", + null, [ [ - "/css/css-fonts/font-palette-modify-2-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "font-palette-modify.html": [ - "49992ad8a13fb9182206aaa67d7809c451c28faa", + "dynamic-grid-with-auto-fill.html": [ + "2691674165dc72c58edfd653ae11d5b51e586525", [ null, [ [ - "/css/css-fonts/font-palette-modify-notref.html", - "!=" - ] - ], - {} - ] - ], - "font-palette-non-ident-font-family.html": [ - "8d6ec751a3f9f0797205e7d0fd4881a785e5aa3b", - [ - "css/css-fonts/font-palette-non-ident-font-family.html", - [ - [ - "/css/css-fonts/font-palette-non-ident-font-family-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "font-palette-remove-2.html": [ - "2cdb070a2cd38561c5ee6ec54f42605fbe38feb9", + "dynamic-grid-within-flexbox.html": [ + "2b8824f9940b755364aa7ab124ceea52229f5b93", [ - "css/css-fonts/font-palette-remove-2.html", + null, [ [ - "/css/css-fonts/font-palette-remove-2-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "font-palette-remove.html": [ - "16b5acaec58094dad5fd79985e1ccede639dc8f4", - [ - "css/css-fonts/font-palette-remove.html", - [ - [ - "/css/css-fonts/font-palette-remove-notref.html", - "!=" - ] - ], - {} - ] - ], - "font-palette.html": [ - "091df364319243d0c351ba5ac66047a4f8e3c263", + "empty-grid-within-flexbox.html": [ + "ee67486474a9e06e6418aa71e6a3d283ae9c5dbc", [ - "css/css-fonts/font-palette.html", + null, [ [ - "/css/css-fonts/font-palette-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "font-size-adjust-001.html": [ - "1397d33f2528e61e0b80679e1c4ab1dda9cfbeb4", + "firefox-bug-1881495.html": [ + "355d26dfb0ba9ca4ca040184e6868c55813d051a", [ - "css/css-fonts/font-size-adjust-001.html", + null, [ [ - "/css/css-fonts/font-size-adjust-001-ref.html", + "/css/css-grid/firefox-bug-1881495-ref.html", "==" ] ], {} ] ], - "font-size-adjust-002.html": [ - "e4d87538c8c9c91a8b689e7dd71ea139fcf1fcb5", + "grid-child-percent-basis-resize-1.html": [ + "7fb5d8e117d9f0b7e23bf3921843e8ea29ef4522", [ null, [ [ - "/css/css-fonts/font-size-adjust-002-ref.html", + "/css/css-grid/grid-child-percent-basis-resize-1-ref.html", "==" ] ], {} ] ], - "font-size-adjust-005.xht": [ - "4f73773f55e3030b8262b3ce9096d0022fd0610b", + "grid-container-baseline-synthesized-001.html": [ + "431b1867f80df8723f9b25e157359d337007fb92", [ null, [ [ - "/css/CSS2/reference/ref-if-there-is-no-red.xht", + "/css/css-grid/reference/grid-container-baseline-synthesized-001-ref.html", "==" ] ], {} ] ], - "font-size-adjust-006.xht": [ - "0b96ff1c4313f33045b5d2f26f47e67f9c69a651", + "grid-container-baseline-synthesized-002.html": [ + "c11c8ac1b98283a8c5142668f9bbbb99e66ed244", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-grid/reference/grid-container-baseline-synthesized-001-ref.html", "==" ] ], {} ] ], - "font-size-adjust-007.xht": [ - "0fd85c0105171062a81652267e5b6b84d128ada9", + "grid-container-baseline-synthesized-003.html": [ + "9964c3dfb4ae19b9ca1ef7fa064d3aa6b01aa50d", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-grid/reference/grid-container-baseline-synthesized-001-ref.html", "==" ] ], {} ] ], - "font-size-adjust-008.xht": [ - "cae02b35af82db73522cfd8a3800f33506e47b80", + "grid-container-baseline-synthesized-004.html": [ + "d8c4f630aba38214d45cf924130739f1eb84f591", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-grid/reference/grid-container-baseline-synthesized-001-ref.html", "==" ] ], {} ] ], - "font-size-adjust-009.html": [ - "133f96f450cd9a45cf0822a7ffc082976371dac4", - [ - "css/css-fonts/font-size-adjust-009.html", + "grid-definition": { + "flex-item-grid-container-percentage-rows-001.html": [ + "ba655ce8a17d6482071d39e66684b50ebe749822", [ + null, [ - "/css/css-fonts/font-size-adjust-009-ref.html", - "==" - ] - ], - {} - ] - ], - "font-size-adjust-010.html": [ - "c3b2bc195ec1c3ed067cac3bea60fd4bf446690b", - [ - "css/css-fonts/font-size-adjust-010.html", + [ + "/css/css-grid/reference/flex-item-grid-container-percentage-rows-001-ref.html", + "==" + ] + ], + {} + ] + ], + "fr-unit-with-percentage.html": [ + "82c97abdd5740d466f049d8b45b67e241f204899", [ + null, [ - "/css/css-fonts/font-size-adjust-009-ref.html", - "==" - ] - ], - {} - ] - ], - "font-size-adjust-011.html": [ - "3f6afd8a3708aa86d94443b8a1d8bbffe2ffef5d", - [ - "css/css-fonts/font-size-adjust-011.html", + [ + "/css/css-grid/reference/fr-unit-with-percentage-ref.html", + "==" + ] + ], + {} + ] + ], + "fr-unit.html": [ + "00ef5a5974423967dadf26a594539ab2eb65526c", [ + null, [ - "/css/css-fonts/font-size-adjust-009-ref.html", - "==" - ] - ], - {} - ] - ], - "font-size-adjust-012.html": [ - "197a1809a89295fe09d3445198c553096211c4bf", - [ - "css/css-fonts/font-size-adjust-012.html", + [ + "/css/css-grid/reference/fr-unit-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-auto-repeat-aspect-ratio-001.html": [ + "bd744cf0cb30fd3349dfa85460ec1dd9ff962c40", [ + null, [ - "/css/css-fonts/font-size-adjust-012-ref.html", - "==" - ] - ], - { - "fuzzy": [ [ - null, - [ - [ - 0, - 120 - ], - [ - 0, - 160 - ] - ] + "/css/reference/ref-filled-green-100px-square-only.html", + "==" ] - ] - } - ] - ], - "font-size-adjust-013.html": [ - "bd59456462724cbdc2111b883936e198760d2631", - [ - "css/css-fonts/font-size-adjust-013.html", + ], + {} + ] + ], + "grid-auto-repeat-aspect-ratio-002.html": [ + "3b74e792241ccc589c690ea328a684c93be708ba", [ + null, [ - "/css/css-fonts/font-size-adjust-013-ref.html", - "==" - ] - ], - { - "fuzzy": [ [ - null, - [ - [ - 0, - 120 - ], - [ - 0, - 160 - ] - ] + "/css/reference/ref-filled-green-100px-square-only.html", + "==" ] - ] - } - ] - ], - "font-size-adjust-014.html": [ - "a6e87ff0edbd422cfc181bfbe26830802535b2e2", - [ - "css/css-fonts/font-size-adjust-014.html", + ], + {} + ] + ], + "grid-auto-repeat-dynamic-001.html": [ + "25378928872ac4016f95dcb0f261826eb0500f3e", [ + null, [ - "/css/css-fonts/font-size-adjust-014-ref.html", - "==" - ] - ], - {} - ] - ], - "font-size-adjust-metrics-override.html": [ - "b7787b93073ac2b287170ca4262f8c4ebcd527db", - [ - "css/css-fonts/font-size-adjust-metrics-override.html", + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "grid-auto-repeat-dynamic-002.html": [ + "8df2158d1f156c56905d77356f457ae68d0c5aec", [ + null, [ - "/css/css-fonts/font-size-adjust-metrics-override-ref.html", - "==" - ] - ], - {} - ] - ], - "font-size-adjust-order-001.html": [ - "a8b56a3083f31e90cbbdee507f263cc884db6c66", - [ - null, + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "grid-auto-repeat-dynamic-003.html": [ + "c2fe3ff98a71e0203d6c25c360962deb9809cd33", [ + null, [ - "/css/css-fonts/font-size-adjust-order-001-ref.html", - "==" - ] - ], - {} - ] - ], - "font-size-adjust-reload.html": [ - "37d79a68bd80961f306476707dbdf35d5a5f4da4", - [ - "css/css-fonts/font-size-adjust-reload.html", + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "grid-auto-repeat-minmax.html": [ + "f6c7af1e703e44a8ae9d4017247ff1752d8afe3f", [ + null, [ - "/css/css-fonts/font-size-adjust-reload-ref.html", - "==" - ] - ], - {} - ] - ], - "font-size-adjust-text-orientation.html": [ - "ab73e86e87f9ada84b62a69d7caa2601c97ec57b", - [ - "css/css-fonts/font-size-adjust-text-orientation.html", + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "grid-auto-repeat-multiple-values-001.html": [ + "085d94996f1142d11f9f9c6076e6d9afc025c39c", [ + null, [ - "/css/css-fonts/font-size-adjust-text-orientation-ref.html", - "==" - ] - ], - {} - ] - ], - "font-size-adjust-units-001.html": [ - "4e27ef1116ed7ba48fb5fbc38b49c315eeeef71c", - [ - null, + [ + "/css/css-grid/reference/grid-auto-repeat-multiple-values-001-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-auto-repeat-multiple-values-002.html": [ + "723d876a6a31b38b3ba8964c6e6d4c958d35eef4", [ + null, [ - "/css/css-fonts/font-size-adjust-units-001-ref.html", - "==" - ] - ], - {} - ] - ], - "font-size-adjust-zero-1.html": [ - "a34a38b570db8fe80b32c29d329cb212a5e72ec5", - [ - null, + [ + "/css/css-grid/grid-definition/grid-auto-repeat-multiple-values-002-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-auto-repeat-multiple-values-003.html": [ + "486259a5d3e34bfc949021192b3444f13de32be2", [ + null, [ - "/css/css-fonts/font-size-zero-2-ref.html", - "==" - ] - ], - {} - ] - ], - "font-size-adjust-zero-2.html": [ - "3126f7457b2662a0dc3b176819d2ae1ca5a93163", - [ - null, + [ + "/css/css-grid/grid-definition/grid-auto-repeat-multiple-values-003-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-auto-repeat-multiple-values-004.html": [ + "460de5f9e848d843cf8e51f91cbd838d6f2b160b", [ + null, [ - "/css/css-fonts/font-size-zero-2-ref.html", - "==" - ] - ], - {} - ] - ], - "font-size-monospace-adjust.html": [ - "f1a0b7294d350225d00cfc76c6d3081e8aa7220f", - [ - null, + [ + "/css/css-grid/grid-definition/grid-auto-repeat-multiple-values-004-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-auto-repeat-multiple-values-005.html": [ + "8671df79b7c9ec5897973b9312a166b70f95a3f1", [ + null, [ - "/css/css-fonts/font-size-monospace-adjust-ref.html", - "==" - ] - ], - {} - ] - ], - "font-size-xxx-large.html": [ - "44a30688754442f24d60010ae8001e59c7781b3f", - [ - null, + [ + "/css/css-grid/grid-definition/grid-auto-repeat-multiple-values-005-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-auto-repeat-positioned-container-001.html": [ + "309ad85671204b52def9309a3147ee031f72948f", [ + null, [ - "/css/css-fonts/font-size-xxx-large-ref.html", - "==" - ] - ], - {} - ] - ], - "font-size-zero-1-ref.html": [ - "b468121c67aa6ceb69c71cb41cb1a4b5b2b3308e", - [ - null, + [ + "/css/css-grid/grid-definition/grid-auto-repeat-positioned-container-001-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-layout-auto-tracks.html": [ + "2cc3614d9ec60581f01b4e5ff7ffe624d7f3ce11", [ + null, [ - "/css/css-fonts/font-size-zero-1-notref.html", - "!=" - ] - ], - {} - ] - ], - "font-size-zero-1.html": [ - "85369593e4478527310edc692b79671367f1e5ec", - [ - null, + [ + "/css/css-grid/reference/grid-layout-auto-tracks-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-layout-basic.html": [ + "578f70173b015497db2e13a3c06d6ed14d23d659", [ + null, [ - "/css/css-fonts/font-size-zero-1-ref.html", - "==" - ] - ], - {} - ] - ], - "font-size-zero-2.html": [ - "d6696984d520647c4874c949cee78e9c8a17bd56", - [ - null, + [ + "/css/css-grid/reference/grid-layout-basic-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-layout-repeat-notation.html": [ + "ac0273f83aae54e0a565fee073c6943747b9b40f", [ + null, [ - "/css/css-fonts/font-size-zero-2-ref.html", - "==" - ] - ], - {} - ] - ], - "font-stretch-01.html": [ - "11f3b40504d99a47b1595fc87ec0300defd13277", - [ - null, + [ + "/css/css-grid/reference/grid-layout-repeat-notation-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-repeat-max-width-001.html": [ + "15a9f8a14c3a418cbb33b1ffd97b0f51f40548b0", [ + null, [ - "/css/css-fonts/font-stretch-pass-ref.html", - "==" - ] - ], - {} - ] - ], - "font-stretch-02.html": [ - "7635040414005c9852060ebe348421015fbcdd8d", - [ - null, + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "grid-support-named-grid-lines-002.html": [ + "6b3b19ef97f413dea4ed68fbb26edcb7a0ed1f55", [ + null, [ - "/css/css-fonts/font-stretch-pass-ref.html", - "==" - ] - ], - {} - ] - ], - "font-stretch-03.html": [ - "82b2a84ceb7a30cd344b6386d833bd15e3899406", - [ - null, + [ + "/css/css-grid/grid-definition/grid-support-named-grid-lines-002-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-support-named-grid-lines-003.html": [ + "c2c722485f1f9b0c0667a317649e5817ecdefb34", [ + null, [ - "/css/css-fonts/font-stretch-pass-ref.html", - "==" - ] - ], - {} - ] - ], - "font-stretch-04.html": [ - "c70a0ecf0342d95b25028ebc74f3450cddf4d6e3", - [ - null, + [ + "/css/css-grid/grid-definition/grid-support-named-grid-lines-003-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-template-columns-fit-content-001.html": [ + "cecc53f89602413408647138319b30190af44768", [ + null, [ - "/css/css-fonts/font-stretch-pass-ref.html", - "==" - ] - ], - {} - ] - ], - "font-stretch-05.html": [ - "6497aabcac32c1eb6cad58333bcb6dadc175afa7", - [ - null, + [ + "/css/css-grid/grid-definition/grid-template-columns-fit-content-001-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-template-rows-fit-content-001.html": [ + "14ac0c9c39b226ccc298c42b148220e6d8e74700", [ + null, [ - "/css/css-fonts/font-stretch-pass-ref.html", - "==" - ] - ], - {} + [ + "/css/css-grid/grid-definition/grid-template-rows-fit-content-001-ref.html", + "==" + ] + ], + {} + ] ] - ], - "font-stretch-06.html": [ - "aaec9aa32628238d912da6ead3c02cd820c0400c", + }, + "grid-in-table-cell-with-img.html": [ + "492a5866b71cf503ea41c9cb4d862e96c4ee4d18", [ null, [ [ - "/css/css-fonts/font-stretch-pass-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "font-stretch-07.html": [ - "80b7f2b8e5b3e9dd10030d108f56c7a7b2590d23", + "grid-item-non-auto-height-stretch-001.html": [ + "458ed020e37d8b8b66bc6ee7a8b4a6f8acf7d1df", [ null, [ [ - "/css/css-fonts/font-stretch-pass-ref.html", + "/css/css-grid/grid-item-non-auto-height-stretch-ref.html", "==" ] ], {} ] ], - "font-stretch-08.html": [ - "e9da4465babb985b2a8f6d1445af8c302837ff34", + "grid-item-non-auto-height-stretch-002.html": [ + "9b2757f4d845be1e753b5e12079450b7324c59c7", [ null, [ [ - "/css/css-fonts/font-stretch-pass-ref.html", + "/css/css-grid/grid-item-non-auto-height-stretch-ref.html", "==" ] ], {} ] ], - "font-stretch-09.html": [ - "0fcd04ea54b8b5926dc4df6a939034cd6efeda95", + "grid-item-non-auto-height-stretch-003.html": [ + "acd382b4f9fa018474140ebd27f473b89feee6ee", [ null, [ [ - "/css/css-fonts/font-stretch-pass-ref.html", + "/css/css-grid/grid-item-non-auto-height-stretch-ref.html", "==" ] ], {} ] ], - "font-stretch-10.html": [ - "55a3fa5e00727df4d6fbd2d54270e562a3d1c24a", + "grid-item-non-auto-height-stretch-004.html": [ + "b68cf7546d77a9c8da8b9f9a12589850cfc62d89", [ null, [ [ - "/css/css-fonts/font-stretch-pass-ref.html", + "/css/css-grid/grid-item-non-auto-height-stretch-ref.html", "==" ] ], {} ] ], - "font-stretch-11.html": [ - "cc2d7f8a44f61ff270daef79e5eb46ee036d768c", + "grid-item-percentage-quirk-001.html": [ + "0956b7a025314df1f79acfebf3c0feb08a4df93b", [ null, [ [ - "/css/css-fonts/font-stretch-pass-ref.html", + "/quirks/reference/green-100px-square-no-red.html", "==" ] ], {} ] ], - "font-stretch-12.html": [ - "00369cab4bf61d9a922db13ace998e57e16fd03d", + "grid-item-percentage-quirk-002.html": [ + "f795cd096d9f0cb2f63c3875f57306b2b5c982cb", [ null, [ [ - "/css/css-fonts/font-stretch-pass-ref.html", + "/quirks/reference/green-100px-square-no-red.html", "==" ] ], {} ] ], - "font-stretch-13.html": [ - "c9bd6b9c5790737b7dec4b696df1496eaaf75cb8", - [ - null, + "grid-items": { + "anonymous-grid-item-001.html": [ + "db88ce54b38badc1277661af913303942d63ece0", [ + null, [ - "/css/css-fonts/font-stretch-pass-ref.html", - "==" - ] - ], - {} - ] - ], - "font-stretch-14.html": [ - "f6812c68785f168073ff713b057cd65ad6dc5232", - [ - null, + [ + "/css/css-flexbox/anonymous-flex-item-split-ref.html", + "==" + ] + ], + {} + ] + ], + "aspect-ratio-001.html": [ + "6271a37b630de269faa1030c6e2afe0957388fa5", [ + null, [ - "/css/css-fonts/font-stretch-pass-ref.html", - "==" - ] - ], - {} - ] - ], - "font-stretch-15.html": [ - "0157a02c35cfc40a2801f45b84cd0f5db7ba0600", - [ - null, - [ - [ - "/css/css-fonts/font-stretch-pass-ref.html", - "==" - ] - ], - {} - ] - ], - "font-stretch-16.html": [ - "d110052e5f161291e73ad40796393d3c9f479dc5", - [ - null, - [ - [ - "/css/css-fonts/font-stretch-pass-ref.html", - "==" - ] - ], - {} - ] - ], - "font-stretch-17.html": [ - "760cd60dc31dee01c196db55957ba01f4221da48", - [ - null, - [ - [ - "/css/css-fonts/font-stretch-pass-ref.html", - "==" - ] - ], - {} - ] - ], - "font-stretch-18.html": [ - "9440746b09b9d932c2f4ad1b258012b7e34f29ee", - [ - null, - [ - [ - "/css/css-fonts/font-stretch-pass-ref.html", - "==" - ] - ], - {} - ] - ], - "font-synthesis-01.html": [ - "cf6d099e0ddc303b5f27cc37b0bc31874f14dd9c", - [ - null, - [ - [ - "/css/css-fonts/font-synthesis-01-ref.html", - "==" - ] - ], - {} - ] - ], - "font-synthesis-02.html": [ - "59243c4cb7a8ad36cbfe68e29326e14f2faa4a5f", - [ - null, - [ - [ - "/css/css-fonts/font-synthesis-02-ref.html", - "==" - ] - ], - {} - ] - ], - "font-synthesis-03.html": [ - "53cac8ee4019b47ae23c4485cd0d213c9d6d2cdc", - [ - null, - [ - [ - "/css/css-fonts/font-synthesis-03-ref.html", - "==" - ] - ], - {} - ] - ], - "font-synthesis-04.html": [ - "908171546927819e643d257fe8c44e6256bbd2e7", - [ - null, - [ - [ - "/css/css-fonts/font-synthesis-04-ref.html", - "==" - ] - ], - {} - ] - ], - "font-synthesis-05.html": [ - "e521e6c67cf2c69d32c31bab763ca9a644bc7766", - [ - null, - [ - [ - "/css/css-fonts/font-synthesis-05-ref.html", - "==" - ] - ], - {} - ] - ], - "font-synthesis-06.html": [ - "2e190d1b99e50897d18da393f3aae49d41edb12c", - [ - "css/css-fonts/font-synthesis-06.html", - [ - [ - "/css/css-fonts/font-synthesis-06-ref.html", - "==" - ] - ], - {} - ] - ], - "font-synthesis-07.html": [ - "8f8572412df46c92aecf98092dcd65a47e4abb75", - [ - "css/css-fonts/font-synthesis-07.html", - [ - [ - "/css/css-fonts/font-synthesis-07-ref.html", - "==" - ] - ], - {} - ] - ], - "font-synthesis-08.html": [ - "b3de1afcaee681b7e79969b325fc6bf98de4ec1c", - [ - "css/css-fonts/font-synthesis-08.html", - [ - [ - "/css/css-fonts/font-synthesis-08-ref.html", - "==" - ] - ], - {} - ] - ], - "font-synthesis-position-001.html": [ - "1ed13f67c1950f3abf4b599c2b58ad1b0db3d169", - [ - "css/css-fonts/font-synthesis-position-001.html", - [ - [ - "/css/css-fonts/font-synthesis-position-001-ref.html", - "==" - ] - ], - {} - ] - ], - "font-synthesis-small-caps-first-letter.html": [ - "9e31777c73af5763c8c093fd6820becab033fe2a", - [ - "css/css-fonts/font-synthesis-small-caps-first-letter.html", - [ - [ - "/css/css-fonts/font-synthesis-small-caps-first-letter-ref.html", - "==" - ] - ], - {} - ] - ], - "font-synthesis-small-caps-first-line.html": [ - "77d66e58d8a8a3a58ccb352fad6ce9c71e3297a2", - [ - "css/css-fonts/font-synthesis-small-caps-first-line.html", - [ - [ - "/css/css-fonts/font-synthesis-small-caps-first-line-ref.html", - "==" - ] - ], - {} - ] - ], - "font-synthesis-small-caps-not-applied.html": [ - "7e05b012ed03526b93ae2e3f221dd6b9e8b94868", - [ - "css/css-fonts/font-synthesis-small-caps-not-applied.html", - [ - [ - "/css/css-fonts/font-synthesis-small-caps-not-applied-ref.html", - "==" - ] - ], - {} - ] - ], - "font-synthesis-small-caps.html": [ - "953ebf5a3a3bf5d69a6ecfd3480b09a07410beb5", - [ - "css/css-fonts/font-synthesis-small-caps.html", - [ - [ - "/css/css-fonts/font-synthesis-small-caps-ref.html", - "==" - ] - ], - {} - ] - ], - "font-synthesis-style-binary.html": [ - "1391d9738611e204a3b720dcd378bb7587db3b7d", - [ - "css/css-fonts/font-synthesis-style-binary.html", - [ - [ - "/css/css-fonts/font-synthesis-style-binary-ref.html", - "==" - ] - ], - {} - ] - ], - "font-synthesis-style-first-letter.html": [ - "1296baf05f9c430cda6c52e5a63e813c79862b9a", - [ - "css/css-fonts/font-synthesis-style-first-letter.html", - [ - [ - "/css/css-fonts/font-synthesis-style-first-letter-ref.html", - "==" - ] - ], - {} - ] - ], - "font-synthesis-style-first-line.html": [ - "147c8eb7ff85a5af873e03aaba297e09909e418e", - [ - "css/css-fonts/font-synthesis-style-first-line.html", - [ - [ - "/css/css-fonts/font-synthesis-style-first-line-ref.html", - "==" - ] - ], - {} - ] - ], - "font-synthesis-style.html": [ - "2970e377ed408c765a0f097286eea9fcb00624dc", - [ - "css/css-fonts/font-synthesis-style.html", - [ - [ - "/css/css-fonts/font-synthesis-style-ref.html", - "==" - ] - ], - {} - ] - ], - "font-synthesis-weight-binary.html": [ - "3af12a4f4eb1050565b990e2aea9b8ce4295b973", - [ - "css/css-fonts/font-synthesis-weight-binary.html", - [ - [ - "/css/css-fonts/font-synthesis-weight-binary-ref.html", - "==" - ] - ], - {} - ] - ], - "font-synthesis-weight-first-letter.html": [ - "3d60b2a22847e1b99f1ee53d27c231a41bbc60da", - [ - "css/css-fonts/font-synthesis-weight-first-letter.html", - [ - [ - "/css/css-fonts/font-synthesis-weight-first-letter-ref.html", - "==" - ] - ], - {} - ] - ], - "font-synthesis-weight-first-line.html": [ - "5093a9e17b667bb7995cc1f9d234439cf76e76e6", - [ - "css/css-fonts/font-synthesis-weight-first-line.html", - [ - [ - "/css/css-fonts/font-synthesis-weight-first-line-ref.html", - "==" - ] - ], - {} - ] - ], - "font-synthesis-weight.html": [ - "6213817edf6052fddbd63c63b820edd307fcfee9", - [ - "css/css-fonts/font-synthesis-weight.html", - [ - [ - "/css/css-fonts/font-synthesis-weight-ref.html", - "==" - ] - ], - {} - ] - ], - "font-variant-01.html": [ - "ed69967d3b08219d6e430b967b608a040cd356e0", - [ - null, - [ - [ - "/css/css-fonts/font-variant-01-ref.html", - "==" - ] - ], - {} - ] - ], - "font-variant-02.html": [ - "acda863b7d1b8beac7329071c7bb0412b73673e7", - [ - null, - [ - [ - "/css/css-fonts/font-variant-02-ref.html", - "==" - ] - ], - {} - ] - ], - "font-variant-03.html": [ - "7e130cc831747f919a515e6a7e67dfe13690ea5c", - [ - null, - [ - [ - "/css/css-fonts/font-variant-03-ref.html", - "==" - ] - ], - {} - ] - ], - "font-variant-04.html": [ - "be426398eeea422ddcca29ecc0ef96749a2c0f53", - [ - null, - [ - [ - "/css/css-fonts/font-variant-04-ref.html", - "==" - ] - ], - {} - ] - ], - "font-variant-alternates-01.html": [ - "82c465fed55712260abf113d27a6f4cf9fc9dcfd", - [ - null, - [ - [ - "/css/css-fonts/font-variant-alternates-01-ref.html", - "==" - ] - ], - {} - ] - ], - "font-variant-alternates-02.html": [ - "9610508177d93cb6683052cdc1759a4e2dd1f7be", - [ - null, - [ - [ - "/css/css-fonts/font-variant-alternates-02-ref.html", - "==" - ] - ], - {} - ] - ], - "font-variant-alternates-03.html": [ - "1027363726771e9619a005be0d4ad125ed34fa95", - [ - "css/css-fonts/font-variant-alternates-03.html", - [ - [ - "/css/css-fonts/font-variant-alternates-03-ref.html", - "==" - ] - ], - {} - ] - ], - "font-variant-alternates-04.html": [ - "abd361bbf8fa4ce2f7f575589e2f9c608654f8b4", - [ - null, - [ - [ - "/css/css-fonts/font-variant-alternates-04-ref.html", - "==" - ] - ], - {} - ] - ], - "font-variant-alternates-05.html": [ - "5ea6450da6a2da07d43d1fe3e7401f9673b70182", - [ - null, - [ - [ - "/css/css-fonts/font-variant-alternates-05-ref.html", - "==" - ] - ], - {} - ] - ], - "font-variant-alternates-06.html": [ - "c3f315723cbbc8c7e7affe3d973c221d4571a512", - [ - "css/css-fonts/font-variant-alternates-06.html", - [ - [ - "/css/css-fonts/font-variant-alternates-06-ref.html", - "==" - ] - ], - {} - ] - ], - "font-variant-alternates-07.html": [ - "fdcba5f699d39616e975e9cdb5a65270b2aa4a05", - [ - null, - [ - [ - "/css/css-fonts/font-variant-alternates-07-ref.html", - "==" - ] - ], - {} - ] - ], - "font-variant-alternates-08.html": [ - "4ec305b59d72e86718719503afa70c85d02aebd6", - [ - null, + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "aspect-ratio-002.html": [ + "988814dc6791307398203c22e3b04ac8304aa6d2", [ + null, [ - "/css/css-fonts/font-variant-alternates-08-ref.html", - "==" - ] - ], - {} - ] - ], - "font-variant-alternates-09.html": [ - "2c67b1439e6de429e3749466ab4714898367a58c", - [ - "css/css-fonts/font-variant-alternates-09.html", + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "aspect-ratio-003.html": [ + "45e7cce4d12df47d5f940f48664a34b85206cf72", [ + null, [ - "/css/css-fonts/font-variant-alternates-09-ref.html", - "==" - ] - ], - {} - ] - ], - "font-variant-alternates-10.html": [ - "ac8341d8abaf19e49f935885c2128d143015d19b", - [ - null, + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "aspect-ratio-004.html": [ + "a7a6336c24eaedea4b962d34ff46d14c8d281dd5", [ + null, [ - "/css/css-fonts/font-variant-alternates-10-ref.html", - "==" - ] - ], - {} - ] - ], - "font-variant-alternates-11.html": [ - "2e73fc07aec7a43ac03359126eda7bcf8c1b09bb", - [ - null, + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "aspect-ratio-005.html": [ + "70f554ba373152535625697fe604e14f6ad77eaa", [ + null, [ - "/css/css-fonts/font-variant-alternates-11-ref.html", - "==" - ] - ], - {} - ] - ], - "font-variant-alternates-12.html": [ - "0f2b9d317b95a41c82f3a2d792f66c86146822fb", - [ - "css/css-fonts/font-variant-alternates-12.html", + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "explicitly-sized-grid-item-as-table.html": [ + "53a0979622cdc757e3ab77b98d712c727cec4901", [ + null, [ - "/css/css-fonts/font-variant-alternates-12-ref.html", - "==" - ] - ], - {} - ] - ], - "font-variant-alternates-13.html": [ - "872c7dd82725d95135d3658afd19874a940bea1a", - [ - null, + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "grid-auto-margin-and-replaced-item-001.html": [ + "ccf87024bc699d58c9cb4d5e1c610646dc86adc2", [ + null, [ - "/css/css-fonts/font-variant-alternates-13-ref.html", - "==" - ] - ], - {} - ] - ], - "font-variant-alternates-14.html": [ - "45c2d02302d5a955f4c1d7998f0b7a0083a414fe", - [ - null, + [ + "/css/css-grid/grid-items/grid-auto-margin-and-replaced-item-001-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-img-item-percent-max-height-001.html": [ + "d0d6d04dc7b882ebe1addaca94a4c38231973803", [ + null, [ - "/css/css-fonts/font-variant-alternates-14-ref.html", - "==" - ] - ], - {} - ] - ], - "font-variant-alternates-15.html": [ - "58a58d3cd153cdd6e3c50fbc2484ad44c9a03ba2", - [ - "css/css-fonts/font-variant-alternates-15.html", + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "grid-inline-items-001.html": [ + "09703be7f875dcccd51c95be104f5c96019d90da", [ + null, [ - "/css/css-fonts/font-variant-alternates-15-ref.html", - "==" - ] - ], - {} - ] - ], - "font-variant-alternates-16.html": [ - "8353073ae1dd9a52de8ca4a1d20c22f96e3a8493", - [ - null, + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-inline-items-002.html": [ + "f95c441d7a43bf31cf3a358a2910ac210d4d99d4", [ + null, [ - "/css/css-fonts/font-variant-alternates-16-ref.html", - "==" - ] - ], - {} - ] - ], - "font-variant-alternates-17.html": [ - "799bf653f8e322bff31c9d12f70877b850f6409e", - [ - null, + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-inline-items-003.html": [ + "8758a6a2d1ac0019be2ed9cb249c66716747acae", [ + null, [ - "/css/css-fonts/font-variant-alternates-17-ref.html", - "==" - ] - ], - {} - ] - ], - "font-variant-alternates-18.html": [ - "26e1ecd0c222260114afee112e391d46481b9fc9", - [ - "css/css-fonts/font-variant-alternates-18.html", + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-inline-items-inline-blocks-001.html": [ + "7a7ac5cba934cb187ba17e86eaa44cb90e7bbd37", [ + null, [ - "/css/css-fonts/font-variant-alternates-18-ref.html", - "==" - ] - ], - {} - ] - ], - "font-variant-alternates-19.html": [ - "6e9caf2e47cf8875a7756c8c2ce0ac7be2b22e26", - [ - null, + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-inline-order-property-auto-placement-001.html": [ + "5367ada1297b36ad280c571bbf8b3455ce7af001", [ + null, [ - "/css/css-fonts/font-variant-alternates-19-ref.html", - "==" - ] - ], - {} - ] - ], - "font-variant-alternates-layers.html": [ - "2cd60985da3876eebfdac16fb1fe1f819f267b8b", - [ - null, + [ + "/css/css-grid/reference/grid-2x2-blue-yellow-lime-magenta.html", + "==" + ] + ], + {} + ] + ], + "grid-inline-order-property-auto-placement-002.html": [ + "13f7c340fb188d230a3f7041c88f9054739fce68", [ + null, [ - "/css/css-fonts/font-variant-alternates-layers-ref.html", - "==" - ] - ], - {} - ] - ], - "font-variant-caps-01.html": [ - "9e96486e33f8ae964e1de2118218ecc88f1bff29", - [ - null, + [ + "/css/css-grid/reference/grid-2x2-blue-yellow-lime-magenta.html", + "==" + ] + ], + {} + ] + ], + "grid-inline-order-property-auto-placement-003.html": [ + "1cf446cf107073c3669fb5b9bde452bd338177ea", [ + null, [ - "/css/css-fonts/font-variant-caps-01-ref.html", - "==" - ] - ], - {} - ] - ], - "font-variant-caps-02.html": [ - "1e73873f6bbc5e1f3f6d33eaeec72099787018d5", - [ - null, + [ + "/css/css-grid/reference/grid-2x2-blue-yellow-lime-magenta.html", + "==" + ] + ], + {} + ] + ], + "grid-inline-order-property-auto-placement-004.html": [ + "3e9d6aba87e9d948de3b43fa5f76366b890d74c6", [ + null, [ - "/css/css-fonts/font-variant-caps-02-ref.html", - "==" - ] - ], - {} - ] - ], - "font-variant-caps-03.html": [ - "3aaabc71113b5728abcbfbcbb47e3371bb5bcf76", - [ - null, + [ + "/css/css-grid/reference/grid-2x2-blue-yellow-lime-magenta.html", + "==" + ] + ], + {} + ] + ], + "grid-inline-order-property-auto-placement-005.html": [ + "2dd1b379e8fd6d468ade73b03b2d648554444621", [ + null, [ - "/css/css-fonts/font-variant-caps-03-ref.html", - "==" - ] - ], - {} - ] - ], - "font-variant-caps-04.html": [ - "69390e3602fa1af9e4c7120c4ca2ee786afba259", - [ - null, + [ + "/css/css-grid/reference/grid-2x2-blue-yellow-lime-magenta.html", + "==" + ] + ], + {} + ] + ], + "grid-inline-order-property-painting-001.html": [ + "00236a4c5c027d66b6423154d0f3750c8872b866", [ + null, [ - "/css/css-fonts/font-variant-caps-04-ref.html", - "==" - ] - ], - {} - ] - ], - "font-variant-caps-05.html": [ - "640ab4d8c16b3409392d52e6bd952aeda81506ab", - [ - null, + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-inline-order-property-painting-002.html": [ + "ffcb8c71342867ca35f0f8cd619549b76e332a1f", [ + null, [ - "/css/css-fonts/font-variant-caps-05-ref.html", - "==" - ] - ], - {} - ] - ], - "font-variant-caps-06.html": [ - "e7793381e741fe9d8e0db0a736a56bfb96630285", - [ - null, + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-inline-order-property-painting-003.html": [ + "e24cde00d6852f1f74d2efb235a9d83769164acb", [ + null, [ - "/css/css-fonts/font-variant-caps-06-ref.html", - "==" - ] - ], - {} - ] - ], - "font-variant-caps-07.html": [ - "b631f9638e215e144eb08af438d5b77b55b861fe", - [ - null, + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-inline-order-property-painting-004.html": [ + "34cbce8fb13d1d80224e4288bc2a6b0aa3fd1b15", [ + null, [ - "/css/css-fonts/font-variant-caps-07-ref.html", - "==" - ] - ], - {} - ] - ], - "font-variant-caps.html": [ - "7d89802f1cf0dd4f2e197f025d183c5bc8e4aa35", - [ - null, + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-inline-order-property-painting-005.html": [ + "4ab1c4a46541b4534ce1e449ee4045f236400d12", [ + null, [ - "/css/css-fonts/font-variant-caps-ref.html", - "==" - ] - ], - {} - ] - ], - "font-variant-east-asian-01.html": [ - "ce9917c76e4990540e66fb088231f8bd8d6a942b", - [ - null, + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-inline-z-axis-ordering-001.html": [ + "5fa16a50f7ae1309869f1d07a8bc8c30aec9f9a4", [ + null, [ - "/css/css-fonts/font-variant-east-asian-01-ref.html", - "==" - ] - ], - {} - ] - ], - "font-variant-east-asian-02.html": [ - "392aee4ba767192fc7ea841dab7cbf932ae5e8f1", - [ - null, + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-inline-z-axis-ordering-002.html": [ + "b6a59c0b22ff117ecbef9b1a48ac29b91e7c79dd", [ + null, [ - "/css/css-fonts/font-variant-east-asian-02-ref.html", - "==" - ] - ], - {} - ] - ], - "font-variant-east-asian-03.html": [ - "fbee1ba488211d94ae141f4772595f10fde7bc75", - [ - null, + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-inline-z-axis-ordering-003.html": [ + "85d8425e3117237bbe36fa8e3d8db8bf6ba9ac76", [ + null, [ - "/css/css-fonts/font-variant-east-asian-03-ref.html", - "==" - ] - ], - {} - ] - ], - "font-variant-east-asian-04.html": [ - "7194fe47f4a5b315488e4b1838de19084df74c31", - [ - null, + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-inline-z-axis-ordering-004.html": [ + "a1c84150a63488a2775ea79874dd4aeb208ecc04", [ + null, [ - "/css/css-fonts/font-variant-east-asian-04-ref.html", - "==" - ] - ], - {} - ] - ], - "font-variant-east-asian-05.html": [ - "e41730b6fd7faba2f5f8fdf88ca4361f03b351ac", - [ - null, + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-inline-z-axis-ordering-005.html": [ + "c7ac09bfd141e52e982616c816990afd2cb7e97b", [ + null, [ - "/css/css-fonts/font-variant-east-asian-05-ref.html", - "==" - ] - ], - {} - ] - ], - "font-variant-east-asian-06.html": [ - "df18dac0090482590bcbef9237c9c36403799c9b", - [ - null, + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-inline-z-axis-ordering-overlapped-items-001.html": [ + "dcea53174fd8b71f02d4c4223f8b35c5766cd512", [ + null, [ - "/css/css-fonts/font-variant-east-asian-06-ref.html", - "==" - ] - ], - {} - ] - ], - "font-variant-east-asian-07.html": [ - "c1825175288178203732e077ab2fa8f3dd173563", - [ - null, + [ + "/css/css-grid/reference/grid-filled-blue-yellow-green-overlapped-100px-squares.html", + "==" + ] + ], + {} + ] + ], + "grid-inline-z-axis-ordering-overlapped-items-002.html": [ + "6f360e8a6a9843b380dad0675c44ad0fd5f8d0c9", [ + null, [ - "/css/css-fonts/font-variant-east-asian-07-ref.html", - "==" - ] - ], - {} - ] - ], - "font-variant-east-asian-08.html": [ - "ef957317e395dc2d554a0eb942bbd704e080a26f", - [ - null, + [ + "/css/css-grid/reference/grid-filled-blue-yellow-green-overlapped-100px-squares.html", + "==" + ] + ], + {} + ] + ], + "grid-inline-z-axis-ordering-overlapped-items-003.html": [ + "10ace57ce473d6188b06a646ba0b257a72dcb3c5", [ + null, [ - "/css/css-fonts/font-variant-east-asian-08-ref.html", - "==" - ] - ], - {} - ] - ], - "font-variant-east-asian-09.html": [ - "5498eb445a9a1e33502c74579547de248b4d9437", - [ - null, + [ + "/css/css-grid/reference/grid-filled-blue-yellow-green-overlapped-100px-squares.html", + "==" + ] + ], + {} + ] + ], + "grid-inline-z-axis-ordering-overlapped-items-004.html": [ + "5c61954895cd71fcd3af007a3fa894c4abca8abb", [ + null, [ - "/css/css-fonts/font-variant-east-asian-09-ref.html", - "==" - ] - ], - {} - ] - ], - "font-variant-east-asian-10.html": [ - "867fd21643069f24cfc48005bb4bbc50ed1795ae", - [ - null, + [ + "/css/css-grid/reference/grid-filled-blue-yellow-green-overlapped-100px-squares.html", + "==" + ] + ], + {} + ] + ], + "grid-inline-z-axis-ordering-overlapped-items-005.html": [ + "271f4c01b142650d0af0be0c24c72b2bdf0e466a", [ + null, [ - "/css/css-fonts/font-variant-east-asian-10-ref.html", - "==" - ] - ], - {} - ] - ], - "font-variant-east-asian.html": [ - "3fbb43e1cb2b804ae0f1f0dd6c13635bc8db8212", - [ - null, + [ + "/css/css-grid/reference/grid-filled-blue-yellow-green-overlapped-100px-squares.html", + "==" + ] + ], + {} + ] + ], + "grid-inline-z-axis-ordering-overlapped-items-006.html": [ + "87ed91cd7936fcbe80cb62e90dae4b48eee7f61f", [ + null, [ - "/css/css-fonts/font-variant-east-asian-ref.html", - "==" - ] - ], - {} - ] - ], - "font-variant-emoji-1.html": [ - "53cf539edd8b61a7f08f8b95ae83f4f7a5179308", - [ - null, + [ + "/css/css-grid/reference/grid-filled-blue-yellow-green-overlapped-100px-squares.html", + "==" + ] + ], + {} + ] + ], + "grid-intrinsic-maximums.html": [ + "5b244d3c1170595a2cbd9654cfc7772458d2db55", [ + null, [ - "/css/css-fonts/font-variant-emoji-1-notref.html", - "!=" - ] - ], - {} - ] - ], - "font-variant-emoji-2.html": [ - "cce4b0360476ee1f5129b211f4d41e84f404d7ea", - [ - null, + [ + "/css/css-grid/grid-items/grid-intrinsic-maximums-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-item-containing-block-001.html": [ + "1dca0dcaa195c802f2c5ce44090b176f47e7d4b8", [ + null, [ - "/css/css-fonts/font-variant-emoji-2-ref.html", - "==" - ] - ], - {} - ] - ], - "font-variant-ligatures-01.html": [ - "519bfd4bf43e5ec09968602bc88257482cab83d7", - [ - null, + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-item-containing-block-002.html": [ + "664e0691039b3886cb7e5fc1c9b2279477264128", [ + null, [ - "/css/css-fonts/font-variant-ligatures-01-ref.html", - "==" - ] - ], - {} - ] - ], - "font-variant-ligatures-02.html": [ - "46a20216b42dbd3b952601642b40841f2ad687d4", - [ - null, + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-item-containing-block-003.html": [ + "0194f3cf6e09b69f9e9c86f18a1b34f19199d0da", [ + null, [ - "/css/css-fonts/font-variant-ligatures-02-ref.html", - "==" - ] - ], - {} - ] - ], - "font-variant-ligatures-03.html": [ - "c783cde23d18bbb3082dd5964024a7ca3f6c5f22", - [ - null, + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-item-containing-block-004.html": [ + "b36fbb2bbc8ce403632769e1a098f9560e910221", [ + null, [ - "/css/css-fonts/font-variant-ligatures-03-ref.html", - "==" - ] - ], - {} - ] - ], - "font-variant-ligatures-04.html": [ - "818454825da491e780f07c6c1cec6c15a44c7231", - [ - null, + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-item-inline-contribution-001.html": [ + "ebed26b3326e94bc1384e330a8e1bb3ed93f6ec7", [ + null, [ - "/css/css-fonts/font-variant-ligatures-04-ref.html", - "==" - ] - ], - {} - ] - ], - "font-variant-ligatures-05.html": [ - "fc1d9ca782c2bc59681044794bd415ebcedca70a", - [ - null, + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-item-inline-contribution-002.html": [ + "bcf4f5f8673cf490d0bc1f302539ac387c7132ed", [ + null, [ - "/css/css-fonts/font-variant-ligatures-05-ref.html", - "==" - ] - ], - {} - ] - ], - "font-variant-ligatures-06.html": [ - "749eb4546259c164bea683a978a2a037d3535d41", - [ - null, + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-item-inline-contribution-003.html": [ + "8432c1d5e47fdecdafcb5d7aed0bcd75dd307c48", [ + null, [ - "/css/css-fonts/font-variant-ligatures-06-ref.html", - "==" - ] - ], - {} - ] - ], - "font-variant-ligatures-07.html": [ - "0c617a7014e30ab9dc648331c50f9cb42024cf7d", - [ - null, + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-item-margins-and-writing-modes-001.html": [ + "5209940a9699d6a108f815f81eb4d3b4527dcf79", [ + null, [ - "/css/css-fonts/font-variant-ligatures-07-ref.html", - "==" - ] - ], - {} - ] - ], - "font-variant-ligatures-08.html": [ - "a1e21aab851e1ab8b3e2e9b0a0956507ec550173", - [ - null, + [ + "/css/css-grid/grid-items/grid-item-margins-and-writing-modes-001-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-item-overflow-auto-max-height-percentage.html": [ + "62273b87e49170853bc14e36ecc3fb7b148ff6ac", [ + null, [ - "/css/css-fonts/font-variant-ligatures-08-ref.html", - "==" - ] - ], - {} - ] - ], - "font-variant-ligatures-09.html": [ - "8fce03c4f0feee8aab588cf446f01cf62eef1086", - [ - null, + [ + "/css/css-grid/grid-items/grid-item-overflow-auto-max-height-percentage-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-item-percentage-sizes-001.html": [ + "97532e495c1fd71adbbbcc12642dcd313848fae7", [ + null, [ - "/css/css-fonts/font-variant-ligatures-09-ref.html", - "==" - ] - ], - {} - ] - ], - "font-variant-ligatures-10.html": [ - "b39cb5b775db857f2510ecf342bb544e5b97292a", - [ - null, + [ + "/css/css-grid/grid-items/grid-item-percentage-sizes-001-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-item-percentage-sizes-002.html": [ + "2ceba537f0ccd4366cd4b7e1e691bb2d5f1e5a52", [ + null, [ - "/css/css-fonts/font-variant-ligatures-10-ref.html", - "==" - ] - ], - {} - ] - ], - "font-variant-ligatures-11.optional.html": [ - "f7cf0ecd08968e604a239ea4bdac3d1c01869a47", - [ - null, + [ + "/css/css-grid/grid-items/grid-item-percentage-sizes-002-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-item-percentage-sizes-003.html": [ + "fccf4fe0a6ed1f128ff7ec2b322a4a2916c873b1", [ + null, [ - "/css/css-fonts/font-variant-ligatures-11-ref.html", - "==" - ] - ], - {} - ] - ], - "font-variant-ligatures.html": [ - "ff217e279ff102d2d1c88a04f0593859c6b19199", - [ - null, + [ + "/css/css-grid/grid-items/grid-item-percentage-sizes-003-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-item-rel-pos-001.html": [ + "d72df4126ddc096036a84199616a35fd49c4cc36", [ + null, [ - "/css/css-fonts/font-variant-ligatures-ref.html", - "==" - ] - ], - {} - ] - ], - "font-variant-numeric-01.html": [ - "9a45c446ff209ad4bf8f71581ec9465e65e210f1", - [ - null, + [ + "/css/css-grid/grid-items/grid-item-rel-pos-001-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-item-rel-pos-002.html": [ + "4a4d6c843ac4f82cb1403a15739174ec781634ef", [ + null, [ - "/css/css-fonts/font-variant-numeric-01-ref.html", - "==" - ] - ], - {} - ] - ], - "font-variant-numeric-02.html": [ - "254d8140de38e8cc605c61ad6871b5fa304f5168", - [ - null, + [ + "/css/css-grid/grid-items/grid-item-rel-pos-002-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-item-script-001.html": [ + "323e9ba3c4fb7a2f02a6f859c0915f456327ce87", [ + null, [ - "/css/css-fonts/font-variant-numeric-02-ref.html", - "==" - ] - ], - {} - ] - ], - "font-variant-numeric-03.html": [ - "f2f0f5d105ab46196b22279545ca22fd91b6b37d", - [ - null, + [ + "/css/css-grid/reference/grid-item-script-001-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-items-001.html": [ + "fc9b27be4d1eb62d13afc9da04790da748b1a6ba", [ + null, [ - "/css/css-fonts/font-variant-numeric-03-ref.html", - "==" - ] - ], - {} - ] - ], - "font-variant-numeric-04.html": [ - "e322b63e20f7a733c620e053accda94d9be7b2ae", - [ - null, + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-items-002.html": [ + "dbb67db8591af5cefbdbc7179c1344df5acc9b04", [ + null, [ - "/css/css-fonts/font-variant-numeric-04-ref.html", - "==" - ] - ], - {} - ] - ], - "font-variant-numeric-05.html": [ - "a9eabe6a75a3a01b5f5d067c0c5469480501b942", - [ - null, + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-items-003.html": [ + "1cfcbc563d964b80bb4f1c97905b4bd584b7ee3a", [ + null, [ - "/css/css-fonts/font-variant-numeric-05-ref.html", - "==" - ] - ], - {} - ] - ], - "font-variant-numeric-06.html": [ - "d3777d8a17ff398d083b6038755c807c7f52e104", - [ - null, + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-items-contribution-negative-margins.html": [ + "7f55bea748af3d61f46b95b0d656ca9a3ef46c1b", [ + null, [ - "/css/css-fonts/font-variant-numeric-06-ref.html", - "==" - ] - ], - {} - ] - ], - "font-variant-numeric-07.html": [ - "ed0c23eeca6ccf2e0a1e2170beb64e84360f9333", - [ - null, + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-items-inline-blocks-001.html": [ + "2824bc59354159f0256f3cebe178979a82748085", [ + null, [ - "/css/css-fonts/font-variant-numeric-07-ref.html", - "==" - ] - ], - {} - ] - ], - "font-variant-numeric-08.html": [ - "5ff0985fce8863b5678e49610e84eb84030b0dbf", - [ - null, + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-items-percentage-margins-003.html": [ + "d6805b7b35b6aad0bbed3927a7097497fddf2e87", [ + null, [ - "/css/css-fonts/font-variant-numeric-08-ref.html", - "==" - ] - ], - {} - ] - ], - "font-variant-numeric-09.html": [ - "48926a78a1c14c6820413002dd9a3cf34ea19000", - [ - null, + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-items-percentage-margins-004.html": [ + "009d655832b727c19b4be1f9f5dadbe02c36ba6f", [ + null, [ - "/css/css-fonts/font-variant-numeric-09-ref.html", - "==" - ] - ], - {} - ] - ], - "font-variant-numeric.html": [ - "a2a6c32826bda5c7bd42706dbc811d128c303338", - [ - null, + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-items-percentage-margins-005.html": [ + "4b86153e1b51fb05126e9cbeaa205730723e663d", [ + null, [ - "/css/css-fonts/font-variant-numeric-ref.html", - "==" - ] - ], - {} - ] - ], - "font-variant-position-01.html": [ - "17a0e417b1dd3556019901be792713a1c09e0ee9", - [ - null, + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-items-percentage-margins-006.html": [ + "290f3fd7814d0544e341d401a6ed6345cc274529", [ + null, [ - "/css/css-fonts/font-variant-position-01-ref.html", - "==" - ] - ], - {} - ] - ], - "font-variant-position-02.html": [ - "bf4f813fac793adffa4c9e4a678857b3d5f690e8", - [ - null, + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-items-percentage-margins-007.html": [ + "78958e01708f57e053cde598b6f7ba99164d7bad", [ + null, [ - "/css/css-fonts/font-variant-position-02-ref.html", - "==" - ] - ], - {} - ] - ], - "font-variant-position-03.html": [ - "5c649104b3ddb80c5d32c73fcdf2fef69e186e67", - [ - null, + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-items-percentage-margins-008.html": [ + "49a42722c0594b292460061ab781758b20d8e746", [ + null, [ - "/css/css-fonts/font-variant-position-03-ref.html", - "==" - ] - ], - {} - ] - ], - "font-variant-position-04.html": [ - "de1cbd8779509a602be2032adbd27ce478ee0077", - [ - "css/css-fonts/font-variant-position-04.html", + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-items-percentage-margins-009.html": [ + "5fed639ef9c9b26aebdb7e7489a752a0c4c32452", [ + null, [ - "/css/css-fonts/font-variant-position-04-notref.html", - "!=" - ] - ], - {} - ] - ], - "font-variant-position-05.html": [ - "f93cb9861732768b5c2ebaacb43be00992d931c2", - [ - "css/css-fonts/font-variant-position-05.html", + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-items-percentage-margins-010.html": [ + "5d6995f6906e3180cbadefde1ec90242c8ec3c94", [ + null, [ - "/css/css-fonts/font-variant-position-05-notref.html", - "!=" - ] - ], - {} - ] - ], - "font-variant-position.html": [ - "857062407dbdac2fe8ad803a14f48f647461f323", - [ - null, + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-items-percentage-margins-011.html": [ + "f2a87e1fb81c2b765bf6d6d62307b8045fa07af5", [ + null, [ - "/css/css-fonts/font-variant-position-ref.html", - "==" - ] - ], - {} - ] - ], - "font-weight-bolder-001.xht": [ - "60821ab8092c833a9363eec15b0903c2ddda1ec1", - [ - null, + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-items-percentage-margins-012.html": [ + "1071cdce5f9a40c4a73c3713dd8b3ef53db23184", [ + null, [ - "/css/css-fonts/font-weight-bolder-001-ref.xht", - "==" - ] - ], - {} - ] - ], - "font-weight-lighter-001.xht": [ - "c529c79c757fdd93c99fc848081933d8ab7e13ad", - [ - null, + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-items-percentage-margins-013.html": [ + "cb3b56725b84cf0864a92994a35c6c09c128cfe5", [ + null, [ - "/css/css-fonts/font-weight-lighter-001-ref.xht", - "==" - ] - ], - {} - ] - ], - "font-weight-normal-001.xht": [ - "1106b7c92fb9f709fdbd6126df811f8934b43633", - [ - null, + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-items-percentage-margins-014.html": [ + "32a171dc9efe787848b35e822a0efa3689018250", [ + null, [ - "/css/css-fonts/font-weight-normal-001-ref.xht", - "==" - ] - ], - {} - ] - ], - "hiragana-katakana-kerning.html": [ - "9d72378581a0e5d96b0611c9bcd9228721030e64", - [ - null, + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-items-percentage-paddings-003.html": [ + "970f83c1edccc0a564dec28770a5c1a76317b3de", [ + null, [ - "/css/css-fonts/hiragana-katakana-kerning-notref.html", - "!=" - ] - ], - {} - ] - ], - "line-gap-override.html": [ - "487fb2ea59d91cc57715a44e33198fc6223c1d68", - [ - null, + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-items-percentage-paddings-004.html": [ + "60b08630df9846acd02ab42cec5ed4b18296e76d", [ + null, [ - "/css/css-fonts/line-gap-override-ref.html", - "==" - ] - ], - {} - ] - ], - "matching": { - "fixed-stretch-style-over-weight.html": [ - "c2b27be120608c1ae7d5da934ed770875dd21a82", + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-items-percentage-paddings-005.html": [ + "6c67080f7a9ae5c7f3691c48cd541f427445f7cf", [ null, [ [ - "/css/css-fonts/matching/fixed-stretch-style-over-weight-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "font-unicode-PUA.html": [ - "9ed897aa006317c2eee63ecd69cc37c068c34217", + "grid-items-percentage-paddings-006.html": [ + "b17a5690241a4ec1f06c0d1512e2363aebbf4258", [ - "css/css-fonts/matching/font-unicode-PUA.html", + null, [ [ - "/css/css-fonts/matching/font-unicode-PUA-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "range-descriptor-reversed.html": [ - "71b424d5fe7f09a4bd5872656ac77fa67713d071", + "grid-items-percentage-paddings-007.html": [ + "a49956390dded6ec0cdcee1352ed33d10e5cb27e", [ null, [ [ - "/css/css-fonts/matching/range-descriptor-reversed-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" - ], + ] + ], + {} + ] + ], + "grid-items-percentage-paddings-008.html": [ + "da9328bebc28ff9f3440d3629d6ec507cdc9a3f0", + [ + null, + [ [ - "/css/css-fonts/matching/stretch-distance-over-weight-distance-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "stretch-distance-over-weight-distance.html": [ - "e899c8b4d0df867e56a7409adda4dbfafd69260d", + "grid-items-percentage-paddings-009.html": [ + "5d86919be298d8e024d890ab2de3938d9ea4fba6", [ null, [ [ - "/css/css-fonts/matching/stretch-distance-over-weight-distance-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "style-ranges-over-weight-direction.html": [ - "f263a11127717e46402fe184f90703fa2e7c3912", + "grid-items-percentage-paddings-010.html": [ + "18c8a9b7c81d45d17c5fc21a0c39494e7169568e", [ null, [ [ - "/css/css-fonts/matching/style-ranges-over-weight-direction-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] - ] - }, - "math-script-level-and-math-style": { - "font-size-math-001.tentative.html": [ - "b9964985600f01aa38e9fdf32cfe5f33a835d052", + ], + "grid-items-percentage-paddings-011.html": [ + "a6aaed5ddf0676a44fc1cbffbd13d7e8d6f8ebef", [ - "css/css-fonts/math-script-level-and-math-style/font-size-math-001.tentative.html", + null, [ [ - "/css/css-fonts/math-script-level-and-math-style/font-size-math-001.tentative-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "font-size-math-002.tentative.html": [ - "7491409f2fa1e15397be8c96cfd68a9e594893ed", + "grid-items-percentage-paddings-012.html": [ + "771a1c8fef11851812e73347193c1aeca31c79c1", [ - "css/css-fonts/math-script-level-and-math-style/font-size-math-002.tentative.html", + null, [ [ - "/css/css-fonts/math-script-level-and-math-style/font-size-math-002.tentative-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "math-script-level-003.tentative.html": [ - "47b67aa8a819d3c75d205ce493f753108f767829", + "grid-items-percentage-paddings-013.html": [ + "5e6ff096469e6d2ac1b1cb55eba83e21ddc3c47c", [ null, [ [ - "/css/css-fonts/math-script-level-and-math-style/math-script-level-003.tentative-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "math-script-level-auto-and-math-style-001.tentative.html": [ - "bb59dfdd17857197e26d13cbe011540c90f97afb", + "grid-items-percentage-paddings-014.html": [ + "2a9bd67ec4e9bfd7e183108b6fb96239b69fe79c", [ null, [ [ - "/css/css-fonts/math-script-level-and-math-style/math-script-level-auto-and-math-style-001.tentative-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "math-script-level-auto-and-math-style-002.tentative.html": [ - "21c912528ab03ccff1895960cd09ee2bd3785239", + "grid-items-sizing-alignment-001.html": [ + "033d292ce61026251ada1812d195412e5d0f5672", [ null, [ [ - "/css/css-fonts/math-script-level-and-math-style/math-script-level-auto-and-math-style-002.tentative-ref.html", + "/css/css-grid/grid-items/grid-items-sizing-alignment-001-ref.html", "==" ] ], {} ] ], - "math-script-level-auto-and-math-style-003.tentative.html": [ - "5739a12bb56eacc30f2433f701110d5fc7b44009", + "grid-layout-grid-in-grid.html": [ + "605494dd27ca99cdab4d74868e5e4c6277711c78", [ null, [ [ - "/css/css-fonts/math-script-level-and-math-style/math-script-level-auto-and-math-style-003.tentative-ref.html", + "/css/css-grid/reference/grid-layout-grid-in-grid-ref.html", "==" ] ], {} ] ], - "math-script-level-auto-and-math-style-004.tentative.html": [ - "aed3bf9142c94d9ce699d635798137cdcd467341", + "grid-layout-z-order-a.html": [ + "b5e1dec6d5b9f46816fa07b987cd3dffaf396f3e", [ null, [ [ - "/css/css-fonts/math-script-level-and-math-style/math-script-level-auto-and-math-style-004.tentative-ref.html", + "/css/css-grid/reference/grid-layout-z-order-ref.html", "==" ] ], {} ] ], - "math-script-level-auto-and-math-style-005.tentative.html": [ - "01b876b515adf88ed4dafbb05b78b0277488ede5", + "grid-layout-z-order-b.html": [ + "e4fdc89e5f33359bd73912da24773efb5e273c12", [ null, [ [ - "/css/css-fonts/math-script-level-and-math-style/math-script-level-auto-and-math-style-005.tentative-ref.html", + "/css/css-grid/reference/grid-layout-z-order-ref.html", "==" ] ], {} ] ], - "math-script-level-font-size-clamping-001.tentative.html": [ - "36b477aa328cb9e1a3d3f65a041106366a0557a1", + "grid-minimum-size-grid-items-001.html": [ + "2965fd8fb15f1fee1029677f851e8f24ef6e3426", [ null, [ [ - "/css/css-fonts/math-script-level-and-math-style/math-script-level-font-size-clamping-001.tentative-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] - ] - }, - "metrics-override-normal-keyword.html": [ - "cf8c711ef27ed209950aef87b76d3ceb133f27f2", - [ - null, + ], + "grid-minimum-size-grid-items-002.html": [ + "39b9d033a4bc6c70f4f3c4740d9a7db9787b4de0", [ - [ - "/css/css-fonts/metrics-override-normal-keyword-ref.html", - "==" - ] - ], - {} - ] - ], - "palette-values-rule-add-2.html": [ - "25859a7e4ba07b069dd06a28d1fe31861ec68aa0", - [ - "css/css-fonts/palette-values-rule-add-2.html", - [ - [ - "/css/css-fonts/palette-values-rule-add-2-ref.html", - "==" - ] - ], - {} - ] - ], - "palette-values-rule-add.html": [ - "51dbfbe730c699879636aa0419fff14b2b925298", - [ - "css/css-fonts/palette-values-rule-add.html", - [ - [ - "/css/css-fonts/palette-values-rule-add-notref.html", - "!=" - ] - ], - {} - ] - ], - "palette-values-rule-delete-2.html": [ - "4e65142ff8da909485aeb149bf459928299eb5dd", - [ - "css/css-fonts/palette-values-rule-delete-2.html", - [ - [ - "/css/css-fonts/palette-values-rule-delete-2-ref.html", - "==" - ] - ], - {} - ] - ], - "palette-values-rule-delete.html": [ - "e2d7b53e1db5cf3d4af6e7fc3333a5a180d88c47", - [ - "css/css-fonts/palette-values-rule-delete.html", - [ - [ - "/css/css-fonts/palette-values-rule-delete-notref.html", - "!=" - ] - ], - {} - ] - ], - "quoted-generic-ignored.html": [ - "4207ad5cf43e6b6db198fb14b0d00f6c3c2d4e97", - [ - null, - [ - [ - "/css/css-fonts/quoted-generic-ignored-ref.html", - "==" - ] - ], - {} - ] - ], - "rcap-in-monospace.html": [ - "def59b074f07b5e05ff944da8c150fac6fd806a6", - [ - "css/css-fonts/rcap-in-monospace.html", - [ - [ - "/css/css-fonts/rcap-in-monospace-ref.html", - "==" - ] - ], - {} - ] - ], - "rch-in-monospace.html": [ - "86ad1d87326016216ba24eef750d09c7c26352f3", - [ - "css/css-fonts/rch-in-monospace.html", - [ - [ - "/css/css-fonts/rch-in-monospace-ref.html", - "==" - ] - ], - {} - ] - ], - "rem-in-monospace.html": [ - "0358d811b403e6443ca5d861257a70a19093e5ce", - [ - null, - [ - [ - "/css/css-fonts/rem-in-monospace-ref.html", - "==" - ] - ], - {} - ] - ], - "rex-in-monospace.html": [ - "89fc9ff9cca2b28fdf3b549adcc7ed18474049fb", - [ - "css/css-fonts/rex-in-monospace.html", - [ - [ - "/css/css-fonts/rex-in-monospace-ref.html", - "==" - ] - ], - {} - ] - ], - "ric-in-monospace.html": [ - "1ad6dac924c69c36e4a7691b2c0a15f1a6ebe133", - [ - "css/css-fonts/ric-in-monospace.html", - [ - [ - "/css/css-fonts/ric-in-monospace-ref.html", - "==" - ] - ], - {} - ] - ], - "rlh-in-monospace.html": [ - "26a57a78a551bdfafc65a893acd1fa5116d678e7", - [ - null, - [ - [ - "/css/css-fonts/rlh-in-monospace-ref.html", - "==" - ] - ], - {} - ] - ], - "separators.html": [ - "b2ec6a2a53403c987a2ca8841e5dea4f0dd80038", - [ - "css/css-fonts/separators.html", - [ - [ - "/css/css-fonts/separators-ref.html", - "==" - ] - ], - {} - ] - ], - "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-03.html": [ - "f9de6499fa3f07d8b493a5bc9b718262108d7d48", - [ - "css/css-fonts/size-adjust-03.html", - [ - [ - "/css/css-fonts/size-adjust-03-ref.html", - "==" - ] - ], - {} - ] - ], - "size-adjust-text-decoration.tentative.html": [ - "f1183dcf209051e6e657869b1b3911315baf647d", - [ - null, - [ - [ - "/css/css-fonts/size-adjust-text-decoration-tentative-ref.html", - "==" - ] - ], - {} - ] - ], - "size-adjust-unicode-range-system-fallback.html": [ - "6cfc23fec58fe650eb1c01487bec33b824004eb1", - [ - "css/css-fonts/size-adjust-unicode-range-system-fallback.html", - [ - [ - "/css/css-fonts/size-adjust-unicode-range-system-fallback-ref.html", - "==" - ] - ], - {} - ] - ], - "size-adjust.tentative.html": [ - "22517f394165c59afbbb228b63a5e40e2e1ad7e4", - [ - "css/css-fonts/size-adjust.tentative.html", - [ - [ - "/css/css-fonts/size-adjust-tentative-ref.html", - "==" - ] - ], - {} - ] - ], - "standard-font-family-10.html": [ - "5dde6348d3985307999572b342433cfc8f800d9c", - [ - null, - [ - [ - "/css/css-fonts/standard-font-family-10-notref.html", - "!=" - ] - ], - {} - ] - ], - "standard-font-family-11.html": [ - "15abb9a30ae6fb79b072ac79743c8e019900d24f", - [ - null, - [ - [ - "/css/css-fonts/standard-font-family-11-notref.html", - "!=" - ] - ], - {} - ] - ], - "standard-font-family-12.html": [ - "7c34b0b8ca3cfdaab25ecfa930349b649f3c7a82", - [ - null, - [ - [ - "/css/css-fonts/standard-font-family-12-notref.html", - "!=" - ] - ], - {} - ] - ], - "standard-font-family-13.html": [ - "1f8186f482ddb0aef05c5b3477f0037d3f14b7c3", - [ - null, - [ - [ - "/css/css-fonts/standard-font-family-13-notref.html", - "!=" - ] - ], - {} - ] - ], - "standard-font-family-14.html": [ - "5b694ef09b3271cd8524d1b3d882838a1e9eb175", - [ - null, - [ - [ - "/css/css-fonts/standard-font-family-14-notref.html", - "!=" - ] - ], - {} - ] - ], - "standard-font-family-15.html": [ - "2e21b833c96237a6f0f2e272dd5ee11ece192940", - [ - null, - [ - [ - "/css/css-fonts/standard-font-family-15-notref.html", - "!=" - ] - ], - {} - ] - ], - "standard-font-family-16.html": [ - "0b470bd6407c8ff741c10497650f008b772d8126", - [ - null, - [ - [ - "/css/css-fonts/standard-font-family-16-notref.html", - "!=" - ] - ], - {} - ] - ], - "standard-font-family-17.html": [ - "9ce56ed8fa6ec6cc1ea7b7ddc8f4a7221730dfff", - [ - null, - [ - [ - "/css/css-fonts/standard-font-family-17-notref.html", - "!=" - ] - ], - {} - ] - ], - "standard-font-family-18.html": [ - "69e5cabd6ec261a5f3f63f0dcce2d738851c1b10", - [ - null, - [ - [ - "/css/css-fonts/standard-font-family-18-notref.html", - "!=" - ] - ], - {} - ] - ], - "standard-font-family-19.html": [ - "43dc24b16750566f9e7d8d2d69bcdfc8bebef265", - [ - null, - [ - [ - "/css/css-fonts/standard-font-family-19-notref.html", - "!=" - ] - ], - {} - ] - ], - "standard-font-family-2.html": [ - "2827c6c2cb8ff3936000e67e27298771ec1ee729", - [ - null, - [ - [ - "/css/css-fonts/standard-font-family-2-ref.html", - "==" - ] - ], - {} - ] - ], - "standard-font-family-20.html": [ - "7d0335e06160ea15af645d73d4537bfe29e1f008", - [ - null, - [ - [ - "/css/css-fonts/standard-font-family-20-notref.html", - "!=" - ] - ], - {} - ] - ], - "standard-font-family-3.html": [ - "38d2410a438f298416ba6f82f54510583233d9ce", - [ - null, - [ - [ - "/css/css-fonts/standard-font-family-3-notref.html", - "!=" - ] - ], - {} - ] - ], - "standard-font-family-4.html": [ - "11146c9b71d5802661d54ff27b700d2bd213b9c5", - [ - null, - [ - [ - "/css/css-fonts/standard-font-family-4-notref.html", - "!=" - ] - ], - {} - ] - ], - "standard-font-family-5.html": [ - "7d2646bb1b712099ef9ccde25450e02b336c809e", - [ - null, - [ - [ - "/css/css-fonts/standard-font-family-5-notref.html", - "!=" - ] - ], - {} - ] - ], - "standard-font-family-6.html": [ - "f6a0f158b94619e9937233d0973474df17c3f24a", - [ - null, - [ - [ - "/css/css-fonts/standard-font-family-6-ref.html", - "==" - ] - ], - {} - ] - ], - "standard-font-family-7.html": [ - "11af83fc9e6e36eb0b27131eeaed323272287e94", - [ - null, - [ - [ - "/css/css-fonts/standard-font-family-7-ref.html", - "==" - ] - ], - {} - ] - ], - "standard-font-family-8.html": [ - "b64cb8fb4cc0912e08f4747d95fe4f07454d3548", - [ - null, - [ - [ - "/css/css-fonts/standard-font-family-8-notref.html", - "!=" - ] - ], - {} - ] - ], - "standard-font-family-9.html": [ - "e5afe8ab9ae55ede92e28cbb4451843655a1ba12", - [ - null, - [ - [ - "/css/css-fonts/standard-font-family-9-notref.html", - "!=" - ] - ], - {} - ] - ], - "standard-font-family.html": [ - "b093ad442e1049b6747f115d86ec0220717553d2", - [ - null, - [ - [ - "/css/css-fonts/standard-font-family-ref.html", - "==" - ] - ], - {} - ] - ], - "system-ui-ar.html": [ - "a65a564f9bae9729c033c3de8d51bf4ae2fab2fb", - [ - null, - [ - [ - "/css/css-fonts/system-ui-ar-notref.html", - "!=" - ] - ], - {} - ] - ], - "system-ui-ja-vs-zh.html": [ - "f3700697d5f23df31fc1b9307ea68a87ce2dc846", - [ - null, - [ - [ - "/css/css-fonts/system-ui-zh.html", - "!=" - ] - ], - {} - ] - ], - "system-ui-ja.html": [ - "2b16fe005c6a1acd8d242fb7fbdc7ea5971aebc6", - [ - null, - [ - [ - "/css/css-fonts/system-ui-ja-notref.html", - "!=" - ] - ], - {} - ] - ], - "system-ui-mixed.html": [ - "a62bd216c7fb63777d31b4ca07cc80eda211e8ba", - [ - "css/css-fonts/system-ui-mixed.html", - [ - [ - "/css/css-fonts/system-ui-mixed-ref.html", - "==" - ] - ], - {} - ] - ], - "system-ui-ur-vs-ar.html": [ - "210534fd869b90020079e26453709fac15a7d907", - [ - null, - [ - [ - "/css/css-fonts/system-ui-ar.html", - "!=" - ] - ], - {} - ] - ], - "system-ui-ur.html": [ - "bd26d29720b89141ebff8c874b8116ce71358045", - [ - null, - [ - [ - "/css/css-fonts/system-ui-ur-notref.html", - "!=" - ] - ], - {} - ] - ], - "system-ui-zh.html": [ - "c99a39331618a29d82dad0a18cdf94ad6cf0d991", - [ - null, - [ - [ - "/css/css-fonts/system-ui-zh-notref.html", - "!=" - ] - ], - {} - ] - ], - "system-ui.html": [ - "8ad66aeb89cb71af8c8121ecab294af1bb3488cb", - [ - "css/css-fonts/system-ui.html", - [ - [ - "/css/css-fonts/system-ui-notref.html", - "!=" - ] - ], - {} - ] - ], - "test-synthetic-italic-2.html": [ - "6e8910e22c86c309de1403060f9a5061dbbf571c", - [ - null, - [ - [ - "/css/css-fonts/test-synthetic-italic-2-ref.html", - "==" - ] - ], - {} - ] - ], - "test-synthetic-italic-3.html": [ - "f3c1a371562a299f110315b3aefb19fe5f20edbd", - [ - null, - [ - [ - "/css/css-fonts/test-synthetic-italic-3-ref.html", - "==" - ] - ], - {} - ] - ], - "variations": { - "font-descriptor-range-reversed.html": [ - "14d426245d3bdb56e67007edde5e9a49473e5694", - [ - null, - [ - [ - "/css/css-fonts/variations/font-descriptor-range-reversed-ref.html", - "==" - ] - ], - {} - ] - ], - "font-slant-1.html": [ - "f3985defde8d1151c3b2a9085bc7ca674b7b200e", - [ - "css/css-fonts/variations/font-slant-1.html", + null, [ [ - "/css/css-fonts/variations/font-slant-1-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "font-slant-2a.html": [ - "386ff83f8d5e0d9bab6faa20daf900739764d4bf", + "grid-minimum-size-grid-items-003.html": [ + "19ea84c549e3c3e2fe23fb2267678f88ff458e88", [ null, [ [ - "/css/css-fonts/variations/font-slant-2-ref.html", - "==" - ] - ], - {} - ] - ], - "font-slant-2b.html": [ - "0fb280827e21bcadc7c3176598a25b422eed3b2b", - [ - "css/css-fonts/variations/font-slant-2b.html", - [ - [ - "/css/css-fonts/variations/font-slant-2-ref.html", - "==" - ] - ], - {} - ] - ], - "font-slant-2c.html": [ - "5436fc1b671df41829116c37c5fd5eb35551c3db", - [ - "css/css-fonts/variations/font-slant-2c.html", - [ - [ - "/css/css-fonts/variations/font-slant-2-ref.html", - "==" - ] - ], - {} - ] - ], - "font-slant-3.html": [ - "047409ec35a3bbb1637fc8e0823e1563d776ec07", - [ - "css/css-fonts/variations/font-slant-3.html", - [ - [ - "/css/css-fonts/variations/font-slant-3-ref.html", - "==" - ] - ], - {} - ] - ], - "font-weight-metrics.html": [ - "f10e591defcd3aa5f215158aa2218e1b4a499549", - [ - "css/css-fonts/variations/font-weight-metrics.html", - [ - [ - "/css/css-fonts/variations/font-weight-metrics-ref.html", - "==" - ] - ], - {} - ] - ], - "slnt-backslant-variable.html": [ - "36a4305da72590c01280bee49ba08825cd3bcb59", - [ - "css/css-fonts/variations/slnt-backslant-variable.html", - [ - [ - "/css/css-fonts/variations/slnt-backslant-variable-ref.html", - "==" - ] - ], - {} - ] - ], - "slnt-variable.html": [ - "ae937037940b4533442777853dd43d76c241ce3f", - [ - "css/css-fonts/variations/slnt-variable.html", - [ - [ - "/css/css-fonts/variations/slnt-variable-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "variable-box-font.html": [ - "a9023fabe5ae43154c2e104ca4da83e28af6da43", + "grid-minimum-size-grid-items-004.html": [ + "34764652a7a14f8f7027e778ac88241d4b342b40", [ null, [ [ - "/css/css-fonts/variations/variable-box-font-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "variable-gpos-m2b.html": [ - "c39cce33a6c419865e4e2284fb64079cae4e0d84", + "grid-minimum-size-grid-items-005.html": [ + "d7ac67af4d19518b1edc0d72843e202805f16e20", [ null, [ [ - "/css/css-fonts/variations/variable-gpos-m2b-ref.html", + "/css/css-grid/grid-items/ref-filled-green-100px-square-image.html", "==" ] ], {} ] ], - "variable-gsub.html": [ - "ed432f65ebf504fb6568f494affe8f8ea5dd4866", + "grid-minimum-size-grid-items-006.html": [ + "69bbc7c09810f43720b99735959f8fbfe78207fe", [ null, [ [ - "/css/css-fonts/variations/variable-gsub-ref.html", + "/css/css-grid/grid-items/ref-filled-green-100px-square-image.html", "==" ] ], {} ] ], - "variable-opsz-size-adjust.html": [ - "b673f3cb7bf4e72fa8aa6ff38b2f18fbd0705717", + "grid-minimum-size-grid-items-007.html": [ + "8899ca1c7ae18bf88b74617df84ed5914b4a8631", [ null, [ [ - "/css/css-fonts/variations/variable-opsz-size-adjust-ref.html", + "/css/css-grid/grid-items/ref-filled-green-100px-square-image.html", "==" ] ], {} ] ], - "variable-opsz.html": [ - "d274a478280018de975a74e2781d2ac96d1e97f5", - [ - null, - [ - [ - "/css/css-fonts/variations/variable-opsz-ref.html", - "==" - ] - ], - {} - ] - ] - } - }, - "css-grid": { - "abspos": { - "absolute-positioning-changing-containing-block-001.html": [ - "31030835c8c9aa2517d29401a72a912658801304", + "grid-minimum-size-grid-items-008.html": [ + "c945490c480e6bdce14832b1c278be427b683a39", [ null, [ [ - "/css/css-grid/abspos/absolute-positioning-changing-containing-block-001-ref.html", + "/css/css-grid/grid-items/ref-filled-green-100px-square-image.html", "==" ] ], {} ] ], - "descendant-static-position-001.html": [ - "ec19e4acff1ab6b6a30f28f66e1b6c16c9753705", + "grid-minimum-size-grid-items-009.html": [ + "77d8979cbdde57728139ac9744e9aa2ee70c4f44", [ null, [ [ - "/css/css-grid/abspos/descendant-static-position-001-ref.html", + "/css/css-grid/grid-items/ref-filled-green-100px-square-image.html", "==" ] ], {} ] ], - "descendant-static-position-002.html": [ - "97fa299c0a0a20840ebaa0c1532695634b13c537", + "grid-minimum-size-grid-items-010.html": [ + "a2406a53551021f1a52d9d3eaa1fddd3662676e4", [ null, [ [ - "/css/css-grid/abspos/descendant-static-position-002-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "descendant-static-position-003.html": [ - "399ade2e8764eb0b0ee444340c0722707ab8dcac", + "grid-minimum-size-grid-items-011.html": [ + "d769cdee5229f9e97a9dd6146cf328aa31a50810", [ null, [ [ - "/css/css-grid/abspos/descendant-static-position-003-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "descendant-static-position-004.html": [ - "5f87dccd80e6f38bf2bcab536c18b3fb8daa37cf", + "grid-minimum-size-grid-items-012.html": [ + "2a39c9bda1648b5c1e91aa33fb8e7a47babb2278", [ null, [ [ - "/css/css-grid/abspos/descendant-static-position-004-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "grid-abspos-staticpos-align-self-001.html": [ - "8fd4eca36ce161c6a29d9c5683708aa2d2c64ac6", + "grid-minimum-size-grid-items-013.html": [ + "813f4a15a833836145da6448bc366e5091896a5b", [ null, [ [ - "/css/css-grid/abspos/grid-abspos-staticpos-align-self-001-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "grid-abspos-staticpos-align-self-002.html": [ - "a78dfc42450befba82455910c75e67cd55f2e2be", + "grid-minimum-size-grid-items-014.html": [ + "09e3fd581801af3d0313536c18a94e9b2ff5e056", [ null, [ [ - "/css/css-grid/abspos/grid-abspos-staticpos-align-self-002-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "grid-abspos-staticpos-align-self-img-001.html": [ - "cb5906603b35912cf2e649b1fa0a049d801ec236", + "grid-minimum-size-grid-items-015.html": [ + "0d36aaa8229a5cddb69296b8c0f787aa9b991cbe", [ null, [ [ - "/css/css-grid/abspos/grid-abspos-staticpos-align-self-img-001-ref.html", - "==" - ] - ], - {} - ] - ], - "grid-abspos-staticpos-align-self-img-002.html": [ - "5b029df8494ac033d7ec66ca12494aa14c30b1e8", - [ - "css/css-grid/abspos/grid-abspos-staticpos-align-self-img-002.html", - [ - [ - "/css/css-grid/abspos/grid-abspos-staticpos-align-self-img-002-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "grid-abspos-staticpos-align-self-img-last-baseline-001.html": [ - "35fb55cfe93cd3bf2311ea1ab9178b3bb38bb619", + "grid-minimum-size-grid-items-016.html": [ + "26a357273804e6dd31ebb3bdca0991d5fbb957a5", [ null, [ [ - "/css/css-grid/abspos/grid-abspos-staticpos-align-self-img-last-baseline-001-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "grid-abspos-staticpos-align-self-img-last-baseline-002.html": [ - "028781586cfe003691a29ca01527e3e2da9fba7b", + "grid-minimum-size-grid-items-017.html": [ + "4cb74022aaf4b45901deb8e2920e5b3e443f0982", [ null, [ [ - "/css/css-grid/abspos/grid-abspos-staticpos-align-self-img-last-baseline-002-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "grid-abspos-staticpos-align-self-last-baseline-001.html": [ - "da6ce34a89dee179e53306b4526024b419106339", + "grid-minimum-size-grid-items-018.html": [ + "4e944295abc7752be46cf795a4dd7324e1715fe1", [ null, [ [ - "/css/css-grid/abspos/grid-abspos-staticpos-align-self-last-baseline-001-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "grid-abspos-staticpos-align-self-last-baseline-002.html": [ - "54fb9ae77b594986c5de41ed670d1c53fd48bcde", + "grid-minimum-size-grid-items-019.html": [ + "ae18e6139915132a01c712a0b9f247588d6e1661", [ null, [ [ - "/css/css-grid/abspos/grid-abspos-staticpos-align-self-last-baseline-002-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "grid-abspos-staticpos-align-self-rtl-001.html": [ - "31def24fe8ccee24f6bb669bc82184970062000a", + "grid-minimum-size-grid-items-020.html": [ + "2e8b47377da6a1dd92c9d28ed5813933784325f3", [ null, [ [ - "/css/css-grid/abspos/grid-abspos-staticpos-align-self-rtl-001-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "grid-abspos-staticpos-align-self-rtl-002.html": [ - "21936e964da68377b1f61d1be4312e1b3a0d4788", + "grid-order-property-auto-placement-001.html": [ + "22ed4957f67969a3809d8388d16d0226d8986a78", [ null, [ [ - "/css/css-grid/abspos/grid-abspos-staticpos-align-self-rtl-002-ref.html", + "/css/css-grid/reference/grid-2x2-blue-yellow-lime-magenta.html", "==" ] ], {} ] ], - "grid-abspos-staticpos-align-self-rtl-003.html": [ - "e53bd1933859dbdf861eed7721f134251ca294ae", + "grid-order-property-auto-placement-002.html": [ + "9ec9809ccd47ca510ff51bcb3d0906ca2a06abc1", [ null, [ [ - "/css/css-grid/abspos/grid-abspos-staticpos-align-self-rtl-003-ref.html", + "/css/css-grid/reference/grid-2x2-blue-yellow-lime-magenta.html", "==" ] ], {} ] ], - "grid-abspos-staticpos-align-self-rtl-004.html": [ - "12805427e803bc743f5c123a380ed623785eb9a2", + "grid-order-property-auto-placement-003.html": [ + "b40f3101d025f47051e9a383729d4dc1ae782183", [ null, [ [ - "/css/css-grid/abspos/grid-abspos-staticpos-align-self-rtl-004-ref.html", + "/css/css-grid/reference/grid-2x2-blue-yellow-lime-magenta.html", "==" ] ], {} ] ], - "grid-abspos-staticpos-align-self-rtl-last-baseline-001.html": [ - "8804a39a5675bd6a1d1dfac429727e69bccb97f6", + "grid-order-property-auto-placement-004.html": [ + "f606c69673504c7cc16b39b07ed3cf2bf55c7315", [ null, [ [ - "/css/css-grid/abspos/grid-abspos-staticpos-align-self-rtl-last-baseline-001-ref.html", + "/css/css-grid/reference/grid-2x2-blue-yellow-lime-magenta.html", "==" ] ], {} ] ], - "grid-abspos-staticpos-align-self-rtl-last-baseline-002.html": [ - "e63bfa2813bce8f81e11404ff427255e9bf10fc7", + "grid-order-property-auto-placement-005.html": [ + "f787f0e77042466a20c2c6578b870dc3678c5e90", [ null, [ [ - "/css/css-grid/abspos/grid-abspos-staticpos-align-self-rtl-last-baseline-002-ref.html", + "/css/css-grid/reference/grid-2x2-blue-yellow-lime-magenta.html", "==" ] ], {} ] ], - "grid-abspos-staticpos-align-self-rtl-last-baseline-003.html": [ - "7f07b13524b22fcd79a3ab97cbd62820bcbb7792", + "grid-order-property-painting-001.html": [ + "9f9267a796495ada59a520ea097ea03d6d9bfbb2", [ null, [ [ - "/css/css-grid/abspos/grid-abspos-staticpos-align-self-rtl-last-baseline-003-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "grid-abspos-staticpos-align-self-rtl-last-baseline-004.html": [ - "b40e60488fefcb2aa91175be1ff85aaaf9ed03bf", + "grid-order-property-painting-002.html": [ + "91093e83a646fdd9a2de15cf2d549fefd1c4fbbe", [ null, [ [ - "/css/css-grid/abspos/grid-abspos-staticpos-align-self-rtl-last-baseline-004-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "grid-abspos-staticpos-align-self-safe-001.html": [ - "58ccaaf01df32c286f2c7d20890e77182a354eff", + "grid-order-property-painting-003.html": [ + "5c3e68e805e6085824b0dee408629820ed0f0859", [ null, [ [ - "/css/css-grid/abspos/grid-abspos-staticpos-align-self-safe-001-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "grid-abspos-staticpos-align-self-vertWM-001.html": [ - "2feeb2c3a130ede88bb0c42bf8e70fc9b0223b75", + "grid-order-property-painting-004.html": [ + "7b2849b0e06767a8f7ab382fe97a3b2ec3e802ec", [ null, [ [ - "/css/css-grid/abspos/grid-abspos-staticpos-align-self-vertWM-001-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "grid-abspos-staticpos-align-self-vertWM-002.html": [ - "659f6b727e72edc9077e7353c3e0443840479145", + "grid-order-property-painting-005.html": [ + "be09be68a794225694b0253e983c0ee879332ab7", [ null, [ [ - "/css/css-grid/abspos/grid-abspos-staticpos-align-self-vertWM-002-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "grid-abspos-staticpos-align-self-vertWM-003.html": [ - "61bdc0496e00e9b7fb977637c23c2071eb4b727c", + "grid-size-with-orthogonal-child-dynamic.html": [ + "d1223b9fa0c404c61eb32c44ea66b9b99f02919c", [ null, [ [ - "/css/css-grid/abspos/grid-abspos-staticpos-align-self-vertWM-003-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "grid-abspos-staticpos-align-self-vertWM-004.html": [ - "84e9265aadd4e7a8621527e1f8a78c223a7e5ad8", + "grid-z-axis-ordering-001.html": [ + "52ad190afddcd252e818a5201df2ed29bb0b4bcd", [ null, [ [ - "/css/css-grid/abspos/grid-abspos-staticpos-align-self-vertWM-004-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "grid-abspos-staticpos-align-self-vertWM-last-baseline-001.html": [ - "be1bc8cce958ecd1be8a9fa0d3bdacd65d4b0193", + "grid-z-axis-ordering-002.html": [ + "551137965d20b381b4cdeb65ae11cd7e5e9b3a08", [ null, [ [ - "/css/css-grid/abspos/grid-abspos-staticpos-align-self-vertWM-last-baseline-001-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "grid-abspos-staticpos-align-self-vertWM-last-baseline-002.html": [ - "26e1b8dadf1c3ec8d42b7a71fd523b0ec86aa740", + "grid-z-axis-ordering-003.html": [ + "1934144660f27059992f9870f32eed6471268ab2", [ null, [ [ - "/css/css-grid/abspos/grid-abspos-staticpos-align-self-vertWM-last-baseline-002-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "grid-abspos-staticpos-align-self-vertWM-last-baseline-003.html": [ - "7023e2ef4ff935ca1573dc43a5530f7c727d7455", + "grid-z-axis-ordering-004.html": [ + "2defd235d10ceaa89e65db54e7aa2a29d2b69deb", [ null, [ [ - "/css/css-grid/abspos/grid-abspos-staticpos-align-self-vertWM-last-baseline-003-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "grid-abspos-staticpos-align-self-vertWM-last-baseline-004.html": [ - "e39e6b391a06590068d6f175c027826eef1182fe", + "grid-z-axis-ordering-005.html": [ + "4bc7e116d803f182bd004f34a1e000d8f5ef055d", [ null, [ [ - "/css/css-grid/abspos/grid-abspos-staticpos-align-self-vertWM-last-baseline-004-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "grid-abspos-staticpos-justify-self-001.html": [ - "3f9a59f6b9e33f1d42eff2306fccee1b3a453555", + "grid-z-axis-ordering-overlapped-items-001.html": [ + "76e379cb538db682558fe2b6d357dfbf2d1fcab0", [ null, [ [ - "/css/css-grid/abspos/grid-abspos-staticpos-justify-self-001-ref.html", + "/css/css-grid/reference/grid-filled-blue-yellow-green-overlapped-100px-squares.html", "==" ] ], {} ] ], - "grid-abspos-staticpos-justify-self-002.html": [ - "d0b607565e5e152469da3a07818e55f081833556", + "grid-z-axis-ordering-overlapped-items-002.html": [ + "16a482136421f59ca9a9357f00db92d1ecaf6f7d", [ null, [ [ - "/css/css-grid/abspos/grid-abspos-staticpos-justify-self-002-ref.html", + "/css/css-grid/reference/grid-filled-blue-yellow-green-overlapped-100px-squares.html", "==" ] ], {} ] ], - "grid-abspos-staticpos-justify-self-img-001.html": [ - "d402fd889a8830eaab027d16274cd32f03e9de6a", + "grid-z-axis-ordering-overlapped-items-003.html": [ + "46317b1987f971e15c7fafac0532c201a54225fd", [ null, [ [ - "/css/css-grid/abspos/grid-abspos-staticpos-justify-self-img-001-ref.html", + "/css/css-grid/reference/grid-filled-blue-yellow-green-overlapped-100px-squares.html", "==" ] ], {} ] ], - "grid-abspos-staticpos-justify-self-img-002.html": [ - "6f4e86573259ef473ca01417ceba5ce6ed6ed3b8", + "grid-z-axis-ordering-overlapped-items-004.html": [ + "74b8ec020990f71ad956ca6b72f2cb19fe99268f", [ - "css/css-grid/abspos/grid-abspos-staticpos-justify-self-img-002.html", + null, [ [ - "/css/css-grid/abspos/grid-abspos-staticpos-justify-self-img-002-ref.html", + "/css/css-grid/reference/grid-filled-blue-yellow-green-overlapped-100px-squares.html", "==" ] ], {} ] ], - "grid-abspos-staticpos-justify-self-img-last-baseline-001.html": [ - "76e8a62c2608bbf2f1ad2e68bde3d39981d14158", + "grid-z-axis-ordering-overlapped-items-005.html": [ + "bae5b238c687daea45e3ddd7915f55648e19fc5e", [ null, [ [ - "/css/css-grid/abspos/grid-abspos-staticpos-justify-self-img-last-baseline-001-ref.html", + "/css/css-grid/reference/grid-filled-blue-yellow-green-overlapped-100px-squares.html", "==" ] ], {} ] ], - "grid-abspos-staticpos-justify-self-img-last-baseline-002.html": [ - "57c738d89afb4da8582c36bdb4b99c0cdc2c1b41", + "grid-z-axis-ordering-overlapped-items-006.html": [ + "3424d0c86b655f010c31444ecc701e530fdd871f", [ - "css/css-grid/abspos/grid-abspos-staticpos-justify-self-img-last-baseline-002.html", + null, [ [ - "/css/css-grid/abspos/grid-abspos-staticpos-justify-self-img-last-baseline-002-ref.html", + "/css/css-grid/reference/grid-filled-blue-yellow-green-overlapped-100px-squares.html", "==" ] ], {} ] ], - "grid-abspos-staticpos-justify-self-last-baseline-001.html": [ - "2328268a63cdf87b8f4d37b722682e61ea810e88", + "item-with-table-with-infinite-max-intrinsic-width.html": [ + "3bf98c4a58391947b4eb68cb7b019edde59e31d2", [ null, [ [ - "/css/css-grid/abspos/grid-abspos-staticpos-justify-self-last-baseline-001-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "grid-abspos-staticpos-justify-self-last-baseline-002.html": [ - "4ae8b5de8754db370ec60a9ef343e2ed79c11926", + "percentage-margin-dynamic.html": [ + "ed1edc4ba6f9302f2e77bff0b5c96f2ab6ae0350", [ null, [ [ - "/css/css-grid/abspos/grid-abspos-staticpos-justify-self-last-baseline-002-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "grid-abspos-staticpos-justify-self-rtl-001.html": [ - "3080c49453a075944b433f0264c774f4b697f518", + "percentage-size-indefinite-replaced.html": [ + "3610f2e2c992b075d203bc5bfceb400c7b4fca0d", [ null, [ [ - "/css/css-grid/abspos/grid-abspos-staticpos-justify-self-rtl-001-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "grid-abspos-staticpos-justify-self-rtl-002.html": [ - "4c3a4a849e2e451d4638bdad682464f7e1b07cbb", + "percentage-size-replaced-subitems-001.html": [ + "190277a1ed1e409540410eb43bf5be0d64c142cf", [ null, [ [ - "/css/css-grid/abspos/grid-abspos-staticpos-justify-self-rtl-002-ref.html", + "/css/css-grid/grid-items/percentage-size-replaced-subitems-001-ref.html", "==" ] ], {} ] ], - "grid-abspos-staticpos-justify-self-rtl-003.html": [ - "f27bb62c04b28f5cdf6ff1c5410f8667838365d9", + "percentage-size-subitems-001.html": [ + "ad009906191a268c4546b2129c3c0af2352ea318", [ null, [ [ - "/css/css-grid/abspos/grid-abspos-staticpos-justify-self-rtl-003-ref.html", + "/css/css-grid/grid-items/percentage-size-subitems-001-ref.html", "==" ] ], {} ] ], - "grid-abspos-staticpos-justify-self-rtl-004.html": [ - "a8647bbe8719f9df737bd47bfdf3c975a52eabcd", + "percentage-size-subitems-002.html": [ + "17f57bf39d1910bdc02fd9fd4f1c9865c63cc109", [ null, [ [ - "/css/css-grid/abspos/grid-abspos-staticpos-justify-self-rtl-004-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "grid-abspos-staticpos-justify-self-rtl-last-baseline-001.html": [ - "1f2be10532ec1439f703d70dc0ce10d41ce71086", + "remove-svg-grid-item-001.html": [ + "5e196c82c64bb52ee5b445b664eb5bc0dbd60573", [ null, [ [ - "/css/css-grid/abspos/grid-abspos-staticpos-justify-self-rtl-last-baseline-001-ref.html", + "/css/css-grid/reference/grid-item-script-001-ref.html", "==" ] ], {} ] ], - "grid-abspos-staticpos-justify-self-rtl-last-baseline-002.html": [ - "519c96f27b82bf4a6116520e391d5f603fcf0442", + "replaced-element-001.html": [ + "b29b67a01aa47b32b13f7866fb8f03efe07bbd0c", [ null, [ [ - "/css/css-grid/abspos/grid-abspos-staticpos-justify-self-rtl-last-baseline-002-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "grid-abspos-staticpos-justify-self-rtl-last-baseline-003.html": [ - "90af5052cceaff188fc6ddde5695bf317d575da5", + "replaced-element-002.html": [ + "b8101c439995b77005934bca209090639af6942f", [ null, [ [ - "/css/css-grid/abspos/grid-abspos-staticpos-justify-self-rtl-last-baseline-003-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "grid-abspos-staticpos-justify-self-rtl-last-baseline-004.html": [ - "66df456e7b047410f3077fd56c2e97c31a303402", + "replaced-element-007.html": [ + "61284df75858851aba1707dde375ad2e19556810", [ null, [ [ - "/css/css-grid/abspos/grid-abspos-staticpos-justify-self-rtl-last-baseline-004-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "grid-abspos-staticpos-justify-self-vertWM-001.html": [ - "ef5af105f62a453927e6981a1e956fccf908abf8", + "replaced-element-010.html": [ + "83672297f99aae1c737372d1b1560ffd6a9ab2d3", [ null, [ [ - "/css/css-grid/abspos/grid-abspos-staticpos-justify-self-vertWM-001-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "grid-abspos-staticpos-justify-self-vertWM-002.html": [ - "bed8a0a75cef63d2e8bffec9ddf418954d7059dd", + "replaced-element-011.html": [ + "c5f5c301a29882286542419eefc4c90ce66b1667", [ null, [ [ - "/css/css-grid/abspos/grid-abspos-staticpos-justify-self-vertWM-002-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "grid-abspos-staticpos-justify-self-vertWM-003.html": [ - "2626c49d229bc51cb632f28612952562d2819269", + "replaced-element-012.html": [ + "c26ce033788b819e84da927e3c4e147c085a2e8a", [ null, [ [ - "/css/css-grid/abspos/grid-abspos-staticpos-justify-self-vertWM-003-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "grid-abspos-staticpos-justify-self-vertWM-004.html": [ - "4574da3a82de395fcc3bbc4c9fcb33a14afd10cf", + "replaced-element-013.html": [ + "c6c3ef66c3be55fcb5524726562cf4d434b9887a", [ null, [ [ - "/css/css-grid/abspos/grid-abspos-staticpos-justify-self-vertWM-004-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "grid-abspos-staticpos-justify-self-vertWM-last-baseline-001.html": [ - "f7ada7a8e5ee841d4fa8921428d87f38cfadec9f", + "replaced-element-014.html": [ + "4aa10414d34f223c707a6206916f724738f05fcf", [ null, [ [ - "/css/css-grid/abspos/grid-abspos-staticpos-justify-self-vertWM-last-baseline-001-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "grid-abspos-staticpos-justify-self-vertWM-last-baseline-002.html": [ - "aa1303d35316fd8c91c0c0922a87e89d1ebaeb8d", + "replaced-element-015.html": [ + "adb9af565481d0d517fb0af6e24a006eaa669dda", [ null, [ [ - "/css/css-grid/abspos/grid-abspos-staticpos-justify-self-vertWM-last-baseline-002-ref.html", + "/css/css-grid/reference/replaced-element-015-ref.html", "==" ] ], {} ] ], - "grid-abspos-staticpos-justify-self-vertWM-last-baseline-003.html": [ - "4ab166e688a87b9a51da2e2d294d9940bcc02fc0", + "table-with-infinite-max-intrinsic-width.html": [ + "877e982cd4c5987f131587da33a23f3b7a49d538", [ null, [ [ - "/css/css-grid/abspos/grid-abspos-staticpos-justify-self-vertWM-last-baseline-003-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "grid-abspos-staticpos-justify-self-vertWM-last-baseline-004.html": [ - "26e7e66b0a018fe75bfa24838662993fbb583adb", + "whitespace-in-grid-item-001.html": [ + "f79baab6f058faea696b63d4be9fa9894228e17c", [ null, [ [ - "/css/css-grid/abspos/grid-abspos-staticpos-justify-self-vertWM-last-baseline-004-ref.html", + "/css/css-grid/grid-items/whitespace-in-grid-item-001-ref.html", "==" ] ], {} ] - ], - "grid-item-absolute-positioning-dynamic-001.html": [ - "bcd5dbaab5db71463fa2ec511fcb4d21e7942b90", + ] + }, + "grid-model": { + "column-property-should-not-apply-on-grid-container-001.html": [ + "a79536258644b44254c08f15d20cb0e656c46317", [ null, [ [ - "/css/reference/ref-filled-green-200px-square.html", + "/css/css-grid/grid-model/reference/column-property-should-not-apply-on-grid-container-001-ref.html", "==" ] ], {} ] ], - "grid-paint-positioned-children-001.html": [ - "549335e49fb781ae2dec98716fc633a2dbe3d746", + "display-grid.html": [ + "7c6b743327ebfa74a841add8c51a5ea7ffb73ec4", [ null, [ [ - "/css/css-grid/abspos/grid-paint-positioned-children-001-ref.html", + "/css/css-grid/reference/display-grid-ref.html", "==" ] ], {} ] ], - "grid-positioned-children-writing-modes-001.html": [ - "8b9df8bebada6b6b66ef5da68dc733d66934cf10", + "display-inline-grid.html": [ + "e080ed8c95ce5ab8e1f9d89a3ef8523de8bd88cc", [ null, [ [ - "/css/css-grid/abspos/grid-positioned-children-writing-modes-001-ref.html", + "/css/css-grid/reference/display-inline-grid-ref.html", "==" ] ], {} ] ], - "grid-positioned-item-dynamic-change-001.html": [ - "ff0c04e24ee87ddcb9d9cb60500e3f18bbbe12bd", + "grid-areas-overflowing-grid-container-001.html": [ + "6ee8231c937c216ac5bc947a78ac0b0318db3887", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-grid/grid-model/reference/100x100-grey-box-with-scrollbars.html", "==" ] ], {} ] ], - "grid-positioned-item-dynamic-change-002.html": [ - "8fe117b0b162d39ae0e44dab853b6848ac7b6f54", + "grid-areas-overflowing-grid-container-002.html": [ + "1abc446e2209269732a979453478b067ddfc5456", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-grid/grid-model/reference/100x100-grey-box-with-scrollbars.html", "==" ] ], {} ] ], - "grid-positioned-item-dynamic-change-003.html": [ - "c28f7ccc2c8023aa96ba2d42e8aca892ca873568", + "grid-areas-overflowing-grid-container-003.html": [ + "aaba4f924427e07c6f21c9aaf417fb83fdf21151", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-grid/grid-model/reference/100x100-grey-box-with-scrollbars.html", "==" ] ], {} ] ], - "grid-positioned-item-dynamic-change-004.html": [ - "87dd67989064c6b869c492d6acee89e4e7690cb8", + "grid-areas-overflowing-grid-container-004.html": [ + "707056feb3e10b9a24f4bc2c95f2489766452650", [ null, [ [ - "/css/css-grid/abspos/grid-positioned-item-dynamic-change-004-ref.html", + "/css/css-grid/grid-model/reference/100x100-grey-box-with-vertical-scrollbar.html", "==" ] ], {} ] ], - "grid-positioned-item-dynamic-change-005.html": [ - "e943391d2c88558a5d295acbdbc4bdcb8959cef2", + "grid-areas-overflowing-grid-container-005.html": [ + "0184b399b1e71e994f391ef7340ad35ccd7f90a8", [ - "css/css-grid/abspos/grid-positioned-item-dynamic-change-005.html", + null, [ [ - "/css/css-grid/abspos/grid-positioned-item-dynamic-change-005-ref.html", + "/css/css-grid/grid-model/reference/100x100-grey-box-with-horizontal-scrollbar.html", "==" ] ], {} ] ], - "grid-positioned-item-dynamic-change-006.html": [ - "ee1581e2e1c9b7fe95c1fdedcbefbe4a735f37bc", + "grid-areas-overflowing-grid-container-006.html": [ + "248fc425fb53efc376c551adf1069ceeaed45c88", [ - "css/css-grid/abspos/grid-positioned-item-dynamic-change-006.html", + null, [ [ - "/css/css-grid/abspos/grid-positioned-item-dynamic-change-006-ref.html", + "/css/css-grid/grid-model/reference/100x100-grey-box-with-scrollbars.html", "==" ] ], {} ] ], - "grid-positioned-item-dynamic-change-007.html": [ - "3c5f227dd0a1d20452d93f6f5e54b797c1c2269f", + "grid-areas-overflowing-grid-container-007.html": [ + "0a7d3aa28a5a67faf9827257d86a7e97f3a8cfd9", [ - "css/css-grid/abspos/grid-positioned-item-dynamic-change-007.html", + null, [ [ - "/css/css-grid/abspos/grid-positioned-item-dynamic-change-007-ref.html", + "/css/css-grid/grid-model/reference/100x100-grey-box.html", "==" ] ], {} ] ], - "grid-positioned-items-background-001.html": [ - "f5e49fbffe574e9e16cfd12dedb643b02c5f28dd", + "grid-areas-overflowing-grid-container-008.html": [ + "df39ed8262fd2e722bc872ba43e13e667361c65e", [ null, [ [ - "/css/css-grid/abspos/grid-positioned-items-background-001-ref.html", + "/css/css-grid/grid-model/reference/100x100-grey-box.html", "==" ] ], {} ] ], - "grid-positioned-items-background-rtl-001.html": [ - "81f4f10f5c5cf97eea5d89352206cf8cbce7595a", + "grid-areas-overflowing-grid-container-009.html": [ + "367820eaeae700d14f8d23dc23a500a8067918ce", [ null, [ [ - "/css/css-grid/abspos/grid-positioned-items-background-rtl-001-ref.html", + "/css/css-grid/grid-model/reference/100x100-grey-box-with-scrollbars.html", "==" ] ], {} ] ], - "orthogonal-positioned-grid-items-001.html": [ - "54f937defd29125d955180f344e40501de6a2126", + "grid-container-ignores-first-letter-002.html": [ + "42014addf0337221a55c01fbc009347480cca924", [ null, [ [ - "/css/css-grid/abspos/orthogonal-positioned-grid-items-001-ref.html", + "/css/css-grid/grid-model/grid-container-ignores-first-letter-002-ref.html", "==" ] ], {} ] ], - "orthogonal-positioned-grid-items-002.html": [ - "50aea1650214be2ab6c1d267aee7dae09969ede8", + "grid-container-scrollbar-001.html": [ + "848ed7d9090b3a6bf5b328346ff9c528ecc208fb", [ null, [ [ - "/css/css-grid/abspos/orthogonal-positioned-grid-items-001-ref.html", + "/css/css-grid/grid-model/grid-container-scrollbar-001-ref.html", "==" ] ], {} ] ], - "orthogonal-positioned-grid-items-003.html": [ - "4e118624b8ac8b9122a26308b16b1d92b30162e7", + "grid-container-scrollbar-vertical-lr-001.html": [ + "aed5d0cf492a39d18a4e18024e32ba05ad87d092", [ null, [ [ - "/css/css-grid/abspos/orthogonal-positioned-grid-items-001-ref.html", + "/css/css-grid/grid-model/grid-container-scrollbar-vertical-lr-001-ref.html", "==" ] ], {} ] ], - "orthogonal-positioned-grid-items-004.html": [ - "7a724092a2bc963c5fff9febe9d4490024840b15", + "grid-container-scrollbar-vertical-rl-001.html": [ + "e07223df2ae5bf003242211f9378d81ab554f684", [ null, [ [ - "/css/css-grid/abspos/orthogonal-positioned-grid-items-001-ref.html", + "/css/css-grid/grid-model/grid-container-scrollbar-vertical-rl-001-ref.html", "==" ] ], {} ] ], - "orthogonal-positioned-grid-items-005.html": [ - "dacbc852899c1e62ab91614d249e3a0edd2e3628", + "grid-container-scrollbars-sizing-001.html": [ + "43b62a9316be8139cefa3f95fa6070907c8e24de", [ null, [ [ - "/css/css-grid/abspos/orthogonal-positioned-grid-items-005-ref.html", + "/css/css-grid/reference/grid-container-scrollbars-sizing-001-ref.html", "==" ] ], {} ] ], - "orthogonal-positioned-grid-items-006.html": [ - "00930da29806e6103fb846f9698ab002385733b7", + "grid-container-scrollbars-sizing-002.html": [ + "99cc5ee771d32047586268a4fbc7e9b6e3e22277", [ null, [ [ - "/css/css-grid/abspos/orthogonal-positioned-grid-items-006-ref.html", + "/css/css-grid/reference/grid-container-scrollbars-sizing-002-ref.html", "==" ] ], {} ] ], - "orthogonal-positioned-grid-items-007.html": [ - "a663f0fdb7c0909be13a3e7afdb9c0bf62d9cb16", + "grid-display-grid-001.html": [ + "3599aa960416f07ed63734b8ff959d997f74d1b9", [ null, [ [ - "/css/css-grid/abspos/orthogonal-positioned-grid-items-007-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "orthogonal-positioned-grid-items-008.html": [ - "fab723d18858b7938a512b62256fa2fae859c594", + "grid-display-inline-grid-001.html": [ + "30104e4220b0f8f2526d4e5a2cf5cd308b225440", [ null, [ [ - "/css/css-grid/abspos/orthogonal-positioned-grid-items-008-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "orthogonal-positioned-grid-items-009.html": [ - "dd1849e988cc650d8049132a87735c4e906f2d61", + "grid-first-letter-001.html": [ + "66eb427cfb95e5ba8f898d9f7afb7aa30f7e924a", [ null, [ [ - "/css/css-grid/abspos/orthogonal-positioned-grid-items-009-ref.html", + "/css/css-grid/reference/grid-text-green-margin-no-collapse-ref.html", "==" ] ], {} ] ], - "orthogonal-positioned-grid-items-010.html": [ - "b1d5353770eb7046b51ef6c8019d367437977a91", + "grid-first-letter-002.html": [ + "27aa0256dacd56d219ea9cfe372c50a13a7d3d6d", [ null, [ [ - "/css/css-grid/abspos/orthogonal-positioned-grid-items-009-ref.html", + "/css/css-grid/reference/grid-text-green-margin-no-collapse-ref.html", "==" ] ], {} ] ], - "orthogonal-positioned-grid-items-011.html": [ - "c0772d46abdc21bb33b52b2dad90cc5586f0aa4c", + "grid-first-letter-003.html": [ + "12b88c3115ba3e20befdb880ffb226a59306e940", [ null, [ [ - "/css/css-grid/abspos/orthogonal-positioned-grid-items-011-ref.html", + "/css/css-grid/reference/grid-first-letter-green-margin-no-collapse-ref.html", "==" ] ], {} ] ], - "orthogonal-positioned-grid-items-012.html": [ - "8e29b822ab94f431cba1831371b577731302f868", + "grid-first-line-001.html": [ + "9f154eee271608b1a3898fca106433114616a98e", [ null, [ [ - "/css/css-grid/abspos/orthogonal-positioned-grid-items-012-ref.html", + "/css/css-grid/reference/grid-text-green-margin-no-collapse-ref.html", "==" ] ], {} ] ], - "orthogonal-positioned-grid-items-013.html": [ - "b78f706fd83a2a81f8266b8e70899aa6d30d7da0", + "grid-first-line-002.html": [ + "ea87c875fa1d7d1152089ab3b963591b4dc62e3d", [ null, [ [ - "/css/css-grid/abspos/orthogonal-positioned-grid-items-013-ref.html", + "/css/css-grid/reference/grid-text-green-margin-no-collapse-ref.html", "==" ] ], {} ] ], - "orthogonal-positioned-grid-items-014.html": [ - "37d643b9e8435c4fd4a47a477fe37579af31cc63", + "grid-first-line-003.html": [ + "47f727de150c871197978893223efdc18efb0571", [ null, [ [ - "/css/css-grid/abspos/orthogonal-positioned-grid-items-014-ref.html", + "/css/css-grid/reference/grid-text-green-margin-no-collapse-ref.html", "==" ] ], {} ] ], - "orthogonal-positioned-grid-items-015.html": [ - "a1da3f6f3fa16e4d5e7737a72d2dba4326c80e8c", + "grid-float-001.html": [ + "521a3bd6cd7a5526c0c656a0696bdf54375acabb", [ null, [ [ - "/css/css-grid/abspos/orthogonal-positioned-grid-items-015-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "orthogonal-positioned-grid-items-016.html": [ - "06aedf3d2daa0143711a0180fd3b4f10d216d5fe", + "grid-floats-no-intrude-001.html": [ + "31eab4ba698a9f2c65d10aaa47fc853aceba6f0b", [ null, [ [ - "/css/css-grid/abspos/orthogonal-positioned-grid-items-016-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "orthogonal-positioned-grid-items-017.html": [ - "f0f91ec321de218e3615750b3fbc4f9b28408e08", + "grid-floats-no-intrude-002.html": [ + "9c26e021050597761a8db26c8a0e71429e1323e7", [ null, [ [ - "/css/css-grid/abspos/orthogonal-positioned-grid-items-017-ref.html", + "/css/css-grid/grid-model/grid-floats-no-intrude-002-ref.html", "==" ] ], {} ] ], - "positioned-grid-descendants-017.html": [ - "e1c23a2a0fef274ef56cb1971363e48abb2d3ec5", + "grid-inline-first-letter-001.html": [ + "bc62c1770d2ba46644aed25b26d3955d6745d0ea", [ - "css/css-grid/abspos/positioned-grid-descendants-017.html", + null, [ [ - "/css/css-grid/abspos/positioned-grid-descendants-017-ref.html", + "/css/css-grid/reference/grid-text-green-margin-no-collapse-ref.html", "==" ] ], {} ] ], - "positioned-grid-items-001.html": [ - "48dee4bfc093881c00f7b8419bf2d71e7b406cb2", + "grid-inline-first-letter-002.html": [ + "afdc0de9a447296fff0252a4dd06fd8466a0bf90", [ null, [ [ - "/css/css-grid/abspos/positioned-grid-items-001-ref.html", + "/css/css-grid/reference/grid-text-green-margin-no-collapse-ref.html", "==" ] ], {} ] ], - "positioned-grid-items-002.html": [ - "54c40b69e552051d718be5f224e92c581a136ea4", + "grid-inline-first-letter-003.html": [ + "eea15ab585c6764a57c595448d65faf06d09994d", [ null, [ [ - "/css/css-grid/abspos/positioned-grid-items-001-ref.html", + "/css/css-grid/reference/grid-first-letter-green-margin-no-collapse-ref.html", "==" ] ], {} ] ], - "positioned-grid-items-003.html": [ - "09583f4903dcd64984071465a5fff25afb1e432a", + "grid-inline-first-line-001.html": [ + "2df3d559c97d2616d2311156f160639c6e3be360", [ null, [ [ - "/css/css-grid/abspos/positioned-grid-items-001-ref.html", + "/css/css-grid/reference/grid-text-green-margin-no-collapse-ref.html", "==" ] ], {} ] ], - "positioned-grid-items-004.html": [ - "525fe057164f4ddd9d324871f75c750eae55955e", + "grid-inline-first-line-002.html": [ + "efdee52d3c966d83e8871bc36d415cb2eca5e3aa", [ null, [ [ - "/css/css-grid/abspos/positioned-grid-items-001-ref.html", + "/css/css-grid/reference/grid-text-green-margin-no-collapse-ref.html", "==" ] ], {} ] ], - "positioned-grid-items-005.html": [ - "9767714c04511782468fa716639e96b722892940", + "grid-inline-first-line-003.html": [ + "c76a7f430f979791e358191554c898e2f0fa6819", [ null, [ [ - "/css/css-grid/abspos/positioned-grid-items-005-ref.html", + "/css/css-grid/reference/grid-text-green-margin-no-collapse-ref.html", "==" ] ], {} ] ], - "positioned-grid-items-006.html": [ - "5ae2f2cd36d4097e9d86a322e0bcd04b66d84de2", + "grid-inline-float-001.html": [ + "8222897e4f11e8e8f8747d0e0278022e4d7745c9", [ null, [ [ - "/css/css-grid/abspos/positioned-grid-items-006-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "positioned-grid-items-007.html": [ - "cf17b29746d093153781f68464fffb2013cde5bc", + "grid-inline-floats-no-intrude-001.html": [ + "b15aabab06a93edb136f32582f51189a1bc15905", [ null, [ [ - "/css/css-grid/abspos/positioned-grid-items-007-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "positioned-grid-items-008.html": [ - "88d9572ed7df79d9fa5137bbbc245a80d3e3cd6b", + "grid-inline-margins-no-collapse-001.html": [ + "4260fe89f9ab792e31cd9c063c18528d128ff5bc", [ null, [ [ - "/css/css-grid/abspos/positioned-grid-items-008-ref.html", + "/css/css-grid/reference/grid-text-green-margin-no-collapse-ref.html", "==" ] ], {} ] ], - "positioned-grid-items-009.html": [ - "bdfd41d8b297a67a4a95caadd470935d16184cbb", + "grid-inline-multicol-001.html": [ + "3e51b16f5cbfa092421874d54ace3d9718407518", [ null, [ [ - "/css/css-grid/abspos/positioned-grid-items-009-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "positioned-grid-items-010.html": [ - "676deceb40fb933563a3bfb1ea81b7f5f768d850", + "grid-inline-vertical-align-001.html": [ + "7dbf11c7aee7cf7022d18b517587b31fdef433de", [ null, [ [ - "/css/css-grid/abspos/positioned-grid-items-009-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "positioned-grid-items-011.html": [ - "e13c39837e49c455995801031146a80aab2f679e", + "grid-layout-stale-001.html": [ + "bb81546678cea67020c2f46a470098d6454981d9", [ null, [ [ - "/css/css-grid/abspos/positioned-grid-items-011-ref.html", + "/css/css-grid/grid-model/reference/grid-layout-stale-001-ref.html", "==" ] ], {} ] ], - "positioned-grid-items-012.html": [ - "c9ff571653532777974ee3da2971d47e3789643d", + "grid-layout-stale-002.html": [ + "ea11cd5c5cb5e869493adb908892c3b8f8d7c35d", [ null, [ [ - "/css/css-grid/abspos/positioned-grid-items-012-ref.html", + "/css/css-grid/grid-model/reference/grid-layout-stale-002-ref.html", "==" ] ], {} ] ], - "positioned-grid-items-013.html": [ - "2bad6861b24ff8ed20750539f2da51df9ec3b09a", + "grid-margins-no-collapse-001.html": [ + "764cca9ced0077a7376b506f3ef8ca39d8072202", [ null, [ [ - "/css/css-grid/abspos/positioned-grid-items-013-ref.html", + "/css/css-grid/reference/grid-text-green-margin-no-collapse-ref.html", "==" ] ], {} ] ], - "positioned-grid-items-014.html": [ - "aef497d541b2855b45fa9c2da6fe0af9fe7226ba", + "grid-margins-no-collapse-002.html": [ + "f644a6fb53c970f723019e2cc0399f63585f0509", [ null, [ [ - "/css/css-grid/abspos/positioned-grid-items-014-ref.html", + "/css/css-grid/grid-model/grid-margins-no-collapse-002-ref.html", "==" ] ], {} ] ], - "positioned-grid-items-015.html": [ - "4de8be1a86a04778f0bd71a634f8044a459ed369", + "grid-multicol-001.html": [ + "553a33e6a3417557bc6fdb1f34375c4117a2e04f", [ null, [ [ - "/css/css-grid/abspos/positioned-grid-items-015-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "positioned-grid-items-016.html": [ - "bc3ac50d2b74ee5f54cecffe152a63e3a7494653", + "grid-overflow-padding-001.html": [ + "6c4a71031f1effd14c7106616cd94d1a4dd21665", [ null, [ [ - "/css/css-grid/abspos/positioned-grid-items-016-ref.html", + "/css/css-grid/grid-model/reference/100x100-grey-box-with-scrollbars.html", "==" ] ], {} ] ], - "positioned-grid-items-017.html": [ - "115abf49710b32454011d6c3981c88634a7c4aa5", + "grid-overflow-padding-002.html": [ + "88bce26a9823b61084cc4d128c77adb95337a742", [ null, [ [ - "/css/css-grid/abspos/positioned-grid-items-017-ref.html", + "/css/css-grid/grid-model/reference/100x100-grey-box-with-scrollbars.html", "==" ] ], {} ] ], - "positioned-grid-items-018.html": [ - "0c9d21642ef828911c04d937c48052bf297baaf3", + "grid-vertical-align-001.html": [ + "3536b3a8a04720a5f93a700064f9eabb901fe2a2", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] - ], - "positioned-grid-items-019.html": [ - "b0aeac3a1dcaa6637a0e20481e6029ca2354c9e6", + ] + }, + "grid-relayout-with-nested-grid.html": [ + "a898affa3a2944aa870258e448b53dc06269f26a", + [ + null, [ - "css/css-grid/abspos/positioned-grid-items-019.html", [ - [ - "/css/css-grid/abspos/positioned-grid-items-019-ref.html", - "==" - ] - ], - {} - ] - ], - "positioned-grid-items-020.html": [ - "baddf0bed62feb28921a56bf8565a071921801fd", + "/css/css-grid/grid-relayout-with-nested-grid-ref.html", + "==" + ] + ], + {} + ] + ], + "grid-with-aspect-ratio-uses-content-box-height-for-track-sizing.html": [ + "45e527dd44ae89bb42e87a15ccb6ae62c0a3f918", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "positioned-grid-items-021.html": [ - "1e3d89de6ca16d21bb9f1437f6f49b5ae25e7d68", + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "grid-with-content-dynamic-display-001.html": [ + "e9f121b000202f00e81aff0debd3d4b799d616b9", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "positioned-grid-items-022.html": [ - "df35b546f8fa9cd720b781d6d429a3322217154b", + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "grid-with-content-dynamic-display-002.html": [ + "02f536344d86f9572bcf2a095dcdcc4cb56181fa", + [ + null, [ - "css/css-grid/abspos/positioned-grid-items-022.html", [ - [ - "/css/css-grid/abspos/positioned-grid-items-022-ref.html", - "==" - ] - ], - {} - ] - ], - "positioned-grid-items-023.html": [ - "a30f20e33edf8bc477839157d2aad02815aea9a2", + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "grid-with-dynamic-img.html": [ + "ff7d2b8069c74e43ec10e72d4709c661e7874d97", + [ + null, [ - "css/css-grid/abspos/positioned-grid-items-023.html", [ - [ - "/css/css-grid/abspos/positioned-grid-items-023-ref.html", - "==" - ] - ], - {} - ] - ], - "positioned-grid-items-024.html": [ - "b214787026abe911d314128754b39dd86e181e12", + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "grid-with-orthogonal-child-within-flexbox.html": [ + "a0fc9155f06fad9046966b8c00c5e6fd8c050162", + [ + null, [ - "css/css-grid/abspos/positioned-grid-items-024.html", [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "positioned-grid-items-025.html": [ - "d4c1b01a53d9356c209f32aa2d873f933d4230ae", + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "grid-within-flexbox-definite-change.html": [ + "03b3e67b24ab329ebf75a2c74b1b7cf46b3a2d0d", + [ + null, [ - null, [ - [ - "/css/css-grid/abspos/positioned-grid-items-025-ref.html", - "==" - ] - ], - {} - ] - ], - "positioned-grid-items-negative-indices-001.html": [ - "f723b2486c14bf993bfaf8bf4639f79fbac18e97", + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "grid-within-flexbox-indefinite.html": [ + "2724355f0b5936203c24f919e495c4bf4a11badb", + [ + null, [ - null, [ - [ - "/css/css-grid/abspos/positioned-grid-items-negative-indices-001-ref.html", - "==" - ] - ], - {} - ] - ], - "positioned-grid-items-negative-indices-002.html": [ - "4a023e1c62de988a0d36e5333becbf6fb3defef4", + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "implicit-grids": { + "grid-support-grid-auto-columns-rows-001.html": [ + "e61ced340c610401448bdc0c636a835708fa80b9", [ null, [ [ - "/css/css-grid/abspos/positioned-grid-items-negative-indices-002-ref.html", + "/css/css-grid/reference/grid-support-grid-auto-columns-rows-001-ref.html", "==" ] ], {} ] ], - "positioned-grid-items-negative-indices-003.html": [ - "099dd9ca068d0d7bea479430a6c8e86d73f00a68", + "grid-support-grid-auto-columns-rows-002.html": [ + "2e90b460194568752c09ff94fd834deb08606fe4", [ null, [ [ - "/css/css-grid/abspos/positioned-grid-items-negative-indices-003-ref.html", + "/css/css-grid/reference/grid-support-grid-auto-columns-rows-002-ref.html", "==" ] ], {} ] ], - "positioned-grid-items-sizing-001.html": [ - "7fb303c0dd0df39d614f8bee8bd003494fcd233c", + "grid-support-grid-auto-columns-rows-003.html": [ + "452eb494b73e43a263f6f8b115338231bf5050a3", [ null, [ [ - "/css/css-grid/abspos/positioned-grid-items-sizing-001-ref.html", + "/css/css-grid/reference/grid-support-grid-auto-columns-rows-003-ref.html", "==" ] ], @@ -189134,1104 +188195,1733 @@ ] ] }, - "alignment": { - "grid-align-baseline-005.html": [ - "c217a3b6de67bf78bd5d9f119ae1a31b0b73b939", + "layout-algorithm": { + "auto-margins-ignored-during-track-sizing-001.html": [ + "2a23b1bd2031e2a3cfc104a90f70ab6c38d2fe64", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-grid/layout-algorithm/references/auto-margins-ignored-during-track-sizing-001-ref.html", "==" ] ], {} ] ], - "grid-baseline-001.html": [ - "ef8c0e4d3403f6aab952ae844d84490d7e569055", + "flex-and-intrinsic-sizes-002.html": [ + "6b2df4e572094d424833e3a342431b11d7f4dc4a", [ null, [ [ - "/css/css-grid/alignment/references/grid-baseline-001-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "grid-baseline-002.html": [ - "b52eeff27e51e3136c4425e7761838ab8ceecc9f", + "flex-sizing-rows-indefinite-height.html": [ + "6625a321d38af2a5d050009661af7cbdd0ff4ab3", [ null, [ [ - "/css/css-grid/alignment/references/grid-baseline-002-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 1 + ], + [ + 0, + 4309 + ] + ] + ] + ] + } ] ], - "grid-baseline-003.html": [ - "bd411abed91841b00a518e12cbd24a2bb60a4f57", + "flex-tracks-with-fractional-size.html": [ + "994149faa65f3035c9da8f849e086394de54d770", [ null, [ [ - "/css/css-grid/alignment/references/grid-baseline-003-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "grid-baseline-align-001.html": [ - "e32031779fc30ca54e7283f2317b6e9ae5b7d105", + "grid-as-flex-item-should-not-shrink-to-fit-001.html": [ + "e0665d56a1a55ecd41a9ae384e822c8662740d39", [ null, [ [ - "/css/css-grid/alignment/references/grid-baseline-align-001-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "grid-baseline-align-cycles-001.html": [ - "b6b04144ed9e2196da98b69310f1e62c6c1ef966", + "grid-as-flex-item-should-not-shrink-to-fit-002.html": [ + "4ddafecb849aae77d6637939bd52b958392d44ab", [ null, [ [ - "/css/css-grid/alignment/references/grid-baseline-align-cycles-001-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "grid-baseline-justify-001.html": [ - "171fcd3fcde8dd0b7b9e866569cf4d29449ece44", + "grid-as-flex-item-should-not-shrink-to-fit-003.html": [ + "73d204490ac82ec1a8ef32adb0c1480e534260dc", [ null, [ [ - "/css/css-grid/alignment/references/grid-baseline-justify-001-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "grid-block-axis-alignment-auto-margins-008.html": [ - "9b489ac11940b14e45fb2c4a03219f605ffe0e47", + "grid-as-flex-item-should-not-shrink-to-fit-004.html": [ + "c3f9d9c0d161e1dc6ff0b8d7dc19638e0c28fd15", [ null, [ [ - "/css/css-grid/reference/grid-block-axis-alignment-auto-margins-008-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "grid-container-auto-margins-scrollbars-001.html": [ - "51c7b18e949f647adb8805ddff6ee5dff110935b", + "grid-as-flex-item-should-not-shrink-to-fit-005.html": [ + "4443314950835c4586f2edd805b47a4074f36c7b", [ null, [ [ - "/css/css-grid/reference/grid-container-auto-margins-scrollbars-001-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "grid-content-distribution-001.html": [ - "7b53a2897b83d20ff7cd12db85f576830953b56e", + "grid-as-flex-item-should-not-shrink-to-fit-006.html": [ + "7be46cd3b682af613dd9bd0a1daf4a293ba80619", [ null, [ [ - "/css/reference/ref-filled-green-200px-square.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "grid-content-distribution-002.html": [ - "194934bb93e5fdfdc57f573a6ef6235c19a99ed9", + "grid-as-flex-item-should-not-shrink-to-fit-007.html": [ + "ab0e591b8fc39a9b08018effb488a34b324fcafa", [ null, [ [ - "/css/reference/ref-filled-green-200px-square.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "grid-content-distribution-003.html": [ - "ed6e32263906647ee56f2003a64412846e593436", + "grid-as-flex-item-should-not-shrink-to-fit-008.html": [ + "183a607f53a99b3172cc844828684043bd5555de", [ null, [ [ - "/css/reference/ref-filled-green-200px-square.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "grid-content-distribution-004.html": [ - "419d0fb1bd3064e1ff39c8eb204fccde696f5a05", + "grid-find-fr-size-restart-algorithm.html": [ + "fc2ebeb10308debd15f9b4dc05a683df42b725a8", [ null, [ [ - "/css/reference/ref-filled-green-200px-square.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "grid-content-distribution-005.html": [ - "2830aecab6bf3fef7866cbcbe7af2a048698dbf7", + "grid-intrinsic-size-dynamic-block-size.html": [ + "4db5080f93ce9c6292e008d8fefb0d4a1599123d", [ null, [ [ - "/css/reference/ref-filled-green-200px-square.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "grid-content-distribution-006.html": [ - "61cfe2b68ed333799b49b1b602db0860e8606470", + "grid-layout-free-space-unit.html": [ + "10649a963988bb7060aba3a477fe69d443f0a0ea", [ null, [ [ - "/css/reference/ref-filled-green-200px-square.html", + "/css/css-grid/reference/grid-layout-basic-ref.html", "==" ] ], {} ] ], - "grid-content-distribution-007.html": [ - "d4dce5dc95a97423e1434f493fd235c42b23625c", + "grid-percent-cols-filled-shrinkwrap-001.html": [ + "8402238f2bbe3c4b9249cc9e2a51df99786ae281", [ null, [ [ - "/css/reference/ref-filled-green-200px-square.html", + "/css/css-grid/layout-algorithm/references/grid-percent-cols-filled-shrinkwrap-001-ref.html", "==" ] ], {} ] ], - "grid-content-distribution-008.html": [ - "3e381ec68b3bb0d2630f874fd2491619f46009dc", + "grid-percent-cols-spanned-shrinkwrap-001.html": [ + "ec84108cf105acdf26a3d6f89f6cdb37bc1007b0", [ null, [ [ - "/css/reference/ref-filled-green-200px-square.html", + "/css/css-grid/layout-algorithm/references/grid-percent-cols-spanned-shrinkwrap-001-ref.html", "==" ] ], {} ] ], - "grid-content-distribution-009.html": [ - "aa28a980b66052774b044c0a6f6c4adbfad9189f", + "grid-percent-rows-filled-shrinkwrap-001.html": [ + "a55c24f77dd5a7520cc4ac49e00e896d362d22da", [ null, [ [ - "/css/reference/ref-filled-green-200px-square.html", + "/css/css-grid/layout-algorithm/references/grid-percent-rows-filled-shrinkwrap-001-ref.html", "==" ] ], {} ] ], - "grid-content-distribution-010.html": [ - "cb08775cd24666ce28673cd51dfb3287933f32ce", + "grid-percent-rows-spanned-shrinkwrap-001.html": [ + "0c51f08f8207db9201427a5bafcf06be3b7f0720", [ null, [ [ - "/css/reference/ref-filled-green-200px-square.html", + "/css/css-grid/layout-algorithm/references/grid-percent-rows-spanned-shrinkwrap-001-ref.html", "==" ] ], {} ] ], - "grid-content-distribution-011.html": [ - "57eb3d0eac2c9931c6e468e697eb33fbc2da1635", + "grid-stretch-respects-min-size-001.html": [ + "29eca9dbc6f5738f7d6f929385453d64dcdf0aea", [ null, [ [ - "/css/reference/ref-filled-green-200px-square.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "grid-content-distribution-012.html": [ - "e45dbec8fce1595df1a8676d275aec8c80b75d56", + "grid-template-flexible-rerun-track-sizing.html": [ + "2db9d643478ff0737becf3a1a4b39705d73ae2b4", [ null, [ [ - "/css/reference/ref-filled-green-200px-square.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 1 + ], + [ + 0, + 4309 + ] + ] + ] + ] + } ] - ], - "grid-content-distribution-013.html": [ - "3e1df650fb1426296b1c46adbe2068202ecf7249", - [ - null, - [ + ] + }, + "masonry": { + "tentative": { + "alignment": { + "masonry-align-content-001.html": [ + "387ee9da5ebbbc523fda88e7f03e85055e4a8de0", [ - "/css/reference/ref-filled-green-200px-square.html", - "==" + null, + [ + [ + "/css/css-grid/masonry/tentative/alignment/masonry-align-content-001-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "grid-content-distribution-014.html": [ - "423aad172bc960952545c5f185e4a2111854b7c1", - [ - null, - [ + "masonry-align-content-002.html": [ + "be7e7a813eb8e45add2a97b8680b8f64036eb7f4", [ - "/css/reference/ref-filled-green-200px-square.html", - "==" + null, + [ + [ + "/css/css-grid/masonry/tentative/alignment/masonry-align-content-002-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "grid-content-distribution-015.html": [ - "ef4c857db6686d79590614600a4dffdd90fa97fc", - [ - null, - [ + "masonry-align-content-003.html": [ + "818d7e2d84b50c8e15428e59e560a8afb725d4eb", [ - "/css/reference/ref-filled-green-200px-square.html", - "==" + null, + [ + [ + "/css/css-grid/masonry/tentative/alignment/masonry-align-content-003-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "grid-content-distribution-016.html": [ - "11a66915de5a088d9be061737533f83be12ac8d4", - [ - null, - [ + "masonry-align-content-004.html": [ + "747420ba465916276aeb245a2121d241d8cbf866", [ - "/css/reference/ref-filled-green-200px-square.html", - "==" + null, + [ + [ + "/css/css-grid/masonry/tentative/alignment/masonry-align-content-004-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "grid-content-distribution-017.html": [ - "9a490ad94839795abcea7f766e2921d2ae7918b8", - [ - null, - [ + "masonry-justify-content-001.html": [ + "36ecd4f3b30ed86572ddf3e4a835cbfcdaa8fb6f", [ - "/css/reference/ref-filled-green-300px-square.html", - "==" + null, + [ + [ + "/css/css-grid/masonry/tentative/alignment/masonry-justify-content-001-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "grid-content-distribution-018.html": [ - "1ba4f54aa461e4b5f74554b10d48a718ac2e4cfe", - [ - null, - [ + "masonry-justify-content-002.html": [ + "fc3696282c13002fa76fc8d6ccd8875c1a329541", [ - "/css/reference/ref-filled-green-200px-square.html", - "==" + null, + [ + [ + "/css/css-grid/masonry/tentative/alignment/masonry-justify-content-002-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "grid-content-distribution-019.html": [ - "49ca22eb24563610eff52ac651bf3b3fca2cd33b", - [ - null, - [ + "masonry-justify-content-003.html": [ + "e2e6ead819ad49de0d9ca0f2d644a32e544ed0c8", [ - "/css/reference/ref-filled-green-200px-square.html", - "==" + null, + [ + [ + "/css/css-grid/masonry/tentative/alignment/masonry-justify-content-003-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "grid-content-distribution-020.html": [ - "249f57d93fe8f161c443d69fe0ec327fb8282056", - [ - null, - [ + "masonry-justify-content-004.html": [ + "e309ef8870890db60dd556e85cc894400a96694e", [ - "/css/reference/ref-filled-green-300px-square.html", - "==" + null, + [ + [ + "/css/css-grid/masonry/tentative/alignment/masonry-justify-content-004-ref.html", + "==" + ] + ], + {} ] - ], - {} - ] - ], - "grid-content-distribution-021.html": [ - "6a5469fc8c79e8849ad052d974bfa55bb1b9c2f9", - [ - null, - [ + ] + }, + "baseline": { + "masonry-grid-item-content-baseline-001.html": [ + "60d11653b3f231a07ad7aa493a0effeae7720671", [ - "/css/reference/ref-filled-green-200px-square.html", - "==" + null, + [ + [ + "/css/css-grid/masonry/tentative/baseline/masonry-grid-item-content-baseline-001-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "grid-content-distribution-022.html": [ - "15a69c110257633bacc0f58b0360a932ee02b2f0", - [ - null, - [ + "masonry-grid-item-self-baseline-001.html": [ + "bb486d983d966476f24d142675c77f7907300705", [ - "/css/reference/ref-filled-green-300px-square.html", - "==" + null, + [ + [ + "/css/css-grid/masonry/tentative/baseline/masonry-grid-item-self-baseline-001-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "grid-content-distribution-023.html": [ - "f5d07b764873a66c83d04c56d2629dd68369e599", - [ - null, - [ + "masonry-grid-item-self-baseline-002a.html": [ + "6708e58332808b1bba0f20db46cfa062270956b8", [ - "/css/reference/ref-filled-green-200px-square.html", - "==" + null, + [ + [ + "/css/css-grid/masonry/tentative/baseline/masonry-grid-item-self-baseline-002a-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "grid-content-distribution-024.html": [ - "1b6932bca56477666124a965fad25b43c43deb3f", - [ - null, - [ + "masonry-grid-item-self-baseline-002b.html": [ + "34911b7c9fa632da919b769e015148e2b8c4c488", [ - "/css/reference/ref-filled-green-200px-square.html", - "==" + null, + [ + [ + "/css/css-grid/masonry/tentative/baseline/masonry-grid-item-self-baseline-002b-ref.html", + "==" + ] + ], + {} ] - ], - {} - ] - ], - "grid-content-distribution-025.html": [ - "f229a56f4fb1e24bfa94f86b4cafd624d6a61788", - [ - null, - [ + ] + }, + "fragmentation": { + "masonry-fragmentation-001.html": [ + "24a5b290610ba71c084dfbab1370d119b00a569a", [ - "/css/reference/ref-filled-green-300px-square.html", - "==" + null, + [ + [ + "/css/css-grid/masonry/tentative/fragmentation/masonry-fragmentation-001-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "grid-content-distribution-026.html": [ - "b56d6384379141e9deb8dddae9d59a4beaf3a614", - [ - null, - [ + "masonry-fragmentation-002.html": [ + "76a0540fa92f1715de1a1ff5a67671548d4f15b1", [ - "/css/reference/ref-filled-green-100px-square-only.html", - "==" + null, + [ + [ + "/css/css-grid/masonry/tentative/fragmentation/masonry-fragmentation-002-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "grid-content-distribution-027.html": [ - "f92ed520d0368d905146aae0da6fd66d9a7a082e", - [ - null, - [ + "masonry-fragmentation-003.html": [ + "7252fc169e2eca745eaad2b91bdb8a9801da242a", [ - "/css/reference/ref-filled-green-100px-square-only.html", - "==" + null, + [ + [ + "/css/css-grid/masonry/tentative/fragmentation/masonry-fragmentation-003-ref.html", + "==" + ] + ], + {} ] - ], - {} - ] - ], - "grid-content-distribution-028.html": [ - "216b05a4d6c89dbe888caaeeff45818dec1ca537", - [ - null, - [ + ] + }, + "gap": { + "masonry-gap-001.html": [ + "628c00135d867debb9d1d904a1426a42be7329e4", [ - "/css/reference/ref-filled-green-100px-square-only.html", - "==" + null, + [ + [ + "/css/css-grid/masonry/tentative/gap/masonry-gap-001-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "grid-content-distribution-with-collapsed-tracks-001.html": [ - "ebd169cf5913112ef7c9c1fa02cdb2115ceef605", + "masonry-gap-002.html": [ + "6dae0a1a7296dd52c48e5b53d8a903aa2ff4d5c4", + [ + null, + [ + [ + "/css/css-grid/masonry/tentative/gap/masonry-gap-001-ref.html", + "==" + ] + ], + {} + ] + ] + }, + "grid-placement": { + "masonry-grid-placement-named-lines-001.html": [ + "8bb78e307d39219b11677f029bf75ca7dde4cd07", + [ + null, + [ + [ + "/css/css-grid/masonry/tentative/grid-placement/masonry-grid-placement-named-lines-001-ref.html", + "==" + ] + ], + {} + ] + ], + "masonry-grid-placement-named-lines-002.html": [ + "4e51f09f94dd20d5d4902ea3c4848b9b905ed946", + [ + null, + [ + [ + "/css/css-grid/masonry/tentative/grid-placement/masonry-grid-placement-named-lines-002-ref.html", + "==" + ] + ], + {} + ] + ] + }, + "intrinsic-sizing": { + "masonry-intrinsic-sizing-cols-001.html": [ + "ead5ad98086170265c3e5877049e7ed3effd952d", + [ + null, + [ + [ + "/css/css-grid/masonry/tentative/intrinsic-sizing/masonry-intrinsic-sizing-cols-001-ref.html", + "==" + ] + ], + {} + ] + ], + "masonry-intrinsic-sizing-cols-002.html": [ + "03e8617f248939a48ead8d69d0b8f181298372f9", + [ + null, + [ + [ + "/css/css-grid/masonry/tentative/intrinsic-sizing/masonry-intrinsic-sizing-cols-002-ref.html", + "==" + ] + ], + {} + ] + ], + "masonry-intrinsic-sizing-cols-003.html": [ + "9b03ee44ab1caab1413f29167d1cc47e72a23902", + [ + null, + [ + [ + "/css/css-grid/masonry/tentative/intrinsic-sizing/masonry-intrinsic-sizing-cols-003-ref.html", + "==" + ] + ], + {} + ] + ], + "masonry-intrinsic-sizing-cols-004.html": [ + "3c2f1a20e11e95ed0a8d6975e823fbb857bfa971", + [ + null, + [ + [ + "/css/css-grid/masonry/tentative/intrinsic-sizing/masonry-intrinsic-sizing-cols-004-ref.html", + "==" + ] + ], + {} + ] + ], + "masonry-intrinsic-sizing-cols-005.html": [ + "a4edd6151f654b2c72955469f5075589f29da3ee", + [ + null, + [ + [ + "/css/css-grid/masonry/tentative/intrinsic-sizing/masonry-intrinsic-sizing-cols-005-ref.html", + "==" + ] + ], + {} + ] + ], + "masonry-intrinsic-sizing-cols-006.html": [ + "e980d84b8e92d180cd21752d416fba6f0e227963", + [ + null, + [ + [ + "/css/css-grid/masonry/tentative/intrinsic-sizing/masonry-intrinsic-sizing-cols-006-ref.html", + "==" + ] + ], + {} + ] + ], + "masonry-intrinsic-sizing-cols-007.html": [ + "e00273f6ed866859e840424e55b2a57ab446b6a5", + [ + null, + [ + [ + "/css/css-grid/masonry/tentative/intrinsic-sizing/masonry-intrinsic-sizing-cols-007-ref.html", + "==" + ] + ], + {} + ] + ], + "masonry-intrinsic-sizing-rows-001.html": [ + "45b5de5d0c837804c9d85065262f9afeae2aa292", + [ + null, + [ + [ + "/css/css-grid/masonry/tentative/intrinsic-sizing/masonry-intrinsic-sizing-rows-001-ref.html", + "==" + ] + ], + {} + ] + ], + "masonry-intrinsic-sizing-rows-002.html": [ + "5faf63c2c244b567bc03a176739ee254cd75bbd9", + [ + null, + [ + [ + "/css/css-grid/masonry/tentative/intrinsic-sizing/masonry-intrinsic-sizing-rows-002-ref.html", + "==" + ] + ], + {} + ] + ], + "masonry-intrinsic-sizing-rows-003.html": [ + "5e0a150ef1f089e5678e2a806ddfec3a385d5e61", + [ + null, + [ + [ + "/css/css-grid/masonry/tentative/intrinsic-sizing/masonry-intrinsic-sizing-rows-003-ref.html", + "==" + ] + ], + {} + ] + ], + "masonry-intrinsic-sizing-rows-004.html": [ + "6bacac5255dbb2747877570f1adbf562757b1387", + [ + null, + [ + [ + "/css/css-grid/masonry/tentative/intrinsic-sizing/masonry-intrinsic-sizing-rows-004-ref.html", + "==" + ] + ], + {} + ] + ], + "masonry-intrinsic-sizing-rows-005.html": [ + "4c8e4373202eac737da33b13b954c2936fa071bb", + [ + null, + [ + [ + "/css/css-grid/masonry/tentative/intrinsic-sizing/masonry-intrinsic-sizing-rows-005-ref.html", + "==" + ] + ], + {} + ] + ], + "masonry-intrinsic-sizing-rows-006.html": [ + "0639e395eaef2f759fef77be8148d40a9dcf3bcd", + [ + null, + [ + [ + "/css/css-grid/masonry/tentative/intrinsic-sizing/masonry-intrinsic-sizing-rows-006-ref.html", + "==" + ] + ], + {} + ] + ] + }, + "item-placement": { + "masonry-columns-item-placement-auto-flow-next-001.html": [ + "eacc943bf77c5db41ad144e45e6bc4545e7cf96f", + [ + null, + [ + [ + "/css/css-grid/masonry/tentative/item-placement/masonry-columns-item-placement-auto-flow-next-001-ref.html", + "==" + ] + ], + {} + ] + ], + "masonry-item-placement-001.html": [ + "2438df8bac8f31bbf259b83f745d9049b979744a", + [ + null, + [ + [ + "/css/css-grid/masonry/tentative/item-placement/masonry-item-placement-001-ref.html", + "==" + ] + ], + {} + ] + ], + "masonry-item-placement-002.html": [ + "8833cdfcfc5e894c17cb67a5aad7a0fc6fecb47b", + [ + null, + [ + [ + "/css/css-grid/masonry/tentative/item-placement/masonry-item-placement-002-ref.html", + "==" + ] + ], + {} + ] + ], + "masonry-item-placement-003.html": [ + "bde2fa0e664055066effe3a536d1515db04f185a", + [ + null, + [ + [ + "/css/css-grid/masonry/tentative/item-placement/masonry-item-placement-003-ref.html", + "==" + ] + ], + {} + ] + ], + "masonry-item-placement-004.html": [ + "52867cd4a213530e8cb9640b20371a7f35bbaac8", + [ + null, + [ + [ + "/css/css-grid/masonry/tentative/item-placement/masonry-item-placement-004-ref.html", + "==" + ] + ], + {} + ] + ], + "masonry-item-placement-005.html": [ + "7d4993fb3a61a015af6098e1f79d7e5f94d1b17e", + [ + null, + [ + [ + "/css/css-grid/masonry/tentative/item-placement/masonry-item-placement-005-ref.html", + "==" + ] + ], + {} + ] + ], + "masonry-item-placement-006.html": [ + "467e313d339776a90d994459991724b75210e1b9", + [ + null, + [ + [ + "/css/css-grid/masonry/tentative/item-placement/masonry-item-placement-006-ref.html", + "==" + ] + ], + {} + ] + ], + "masonry-item-placement-007.html": [ + "4c8053ba666b5c6ddc3b61f74a2233151414e4ff", + [ + null, + [ + [ + "/css/css-grid/masonry/tentative/item-placement/masonry-item-placement-007-ref.html", + "==" + ] + ], + {} + ] + ], + "masonry-item-placement-008.html": [ + "bdf651d77b4ba77e9393492e9546e2a163a1c288", + [ + null, + [ + [ + "/css/css-grid/masonry/tentative/item-placement/masonry-item-placement-008-ref.html", + "==" + ] + ], + {} + ] + ], + "masonry-rows-item-placement-auto-flow-next-001.html": [ + "c425490d2d8f464e9fae0a1777c4c8366cb283af", + [ + null, + [ + [ + "/css/css-grid/masonry/tentative/item-placement/masonry-rows-item-placement-auto-flow-next-001-ref.html", + "==" + ] + ], + {} + ] + ], + "masonry-rows-with-grid-width-changed.html": [ + "3a1c4cfa9c065425d8de17dba157663f6024711c", + [ + null, + [ + [ + "/css/css-grid/masonry/tentative/item-placement/masonry-rows-with-grid-width-changed-ref.html", + "==" + ] + ], + {} + ] + ] + }, + "masonry-columns-item-containing-block-is-grid-content-width.html": [ + "b5eb7f4984833c9003a527126015d53c084fc239", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "masonry-not-inhibited-001.html": [ + "1c912feb1fa2509fb620371188c46a68d88c2bda", + [ + null, + [ + [ + "/css/css-grid/masonry/tentative/masonry-not-inhibited-001-ref.html", + "==" + ] + ], + {} + ] + ], + "order": { + "masonry-order-001.html": [ + "37b3d01fb413354e77acb25b7d65530055c949e4", + [ + null, + [ + [ + "/css/css-grid/masonry/tentative/order/masonry-order-001-ref.html", + "==" + ] + ], + {} + ] + ], + "masonry-order-002.html": [ + "5ebdec27193a454e98fb54ea48508c2b26b3cfa8", + [ + null, + [ + [ + "/css/css-grid/masonry/tentative/order/masonry-order-002-ref.html", + "==" + ] + ], + {} + ] + ] + }, + "subgrid": { + "masonry-subgrid-001.html": [ + "c71ba68612e381c26f38bb5b76274c9536823514", + [ + null, + [ + [ + "/css/css-grid/masonry/tentative/subgrid/masonry-subgrid-001-ref.html", + "==" + ] + ], + {} + ] + ], + "masonry-subgrid-002.html": [ + "167f2d4496da2ed304cf6049cbbb4bf937b2c5d4", + [ + null, + [ + [ + "/css/css-grid/masonry/tentative/subgrid/masonry-subgrid-002-ref.html", + "==" + ] + ], + {} + ] + ] + }, + "track-sizing": { + "masonry-track-sizing-check-grid-height-on-resize.html": [ + "dbff19f28e1b00a18c7a34678b444a43e162d0c8", + [ + null, + [ + [ + "/css/css-grid/masonry/tentative/track-sizing/masonry-track-sizing-check-grid-height-on-resize-ref.html", + "==" + ] + ], + {} + ] + ], + "masonry-track-sizing-explicit-block.html": [ + "3cc98708fe9aec94293eb5bcb296f01d3a4a7508", + [ + null, + [ + [ + "/css/css-grid/masonry/tentative/track-sizing/masonry-track-sizing-explicit-block-ref.html", + "==" + ] + ], + {} + ] + ], + "masonry-track-sizing-overflow-left-side.html": [ + "cd1b78a47b6d2f9feed861a75ba19b4331c748a1", + [ + null, + [ + [ + "/css/css-grid/masonry/tentative/track-sizing/masonry-track-sizing-overflow-left-side-ref.html", + "==" + ] + ], + {} + ] + ], + "masonry-track-sizing-overflow-right-side.html": [ + "e4c17fd7b7793b23a80d15c4fa1440da21b5ecfb", + [ + null, + [ + [ + "/css/css-grid/masonry/tentative/track-sizing/masonry-track-sizing-overflow-right-side-ref.html", + "==" + ] + ], + {} + ] + ], + "masonry-track-sizing-span-row.html": [ + "475c27f1ebea5598c6e3fcec0e21d13b08bc9499", + [ + null, + [ + [ + "/css/css-grid/masonry/tentative/track-sizing/masonry-track-sizing-span-row-ref.html", + "==" + ] + ], + {} + ] + ] + } + } + }, + "min-size-auto-overflow-clip.html": [ + "3dfd2c18f51834d476f6501cddfa179fac07b4b1", + [ + null, + [ + [ + "/css/css-grid/min-size-auto-overflow-clip-ref.html", + "==" + ] + ], + {} + ] + ], + "nested-grid-item-block-size-001.html": [ + "e2892ecc3c656243f26e5512be9ac01e2cd4de36", + [ + null, + [ + [ + "/css/css-grid/nested-grid-item-block-size-001-ref.html", + "==" + ] + ], + {} + ] + ], + "placement": { + "grid-layout-grid-span.html": [ + "21aad99708c96942c196ada03beaded1d73a1078", [ null, [ [ - "/css/reference/ref-filled-green-200px-square.html", + "/css/css-grid/reference/grid-layout-basic-ref.html", "==" ] ], {} ] ], - "grid-content-distribution-with-collapsed-tracks-002.html": [ - "a48c377ef321b018742e3275f5c9fbc8f09663c7", + "grid-layout-lines-shorthands.html": [ + "756e08c44710a24c3dba94a20f05e45760a174f4", [ null, [ [ - "/css/reference/ref-filled-green-200px-square.html", + "/css/css-grid/reference/grid-layout-basic-ref.html", "==" ] ], {} ] ], - "grid-content-distribution-with-collapsed-tracks-003.html": [ - "25c03022a37613dbb6df341ed1edfcf718be48a8", + "grid-layout-lines.html": [ + "62bfc8d7bd6750cfe60ad78d987d159685bdb9cd", [ null, [ [ - "/css/reference/ref-filled-green-200px-square.html", + "/css/css-grid/reference/grid-layout-basic-ref.html", "==" ] ], {} ] ], - "grid-content-distribution-with-collapsed-tracks-004.html": [ - "a280a69871e1d26fac55a2d99608b31947e67f8a", + "grid-layout-placement-shorthands.html": [ + "be98679815040f1cad8fe27fb1e7a7f08818a575", [ null, [ [ - "/css/reference/ref-filled-green-200px-square.html", + "/css/css-grid/reference/grid-layout-basic-ref.html", "==" ] ], {} ] ], - "grid-content-distribution-with-collapsed-tracks-005.html": [ - "34d62116ed36617a043460b59a3ca1adabd85413", + "grid-placement-items-spanning-multiple-rows-001.html": [ + "de6398e324b93d58f54b449118feb8b0c69250af", [ null, [ [ - "/css/reference/ref-filled-green-200px-square.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "grid-content-distribution-with-collapsed-tracks-006.html": [ - "151d34d2bb409ab4ad857616dddf76335b0f9406", + "grid-placement-items-spanning-multiple-rows-002.html": [ + "f055340a3a3c014626700986aadcf1042b2b3fec", [ null, [ [ - "/css/reference/ref-filled-green-200px-square.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "grid-content-distribution-with-collapsed-tracks-007.html": [ - "061e93bae7a0560a3a709b3834d2c614e6922645", + "grid-placement-using-named-grid-lines-001.html": [ + "12fdd78204d6fba1679ba034e8a6ca75a00172df", [ null, [ [ - "/css/reference/ref-filled-green-200px-square.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "grid-content-distribution-with-collapsed-tracks-008.html": [ - "1b7135e70b325813974c76fd9824ecf1a853597e", + "grid-placement-using-named-grid-lines-002.html": [ + "625401d7cfd724a069f21a1ca9ea0790c1a26a4a", [ null, [ [ - "/css/reference/ref-filled-green-200px-square.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "grid-content-distribution-with-collapsed-tracks-009.html": [ - "0bc4adae76e4b089a25b35a3dacf1a5bba380225", + "grid-placement-using-named-grid-lines-003.html": [ + "31173e0a455a04156ca8755779d7a2ae4b24b103", [ null, [ [ - "/css/reference/ref-filled-green-200px-square.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "grid-content-distribution-with-collapsed-tracks-010.html": [ - "eccf0041c8159540a02e91b323101cdc7f4f099b", + "grid-placement-using-named-grid-lines-004.html": [ + "c33b1a9ee9ec7f972df72b8658bae53c8163fd5e", [ null, [ [ - "/css/reference/ref-filled-green-200px-square.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "grid-content-distribution-with-collapsed-tracks-011.html": [ - "fca4df588da8fe453ff9e17f20049d41be0d7b6d", + "grid-placement-using-named-grid-lines-005.html": [ + "20d9298955f692b2c42113a747ca52627f29788b", [ null, [ [ - "/css/reference/ref-filled-green-200px-square.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "grid-content-distribution-with-collapsed-tracks-012.html": [ - "4250c14126c1435e5a4fefc68820d4c305ab29c8", + "grid-placement-using-named-grid-lines-006.html": [ + "405858f73c5ab17b0a82167fe6399130ac1ddeba", [ null, [ [ - "/css/reference/ref-filled-green-200px-square.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "grid-content-distribution-with-collapsed-tracks-013.html": [ - "f20741e4a00ec5226cfa83ff65570ddf275278be", + "grid-placement-using-named-grid-lines-007.html": [ + "4e6c4cceb59ac8d371ee96779cc1947d77bfc597", [ null, [ [ - "/css/reference/ref-filled-green-200px-square.html", + "/css/reference/ref-filled-green-300px-square.html", "==" ] ], {} ] ], - "grid-content-distribution-with-collapsed-tracks-014.html": [ - "78d2477109b130163c15b7f661f46d3d1f867db2", + "grid-placement-using-named-grid-lines-008.html": [ + "6ee48448aec6cffb42ed5e99945bf8f7e305b8bc", [ null, [ [ - "/css/reference/ref-filled-green-200px-square.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "grid-content-distribution-with-collapsed-tracks-015.html": [ - "e8247e0419bfc6facc030e3c666d6bbe552bcad1", + "grid-placement-using-named-grid-lines-009.html": [ + "10cb140ebca87709da5d0305efc300b47be6aab0", [ null, [ [ - "/css/reference/ref-filled-green-200px-square.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "grid-content-distribution-with-collapsed-tracks-016.html": [ - "511961f34e5eebe8a2aea28a417bf7039b06eb67", + "grid-template-areas-must-keep-named-columns-order-001.html": [ + "8b0736b87f0362df78b9b56af4826c9fe3dd8304", [ null, [ [ - "/css/reference/ref-filled-green-300px-square.html", + "/css/css-grid/reference/grid-template-areas-must-keep-named-columns-order-001-ref.html", "==" ] ], {} ] - ], - "grid-content-distribution-with-collapsed-tracks-017.html": [ - "f587301599a675d0487d3765dfe4fa35f6c32203", + ] + }, + "relative-grandchild.html": [ + "9c1b7d54e1f568e13e656a3bc57a840cdc93bcf2", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "stretch-grid-item-button-overflow.html": [ + "0b86a7e9ac9ca874c3b4a3121cec61f3ec40a766", + [ + null, + [ + [ + "/css/css-grid/stretch-grid-item-button-overflow-ref.html", + "==" + ] + ], + {} + ] + ], + "stretch-grid-item-checkbox-input.html": [ + "c6a34a8288db1e034dfba0856ef0e4f9ec16d8f8", + [ + null, + [ + [ + "/css/css-grid/stretch-grid-item-checkbox-input-ref.html", + "==" + ] + ], + {} + ] + ], + "stretch-grid-item-radio-input.html": [ + "9ae9d7be040fe69a6b503b9c51b7d1e97ab1827a", + [ + null, + [ + [ + "/css/css-grid/stretch-grid-item-radio-input-ref.html", + "==" + ] + ], + {} + ] + ], + "stretch-grid-item-text-input-overflow.html": [ + "0814b3dcf058f4fba01ba6517480078469a492f7", + [ + null, + [ + [ + "/css/css-grid/stretch-grid-item-text-input-overflow-ref.html", + "==" + ] + ], + {} + ] + ], + "subgrid": { + "abs-pos-001.html": [ + "e524ec2d767c043516546733411d7e25e6eff05b", [ null, [ [ - "/css/reference/ref-filled-green-200px-square.html", + "/css/css-grid/subgrid/abs-pos-001-ref.html", "==" ] ], {} ] ], - "grid-content-distribution-with-collapsed-tracks-018.html": [ - "d91c1c5cab22c2a50e1b42d1a280e0f2180c2890", + "abs-pos-002.html": [ + "5d6833555eda6b06a2cc6497511130b1e6531576", [ null, [ [ - "/css/reference/ref-filled-green-200px-square.html", + "/css/css-grid/subgrid/abs-pos-002-ref.html", "==" ] ], {} ] ], - "grid-content-distribution-with-collapsed-tracks-019.html": [ - "7a09ce699d6ba88251a9b84448d392d3ed42db29", + "alignment-in-subgridded-axes-002.html": [ + "68f1b3d43c7af410b43226c7e869b1b1e673213a", [ null, [ [ - "/css/reference/ref-filled-green-300px-square.html", + "/css/css-grid/subgrid/alignment-in-subgridded-axes-002-ref.html", "==" ] ], {} ] ], - "grid-content-distribution-with-collapsed-tracks-020.html": [ - "f0a29e7f45a5523781680f19ccf96e98394e4785", + "auto-track-sizing-001.html": [ + "4a946e6feb4dbf4c9c348896ad69a2c81232c17c", [ null, [ [ - "/css/reference/ref-filled-green-200px-square.html", + "/css/css-grid/subgrid/auto-track-sizing-001-ref.html", "==" ] ], {} ] ], - "grid-content-distribution-with-collapsed-tracks-021.html": [ - "d45f528d497f26ab564c17f1cdad71bdca265ea0", + "auto-track-sizing-002.html": [ + "c44c9d392594a0241c8c9f8e2c5200d964ff7c62", [ null, [ [ - "/css/reference/ref-filled-green-300px-square.html", + "/css/css-grid/subgrid/auto-track-sizing-002-ref.html", "==" ] ], {} ] ], - "grid-content-distribution-with-collapsed-tracks-022.html": [ - "7f837ba4b2e812ed09299164645625a3684af477", + "auto-track-sizing-003.html": [ + "fdb571c157d0cb8f112c26d9f22de1f95eca14cc", [ null, [ [ - "/css/reference/ref-filled-green-200px-square.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "grid-content-distribution-with-collapsed-tracks-023.html": [ - "11de67a099a5c6889a1803496770eabdb7b46d69", + "auto-track-sizing-004.html": [ + "d5e120dab0df814f995902b6d41e4fba8f39ec73", [ null, [ [ - "/css/reference/ref-filled-green-200px-square.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "grid-content-distribution-with-collapsed-tracks-024.html": [ - "9afd058692de8bf2c19e167ff24b1a53b3b7564c", + "baseline-001.html": [ + "995b1a8d2ae1aaa7c0230379e5b799b12ac9e93c", [ null, [ [ - "/css/reference/ref-filled-green-300px-square.html", + "/css/css-grid/subgrid/baseline-001-ref.html", "==" ] ], {} ] ], - "grid-gutters-001.html": [ - "310aa4322ac37f6cc906b27a005da6a95210bbd0", + "contribution-size-flex-tracks-001.html": [ + "cc99f639686d073dd9c02db9c56c57026e3d225a", [ null, [ [ - "/css/css-grid/reference/grid-equal-gutters-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "grid-gutters-002.html": [ - "dbe9d145332b3f4bcdda2a3282c2cf87f00c9387", + "dynamic-min-content-001.html": [ + "97fa9b132737f96b7490c1aca29ddacdc261a143", [ null, [ [ - "/css/css-grid/reference/grid-equal-gutters-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "grid-gutters-003.html": [ - "51bc25b3f600925b148d8a1e53d484bc704aad9d", + "dynamic-min-content-002.html": [ + "04c5d143d9947bfdda50aca131c0adde095b7135", [ null, [ [ - "/css/css-grid/reference/grid-different-gutters-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "grid-gutters-004.html": [ - "c7d549a1b6e35879f1f89125e07d1a2a5e63fa0e", + "dynamic-min-content-003.html": [ + "625d83485c69487b47e95afd8996617d9e0326c6", [ null, [ [ - "/css/css-grid/reference/grid-different-gutters-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "grid-gutters-005.html": [ - "cc67190affbbe6da53a98ba742a86fff239475bc", + "dynamic-subgridded-item-height.html": [ + "46e41d233559afe301becb398b40f0a5a813dc6f", [ null, [ [ - "/css/css-grid/reference/grid-different-gutters-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "grid-gutters-006.html": [ - "87fb7ec49dcacf92273bf8f381339e0c6ad26525", + "grid-gap-001.html": [ + "0bc8eed4d8e408b18211b38095eecc0d983a96f4", [ null, [ [ - "/css/css-grid/reference/grid-different-gutters-ref.html", + "/css/css-grid/subgrid/grid-gap-001-ref.html", "==" ] ], {} ] ], - "grid-gutters-007.html": [ - "4d66cf6750dbf8c8e090d4dd4e18513c175ad2ad", + "grid-gap-002.html": [ + "bd4b74924bdf35380811e24a4e2de67c91d7d5d4", [ null, [ [ - "/css/css-grid/reference/grid-equal-gutters-ref.html", + "/css/css-grid/subgrid/grid-gap-002-ref.html", "==" ] ], {} ] ], - "grid-gutters-008.html": [ - "a96eba3828303838cafa49ca749bb4c73b4cfa8d", + "grid-gap-003.html": [ + "f8ce8655cf9da0bbca9495d77a2a2403ef9c6801", [ null, [ [ - "/css/css-grid/reference/grid-equal-gutters-ref.html", + "/css/css-grid/subgrid/grid-gap-003-ref.html", "==" ] ], {} ] ], - "grid-gutters-009.html": [ - "dfc595f8204c25fec8947967df746336d07d7eaa", + "grid-gap-004.html": [ + "b46d22e1e39e7e61f85a19860582b11c58719d52", [ null, [ [ - "/css/css-grid/reference/grid-percentage-gap-ref.html", + "/css/css-grid/subgrid/grid-gap-004-ref.html", "==" ] ], {} ] ], - "grid-gutters-010.html": [ - "22be6df72e8cb7f953eae294c994e6171693ad57", + "grid-gap-005.html": [ + "9afba90a52954abf08719d2c115658c51b2cdec2", [ null, [ [ - "/css/css-grid/reference/grid-percentage-gap-ref.html", + "/css/css-grid/subgrid/grid-gap-005-ref.html", "==" ] ], {} ] ], - "grid-gutters-011.html": [ - "daeba00aee1fcabba3103c476beea9692ea7754d", + "grid-gap-006.html": [ + "d79ced10c883359b66a77f1b4c5ed362f275d361", [ null, [ [ - "/css/css-grid/reference/grid-different-gutters-ref.html", + "/css/css-grid/subgrid/grid-gap-006-ref.html", "==" ] ], {} ] ], - "grid-gutters-012.html": [ - "b4af6f7a281e7f358b21ec7a5feb74628d103e4e", + "grid-gap-007.html": [ + "5b94fe530233ddaf47def934da6924a92e2e47e9", [ null, [ [ - "/css/css-grid/reference/grid-different-gutters-ref.html", + "/css/css-grid/subgrid/grid-gap-007-ref.html", "==" ] ], {} ] ], - "grid-gutters-013.html": [ - "e72814725d2cb90fba6f3bd4d1e8370f37382fbb", + "grid-gap-008.html": [ + "760bd92c3dfa301148eac13bfd768ef1ebd85409", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-grid/subgrid/grid-gap-008-ref.html", "==" ] ], {} ] ], - "grid-gutters-014.html": [ - "404e694ec8698a4efa3361eb6b3a5c20f8865b42", + "grid-gap-009.html": [ + "4bbf5c6e81003e21f54eb98d5bae2d5c3719580b", [ null, [ [ - "/css/css-grid/alignment/grid-gutters-014-ref.html", + "/css/css-grid/subgrid/grid-gap-009-ref.html", "==" ] ], {} ] ], - "grid-gutters-015.html": [ - "ed1048fd69714a8d813b92103719f0171f165472", + "grid-gap-010.html": [ + "23d67b95dd9a4e4cdb1ba8241b2ebd2e8ebb93a8", [ null, [ [ - "/css/css-grid/alignment/grid-gutters-015-ref.html", + "/css/css-grid/subgrid/grid-gap-010-ref.html", "==" ] ], {} ] ], - "grid-gutters-016.html": [ - "163787cfee6a9762ec018bd05ee2d3d7b4273114", + "grid-gap-011.html": [ + "d40ad2640f183d5a881e6c85b5c30e2b54f40284", [ null, [ [ - "/css/css-grid/alignment/grid-gutters-016-ref.html", + "/css/css-grid/subgrid/grid-gap-011-ref.html", "==" ] ], {} ] ], - "grid-inline-axis-alignment-auto-margins-008.html": [ - "eb9666465542a34cc29853dd71dc326ff4cbbd63", + "grid-gap-012.html": [ + "02d9a0e80115439f3ecf36e881ad9a325cdc7b50", [ null, [ [ - "/css/css-grid/reference/grid-inline-axis-alignment-auto-margins-008-ref.html", + "/css/css-grid/subgrid/grid-gap-012-ref.html", "==" ] ], {} ] ], - "grid-inline-baseline.html": [ - "0ff058553cbc0825854244c1c56cffcc31a474c1", + "grid-gap-larger-001.html": [ + "85725d52925b898f562329256cf60ea24486f517", [ - "css/css-grid/alignment/grid-inline-baseline.html", + null, [ [ - "/css/css-grid/reference/grid-inline-baseline-ref.html", + "/css/css-grid/subgrid/grid-gap-larger-001-ref.html", "==" ] ], {} ] ], - "grid-item-aspect-ratio-stretch-1.html": [ - "909406f5e9e75e301886472d654de31df6951da8", + "grid-gap-larger-002.html": [ + "4565be1b8008c83007a53cdeb27e4fee40cee50a", [ - "css/css-grid/alignment/grid-item-aspect-ratio-stretch-1.html", + null, [ [ - "/css/css-grid/alignment/grid-item-aspect-ratio-stretch-1-ref.html", + "/css/css-grid/subgrid/grid-gap-larger-002-ref.html", "==" ] ], {} ] ], - "grid-item-aspect-ratio-stretch-2.html": [ - "2a4dd2d787d34be1097beaaec73922296aad666c", + "grid-gap-normal-001.html": [ + "5edf1e0762141a126bf0ae777216acc7645d40f3", [ null, [ [ - "/css/css-grid/alignment/grid-item-aspect-ratio-stretch-2-ref.html", + "/css/css-grid/subgrid/grid-gap-normal-001-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 1 - ], - [ - 0, - 2 - ] - ] - ] - ] - } + {} ] ], - "grid-item-aspect-ratio-stretch-3.html": [ - "43202541b2eb14ff54176c01f72dd58e77e9e73f", + "grid-gap-smaller-001.html": [ + "7b59acd700b757826486916ada33ee56444b7309", [ - "css/css-grid/alignment/grid-item-aspect-ratio-stretch-3.html", + null, [ [ - "/css/css-grid/alignment/grid-item-aspect-ratio-stretch-3-ref.html", + "/css/css-grid/subgrid/grid-gap-smaller-001-ref.html", "==" ] ], {} ] ], - "grid-item-aspect-ratio-stretch-4.html": [ - "f689cce023bcb279341870288683988d4bce6af4", + "independent-formatting-context.html": [ + "5a76ac2d6dea91a0d13de29d9192aaf8df3ae350", [ - "css/css-grid/alignment/grid-item-aspect-ratio-stretch-4.html", + null, [ [ - "/css/css-grid/alignment/grid-item-aspect-ratio-stretch-4-ref.html", + "/css/css-grid/subgrid/independent-formatting-context-ref.html", "==" ] ], {} ] ], - "grid-item-auto-margins-001.html": [ - "be5eb6efbeed1b46b5c988fe3e98b4c8d083966b", + "independent-tracks-from-parent-grid.html": [ + "d7647eaafb978d9c986849d53fb55e97449a071b", [ null, [ @@ -190243,307 +189933,307 @@ {} ] ], - "grid-item-auto-margins-002.html": [ - "037794e6cc4fdf618fb9762889ed69a7bb3bece7", + "item-percentage-height-001.html": [ + "15e996ea3264e4147d8c3e37b464303647ac3e0e", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-grid/subgrid/item-percentage-height-001-ref.html", "==" ] ], {} ] ], - "grid-item-content-baseline-001.html": [ - "aa33f3c15b24e945449dd0aeea9d5cfa3e34a9f8", + "line-names-001.html": [ + "69c300d864e9990151a96f6577fe5f09e1e22bb2", [ null, [ [ - "/css/css-grid/alignment/grid-item-content-baseline-001-ref.html", + "/css/css-grid/subgrid/line-names-001-ref.html", "==" ] ], {} ] ], - "grid-item-content-baseline-002.html": [ - "3d12f68cb0db505f05aac4a9f82d1b1ad28a23a5", + "line-names-002.html": [ + "574e353f877948cdc247aa589f23b7fce462a2ae", [ null, [ [ - "/css/css-grid/alignment/grid-item-content-baseline-002-ref.html", + "/css/css-grid/subgrid/line-names-002-ref.html", "==" ] ], {} ] ], - "grid-item-content-baseline-003.html": [ - "8845afe86411ec481c187e32f35f4ce097fb7fb8", + "line-names-003.html": [ + "43afaf9414699cd4ce66fae02f2c3ce5293ef68a", [ null, [ [ - "/css/css-grid/alignment/grid-item-content-baseline-003-ref.html", + "/css/css-grid/subgrid/line-names-001-ref.html", "==" ] ], {} ] ], - "grid-item-content-baseline-004.html": [ - "81a046be91ba3432e998a78eb75d109fa3765ff5", + "line-names-004.html": [ + "84f727d2e350d1754cd0511471f95e14525ae00b", [ null, [ [ - "/css/css-grid/alignment/grid-item-content-baseline-004-ref.html", + "/css/css-grid/subgrid/line-names-004-ref.html", "==" ] ], {} ] ], - "grid-item-mixed-baseline-001.html": [ - "f724b3b6c4980d3e98d82143d3d734d335be2fa4", + "line-names-005.html": [ + "26be899e93ed5d941eda3a16a21ab670abb6fca5", [ null, [ [ - "/css/css-grid/alignment/grid-item-mixed-baseline-001-ref.html", + "/css/css-grid/subgrid/line-names-005-ref.html", "==" ] ], {} ] ], - "grid-item-mixed-baseline-002.html": [ - "d14a8cae7a8e439ccef7f5dd5a75a003e23303d1", + "line-names-006.html": [ + "0aa8c80b2e233c9e9227c1a52e5e330b5ab443f5", [ null, [ [ - "/css/css-grid/alignment/grid-item-mixed-baseline-002-ref.html", + "/css/css-grid/subgrid/line-names-006-ref.html", "==" ] ], {} ] ], - "grid-item-mixed-baseline-003.html": [ - "0a78d59e982937169adfb61719ece1841c92e09c", + "line-names-007.html": [ + "d70a86b6b1469dcc657012d2f1e0867d412c5cdf", [ null, [ [ - "/css/css-grid/alignment/grid-item-mixed-baseline-003-ref.html", + "/css/css-grid/subgrid/line-names-007-ref.html", "==" ] ], {} ] ], - "grid-item-mixed-baseline-004.html": [ - "6202845f6f5552ad2aaffda48d8a42798450bb13", + "line-names-008.html": [ + "56ea9612989b067cc55196d868ce119f90205530", [ null, [ [ - "/css/css-grid/alignment/grid-item-mixed-baseline-004-ref.html", + "/css/css-grid/subgrid/line-names-008-ref.html", "==" ] ], {} ] ], - "grid-item-no-aspect-ratio-stretch-1.html": [ - "1b5ae0a6ad80610515ed53f5ea34e812fe040d27", + "line-names-009.html": [ + "bd8a7768720bafe1484a81c11a51cf8ec7331994", [ null, [ [ - "/css/css-grid/alignment/grid-item-no-aspect-ratio-stretch-1-ref.html", + "/css/css-grid/subgrid/line-names-009-ref.html", "==" ] ], {} ] ], - "grid-item-no-aspect-ratio-stretch-2.html": [ - "5371e560a5f80eae466485ccd89486c33d741190", + "line-names-010.html": [ + "49295b50b40984bc0ac8d232779bd9da420787a7", [ null, [ [ - "/css/css-grid/alignment/grid-item-no-aspect-ratio-stretch-2-ref.html", + "/css/css-grid/subgrid/line-names-010-ref.html", "==" ] ], {} ] ], - "grid-item-no-aspect-ratio-stretch-3.html": [ - "e2b05bd21664eaa61e4ec3a2abb74f431c8fdc1c", + "line-names-011.html": [ + "d3bb734447f6b724f21f0ce4dc2c9d15276523ad", [ null, [ [ - "/css/css-grid/alignment/grid-item-no-aspect-ratio-stretch-3-ref.html", + "/css/css-grid/subgrid/line-names-011-ref.html", "==" ] ], {} ] ], - "grid-item-no-aspect-ratio-stretch-4.html": [ - "a53c0fd87c541b7381ff21410d81deaa2f49078b", + "line-names-012.html": [ + "e8101043cfc570295fc1612c9f67d733f2aac838", [ - "css/css-grid/alignment/grid-item-no-aspect-ratio-stretch-4.html", + null, [ [ - "/css/css-grid/alignment/grid-item-no-aspect-ratio-stretch-4-ref.html", + "/css/css-grid/subgrid/line-names-012-ref.html", "==" ] ], {} ] ], - "grid-item-no-aspect-ratio-stretch-5.html": [ - "c28022c6e748da6df4bfc8c78492349c8d368a9a", + "line-names-013.html": [ + "a964cf7813a9080179eabd1f65e5cbcf1ca97654", [ - "css/css-grid/alignment/grid-item-no-aspect-ratio-stretch-5.html", + null, [ [ - "/css/css-grid/alignment/grid-item-no-aspect-ratio-stretch-5-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "grid-item-no-aspect-ratio-stretch-6.html": [ - "b4f172c10da92b3fd5e315d3983cf712e6abd41f", + "orthogonal-writing-mode-001.html": [ + "1cf99a73e2ef7b0e3fe42bbf8c188fa4d2733979", [ - "css/css-grid/alignment/grid-item-no-aspect-ratio-stretch-6.html", + null, [ [ - "/css/css-grid/alignment/grid-item-no-aspect-ratio-stretch-6-ref.html", + "/css/css-grid/subgrid/orthogonal-writing-mode-001-ref.html", "==" ] ], {} ] ], - "grid-item-self-baseline-001.html": [ - "ccc50c764975906b59f54aa1205a4513149e85f2", + "orthogonal-writing-mode-002.html": [ + "20a4b0ccf37114e0975a2f508631caebdd17dadb", [ null, [ [ - "/css/css-grid/alignment/grid-item-self-baseline-001-ref.html", + "/css/css-grid/subgrid/orthogonal-writing-mode-002-ref.html", "==" ] ], {} ] ], - "grid-justify-baseline-001.html": [ - "959767bd7c780ace786d371b91ed43ed93f64590", + "orthogonal-writing-mode-003.html": [ + "2cd17d628b2021122320eafd7e9de6da5a0d215f", [ null, [ [ - "/css/css-grid/alignment/grid-justify-baseline-001-ref.html", + "/css/css-grid/subgrid/orthogonal-writing-mode-003-ref.html", "==" ] ], {} ] ], - "grid-self-alignment-baseline-with-grid-001.html": [ - "19a26d8d6aa5509e81243ab431135676b3a18517", + "orthogonal-writing-mode-004.html": [ + "4a0edd7e6d5aefe06fc0d9989c84d3871ea61a14", [ null, [ [ - "/css/css-grid/alignment/grid-self-alignment-baseline-with-grid-001-ref.html", + "/css/css-grid/subgrid/orthogonal-writing-mode-004-ref.html", "==" ] ], {} ] ], - "grid-self-alignment-baseline-with-grid-002.html": [ - "a426f879c6e8cdc0ccdad6cc193c094ca58d63b5", + "orthogonal-writing-mode-005.html": [ + "d5bd17816104e40538303b8b637897c367c6af63", [ null, [ [ - "/css/css-grid/alignment/grid-self-alignment-baseline-with-grid-001-ref.html", + "/css/css-grid/subgrid/orthogonal-writing-mode-005-ref.html", "==" ] ], {} ] ], - "grid-self-alignment-baseline-with-grid-003.html": [ - "ed3bf30317fb278af487a090c51fba867289f1cc", + "orthogonal-writing-mode-006.html": [ + "95d124322891aeb89d323fc5425725b32143ccf1", [ null, [ [ - "/css/css-grid/alignment/grid-self-alignment-baseline-with-grid-001-ref.html", + "/css/css-grid/subgrid/orthogonal-writing-mode-006-ref.html", "==" ] ], {} ] ], - "grid-self-alignment-baseline-with-grid-004.html": [ - "5e20b88d356620c0883ff4ebda4bec3aaa1d5853", + "overflow-hidden-does-not-prohibit-subgrid.html": [ + "b0c73e0e24e1ed4cc266d4ed9661cdf400599342", [ null, [ [ - "/css/css-grid/alignment/grid-self-alignment-baseline-with-grid-001-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "grid-self-alignment-stretch-input-range.html": [ - "fb17f3a4a8b25503a61e786bde78e0726105a74e", + "parent-repeat-auto-fit-001.html": [ + "8ecbccbea64320054f940d9c2e2d31dd028daa14", [ null, [ [ - "/css/css-grid/alignment/grid-self-alignment-stretch-input-range-ref.html", + "/css/css-grid/subgrid/parent-repeat-auto-fit-001-ref.html", "==" ] ], {} ] ], - "replaced-alignment-with-aspect-ratio-001.html": [ - "d7ab97b9ec0091b7869b1fbb69e7317ced70cc20", + "parent-repeat-auto-fit-002.html": [ + "b113f47a0b2e823053408433f7f40833a27201f3", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-grid/subgrid/parent-repeat-auto-fit-002-ref.html", "==" ] ], {} ] ], - "replaced-alignment-with-aspect-ratio-002.html": [ - "1a4e344dd045806ed512d9e3562d9f3b96d1fbd8", + "percentage-track-sizing.html": [ + "3e62f19a0a3bfb9397b3c1da94ebd2dcdee2ba0c", [ null, [ @@ -190555,1124 +190245,429 @@ {} ] ], - "replaced-alignment-with-aspect-ratio-003.tentative.html": [ - "2c27480d5a7a903e0d8301b8215190331022185f", + "placement-implicit-001.html": [ + "738b83f4823c3245893864eecf9983e03c90ac3f", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-grid/subgrid/placement-implicit-001-ref.html", "==" ] ], {} ] ], - "replaced-alignment-with-aspect-ratio-004.html": [ - "437b379332e90ab7ae4a48c17d3f9c7730ba3b98", + "repeat-auto-fill-001.html": [ + "9e57028c4cc2757eb3ec52cc214f902562413474", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-grid/subgrid/repeat-auto-fill-001-ref.html", "==" ] ], {} ] ], - "replaced-alignment-with-aspect-ratio-005.html": [ - "b14c45d0c2d9cb93577b71df90d430aff37734d6", + "repeat-auto-fill-002.html": [ + "80980f14e9f8ccfced29e252114a4337a0dc5aeb", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-grid/subgrid/repeat-auto-fill-001-ref.html", "==" ] ], {} ] ], - "replaced-alignment-with-aspect-ratio-006.html": [ - "ed14e36057948ad5c90f702b6181adba8a72cca7", + "repeat-auto-fill-003.html": [ + "df14ed8350bce321e50c6f0721b91ad63714083c", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-grid/subgrid/repeat-auto-fill-001-ref.html", "==" ] ], {} ] ], - "replaced-alignment-with-aspect-ratio-007.html": [ - "0c841c7654c237dd5cb17f5790cd738a79caef24", + "repeat-auto-fill-004.html": [ + "9dd8f33eb9b0e8815ea2a407087cb344b1f870a2", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-grid/subgrid/repeat-auto-fill-004-ref.html", "==" ] ], {} ] ], - "replaced-alignment-with-aspect-ratio-008.html": [ - "9227332851a46f597fbe8bb9d12f5d0b45975cfa", + "repeat-auto-fill-005.html": [ + "0cf16d47a27e1105d12ef595e8864d46793e2790", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-grid/subgrid/repeat-auto-fill-005-ref.html", "==" ] ], {} ] ], - "replaced-alignment-with-aspect-ratio-009.html": [ - "ff721b8f19b4c2c781fd0c3c69d3e44e541d63a8", + "repeat-auto-fill-006.html": [ + "8d4213c6d87c131f0b03dcba1dad46cc9c9d663c", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-grid/subgrid/repeat-auto-fill-005-ref.html", "==" ] ], {} ] ], - "self-baseline": { - "grid-self-baseline-001.html": [ - "2473bb5d4fc8adc351af441bf39cffcacc076273", - [ - null, - [ - [ - "/css/css-grid/alignment/self-baseline/grid-self-baseline-001-ref.html", - "==" - ] - ], - {} - ] - ], - "grid-self-baseline-002-b.html": [ - "7d9ebecb8ca542f8ebb7574e87a77c086262ebca", - [ - null, - [ - [ - "/css/css-grid/alignment/self-baseline/grid-self-baseline-002-b-ref.html", - "==" - ] - ], - {} - ] - ], - "grid-self-baseline-002.html": [ - "700fd26097e850a3a348dedc657ebd295a439486", - [ - null, - [ - [ - "/css/css-grid/alignment/self-baseline/grid-self-baseline-002-ref.html", - "==" - ] - ], - {} - ] - ], - "grid-self-baseline-003.html": [ - "2372ac19318f65ba1a28ff15aea46579d10c63aa", - [ - null, - [ - [ - "/css/css-grid/alignment/self-baseline/grid-self-baseline-003-ref.html", - "==" - ] - ], - {} - ] - ], - "grid-self-baseline-004.html": [ - "c7f49bf24af08f82df9d2975bd485057de5e3018", - [ - null, - [ - [ - "/css/css-grid/alignment/self-baseline/grid-self-baseline-004-ref.html", - "==" - ] - ], - {} - ] - ], - "grid-self-baseline-005.html": [ - "3bfa2d2079955095fc73244f7073e99aeda0e5b1", - [ - null, - [ - [ - "/css/css-grid/alignment/self-baseline/grid-self-baseline-005-ref.html", - "==" - ] - ], - {} - ] - ], - "grid-self-baseline-006.html": [ - "34edced2b4345474acd364f6d3cb6310f24eca3e", - [ - null, - [ - [ - "/css/css-grid/alignment/self-baseline/grid-self-baseline-006-ref.html", - "==" - ] - ], - {} - ] - ], - "grid-self-baseline-007.html": [ - "e0966bb6e6421a5e950d486e3f45b93ce4a55416", - [ - null, - [ - [ - "/css/css-grid/alignment/self-baseline/grid-self-baseline-007-ref.html", - "==" - ] - ], - {} - ] - ], - "grid-self-baseline-008.html": [ - "5398b7e9c1bab53b145774cb9b48e3615ef69af7", - [ - null, - [ - [ - "/css/css-grid/alignment/self-baseline/grid-self-baseline-008-ref.html", - "==" - ] - ], - {} - ] - ], - "grid-self-baseline-changes-grid-area-size-001.html": [ - "5b2ecaaab06b1f86397818fe5522cbc1e0a2f55a", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-self-baseline-changes-grid-area-size-002.html": [ - "fb4e3f1a4c476a9680274f03ea3737ed461cafbe", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-self-baseline-changes-grid-area-size-003.html": [ - "c06394ad5868ee4d559a621d69a4f4f8b945c015", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-self-baseline-changes-grid-area-size-004.html": [ - "e877b81480dc008c71eae8ce3d8ae49dc17eb02a", - [ - "css/css-grid/alignment/self-baseline/grid-self-baseline-changes-grid-area-size-004.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-self-baseline-changes-grid-area-size-005.html": [ - "21cc0b8ac21c5f401d20d661437221b64118bbf5", - [ - "css/css-grid/alignment/self-baseline/grid-self-baseline-changes-grid-area-size-005.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-self-baseline-changes-grid-area-size-006.html": [ - "ed3449babed07eabb6669811e862e561cae53e8e", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-self-baseline-changes-grid-area-size-007.html": [ - "4b854119b79a0d678a154cdaee9af9261748591f", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-self-baseline-changes-grid-area-size-008.html": [ - "6eb65039e2b2a0c5a956750cb5ef2820e6cbabbc", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-self-baseline-changes-grid-area-size-009.html": [ - "a173d290ea5a6aea3efc15bcfdc4729c76c3e3d2", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-self-baseline-changes-grid-area-size-010.html": [ - "0c1c1dbb360d5337282488f166cd0fd4fb70e1c3", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-self-baseline-changes-grid-area-size-011.html": [ - "dba173a4396a8d441ab6ed80e599a7aaca732570", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-self-baseline-changes-grid-area-size-012.html": [ - "ff5903459ba3d63de65eeb74c612ce74cfd370ba", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-self-baseline-horiz-001.html": [ - "556009dfde719b49ad0bb62f939e4a08ee16053f", - [ - null, - [ - [ - "/css/css-grid/alignment/self-baseline/grid-self-baseline-horiz-001-ref.html", - "==" - ] - ], - {} - ] - ], - "grid-self-baseline-horiz-002.html": [ - "c196cd35c514da0e35a6754a3e7905b02d6eda16", - [ - null, - [ - [ - "/css/css-grid/alignment/self-baseline/grid-self-baseline-horiz-002-ref.html", - "==" - ] - ], - {} - ] - ], - "grid-self-baseline-horiz-003.html": [ - "287cb80fd58b4f8feb57ce5723478cb025c77040", - [ - null, - [ - [ - "/css/css-grid/alignment/self-baseline/grid-self-baseline-horiz-003-ref.html", - "==" - ] - ], - {} - ] - ], - "grid-self-baseline-horiz-004.html": [ - "673c9ff20829c5ac451443bf9bccacb6ed9d6546", - [ - null, - [ - [ - "/css/css-grid/alignment/self-baseline/grid-self-baseline-horiz-004-ref.html", - "==" - ] - ], - {} - ] - ], - "grid-self-baseline-horiz-005.html": [ - "f816e893ca288abeb0b94a13d049f04d6ea8b4f4", - [ - null, - [ - [ - "/css/css-grid/alignment/self-baseline/grid-self-baseline-horiz-005-ref.html", - "==" - ] - ], - {} - ] - ], - "grid-self-baseline-horiz-006.html": [ - "c034040b5fdc032770014d4b55ef55c2f5b7956c", - [ - null, - [ - [ - "/css/css-grid/alignment/self-baseline/grid-self-baseline-horiz-006-ref.html", - "==" - ] - ], - {} - ] - ], - "grid-self-baseline-horiz-007.html": [ - "60185142427a8858a37c93e380578a37cd9b936d", - [ - null, - [ - [ - "/css/css-grid/alignment/self-baseline/grid-self-baseline-horiz-007-ref.html", - "==" - ] - ], - {} - ] - ], - "grid-self-baseline-vertical-lr-001.html": [ - "801474df57c29737a173e46c0eb59a5e4211f0ed", - [ - null, - [ - [ - "/css/css-grid/alignment/self-baseline/grid-self-baseline-vertical-lr-001-ref.html", - "==" - ] - ], - {} - ] - ], - "grid-self-baseline-vertical-lr-002.html": [ - "6dd235a7b6fcdf7a7d37ee5f65776e28669bf252", - [ - null, - [ - [ - "/css/css-grid/alignment/self-baseline/grid-self-baseline-vertical-lr-002-ref.html", - "==" - ] - ], - {} - ] - ], - "grid-self-baseline-vertical-lr-003.html": [ - "18f581620d611e159f9c9af8f9a9bc4b40b3a3ae", - [ - null, - [ - [ - "/css/css-grid/alignment/self-baseline/grid-self-baseline-vertical-lr-003-ref.html", - "==" - ] - ], - {} - ] - ], - "grid-self-baseline-vertical-lr-004.html": [ - "1f2e3860b06f96a5d4fe1ee6416a9ba78f347eee", - [ - null, - [ - [ - "/css/css-grid/alignment/self-baseline/grid-self-baseline-vertical-lr-004-ref.html", - "==" - ] - ], - {} - ] - ], - "grid-self-baseline-vertical-lr-005.html": [ - "a27cb67898eb5e3167c6869faffaf2936e9705cd", - [ - null, - [ - [ - "/css/css-grid/alignment/self-baseline/grid-self-baseline-vertical-lr-005-ref.html", - "==" - ] - ], - {} - ] - ], - "grid-self-baseline-vertical-lr-006.html": [ - "654c17cd9e85ba7bb3d2abdd91e5405036d6ddaa", - [ - null, - [ - [ - "/css/css-grid/alignment/self-baseline/grid-self-baseline-vertical-lr-006-ref.html", - "==" - ] - ], - {} - ] - ], - "grid-self-baseline-vertical-lr-007.html": [ - "ae7b6bf36ea49eb8b078a5b40f608dc8a7167323", - [ - null, - [ - [ - "/css/css-grid/alignment/self-baseline/grid-self-baseline-vertical-lr-007-ref.html", - "==" - ] - ], - {} - ] - ], - "grid-self-baseline-vertical-rl-001.html": [ - "af7ca16d6345ad52c00d2efcc5bd33fca93d5619", - [ - null, - [ - [ - "/css/css-grid/alignment/self-baseline/grid-self-baseline-vertical-rl-001-ref.html", - "==" - ] - ], - {} - ] - ], - "grid-self-baseline-vertical-rl-002.html": [ - "9aa00a71147d2c4618859ba28905ddf6f0c4cd9a", - [ - null, - [ - [ - "/css/css-grid/alignment/self-baseline/grid-self-baseline-vertical-rl-002-ref.html", - "==" - ] - ], - {} - ] - ], - "grid-self-baseline-vertical-rl-003.html": [ - "2ae2f4fba6536359b8ec11b71f3b448445e776a2", - [ - null, - [ - [ - "/css/css-grid/alignment/self-baseline/grid-self-baseline-vertical-rl-003-ref.html", - "==" - ] - ], - {} - ] - ], - "grid-self-baseline-vertical-rl-004.html": [ - "d2f08642fcd52bbb574206b957caf1a71cec231c", - [ - null, - [ - [ - "/css/css-grid/alignment/self-baseline/grid-self-baseline-vertical-rl-004-ref.html", - "==" - ] - ], - {} - ] - ], - "grid-self-baseline-vertical-rl-005.html": [ - "0d40ce288d7406bec157fb27aff9bcb591d3b87d", - [ - null, - [ - [ - "/css/css-grid/alignment/self-baseline/grid-self-baseline-vertical-rl-005-ref.html", - "==" - ] - ], - {} - ] - ], - "grid-self-baseline-vertical-rl-006.html": [ - "40f1e0796ea3733d55679a3aa5fcbe8a220ab4bc", - [ - null, - [ - [ - "/css/css-grid/alignment/self-baseline/grid-self-baseline-vertical-rl-006-ref.html", - "==" - ] - ], - {} - ] - ], - "grid-self-baseline-vertical-rl-007.html": [ - "49bab61ca091aaab8e4773d29ea274ba3be3790c", + "repeat-auto-fill-007.html": [ + "949d8296fef40637101cb8bdb24f18710e4e3854", + [ + null, [ - null, [ - [ - "/css/css-grid/alignment/self-baseline/grid-self-baseline-vertical-rl-007-ref.html", - "==" - ] - ], - {} - ] + "/css/css-grid/subgrid/repeat-auto-fill-007-ref.html", + "==" + ] + ], + {} ] - } - }, - "animation": { - "grid-template-columns-001.html": [ - "4e618edb22efc021e7d49a5b7e618c6e77a25d51", + ], + "repeat-auto-fill-008.html": [ + "28238178f0d9d66139cced2acdd6675fe77c6b36", [ null, [ [ - "/css/css-grid/animation/grid-template-columns-001-ref.html", + "/css/css-grid/subgrid/repeat-auto-fill-008-ref.html", "==" ] ], {} ] ], - "grid-template-rows-001.html": [ - "403fed432ac5512d194c187e6bdd813c7dcee0b5", + "scrollbar-gutter-001.html": [ + "664e4bc70eb519a264c1ec1406647be1ce7fdea5", [ null, [ [ - "/css/css-grid/animation/grid-template-rows-001-ref.html", + "/css/css-grid/subgrid/scrollbar-gutter-001-ref.html", "==" ] ], {} ] - ] - }, - "anonymous-grid-items-001.html": [ - "f5ddd5c340176596b0da1ff731c07f219e7c435e", - [ - null, - [ - [ - "/css/css-grid/reference/anonymous-grid-items-001-ref.html", - "==" - ] - ], - {} - ] - ], - "child-border-box-and-max-content-001.html": [ - "8d3cda88b44e9bc60ee3a8e344b05f80aabcbe3f", - [ - null, - [ - [ - "/css/css-grid/child-border-box-and-max-content-001-ref.html", - "==" - ] - ], - {} - ] - ], - "child-border-box-and-max-content-002.html": [ - "fe3e6db0d7a1f243ff383b8e9f9f5527a78f6750", - [ - null, - [ - [ - "/css/css-grid/child-border-box-and-max-content-002-ref.html", - "==" - ] - ], - {} - ] - ], - "chrome-bug-001.html": [ - "7b24f41a47eeb090ec53e9a6e37a4f8a977ca802", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square-only.html", - "==" - ] - ], - {} - ] - ], - "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", - "==" - ] - ], - {} - ] - ], - "empty-grid-within-flexbox.html": [ - "1941800cb187428ebecf56cbbd2ca9d1bbdfd563", - [ - "css/css-grid/empty-grid-within-flexbox.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-child-percent-basis-resize-1.html": [ - "7fb5d8e117d9f0b7e23bf3921843e8ea29ef4522", - [ - null, - [ - [ - "/css/css-grid/grid-child-percent-basis-resize-1-ref.html", - "==" - ] - ], - {} - ] - ], - "grid-container-baseline-synthesized-001.html": [ - "431b1867f80df8723f9b25e157359d337007fb92", - [ - "css/css-grid/grid-container-baseline-synthesized-001.html", - [ - [ - "/css/css-grid/reference/grid-container-baseline-synthesized-001-ref.html", - "==" - ] - ], - {} - ] - ], - "grid-container-baseline-synthesized-002.html": [ - "c11c8ac1b98283a8c5142668f9bbbb99e66ed244", - [ - "css/css-grid/grid-container-baseline-synthesized-002.html", - [ - [ - "/css/css-grid/reference/grid-container-baseline-synthesized-001-ref.html", - "==" - ] - ], - {} - ] - ], - "grid-container-baseline-synthesized-003.html": [ - "9964c3dfb4ae19b9ca1ef7fa064d3aa6b01aa50d", - [ - "css/css-grid/grid-container-baseline-synthesized-003.html", - [ - [ - "/css/css-grid/reference/grid-container-baseline-synthesized-001-ref.html", - "==" - ] - ], - {} - ] - ], - "grid-container-baseline-synthesized-004.html": [ - "d8c4f630aba38214d45cf924130739f1eb84f591", - [ - "css/css-grid/grid-container-baseline-synthesized-004.html", - [ - [ - "/css/css-grid/reference/grid-container-baseline-synthesized-001-ref.html", - "==" - ] - ], - {} - ] - ], - "grid-definition": { - "flex-item-grid-container-percentage-rows-001.html": [ - "ba655ce8a17d6482071d39e66684b50ebe749822", + ], + "scrollbar-gutter-002.html": [ + "724bf06104c83c1a11c6eeb0143333f6448fd8b9", [ null, [ [ - "/css/css-grid/reference/flex-item-grid-container-percentage-rows-001-ref.html", + "/css/css-grid/subgrid/scrollbar-gutter-001-ref.html", "==" ] ], {} ] ], - "fr-unit-with-percentage.html": [ - "82c97abdd5740d466f049d8b45b67e241f204899", + "standalone-axis-size-001.html": [ + "aaa71ddbef27768ccae6601c2b0df7428637469a", [ null, [ [ - "/css/css-grid/reference/fr-unit-with-percentage-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "fr-unit.html": [ - "00ef5a5974423967dadf26a594539ab2eb65526c", + "standalone-axis-size-002.html": [ + "0e02aa1b140e8dacaabcd3f55228685501ec5e04", [ null, [ [ - "/css/css-grid/reference/fr-unit-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "grid-auto-repeat-aspect-ratio-001.html": [ - "bd744cf0cb30fd3349dfa85460ec1dd9ff962c40", + "standalone-axis-size-003.html": [ + "5c06ee62e10be27753f728adaddc4d2b3a74ecec", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "grid-auto-repeat-aspect-ratio-002.html": [ - "3b74e792241ccc589c690ea328a684c93be708ba", + "standalone-axis-size-004.html": [ + "d69412d62529018b301cc2baec58fb4e21f01e00", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "grid-auto-repeat-dynamic-001.html": [ - "25378928872ac4016f95dcb0f261826eb0500f3e", + "standalone-axis-size-005.html": [ + "586d26bf2fe3ecb6a003b97bb8827a230023f56d", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "grid-auto-repeat-dynamic-002.html": [ - "8df2158d1f156c56905d77356f457ae68d0c5aec", + "standalone-axis-size-006.html": [ + "056f0a402803c84b2827aa41aefee021c46a5559", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "grid-auto-repeat-dynamic-003.html": [ - "c2fe3ff98a71e0203d6c25c360962deb9809cd33", + "standalone-axis-size-007.html": [ + "464200614c717cdf24975ae90f15246eaf0eff86", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "grid-auto-repeat-minmax.html": [ - "f6c7af1e703e44a8ae9d4017247ff1752d8afe3f", + "standalone-axis-size-008.html": [ + "6ee4e77405b47c3de23c6fc19a25cec3d576511f", [ - "css/css-grid/grid-definition/grid-auto-repeat-minmax.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "grid-auto-repeat-multiple-values-001.html": [ - "085d94996f1142d11f9f9c6076e6d9afc025c39c", + "standalone-axis-size-009.html": [ + "bbf585efd1ad7ca4aba112be57cd4e964ace94b6", [ null, [ [ - "/css/css-grid/reference/grid-auto-repeat-multiple-values-001-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "grid-auto-repeat-multiple-values-002.html": [ - "723d876a6a31b38b3ba8964c6e6d4c958d35eef4", + "subgrid-baseline-001.html": [ + "95469c0018e0a97786aff086c0cabaf081ced7b4", [ null, [ [ - "/css/css-grid/grid-definition/grid-auto-repeat-multiple-values-002-ref.html", + "/css/css-grid/subgrid/subgrid-baseline-001-ref.html", "==" ] ], {} ] ], - "grid-auto-repeat-multiple-values-003.html": [ - "486259a5d3e34bfc949021192b3444f13de32be2", + "subgrid-baseline-002.html": [ + "12a17d7cc4b4502ed8c51a195f4ee04620c3da9b", [ null, [ [ - "/css/css-grid/grid-definition/grid-auto-repeat-multiple-values-003-ref.html", + "/css/css-grid/subgrid/subgrid-baseline-002-ref.html", "==" ] ], {} ] ], - "grid-auto-repeat-multiple-values-004.html": [ - "460de5f9e848d843cf8e51f91cbd838d6f2b160b", + "subgrid-baseline-003.html": [ + "da8e550fb4f1fcb96225fcc219491d7bbbf76306", [ null, [ [ - "/css/css-grid/grid-definition/grid-auto-repeat-multiple-values-004-ref.html", + "/css/css-grid/subgrid/subgrid-baseline-003-ref.html", "==" ] ], {} ] ], - "grid-auto-repeat-multiple-values-005.html": [ - "8671df79b7c9ec5897973b9312a166b70f95a3f1", + "subgrid-baseline-004.html": [ + "c2bcaccc330628f532e7e2cf1cf187c8b17fc5ad", [ null, [ [ - "/css/css-grid/grid-definition/grid-auto-repeat-multiple-values-005-ref.html", + "/css/css-grid/subgrid/subgrid-baseline-004-ref.html", "==" ] ], {} ] ], - "grid-auto-repeat-positioned-container-001.html": [ - "309ad85671204b52def9309a3147ee031f72948f", + "subgrid-baseline-012.html": [ + "e6348411f5fedbbc9ab6bb7d15ff4ec4998b3ef6", [ null, [ [ - "/css/css-grid/grid-definition/grid-auto-repeat-positioned-container-001-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "grid-layout-auto-tracks.html": [ - "2cc3614d9ec60581f01b4e5ff7ffe624d7f3ce11", + "subgrid-button.html": [ + "774702238f2d36182d0c3d3b08e07a8fa32e64e3", [ null, [ [ - "/css/css-grid/reference/grid-layout-auto-tracks-ref.html", + "/css/css-grid/subgrid/subgrid-button-ref.html", "==" ] ], {} ] ], - "grid-layout-basic.html": [ - "578f70173b015497db2e13a3c06d6ed14d23d659", + "subgrid-item-block-size-001.html": [ + "29e82197831fec5e996d0f682a8f42eca819a8ed", [ null, [ [ - "/css/css-grid/reference/grid-layout-basic-ref.html", + "/css/css-grid/subgrid/subgrid-item-block-size-001-ref.html", "==" ] ], {} ] ], - "grid-layout-repeat-notation.html": [ - "ac0273f83aae54e0a565fee073c6943747b9b40f", + "subgrid-no-items-on-edges-001.html": [ + "f43c6f785d45a0be6f2da3e73327cd72697b9a19", [ null, [ [ - "/css/css-grid/reference/grid-layout-repeat-notation-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "grid-repeat-max-width-001.html": [ - "15a9f8a14c3a418cbb33b1ffd97b0f51f40548b0", + "subgrid-no-items-on-edges-002.html": [ + "aa905954b967a3c469724776637194a396a53758", [ - "css/css-grid/grid-definition/grid-repeat-max-width-001.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "grid-support-named-grid-lines-002.html": [ - "6b3b19ef97f413dea4ed68fbb26edcb7a0ed1f55", + "subgrid-stretch.html": [ + "321e12d2a3ba6d1bab3623c385153b2375c1b441", [ null, [ [ - "/css/css-grid/grid-definition/grid-support-named-grid-lines-002-ref.html", + "/css/css-grid/subgrid/subgrid-stretch-ref.html", "==" ] ], {} ] ], - "grid-support-named-grid-lines-003.html": [ - "c2c722485f1f9b0c0667a317649e5817ecdefb34", + "writing-directions-001.html": [ + "24caaebc4f181ca1b3acc5c759ce51c4b84cd15e", [ null, [ [ - "/css/css-grid/grid-definition/grid-support-named-grid-lines-003-ref.html", + "/css/css-grid/subgrid/writing-directions-001-ref.html", "==" ] ], {} ] ], - "grid-template-columns-fit-content-001.html": [ - "cecc53f89602413408647138319b30190af44768", + "writing-directions-002.html": [ + "078d5808b04ad21ce4ed0814691d2842ccd8bc57", [ null, [ [ - "/css/css-grid/grid-definition/grid-template-columns-fit-content-001-ref.html", + "/css/css-grid/subgrid/writing-directions-002-ref.html", "==" ] ], {} ] ], - "grid-template-rows-fit-content-001.html": [ - "14ac0c9c39b226ccc298c42b148220e6d8e74700", + "writing-directions-003.html": [ + "1df5512d19e89addfcd75abfd94c6e5a9bd0bcaf", [ null, [ [ - "/css/css-grid/grid-definition/grid-template-rows-fit-content-001-ref.html", + "/css/css-grid/subgrid/writing-directions-003-ref.html", "==" ] ], @@ -191680,2564 +190675,3781 @@ ] ] }, - "grid-item-non-auto-height-stretch-001.html": [ - "458ed020e37d8b8b66bc6ee7a8b4a6f8acf7d1df", + "table-grid-item-dynamic-001.html": [ + "e87a3dfe9a118841e63a8b9d886432304c957b11", [ null, [ [ - "/css/css-grid/grid-item-non-auto-height-stretch-ref.html", + "/css/css-grid/table-grid-item-dynamic-001-ref.html", "==" ] ], {} ] ], - "grid-item-non-auto-height-stretch-002.html": [ - "9b2757f4d845be1e753b5e12079450b7324c59c7", + "table-grid-item-dynamic-002.html": [ + "fdec4e6b3b423e4ca872210473ebd6a1f8f47b13", [ null, [ [ - "/css/css-grid/grid-item-non-auto-height-stretch-ref.html", + "/css/css-grid/table-grid-item-dynamic-002-ref.html", "==" ] ], {} ] ], - "grid-item-non-auto-height-stretch-003.html": [ - "acd382b4f9fa018474140ebd27f473b89feee6ee", + "table-grid-item-dynamic-003.html": [ + "32b809c5dcbc33a8c42f575879cd59faddab7318", [ null, [ [ - "/css/css-grid/grid-item-non-auto-height-stretch-ref.html", + "/css/css-grid/table-grid-item-dynamic-003-ref.html", "==" ] ], {} ] ], - "grid-item-non-auto-height-stretch-004.html": [ - "b68cf7546d77a9c8da8b9f9a12589850cfc62d89", + "table-grid-item-dynamic-004.html": [ + "537d85ad3420fc66929511f7ced486482340fbca", [ null, [ [ - "/css/css-grid/grid-item-non-auto-height-stretch-ref.html", + "/css/css-grid/table-grid-item-dynamic-004-ref.html", "==" ] ], {} ] ], - "grid-item-percentage-quirk-001.html": [ - "0956b7a025314df1f79acfebf3c0feb08a4df93b", + "whitespace-reattach.html": [ + "f97934eb30e6b5af1ceece9aaf2f52209b959646", [ null, [ [ - "/quirks/reference/green-100px-square-no-red.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] + ] + }, + "css-highlight-api": { + "highlight-image.html": [ + "b5d44e06b29735d6a5ab9fbfc9d1f92917fd4ff3", + [ + "css/css-highlight-api/highlight-image.html", + [ + [ + "/css/css-highlight-api/highlight-image-notref.html", + "!=" + ] + ], + {} + ] ], - "grid-item-percentage-quirk-002.html": [ - "f795cd096d9f0cb2f63c3875f57306b2b5c982cb", + "highlight-priority-painting.html": [ + "89ae87359250001fb4105142e174f15b0c5896da", [ null, [ [ - "/quirks/reference/green-100px-square-no-red.html", + "/css/css-highlight-api/highlight-priority-painting-ref.html", "==" ] ], {} ] ], - "grid-items": { - "anonymous-grid-item-001.html": [ - "db88ce54b38badc1277661af913303942d63ece0", + "highlight-text-across-elements.html": [ + "4ff6cff4b0b2f872ad494cefeab8bcc60a95878d", + [ + "css/css-highlight-api/highlight-text-across-elements.html", + [ + [ + "/css/css-highlight-api/highlight-text-across-elements-ref.html", + "==" + ] + ], + {} + ] + ], + "highlight-text-cascade.html": [ + "20d5eaf60a025715d7ba1b72804db9c35fd94090", + [ + "css/css-highlight-api/highlight-text-cascade.html", + [ + [ + "/css/css-highlight-api/highlight-text-cascade-ref.html", + "==" + ] + ], + {} + ] + ], + "highlight-text-decorations.html": [ + "bf8f3f79b0d9765886f3925f9b4d4c54d29ea817", + [ + "css/css-highlight-api/highlight-text-decorations.html", + [ + [ + "/css/css-highlight-api/highlight-text-decorations-ref.html", + "==" + ] + ], + {} + ] + ], + "highlight-text-dynamic.html": [ + "8258c1322a4d1f1305bfcdd6b8f848b0f8009d47", + [ + "css/css-highlight-api/highlight-text-dynamic.html", + [ + [ + "/css/css-highlight-api/highlight-text-dynamic-notref.html", + "!=" + ] + ], + {} + ] + ], + "highlight-text-replace.html": [ + "6a47e06f5ca5b39920233166fbfb6ef41f500493", + [ + "css/css-highlight-api/highlight-text-replace.html", + [ + [ + "/css/css-highlight-api/highlight-text-replace-ref.html", + "==" + ] + ], + {} + ] + ], + "highlight-text.html": [ + "1442d9602d87fb239425eddf929559fcad7a7133", + [ + "css/css-highlight-api/highlight-text.html", + [ + [ + "/css/css-highlight-api/highlight-text-ref.html", + "==" + ] + ], + {} + ] + ], + "painting": { + "css-highlight-painting-underline-offset-001.html": [ + "534438089ca0afd4a565e615f43cd964db3a0eb6", [ null, [ [ - "/css/css-flexbox/anonymous-flex-item-split-ref.html", + "/css/css-highlight-api/painting/css-highlight-painting-underline-offset-001-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 56 + ], + [ + 0, + 10 + ] + ] + ] + ] + } ] ], - "aspect-ratio-001.html": [ - "6271a37b630de269faa1030c6e2afe0957388fa5", + "css-target-text-decoration-001.html": [ + "14ba7111dce9a2cb6aebf8a7dec041e6d11ef864", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-highlight-api/painting/css-target-text-decoration-001-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 60 + ], + [ + 0, + 38 + ] + ] + ] + ] + } ] ], - "aspect-ratio-002.html": [ - "988814dc6791307398203c22e3b04ac8304aa6d2", + "custom-highlight-container-metrics-001.html": [ + "397718c79c3410602d599174621b5d876066e547", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-highlight-api/painting/custom-highlight-container-metrics-001-ref.html", "==" ] ], {} ] ], - "aspect-ratio-003.html": [ - "45e7cce4d12df47d5f940f48664a34b85206cf72", + "custom-highlight-container-metrics-002.html": [ + "bc5199220488b9c242f30fb56c0bb30ae57dff01", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-highlight-api/painting/custom-highlight-container-metrics-002-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 60 + ], + [ + 0, + 25 + ] + ] + ] + ] + } ] ], - "aspect-ratio-004.html": [ - "a7a6336c24eaedea4b962d34ff46d14c8d281dd5", + "custom-highlight-container-metrics-003.html": [ + "7a7cede8fca6751cb36d14a6162f85fc991adf18", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-highlight-api/painting/custom-highlight-container-metrics-003-ref.html", "==" ] ], {} ] ], - "aspect-ratio-005.html": [ - "70f554ba373152535625697fe604e14f6ad77eaa", + "custom-highlight-container-metrics-004.html": [ + "e1112fe7bdcd9ae59b0a211ed150ebff8567234d", [ - "css/css-grid/grid-items/aspect-ratio-005.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-highlight-api/painting/custom-highlight-container-metrics-004-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 60 + ], + [ + 0, + 25 + ] + ] + ] + ] + } ] ], - "explicitly-sized-grid-item-as-table.html": [ - "53a0979622cdc757e3ab77b98d712c727cec4901", + "custom-highlight-container-metrics-005.html": [ + "b6a5e4af4f8a045c2b94175317470400124f45b0", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-highlight-api/painting/custom-highlight-container-metrics-003-ref.html", "==" ] ], {} ] ], - "grid-auto-margin-and-replaced-item-001.html": [ - "ccf87024bc699d58c9cb4d5e1c610646dc86adc2", + "custom-highlight-container-metrics-006.html": [ + "14b24676016cdbfe06ab4e93d5b90f3ad71ace65", [ null, [ [ - "/css/css-grid/grid-items/grid-auto-margin-and-replaced-item-001-ref.html", + "/css/css-highlight-api/painting/custom-highlight-container-metrics-002-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 60 + ], + [ + 0, + 25 + ] + ] + ] + ] + } ] ], - "grid-img-item-percent-max-height-001.html": [ - "d0d6d04dc7b882ebe1addaca94a4c38231973803", + "custom-highlight-dynamic-container-metrics-001.html": [ + "29efae8f9d9a54344ade854e513f1901785dadef", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-highlight-api/painting/custom-highlight-dynamic-container-metrics-001-ref.html", "==" ] ], {} ] ], - "grid-inline-items-001.html": [ - "09703be7f875dcccd51c95be104f5c96019d90da", + "custom-highlight-dynamic-container-metrics-002.html": [ + "32f78c6d2a5db661502474bd3c615bf64aa9fc44", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-highlight-api/painting/custom-highlight-container-metrics-002-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 60 + ], + [ + 0, + 25 + ] + ] + ] + ] + } ] ], - "grid-inline-items-002.html": [ - "f95c441d7a43bf31cf3a358a2910ac210d4d99d4", + "custom-highlight-dynamic-container-metrics-003.html": [ + "463daf529693761e77d4ea2271e58d89b560557e", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-highlight-api/painting/custom-highlight-container-metrics-003-ref.html", "==" ] ], {} ] ], - "grid-inline-items-003.html": [ - "8758a6a2d1ac0019be2ed9cb249c66716747acae", + "custom-highlight-dynamic-container-metrics-004.html": [ + "54f7a7c178d94450b9daed425df8b37722194d57", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-highlight-api/painting/custom-highlight-container-metrics-003-ref.html", "==" ] ], {} ] ], - "grid-inline-items-inline-blocks-001.html": [ - "7a7ac5cba934cb187ba17e86eaa44cb90e7bbd37", + "custom-highlight-dynamic-font-metrics-001.html": [ + "4bddbc02a1da53cc441ddad5d6131cbdde5737b5", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-highlight-api/painting/custom-highlight-font-metrics-001-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 80 + ], + [ + 0, + 4 + ] + ] + ] + ] + } ] ], - "grid-inline-order-property-auto-placement-001.html": [ - "5367ada1297b36ad280c571bbf8b3455ce7af001", + "custom-highlight-dynamic-logical-metrics-001.html": [ + "ff52aed6ab174fa36d6cffaf92ba7aff05901ca5", [ null, [ [ - "/css/css-grid/reference/grid-2x2-blue-yellow-lime-magenta.html", + "/css/css-highlight-api/painting/custom-highlight-logical-metrics-002-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 30 + ], + [ + 0, + 10 + ] + ] + ] + ] + } ] ], - "grid-inline-order-property-auto-placement-002.html": [ - "13f7c340fb188d230a3f7041c88f9054739fce68", + "custom-highlight-font-metrics-001.html": [ + "755409c6b18d1585e3ba10896c3e7ee5537a05ea", [ null, [ [ - "/css/css-grid/reference/grid-2x2-blue-yellow-lime-magenta.html", + "/css/css-highlight-api/painting/custom-highlight-font-metrics-001-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 80 + ], + [ + 0, + 4 + ] + ] + ] + ] + } ] ], - "grid-inline-order-property-auto-placement-003.html": [ - "1cf446cf107073c3669fb5b9bde452bd338177ea", + "custom-highlight-font-metrics-002.html": [ + "58b2db5ce4e9a12b2298c24a1deda18553da6b5f", [ null, [ [ - "/css/css-grid/reference/grid-2x2-blue-yellow-lime-magenta.html", + "/css/css-highlight-api/painting/custom-highlight-font-metrics-002-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 128 + ], + [ + 0, + 8 + ] + ] + ] + ] + } ] ], - "grid-inline-order-property-auto-placement-004.html": [ - "3e9d6aba87e9d948de3b43fa5f76366b890d74c6", + "custom-highlight-font-metrics-003.html": [ + "d1035ed130e1f008716a64fbb9686bb8e4ba203c", [ null, [ [ - "/css/css-grid/reference/grid-2x2-blue-yellow-lime-magenta.html", + "/css/css-highlight-api/painting/custom-highlight-font-metrics-003-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 120 + ], + [ + 0, + 8 + ] + ] + ] + ] + } ] ], - "grid-inline-order-property-auto-placement-005.html": [ - "2dd1b379e8fd6d468ade73b03b2d648554444621", + "custom-highlight-font-metrics-004.html": [ + "fec70e97d312f4c27f58b8229de95357c9925358", [ null, [ [ - "/css/css-grid/reference/grid-2x2-blue-yellow-lime-magenta.html", + "/css/css-highlight-api/painting/custom-highlight-font-metrics-003-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 120 + ], + [ + 0, + 8 + ] + ] + ] + ] + } ] ], - "grid-inline-order-property-painting-001.html": [ - "00236a4c5c027d66b6423154d0f3750c8872b866", + "custom-highlight-font-metrics-005.html": [ + "5b2eb657730cec1e9873209536d94eebcaf11a63", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-highlight-api/painting/custom-highlight-font-metrics-005-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 80 + ], + [ + 0, + 10 + ] + ] + ] + ] + } ] ], - "grid-inline-order-property-painting-002.html": [ - "ffcb8c71342867ca35f0f8cd619549b76e332a1f", + "custom-highlight-logical-metrics-001.html": [ + "0bca0ea6394a0a903e56cfb6c622ffd98f89735d", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-highlight-api/painting/custom-highlight-logical-metrics-001-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 30 + ], + [ + 0, + 10 + ] + ] + ] + ] + } ] ], - "grid-inline-order-property-painting-003.html": [ - "e24cde00d6852f1f74d2efb235a9d83769164acb", + "custom-highlight-logical-metrics-002.html": [ + "9e8acc054db2ad9f96a2f8230eacc9e301a1903c", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-highlight-api/painting/custom-highlight-logical-metrics-002-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 30 + ], + [ + 0, + 10 + ] + ] + ] + ] + } ] ], - "grid-inline-order-property-painting-004.html": [ - "34cbce8fb13d1d80224e4288bc2a6b0aa3fd1b15", + "custom-highlight-painting-001.html": [ + "82b61ec6de07c4d45796785f3e7b559e64a6deab", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-highlight-api/painting/custom-highlight-painting-001-ref.html", "==" ] ], {} ] ], - "grid-inline-order-property-painting-005.html": [ - "4ab1c4a46541b4534ce1e449ee4045f236400d12", + "custom-highlight-painting-002.html": [ + "04b7dadbf83f253988eabb8ae2d1f583e378d9b7", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-highlight-api/painting/custom-highlight-painting-002-ref.html", "==" ] ], {} ] ], - "grid-inline-z-axis-ordering-001.html": [ - "5fa16a50f7ae1309869f1d07a8bc8c30aec9f9a4", + "custom-highlight-painting-003.html": [ + "210f1a230f2040f7c548af4a30386f230132c6a1", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-highlight-api/painting/custom-highlight-painting-003-ref.html", "==" ] ], {} ] ], - "grid-inline-z-axis-ordering-002.html": [ - "b6a59c0b22ff117ecbef9b1a48ac29b91e7c79dd", + "custom-highlight-painting-004-2.html": [ + "1b8ff935a659249872e151e5a26329bc835f275f", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-highlight-api/painting/custom-highlight-painting-004-2-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 88 + ], + [ + 0, + 4 + ] + ] + ] + ] + } ] ], - "grid-inline-z-axis-ordering-003.html": [ - "85d8425e3117237bbe36fa8e3d8db8bf6ba9ac76", + "custom-highlight-painting-004.html": [ + "320617f8d1f8918b4db8515dd34fda6d33d32260", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-highlight-api/painting/custom-highlight-painting-004-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 255 + ], + [ + 0, + 110 + ] + ] + ] + ] + } ] ], - "grid-inline-z-axis-ordering-004.html": [ - "a1c84150a63488a2775ea79874dd4aeb208ecc04", + "custom-highlight-painting-005.html": [ + "f9b728c9c5e81950de5e4f9194720130770ebde7", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-highlight-api/painting/custom-highlight-painting-001-ref.html", "==" ] ], {} ] ], - "grid-inline-z-axis-ordering-005.html": [ - "c7ac09bfd141e52e982616c816990afd2cb7e97b", + "custom-highlight-painting-006.html": [ + "b4369dcacc5c505109d43ea34e945071f402fde3", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-highlight-api/painting/custom-highlight-painting-001-ref.html", "==" ] ], {} ] ], - "grid-inline-z-axis-ordering-overlapped-items-001.html": [ - "dcea53174fd8b71f02d4c4223f8b35c5766cd512", + "custom-highlight-painting-007.html": [ + "6cfdac2c7ef0e205325a1e834ea32daf79457974", [ null, [ [ - "/css/css-grid/reference/grid-filled-blue-yellow-green-overlapped-100px-squares.html", + "/css/css-highlight-api/painting/custom-highlight-painting-001-ref.html", "==" ] ], {} ] ], - "grid-inline-z-axis-ordering-overlapped-items-002.html": [ - "6f360e8a6a9843b380dad0675c44ad0fd5f8d0c9", + "custom-highlight-painting-008.html": [ + "3da1d82ce3b7f68a7cad64df7a556827c3a0a2d0", [ null, [ [ - "/css/css-grid/reference/grid-filled-blue-yellow-green-overlapped-100px-squares.html", + "/css/css-highlight-api/painting/custom-highlight-painting-001-ref.html", "==" ] ], {} ] ], - "grid-inline-z-axis-ordering-overlapped-items-003.html": [ - "10ace57ce473d6188b06a646ba0b257a72dcb3c5", + "custom-highlight-painting-009.html": [ + "cee2394d62b222641a5a578b3e20decafdd7da7f", [ null, [ [ - "/css/css-grid/reference/grid-filled-blue-yellow-green-overlapped-100px-squares.html", + "/css/css-highlight-api/painting/custom-highlight-painting-001-ref.html", "==" ] ], {} ] ], - "grid-inline-z-axis-ordering-overlapped-items-004.html": [ - "5c61954895cd71fcd3af007a3fa894c4abca8abb", + "custom-highlight-painting-010.html": [ + "cdd2daf85ccc499415137e1bd2be9315b75c66e4", [ null, [ [ - "/css/css-grid/reference/grid-filled-blue-yellow-green-overlapped-100px-squares.html", + "/css/css-highlight-api/painting/custom-highlight-painting-001-ref.html", "==" ] ], {} ] ], - "grid-inline-z-axis-ordering-overlapped-items-005.html": [ - "271f4c01b142650d0af0be0c24c72b2bdf0e466a", + "custom-highlight-painting-011.html": [ + "5eef8508b6580a3c20369f2f32d1a407615609af", [ null, [ [ - "/css/css-grid/reference/grid-filled-blue-yellow-green-overlapped-100px-squares.html", + "/css/css-highlight-api/painting/custom-highlight-painting-001-ref.html", "==" ] ], {} ] ], - "grid-inline-z-axis-ordering-overlapped-items-006.html": [ - "87ed91cd7936fcbe80cb62e90dae4b48eee7f61f", + "custom-highlight-painting-012.html": [ + "cc8bb62e1ea93e7619de07a02b38f337db4f556f", [ null, [ [ - "/css/css-grid/reference/grid-filled-blue-yellow-green-overlapped-100px-squares.html", + "/css/css-highlight-api/painting/custom-highlight-painting-001-ref.html", "==" ] ], {} ] ], - "grid-intrinsic-maximums.html": [ - "5b244d3c1170595a2cbd9654cfc7772458d2db55", + "custom-highlight-painting-013.html": [ + "021f1cb19f9f1ff9461bfb1c344bb780b8c3712a", [ null, [ [ - "/css/css-grid/grid-items/grid-intrinsic-maximums-ref.html", + "/css/css-highlight-api/painting/custom-highlight-painting-001-ref.html", "==" ] ], {} ] ], - "grid-item-containing-block-001.html": [ - "1dca0dcaa195c802f2c5ce44090b176f47e7d4b8", + "custom-highlight-painting-014.html": [ + "5313fe0954cbccb824b234bc1d445dfb356c16c9", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-highlight-api/painting/custom-highlight-painting-001-ref.html", "==" ] ], {} ] ], - "grid-item-containing-block-002.html": [ - "664e0691039b3886cb7e5fc1c9b2279477264128", + "custom-highlight-painting-015.html": [ + "62ce114dfa8987a2a58d6e08f023087e3a6f6a38", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-highlight-api/painting/custom-highlight-painting-001-ref.html", "==" ] ], {} ] ], - "grid-item-containing-block-003.html": [ - "0194f3cf6e09b69f9e9c86f18a1b34f19199d0da", + "custom-highlight-painting-016.html": [ + "58b580e6b775fa62c00eafe9194af15c534baded", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-highlight-api/painting/custom-highlight-painting-001-ref.html", "==" ] ], {} ] ], - "grid-item-containing-block-004.html": [ - "b36fbb2bbc8ce403632769e1a098f9560e910221", + "custom-highlight-painting-017.html": [ + "c3184a986ad2d184f3a7cb388de8e57a73299fcc", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/reference/pass_if_pass_below.html", "==" ] ], {} ] ], - "grid-item-inline-contribution-001.html": [ - "ebed26b3326e94bc1384e330a8e1bb3ed93f6ec7", + "custom-highlight-painting-018.html": [ + "95bef09bbe441803e53304ca5e43480ca1093124", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-highlight-api/painting/custom-highlight-painting-001-ref.html", "==" ] ], {} ] ], - "grid-item-inline-contribution-002.html": [ - "bcf4f5f8673cf490d0bc1f302539ac387c7132ed", + "custom-highlight-painting-019.html": [ + "69c0fb817b418621d4677d411ba90a40a20eadbb", [ - "css/css-grid/grid-items/grid-item-inline-contribution-002.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-highlight-api/painting/custom-highlight-painting-019-ref.html", "==" ] ], - {} - ] - ], - "grid-item-inline-contribution-003.html": [ - "8432c1d5e47fdecdafcb5d7aed0bcd75dd307c48", - [ - "css/css-grid/grid-items/grid-item-inline-contribution-003.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 250 + ], + [ + 0, + 6 + ] + ] + ] ] - ], - {} + } ] ], - "grid-item-margins-and-writing-modes-001.html": [ - "5209940a9699d6a108f815f81eb4d3b4527dcf79", + "custom-highlight-painting-020.html": [ + "64ae924aa9ef0146e35bc4fbaa0f82bbfd36cf29", [ null, [ [ - "/css/css-grid/grid-items/grid-item-margins-and-writing-modes-001-ref.html", + "/css/css-highlight-api/painting/custom-highlight-painting-020-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 128 + ], + [ + 0, + 28 + ] + ] + ] + ] + } ] ], - "grid-item-overflow-auto-max-height-percentage.html": [ - "62273b87e49170853bc14e36ecc3fb7b148ff6ac", + "custom-highlight-painting-021.html": [ + "29ee123457bc4e115936b6ea71b1ec88183d4c6b", [ null, [ [ - "/css/css-grid/grid-items/grid-item-overflow-auto-max-height-percentage-ref.html", + "/css/css-highlight-api/painting/custom-highlight-painting-021-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 128 + ], + [ + 0, + 4 + ] + ] + ] + ] + } ] ], - "grid-item-percentage-sizes-001.html": [ - "97532e495c1fd71adbbbcc12642dcd313848fae7", + "custom-highlight-painting-below-grammar.html": [ + "93d2560040b791a0685151cc29587c771fad8c03", [ null, [ [ - "/css/css-grid/grid-items/grid-item-percentage-sizes-001-ref.html", + "/css/css-highlight-api/painting/custom-highlight-painting-below-grammar-ref.html", "==" ] ], {} ] ], - "grid-item-percentage-sizes-002.html": [ - "2ceba537f0ccd4366cd4b7e1e691bb2d5f1e5a52", + "custom-highlight-painting-below-selection-transparency.html": [ + "886fa28f539bc30c04edf4d9adcfeb5692ae3fd2", [ null, [ [ - "/css/css-grid/grid-items/grid-item-percentage-sizes-002-ref.html", + "/css/css-highlight-api/painting/custom-highlight-painting-below-selection-transparency-ref.html", "==" ] ], {} ] ], - "grid-item-percentage-sizes-003.html": [ - "fccf4fe0a6ed1f128ff7ec2b322a4a2916c873b1", + "custom-highlight-painting-below-selection.html": [ + "cd5ad36a690995607c7aedfba5a0a84e77a81fb3", [ null, [ [ - "/css/css-grid/grid-items/grid-item-percentage-sizes-003-ref.html", + "/css/css-highlight-api/painting/custom-highlight-painting-below-selection-ref.html", "==" ] ], {} ] ], - "grid-item-rel-pos-001.html": [ - "d72df4126ddc096036a84199616a35fd49c4cc36", + "custom-highlight-painting-below-target-text.html": [ + "e55ce783de5ecfae4afeaf0450dcab8e9ff3cdf3", [ null, [ [ - "/css/css-grid/grid-items/grid-item-rel-pos-001-ref.html", + "/css/css-highlight-api/painting/custom-highlight-painting-below-target-text-ref.html", "==" ] ], {} ] ], - "grid-item-rel-pos-002.html": [ - "4a4d6c843ac4f82cb1403a15739174ec781634ef", + "custom-highlight-painting-iframe-001.html": [ + "240c112c5dd0c1bf57dd35a3d1e77970b03a94f8", [ null, [ [ - "/css/css-grid/grid-items/grid-item-rel-pos-002-ref.html", + "/css/css-highlight-api/painting/custom-highlight-painting-iframe-001-ref.html", "==" ] ], {} ] ], - "grid-item-script-001.html": [ - "323e9ba3c4fb7a2f02a6f859c0915f456327ce87", + "custom-highlight-painting-iframe-002.html": [ + "388457f9cbf4c7a43154f2f01ae051e2316c318e", [ null, [ [ - "/css/css-grid/reference/grid-item-script-001-ref.html", + "/css/css-highlight-api/painting/custom-highlight-painting-iframe-001-ref.html", "==" ] ], {} ] ], - "grid-items-001.html": [ - "fc9b27be4d1eb62d13afc9da04790da748b1a6ba", + "custom-highlight-painting-iframe-003.html": [ + "8614d35ed68216a69bfacb18e3c5ecc8a118abe6", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-highlight-api/painting/custom-highlight-painting-iframe-003-ref.html", "==" ] ], {} ] ], - "grid-items-002.html": [ - "dbb67db8591af5cefbdbc7179c1344df5acc9b04", + "custom-highlight-painting-iframe-004.html": [ + "d13d75a5614489de00357a89b60c9659e1798383", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-highlight-api/painting/custom-highlight-painting-iframe-004-ref.html", "==" ] ], {} ] ], - "grid-items-003.html": [ - "1cfcbc563d964b80bb4f1c97905b4bd584b7ee3a", + "custom-highlight-painting-iframe-005.html": [ + "d31590c639c9e0d932d89e075d9709359e8282fb", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-highlight-api/painting/custom-highlight-painting-iframe-005-ref.html", "==" ] ], {} ] ], - "grid-items-contribution-negative-margins.html": [ - "7f55bea748af3d61f46b95b0d656ca9a3ef46c1b", + "custom-highlight-painting-iframe-006.html": [ + "2b1e88e6595dee12806691efc472918a81f218c7", [ - "css/css-grid/grid-items/grid-items-contribution-negative-margins.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-highlight-api/painting/custom-highlight-painting-iframe-006-ref.html", "==" ] ], {} ] ], - "grid-items-inline-blocks-001.html": [ - "2824bc59354159f0256f3cebe178979a82748085", + "custom-highlight-painting-inheritance-001.html": [ + "eb5e5e1181192b8e8f513e137f3c0b6e168b5ab8", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-highlight-api/painting/custom-highlight-painting-inheritance-001-ref.html", "==" ] ], {} ] ], - "grid-items-percentage-margins-003.html": [ - "d6805b7b35b6aad0bbed3927a7097497fddf2e87", + "custom-highlight-painting-inheritance-002.html": [ + "fbed69392c8d1200a7e29e27971127ed0d781b09", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-highlight-api/painting/custom-highlight-painting-inheritance-001-ref.html", "==" ] ], {} ] ], - "grid-items-percentage-margins-004.html": [ - "009d655832b727c19b4be1f9f5dadbe02c36ba6f", + "custom-highlight-painting-inheritance-003.html": [ + "e449ebf334ff7f879c03e0795e7c9dc91cd44547", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-highlight-api/painting/custom-highlight-painting-inheritance-003-ref.html", "==" ] ], {} ] ], - "grid-items-percentage-margins-005.html": [ - "4b86153e1b51fb05126e9cbeaa205730723e663d", + "custom-highlight-painting-invalidation-001.html": [ + "aef391ec0f3c749554bc2cf284b18ff78f8bc525", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-highlight-api/painting/custom-highlight-painting-001-ref.html", "==" ] ], {} ] ], - "grid-items-percentage-margins-006.html": [ - "290f3fd7814d0544e341d401a6ed6345cc274529", + "custom-highlight-painting-invalidation-002.html": [ + "99271ff7a0ea2d15e0a4a6d7448cfbcc44d42486", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-highlight-api/painting/custom-highlight-painting-staticrange-001-ref.html", "==" ] ], {} ] ], - "grid-items-percentage-margins-007.html": [ - "78958e01708f57e053cde598b6f7ba99164d7bad", + "custom-highlight-painting-invalidation-003.html": [ + "d1f87223887a4d38235212948d319c18e9e005e3", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-highlight-api/painting/custom-highlight-painting-001-ref.html", "==" ] ], {} ] ], - "grid-items-percentage-margins-008.html": [ - "49a42722c0594b292460061ab781758b20d8e746", + "custom-highlight-painting-invalidation-004.html": [ + "62f05a84abcb9a81ea7ec1fdcbcaad5e1ddf8a17", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-highlight-api/painting/custom-highlight-painting-001-ref.html", "==" ] ], {} ] ], - "grid-items-percentage-margins-009.html": [ - "5fed639ef9c9b26aebdb7e7489a752a0c4c32452", + "custom-highlight-painting-invalidation-005.html": [ + "cabc4c3b9c00282ef632f40c7f4d7092abff9bd1", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-highlight-api/painting/custom-highlight-painting-001-ref.html", "==" ] ], {} ] ], - "grid-items-percentage-margins-010.html": [ - "5d6995f6906e3180cbadefde1ec90242c8ec3c94", + "custom-highlight-painting-invalidation-006.html": [ + "81c2298e1322a103997982bda008c1679e91a033", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-highlight-api/painting/custom-highlight-painting-001-ref.html", "==" ] ], {} ] ], - "grid-items-percentage-margins-011.html": [ - "f2a87e1fb81c2b765bf6d6d62307b8045fa07af5", + "custom-highlight-painting-invalidation-007.html": [ + "f23a869728b3012ccaa8ec87ab9f070cf938fe1c", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-highlight-api/painting/custom-highlight-painting-invalidation-007-ref.html", "==" ] ], {} ] ], - "grid-items-percentage-margins-012.html": [ - "1071cdce5f9a40c4a73c3713dd8b3ef53db23184", + "custom-highlight-painting-overlapping-highlights-001.html": [ + "0b380574bc5df0731605d14f0adb34cd13e61350", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-highlight-api/painting/custom-highlight-painting-overlapping-highlights-001-ref.html", "==" ] ], {} ] ], - "grid-items-percentage-margins-013.html": [ - "cb3b56725b84cf0864a92994a35c6c09c128cfe5", + "custom-highlight-painting-overlapping-highlights-002.html": [ + "2dda273abfe8dfc17be2defec60340a85ac5ac4a", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-highlight-api/painting/custom-highlight-painting-overlapping-highlights-002-ref.html", "==" ] ], {} ] ], - "grid-items-percentage-margins-014.html": [ - "32a171dc9efe787848b35e822a0efa3689018250", + "custom-highlight-painting-prioritization-001.html": [ + "cc2a53be54ee0413c5c0d1ffdc9fc305af5c07c6", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-highlight-api/painting/custom-highlight-painting-001-ref.html", "==" ] ], {} ] ], - "grid-items-percentage-paddings-003.html": [ - "970f83c1edccc0a564dec28770a5c1a76317b3de", + "custom-highlight-painting-prioritization-002.html": [ + "756368a8e61209f42d387916808e50b72430eed7", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-highlight-api/painting/custom-highlight-painting-001-ref.html", "==" ] ], {} ] ], - "grid-items-percentage-paddings-004.html": [ - "60b08630df9846acd02ab42cec5ed4b18296e76d", + "custom-highlight-painting-prioritization-003.html": [ + "1c7abf47493dbef17da60981617031de9da7d8fa", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-highlight-api/painting/custom-highlight-painting-prioritization-003-ref.html", "==" ] ], {} ] ], - "grid-items-percentage-paddings-005.html": [ - "6c67080f7a9ae5c7f3691c48cd541f427445f7cf", + "custom-highlight-painting-priority-text-decoration-001.html": [ + "7ab318b5a118c46af4e4a01f146240d433fa8a5d", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-highlight-api/painting/custom-highlight-painting-priority-text-decoration-001-ref.html", "==" ] ], {} ] ], - "grid-items-percentage-paddings-006.html": [ - "b17a5690241a4ec1f06c0d1512e2363aebbf4258", + "custom-highlight-painting-staticrange-001.html": [ + "ee81bb89d713b6df203b00a0b92d67b2da7800b1", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-highlight-api/painting/custom-highlight-painting-staticrange-001-ref.html", "==" ] ], {} ] ], - "grid-items-percentage-paddings-007.html": [ - "a49956390dded6ec0cdcee1352ed33d10e5cb27e", + "custom-highlight-painting-staticrange-002.html": [ + "43a0b06c35e9cfda39f7be2c33c779c8f0422686", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-highlight-api/painting/custom-highlight-painting-001-ref.html", "==" ] ], {} ] ], - "grid-items-percentage-paddings-008.html": [ - "da9328bebc28ff9f3440d3629d6ec507cdc9a3f0", + "custom-highlight-painting-staticrange-003.html": [ + "11de279fd61f3a41cbdda8b09c554b8912eaa999", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-highlight-api/painting/custom-highlight-painting-001-ref.html", "==" ] ], {} ] ], - "grid-items-percentage-paddings-009.html": [ - "5d86919be298d8e024d890ab2de3938d9ea4fba6", + "custom-highlight-painting-staticrange-004.html": [ + "c79943c4d9ab69d19933abbf7a1ba6da7bbe68a1", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-highlight-api/painting/custom-highlight-painting-staticrange-004-ref.html", "==" ] ], {} ] ], - "grid-items-percentage-paddings-010.html": [ - "18c8a9b7c81d45d17c5fc21a0c39494e7169568e", + "custom-highlight-painting-staticrange-005.html": [ + "9ffe2cf26bc35e2ff1fa2cd0ac547749dfbc00bf", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-highlight-api/painting/custom-highlight-painting-001-ref.html", "==" ] ], {} ] ], - "grid-items-percentage-paddings-011.html": [ - "a6aaed5ddf0676a44fc1cbffbd13d7e8d6f8ebef", + "custom-highlight-painting-text-decoration-001.html": [ + "72201e6e782362df53765264188b0f7e96fdd927", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-highlight-api/painting/custom-highlight-painting-text-decoration-001-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 255 + ], + [ + 0, + 27 + ] + ] + ] + ] + } ] ], - "grid-items-percentage-paddings-012.html": [ - "771a1c8fef11851812e73347193c1aeca31c79c1", + "custom-highlight-painting-text-decoration-dynamic-001.html": [ + "050c7c77ce7d506148a0525b177fd40189b93ed0", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-highlight-api/painting/custom-highlight-painting-text-decoration-dynamic-001-ref.html", "==" ] ], {} ] ], - "grid-items-percentage-paddings-013.html": [ - "5e6ff096469e6d2ac1b1cb55eba83e21ddc3c47c", + "custom-highlight-painting-text-shadow.tentative.html": [ + "b0952dfb9b3fdfe2abc7f093884efa2ae861cea7", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-highlight-api/painting/custom-highlight-painting-001-ref.html", "==" ] ], {} ] ], - "grid-items-percentage-paddings-014.html": [ - "2a9bd67ec4e9bfd7e183108b6fb96239b69fe79c", + "custom-highlight-painting-vertical-writing-mode-001.html": [ + "f2a0efcc874f7d1017c02c55bfe95f2c51f1bea7", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-highlight-api/painting/custom-highlight-painting-vertical-writing-mode-001-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 255 + ], + [ + 0, + 20 + ] + ] + ] + ] + } ] ], - "grid-items-sizing-alignment-001.html": [ - "033d292ce61026251ada1812d195412e5d0f5672", - [ - null, + "invalidation": { + "css-highlight-invalidation-001.html": [ + "d885424765d3934eb2187d78a2f0791158441c8b", [ + null, [ - "/css/css-grid/grid-items/grid-items-sizing-alignment-001-ref.html", - "==" - ] - ], - {} + [ + "/css/css-highlight-api/painting/invalidation/css-highlight-invalidation-001-ref.html", + "==" + ] + ], + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 56 + ], + [ + 0, + 10 + ] + ] + ] + ] + } + ] ] - ], - "grid-layout-grid-in-grid.html": [ - "605494dd27ca99cdab4d74868e5e4c6277711c78", + } + } + }, + "css-images": { + "color-stop-currentcolor.html": [ + "e3074e398fe80446e9537c445c1e1e073a0cb1bb", + [ + null, + [ + [ + "/css/css-images/color-stop-currentcolor-ref.html", + "==" + ] + ], + {} + ] + ], + "conic-gradient-angle-negative.html": [ + "5a7030d0ff098d020864ccd16856119026322369", + [ + "css/css-images/conic-gradient-angle-negative.html", [ - null, [ + "/css/css-images/reference/200x200-blue-black-green-red.html", + "==" + ] + ], + { + "fuzzy": [ [ - "/css/css-grid/reference/grid-layout-grid-in-grid-ref.html", - "==" + null, + [ + [ + 1, + 1 + ], + [ + 40000, + 40000 + ] + ] ] - ], - {} - ] - ], - "grid-layout-z-order-a.html": [ - "b5e1dec6d5b9f46816fa07b987cd3dffaf396f3e", + ] + } + ] + ], + "conic-gradient-angle.html": [ + "ba37ec15e1e4ad6651a5b8e039884d0980d897ca", + [ + "css/css-images/conic-gradient-angle.html", [ - null, [ + "/css/css-images/reference/200x200-blue-black-green-red.html", + "==" + ] + ], + { + "fuzzy": [ [ - "/css/css-grid/reference/grid-layout-z-order-ref.html", - "==" + null, + [ + [ + 1, + 1 + ], + [ + 40000, + 40000 + ] + ] ] - ], - {} - ] - ], - "grid-layout-z-order-b.html": [ - "e4fdc89e5f33359bd73912da24773efb5e273c12", + ] + } + ] + ], + "conic-gradient-center.html": [ + "7e810270567dc7ec63157054d6d6415d38d415e4", + [ + "css/css-images/conic-gradient-center.html", [ - null, [ + "/css/css-images/conic-gradient-center-ref.html", + "==" + ] + ], + { + "fuzzy": [ [ - "/css/css-grid/reference/grid-layout-z-order-ref.html", - "==" + null, + [ + [ + 1, + 1 + ], + [ + 40000, + 40000 + ] + ] ] - ], - {} - ] - ], - "grid-minimum-size-grid-items-001.html": [ - "2965fd8fb15f1fee1029677f851e8f24ef6e3426", + ] + } + ] + ], + "cross-fade-basic.html": [ + "be396e52785a91e8b1c678d5596f9cae061e4184", + [ + null, [ - null, [ + "/css/css-images/cross-fade-basic-ref.html", + "==" + ] + ], + { + "fuzzy": [ [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" + null, + [ + [ + 0, + 1 + ], + [ + 0, + 10000 + ] + ] ] - ], - {} - ] - ], - "grid-minimum-size-grid-items-002.html": [ - "39b9d033a4bc6c70f4f3c4740d9a7db9787b4de0", + ] + } + ] + ], + "cross-fade-natural-size.html": [ + "9a62c61aa6d5eca37dbedad2cdd4ad3b12d91006", + [ + null, [ - null, [ + "/css/css-images/cross-fade-natural-size-ref.html", + "==" + ] + ], + { + "fuzzy": [ [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" + null, + [ + [ + 0, + 1 + ], + [ + 0, + 300000 + ] + ] ] - ], - {} - ] - ], - "grid-minimum-size-grid-items-003.html": [ - "19ea84c549e3c3e2fe23fb2267678f88ff458e88", + ] + } + ] + ], + "cross-fade-premultiplied-alpha.html": [ + "23d78428118b0550ec95a1f3d9573eb2d95032ba", + [ + null, [ - null, [ + "/css/css-images/cross-fade-premultiplied-alpha-ref.html", + "==" + ] + ], + { + "fuzzy": [ [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" + null, + [ + [ + 1, + 1 + ], + [ + 40000, + 40000 + ] + ] ] - ], - {} - ] - ], - "grid-minimum-size-grid-items-004.html": [ - "34764652a7a14f8f7027e778ac88241d4b342b40", + ] + } + ] + ], + "cross-fade-target-alpha.html": [ + "a10a2bfe8dff5d4cd0fbd9e834ec27e2cc366870", + [ + null, [ - null, [ + "/css/css-images/cross-fade-target-alpha-ref.html", + "==" + ] + ], + { + "fuzzy": [ [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" + null, + [ + [ + 0, + 8 + ], + [ + 0, + 300000 + ] + ] ] - ], - {} - ] - ], - "grid-minimum-size-grid-items-005.html": [ - "d7ac67af4d19518b1edc0d72843e202805f16e20", + ] + } + ] + ], + "css-image-fallbacks-and-annotations.html": [ + "3a0e5e02da935fb72bab2e9feda65c2e9627c6fd", + [ + null, + [ + [ + "/css/css-images/css-image-fallbacks-and-annotations-ref.html", + "==" + ] + ], + {} + ] + ], + "css-image-fallbacks-and-annotations002.html": [ + "4fd340aba2c55f90e50e22b407043b51156010fa", + [ + null, + [ + [ + "/css/css-images/css-image-fallbacks-and-annotations-ref.html", + "==" + ] + ], + {} + ] + ], + "css-image-fallbacks-and-annotations003.html": [ + "c71f7328a0f67681fc92750e918c9c069316c11f", + [ + null, + [ + [ + "/css/css-images/css-image-fallbacks-and-annotations-ref.html", + "==" + ] + ], + {} + ] + ], + "css-image-fallbacks-and-annotations004.html": [ + "f72627027e9d9a2ed2f7343117ad4c6d0b66cbd3", + [ + null, + [ + [ + "/css/css-images/css-image-fallbacks-and-annotations-ref.html", + "==" + ] + ], + {} + ] + ], + "css-image-fallbacks-and-annotations005.html": [ + "584cba76884acf41c9159af8ee1886e49d7ab1e5", + [ + null, + [ + [ + "/css/css-images/css-image-fallbacks-and-annotations-ref.html", + "==" + ] + ], + {} + ] + ], + "gradient": { + "color-scheme-dependent-color-stops.html": [ + "f95a557703cddd0a629c4f853df618462d368114", [ null, [ [ - "/css/css-grid/grid-items/ref-filled-green-100px-square-image.html", + "/css/css-images/gradient/color-scheme-dependent-color-stops-ref.html", "==" ] ], {} ] ], - "grid-minimum-size-grid-items-006.html": [ - "69bbc7c09810f43720b99735959f8fbfe78207fe", + "css-color-4-colors-default-to-oklab-gradient.html": [ + "2b1edca0da1e168c3fa921202c54346b911f354a", [ null, [ [ - "/css/css-grid/grid-items/ref-filled-green-100px-square-image.html", + "/css/css-images/gradient/oklab-gradient-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 1, + 12 + ], + [ + 0, + 24000 + ] + ] + ] + ] + } ] ], - "grid-minimum-size-grid-items-007.html": [ - "8899ca1c7ae18bf88b74617df84ed5914b4a8631", + "gradient-eval-001.html": [ + "98a9d9234588e5de74a66c09d638d1448814e3fd", [ null, [ [ - "/css/css-grid/grid-items/ref-filled-green-100px-square-image.html", + "/css/css-images/gradient/gradient-eval-001-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 1, + 2 + ], + [ + 0, + 10000 + ] + ] + ] + ] + } ] ], - "grid-minimum-size-grid-items-008.html": [ - "c945490c480e6bdce14832b1c278be427b683a39", + "gradient-eval-002.html": [ + "5a0790ab0d71f8a2fca25e8b3fcda59f4681f186", [ null, [ [ - "/css/css-grid/grid-items/ref-filled-green-100px-square-image.html", + "/css/css-images/gradient/gradient-eval-002-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 1, + 2 + ], + [ + 0, + 10000 + ] + ] + ] + ] + } ] ], - "grid-minimum-size-grid-items-009.html": [ - "77d8979cbdde57728139ac9744e9aa2ee70c4f44", + "gradient-eval-003.html": [ + "86f76a7365cd83a38445487d618f9e8fb44aa710", [ null, [ [ - "/css/css-grid/grid-items/ref-filled-green-100px-square-image.html", + "/css/css-images/gradient/gradient-eval-003-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 1, + 2 + ], + [ + 0, + 10000 + ] + ] + ] + ] + } ] ], - "grid-minimum-size-grid-items-010.html": [ - "a2406a53551021f1a52d9d3eaa1fddd3662676e4", + "gradient-eval-004.html": [ + "ada406fd2a0ec8bea1af74daeafc95563174ac1f", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-images/gradient/gradient-eval-004-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 1, + 2 + ], + [ + 0, + 10000 + ] + ] + ] + ] + } ] ], - "grid-minimum-size-grid-items-011.html": [ - "d769cdee5229f9e97a9dd6146cf328aa31a50810", + "gradient-eval-005.html": [ + "1165fcb5a69e1e37694f5daeb84f6bae265d62ef", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-images/gradient/gradient-eval-005-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 1, + 2 + ], + [ + 0, + 10000 + ] + ] + ] + ] + } ] ], - "grid-minimum-size-grid-items-012.html": [ - "2a39c9bda1648b5c1e91aa33fb8e7a47babb2278", + "gradient-eval-006.html": [ + "e719d2e110a3cdfda5d7f08ec10237bc0fb02dc8", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-images/gradient/gradient-eval-006-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 1, + 2 + ], + [ + 0, + 10000 + ] + ] + ] + ] + } ] ], - "grid-minimum-size-grid-items-013.html": [ - "813f4a15a833836145da6448bc366e5091896a5b", + "gradient-eval-007.html": [ + "e85fec2b4de87c12e7d895fe98a774adee5940e9", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-images/gradient/gradient-eval-007-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 1, + 2 + ], + [ + 0, + 10000 + ] + ] + ] + ] + } ] ], - "grid-minimum-size-grid-items-014.html": [ - "09e3fd581801af3d0313536c18a94e9b2ff5e056", + "gradient-eval-008.html": [ + "5201062f8e3dfdeed5ca88173bf29eb61a011064", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-images/gradient/gradient-eval-008-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 1, + 2 + ], + [ + 0, + 10000 + ] + ] + ] + ] + } ] ], - "grid-minimum-size-grid-items-015.html": [ - "0d36aaa8229a5cddb69296b8c0f787aa9b991cbe", + "gradient-eval-009.html": [ + "d361bdc3f1c4969b316820eaa431b76be7e1c354", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-images/gradient/gradient-eval-009-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 1, + 2 + ], + [ + 0, + 10000 + ] + ] + ] + ] + } ] ], - "grid-minimum-size-grid-items-016.html": [ - "26a357273804e6dd31ebb3bdca0991d5fbb957a5", + "gradient-none-interpolation.html": [ + "06d7be6e66b6a08132fa9474cd51ea3817300de0", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-images/gradient/gradient-none-interpolation-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 1, + 1 + ], + [ + 0, + 5000 + ] + ] + ] + ] + } ] ], - "grid-minimum-size-grid-items-017.html": [ - "4cb74022aaf4b45901deb8e2920e5b3e443f0982", + "gradient-single-stop-longer-hue-hsl.html": [ + "bbadccb53e8b0960118cc015255af40597e7c61c", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-images/gradient/gradient-single-stop-longer-hue-hsl-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 15 + ], + [ + 0, + 90000 + ] + ] + ] + ] + } ] ], - "grid-minimum-size-grid-items-018.html": [ - "4e944295abc7752be46cf795a4dd7324e1715fe1", + "gradient-single-stop-longer-hue-oklch.html": [ + "abe6604fc4b8ba02f0b9bc8112b6730202fd7096", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-images/gradient/gradient-single-stop-longer-hue-oklch-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 15 + ], + [ + 0, + 90000 + ] + ] + ] + ] + } ] ], - "grid-minimum-size-grid-items-019.html": [ - "ae18e6139915132a01c712a0b9f247588d6e1661", + "legacy-color-gradient.html": [ + "e6af42103b9407221bfeae6e74b5379dc7379441", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-images/gradient/srgb-gradient-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 1, + 2 + ], + [ + 0, + 24000 + ] + ] + ] + ] + } ] ], - "grid-minimum-size-grid-items-020.html": [ - "2e8b47377da6a1dd92c9d28ed5813933784325f3", + "oklab-gradient.html": [ + "338a0c9d3bcf80739f2f2e80b404d8dac7ba464f", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-images/gradient/oklab-gradient-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 1, + 12 + ], + [ + 0, + 24000 + ] + ] + ] + ] + } ] ], - "grid-order-property-auto-placement-001.html": [ - "22ed4957f67969a3809d8388d16d0226d8986a78", + "repeating-gradient-hsl-and-oklch.html": [ + "82e65d1dac7fe268fa6b91a76b47d405bb0d95ea", [ null, [ [ - "/css/css-grid/reference/grid-2x2-blue-yellow-lime-magenta.html", + "/css/css-images/gradient/repeating-gradient-hsl-and-oklch-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 1 + ], + [ + 0, + 2000 + ] + ] + ] + ] + } ] ], - "grid-order-property-auto-placement-002.html": [ - "9ec9809ccd47ca510ff51bcb3d0906ca2a06abc1", + "srgb-gradient.html": [ + "4cdb0f17b7e10f4485ed7fb62bdcaa6a2bb16777", [ null, [ [ - "/css/css-grid/reference/grid-2x2-blue-yellow-lime-magenta.html", + "/css/css-images/gradient/srgb-gradient-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 1, + 2 + ], + [ + 0, + 24000 + ] + ] + ] + ] + } ] ], - "grid-order-property-auto-placement-003.html": [ - "b40f3101d025f47051e9a383729d4dc1ae782183", + "srgb-linear-gradient.html": [ + "a921c6244546e9925d30dc80ea4f884b120514ca", [ null, [ [ - "/css/css-grid/reference/grid-2x2-blue-yellow-lime-magenta.html", + "/css/css-images/gradient/srgb-linear-gradient-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 1, + 10 + ], + [ + 0, + 24000 + ] + ] + ] + ] + } ] ], - "grid-order-property-auto-placement-004.html": [ - "f606c69673504c7cc16b39b07ed3cf2bf55c7315", + "xyz-gradient.html": [ + "6c6a30db143fea93354f404fcd47d768f98d7d22", [ null, [ [ - "/css/css-grid/reference/grid-2x2-blue-yellow-lime-magenta.html", + "/css/css-images/gradient/xyz-gradient-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 1, + 10 + ], + [ + 0, + 24000 + ] + ] + ] + ] + } ] - ], - "grid-order-property-auto-placement-005.html": [ - "f787f0e77042466a20c2c6578b870dc3678c5e90", + ] + }, + "gradient-border-box.html": [ + "2938c5ea99e1e41c64c1d58e69806270318bccf9", + [ + null, + [ + [ + "/css/css-images/gradient-border-box-ref.html", + "==" + ] + ], + {} + ] + ], + "gradient-button.html": [ + "76cd933bcc3c74c10144074cec916f7441fdcd91", + [ + null, + [ + [ + "/css/css-images/gradient-button-ref.html", + "==" + ] + ], + {} + ] + ], + "gradient-content-box.html": [ + "82b42ee8fbefe9c2f161ed41b87ec9d2649018db", + [ + null, + [ + [ + "/css/css-images/gradient-content-box-ref.html", + "==" + ] + ], + {} + ] + ], + "gradient-move-stops.html": [ + "21449bc3002e3390ee6ec2a2b6a4b9c5e54dd0aa", + [ + null, [ - null, [ + "/css/css-images/gradient-move-stops-ref.html", + "==" + ] + ], + {} + ] + ], + "gradient-refcrash.html": [ + "ef0efc61e0e00eedb85bd5cbcbe6d92cfdd40d48", + [ + null, + [ + [ + "/css/reference/blank.html", + "==" + ] + ], + {} + ] + ], + "gradients-with-border.html": [ + "51a5412d2a25e7191f920828bfc392a39b07f266", + [ + null, + [ + [ + "/css/css-images/gradients-with-border-ref.html", + "==" + ] + ], + { + "fuzzy": [ [ - "/css/css-grid/reference/grid-2x2-blue-yellow-lime-magenta.html", - "==" + null, + [ + [ + 0, + 2 + ], + [ + 0, + 11000 + ] + ] ] - ], - {} - ] - ], - "grid-order-property-painting-001.html": [ - "9f9267a796495ada59a520ea097ea03d6d9bfbb2", + ] + } + ] + ], + "gradients-with-transparent.html": [ + "204bc760bd82414851e9447c75d521932141e939", + [ + null, + [ + [ + "/css/css-images/gradients-with-transparent-ref.html", + "==" + ] + ], + {} + ] + ], + "image-orientation": { + "image-orientation-background-image.html": [ + "866e94596020286cf67f2083bc6dc64258af3506", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-images/image-orientation/reference/image-orientation-background-image-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 3 + ], + [ + 0, + 50 + ] + ] + ] + ] + } ] ], - "grid-order-property-painting-002.html": [ - "91093e83a646fdd9a2de15cf2d549fefd1c4fbbe", + "image-orientation-background-position.html": [ + "d90035728b8d62422e504b75420f7550733d8f1a", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-images/image-orientation/reference/image-orientation-background-position-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 5 + ], + [ + 0, + 50 + ] + ] + ] + ] + } ] ], - "grid-order-property-painting-003.html": [ - "5c3e68e805e6085824b0dee408629820ed0f0859", + "image-orientation-background-properties-border-radius.html": [ + "d7ddabf966392e786fa21983a24a7d92631c34f3", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-images/image-orientation/reference/image-orientation-background-properties-border-radius-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 3 + ], + [ + 0, + 331 + ] + ] + ] + ] + } ] ], - "grid-order-property-painting-004.html": [ - "7b2849b0e06767a8f7ab382fe97a3b2ec3e802ec", + "image-orientation-background-properties.html": [ + "431fba1330eb0a37ff3aae7ee2bcd4835edfb79e", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-images/image-orientation/reference/image-orientation-background-properties-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 100 + ], + [ + 0, + 313 + ] + ] + ] + ] + } ] ], - "grid-order-property-painting-005.html": [ - "be09be68a794225694b0253e983c0ee879332ab7", + "image-orientation-border-image.html": [ + "29ff38cc489abba6b31727b163698576bc7a7cb7", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-images/image-orientation/reference/image-orientation-border-image-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 16 + ], + [ + 0, + 80 + ] + ] + ] + ] + } ] ], - "grid-size-with-orthogonal-child-dynamic.html": [ - "d1223b9fa0c404c61eb32c44ea66b9b99f02919c", + "image-orientation-default.html": [ + "3fefbd073a4d727b787336aafc746924a9f39e0b", [ - "css/css-grid/grid-items/grid-size-with-orthogonal-child-dynamic.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-images/image-orientation/reference/image-orientation-default-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 100 + ], + [ + 0, + 236 + ] + ] + ] + ] + } ] ], - "grid-z-axis-ordering-001.html": [ - "52ad190afddcd252e818a5201df2ed29bb0b4bcd", + "image-orientation-exif-png-2.html": [ + "9c70b08ab814747ae0cc1f8aad3499f5087a8892", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-images/image-orientation/reference/image-orientation-exif-png-ref.html", "==" ] ], {} ] ], - "grid-z-axis-ordering-002.html": [ - "551137965d20b381b4cdeb65ae11cd7e5e9b3a08", + "image-orientation-exif-png-3.html": [ + "536b7d2560c2fb1e595033b5397a654ff68533c2", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-images/image-orientation/reference/image-orientation-exif-png-ref.html", "==" ] ], {} ] ], - "grid-z-axis-ordering-003.html": [ - "1934144660f27059992f9870f32eed6471268ab2", + "image-orientation-exif-png.html": [ + "85d807e39869cfc5f847bb7454b2465de9eb8c40", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-images/image-orientation/reference/image-orientation-exif-png-ref.html", "==" ] ], {} ] ], - "grid-z-axis-ordering-004.html": [ - "2defd235d10ceaa89e65db54e7aa2a29d2b69deb", + "image-orientation-from-image-composited-dynamic1.html": [ + "b42b010d6200bb9bb04d1fe99f3116f1b2e386e4", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-images/image-orientation/reference/image-orientation-from-image-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 100 + ], + [ + 0, + 236 + ] + ] + ] + ] + } ] ], - "grid-z-axis-ordering-005.html": [ - "4bc7e116d803f182bd004f34a1e000d8f5ef055d", + "image-orientation-from-image-composited-dynamic2.html": [ + "39f23621a77d2b89312997cef282d7b6d8e77694", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-images/image-orientation/reference/image-orientation-none-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 100 + ], + [ + 0, + 123 + ] + ] + ] + ] + } ] ], - "grid-z-axis-ordering-overlapped-items-001.html": [ - "76e379cb538db682558fe2b6d357dfbf2d1fcab0", + "image-orientation-from-image-composited.html": [ + "4e5032779d7b9012494f13a687122e996b3e6db7", [ null, [ [ - "/css/css-grid/reference/grid-filled-blue-yellow-green-overlapped-100px-squares.html", + "/css/css-images/image-orientation/reference/image-orientation-from-image-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 100 + ], + [ + 0, + 236 + ] + ] + ] + ] + } ] ], - "grid-z-axis-ordering-overlapped-items-002.html": [ - "16a482136421f59ca9a9357f00db92d1ecaf6f7d", + "image-orientation-from-image-content-images.html": [ + "a5be8c2277c70ed9bdda3dec497adb63af350798", [ null, [ [ - "/css/css-grid/reference/grid-filled-blue-yellow-green-overlapped-100px-squares.html", + "/css/css-images/image-orientation/reference/image-orientation-from-image-content-images-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 5 + ], + [ + 0, + 250 + ] + ] + ] + ] + } ] ], - "grid-z-axis-ordering-overlapped-items-003.html": [ - "46317b1987f971e15c7fafac0532c201a54225fd", + "image-orientation-from-image-dynamic1.html": [ + "d97492b7f1fa3e4c088e7c451d7835a831d26a96", [ null, [ [ - "/css/css-grid/reference/grid-filled-blue-yellow-green-overlapped-100px-squares.html", + "/css/css-images/image-orientation/reference/image-orientation-from-image-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 100 + ], + [ + 0, + 236 + ] + ] + ] + ] + } ] ], - "grid-z-axis-ordering-overlapped-items-004.html": [ - "74b8ec020990f71ad956ca6b72f2cb19fe99268f", + "image-orientation-from-image-dynamic2.html": [ + "ee4c3ff1fbfd7c6ce0e8414ef6b6628ee645691d", [ null, [ [ - "/css/css-grid/reference/grid-filled-blue-yellow-green-overlapped-100px-squares.html", + "/css/css-images/image-orientation/reference/image-orientation-none-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 100 + ], + [ + 0, + 123 + ] + ] + ] + ] + } ] ], - "grid-z-axis-ordering-overlapped-items-005.html": [ - "bae5b238c687daea45e3ddd7915f55648e19fc5e", + "image-orientation-from-image-embedded-content.html": [ + "a07db17a5de801565578e4981d57c18f4c2f4a80", [ null, [ [ - "/css/css-grid/reference/grid-filled-blue-yellow-green-overlapped-100px-squares.html", + "/css/css-images/image-orientation/reference/image-orientation-from-image-embedded-content-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 5 + ], + [ + 0, + 200 + ] + ] + ] + ] + } ] ], - "grid-z-axis-ordering-overlapped-items-006.html": [ - "3424d0c86b655f010c31444ecc701e530fdd871f", + "image-orientation-from-image.html": [ + "00d87fc406951f75f1b041e6e42f31fc6175bed1", [ null, [ [ - "/css/css-grid/reference/grid-filled-blue-yellow-green-overlapped-100px-squares.html", + "/css/css-images/image-orientation/reference/image-orientation-from-image-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 100 + ], + [ + 0, + 236 + ] + ] + ] + ] + } ] ], - "item-with-table-with-infinite-max-intrinsic-width.html": [ - "3bf98c4a58391947b4eb68cb7b019edde59e31d2", + "image-orientation-iframe.html": [ + "69cfb5ceae4fce69c0e677aaaf9fa13f4e9de1f8", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-images/image-orientation/reference/image-orientation-iframe-ref.html", "==" ] ], {} ] ], - "percentage-margin-dynamic.html": [ - "ed1edc4ba6f9302f2e77bff0b5c96f2ab6ae0350", + "image-orientation-img-object-fit.html": [ + "5551eb938455a3f56e2860c9d2af24dde12e1b98", [ - "css/css-grid/grid-items/percentage-margin-dynamic.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-images/image-orientation/reference/image-orientation-img-object-fit-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 5 + ], + [ + 0, + 375 + ] + ] + ] + ] + } ] ], - "percentage-size-indefinite-replaced.html": [ - "3610f2e2c992b075d203bc5bfceb400c7b4fca0d", + "image-orientation-list-style-image.html": [ + "ac735626dbd1ec8a0743cf480bddc40d85e93149", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-images/image-orientation/reference/image-orientation-list-style-image-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 3 + ], + [ + 0, + 50 + ] + ] + ] + ] + } ] ], - "percentage-size-replaced-subitems-001.html": [ - "190277a1ed1e409540410eb43bf5be0d64c142cf", + "image-orientation-mask-image.html": [ + "36247f0b26bdba4122f358e8ee3899728cc70e10", [ null, [ [ - "/css/css-grid/grid-items/percentage-size-replaced-subitems-001-ref.html", + "/css/css-images/image-orientation/reference/image-orientation-mask-image-ref.html", "==" ] ], - {} - ] - ], - "percentage-size-subitems-001.html": [ - "ad009906191a268c4546b2129c3c0af2352ea318", - [ - null, - [ - [ - "/css/css-grid/grid-items/percentage-size-subitems-001-ref.html", - "==" - ] - ], - {} - ] - ], - "percentage-size-subitems-002.html": [ - "17f57bf39d1910bdc02fd9fd4f1c9865c63cc109", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square-only.html", - "==" + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 2 + ], + [ + 0, + 27 + ] + ] + ] ] - ], - {} + } ] ], - "remove-svg-grid-item-001.html": [ - "5e196c82c64bb52ee5b445b664eb5bc0dbd60573", + "image-orientation-none-content-images.html": [ + "ed1657505ccdd05140262d1b7b22be8e4087be52", [ null, [ [ - "/css/css-grid/reference/grid-item-script-001-ref.html", + "/css/css-images/image-orientation/reference/image-orientation-none-content-images-ref.html", "==" ] ], - {} - ] - ], - "replaced-element-001.html": [ - "b29b67a01aa47b32b13f7866fb8f03efe07bbd0c", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 5 + ], + [ + 0, + 150 + ] + ] + ] ] - ], - {} + } ] ], - "replaced-element-002.html": [ - "b8101c439995b77005934bca209090639af6942f", + "image-orientation-none-cross-origin-canvas.html": [ + "9753e9ab379bd8e3245ad960bb4c8a04fb556c6c", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-images/image-orientation/reference/image-orientation-none-cross-origin-canvas-ref.html", "==" ] ], {} ] ], - "replaced-element-007.html": [ - "61284df75858851aba1707dde375ad2e19556810", + "image-orientation-none-cross-origin-svg.html": [ + "4fc9474edf2526974cd6381fd7b001a059c40f6e", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-images/image-orientation/reference/image-orientation-none-cross-origin-svg-ref.html", "==" ] ], {} ] ], - "replaced-element-010.html": [ - "83672297f99aae1c737372d1b1560ffd6a9ab2d3", + "image-orientation-none-cross-origin.html": [ + "ec139d4e229224de8c9953ecf748af2cf28cb197", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-images/image-orientation/reference/image-orientation-none-cross-origin-ref.html", "==" ] ], {} ] ], - "replaced-element-011.html": [ - "c5f5c301a29882286542419eefc4c90ce66b1667", + "image-orientation-none-image-document.html": [ + "05dd66e1e3e50a6a20759fc545dcaa0e6e739490", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-images/image-orientation/reference/image-orientation-none-image-document-ref.html", "==" ] ], - {} - ] - ], - "replaced-element-012.html": [ - "c26ce033788b819e84da927e3c4e147c085a2e8a", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square-only.html", - "==" + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 100 + ], + [ + 0, + 236 + ] + ] + ] ] - ], - {} + } ] ], - "replaced-element-013.html": [ - "c6c3ef66c3be55fcb5524726562cf4d434b9887a", + "image-orientation-none.html": [ + "d689b5af06f2ec3d0c9c74e902ee70ca664e48a8", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", - "==" - ] - ], - {} - ] - ], - "replaced-element-014.html": [ - "4aa10414d34f223c707a6206916f724738f05fcf", - [ - "css/css-grid/grid-items/replaced-element-014.html", - [ - [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-images/image-orientation/reference/image-orientation-none-ref.html", "==" ] ], - {} - ] - ], - "replaced-element-015.html": [ - "adb9af565481d0d517fb0af6e24a006eaa669dda", - [ - "css/css-grid/grid-items/replaced-element-015.html", - [ - [ - "/css/css-grid/reference/replaced-element-015-ref.html", - "==" + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 100 + ], + [ + 0, + 123 + ] + ] + ] ] - ], - {} + } ] ], - "table-with-infinite-max-intrinsic-width.html": [ - "877e982cd4c5987f131587da33a23f3b7a49d538", + "svg-image-orientation-aspect-ratio.html": [ + "d378dbfe546d0264e971157fa00b5938158d26c3", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-images/image-orientation/reference/svg-image-orientation-aspect-ratio-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 3 + ], + [ + 0, + 1432 + ] + ] + ] + ] + } ] ], - "whitespace-in-grid-item-001.html": [ - "f79baab6f058faea696b63d4be9fa9894228e17c", + "svg-image-orientation-none.html": [ + "f585cdb76bf8b30d5d34132dec1f8992c24122f1", [ null, [ [ - "/css/css-grid/grid-items/whitespace-in-grid-item-001-ref.html", + "/css/css-images/image-orientation/reference/svg-image-orientation-none-ref.html", "==" ] ], - {} - ] - ] - }, - "grid-model": { - "column-property-should-not-apply-on-grid-container-001.html": [ - "a79536258644b44254c08f15d20cb0e656c46317", - [ - null, - [ - [ - "/css/css-grid/grid-model/reference/column-property-should-not-apply-on-grid-container-001-ref.html", - "==" + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 5 + ], + [ + 0, + 100 + ] + ] + ] ] - ], - {} + } ] ], - "display-grid.html": [ - "7c6b743327ebfa74a841add8c51a5ea7ffb73ec4", + "svg-image-orientation.html": [ + "758e900e91cd4b7659d741212f0ea04f3d0310fe", [ null, [ [ - "/css/css-grid/reference/display-grid-ref.html", + "/css/css-images/image-orientation/reference/svg-image-orientation-ref.html", "==" ] ], - {} - ] - ], - "display-inline-grid.html": [ - "e080ed8c95ce5ab8e1f9d89a3ef8523de8bd88cc", - [ - null, - [ - [ - "/css/css-grid/reference/display-inline-grid-ref.html", - "==" + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 5 + ], + [ + 0, + 200 + ] + ] + ] ] - ], - {} + } ] - ], - "grid-areas-overflowing-grid-container-001.html": [ - "6ee8231c937c216ac5bc947a78ac0b0318db3887", + ] + }, + "image-rendering-border-image.html": [ + "5f4c268d6b9bdd06c221a88b9179fcf64ef2bbf4", + [ + null, [ - null, [ - [ - "/css/css-grid/grid-model/reference/100x100-grey-box-with-scrollbars.html", - "==" - ] - ], - {} - ] - ], - "grid-areas-overflowing-grid-container-002.html": [ - "1abc446e2209269732a979453478b067ddfc5456", + "/css/css-images/image-rendering-border-image-notref.html", + "!=" + ] + ], + {} + ] + ], + "image-set": { + "image-set-all-options-invalid.html": [ + "14d3d0b6e551642dc42afef68cb954929cae9ad9", [ null, [ [ - "/css/css-grid/grid-model/reference/100x100-grey-box-with-scrollbars.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "grid-areas-overflowing-grid-container-003.html": [ - "aaba4f924427e07c6f21c9aaf417fb83fdf21151", + "image-set-calc-x-rendering-2.html": [ + "b7c02fce25d45b9b0be8f673bc144a8b4a698450", [ null, [ [ - "/css/css-grid/grid-model/reference/100x100-grey-box-with-scrollbars.html", - "==" - ] - ], - {} - ] - ], - "grid-areas-overflowing-grid-container-004.html": [ - "707056feb3e10b9a24f4bc2c95f2489766452650", - [ - "css/css-grid/grid-model/grid-areas-overflowing-grid-container-004.html", - [ - [ - "/css/css-grid/grid-model/reference/100x100-grey-box-with-vertical-scrollbar.html", - "==" - ] - ], - {} - ] - ], - "grid-areas-overflowing-grid-container-005.html": [ - "0184b399b1e71e994f391ef7340ad35ccd7f90a8", - [ - "css/css-grid/grid-model/grid-areas-overflowing-grid-container-005.html", - [ - [ - "/css/css-grid/grid-model/reference/100x100-grey-box-with-horizontal-scrollbar.html", + "/css/css-images/image-set/reference/image-set-rendering-ref.html", "==" ] ], {} ] ], - "grid-areas-overflowing-grid-container-006.html": [ - "248fc425fb53efc376c551adf1069ceeaed45c88", + "image-set-calc-x-rendering.html": [ + "a5444fd76901a402578eaf54b28a4d0563f90a64", [ null, [ [ - "/css/css-grid/grid-model/reference/100x100-grey-box-with-scrollbars.html", + "/css/css-images/image-set/reference/image-set-rendering-ref.html", "==" ] ], {} ] ], - "grid-areas-overflowing-grid-container-007.html": [ - "0a7d3aa28a5a67faf9827257d86a7e97f3a8cfd9", + "image-set-conic-gradient-rendering.html": [ + "e4f426471a7e11fc935456fac7b71e173d846d38", [ null, [ [ - "/css/css-grid/grid-model/reference/100x100-grey-box.html", + "/css/css-images/image-set/reference/image-set-conic-gradient-rendering-ref.html", "==" ] ], {} ] ], - "grid-areas-overflowing-grid-container-008.html": [ - "df39ed8262fd2e722bc872ba43e13e667361c65e", + "image-set-content-rendering.html": [ + "aa6d1d6f1c84a333bccab9434ddff3204a687567", [ null, [ [ - "/css/css-grid/grid-model/reference/100x100-grey-box.html", - "==" - ] - ], - {} - ] - ], - "grid-areas-overflowing-grid-container-009.html": [ - "367820eaeae700d14f8d23dc23a500a8067918ce", - [ - "css/css-grid/grid-model/grid-areas-overflowing-grid-container-009.html", - [ - [ - "/css/css-grid/grid-model/reference/100x100-grey-box-with-scrollbars.html", + "/css/css-images/image-set/reference/image-set-rendering-ref.html", "==" ] ], {} ] ], - "grid-container-ignores-first-letter-002.html": [ - "42014addf0337221a55c01fbc009347480cca924", + "image-set-dpcm-rendering.html": [ + "c9c4f50b5a62b33f61bd6fcb1437737060d49cd7", [ null, [ [ - "/css/css-grid/grid-model/grid-container-ignores-first-letter-002-ref.html", + "/css/css-images/image-set/reference/image-set-rendering-ref.html", "==" ] ], {} ] ], - "grid-container-scrollbar-001.html": [ - "848ed7d9090b3a6bf5b328346ff9c528ecc208fb", + "image-set-dpi-rendering-2.html": [ + "688c60a688a387e32abaecc07ec109983d1e58d9", [ null, [ [ - "/css/css-grid/grid-model/grid-container-scrollbar-001-ref.html", + "/css/css-images/image-set/reference/image-set-rendering-ref.html", "==" ] ], {} ] ], - "grid-container-scrollbar-vertical-lr-001.html": [ - "aed5d0cf492a39d18a4e18024e32ba05ad87d092", + "image-set-dpi-rendering.html": [ + "3288034d529b61a3b1302eb2960fa1f511354bd5", [ null, [ [ - "/css/css-grid/grid-model/grid-container-scrollbar-vertical-lr-001-ref.html", + "/css/css-images/image-set/reference/image-set-rendering-ref.html", "==" ] ], {} ] ], - "grid-container-scrollbar-vertical-rl-001.html": [ - "e07223df2ae5bf003242211f9378d81ab554f684", + "image-set-dppx-rendering.html": [ + "d111dfb7ff2682071ea3c38d93eadddcac8ebea0", [ null, [ [ - "/css/css-grid/grid-model/grid-container-scrollbar-vertical-rl-001-ref.html", + "/css/css-images/image-set/reference/image-set-rendering-ref.html", "==" ] ], {} ] ], - "grid-container-scrollbars-sizing-001.html": [ - "43b62a9316be8139cefa3f95fa6070907c8e24de", + "image-set-empty-url-rendering.html": [ + "f5b99922216bbb104606834401e634d85ccbe6b8", [ null, [ [ - "/css/css-grid/reference/grid-container-scrollbars-sizing-001-ref.html", + "/css/css-images/image-set/reference/image-set-rendering-ref.html", "==" ] ], {} ] ], - "grid-container-scrollbars-sizing-002.html": [ - "99cc5ee771d32047586268a4fbc7e9b6e3e22277", + "image-set-first-match-rendering.html": [ + "51d6aeeb241dee054c2f36d1221abf5238e8ac60", [ null, [ [ - "/css/css-grid/reference/grid-container-scrollbars-sizing-002-ref.html", + "/css/css-images/image-set/reference/image-set-rendering-ref.html", "==" ] ], {} ] ], - "grid-display-grid-001.html": [ - "3599aa960416f07ed63734b8ff959d997f74d1b9", + "image-set-linear-gradient-rendering.html": [ + "2fc31b95a81e3c46fde0f42edcaad04c1ed6f1b9", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-images/image-set/reference/image-set-linear-gradient-rendering-ref.html", "==" ] ], {} ] ], - "grid-display-inline-grid-001.html": [ - "30104e4220b0f8f2526d4e5a2cf5cd308b225440", + "image-set-negative-resolution-rendering-2.html": [ + "c686b9a6940dd7847f09b7d8c313f76de18214ca", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-images/image-set/reference/image-set-rendering-ref.html", "==" ] ], {} ] ], - "grid-first-letter-001.html": [ - "66eb427cfb95e5ba8f898d9f7afb7aa30f7e924a", + "image-set-negative-resolution-rendering-3.html": [ + "78eec0f2c1240c183759a267c6c969ba7b341b98", [ null, [ [ - "/css/css-grid/reference/grid-text-green-margin-no-collapse-ref.html", + "/css/reference/blank.html", "==" ] ], {} ] ], - "grid-first-letter-002.html": [ - "27aa0256dacd56d219ea9cfe372c50a13a7d3d6d", + "image-set-negative-resolution-rendering.html": [ + "416b6929f28125b61a0e767770308706eeda850c", [ null, [ [ - "/css/css-grid/reference/grid-text-green-margin-no-collapse-ref.html", - "==" - ] - ], - {} - ] - ], - "grid-first-letter-003.html": [ - "12b88c3115ba3e20befdb880ffb226a59306e940", - [ - "css/css-grid/grid-model/grid-first-letter-003.html", - [ - [ - "/css/css-grid/reference/grid-first-letter-green-margin-no-collapse-ref.html", + "/css/css-images/image-set/reference/image-set-rendering-ref.html", "==" ] ], {} ] ], - "grid-first-line-001.html": [ - "9f154eee271608b1a3898fca106433114616a98e", + "image-set-no-res-rendering-2.html": [ + "f588980be330d1aeb00793275fbcc96e13d3626a", [ null, [ [ - "/css/css-grid/reference/grid-text-green-margin-no-collapse-ref.html", + "/css/css-images/image-set/reference/image-set-rendering-ref.html", "==" ] ], {} ] ], - "grid-first-line-002.html": [ - "ea87c875fa1d7d1152089ab3b963591b4dc62e3d", + "image-set-no-res-rendering.html": [ + "577728894d9e62f2ee501d37ee60e715dd236563", [ null, [ [ - "/css/css-grid/reference/grid-text-green-margin-no-collapse-ref.html", - "==" - ] - ], - {} - ] - ], - "grid-first-line-003.html": [ - "47f727de150c871197978893223efdc18efb0571", - [ - "css/css-grid/grid-model/grid-first-line-003.html", - [ - [ - "/css/css-grid/reference/grid-text-green-margin-no-collapse-ref.html", + "/css/css-images/image-set/reference/image-set-rendering-ref.html", "==" ] ], {} ] ], - "grid-float-001.html": [ - "521a3bd6cd7a5526c0c656a0696bdf54375acabb", + "image-set-no-url-rendering.html": [ + "f50ebb676abb3075ef71d0cbae60806745d74f33", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-images/image-set/reference/image-set-rendering-ref.html", "==" ] ], {} ] ], - "grid-floats-no-intrude-001.html": [ - "31eab4ba698a9f2c65d10aaa47fc853aceba6f0b", + "image-set-radial-gradient-rendering.html": [ + "b4e09ea3519be225b66a6db86223f433ac30e469", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-images/image-set/reference/image-set-radial-gradient-rendering-ref.html", "==" ] ], {} ] ], - "grid-floats-no-intrude-002.html": [ - "9c26e021050597761a8db26c8a0e71429e1323e7", + "image-set-rendering-2.html": [ + "fa1749518f4aeadbb4b6c1648349763a32401d6a", [ null, [ [ - "/css/css-grid/grid-model/grid-floats-no-intrude-002-ref.html", + "/css/css-images/image-set/reference/image-set-rendering-ref.html", "==" ] ], {} ] ], - "grid-inline-first-letter-001.html": [ - "bc62c1770d2ba46644aed25b26d3955d6745d0ea", + "image-set-rendering.html": [ + "a105438cc4b3fa121d63d9f33ae42a74c4add73b", [ null, [ [ - "/css/css-grid/reference/grid-text-green-margin-no-collapse-ref.html", + "/css/css-images/image-set/reference/image-set-rendering-ref.html", "==" ] ], {} ] ], - "grid-inline-first-letter-002.html": [ - "afdc0de9a447296fff0252a4dd06fd8466a0bf90", + "image-set-repeating-conic-gradient-rendering.html": [ + "89060996f621a2dfbfde94f2ac9ab2ad48939ed4", [ null, [ [ - "/css/css-grid/reference/grid-text-green-margin-no-collapse-ref.html", - "==" - ] - ], - {} - ] - ], - "grid-inline-first-letter-003.html": [ - "eea15ab585c6764a57c595448d65faf06d09994d", - [ - "css/css-grid/grid-model/grid-inline-first-letter-003.html", - [ - [ - "/css/css-grid/reference/grid-first-letter-green-margin-no-collapse-ref.html", + "/css/css-images/image-set/reference/image-set-repeating-conic-gradient-rendering-ref.html", "==" ] ], {} ] ], - "grid-inline-first-line-001.html": [ - "2df3d559c97d2616d2311156f160639c6e3be360", + "image-set-repeating-linear-gradient-rendering.html": [ + "a9cd6125a9eab02e2da74b9158f16d0fd39eb014", [ null, [ [ - "/css/css-grid/reference/grid-text-green-margin-no-collapse-ref.html", + "/css/css-images/image-set/reference/image-set-repeating-linear-gradient-rendering-ref.html", "==" ] ], {} ] ], - "grid-inline-first-line-002.html": [ - "efdee52d3c966d83e8871bc36d415cb2eca5e3aa", + "image-set-repeating-radial-gradient-rendering.html": [ + "ec8fd54421976d3dcd2b07831a9cf27cdd97d3d7", [ null, [ [ - "/css/css-grid/reference/grid-text-green-margin-no-collapse-ref.html", - "==" - ] - ], - {} - ] - ], - "grid-inline-first-line-003.html": [ - "c76a7f430f979791e358191554c898e2f0fa6819", - [ - "css/css-grid/grid-model/grid-inline-first-line-003.html", - [ - [ - "/css/css-grid/reference/grid-text-green-margin-no-collapse-ref.html", + "/css/css-images/image-set/reference/image-set-repeating-radial-gradient-rendering-ref.html", "==" ] ], {} ] ], - "grid-inline-float-001.html": [ - "8222897e4f11e8e8f8747d0e0278022e4d7745c9", + "image-set-resolution-001.html": [ + "aaa750217d7079f286f01198be0b0f6dfe90ac20", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-images/image-set/image-set-resolution-001-ref.html", "==" ] ], {} ] ], - "grid-inline-floats-no-intrude-001.html": [ - "b15aabab06a93edb136f32582f51189a1bc15905", + "image-set-resolution-002.html": [ + "e5795e172f312a7f88d94ba85467b1f8bc7e88bb", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-images/image-set/image-set-resolution-001-ref.html", "==" ] ], {} ] ], - "grid-inline-margins-no-collapse-001.html": [ - "4260fe89f9ab792e31cd9c063c18528d128ff5bc", + "image-set-resolution-003.html": [ + "734ee05ecd184a532d531e92715a99e8305533c6", [ null, [ [ - "/css/css-grid/reference/grid-text-green-margin-no-collapse-ref.html", + "/css/css-images/image-set/image-set-resolution-001-ref.html", "==" ] ], {} ] ], - "grid-inline-multicol-001.html": [ - "3e51b16f5cbfa092421874d54ace3d9718407518", + "image-set-type-first-match-rendering.html": [ + "eafe5bfb2cc80f18174f4a9f4f2a08963cc95e5d", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-images/image-set/reference/image-set-rendering-ref.html", "==" ] ], {} ] ], - "grid-inline-vertical-align-001.html": [ - "7dbf11c7aee7cf7022d18b517587b31fdef433de", + "image-set-type-rendering-2.html": [ + "23e90ea9e43dbb57cd397c45af98d791c2547761", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-images/image-set/reference/image-set-rendering-ref.html", "==" ] ], {} ] ], - "grid-layout-stale-001.html": [ - "bb81546678cea67020c2f46a470098d6454981d9", + "image-set-type-rendering-3.html": [ + "b47c4d82a3350cceaff5160ca8f21b5943748054", [ null, [ [ - "/css/css-grid/grid-model/reference/grid-layout-stale-001-ref.html", + "/css/css-images/image-set/reference/image-set-rendering-ref.html", "==" ] ], {} ] ], - "grid-layout-stale-002.html": [ - "ea11cd5c5cb5e869493adb908892c3b8f8d7c35d", + "image-set-type-rendering.html": [ + "069e2c867f586c39e505115671bbeb4ea8de8eed", [ null, [ [ - "/css/css-grid/grid-model/reference/grid-layout-stale-002-ref.html", + "/css/css-images/image-set/reference/image-set-rendering-ref.html", "==" ] ], {} ] ], - "grid-margins-no-collapse-001.html": [ - "764cca9ced0077a7376b506f3ef8ca39d8072202", + "image-set-type-skip-unsupported-rendering.html": [ + "4473e816bd17fad8199c7391dedaec164a84dccc", [ null, [ [ - "/css/css-grid/reference/grid-text-green-margin-no-collapse-ref.html", + "/css/css-images/image-set/reference/image-set-rendering-ref.html", "==" ] ], {} ] ], - "grid-margins-no-collapse-002.html": [ - "f644a6fb53c970f723019e2cc0399f63585f0509", + "image-set-type-unsupported-rendering-2.html": [ + "bebc32d87d389a0d19e061eac31f96731f2aa042", [ null, [ [ - "/css/css-grid/grid-model/grid-margins-no-collapse-002-ref.html", + "/css/reference/blank.html", "==" ] ], {} ] ], - "grid-multicol-001.html": [ - "553a33e6a3417557bc6fdb1f34375c4117a2e04f", + "image-set-type-unsupported-rendering.html": [ + "486fcb3a8e04e216ef074b5c63db7d9639bb740b", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/reference/blank.html", "==" ] ], {} ] ], - "grid-overflow-padding-001.html": [ - "6c4a71031f1effd14c7106616cd94d1a4dd21665", + "image-set-unordered-res-rendering.html": [ + "2085b416b6bc8350028c24e11a65cc93a664c46b", [ null, [ [ - "/css/css-grid/grid-model/reference/100x100-grey-box-with-scrollbars.html", + "/css/css-images/image-set/reference/image-set-rendering-ref.html", "==" ] ], {} ] ], - "grid-overflow-padding-002.html": [ - "88bce26a9823b61084cc4d128c77adb95337a742", + "image-set-zero-resolution-rendering-2.html": [ + "ae1c765049a9624e8073678712f74d9004086a68", [ null, [ [ - "/css/css-grid/grid-model/reference/100x100-grey-box-with-scrollbars.html", + "/css/reference/blank.html", "==" ] ], {} ] ], - "grid-vertical-align-001.html": [ - "3536b3a8a04720a5f93a700064f9eabb901fe2a2", + "image-set-zero-resolution-rendering.html": [ + "0da39b7581e8626b14fb164033c87c6c74083779", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/reference/blank.html", "==" ] ], @@ -194245,14008 +194457,13477 @@ ] ] }, - "grid-with-aspect-ratio-uses-content-box-height-for-track-sizing.html": [ - "45e527dd44ae89bb42e87a15ccb6ae62c0a3f918", + "infinite-radial-gradient-refcrash.html": [ + "a3a1e7fb069d311162c5cfa427125bac524ffaa2", [ - "css/css-grid/grid-with-aspect-ratio-uses-content-box-height-for-track-sizing.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-images/infinite-radial-gradient-crash-ref.html", "==" ] ], {} ] ], - "grid-with-content-dynamic-display-001.html": [ - "e9f121b000202f00e81aff0debd3d4b799d616b9", + "linear-gradient-1.html": [ + "aa5a1310c5079a282aaf6d57d5502b1ff77d6808", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-images/linear-gradient-ref.html", "==" ] ], {} ] ], - "grid-with-content-dynamic-display-002.html": [ - "02f536344d86f9572bcf2a095dcdcc4cb56181fa", + "linear-gradient-2.html": [ + "a9dca048b1ae09e4bcc5afe3893d1b45b79e965c", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-images/linear-gradient-ref.html", "==" ] ], {} ] ], - "grid-with-dynamic-img.html": [ - "ff7d2b8069c74e43ec10e72d4709c661e7874d97", + "multiple-position-color-stop-conic-2.html": [ + "f3171bf3fb9823095312ab080ee3d0481a8545f6", [ - "css/css-grid/grid-with-dynamic-img.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-images/multiple-position-color-stop-conic-2-ref.html", "==" ] ], {} ] ], - "grid-with-orthogonal-child-within-flexbox.html": [ - "a0fc9155f06fad9046966b8c00c5e6fd8c050162", + "multiple-position-color-stop-conic.html": [ + "41aa505c879562f90658f0f8fd83f597a62d44d8", [ - "css/css-grid/grid-with-orthogonal-child-within-flexbox.html", + "css/css-images/multiple-position-color-stop-conic.html", [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-images/reference/100x100-blue-green.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 1, + 1 + ], + [ + 10000, + 10000 + ] + ] + ] + ] + } ] ], - "grid-within-flexbox-definite-change.html": [ - "03b3e67b24ab329ebf75a2c74b1b7cf46b3a2d0d", + "multiple-position-color-stop-linear-2.html": [ + "f33ae99c2394816a822b213d6042922bfe930e31", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-images/multiple-position-color-stop-linear-2-ref.html", "==" ] ], {} ] ], - "grid-within-flexbox-indefinite.html": [ - "2724355f0b5936203c24f919e495c4bf4a11badb", + "multiple-position-color-stop-linear.html": [ + "206fbed20928eb434694f96b675b1de460224870", [ - "css/css-grid/grid-within-flexbox-indefinite.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-images/reference/100x100-blue-green.html", "==" ] ], - {} - ] - ], - "implicit-grids": { - "grid-support-grid-auto-columns-rows-001.html": [ - "e61ced340c610401448bdc0c636a835708fa80b9", - [ - null, - [ - [ - "/css/css-grid/reference/grid-support-grid-auto-columns-rows-001-ref.html", - "==" - ] - ], - {} - ] - ], - "grid-support-grid-auto-columns-rows-002.html": [ - "2e90b460194568752c09ff94fd834deb08606fe4", - [ - null, - [ - [ - "/css/css-grid/reference/grid-support-grid-auto-columns-rows-002-ref.html", - "==" - ] - ], - {} - ] - ], - "grid-support-grid-auto-columns-rows-003.html": [ - "452eb494b73e43a263f6f8b115338231bf5050a3", - [ - null, - [ - [ - "/css/css-grid/reference/grid-support-grid-auto-columns-rows-003-ref.html", - "==" - ] - ], - {} - ] - ] - }, - "layout-algorithm": { - "auto-margins-ignored-during-track-sizing-001.html": [ - "2a23b1bd2031e2a3cfc104a90f70ab6c38d2fe64", - [ - null, - [ - [ - "/css/css-grid/layout-algorithm/references/auto-margins-ignored-during-track-sizing-001-ref.html", - "==" - ] - ], - {} - ] - ], - "flex-and-intrinsic-sizes-002.html": [ - "6b2df4e572094d424833e3a342431b11d7f4dc4a", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "flex-sizing-rows-indefinite-height.html": [ - "6625a321d38af2a5d050009661af7cbdd0ff4ab3", - [ - null, - [ + { + "fuzzy": [ [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - { - "fuzzy": [ + null, [ - null, [ - [ - 0, - 1 - ], - [ - 0, - 4309 - ] + 0, + 1 + ], + [ + 0, + 4000 ] ] ] - } - ] - ], - "flex-tracks-with-fractional-size.html": [ - "994149faa65f3035c9da8f849e086394de54d770", - [ - "css/css-grid/layout-algorithm/flex-tracks-with-fractional-size.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-as-flex-item-should-not-shrink-to-fit-001.html": [ - "e0665d56a1a55ecd41a9ae384e822c8662740d39", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-as-flex-item-should-not-shrink-to-fit-002.html": [ - "4ddafecb849aae77d6637939bd52b958392d44ab", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-as-flex-item-should-not-shrink-to-fit-003.html": [ - "73d204490ac82ec1a8ef32adb0c1480e534260dc", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-as-flex-item-should-not-shrink-to-fit-004.html": [ - "c3f9d9c0d161e1dc6ff0b8d7dc19638e0c28fd15", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-as-flex-item-should-not-shrink-to-fit-005.html": [ - "4443314950835c4586f2edd805b47a4074f36c7b", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-as-flex-item-should-not-shrink-to-fit-006.html": [ - "7be46cd3b682af613dd9bd0a1daf4a293ba80619", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-as-flex-item-should-not-shrink-to-fit-007.html": [ - "ab0e591b8fc39a9b08018effb488a34b324fcafa", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-as-flex-item-should-not-shrink-to-fit-008.html": [ - "183a607f53a99b3172cc844828684043bd5555de", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-find-fr-size-restart-algorithm.html": [ - "fc2ebeb10308debd15f9b4dc05a683df42b725a8", - [ - "css/css-grid/layout-algorithm/grid-find-fr-size-restart-algorithm.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-intrinsic-size-dynamic-block-size.html": [ - "4db5080f93ce9c6292e008d8fefb0d4a1599123d", - [ - "css/css-grid/layout-algorithm/grid-intrinsic-size-dynamic-block-size.html", - [ - [ - "/css/reference/ref-filled-green-100px-square-only.html", - "==" - ] - ], - {} - ] - ], - "grid-layout-free-space-unit.html": [ - "10649a963988bb7060aba3a477fe69d443f0a0ea", - [ - null, - [ - [ - "/css/css-grid/reference/grid-layout-basic-ref.html", - "==" - ] - ], - {} - ] - ], - "grid-percent-cols-filled-shrinkwrap-001.html": [ - "8402238f2bbe3c4b9249cc9e2a51df99786ae281", - [ - null, - [ - [ - "/css/css-grid/layout-algorithm/references/grid-percent-cols-filled-shrinkwrap-001-ref.html", - "==" - ] - ], - {} - ] - ], - "grid-percent-cols-spanned-shrinkwrap-001.html": [ - "ec84108cf105acdf26a3d6f89f6cdb37bc1007b0", - [ - null, - [ - [ - "/css/css-grid/layout-algorithm/references/grid-percent-cols-spanned-shrinkwrap-001-ref.html", - "==" - ] - ], - {} - ] - ], - "grid-percent-rows-filled-shrinkwrap-001.html": [ - "a55c24f77dd5a7520cc4ac49e00e896d362d22da", - [ - null, - [ - [ - "/css/css-grid/layout-algorithm/references/grid-percent-rows-filled-shrinkwrap-001-ref.html", - "==" - ] - ], - {} - ] - ], - "grid-percent-rows-spanned-shrinkwrap-001.html": [ - "0c51f08f8207db9201427a5bafcf06be3b7f0720", + ] + } + ] + ], + "multiple-position-color-stop-radial-2.html": [ + "339f5d4b33ab22a0d5640fc02fc4798a93ca9d91", + [ + null, [ - null, [ - [ - "/css/css-grid/layout-algorithm/references/grid-percent-rows-spanned-shrinkwrap-001-ref.html", - "==" - ] - ], - {} - ] - ], - "grid-stretch-respects-min-size-001.html": [ - "29eca9dbc6f5738f7d6f929385453d64dcdf0aea", + "/css/css-images/multiple-position-color-stop-radial-2-ref.html", + "==" + ] + ], + {} + ] + ], + "multiple-position-color-stop-radial.html": [ + "4b4fd95c4ec21307eee1e2f287f1b0db1d6d1490", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-template-flexible-rerun-track-sizing.html": [ - "2db9d643478ff0737becf3a1a4b39705d73ae2b4", + "/css/css-images/reference/100x100-blue-green.html", + "==" + ] + ], + {} + ] + ], + "normalization-conic-2.html": [ + "9856f6b8f2c1472330a97cf79b553e7703cb1df5", + [ + "css/css-images/normalization-conic-2.html", [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 1 - ], - [ - 0, - 4309 - ] - ] - ] - ] - } - ] - ] - }, - "masonry": { - "tentative": { - "align-content": { - "masonry-align-content-001.html": [ - "dfefd998c65c8a071faeef0991f8b9bfe9132a60", - [ - null, - [ - [ - "/css/css-grid/masonry/tentative/align-content/masonry-align-content-001-ref.html", - "==" - ] - ], - {} - ] - ], - "masonry-align-content-002.html": [ - "75b82654fea45cf8460abbdd0c0b7df8ed8b2afe", - [ - null, - [ - [ - "/css/css-grid/masonry/tentative/align-content/masonry-align-content-002-ref.html", - "==" - ] - ], - {} - ] - ], - "masonry-align-content-003.html": [ - "ae58e79cb2b4752e08f01e3548705cdf3af1e554", - [ - null, - [ - [ - "/css/css-grid/masonry/tentative/align-content/masonry-align-content-003-ref.html", - "==" - ] - ], - {} - ] - ], - "masonry-align-content-004.html": [ - "3f07aa1fe75b5f0a0e62e559f1d878052ebd31b3", - [ - null, - [ - [ - "/css/css-grid/masonry/tentative/align-content/masonry-align-content-004-ref.html", - "==" - ] - ], - {} - ] - ] - }, - "baseline": { - "masonry-grid-item-content-baseline-001.html": [ - "60d11653b3f231a07ad7aa493a0effeae7720671", - [ - null, - [ - [ - "/css/css-grid/masonry/tentative/baseline/masonry-grid-item-content-baseline-001-ref.html", - "==" - ] - ], - {} - ] - ], - "masonry-grid-item-self-baseline-001.html": [ - "bb486d983d966476f24d142675c77f7907300705", - [ - null, - [ - [ - "/css/css-grid/masonry/tentative/baseline/masonry-grid-item-self-baseline-001-ref.html", - "==" - ] - ], - {} - ] - ], - "masonry-grid-item-self-baseline-002a.html": [ - "6708e58332808b1bba0f20db46cfa062270956b8", - [ - "css/css-grid/masonry/tentative/baseline/masonry-grid-item-self-baseline-002a.html", - [ - [ - "/css/css-grid/masonry/tentative/baseline/masonry-grid-item-self-baseline-002a-ref.html", - "==" - ] - ], - {} - ] - ], - "masonry-grid-item-self-baseline-002b.html": [ - "34911b7c9fa632da919b769e015148e2b8c4c488", - [ - "css/css-grid/masonry/tentative/baseline/masonry-grid-item-self-baseline-002b.html", - [ - [ - "/css/css-grid/masonry/tentative/baseline/masonry-grid-item-self-baseline-002b-ref.html", - "==" - ] - ], - {} - ] + "/css/css-images/reference/100x100-blue.html", + "==" ] - }, - "fragmentation": { - "masonry-fragmentation-001.html": [ - "69182c5425e80f91f883d8c670ff2fe4394ccadc", - [ - null, - [ - [ - "/css/css-grid/masonry/tentative/fragmentation/masonry-fragmentation-001-ref.html", - "==" - ] - ], - {} - ] - ], - "masonry-fragmentation-002.html": [ - "01c4de00b56af8a3c4c082244934ff0aafd5a410", - [ - null, - [ - [ - "/css/css-grid/masonry/tentative/fragmentation/masonry-fragmentation-002-ref.html", - "==" - ] - ], - {} - ] - ], - "masonry-fragmentation-003.html": [ - "fe150e7f8382f9f0cb151400cdc3e9aa0b0846f3", + ], + { + "fuzzy": [ [ null, [ [ - "/css/css-grid/masonry/tentative/fragmentation/masonry-fragmentation-003-ref.html", - "==" - ] - ], - {} - ] - ] - }, - "gap": { - "masonry-gap-001.html": [ - "673bbe40e41f6b35df2403330a8c76af625b2fbd", - [ - null, - [ + 1, + 1 + ], [ - "/css/css-grid/masonry/tentative/gap/masonry-gap-001-ref.html", - "==" + 10000, + 10000 ] - ], - {} + ] ] ] - }, - "grid-placement": { - "masonry-grid-placement-named-lines-001.html": [ - "b6745f6973b4c0dfd180b778df5d73ef3ca853e3", - [ - null, - [ - [ - "/css/css-grid/masonry/tentative/grid-placement/masonry-grid-placement-named-lines-001-ref.html", - "==" - ] - ], - {} - ] - ], - "masonry-grid-placement-named-lines-002.html": [ - "0ad0dfcea370dd12f0ebf61c5675552f93b6ce6b", - [ - null, - [ - [ - "/css/css-grid/masonry/tentative/grid-placement/masonry-grid-placement-named-lines-002-ref.html", - "==" - ] - ], - {} - ] + } + ] + ], + "normalization-conic-degenerate.html": [ + "6905c39ef9d2c2c92c8ad2b1029ae1feb6e4f2e5", + [ + "css/css-images/normalization-conic-degenerate.html", + [ + [ + "/css/css-images/reference/100x100-blue.html", + "==" ] - }, - "intrinsic-sizing": { - "masonry-intrinsic-sizing-001.html": [ - "0f6cdb14954214e81931aa2a5cf80873dc589d84", - [ - null, - [ - [ - "/css/css-grid/masonry/tentative/intrinsic-sizing/masonry-intrinsic-sizing-001-ref.html", - "==" - ] - ], - {} - ] - ], - "masonry-intrinsic-sizing-002.html": [ - "db83299bf5061f0c7209089facdfef277f129a5c", - [ - null, - [ - [ - "/css/css-grid/masonry/tentative/intrinsic-sizing/masonry-intrinsic-sizing-002-ref.html", - "==" - ] - ], - {} - ] - ], - "masonry-intrinsic-sizing-003.html": [ - "e43bc86c9b9571f362e37572be57f0b019ccbfb8", - [ - null, - [ - [ - "/css/css-grid/masonry/tentative/intrinsic-sizing/masonry-intrinsic-sizing-003-ref.html", - "==" - ] - ], - {} - ] - ], - "masonry-intrinsic-sizing-004.html": [ - "5365208c00f8220ae6427920eae846c0986cbec7", - [ - null, - [ - [ - "/css/css-grid/masonry/tentative/intrinsic-sizing/masonry-intrinsic-sizing-004-ref.html", - "==" - ] - ], - {} - ] - ], - "masonry-intrinsic-sizing-005.html": [ - "cf9b680869f58373a24a87e105dd518c9bb2ef13", + ], + { + "fuzzy": [ [ null, [ [ - "/css/css-grid/masonry/tentative/intrinsic-sizing/masonry-intrinsic-sizing-005-ref.html", - "==" - ] - ], - {} - ] - ], - "masonry-intrinsic-sizing-006.html": [ - "49fd53bb79b1e97c011c61db7aeb863067db0a01", - [ - null, - [ + 1, + 1 + ], [ - "/css/css-grid/masonry/tentative/intrinsic-sizing/masonry-intrinsic-sizing-006-ref.html", - "==" + 10000, + 10000 ] - ], - {} + ] ] ] - }, - "item-placement": { - "masonry-columns-item-placement-auto-flow-next-001.html": [ - "eacc943bf77c5db41ad144e45e6bc4545e7cf96f", - [ - null, - [ - [ - "/css/css-grid/masonry/tentative/item-placement/masonry-columns-item-placement-auto-flow-next-001-ref.html", - "==" - ] - ], - {} - ] - ], - "masonry-item-placement-001.html": [ - "649e1edb7cb9bd903f795f6e605d12ae566390eb", - [ - "css/css-grid/masonry/tentative/item-placement/masonry-item-placement-001.html", - [ - [ - "/css/css-grid/masonry/tentative/item-placement/masonry-item-placement-001-ref.html", - "==" - ] - ], - {} - ] - ], - "masonry-item-placement-002.html": [ - "7d321bf731684173f483d6ba3abde11da307de8e", - [ - "css/css-grid/masonry/tentative/item-placement/masonry-item-placement-002.html", - [ - [ - "/css/css-grid/masonry/tentative/item-placement/masonry-item-placement-002-ref.html", - "==" - ] - ], - {} - ] - ], - "masonry-item-placement-003.html": [ - "8a183cffc6bd3f59fb0c7ca58b9a85588bdab3f8", - [ - "css/css-grid/masonry/tentative/item-placement/masonry-item-placement-003.html", - [ - [ - "/css/css-grid/masonry/tentative/item-placement/masonry-item-placement-003-ref.html", - "==" - ] - ], - {} - ] - ], - "masonry-item-placement-004.html": [ - "4d1a454a8654648d01dd7ab336514d6a935ab6d5", - [ - null, - [ - [ - "/css/css-grid/masonry/tentative/item-placement/masonry-item-placement-004-ref.html", - "==" - ] - ], - {} - ] - ], - "masonry-item-placement-005.html": [ - "ddfbc9e54e40d3ae5650a598150a5ead5027fd65", - [ - null, - [ - [ - "/css/css-grid/masonry/tentative/item-placement/masonry-item-placement-005-ref.html", - "==" - ] - ], - {} - ] - ], - "masonry-item-placement-006.html": [ - "0082d72df26258ec61c988c7d9e46463a10f5a8f", - [ - null, - [ - [ - "/css/css-grid/masonry/tentative/item-placement/masonry-item-placement-006-ref.html", - "==" - ] - ], - {} - ] - ], - "masonry-item-placement-007.html": [ - "67a02560f45f314bb6843cd8b5e5b046aa8da695", - [ - null, - [ - [ - "/css/css-grid/masonry/tentative/item-placement/masonry-item-placement-007-ref.html", - "==" - ] - ], - {} - ] - ], - "masonry-item-placement-008.html": [ - "c68a9787b8330afd85bb01a7a48b9067df903ba9", - [ - null, - [ - [ - "/css/css-grid/masonry/tentative/item-placement/masonry-item-placement-008-ref.html", - "==" - ] - ], - {} - ] - ], - "masonry-rows-item-placement-auto-flow-next-001.html": [ - "c425490d2d8f464e9fae0a1777c4c8366cb283af", - [ - null, - [ - [ - "/css/css-grid/masonry/tentative/item-placement/masonry-rows-item-placement-auto-flow-next-001-ref.html", - "==" - ] - ], - {} - ] - ], - "masonry-rows-with-grid-width-changed.html": [ - "3a1c4cfa9c065425d8de17dba157663f6024711c", - [ - "css/css-grid/masonry/tentative/item-placement/masonry-rows-with-grid-width-changed.html", - [ - [ - "/css/css-grid/masonry/tentative/item-placement/masonry-rows-with-grid-width-changed-ref.html", - "==" - ] - ], - {} - ] + } + ] + ], + "normalization-conic.html": [ + "21fb8bae8a62043ca63b60006443a558c42f6dee", + [ + "css/css-images/normalization-conic.html", + [ + [ + "/css/css-images/reference/100x100-blue.html", + "==" ] - }, - "justify-content": { - "masonry-justify-content-001.html": [ - "3d60ac19feb130bf2d1690786c968fb72cac2cf6", - [ - null, - [ - [ - "/css/css-grid/masonry/tentative/justify-content/masonry-justify-content-001-ref.html", - "==" - ] - ], - {} - ] - ], - "masonry-justify-content-002.html": [ - "b1db084d4e7042fa7c641a2c91a1484f38f0e877", - [ - null, - [ - [ - "/css/css-grid/masonry/tentative/justify-content/masonry-justify-content-002-ref.html", - "==" - ] - ], - {} - ] - ], - "masonry-justify-content-003.html": [ - "772984b9e0dac31e12ee7a8859ba9b79c8471875", + ], + { + "fuzzy": [ [ null, [ [ - "/css/css-grid/masonry/tentative/justify-content/masonry-justify-content-003-ref.html", - "==" - ] - ], - {} - ] - ], - "masonry-justify-content-004.html": [ - "7d04ffeb4b26acd9d74f9e1c8f7c9504e2a27a81", - [ - null, - [ + 1, + 1 + ], [ - "/css/css-grid/masonry/tentative/justify-content/masonry-justify-content-004-ref.html", - "==" + 10000, + 10000 ] - ], - {} + ] ] ] - }, - "masonry-columns-item-containing-block-is-grid-content-width.html": [ - "e48b650253974a22e2dbf68eee6505ca918ddde7", + } + ] + ], + "normalization-linear-2.html": [ + "e3feeeb49a650beab8783d79ff8003ac011d3842", + [ + null, + [ [ - "css/css-grid/masonry/tentative/masonry-columns-item-containing-block-is-grid-content-width.html", - [ - [ - "/css/reference/ref-filled-green-100px-square-only.html", - "==" - ] - ], - {} + "/css/css-images/reference/100x100-blue.html", + "==" ] ], - "masonry-not-inhibited-001.html": [ - "54499d3d693a3059204a0a1015638f303ef3caa4", + {} + ] + ], + "normalization-linear-degenerate.html": [ + "26647290fb4e891ebe1fa667687ac7cf0f1c3eed", + [ + null, + [ [ - "css/css-grid/masonry/tentative/masonry-not-inhibited-001.html", - [ - [ - "/css/css-grid/masonry/tentative/masonry-not-inhibited-001-ref.html", - "==" - ] - ], - {} + "/css/css-images/reference/100x100-blue.html", + "==" ] ], - "order": { - "masonry-order-001.html": [ - "d01f52ea0421199c37d04408b42d0f6929876301", - [ - null, - [ - [ - "/css/css-grid/masonry/tentative/order/masonry-order-001-ref.html", - "==" - ] - ], - {} - ] - ], - "masonry-order-002.html": [ - "abad3d44b8326535bb1f44832011a1a6145a47b9", - [ - "css/css-grid/masonry/tentative/order/masonry-order-002.html", - [ - [ - "/css/css-grid/masonry/tentative/order/masonry-order-002-ref.html", - "==" - ] - ], - {} - ] - ] - }, - "subgrid": { - "masonry-subgrid-001.html": [ - "de07dfb78d1d3a0aa6ec8728009836aa5c06a9fb", - [ - null, - [ - [ - "/css/css-grid/masonry/tentative/subgrid/masonry-subgrid-001-ref.html", - "==" - ] - ], - {} - ] - ], - "masonry-subgrid-002.html": [ - "466e95eb03c7ae5eb9d09f8c58b5a3dcb166cf58", - [ - null, - [ - [ - "/css/css-grid/masonry/tentative/subgrid/masonry-subgrid-002-ref.html", - "==" - ] - ], - {} - ] - ] - }, - "track-sizing": { - "masonry-track-sizing-check-grid-height-on-resize.html": [ - "06c2901f27bf8c8edabf434cf79bf7915e5dd09e", - [ - "css/css-grid/masonry/tentative/track-sizing/masonry-track-sizing-check-grid-height-on-resize.html", - [ - [ - "/css/css-grid/masonry/tentative/track-sizing/masonry-track-sizing-check-grid-height-on-resize-ref.html", - "==" - ] - ], - {} - ] - ], - "masonry-track-sizing-explicit-block.html": [ - "3cc98708fe9aec94293eb5bcb296f01d3a4a7508", - [ - "css/css-grid/masonry/tentative/track-sizing/masonry-track-sizing-explicit-block.html", - [ - [ - "/css/css-grid/masonry/tentative/track-sizing/masonry-track-sizing-explicit-block-ref.html", - "==" - ] - ], - {} - ] - ], - "masonry-track-sizing-overflow-left-side.html": [ - "cd1b78a47b6d2f9feed861a75ba19b4331c748a1", - [ - null, - [ - [ - "/css/css-grid/masonry/tentative/track-sizing/masonry-track-sizing-overflow-left-side-ref.html", - "==" - ] - ], - {} - ] - ], - "masonry-track-sizing-overflow-right-side.html": [ - "e4c17fd7b7793b23a80d15c4fa1440da21b5ecfb", - [ - null, - [ - [ - "/css/css-grid/masonry/tentative/track-sizing/masonry-track-sizing-overflow-right-side-ref.html", - "==" - ] - ], - {} - ] - ], - "masonry-track-sizing-span-row.html": [ - "475c27f1ebea5598c6e3fcec0e21d13b08bc9499", - [ - "css/css-grid/masonry/tentative/track-sizing/masonry-track-sizing-span-row.html", - [ - [ - "/css/css-grid/masonry/tentative/track-sizing/masonry-track-sizing-span-row-ref.html", - "==" - ] - ], - {} - ] - ] - } - } - }, - "nested-grid-item-block-size-001.html": [ - "e2892ecc3c656243f26e5512be9ac01e2cd4de36", + {} + ] + ], + "normalization-linear.html": [ + "e46645631afa45fc031ffc5fb092d7b6c1e7e660", [ - "css/css-grid/nested-grid-item-block-size-001.html", + null, [ [ - "/css/css-grid/nested-grid-item-block-size-001-ref.html", + "/css/css-images/reference/100x100-blue.html", "==" ] ], {} ] ], - "placement": { - "grid-layout-grid-span.html": [ - "21aad99708c96942c196ada03beaded1d73a1078", + "normalization-radial-2.html": [ + "5ea50a5e035df1807db83ed5a1242253425fc797", + [ + null, [ - null, [ - [ - "/css/css-grid/reference/grid-layout-basic-ref.html", - "==" - ] - ], - {} - ] - ], - "grid-layout-lines-shorthands.html": [ - "756e08c44710a24c3dba94a20f05e45760a174f4", + "/css/css-images/reference/100x100-blue.html", + "==" + ] + ], + {} + ] + ], + "normalization-radial-3.html": [ + "927917ced606cca63ace976c23943fcecab5db64", + [ + null, [ - null, [ - [ - "/css/css-grid/reference/grid-layout-basic-ref.html", - "==" - ] - ], - {} - ] - ], - "grid-layout-lines.html": [ - "62bfc8d7bd6750cfe60ad78d987d159685bdb9cd", + "/css/css-images/reference/100x100-blue.html", + "==" + ] + ], + {} + ] + ], + "normalization-radial-4.html": [ + "e9d948f062ec70e3e2c73a5211a770facd23b12d", + [ + null, [ - null, [ - [ - "/css/css-grid/reference/grid-layout-basic-ref.html", - "==" - ] - ], - {} - ] - ], - "grid-layout-placement-shorthands.html": [ - "be98679815040f1cad8fe27fb1e7a7f08818a575", + "/css/css-images/reference/100x100-blue.html", + "==" + ] + ], + {} + ] + ], + "normalization-radial-degenerate.html": [ + "4fff3ac909a04779a36310fb19c002c6b75d2d3a", + [ + null, [ - null, [ - [ - "/css/css-grid/reference/grid-layout-basic-ref.html", - "==" - ] - ], - {} - ] - ], - "grid-placement-items-spanning-multiple-rows-001.html": [ - "de6398e324b93d58f54b449118feb8b0c69250af", + "/css/css-images/reference/100x100-blue.html", + "==" + ] + ], + {} + ] + ], + "normalization-radial.html": [ + "6a510aa52f38a46d91114b5bc0fc3f8b19156097", + [ + null, [ - "css/css-grid/placement/grid-placement-items-spanning-multiple-rows-001.html", [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-placement-items-spanning-multiple-rows-002.html": [ - "f055340a3a3c014626700986aadcf1042b2b3fec", + "/css/css-images/reference/100x100-blue.html", + "==" + ] + ], + {} + ] + ], + "object-fit-contain-png-001c.html": [ + "0f8195157e310cd69c05dcfd8a786972b981d2f1", + [ + null, [ - "css/css-grid/placement/grid-placement-items-spanning-multiple-rows-002.html", [ + "/css/css-images/object-fit-contain-png-001-ref.html", + "==" + ] + ], + { + "fuzzy": [ [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" + null, + [ + [ + 0, + 20 + ], + [ + 0, + 2000 + ] + ] ] - ], - {} - ] - ], - "grid-placement-using-named-grid-lines-001.html": [ - "12fdd78204d6fba1679ba034e8a6ca75a00172df", + ] + } + ] + ], + "object-fit-contain-png-001e.html": [ + "20a5f8ae560f4755081ae0a6e3bf6346b487626c", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-placement-using-named-grid-lines-002.html": [ - "625401d7cfd724a069f21a1ca9ea0790c1a26a4a", + "/css/css-images/object-fit-contain-png-001-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-contain-png-001i.html": [ + "6605be2e1a4f79367a73128eb7e2d09f6bfc878a", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-placement-using-named-grid-lines-003.html": [ - "31173e0a455a04156ca8755779d7a2ae4b24b103", + "/css/css-images/object-fit-contain-png-001-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-contain-png-001o.html": [ + "36761156bb30da613fb9605dab69464af4552380", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-placement-using-named-grid-lines-004.html": [ - "c33b1a9ee9ec7f972df72b8658bae53c8163fd5e", + "/css/css-images/object-fit-contain-png-001-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-contain-png-001p.html": [ + "ac00ec44d1d7b387353e3eebc75ded6261b7f57b", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-placement-using-named-grid-lines-005.html": [ - "20d9298955f692b2c42113a747ca52627f29788b", + "/css/css-images/object-fit-contain-png-001-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-contain-png-002c.html": [ + "14834316a32efbf8f80c4612a93951e0fa792c51", + [ + null, [ - null, [ + "/css/css-images/object-fit-contain-png-002-ref.html", + "==" + ] + ], + { + "fuzzy": [ [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" + null, + [ + [ + 0, + 20 + ], + [ + 0, + 2000 + ] + ] ] - ], - {} - ] - ], - "grid-placement-using-named-grid-lines-006.html": [ - "405858f73c5ab17b0a82167fe6399130ac1ddeba", + ] + } + ] + ], + "object-fit-contain-png-002e.html": [ + "6132fdc27d66fe7dc195016d30177be77318ef45", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-placement-using-named-grid-lines-007.html": [ - "4e6c4cceb59ac8d371ee96779cc1947d77bfc597", + "/css/css-images/object-fit-contain-png-002-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-contain-png-002i.html": [ + "222ac9e7356c18c40108ffa445c91b2386d90366", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-300px-square.html", - "==" - ] - ], - {} - ] - ], - "grid-placement-using-named-grid-lines-008.html": [ - "6ee48448aec6cffb42ed5e99945bf8f7e305b8bc", + "/css/css-images/object-fit-contain-png-002-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-contain-png-002o.html": [ + "6e0b555e57ea26a95e11584719f3e371c733320a", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-placement-using-named-grid-lines-009.html": [ - "10cb140ebca87709da5d0305efc300b47be6aab0", + "/css/css-images/object-fit-contain-png-002-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-contain-png-002p.html": [ + "97a150e582ab6931108c0e6844fe536e5ae50b22", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-template-areas-must-keep-named-columns-order-001.html": [ - "8b0736b87f0362df78b9b56af4826c9fe3dd8304", + "/css/css-images/object-fit-contain-png-002-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-contain-svg-001e.html": [ + "a5dc815d03c4ead9b4215df6a3f0321a8e7ae3cc", + [ + null, [ - null, [ - [ - "/css/css-grid/reference/grid-template-areas-must-keep-named-columns-order-001-ref.html", - "==" - ] - ], - {} - ] + "/css/css-images/object-fit-contain-svg-001-ref.html", + "==" + ] + ], + {} ] - }, - "relative-grandchild.html": [ - "9c1b7d54e1f568e13e656a3bc57a840cdc93bcf2", + ], + "object-fit-contain-svg-001i.html": [ + "d2011bd6df40f8bb38e70aec2fe9a50e4384eb69", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-images/object-fit-contain-svg-001-ref.html", "==" ] ], {} ] ], - "stretch-grid-item-button-overflow.html": [ - "0b86a7e9ac9ca874c3b4a3121cec61f3ec40a766", + "object-fit-contain-svg-001o.html": [ + "7bb8c640f43a02c657e281f6f8bc513ee2a45718", [ - "css/css-grid/stretch-grid-item-button-overflow.html", + null, [ [ - "/css/css-grid/stretch-grid-item-button-overflow-ref.html", + "/css/css-images/object-fit-contain-svg-001-ref.html", "==" ] ], {} ] ], - "stretch-grid-item-checkbox-input.html": [ - "c6a34a8288db1e034dfba0856ef0e4f9ec16d8f8", + "object-fit-contain-svg-001p.html": [ + "f6a2b73bf376ad2a77799f1e3021563e9af1ac1e", [ null, [ [ - "/css/css-grid/stretch-grid-item-checkbox-input-ref.html", + "/css/css-images/object-fit-contain-svg-001-ref.html", "==" ] ], {} ] ], - "stretch-grid-item-radio-input.html": [ - "9ae9d7be040fe69a6b503b9c51b7d1e97ab1827a", + "object-fit-contain-svg-002e.html": [ + "5d4197fb3742e79fcbfe44074b2f5bbe5bb76a23", [ null, [ [ - "/css/css-grid/stretch-grid-item-radio-input-ref.html", + "/css/css-images/object-fit-contain-svg-002-ref.html", "==" ] ], {} ] ], - "stretch-grid-item-text-input-overflow.html": [ - "0814b3dcf058f4fba01ba6517480078469a492f7", + "object-fit-contain-svg-002i.html": [ + "6d81d9b863cef4f1625d4a52b901fc8a4220a624", [ - "css/css-grid/stretch-grid-item-text-input-overflow.html", + null, [ [ - "/css/css-grid/stretch-grid-item-text-input-overflow-ref.html", + "/css/css-images/object-fit-contain-svg-002-ref.html", "==" ] ], {} ] ], - "subgrid": { - "abs-pos-001.html": [ - "e524ec2d767c043516546733411d7e25e6eff05b", + "object-fit-contain-svg-002o.html": [ + "2d7b69ccc06c9ba9c6fad50345be213f0082c54e", + [ + null, [ - null, [ - [ - "/css/css-grid/subgrid/abs-pos-001-ref.html", - "==" - ] - ], - {} - ] - ], - "abs-pos-002.html": [ - "5d6833555eda6b06a2cc6497511130b1e6531576", + "/css/css-images/object-fit-contain-svg-002-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-contain-svg-002p.html": [ + "74f43726ac2321e60f440a6512a2cd01c1901663", + [ + null, [ - null, [ - [ - "/css/css-grid/subgrid/abs-pos-002-ref.html", - "==" - ] - ], - {} - ] - ], - "auto-track-sizing-001.html": [ - "4a946e6feb4dbf4c9c348896ad69a2c81232c17c", + "/css/css-images/object-fit-contain-svg-002-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-contain-svg-003e.html": [ + "9e4d758b0550af7194519c295875db7a0c8dab77", + [ + null, [ - "css/css-grid/subgrid/auto-track-sizing-001.html", [ - [ - "/css/css-grid/subgrid/auto-track-sizing-001-ref.html", - "==" - ] - ], - {} - ] - ], - "auto-track-sizing-002.html": [ - "c44c9d392594a0241c8c9f8e2c5200d964ff7c62", + "/css/css-images/object-fit-contain-svg-003-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-contain-svg-003i.html": [ + "52693ee21481d68ad9302e34fa8abeb4ea3d218b", + [ + null, [ - null, [ - [ - "/css/css-grid/subgrid/auto-track-sizing-002-ref.html", - "==" - ] - ], - {} - ] - ], - "auto-track-sizing-003.html": [ - "fdb571c157d0cb8f112c26d9f22de1f95eca14cc", + "/css/css-images/object-fit-contain-svg-003-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-contain-svg-003o.html": [ + "b1ff0dddbed5887a004e871a0794a203bcf9d01c", + [ + null, [ - "css/css-grid/subgrid/auto-track-sizing-003.html", [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "auto-track-sizing-004.html": [ - "d5e120dab0df814f995902b6d41e4fba8f39ec73", + "/css/css-images/object-fit-contain-svg-003-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-contain-svg-003p.html": [ + "3d7d02a5f2d701c6dfaeb3379645cff972634d9d", + [ + null, [ - "css/css-grid/subgrid/auto-track-sizing-004.html", [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "baseline-001.html": [ - "995b1a8d2ae1aaa7c0230379e5b799b12ac9e93c", + "/css/css-images/object-fit-contain-svg-003-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-contain-svg-004e.html": [ + "1d86232bca85663ba68d1f582c095c35673f62fa", + [ + null, [ - null, [ - [ - "/css/css-grid/subgrid/baseline-001-ref.html", - "==" - ] - ], - {} - ] - ], - "contribution-size-flex-tracks-001.html": [ - "cc99f639686d073dd9c02db9c56c57026e3d225a", + "/css/css-images/object-fit-contain-svg-004-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-contain-svg-004i.html": [ + "ff54f41faaa2ce1dd07c38d1dd712c76490f4070", + [ + null, [ - "css/css-grid/subgrid/contribution-size-flex-tracks-001.html", [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "dynamic-min-content-001.html": [ - "97fa9b132737f96b7490c1aca29ddacdc261a143", + "/css/css-images/object-fit-contain-svg-004-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-contain-svg-004o.html": [ + "6a3015c88224fc4e97acb2fa7320ec903d8e330b", + [ + null, [ - "css/css-grid/subgrid/dynamic-min-content-001.html", [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "dynamic-min-content-002.html": [ - "04c5d143d9947bfdda50aca131c0adde095b7135", + "/css/css-images/object-fit-contain-svg-004-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-contain-svg-004p.html": [ + "ec117017bfddec6ab37723ee1b0a39637a968373", + [ + null, [ - "css/css-grid/subgrid/dynamic-min-content-002.html", [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "dynamic-min-content-003.html": [ - "625d83485c69487b47e95afd8996617d9e0326c6", + "/css/css-images/object-fit-contain-svg-004-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-contain-svg-005e.html": [ + "ce25d2781d7ffd263f1c459709daafb82ce5e592", + [ + null, [ - "css/css-grid/subgrid/dynamic-min-content-003.html", [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "grid-gap-001.html": [ - "0bc8eed4d8e408b18211b38095eecc0d983a96f4", + "/css/css-images/object-fit-contain-svg-005-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-contain-svg-005i.html": [ + "10cef72c58f3d0c8d9a787dfe597e4cfbc15d6c5", + [ + null, [ - null, [ - [ - "/css/css-grid/subgrid/grid-gap-001-ref.html", - "==" - ] - ], - {} - ] - ], - "grid-gap-002.html": [ - "bd4b74924bdf35380811e24a4e2de67c91d7d5d4", + "/css/css-images/object-fit-contain-svg-005-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-contain-svg-005o.html": [ + "781133d064fb15e4d3686e67d65c596dfc8f7178", + [ + null, [ - null, [ - [ - "/css/css-grid/subgrid/grid-gap-002-ref.html", - "==" - ] - ], - {} - ] - ], - "grid-gap-003.html": [ - "f8ce8655cf9da0bbca9495d77a2a2403ef9c6801", + "/css/css-images/object-fit-contain-svg-005-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-contain-svg-005p.html": [ + "67f99138c1c783048135b533ebbd0398bbada02a", + [ + null, [ - null, [ - [ - "/css/css-grid/subgrid/grid-gap-003-ref.html", - "==" - ] - ], - {} - ] - ], - "grid-gap-004.html": [ - "b46d22e1e39e7e61f85a19860582b11c58719d52", + "/css/css-images/object-fit-contain-svg-005-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-contain-svg-006e.html": [ + "850d0259a9c65c56842abead9e088d63286d5f47", + [ + null, [ - null, [ - [ - "/css/css-grid/subgrid/grid-gap-004-ref.html", - "==" - ] - ], - {} - ] - ], - "grid-gap-005.html": [ - "9afba90a52954abf08719d2c115658c51b2cdec2", + "/css/css-images/object-fit-contain-svg-006-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-contain-svg-006i.html": [ + "536e639ece3d8356a6da447e7ee6495412155a02", + [ + null, [ - null, [ - [ - "/css/css-grid/subgrid/grid-gap-005-ref.html", - "==" - ] - ], - {} - ] - ], - "grid-gap-006.html": [ - "d79ced10c883359b66a77f1b4c5ed362f275d361", + "/css/css-images/object-fit-contain-svg-006-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-contain-svg-006o.html": [ + "42d07664aeeee0df54154e7014c5fd857390b44a", + [ + null, [ - null, [ - [ - "/css/css-grid/subgrid/grid-gap-006-ref.html", - "==" - ] - ], - {} - ] - ], - "grid-gap-007.html": [ - "5b94fe530233ddaf47def934da6924a92e2e47e9", + "/css/css-images/object-fit-contain-svg-006-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-contain-svg-006p.html": [ + "6a39673f2608b9e99a03c65f87864826c1fa0302", + [ + null, [ - null, [ - [ - "/css/css-grid/subgrid/grid-gap-007-ref.html", - "==" - ] - ], - {} - ] - ], - "grid-gap-008.html": [ - "760bd92c3dfa301148eac13bfd768ef1ebd85409", + "/css/css-images/object-fit-contain-svg-006-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-containcontainintrinsicsize-png-001c.tentative.html": [ + "b17f59f887f216f11a386077c41156388624ee27", + [ + null, [ - null, [ - [ - "/css/css-grid/subgrid/grid-gap-008-ref.html", - "==" - ] - ], - {} - ] - ], - "grid-gap-009.html": [ - "4bbf5c6e81003e21f54eb98d5bae2d5c3719580b", + "/css/css-images/object-fit-containsize-png-001-ref.tentative.html", + "==" + ] + ], + {} + ] + ], + "object-fit-containcontainintrinsicsize-png-001e.tentative.html": [ + "1b121f4eee394f5e6d150574f7b1f83fce4d5cbc", + [ + null, [ - null, [ - [ - "/css/css-grid/subgrid/grid-gap-009-ref.html", - "==" - ] - ], - {} - ] - ], - "grid-gap-010.html": [ - "23d67b95dd9a4e4cdb1ba8241b2ebd2e8ebb93a8", + "/css/css-images/object-fit-containsize-png-001-ref.tentative.html", + "==" + ] + ], + {} + ] + ], + "object-fit-containcontainintrinsicsize-png-001i.tentative.html": [ + "2da201f3d6da41c680324258f5115e0550901361", + [ + null, [ - null, [ - [ - "/css/css-grid/subgrid/grid-gap-010-ref.html", - "==" - ] - ], - {} - ] - ], - "grid-gap-011.html": [ - "d40ad2640f183d5a881e6c85b5c30e2b54f40284", + "/css/css-images/object-fit-containsize-png-001-ref.tentative.html", + "==" + ] + ], + {} + ] + ], + "object-fit-containcontainintrinsicsize-png-001p.tentative.html": [ + "c2c1697c63ca3e4e0589fe51411c6b65221f55d6", + [ + null, [ - null, [ - [ - "/css/css-grid/subgrid/grid-gap-011-ref.html", - "==" - ] - ], - {} - ] - ], - "grid-gap-012.html": [ - "02d9a0e80115439f3ecf36e881ad9a325cdc7b50", + "/css/css-images/object-fit-containsize-png-001-ref.tentative.html", + "==" + ] + ], + {} + ] + ], + "object-fit-containsize-png-001c.tentative.html": [ + "43a50adcedcf2bcdf81d86f717ec52e6a96e0f1a", + [ + null, [ - "css/css-grid/subgrid/grid-gap-012.html", [ - [ - "/css/css-grid/subgrid/grid-gap-012-ref.html", - "==" - ] - ], - {} - ] - ], - "grid-gap-larger-001.html": [ - "85725d52925b898f562329256cf60ea24486f517", + "/css/css-images/object-fit-containsize-png-001-ref.tentative.html", + "==" + ] + ], + {} + ] + ], + "object-fit-containsize-png-001e.tentative.html": [ + "37e0f1e447110327fd4901a225b255155a5f473a", + [ + null, [ - null, [ - [ - "/css/css-grid/subgrid/grid-gap-larger-001-ref.html", - "==" - ] - ], - {} - ] - ], - "grid-gap-larger-002.html": [ - "4565be1b8008c83007a53cdeb27e4fee40cee50a", + "/css/css-images/object-fit-containsize-png-001-ref.tentative.html", + "==" + ] + ], + {} + ] + ], + "object-fit-containsize-png-001i.tentative.html": [ + "1654cbf36fa15991a16e59608505ff858940a627", + [ + null, [ - null, [ - [ - "/css/css-grid/subgrid/grid-gap-larger-002-ref.html", - "==" - ] - ], - {} - ] - ], - "grid-gap-normal-001.html": [ - "5edf1e0762141a126bf0ae777216acc7645d40f3", + "/css/css-images/object-fit-containsize-png-001-ref.tentative.html", + "==" + ] + ], + {} + ] + ], + "object-fit-containsize-png-001p.tentative.html": [ + "c3072f9838882d21a8032a3f287c7a824c1879fc", + [ + null, [ - null, [ - [ - "/css/css-grid/subgrid/grid-gap-normal-001-ref.html", - "==" - ] - ], - {} - ] - ], - "grid-gap-smaller-001.html": [ - "7b59acd700b757826486916ada33ee56444b7309", + "/css/css-images/object-fit-containsize-png-001-ref.tentative.html", + "==" + ] + ], + {} + ] + ], + "object-fit-cover-png-001c.html": [ + "2a0071a01ce0cd423b6b03537c8f4e9cfe766ad5", + [ + null, [ - null, [ - [ - "/css/css-grid/subgrid/grid-gap-smaller-001-ref.html", - "==" - ] - ], - {} - ] - ], - "independent-formatting-context.html": [ - "5a76ac2d6dea91a0d13de29d9192aaf8df3ae350", + "/css/css-images/object-fit-cover-png-001-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-cover-png-001e.html": [ + "1091e01b7aa8fe4e1227e8f1f01bf11231b6f232", + [ + null, [ - "css/css-grid/subgrid/independent-formatting-context.html", [ - [ - "/css/css-grid/subgrid/independent-formatting-context-ref.html", - "==" - ] - ], - {} - ] - ], - "independent-tracks-from-parent-grid.html": [ - "d7647eaafb978d9c986849d53fb55e97449a071b", + "/css/css-images/object-fit-cover-png-001-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-cover-png-001i.html": [ + "8db4683c2746c4447b1c0105abdeb35dec97370b", + [ + null, [ - "css/css-grid/subgrid/independent-tracks-from-parent-grid.html", [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "item-percentage-height-001.html": [ - "15e996ea3264e4147d8c3e37b464303647ac3e0e", + "/css/css-images/object-fit-cover-png-001-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-cover-png-001o.html": [ + "8e40b532ca44869a306b4e32747c4a38385eca06", + [ + null, [ - null, [ - [ - "/css/css-grid/subgrid/item-percentage-height-001-ref.html", - "==" - ] - ], - {} - ] - ], - "line-names-001.html": [ - "69c300d864e9990151a96f6577fe5f09e1e22bb2", + "/css/css-images/object-fit-cover-png-001-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-cover-png-001p.html": [ + "a75a977a37b131b062cc3f94651b97fa97a5b67c", + [ + null, [ - null, [ - [ - "/css/css-grid/subgrid/line-names-001-ref.html", - "==" - ] - ], - {} - ] - ], - "line-names-002.html": [ - "574e353f877948cdc247aa589f23b7fce462a2ae", + "/css/css-images/object-fit-cover-png-001-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-cover-png-002c.html": [ + "66836651fb48eea95f704b379ce455486d792e4d", + [ + null, [ - null, [ - [ - "/css/css-grid/subgrid/line-names-002-ref.html", - "==" - ] - ], - {} - ] - ], - "line-names-003.html": [ - "43afaf9414699cd4ce66fae02f2c3ce5293ef68a", + "/css/css-images/object-fit-cover-png-002-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-cover-png-002e.html": [ + "8dab30ccfd1da3b09f82f3f7a244c5a8c065b139", + [ + null, [ - null, [ - [ - "/css/css-grid/subgrid/line-names-001-ref.html", - "==" - ] - ], - {} - ] - ], - "line-names-004.html": [ - "84f727d2e350d1754cd0511471f95e14525ae00b", + "/css/css-images/object-fit-cover-png-002-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-cover-png-002i.html": [ + "1866fde155d4e4be4f523d6df24f06c83e6962a2", + [ + null, [ - null, [ - [ - "/css/css-grid/subgrid/line-names-004-ref.html", - "==" - ] - ], - {} - ] - ], - "line-names-005.html": [ - "26be899e93ed5d941eda3a16a21ab670abb6fca5", + "/css/css-images/object-fit-cover-png-002-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-cover-png-002o.html": [ + "a36ddbfce8e8bcb3f072157e1e7a196601d42b54", + [ + null, [ - null, [ - [ - "/css/css-grid/subgrid/line-names-005-ref.html", - "==" - ] - ], - {} - ] - ], - "line-names-006.html": [ - "0aa8c80b2e233c9e9227c1a52e5e330b5ab443f5", + "/css/css-images/object-fit-cover-png-002-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-cover-png-002p.html": [ + "36222054b03d04f8c9ae1ece2f206bf366fb69be", + [ + null, [ - null, [ - [ - "/css/css-grid/subgrid/line-names-006-ref.html", - "==" - ] - ], - {} - ] - ], - "line-names-007.html": [ - "d70a86b6b1469dcc657012d2f1e0867d412c5cdf", + "/css/css-images/object-fit-cover-png-002-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-cover-svg-001e.html": [ + "c787be471f130fdaeebe341063c8f7fc128929ee", + [ + null, [ - null, [ - [ - "/css/css-grid/subgrid/line-names-007-ref.html", - "==" - ] - ], - {} - ] - ], - "line-names-008.html": [ - "56ea9612989b067cc55196d868ce119f90205530", + "/css/css-images/object-fit-cover-svg-001-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-cover-svg-001i.html": [ + "972e20ac22b3d9ea014c540aa4d27ae5470b652e", + [ + null, [ - null, [ - [ - "/css/css-grid/subgrid/line-names-008-ref.html", - "==" - ] - ], - {} - ] - ], - "line-names-009.html": [ - "bd8a7768720bafe1484a81c11a51cf8ec7331994", + "/css/css-images/object-fit-cover-svg-001-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-cover-svg-001o.html": [ + "cf755657bc551669129a624f17cdf4ce09f90933", + [ + null, [ - null, [ - [ - "/css/css-grid/subgrid/line-names-009-ref.html", - "==" - ] - ], - {} - ] - ], - "line-names-010.html": [ - "f22cfe3303ec5be1d58092e3b70d50e67e1e6df3", + "/css/css-images/object-fit-cover-svg-001-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-cover-svg-001p.html": [ + "db899db1b814fb7c35381ad24229d17ce6769285", + [ + null, [ - null, [ - [ - "/css/css-grid/subgrid/line-names-010-ref.html", - "==" - ] - ], - {} - ] - ], - "line-names-011.html": [ - "d3bb734447f6b724f21f0ce4dc2c9d15276523ad", + "/css/css-images/object-fit-cover-svg-001-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-cover-svg-002e.html": [ + "b42eb0eb79667b7d66fa2d291f45e0c3de33e619", + [ + null, [ - null, [ - [ - "/css/css-grid/subgrid/line-names-011-ref.html", - "==" - ] - ], - {} - ] - ], - "line-names-012.html": [ - "e8101043cfc570295fc1612c9f67d733f2aac838", + "/css/css-images/object-fit-cover-svg-002-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-cover-svg-002i.html": [ + "b79b532b737e2302de376252e772ce96cc7cb199", + [ + null, [ - "css/css-grid/subgrid/line-names-012.html", [ - [ - "/css/css-grid/subgrid/line-names-012-ref.html", - "==" - ] - ], - {} - ] - ], - "orthogonal-writing-mode-001.html": [ - "1cf99a73e2ef7b0e3fe42bbf8c188fa4d2733979", + "/css/css-images/object-fit-cover-svg-002-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-cover-svg-002o.html": [ + "e888bd09428730c7670680b5330cd5514d764af6", + [ + null, [ - null, [ - [ - "/css/css-grid/subgrid/orthogonal-writing-mode-001-ref.html", - "==" - ] - ], - {} - ] - ], - "orthogonal-writing-mode-002.html": [ - "20a4b0ccf37114e0975a2f508631caebdd17dadb", + "/css/css-images/object-fit-cover-svg-002-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-cover-svg-002p.html": [ + "65516da2ac16090fc26a8b9fe6f696d584c4089a", + [ + null, [ - null, [ - [ - "/css/css-grid/subgrid/orthogonal-writing-mode-002-ref.html", - "==" - ] - ], - {} - ] - ], - "orthogonal-writing-mode-003.html": [ - "2cd17d628b2021122320eafd7e9de6da5a0d215f", + "/css/css-images/object-fit-cover-svg-002-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-cover-svg-003e.html": [ + "d24d53cfd246a3ff562cc98b369eb1173a82d1d2", + [ + null, [ - null, [ - [ - "/css/css-grid/subgrid/orthogonal-writing-mode-003-ref.html", - "==" - ] - ], - {} - ] - ], - "orthogonal-writing-mode-004.html": [ - "4a0edd7e6d5aefe06fc0d9989c84d3871ea61a14", + "/css/css-images/object-fit-cover-svg-003-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-cover-svg-003i.html": [ + "92c7a975a04cf48f2c3b4c5632627f1afaf92a6a", + [ + null, [ - null, [ - [ - "/css/css-grid/subgrid/orthogonal-writing-mode-004-ref.html", - "==" - ] - ], - {} - ] - ], - "orthogonal-writing-mode-005.html": [ - "d5bd17816104e40538303b8b637897c367c6af63", + "/css/css-images/object-fit-cover-svg-003-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-cover-svg-003o.html": [ + "66401ae1d1a428e12f60048a3fc55e00709d1825", + [ + null, [ - "css/css-grid/subgrid/orthogonal-writing-mode-005.html", [ - [ - "/css/css-grid/subgrid/orthogonal-writing-mode-005-ref.html", - "==" - ] - ], - {} - ] - ], - "orthogonal-writing-mode-006.html": [ - "95d124322891aeb89d323fc5425725b32143ccf1", + "/css/css-images/object-fit-cover-svg-003-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-cover-svg-003p.html": [ + "c726e733dcd136e76ccc6ddde09b81ac02c2c6cf", + [ + null, [ - "css/css-grid/subgrid/orthogonal-writing-mode-006.html", [ - [ - "/css/css-grid/subgrid/orthogonal-writing-mode-006-ref.html", - "==" - ] - ], - {} - ] - ], - "parent-repeat-auto-fit-001.html": [ - "8ecbccbea64320054f940d9c2e2d31dd028daa14", + "/css/css-images/object-fit-cover-svg-003-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-cover-svg-004e.html": [ + "f253fdba681633f099716bcad6bcdef8cf4adf03", + [ + null, [ - null, [ - [ - "/css/css-grid/subgrid/parent-repeat-auto-fit-001-ref.html", - "==" - ] - ], - {} - ] - ], - "parent-repeat-auto-fit-002.html": [ - "b113f47a0b2e823053408433f7f40833a27201f3", + "/css/css-images/object-fit-cover-svg-004-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-cover-svg-004i.html": [ + "0c52eaa17019ed153f7d356dfcf86d2e56b9a2aa", + [ + null, [ - null, [ - [ - "/css/css-grid/subgrid/parent-repeat-auto-fit-002-ref.html", - "==" - ] - ], - {} - ] - ], - "percentage-track-sizing.html": [ - "3e62f19a0a3bfb9397b3c1da94ebd2dcdee2ba0c", + "/css/css-images/object-fit-cover-svg-004-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-cover-svg-004o.html": [ + "7bd2f8419e8fecca50dbd3e26ed4257913c58d98", + [ + null, [ - "css/css-grid/subgrid/percentage-track-sizing.html", [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "placement-implicit-001.html": [ - "738b83f4823c3245893864eecf9983e03c90ac3f", + "/css/css-images/object-fit-cover-svg-004-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-cover-svg-004p.html": [ + "da1c88c50b139216adfd76464689a2431708ad98", + [ + null, [ - "css/css-grid/subgrid/placement-implicit-001.html", [ - [ - "/css/css-grid/subgrid/placement-implicit-001-ref.html", - "==" - ] - ], - {} - ] - ], - "repeat-auto-fill-001.html": [ - "9e57028c4cc2757eb3ec52cc214f902562413474", + "/css/css-images/object-fit-cover-svg-004-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-cover-svg-005e.html": [ + "4d1424648148e5629afe21991b1bd112893dcb2d", + [ + null, [ - null, [ - [ - "/css/css-grid/subgrid/repeat-auto-fill-001-ref.html", - "==" - ] - ], - {} - ] - ], - "repeat-auto-fill-002.html": [ - "80980f14e9f8ccfced29e252114a4337a0dc5aeb", + "/css/css-images/object-fit-cover-svg-005-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-cover-svg-005i.html": [ + "9948ea7878b52be0a6b9ef2825fad9668dad37aa", + [ + null, [ - null, [ - [ - "/css/css-grid/subgrid/repeat-auto-fill-001-ref.html", - "==" - ] - ], - {} - ] - ], - "repeat-auto-fill-003.html": [ - "df14ed8350bce321e50c6f0721b91ad63714083c", + "/css/css-images/object-fit-cover-svg-005-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-cover-svg-005o.html": [ + "894b3e85aa7bc858e2d9cd80f0f7add8e65a6038", + [ + null, [ - "css/css-grid/subgrid/repeat-auto-fill-003.html", [ - [ - "/css/css-grid/subgrid/repeat-auto-fill-001-ref.html", - "==" - ] - ], - {} - ] - ], - "repeat-auto-fill-004.html": [ - "9dd8f33eb9b0e8815ea2a407087cb344b1f870a2", + "/css/css-images/object-fit-cover-svg-005-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-cover-svg-005p.html": [ + "210be382ae2fda5dcd032ae697ba3e8c8371173b", + [ + null, [ - null, [ - [ - "/css/css-grid/subgrid/repeat-auto-fill-004-ref.html", - "==" - ] - ], - {} - ] - ], - "repeat-auto-fill-005.html": [ - "0cf16d47a27e1105d12ef595e8864d46793e2790", + "/css/css-images/object-fit-cover-svg-005-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-cover-svg-006e.html": [ + "d699f2bb30ab21ae24b5e9e1c8c6ed9a030c092d", + [ + null, [ - null, [ - [ - "/css/css-grid/subgrid/repeat-auto-fill-005-ref.html", - "==" - ] - ], - {} - ] - ], - "repeat-auto-fill-006.html": [ - "8d4213c6d87c131f0b03dcba1dad46cc9c9d663c", + "/css/css-images/object-fit-cover-svg-006-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-cover-svg-006i.html": [ + "f7c71eb8958a13dd5dd43a809d5d847a87746b78", + [ + null, [ - null, [ - [ - "/css/css-grid/subgrid/repeat-auto-fill-005-ref.html", - "==" - ] - ], - {} - ] - ], - "repeat-auto-fill-007.html": [ - "949d8296fef40637101cb8bdb24f18710e4e3854", + "/css/css-images/object-fit-cover-svg-006-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-cover-svg-006o.html": [ + "f6b60a4cc75e3e905fa55843c6a696d1760c7eca", + [ + null, [ - null, [ - [ - "/css/css-grid/subgrid/repeat-auto-fill-007-ref.html", - "==" - ] - ], - {} - ] - ], - "repeat-auto-fill-008.html": [ - "28238178f0d9d66139cced2acdd6675fe77c6b36", + "/css/css-images/object-fit-cover-svg-006-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-cover-svg-006p.html": [ + "08c9acfe35a027b45c88f71641863e85b5bc1a65", + [ + null, [ - null, [ - [ - "/css/css-grid/subgrid/repeat-auto-fill-008-ref.html", - "==" - ] - ], - {} - ] - ], - "standalone-axis-size-001.html": [ - "aaa71ddbef27768ccae6601c2b0df7428637469a", + "/css/css-images/object-fit-cover-svg-006-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-dyn-aspect-ratio-001.html": [ + "dafadf2e58b7277f005d74b0d85076e84a33693a", + [ + null, [ - "css/css-grid/subgrid/standalone-axis-size-001.html", [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "standalone-axis-size-002.html": [ - "0e02aa1b140e8dacaabcd3f55228685501ec5e04", + "/css/css-images/object-fit-dyn-aspect-ratio-001-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-dyn-aspect-ratio-002.html": [ + "26ae89e4794fc11ba3bc6833e2ca396cf0d1faf2", + [ + null, [ - "css/css-grid/subgrid/standalone-axis-size-002.html", [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "standalone-axis-size-003.html": [ - "5c06ee62e10be27753f728adaddc4d2b3a74ecec", + "/css/css-images/object-fit-dyn-aspect-ratio-002-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-fill-png-001c.html": [ + "0e2a3883fe2f05a2c89dbc0d87617aa965097330", + [ + null, [ - "css/css-grid/subgrid/standalone-axis-size-003.html", [ + "/css/css-images/object-fit-fill-png-001-ref.html", + "==" + ] + ], + { + "fuzzy": [ [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" + null, + [ + [ + 0, + 20 + ], + [ + 0, + 3200 + ] + ] ] - ], - {} - ] - ], - "standalone-axis-size-004.html": [ - "d69412d62529018b301cc2baec58fb4e21f01e00", + ] + } + ] + ], + "object-fit-fill-png-001e.html": [ + "08aa6b23fe21f2005fbc26327d823b1a90fb48eb", + [ + null, [ - "css/css-grid/subgrid/standalone-axis-size-004.html", [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "standalone-axis-size-005.html": [ - "586d26bf2fe3ecb6a003b97bb8827a230023f56d", + "/css/css-images/object-fit-fill-png-001-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-fill-png-001i.html": [ + "90692c30cb58edaab49c411080bd074d351c87ae", + [ + null, [ - "css/css-grid/subgrid/standalone-axis-size-005.html", [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "standalone-axis-size-006.html": [ - "056f0a402803c84b2827aa41aefee021c46a5559", + "/css/css-images/object-fit-fill-png-001-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-fill-png-001o.html": [ + "b57528b125d33546241bd7218d92efb5bc7dfb24", + [ + null, [ - "css/css-grid/subgrid/standalone-axis-size-006.html", [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "standalone-axis-size-007.html": [ - "464200614c717cdf24975ae90f15246eaf0eff86", + "/css/css-images/object-fit-fill-png-001-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-fill-png-001p.html": [ + "1e30e7aef4c76ca3b25ad6ec50b7c048e008dc30", + [ + null, [ - "css/css-grid/subgrid/standalone-axis-size-007.html", [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "standalone-axis-size-008.html": [ - "6ee4e77405b47c3de23c6fc19a25cec3d576511f", + "/css/css-images/object-fit-fill-png-001-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-fill-png-002c.html": [ + "43bcced9f26c672c641bd5e1c6e48855ad1b23dc", + [ + null, [ - "css/css-grid/subgrid/standalone-axis-size-008.html", [ + "/css/css-images/object-fit-fill-png-002-ref.html", + "==" + ] + ], + { + "fuzzy": [ [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" + null, + [ + [ + 0, + 20 + ], + [ + 0, + 3200 + ] + ] ] - ], - {} - ] - ], - "standalone-axis-size-009.html": [ - "bbf585efd1ad7ca4aba112be57cd4e964ace94b6", + ] + } + ] + ], + "object-fit-fill-png-002e.html": [ + "d5903c2004de7332521ff948344634a501dff15d", + [ + null, [ - "css/css-grid/subgrid/standalone-axis-size-009.html", [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "subgrid-baseline-001.html": [ - "95469c0018e0a97786aff086c0cabaf081ced7b4", + "/css/css-images/object-fit-fill-png-002-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-fill-png-002i.html": [ + "b5abd3d800168e6511baa6fae0a8dad4209e98de", + [ + null, [ - null, [ - [ - "/css/css-grid/subgrid/subgrid-baseline-001-ref.html", - "==" - ] - ], - {} - ] - ], - "subgrid-baseline-002.html": [ - "12a17d7cc4b4502ed8c51a195f4ee04620c3da9b", + "/css/css-images/object-fit-fill-png-002-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-fill-png-002o.html": [ + "a8904f2a4eda6b3617e26218e40e3ada559fc931", + [ + null, [ - null, [ - [ - "/css/css-grid/subgrid/subgrid-baseline-002-ref.html", - "==" - ] - ], - {} - ] - ], - "subgrid-baseline-003.html": [ - "da8e550fb4f1fcb96225fcc219491d7bbbf76306", + "/css/css-images/object-fit-fill-png-002-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-fill-png-002p.html": [ + "e0b44135ec9102bf74e1a59a3b38627e100233cc", + [ + null, [ - null, [ - [ - "/css/css-grid/subgrid/subgrid-baseline-003-ref.html", - "==" - ] - ], - {} - ] - ], - "subgrid-baseline-004.html": [ - "c2bcaccc330628f532e7e2cf1cf187c8b17fc5ad", + "/css/css-images/object-fit-fill-png-002-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-fill-svg-001e.html": [ + "008f8da98e3a9c74a25ca74f6593f394393f355a", + [ + null, [ - null, [ - [ - "/css/css-grid/subgrid/subgrid-baseline-004-ref.html", - "==" - ] - ], - {} - ] - ], - "subgrid-item-block-size-001.html": [ - "29e82197831fec5e996d0f682a8f42eca819a8ed", + "/css/css-images/object-fit-fill-svg-001-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-fill-svg-001i.html": [ + "43e5ae7e86ce93820f8ca6e4350f30915613470a", + [ + null, [ - null, [ - [ - "/css/css-grid/subgrid/subgrid-item-block-size-001-ref.html", - "==" - ] - ], - {} - ] - ], - "subgrid-no-items-on-edges-001.html": [ - "f43c6f785d45a0be6f2da3e73327cd72697b9a19", + "/css/css-images/object-fit-fill-svg-001-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-fill-svg-001o.html": [ + "91e955400442f32c09c88c274f2bf9da30ff6c9d", + [ + null, [ - "css/css-grid/subgrid/subgrid-no-items-on-edges-001.html", [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "subgrid-no-items-on-edges-002.html": [ - "aa905954b967a3c469724776637194a396a53758", + "/css/css-images/object-fit-fill-svg-001-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-fill-svg-001p.html": [ + "d2ffffdb4a1ad4d15acbd2c0c367a04b7d5d326d", + [ + null, [ - "css/css-grid/subgrid/subgrid-no-items-on-edges-002.html", [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "subgrid-stretch.html": [ - "321e12d2a3ba6d1bab3623c385153b2375c1b441", + "/css/css-images/object-fit-fill-svg-001-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-fill-svg-002e.html": [ + "38f3c10c1f03b40dc0a79a22c422bf9f2e6ed9bc", + [ + null, [ - null, [ - [ - "/css/css-grid/subgrid/subgrid-stretch-ref.html", - "==" - ] - ], - {} - ] - ], - "writing-directions-001.html": [ - "24caaebc4f181ca1b3acc5c759ce51c4b84cd15e", + "/css/css-images/object-fit-fill-svg-002-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-fill-svg-002i.html": [ + "2bbf505e48e41df0a608cfb6572c6629cba852ee", + [ + null, [ - "css/css-grid/subgrid/writing-directions-001.html", [ - [ - "/css/css-grid/subgrid/writing-directions-001-ref.html", - "==" - ] - ], - {} - ] - ], - "writing-directions-002.html": [ - "078d5808b04ad21ce4ed0814691d2842ccd8bc57", + "/css/css-images/object-fit-fill-svg-002-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-fill-svg-002o.html": [ + "8580cdb4cf5501fab4229111c440f220d0dbe5fc", + [ + null, [ - "css/css-grid/subgrid/writing-directions-002.html", [ - [ - "/css/css-grid/subgrid/writing-directions-002-ref.html", - "==" - ] - ], - {} - ] - ], - "writing-directions-003.html": [ - "1df5512d19e89addfcd75abfd94c6e5a9bd0bcaf", + "/css/css-images/object-fit-fill-svg-002-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-fill-svg-002p.html": [ + "4e1d61a140a2cc7594ccb69b1dfb38c6fce3505e", + [ + null, [ - "css/css-grid/subgrid/writing-directions-003.html", [ - [ - "/css/css-grid/subgrid/writing-directions-003-ref.html", - "==" - ] - ], - {} - ] + "/css/css-images/object-fit-fill-svg-002-ref.html", + "==" + ] + ], + {} ] - }, - "table-grid-item-dynamic-001.html": [ - "e87a3dfe9a118841e63a8b9d886432304c957b11", + ], + "object-fit-fill-svg-003e.html": [ + "37182514dc7e1d05f9844bf41aaf4f6a42a28990", [ null, [ [ - "/css/css-grid/table-grid-item-dynamic-001-ref.html", + "/css/css-images/object-fit-fill-svg-003-ref.html", "==" ] ], {} ] ], - "table-grid-item-dynamic-002.html": [ - "fdec4e6b3b423e4ca872210473ebd6a1f8f47b13", + "object-fit-fill-svg-003i.html": [ + "54e55f4e8491f2a00ca374ab1438f7c5189d6b7c", [ null, [ [ - "/css/css-grid/table-grid-item-dynamic-002-ref.html", + "/css/css-images/object-fit-fill-svg-003-ref.html", "==" ] ], {} ] ], - "table-grid-item-dynamic-003.html": [ - "32b809c5dcbc33a8c42f575879cd59faddab7318", + "object-fit-fill-svg-003o.html": [ + "1f640d990d780a8b269a1be092ef41645b6df480", [ null, [ [ - "/css/css-grid/table-grid-item-dynamic-003-ref.html", + "/css/css-images/object-fit-fill-svg-003-ref.html", "==" ] ], {} ] ], - "table-grid-item-dynamic-004.html": [ - "537d85ad3420fc66929511f7ced486482340fbca", + "object-fit-fill-svg-003p.html": [ + "165f072bc6f94d65118dcae009db5aff37f64cb1", [ null, [ [ - "/css/css-grid/table-grid-item-dynamic-004-ref.html", + "/css/css-images/object-fit-fill-svg-003-ref.html", "==" ] ], {} ] ], - "whitespace-reattach.html": [ - "f97934eb30e6b5af1ceece9aaf2f52209b959646", + "object-fit-fill-svg-004e.html": [ + "3d36a3b97bac4e056f93824456a124dee1b4d34b", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-images/object-fit-fill-svg-004-ref.html", "==" ] ], {} ] - ] - }, - "css-highlight-api": { - "highlight-priority-painting.html": [ - "89ae87359250001fb4105142e174f15b0c5896da", + ], + "object-fit-fill-svg-004i.html": [ + "cd83227eb7f6cadc311a552f3443d90f2e6ad967", [ - "css/css-highlight-api/highlight-priority-painting.html", + null, [ [ - "/css/css-highlight-api/highlight-priority-painting-ref.html", + "/css/css-images/object-fit-fill-svg-004-ref.html", "==" ] ], {} ] ], - "painting": { - "css-highlight-painting-underline-offset-001.html": [ - "534438089ca0afd4a565e615f43cd964db3a0eb6", + "object-fit-fill-svg-004o.html": [ + "10140225cfa782f0bdba5c68a214a01af36793a5", + [ + null, [ - "css/css-highlight-api/painting/css-highlight-painting-underline-offset-001.html", [ - [ - "/css/css-highlight-api/painting/css-highlight-painting-underline-offset-001-ref.html", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 56 - ], - [ - 0, - 10 - ] - ] - ] - ] - } - ] - ], - "css-target-text-decoration-001.html": [ - "fa76c0bc4e7636c416ac876530f11d9a4e40050a", + "/css/css-images/object-fit-fill-svg-004-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-fill-svg-004p.html": [ + "bd54333a4b473256e0555d1886d32134bf260945", + [ + null, [ - "css/css-highlight-api/painting/css-target-text-decoration-001.html", [ - [ - "/css/css-highlight-api/painting/css-target-text-decoration-001-ref.html", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 60 - ], - [ - 0, - 32 - ] - ] - ] - ] - } - ] - ], - "custom-highlight-font-metrics-001.html": [ - "755409c6b18d1585e3ba10896c3e7ee5537a05ea", + "/css/css-images/object-fit-fill-svg-004-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-fill-svg-005e.html": [ + "c706c670e87de7f94388e90654c9c9d0017dd06b", + [ + null, [ - "css/css-highlight-api/painting/custom-highlight-font-metrics-001.html", [ - [ - "/css/css-highlight-api/painting/custom-highlight-font-metrics-001-ref.html", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 80 - ], - [ - 0, - 4 - ] - ] - ] - ] - } - ] - ], - "custom-highlight-font-metrics-002.html": [ - "58b2db5ce4e9a12b2298c24a1deda18553da6b5f", + "/css/css-images/object-fit-fill-svg-005-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-fill-svg-005i.html": [ + "a12265f224dad095169795462d658d8d6a41d0f6", + [ + null, [ - "css/css-highlight-api/painting/custom-highlight-font-metrics-002.html", [ - [ - "/css/css-highlight-api/painting/custom-highlight-font-metrics-002-ref.html", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 128 - ], - [ - 0, - 8 - ] - ] - ] - ] - } - ] - ], - "custom-highlight-font-metrics-003.html": [ - "d1035ed130e1f008716a64fbb9686bb8e4ba203c", + "/css/css-images/object-fit-fill-svg-005-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-fill-svg-005o.html": [ + "d25f0ecf1ef51c4c434a8cf7292944dae2c0ff3f", + [ + null, [ - "css/css-highlight-api/painting/custom-highlight-font-metrics-003.html", [ - [ - "/css/css-highlight-api/painting/custom-highlight-font-metrics-003-ref.html", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 120 - ], - [ - 0, - 8 - ] - ] - ] - ] - } - ] - ], - "custom-highlight-font-metrics-004.html": [ - "fec70e97d312f4c27f58b8229de95357c9925358", + "/css/css-images/object-fit-fill-svg-005-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-fill-svg-005p.html": [ + "1bbd6a9b89ef9eba5c786e8219707d36cc9c3051", + [ + null, [ - "css/css-highlight-api/painting/custom-highlight-font-metrics-004.html", [ - [ - "/css/css-highlight-api/painting/custom-highlight-font-metrics-003-ref.html", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 120 - ], - [ - 0, - 8 - ] - ] - ] - ] - } - ] - ], - "custom-highlight-font-metrics-005.html": [ - "5b2eb657730cec1e9873209536d94eebcaf11a63", + "/css/css-images/object-fit-fill-svg-005-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-fill-svg-006e.html": [ + "c741c7e658900d4d6766a10855aad7e91fb48ae4", + [ + null, [ - "css/css-highlight-api/painting/custom-highlight-font-metrics-005.html", [ - [ - "/css/css-highlight-api/painting/custom-highlight-font-metrics-005-ref.html", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 80 - ], - [ - 0, - 10 - ] - ] - ] - ] - } - ] - ], - "custom-highlight-painting-001.html": [ - "82b61ec6de07c4d45796785f3e7b559e64a6deab", + "/css/css-images/object-fit-fill-svg-006-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-fill-svg-006i.html": [ + "6da7334e56f690dd5162745c6dd8071852078e23", + [ + null, [ - "css/css-highlight-api/painting/custom-highlight-painting-001.html", [ - [ - "/css/css-highlight-api/painting/custom-highlight-painting-001-ref.html", - "==" - ] - ], - {} - ] - ], - "custom-highlight-painting-002.html": [ - "04b7dadbf83f253988eabb8ae2d1f583e378d9b7", + "/css/css-images/object-fit-fill-svg-006-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-fill-svg-006o.html": [ + "7d48d6f216ac2180ac09c098770b14d0a8d36af2", + [ + null, [ - "css/css-highlight-api/painting/custom-highlight-painting-002.html", [ - [ - "/css/css-highlight-api/painting/custom-highlight-painting-002-ref.html", - "==" - ] - ], - {} - ] - ], - "custom-highlight-painting-003.html": [ - "210f1a230f2040f7c548af4a30386f230132c6a1", + "/css/css-images/object-fit-fill-svg-006-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-fill-svg-006p.html": [ + "73b4f72089de276921dcb3e35dc11beb5b319ad9", + [ + null, + [ + [ + "/css/css-images/object-fit-fill-svg-006-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-none-png-001c.html": [ + "fe483baa96345ad682987f9a4bc222644c8c1cf2", + [ + null, + [ + [ + "/css/css-images/object-fit-none-png-001-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-none-png-001e.html": [ + "91be966a408915dc62518561216fec88955f3496", + [ + null, + [ + [ + "/css/css-images/object-fit-none-png-001-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-none-png-001i.html": [ + "39d7e475c3b3c58ae853a38e832f7e494962f942", + [ + null, + [ + [ + "/css/css-images/object-fit-none-png-001-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-none-png-001o.html": [ + "f1d702a5c64fdb5e88355e580b0a0900999c675a", + [ + null, + [ + [ + "/css/css-images/object-fit-none-png-001-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-none-png-001p.html": [ + "85edee908041b34d4ee1ebc5fe7190bb29a29efa", + [ + null, + [ + [ + "/css/css-images/object-fit-none-png-001-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-none-png-002c.html": [ + "09bc836d024bffd1f614f97067f50ece6fdb76ed", + [ + null, + [ + [ + "/css/css-images/object-fit-none-png-002-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-none-png-002e.html": [ + "ce3e07e7df5686ce8c9b5116401cc5f28b11c411", + [ + null, + [ + [ + "/css/css-images/object-fit-none-png-002-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-none-png-002i.html": [ + "1f33b5758ac29023264fe9d7b90c540b6e895d03", + [ + null, + [ + [ + "/css/css-images/object-fit-none-png-002-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-none-png-002o.html": [ + "2b1083628e5157795fb26c22662c7cac5505c269", + [ + null, + [ + [ + "/css/css-images/object-fit-none-png-002-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-none-png-002p.html": [ + "656515ddebd05f8d99d9eebf31f7c96c6636ef0e", + [ + null, + [ + [ + "/css/css-images/object-fit-none-png-002-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-none-svg-001e.html": [ + "31365eea558cb86527aa44fe22de8857e86c08dd", + [ + null, + [ + [ + "/css/css-images/object-fit-none-svg-001-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-none-svg-001i.html": [ + "7c47f68f64e4dc603de18d7366a39584a807dc11", + [ + null, + [ + [ + "/css/css-images/object-fit-none-svg-001-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-none-svg-001o.html": [ + "24aa6cc6e32e89f7514364ccf7cedd3f810c4411", + [ + null, + [ + [ + "/css/css-images/object-fit-none-svg-001-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-none-svg-001p.html": [ + "f2b3dc05c785043de88c5b83d229aa058a910d31", + [ + null, + [ + [ + "/css/css-images/object-fit-none-svg-001-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-none-svg-002e.html": [ + "68cd20a9e409e15bddd6b4703468324b67ac5cf0", + [ + null, + [ + [ + "/css/css-images/object-fit-none-svg-002-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-none-svg-002i.html": [ + "5fb1823d479d2187cded36255dd441768b208c01", + [ + null, + [ + [ + "/css/css-images/object-fit-none-svg-002-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-none-svg-002o.html": [ + "7d0ad60340e78a1aa472df6ff27f7c8a97013954", + [ + null, + [ + [ + "/css/css-images/object-fit-none-svg-002-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-none-svg-002p.html": [ + "f383450dbda6d1c8c556749344e3f7a35db0c764", + [ + null, + [ + [ + "/css/css-images/object-fit-none-svg-002-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-none-svg-003e.html": [ + "4db5bcc86ebc80234ff9a3c8d96c21abd9303fb0", + [ + null, + [ + [ + "/css/css-images/object-fit-none-svg-003-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-none-svg-003i.html": [ + "132687ca8ee0e990b05ed744640123a25ef5e8b2", + [ + null, + [ + [ + "/css/css-images/object-fit-none-svg-003-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-none-svg-003o.html": [ + "775bbc602978d3925ba331f13e8090e4b4c23eb8", + [ + null, + [ + [ + "/css/css-images/object-fit-none-svg-003-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-none-svg-003p.html": [ + "211e9132bd1d197f8ad2ac340eb7f40b66438275", + [ + null, + [ + [ + "/css/css-images/object-fit-none-svg-003-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-none-svg-004e.html": [ + "d998995ac94f801c0204035402ecb43a34227602", + [ + null, + [ + [ + "/css/css-images/object-fit-none-svg-004-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-none-svg-004i.html": [ + "6b5564a0f0ecc420adc5da07554343083ddbac02", + [ + null, + [ + [ + "/css/css-images/object-fit-none-svg-004-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-none-svg-004o.html": [ + "26c0dd837feaa2a7868af669a1f56d35503dae1d", + [ + null, + [ + [ + "/css/css-images/object-fit-none-svg-004-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-none-svg-004p.html": [ + "2d8d8d5cb85fb1c9f1534a20cf97d1f832777deb", + [ + null, + [ + [ + "/css/css-images/object-fit-none-svg-004-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-none-svg-005e.html": [ + "328a337d3f8b91573cb0e817d473ae170205f421", + [ + null, + [ + [ + "/css/css-images/object-fit-none-svg-005-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-none-svg-005i.html": [ + "d452e38a0d52b1129ed3038fe7175d4935757c22", + [ + null, + [ + [ + "/css/css-images/object-fit-none-svg-005-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-none-svg-005o.html": [ + "7fd4e5b3976af57018166f393c2e02d599951d75", + [ + null, + [ + [ + "/css/css-images/object-fit-none-svg-005-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-none-svg-005p.html": [ + "05aab2098f1ded73eb21270baed68fd2f1aceae4", + [ + null, + [ + [ + "/css/css-images/object-fit-none-svg-005-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-none-svg-006e.html": [ + "a91251704db3ce902aa219eaa4a0effc74db04b8", + [ + null, + [ + [ + "/css/css-images/object-fit-none-svg-006-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-none-svg-006i.html": [ + "15bb00bebd19717c96fd45f80e4f6d79aed651e7", + [ + null, + [ + [ + "/css/css-images/object-fit-none-svg-006-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-none-svg-006o.html": [ + "da2890aa01fd9e44dfe81138bc222f2da602f32f", + [ + null, + [ + [ + "/css/css-images/object-fit-none-svg-006-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-none-svg-006p.html": [ + "8b8b42135c62a3a2e90e4c6463160e3bf42d5e53", + [ + null, + [ + [ + "/css/css-images/object-fit-none-svg-006-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-scale-down-png-001c.html": [ + "5b8116ecbcb6e3343c0316e6d5a1f31c97afe3bd", + [ + null, + [ + [ + "/css/css-images/object-fit-scale-down-png-001-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-scale-down-png-001e.html": [ + "c2f587405fdaeaf8484c57081757059dbb77823c", + [ + null, + [ + [ + "/css/css-images/object-fit-scale-down-png-001-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-scale-down-png-001i.html": [ + "0fd12092459632a4d1b744c740d02eb6297ddac9", + [ + null, + [ + [ + "/css/css-images/object-fit-scale-down-png-001-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-scale-down-png-001o.html": [ + "bed477d0481ecae3d44a6a26ec193187338d639a", + [ + null, + [ + [ + "/css/css-images/object-fit-scale-down-png-001-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-scale-down-png-001p.html": [ + "ff152315ff99651f4fa689c937f592f31cf881e7", + [ + null, + [ + [ + "/css/css-images/object-fit-scale-down-png-001-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-scale-down-png-002c.html": [ + "626f379f1c7ca6934e57e22fc3b2cd1fa0fad6bc", + [ + null, + [ + [ + "/css/css-images/object-fit-scale-down-png-002-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-scale-down-png-002e.html": [ + "4190c5f1f38bb4dfdec3f6e04d2466df5715b7ee", + [ + null, + [ + [ + "/css/css-images/object-fit-scale-down-png-002-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-scale-down-png-002i.html": [ + "dc3fcc2a41a6abc4cc91e839a65646b4348d9bcc", + [ + null, + [ + [ + "/css/css-images/object-fit-scale-down-png-002-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-scale-down-png-002o.html": [ + "f7dcca2ecc5b90f110b69b98b739a39ac6e77f84", + [ + null, + [ + [ + "/css/css-images/object-fit-scale-down-png-002-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-scale-down-png-002p.html": [ + "6d05ee0b254f9560b49a6be77c22252e0d4e03b1", + [ + null, + [ + [ + "/css/css-images/object-fit-scale-down-png-002-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-scale-down-svg-001e.html": [ + "a6bc8d19f26edf250612d24504061e6624007f45", + [ + null, + [ + [ + "/css/css-images/object-fit-scale-down-svg-001-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-scale-down-svg-001i.html": [ + "d331a9e559590270fa9809acb6eb2e069ea5e969", + [ + null, + [ + [ + "/css/css-images/object-fit-scale-down-svg-001-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-scale-down-svg-001o.html": [ + "88ba8171f63f2b166fe649d2b6b1d8da2db0d84f", + [ + null, + [ + [ + "/css/css-images/object-fit-scale-down-svg-001-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-scale-down-svg-001p.html": [ + "ab29b635cc06a05cd1cdeadf929ed5edd3195dd3", + [ + null, + [ + [ + "/css/css-images/object-fit-scale-down-svg-001-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-scale-down-svg-002e.html": [ + "a0b7f1180c6ab5c7497651b1f1a6b7d3f47cbf71", + [ + null, + [ + [ + "/css/css-images/object-fit-scale-down-svg-002-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-scale-down-svg-002i.html": [ + "6d260fb16c65ac6b4e6f8fdafd1238785100f19d", + [ + null, + [ + [ + "/css/css-images/object-fit-scale-down-svg-002-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-scale-down-svg-002o.html": [ + "d60a5a92a9d03450f6a4a84a45e59d3f0c3d8806", + [ + null, + [ + [ + "/css/css-images/object-fit-scale-down-svg-002-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-scale-down-svg-002p.html": [ + "8cca87a44d37bb31805722f3f39426378c951dee", + [ + null, + [ + [ + "/css/css-images/object-fit-scale-down-svg-002-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-scale-down-svg-003e.html": [ + "f4d7cf98b700969d9bdde9375d7aff3fab588e3d", + [ + null, + [ + [ + "/css/css-images/object-fit-scale-down-svg-003-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-scale-down-svg-003i.html": [ + "1841ec750636736a382d0e69b89c0cffa374738e", + [ + null, + [ + [ + "/css/css-images/object-fit-scale-down-svg-003-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-scale-down-svg-003o.html": [ + "31f73c3ba852f1218dbb5724cd21ae90d23970c3", + [ + null, + [ + [ + "/css/css-images/object-fit-scale-down-svg-003-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-scale-down-svg-003p.html": [ + "ee3ff8e15d81e44872bbda4118e160c426905e73", + [ + null, + [ + [ + "/css/css-images/object-fit-scale-down-svg-003-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-scale-down-svg-004e.html": [ + "3f83b62dce079f4d10b009b31d4a6ba194835851", + [ + null, + [ + [ + "/css/css-images/object-fit-scale-down-svg-004-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-scale-down-svg-004i.html": [ + "ecc6337c23e78a0cb4c548b072bafc34b741910b", + [ + null, + [ + [ + "/css/css-images/object-fit-scale-down-svg-004-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-scale-down-svg-004o.html": [ + "9dad7088f58ceca5f429bc43a4fa7526481634fe", + [ + null, + [ + [ + "/css/css-images/object-fit-scale-down-svg-004-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-scale-down-svg-004p.html": [ + "7993375e7d434d0bf0e157f8a4c8a0e2eb2db417", + [ + null, + [ + [ + "/css/css-images/object-fit-scale-down-svg-004-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-scale-down-svg-005e.html": [ + "2e813e7d2c79d949c8ced7d7b9affe9e597fe17f", + [ + null, + [ + [ + "/css/css-images/object-fit-scale-down-svg-005-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-scale-down-svg-005i.html": [ + "a741f643318259cc44f3d5bd414be557c418a032", + [ + null, + [ + [ + "/css/css-images/object-fit-scale-down-svg-005-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-scale-down-svg-005o.html": [ + "808952b89a36366f8f9f097d5cc7c00a743b4a3b", + [ + null, + [ + [ + "/css/css-images/object-fit-scale-down-svg-005-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-scale-down-svg-005p.html": [ + "f0b7632b84dba6594c682fd8a717a2300356cc80", + [ + null, + [ + [ + "/css/css-images/object-fit-scale-down-svg-005-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-scale-down-svg-006e.html": [ + "15ce6d3d4dabe55790b17b355659af31a12a861b", + [ + null, + [ + [ + "/css/css-images/object-fit-scale-down-svg-006-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-scale-down-svg-006i.html": [ + "83c544ed134f516cf3c978ad706cc9d4979eff10", + [ + null, + [ + [ + "/css/css-images/object-fit-scale-down-svg-006-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-scale-down-svg-006o.html": [ + "00eae1ca34bfa049d8c46eadbe385e034c31b7d8", + [ + null, + [ + [ + "/css/css-images/object-fit-scale-down-svg-006-ref.html", + "==" + ] + ], + {} + ] + ], + "object-fit-scale-down-svg-006p.html": [ + "f5e894034eaeead8bf890a281b01431c110a1e7e", + [ + null, + [ + [ + "/css/css-images/object-fit-scale-down-svg-006-ref.html", + "==" + ] + ], + {} + ] + ], + "object-position-png-001c.html": [ + "20ff1cb935c0d2ea72c06f6c79a69ad42a614ef2", + [ + null, + [ + [ + "/css/css-images/object-position-png-001-ref.html", + "==" + ] + ], + {} + ] + ], + "object-position-png-001e.html": [ + "cdf35a1fc7a45e9ea86692a2ac92eb4781f9334e", + [ + null, + [ + [ + "/css/css-images/object-position-png-001-ref.html", + "==" + ] + ], + {} + ] + ], + "object-position-png-001i.html": [ + "d3e2622b4066fdbc7db8e24b724b66cc264cec9c", + [ + null, + [ + [ + "/css/css-images/object-position-png-001-ref.html", + "==" + ] + ], + {} + ] + ], + "object-position-png-001o.html": [ + "cdf0e0b5302a51a673ab6aecb57b642d6a358c5e", + [ + null, + [ + [ + "/css/css-images/object-position-png-001-ref.html", + "==" + ] + ], + {} + ] + ], + "object-position-png-001p.html": [ + "8b80b9c5bf3e5cb694691b4996134d4d37aba575", + [ + null, + [ + [ + "/css/css-images/object-position-png-001-ref.html", + "==" + ] + ], + {} + ] + ], + "object-position-png-002c.html": [ + "5ad030ffb601de16d0ff8f259aff8fc194a1a363", + [ + null, + [ + [ + "/css/css-images/object-position-png-002-ref.html", + "==" + ] + ], + {} + ] + ], + "object-position-png-002e.html": [ + "749948ae4c4bd7ce12926bc016a23cbdea572963", + [ + null, + [ + [ + "/css/css-images/object-position-png-002-ref.html", + "==" + ] + ], + {} + ] + ], + "object-position-png-002i.html": [ + "88b4a150013c22bf8f291a3adef48bb3734763a8", + [ + null, + [ + [ + "/css/css-images/object-position-png-002-ref.html", + "==" + ] + ], + {} + ] + ], + "object-position-png-002o.html": [ + "0d507900f8293bfbd0b38f536ef830878a8cd9b0", + [ + null, + [ + [ + "/css/css-images/object-position-png-002-ref.html", + "==" + ] + ], + {} + ] + ], + "object-position-png-002p.html": [ + "00ace782bc375135a349b3d415b7b9949513c8c2", + [ + null, + [ + [ + "/css/css-images/object-position-png-002-ref.html", + "==" + ] + ], + {} + ] + ], + "object-position-svg-001e.html": [ + "05f226cd887af04fa715b59569cc26e05ce81085", + [ + null, + [ + [ + "/css/css-images/object-position-svg-001-ref.html", + "==" + ] + ], + {} + ] + ], + "object-position-svg-001i.html": [ + "eecf0f4330c1038c9b734a314fae1ed2a2e600dd", + [ + null, + [ + [ + "/css/css-images/object-position-svg-001-ref.html", + "==" + ] + ], + {} + ] + ], + "object-position-svg-001o.html": [ + "589999c91f12b3e54c7291baeb948c145a431981", + [ + null, + [ + [ + "/css/css-images/object-position-svg-001-ref.html", + "==" + ] + ], + {} + ] + ], + "object-position-svg-001p.html": [ + "8b0b468b2fdf2c6cfcccc8aa3b9b11ad484b7ade", + [ + null, + [ + [ + "/css/css-images/object-position-svg-001-ref.html", + "==" + ] + ], + {} + ] + ], + "object-position-svg-002e.html": [ + "0bde50d0ca60db421cc04fb647b7fa518437e821", + [ + null, + [ + [ + "/css/css-images/object-position-svg-002-ref.html", + "==" + ] + ], + {} + ] + ], + "object-position-svg-002i.html": [ + "202b171c3a54762d86c8d4c6797b966f5087bb5c", + [ + null, + [ + [ + "/css/css-images/object-position-svg-002-ref.html", + "==" + ] + ], + {} + ] + ], + "object-position-svg-002o.html": [ + "e05938167c4081491c2a9b00d833f458ce044ad0", + [ + null, + [ + [ + "/css/css-images/object-position-svg-002-ref.html", + "==" + ] + ], + {} + ] + ], + "object-position-svg-002p.html": [ + "3c6b7a3d400b11e4b444d6dbc5437216b3581021", + [ + null, + [ + [ + "/css/css-images/object-position-svg-002-ref.html", + "==" + ] + ], + {} + ] + ], + "object-view-box-contain-intrinsic-size.html": [ + "411aff11a49191ed785a937057182e51eff6ea85", + [ + null, + [ + [ + "/css/css-images/object-view-box-contain-intrinsic-size-ref.html", + "==" + ] + ], + {} + ] + ], + "object-view-box-empty-bounds.html": [ + "b793182a9d1fc5bdf37ca1de65a49131536feb68", + [ + null, + [ + [ + "/css/css-images/object-view-box-empty-bounds-ref.html", + "==" + ] + ], + {} + ] + ], + "object-view-box-fit-contain-canvas.html": [ + "ad9b33db85f7717534d72b0cd1753cc9cb00ea3f", + [ + null, + [ + [ + "/css/css-images/object-view-box-fit-contain-canvas-ref.html", + "==" + ] + ], + {} + ] + ], + "object-view-box-fit-contain-img.html": [ + "d2e4c08a0512d3984e5403af9422babf0436264b", + [ + null, + [ + [ + "/css/css-images/object-view-box-fit-contain-img-ref.html", + "==" + ] + ], + {} + ] + ], + "object-view-box-fit-contain-svg.html": [ + "cfe711fb10c088224e5350a1b2f78c864eb5eb2e", + [ + null, + [ + [ + "/css/css-images/object-view-box-fit-contain-svg-ref.html", + "==" + ] + ], + {} + ] + ], + "object-view-box-fit-contain-video.html": [ + "bd4184cc07f7abdb25a3a3b0ffb917009949f309", + [ + null, + [ + [ + "/css/css-images/object-view-box-fit-contain-video-ref.html", + "==" + ] + ], + {} + ] + ], + "object-view-box-fit-cover-canvas.html": [ + "38976c563a3a1b838972f4363f1eb0efcf68114c", + [ + null, + [ + [ + "/css/css-images/object-view-box-fit-cover-canvas-ref.html", + "==" + ] + ], + {} + ] + ], + "object-view-box-fit-cover-img.html": [ + "1103788435ec32dec923a7440267b59f28f51fc7", + [ + null, + [ + [ + "/css/css-images/object-view-box-fit-cover-img-ref.html", + "==" + ] + ], + {} + ] + ], + "object-view-box-fit-cover-svg.html": [ + "4efe28574ca8bac2aeaa1c004f0b82d4d4b663b2", + [ + null, + [ + [ + "/css/css-images/object-view-box-fit-cover-svg-ref.html", + "==" + ] + ], + {} + ] + ], + "object-view-box-fit-cover-video.html": [ + "bc519a68fc6d3904cfe79e17a3e8caaa098e707e", + [ + null, + [ + [ + "/css/css-images/object-view-box-fit-cover-video-ref.html", + "==" + ] + ], + {} + ] + ], + "object-view-box-fit-fill-canvas.html": [ + "4341564195a4ebdc1fbc8129745ab4d23215a87e", + [ + null, + [ + [ + "/css/css-images/object-view-box-fit-fill-canvas-ref.html", + "==" + ] + ], + {} + ] + ], + "object-view-box-fit-fill-img.html": [ + "c9d938bfa3a46e4f586889ac03d2e99897d7a5b0", + [ + null, + [ + [ + "/css/css-images/object-view-box-fit-fill-img-ref.html", + "==" + ] + ], + {} + ] + ], + "object-view-box-fit-fill-svg.html": [ + "38c54e961863132f349eb033b85d0511a7e6c9f6", + [ + null, + [ + [ + "/css/css-images/object-view-box-fit-fill-svg-ref.html", + "==" + ] + ], + {} + ] + ], + "object-view-box-fit-fill-video.html": [ + "c9f91b6e4663f7adc172f1d0f13345a35638b5e4", + [ + null, + [ + [ + "/css/css-images/object-view-box-fit-fill-video-ref.html", + "==" + ] + ], + {} + ] + ], + "object-view-box-fit-none-canvas.html": [ + "6fe8c16efee069f094eed09a2eb59fdcb0637e2e", + [ + null, + [ + [ + "/css/css-images/object-view-box-fit-none-canvas-ref.html", + "==" + ] + ], + {} + ] + ], + "object-view-box-fit-none-img.html": [ + "f4a7412297fc432b535697ab26d41d88477143b7", + [ + null, + [ + [ + "/css/css-images/object-view-box-fit-none-img-ref.html", + "==" + ] + ], + {} + ] + ], + "object-view-box-fit-none-svg.html": [ + "c1036921651d2da738baf33aac781927f578ae7e", + [ + null, + [ + [ + "/css/css-images/object-view-box-fit-none-svg-ref.html", + "==" + ] + ], + {} + ] + ], + "object-view-box-fit-none-video.html": [ + "34b08572e9934ccd2ffafa5ddb0757874bf02426", + [ + null, + [ + [ + "/css/css-images/object-view-box-fit-none-video-ref.html", + "==" + ] + ], + {} + ] + ], + "object-view-box-iframe.html": [ + "a144a8ff316cb4a4a8d33ba55a3297913479e48f", + [ + null, + [ + [ + "/css/css-images/object-view-box-iframe-ref.html", + "==" + ] + ], + {} + ] + ], + "object-view-box-negative-bounds.html": [ + "34dd6075b40311ff149c6cb596a5ddd3f752750f", + [ + null, + [ + [ + "/css/css-images/object-view-box-negative-bounds-ref.html", + "==" + ] + ], + {} + ] + ], + "object-view-box-property-changed.html": [ + "2574558ea1e5e6b66e3b4b5a1b3e906e1325eb4f", + [ + null, + [ + [ + "/css/css-images/object-view-box-property-changed-ref.html", + "==" + ] + ], + {} + ] + ], + "object-view-box-rect-auto.html": [ + "97f18c781a03514fbec548302016deff80e6b2b1", + [ + null, + [ + [ + "/css/css-images/object-view-box-rect-auto-ref.html", + "==" + ] + ], + {} + ] + ], + "object-view-box-rect-percentage.html": [ + "45f05938d2024bbb062cc16176cb76739d2b4ebc", + [ + null, + [ + [ + "/css/css-images/object-view-box-rect-percentage-ref.html", + "==" + ] + ], + {} + ] + ], + "object-view-box-rect.html": [ + "2a0a8d307bda7c850e330568fdcf76d63548ad07", + [ + null, + [ + [ + "/css/css-images/object-view-box-rect-ref.html", + "==" + ] + ], + {} + ] + ], + "object-view-box-same-size.html": [ + "0daa360155744c17267fbcc4db5a952c150b5017", + [ + null, + [ + [ + "/css/css-images/object-view-box-negative-bounds-ref.html", + "==" + ] + ], + {} + ] + ], + "object-view-box-size-containment.html": [ + "c58e6735bf4070c03336c32a788f7bf0c163624f", + [ + null, + [ + [ + "/css/css-images/object-view-box-size-containment-ref.html", + "==" + ] + ], + {} + ] + ], + "object-view-box-svg-img-no-size.html": [ + "1d1c97a6e5f85cee31dfd47c79fc160f7596957d", + [ + null, + [ + [ + "/css/css-images/object-view-box-svg-img-no-size-ref.html", + "==" + ] + ], + {} + ] + ], + "object-view-box-writing-mode-canvas.html": [ + "8e0aaea2746ef8f1f70228ceb6382e3c74eea815", + [ + null, + [ + [ + "/css/css-images/object-view-box-writing-mode-canvas-ref.html", + "==" + ] + ], + {} + ] + ], + "object-view-box-writing-mode-img.html": [ + "547a2ed331769229bb0df381373a01e3b9b52ed5", + [ + null, + [ + [ + "/css/css-images/object-view-box-writing-mode-img-ref.html", + "==" + ] + ], + {} + ] + ], + "object-view-box-writing-mode-svg.html": [ + "5d90bb6026a3535614551e8170f0d874fea52460", + [ + null, + [ + [ + "/css/css-images/object-view-box-writing-mode-svg-ref.html", + "==" + ] + ], + {} + ] + ], + "object-view-box-writing-mode-video.html": [ + "0dd2e79daef618738200c35aab3f8deb5611afc0", + [ + null, + [ + [ + "/css/css-images/object-view-box-writing-mode-video-ref.html", + "==" + ] + ], + {} + ] + ], + "object-view-box-xywh-percentage.html": [ + "0f1d59343efa29eb048d0ec9dde9c9baf03f7a0d", + [ + null, + [ + [ + "/css/css-images/object-view-box-xywh-percentage-ref.html", + "==" + ] + ], + {} + ] + ], + "object-view-box-xywh.html": [ + "258ff6f083eac3e653a060125aeb81e47d82a862", + [ + null, + [ + [ + "/css/css-images/object-view-box-xywh-ref.html", + "==" + ] + ], + {} + ] + ], + "out-of-range-color-stop-conic.html": [ + "1fe59a5a6b917062b834ef898345ace2a0c90217", + [ + "css/css-images/out-of-range-color-stop-conic.html", [ - "css/css-highlight-api/painting/custom-highlight-painting-003.html", [ + "/css/css-images/reference/200x200-blue-black-green-red.html", + "==" + ] + ], + { + "fuzzy": [ [ - "/css/css-highlight-api/painting/custom-highlight-painting-003-ref.html", - "==" + null, + [ + [ + 1, + 1 + ], + [ + 40000, + 40000 + ] + ] ] - ], - {} - ] - ], - "custom-highlight-painting-004-2.html": [ - "0a612d66d1e13449590cfc1144b34e7ce17b6f6e", + ] + } + ] + ], + "repeating-conic-gradient.html": [ + "9a9587f29f6b491461d9df96d76072cbe13efe9a", + [ + null, [ - "css/css-highlight-api/painting/custom-highlight-painting-004-2.html", [ + "/css/css-images/repeating-conic-gradient-ref.html", + "==" + ] + ], + { + "fuzzy": [ [ - "/css/css-highlight-api/painting/custom-highlight-painting-004-2-ref.html", - "==" + null, + [ + [ + 0, + 47 + ], + [ + 0, + 40000 + ] + ] ] - ], - { - "fuzzy": [ + ] + } + ] + ], + "svg-images-are-ignored.html": [ + "99d86f366cae594889a38e8df9bc6ca2026d8189", + [ + "css/css-images/svg-images-are-ignored.html", + [ + [ + "/css/css-images/svg-images-are-ignored-ref.html", + "==" + ] + ], + {} + ] + ], + "svg-script-is-ignored.html": [ + "e57f22d6b8af9e9ea44e3d0196e9e2100b14aa7e", + [ + "css/css-images/svg-script-is-ignored.html", + [ + [ + "/css/css-images/svg-script-is-ignored-ref.svg", + "==" + ] + ], + {} + ] + ], + "tiled-conic-gradients.html": [ + "eab48b83e92572f3936bd9601876633c47d4bf48", + [ + "css/css-images/tiled-conic-gradients.html", + [ + [ + "/css/css-images/tiled-conic-gradients-ref.html", + "==" + ] + ], + { + "fuzzy": [ + [ + null, [ - null, [ - [ - 0, - 88 - ], - [ - 0, - 1 - ] + 1, + 1 + ], + [ + 40000, + 40000 ] ] ] - } - ] - ], - "custom-highlight-painting-004.html": [ - "320617f8d1f8918b4db8515dd34fda6d33d32260", + ] + } + ] + ], + "tiled-gradients.html": [ + "fdafa1fe99f0db25cca55ce3c13787803e138b49", + [ + null, [ - "css/css-highlight-api/painting/custom-highlight-painting-004.html", [ + "/css/css-images/tiled-gradients-ref.html", + "==" + ] + ], + { + "fuzzy": [ [ - "/css/css-highlight-api/painting/custom-highlight-painting-004-ref.html", - "==" + null, + [ + [ + 0, + 255 + ], + [ + 0, + 564 + ] + ] ] - ], - { - "fuzzy": [ + ] + } + ] + ], + "tiled-radial-gradients.html": [ + "f644a6e294c757742d9b3f4846fd1fcd8dff9aca", + [ + null, + [ + [ + "/css/css-images/tiled-radial-gradients-ref.html", + "==" + ] + ], + { + "fuzzy": [ + [ + null, [ - null, [ - [ - 0, - 255 - ], - [ - 0, - 110 - ] + 0, + 2 + ], + [ + 0, + 8009 ] ] ] - } - ] - ], - "custom-highlight-painting-005.html": [ - "f9b728c9c5e81950de5e4f9194720130770ebde7", + ] + } + ] + ] + }, + "css-inline": { + "baseline-source": { + "baseline-source-inline-box.html": [ + "cc88067c285c226d961673baa567236c95ad489b", [ - "css/css-highlight-api/painting/custom-highlight-painting-005.html", + null, [ [ - "/css/css-highlight-api/painting/custom-highlight-painting-001-ref.html", + "/css/css-inline/baseline-source/baseline-source-inline-box-ref.html", "==" ] ], {} ] - ], - "custom-highlight-painting-006.html": [ - "b4369dcacc5c505109d43ea34e945071f402fde3", + ] + }, + "empty-text-node-001.html": [ + "eddf31ec59ccc206975b9947d1b4bf75e88063ed", + [ + null, + [ + [ + "/css/css-inline/empty-text-node-001-ref.html", + "==" + ] + ], + {} + ] + ], + "initial-letter": { + "Initial-letter-breaking-rtl.html": [ + "14222f4ca9463e6aca9e68a7c364e00b73ba7b5d", [ - "css/css-highlight-api/painting/custom-highlight-painting-006.html", + null, [ [ - "/css/css-highlight-api/painting/custom-highlight-painting-001-ref.html", + "/css/css-inline/initial-letter/Initial-letter-breaking-rtl-ref.html", "==" ] ], {} ] ], - "custom-highlight-painting-007.html": [ - "6cfdac2c7ef0e205325a1e834ea32daf79457974", + "Initial-letter-breaking-vlr.html": [ + "16c54c66f539d2e596c89710364691a7ec275242", [ - "css/css-highlight-api/painting/custom-highlight-painting-007.html", + null, [ [ - "/css/css-highlight-api/painting/custom-highlight-painting-001-ref.html", + "/css/css-inline/initial-letter/Initial-letter-breaking-vlr-ref.html", "==" ] ], {} ] ], - "custom-highlight-painting-008.html": [ - "3da1d82ce3b7f68a7cad64df7a556827c3a0a2d0", + "Initial-letter-breaking-vrl.html": [ + "146fd5c5d216ff6569cce33dbbc913f54afb0711", [ - "css/css-highlight-api/painting/custom-highlight-painting-008.html", + null, [ [ - "/css/css-highlight-api/painting/custom-highlight-painting-001-ref.html", + "/css/css-inline/initial-letter/Initial-letter-breaking-vrl-ref.html", "==" ] ], {} ] ], - "custom-highlight-painting-009.html": [ - "cee2394d62b222641a5a578b3e20decafdd7da7f", + "Initial-letter-breaking.html": [ + "bd199fc2bb6d5d01d6fd9a7f7a9567995612b80b", [ - "css/css-highlight-api/painting/custom-highlight-painting-009.html", + null, [ [ - "/css/css-highlight-api/painting/custom-highlight-painting-001-ref.html", + "/css/css-inline/initial-letter/Initial-letter-breaking-ref.html", "==" ] ], {} ] ], - "custom-highlight-painting-010.html": [ - "cdd2daf85ccc499415137e1bd2be9315b75c66e4", + "initial-letter-block-position-drop-over-ruby-tall.html": [ + "fd92e1b2bbf41ba27e5f4d7bf9d5495e224a5d5f", [ - "css/css-highlight-api/painting/custom-highlight-painting-010.html", + null, [ [ - "/css/css-highlight-api/painting/custom-highlight-painting-001-ref.html", + "/css/css-inline/initial-letter/initial-letter-block-position-drop-over-ruby-tall-ref.html", "==" ] ], {} ] ], - "custom-highlight-painting-011.html": [ - "5eef8508b6580a3c20369f2f32d1a407615609af", + "initial-letter-block-position-drop-over-ruby.html": [ + "5d8b0b9c5d97b997425adde79177b9c9ff32c11a", [ - "css/css-highlight-api/painting/custom-highlight-painting-011.html", + null, [ [ - "/css/css-highlight-api/painting/custom-highlight-painting-001-ref.html", + "/css/css-inline/initial-letter/initial-letter-block-position-drop-over-ruby-ref.html", "==" ] ], {} ] ], - "custom-highlight-painting-012.html": [ - "cc8bb62e1ea93e7619de07a02b38f337db4f556f", + "initial-letter-block-position-drop-under-ruby-tall.html": [ + "6892160e0b7b550dfcb56ba10ef7938db4dce449", [ - "css/css-highlight-api/painting/custom-highlight-painting-012.html", + null, [ [ - "/css/css-highlight-api/painting/custom-highlight-painting-001-ref.html", + "/css/css-inline/initial-letter/initial-letter-block-position-drop-under-ruby-tall-ref.html", "==" ] ], {} ] ], - "custom-highlight-painting-013.html": [ - "021f1cb19f9f1ff9461bfb1c344bb780b8c3712a", + "initial-letter-block-position-drop-under-ruby.html": [ + "c9f4623d060fbe7281ad8144a965cae8a974c833", [ - "css/css-highlight-api/painting/custom-highlight-painting-013.html", + null, [ [ - "/css/css-highlight-api/painting/custom-highlight-painting-001-ref.html", + "/css/css-inline/initial-letter/initial-letter-block-position-drop-under-ruby-ref.html", "==" ] ], {} ] ], - "custom-highlight-painting-014.html": [ - "5313fe0954cbccb824b234bc1d445dfb356c16c9", + "initial-letter-block-position-margins-rtl.html": [ + "7bfd20151ae7324cc816275df612b378c562a2f7", [ - "css/css-highlight-api/painting/custom-highlight-painting-014.html", + null, [ [ - "/css/css-highlight-api/painting/custom-highlight-painting-001-ref.html", + "/css/css-inline/initial-letter/initial-letter-block-position-margins-rtl-ref.html", "==" ] ], {} ] ], - "custom-highlight-painting-015.html": [ - "62ce114dfa8987a2a58d6e08f023087e3a6f6a38", + "initial-letter-block-position-margins-vlr.html": [ + "09c69480fada52fc5b387516ffff2e9233e74f57", [ - "css/css-highlight-api/painting/custom-highlight-painting-015.html", + null, [ [ - "/css/css-highlight-api/painting/custom-highlight-painting-001-ref.html", + "/css/css-inline/initial-letter/initial-letter-block-position-margins-vlr-ref.html", "==" ] ], {} ] ], - "custom-highlight-painting-016.html": [ - "58b580e6b775fa62c00eafe9194af15c534baded", + "initial-letter-block-position-margins-vrl.html": [ + "2e2696fed80337be6c441914490d3df9e9c35a6a", [ null, [ [ - "/css/css-highlight-api/painting/custom-highlight-painting-001-ref.html", + "/css/css-inline/initial-letter/initial-letter-block-position-margins-vrl-ref.html", "==" ] ], {} ] ], - "custom-highlight-painting-017.html": [ - "c3184a986ad2d184f3a7cb388de8e57a73299fcc", + "initial-letter-block-position-margins.html": [ + "3ce4c7d6c2d21401b438bce4ad29230a3bfa4efd", [ null, [ [ - "/css/reference/pass_if_pass_below.html", + "/css/css-inline/initial-letter/initial-letter-block-position-margins-ref.html", "==" ] ], {} ] ], - "custom-highlight-painting-018.html": [ - "95bef09bbe441803e53304ca5e43480ca1093124", + "initial-letter-block-position-raise-over-ruby-tall.html": [ + "eddba2f27d18835b253049e4a573fdccfb1bf310", [ null, [ [ - "/css/css-highlight-api/painting/custom-highlight-painting-001-ref.html", + "/css/css-inline/initial-letter/initial-letter-block-position-raise-over-ruby-tall-ref.html", "==" ] ], {} ] ], - "custom-highlight-painting-below-grammar.html": [ - "93d2560040b791a0685151cc29587c771fad8c03", + "initial-letter-block-position-raise-over-ruby.html": [ + "29b285ba33843488a44bb9c9ba032bb62d491b99", [ - "css/css-highlight-api/painting/custom-highlight-painting-below-grammar.html", + null, [ [ - "/css/css-highlight-api/painting/custom-highlight-painting-below-grammar-ref.html", + "/css/css-inline/initial-letter/initial-letter-block-position-raise-over-ruby-ref.html", "==" ] ], {} ] ], - "custom-highlight-painting-below-selection-transparency.html": [ - "886fa28f539bc30c04edf4d9adcfeb5692ae3fd2", + "initial-letter-block-position-raise-under-ruby-tall.html": [ + "40130d479fdd2c13f29d71aa526cc589323eceef", [ - "css/css-highlight-api/painting/custom-highlight-painting-below-selection-transparency.html", + null, [ [ - "/css/css-highlight-api/painting/custom-highlight-painting-below-selection-transparency-ref.html", + "/css/css-inline/initial-letter/initial-letter-block-position-raise-under-ruby-tall-ref.html", "==" ] ], {} ] ], - "custom-highlight-painting-below-selection.html": [ - "cd5ad36a690995607c7aedfba5a0a84e77a81fb3", + "initial-letter-block-position-raise-under-ruby.html": [ + "367479dac7e2300458f0fed0f7a6df5b03aedf1e", [ - "css/css-highlight-api/painting/custom-highlight-painting-below-selection.html", + null, [ [ - "/css/css-highlight-api/painting/custom-highlight-painting-below-selection-ref.html", + "/css/css-inline/initial-letter/initial-letter-block-position-raise-under-ruby-ref.html", "==" ] ], {} ] ], - "custom-highlight-painting-below-target-text.html": [ - "e55ce783de5ecfae4afeaf0450dcab8e9ff3cdf3", + "initial-letter-drop-initial-rtl.html": [ + "542cf00d21af3809fc6eaf47b1fb32f2c2e4790f", [ - "css/css-highlight-api/painting/custom-highlight-painting-below-target-text.html", + null, [ [ - "/css/css-highlight-api/painting/custom-highlight-painting-below-target-text-ref.html", + "/css/css-inline/initial-letter/initial-letter-drop-initial-rtl-ref.html", "==" ] ], {} ] ], - "custom-highlight-painting-iframe-001.html": [ - "240c112c5dd0c1bf57dd35a3d1e77970b03a94f8", + "initial-letter-drop-initial-vlr.html": [ + "98bb7a6e515317465b684997f49822b604ba5df9", [ - "css/css-highlight-api/painting/custom-highlight-painting-iframe-001.html", + null, [ [ - "/css/css-highlight-api/painting/custom-highlight-painting-iframe-001-ref.html", + "/css/css-inline/initial-letter/initial-letter-drop-initial-vlr-ref.html", "==" ] ], {} ] ], - "custom-highlight-painting-iframe-002.html": [ - "388457f9cbf4c7a43154f2f01ae051e2316c318e", + "initial-letter-drop-initial-vrl.html": [ + "4d6aece9f81d3be7c07636a9c236d12ff02a6eba", [ - "css/css-highlight-api/painting/custom-highlight-painting-iframe-002.html", + null, [ [ - "/css/css-highlight-api/painting/custom-highlight-painting-iframe-001-ref.html", + "/css/css-inline/initial-letter/initial-letter-drop-initial-vrl-ref.html", "==" ] ], {} ] ], - "custom-highlight-painting-iframe-003.html": [ - "8614d35ed68216a69bfacb18e3c5ecc8a118abe6", + "initial-letter-drop-initial.html": [ + "edd3ac968d6882b1a24ee01cc50e7593c3eb1f66", [ - "css/css-highlight-api/painting/custom-highlight-painting-iframe-003.html", + null, [ [ - "/css/css-highlight-api/painting/custom-highlight-painting-iframe-003-ref.html", + "/css/css-inline/initial-letter/initial-letter-drop-initial-ref.html", "==" ] ], {} ] ], - "custom-highlight-painting-iframe-004.html": [ - "d13d75a5614489de00357a89b60c9659e1798383", + "initial-letter-float-001-rtl.html": [ + "96b2811771476eecc439aecf2125c40067cdf437", [ - "css/css-highlight-api/painting/custom-highlight-painting-iframe-004.html", + null, [ [ - "/css/css-highlight-api/painting/custom-highlight-painting-iframe-004-ref.html", + "/css/css-inline/initial-letter/initial-letter-float-001-rtl-ref.html", "==" ] ], {} ] ], - "custom-highlight-painting-iframe-005.html": [ - "d31590c639c9e0d932d89e075d9709359e8282fb", + "initial-letter-float-001-vlr.html": [ + "d9b98462d43c281c49b614dd965b299049bf3df8", [ - "css/css-highlight-api/painting/custom-highlight-painting-iframe-005.html", + null, [ [ - "/css/css-highlight-api/painting/custom-highlight-painting-iframe-005-ref.html", + "/css/css-inline/initial-letter/initial-letter-float-001-vlr-ref.html", "==" ] ], {} ] ], - "custom-highlight-painting-iframe-006.html": [ - "2b1e88e6595dee12806691efc472918a81f218c7", + "initial-letter-float-001-vrl.html": [ + "850321fd751c354d10ed86afad1458d1539a269f", [ - "css/css-highlight-api/painting/custom-highlight-painting-iframe-006.html", + null, [ [ - "/css/css-highlight-api/painting/custom-highlight-painting-iframe-006-ref.html", + "/css/css-inline/initial-letter/initial-letter-float-001-vrl-ref.html", "==" ] ], {} ] ], - "custom-highlight-painting-inheritance-001.html": [ - "eb5e5e1181192b8e8f513e137f3c0b6e168b5ab8", + "initial-letter-float-001.html": [ + "76e83c6a939be693f9f32c14398225eb742045b1", [ null, [ [ - "/css/css-highlight-api/painting/custom-highlight-painting-inheritance-001-ref.html", + "/css/css-inline/initial-letter/initial-letter-float-001-ref.html", "==" ] ], {} ] ], - "custom-highlight-painting-inheritance-002.html": [ - "fbed69392c8d1200a7e29e27971127ed0d781b09", + "initial-letter-float-002.html": [ + "6f266ea0e05ee5ede7bb2bf41782efe1b59a8c14", [ null, [ [ - "/css/css-highlight-api/painting/custom-highlight-painting-inheritance-001-ref.html", + "/css/css-inline/initial-letter/initial-letter-float-002-ref.html", "==" ] ], {} ] ], - "custom-highlight-painting-inheritance-003.html": [ - "e449ebf334ff7f879c03e0795e7c9dc91cd44547", + "initial-letter-float-003.html": [ + "985227533aec0e2fd717c14c1157cd193a17d819", [ null, [ [ - "/css/css-highlight-api/painting/custom-highlight-painting-inheritance-003-ref.html", + "/css/css-inline/initial-letter/initial-letter-float-003-ref.html", "==" ] ], {} ] ], - "custom-highlight-painting-invalidation-001.html": [ - "aef391ec0f3c749554bc2cf284b18ff78f8bc525", + "initial-letter-float-004.html": [ + "07dd52cc9c052781955d1b2db31384899e590c34", [ - "css/css-highlight-api/painting/custom-highlight-painting-invalidation-001.html", + null, [ [ - "/css/css-highlight-api/painting/custom-highlight-painting-001-ref.html", + "/css/css-inline/initial-letter/initial-letter-float-004-ref.html", "==" ] ], {} ] ], - "custom-highlight-painting-invalidation-002.html": [ - "99271ff7a0ea2d15e0a4a6d7448cfbcc44d42486", + "initial-letter-float-005.html": [ + "6cdd851e4dcd19edf8b52feabaa2a60231a0cb25", [ - "css/css-highlight-api/painting/custom-highlight-painting-invalidation-002.html", + null, [ [ - "/css/css-highlight-api/painting/custom-highlight-painting-staticrange-001-ref.html", + "/css/css-inline/initial-letter/initial-letter-float-005-ref.html", "==" ] ], {} ] ], - "custom-highlight-painting-invalidation-003.html": [ - "d1f87223887a4d38235212948d319c18e9e005e3", + "initial-letter-indentation-rtl.html": [ + "cd3e6f8bc470434d9b610c8cf10529d32a3fba51", [ - "css/css-highlight-api/painting/custom-highlight-painting-invalidation-003.html", + null, [ [ - "/css/css-highlight-api/painting/custom-highlight-painting-001-ref.html", + "/css/css-inline/initial-letter/initial-letter-indentation-rtl-ref.html", "==" ] ], {} ] ], - "custom-highlight-painting-invalidation-004.html": [ - "62f05a84abcb9a81ea7ec1fdcbcaad5e1ddf8a17", + "initial-letter-indentation.html": [ + "20431f4beb57c26e8558ee1d2dae59226bcc0db2", [ - "css/css-highlight-api/painting/custom-highlight-painting-invalidation-004.html", + null, [ [ - "/css/css-highlight-api/painting/custom-highlight-painting-001-ref.html", + "/css/css-inline/initial-letter/initial-letter-indentation-ref.html", "==" ] ], {} ] ], - "custom-highlight-painting-invalidation-005.html": [ - "cabc4c3b9c00282ef632f40c7f4d7092abff9bd1", + "initial-letter-layout-text-decoration-underline.html": [ + "af70ecd1bd6f597ae75cceb21255127175c1e03b", [ - "css/css-highlight-api/painting/custom-highlight-painting-invalidation-005.html", + null, [ [ - "/css/css-highlight-api/painting/custom-highlight-painting-001-ref.html", + "/css/css-inline/initial-letter/initial-letter-layout-text-decoration-underline-ref.html", "==" ] ], {} ] ], - "custom-highlight-painting-invalidation-006.html": [ - "81c2298e1322a103997982bda008c1679e91a033", + "initial-letter-raise-initial-rtl.html": [ + "10b90ac395c02c5f840f7877f73149022ca1186f", [ - "css/css-highlight-api/painting/custom-highlight-painting-invalidation-006.html", + null, [ [ - "/css/css-highlight-api/painting/custom-highlight-painting-001-ref.html", + "/css/css-inline/initial-letter/initial-letter-raise-initial-rtl-ref.html", "==" ] ], {} ] ], - "custom-highlight-painting-invalidation-007.html": [ - "f23a869728b3012ccaa8ec87ab9f070cf938fe1c", + "initial-letter-raise-initial-vlr.html": [ + "6b1ebd50919fd1c2c0f34bfa0b4496cc746f16fa", [ - "css/css-highlight-api/painting/custom-highlight-painting-invalidation-007.html", + null, [ [ - "/css/css-highlight-api/painting/custom-highlight-painting-invalidation-007-ref.html", + "/css/css-inline/initial-letter/initial-letter-raise-initial-vlr-ref.html", "==" ] ], {} ] ], - "custom-highlight-painting-overlapping-highlights-001.html": [ - "0b380574bc5df0731605d14f0adb34cd13e61350", + "initial-letter-raise-initial-vrl.html": [ + "62a699f57fa13b92c74cebc66178f8471bfe8f03", [ null, [ [ - "/css/css-highlight-api/painting/custom-highlight-painting-overlapping-highlights-001-ref.html", + "/css/css-inline/initial-letter/initial-letter-raise-initial-vrl-ref.html", "==" ] ], {} ] ], - "custom-highlight-painting-overlapping-highlights-002.html": [ - "2dda273abfe8dfc17be2defec60340a85ac5ac4a", + "initial-letter-raise-initial.html": [ + "4b8e81453b74bb0fdf68fc5631b289e32ddaf2cb", [ null, [ [ - "/css/css-highlight-api/painting/custom-highlight-painting-overlapping-highlights-002-ref.html", + "/css/css-inline/initial-letter/initial-letter-raise-initial-ref.html", "==" ] ], {} ] ], - "custom-highlight-painting-prioritization-001.html": [ - "cc2a53be54ee0413c5c0d1ffdc9fc305af5c07c6", + "initial-letter-raised-sunken-caps-raise.html": [ + "4e90667bd76437b0b8fa2ea1b4f3807f90dc23f6", [ - "css/css-highlight-api/painting/custom-highlight-painting-prioritization-001.html", + null, [ [ - "/css/css-highlight-api/painting/custom-highlight-painting-001-ref.html", + "/css/css-inline/initial-letter/initial-letter-raised-sunken-caps-raise-ref.html", "==" ] ], {} ] ], - "custom-highlight-painting-prioritization-002.html": [ - "756368a8e61209f42d387916808e50b72430eed7", + "initial-letter-raised-sunken-caps-sunken.html": [ + "add90302dcdcecb637bfe70135e4b58eb3b1e20b", [ - "css/css-highlight-api/painting/custom-highlight-painting-prioritization-002.html", + null, [ [ - "/css/css-highlight-api/painting/custom-highlight-painting-001-ref.html", + "/css/css-inline/initial-letter/initial-letter-raised-sunken-caps-sunken-ref.html", "==" ] ], {} ] ], - "custom-highlight-painting-prioritization-003.html": [ - "1c7abf47493dbef17da60981617031de9da7d8fa", + "initial-letter-short-para-initial-letter-clears.html": [ + "92d0756a9d6cceae7fa47d785db70e15065f361d", [ - "css/css-highlight-api/painting/custom-highlight-painting-prioritization-003.html", + null, [ [ - "/css/css-highlight-api/painting/custom-highlight-painting-prioritization-003-ref.html", + "/css/css-inline/initial-letter/initial-letter-short-para-initial-letter-clears-ref.html", "==" ] ], {} ] ], - "custom-highlight-painting-staticrange-001.html": [ - "ee81bb89d713b6df203b00a0b92d67b2da7800b1", + "initial-letter-short-para-initial-letter-wraps.html": [ + "d09be38813a38af01e90cb466984ebd6a68fe198", [ null, [ [ - "/css/css-highlight-api/painting/custom-highlight-painting-staticrange-001-ref.html", + "/css/css-inline/initial-letter/initial-letter-short-para-initial-letter-wraps-ref.html", "==" ] ], {} ] ], - "custom-highlight-painting-staticrange-002.html": [ - "43a0b06c35e9cfda39f7be2c33c779c8f0422686", + "initial-letter-sunk-initial-rtl.html": [ + "214ee94c3ad51fe5025d44358c9b22d55ddf55bb", [ null, [ [ - "/css/css-highlight-api/painting/custom-highlight-painting-001-ref.html", + "/css/css-inline/initial-letter/initial-letter-sunk-initial-rtl-ref.html", "==" ] ], {} ] ], - "custom-highlight-painting-staticrange-003.html": [ - "11de279fd61f3a41cbdda8b09c554b8912eaa999", + "initial-letter-sunk-initial-vlr.html": [ + "a4901290a6b2c00398a769a39c87c84cc8da51cf", [ - "css/css-highlight-api/painting/custom-highlight-painting-staticrange-003.html", + null, [ [ - "/css/css-highlight-api/painting/custom-highlight-painting-001-ref.html", + "/css/css-inline/initial-letter/initial-letter-sunk-initial-vlr-ref.html", "==" ] ], {} ] ], - "custom-highlight-painting-staticrange-004.html": [ - "c79943c4d9ab69d19933abbf7a1ba6da7bbe68a1", + "initial-letter-sunk-initial-vrl.html": [ + "52584a98db57d85877869ede27b32ed511a05194", [ - "css/css-highlight-api/painting/custom-highlight-painting-staticrange-004.html", + null, [ [ - "/css/css-highlight-api/painting/custom-highlight-painting-staticrange-004-ref.html", + "/css/css-inline/initial-letter/initial-letter-sunk-initial-vrl-ref.html", "==" ] ], {} ] ], - "custom-highlight-painting-text-decoration-001.html": [ - "72201e6e782362df53765264188b0f7e96fdd927", + "initial-letter-sunk-initial.html": [ + "701469ca90b9e6fb1ce9506a50dff346624b76f2", [ - "css/css-highlight-api/painting/custom-highlight-painting-text-decoration-001.html", + null, [ [ - "/css/css-highlight-api/painting/custom-highlight-painting-text-decoration-001-ref.html", + "/css/css-inline/initial-letter/initial-letter-sunk-initial-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 255 - ], - [ - 0, - 27 - ] - ] - ] + {} + ] + ], + "initial-letter-with-first-line.html": [ + "202c996b8aeed052631ed22dafc7030d065b6174", + [ + null, + [ + [ + "/css/css-inline/initial-letter/initial-letter-with-first-line-ref.html", + "==" ] - } + ], + {} ] ], - "custom-highlight-painting-text-decoration-dynamic-001.html": [ - "050c7c77ce7d506148a0525b177fd40189b93ed0", + "initial-letter-with-tab-rtl.html": [ + "f8a2d7a2a1cbc48e5a7fc52637a1f7cab6b5ea46", [ null, [ [ - "/css/css-highlight-api/painting/custom-highlight-painting-text-decoration-dynamic-001-ref.html", + "/css/css-inline/initial-letter/initial-letter-with-tab-rtl-ref.html", "==" ] ], {} ] ], - "custom-highlight-painting-text-shadow.tentative.html": [ - "b0952dfb9b3fdfe2abc7f093884efa2ae861cea7", + "initial-letter-with-tab.html": [ + "49b1f6b4b0e2a5c85ba7d89a2d7b46a4bcfee611", [ - "css/css-highlight-api/painting/custom-highlight-painting-text-shadow.tentative.html", + null, [ [ - "/css/css-highlight-api/painting/custom-highlight-painting-001-ref.html", + "/css/css-inline/initial-letter/initial-letter-with-tab-ref.html", + "==" + ] + ], + {} + ] + ] + }, + "text-box-trim": { + "text-box-trim-accumulation-001.html": [ + "5ff9c7181f88ad93df1aab71b53ad89734ee44d0", + [ + "css/css-inline/text-box-trim/text-box-trim-accumulation-001.html", + [ + [ + "/css/css-inline/text-box-trim/text-box-trim-start-001-ref.html?class=text", "==" ] ], {} ] ], - "custom-highlight-painting-vertical-writing-mode-001.html": [ - "9fe2bdcd5f12b6a2363d0dfa9e8f8fc731db11b1", + "text-box-trim-atomic-inline-001.html": [ + "e81a072445bdc877bf045c9a66229225796ca6aa", [ - "css/css-highlight-api/painting/custom-highlight-painting-vertical-writing-mode-001.html", + "css/css-inline/text-box-trim/text-box-trim-atomic-inline-001.html", [ [ - "/css/css-highlight-api/painting/custom-highlight-painting-vertical-writing-mode-001-ref.html", + "/css/css-inline/text-box-trim/text-box-trim-atomic-inline-001-ref.html", "==" ] ], {} ] ], - "invalidation": { - "css-highlight-invalidation-001.html": [ - "d885424765d3934eb2187d78a2f0791158441c8b", + "text-box-trim-block-in-inline-end-001.html": [ + "37d5ff0bb82b1f6d4e99c4862fd2776ce36d75c3", + [ + "css/css-inline/text-box-trim/text-box-trim-block-in-inline-end-001.html", [ - "css/css-highlight-api/painting/invalidation/css-highlight-invalidation-001.html", [ - [ - "/css/css-highlight-api/painting/invalidation/css-highlight-invalidation-001-ref.html", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 56 - ], - [ - 0, - 10 - ] - ] - ] - ] - } - ] + "/css/css-inline/text-box-trim/text-box-trim-block-in-inline-end-001-ref.html", + "==" + ] + ], + {} ] - } - } - }, - "css-images": { - "color-stop-currentcolor.html": [ - "e3074e398fe80446e9537c445c1e1e073a0cb1bb", - [ - null, + ], + "text-box-trim-block-in-inline-end-002.html": [ + "78f461d6355c9b5dee280387d645da315bb0b728", [ + "css/css-inline/text-box-trim/text-box-trim-block-in-inline-end-002.html", [ - "/css/css-images/color-stop-currentcolor-ref.html", - "==" - ] - ], - {} - ] - ], - "conic-gradient-angle-negative.html": [ - "ff8e20aafedd1c21730d1a5e61787f525d47ef11", - [ - null, + [ + "/css/css-inline/text-box-trim/text-box-trim-block-in-inline-end-001-ref.html", + "==" + ] + ], + {} + ] + ], + "text-box-trim-block-in-inline-end-003.html": [ + "03faacbdbb2c68d4cf1cd51daeec43ddf0c1ea3b", [ + "css/css-inline/text-box-trim/text-box-trim-block-in-inline-end-003.html", [ - "/css/css-images/reference/200x200-blue-black-green-red.html", - "==" - ] - ], - {} - ] - ], - "conic-gradient-angle.html": [ - "0b3404508d072705a59bdc97ac23b8d53fc1ffde", - [ - null, + [ + "/css/css-inline/text-box-trim/text-box-trim-block-in-inline-end-001-ref.html", + "==" + ] + ], + {} + ] + ], + "text-box-trim-block-in-inline-end-004.html": [ + "7e5b03c15f0151812a3346a88cf077d318a996ac", [ + "css/css-inline/text-box-trim/text-box-trim-block-in-inline-end-004.html", [ - "/css/css-images/reference/200x200-blue-black-green-red.html", - "==" - ] - ], - {} - ] - ], - "conic-gradient-center.html": [ - "ecbc3ffa5c7cbae41b90940b6cdb591e82aef4cb", - [ - null, + [ + "/css/css-inline/text-box-trim/text-box-trim-block-in-inline-end-001-ref.html", + "==" + ] + ], + {} + ] + ], + "text-box-trim-block-in-inline-start-001.html": [ + "312265b41e8d04312497360d82953b94867fe483", [ + "css/css-inline/text-box-trim/text-box-trim-block-in-inline-start-001.html", [ - "/css/css-images/conic-gradient-center-ref.html", - "==" - ] - ], - {} - ] - ], - "cross-fade-basic.html": [ - "be396e52785a91e8b1c678d5596f9cae061e4184", - [ - "css/css-images/cross-fade-basic.html", + [ + "/css/css-inline/text-box-trim/text-box-trim-block-in-inline-start-001-ref.html", + "==" + ] + ], + {} + ] + ], + "text-box-trim-block-in-inline-start-002.html": [ + "c3fa558e548209eab4ed914cc8ac3e5cf25b093b", [ + "css/css-inline/text-box-trim/text-box-trim-block-in-inline-start-002.html", [ - "/css/css-images/cross-fade-basic-ref.html", - "==" - ] - ], - { - "fuzzy": [ [ - null, - [ - [ - 0, - 1 - ], - [ - 0, - 10000 - ] - ] + "/css/css-inline/text-box-trim/text-box-trim-block-in-inline-start-001-ref.html", + "==" ] - ] - } - ] - ], - "cross-fade-natural-size.html": [ - "9a62c61aa6d5eca37dbedad2cdd4ad3b12d91006", - [ - "css/css-images/cross-fade-natural-size.html", + ], + {} + ] + ], + "text-box-trim-block-in-inline-start-003.html": [ + "507a558d3086481e33d3b83fc1c7a5f9d6ded6a6", [ + "css/css-inline/text-box-trim/text-box-trim-block-in-inline-start-003.html", [ - "/css/css-images/cross-fade-natural-size-ref.html", - "==" - ] - ], - { - "fuzzy": [ [ - null, - [ - [ - 0, - 1 - ], - [ - 0, - 300000 - ] - ] + "/css/css-inline/text-box-trim/text-box-trim-block-in-inline-start-001-ref.html", + "==" ] - ] - } - ] - ], - "cross-fade-premultiplied-alpha.html": [ - "23d78428118b0550ec95a1f3d9573eb2d95032ba", - [ - "css/css-images/cross-fade-premultiplied-alpha.html", + ], + {} + ] + ], + "text-box-trim-dynamic-001.html": [ + "363fed4b039353daeeddbffb093175f840c7420f", [ + "css/css-inline/text-box-trim/text-box-trim-dynamic-001.html", [ - "/css/css-images/cross-fade-premultiplied-alpha-ref.html", - "==" - ] - ], - { - "fuzzy": [ [ - null, - [ - [ - 1, - 1 - ], - [ - 40000, - 40000 - ] - ] + "/css/css-inline/text-box-trim/text-box-trim-dynamic-001-ref.html", + "==" ] - ] - } - ] - ], - "cross-fade-target-alpha.html": [ - "a10a2bfe8dff5d4cd0fbd9e834ec27e2cc366870", - [ - "css/css-images/cross-fade-target-alpha.html", + ], + {} + ] + ], + "text-box-trim-dynamic-002.html": [ + "f07b39302868a79a4e85043b6ec17700123c1eee", [ + "css/css-inline/text-box-trim/text-box-trim-dynamic-002.html", [ - "/css/css-images/cross-fade-target-alpha-ref.html", - "==" - ] + [ + "/css/css-inline/text-box-trim/text-box-trim-dynamic-001-ref.html", + "==" + ] + ], + {} + ] + ], + "text-box-trim-end-001.html": [ + "dbd44c814b63bc6399ab4c70ef575aa22bd2e32b", + [ + "css/css-inline/text-box-trim/text-box-trim-end-001.html?class=alphabetic", + [ + [ + "/css/css-inline/text-box-trim/text-box-trim-end-001-ref.html?class=alphabetic", + "==" + ] + ], + {} ], - { - "fuzzy": [ + [ + "css/css-inline/text-box-trim/text-box-trim-end-001.html?class=auto", + [ [ - null, - [ - [ - 0, - 8 - ], - [ - 0, - 300000 - ] - ] + "/css/css-inline/text-box-trim/text-box-trim-end-001-ref.html?class=auto", + "==" ] - ] - } - ] - ], - "css-image-fallbacks-and-annotations.html": [ - "3a0e5e02da935fb72bab2e9feda65c2e9627c6fd", - [ - null, + ], + {} + ], [ + "css/css-inline/text-box-trim/text-box-trim-end-001.html?class=text", [ - "/css/css-images/css-image-fallbacks-and-annotations-ref.html", - "==" - ] + [ + "/css/css-inline/text-box-trim/text-box-trim-end-001-ref.html?class=text", + "==" + ] + ], + {} ], - {} - ] - ], - "css-image-fallbacks-and-annotations002.html": [ - "4fd340aba2c55f90e50e22b407043b51156010fa", - [ - null, [ + "css/css-inline/text-box-trim/text-box-trim-end-001.html?class=vlr,auto", [ - "/css/css-images/css-image-fallbacks-and-annotations-ref.html", - "==" - ] + [ + "/css/css-inline/text-box-trim/text-box-trim-end-001-ref.html?class=vlr,auto", + "==" + ] + ], + {} ], - {} - ] - ], - "css-image-fallbacks-and-annotations003.html": [ - "c71f7328a0f67681fc92750e918c9c069316c11f", - [ - null, [ + "css/css-inline/text-box-trim/text-box-trim-end-001.html?class=vlr,cap", [ - "/css/css-images/css-image-fallbacks-and-annotations-ref.html", - "==" - ] + [ + "/css/css-inline/text-box-trim/text-box-trim-end-001-ref.html?class=vlr,cap", + "==" + ] + ], + {} ], - {} - ] - ], - "css-image-fallbacks-and-annotations004.html": [ - "f72627027e9d9a2ed2f7343117ad4c6d0b66cbd3", - [ - null, [ + "css/css-inline/text-box-trim/text-box-trim-end-001.html?class=vlr,ex", [ - "/css/css-images/css-image-fallbacks-and-annotations-ref.html", - "==" - ] + [ + "/css/css-inline/text-box-trim/text-box-trim-end-001-ref.html?class=vlr,ex", + "==" + ] + ], + {} ], - {} - ] - ], - "css-image-fallbacks-and-annotations005.html": [ - "584cba76884acf41c9159af8ee1886e49d7ab1e5", - [ - null, [ + "css/css-inline/text-box-trim/text-box-trim-end-001.html?class=vlr,text", [ - "/css/css-images/css-image-fallbacks-and-annotations-ref.html", - "==" - ] + [ + "/css/css-inline/text-box-trim/text-box-trim-end-001-ref.html?class=vlr,text", + "==" + ] + ], + {} ], - {} - ] - ], - "gradient": { - "css-color-4-colors-default-to-oklab-gradient.html": [ - "2b1edca0da1e168c3fa921202c54346b911f354a", [ - "css/css-images/gradient/css-color-4-colors-default-to-oklab-gradient.html", + "css/css-inline/text-box-trim/text-box-trim-end-001.html?class=vrl,alphabetic", [ [ - "/css/css-images/gradient/oklab-gradient-ref.html", + "/css/css-inline/text-box-trim/text-box-trim-end-001-ref.html?class=vrl,alphabetic", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 1, - 12 - ], - [ - 0, - 24000 - ] - ] - ] + {} + ], + [ + "css/css-inline/text-box-trim/text-box-trim-end-001.html?class=vrl,auto", + [ + [ + "/css/css-inline/text-box-trim/text-box-trim-end-001-ref.html?class=vrl,auto", + "==" ] - } + ], + {} + ], + [ + "css/css-inline/text-box-trim/text-box-trim-end-001.html?class=vrl,text", + [ + [ + "/css/css-inline/text-box-trim/text-box-trim-end-001-ref.html?class=vrl,text", + "==" + ] + ], + {} ] ], - "gradient-eval-001.html": [ - "98a9d9234588e5de74a66c09d638d1448814e3fd", + "text-box-trim-end-empty-line-001.html": [ + "e9f8613e44fe20df0a1bfadd16e674b036e11991", [ - null, + "css/css-inline/text-box-trim/text-box-trim-end-empty-line-001.html", [ [ - "/css/css-images/gradient/gradient-eval-001-ref.html", + "/css/css-inline/text-box-trim/text-box-trim-end-empty-line-001-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 1, - 2 - ], - [ - 0, - 10000 - ] - ] - ] - ] - } + {} ] ], - "gradient-eval-002.html": [ - "5a0790ab0d71f8a2fca25e8b3fcda59f4681f186", + "text-box-trim-float-clear-br-001.html": [ + "6694d98421d015445c0efc61afa34fa75a97738d", [ - null, + "css/css-inline/text-box-trim/text-box-trim-float-clear-br-001.html", [ [ - "/css/css-images/gradient/gradient-eval-002-ref.html", + "/css/css-inline/text-box-trim/text-box-trim-float-clear-br-001-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 1, - 2 - ], - [ - 0, - 10000 - ] - ] - ] - ] - } + {} ] ], - "gradient-eval-003.html": [ - "86f76a7365cd83a38445487d618f9e8fb44aa710", + "text-box-trim-float-clear-br-002.html": [ + "883a1de3a352063c483576781f5d6dd428774e9f", [ - null, + "css/css-inline/text-box-trim/text-box-trim-float-clear-br-002.html", [ [ - "/css/css-images/gradient/gradient-eval-003-ref.html", + "/css/css-inline/text-box-trim/text-box-trim-float-clear-br-002-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 1, - 2 - ], - [ - 0, - 10000 - ] - ] - ] - ] - } + {} ] ], - "gradient-eval-004.html": [ - "ada406fd2a0ec8bea1af74daeafc95563174ac1f", + "text-box-trim-float-clear-br-003.html": [ + "e04d18ec1095449337837461f315868835542da4", [ - null, + "css/css-inline/text-box-trim/text-box-trim-float-clear-br-003.html", [ [ - "/css/css-images/gradient/gradient-eval-004-ref.html", + "/css/css-inline/text-box-trim/text-box-trim-float-clear-br-002-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 1, - 2 - ], - [ - 0, - 10000 - ] - ] - ] - ] - } + {} ] ], - "gradient-eval-005.html": [ - "1165fcb5a69e1e37694f5daeb84f6bae265d62ef", + "text-box-trim-float-start-001.html": [ + "3d87a82d7dbf8cfd5c77e188e61f5479206ae5fb", [ - null, + "css/css-inline/text-box-trim/text-box-trim-float-start-001.html", [ [ - "/css/css-images/gradient/gradient-eval-005-ref.html", + "/css/css-inline/text-box-trim/text-box-trim-float-start-001-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 1, - 2 - ], - [ - 0, - 10000 - ] - ] - ] - ] - } + {} ] ], - "gradient-eval-006.html": [ - "e719d2e110a3cdfda5d7f08ec10237bc0fb02dc8", + "text-box-trim-half-leading-block-box-001.html": [ + "4eda7e48827591f8824ca2b62f30d0bf1c5952b4", [ - null, + "css/css-inline/text-box-trim/text-box-trim-half-leading-block-box-001.html", [ [ - "/css/css-images/gradient/gradient-eval-006-ref.html", + "/css/css-inline/text-box-trim/text-box-trim-half-leading-block-box-001-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 1, - 2 - ], - [ - 0, - 10000 - ] - ] - ] - ] - } + {} ] ], - "gradient-eval-007.html": [ - "e85fec2b4de87c12e7d895fe98a774adee5940e9", + "text-box-trim-half-leading-block-box-002.html": [ + "62c734405a0e14e7dd7070173c846bb58921c130", [ - null, + "css/css-inline/text-box-trim/text-box-trim-half-leading-block-box-002.html", [ [ - "/css/css-images/gradient/gradient-eval-007-ref.html", + "/css/css-inline/text-box-trim/text-box-trim-half-leading-block-box-002-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 1, - 2 - ], - [ - 0, - 10000 - ] - ] - ] - ] - } + {} ] ], - "gradient-eval-008.html": [ - "5201062f8e3dfdeed5ca88173bf29eb61a011064", + "text-box-trim-half-leading-block-box-003.html": [ + "dc5e3204c98e9e0553de6d9739f16533201f234a", [ - null, + "css/css-inline/text-box-trim/text-box-trim-half-leading-block-box-003.html", [ [ - "/css/css-images/gradient/gradient-eval-008-ref.html", + "/css/css-inline/text-box-trim/text-box-trim-half-leading-block-box-003-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 1, - 2 - ], - [ - 0, - 10000 - ] - ] - ] + {} + ] + ], + "text-box-trim-half-leading-block-box-004.html": [ + "3e24919fd7f36d070d3430d0ff5f482785a0d30b", + [ + "css/css-inline/text-box-trim/text-box-trim-half-leading-block-box-004.html", + [ + [ + "/css/css-inline/text-box-trim/text-box-trim-half-leading-block-box-001-ref.html", + "==" ] - } + ], + {} ] ], - "gradient-eval-009.html": [ - "d361bdc3f1c4969b316820eaa431b76be7e1c354", + "text-box-trim-half-leading-block-box-005.html": [ + "fd6b18d052b3c582044320bea022c4dc64a5d6a6", [ - null, + "css/css-inline/text-box-trim/text-box-trim-half-leading-block-box-005.html", [ [ - "/css/css-images/gradient/gradient-eval-009-ref.html", + "/css/css-inline/text-box-trim/text-box-trim-half-leading-block-box-001-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 1, - 2 - ], - [ - 0, - 10000 - ] - ] - ] + {} + ] + ], + "text-box-trim-half-leading-block-box-006.html": [ + "ad6059ed7d89bbd75f6b7e563f9539f6cd0a0818", + [ + "css/css-inline/text-box-trim/text-box-trim-half-leading-block-box-006.html", + [ + [ + "/css/css-inline/text-box-trim/text-box-trim-half-leading-block-box-003-ref.html", + "==" ] - } + ], + {} ] ], - "gradient-none-interpolation.html": [ - "06d7be6e66b6a08132fa9474cd51ea3817300de0", + "text-box-trim-height-001.html": [ + "e240f2343a96bb5966f44c3dfa5a9c9f55a2df71", [ - "css/css-images/gradient/gradient-none-interpolation.html", + "css/css-inline/text-box-trim/text-box-trim-height-001.html", [ [ - "/css/css-images/gradient/gradient-none-interpolation-ref.html", + "/css/css-inline/text-box-trim/text-box-trim-height-001-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 1, - 1 - ], - [ - 0, - 5000 - ] - ] - ] + {} + ] + ], + "text-box-trim-height-002.html": [ + "113dabc83f063360f434f2855a3b171cb62991ec", + [ + "css/css-inline/text-box-trim/text-box-trim-height-002.html", + [ + [ + "/css/css-inline/text-box-trim/text-box-trim-height-001-ref.html", + "==" ] - } + ], + {} ] ], - "legacy-color-gradient.html": [ - "e6af42103b9407221bfeae6e74b5379dc7379441", + "text-box-trim-initial-letter-end-001.html": [ + "473b9e6bf09d2a7bf59bccc12aceb3025503e482", [ - "css/css-images/gradient/legacy-color-gradient.html", + "css/css-inline/text-box-trim/text-box-trim-initial-letter-end-001.html", [ [ - "/css/css-images/gradient/srgb-gradient-ref.html", + "/css/css-inline/text-box-trim/text-box-trim-initial-letter-end-001-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 1, - 2 - ], - [ - 0, - 24000 - ] - ] - ] + {} + ] + ], + "text-box-trim-initial-letter-start-001.html": [ + "ad7442d4b47102ec99876eec64200360d47a729e", + [ + "css/css-inline/text-box-trim/text-box-trim-initial-letter-start-001.html", + [ + [ + "/css/css-inline/text-box-trim/text-box-trim-initial-letter-start-001-ref.html", + "==" ] - } + ], + {} ] ], - "oklab-gradient.html": [ - "338a0c9d3bcf80739f2f2e80b404d8dac7ba464f", + "text-box-trim-line-clamp-001.html": [ + "88cd7454c5427bf9966d5bc30fcf96ef8e1f2fda", [ - "css/css-images/gradient/oklab-gradient.html", + "css/css-inline/text-box-trim/text-box-trim-line-clamp-001.html", [ [ - "/css/css-images/gradient/oklab-gradient-ref.html", + "/css/css-inline/text-box-trim/text-box-trim-line-clamp-001-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 1, - 12 - ], - [ - 0, - 24000 - ] - ] - ] + {} + ] + ], + "text-box-trim-multicol-001.html": [ + "80f897aa4b696a6e3ea615fdb9d5c5ebe89da4fa", + [ + "css/css-inline/text-box-trim/text-box-trim-multicol-001.html", + [ + [ + "/css/css-inline/text-box-trim/text-box-trim-multicol-001-ref.html", + "==" ] - } + ], + {} ] ], - "srgb-gradient.html": [ - "4cdb0f17b7e10f4485ed7fb62bdcaa6a2bb16777", + "text-box-trim-multicol-002.html": [ + "f15746d3d6a00c1076e1cdf2b9f76b29b131efdc", [ - "css/css-images/gradient/srgb-gradient.html", + "css/css-inline/text-box-trim/text-box-trim-multicol-002.html", [ [ - "/css/css-images/gradient/srgb-gradient-ref.html", + "/css/css-inline/text-box-trim/text-box-trim-multicol-001-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 1, - 2 - ], - [ - 0, - 24000 - ] - ] - ] + {} + ] + ], + "text-box-trim-ruby-end-001.html": [ + "5494b00d17ef08ec8dd8ea2a0d7c334b94524b5e", + [ + "css/css-inline/text-box-trim/text-box-trim-ruby-end-001.html", + [ + [ + "/css/css-inline/text-box-trim/text-box-trim-ruby-start-001-ref.html", + "==" ] - } + ], + {} ] ], - "srgb-linear-gradient.html": [ - "a921c6244546e9925d30dc80ea4f884b120514ca", + "text-box-trim-ruby-start-001.html": [ + "b64c5c49e0c7bb9ecb5a1f0f4615f495e1ea5dbf", [ - "css/css-images/gradient/srgb-linear-gradient.html", + "css/css-inline/text-box-trim/text-box-trim-ruby-start-001.html", [ [ - "/css/css-images/gradient/srgb-linear-gradient-ref.html", + "/css/css-inline/text-box-trim/text-box-trim-ruby-start-001-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 1, - 10 - ], - [ - 0, - 24000 - ] - ] - ] + {} + ] + ], + "text-box-trim-ruby-start-002.html": [ + "c4430278adad806895cb7688b084bd9da16f8579", + [ + "css/css-inline/text-box-trim/text-box-trim-ruby-start-002.html", + [ + [ + "/css/css-inline/text-box-trim/text-box-trim-ruby-start-001-ref.html", + "==" ] - } + ], + {} ] ], - "xyz-gradient.html": [ - "6c6a30db143fea93354f404fcd47d768f98d7d22", + "text-box-trim-start-001.html": [ + "106f027688c6941a0fbd95cab29698358995456a", [ - "css/css-images/gradient/xyz-gradient.html", + "css/css-inline/text-box-trim/text-box-trim-start-001.html?class=auto", [ [ - "/css/css-images/gradient/xyz-gradient-ref.html", + "/css/css-inline/text-box-trim/text-box-trim-start-001-ref.html?class=auto", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 1, - 10 - ], - [ - 0, - 24000 - ] - ] - ] + {} + ], + [ + "css/css-inline/text-box-trim/text-box-trim-start-001.html?class=cap", + [ + [ + "/css/css-inline/text-box-trim/text-box-trim-start-001-ref.html?class=cap", + "==" ] - } - ] - ] - }, - "gradient-border-box.html": [ - "2938c5ea99e1e41c64c1d58e69806270318bccf9", - [ - null, + ], + {} + ], [ + "css/css-inline/text-box-trim/text-box-trim-start-001.html?class=ex", [ - "/css/css-images/gradient-border-box-ref.html", - "==" - ] + [ + "/css/css-inline/text-box-trim/text-box-trim-start-001-ref.html?class=ex", + "==" + ] + ], + {} ], - {} - ] - ], - "gradient-button.html": [ - "76cd933bcc3c74c10144074cec916f7441fdcd91", - [ - null, [ + "css/css-inline/text-box-trim/text-box-trim-start-001.html?class=text", [ - "/css/css-images/gradient-button-ref.html", - "==" - ] + [ + "/css/css-inline/text-box-trim/text-box-trim-start-001-ref.html?class=text", + "==" + ] + ], + {} ], - {} - ] - ], - "gradient-content-box.html": [ - "82b42ee8fbefe9c2f161ed41b87ec9d2649018db", - [ - null, [ + "css/css-inline/text-box-trim/text-box-trim-start-001.html?class=vlr,alphabetic", [ - "/css/css-images/gradient-content-box-ref.html", - "==" - ] + [ + "/css/css-inline/text-box-trim/text-box-trim-start-001-ref.html?class=vlr,alphabetic", + "==" + ] + ], + {} ], - {} - ] - ], - "gradient-move-stops.html": [ - "21449bc3002e3390ee6ec2a2b6a4b9c5e54dd0aa", - [ - null, [ + "css/css-inline/text-box-trim/text-box-trim-start-001.html?class=vlr,auto", [ - "/css/css-images/gradient-move-stops-ref.html", - "==" - ] + [ + "/css/css-inline/text-box-trim/text-box-trim-start-001-ref.html?class=vlr,auto", + "==" + ] + ], + {} ], - {} - ] - ], - "gradient-refcrash.html": [ - "ef0efc61e0e00eedb85bd5cbcbe6d92cfdd40d48", - [ - null, [ + "css/css-inline/text-box-trim/text-box-trim-start-001.html?class=vlr,text", [ - "/css/reference/blank.html", - "==" - ] + [ + "/css/css-inline/text-box-trim/text-box-trim-start-001-ref.html?class=vlr,text", + "==" + ] + ], + {} ], - {} - ] - ], - "gradients-with-border.html": [ - "51a5412d2a25e7191f920828bfc392a39b07f266", - [ - "css/css-images/gradients-with-border.html", [ + "css/css-inline/text-box-trim/text-box-trim-start-001.html?class=vrl,auto", [ - "/css/css-images/gradients-with-border-ref.html", - "==" - ] + [ + "/css/css-inline/text-box-trim/text-box-trim-start-001-ref.html?class=vrl,auto", + "==" + ] + ], + {} ], - { - "fuzzy": [ + [ + "css/css-inline/text-box-trim/text-box-trim-start-001.html?class=vrl,cap", + [ [ - null, - [ - [ - 0, - 2 - ], - [ - 0, - 11000 - ] - ] + "/css/css-inline/text-box-trim/text-box-trim-start-001-ref.html?class=vrl,cap", + "==" ] - ] - } - ] - ], - "gradients-with-transparent.html": [ - "204bc760bd82414851e9447c75d521932141e939", - [ - null, + ], + {} + ], [ + "css/css-inline/text-box-trim/text-box-trim-start-001.html?class=vrl,ex", [ - "/css/css-images/gradients-with-transparent-ref.html", - "==" - ] + [ + "/css/css-inline/text-box-trim/text-box-trim-start-001-ref.html?class=vrl,ex", + "==" + ] + ], + {} ], - {} - ] - ], - "image-orientation": { - "image-orientation-background-image.html": [ - "866e94596020286cf67f2083bc6dc64258af3506", [ - null, + "css/css-inline/text-box-trim/text-box-trim-start-001.html?class=vrl,text", [ [ - "/css/css-images/image-orientation/reference/image-orientation-background-image-ref.html", + "/css/css-inline/text-box-trim/text-box-trim-start-001-ref.html?class=vrl,text", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 3 - ], - [ - 0, - 50 - ] - ] - ] + {} + ] + ], + "text-box-trim-tall-line-001.html": [ + "3534d36e0b4797c06ba928b14b2cf23542dae6ca", + [ + "css/css-inline/text-box-trim/text-box-trim-tall-line-001.html", + [ + [ + "/css/css-inline/text-box-trim/text-box-trim-tall-line-001-ref.html", + "==" ] - } + ], + {} ] ], - "image-orientation-background-position.html": [ - "d90035728b8d62422e504b75420f7550733d8f1a", + "text-box-trim-text-emphasis-001.html": [ + "174472365e6a5bfe0e0d84062e67992ae12d040f", [ - null, + "css/css-inline/text-box-trim/text-box-trim-text-emphasis-001.html", [ [ - "/css/css-images/image-orientation/reference/image-orientation-background-position-ref.html", + "/css/css-inline/text-box-trim/text-box-trim-text-emphasis-001-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 5 - ], - [ - 0, - 50 - ] - ] - ] + {} + ] + ] + } + }, + "css-layout-api": { + "auto-block-size": { + "absolute.https.html": [ + "bf81b21a4bbd2ded687b1aa18bc71036550206b2", + [ + null, + [ + [ + "/css/css-layout-api/auto-block-size/auto-block-size-absolute-ref.html", + "==" ] - } + ], + {} ] ], - "image-orientation-background-properties-border-radius.html": [ - "d7ddabf966392e786fa21983a24a7d92631c34f3", + "flex.https.html": [ + "96fe3c79a938b1ab3f21bd8cd647c6ea375d776b", [ null, [ [ - "/css/css-images/image-orientation/reference/image-orientation-background-properties-border-radius-ref.html", + "/css/css-layout-api/auto-block-size/flex-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 3 - ], - [ - 0, - 331 - ] - ] - ] - ] - } + {} ] ], - "image-orientation-background-properties.html": [ - "431fba1330eb0a37ff3aae7ee2bcd4835edfb79e", + "floats.https.html": [ + "342c57b5300e257c8fd456489c9c57f9be0913bc", [ null, [ [ - "/css/css-images/image-orientation/reference/image-orientation-background-properties-ref.html", + "/css/css-layout-api/auto-block-size/auto-block-size-floats-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 100 - ], - [ - 0, - 313 - ] - ] - ] - ] - } + {} ] ], - "image-orientation-border-image.html": [ - "29ff38cc489abba6b31727b163698576bc7a7cb7", + "inflow.https.html": [ + "2239b27894c239360743a1c0f2b52bfce2f2f506", [ null, [ [ - "/css/css-images/image-orientation/reference/image-orientation-border-image-ref.html", + "/css/css-layout-api/auto-block-size/inflow-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 16 - ], - [ - 0, - 80 - ] - ] - ] - ] - } + {} ] ], - "image-orientation-default.html": [ - "3fefbd073a4d727b787336aafc746924a9f39e0b", + "negative.https.html": [ + "d321f030023a8e59b8cdd265ae974d01da07e64e", [ null, [ [ - "/css/css-images/image-orientation/reference/image-orientation-default-ref.html", + "/css/css-layout-api/auto-block-size/auto-block-size-negative-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 100 - ], - [ - 0, - 236 - ] - ] - ] + {} + ] + ] + }, + "baseline": { + "child-baseline.https.html": [ + "a871d690117ad00ec83022f72295d0d93d44ec28", + [ + null, + [ + [ + "/css/css-layout-api/green-square-ref.html", + "==" ] - } + ], + {} ] ], - "image-orientation-exif-png.html": [ - "85d807e39869cfc5f847bb7454b2465de9eb8c40", + "flex-baseline.https.html": [ + "ce869bee373df77ef8026a192725b95bc7b903d5", [ null, [ [ - "/css/css-images/image-orientation/reference/image-orientation-exif-png-ref.html", + "/css/css-layout-api/green-square-ref.html", "==" ] ], {} ] ], - "image-orientation-from-image-composited-dynamic1.html": [ - "b42b010d6200bb9bb04d1fe99f3116f1b2e386e4", + "no-baseline.https.html": [ + "0bc08552bc5a665e9577a440bf3d5ed798006f59", [ null, [ [ - "/css/css-images/image-orientation/reference/image-orientation-from-image-ref.html", + "/css/css-layout-api/green-square-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 100 - ], - [ - 0, - 236 - ] - ] - ] - ] - } + {} ] ], - "image-orientation-from-image-composited-dynamic2.html": [ - "39f23621a77d2b89312997cef282d7b6d8e77694", + "orthogonal-baseline.https.html": [ + "c83560b57e85189d5d3e82f5fe5055b305a4c963", [ null, [ [ - "/css/css-images/image-orientation/reference/image-orientation-none-ref.html", + "/css/css-layout-api/green-square-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 100 - ], - [ - 0, - 123 - ] - ] - ] + {} + ] + ] + }, + "box-tree-registered.https.html": [ + "c3024f9f3aac08205f613014d61724aa4f1c40e8", + [ + null, + [ + [ + "/css/css-layout-api/box-tree-registered-ref.html", + "==" + ] + ], + {} + ] + ], + "box-tree-unregistered.https.html": [ + "25fe602d1c449ad1c983b049208a6a23dc746f41", + [ + null, + [ + [ + "/css/css-layout-api/box-tree-unregistered-ref.html", + "==" + ] + ], + {} + ] + ], + "child-constraints": { + "available-block-size-htb-vrl.https.html": [ + "6ec8e4062fcce4ed95d326596735de9f44ce4cbb", + [ + null, + [ + [ + "/css/css-layout-api/green-square-ref.html", + "==" ] - } + ], + {} ] ], - "image-orientation-from-image-composited.html": [ - "4e5032779d7b9012494f13a687122e996b3e6db7", + "available-block-size-invalid.https.html": [ + "32a0f11a4ec70f17a54d7bd1345d17cf421dc202", [ null, [ [ - "/css/css-images/image-orientation/reference/image-orientation-from-image-ref.html", + "/css/css-layout-api/green-square-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 100 - ], - [ - 0, - 236 - ] - ] - ] - ] - } + {} ] ], - "image-orientation-from-image-content-images.html": [ - "a5be8c2277c70ed9bdda3dec497adb63af350798", + "available-block-size-vrl-htb.https.html": [ + "536af3b5a46b9eb156ae249be1fa2a315c08bd8d", [ null, [ [ - "/css/css-images/image-orientation/reference/image-orientation-from-image-content-images-ref.html", + "/css/css-layout-api/green-square-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 5 - ], - [ - 0, - 250 - ] - ] - ] - ] - } + {} ] ], - "image-orientation-from-image-dynamic1.html": [ - "d97492b7f1fa3e4c088e7c451d7835a831d26a96", + "available-inline-size-htb-htb.https.html": [ + "6205c01d104feef599255ada7f96e567ec79ff49", [ null, [ [ - "/css/css-images/image-orientation/reference/image-orientation-from-image-ref.html", + "/css/css-layout-api/green-square-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 100 - ], - [ - 0, - 236 - ] - ] - ] - ] - } + {} ] ], - "image-orientation-from-image-dynamic2.html": [ - "ee4c3ff1fbfd7c6ce0e8414ef6b6628ee645691d", + "available-inline-size-invalid.https.html": [ + "8bb18aaa4ba2b127257170c4a0c6f84048693477", [ null, [ [ - "/css/css-images/image-orientation/reference/image-orientation-none-ref.html", + "/css/css-layout-api/green-square-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 100 - ], - [ - 0, - 123 - ] - ] - ] - ] - } + {} ] ], - "image-orientation-from-image-embedded-content.html": [ - "a07db17a5de801565578e4981d57c18f4c2f4a80", + "available-inline-size-vrl-vrl.https.html": [ + "1b8d01f02476526bcf327e21f4919153ce346dbf", [ null, [ [ - "/css/css-images/image-orientation/reference/image-orientation-from-image-embedded-content-ref.html", + "/css/css-layout-api/green-square-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 5 - ], - [ - 0, - 200 - ] - ] - ] - ] - } + {} ] ], - "image-orientation-from-image.html": [ - "00d87fc406951f75f1b041e6e42f31fc6175bed1", + "available-size-for-percentages-htb-htb.https.html": [ + "9bf4d40ad613390ba41581d52de0f4d52cf2e5f9", [ null, [ [ - "/css/css-images/image-orientation/reference/image-orientation-from-image-ref.html", + "/css/css-layout-api/green-square-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 100 - ], - [ - 0, - 236 - ] - ] - ] - ] - } + {} ] ], - "image-orientation-iframe.html": [ - "69cfb5ceae4fce69c0e677aaaf9fa13f4e9de1f8", + "available-size-for-percentages-htb-vrl.https.html": [ + "eb104a180d75a2c041fd21c2ca00cb44e4568831", [ null, [ [ - "/css/css-images/image-orientation/reference/image-orientation-iframe-ref.html", + "/css/css-layout-api/green-square-ref.html", "==" ] ], {} ] ], - "image-orientation-img-object-fit.html": [ - "5551eb938455a3f56e2860c9d2af24dde12e1b98", + "available-size-for-percentages-invalid.https.html": [ + "8bd969271e0c257ec2c374eda0cb03d1b0a84912", [ null, [ [ - "/css/css-images/image-orientation/reference/image-orientation-img-object-fit-ref.html", + "/css/css-layout-api/green-square-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 5 - ], - [ - 0, - 375 - ] - ] - ] - ] - } + {} ] ], - "image-orientation-list-style-image.html": [ - "ac735626dbd1ec8a0743cf480bddc40d85e93149", + "available-size-for-percentages-vrl-htb.https.html": [ + "ce8ff95dd0d15d9d05c8bf022e3ccb5e5eaa2deb", [ null, [ [ - "/css/css-images/image-orientation/reference/image-orientation-list-style-image-ref.html", + "/css/css-layout-api/green-square-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 3 - ], - [ - 0, - 50 - ] - ] - ] - ] - } + {} ] ], - "image-orientation-mask-image.html": [ - "36247f0b26bdba4122f358e8ee3899728cc70e10", + "available-size-for-percentages-vrl-vrl.https.html": [ + "71c7355b9cdb206235c8bf1c834c42d42c10f52d", [ - "css/css-images/image-orientation/image-orientation-mask-image.html", + null, [ [ - "/css/css-images/image-orientation/reference/image-orientation-mask-image-ref.html", + "/css/css-layout-api/green-square-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 2 - ], - [ - 0, - 27 - ] - ] - ] - ] - } + {} ] ], - "image-orientation-none-content-images.html": [ - "ed1657505ccdd05140262d1b7b22be8e4087be52", + "fixed-block-size-vrl.https.html": [ + "631c5f82815569d4274c24ad73607d03085b7051", [ null, [ [ - "/css/css-images/image-orientation/reference/image-orientation-none-content-images-ref.html", + "/css/css-layout-api/green-square-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 5 - ], - [ - 0, - 150 - ] - ] - ] - ] - } + {} ] ], - "image-orientation-none-cross-origin-canvas.html": [ - "9753e9ab379bd8e3245ad960bb4c8a04fb556c6c", + "fixed-block-size.https.html": [ + "737cc4da75b440cdd7dece9b8a4872805bcb014c", [ null, [ [ - "/css/css-images/image-orientation/reference/image-orientation-none-cross-origin-canvas-ref.html", + "/css/css-layout-api/green-square-ref.html", "==" ] ], {} ] ], - "image-orientation-none-cross-origin-svg.html": [ - "4fc9474edf2526974cd6381fd7b001a059c40f6e", + "fixed-inline-size-vrl.https.html": [ + "4fc3c2e77d99291630bdcd9d8e505976a6183e55", [ null, [ [ - "/css/css-images/image-orientation/reference/image-orientation-none-cross-origin-svg-ref.html", + "/css/css-layout-api/green-square-ref.html", "==" ] ], {} ] ], - "image-orientation-none-cross-origin.html": [ - "ec139d4e229224de8c9953ecf748af2cf28cb197", + "fixed-inline-size.https.html": [ + "0fdf4aca3a76a1afe6349e0d157d8eb0bd3e0561", [ - "css/css-images/image-orientation/image-orientation-none-cross-origin.html", + null, [ [ - "/css/css-images/image-orientation/reference/image-orientation-none-cross-origin-ref.html", + "/css/css-layout-api/green-square-ref.html", "==" ] ], {} ] ], - "image-orientation-none-image-document.html": [ - "05dd66e1e3e50a6a20759fc545dcaa0e6e739490", + "percentage-size-htb-htb.https.html": [ + "84bda1ddf5a87384e61c0ff5ebd894be09b8a638", [ null, [ [ - "/css/css-images/image-orientation/reference/image-orientation-none-image-document-ref.html", + "/css/css-layout-api/green-square-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 100 - ], - [ - 0, - 236 - ] - ] - ] - ] - } + {} ] ], - "image-orientation-none.html": [ - "d689b5af06f2ec3d0c9c74e902ee70ca664e48a8", + "percentage-size-htb-vrl.https.html": [ + "98d285b015d4adda92df3f42b988499ec57d620a", [ null, [ [ - "/css/css-images/image-orientation/reference/image-orientation-none-ref.html", + "/css/css-layout-api/green-square-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 100 - ], - [ - 0, - 123 - ] - ] - ] - ] - } + {} ] ], - "svg-image-orientation-aspect-ratio.html": [ - "d378dbfe546d0264e971157fa00b5938158d26c3", + "percentage-size-invalid.https.html": [ + "04355355528a4312e24d3b975d7c603f551ac141", [ null, [ [ - "/css/css-images/image-orientation/reference/svg-image-orientation-aspect-ratio-ref.html", + "/css/css-layout-api/green-square-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 3 - ], - [ - 0, - 1432 - ] - ] - ] - ] - } + {} ] ], - "svg-image-orientation-none.html": [ - "f585cdb76bf8b30d5d34132dec1f8992c24122f1", + "percentage-size-quirks-mode.https.html": [ + "527149b67a8cd89ec6337484bc5e1c4da5e5e8cc", [ null, [ [ - "/css/css-images/image-orientation/reference/svg-image-orientation-none-ref.html", + "/css/css-layout-api/green-square-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 5 - ], - [ - 0, - 100 - ] - ] - ] - ] - } + {} ] ], - "svg-image-orientation.html": [ - "758e900e91cd4b7659d741212f0ea04f3d0310fe", + "percentage-size-vrl-htb.https.html": [ + "2d3d496fa5f2465a1b3790ff341a77060d95512c", [ null, [ [ - "/css/css-images/image-orientation/reference/svg-image-orientation-ref.html", + "/css/css-layout-api/green-square-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 5 - ], - [ - 0, - 200 - ] - ] - ] + {} + ] + ], + "percentage-size-vrl-vrl.https.html": [ + "577b98ad983eeb733e235db1fc9885ca62a880a3", + [ + null, + [ + [ + "/css/css-layout-api/green-square-ref.html", + "==" ] - } + ], + {} ] ] }, - "image-rendering-border-image.html": [ - "5f4c268d6b9bdd06c221a88b9179fcf64ef2bbf4", - [ - null, + "constraints": { + "fixed-block-size-absolute-left-right-vrl.https.html": [ + "8e177dbf3369c8a8094fae5c617bde081b248625", [ + null, [ - "/css/css-images/image-rendering-border-image-notref.html", - "!=" - ] - ], - {} - ] - ], - "image-set": { - "image-set-all-options-invalid.html": [ - "14d3d0b6e551642dc42afef68cb954929cae9ad9", + [ + "/css/css-layout-api/green-square-ref.html", + "==" + ] + ], + {} + ] + ], + "fixed-block-size-absolute-none.https.html": [ + "7b10f11d7ddd8c75e3d76b2fd762d040ea486c56", [ - "css/css-images/image-set/image-set-all-options-invalid.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-layout-api/green-square-ref.html", "==" ] ], {} ] ], - "image-set-calc-x-rendering-2.html": [ - "b7c02fce25d45b9b0be8f673bc144a8b4a698450", + "fixed-block-size-absolute-top-bottom.https.html": [ + "73c29000cfdc6d50388f4619fdc639185e6c85bf", [ - "css/css-images/image-set/image-set-calc-x-rendering-2.html", + null, [ [ - "/css/css-images/image-set/reference/image-set-rendering-ref.html", + "/css/css-layout-api/green-square-ref.html", "==" ] ], {} ] ], - "image-set-calc-x-rendering.html": [ - "a5444fd76901a402578eaf54b28a4d0563f90a64", + "fixed-block-size-block-none-vrl.https.html": [ + "704b66d64aaeb724a66f94f09e003096b789db72", [ - "css/css-images/image-set/image-set-calc-x-rendering.html", + null, [ [ - "/css/css-images/image-set/reference/image-set-rendering-ref.html", + "/css/css-layout-api/green-square-ref.html", "==" ] ], {} ] ], - "image-set-conic-gradient-rendering.html": [ - "e4f426471a7e11fc935456fac7b71e173d846d38", + "fixed-block-size-block-none.https.html": [ + "6c023f5162837beb379d5995fa9a59016ae1fe9c", [ - "css/css-images/image-set/image-set-conic-gradient-rendering.html", + null, [ [ - "/css/css-images/image-set/reference/image-set-conic-gradient-rendering-ref.html", + "/css/css-layout-api/green-square-ref.html", "==" ] ], {} ] ], - "image-set-content-rendering.html": [ - "aa6d1d6f1c84a333bccab9434ddff3204a687567", + "fixed-block-size-fixed-max.https.html": [ + "8af6afde26952faf53ab272c56f1e51d8ce9db27", [ null, [ [ - "/css/css-images/image-set/reference/image-set-rendering-ref.html", + "/css/css-layout-api/green-square-ref.html", "==" ] ], {} ] ], - "image-set-dpcm-rendering.html": [ - "c9c4f50b5a62b33f61bd6fcb1437737060d49cd7", + "fixed-block-size-fixed-min.https.html": [ + "4d76ed97850f01051e3fdc74b22ef32e418b6222", [ - "css/css-images/image-set/image-set-dpcm-rendering.html", + null, [ [ - "/css/css-images/image-set/reference/image-set-rendering-ref.html", + "/css/css-layout-api/green-square-ref.html", "==" ] ], {} ] ], - "image-set-dpi-rendering-2.html": [ - "688c60a688a387e32abaecc07ec109983d1e58d9", + "fixed-block-size-fixed-vrl.https.html": [ + "bbc0a2fde87207deb4c1cd5eefa47f1dff2a06ad", [ null, [ [ - "/css/css-images/image-set/reference/image-set-rendering-ref.html", + "/css/css-layout-api/green-square-ref.html", "==" ] ], {} ] ], - "image-set-dpi-rendering.html": [ - "3288034d529b61a3b1302eb2960fa1f511354bd5", + "fixed-block-size-fixed.https.html": [ + "45376ac295c460d81a84d25a715085180bc4eb6f", [ null, [ [ - "/css/css-images/image-set/reference/image-set-rendering-ref.html", + "/css/css-layout-api/green-square-ref.html", "==" ] ], {} ] ], - "image-set-dppx-rendering.html": [ - "d111dfb7ff2682071ea3c38d93eadddcac8ebea0", + "fixed-block-size-flex-basis-vrl.https.html": [ + "25fc685a67b2b3082edf297d6d29d83ce1cc5ffe", [ null, [ [ - "/css/css-images/image-set/reference/image-set-rendering-ref.html", + "/css/css-layout-api/green-square-ref.html", "==" ] ], {} ] ], - "image-set-empty-url-rendering.html": [ - "f5b99922216bbb104606834401e634d85ccbe6b8", + "fixed-block-size-flex-column-basis.https.html": [ + "8df99ee835bb212f28ade5f0db4496857c3f44bf", [ null, [ [ - "/css/css-images/image-set/reference/image-set-rendering-ref.html", + "/css/css-layout-api/green-square-ref.html", "==" ] ], {} ] ], - "image-set-first-match-rendering.html": [ - "51d6aeeb241dee054c2f36d1221abf5238e8ac60", + "fixed-block-size-flex-column-grow.https.html": [ + "da53fa86ad8c5114d40887490d8014af1089d849", [ null, [ [ - "/css/css-images/image-set/reference/image-set-rendering-ref.html", + "/css/css-layout-api/green-square-ref.html", "==" ] ], {} ] ], - "image-set-linear-gradient-rendering.html": [ - "2fc31b95a81e3c46fde0f42edcaad04c1ed6f1b9", + "fixed-block-size-flex-column-none.https.html": [ + "1d4249e9252797a00311bb0d1629a791618f9efe", [ null, [ [ - "/css/css-images/image-set/reference/image-set-linear-gradient-rendering-ref.html", + "/css/css-layout-api/green-square-ref.html", "==" ] ], {} ] ], - "image-set-negative-resolution-rendering-2.html": [ - "c686b9a6940dd7847f09b7d8c313f76de18214ca", + "fixed-block-size-flex-column-stretch-vrl.https.html": [ + "c71e202b0ceda991010ba7a76d3815ad74ad4882", [ - "css/css-images/image-set/image-set-negative-resolution-rendering-2.html", + null, [ [ - "/css/css-images/image-set/reference/image-set-rendering-ref.html", + "/css/css-layout-api/green-square-ref.html", "==" ] ], {} ] ], - "image-set-negative-resolution-rendering-3.html": [ - "78eec0f2c1240c183759a267c6c969ba7b341b98", + "fixed-block-size-flex-grow-vrl.https.html": [ + "f77b84910a557a71063bfc7a1e64e7697922bd5f", [ - "css/css-images/image-set/image-set-negative-resolution-rendering-3.html", + null, [ [ - "/css/reference/blank.html", + "/css/css-layout-api/green-square-ref.html", "==" ] ], {} ] ], - "image-set-negative-resolution-rendering.html": [ - "416b6929f28125b61a0e767770308706eeda850c", + "fixed-block-size-flex-none.https.html": [ + "9ef11daccf71535da0836455cfd2d4003f6f719c", [ - "css/css-images/image-set/image-set-negative-resolution-rendering.html", + null, [ [ - "/css/css-images/image-set/reference/image-set-rendering-ref.html", + "/css/css-layout-api/green-square-ref.html", "==" ] ], {} ] ], - "image-set-no-res-rendering-2.html": [ - "f588980be330d1aeb00793275fbcc96e13d3626a", + "fixed-block-size-flex-percentage-indefinite.https.html": [ + "111120673e758e36394bdeb1c07347b067a9bc7a", [ null, [ [ - "/css/css-images/image-set/reference/image-set-rendering-ref.html", + "/css/css-layout-api/green-square-ref.html", "==" ] ], {} ] ], - "image-set-no-res-rendering.html": [ - "577728894d9e62f2ee501d37ee60e715dd236563", + "fixed-block-size-flex-stretch-max.https.html": [ + "c72ed3e04d8f3f5eef05e9d2ff576024736acb58", [ null, [ [ - "/css/css-images/image-set/reference/image-set-rendering-ref.html", + "/css/css-layout-api/green-square-ref.html", "==" ] ], {} ] ], - "image-set-no-url-rendering.html": [ - "f50ebb676abb3075ef71d0cbae60806745d74f33", + "fixed-block-size-flex-stretch.https.html": [ + "cfaf38295f848bdac90f8e0687f496d110cd85ca", [ null, [ [ - "/css/css-images/image-set/reference/image-set-rendering-ref.html", + "/css/css-layout-api/green-square-ref.html", "==" ] ], {} ] ], - "image-set-radial-gradient-rendering.html": [ - "b4e09ea3519be225b66a6db86223f433ac30e469", + "fixed-block-size-grid-none.https.html": [ + "5c7381523e5175062cad19c02017699bceaf9597", [ null, [ [ - "/css/css-images/image-set/reference/image-set-radial-gradient-rendering-ref.html", + "/css/css-layout-api/green-square-ref.html", "==" ] ], {} ] ], - "image-set-rendering-2.html": [ - "fa1749518f4aeadbb4b6c1648349763a32401d6a", + "fixed-block-size-grid-stretch-max.https.html": [ + "c738ad546d220f3893b2b63d4ea6dd46debdda15", [ null, [ [ - "/css/css-images/image-set/reference/image-set-rendering-ref.html", + "/css/css-layout-api/green-square-ref.html", "==" ] ], {} ] ], - "image-set-rendering.html": [ - "a105438cc4b3fa121d63d9f33ae42a74c4add73b", + "fixed-block-size-grid-stretch.https.html": [ + "2e83f42c8662262dbb301a07859c3b985f9e63ab", [ null, [ [ - "/css/css-images/image-set/reference/image-set-rendering-ref.html", + "/css/css-layout-api/green-square-ref.html", "==" ] ], {} ] ], - "image-set-repeating-conic-gradient-rendering.html": [ - "89060996f621a2dfbfde94f2ac9ab2ad48939ed4", + "fixed-block-size-grid-vrl.https.html": [ + "2c004cd9169a27659a92e7686d88d05a992cd603", [ - "css/css-images/image-set/image-set-repeating-conic-gradient-rendering.html", + null, [ [ - "/css/css-images/image-set/reference/image-set-repeating-conic-gradient-rendering-ref.html", + "/css/css-layout-api/green-square-ref.html", "==" ] ], {} ] ], - "image-set-repeating-linear-gradient-rendering.html": [ - "a9cd6125a9eab02e2da74b9158f16d0fd39eb014", + "fixed-block-size-percentage-indefinite.https.html": [ + "ab02cb4b03f4bf141f4e3540b0b2e0e38c27a6d6", [ - "css/css-images/image-set/image-set-repeating-linear-gradient-rendering.html", + null, [ [ - "/css/css-images/image-set/reference/image-set-repeating-linear-gradient-rendering-ref.html", + "/css/css-layout-api/green-square-ref.html", "==" ] ], {} ] ], - "image-set-repeating-radial-gradient-rendering.html": [ - "ec8fd54421976d3dcd2b07831a9cf27cdd97d3d7", + "fixed-block-size-percentage-quirks-mode.https.html": [ + "285ce941b2cd85b301f45e69076570d8f7eb3fbf", [ - "css/css-images/image-set/image-set-repeating-radial-gradient-rendering.html", + null, [ [ - "/css/css-images/image-set/reference/image-set-repeating-radial-gradient-rendering-ref.html", + "/css/css-layout-api/green-square-ref.html", "==" ] ], {} ] ], - "image-set-resolution-001.html": [ - "aaa750217d7079f286f01198be0b0f6dfe90ac20", + "fixed-block-size-percentage-vrl.https.html": [ + "870bc526f874a5999987cff9a12a93159e8130db", [ null, [ [ - "/css/css-images/image-set/image-set-resolution-001-ref.html", + "/css/css-layout-api/green-square-ref.html", "==" ] ], {} ] ], - "image-set-resolution-002.html": [ - "e5795e172f312a7f88d94ba85467b1f8bc7e88bb", + "fixed-block-size-percentage.https.html": [ + "335556550d28988c095fdac828caae9f3ba76d5d", [ null, [ [ - "/css/css-images/image-set/image-set-resolution-001-ref.html", + "/css/css-layout-api/green-square-ref.html", "==" ] ], {} ] ], - "image-set-resolution-003.html": [ - "734ee05ecd184a532d531e92715a99e8305533c6", + "fixed-block-size-quirky-body.https.html": [ + "150426d45c79d881cd50bfcb52edb00df27bd963", [ null, [ [ - "/css/css-images/image-set/image-set-resolution-001-ref.html", + "/css/css-layout-api/green-square-ref.html", "==" ] ], {} ] ], - "image-set-type-first-match-rendering.html": [ - "eafe5bfb2cc80f18174f4a9f4f2a08963cc95e5d", + "fixed-inline-size-absolute-left-right.https.html": [ + "3b81c4d13d408df528dbd33777403866e390eaa0", [ - "css/css-images/image-set/image-set-type-first-match-rendering.html", + null, [ [ - "/css/css-images/image-set/reference/image-set-rendering-ref.html", + "/css/css-layout-api/constraints/fixed-inline-size-ref.html", "==" ] ], {} ] ], - "image-set-type-rendering-2.html": [ - "23e90ea9e43dbb57cd397c45af98d791c2547761", + "fixed-inline-size-absolute-top-bottom-vrl.https.html": [ + "ec94e59a17de50a46616d9402763abe157f2b684", [ null, [ [ - "/css/css-images/image-set/reference/image-set-rendering-ref.html", + "/css/css-layout-api/constraints/fixed-inline-size-ref.html", "==" ] ], {} ] ], - "image-set-type-rendering-3.html": [ - "b47c4d82a3350cceaff5160ca8f21b5943748054", + "fixed-inline-size-block-auto-avoid-floats-vlr.https.html": [ + "2758462bd3357f288a758ea1fe23e7b3799c0e2c", [ null, [ [ - "/css/css-images/image-set/reference/image-set-rendering-ref.html", + "/css/css-layout-api/constraints/fixed-inline-size-ref.html", "==" ] ], {} ] ], - "image-set-type-rendering.html": [ - "069e2c867f586c39e505115671bbeb4ea8de8eed", + "fixed-inline-size-block-auto-avoid-floats.https.html": [ + "862b9ad3b287db2939c00d29f1ad181568f5d3cf", [ null, [ [ - "/css/css-images/image-set/reference/image-set-rendering-ref.html", + "/css/css-layout-api/constraints/fixed-inline-size-ref.html", "==" ] ], {} ] ], - "image-set-type-skip-unsupported-rendering.html": [ - "4473e816bd17fad8199c7391dedaec164a84dccc", + "fixed-inline-size-block-auto-vlr.https.html": [ + "0c15fd12eed4e04fceb64b4a2ffee3ced1fd1203", [ null, [ [ - "/css/css-images/image-set/reference/image-set-rendering-ref.html", + "/css/css-layout-api/constraints/fixed-inline-size-ref.html", "==" ] ], {} ] ], - "image-set-type-unsupported-rendering-2.html": [ - "bebc32d87d389a0d19e061eac31f96731f2aa042", + "fixed-inline-size-block-auto.https.html": [ + "c513c3d8441c370af8be533a8c14d5ed7aa6945a", [ - "css/css-images/image-set/image-set-type-unsupported-rendering-2.html", + null, [ [ - "/css/reference/blank.html", + "/css/css-layout-api/constraints/fixed-inline-size-ref.html", "==" ] ], {} ] ], - "image-set-type-unsupported-rendering.html": [ - "486fcb3a8e04e216ef074b5c63db7d9639bb740b", + "fixed-inline-size-fixed-vrl.https.html": [ + "93b0c110d97d6573a9f9b19b9b5aeac04658fde5", [ - "css/css-images/image-set/image-set-type-unsupported-rendering.html", + null, [ [ - "/css/reference/blank.html", + "/css/css-layout-api/constraints/fixed-inline-size-ref.html", "==" ] ], {} ] ], - "image-set-unordered-res-rendering.html": [ - "2085b416b6bc8350028c24e11a65cc93a664c46b", + "fixed-inline-size-fixed.https.html": [ + "d8e8062f83fce06b7ae6bc20c7527ce4ae333fa3", [ null, [ [ - "/css/css-images/image-set/reference/image-set-rendering-ref.html", + "/css/css-layout-api/constraints/fixed-inline-size-ref.html", "==" ] ], {} ] ], - "image-set-zero-resolution-rendering-2.html": [ - "ae1c765049a9624e8073678712f74d9004086a68", + "fixed-inline-size-flex-grow-column-vrl.https.html": [ + "b9159965a07b0e6d108a08e9535b4b0b259c26fe", [ - "css/css-images/image-set/image-set-zero-resolution-rendering-2.html", + null, [ [ - "/css/reference/blank.html", + "/css/css-layout-api/constraints/fixed-inline-size-ref.html", "==" ] ], {} ] ], - "image-set-zero-resolution-rendering.html": [ - "0da39b7581e8626b14fb164033c87c6c74083779", + "fixed-inline-size-flex-grow.https.html": [ + "c2532c1460b838f9367a95bf4771a7474c0405d3", [ - "css/css-images/image-set/image-set-zero-resolution-rendering.html", + null, [ [ - "/css/reference/blank.html", + "/css/css-layout-api/constraints/fixed-inline-size-ref.html", "==" ] ], {} ] - ] - }, - "infinite-radial-gradient-refcrash.html": [ - "a3a1e7fb069d311162c5cfa427125bac524ffaa2", - [ - null, + ], + "fixed-inline-size-grid.https.html": [ + "45f9f491e7b7bf6c24af4167407f37500ca75788", [ + null, [ - "/css/css-images/infinite-radial-gradient-crash-ref.html", - "==" - ] - ], - {} - ] - ], - "linear-gradient-1.html": [ - "aa5a1310c5079a282aaf6d57d5502b1ff77d6808", - [ - null, + [ + "/css/css-layout-api/constraints/fixed-inline-size-ref.html", + "==" + ] + ], + {} + ] + ], + "fixed-inline-size-percentage-vlr.https.html": [ + "2e3504377726a11fa52b3194596daf8f29a20d2a", [ + null, [ - "/css/css-images/linear-gradient-ref.html", - "==" - ] - ], - {} - ] - ], - "linear-gradient-2.html": [ - "a9dca048b1ae09e4bcc5afe3893d1b45b79e965c", - [ - null, + [ + "/css/css-layout-api/constraints/fixed-inline-size-ref.html", + "==" + ] + ], + {} + ] + ], + "fixed-inline-size-percentage.https.html": [ + "c9041cf0eac2436260c2ff3e5e775fb3f9430854", [ + null, [ - "/css/css-images/linear-gradient-ref.html", - "==" - ] - ], - {} + [ + "/css/css-layout-api/constraints/fixed-inline-size-ref.html", + "==" + ] + ], + {} + ] ] - ], - "multiple-position-color-stop-conic-2.html": [ - "f3171bf3fb9823095312ab080ee3d0481a8545f6", + }, + "constraints-data-function-failure.https.html": [ + "2d5e5240d794749ec2f9c7ee5eb9c4f9a6e54c9f", [ null, [ [ - "/css/css-images/multiple-position-color-stop-conic-2-ref.html", + "/css/css-layout-api/green-square-ref.html", "==" ] ], {} ] ], - "multiple-position-color-stop-conic.html": [ - "8a7331d08ff53bed6c19d96c95740b57fed43516", + "constraints-data-sab-failure.https.html": [ + "b8df61c73d305e463e78855ee399e91c9b9c4bca", [ null, [ [ - "/css/css-images/reference/100x100-blue-green.html", + "/css/css-layout-api/green-square-ref.html", "==" ] ], {} ] ], - "multiple-position-color-stop-linear-2.html": [ - "f33ae99c2394816a822b213d6042922bfe930e31", + "constraints-data.https.html": [ + "4bea061917ab74c542534e23c33b5135c8a01d15", [ null, [ [ - "/css/css-images/multiple-position-color-stop-linear-2-ref.html", + "/css/css-layout-api/green-square-ref.html", "==" ] ], {} ] ], - "multiple-position-color-stop-linear.html": [ - "206fbed20928eb434694f96b675b1de460224870", - [ - "css/css-images/multiple-position-color-stop-linear.html", + "edges": { + "all.https.html": [ + "e38d3666b87296df160ef19f94927760f66d53f7", [ + null, [ - "/css/css-images/reference/100x100-blue-green.html", - "==" - ] - ], - { - "fuzzy": [ [ - null, - [ - [ - 0, - 1 - ], - [ - 0, - 4000 - ] - ] + "/css/css-layout-api/edges/all-ref.html", + "==" ] - ] - } - ] - ], - "multiple-position-color-stop-radial-2.html": [ - "339f5d4b33ab22a0d5640fc02fc4798a93ca9d91", - [ - null, - [ - [ - "/css/css-images/multiple-position-color-stop-radial-2-ref.html", - "==" - ] - ], - {} - ] - ], - "multiple-position-color-stop-radial.html": [ - "4b4fd95c4ec21307eee1e2f287f1b0db1d6d1490", - [ - null, + ], + {} + ] + ], + "border-htb-rtl.https.html": [ + "cb200a76758c48d955bc001262d05d445c4451ef", [ + null, [ - "/css/css-images/reference/100x100-blue-green.html", - "==" - ] - ], - {} - ] - ], - "normalization-conic-2.html": [ - "7f5c3954f61a3c0f2c71069065f0c6d29bb1708b", - [ - null, + [ + "/css/css-layout-api/green-square-ref.html", + "==" + ] + ], + {} + ] + ], + "border-htb.https.html": [ + "67a38588303793d0b7705de2c6d938a6754e3de8", [ + null, [ - "/css/css-images/reference/100x100-blue.html", - "==" - ] - ], - {} - ] - ], - "normalization-conic-degenerate.html": [ - "909fd54dcbdb4c865a8bbfc4f7d9b966cd1c663d", - [ - null, + [ + "/css/css-layout-api/green-square-ref.html", + "==" + ] + ], + {} + ] + ], + "border-vlr-rtl.https.html": [ + "8da84e9acc9d722976c5aa277c9902bf0fc4c25e", [ + null, [ - "/css/css-images/reference/100x100-blue.html", - "==" - ] - ], - {} - ] - ], - "normalization-conic.html": [ - "9c5e82d71cc779553835400aa596fe973d94e4bb", - [ - null, + [ + "/css/css-layout-api/green-square-ref.html", + "==" + ] + ], + {} + ] + ], + "border-vlr.https.html": [ + "b514b2f22ff485d560bc6508f4c2d70a630633ba", [ + null, [ - "/css/css-images/reference/100x100-blue.html", - "==" - ] - ], - {} - ] - ], - "normalization-linear-2.html": [ - "e3feeeb49a650beab8783d79ff8003ac011d3842", - [ - null, + [ + "/css/css-layout-api/green-square-ref.html", + "==" + ] + ], + {} + ] + ], + "border-vrl-rtl.https.html": [ + "38c8c3f0463b2b3dbe1b56aa6422a2141e7613ea", [ + null, [ - "/css/css-images/reference/100x100-blue.html", - "==" - ] - ], - {} - ] - ], - "normalization-linear-degenerate.html": [ - "26647290fb4e891ebe1fa667687ac7cf0f1c3eed", - [ - null, + [ + "/css/css-layout-api/green-square-ref.html", + "==" + ] + ], + {} + ] + ], + "border-vrl.https.html": [ + "94c5353eb93eff80c3734b17cf86959bbf28fd97", [ + null, [ - "/css/css-images/reference/100x100-blue.html", - "==" - ] - ], - {} - ] - ], - "normalization-linear.html": [ - "e46645631afa45fc031ffc5fb092d7b6c1e7e660", - [ - null, + [ + "/css/css-layout-api/green-square-ref.html", + "==" + ] + ], + {} + ] + ], + "padding-htb-rtl.https.html": [ + "dfbf2bc099da97ff787ae9ba22ad70a7c3787629", [ + null, [ - "/css/css-images/reference/100x100-blue.html", - "==" - ] - ], - {} - ] - ], - "normalization-radial-2.html": [ - "5ea50a5e035df1807db83ed5a1242253425fc797", - [ - null, + [ + "/css/css-layout-api/green-square-ref.html", + "==" + ] + ], + {} + ] + ], + "padding-htb.https.html": [ + "ebad66594c634675c1bb6eca1bfb69bb56a9eacb", [ + null, [ - "/css/css-images/reference/100x100-blue.html", - "==" - ] - ], - {} - ] - ], - "normalization-radial-3.html": [ - "927917ced606cca63ace976c23943fcecab5db64", - [ - "css/css-images/normalization-radial-3.html", + [ + "/css/css-layout-api/green-square-ref.html", + "==" + ] + ], + {} + ] + ], + "padding-vlr-rtl.https.html": [ + "86b0ca5425b6cc43f0d6529bb988d995738f852d", [ + null, [ - "/css/css-images/reference/100x100-blue.html", - "==" - ] - ], - {} - ] - ], - "normalization-radial-4.html": [ - "e9d948f062ec70e3e2c73a5211a770facd23b12d", - [ - "css/css-images/normalization-radial-4.html", + [ + "/css/css-layout-api/green-square-ref.html", + "==" + ] + ], + {} + ] + ], + "padding-vlr.https.html": [ + "563884ade3544edc39ea3920be32d7dcdba973bf", [ + null, [ - "/css/css-images/reference/100x100-blue.html", - "==" - ] - ], - {} - ] - ], - "normalization-radial-degenerate.html": [ - "4fff3ac909a04779a36310fb19c002c6b75d2d3a", - [ - null, + [ + "/css/css-layout-api/green-square-ref.html", + "==" + ] + ], + {} + ] + ], + "padding-vrl-rtl.https.html": [ + "bda0a211442e6f37badd576bb4a8ef4eb15ba291", [ + null, [ - "/css/css-images/reference/100x100-blue.html", - "==" - ] - ], - {} - ] - ], - "normalization-radial.html": [ - "6a510aa52f38a46d91114b5bc0fc3f8b19156097", - [ - null, + [ + "/css/css-layout-api/green-square-ref.html", + "==" + ] + ], + {} + ] + ], + "padding-vrl.https.html": [ + "a65ecad31152da6c44ca49c0fd81d47a950934fd", [ + null, [ - "/css/css-images/reference/100x100-blue.html", - "==" - ] - ], - {} - ] - ], - "object-fit-contain-png-001c.html": [ - "0f8195157e310cd69c05dcfd8a786972b981d2f1", - [ - "css/css-images/object-fit-contain-png-001c.html", + [ + "/css/css-layout-api/green-square-ref.html", + "==" + ] + ], + {} + ] + ], + "scrollbar.https.html": [ + "76bbd4dccd075fe2f6e52aea606414999e1ee0a9", [ + null, [ - "/css/css-images/object-fit-contain-png-001-ref.html", - "==" - ] - ], - { - "fuzzy": [ [ - null, - [ - [ - 0, - 20 - ], - [ - 0, - 2000 - ] - ] + "/css/css-layout-api/edges/scrollbar-ref.html", + "==" ] - ] - } + ], + {} + ] ] - ], - "object-fit-contain-png-001e.html": [ - "20a5f8ae560f4755081ae0a6e3bf6346b487626c", - [ - null, + }, + "fallback-intrinsic-sizes": { + "bad-return.https.html": [ + "7ea0e93b86226ded89869158c8fedda4395e4a58", [ + null, [ - "/css/css-images/object-fit-contain-png-001-ref.html", - "==" - ] - ], - {} - ] - ], - "object-fit-contain-png-001i.html": [ - "6605be2e1a4f79367a73128eb7e2d09f6bfc878a", - [ - null, + [ + "/css/css-layout-api/fallback-intrinsic-sizes/fallback-ref.html", + "==" + ] + ], + {} + ] + ], + "constructor-error.https.html": [ + "2078a49cda18c356ac2c16cfa5f0eef38874bc13", [ + null, [ - "/css/css-images/object-fit-contain-png-001-ref.html", - "==" - ] - ], - {} - ] - ], - "object-fit-contain-png-001o.html": [ - "36761156bb30da613fb9605dab69464af4552380", - [ - null, + [ + "/css/css-layout-api/fallback-intrinsic-sizes/fallback-ref.html", + "==" + ] + ], + {} + ] + ], + "error.https.html": [ + "3a6665d8aa525e2ed61ab0987f22df8a8a94a55f", [ + null, [ - "/css/css-images/object-fit-contain-png-001-ref.html", - "==" - ] - ], - {} - ] - ], - "object-fit-contain-png-001p.html": [ - "ac00ec44d1d7b387353e3eebc75ded6261b7f57b", - [ - null, + [ + "/css/css-layout-api/fallback-intrinsic-sizes/fallback-ref.html", + "==" + ] + ], + {} + ] + ], + "invalid-child.https.html": [ + "c21d1577e4f7bf795a4421ea6eb020390b0854de", [ + null, [ - "/css/css-images/object-fit-contain-png-001-ref.html", - "==" - ] - ], - {} - ] - ], - "object-fit-contain-png-002c.html": [ - "14834316a32efbf8f80c4612a93951e0fa792c51", - [ - "css/css-images/object-fit-contain-png-002c.html", + [ + "/css/css-layout-api/fallback-intrinsic-sizes/fallback-ref.html", + "==" + ] + ], + {} + ] + ], + "no-promise.https.html": [ + "c5ec721b544c2e991d1e49ce81f4590fddbce5db", [ + null, [ - "/css/css-images/object-fit-contain-png-002-ref.html", - "==" - ] - ], - { - "fuzzy": [ [ - null, - [ - [ - 0, - 20 - ], - [ - 0, - 2000 - ] - ] + "/css/css-layout-api/fallback-intrinsic-sizes/fallback-ref.html", + "==" ] - ] - } - ] - ], - "object-fit-contain-png-002e.html": [ - "6132fdc27d66fe7dc195016d30177be77318ef45", - [ - null, + ], + {} + ] + ], + "unresolved-promise.https.html": [ + "f56e331a5a31c6f4db59e0f1030df5d329a37cbd", [ + null, [ - "/css/css-images/object-fit-contain-png-002-ref.html", - "==" - ] - ], - {} + [ + "/css/css-layout-api/fallback-intrinsic-sizes/fallback-ref.html", + "==" + ] + ], + {} + ] ] - ], - "object-fit-contain-png-002i.html": [ - "222ac9e7356c18c40108ffa445c91b2386d90366", - [ - null, + }, + "fallback-layout": { + "bad-return.https.html": [ + "3e671537c9ede3a0b119fc4676839210a4ffdbb1", [ + null, [ - "/css/css-images/object-fit-contain-png-002-ref.html", - "==" - ] - ], - {} - ] - ], - "object-fit-contain-png-002o.html": [ - "6e0b555e57ea26a95e11584719f3e371c733320a", - [ - null, + [ + "/css/css-layout-api/fallback-layout/fallback-layout-fallback-ref.html", + "==" + ] + ], + {} + ] + ], + "constructor-error.https.html": [ + "9ce791ab5b988c26cc9e48e85f1751d6616cb2e4", [ + null, [ - "/css/css-images/object-fit-contain-png-002-ref.html", - "==" - ] - ], - {} - ] - ], - "object-fit-contain-png-002p.html": [ - "97a150e582ab6931108c0e6844fe536e5ae50b22", - [ - null, + [ + "/css/css-layout-api/fallback-layout/fallback-layout-fallback-ref.html", + "==" + ] + ], + {} + ] + ], + "error.https.html": [ + "0631193e1fed34197accc24a2c70ced0fb4109c1", [ + null, [ - "/css/css-images/object-fit-contain-png-002-ref.html", - "==" - ] - ], - {} - ] - ], - "object-fit-contain-svg-001e.html": [ - "a5dc815d03c4ead9b4215df6a3f0321a8e7ae3cc", - [ - null, + [ + "/css/css-layout-api/fallback-layout/fallback-layout-fallback-ref.html", + "==" + ] + ], + {} + ] + ], + "invalid-child.https.html": [ + "fb48ac7602a5a95fdd86dcd43c19f9141fab84a2", [ + null, [ - "/css/css-images/object-fit-contain-svg-001-ref.html", - "==" - ] - ], - {} - ] - ], - "object-fit-contain-svg-001i.html": [ - "d2011bd6df40f8bb38e70aec2fe9a50e4384eb69", - [ - null, + [ + "/css/css-layout-api/fallback-layout/fallback-layout-fallback-ref.html", + "==" + ] + ], + {} + ] + ], + "invalid-fragment.https.html": [ + "d954f44ba3eb26f9f830473cb6ecd4f06a2a058a", [ + null, [ - "/css/css-images/object-fit-contain-svg-001-ref.html", - "==" - ] - ], - {} - ] - ], - "object-fit-contain-svg-001o.html": [ - "7bb8c640f43a02c657e281f6f8bc513ee2a45718", - [ - null, + [ + "/css/css-layout-api/fallback-layout/fallback-layout-fallback-ref.html", + "==" + ] + ], + {} + ] + ], + "no-promise.https.html": [ + "00670f7bbe74340d416e1b32c6cc2ba5b4f57c42", [ + null, [ - "/css/css-images/object-fit-contain-svg-001-ref.html", - "==" - ] - ], - {} - ] - ], - "object-fit-contain-svg-001p.html": [ - "f6a2b73bf376ad2a77799f1e3021563e9af1ac1e", - [ - null, + [ + "/css/css-layout-api/fallback-layout/fallback-layout-fallback-ref.html", + "==" + ] + ], + {} + ] + ], + "unresolved-promise.https.html": [ + "72ce549acf5fd51c4a2d167a34c58f972bacf4ec", [ + null, [ - "/css/css-images/object-fit-contain-svg-001-ref.html", - "==" - ] - ], - {} + [ + "/css/css-layout-api/fallback-layout/fallback-layout-fallback-ref.html", + "==" + ] + ], + {} + ] ] - ], - "object-fit-contain-svg-002e.html": [ - "5d4197fb3742e79fcbfe44074b2f5bbe5bb76a23", + }, + "fragment-data-function-failure.https.html": [ + "8496967be06401d5a21d097f4ad9db410758b49d", [ null, [ [ - "/css/css-images/object-fit-contain-svg-002-ref.html", + "/css/css-layout-api/green-square-ref.html", "==" ] ], {} ] ], - "object-fit-contain-svg-002i.html": [ - "6d81d9b863cef4f1625d4a52b901fc8a4220a624", + "fragment-data-immutable.https.html": [ + "e33a6ff0eea1c8877130493c8897e778ed7d448e", [ null, [ [ - "/css/css-images/object-fit-contain-svg-002-ref.html", + "/css/css-layout-api/green-square-ref.html", "==" ] ], {} ] ], - "object-fit-contain-svg-002o.html": [ - "2d7b69ccc06c9ba9c6fad50345be213f0082c54e", + "fragment-data-sab-failure.https.html": [ + "681de5b543c29eadd0a27333c0aa42c83ae14f3e", [ null, [ [ - "/css/css-images/object-fit-contain-svg-002-ref.html", + "/css/css-layout-api/green-square-ref.html", "==" ] ], {} ] ], - "object-fit-contain-svg-002p.html": [ - "74f43726ac2321e60f440a6512a2cd01c1901663", + "fragment-data.https.html": [ + "ffc360ab35c20327ad40e5445b3a97f9401039fc", [ null, [ [ - "/css/css-images/object-fit-contain-svg-002-ref.html", + "/css/css-layout-api/green-square-ref.html", "==" ] ], {} ] ], - "object-fit-contain-svg-003e.html": [ - "9e4d758b0550af7194519c295875db7a0c8dab77", - [ - null, + "intrinsic-sizes": { + "absolute.https.html": [ + "be654ecbc7693c502f48dca5839dadcafd4686d9", [ + null, [ - "/css/css-images/object-fit-contain-svg-003-ref.html", - "==" - ] - ], - {} - ] - ], - "object-fit-contain-svg-003i.html": [ - "52693ee21481d68ad9302e34fa8abeb4ea3d218b", - [ - null, + [ + "/css/css-layout-api/intrinsic-sizes/absolute-ref.html", + "==" + ] + ], + {} + ] + ], + "child-replaced-percentage-01.https.html": [ + "058428601d0cc2f689ee3dcd52e48a44cbdc2a28", [ + null, [ - "/css/css-images/object-fit-contain-svg-003-ref.html", - "==" - ] - ], - {} - ] - ], - "object-fit-contain-svg-003o.html": [ - "b1ff0dddbed5887a004e871a0794a203bcf9d01c", - [ - null, + [ + "/css/css-layout-api/intrinsic-sizes/child-replaced-percentage-ref.html", + "==" + ] + ], + {} + ] + ], + "child-replaced-percentage-02.https.html": [ + "42e8207b5b5537470945d763e523c4538f06ccd7", [ + null, [ - "/css/css-images/object-fit-contain-svg-003-ref.html", - "==" - ] - ], - {} - ] - ], - "object-fit-contain-svg-003p.html": [ - "3d7d02a5f2d701c6dfaeb3379645cff972634d9d", - [ - null, + [ + "/css/css-layout-api/intrinsic-sizes/child-replaced-percentage-ref.html", + "==" + ] + ], + {} + ] + ], + "child-size-01.https.html": [ + "c0a00e28bbbf1e8fdfab7762d611f0ce814e5ab7", [ + null, [ - "/css/css-images/object-fit-contain-svg-003-ref.html", - "==" - ] - ], - {} - ] - ], - "object-fit-contain-svg-004e.html": [ - "1d86232bca85663ba68d1f582c095c35673f62fa", - [ - null, + [ + "/css/css-layout-api/intrinsic-sizes/child-size-01-ref.html", + "==" + ] + ], + {} + ] + ], + "child-size-02.https.html": [ + "030ecfccdc3ebfe2bdfdcb797582090e743638d6", [ + null, [ - "/css/css-images/object-fit-contain-svg-004-ref.html", - "==" - ] - ], - {} - ] - ], - "object-fit-contain-svg-004i.html": [ - "ff54f41faaa2ce1dd07c38d1dd712c76490f4070", - [ - null, + [ + "/css/css-layout-api/intrinsic-sizes/child-size-02-ref.html", + "==" + ] + ], + {} + ] + ], + "child-size-03.https.html": [ + "8b540cf9596282e7174d6228d192d0e28d861af8", [ + null, [ - "/css/css-images/object-fit-contain-svg-004-ref.html", - "==" - ] - ], - {} - ] - ], - "object-fit-contain-svg-004o.html": [ - "6a3015c88224fc4e97acb2fa7320ec903d8e330b", - [ - null, + [ + "/css/css-layout-api/intrinsic-sizes/child-size-02-ref.html", + "==" + ] + ], + {} + ] + ], + "child-size-contribution.https.html": [ + "e21085c9f6fa4ebd2facb8884fe268f4f53cbd80", [ + null, [ - "/css/css-images/object-fit-contain-svg-004-ref.html", - "==" - ] - ], - {} - ] - ], - "object-fit-contain-svg-004p.html": [ - "ec117017bfddec6ab37723ee1b0a39637a968373", - [ - null, + [ + "/css/css-layout-api/intrinsic-sizes/child-size-01-ref.html", + "==" + ] + ], + {} + ] + ], + "content-size.https.html": [ + "ed87dd5065006ffd3a6249a7b9fa76c58d25bb1d", [ + null, [ - "/css/css-images/object-fit-contain-svg-004-ref.html", - "==" - ] - ], - {} - ] - ], - "object-fit-contain-svg-005e.html": [ - "ce25d2781d7ffd263f1c459709daafb82ce5e592", - [ - null, + [ + "/css/css-layout-api/intrinsic-sizes/content-size-ref.html", + "==" + ] + ], + {} + ] + ], + "floats.https.html": [ + "5079b193fea0e29699d6443870f1444b1e976923", [ + null, [ - "/css/css-images/object-fit-contain-svg-005-ref.html", - "==" - ] - ], - {} - ] - ], - "object-fit-contain-svg-005i.html": [ - "10cef72c58f3d0c8d9a787dfe597e4cfbc15d6c5", - [ - null, + [ + "/css/css-layout-api/intrinsic-sizes/floats-ref.html", + "==" + ] + ], + {} + ] + ], + "invalid-min-max.https.html": [ + "2b2d8ca76e0f875dc70cc3c6c52c9daeca1fd721", [ + null, [ - "/css/css-images/object-fit-contain-svg-005-ref.html", - "==" - ] - ], - {} - ] - ], - "object-fit-contain-svg-005o.html": [ - "781133d064fb15e4d3686e67d65c596dfc8f7178", - [ - null, + [ + "/css/css-layout-api/intrinsic-sizes/invalid-ref.html", + "==" + ] + ], + {} + ] + ], + "negative-max.https.html": [ + "578803767ed0218fb518ad74c7b1f7a6ef581bff", [ + null, [ - "/css/css-images/object-fit-contain-svg-005-ref.html", - "==" - ] - ], - {} - ] - ], - "object-fit-contain-svg-005p.html": [ - "67f99138c1c783048135b533ebbd0398bbada02a", - [ - null, + [ + "/css/css-layout-api/intrinsic-sizes/negative-ref.html", + "==" + ] + ], + {} + ] + ], + "negative-min.https.html": [ + "c614a2fb12f4a545064738491bfe437601af7b82", [ + null, [ - "/css/css-images/object-fit-contain-svg-005-ref.html", - "==" - ] - ], - {} + [ + "/css/css-layout-api/intrinsic-sizes/negative-ref.html", + "==" + ] + ], + {} + ] ] - ], - "object-fit-contain-svg-006e.html": [ - "850d0259a9c65c56842abead9e088d63286d5f47", - [ - null, + }, + "layout-child": { + "absolute.https.html": [ + "7c47e38e7ad929a22c958f8e7aa33ca19e6002f7", [ + null, [ - "/css/css-images/object-fit-contain-svg-006-ref.html", - "==" - ] - ], - {} - ] - ], - "object-fit-contain-svg-006i.html": [ - "536e639ece3d8356a6da447e7ee6495412155a02", - [ - null, + [ + "/css/css-layout-api/green-square-ref.html", + "==" + ] + ], + {} + ] + ], + "before-after.https.html": [ + "373392ddfd143355979edaa5a6f1585c2aedb655", [ + null, [ - "/css/css-images/object-fit-contain-svg-006-ref.html", - "==" - ] - ], - {} - ] - ], - "object-fit-contain-svg-006o.html": [ - "42d07664aeeee0df54154e7014c5fd857390b44a", - [ - null, + [ + "/css/css-layout-api/green-square-ref.html", + "==" + ] + ], + {} + ] + ], + "fixed.https.html": [ + "95d8852b7da266598f32f713c9f1e80bc3731488", [ + null, [ - "/css/css-images/object-fit-contain-svg-006-ref.html", - "==" - ] - ], - {} - ] - ], - "object-fit-contain-svg-006p.html": [ - "6a39673f2608b9e99a03c65f87864826c1fa0302", - [ - null, + [ + "/css/css-layout-api/green-square-ref.html", + "==" + ] + ], + {} + ] + ], + "float.https.html": [ + "e8db261774b4bcd4837ba1395a68178431bd67ae", [ + null, [ - "/css/css-images/object-fit-contain-svg-006-ref.html", - "==" - ] - ], - {} - ] - ], - "object-fit-cover-png-001c.html": [ - "2a0071a01ce0cd423b6b03537c8f4e9cfe766ad5", - [ - null, + [ + "/css/css-layout-api/green-square-ref.html", + "==" + ] + ], + {} + ] + ], + "inflow.https.html": [ + "b43f1a7facdce8d1680767a063ba6a46859b8562", [ + null, [ - "/css/css-images/object-fit-cover-png-001-ref.html", - "==" - ] - ], - {} - ] - ], - "object-fit-cover-png-001e.html": [ - "1091e01b7aa8fe4e1227e8f1f01bf11231b6f232", - [ - null, + [ + "/css/css-layout-api/green-square-ref.html", + "==" + ] + ], + {} + ] + ], + "inlines.https.html": [ + "dac7e0b26bc74667fef0564c3c2e904bbd6e162c", [ + null, [ - "/css/css-images/object-fit-cover-png-001-ref.html", - "==" - ] - ], - {} - ] - ], - "object-fit-cover-png-001i.html": [ - "8db4683c2746c4447b1c0105abdeb35dec97370b", - [ - null, + [ + "/css/css-layout-api/green-square-ref.html", + "==" + ] + ], + {} + ] + ], + "text-01.https.html": [ + "090034fc1866fa5ddd1767fc4cb6f80c9e577ea8", [ + null, [ - "/css/css-images/object-fit-cover-png-001-ref.html", - "==" - ] - ], - {} - ] - ], - "object-fit-cover-png-001o.html": [ - "8e40b532ca44869a306b4e32747c4a38385eca06", - [ - null, + [ + "/css/css-layout-api/green-square-ref.html", + "==" + ] + ], + {} + ] + ], + "text-02.https.html": [ + "0df7498668981f54ba0f83c116a46e28b5fdb4d4", [ + null, [ - "/css/css-images/object-fit-cover-png-001-ref.html", - "==" - ] - ], - {} + [ + "/css/css-layout-api/green-square-ref.html", + "==" + ] + ], + {} + ] ] - ], - "object-fit-cover-png-001p.html": [ - "a75a977a37b131b062cc3f94651b97fa97a5b67c", - [ - null, + }, + "position-fragment": { + "htb-ltr.https.html": [ + "f60109ca5743a9f94b286751c0e751e795fe25b5", [ + null, [ - "/css/css-images/object-fit-cover-png-001-ref.html", - "==" - ] - ], - {} - ] - ], - "object-fit-cover-png-002c.html": [ - "66836651fb48eea95f704b379ce455486d792e4d", - [ - null, + [ + "/css/css-layout-api/position-fragment/ref.html", + "==" + ] + ], + {} + ] + ], + "htb-rtl.https.html": [ + "980a3cdc253994914b950c36d00f34cfc02ce606", [ + null, [ - "/css/css-images/object-fit-cover-png-002-ref.html", - "==" - ] - ], - {} - ] - ], - "object-fit-cover-png-002e.html": [ - "8dab30ccfd1da3b09f82f3f7a244c5a8c065b139", - [ - null, + [ + "/css/css-layout-api/position-fragment/ref.html", + "==" + ] + ], + {} + ] + ], + "vlr-ltr.https.html": [ + "d75a4af639f7bd938077447ef13991bdb4df197d", [ + null, [ - "/css/css-images/object-fit-cover-png-002-ref.html", - "==" - ] - ], - {} - ] - ], - "object-fit-cover-png-002i.html": [ - "1866fde155d4e4be4f523d6df24f06c83e6962a2", - [ - null, + [ + "/css/css-layout-api/position-fragment/ref.html", + "==" + ] + ], + {} + ] + ], + "vlr-rtl.https.html": [ + "a8ef6c699ca98167679e56a881b71b68868bad04", [ + null, [ - "/css/css-images/object-fit-cover-png-002-ref.html", - "==" - ] - ], - {} - ] - ], - "object-fit-cover-png-002o.html": [ - "a36ddbfce8e8bcb3f072157e1e7a196601d42b54", - [ - null, + [ + "/css/css-layout-api/position-fragment/ref.html", + "==" + ] + ], + {} + ] + ], + "vrl-ltr.https.html": [ + "21c9ce54d665de7e5cc3406112b73b31a07a82c9", [ + null, [ - "/css/css-images/object-fit-cover-png-002-ref.html", - "==" - ] - ], - {} - ] - ], - "object-fit-cover-png-002p.html": [ - "36222054b03d04f8c9ae1ece2f206bf366fb69be", - [ - null, + [ + "/css/css-layout-api/position-fragment/ref.html", + "==" + ] + ], + {} + ] + ], + "vrl-rtl.https.html": [ + "777e725da99140680c9b359d26dba8fd697af910", [ + null, [ - "/css/css-images/object-fit-cover-png-002-ref.html", - "==" - ] - ], - {} + [ + "/css/css-layout-api/position-fragment/ref.html", + "==" + ] + ], + {} + ] ] - ], - "object-fit-cover-svg-001e.html": [ - "c787be471f130fdaeebe341063c8f7fc128929ee", + }, + "style-map-multi.https.html": [ + "fe6017b80cbe42612a237de220dd21dddb7d4507", [ null, [ [ - "/css/css-images/object-fit-cover-svg-001-ref.html", + "/css/css-layout-api/style-map-multi-ref.html", "==" ] ], {} ] ], - "object-fit-cover-svg-001i.html": [ - "972e20ac22b3d9ea014c540aa4d27ae5470b652e", + "style-map.https.html": [ + "52032d9c6782251ed14c73f479e594a81422642a", [ null, [ [ - "/css/css-images/object-fit-cover-svg-001-ref.html", + "/css/css-layout-api/style-map-ref.html", "==" ] ], {} ] - ], - "object-fit-cover-svg-001o.html": [ - "cf755657bc551669129a624f17cdf4ce09f90933", + ] + }, + "css-lists": { + "add-inline-child-after-marker-001.html": [ + "228604ee357d22027c1691bf2baf27a52729222b", [ null, [ [ - "/css/css-images/object-fit-cover-svg-001-ref.html", + "/css/css-lists/add-inline-child-after-marker-001-ref.html", "==" ] ], {} ] ], - "object-fit-cover-svg-001p.html": [ - "db899db1b814fb7c35381ad24229d17ce6769285", + "add-inline-child-after-marker-002.html": [ + "66633ac9559c05da058ca46e7a07c2ad481f42c9", [ null, [ [ - "/css/css-images/object-fit-cover-svg-001-ref.html", + "/css/css-lists/add-inline-child-after-marker-002-ref.html", "==" ] ], {} ] ], - "object-fit-cover-svg-002e.html": [ - "b42eb0eb79667b7d66fa2d291f45e0c3de33e619", + "change-list-descendant-display.html": [ + "18296f8862887eb1b666eb20f1ced0dd4cc78392", [ null, [ [ - "/css/css-images/object-fit-cover-svg-002-ref.html", + "/css/css-lists/change-list-descendant-display-ref.html", "==" ] ], {} ] ], - "object-fit-cover-svg-002i.html": [ - "b79b532b737e2302de376252e772ce96cc7cb199", + "change-list-style-position-001.html": [ + "5f56ee76ff70d12738ef6cef2a6f713141c82dec", [ null, [ [ - "/css/css-images/object-fit-cover-svg-002-ref.html", + "/css/css-lists/change-list-style-position-001-ref.html", "==" ] ], {} ] ], - "object-fit-cover-svg-002o.html": [ - "e888bd09428730c7670680b5330cd5514d764af6", + "change-list-style-position-002.html": [ + "66328ef8bb979c9c62b60776911aac767b3fff6a", [ null, [ [ - "/css/css-images/object-fit-cover-svg-002-ref.html", + "/css/css-lists/change-list-style-position-002-ref.html", "==" ] ], {} ] ], - "object-fit-cover-svg-002p.html": [ - "65516da2ac16090fc26a8b9fe6f696d584c4089a", + "change-list-style-position-003.html": [ + "8af360f0b090ee65f5496ed568a50f440d7a7555", [ null, [ [ - "/css/css-images/object-fit-cover-svg-002-ref.html", + "/css/css-lists/change-list-style-position-003-ref.html", "==" ] ], {} ] ], - "object-fit-cover-svg-003e.html": [ - "d24d53cfd246a3ff562cc98b369eb1173a82d1d2", + "change-list-style-type-001.html": [ + "9eacdd7092d328521e69964131ac26e75f7333a9", [ null, [ [ - "/css/css-images/object-fit-cover-svg-003-ref.html", + "/css/css-lists/change-list-style-type-001-ref.html", "==" ] ], {} ] ], - "object-fit-cover-svg-003i.html": [ - "92c7a975a04cf48f2c3b4c5632627f1afaf92a6a", + "change-list-style-type-002.html": [ + "b76e4e9c31268b55e11b90f7b61d8d76c73f6eb8", [ null, [ [ - "/css/css-images/object-fit-cover-svg-003-ref.html", + "/css/css-lists/change-list-style-type-002-ref.html", "==" ] ], {} ] ], - "object-fit-cover-svg-003o.html": [ - "66401ae1d1a428e12f60048a3fc55e00709d1825", - [ - null, + "content-property": { + "marker-text-matches-armenian.html": [ + "58f570cd1197579aba1b646a1c970ab13c23c3e3", [ + null, [ - "/css/css-images/object-fit-cover-svg-003-ref.html", - "==" - ] - ], - {} - ] - ], - "object-fit-cover-svg-003p.html": [ - "c726e733dcd136e76ccc6ddde09b81ac02c2c6cf", - [ - null, + [ + "/css/css-lists/content-property/marker-text-matches-armenian-ref.html", + "==" + ] + ], + {} + ] + ], + "marker-text-matches-circle.html": [ + "9ad6e7a01a9de9c0082aee288bb9506368eceb81", [ + null, [ - "/css/css-images/object-fit-cover-svg-003-ref.html", - "==" - ] - ], - {} + [ + "/css/css-lists/content-property/marker-text-matches-circle-ref.html", + "==" + ] + ], + {} + ] + ], + "marker-text-matches-decimal-leading-zero.html": [ + "5044d4e68dd42586b4a9ada58b8af2c232400c4c", + [ + null, + [ + [ + "/css/css-lists/content-property/marker-text-matches-decimal-leading-zero-ref.html", + "==" + ] + ], + {} + ] + ], + "marker-text-matches-decimal.html": [ + "8c991bc3d6a9e5065586756154ef6022850842f2", + [ + null, + [ + [ + "/css/css-lists/content-property/marker-text-matches-decimal-ref.html", + "==" + ] + ], + {} + ] + ], + "marker-text-matches-disc.html": [ + "300a82374898b0a03d7cde26b19b40e06d1f34b3", + [ + null, + [ + [ + "/css/css-lists/content-property/marker-text-matches-disc-ref.html", + "==" + ] + ], + {} + ] + ], + "marker-text-matches-georgian.html": [ + "ef7615f6f521828d77d7664b14d14a16680d473b", + [ + null, + [ + [ + "/css/css-lists/content-property/marker-text-matches-georgian-ref.html", + "==" + ] + ], + {} + ] + ], + "marker-text-matches-lower-greek.html": [ + "96b5d811c26e6ca764269331420c2079924fa15f", + [ + null, + [ + [ + "/css/css-lists/content-property/marker-text-matches-lower-greek-ref.html", + "==" + ] + ], + {} + ] + ], + "marker-text-matches-lower-latin.html": [ + "0f6f24238b860dd9f8c258829be168183b2e2a40", + [ + null, + [ + [ + "/css/css-lists/content-property/marker-text-matches-lower-latin-ref.html", + "==" + ] + ], + {} + ] + ], + "marker-text-matches-lower-roman.html": [ + "db7301b3201b20d63f5c49ab2aecf475912677c2", + [ + null, + [ + [ + "/css/css-lists/content-property/marker-text-matches-lower-roman-ref.html", + "==" + ] + ], + {} + ] + ], + "marker-text-matches-square.html": [ + "020c4a6c43742812df85b69c96d7511b43a6d7b6", + [ + null, + [ + [ + "/css/css-lists/content-property/marker-text-matches-square-ref.html", + "==" + ] + ], + {} + ] + ], + "marker-text-matches-upper-latin.html": [ + "903ef8f57dd879ab3fb03278d36867eba0a1ecd6", + [ + null, + [ + [ + "/css/css-lists/content-property/marker-text-matches-upper-latin-ref.html", + "==" + ] + ], + {} + ] + ], + "marker-text-matches-upper-roman.html": [ + "69f34d7408348e1b5061a5a86e68d481860df814", + [ + null, + [ + [ + "/css/css-lists/content-property/marker-text-matches-upper-roman-ref.html", + "==" + ] + ], + {} + ] ] - ], - "object-fit-cover-svg-004e.html": [ - "f253fdba681633f099716bcad6bcdef8cf4adf03", + }, + "counter-001.html": [ + "46d7eb81df00603eb36db35c1d05e3e11c7f1fcd", [ null, [ [ - "/css/css-images/object-fit-cover-svg-004-ref.html", + "/css/css-lists/counter-001-ref.html", "==" ] ], {} ] ], - "object-fit-cover-svg-004i.html": [ - "0c52eaa17019ed153f7d356dfcf86d2e56b9a2aa", + "counter-002.html": [ + "5994802c4520b0d91efdcd0e693eee87f2689246", [ null, [ [ - "/css/css-images/object-fit-cover-svg-004-ref.html", + "/css/css-lists/counter-002-ref.html", "==" ] ], {} ] ], - "object-fit-cover-svg-004o.html": [ - "7bd2f8419e8fecca50dbd3e26ed4257913c58d98", + "counter-003.html": [ + "60164c1c7eb526c917aa62b58eaf936ffe8cc099", [ null, [ [ - "/css/css-images/object-fit-cover-svg-004-ref.html", + "/css/css-lists/counter-003-ref.html", "==" ] ], {} ] ], - "object-fit-cover-svg-004p.html": [ - "da1c88c50b139216adfd76464689a2431708ad98", + "counter-004.html": [ + "4ef2ced3ae98b0eb71472d83119eb4d71fe2f0cc", [ null, [ [ - "/css/css-images/object-fit-cover-svg-004-ref.html", + "/css/css-lists/counter-004-ref.html", "==" ] ], {} ] ], - "object-fit-cover-svg-005e.html": [ - "4d1424648148e5629afe21991b1bd112893dcb2d", + "counter-increment-inside-display-contents.html": [ + "ebfe1774da6a32508796b3bc83f428d78d089aff", [ null, [ [ - "/css/css-images/object-fit-cover-svg-005-ref.html", + "/css/css-lists/counter-7-ref.html", "==" ] ], {} ] ], - "object-fit-cover-svg-005i.html": [ - "9948ea7878b52be0a6b9ef2825fad9668dad37aa", + "counter-invalid.htm": [ + "938015937025272c14a52b5839d65784ccb757bc", [ null, [ [ - "/css/css-images/object-fit-cover-svg-005-ref.html", + "/css/css-lists/counter-7-ref.html", "==" ] ], {} ] ], - "object-fit-cover-svg-005o.html": [ - "894b3e85aa7bc858e2d9cd80f0f7add8e65a6038", + "counter-list-item-2.html": [ + "959ff6660cabb8896f8520a88de560745919f61d", [ null, [ [ - "/css/css-images/object-fit-cover-svg-005-ref.html", + "/css/css-lists/counter-list-item-2-ref.html", "==" ] ], {} ] ], - "object-fit-cover-svg-005p.html": [ - "210be382ae2fda5dcd032ae697ba3e8c8371173b", + "counter-list-item-3.html": [ + "096fdfbc2892dda989741e04b004c31c710536d6", [ null, [ [ - "/css/css-images/object-fit-cover-svg-005-ref.html", + "/css/css-lists/counter-list-item-3-ref.html", "==" ] ], {} ] ], - "object-fit-cover-svg-006e.html": [ - "d699f2bb30ab21ae24b5e9e1c8c6ed9a030c092d", + "counter-list-item-slot-order.html": [ + "09bdb25e0f9c2d1c248086c2b5ecbbaf3b6b6480", [ null, [ [ - "/css/css-images/object-fit-cover-svg-006-ref.html", + "/css/css-lists/counter-list-item-slot-order-ref.html", "==" ] ], {} ] ], - "object-fit-cover-svg-006i.html": [ - "f7c71eb8958a13dd5dd43a809d5d847a87746b78", + "counter-list-item.html": [ + "c0b89d49fd0bb38cacb71e7d875ba29bab31da70", [ null, [ [ - "/css/css-images/object-fit-cover-svg-006-ref.html", + "/css/css-lists/counter-list-item-ref.html", "==" ] ], {} ] ], - "object-fit-cover-svg-006o.html": [ - "f6b60a4cc75e3e905fa55843c6a696d1760c7eca", + "counter-order-display-contents.html": [ + "70dbc5de8ed09725d42fcce595b4d8efab093ae0", [ null, [ [ - "/css/css-images/object-fit-cover-svg-006-ref.html", + "/css/css-lists/counter-order-display-contents-ref.html", "==" ] ], {} ] ], - "object-fit-cover-svg-006p.html": [ - "08c9acfe35a027b45c88f71641863e85b5bc1a65", + "counter-reset-increment-overflow-underflow.html": [ + "6dc16e25ee73f4b4cbad2af1120761ebcff7b0b1", [ null, [ [ - "/css/css-images/object-fit-cover-svg-006-ref.html", + "/css/css-lists/counter-reset-increment-overflow-underflow-ref.html", "==" ] ], {} ] ], - "object-fit-dyn-aspect-ratio-001.html": [ - "dafadf2e58b7277f005d74b0d85076e84a33693a", + "counter-reset-increment-set-display-contents.html": [ + "6508df0da150a92e42032c546f2cf4ac6c171859", [ null, [ [ - "/css/css-images/object-fit-dyn-aspect-ratio-001-ref.html", + "/css/css-lists/counter-7-ref.html", "==" ] ], {} ] ], - "object-fit-dyn-aspect-ratio-002.html": [ - "26ae89e4794fc11ba3bc6833e2ca396cf0d1faf2", + "counter-reset-increment-set-display-none.html": [ + "510fd8b6482be5a9007c111c6f8478bb659d72b0", [ null, [ [ - "/css/css-images/object-fit-dyn-aspect-ratio-002-ref.html", + "/css/css-lists/counter-7-ref.html", "==" ] ], {} ] ], - "object-fit-fill-png-001c.html": [ - "0e2a3883fe2f05a2c89dbc0d87617aa965097330", + "counter-reset-inside-display-contents.html": [ + "85c137e675e55a54c4ab3834469ab3d13aa32725", [ - "css/css-images/object-fit-fill-png-001c.html", + null, [ [ - "/css/css-images/object-fit-fill-png-001-ref.html", + "/css/css-lists/counter-7-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 20 - ], - [ - 0, - 3200 - ] - ] - ] - ] - } + {} ] ], - "object-fit-fill-png-001e.html": [ - "08aa6b23fe21f2005fbc26327d823b1a90fb48eb", + "counter-reset-reversed-list-item-start.html": [ + "4c8039b25d499bc59ee95806543f6cb8090f8979", [ null, [ [ - "/css/css-images/object-fit-fill-png-001-ref.html", + "/css/css-lists/counter-7-ref.html", "==" ] ], {} ] ], - "object-fit-fill-png-001i.html": [ - "90692c30cb58edaab49c411080bd074d351c87ae", + "counter-reset-reversed-list-item.html": [ + "40706fdf97f7396c9ee67b5496dcb30eef99208e", [ null, [ [ - "/css/css-images/object-fit-fill-png-001-ref.html", + "/css/css-lists/counter-7-ref.html", "==" ] ], {} ] ], - "object-fit-fill-png-001o.html": [ - "b57528b125d33546241bd7218d92efb5bc7dfb24", + "counter-reset-reversed-not-list-item-start.html": [ + "368ed81ee7c4212411f6130781b96cb3825212c6", [ null, [ [ - "/css/css-images/object-fit-fill-png-001-ref.html", + "/css/css-lists/counter-7-ref.html", "==" ] ], {} ] ], - "object-fit-fill-png-001p.html": [ - "1e30e7aef4c76ca3b25ad6ec50b7c048e008dc30", + "counter-reset-reversed-not-list-item.html": [ + "c492067590ad43eb298241a51ecb951e0f97143d", [ null, [ [ - "/css/css-images/object-fit-fill-png-001-ref.html", + "/css/css-lists/counter-10-ref.html", "==" ] ], {} ] ], - "object-fit-fill-png-002c.html": [ - "43bcced9f26c672c641bd5e1c6e48855ad1b23dc", + "counter-set-001.html": [ + "4e28367798ae65095b21094d2d5da777b57f4294", [ - "css/css-images/object-fit-fill-png-002c.html", + null, [ [ - "/css/css-images/object-fit-fill-png-002-ref.html", + "/css/css-lists/counter-set-001-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 20 - ], - [ - 0, - 3200 - ] - ] - ] - ] - } + {} ] ], - "object-fit-fill-png-002e.html": [ - "d5903c2004de7332521ff948344634a501dff15d", + "counter-set-002.html": [ + "6978a63efaffd10e932a386b824dca20ce6c51b6", [ null, [ [ - "/css/css-images/object-fit-fill-png-002-ref.html", + "/css/css-lists/counter-set-002-ref.html", "==" ] ], {} ] ], - "object-fit-fill-png-002i.html": [ - "b5abd3d800168e6511baa6fae0a8dad4209e98de", + "counter-slot-order-scoping.html": [ + "ca87761901aa0abdcc6ef6166e5775dfc3efeac2", [ null, [ [ - "/css/css-images/object-fit-fill-png-002-ref.html", + "/css/css-lists/counter-slot-order-scoping-ref.html", "==" ] ], {} ] ], - "object-fit-fill-png-002o.html": [ - "a8904f2a4eda6b3617e26218e40e3ada559fc931", + "counter-slot-order.html": [ + "e481402911c527237a71aeaae66df54085200d58", [ null, [ [ - "/css/css-images/object-fit-fill-png-002-ref.html", + "/css/css-lists/counter-slot-order-ref.html", "==" ] ], {} ] ], - "object-fit-fill-png-002p.html": [ - "e0b44135ec9102bf74e1a59a3b38627e100233cc", + "counters-001.html": [ + "a6d85fe4d5bc85708bc5a37e707d9f7ee4dd5a79", [ null, [ [ - "/css/css-images/object-fit-fill-png-002-ref.html", + "/css/css-lists/counters-001-ref.html", "==" ] ], {} ] ], - "object-fit-fill-svg-001e.html": [ - "008f8da98e3a9c74a25ca74f6593f394393f355a", + "counters-002.html": [ + "9b3618d3bfe56fa53e3dc7b28bfaca7bcae95fe1", [ null, [ [ - "/css/css-images/object-fit-fill-svg-001-ref.html", + "/css/css-lists/counters-002-ref.html", "==" ] ], {} ] ], - "object-fit-fill-svg-001i.html": [ - "43e5ae7e86ce93820f8ca6e4350f30915613470a", + "counters-003.html": [ + "1648081a4d39d0078a7d1855fe2edbae95f54f05", [ null, [ [ - "/css/css-images/object-fit-fill-svg-001-ref.html", + "/css/css-lists/counters-003-ref.html", "==" ] ], {} ] ], - "object-fit-fill-svg-001o.html": [ - "91e955400442f32c09c88c274f2bf9da30ff6c9d", + "counters-004.html": [ + "6b1b1c850d7159ab850675a1156046fc8116b7df", [ null, [ [ - "/css/css-images/object-fit-fill-svg-001-ref.html", + "/css/css-lists/counters-004-ref.html", "==" ] ], {} ] ], - "object-fit-fill-svg-001p.html": [ - "d2ffffdb4a1ad4d15acbd2c0c367a04b7d5d326d", + "counters-005.html": [ + "528c0ede8701d1ad3b68b1dc3532123cc59b2b98", [ null, [ [ - "/css/css-images/object-fit-fill-svg-001-ref.html", + "/css/css-lists/counters-005-ref.html", "==" ] ], {} ] ], - "object-fit-fill-svg-002e.html": [ - "38f3c10c1f03b40dc0a79a22c422bf9f2e6ed9bc", + "counters-006.html": [ + "63a65a7ff83a8adbd193034447ef582a6eb8a453", [ null, [ [ - "/css/css-images/object-fit-fill-svg-002-ref.html", + "/css/css-lists/counters-006-ref.html", "==" ] ], {} ] ], - "object-fit-fill-svg-002i.html": [ - "2bbf505e48e41df0a608cfb6572c6629cba852ee", + "counters-scope-001.html": [ + "2ea72753bd984fe93db1872d5f90e72da6cd4966", [ null, [ [ - "/css/css-images/object-fit-fill-svg-002-ref.html", + "/css/css-lists/counters-scope-001-ref.html", "==" ] ], {} ] ], - "object-fit-fill-svg-002o.html": [ - "8580cdb4cf5501fab4229111c440f220d0dbe5fc", + "counters-scope-002.html": [ + "8261d55971d3793784ccbec1599ce704543ac49c", [ null, [ [ - "/css/css-images/object-fit-fill-svg-002-ref.html", + "/css/css-lists/counters-scope-002-ref.html", "==" ] ], {} ] ], - "object-fit-fill-svg-002p.html": [ - "4e1d61a140a2cc7594ccb69b1dfb38c6fce3505e", + "counters-scope-003.html": [ + "f7b94e286356623abb5d90a840d859c9a0a79edd", [ null, [ [ - "/css/css-images/object-fit-fill-svg-002-ref.html", + "/css/css-lists/counters-scope-003-ref.html", "==" ] ], {} ] ], - "object-fit-fill-svg-003e.html": [ - "37182514dc7e1d05f9844bf41aaf4f6a42a28990", + "counters-scope-004.html": [ + "4a60c4ca0bd007c9de74c3fa8e39208415933f18", [ null, [ [ - "/css/css-images/object-fit-fill-svg-003-ref.html", + "/css/css-lists/counters-scope-004-ref.html", "==" ] ], {} ] ], - "object-fit-fill-svg-003i.html": [ - "54e55f4e8491f2a00ca374ab1438f7c5189d6b7c", + "details-open.html": [ + "8354d0122328b9dbeed2657c624354580152c551", [ null, [ [ - "/css/css-images/object-fit-fill-svg-003-ref.html", + "/css/css-lists/details-open-ref.html", "==" ] ], {} ] ], - "object-fit-fill-svg-003o.html": [ - "1f640d990d780a8b269a1be092ef41645b6df480", + "foo-counter-reversed-006a.html": [ + "028f1fe19998c8eb70cc1d98d6d6f9ee852b7b03", [ null, [ [ - "/css/css-images/object-fit-fill-svg-003-ref.html", + "/css/css-lists/li-value-reversed-006-ref.html", "==" ] ], {} ] ], - "object-fit-fill-svg-003p.html": [ - "165f072bc6f94d65118dcae009db5aff37f64cb1", + "foo-counter-reversed-006b.html": [ + "21d5067109562d80eaaf14d4f20b0f2fce37429d", [ null, [ [ - "/css/css-images/object-fit-fill-svg-003-ref.html", + "/css/css-lists/li-value-reversed-006-ref.html", "==" ] ], {} ] ], - "object-fit-fill-svg-004e.html": [ - "3d36a3b97bac4e056f93824456a124dee1b4d34b", + "foo-counter-reversed-006c.html": [ + "c684e73181e8a45b40e0b6923eb8a21461a38c4a", [ null, [ [ - "/css/css-images/object-fit-fill-svg-004-ref.html", + "/css/css-lists/li-value-reversed-006-ref.html", "==" ] ], {} ] ], - "object-fit-fill-svg-004i.html": [ - "cd83227eb7f6cadc311a552f3443d90f2e6ad967", + "foo-counter-reversed-006d.html": [ + "0e9f53272bbb93375986722c7fcd7fcc2603131b", [ null, [ [ - "/css/css-images/object-fit-fill-svg-004-ref.html", + "/css/css-lists/li-value-reversed-006-ref.html", "==" ] ], {} ] ], - "object-fit-fill-svg-004o.html": [ - "10140225cfa782f0bdba5c68a214a01af36793a5", + "foo-counter-reversed-006e.html": [ + "58ff2b83e112f57bb702b19384667b08d09d00c4", [ null, [ [ - "/css/css-images/object-fit-fill-svg-004-ref.html", + "/css/css-lists/li-value-reversed-006-ref.html", "==" ] ], {} ] ], - "object-fit-fill-svg-004p.html": [ - "bd54333a4b473256e0555d1886d32134bf260945", + "foo-counter-reversed-007a.html": [ + "a8390abcb071db3fff958a7855326c500d31c6d4", [ null, [ [ - "/css/css-images/object-fit-fill-svg-004-ref.html", + "/css/css-lists/li-value-reversed-007-ref.html", "==" ] ], {} ] ], - "object-fit-fill-svg-005e.html": [ - "c706c670e87de7f94388e90654c9c9d0017dd06b", + "foo-counter-reversed-007b.html": [ + "defbc0e26f1c50f4781d68fe69b25706d71d53d3", [ null, [ [ - "/css/css-images/object-fit-fill-svg-005-ref.html", + "/css/css-lists/li-value-reversed-007-ref.html", "==" ] ], {} ] ], - "object-fit-fill-svg-005i.html": [ - "a12265f224dad095169795462d658d8d6a41d0f6", + "foo-counter-reversed-008a.html": [ + "9a597139a201771edc21ab3536fdf7760eba8f70", [ null, [ [ - "/css/css-images/object-fit-fill-svg-005-ref.html", + "/css/css-lists/li-value-reversed-008-ref.html", "==" ] ], {} ] ], - "object-fit-fill-svg-005o.html": [ - "d25f0ecf1ef51c4c434a8cf7292944dae2c0ff3f", + "foo-counter-reversed-008b.html": [ + "b7d4d569aadb3515cc96006ce6d394454b88f032", [ null, [ [ - "/css/css-images/object-fit-fill-svg-005-ref.html", + "/css/css-lists/li-value-reversed-008-ref.html", "==" ] ], {} ] ], - "object-fit-fill-svg-005p.html": [ - "1bbd6a9b89ef9eba5c786e8219707d36cc9c3051", + "foo-counter-reversed-009a.html": [ + "742d8bf0f55a84dd0b9d149b1a0c73c4f61bd11e", [ null, [ [ - "/css/css-images/object-fit-fill-svg-005-ref.html", + "/css/css-lists/li-value-reversed-009-ref.html", "==" ] ], {} ] ], - "object-fit-fill-svg-006e.html": [ - "c741c7e658900d4d6766a10855aad7e91fb48ae4", + "foo-counter-reversed-009b.html": [ + "852297c898097f5d5f76970378f2359bceca852b", [ null, [ [ - "/css/css-images/object-fit-fill-svg-006-ref.html", + "/css/css-lists/li-value-reversed-009-ref.html", "==" ] ], {} ] ], - "object-fit-fill-svg-006i.html": [ - "6da7334e56f690dd5162745c6dd8071852078e23", + "implicit-and-explicit-list-item-counters.html": [ + "5b7a99481657032228e693b0804d79bd299eed44", [ null, [ [ - "/css/css-images/object-fit-fill-svg-006-ref.html", + "/css/css-lists/implicit-and-explicit-list-item-counters-ref.html", "==" ] ], {} ] ], - "object-fit-fill-svg-006o.html": [ - "7d48d6f216ac2180ac09c098770b14d0a8d36af2", + "inline-block-list-marker.html": [ + "73a163fa9dbe472fb6223c42fd0075843faf4b51", [ null, [ [ - "/css/css-images/object-fit-fill-svg-006-ref.html", + "/css/css-lists/inline-block-list-marker-ref.html", "==" ] ], {} ] ], - "object-fit-fill-svg-006p.html": [ - "73b4f72089de276921dcb3e35dc11beb5b319ad9", + "inline-block-list.html": [ + "52220ae4241c2523ebe5fdf32c7ed2907268d296", [ null, [ [ - "/css/css-images/object-fit-fill-svg-006-ref.html", + "/css/css-lists/inline-block-list-ref.html", "==" ] ], {} ] ], - "object-fit-none-png-001c.html": [ - "fe483baa96345ad682987f9a4bc222644c8c1cf2", + "inline-list-marker.html": [ + "3535f22ce2b2fe47d21b2f72037fdf1d88324379", [ null, [ [ - "/css/css-images/object-fit-none-png-001-ref.html", + "/css/css-lists/inline-list-marker-ref.html", "==" ] ], {} ] ], - "object-fit-none-png-001e.html": [ - "91be966a408915dc62518561216fec88955f3496", + "inline-list-with-table-child.html": [ + "0b897ec1da1f9bf9e3826b33d04ed74b334e5ff5", [ null, [ [ - "/css/css-images/object-fit-none-png-001-ref.html", + "/css/css-lists/inline-list-with-table-child-ref.html", "==" ] ], {} ] ], - "object-fit-none-png-001i.html": [ - "39d7e475c3b3c58ae853a38e832f7e494962f942", + "inline-list.html": [ + "f4b48230e1a7b0a86eb6f249de868a773a2aa875", [ null, [ [ - "/css/css-images/object-fit-none-png-001-ref.html", + "/css/css-lists/inline-list-ref.html", "==" ] ], {} ] ], - "object-fit-none-png-001o.html": [ - "f1d702a5c64fdb5e88355e580b0a0900999c675a", + "li-insert-child.html": [ + "d82bf1374aebc47740285a54a7532b6b7242377f", [ null, [ [ - "/css/css-images/object-fit-none-png-001-ref.html", + "/css/css-lists/li-insert-child-ref.html", "==" ] ], {} ] ], - "object-fit-none-png-001p.html": [ - "85edee908041b34d4ee1ebc5fe7190bb29a29efa", + "li-list-item-counter.html": [ + "b9a1196cabce1924b74bbd66d84917f02a4186a9", [ null, [ [ - "/css/css-images/object-fit-none-png-001-ref.html", + "/css/css-lists/li-list-item-counter-ref.html", "==" ] ], {} ] ], - "object-fit-none-png-002c.html": [ - "09bc836d024bffd1f614f97067f50ece6fdb76ed", + "li-value-counter-reset-001.html": [ + "0e91c3a03d618a9d17194c883f80fd90899d4459", [ null, [ [ - "/css/css-images/object-fit-none-png-002-ref.html", + "/css/css-lists/li-value-counter-reset-001-ref.html", "==" ] ], {} ] ], - "object-fit-none-png-002e.html": [ - "ce3e07e7df5686ce8c9b5116401cc5f28b11c411", + "li-value-reversed-001.html": [ + "94c3ebc24847efcae0f4e0d6aad337432afd451a", [ null, [ [ - "/css/css-images/object-fit-none-png-002-ref.html", + "/css/css-lists/li-value-reversed-001-ref.html", "==" ] ], {} ] ], - "object-fit-none-png-002i.html": [ - "1f33b5758ac29023264fe9d7b90c540b6e895d03", + "li-value-reversed-002.html": [ + "41454611eaa3ee06e0322c2755d7328b395754fc", [ null, [ [ - "/css/css-images/object-fit-none-png-002-ref.html", + "/css/css-lists/li-value-reversed-002-ref.html", "==" ] ], {} ] ], - "object-fit-none-png-002o.html": [ - "2b1083628e5157795fb26c22662c7cac5505c269", + "li-value-reversed-003.html": [ + "af40da87a019682b7ecb32c4565b10b702f1357c", [ null, [ [ - "/css/css-images/object-fit-none-png-002-ref.html", + "/css/css-lists/li-value-reversed-002-ref.html", "==" ] ], {} ] ], - "object-fit-none-png-002p.html": [ - "656515ddebd05f8d99d9eebf31f7c96c6636ef0e", + "li-value-reversed-004.html": [ + "bb04fb4c703e8a36e950c5306019df7a084b58ef", [ null, [ [ - "/css/css-images/object-fit-none-png-002-ref.html", + "/css/css-lists/li-value-reversed-004-ref.html", "==" ] ], {} ] ], - "object-fit-none-svg-001e.html": [ - "31365eea558cb86527aa44fe22de8857e86c08dd", + "li-value-reversed-005.html": [ + "cbdf38da40a72a0681e1e5dc436d30b95b86f5e5", [ null, [ [ - "/css/css-images/object-fit-none-svg-001-ref.html", + "/css/css-lists/li-value-reversed-005-ref.html", "==" ] ], {} ] ], - "object-fit-none-svg-001i.html": [ - "7c47f68f64e4dc603de18d7366a39584a807dc11", + "li-value-reversed-006a.html": [ + "3491c863a5446f9fad3f1523446e5b4855b69f9b", [ null, [ [ - "/css/css-images/object-fit-none-svg-001-ref.html", + "/css/css-lists/li-value-reversed-006-ref.html", "==" ] ], {} ] ], - "object-fit-none-svg-001o.html": [ - "24aa6cc6e32e89f7514364ccf7cedd3f810c4411", + "li-value-reversed-006b.html": [ + "b124e9ba2d8ef8563b47275690cee697e6920428", [ null, [ [ - "/css/css-images/object-fit-none-svg-001-ref.html", + "/css/css-lists/li-value-reversed-006-ref.html", "==" ] ], {} ] ], - "object-fit-none-svg-001p.html": [ - "f2b3dc05c785043de88c5b83d229aa058a910d31", + "li-value-reversed-006c.html": [ + "7d1d419cc99435edd2ced4197bcdd08f147512d5", [ null, [ [ - "/css/css-images/object-fit-none-svg-001-ref.html", + "/css/css-lists/li-value-reversed-006-ref.html", "==" ] ], {} ] ], - "object-fit-none-svg-002e.html": [ - "68cd20a9e409e15bddd6b4703468324b67ac5cf0", + "li-value-reversed-006d.html": [ + "4d14d10cc70ae6573fbe96d0f087ccf6ddb721d3", [ null, [ [ - "/css/css-images/object-fit-none-svg-002-ref.html", + "/css/css-lists/li-value-reversed-006-ref.html", "==" ] ], {} ] ], - "object-fit-none-svg-002i.html": [ - "5fb1823d479d2187cded36255dd441768b208c01", + "li-value-reversed-006e.html": [ + "e20a32051a64bc6f47c41f57181ba99f619b8cb5", [ null, [ [ - "/css/css-images/object-fit-none-svg-002-ref.html", + "/css/css-lists/li-value-reversed-006-ref.html", "==" ] ], {} ] ], - "object-fit-none-svg-002o.html": [ - "7d0ad60340e78a1aa472df6ff27f7c8a97013954", + "li-value-reversed-007a.html": [ + "088ad356720737a671c2ad92e45d082f306ae91e", [ null, [ [ - "/css/css-images/object-fit-none-svg-002-ref.html", + "/css/css-lists/li-value-reversed-007-ref.html", "==" ] ], {} ] ], - "object-fit-none-svg-002p.html": [ - "f383450dbda6d1c8c556749344e3f7a35db0c764", + "li-value-reversed-007b.html": [ + "438316eca7f9c9e6b920deb89ec31c6d87d56df6", [ null, [ [ - "/css/css-images/object-fit-none-svg-002-ref.html", + "/css/css-lists/li-value-reversed-007-ref.html", "==" ] ], {} ] ], - "object-fit-none-svg-003e.html": [ - "4db5bcc86ebc80234ff9a3c8d96c21abd9303fb0", + "li-value-reversed-008a.html": [ + "0bbddbb975e37b45fc502306901da9d13802ed59", [ null, [ [ - "/css/css-images/object-fit-none-svg-003-ref.html", + "/css/css-lists/li-value-reversed-008-ref.html", "==" ] ], {} ] ], - "object-fit-none-svg-003i.html": [ - "132687ca8ee0e990b05ed744640123a25ef5e8b2", + "li-value-reversed-008b.html": [ + "17e81f8189a37eb254364e419523ae042c4a0e25", [ null, [ [ - "/css/css-images/object-fit-none-svg-003-ref.html", + "/css/css-lists/li-value-reversed-008-ref.html", "==" ] ], {} ] ], - "object-fit-none-svg-003o.html": [ - "775bbc602978d3925ba331f13e8090e4b4c23eb8", + "li-value-reversed-009a.html": [ + "e0b5e9403c9d991a014a5ee05f815889e78fbe61", [ null, [ [ - "/css/css-images/object-fit-none-svg-003-ref.html", + "/css/css-lists/li-value-reversed-009-ref.html", "==" ] ], {} ] ], - "object-fit-none-svg-003p.html": [ - "211e9132bd1d197f8ad2ac340eb7f40b66438275", + "li-value-reversed-009b.html": [ + "c3ee99dbc688ec9c7a308daedfc97f8246b711e3", [ null, [ [ - "/css/css-images/object-fit-none-svg-003-ref.html", + "/css/css-lists/li-value-reversed-009-ref.html", "==" ] ], {} ] ], - "object-fit-none-svg-004e.html": [ - "d998995ac94f801c0204035402ecb43a34227602", + "li-with-height-001.html": [ + "ad2ac65e179714dd5fb85de6b67a6f097823a507", [ null, [ [ - "/css/css-images/object-fit-none-svg-004-ref.html", + "/css/css-lists/li-with-height-001-ref.html", "==" ] ], {} ] ], - "object-fit-none-svg-004i.html": [ - "6b5564a0f0ecc420adc5da07554343083ddbac02", + "li-with-overflow-hidden-change-list-style-position-001.html": [ + "992ed83cedaa50208a3870707ecbcb18da337bbc", [ null, [ [ - "/css/css-images/object-fit-none-svg-004-ref.html", + "/css/css-lists/li-with-overflow-hidden-change-list-style-position-001-ref.html", "==" ] ], {} ] ], - "object-fit-none-svg-004o.html": [ - "26c0dd837feaa2a7868af669a1f56d35503dae1d", + "list-and-block-in-inline.html": [ + "165b1cce1e7b5dec19e56f29fe955c7c6b4a31d7", [ null, [ [ - "/css/css-images/object-fit-none-svg-004-ref.html", + "/css/css-lists/list-and-block-in-inline-ref.html", "==" ] ], {} ] ], - "object-fit-none-svg-004p.html": [ - "2d8d8d5cb85fb1c9f1534a20cf97d1f832777deb", + "list-and-flex-001.html": [ + "98ab9c400b683932021d84127438d564b0b49bfc", [ null, [ [ - "/css/css-images/object-fit-none-svg-004-ref.html", + "/css/css-lists/list-and-flex-001-ref.html", "==" ] ], {} ] ], - "object-fit-none-svg-005e.html": [ - "328a337d3f8b91573cb0e817d473ae170205f421", + "list-and-grid-001.html": [ + "562961d5a98cfc53f6bfc8daa7f912b174eecc73", [ null, [ [ - "/css/css-images/object-fit-none-svg-005-ref.html", + "/css/css-lists/list-and-grid-001-ref.html", "==" ] ], {} ] ], - "object-fit-none-svg-005i.html": [ - "d452e38a0d52b1129ed3038fe7175d4935757c22", + "list-item-definition.html": [ + "14e351f9ecd34356087fc5ec7361d8e4d9b542e0", [ null, [ [ - "/css/css-images/object-fit-none-svg-005-ref.html", + "/css/css-lists/list-item-definition-ref.html", "==" ] ], {} ] ], - "object-fit-none-svg-005o.html": [ - "7fd4e5b3976af57018166f393c2e02d599951d75", + "list-marker-alignment.html": [ + "46f63a6981065fe5fce37e12b5022cda535842f0", [ null, [ [ - "/css/css-images/object-fit-none-svg-005-ref.html", + "/css/css-lists/list-marker-alignment-ref.html", "==" ] ], {} ] ], - "object-fit-none-svg-005p.html": [ - "05aab2098f1ded73eb21270baed68fd2f1aceae4", + "list-marker-symbol-bidi.html": [ + "47e77be8995331180530ae285f1aad85e7c60989", [ null, [ [ - "/css/css-images/object-fit-none-svg-005-ref.html", + "/css/css-lists/list-marker-symbol-bidi-ref.html", "==" ] ], {} ] ], - "object-fit-none-svg-006e.html": [ - "a91251704db3ce902aa219eaa4a0effc74db04b8", + "list-marker-with-lineheight-and-overflow-hidden-001.html": [ + "d78743facb53bf622b217e3118cb7a609faadede", [ null, [ [ - "/css/css-images/object-fit-none-svg-006-ref.html", + "/css/css-lists/list-marker-with-lineheight-and-overflow-hidden-001-ref.html", "==" ] ], {} ] ], - "object-fit-none-svg-006i.html": [ - "15bb00bebd19717c96fd45f80e4f6d79aed651e7", + "list-style-image-gradients-dynamic.html": [ + "eb96fdd444f34b5f3958516e70d8fe7bd5ab0068", [ null, [ [ - "/css/css-images/object-fit-none-svg-006-ref.html", + "/css/css-lists/list-style-image-gradients-dynamic-ref.html", "==" ] ], {} ] ], - "object-fit-none-svg-006o.html": [ - "da2890aa01fd9e44dfe81138bc222f2da602f32f", + "list-style-image-gradients.html": [ + "eb797155643d725e526c17d803f77c2129dda59d", [ null, [ [ - "/css/css-images/object-fit-none-svg-006-ref.html", + "/css/css-lists/list-style-image-gradients-ref.html", "==" ] ], {} ] ], - "object-fit-none-svg-006p.html": [ - "8b8b42135c62a3a2e90e4c6463160e3bf42d5e53", + "list-style-image-zoom-dynamic.html": [ + "d0cd9de0aa74e9de24a19834e173f839c3879421", [ null, [ [ - "/css/css-images/object-fit-none-svg-006-ref.html", + "/css/css-lists/list-style-image-zoom-dynamic-ref.html", "==" ] ], {} ] ], - "object-fit-scale-down-png-001c.html": [ - "5b8116ecbcb6e3343c0316e6d5a1f31c97afe3bd", + "list-style-type-decimal-line-height.html": [ + "7aefead82f202dc715b64b2bce9cabde025ac951", [ null, [ [ - "/css/css-images/object-fit-scale-down-png-001-ref.html", + "/css/css-lists/list-style-type-decimal-line-height-ref.html", "==" ] ], {} ] ], - "object-fit-scale-down-png-001e.html": [ - "c2f587405fdaeaf8484c57081757059dbb77823c", + "list-style-type-decimal-vertical-lr.html": [ + "56025865c1b570060d91d37e7341693cbf469bc3", [ null, [ [ - "/css/css-images/object-fit-scale-down-png-001-ref.html", + "/css/css-lists/list-style-type-decimal-vertical-lr-ref.html", "==" ] ], {} ] ], - "object-fit-scale-down-png-001i.html": [ - "0fd12092459632a4d1b744c740d02eb6297ddac9", + "list-style-type-decimal-vertical-rl.html": [ + "249d7e44100748a513641c8b53035d0e194bb76a", [ null, [ [ - "/css/css-images/object-fit-scale-down-png-001-ref.html", + "/css/css-lists/list-style-type-decimal-vertical-rl-ref.html", "==" ] ], {} ] ], - "object-fit-scale-down-png-001o.html": [ - "bed477d0481ecae3d44a6a26ec193187338d639a", + "list-style-type-string-001a.html": [ + "f7ed6e3b342d6cd259b3df61a5445f83ab39b0f9", [ null, [ [ - "/css/css-images/object-fit-scale-down-png-001-ref.html", + "/css/css-lists/list-style-type-string-001-ref.html", "==" ] ], {} ] ], - "object-fit-scale-down-png-001p.html": [ - "ff152315ff99651f4fa689c937f592f31cf881e7", + "list-style-type-string-001b.html": [ + "f02bf13a73cd0ee025bf3e3d6ae9215feadb12b4", [ null, [ [ - "/css/css-images/object-fit-scale-down-png-001-ref.html", + "/css/css-lists/list-style-type-string-001-ref.html", "==" ] ], {} ] ], - "object-fit-scale-down-png-002c.html": [ - "626f379f1c7ca6934e57e22fc3b2cd1fa0fad6bc", + "list-style-type-string-002.html": [ + "6f00d8ac4fc8a986085e860d6ff0c0ba6aa8c4aa", [ null, [ [ - "/css/css-images/object-fit-scale-down-png-002-ref.html", + "/css/css-lists/list-style-type-string-002-ref.html", "==" ] ], {} ] ], - "object-fit-scale-down-png-002e.html": [ - "4190c5f1f38bb4dfdec3f6e04d2466df5715b7ee", + "list-style-type-string-003.html": [ + "94467ca1f21c8807a57b3ecd10a6ba0d86ae5049", [ null, [ [ - "/css/css-images/object-fit-scale-down-png-002-ref.html", + "/css/css-lists/list-style-type-string-003-ref.html", "==" ] ], {} ] ], - "object-fit-scale-down-png-002i.html": [ - "dc3fcc2a41a6abc4cc91e839a65646b4348d9bcc", + "list-style-type-string-004.html": [ + "922a4ecea8605cb82f2804832c13112ce0071fc2", [ null, [ [ - "/css/css-images/object-fit-scale-down-png-002-ref.html", + "/css/css-lists/list-style-type-string-004-ref.html", "==" ] ], {} ] ], - "object-fit-scale-down-png-002o.html": [ - "f7dcca2ecc5b90f110b69b98b739a39ac6e77f84", + "list-style-type-string-005a.html": [ + "725cdee1a83555dbb891a5815e7f69f7430428c3", [ null, [ [ - "/css/css-images/object-fit-scale-down-png-002-ref.html", + "/css/css-lists/list-style-type-string-005-ref.html", "==" ] ], {} ] ], - "object-fit-scale-down-png-002p.html": [ - "6d05ee0b254f9560b49a6be77c22252e0d4e03b1", + "list-style-type-string-005b.html": [ + "ca984b6d3be4a75e0b192da6bb9138cb1c600137", [ null, [ [ - "/css/css-images/object-fit-scale-down-png-002-ref.html", + "/css/css-lists/list-style-type-string-005-ref.html", "==" ] ], {} ] ], - "object-fit-scale-down-svg-001e.html": [ - "a6bc8d19f26edf250612d24504061e6624007f45", + "list-style-type-string-006.html": [ + "7f6904b777f9a76fa405c36b58148bfb521523a1", [ null, [ [ - "/css/css-images/object-fit-scale-down-svg-001-ref.html", + "/css/css-lists/list-style-type-string-006-ref.html", "==" ] ], {} ] ], - "object-fit-scale-down-svg-001i.html": [ - "d331a9e559590270fa9809acb6eb2e069ea5e969", + "list-style-type-string-007.html": [ + "55c883ff4c377b33660f4b45cdbc73c886d6081d", [ null, [ [ - "/css/css-images/object-fit-scale-down-svg-001-ref.html", + "/css/css-lists/list-style-type-string-007-ref.html", "==" ] ], {} ] ], - "object-fit-scale-down-svg-001o.html": [ - "88ba8171f63f2b166fe649d2b6b1d8da2db0d84f", + "list-type-none-style-image.html": [ + "6b7b83afc38b2395f5725a64fc40053b6d0b6859", [ null, [ [ - "/css/css-images/object-fit-scale-down-svg-001-ref.html", + "/css/css-lists/list-type-none-style-image-ref.html", "==" ] ], {} ] ], - "object-fit-scale-down-svg-001p.html": [ - "ab29b635cc06a05cd1cdeadf929ed5edd3195dd3", + "list-with-image-display-changed-001.html": [ + "d4b3e300f8ea5011249e433b925a9a8f32e8c935", [ null, [ [ - "/css/css-images/object-fit-scale-down-svg-001-ref.html", + "/css/css-lists/list-with-image-display-changed-001-ref.html", "==" ] ], {} ] ], - "object-fit-scale-down-svg-002e.html": [ - "a0b7f1180c6ab5c7497651b1f1a6b7d3f47cbf71", + "marker-dynamic-content-change.html": [ + "31abb16cdc276e54e1059277ce9a6a0ec417ade8", [ null, [ [ - "/css/css-images/object-fit-scale-down-svg-002-ref.html", + "/css/css-lists/marker-dynamic-content-change-ref.html", "==" ] ], {} ] ], - "object-fit-scale-down-svg-002i.html": [ - "6d260fb16c65ac6b4e6f8fdafd1238785100f19d", + "marker-webkit-text-fill-color.html": [ + "4ed97362ccc6e93ad929d1dd1427d006b3f819de", [ null, [ [ - "/css/css-images/object-fit-scale-down-svg-002-ref.html", + "/css/css-lists/marker-webkit-text-fill-color-ref.html", "==" ] ], {} ] ], - "object-fit-scale-down-svg-002o.html": [ - "d60a5a92a9d03450f6a4a84a45e59d3f0c3d8806", + "nested-marker-dynamic.html": [ + "fdfb93dc6149055be4611d85fb9705bcafe5c3a5", [ null, [ [ - "/css/css-images/object-fit-scale-down-svg-002-ref.html", + "/css/css-lists/nested-marker-ref.html", "==" ] ], {} ] ], - "object-fit-scale-down-svg-002p.html": [ - "8cca87a44d37bb31805722f3f39426378c951dee", + "nested-marker.html": [ + "9627ce936ae570325b430a1ac673cd66ae7d4252", [ null, [ [ - "/css/css-images/object-fit-scale-down-svg-002-ref.html", + "/css/css-lists/nested-marker-ref.html", "==" ] ], {} ] ], - "object-fit-scale-down-svg-003e.html": [ - "f4d7cf98b700969d9bdde9375d7aff3fab588e3d", + "ol-change-display-type.html": [ + "e711cfef5ddfd0d85914ce166f774a2ec1480f05", [ null, [ [ - "/css/css-images/object-fit-scale-down-svg-003-ref.html", + "/css/css-lists/ol-change-display-type-ref.html", "==" ] ], {} ] ], - "object-fit-scale-down-svg-003i.html": [ - "1841ec750636736a382d0e69b89c0cffa374738e", + "pseudo-element-remove-update.html": [ + "dea7d99662b57179d5dedcef081346f9a7fe9101", [ null, [ [ - "/css/css-images/object-fit-scale-down-svg-003-ref.html", + "/css/css-lists/pseudo-element-remove-update-ref.html", "==" ] ], {} ] - ], - "object-fit-scale-down-svg-003o.html": [ - "31f73c3ba852f1218dbb5724cd21ae90d23970c3", + ] + }, + "css-logical": { + "cascading-001.html": [ + "61399a833069b50364a4c6e6a31bf421bcf5ae15", [ null, [ [ - "/css/css-images/object-fit-scale-down-svg-003-ref.html", + "/css/css-logical/cascading-001-ref.html", "==" ] ], {} ] ], - "object-fit-scale-down-svg-003p.html": [ - "ee3ff8e15d81e44872bbda4118e160c426905e73", + "logical-values-float-clear-1.html": [ + "d7f37fffddc918c89cdf3f1f87fd0c1305cf0533", [ null, [ [ - "/css/css-images/object-fit-scale-down-svg-003-ref.html", + "/css/css-logical/reference/logical-values-float-clear-1-ref.html", "==" ] ], {} ] ], - "object-fit-scale-down-svg-004e.html": [ - "3f83b62dce079f4d10b009b31d4a6ba194835851", + "logical-values-float-clear-2.html": [ + "f5af837595311efc9c5843f1021d1aa5ec049f20", [ null, [ [ - "/css/css-images/object-fit-scale-down-svg-004-ref.html", + "/css/css-logical/reference/logical-values-float-clear-2-ref.html", "==" ] ], {} ] ], - "object-fit-scale-down-svg-004i.html": [ - "ecc6337c23e78a0cb4c548b072bafc34b741910b", + "logical-values-float-clear-3.html": [ + "b49711b7b2b83f7bb518358b97432b3015e495cf", [ null, [ [ - "/css/css-images/object-fit-scale-down-svg-004-ref.html", + "/css/css-logical/reference/logical-values-float-clear-3-ref.html", "==" ] ], {} ] ], - "object-fit-scale-down-svg-004o.html": [ - "9dad7088f58ceca5f429bc43a4fa7526481634fe", + "logical-values-float-clear-4.html": [ + "d585d38bf3af71a78313f01ccaa8a87dce8bb9d0", [ null, [ [ - "/css/css-images/object-fit-scale-down-svg-004-ref.html", + "/css/css-logical/reference/logical-values-float-clear-4-ref.html", "==" ] ], {} ] ], - "object-fit-scale-down-svg-004p.html": [ - "7993375e7d434d0bf0e157f8a4c8a0e2eb2db417", + "logical-values-float-clear-reftest.html": [ + "c0fe9a52bc4acc02f7a1df96d2af9c526d3e4430", [ null, [ [ - "/css/css-images/object-fit-scale-down-svg-004-ref.html", + "/css/css-logical/reference/logical-values-float-clear-reftest-ref.html", "==" ] ], {} ] - ], - "object-fit-scale-down-svg-005e.html": [ - "2e813e7d2c79d949c8ced7d7b9affe9e597fe17f", - [ - null, - [ - [ - "/css/css-images/object-fit-scale-down-svg-005-ref.html", - "==" - ] - ], - {} - ] - ], - "object-fit-scale-down-svg-005i.html": [ - "a741f643318259cc44f3d5bd414be557c418a032", - [ - null, - [ - [ - "/css/css-images/object-fit-scale-down-svg-005-ref.html", - "==" - ] - ], - {} - ] - ], - "object-fit-scale-down-svg-005o.html": [ - "808952b89a36366f8f9f097d5cc7c00a743b4a3b", - [ - null, - [ - [ - "/css/css-images/object-fit-scale-down-svg-005-ref.html", - "==" - ] - ], - {} - ] - ], - "object-fit-scale-down-svg-005p.html": [ - "f0b7632b84dba6594c682fd8a717a2300356cc80", - [ - null, - [ - [ - "/css/css-images/object-fit-scale-down-svg-005-ref.html", - "==" - ] - ], - {} - ] - ], - "object-fit-scale-down-svg-006e.html": [ - "15ce6d3d4dabe55790b17b355659af31a12a861b", - [ - null, - [ - [ - "/css/css-images/object-fit-scale-down-svg-006-ref.html", - "==" - ] - ], - {} - ] - ], - "object-fit-scale-down-svg-006i.html": [ - "83c544ed134f516cf3c978ad706cc9d4979eff10", - [ - null, - [ - [ - "/css/css-images/object-fit-scale-down-svg-006-ref.html", - "==" - ] - ], - {} - ] - ], - "object-fit-scale-down-svg-006o.html": [ - "00eae1ca34bfa049d8c46eadbe385e034c31b7d8", - [ - null, - [ - [ - "/css/css-images/object-fit-scale-down-svg-006-ref.html", - "==" - ] - ], - {} - ] - ], - "object-fit-scale-down-svg-006p.html": [ - "f5e894034eaeead8bf890a281b01431c110a1e7e", - [ - null, - [ - [ - "/css/css-images/object-fit-scale-down-svg-006-ref.html", - "==" - ] - ], - {} - ] - ], - "object-position-png-001c.html": [ - "20ff1cb935c0d2ea72c06f6c79a69ad42a614ef2", - [ - null, - [ - [ - "/css/css-images/object-position-png-001-ref.html", - "==" - ] - ], - {} - ] - ], - "object-position-png-001e.html": [ - "cdf35a1fc7a45e9ea86692a2ac92eb4781f9334e", - [ - null, - [ - [ - "/css/css-images/object-position-png-001-ref.html", - "==" - ] - ], - {} - ] - ], - "object-position-png-001i.html": [ - "d3e2622b4066fdbc7db8e24b724b66cc264cec9c", - [ - null, - [ - [ - "/css/css-images/object-position-png-001-ref.html", - "==" - ] - ], - {} - ] - ], - "object-position-png-001o.html": [ - "cdf0e0b5302a51a673ab6aecb57b642d6a358c5e", - [ - null, - [ - [ - "/css/css-images/object-position-png-001-ref.html", - "==" - ] - ], - {} - ] - ], - "object-position-png-001p.html": [ - "8b80b9c5bf3e5cb694691b4996134d4d37aba575", - [ - null, - [ - [ - "/css/css-images/object-position-png-001-ref.html", - "==" - ] - ], - {} - ] - ], - "object-position-png-002c.html": [ - "5ad030ffb601de16d0ff8f259aff8fc194a1a363", - [ - null, - [ - [ - "/css/css-images/object-position-png-002-ref.html", - "==" - ] - ], - {} - ] - ], - "object-position-png-002e.html": [ - "749948ae4c4bd7ce12926bc016a23cbdea572963", - [ - null, - [ - [ - "/css/css-images/object-position-png-002-ref.html", - "==" - ] - ], - {} - ] - ], - "object-position-png-002i.html": [ - "88b4a150013c22bf8f291a3adef48bb3734763a8", - [ - null, - [ - [ - "/css/css-images/object-position-png-002-ref.html", - "==" - ] - ], - {} - ] - ], - "object-position-png-002o.html": [ - "0d507900f8293bfbd0b38f536ef830878a8cd9b0", - [ - null, - [ - [ - "/css/css-images/object-position-png-002-ref.html", - "==" - ] - ], - {} - ] - ], - "object-position-png-002p.html": [ - "00ace782bc375135a349b3d415b7b9949513c8c2", - [ - null, - [ - [ - "/css/css-images/object-position-png-002-ref.html", - "==" - ] - ], - {} - ] - ], - "object-position-svg-001e.html": [ - "05f226cd887af04fa715b59569cc26e05ce81085", - [ - null, - [ - [ - "/css/css-images/object-position-svg-001-ref.html", - "==" - ] - ], - {} - ] - ], - "object-position-svg-001i.html": [ - "eecf0f4330c1038c9b734a314fae1ed2a2e600dd", - [ - null, - [ - [ - "/css/css-images/object-position-svg-001-ref.html", - "==" - ] - ], - {} - ] - ], - "object-position-svg-001o.html": [ - "589999c91f12b3e54c7291baeb948c145a431981", - [ - null, - [ - [ - "/css/css-images/object-position-svg-001-ref.html", - "==" - ] - ], - {} - ] - ], - "object-position-svg-001p.html": [ - "8b0b468b2fdf2c6cfcccc8aa3b9b11ad484b7ade", - [ - null, - [ - [ - "/css/css-images/object-position-svg-001-ref.html", - "==" - ] - ], - {} - ] - ], - "object-position-svg-002e.html": [ - "0bde50d0ca60db421cc04fb647b7fa518437e821", - [ - null, - [ - [ - "/css/css-images/object-position-svg-002-ref.html", - "==" - ] - ], - {} - ] - ], - "object-position-svg-002i.html": [ - "202b171c3a54762d86c8d4c6797b966f5087bb5c", - [ - null, - [ - [ - "/css/css-images/object-position-svg-002-ref.html", - "==" - ] - ], - {} - ] - ], - "object-position-svg-002o.html": [ - "e05938167c4081491c2a9b00d833f458ce044ad0", - [ - null, - [ - [ - "/css/css-images/object-position-svg-002-ref.html", - "==" - ] - ], - {} - ] - ], - "object-position-svg-002p.html": [ - "3c6b7a3d400b11e4b444d6dbc5437216b3581021", - [ - null, - [ - [ - "/css/css-images/object-position-svg-002-ref.html", - "==" - ] - ], - {} - ] - ], - "object-view-box-contain-intrinsic-size.html": [ - "411aff11a49191ed785a937057182e51eff6ea85", - [ - null, - [ - [ - "/css/css-images/object-view-box-contain-intrinsic-size-ref.html", - "==" - ] - ], - {} - ] - ], - "object-view-box-empty-bounds.html": [ - "b793182a9d1fc5bdf37ca1de65a49131536feb68", - [ - null, - [ - [ - "/css/css-images/object-view-box-empty-bounds-ref.html", - "==" - ] - ], - {} - ] - ], - "object-view-box-fit-contain-canvas.html": [ - "ad9b33db85f7717534d72b0cd1753cc9cb00ea3f", - [ - null, - [ - [ - "/css/css-images/object-view-box-fit-contain-canvas-ref.html", - "==" - ] - ], - {} - ] - ], - "object-view-box-fit-contain-img.html": [ - "d2e4c08a0512d3984e5403af9422babf0436264b", - [ - null, - [ - [ - "/css/css-images/object-view-box-fit-contain-img-ref.html", - "==" - ] - ], - {} - ] - ], - "object-view-box-fit-contain-svg.html": [ - "cfe711fb10c088224e5350a1b2f78c864eb5eb2e", - [ - null, - [ - [ - "/css/css-images/object-view-box-fit-contain-svg-ref.html", - "==" - ] - ], - {} - ] - ], - "object-view-box-fit-contain-video.html": [ - "bd4184cc07f7abdb25a3a3b0ffb917009949f309", - [ - null, - [ - [ - "/css/css-images/object-view-box-fit-contain-video-ref.html", - "==" - ] - ], - {} - ] - ], - "object-view-box-fit-cover-canvas.html": [ - "38976c563a3a1b838972f4363f1eb0efcf68114c", - [ - null, - [ - [ - "/css/css-images/object-view-box-fit-cover-canvas-ref.html", - "==" - ] - ], - {} - ] - ], - "object-view-box-fit-cover-img.html": [ - "1103788435ec32dec923a7440267b59f28f51fc7", - [ - null, - [ - [ - "/css/css-images/object-view-box-fit-cover-img-ref.html", - "==" - ] - ], - {} - ] - ], - "object-view-box-fit-cover-svg.html": [ - "4efe28574ca8bac2aeaa1c004f0b82d4d4b663b2", - [ - null, - [ - [ - "/css/css-images/object-view-box-fit-cover-svg-ref.html", - "==" - ] - ], - {} - ] - ], - "object-view-box-fit-cover-video.html": [ - "bc519a68fc6d3904cfe79e17a3e8caaa098e707e", - [ - null, - [ - [ - "/css/css-images/object-view-box-fit-cover-video-ref.html", - "==" - ] - ], - {} - ] - ], - "object-view-box-fit-fill-canvas.html": [ - "4341564195a4ebdc1fbc8129745ab4d23215a87e", - [ - null, - [ - [ - "/css/css-images/object-view-box-fit-fill-canvas-ref.html", - "==" - ] - ], - {} - ] - ], - "object-view-box-fit-fill-img.html": [ - "c9d938bfa3a46e4f586889ac03d2e99897d7a5b0", - [ - null, - [ - [ - "/css/css-images/object-view-box-fit-fill-img-ref.html", - "==" - ] - ], - {} - ] - ], - "object-view-box-fit-fill-svg.html": [ - "38c54e961863132f349eb033b85d0511a7e6c9f6", - [ - null, - [ - [ - "/css/css-images/object-view-box-fit-fill-svg-ref.html", - "==" - ] - ], - {} - ] - ], - "object-view-box-fit-fill-video.html": [ - "c9f91b6e4663f7adc172f1d0f13345a35638b5e4", - [ - null, - [ - [ - "/css/css-images/object-view-box-fit-fill-video-ref.html", - "==" - ] - ], - {} - ] - ], - "object-view-box-fit-none-canvas.html": [ - "6fe8c16efee069f094eed09a2eb59fdcb0637e2e", - [ - null, - [ - [ - "/css/css-images/object-view-box-fit-none-canvas-ref.html", - "==" - ] - ], - {} - ] - ], - "object-view-box-fit-none-img.html": [ - "f4a7412297fc432b535697ab26d41d88477143b7", - [ - null, - [ - [ - "/css/css-images/object-view-box-fit-none-img-ref.html", - "==" - ] - ], - {} - ] - ], - "object-view-box-fit-none-svg.html": [ - "c1036921651d2da738baf33aac781927f578ae7e", - [ - null, - [ - [ - "/css/css-images/object-view-box-fit-none-svg-ref.html", - "==" - ] - ], - {} - ] - ], - "object-view-box-fit-none-video.html": [ - "34b08572e9934ccd2ffafa5ddb0757874bf02426", - [ - null, - [ - [ - "/css/css-images/object-view-box-fit-none-video-ref.html", - "==" - ] - ], - {} - ] - ], - "object-view-box-iframe.html": [ - "a144a8ff316cb4a4a8d33ba55a3297913479e48f", - [ - null, - [ - [ - "/css/css-images/object-view-box-iframe-ref.html", - "==" - ] - ], - {} - ] - ], - "object-view-box-negative-bounds.html": [ - "34dd6075b40311ff149c6cb596a5ddd3f752750f", - [ - null, - [ - [ - "/css/css-images/object-view-box-negative-bounds-ref.html", - "==" - ] - ], - {} - ] - ], - "object-view-box-property-changed.html": [ - "2574558ea1e5e6b66e3b4b5a1b3e906e1325eb4f", - [ - null, - [ - [ - "/css/css-images/object-view-box-property-changed-ref.html", - "==" - ] - ], - {} - ] - ], - "object-view-box-rect-auto.html": [ - "97f18c781a03514fbec548302016deff80e6b2b1", - [ - null, - [ - [ - "/css/css-images/object-view-box-rect-auto-ref.html", - "==" - ] - ], - {} - ] - ], - "object-view-box-rect-percentage.html": [ - "45f05938d2024bbb062cc16176cb76739d2b4ebc", - [ - null, - [ - [ - "/css/css-images/object-view-box-rect-percentage-ref.html", - "==" - ] - ], - {} - ] - ], - "object-view-box-rect.html": [ - "2a0a8d307bda7c850e330568fdcf76d63548ad07", - [ - null, - [ - [ - "/css/css-images/object-view-box-rect-ref.html", - "==" - ] - ], - {} - ] - ], - "object-view-box-same-size.html": [ - "0daa360155744c17267fbcc4db5a952c150b5017", - [ - null, - [ - [ - "/css/css-images/object-view-box-negative-bounds-ref.html", - "==" - ] - ], - {} - ] - ], - "object-view-box-size-containment.html": [ - "c58e6735bf4070c03336c32a788f7bf0c163624f", - [ - null, - [ - [ - "/css/css-images/object-view-box-size-containment-ref.html", - "==" - ] - ], - {} - ] - ], - "object-view-box-svg-img-no-size.html": [ - "1d1c97a6e5f85cee31dfd47c79fc160f7596957d", - [ - null, - [ - [ - "/css/css-images/object-view-box-svg-img-no-size-ref.html", - "==" - ] - ], - {} - ] - ], - "object-view-box-writing-mode-canvas.html": [ - "8e0aaea2746ef8f1f70228ceb6382e3c74eea815", - [ - null, - [ - [ - "/css/css-images/object-view-box-writing-mode-canvas-ref.html", - "==" - ] - ], - {} - ] - ], - "object-view-box-writing-mode-img.html": [ - "547a2ed331769229bb0df381373a01e3b9b52ed5", - [ - null, - [ - [ - "/css/css-images/object-view-box-writing-mode-img-ref.html", - "==" - ] - ], - {} - ] - ], - "object-view-box-writing-mode-svg.html": [ - "5d90bb6026a3535614551e8170f0d874fea52460", - [ - null, - [ - [ - "/css/css-images/object-view-box-writing-mode-svg-ref.html", - "==" - ] - ], - {} - ] - ], - "object-view-box-writing-mode-video.html": [ - "0dd2e79daef618738200c35aab3f8deb5611afc0", - [ - null, - [ - [ - "/css/css-images/object-view-box-writing-mode-video-ref.html", - "==" - ] - ], - {} - ] - ], - "object-view-box-xywh-percentage.html": [ - "0f1d59343efa29eb048d0ec9dde9c9baf03f7a0d", - [ - null, - [ - [ - "/css/css-images/object-view-box-xywh-percentage-ref.html", - "==" - ] - ], - {} - ] - ], - "object-view-box-xywh.html": [ - "258ff6f083eac3e653a060125aeb81e47d82a862", - [ - null, - [ - [ - "/css/css-images/object-view-box-xywh-ref.html", - "==" - ] - ], - {} - ] - ], - "out-of-range-color-stop-conic.html": [ - "be0c73a3bac62f5686f255245b080a07331ed48c", - [ - null, - [ - [ - "/css/css-images/reference/200x200-blue-black-green-red.html", - "==" - ] - ], - {} - ] - ], - "repeating-conic-gradient.html": [ - "9a9587f29f6b491461d9df96d76072cbe13efe9a", - [ - null, - [ - [ - "/css/css-images/repeating-conic-gradient-ref.html", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 47 - ], - [ - 0, - 40000 - ] - ] - ] - ] - } - ] - ], - "tiled-conic-gradients.html": [ - "22f9f4b6ba753d926b827ec1cb5352e5a7ed833d", - [ - null, - [ - [ - "/css/css-images/tiled-conic-gradients-ref.html", - "==" - ] - ], - {} - ] - ], - "tiled-gradients.html": [ - "fdafa1fe99f0db25cca55ce3c13787803e138b49", - [ - null, - [ - [ - "/css/css-images/tiled-gradients-ref.html", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 255 - ], - [ - 0, - 564 - ] - ] - ] - ] - } - ] - ], - "tiled-radial-gradients.html": [ - "f644a6e294c757742d9b3f4846fd1fcd8dff9aca", - [ - null, - [ - [ - "/css/css-images/tiled-radial-gradients-ref.html", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 2 - ], - [ - 0, - 8009 - ] - ] - ] - ] - } - ] ] }, - "css-inline": { - "baseline-source": { - "baseline-source-inline-box.html": [ - "cc88067c285c226d961673baa567236c95ad489b", + "css-masking": { + "clip": { + "clip-absolute-positioned-001.html": [ + "c5b0d9001c442012aea33142d47ca1a8d68e319e", [ - "css/css-inline/baseline-source/baseline-source-inline-box.html", + null, [ [ - "/css/css-inline/baseline-source/baseline-source-inline-box-ref.html", + "/css/css-masking/clip/reference/clip-absolute-positioned-ref.html", "==" ] ], {} ] - ] - }, - "empty-text-node-001.html": [ - "eddf31ec59ccc206975b9947d1b4bf75e88063ed", - [ - "css/css-inline/empty-text-node-001.html", - [ - [ - "/css/css-inline/empty-text-node-001-ref.html", - "==" - ] - ], - {} - ] - ], - "initial-letter": { - "Initial-letter-breaking-rtl.html": [ - "14222f4ca9463e6aca9e68a7c364e00b73ba7b5d", + ], + "clip-absolute-positioned-002.html": [ + "53b2517a2726166fecc3f274760724b9962ac746", [ null, [ [ - "/css/css-inline/initial-letter/Initial-letter-breaking-rtl-ref.html", + "/css/css-masking/clip/reference/clip-absolute-positioned-ref.html", "==" ] ], {} ] ], - "Initial-letter-breaking-vlr.html": [ - "16c54c66f539d2e596c89710364691a7ec275242", + "clip-filter-order.html": [ + "0570d02b85ec9710d1b201ad44d12801e3db2758", [ null, [ [ - "/css/css-inline/initial-letter/Initial-letter-breaking-vlr-ref.html", + "/css/css-masking/clip/clip-filter-order-ref.html", "==" ] ], {} ] ], - "Initial-letter-breaking-vrl.html": [ - "146fd5c5d216ff6569cce33dbbc913f54afb0711", + "clip-fixed-pos-transform-descendant-001.html": [ + "395b0bc96456080f4216cf4fd556ddfef1fd3e75", [ null, [ [ - "/css/css-inline/initial-letter/Initial-letter-breaking-vrl-ref.html", + "/css/css-masking/clip/clip-fixed-pos-transform-descendant-001-ref.html", "==" ] ], {} ] ], - "Initial-letter-breaking.html": [ - "bd199fc2bb6d5d01d6fd9a7f7a9567995612b80b", + "clip-negative-values-001.html": [ + "b295c89ba37b11e9f6fd814ac0bfcea04d2312e5", [ null, [ [ - "/css/css-inline/initial-letter/Initial-letter-breaking-ref.html", + "/css/css-masking/clip/reference/clip-full-ref.html", "==" ] ], {} ] ], - "initial-letter-block-position-drop-over-ruby-tall.html": [ - "fd92e1b2bbf41ba27e5f4d7bf9d5495e224a5d5f", + "clip-negative-values-002.html": [ + "dd92e5b7748da712c2ff474ff2e6c903913f08f9", [ null, [ [ - "/css/css-inline/initial-letter/initial-letter-block-position-drop-over-ruby-tall-ref.html", + "/css/css-masking/clip/reference/clip-full-ref.html", "==" ] ], {} ] ], - "initial-letter-block-position-drop-over-ruby.html": [ - "5d8b0b9c5d97b997425adde79177b9c9ff32c11a", + "clip-negative-values-003.html": [ + "5118135345bbd14f9002c29ddbc32e2369bfae9d", [ null, [ [ - "/css/css-inline/initial-letter/initial-letter-block-position-drop-over-ruby-ref.html", + "/css/css-masking/clip/reference/clip-vertical-stripe-ref.html", "==" ] ], {} ] ], - "initial-letter-block-position-drop-under-ruby-tall.html": [ - "6892160e0b7b550dfcb56ba10ef7938db4dce449", + "clip-negative-values-004.html": [ + "1fb5add9da0b949994c1d70e130430c5cb112af1", [ null, [ [ - "/css/css-inline/initial-letter/initial-letter-block-position-drop-under-ruby-tall-ref.html", + "/css/css-masking/clip/reference/clip-horizontal-stripe-ref.html", "==" ] ], {} ] ], - "initial-letter-block-position-drop-under-ruby.html": [ - "c9f4623d060fbe7281ad8144a965cae8a974c833", + "clip-no-clipping-001.html": [ + "3a63c2ca71fd1d857f7ce4adc71df94d9bad15e8", [ null, [ [ - "/css/css-inline/initial-letter/initial-letter-block-position-drop-under-ruby-ref.html", + "/css/css-masking/clip/reference/clip-no-clipping-ref.html", "==" ] ], {} ] ], - "initial-letter-block-position-margins-rtl.html": [ - "7bfd20151ae7324cc816275df612b378c562a2f7", + "clip-no-clipping-002.html": [ + "a09e6a0a85da2c713c8c2b26680459360dfb62df", [ null, [ [ - "/css/css-inline/initial-letter/initial-letter-block-position-margins-rtl-ref.html", + "/css/css-masking/clip/reference/clip-no-clipping-ref.html", "==" ] ], {} ] ], - "initial-letter-block-position-margins-vlr.html": [ - "09c69480fada52fc5b387516ffff2e9233e74f57", + "clip-no-stacking-context.html": [ + "cbd07ee638082480ccb33285fa63c4fe347bedba", [ null, [ [ - "/css/css-inline/initial-letter/initial-letter-block-position-margins-vlr-ref.html", + "/css/css-masking/clip/clip-no-stacking-context-ref.html", "==" ] ], {} ] ], - "initial-letter-block-position-margins-vrl.html": [ - "2e2696fed80337be6c441914490d3df9e9c35a6a", + "clip-not-absolute-positioned-001.html": [ + "613f6afebc4a53b6b5b6019cabeb0fab4460b894", [ null, [ [ - "/css/css-inline/initial-letter/initial-letter-block-position-margins-vrl-ref.html", + "/css/css-masking/clip/reference/clip-no-clipping-ref.html", "==" ] ], {} ] ], - "initial-letter-block-position-margins.html": [ - "3ce4c7d6c2d21401b438bce4ad29230a3bfa4efd", + "clip-not-absolute-positioned-002.html": [ + "4d071323f07f4623554dc26c43d3e1081e4eb9ca", [ null, [ [ - "/css/css-inline/initial-letter/initial-letter-block-position-margins-ref.html", + "/css/css-masking/clip/reference/clip-no-clipping-ref.html", "==" ] ], {} ] ], - "initial-letter-block-position-raise-over-ruby-tall.html": [ - "eddba2f27d18835b253049e4a573fdccfb1bf310", + "clip-not-absolute-positioned-003.html": [ + "ee3765db7aca5db4d569fdc7b40dcdc633c679a9", [ null, [ [ - "/css/css-inline/initial-letter/initial-letter-block-position-raise-over-ruby-tall-ref.html", + "/css/css-masking/clip/reference/clip-no-clipping-ref.html", "==" ] ], {} ] ], - "initial-letter-block-position-raise-over-ruby.html": [ - "29b285ba33843488a44bb9c9ba032bb62d491b99", + "clip-not-absolute-positioned-004.html": [ + "56825d10f67f53675397ddbb52bfbc32c25678be", [ null, [ [ - "/css/css-inline/initial-letter/initial-letter-block-position-raise-over-ruby-ref.html", + "/css/css-masking/clip/reference/clip-no-clipping-ref.html", "==" ] ], {} ] ], - "initial-letter-block-position-raise-under-ruby-tall.html": [ - "40130d479fdd2c13f29d71aa526cc589323eceef", + "clip-rect-auto-001.html": [ + "6a1a064059b7732167bc8c0d842a1dea15aca658", [ null, [ [ - "/css/css-inline/initial-letter/initial-letter-block-position-raise-under-ruby-tall-ref.html", + "/css/css-masking/clip/reference/clip-overflow-hidden-ref.html", "==" ] ], {} ] ], - "initial-letter-block-position-raise-under-ruby.html": [ - "367479dac7e2300458f0fed0f7a6df5b03aedf1e", + "clip-rect-auto-002.html": [ + "0ee45183b827e3138581b59326db6e28ce314fb3", [ null, [ [ - "/css/css-inline/initial-letter/initial-letter-block-position-raise-under-ruby-ref.html", + "/css/css-masking/clip/reference/clip-no-clipping-ref.html", "==" ] ], {} ] ], - "initial-letter-drop-initial-rtl.html": [ - "542cf00d21af3809fc6eaf47b1fb32f2c2e4790f", + "clip-rect-auto-003.html": [ + "5f12ae4863671e53fcb6bc2900f860ef305cef9e", [ null, [ [ - "/css/css-inline/initial-letter/initial-letter-drop-initial-rtl-ref.html", + "/css/css-masking/clip/reference/clip-rect-top-ref.html", "==" ] ], {} ] ], - "initial-letter-drop-initial-vlr.html": [ - "98bb7a6e515317465b684997f49822b604ba5df9", + "clip-rect-auto-004.html": [ + "d5d5ce9b316d1be5f30bc050a775f381aad5ffa9", [ null, [ [ - "/css/css-inline/initial-letter/initial-letter-drop-initial-vlr-ref.html", + "/css/css-masking/clip/reference/clip-rect-right-ref.html", "==" ] ], {} ] ], - "initial-letter-drop-initial-vrl.html": [ - "4d6aece9f81d3be7c07636a9c236d12ff02a6eba", + "clip-rect-auto-005.html": [ + "b2b3b13a49c9b760ffd24488de1c9823d91fd2e1", [ null, [ [ - "/css/css-inline/initial-letter/initial-letter-drop-initial-vrl-ref.html", + "/css/css-masking/clip/reference/clip-rect-bottom-ref.html", "==" ] ], {} ] ], - "initial-letter-drop-initial.html": [ - "edd3ac968d6882b1a24ee01cc50e7593c3eb1f66", + "clip-rect-auto-006.html": [ + "410b93d28b351e34e1498697d47a8eb243c28b1c", [ null, [ [ - "/css/css-inline/initial-letter/initial-letter-drop-initial-ref.html", + "/css/css-masking/clip/reference/clip-rect-left-ref.html", "==" ] ], {} ] ], - "initial-letter-float-001-rtl.html": [ - "96b2811771476eecc439aecf2125c40067cdf437", + "clip-rect-comma-001.html": [ + "d15b324a4fbc7fe647f7f4b064246bec722740c2", [ null, [ [ - "/css/css-inline/initial-letter/initial-letter-float-001-rtl-ref.html", + "/css/css-masking/clip/reference/clip-absolute-positioned-ref.html", "==" ] ], {} ] ], - "initial-letter-float-001-vlr.html": [ - "d9b98462d43c281c49b614dd965b299049bf3df8", + "clip-rect-comma-002.html": [ + "aad2aebe6739273185982ae4ac96876e40e45422", [ null, [ [ - "/css/css-inline/initial-letter/initial-letter-float-001-vlr-ref.html", + "/css/css-masking/clip/reference/clip-no-clipping-ref.html", "==" ] ], {} ] ], - "initial-letter-float-001-vrl.html": [ - "850321fd751c354d10ed86afad1458d1539a269f", + "clip-rect-comma-003.html": [ + "875e97173eced25d0c274554bd416e0de6a1dece", [ null, [ [ - "/css/css-inline/initial-letter/initial-letter-float-001-vrl-ref.html", + "/css/css-masking/clip/reference/clip-no-clipping-ref.html", "==" ] ], {} ] ], - "initial-letter-float-001.html": [ - "76e83c6a939be693f9f32c14398225eb742045b1", + "clip-rect-comma-004.html": [ + "2a8b9305dfe7c7c1b4d971e1de2f6b6e508e8e65", [ null, [ [ - "/css/css-inline/initial-letter/initial-letter-float-001-ref.html", + "/css/css-masking/clip/reference/clip-no-clipping-ref.html", "==" ] ], {} ] ], - "initial-letter-float-002.html": [ - "6f266ea0e05ee5ede7bb2bf41782efe1b59a8c14", + "clip-rect-scroll.html": [ + "0c84ee299a26d7631652c264dc57ee98963f90db", [ null, [ [ - "/css/css-inline/initial-letter/initial-letter-float-002-ref.html", + "/css/css-masking/clip/reference/clip-rect-scroll-ref.html", "==" ] ], {} ] ], - "initial-letter-float-003.html": [ - "985227533aec0e2fd717c14c1157cd193a17d819", + "clip-transform-order-2.html": [ + "bd8e909d76d877c37effc2d54a3fb26f3a836736", [ null, [ [ - "/css/css-inline/initial-letter/initial-letter-float-003-ref.html", + "/css/css-masking/clip/clip-filter-order-ref.html", "==" ] ], {} ] ], - "initial-letter-float-004.html": [ - "07dd52cc9c052781955d1b2db31384899e590c34", + "clip-transform-order.html": [ + "1f24864bc96507405c534af1d2648c3f7ec17c16", [ null, [ [ - "/css/css-inline/initial-letter/initial-letter-float-004-ref.html", + "/css/css-masking/clip/clip-filter-order-ref.html", "==" ] ], {} ] - ], - "initial-letter-float-005.html": [ - "6cdd851e4dcd19edf8b52feabaa2a60231a0cb25", + ] + }, + "clip-path": { + "animations": { + "clip-path-animation-cancel.html": [ + "f92a016662b4e0885f8db76575e07081689b29d6", + [ + null, + [ + [ + "/css/css-masking/clip-path/animations/clip-path-animation-cancel-ref.html", + "==" + ] + ], + {} + ] + ], + "clip-path-animation-custom-timing-function-reverse.html": [ + "5346a4c22421cafde7691356c67b896f22392f76", + [ + null, + [ + [ + "/css/css-masking/clip-path/animations/clip-path-animation-custom-timing-function-reverse-ref.html", + "==" + ] + ], + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 20 + ], + [ + 0, + 692 + ] + ] + ] + ] + } + ] + ], + "clip-path-animation-custom-timing-function.html": [ + "4dbf3a44a9436b8b04751c2ce881ab673febbe55", + [ + null, + [ + [ + "/css/css-masking/clip-path/animations/clip-path-animation-custom-timing-function-ref.html", + "==" + ] + ], + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 2 + ], + [ + 0, + 320 + ] + ] + ] + ] + } + ] + ], + "clip-path-animation-ellipse-mixed-change.html": [ + "e42d3ee08ed599b72be97e078b296b8f49f22e2c", + [ + null, + [ + [ + "/css/css-masking/clip-path/animations/clip-path-animation-ellipse-ref.html", + "==" + ] + ], + {} + ] + ], + "clip-path-animation-ellipse.html": [ + "1c7c90ee844551c878b2ac2dd9453cdef92fb49f", + [ + null, + [ + [ + "/css/css-masking/clip-path/animations/clip-path-animation-ellipse-ref.html", + "==" + ] + ], + {} + ] + ], + "clip-path-animation-ensure-keyframe-update.html": [ + "a20595ead8766ed463868d8d9469689cf371c2ec", + [ + null, + [ + [ + "/css/css-masking/clip-path/animations/clip-path-animation-ref.html", + "==" + ] + ], + {} + ] + ], + "clip-path-animation-filter.html": [ + "a9809cbc30b5ca53fc464a125af9bdaeaeef9c60", + [ + null, + [ + [ + "/css/css-masking/clip-path/animations/clip-path-animation-filter-ref.html", + "==" + ] + ], + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 10 + ], + [ + 0, + 151 + ] + ] + ] + ] + } + ] + ], + "clip-path-animation-fixed-position-rounding-error.html": [ + "02a14ad65fec0b62bf4e01726cc4ef8326b94702", + [ + null, + [ + [ + "/css/css-masking/clip-path/animations/clip-path-animation-fixed-position-rounding-error-ref.html", + "==" + ] + ], + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 64 + ], + [ + 0, + 400 + ] + ] + ] + ] + } + ] + ], + "clip-path-animation-fixed-position.html": [ + "20fc8e52d89cdef2a5ff742314087542b0c4f3f7", + [ + null, + [ + [ + "/css/css-masking/clip-path/animations/clip-path-animation-fixed-position-ref.html", + "==" + ] + ], + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 60 + ], + [ + 0, + 350 + ] + ] + ] + ] + } + ] + ], + "clip-path-animation-font-size-inherited.html": [ + "6836af5a2953611798e7b4c5a80b7a4b66ee6c78", + [ + null, + [ + [ + "/css/css-masking/clip-path/animations/clip-path-animation-font-size-ref.html", + "==" + ] + ], + {} + ] + ], + "clip-path-animation-font-size-mixed-change.html": [ + "9e24aa905c2c4ba2e77d8d5ce686ddcbc57a01ad", + [ + null, + [ + [ + "/css/css-masking/clip-path/animations/clip-path-animation-font-size-ref.html", + "==" + ] + ], + {} + ] + ], + "clip-path-animation-font-size.html": [ + "00563305e54267948fc23e441420008760c26637", + [ + null, + [ + [ + "/css/css-masking/clip-path/animations/clip-path-animation-font-size-ref.html", + "==" + ] + ], + {} + ] + ], + "clip-path-animation-forward-fill.html": [ + "708896882822109bed14fd3c4fb9f977f28c3a1b", + [ + null, + [ + [ + "/css/css-masking/clip-path/animations/clip-path-animation-ref.html", + "==" + ] + ], + {} + ] + ], + "clip-path-animation-fragmented.html": [ + "9f68c238faf2ee2d04940e2f65d303bf94444595", + [ + null, + [ + [ + "/css/css-masking/clip-path/animations/clip-path-animation-fragmented-ref.html", + "==" + ] + ], + {} + ] + ], + "clip-path-animation-incompatible-shapes1.html": [ + "88c6862aa9ede58f0d2d0b384f2454ed6130c86f", + [ + null, + [ + [ + "/css/css-masking/clip-path/animations/clip-path-animation-incompatible-shapes1-ref.html", + "==" + ] + ], + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 255 + ], + [ + 0, + 2 + ] + ] + ] + ] + } + ] + ], + "clip-path-animation-incompatible-shapes2.html": [ + "f2aa4964adc3804fce64f07d6e355aa083ff7660", + [ + null, + [ + [ + "/css/css-masking/clip-path/animations/clip-path-animation-incompatible-shapes2-ref.html", + "==" + ] + ], + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 255 + ], + [ + 0, + 300 + ] + ] + ] + ] + } + ] + ], + "clip-path-animation-inherit.html": [ + "50f314da348c4c4bf2a4314b80c2e7e5b82a8564", + [ + null, + [ + [ + "/css/css-masking/clip-path/animations/clip-path-animation-inherit-ref.html", + "==" + ] + ], + {} + ] + ], + "clip-path-animation-initial.html": [ + "45e7714328a316eb4592abcab2f1d71058e129f4", + [ + null, + [ + [ + "/css/css-masking/clip-path/animations/clip-path-animation-none-ref.html", + "==" + ] + ], + {} + ] + ], + "clip-path-animation-missing-0-percent.html": [ + "4d4fee1b5b6b11ea0e3efd91dc0028dd3df78d7d", + [ + null, + [ + [ + "/css/css-masking/clip-path/animations/clip-path-animation-missing-0-percent-ref.html", + "==" + ] + ], + {} + ] + ], + "clip-path-animation-mixed-interpolation.html": [ + "016f892f95ba8e44d3c25f02ec99508b0e4ad43e", + [ + null, + [ + [ + "/css/css-masking/clip-path/animations/clip-path-animation-ref.html", + "==" + ] + ], + {} + ] + ], + "clip-path-animation-non-keyframe-timing-function.html": [ + "9e4eb019430fc9acc63414c1d7c0070ec2fcdc67", + [ + null, + [ + [ + "/css/css-masking/clip-path/animations/clip-path-animation-non-keyframe-timing-function-ref.html", + "==" + ] + ], + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 5 + ], + [ + 0, + 5 + ] + ] + ] + ] + } + ] + ], + "clip-path-animation-none.html": [ + "3efb593b72bf89af5247c7ec9079fd7d2636d664", + [ + null, + [ + [ + "/css/css-masking/clip-path/animations/clip-path-animation-none-ref.html", + "==" + ] + ], + {} + ] + ], + "clip-path-animation-overflow.html": [ + "fc8c78efbf6a9c46d0b0e4d2585bc358477a6df9", + [ + null, + [ + [ + "/css/css-masking/clip-path/animations/clip-path-animation-overflow-ref.html", + "==" + ] + ], + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 255 + ], + [ + 0, + 800 + ] + ] + ] + ] + } + ] + ], + "clip-path-animation-path.html": [ + "20400ba5ece395864e96ce095918f562b415566e", + [ + null, + [ + [ + "/css/css-masking/clip-path/animations/clip-path-animation-path-ref.html", + "==" + ] + ], + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 10 + ], + [ + 0, + 200 + ] + ] + ] + ] + } + ] + ], + "clip-path-animation-polygon-mixed-change.html": [ + "569c0af66ae3ae66ddcc185392ad66e488fdffca", + [ + null, + [ + [ + "/css/css-masking/clip-path/animations/clip-path-animation-polygon-ref.html", + "==" + ] + ], + {} + ] + ], + "clip-path-animation-polygon.html": [ + "1a9d0cc168879dfba969cc534dd7b3d9edba7c47", + [ + null, + [ + [ + "/css/css-masking/clip-path/animations/clip-path-animation-polygon-ref.html", + "==" + ] + ], + {} + ] + ], + "clip-path-animation-revert-layer.html": [ + "cc23c96e2ee76f75cb30280320da3ee9e4cbdb1b", + [ + null, + [ + [ + "/css/css-masking/clip-path/animations/clip-path-animation-none-ref.html", + "==" + ] + ], + {} + ] + ], + "clip-path-animation-revert.html": [ + "8599755d3384e87a52ae6f0b06c4d0aa9a1f4158", + [ + null, + [ + [ + "/css/css-masking/clip-path/animations/clip-path-animation-none-ref.html", + "==" + ] + ], + {} + ] + ], + "clip-path-animation-svg-zoom.html": [ + "f7be6d25324ce92e6bf56921fffb3eeec27cfd98", + [ + null, + [ + [ + "/css/css-masking/clip-path/animations/clip-path-animation-svg-zoom-ref.html", + "==" + ] + ], + {} + ] + ], + "clip-path-animation-svg.html": [ + "5318355585c938b3c494118cb0bcf8af00fc0b4c", + [ + null, + [ + [ + "/css/css-masking/clip-path/animations/clip-path-animation-svg-ref.html", + "==" + ] + ], + {} + ] + ], + "clip-path-animation-three-keyframes1.html": [ + "61e24e6208b3a3c522240d0699883cc44efcbbfe", + [ + null, + [ + [ + "/css/css-masking/clip-path/animations/clip-path-animation-three-keyframes1-ref.html", + "==" + ] + ], + {} + ] + ], + "clip-path-animation-three-keyframes2.html": [ + "b70c136c32622f8f863c9fc3acb02766e113dbbc", + [ + null, + [ + [ + "/css/css-masking/clip-path/animations/clip-path-animation-three-keyframes2-ref.html", + "==" + ] + ], + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 255 + ], + [ + 0, + 1000 + ] + ] + ] + ] + } + ] + ], + "clip-path-animation-unset.html": [ + "655215dc7f6b5a5e9d26fc279d04864bbbd61573", + [ + null, + [ + [ + "/css/css-masking/clip-path/animations/clip-path-animation-none-ref.html", + "==" + ] + ], + {} + ] + ], + "clip-path-animation-zoom.html": [ + "89641240f67bfd468a260bda514ec9b91914ff0d", + [ + null, + [ + [ + "/css/css-masking/clip-path/animations/clip-path-animation-zoom-ref.html", + "==" + ] + ], + {} + ] + ], + "clip-path-animation.html": [ + "307d972ef63d97077f8bedee9b52e121592c265e", + [ + null, + [ + [ + "/css/css-masking/clip-path/animations/clip-path-animation-ref.html", + "==" + ] + ], + {} + ] + ], + "clip-path-path-interpolation-001.html": [ + "0c988e090e6b5775242208909b51e7dc83876664", + [ + null, + [ + [ + "/css/css-masking/clip-path/animations/clip-path-path-interpolation-001-ref.html", + "==" + ] + ], + {} + ] + ], + "clip-path-path-interpolation-002.html": [ + "4c1c485f7f814d6849b3dc41b0a1d2f0295068e3", + [ + null, + [ + [ + "/css/css-masking/clip-path/animations/clip-path-path-interpolation-002-ref.html", + "==" + ] + ], + {} + ] + ], + "clip-path-path-interpolation-with-zoom.html": [ + "50dc5e6f4e75cf8a1abfb5a972d94e6db23fa8c9", + [ + null, + [ + [ + "/css/css-masking/clip-path/animations/clip-path-path-interpolation-with-zoom-ref.html", + "==" + ] + ], + {} + ] + ], + "clip-path-rect-interpolation-001.html": [ + "f204fb953ad41e469c245e2f378335c4f1572efb", + [ + null, + [ + [ + "/css/css-masking/clip-path/animations/clip-path-xywh-interpolation-001-ref.html", + "==" + ] + ], + {} + ] + ], + "clip-path-shape-interpolation-001.html": [ + "dae7f24d37cb39b34728664a2d854dfd53bc8c48", + [ + null, + [ + [ + "/css/css-masking/clip-path/animations/clip-path-path-interpolation-001-ref.html", + "==" + ] + ], + {} + ] + ], + "clip-path-shape-interpolation-002.html": [ + "6af23c37d6b7bb4ed6780769be720d446f30fc2b", + [ + null, + [ + [ + "/css/css-masking/clip-path/animations/clip-path-path-interpolation-002-ref.html", + "==" + ] + ], + {} + ] + ], + "clip-path-shape-interpolation-003.html": [ + "1324aad97f39a039f85fb8d880ece53ab8bc4aa9", + [ + null, + [ + [ + "/css/css-masking/clip-path/animations/clip-path-path-interpolation-001-ref.html", + "==" + ] + ], + {} + ] + ], + "clip-path-shape-interpolation-004.html": [ + "69bec3c097c57a2b346162be3e5eb6ccdb6d14ba", + [ + null, + [ + [ + "/css/css-masking/clip-path/animations/clip-path-path-interpolation-002-ref.html", + "==" + ] + ], + {} + ] + ], + "clip-path-transition-custom-timing-function.html": [ + "f8bf6e08fe887af8de59af686b818aa00784a994", + [ + null, + [ + [ + "/css/css-masking/clip-path/animations/clip-path-animation-custom-timing-function-ref.html", + "==" + ] + ], + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 4 + ], + [ + 0, + 628 + ] + ] + ] + ] + } + ] + ], + "clip-path-transition.html": [ + "980f7a53e2e86001b5da911c07b3f465845f3735", + [ + null, + [ + [ + "/css/css-masking/clip-path/animations/clip-path-transition-ref.html", + "==" + ] + ], + {} + ] + ], + "clip-path-xywh-interpolation-001.html": [ + "853195aa27c56d610c8f8737ff452de2f7087e51", + [ + null, + [ + [ + "/css/css-masking/clip-path/animations/clip-path-xywh-interpolation-001-ref.html", + "==" + ] + ], + {} + ] + ], + "two-clip-path-animation-diff-length1.html": [ + "5f6bb7299fc592a9f11f1708bdd6f41617bf5ca0", + [ + null, + [ + [ + "/css/css-masking/clip-path/animations/two-clip-path-animation-diff-length1-ref.html", + "==" + ] + ], + {} + ] + ], + "two-clip-path-animation-diff-length2.html": [ + "bc3460111f712d012e68e8b1e0254fa2f7c299af", + [ + null, + [ + [ + "/css/css-masking/clip-path/animations/two-clip-path-animation-diff-length2-ref.html", + "==" + ] + ], + {} + ] + ], + "two-clip-path-animation-diff-length3.html": [ + "5a66568132ac77ad70f8c6107139e6041782e917", + [ + null, + [ + [ + "/css/css-masking/clip-path/animations/two-clip-path-animation-diff-length3-ref.html", + "==" + ] + ], + {} + ] + ], + "two-clip-path-animation-diff-length4.html": [ + "0a893cb75637e4d1b63e85cca77deff844c37c11", + [ + null, + [ + [ + "/css/css-masking/clip-path/animations/two-clip-path-animation-diff-length1-ref.html", + "==" + ] + ], + {} + ] + ] + }, + "clip-path-blending-offset.html": [ + "806904d68765b147830c6ee3b27a68df7a4c527d", [ null, [ [ - "/css/css-inline/initial-letter/initial-letter-float-005-ref.html", + "/css/css-masking/clip-path/clip-path-blending-offset-ref.html", "==" ] ], {} ] ], - "initial-letter-indentation-rtl.html": [ - "cd3e6f8bc470434d9b610c8cf10529d32a3fba51", + "clip-path-borderBox-1a.html": [ + "c0304a59bb8ae8fec3f0e048b13d69cd43d29d89", [ null, [ [ - "/css/css-inline/initial-letter/initial-letter-indentation-rtl-ref.html", + "/css/css-masking/clip-path/clip-path-geometryBox-1-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 100 + ], + [ + 0, + 400 + ] + ] + ] + ] + } ] ], - "initial-letter-indentation.html": [ - "20431f4beb57c26e8558ee1d2dae59226bcc0db2", + "clip-path-borderBox-1b.html": [ + "c253c3c9db1e5ed3d3efcb588e4da0c48a80ad09", [ null, [ [ - "/css/css-inline/initial-letter/initial-letter-indentation-ref.html", + "/css/css-masking/clip-path/clip-path-geometryBox-1-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 60 + ], + [ + 0, + 394 + ] + ] + ] + ] + } ] ], - "initial-letter-layout-text-decoration-underline.html": [ - "af70ecd1bd6f597ae75cceb21255127175c1e03b", + "clip-path-borderBox-1c.html": [ + "99f6bb0fc978c8c27023c695b355ced6e83ea618", [ null, [ [ - "/css/css-inline/initial-letter/initial-letter-layout-text-decoration-underline-ref.html", + "/css/css-masking/clip-path/clip-path-geometryBox-1-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 65 + ], + [ + 0, + 368 + ] + ] + ] + ] + } ] ], - "initial-letter-raise-initial-rtl.html": [ - "10b90ac395c02c5f840f7877f73149022ca1186f", + "clip-path-borderBox-1d.html": [ + "3b63d9251f8b9b8ab7f71aa622f05e92fb07f73e", [ null, [ [ - "/css/css-inline/initial-letter/initial-letter-raise-initial-rtl-ref.html", + "/css/css-masking/clip-path/reference/green-100x100.html", "==" ] ], {} ] ], - "initial-letter-raise-initial-vlr.html": [ - "6b1ebd50919fd1c2c0f34bfa0b4496cc746f16fa", + "clip-path-borderBox-1e.html": [ + "17ac0b0d72ceebc57529d298bdf4d28e57151e56", [ null, [ [ - "/css/css-inline/initial-letter/initial-letter-raise-initial-vlr-ref.html", + "/css/css-masking/clip-path/reference/green-circle-100x100.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 126 + ], + [ + 0, + 400 + ] + ] + ] + ] + } ] ], - "initial-letter-raise-initial-vrl.html": [ - "62a699f57fa13b92c74cebc66178f8471bfe8f03", + "clip-path-circle-001.html": [ + "e40cdb103a97e4b14c7fda8efcc3d2503fab17f7", [ null, [ [ - "/css/css-inline/initial-letter/initial-letter-raise-initial-vrl-ref.html", + "/css/css-masking/clip-path/reference/clip-path-circle-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 38 + ], + [ + 0, + 800 + ] + ] + ] + ] + } ] ], - "initial-letter-raise-initial.html": [ - "4b8e81453b74bb0fdf68fc5631b289e32ddaf2cb", + "clip-path-circle-002.html": [ + "deb199a5b66fcc8f0cf60715867763aaca798a5a", [ null, [ [ - "/css/css-inline/initial-letter/initial-letter-raise-initial-ref.html", + "/css/css-masking/clip-path/reference/clip-path-circle-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 38 + ], + [ + 0, + 800 + ] + ] + ] + ] + } ] ], - "initial-letter-raised-sunken-caps-raise.html": [ - "4e90667bd76437b0b8fa2ea1b4f3807f90dc23f6", + "clip-path-circle-003.html": [ + "24b3f31f61b5945cf953197aca016bb5a65f8b35", [ null, [ [ - "/css/css-inline/initial-letter/initial-letter-raised-sunken-caps-raise-ref.html", + "/css/css-masking/clip-path/reference/clip-path-circle-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 38 + ], + [ + 0, + 800 + ] + ] + ] + ] + } ] ], - "initial-letter-raised-sunken-caps-sunken.html": [ - "add90302dcdcecb637bfe70135e4b58eb3b1e20b", + "clip-path-circle-004.html": [ + "ddbccf0336d798bccda9527b3c67588fb7ae269a", [ null, [ [ - "/css/css-inline/initial-letter/initial-letter-raised-sunken-caps-sunken-ref.html", + "/css/css-masking/clip-path/reference/clip-path-circle-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 38 + ], + [ + 0, + 800 + ] + ] + ] + ] + } ] ], - "initial-letter-short-para-initial-letter-clears.html": [ - "92d0756a9d6cceae7fa47d785db70e15065f361d", + "clip-path-circle-005.html": [ + "3a25ce5fff79cbc25633090bdc017f532ace0511", [ null, [ [ - "/css/css-inline/initial-letter/initial-letter-short-para-initial-letter-clears-ref.html", + "/css/css-masking/clip-path/reference/clip-path-circle-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 38 + ], + [ + 0, + 800 + ] + ] + ] + ] + } ] ], - "initial-letter-short-para-initial-letter-wraps.html": [ - "d09be38813a38af01e90cb466984ebd6a68fe198", + "clip-path-circle-006.html": [ + "8434edd2160559c40f7ef3c5df9cb7e75d42ddbd", [ null, [ [ - "/css/css-inline/initial-letter/initial-letter-short-para-initial-letter-wraps-ref.html", + "/css/css-masking/clip-path/reference/clip-path-circle-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 38 + ], + [ + 0, + 800 + ] + ] + ] + ] + } ] ], - "initial-letter-sunk-initial-rtl.html": [ - "214ee94c3ad51fe5025d44358c9b22d55ddf55bb", + "clip-path-circle-007.html": [ + "60c5cd52e327b5fdda7799f197e35a3060773fa9", [ null, [ [ - "/css/css-inline/initial-letter/initial-letter-sunk-initial-rtl-ref.html", + "/css/css-masking/clip-path/reference/clip-path-circle-2-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 38 + ], + [ + 0, + 800 + ] + ] + ] + ] + } ] ], - "initial-letter-sunk-initial-vlr.html": [ - "a4901290a6b2c00398a769a39c87c84cc8da51cf", + "clip-path-circle-008.html": [ + "a931d3e319ea57686059c806b5d5c47d698ad07d", [ null, [ [ - "/css/css-inline/initial-letter/initial-letter-sunk-initial-vlr-ref.html", + "/css/css-masking/clip-path/reference/clip-path-circle-3-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 38 + ], + [ + 0, + 800 + ] + ] + ] + ] + } ] ], - "initial-letter-sunk-initial-vrl.html": [ - "52584a98db57d85877869ede27b32ed511a05194", + "clip-path-columns-shape-001.html": [ + "de13607ad83c9f06382c8584613883bb8e93639d", [ null, [ [ - "/css/css-inline/initial-letter/initial-letter-sunk-initial-vrl-ref.html", + "/css/css-masking/clip-path/reference/clip-path-columns-shape-001-ref.html", "==" ] ], {} ] ], - "initial-letter-sunk-initial.html": [ - "701469ca90b9e6fb1ce9506a50dff346624b76f2", + "clip-path-columns-shape-002.html": [ + "6bd11a5e49a0c5ea810a272b44b9b1a081f4b672", [ null, [ [ - "/css/css-inline/initial-letter/initial-letter-sunk-initial-ref.html", + "/css/css-masking/clip-path/reference/clip-path-columns-shape-002-ref.html", "==" ] ], {} ] ], - "initial-letter-with-first-line.html": [ - "202c996b8aeed052631ed22dafc7030d065b6174", + "clip-path-contentBox-1a.html": [ + "b10dcbe3ad50028fdb143121534a41e47a923dc1", [ null, [ [ - "/css/css-inline/initial-letter/initial-letter-with-first-line-ref.html", + "/css/css-masking/clip-path/clip-path-geometryBox-1-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 62 + ], + [ + 0, + 420 + ] + ] + ] + ] + } ] ], - "initial-letter-with-tab-rtl.html": [ - "f8a2d7a2a1cbc48e5a7fc52637a1f7cab6b5ea46", + "clip-path-contentBox-1b.html": [ + "8c2a6517667d6c0434f03f4252e875ad3ff382bf", [ null, [ [ - "/css/css-inline/initial-letter/initial-letter-with-tab-rtl-ref.html", + "/css/css-masking/clip-path/clip-path-geometryBox-1-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 62 + ], + [ + 0, + 420 + ] + ] + ] + ] + } ] ], - "initial-letter-with-tab.html": [ - "49b1f6b4b0e2a5c85ba7d89a2d7b46a4bcfee611", + "clip-path-contentBox-1c.html": [ + "e1b653aaf7f16c00f65a5668b225f1ebbaee6544", [ null, [ [ - "/css/css-inline/initial-letter/initial-letter-with-tab-ref.html", + "/css/css-masking/clip-path/clip-path-geometryBox-1-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 52 + ], + [ + 0, + 376 + ] + ] + ] + ] + } ] - ] - }, - "text-box-trim": { - "text-box-trim-half-leading-block-box-001-ref.html": [ - "4fc498a27bded7e4e870a055128f003383792bee", + ], + "clip-path-contentBox-1d.html": [ + "1968fc8044112fa19d9f33199c3bbf773fee21f8", [ - "css/css-inline/text-box-trim/text-box-trim-half-leading-block-box-001-ref.html", + null, [ [ - "/css/css-inline/text-box-trim/text-box-trim-half-leading-inline-box-001-ref.html", + "/css/css-masking/clip-path/reference/green-100x100.html", "==" ] ], {} ] ], - "text-box-trim-half-leading-block-box-001.html": [ - "9ad9ffc3fc68184745549c4759ea9534fc174527", + "clip-path-contentBox-1e.html": [ + "5fde5ccd9a98659b0cd356a2070df7bda186fad5", [ - "css/css-inline/text-box-trim/text-box-trim-half-leading-block-box-001.html", + null, [ [ - "/css/css-inline/text-box-trim/text-box-trim-half-leading-inline-box-001-ref.html", + "/css/css-masking/clip-path/reference/green-circle-100x100.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 65 + ], + [ + 0, + 400 + ] + ] + ] + ] + } ] ], - "text-box-trim-half-leading-inline-box-001.html": [ - "130b68c6eb2ecfa400f9c13356a700200f49f13a", + "clip-path-descendant-text-mutated-001.html": [ + "8753a25f1e4e56cb72d3389533ac96c633dda115", [ - "css/css-inline/text-box-trim/text-box-trim-half-leading-inline-box-001.html", + null, [ [ - "/css/css-inline/text-box-trim/text-box-trim-half-leading-inline-box-001-ref.html", + "/css/css-masking/clip-path/reference/clip-path-descendant-text-mutated-001-ref.html", "==" ] ], {} ] ], - "text-box-trim-half-leading-inline-box-002.html": [ - "631b53697c1f6e0a1aff0153ad95e5c01cf4042b", + "clip-path-document-element-will-change.html": [ + "977eaca1405449fd1f79a01e9a5a91f2bb069b60", [ - "css/css-inline/text-box-trim/text-box-trim-half-leading-inline-box-002.html", + null, [ [ - "/css/css-inline/text-box-trim/text-box-trim-half-leading-inline-box-002-ref.html", + "/css/css-masking/clip-path/reference/clip-path-document-element-ref.html", "==" ] ], {} ] ], - "text-box-trim-half-leading-inline-box-003.html": [ - "4c7e33663b53fa22fa3578c3260701692d48f8b8", + "clip-path-document-element.html": [ + "56f2d5c8ebb5114fc91a87b3bb240b36957a1800", [ - "css/css-inline/text-box-trim/text-box-trim-half-leading-inline-box-003.html", + null, [ [ - "/css/css-inline/text-box-trim/text-box-trim-half-leading-inline-box-003-ref.html", + "/css/css-masking/clip-path/reference/clip-path-document-element-ref.html", "==" ] ], {} ] - ] - } - }, - "css-layout-api": { - "auto-block-size": { - "absolute.https.html": [ - "bf81b21a4bbd2ded687b1aa18bc71036550206b2", + ], + "clip-path-element-userSpaceOnUse-001.html": [ + "1381f53cb0c0aefc82a91a232b712d18be625b97", [ null, [ [ - "/css/css-layout-api/auto-block-size/auto-block-size-absolute-ref.html", + "/css/css-masking/clip-path/reference/clip-path-rectangle-ref.html", "==" ] ], {} ] ], - "flex.https.html": [ - "96fe3c79a938b1ab3f21bd8cd647c6ea375d776b", + "clip-path-element-userSpaceOnUse-002.html": [ + "6d6d77cecaaa545987e62176ac58ef4511ebab24", [ null, [ [ - "/css/css-layout-api/auto-block-size/flex-ref.html", + "/css/css-masking/clip-path/reference/clip-path-rectangle-ref.html", "==" ] ], {} ] ], - "floats.https.html": [ - "342c57b5300e257c8fd456489c9c57f9be0913bc", + "clip-path-element-userSpaceOnUse-003.html": [ + "1eff3b4fcefd29a5322feaac93b5b179c471c840", [ null, [ [ - "/css/css-layout-api/auto-block-size/auto-block-size-floats-ref.html", + "/css/css-masking/clip-path/reference/clip-path-ref-right-green-ref.html", "==" ] ], {} ] ], - "inflow.https.html": [ - "2239b27894c239360743a1c0f2b52bfce2f2f506", + "clip-path-element-userSpaceOnUse-004.html": [ + "af65df668f841390c8642aac3aafddb73c430161", [ null, [ [ - "/css/css-layout-api/auto-block-size/inflow-ref.html", + "/css/css-masking/clip-path/reference/clip-path-ref-bottom-green-ref.html", "==" ] ], {} ] ], - "negative.https.html": [ - "d321f030023a8e59b8cdd265ae974d01da07e64e", + "clip-path-ellipse-001.html": [ + "f48b197137cec3ac4131658018c3d6497dcadfce", [ null, [ [ - "/css/css-layout-api/auto-block-size/auto-block-size-negative-ref.html", + "/css/css-masking/clip-path/reference/clip-path-ellipse-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 38 + ], + [ + 0, + 400 + ] + ] + ] + ] + } ] - ] - }, - "baseline": { - "child-baseline.https.html": [ - "a871d690117ad00ec83022f72295d0d93d44ec28", + ], + "clip-path-ellipse-002.html": [ + "ecc5ca090f7dfad86d1f095dbcdce9a857caf151", [ null, [ [ - "/css/css-layout-api/green-square-ref.html", + "/css/css-masking/clip-path/reference/clip-path-ellipse-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 38 + ], + [ + 0, + 400 + ] + ] + ] + ] + } ] ], - "flex-baseline.https.html": [ - "ce869bee373df77ef8026a192725b95bc7b903d5", + "clip-path-ellipse-003.html": [ + "eff287614b12ae882494f5f54d33ba0f74ee0a96", [ null, [ [ - "/css/css-layout-api/green-square-ref.html", + "/css/css-masking/clip-path/reference/clip-path-circle-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 38 + ], + [ + 0, + 800 + ] + ] + ] + ] + } ] ], - "no-baseline.https.html": [ - "0bc08552bc5a665e9577a440bf3d5ed798006f59", + "clip-path-ellipse-004.html": [ + "3988840943c85d5819cf78182570d3279349c8f6", [ null, [ [ - "/css/css-layout-api/green-square-ref.html", + "/css/css-masking/clip-path/reference/clip-path-ellipse-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 38 + ], + [ + 0, + 400 + ] + ] + ] + ] + } ] ], - "orthogonal-baseline.https.html": [ - "c83560b57e85189d5d3e82f5fe5055b305a4c963", + "clip-path-ellipse-005.html": [ + "c7107d26171d8072acaf2e915356f7d7abf8defc", [ null, [ [ - "/css/css-layout-api/green-square-ref.html", + "/css/css-masking/clip-path/reference/clip-path-ellipse-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 38 + ], + [ + 0, + 400 + ] + ] + ] + ] + } ] - ] - }, - "box-tree-registered.https.html": [ - "c3024f9f3aac08205f613014d61724aa4f1c40e8", - [ - null, + ], + "clip-path-ellipse-006.html": [ + "d0b4efafebf46b5f2f9aa17bb2dd9b701c08cdb9", [ + null, [ - "/css/css-layout-api/box-tree-registered-ref.html", - "==" - ] - ], - {} - ] - ], - "box-tree-unregistered.https.html": [ - "25fe602d1c449ad1c983b049208a6a23dc746f41", - [ - null, + [ + "/css/css-masking/clip-path/reference/clip-path-ellipse-ref.html", + "==" + ] + ], + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 38 + ], + [ + 0, + 400 + ] + ] + ] + ] + } + ] + ], + "clip-path-ellipse-007.html": [ + "2105b36df370e7030dd3d74a74ec4540fd71cd33", [ + null, [ - "/css/css-layout-api/box-tree-unregistered-ref.html", - "==" - ] - ], - {} - ] - ], - "child-constraints": { - "available-block-size-htb-vrl.https.html": [ - "6ec8e4062fcce4ed95d326596735de9f44ce4cbb", + [ + "/css/css-masking/clip-path/reference/clip-path-ellipse-ref.html", + "==" + ] + ], + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 38 + ], + [ + 0, + 400 + ] + ] + ] + ] + } + ] + ], + "clip-path-ellipse-008.html": [ + "4e4ac5184299566b5376164fd5af9ad5a854148e", [ null, [ [ - "/css/css-layout-api/green-square-ref.html", + "/css/css-masking/clip-path/reference/clip-path-ellipse-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 38 + ], + [ + 0, + 400 + ] + ] + ] + ] + } ] ], - "available-block-size-invalid.https.html": [ - "32a0f11a4ec70f17a54d7bd1345d17cf421dc202", + "clip-path-fillBox-1a.html": [ + "c14890e9673b012e0fc2937c2093abec8e12532d", [ null, [ [ - "/css/css-layout-api/green-square-ref.html", + "/css/css-masking/clip-path/clip-path-geometryBox-1-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 79 + ], + [ + 0, + 392 + ] + ] + ] + ] + } ] ], - "available-block-size-vrl-htb.https.html": [ - "536af3b5a46b9eb156ae249be1fa2a315c08bd8d", + "clip-path-fillBox-1b.html": [ + "529cee6a4298299211524b669ede185856f4a7c4", [ null, [ [ - "/css/css-layout-api/green-square-ref.html", + "/css/css-masking/clip-path/clip-path-geometryBox-1-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 52 + ], + [ + 0, + 376 + ] + ] + ] + ] + } ] ], - "available-inline-size-htb-htb.https.html": [ - "6205c01d104feef599255ada7f96e567ec79ff49", + "clip-path-filter-order.html": [ + "5806e75d536cc34a4610630782e5cdfd4b5e552d", [ null, [ [ - "/css/css-layout-api/green-square-ref.html", + "/css/css-masking/clip-path/clip-path-filter-order-ref.html", "==" ] ], {} ] ], - "available-inline-size-invalid.https.html": [ - "8bb18aaa4ba2b127257170c4a0c6f84048693477", + "clip-path-filter-radius-clips.html": [ + "f715f0de787005e60825eb786d12fa5047041f8a", [ null, [ [ - "/css/css-layout-api/green-square-ref.html", + "/css/css-masking/clip-path/reference/clip-path-filter-radius-clips-ref.html", "==" ] ], {} ] ], - "available-inline-size-vrl-vrl.https.html": [ - "1b8d01f02476526bcf327e21f4919153ce346dbf", + "clip-path-fixed-nested.html": [ + "5090bc2aed43e0619eb7b966c2ed46cd43057e40", [ null, [ [ - "/css/css-layout-api/green-square-ref.html", + "/css/css-masking/clip-path/clip-path-fixed-nested-ref.html", "==" ] ], {} ] ], - "available-size-for-percentages-htb-htb.https.html": [ - "9bf4d40ad613390ba41581d52de0f4d52cf2e5f9", + "clip-path-fixed-scroll.html": [ + "2b6e09b0e8391bd1f73b1be0b33dcb36cab3d895", [ null, [ [ - "/css/css-layout-api/green-square-ref.html", + "/css/css-masking/clip-path/clip-path-fixed-scroll-ref.html", "==" ] ], {} ] ], - "available-size-for-percentages-htb-vrl.https.html": [ - "eb104a180d75a2c041fd21c2ca00cb44e4568831", + "clip-path-foreignobject-non-zero-xy.html": [ + "a63f4c8aa294db0b3e1ed3a3434015d65ecf453f", [ null, [ [ - "/css/css-layout-api/green-square-ref.html", + "/css/css-masking/clip-path/reference/green-100x100.html", "==" ] ], {} ] ], - "available-size-for-percentages-invalid.https.html": [ - "8bd969271e0c257ec2c374eda0cb03d1b0a84912", + "clip-path-geometryBox-2.html": [ + "d4c47349d2053c90ebb82998b10b16e916421dbb", [ null, [ [ - "/css/css-layout-api/green-square-ref.html", + "/css/css-masking/clip-path/clip-path-geometryBox-2-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 60 + ], + [ + 0, + 394 + ] + ] + ] + ] + } ] ], - "available-size-for-percentages-vrl-htb.https.html": [ - "ce8ff95dd0d15d9d05c8bf022e3ccb5e5eaa2deb", + "clip-path-inline-001.html": [ + "76018614baab3fc3123f9c3d41053effcb64c224", [ null, [ [ - "/css/css-layout-api/green-square-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "available-size-for-percentages-vrl-vrl.https.html": [ - "71c7355b9cdb206235c8bf1c834c42d42c10f52d", + "clip-path-inline-002.html": [ + "ca8634b90328b12f965e28fefbac749e4eadf37a", [ null, [ [ - "/css/css-layout-api/green-square-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "fixed-block-size-vrl.https.html": [ - "631c5f82815569d4274c24ad73607d03085b7051", + "clip-path-inline-003.html": [ + "471c54c1c6fc891f005e62081986d1f0e822e128", [ null, [ [ - "/css/css-layout-api/green-square-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "fixed-block-size.https.html": [ - "737cc4da75b440cdd7dece9b8a4872805bcb014c", + "clip-path-inline-004.html": [ + "8061a91988c0a1ec17c7182c83977a2471728f62", [ null, [ [ - "/css/css-layout-api/green-square-ref.html", + "/css/css-masking/clip-path/clip-path-inline-004-ref.html", "==" ] ], {} ] ], - "fixed-inline-size-vrl.https.html": [ - "4fc3c2e77d99291630bdcd9d8e505976a6183e55", + "clip-path-inline-005.html": [ + "39dac759e2a34a154eaaba06bfa8d35af27187d9", [ null, [ [ - "/css/css-layout-api/green-square-ref.html", + "/css/css-masking/clip-path/clip-path-inline-005-ref.html", "==" ] ], {} ] ], - "fixed-inline-size.https.html": [ - "0fdf4aca3a76a1afe6349e0d157d8eb0bd3e0561", + "clip-path-inline-006.html": [ + "7a37c04f441a5bc642f450db4e622dc1927be6f9", [ null, [ [ - "/css/css-layout-api/green-square-ref.html", + "/css/css-masking/clip-path/clip-path-inline-006-ref.html", "==" ] ], {} ] ], - "percentage-size-htb-htb.https.html": [ - "84bda1ddf5a87384e61c0ff5ebd894be09b8a638", + "clip-path-inline-007.html": [ + "9518b587c4f07958c3ec5915204c15495179cb0d", [ null, [ [ - "/css/css-layout-api/green-square-ref.html", + "/css/css-masking/clip-path/clip-path-inline-007-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 62 + ], + [ + 0, + 332 + ] + ] + ] + ] + } ] ], - "percentage-size-htb-vrl.https.html": [ - "98d285b015d4adda92df3f42b988499ec57d620a", + "clip-path-inline-008.html": [ + "911f9cac4dd39ed1f24564c1b1e35e663b0159df", [ null, [ [ - "/css/css-layout-api/green-square-ref.html", + "/css/css-masking/clip-path/clip-path-inline-008-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 14 + ], + [ + 0, + 240 + ] + ] + ] + ] + } ] ], - "percentage-size-invalid.https.html": [ - "04355355528a4312e24d3b975d7c603f551ac141", + "clip-path-inline-009.html": [ + "6a7fbb549885208c015a4ac65ca6d8a440363e47", [ null, [ [ - "/css/css-layout-api/green-square-ref.html", + "/css/css-masking/clip-path/clip-path-inline-009-ref.html", "==" ] ], {} ] ], - "percentage-size-quirks-mode.https.html": [ - "527149b67a8cd89ec6337484bc5e1c4da5e5e8cc", + "clip-path-inline-010.html": [ + "dea78b6347f496b5805c8a2220c77f882a11a1c5", [ null, [ [ - "/css/css-layout-api/green-square-ref.html", + "/css/css-masking/clip-path/clip-path-inline-010-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 43 + ], + [ + 0, + 319 + ] + ] + ] + ] + } ] ], - "percentage-size-vrl-htb.https.html": [ - "2d3d496fa5f2465a1b3790ff341a77060d95512c", + "clip-path-inset-round-percent.html": [ + "cb0e5ec73575c83954253bdcf394290b4f4d200e", [ null, [ [ - "/css/css-layout-api/green-square-ref.html", + "/css/css-masking/clip-path/clip-path-inset-round-percent-ref.html", "==" ] ], {} ] ], - "percentage-size-vrl-vrl.https.html": [ - "577b98ad983eeb733e235db1fc9885ca62a880a3", + "clip-path-localRef-1.html": [ + "e24afbcd6bd995c19585a82ccee10fb8f35d3497", [ null, [ [ - "/css/css-layout-api/green-square-ref.html", + "/css/css-masking/clip-path/clip-path-localRef-1-ref.html", "==" ] ], {} ] - ] - }, - "constraints": { - "fixed-block-size-absolute-left-right-vrl.https.html": [ - "8e177dbf3369c8a8094fae5c617bde081b248625", + ], + "clip-path-marginBox-1a.html": [ + "009ba674d8c56d3f63906e1ab8287ea4db702057", [ null, [ [ - "/css/css-layout-api/green-square-ref.html", + "/css/css-masking/clip-path/clip-path-geometryBox-1-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 62 + ], + [ + 0, + 420 + ] + ] + ] + ] + } ] ], - "fixed-block-size-absolute-none.https.html": [ - "7b10f11d7ddd8c75e3d76b2fd762d040ea486c56", + "clip-path-marginBox-1b.html": [ + "04f22e84d5c4a7d8cfc8f4de69ab42270bc61e24", [ null, [ [ - "/css/css-layout-api/green-square-ref.html", + "/css/css-masking/clip-path/reference/green-100x100.html", "==" ] ], {} ] ], - "fixed-block-size-absolute-top-bottom.https.html": [ - "73c29000cfdc6d50388f4619fdc639185e6c85bf", + "clip-path-marginBox-1c.html": [ + "7d6780731ed7d60899e5ef18ee4152fa22eac0b0", [ null, [ [ - "/css/css-layout-api/green-square-ref.html", + "/css/css-masking/clip-path/reference/green-circle-100x100.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 98 + ], + [ + 0, + 424 + ] + ] + ] + ] + } ] ], - "fixed-block-size-block-none-vrl.https.html": [ - "704b66d64aaeb724a66f94f09e003096b789db72", + "clip-path-marginBox-1d.html": [ + "39d3c9db5afb39eb20f1ed0260111dfff85468ca", [ null, [ [ - "/css/css-layout-api/green-square-ref.html", + "/css/css-masking/clip-path/clip-path-marginBox-1d-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 146 + ], + [ + 0, + 500 + ] + ] + ] + ] + } ] ], - "fixed-block-size-block-none.https.html": [ - "6c023f5162837beb379d5995fa9a59016ae1fe9c", + "clip-path-mix-blend-mode-1.html": [ + "ff0c376905c3ecd329b2bc074aa77cea09cf6c5c", [ null, [ [ - "/css/css-layout-api/green-square-ref.html", + "/css/css-masking/clip-path/clip-path-mix-blend-mode-1-ref.html", "==" ] ], {} ] ], - "fixed-block-size-fixed-max.https.html": [ - "8af6afde26952faf53ab272c56f1e51d8ce9db27", + "clip-path-on-fixed-position-scroll.html": [ + "b947f10aa2af27127ada1436dc3e81358a4e6e57", [ null, [ [ - "/css/css-layout-api/green-square-ref.html", + "/css/css-masking/clip-path/clip-path-on-fixed-position-scroll-ref.html", "==" ] ], {} ] ], - "fixed-block-size-fixed-min.https.html": [ - "4d76ed97850f01051e3fdc74b22ef32e418b6222", + "clip-path-paddingBox-1a.html": [ + "493ba7ab05678854d2232e75882483516464a4e8", [ null, [ [ - "/css/css-layout-api/green-square-ref.html", + "/css/css-masking/clip-path/clip-path-geometryBox-1-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 62 + ], + [ + 0, + 420 + ] + ] + ] + ] + } ] ], - "fixed-block-size-fixed-vrl.https.html": [ - "bbc0a2fde87207deb4c1cd5eefa47f1dff2a06ad", + "clip-path-paddingBox-1b.html": [ + "d3ea29633e317b94e85e1f2ddd0f097e641d717d", [ null, [ [ - "/css/css-layout-api/green-square-ref.html", + "/css/css-masking/clip-path/clip-path-geometryBox-1-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 62 + ], + [ + 0, + 420 + ] + ] + ] + ] + } ] ], - "fixed-block-size-fixed.https.html": [ - "45376ac295c460d81a84d25a715085180bc4eb6f", + "clip-path-paddingBox-1c.html": [ + "c3fc5a90af2e1819ad78bcf3cccba165f5f9aa99", [ null, [ [ - "/css/css-layout-api/green-square-ref.html", + "/css/css-masking/clip-path/clip-path-geometryBox-1-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 52 + ], + [ + 0, + 376 + ] + ] + ] + ] + } ] ], - "fixed-block-size-flex-basis-vrl.https.html": [ - "25fc685a67b2b3082edf297d6d29d83ce1cc5ffe", + "clip-path-paddingBox-1d.html": [ + "3425c3d2d651de9e92ff4b99f652d7c4bf6f702a", [ null, [ [ - "/css/css-layout-api/green-square-ref.html", + "/css/css-masking/clip-path/reference/green-100x100.html", "==" ] ], {} ] ], - "fixed-block-size-flex-column-basis.https.html": [ - "8df99ee835bb212f28ade5f0db4496857c3f44bf", + "clip-path-paddingBox-1e.html": [ + "cd0d3987d9f66ce3d83424652988ad9cc9a717a4", [ null, [ [ - "/css/css-layout-api/green-square-ref.html", + "/css/css-masking/clip-path/reference/green-circle-100x100.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 70 + ], + [ + 0, + 400 + ] + ] + ] + ] + } ] ], - "fixed-block-size-flex-column-grow.https.html": [ - "da53fa86ad8c5114d40887490d8014af1089d849", + "clip-path-path-001.html": [ + "ebdfc2297bbcc8225f92ba9dfa2ed33819f2f9a9", [ null, [ [ - "/css/css-layout-api/green-square-ref.html", + "/css/css-masking/clip-path/reference/clip-path-path-001-ref.html", "==" ] ], {} ] ], - "fixed-block-size-flex-column-none.https.html": [ - "1d4249e9252797a00311bb0d1629a791618f9efe", + "clip-path-path-002.html": [ + "e3049922ebdec9a0ee9be2f8c5cff97e2ec25e94", [ null, [ [ - "/css/css-layout-api/green-square-ref.html", + "/css/css-masking/clip-path/reference/clip-path-path-002-ref.html", "==" ] ], {} ] ], - "fixed-block-size-flex-column-stretch-vrl.https.html": [ - "c71e202b0ceda991010ba7a76d3815ad74ad4882", + "clip-path-path-003.html": [ + "af1de750c5bea5564a4f3bdffc13f61170a82853", [ null, [ [ - "/css/css-layout-api/green-square-ref.html", + "/css/css-masking/clip-path/reference/green-100x100.html", "==" ] ], {} ] ], - "fixed-block-size-flex-grow-vrl.https.html": [ - "f77b84910a557a71063bfc7a1e64e7697922bd5f", + "clip-path-path-with-zoom.html": [ + "981519d22b2a47093cd99fc6bc38e35ee9608a0a", [ null, [ [ - "/css/css-layout-api/green-square-ref.html", + "/css/css-masking/clip-path/reference/clip-path-path-with-zoom-ref.html", "==" ] ], {} ] ], - "fixed-block-size-flex-none.https.html": [ - "9ef11daccf71535da0836455cfd2d4003f6f719c", + "clip-path-polygon-001.html": [ + "954f0ba8d91de74cb36b834f06db5a00ad59b194", [ null, [ [ - "/css/css-layout-api/green-square-ref.html", + "/css/css-masking/clip-path/reference/clip-path-rectangle-ref.html", "==" ] ], {} ] ], - "fixed-block-size-flex-percentage-indefinite.https.html": [ - "111120673e758e36394bdeb1c07347b067a9bc7a", + "clip-path-polygon-002.html": [ + "ed2ede4fedbc277c9fd804765c83ca5f162b535f", [ null, [ [ - "/css/css-layout-api/green-square-ref.html", + "/css/css-masking/clip-path/reference/clip-path-rectangle-ref.html", "==" ] ], {} ] ], - "fixed-block-size-flex-stretch-max.https.html": [ - "c72ed3e04d8f3f5eef05e9d2ff576024736acb58", + "clip-path-polygon-003.html": [ + "1ecf6803ab962f12daa0772d24abf910bea09d54", [ null, [ [ - "/css/css-layout-api/green-square-ref.html", + "/css/css-masking/clip-path/reference/clip-path-rectangle-ref.html", "==" ] ], {} ] ], - "fixed-block-size-flex-stretch.https.html": [ - "cfaf38295f848bdac90f8e0687f496d110cd85ca", + "clip-path-polygon-004.html": [ + "cec947a3611e3ff1e878dc8a40622c2a1b493fc1", [ null, [ [ - "/css/css-layout-api/green-square-ref.html", + "/css/css-masking/clip-path/reference/clip-path-rectangle-border-ref.html", "==" ] ], {} ] ], - "fixed-block-size-grid-none.https.html": [ - "5c7381523e5175062cad19c02017699bceaf9597", + "clip-path-polygon-005.html": [ + "b687f2e752f7acb2a55f2d638632940be0c3d73f", [ null, [ [ - "/css/css-layout-api/green-square-ref.html", + "/css/css-masking/clip-path/reference/clip-path-rectangle-border-ref.html", "==" ] ], {} ] ], - "fixed-block-size-grid-stretch-max.https.html": [ - "c738ad546d220f3893b2b63d4ea6dd46debdda15", + "clip-path-polygon-006.html": [ + "1b33eaaf2fa7ab407a0508865b87626ce27eb4d6", [ null, [ [ - "/css/css-layout-api/green-square-ref.html", + "/css/css-masking/clip-path/reference/clip-path-square-001-ref.html", "==" ] ], {} ] ], - "fixed-block-size-grid-stretch.https.html": [ - "2e83f42c8662262dbb301a07859c3b985f9e63ab", + "clip-path-polygon-007.html": [ + "9b590979424ef476129a48efb1c5f742cddf0c28", [ null, [ [ - "/css/css-layout-api/green-square-ref.html", + "/css/css-masking/clip-path/reference/clip-path-stripes-001-ref.html", "==" ] ], {} ] ], - "fixed-block-size-grid-vrl.https.html": [ - "2c004cd9169a27659a92e7686d88d05a992cd603", + "clip-path-polygon-008.html": [ + "454aba6915ff9bf9d1d10be693bf6ef5ae339232", [ null, [ [ - "/css/css-layout-api/green-square-ref.html", + "/css/css-masking/clip-path/reference/clip-path-stripes-002-ref.html", "==" ] ], {} ] ], - "fixed-block-size-percentage-indefinite.https.html": [ - "ab02cb4b03f4bf141f4e3540b0b2e0e38c27a6d6", + "clip-path-polygon-009.html": [ + "7d3ab5bb429079f5fe94052d9147caa0a77feefb", [ null, [ [ - "/css/css-layout-api/green-square-ref.html", + "/css/css-masking/clip-path/reference/clip-path-square-002-ref.html", "==" ] ], {} ] ], - "fixed-block-size-percentage-quirks-mode.https.html": [ - "285ce941b2cd85b301f45e69076570d8f7eb3fbf", + "clip-path-polygon-010.html": [ + "e74a134082e509e9d9c5ccc94d7b84867cfd313c", [ null, [ [ - "/css/css-layout-api/green-square-ref.html", + "/css/css-masking/clip-path/reference/clip-path-stripes-001-ref.html", "==" ] ], {} ] ], - "fixed-block-size-percentage-vrl.https.html": [ - "870bc526f874a5999987cff9a12a93159e8130db", + "clip-path-polygon-011.html": [ + "7acccd1a69920b8be408d7e6f7c602ac310709dd", [ null, [ [ - "/css/css-layout-api/green-square-ref.html", + "/css/css-masking/clip-path/reference/clip-path-stripes-001-ref.html", "==" ] ], {} ] ], - "fixed-block-size-percentage.https.html": [ - "335556550d28988c095fdac828caae9f3ba76d5d", + "clip-path-polygon-012.html": [ + "9a24abfd10860d4b579f9fdd75102f8a2c6f9227", [ null, [ [ - "/css/css-layout-api/green-square-ref.html", + "/css/css-masking/clip-path/reference/clip-path-stripes-001-ref.html", "==" ] ], {} ] ], - "fixed-block-size-quirky-body.https.html": [ - "150426d45c79d881cd50bfcb52edb00df27bd963", + "clip-path-polygon-013.html": [ + "23c93f347d175fe91eb2c50d5418f7c3df2a89cd", [ null, [ [ - "/css/css-layout-api/green-square-ref.html", + "/css/css-masking/clip-path/reference/clip-path-stripes-003-ref.html", "==" ] ], {} ] ], - "fixed-inline-size-absolute-left-right.https.html": [ - "3b81c4d13d408df528dbd33777403866e390eaa0", + "clip-path-rect-001.html": [ + "1645d45829946a5dfd149ec0d28bfaa049c97c4f", [ null, [ [ - "/css/css-layout-api/constraints/fixed-inline-size-ref.html", + "/css/css-masking/clip-path/reference/clip-path-rectangle-ref.html", "==" ] ], {} ] ], - "fixed-inline-size-absolute-top-bottom-vrl.https.html": [ - "ec94e59a17de50a46616d9402763abe157f2b684", + "clip-path-rect-002.html": [ + "c9032e0a5bb0400529b8d6e82f01610f8b05857b", [ null, [ [ - "/css/css-layout-api/constraints/fixed-inline-size-ref.html", + "/css/css-masking/clip-path/reference/clip-path-rectangle-ref.html", "==" ] ], {} ] ], - "fixed-inline-size-block-auto-avoid-floats-vlr.https.html": [ - "2758462bd3357f288a758ea1fe23e7b3799c0e2c", + "clip-path-rect-003.html": [ + "a2d201c1b0fed0390d037a0291309b4bce0390cd", [ null, [ [ - "/css/css-layout-api/constraints/fixed-inline-size-ref.html", + "/css/css-masking/clip-path/reference/clip-path-xywh-003-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 50 + ], + [ + 0, + 250 + ] + ] + ] + ] + } ] ], - "fixed-inline-size-block-auto-avoid-floats.https.html": [ - "862b9ad3b287db2939c00d29f1ad181568f5d3cf", + "clip-path-reference-box-001.html": [ + "35b31ebaef1fc184e7f4e6202093d650e6b1db65", [ null, [ [ - "/css/css-layout-api/constraints/fixed-inline-size-ref.html", + "/css/css-masking/clip-path/reference/clip-path-reference-box-001-ref.html", "==" ] ], {} ] ], - "fixed-inline-size-block-auto-vlr.https.html": [ - "0c15fd12eed4e04fceb64b4a2ffee3ced1fd1203", + "clip-path-reference-box-002.html": [ + "a45e4537fc2d4e14965eaee8a0e639d45c606b27", [ null, [ [ - "/css/css-layout-api/constraints/fixed-inline-size-ref.html", + "/css/css-masking/clip-path/reference/clip-path-reference-box-002-ref.html", "==" ] ], {} ] ], - "fixed-inline-size-block-auto.https.html": [ - "c513c3d8441c370af8be533a8c14d5ed7aa6945a", + "clip-path-reference-box-003.html": [ + "ac88439d7b2e70a235b7b991b83450083fb8a94c", [ null, [ [ - "/css/css-layout-api/constraints/fixed-inline-size-ref.html", + "/css/css-masking/clip-path/reference/clip-path-reference-box-003-ref.html", "==" ] ], {} ] ], - "fixed-inline-size-fixed-vrl.https.html": [ - "93b0c110d97d6573a9f9b19b9b5aeac04658fde5", + "clip-path-reference-box-004.html": [ + "eb89065364bbb23afc73278c29fe38c1343cdfd0", [ null, [ [ - "/css/css-layout-api/constraints/fixed-inline-size-ref.html", + "/css/css-masking/clip-path/reference/clip-path-reference-box-004-ref.html", "==" ] ], {} ] ], - "fixed-inline-size-fixed.https.html": [ - "d8e8062f83fce06b7ae6bc20c7527ce4ae333fa3", + "clip-path-reference-restore.html": [ + "eccebd8fbcc3a556a13829be3e25c4efead3aafc", [ null, [ [ - "/css/css-layout-api/constraints/fixed-inline-size-ref.html", + "/css/css-masking/clip-path/reference/clip-path-reference-restore-ref.html", "==" ] ], {} ] ], - "fixed-inline-size-flex-grow-column-vrl.https.html": [ - "b9159965a07b0e6d108a08e9535b4b0b259c26fe", + "clip-path-rotated-will-change-transform.html": [ + "a609e9cc91591b853db9713f7e981ecc4f666abb", [ null, [ [ - "/css/css-layout-api/constraints/fixed-inline-size-ref.html", + "/css/css-masking/clip-path/clip-path-rotated-will-change-transform-ref.html", "==" ] ], {} ] ], - "fixed-inline-size-flex-grow.https.html": [ - "c2532c1460b838f9367a95bf4771a7474c0405d3", + "clip-path-round-zero-size.html": [ + "59404f81c9dffe5695f31145b3486558f5bc7ab5", [ null, [ [ - "/css/css-layout-api/constraints/fixed-inline-size-ref.html", + "/css/css-masking/clip-path/clip-path-round-zero-size-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 64 + ], + [ + 0, + 100 + ] + ] + ] + ] + } ] ], - "fixed-inline-size-grid.https.html": [ - "45f9f491e7b7bf6c24af4167407f37500ca75788", + "clip-path-scaled-video.html": [ + "03e1b21d17520254bc6f924dc8fe575c08230f44", [ null, [ [ - "/css/css-layout-api/constraints/fixed-inline-size-ref.html", + "/css/css-masking/clip-path/clip-path-scaled-video-ref.html", "==" ] ], {} ] ], - "fixed-inline-size-percentage-vlr.https.html": [ - "2e3504377726a11fa52b3194596daf8f29a20d2a", + "clip-path-scroll.html": [ + "880fd8b77a603147cc2a4a3660bcabe74e427bba", [ null, [ [ - "/css/css-layout-api/constraints/fixed-inline-size-ref.html", + "/css/css-masking/clip-path/reference/clip-path-scroll-ref.html", "==" ] ], {} ] ], - "fixed-inline-size-percentage.https.html": [ - "c9041cf0eac2436260c2ff3e5e775fb3f9430854", + "clip-path-shape-001.html": [ + "6033e9743e4f4656c63cb56e591b85b7c43313ae", [ null, [ [ - "/css/css-layout-api/constraints/fixed-inline-size-ref.html", + "/css/css-masking/clip-path/reference/clip-path-path-001-ref.html", "==" ] ], {} ] - ] - }, - "constraints-data-function-failure.https.html": [ - "2d5e5240d794749ec2f9c7ee5eb9c4f9a6e54c9f", - [ - null, - [ - [ - "/css/css-layout-api/green-square-ref.html", - "==" - ] - ], - {} - ] - ], - "constraints-data-sab-failure.https.html": [ - "b8df61c73d305e463e78855ee399e91c9b9c4bca", - [ - null, - [ - [ - "/css/css-layout-api/green-square-ref.html", - "==" - ] - ], - {} - ] - ], - "constraints-data.https.html": [ - "4bea061917ab74c542534e23c33b5135c8a01d15", - [ - null, - [ - [ - "/css/css-layout-api/green-square-ref.html", - "==" - ] - ], - {} - ] - ], - "edges": { - "all.https.html": [ - "e38d3666b87296df160ef19f94927760f66d53f7", + ], + "clip-path-shape-002-units.html": [ + "b928876a0af353605de810bc70cd8294080bac22", [ null, [ [ - "/css/css-layout-api/edges/all-ref.html", + "/css/css-masking/clip-path/reference/clip-path-path-002-ref.html", "==" ] ], {} ] ], - "border-htb-rtl.https.html": [ - "cb200a76758c48d955bc001262d05d445c4451ef", + "clip-path-shape-002.html": [ + "3cb39f8d44863357d9a2e93cd0b166bccd69e73b", [ null, [ [ - "/css/css-layout-api/green-square-ref.html", + "/css/css-masking/clip-path/reference/clip-path-path-002-ref.html", "==" ] ], {} ] ], - "border-htb.https.html": [ - "67a38588303793d0b7705de2c6d938a6754e3de8", + "clip-path-shape-003.html": [ + "ef03f85b28c5661744069214c53187db667f1c60", [ null, [ [ - "/css/css-layout-api/green-square-ref.html", + "/css/css-masking/clip-path/reference/clip-path-shape-003-ref.html", "==" ] ], {} ] ], - "border-vlr-rtl.https.html": [ - "8da84e9acc9d722976c5aa277c9902bf0fc4c25e", + "clip-path-shape-004.html": [ + "1da9177de55a69988aa8bfcea2c7875c30f366d4", [ null, [ [ - "/css/css-layout-api/green-square-ref.html", + "/css/css-masking/clip-path/reference/clip-path-shape-004-ref.html", "==" ] ], {} ] ], - "border-vlr.https.html": [ - "b514b2f22ff485d560bc6508f4c2d70a630633ba", + "clip-path-shape-005.html": [ + "44e358bb5979a2cdb0bcbb3722e137308b712ecf", [ null, [ [ - "/css/css-layout-api/green-square-ref.html", + "/css/css-masking/clip-path/reference/clip-path-path-001-ref.html", "==" ] ], {} ] ], - "border-vrl-rtl.https.html": [ - "38c8c3f0463b2b3dbe1b56aa6422a2141e7613ea", + "clip-path-shape-006.html": [ + "7f6db73ebdc44a95b6bcc7651523724713b7f354", [ null, [ [ - "/css/css-layout-api/green-square-ref.html", + "/css/css-masking/clip-path/reference/clip-path-path-001-ref.html", "==" ] ], {} ] ], - "border-vrl.https.html": [ - "94c5353eb93eff80c3734b17cf86959bbf28fd97", + "clip-path-shape-foreignobject-non-zero-xy.html": [ + "4e221f36e4cb7bc698f1929dcc09096114ab2693", [ null, [ [ - "/css/css-layout-api/green-square-ref.html", + "/css/css-masking/clip-path/reference/green-100x100.html", "==" ] ], {} ] ], - "padding-htb-rtl.https.html": [ - "dfbf2bc099da97ff787ae9ba22ad70a7c3787629", + "clip-path-strokeBox-1a.html": [ + "487f5363b694304923538d0314d3c6d2a685da6b", [ null, [ [ - "/css/css-layout-api/green-square-ref.html", + "/css/css-masking/clip-path/clip-path-geometryBox-1-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 65 + ], + [ + 0, + 368 + ] + ] + ] + ] + } ] ], - "padding-htb.https.html": [ - "ebad66594c634675c1bb6eca1bfb69bb56a9eacb", + "clip-path-strokeBox-1b.html": [ + "33956e3d47817e974d5882c03db1c7ef36939c80", [ null, [ [ - "/css/css-layout-api/green-square-ref.html", + "/css/css-masking/clip-path/clip-path-geometryBox-1-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 64 + ], + [ + 0, + 260 + ] + ] + ] + ] + } ] ], - "padding-vlr-rtl.https.html": [ - "86b0ca5425b6cc43f0d6529bb988d995738f852d", + "clip-path-strokeBox-1c.html": [ + "577e6d0a4e9f814d768a825c4e3fa27272c2b46d", [ null, [ [ - "/css/css-layout-api/green-square-ref.html", + "/css/css-masking/clip-path/clip-path-geometryBox-1-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 64 + ], + [ + 0, + 260 + ] + ] + ] + ] + } ] ], - "padding-vlr.https.html": [ - "563884ade3544edc39ea3920be32d7dcdba973bf", + "clip-path-svg-invalidate.html": [ + "0bf921c7cf125c1e8a9e6842c62f294b13104790", [ null, [ [ - "/css/css-layout-api/green-square-ref.html", + "/css/css-masking/clip-path/clip-path-svg-invalidate-ref.html", "==" ] ], {} ] ], - "padding-vrl-rtl.https.html": [ - "bda0a211442e6f37badd576bb4a8ef4eb15ba291", + "clip-path-svg-text-backdrop-filter.html": [ + "68d462ab802fcc5be1280b797d972cfc515b6205", [ null, [ [ - "/css/css-layout-api/green-square-ref.html", + "/css/css-masking/clip-path/clip-path-svg-text-backdrop-filter-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 1 + ], + [ + 0, + 200 + ] + ] + ] + ] + } ] ], - "padding-vrl.https.html": [ - "a65ecad31152da6c44ca49c0fd81d47a950934fd", + "clip-path-svg-text-css.html": [ + "8a0d7111b0c3d86cf632e1d1c98c3fcf40d5b980", [ null, [ [ - "/css/css-layout-api/green-square-ref.html", + "/css/css-masking/clip-path/reference/clip-path-svg-text-css-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 1 + ], + [ + 0, + 200 + ] + ] + ] + ] + } ] ], - "scrollbar.https.html": [ - "76bbd4dccd075fe2f6e52aea606414999e1ee0a9", + "clip-path-svg-text-font-loading.html": [ + "230c36ce6e731b8303b78471454e5c78408f81d5", [ null, [ [ - "/css/css-layout-api/edges/scrollbar-ref.html", + "/css/css-masking/clip-path/reference/green-100x100.html", "==" ] ], {} ] - ] - }, - "fallback-intrinsic-sizes": { - "bad-return.https.html": [ - "7ea0e93b86226ded89869158c8fedda4395e4a58", + ], + "clip-path-transform-mutated-001.html": [ + "01f11a34a33823651d46f4788ca12074f91560ed", [ null, [ [ - "/css/css-layout-api/fallback-intrinsic-sizes/fallback-ref.html", + "/css/css-masking/clip-path/reference/clip-path-transform-mutated-001-ref.html", "==" ] ], {} ] ], - "constructor-error.https.html": [ - "2078a49cda18c356ac2c16cfa5f0eef38874bc13", + "clip-path-transform-mutated-002.html": [ + "de00a013ad44b3f5c928e46829b75151e936c2af", [ null, [ [ - "/css/css-layout-api/fallback-intrinsic-sizes/fallback-ref.html", + "/css/css-masking/clip-path/reference/clip-path-transform-mutated-002-ref.html", "==" ] ], {} ] ], - "error.https.html": [ - "3a6665d8aa525e2ed61ab0987f22df8a8a94a55f", + "clip-path-url-reference-change-from-empty.html": [ + "2de0bb866f1c837887d6fa3c5889f8d38da3c055", [ null, [ [ - "/css/css-layout-api/fallback-intrinsic-sizes/fallback-ref.html", + "/css/css-masking/clip-path/reference/green-100x100.html", "==" ] ], {} ] ], - "invalid-child.https.html": [ - "c21d1577e4f7bf795a4421ea6eb020390b0854de", + "clip-path-url-reference-change.html": [ + "4a6266aabd0c5ecc0a3acf1f40ac55fbbcbab1e0", [ null, [ [ - "/css/css-layout-api/fallback-intrinsic-sizes/fallback-ref.html", + "/css/css-masking/clip-path/reference/green-100x100.html", "==" ] ], {} ] ], - "no-promise.https.html": [ - "c5ec721b544c2e991d1e49ce81f4590fddbce5db", + "clip-path-url-reference-svg-foreignobject-zoomed.html": [ + "df8d0cc89cc2211a29245797f135b98ed49e5cdc", [ null, [ [ - "/css/css-layout-api/fallback-intrinsic-sizes/fallback-ref.html", + "/css/css-masking/clip-path/reference/green-100x100.html", "==" ] ], {} ] ], - "unresolved-promise.https.html": [ - "f56e331a5a31c6f4db59e0f1030df5d329a37cbd", + "clip-path-viewBox-1a.html": [ + "5b029e1ef7cfea200416bd99314c7288e44e3f60", [ null, [ [ - "/css/css-layout-api/fallback-intrinsic-sizes/fallback-ref.html", + "/css/css-masking/clip-path/clip-path-geometryBox-1-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 62 + ], + [ + 0, + 420 + ] + ] + ] + ] + } ] - ] - }, - "fallback-layout": { - "bad-return.https.html": [ - "3e671537c9ede3a0b119fc4676839210a4ffdbb1", + ], + "clip-path-viewBox-1b.html": [ + "7d44efb81ea6f5892935cd121b85a712ea03bb2b", [ null, [ [ - "/css/css-layout-api/fallback-layout/fallback-layout-fallback-ref.html", + "/css/css-masking/clip-path/clip-path-geometryBox-1-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 36 + ], + [ + 0, + 376 + ] + ] + ] + ] + } ] ], - "constructor-error.https.html": [ - "9ce791ab5b988c26cc9e48e85f1751d6616cb2e4", + "clip-path-viewBox-1c.html": [ + "d46c6d2f03ea8fc93bb3f47d15d36d8a66202573", [ null, [ [ - "/css/css-layout-api/fallback-layout/fallback-layout-fallback-ref.html", + "/css/css-masking/clip-path/clip-path-geometryBox-1-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 65 + ], + [ + 0, + 368 + ] + ] + ] + ] + } ] ], - "error.https.html": [ - "0631193e1fed34197accc24a2c70ced0fb4109c1", + "clip-path-viewBox-1d.html": [ + "0d58e4f331b5088acd15bd3313cc511584fc8662", [ null, [ [ - "/css/css-layout-api/fallback-layout/fallback-layout-fallback-ref.html", + "/css/css-masking/clip-path/clip-path-geometryBox-1-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 64 + ], + [ + 0, + 376 + ] + ] + ] + ] + } ] ], - "invalid-child.https.html": [ - "fb48ac7602a5a95fdd86dcd43c19f9141fab84a2", + "clip-path-xywh-001.html": [ + "a3d55c277cad706fd36c94c73731b5f6c366fc0b", [ null, [ [ - "/css/css-layout-api/fallback-layout/fallback-layout-fallback-ref.html", + "/css/css-masking/clip-path/reference/clip-path-rectangle-ref.html", "==" ] ], {} ] ], - "invalid-fragment.https.html": [ - "d954f44ba3eb26f9f830473cb6ecd4f06a2a058a", + "clip-path-xywh-002.html": [ + "be317ec0d489c640507e7491416914e0c891f6c8", [ null, [ [ - "/css/css-layout-api/fallback-layout/fallback-layout-fallback-ref.html", + "/css/css-masking/clip-path/reference/clip-path-rectangle-ref.html", "==" ] ], {} ] ], - "no-promise.https.html": [ - "00670f7bbe74340d416e1b32c6cc2ba5b4f57c42", + "clip-path-xywh-003.html": [ + "370e1af9757cb6cc067d911ec58bda41aff5bcff", [ null, [ [ - "/css/css-layout-api/fallback-layout/fallback-layout-fallback-ref.html", + "/css/css-masking/clip-path/reference/clip-path-xywh-003-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 2 + ], + [ + 0, + 32 + ] + ] + ] + ] + } ] ], - "unresolved-promise.https.html": [ - "72ce549acf5fd51c4a2d167a34c58f972bacf4ec", + "reference-local-url-with-base-001.html": [ + "c65761bddfc095e0e85b4feaea4359516a8df5b1", [ null, [ [ - "/css/css-layout-api/fallback-layout/fallback-layout-fallback-ref.html", + "/css/css-masking/clip-path/reference/reference-local-url-with-base-001-ref.html", "==" ] ], {} ] - ] - }, - "fragment-data-function-failure.https.html": [ - "8496967be06401d5a21d097f4ad9db410758b49d", - [ - null, - [ - [ - "/css/css-layout-api/green-square-ref.html", - "==" - ] - ], - {} - ] - ], - "fragment-data-immutable.https.html": [ - "e33a6ff0eea1c8877130493c8897e778ed7d448e", - [ - null, - [ - [ - "/css/css-layout-api/green-square-ref.html", - "==" - ] - ], - {} - ] - ], - "fragment-data-sab-failure.https.html": [ - "681de5b543c29eadd0a27333c0aa42c83ae14f3e", - [ - null, - [ - [ - "/css/css-layout-api/green-square-ref.html", - "==" - ] - ], - {} - ] - ], - "fragment-data.https.html": [ - "ffc360ab35c20327ad40e5445b3a97f9401039fc", - [ - null, - [ - [ - "/css/css-layout-api/green-square-ref.html", - "==" - ] - ], - {} - ] - ], - "intrinsic-sizes": { - "absolute.https.html": [ - "be654ecbc7693c502f48dca5839dadcafd4686d9", + ], + "reference-mutated.html": [ + "09642853c775f33ce3b8dbd6ee26e8eba05e1b3e", [ null, [ [ - "/css/css-layout-api/intrinsic-sizes/absolute-ref.html", + "/css/css-masking/clip-path/reference/reference-mutated-ref.html", "==" ] ], {} ] ], - "child-replaced-percentage-01.https.html": [ - "058428601d0cc2f689ee3dcd52e48a44cbdc2a28", + "reference-nonexisting-existing-local.html": [ + "d02e1439e64e79a65c185c703e4813e33225e679", [ null, [ [ - "/css/css-layout-api/intrinsic-sizes/child-replaced-percentage-ref.html", + "/css/css-masking/clip-path/reference/reference-nonexisting-existing-local-ref.html", "==" ] ], {} ] ], - "child-replaced-percentage-02.https.html": [ - "42e8207b5b5537470945d763e523c4538f06ccd7", + "svg-clip-path-circle-offset.html": [ + "ec4cbaeb25203d8d8897d004a4e9c1ba0986350d", [ null, [ [ - "/css/css-layout-api/intrinsic-sizes/child-replaced-percentage-ref.html", + "/css/css-masking/clip-path/svg-clip-path-circle-offset-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 62 + ], + [ + 0, + 420 + ] + ] + ] + ] + } ] ], - "child-size-01.https.html": [ - "c0a00e28bbbf1e8fdfab7762d611f0ce814e5ab7", + "svg-clip-path-ellipse-offset.html": [ + "2b0876eb5890c0aa2cc6fcbf054b70efed16a9d7", [ null, [ [ - "/css/css-layout-api/intrinsic-sizes/child-size-01-ref.html", + "/css/css-masking/clip-path/svg-clip-path-ellipse-offset-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 69 + ], + [ + 0, + 394 + ] + ] + ] + ] + } ] ], - "child-size-02.https.html": [ - "030ecfccdc3ebfe2bdfdcb797582090e743638d6", + "svg-clip-path-fixed-values.html": [ + "eb2c44fbb23bd18456b97416cb4c55ba701b6105", [ null, [ [ - "/css/css-layout-api/intrinsic-sizes/child-size-02-ref.html", + "/css/css-masking/clip-path/svg-clip-path-fixed-values-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 62 + ], + [ + 0, + 608 + ] + ] + ] + ] + } ] - ], - "child-size-03.https.html": [ - "8b540cf9596282e7174d6228d192d0e28d861af8", + ] + }, + "clip-path-svg-content": { + "clip-path-clip-nested-twice.svg": [ + "269e8feed2d3c21774a7c94729c3551899ce4d92", [ null, [ [ - "/css/css-layout-api/intrinsic-sizes/child-size-02-ref.html", + "/css/css-masking/clip-path-svg-content/reference/clip-path-square-002-ref.svg", "==" ] ], {} ] ], - "child-size-contribution.https.html": [ - "e21085c9f6fa4ebd2facb8884fe268f4f53cbd80", + "clip-path-clip-rule-001.svg": [ + "e5b972ff0bc95905af8390d384e5611e11868a05", [ null, [ [ - "/css/css-layout-api/intrinsic-sizes/child-size-01-ref.html", + "/css/css-masking/clip-path-svg-content/reference/clip-path-square-hole-001-ref.svg", "==" ] ], {} ] ], - "content-size.https.html": [ - "ed87dd5065006ffd3a6249a7b9fa76c58d25bb1d", + "clip-path-clip-rule-002.svg": [ + "7729f7973178db0188e2041737bd89768a04a430", [ null, [ [ - "/css/css-layout-api/intrinsic-sizes/content-size-ref.html", + "/css/css-masking/clip-path-svg-content/reference/clip-path-square-001-ref.svg", "==" ] ], {} ] ], - "floats.https.html": [ - "5079b193fea0e29699d6443870f1444b1e976923", + "clip-path-clip-rule-003.svg": [ + "c4f2bf42b0174a72a0cbaec269439416a3e963e1", [ null, [ [ - "/css/css-layout-api/intrinsic-sizes/floats-ref.html", + "/css/css-masking/clip-path-svg-content/reference/clip-path-square-hole-001-ref.svg", "==" ] ], {} ] ], - "invalid-min-max.https.html": [ - "2b2d8ca76e0f875dc70cc3c6c52c9daeca1fd721", + "clip-path-clip-rule-004.svg": [ + "2ea618602ae387b4cabbb6bf3abba304588b5c9b", [ null, [ [ - "/css/css-layout-api/intrinsic-sizes/invalid-ref.html", + "/css/css-masking/clip-path-svg-content/reference/clip-path-square-001-ref.svg", "==" ] ], {} ] ], - "negative-max.https.html": [ - "578803767ed0218fb518ad74c7b1f7a6ef581bff", + "clip-path-clip-rule-005.svg": [ + "ca492583cd7b77605db274fc1894621852dc47e8", [ null, [ [ - "/css/css-layout-api/intrinsic-sizes/negative-ref.html", + "/css/css-masking/clip-path-svg-content/reference/clip-path-clip-rule-001-ref.svg", "==" ] ], {} ] ], - "negative-min.https.html": [ - "c614a2fb12f4a545064738491bfe437601af7b82", + "clip-path-clip-rule-006.svg": [ + "da9d1010d5423014323a503da47f6b8562d4fe13", [ null, [ [ - "/css/css-layout-api/intrinsic-sizes/negative-ref.html", + "/css/css-masking/clip-path-svg-content/reference/clip-path-clip-rule-002-ref.svg", "==" ] ], {} ] - ] - }, - "layout-child": { - "absolute.https.html": [ - "7c47e38e7ad929a22c958f8e7aa33ca19e6002f7", + ], + "clip-path-clip-rule-007.svg": [ + "d1edb6cd9aca29dce860082e3e99d0b6876cc70d", [ null, [ [ - "/css/css-layout-api/green-square-ref.html", + "/css/css-masking/clip-path-svg-content/reference/clip-path-clip-rule-003-ref.svg", "==" ] ], {} ] ], - "before-after.https.html": [ - "373392ddfd143355979edaa5a6f1585c2aedb655", + "clip-path-clip-rule-008.svg": [ + "66ad9b5cb9b68a2ce25776167ddbfc4e8de6692c", [ null, [ [ - "/css/css-layout-api/green-square-ref.html", + "/css/css-masking/clip-path-svg-content/reference/clip-path-clip-rule-004-ref.svg", "==" ] ], {} ] ], - "fixed.https.html": [ - "95d8852b7da266598f32f713c9f1e80bc3731488", + "clip-path-clip-rule-009.svg": [ + "69d70b4e3e3bf14103f5a56c1c1cd0cc0ac36c6d", [ null, [ [ - "/css/css-layout-api/green-square-ref.html", + "/css/css-masking/clip-path-svg-content/reference/clip-path-square-001-ref.svg", "==" ] ], {} ] ], - "float.https.html": [ - "e8db261774b4bcd4837ba1395a68178431bd67ae", + "clip-path-clip-rule-010.svg": [ + "594e3097c9014b84ba4d84cf513113b5314a1809", [ null, [ [ - "/css/css-layout-api/green-square-ref.html", + "/css/css-masking/clip-path-svg-content/reference/clip-path-clip-rule-001-ref.svg", "==" ] ], {} ] ], - "inflow.https.html": [ - "b43f1a7facdce8d1680767a063ba6a46859b8562", + "clip-path-clip.svg": [ + "530fd014d325f15aa5f694a21733d9c4630e1527", [ null, [ [ - "/css/css-layout-api/green-square-ref.html", + "/css/css-masking/clip-path-svg-content/reference/clip-path-square-002-ref.svg", "==" ] ], {} ] ], - "inlines.https.html": [ - "dac7e0b26bc74667fef0564c3c2e904bbd6e162c", + "clip-path-content-clip-001.svg": [ + "9991f164769f93eb75518287ec4db887f18a1450", [ null, [ [ - "/css/css-layout-api/green-square-ref.html", + "/css/css-masking/clip-path-svg-content/reference/clip-path-square-002-ref.svg", "==" ] ], {} ] ], - "text-01.https.html": [ - "090034fc1866fa5ddd1767fc4cb6f80c9e577ea8", + "clip-path-content-clip-002.svg": [ + "7677e3f19a5bb92391799c33a13cd2d2487f0e40", [ null, [ [ - "/css/css-layout-api/green-square-ref.html", + "/css/css-masking/clip-path-svg-content/reference/clip-path-square-002-ref.svg", "==" ] ], {} ] ], - "text-02.https.html": [ - "0df7498668981f54ba0f83c116a46e28b5fdb4d4", + "clip-path-content-clip-003.svg": [ + "fd1b29162570d5f6264ea36abbb72e90a8fdcee4", [ null, [ [ - "/css/css-layout-api/green-square-ref.html", + "/css/css-masking/clip-path-svg-content/reference/clip-path-square-002-ref.svg", "==" ] ], {} ] - ] - }, - "position-fragment": { - "htb-ltr.https.html": [ - "f60109ca5743a9f94b286751c0e751e795fe25b5", + ], + "clip-path-content-clip-004.svg": [ + "2317842e5ff2526635097511999ebc007724c514", [ null, [ [ - "/css/css-layout-api/position-fragment/ref.html", + "/css/css-masking/clip-path-svg-content/reference/clip-path-content-clip-004-ref.svg", "==" ] ], {} ] ], - "htb-rtl.https.html": [ - "980a3cdc253994914b950c36d00f34cfc02ce606", + "clip-path-content-invisible.svg": [ + "0696d4b09fd125f0682ac6652236f8122d4b4d7c", [ null, [ [ - "/css/css-layout-api/position-fragment/ref.html", + "/css/css-masking/clip-path-svg-content/reference/clip-path-invisible-ref.svg", "==" ] ], {} ] ], - "vlr-ltr.https.html": [ - "d75a4af639f7bd938077447ef13991bdb4df197d", + "clip-path-content-syling.svg": [ + "5fb527d1e5b6c5a918f0580975dc068ed28876a9", [ null, [ [ - "/css/css-layout-api/position-fragment/ref.html", + "/css/css-masking/clip-path-svg-content/reference/clip-path-square-002-ref.svg", "==" ] ], {} ] ], - "vlr-rtl.https.html": [ - "a8ef6c699ca98167679e56a881b71b68868bad04", + "clip-path-content-use-001.svg": [ + "b70cdde6831a6df7c82a9a768c56f866dd06df74", [ null, [ [ - "/css/css-layout-api/position-fragment/ref.html", + "/css/css-masking/clip-path-svg-content/reference/clip-path-square-002-ref.svg", "==" ] ], {} ] ], - "vrl-ltr.https.html": [ - "21c9ce54d665de7e5cc3406112b73b31a07a82c9", + "clip-path-content-use-002.svg": [ + "0596d21cfed89221b01d19c23b462434c789041f", [ null, [ [ - "/css/css-layout-api/position-fragment/ref.html", + "/css/css-masking/clip-path-svg-content/reference/clip-path-square-002-ref.svg", "==" ] ], {} ] ], - "vrl-rtl.https.html": [ - "777e725da99140680c9b359d26dba8fd697af910", + "clip-path-content-use-003.svg": [ + "79354679cfc1de9e5f6f7df04d745a4cb54072c3", [ null, [ [ - "/css/css-layout-api/position-fragment/ref.html", + "/css/css-masking/clip-path-svg-content/reference/clip-path-square-002-ref.svg", "==" ] ], {} ] - ] - }, - "style-map-multi.https.html": [ - "fe6017b80cbe42612a237de220dd21dddb7d4507", - [ - "css/css-layout-api/style-map-multi.https.html", - [ - [ - "/css/css-layout-api/style-map-multi-ref.html", - "==" - ] - ], - {} - ] - ], - "style-map.https.html": [ - "52032d9c6782251ed14c73f479e594a81422642a", - [ - "css/css-layout-api/style-map.https.html", - [ - [ - "/css/css-layout-api/style-map-ref.html", - "==" - ] - ], - {} - ] - ] - }, - "css-lists": { - "add-inline-child-after-marker-001.html": [ - "228604ee357d22027c1691bf2baf27a52729222b", - [ - null, - [ - [ - "/css/css-lists/add-inline-child-after-marker-001-ref.html", - "==" - ] - ], - {} - ] - ], - "add-inline-child-after-marker-002.html": [ - "66633ac9559c05da058ca46e7a07c2ad481f42c9", - [ - null, - [ - [ - "/css/css-lists/add-inline-child-after-marker-002-ref.html", - "==" - ] - ], - {} - ] - ], - "change-list-descendant-display.html": [ - "18296f8862887eb1b666eb20f1ced0dd4cc78392", - [ - null, - [ - [ - "/css/css-lists/change-list-descendant-display-ref.html", - "==" - ] - ], - {} - ] - ], - "change-list-style-position-001.html": [ - "5f56ee76ff70d12738ef6cef2a6f713141c82dec", - [ - null, - [ - [ - "/css/css-lists/change-list-style-position-001-ref.html", - "==" - ] - ], - {} - ] - ], - "change-list-style-position-002.html": [ - "66328ef8bb979c9c62b60776911aac767b3fff6a", - [ - null, - [ - [ - "/css/css-lists/change-list-style-position-002-ref.html", - "==" - ] - ], - {} - ] - ], - "change-list-style-position-003.html": [ - "8af360f0b090ee65f5496ed568a50f440d7a7555", - [ - null, - [ - [ - "/css/css-lists/change-list-style-position-003-ref.html", - "==" - ] - ], - {} - ] - ], - "change-list-style-type-001.html": [ - "9eacdd7092d328521e69964131ac26e75f7333a9", - [ - null, - [ - [ - "/css/css-lists/change-list-style-type-001-ref.html", - "==" - ] - ], - {} - ] - ], - "change-list-style-type-002.html": [ - "b76e4e9c31268b55e11b90f7b61d8d76c73f6eb8", - [ - null, - [ - [ - "/css/css-lists/change-list-style-type-002-ref.html", - "==" - ] - ], - {} - ] - ], - "content-property": { - "marker-text-matches-armenian.html": [ - "58f570cd1197579aba1b646a1c970ab13c23c3e3", + ], + "clip-path-content-use-004.svg": [ + "8e2e7a67ae1992c98b0c097acbfc21221605d8af", [ null, [ [ - "/css/css-lists/content-property/marker-text-matches-armenian-ref.html", + "/css/css-masking/clip-path-svg-content/reference/clip-path-square-002-ref.svg", "==" ] ], {} ] ], - "marker-text-matches-circle.html": [ - "9ad6e7a01a9de9c0082aee288bb9506368eceb81", + "clip-path-content-use-005.svg": [ + "c7d5ec83901f010700436e045d761f425770b304", [ null, [ [ - "/css/css-lists/content-property/marker-text-matches-circle-ref.html", + "/css/css-masking/clip-path-svg-content/reference/clip-path-square-002-ref.svg", "==" ] ], {} ] ], - "marker-text-matches-decimal-leading-zero.html": [ - "5044d4e68dd42586b4a9ada58b8af2c232400c4c", + "clip-path-content-use-006.svg": [ + "6f9d7e0673f5560df7ba44423c2530b87b8fb38f", [ null, [ [ - "/css/css-lists/content-property/marker-text-matches-decimal-leading-zero-ref.html", + "/css/css-masking/clip-path-svg-content/reference/clip-path-square-002-ref.svg", "==" ] ], {} ] ], - "marker-text-matches-decimal.html": [ - "8c991bc3d6a9e5065586756154ef6022850842f2", + "clip-path-content-use-007.svg": [ + "7cf0fa08e5495ee21d18c1a4fc7a57b09edb2d0c", [ null, [ [ - "/css/css-lists/content-property/marker-text-matches-decimal-ref.html", + "/css/css-masking/clip-path-svg-content/reference/clip-path-square-003-ref.svg", "==" ] ], {} ] ], - "marker-text-matches-disc.html": [ - "300a82374898b0a03d7cde26b19b40e06d1f34b3", + "clip-path-css-transform-001.svg": [ + "35b21f5f1e04fd04999949ac2b3036157c044e10", [ null, [ [ - "/css/css-lists/content-property/marker-text-matches-disc-ref.html", + "/css/css-masking/clip-path-svg-content/reference/clip-path-square-002-ref.svg", "==" ] ], {} ] ], - "marker-text-matches-georgian.html": [ - "ef7615f6f521828d77d7664b14d14a16680d473b", + "clip-path-css-transform-002.svg": [ + "78b57628ff873f74bfb9367ff5c5df910fcd1bd9", [ null, [ [ - "/css/css-lists/content-property/marker-text-matches-georgian-ref.html", + "/css/css-masking/clip-path-svg-content/reference/clip-path-square-002-ref.svg", "==" ] ], {} ] ], - "marker-text-matches-lower-greek.html": [ - "96b5d811c26e6ca764269331420c2079924fa15f", + "clip-path-css-transform-003.svg": [ + "8f2713d2761d1437e5d584f619b5be4b37202e8d", [ null, [ [ - "/css/css-lists/content-property/marker-text-matches-lower-greek-ref.html", + "/css/css-masking/clip-path-svg-content/reference/clip-path-square-003-ref.svg", "==" ] ], {} ] ], - "marker-text-matches-lower-latin.html": [ - "0f6f24238b860dd9f8c258829be168183b2e2a40", + "clip-path-css-transform-004.svg": [ + "d290fe13a7c29c9d43e2d323b7de9fa3b3d8b7fe", [ null, [ [ - "/css/css-lists/content-property/marker-text-matches-lower-latin-ref.html", + "/css/css-masking/clip-path-svg-content/reference/clip-path-square-003-ref.svg", "==" ] ], {} ] ], - "marker-text-matches-lower-roman.html": [ - "db7301b3201b20d63f5c49ab2aecf475912677c2", + "clip-path-dom-child-changes.svg": [ + "611fb3fcf0a091ef16d28e11d4555af2144361c1", [ null, [ [ - "/css/css-lists/content-property/marker-text-matches-lower-roman-ref.html", + "/css/css-masking/clip-path-svg-content/reference/clip-path-square-003-ref.svg", "==" ] ], {} ] ], - "marker-text-matches-square.html": [ - "020c4a6c43742812df85b69c96d7511b43a6d7b6", + "clip-path-dom-clippathunits.svg": [ + "edfccbd83f86b39443d7e46503bb4203e9fd5a07", [ null, [ [ - "/css/css-lists/content-property/marker-text-matches-square-ref.html", + "/css/css-masking/clip-path-svg-content/reference/clip-path-square-003-ref.svg", "==" ] ], {} ] ], - "marker-text-matches-upper-latin.html": [ - "903ef8f57dd879ab3fb03278d36867eba0a1ecd6", + "clip-path-dom-href.svg": [ + "748ff2cc5c7fa06ceaabc71f3b9b0d258fec2e31", [ null, [ [ - "/css/css-lists/content-property/marker-text-matches-upper-latin-ref.html", + "/css/css-masking/clip-path-svg-content/reference/clip-path-square-003-ref.svg", "==" ] ], {} ] ], - "marker-text-matches-upper-roman.html": [ - "69f34d7408348e1b5061a5a86e68d481860df814", + "clip-path-dom-id.svg": [ + "e8ad7daeccbe7de5b738dd6dafedb501e1669338", [ null, [ [ - "/css/css-lists/content-property/marker-text-matches-upper-roman-ref.html", + "/css/css-masking/clip-path-svg-content/reference/clip-path-square-003-ref.svg", "==" ] ], {} ] - ] - }, - "counter-001.html": [ - "46d7eb81df00603eb36db35c1d05e3e11c7f1fcd", - [ - "css/css-lists/counter-001.html", + ], + "clip-path-inset-stroke-001.svg": [ + "06c810cd1119d76b9a6c903249d6d4015c25cd1f", [ + null, [ - "/css/css-lists/counter-001-ref.html", - "==" - ] - ], - {} - ] - ], - "counter-002.html": [ - "5994802c4520b0d91efdcd0e693eee87f2689246", - [ - "css/css-lists/counter-002.html", - [ - [ - "/css/css-lists/counter-002-ref.html", - "==" - ] - ], - {} - ] - ], - "counter-003.html": [ - "60164c1c7eb526c917aa62b58eaf936ffe8cc099", - [ - "css/css-lists/counter-003.html", - [ - [ - "/css/css-lists/counter-003-ref.html", - "==" - ] - ], - {} - ] - ], - "counter-004.html": [ - "4ef2ced3ae98b0eb71472d83119eb4d71fe2f0cc", - [ - "css/css-lists/counter-004.html", - [ - [ - "/css/css-lists/counter-004-ref.html", - "==" - ] - ], - {} - ] - ], - "counter-increment-inside-display-contents.html": [ - "ebfe1774da6a32508796b3bc83f428d78d089aff", - [ - null, - [ - [ - "/css/css-lists/counter-7-ref.html", - "==" - ] - ], - {} - ] - ], - "counter-invalid.htm": [ - "938015937025272c14a52b5839d65784ccb757bc", - [ - null, - [ - [ - "/css/css-lists/counter-7-ref.html", - "==" - ] - ], - {} - ] - ], - "counter-list-item-2.html": [ - "959ff6660cabb8896f8520a88de560745919f61d", - [ - null, - [ - [ - "/css/css-lists/counter-list-item-2-ref.html", - "==" - ] - ], - {} - ] - ], - "counter-list-item-3.html": [ - "096fdfbc2892dda989741e04b004c31c710536d6", - [ - null, - [ - [ - "/css/css-lists/counter-list-item-3-ref.html", - "==" - ] - ], - {} - ] - ], - "counter-list-item-slot-order.html": [ - "09bdb25e0f9c2d1c248086c2b5ecbbaf3b6b6480", - [ - null, - [ - [ - "/css/css-lists/counter-list-item-slot-order-ref.html", - "==" - ] - ], - {} - ] - ], - "counter-list-item.html": [ - "c0b89d49fd0bb38cacb71e7d875ba29bab31da70", - [ - null, - [ - [ - "/css/css-lists/counter-list-item-ref.html", - "==" - ] - ], - {} - ] - ], - "counter-order-display-contents.html": [ - "70dbc5de8ed09725d42fcce595b4d8efab093ae0", - [ - null, - [ - [ - "/css/css-lists/counter-order-display-contents-ref.html", - "==" - ] - ], - {} - ] - ], - "counter-reset-increment-overflow-underflow.html": [ - "6dc16e25ee73f4b4cbad2af1120761ebcff7b0b1", - [ - "css/css-lists/counter-reset-increment-overflow-underflow.html", - [ - [ - "/css/css-lists/counter-reset-increment-overflow-underflow-ref.html", - "==" - ] - ], - {} - ] - ], - "counter-reset-increment-set-display-contents.html": [ - "6508df0da150a92e42032c546f2cf4ac6c171859", - [ - null, - [ - [ - "/css/css-lists/counter-7-ref.html", - "==" - ] - ], - {} - ] - ], - "counter-reset-increment-set-display-none.html": [ - "510fd8b6482be5a9007c111c6f8478bb659d72b0", - [ - null, - [ - [ - "/css/css-lists/counter-7-ref.html", - "==" - ] - ], - {} - ] - ], - "counter-reset-inside-display-contents.html": [ - "85c137e675e55a54c4ab3834469ab3d13aa32725", - [ - null, - [ - [ - "/css/css-lists/counter-7-ref.html", - "==" - ] - ], - {} - ] - ], - "counter-reset-reversed-list-item-start.html": [ - "4c8039b25d499bc59ee95806543f6cb8090f8979", - [ - null, - [ - [ - "/css/css-lists/counter-7-ref.html", - "==" - ] - ], - {} - ] - ], - "counter-reset-reversed-list-item.html": [ - "40706fdf97f7396c9ee67b5496dcb30eef99208e", - [ - null, - [ - [ - "/css/css-lists/counter-7-ref.html", - "==" - ] - ], - {} - ] - ], - "counter-reset-reversed-not-list-item-start.html": [ - "368ed81ee7c4212411f6130781b96cb3825212c6", - [ - "css/css-lists/counter-reset-reversed-not-list-item-start.html", - [ - [ - "/css/css-lists/counter-7-ref.html", - "==" - ] - ], - {} - ] - ], - "counter-reset-reversed-not-list-item.html": [ - "c492067590ad43eb298241a51ecb951e0f97143d", - [ - "css/css-lists/counter-reset-reversed-not-list-item.html", - [ - [ - "/css/css-lists/counter-10-ref.html", - "==" - ] - ], - {} - ] - ], - "counter-set-001.html": [ - "4e28367798ae65095b21094d2d5da777b57f4294", - [ - null, - [ - [ - "/css/css-lists/counter-set-001-ref.html", - "==" - ] - ], - {} - ] - ], - "counter-set-002.html": [ - "6978a63efaffd10e932a386b824dca20ce6c51b6", - [ - null, - [ - [ - "/css/css-lists/counter-set-002-ref.html", - "==" - ] - ], - {} - ] - ], - "counter-slot-order-scoping.html": [ - "ca87761901aa0abdcc6ef6166e5775dfc3efeac2", - [ - null, - [ - [ - "/css/css-lists/counter-slot-order-scoping-ref.html", - "==" - ] - ], - {} - ] - ], - "counter-slot-order.html": [ - "e481402911c527237a71aeaae66df54085200d58", - [ - null, - [ - [ - "/css/css-lists/counter-slot-order-ref.html", - "==" - ] - ], - {} - ] - ], - "counters-001.html": [ - "a6d85fe4d5bc85708bc5a37e707d9f7ee4dd5a79", - [ - "css/css-lists/counters-001.html", - [ - [ - "/css/css-lists/counters-001-ref.html", - "==" - ] - ], - {} - ] - ], - "counters-002.html": [ - "9b3618d3bfe56fa53e3dc7b28bfaca7bcae95fe1", - [ - "css/css-lists/counters-002.html", - [ - [ - "/css/css-lists/counters-002-ref.html", - "==" - ] - ], - {} - ] - ], - "counters-003.html": [ - "1648081a4d39d0078a7d1855fe2edbae95f54f05", - [ - "css/css-lists/counters-003.html", - [ - [ - "/css/css-lists/counters-003-ref.html", - "==" - ] - ], - {} - ] - ], - "counters-004.html": [ - "6b1b1c850d7159ab850675a1156046fc8116b7df", - [ - "css/css-lists/counters-004.html", - [ - [ - "/css/css-lists/counters-004-ref.html", - "==" - ] - ], - {} - ] - ], - "counters-scope-001.html": [ - "2ea72753bd984fe93db1872d5f90e72da6cd4966", - [ - "css/css-lists/counters-scope-001.html", - [ - [ - "/css/css-lists/counters-scope-001-ref.html", - "==" - ] - ], - {} - ] - ], - "counters-scope-002.html": [ - "8261d55971d3793784ccbec1599ce704543ac49c", - [ - "css/css-lists/counters-scope-002.html", - [ - [ - "/css/css-lists/counters-scope-002-ref.html", - "==" - ] - ], - {} - ] - ], - "counters-scope-003.html": [ - "f7b94e286356623abb5d90a840d859c9a0a79edd", - [ - "css/css-lists/counters-scope-003.html", - [ - [ - "/css/css-lists/counters-scope-003-ref.html", - "==" - ] - ], - {} - ] - ], - "counters-scope-004.html": [ - "4a60c4ca0bd007c9de74c3fa8e39208415933f18", - [ - "css/css-lists/counters-scope-004.html", - [ - [ - "/css/css-lists/counters-scope-004-ref.html", - "==" - ] - ], - {} - ] - ], - "foo-counter-reversed-006a.html": [ - "028f1fe19998c8eb70cc1d98d6d6f9ee852b7b03", - [ - null, - [ - [ - "/css/css-lists/li-value-reversed-006-ref.html", - "==" - ] - ], - {} - ] - ], - "foo-counter-reversed-006b.html": [ - "21d5067109562d80eaaf14d4f20b0f2fce37429d", - [ - null, - [ - [ - "/css/css-lists/li-value-reversed-006-ref.html", - "==" - ] - ], - {} - ] - ], - "foo-counter-reversed-006c.html": [ - "c684e73181e8a45b40e0b6923eb8a21461a38c4a", - [ - null, - [ - [ - "/css/css-lists/li-value-reversed-006-ref.html", - "==" - ] - ], - {} - ] - ], - "foo-counter-reversed-006d.html": [ - "0e9f53272bbb93375986722c7fcd7fcc2603131b", - [ - null, - [ - [ - "/css/css-lists/li-value-reversed-006-ref.html", - "==" - ] - ], - {} - ] - ], - "foo-counter-reversed-006e.html": [ - "58ff2b83e112f57bb702b19384667b08d09d00c4", - [ - null, - [ - [ - "/css/css-lists/li-value-reversed-006-ref.html", - "==" - ] - ], - {} - ] - ], - "foo-counter-reversed-007a.html": [ - "a8390abcb071db3fff958a7855326c500d31c6d4", - [ - null, - [ - [ - "/css/css-lists/li-value-reversed-007-ref.html", - "==" - ] - ], - {} - ] - ], - "foo-counter-reversed-007b.html": [ - "defbc0e26f1c50f4781d68fe69b25706d71d53d3", - [ - null, - [ - [ - "/css/css-lists/li-value-reversed-007-ref.html", - "==" - ] - ], - {} - ] - ], - "foo-counter-reversed-008a.html": [ - "9a597139a201771edc21ab3536fdf7760eba8f70", - [ - null, - [ - [ - "/css/css-lists/li-value-reversed-008-ref.html", - "==" - ] - ], - {} - ] - ], - "foo-counter-reversed-008b.html": [ - "b7d4d569aadb3515cc96006ce6d394454b88f032", - [ - null, - [ - [ - "/css/css-lists/li-value-reversed-008-ref.html", - "==" - ] - ], - {} - ] - ], - "foo-counter-reversed-009a.html": [ - "742d8bf0f55a84dd0b9d149b1a0c73c4f61bd11e", - [ - null, - [ - [ - "/css/css-lists/li-value-reversed-009-ref.html", - "==" - ] - ], - {} - ] - ], - "foo-counter-reversed-009b.html": [ - "852297c898097f5d5f76970378f2359bceca852b", - [ - null, - [ - [ - "/css/css-lists/li-value-reversed-009-ref.html", - "==" - ] - ], - {} - ] - ], - "inline-block-list-marker.html": [ - "73a163fa9dbe472fb6223c42fd0075843faf4b51", - [ - null, - [ - [ - "/css/css-lists/inline-block-list-marker-ref.html", - "==" - ] - ], - {} - ] - ], - "inline-block-list.html": [ - "52220ae4241c2523ebe5fdf32c7ed2907268d296", - [ - null, - [ - [ - "/css/css-lists/inline-block-list-ref.html", - "==" - ] - ], - {} - ] - ], - "inline-list-marker.html": [ - "3535f22ce2b2fe47d21b2f72037fdf1d88324379", - [ - null, - [ - [ - "/css/css-lists/inline-list-marker-ref.html", - "==" - ] - ], - {} - ] - ], - "inline-list-with-table-child.html": [ - "0b897ec1da1f9bf9e3826b33d04ed74b334e5ff5", - [ - null, - [ - [ - "/css/css-lists/inline-list-with-table-child-ref.html", - "==" - ] - ], - {} - ] - ], - "inline-list.html": [ - "f4b48230e1a7b0a86eb6f249de868a773a2aa875", - [ - null, - [ - [ - "/css/css-lists/inline-list-ref.html", - "==" - ] - ], - {} - ] - ], - "li-insert-child.html": [ - "d82bf1374aebc47740285a54a7532b6b7242377f", - [ - null, - [ - [ - "/css/css-lists/li-insert-child-ref.html", - "==" - ] - ], - {} - ] - ], - "li-list-item-counter.html": [ - "b9a1196cabce1924b74bbd66d84917f02a4186a9", - [ - null, - [ - [ - "/css/css-lists/li-list-item-counter-ref.html", - "==" - ] - ], - {} - ] - ], - "li-value-counter-reset-001.html": [ - "0e91c3a03d618a9d17194c883f80fd90899d4459", - [ - null, - [ - [ - "/css/css-lists/li-value-counter-reset-001-ref.html", - "==" - ] - ], - {} - ] - ], - "li-value-reversed-001.html": [ - "94c3ebc24847efcae0f4e0d6aad337432afd451a", - [ - null, - [ - [ - "/css/css-lists/li-value-reversed-001-ref.html", - "==" - ] - ], - {} - ] - ], - "li-value-reversed-002.html": [ - "41454611eaa3ee06e0322c2755d7328b395754fc", - [ - null, - [ - [ - "/css/css-lists/li-value-reversed-002-ref.html", - "==" - ] - ], - {} - ] - ], - "li-value-reversed-003.html": [ - "af40da87a019682b7ecb32c4565b10b702f1357c", - [ - null, - [ - [ - "/css/css-lists/li-value-reversed-002-ref.html", - "==" - ] - ], - {} - ] - ], - "li-value-reversed-004.html": [ - "bb04fb4c703e8a36e950c5306019df7a084b58ef", - [ - null, - [ - [ - "/css/css-lists/li-value-reversed-004-ref.html", - "==" - ] - ], - {} - ] - ], - "li-value-reversed-005.html": [ - "cbdf38da40a72a0681e1e5dc436d30b95b86f5e5", - [ - null, - [ - [ - "/css/css-lists/li-value-reversed-005-ref.html", - "==" - ] - ], - {} - ] - ], - "li-value-reversed-006a.html": [ - "3491c863a5446f9fad3f1523446e5b4855b69f9b", - [ - null, - [ - [ - "/css/css-lists/li-value-reversed-006-ref.html", - "==" - ] - ], - {} - ] - ], - "li-value-reversed-006b.html": [ - "b124e9ba2d8ef8563b47275690cee697e6920428", - [ - null, - [ - [ - "/css/css-lists/li-value-reversed-006-ref.html", - "==" - ] - ], - {} - ] - ], - "li-value-reversed-006c.html": [ - "7d1d419cc99435edd2ced4197bcdd08f147512d5", - [ - null, - [ - [ - "/css/css-lists/li-value-reversed-006-ref.html", - "==" - ] - ], - {} - ] - ], - "li-value-reversed-006d.html": [ - "4d14d10cc70ae6573fbe96d0f087ccf6ddb721d3", - [ - null, - [ - [ - "/css/css-lists/li-value-reversed-006-ref.html", - "==" - ] - ], - {} - ] - ], - "li-value-reversed-006e.html": [ - "e20a32051a64bc6f47c41f57181ba99f619b8cb5", - [ - null, - [ - [ - "/css/css-lists/li-value-reversed-006-ref.html", - "==" - ] - ], - {} - ] - ], - "li-value-reversed-007a.html": [ - "088ad356720737a671c2ad92e45d082f306ae91e", - [ - null, - [ - [ - "/css/css-lists/li-value-reversed-007-ref.html", - "==" - ] - ], - {} - ] - ], - "li-value-reversed-007b.html": [ - "438316eca7f9c9e6b920deb89ec31c6d87d56df6", - [ - null, - [ - [ - "/css/css-lists/li-value-reversed-007-ref.html", - "==" - ] - ], - {} - ] - ], - "li-value-reversed-008a.html": [ - "0bbddbb975e37b45fc502306901da9d13802ed59", - [ - null, - [ - [ - "/css/css-lists/li-value-reversed-008-ref.html", - "==" - ] - ], - {} - ] - ], - "li-value-reversed-008b.html": [ - "17e81f8189a37eb254364e419523ae042c4a0e25", - [ - null, - [ - [ - "/css/css-lists/li-value-reversed-008-ref.html", - "==" - ] - ], - {} - ] - ], - "li-value-reversed-009a.html": [ - "e0b5e9403c9d991a014a5ee05f815889e78fbe61", - [ - null, - [ - [ - "/css/css-lists/li-value-reversed-009-ref.html", - "==" - ] - ], - {} - ] - ], - "li-value-reversed-009b.html": [ - "c3ee99dbc688ec9c7a308daedfc97f8246b711e3", - [ - null, - [ - [ - "/css/css-lists/li-value-reversed-009-ref.html", - "==" - ] - ], - {} - ] - ], - "li-with-height-001.html": [ - "ad2ac65e179714dd5fb85de6b67a6f097823a507", - [ - null, - [ - [ - "/css/css-lists/li-with-height-001-ref.html", - "==" - ] - ], - {} - ] - ], - "li-with-overflow-hidden-change-list-style-position-001.html": [ - "992ed83cedaa50208a3870707ecbcb18da337bbc", - [ - null, + [ + "/css/css-masking/clip-path-svg-content/reference/clip-path-square-002-ref.svg", + "==" + ] + ], + {} + ] + ], + "clip-path-inset-stroke-002.svg": [ + "bfc60355bac88acc48c1a5b87115a5fced653a55", [ + null, [ - "/css/css-lists/li-with-overflow-hidden-change-list-style-position-001-ref.html", - "==" - ] - ], - {} - ] - ], - "list-and-block-in-inline.html": [ - "165b1cce1e7b5dec19e56f29fe955c7c6b4a31d7", - [ - "css/css-lists/list-and-block-in-inline.html", + [ + "/css/css-masking/clip-path-svg-content/reference/clip-path-square-002-ref.svg", + "==" + ] + ], + {} + ] + ], + "clip-path-invalid-reference.svg": [ + "714d90ee767f0b065dfa6fe2b1a749a6d01d95e4", [ + null, [ - "/css/css-lists/list-and-block-in-inline-ref.html", - "==" - ] - ], - {} - ] - ], - "list-and-flex-001.html": [ - "98ab9c400b683932021d84127438d564b0b49bfc", - [ - null, + [ + "/css/css-masking/clip-path-svg-content/reference/clip-path-green-square-001-ref.svg", + "==" + ] + ], + {} + ] + ], + "clip-path-invalid.svg": [ + "85aa3a825b92d928bd32c197bfc9bdbfa074e0be", [ + null, [ - "/css/css-lists/list-and-flex-001-ref.html", - "==" - ] - ], - {} - ] - ], - "list-and-grid-001.html": [ - "562961d5a98cfc53f6bfc8daa7f912b174eecc73", - [ - null, + [ + "/css/css-masking/clip-path-svg-content/reference/clip-path-invisible-ref.svg", + "==" + ] + ], + {} + ] + ], + "clip-path-negative-scale.svg": [ + "33d6a78c7da959c42339d7e514d2d1611fee2a9e", [ + null, [ - "/css/css-lists/list-and-grid-001-ref.html", - "==" - ] - ], - {} - ] - ], - "list-item-definition.html": [ - "14e351f9ecd34356087fc5ec7361d8e4d9b542e0", - [ - null, + [ + "/css/css-masking/clip-path-svg-content/reference/clip-path-negative-scale-ref.svg", + "==" + ] + ], + {} + ] + ], + "clip-path-no-content-001.svg": [ + "f7943c615d000bd9e8a4f6c0c8d5337e3cd273cb", [ + null, [ - "/css/css-lists/list-item-definition-ref.html", - "==" - ] - ], - {} - ] - ], - "list-marker-alignment.html": [ - "46f63a6981065fe5fce37e12b5022cda535842f0", - [ - "css/css-lists/list-marker-alignment.html", + [ + "/css/css-masking/clip-path-svg-content/reference/clip-path-invisible-ref.svg", + "==" + ] + ], + {} + ] + ], + "clip-path-no-content-002.svg": [ + "65df6176ac1de4970d97f4c09c667ed9de050a91", [ + null, [ - "/css/css-lists/list-marker-alignment-ref.html", - "==" - ] - ], - {} - ] - ], - "list-marker-symbol-bidi.html": [ - "47e77be8995331180530ae285f1aad85e7c60989", - [ - "css/css-lists/list-marker-symbol-bidi.html", + [ + "/css/css-masking/clip-path-svg-content/reference/clip-path-invisible-ref.svg", + "==" + ] + ], + {} + ] + ], + "clip-path-no-content-003.svg": [ + "afd8f702ed4d19972971fe008db1e4f5c8436efd", [ + null, [ - "/css/css-lists/list-marker-symbol-bidi-ref.html", - "==" - ] - ], - {} - ] - ], - "list-marker-with-lineheight-and-overflow-hidden-001.html": [ - "d78743facb53bf622b217e3118cb7a609faadede", - [ - null, + [ + "/css/css-masking/clip-path-svg-content/reference/clip-path-invisible-ref.svg", + "==" + ] + ], + {} + ] + ], + "clip-path-no-content-004.svg": [ + "92b27af017cba0f0175c9ab6b7495f52e3fdf68c", [ + null, [ - "/css/css-lists/list-marker-with-lineheight-and-overflow-hidden-001-ref.html", - "==" - ] - ], - {} - ] - ], - "list-style-image-gradients-dynamic.html": [ - "eb96fdd444f34b5f3958516e70d8fe7bd5ab0068", - [ - "css/css-lists/list-style-image-gradients-dynamic.html", + [ + "/css/css-masking/clip-path-svg-content/reference/clip-path-invisible-ref.svg", + "==" + ] + ], + {} + ] + ], + "clip-path-no-content-005.svg": [ + "e0c03d28cb0509e31ffb12034a138e0fb9b43da1", [ + null, [ - "/css/css-lists/list-style-image-gradients-dynamic-ref.html", - "==" - ] - ], - {} - ] - ], - "list-style-image-gradients.html": [ - "eb797155643d725e526c17d803f77c2129dda59d", - [ - "css/css-lists/list-style-image-gradients.html", + [ + "/css/css-masking/clip-path-svg-content/reference/clip-path-square-003-ref.svg", + "==" + ] + ], + {} + ] + ], + "clip-path-objectboundingbox-001.svg": [ + "d5ef03ac01166554fa573dda10496e598300c82b", [ + null, [ - "/css/css-lists/list-style-image-gradients-ref.html", - "==" - ] - ], - {} - ] - ], - "list-style-image-zoom-dynamic.html": [ - "d0cd9de0aa74e9de24a19834e173f839c3879421", - [ - null, + [ + "/css/css-masking/clip-path-svg-content/reference/clip-path-square-002-ref.svg", + "==" + ] + ], + {} + ] + ], + "clip-path-objectboundingbox-002.svg": [ + "8180ddf9f85972bd13f573632ba98a649b60c6ad", [ + null, [ - "/css/css-lists/list-style-image-zoom-dynamic-ref.html", - "==" - ] - ], - {} - ] - ], - "list-style-type-decimal-line-height.html": [ - "7aefead82f202dc715b64b2bce9cabde025ac951", - [ - "css/css-lists/list-style-type-decimal-line-height.html", + [ + "/css/css-masking/clip-path-svg-content/reference/clip-path-square-002-ref.svg", + "==" + ] + ], + {} + ] + ], + "clip-path-objectboundingbox-003.svg": [ + "8a7aa0ff5cfdf2520fcaa76a2fb47f7cf3a54dbf", [ + null, [ - "/css/css-lists/list-style-type-decimal-line-height-ref.html", - "==" - ] - ], - {} - ] - ], - "list-style-type-decimal-vertical-lr.html": [ - "56025865c1b570060d91d37e7341693cbf469bc3", - [ - "css/css-lists/list-style-type-decimal-vertical-lr.html", + [ + "/css/css-masking/clip-path-svg-content/reference/clip-path-circle-001-ref.svg", + "==" + ] + ], + {} + ] + ], + "clip-path-objectboundingbox-004.svg": [ + "215d2536183253a89cb647657f370cd79fd45473", [ + null, [ - "/css/css-lists/list-style-type-decimal-vertical-lr-ref.html", - "==" - ] - ], - {} - ] - ], - "list-style-type-decimal-vertical-rl.html": [ - "249d7e44100748a513641c8b53035d0e194bb76a", - [ - "css/css-lists/list-style-type-decimal-vertical-rl.html", + [ + "/css/css-masking/clip-path-svg-content/reference/clip-path-square-002-ref.svg", + "==" + ] + ], + {} + ] + ], + "clip-path-on-g-001.svg": [ + "6d837af68b4d82f3fe2e2921745816d03ac89bf5", [ + null, [ - "/css/css-lists/list-style-type-decimal-vertical-rl-ref.html", - "==" - ] - ], - {} - ] - ], - "list-style-type-string-001a.html": [ - "f7ed6e3b342d6cd259b3df61a5445f83ab39b0f9", - [ - null, + [ + "/css/css-masking/clip-path-svg-content/reference/clip-path-square-002-ref.svg", + "==" + ] + ], + {} + ] + ], + "clip-path-on-g-002.svg": [ + "a14287cbc96d65b4eaec741a857b1201bc5275bb", [ + null, [ - "/css/css-lists/list-style-type-string-001-ref.html", - "==" - ] - ], - {} - ] - ], - "list-style-type-string-001b.html": [ - "f02bf13a73cd0ee025bf3e3d6ae9215feadb12b4", - [ - null, + [ + "/css/css-masking/clip-path-svg-content/reference/clip-path-square-002-ref.svg", + "==" + ] + ], + {} + ] + ], + "clip-path-on-g-003.svg": [ + "b3eead8ac2ab05297fb12c691e846bde20bf72c4", [ + null, [ - "/css/css-lists/list-style-type-string-001-ref.html", - "==" - ] - ], - {} - ] - ], - "list-style-type-string-002.html": [ - "6f00d8ac4fc8a986085e860d6ff0c0ba6aa8c4aa", - [ - null, + [ + "/css/css-masking/clip-path-svg-content/reference/clip-path-square-002-ref.svg", + "==" + ] + ], + {} + ] + ], + "clip-path-on-g-004.svg": [ + "32eaf00369b9e981983b79d1abfc4e2f07c6aafd", [ + null, [ - "/css/css-lists/list-style-type-string-002-ref.html", - "==" - ] - ], - {} - ] - ], - "list-style-type-string-003.html": [ - "94467ca1f21c8807a57b3ecd10a6ba0d86ae5049", - [ - null, + [ + "/css/css-masking/clip-path-svg-content/reference/clip-path-square-002-ref.svg", + "==" + ] + ], + {} + ] + ], + "clip-path-on-g-005.svg": [ + "c621d91c3e92835df5458ff4e0864228a215d33b", [ + null, [ - "/css/css-lists/list-style-type-string-003-ref.html", - "==" - ] - ], - {} - ] - ], - "list-style-type-string-004.html": [ - "922a4ecea8605cb82f2804832c13112ce0071fc2", - [ - null, + [ + "/css/css-masking/clip-path-svg-content/reference/clip-path-square-002-ref.svg", + "==" + ] + ], + {} + ] + ], + "clip-path-on-marker-001.svg": [ + "ae5df003fa908b81081d6ddb0852290e779a74e3", [ + null, [ - "/css/css-lists/list-style-type-string-004-ref.html", - "==" - ] - ], - {} - ] - ], - "list-style-type-string-005a.html": [ - "725cdee1a83555dbb891a5815e7f69f7430428c3", - [ - null, + [ + "/css/css-masking/clip-path-svg-content/reference/clip-path-on-marker-001-ref.svg", + "==" + ] + ], + {} + ] + ], + "clip-path-on-marker-002.svg": [ + "4f2ffa4c7a4f0069ca8f709e640038c57d5b1139", [ + null, [ - "/css/css-lists/list-style-type-string-005-ref.html", - "==" - ] - ], - {} - ] - ], - "list-style-type-string-005b.html": [ - "ca984b6d3be4a75e0b192da6bb9138cb1c600137", - [ - null, + [ + "/css/css-masking/clip-path-svg-content/reference/clip-path-on-marker-002-ref.svg", + "==" + ] + ], + {} + ] + ], + "clip-path-on-marker-003.svg": [ + "45fc0fbd37dcc9e4d346b79b38d190cae3f691b1", [ + null, [ - "/css/css-lists/list-style-type-string-005-ref.html", - "==" - ] - ], - {} - ] - ], - "list-style-type-string-006.html": [ - "7f6904b777f9a76fa405c36b58148bfb521523a1", - [ - null, + [ + "/css/css-masking/clip-path-svg-content/reference/clip-path-on-marker-001-ref.svg", + "==" + ] + ], + {} + ] + ], + "clip-path-on-svg-001.svg": [ + "e92ce1d10fb229d5441032a55ce90d1cade03cfe", [ + null, [ - "/css/css-lists/list-style-type-string-006-ref.html", - "==" - ] - ], - {} - ] - ], - "list-style-type-string-007.html": [ - "55c883ff4c377b33660f4b45cdbc73c886d6081d", - [ - null, + [ + "/css/css-masking/clip-path-svg-content/reference/clip-path-square-002-ref.svg", + "==" + ] + ], + {} + ] + ], + "clip-path-on-svg-002.svg": [ + "94067d4ba32c1da540fed3c5ccf5d77d9b26d3d5", [ + null, [ - "/css/css-lists/list-style-type-string-007-ref.html", - "==" - ] - ], - {} - ] - ], - "list-type-none-style-image.html": [ - "6b7b83afc38b2395f5725a64fc40053b6d0b6859", - [ - null, + [ + "/css/css-masking/clip-path-svg-content/reference/clip-path-square-002-ref.svg", + "==" + ] + ], + {} + ] + ], + "clip-path-on-svg-003.svg": [ + "01c4a2610e8cde9e8400fbc2a023ab936babd3ad", [ + null, [ - "/css/css-lists/list-type-none-style-image-ref.html", - "==" - ] - ], - {} - ] - ], - "list-with-image-display-changed-001.html": [ - "d4b3e300f8ea5011249e433b925a9a8f32e8c935", - [ - null, + [ + "/css/css-masking/clip-path-svg-content/reference/clip-path-square-002-ref.svg", + "==" + ] + ], + {} + ] + ], + "clip-path-on-svg-004.svg": [ + "62a020e558676f533add52c8de80518eb54e6041", [ + null, [ - "/css/css-lists/list-with-image-display-changed-001-ref.html", - "==" - ] - ], - {} - ] - ], - "marker-dynamic-content-change.html": [ - "31abb16cdc276e54e1059277ce9a6a0ec417ade8", - [ - null, + [ + "/css/css-masking/clip-path-svg-content/reference/clip-path-square-002-ref.svg", + "==" + ] + ], + {} + ] + ], + "clip-path-on-svg-005.svg": [ + "c39d2660280826b6ec2f579d011df3cc2a7f5572", [ + null, [ - "/css/css-lists/marker-dynamic-content-change-ref.html", - "==" - ] - ], - {} - ] - ], - "marker-webkit-text-fill-color.html": [ - "4ed97362ccc6e93ad929d1dd1427d006b3f819de", - [ - "css/css-lists/marker-webkit-text-fill-color.html", + [ + "/css/css-masking/clip-path-svg-content/reference/clip-path-square-002-ref.svg", + "==" + ] + ], + {} + ] + ], + "clip-path-on-use-001.svg": [ + "8a2cf81c51de6f62d498c3d2e4cfe7a50113a0f1", [ + null, [ - "/css/css-lists/marker-webkit-text-fill-color-ref.html", - "==" - ] - ], - {} - ] - ], - "nested-marker-dynamic.html": [ - "fdfb93dc6149055be4611d85fb9705bcafe5c3a5", - [ - null, + [ + "/css/css-masking/clip-path-svg-content/reference/clip-path-square-002-ref.svg", + "==" + ] + ], + {} + ] + ], + "clip-path-on-use-002.svg": [ + "22e5ab71515aac51509cd5efe21a4863dc83303c", [ + null, [ - "/css/css-lists/nested-marker-ref.html", - "==" - ] - ], - {} - ] - ], - "nested-marker.html": [ - "9627ce936ae570325b430a1ac673cd66ae7d4252", - [ - null, + [ + "/css/css-masking/clip-path-svg-content/reference/clip-path-square-002-ref.svg", + "==" + ] + ], + {} + ] + ], + "clip-path-precision-001.svg": [ + "aa8e5ba7e1586f5dd5db7f5520648681bdfcbb96", [ + null, [ - "/css/css-lists/nested-marker-ref.html", - "==" - ] - ], - {} - ] - ], - "ol-change-display-type.html": [ - "e711cfef5ddfd0d85914ce166f774a2ec1480f05", - [ - null, + [ + "/css/css-masking/clip-path-svg-content/reference/clip-path-precision-001-ref.svg", + "==" + ] + ], + {} + ] + ], + "clip-path-recursion-001.svg": [ + "5d4b7c2710821f9f4c9902aec12b33b520ed3aa1", [ + null, [ - "/css/css-lists/ol-change-display-type-ref.html", - "==" - ] - ], - {} - ] - ] - }, - "css-logical": { - "cascading-001.html": [ - "61399a833069b50364a4c6e6a31bf421bcf5ae15", - [ - null, + [ + "/css/css-masking/clip-path-svg-content/reference/clip-path-invisible-ref.svg", + "==" + ] + ], + {} + ] + ], + "clip-path-recursion-002.svg": [ + "7d921ee67d4417f8e510e2793c678bca4235adf7", [ + null, [ - "/css/css-logical/cascading-001-ref.html", - "==" - ] - ], - {} - ] - ], - "logical-values-float-clear-1.html": [ - "d7f37fffddc918c89cdf3f1f87fd0c1305cf0533", - [ - null, + [ + "/css/css-masking/clip-path-svg-content/reference/clip-path-recursion-002-ref.svg", + "==" + ] + ], + {} + ] + ], + "clip-path-shape-circle-001.svg": [ + "873947943ccbe5c6e9686e1e39e6c0706cdb586c", [ + null, [ - "/css/css-logical/reference/logical-values-float-clear-1-ref.html", - "==" - ] - ], - {} - ] - ], - "logical-values-float-clear-2.html": [ - "f5af837595311efc9c5843f1021d1aa5ec049f20", - [ - null, + [ + "/css/css-masking/clip-path-svg-content/reference/clip-path-circle-001-ref.svg", + "==" + ] + ], + {} + ] + ], + "clip-path-shape-circle-002.svg": [ + "dca307dd91f4d46ac3bd04d1978d5502ef391f90", [ + null, [ - "/css/css-logical/reference/logical-values-float-clear-2-ref.html", - "==" - ] - ], - {} - ] - ], - "logical-values-float-clear-3.html": [ - "b49711b7b2b83f7bb518358b97432b3015e495cf", - [ - null, + [ + "/css/css-masking/clip-path-svg-content/reference/clip-path-circle-001-ref.svg", + "==" + ] + ], + {} + ] + ], + "clip-path-shape-circle-003.svg": [ + "804e1e920a6930d8383dde596b6834cc31b574cb", [ + null, [ - "/css/css-logical/reference/logical-values-float-clear-3-ref.html", - "==" - ] - ], - {} - ] - ], - "logical-values-float-clear-4.html": [ - "d585d38bf3af71a78313f01ccaa8a87dce8bb9d0", - [ - null, + [ + "/css/css-masking/clip-path-svg-content/reference/clip-path-circle-001-ref.svg", + "==" + ] + ], + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 70 + ], + [ + 0, + 210 + ] + ] + ] + ] + } + ] + ], + "clip-path-shape-circle-004.svg": [ + "83f7eec4feca7c0aedad66e1cda194bbf1db64c2", [ + null, [ - "/css/css-logical/reference/logical-values-float-clear-4-ref.html", - "==" - ] - ], - {} - ] - ], - "logical-values-float-clear-reftest.html": [ - "c0fe9a52bc4acc02f7a1df96d2af9c526d3e4430", - [ - null, + [ + "/css/css-masking/clip-path-svg-content/reference/clip-path-circle-001-ref.svg", + "==" + ] + ], + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 64 + ], + [ + 0, + 376 + ] + ] + ] + ] + } + ] + ], + "clip-path-shape-circle-005.svg": [ + "90a57e7c155fae66f6abc44fad95d7bdd7d98797", [ + null, [ - "/css/css-logical/reference/logical-values-float-clear-reftest-ref.html", - "==" - ] - ], - {} - ] - ] - }, - "css-masking": { - "clip": { - "clip-absolute-positioned-001.html": [ - "c5b0d9001c442012aea33142d47ca1a8d68e319e", + [ + "/css/css-masking/clip-path-svg-content/reference/clip-path-circle-001-ref.svg", + "==" + ] + ], + {} + ] + ], + "clip-path-shape-ellipse-001.svg": [ + "511a197644c7ec1c159eba5b3eb6ce7e9bf39a05", [ null, [ [ - "/css/css-masking/clip/reference/clip-absolute-positioned-ref.html", + "/css/css-masking/clip-path-svg-content/reference/clip-path-ellipse-001-ref.svg", "==" ] ], {} ] ], - "clip-absolute-positioned-002.html": [ - "53b2517a2726166fecc3f274760724b9962ac746", + "clip-path-shape-ellipse-002.svg": [ + "08bdc3e19edb189a239d29e2436b43ca6ed03201", [ null, [ [ - "/css/css-masking/clip/reference/clip-absolute-positioned-ref.html", + "/css/css-masking/clip-path-svg-content/reference/clip-path-ellipse-001-ref.svg", "==" ] ], {} ] ], - "clip-filter-order.html": [ - "0570d02b85ec9710d1b201ad44d12801e3db2758", + "clip-path-shape-inset-001.svg": [ + "bc8a4d810edf35dc37577cfba606ea4e5ab455d2", [ null, [ [ - "/css/css-masking/clip/clip-filter-order-ref.html", + "/css/css-masking/clip-path-svg-content/reference/clip-path-shape-inset-001-ref.svg", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 50 + ], + [ + 0, + 200 + ] + ] + ] + ] + } ] ], - "clip-fixed-pos-transform-descendant-001.html": [ - "395b0bc96456080f4216cf4fd556ddfef1fd3e75", + "clip-path-shape-inset-002.svg": [ + "5e5b18990598e3ee43bad3aefeec57768679a153", [ null, [ [ - "/css/css-masking/clip/clip-fixed-pos-transform-descendant-001-ref.html", + "/css/css-masking/clip-path-svg-content/reference/clip-path-shape-inset-001-ref.svg", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 50 + ], + [ + 0, + 200 + ] + ] + ] + ] + } ] ], - "clip-negative-values-001.html": [ - "b295c89ba37b11e9f6fd814ac0bfcea04d2312e5", + "clip-path-shape-polygon-001.svg": [ + "f474b1264d59aee303935917039365456adcae52", [ null, [ [ - "/css/css-masking/clip/reference/clip-full-ref.html", + "/css/css-masking/clip-path-svg-content/reference/clip-path-square-001-ref.svg", "==" ] ], {} ] ], - "clip-negative-values-002.html": [ - "dd92e5b7748da712c2ff474ff2e6c903913f08f9", + "clip-path-shape-polygon-002.svg": [ + "0fd8b1bec186e3bf68805d8e27757c8c4949256a", [ null, [ [ - "/css/css-masking/clip/reference/clip-full-ref.html", + "/css/css-masking/clip-path-svg-content/reference/clip-path-square-hole-001-ref.svg", "==" ] ], {} ] ], - "clip-negative-values-003.html": [ - "5118135345bbd14f9002c29ddbc32e2369bfae9d", + "clip-path-shape-polygon-003.svg": [ + "91ee3d05767d975f8443d752e984cdfb71c88a40", [ null, [ [ - "/css/css-masking/clip/reference/clip-vertical-stripe-ref.html", + "/css/css-masking/clip-path-svg-content/reference/clip-path-square-001-ref.svg", "==" ] ], {} ] ], - "clip-negative-values-004.html": [ - "1fb5add9da0b949994c1d70e130430c5cb112af1", + "clip-path-text-001.svg": [ + "6d850b993a66cf5cbff33e34703f8252c5f49db5", [ null, [ [ - "/css/css-masking/clip/reference/clip-horizontal-stripe-ref.html", + "/css/css-masking/clip-path-svg-content/reference/clip-path-text-001-ref.svg", "==" ] ], {} ] ], - "clip-no-clipping-001.html": [ - "3a63c2ca71fd1d857f7ce4adc71df94d9bad15e8", + "clip-path-text-002.svg": [ + "f40d13c40d4e0cf07ef9dfd8a8a6aa15d89f90ba", [ null, [ [ - "/css/css-masking/clip/reference/clip-no-clipping-ref.html", + "/css/css-masking/clip-path-svg-content/reference/clip-path-text-001-ref.svg", "==" ] ], {} ] ], - "clip-no-clipping-002.html": [ - "a09e6a0a85da2c713c8c2b26680459360dfb62df", + "clip-path-text-003.svg": [ + "7a5e9e7d82c99b161c8b6e175dc6b1030bf2c611", [ null, [ [ - "/css/css-masking/clip/reference/clip-no-clipping-ref.html", + "/css/css-masking/clip-path-svg-content/reference/clip-path-text-002-ref.svg", "==" ] ], {} ] ], - "clip-no-stacking-context.html": [ - "cbd07ee638082480ccb33285fa63c4fe347bedba", + "clip-path-text-004.svg": [ + "2389320677d8b7c725892e32fa1060fd33d50766", [ null, [ [ - "/css/css-masking/clip/clip-no-stacking-context-ref.html", + "/css/css-masking/clip-path-svg-content/reference/clip-path-text-001-ref.svg", "==" ] ], {} ] ], - "clip-not-absolute-positioned-001.html": [ - "613f6afebc4a53b6b5b6019cabeb0fab4460b894", + "clip-path-text-005.svg": [ + "487e2fead873755404790926938c8bd39ff64d9b", [ null, [ [ - "/css/css-masking/clip/reference/clip-no-clipping-ref.html", + "/css/css-masking/clip-path-svg-content/reference/clip-path-text-003-ref.svg", "==" ] ], {} ] ], - "clip-not-absolute-positioned-002.html": [ - "4d071323f07f4623554dc26c43d3e1081e4eb9ca", + "clip-path-userspaceonuse-001.svg": [ + "1a3d769089976e0251a1fca260e3feda91019d5b", [ null, [ [ - "/css/css-masking/clip/reference/clip-no-clipping-ref.html", + "/css/css-masking/clip-path-svg-content/reference/clip-path-square-002-ref.svg", "==" ] ], {} ] ], - "clip-not-absolute-positioned-003.html": [ - "ee3765db7aca5db4d569fdc7b40dcdc633c679a9", + "clip-path-with-opacity.svg": [ + "ac944beaff9f88212a389e5059885f98beecabbd", [ null, [ [ - "/css/css-masking/clip/reference/clip-no-clipping-ref.html", + "/css/css-masking/clip-path-svg-content/reference/clip-path-square-002-ref.svg", "==" ] ], {} ] ], - "clip-not-absolute-positioned-004.html": [ - "56825d10f67f53675397ddbb52bfbc32c25678be", + "clip-path-with-transform.svg": [ + "b3c3b25d509fdd15115655dd48766e86434d146a", [ null, [ [ - "/css/css-masking/clip/reference/clip-no-clipping-ref.html", + "/css/css-masking/clip-path-svg-content/reference/clip-path-square-002-ref.svg", "==" ] ], {} ] ], - "clip-rect-auto-001.html": [ - "6a1a064059b7732167bc8c0d842a1dea15aca658", + "mask-and-nested-clip-path.svg": [ + "725f9557523d2c7c84bc6ba591044603ab3a56fb", [ null, [ [ - "/css/css-masking/clip/reference/clip-overflow-hidden-ref.html", + "/css/css-masking/clip-path-svg-content/reference/mask-and-nested-clip-path-ref.svg", "==" ] ], {} ] ], - "clip-rect-auto-002.html": [ - "0ee45183b827e3138581b59326db6e28ce314fb3", + "mask-nested-clip-path-001.svg": [ + "0dc0f7c0f2e38e8aea52a1a3e84a0ae4b35c6829", [ null, [ [ - "/css/css-masking/clip/reference/clip-no-clipping-ref.html", + "/css/css-masking/clip-path-svg-content/reference/mask-nested-clip-path-001-ref.svg", "==" ] ], {} ] ], - "clip-rect-auto-003.html": [ - "5f12ae4863671e53fcb6bc2900f860ef305cef9e", + "mask-nested-clip-path-002.svg": [ + "2e611feb8b8a4fadf1cd37c5f597086f32000bdb", [ null, [ [ - "/css/css-masking/clip/reference/clip-rect-top-ref.html", + "/css/css-masking/clip-path-svg-content/reference/mask-nested-clip-path-001-ref.svg", "==" ] ], {} ] ], - "clip-rect-auto-004.html": [ - "d5d5ce9b316d1be5f30bc050a775f381aad5ffa9", + "mask-nested-clip-path-003.svg": [ + "622125318c353a060f5204caa7d518cc63665d9d", [ null, [ [ - "/css/css-masking/clip/reference/clip-rect-right-ref.html", + "/css/css-masking/clip-path-svg-content/reference/mask-nested-clip-path-001-ref.svg", "==" ] ], {} ] ], - "clip-rect-auto-005.html": [ - "b2b3b13a49c9b760ffd24488de1c9823d91fd2e1", + "mask-nested-clip-path-004.svg": [ + "66bb3b7ea44b8bfd80f4184276f7e5627d76ba66", [ null, [ [ - "/css/css-masking/clip/reference/clip-rect-bottom-ref.html", + "/css/css-masking/clip-path-svg-content/reference/mask-nested-clip-path-001-ref.svg", "==" ] ], {} ] ], - "clip-rect-auto-006.html": [ - "410b93d28b351e34e1498697d47a8eb243c28b1c", + "mask-nested-clip-path-005.svg": [ + "9317ce4ed0736d26c7bb13ada6ce0d813b29fecd", [ null, [ [ - "/css/css-masking/clip/reference/clip-rect-left-ref.html", + "/css/css-masking/clip-path-svg-content/reference/mask-nested-clip-path-002-ref.svg", "==" ] ], {} ] ], - "clip-rect-comma-001.html": [ - "d15b324a4fbc7fe647f7f4b064246bec722740c2", + "mask-nested-clip-path-006.svg": [ + "6ab2a20f4bd8e0274864f1e8211efea986a00674", [ null, [ [ - "/css/css-masking/clip/reference/clip-absolute-positioned-ref.html", + "/css/css-masking/clip-path-svg-content/reference/mask-nested-clip-path-002-ref.svg", "==" ] ], {} ] ], - "clip-rect-comma-002.html": [ - "aad2aebe6739273185982ae4ac96876e40e45422", + "mask-nested-clip-path-007.svg": [ + "27f372494f6c0d3d8ea1cb7358d7785ca077643b", [ null, [ [ - "/css/css-masking/clip/reference/clip-no-clipping-ref.html", + "/css/css-masking/clip-path-svg-content/reference/mask-nested-clip-path-001-ref.svg", "==" ] ], {} ] ], - "clip-rect-comma-003.html": [ - "875e97173eced25d0c274554bd416e0de6a1dece", + "mask-nested-clip-path-008.svg": [ + "b3f33e199961028072dd6079d782be2650e222eb", [ null, [ [ - "/css/css-masking/clip/reference/clip-no-clipping-ref.html", + "/css/css-masking/clip-path-svg-content/reference/mask-nested-clip-path-001-ref.svg", "==" ] ], {} ] ], - "clip-rect-comma-004.html": [ - "2a8b9305dfe7c7c1b4d971e1de2f6b6e508e8e65", + "mask-nested-clip-path-009.svg": [ + "955edd3389fa4a8682ccdcc1b6b518e9ba05dd6c", [ null, [ [ - "/css/css-masking/clip/reference/clip-no-clipping-ref.html", + "/css/css-masking/clip-path-svg-content/reference/mask-nested-clip-path-002-ref.svg", "==" ] ], {} ] ], - "clip-rect-scroll.html": [ - "0c84ee299a26d7631652c264dc57ee98963f90db", + "mask-nested-clip-path-010.svg": [ + "dc1040e51de157f47c0b768f9fb0261d76305c16", [ null, [ [ - "/css/css-masking/clip/reference/clip-rect-scroll-ref.html", + "/css/css-masking/clip-path-svg-content/reference/mask-nested-clip-path-003-ref.svg", "==" ] ], {} ] ], - "clip-transform-order-2.html": [ - "bd8e909d76d877c37effc2d54a3fb26f3a836736", + "mask-nested-clip-path-panning-001.svg": [ + "16890a5859d8971323c1fa1b7c3da70a17e5895d", [ null, [ [ - "/css/css-masking/clip/clip-filter-order-ref.html", + "/css/css-masking/clip-path-svg-content/reference/mask-nested-clip-path-001-ref.svg", "==" ] ], {} ] ], - "clip-transform-order.html": [ - "1f24864bc96507405c534af1d2648c3f7ec17c16", + "mask-nested-clip-path-panning-002.svg": [ + "e5e426789fc8f5eb7fc7648bcab6d0b866605862", [ null, [ [ - "/css/css-masking/clip/clip-filter-order-ref.html", + "/css/css-masking/clip-path-svg-content/reference/mask-nested-clip-path-001-ref.svg", "==" ] ], {} ] - ] - }, - "clip-path": { - "animations": { - "clip-path-animation-custom-timing-function-reverse.html": [ - "5346a4c22421cafde7691356c67b896f22392f76", + ], + "mask-objectboundingbox-content-clip-transform.svg": [ + "397f56d19023f850b15dfe41797ad74dd24a17cc", + [ + null, [ - "css/css-masking/clip-path/animations/clip-path-animation-custom-timing-function-reverse.html", [ + "/css/css-masking/clip-path-svg-content/reference/mask-content-clip-002-ref.svg", + "==" + ] + ], + { + "fuzzy": [ [ - "/css/css-masking/clip-path/animations/clip-path-animation-custom-timing-function-reverse-ref.html", - "==" - ] - ], - { - "fuzzy": [ + null, [ - null, [ - [ - 0, - 20 - ], - [ - 0, - 692 - ] + 0, + 38 + ], + [ + 0, + 268 ] ] ] - } - ] - ], - "clip-path-animation-custom-timing-function.html": [ - "4dbf3a44a9436b8b04751c2ce881ab673febbe55", + ] + } + ] + ], + "mask-objectboundingbox-content-clip.svg": [ + "c87fedec4f88eb0df0e3ef72d1095c8626970328", + [ + null, [ - "css/css-masking/clip-path/animations/clip-path-animation-custom-timing-function.html", [ + "/css/css-masking/clip-path-svg-content/reference/mask-content-clip-001-ref.svg", + "==" + ] + ], + { + "fuzzy": [ [ - "/css/css-masking/clip-path/animations/clip-path-animation-custom-timing-function-ref.html", - "==" - ] - ], - { - "fuzzy": [ + null, [ - null, [ - [ - 0, - 2 - ], - [ - 0, - 320 - ] + 0, + 38 + ], + [ + 0, + 376 ] ] ] - } - ] - ], - "clip-path-animation-ellipse-mixed-change.html": [ - "e42d3ee08ed599b72be97e078b296b8f49f22e2c", - [ - "css/css-masking/clip-path/animations/clip-path-animation-ellipse-mixed-change.html", - [ - [ - "/css/css-masking/clip-path/animations/clip-path-animation-ellipse-ref.html", - "==" - ] - ], - {} - ] - ], - "clip-path-animation-ellipse.html": [ - "1c7c90ee844551c878b2ac2dd9453cdef92fb49f", - [ - "css/css-masking/clip-path/animations/clip-path-animation-ellipse.html", - [ - [ - "/css/css-masking/clip-path/animations/clip-path-animation-ellipse-ref.html", - "==" - ] - ], - {} - ] - ], - "clip-path-animation-ensure-keyframe-update.html": [ - "a20595ead8766ed463868d8d9469689cf371c2ec", - [ - "css/css-masking/clip-path/animations/clip-path-animation-ensure-keyframe-update.html", - [ - [ - "/css/css-masking/clip-path/animations/clip-path-animation-ref.html", - "==" - ] - ], - {} - ] - ], - "clip-path-animation-filter.html": [ - "a9809cbc30b5ca53fc464a125af9bdaeaeef9c60", + ] + } + ] + ], + "mask-userspaceonuse-content-clip-transform.svg": [ + "624084a07bcd0a177c94bc7e1c1114df1771a808", + [ + null, [ - "css/css-masking/clip-path/animations/clip-path-animation-filter.html", [ + "/css/css-masking/clip-path-svg-content/reference/mask-content-clip-002-ref.svg", + "==" + ] + ], + { + "fuzzy": [ [ - "/css/css-masking/clip-path/animations/clip-path-animation-filter-ref.html", - "==" - ] - ], - { - "fuzzy": [ + null, [ - null, [ - [ - 0, - 10 - ], - [ - 0, - 151 - ] + 0, + 38 + ], + [ + 0, + 268 ] ] ] - } - ] - ], - "clip-path-animation-fixed-position-rounding-error.html": [ - "8a02a5b2a6d6635c2b13633ae62e296704c962a6", + ] + } + ] + ], + "mask-userspaceonuse-content-clip.svg": [ + "f1bfbdda58320b1007d937ad74c6c85d2c721174", + [ + null, [ - "css/css-masking/clip-path/animations/clip-path-animation-fixed-position-rounding-error.html", [ - [ - "/css/css-masking/clip-path/animations/clip-path-animation-fixed-position-rounding-error-ref.html", - "==" - ] - ], - {} - ] - ], - "clip-path-animation-fixed-position.html": [ - "3ffc2a30a7f3b31ba7c5a8f5f8c0f3d727ffd9f3", - [ - "css/css-masking/clip-path/animations/clip-path-animation-fixed-position.html", - [ - [ - "/css/css-masking/clip-path/animations/clip-path-animation-fixed-position-ref.html", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 10 - ], - [ - 0, - 150 - ] - ] - ] - ] - } - ] - ], - "clip-path-animation-font-size-inherited.html": [ - "6836af5a2953611798e7b4c5a80b7a4b66ee6c78", - [ - "css/css-masking/clip-path/animations/clip-path-animation-font-size-inherited.html", - [ - [ - "/css/css-masking/clip-path/animations/clip-path-animation-font-size-ref.html", - "==" - ] - ], - {} - ] - ], - "clip-path-animation-font-size-mixed-change.html": [ - "9e24aa905c2c4ba2e77d8d5ce686ddcbc57a01ad", - [ - "css/css-masking/clip-path/animations/clip-path-animation-font-size-mixed-change.html", - [ - [ - "/css/css-masking/clip-path/animations/clip-path-animation-font-size-ref.html", - "==" - ] - ], - {} - ] - ], - "clip-path-animation-font-size.html": [ - "00563305e54267948fc23e441420008760c26637", - [ - "css/css-masking/clip-path/animations/clip-path-animation-font-size.html", - [ - [ - "/css/css-masking/clip-path/animations/clip-path-animation-font-size-ref.html", - "==" - ] - ], - {} - ] - ], - "clip-path-animation-forward-fill.html": [ - "708896882822109bed14fd3c4fb9f977f28c3a1b", - [ - "css/css-masking/clip-path/animations/clip-path-animation-forward-fill.html", - [ - [ - "/css/css-masking/clip-path/animations/clip-path-animation-ref.html", - "==" - ] - ], - {} - ] - ], - "clip-path-animation-fragmented.html": [ - "9f68c238faf2ee2d04940e2f65d303bf94444595", - [ - "css/css-masking/clip-path/animations/clip-path-animation-fragmented.html", - [ - [ - "/css/css-masking/clip-path/animations/clip-path-animation-fragmented-ref.html", - "==" - ] - ], - {} - ] - ], - "clip-path-animation-incompatible-shapes1.html": [ - "88c6862aa9ede58f0d2d0b384f2454ed6130c86f", - [ - "css/css-masking/clip-path/animations/clip-path-animation-incompatible-shapes1.html", - [ - [ - "/css/css-masking/clip-path/animations/clip-path-animation-incompatible-shapes1-ref.html", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 255 - ], - [ - 0, - 2 - ] - ] - ] - ] - } - ] - ], - "clip-path-animation-incompatible-shapes2.html": [ - "f2aa4964adc3804fce64f07d6e355aa083ff7660", - [ - "css/css-masking/clip-path/animations/clip-path-animation-incompatible-shapes2.html", - [ - [ - "/css/css-masking/clip-path/animations/clip-path-animation-incompatible-shapes2-ref.html", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 255 - ], - [ - 0, - 300 - ] - ] - ] - ] - } - ] - ], - "clip-path-animation-missing-0-percent.html": [ - "4d4fee1b5b6b11ea0e3efd91dc0028dd3df78d7d", - [ - null, - [ - [ - "/css/css-masking/clip-path/animations/clip-path-animation-missing-0-percent-ref.html", - "==" - ] - ], - {} - ] - ], - "clip-path-animation-mixed-interpolation.html": [ - "016f892f95ba8e44d3c25f02ec99508b0e4ad43e", - [ - "css/css-masking/clip-path/animations/clip-path-animation-mixed-interpolation.html", - [ - [ - "/css/css-masking/clip-path/animations/clip-path-animation-ref.html", - "==" - ] - ], - {} - ] - ], - "clip-path-animation-non-keyframe-timing-function.html": [ - "9e4eb019430fc9acc63414c1d7c0070ec2fcdc67", - [ - null, - [ - [ - "/css/css-masking/clip-path/animations/clip-path-animation-non-keyframe-timing-function-ref.html", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 5 - ], - [ - 0, - 5 - ] - ] - ] - ] - } - ] - ], - "clip-path-animation-none.html": [ - "3efb593b72bf89af5247c7ec9079fd7d2636d664", - [ - "css/css-masking/clip-path/animations/clip-path-animation-none.html", - [ - [ - "/css/css-masking/clip-path/animations/clip-path-animation-none-ref.html", - "==" - ] - ], - {} - ] - ], - "clip-path-animation-overflow.html": [ - "fc8c78efbf6a9c46d0b0e4d2585bc358477a6df9", - [ - "css/css-masking/clip-path/animations/clip-path-animation-overflow.html", - [ - [ - "/css/css-masking/clip-path/animations/clip-path-animation-overflow-ref.html", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 255 - ], - [ - 0, - 800 - ] - ] - ] - ] - } - ] - ], - "clip-path-animation-path.html": [ - "20400ba5ece395864e96ce095918f562b415566e", - [ - "css/css-masking/clip-path/animations/clip-path-animation-path.html", - [ - [ - "/css/css-masking/clip-path/animations/clip-path-animation-path-ref.html", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 10 - ], - [ - 0, - 200 - ] - ] - ] - ] - } - ] - ], - "clip-path-animation-polygon-mixed-change.html": [ - "569c0af66ae3ae66ddcc185392ad66e488fdffca", - [ - "css/css-masking/clip-path/animations/clip-path-animation-polygon-mixed-change.html", - [ - [ - "/css/css-masking/clip-path/animations/clip-path-animation-polygon-ref.html", - "==" - ] - ], - {} - ] - ], - "clip-path-animation-polygon.html": [ - "1a9d0cc168879dfba969cc534dd7b3d9edba7c47", - [ - "css/css-masking/clip-path/animations/clip-path-animation-polygon.html", - [ - [ - "/css/css-masking/clip-path/animations/clip-path-animation-polygon-ref.html", - "==" - ] - ], - {} - ] - ], - "clip-path-animation-svg-zoom.html": [ - "f7be6d25324ce92e6bf56921fffb3eeec27cfd98", - [ - "css/css-masking/clip-path/animations/clip-path-animation-svg-zoom.html", - [ - [ - "/css/css-masking/clip-path/animations/clip-path-animation-svg-zoom-ref.html", - "==" - ] - ], - {} - ] - ], - "clip-path-animation-svg.html": [ - "5318355585c938b3c494118cb0bcf8af00fc0b4c", - [ - "css/css-masking/clip-path/animations/clip-path-animation-svg.html", - [ - [ - "/css/css-masking/clip-path/animations/clip-path-animation-svg-ref.html", - "==" - ] - ], - {} - ] - ], - "clip-path-animation-three-keyframes1.html": [ - "61e24e6208b3a3c522240d0699883cc44efcbbfe", - [ - "css/css-masking/clip-path/animations/clip-path-animation-three-keyframes1.html", - [ - [ - "/css/css-masking/clip-path/animations/clip-path-animation-three-keyframes1-ref.html", - "==" - ] - ], - {} - ] - ], - "clip-path-animation-three-keyframes2.html": [ - "b70c136c32622f8f863c9fc3acb02766e113dbbc", - [ - "css/css-masking/clip-path/animations/clip-path-animation-three-keyframes2.html", - [ - [ - "/css/css-masking/clip-path/animations/clip-path-animation-three-keyframes2-ref.html", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 255 - ], - [ - 0, - 1000 - ] - ] - ] - ] - } - ] - ], - "clip-path-animation-zoom.html": [ - "89641240f67bfd468a260bda514ec9b91914ff0d", - [ - "css/css-masking/clip-path/animations/clip-path-animation-zoom.html", - [ - [ - "/css/css-masking/clip-path/animations/clip-path-animation-zoom-ref.html", - "==" - ] - ], - {} - ] - ], - "clip-path-animation.html": [ - "307d972ef63d97077f8bedee9b52e121592c265e", - [ - "css/css-masking/clip-path/animations/clip-path-animation.html", - [ - [ - "/css/css-masking/clip-path/animations/clip-path-animation-ref.html", - "==" - ] - ], - {} - ] - ], - "clip-path-path-interpolation-001.html": [ - "0c988e090e6b5775242208909b51e7dc83876664", - [ - "css/css-masking/clip-path/animations/clip-path-path-interpolation-001.html", - [ - [ - "/css/css-masking/clip-path/animations/clip-path-path-interpolation-001-ref.html", - "==" - ] - ], - {} - ] - ], - "clip-path-path-interpolation-002.html": [ - "4c1c485f7f814d6849b3dc41b0a1d2f0295068e3", - [ - "css/css-masking/clip-path/animations/clip-path-path-interpolation-002.html", - [ - [ - "/css/css-masking/clip-path/animations/clip-path-path-interpolation-002-ref.html", - "==" - ] - ], - {} - ] - ], - "clip-path-path-interpolation-with-zoom.html": [ - "50dc5e6f4e75cf8a1abfb5a972d94e6db23fa8c9", - [ - "css/css-masking/clip-path/animations/clip-path-path-interpolation-with-zoom.html", - [ - [ - "/css/css-masking/clip-path/animations/clip-path-path-interpolation-with-zoom-ref.html", - "==" - ] - ], - {} - ] - ], - "clip-path-rect-interpolation-001.html": [ - "f204fb953ad41e469c245e2f378335c4f1572efb", - [ - "css/css-masking/clip-path/animations/clip-path-rect-interpolation-001.html", - [ - [ - "/css/css-masking/clip-path/animations/clip-path-xywh-interpolation-001-ref.html", - "==" - ] - ], - {} - ] - ], - "clip-path-shape-interpolation-001.html": [ - "dae7f24d37cb39b34728664a2d854dfd53bc8c48", - [ - "css/css-masking/clip-path/animations/clip-path-shape-interpolation-001.html", - [ - [ - "/css/css-masking/clip-path/animations/clip-path-path-interpolation-001-ref.html", - "==" - ] - ], - {} - ] - ], - "clip-path-shape-interpolation-002.html": [ - "6af23c37d6b7bb4ed6780769be720d446f30fc2b", - [ - "css/css-masking/clip-path/animations/clip-path-shape-interpolation-002.html", - [ - [ - "/css/css-masking/clip-path/animations/clip-path-path-interpolation-002-ref.html", - "==" - ] - ], - {} - ] - ], - "clip-path-transition-custom-timing-function.html": [ - "f8bf6e08fe887af8de59af686b818aa00784a994", - [ - "css/css-masking/clip-path/animations/clip-path-transition-custom-timing-function.html", - [ - [ - "/css/css-masking/clip-path/animations/clip-path-animation-custom-timing-function-ref.html", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 4 - ], - [ - 0, - 628 - ] - ] - ] - ] - } - ] - ], - "clip-path-transition.html": [ - "980f7a53e2e86001b5da911c07b3f465845f3735", - [ - "css/css-masking/clip-path/animations/clip-path-transition.html", - [ - [ - "/css/css-masking/clip-path/animations/clip-path-transition-ref.html", - "==" - ] - ], - {} - ] - ], - "clip-path-xywh-interpolation-001.html": [ - "853195aa27c56d610c8f8737ff452de2f7087e51", - [ - "css/css-masking/clip-path/animations/clip-path-xywh-interpolation-001.html", - [ - [ - "/css/css-masking/clip-path/animations/clip-path-xywh-interpolation-001-ref.html", - "==" - ] - ], - {} - ] - ], - "two-clip-path-animation-diff-length1.html": [ - "f647c1af59095735217eb60e51291a64b79fce70", - [ - "css/css-masking/clip-path/animations/two-clip-path-animation-diff-length1.html", - [ - [ - "/css/css-masking/clip-path/animations/two-clip-path-animation-diff-length1-ref.html", - "==" - ] - ], - {} - ] - ], - "two-clip-path-animation-diff-length2.html": [ - "bc3460111f712d012e68e8b1e0254fa2f7c299af", - [ - "css/css-masking/clip-path/animations/two-clip-path-animation-diff-length2.html", - [ - [ - "/css/css-masking/clip-path/animations/two-clip-path-animation-diff-length2-ref.html", - "==" - ] - ], - {} - ] - ], - "two-clip-path-animation-diff-length3.html": [ - "5a66568132ac77ad70f8c6107139e6041782e917", - [ - "css/css-masking/clip-path/animations/two-clip-path-animation-diff-length3.html", - [ - [ - "/css/css-masking/clip-path/animations/two-clip-path-animation-diff-length3-ref.html", - "==" - ] - ], - {} - ] - ] - }, - "clip-path-blending-offset.html": [ - "806904d68765b147830c6ee3b27a68df7a4c527d", - [ - null, - [ - [ - "/css/css-masking/clip-path/clip-path-blending-offset-ref.html", - "==" - ] - ], - {} - ] - ], - "clip-path-borderBox-1a.html": [ - "c0304a59bb8ae8fec3f0e048b13d69cd43d29d89", - [ - "css/css-masking/clip-path/clip-path-borderBox-1a.html", - [ - [ - "/css/css-masking/clip-path/clip-path-geometryBox-1-ref.html", + "/css/css-masking/clip-path-svg-content/reference/mask-content-clip-001-ref.svg", "==" ] ], @@ -208257,603 +207938,373 @@ [ [ 0, - 100 + 38 ], [ 0, - 400 + 376 ] ] ] ] } ] - ], - "clip-path-borderBox-1b.html": [ - "c253c3c9db1e5ed3d3efcb588e4da0c48a80ad09", + ] + }, + "clip-rule": { + "clip-rule-001.html": [ + "a5a0961d100e34d3f81ae7c82eafdb3b2d0fc6e0", [ null, [ [ - "/css/css-masking/clip-path/clip-path-geometryBox-1-ref.html", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 60 - ], - [ - 0, - 394 - ] - ] - ] - ] - } - ] - ], - "clip-path-borderBox-1c.html": [ - "99f6bb0fc978c8c27023c695b355ced6e83ea618", - [ - "css/css-masking/clip-path/clip-path-borderBox-1c.html", - [ - [ - "/css/css-masking/clip-path/clip-path-geometryBox-1-ref.html", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 65 - ], - [ - 0, - 368 - ] - ] - ] - ] - } - ] - ], - "clip-path-borderBox-1d.html": [ - "3b63d9251f8b9b8ab7f71aa622f05e92fb07f73e", - [ - "css/css-masking/clip-path/clip-path-borderBox-1d.html", - [ - [ - "/css/css-masking/clip-path/reference/green-100x100.html", + "/css/css-masking/clip-rule/reference/clip-rule-rectangle-border-ref.html", "==" ] ], {} ] ], - "clip-path-borderBox-1e.html": [ - "17ac0b0d72ceebc57529d298bdf4d28e57151e56", + "clip-rule-002.html": [ + "5fee625594f66921f5de13643d487ac9265eb115", [ - "css/css-masking/clip-path/clip-path-borderBox-1e.html", + null, [ [ - "/css/css-masking/clip-path/reference/green-circle-100x100.html", + "/css/css-masking/clip-rule/reference/clip-rule-rectangle-border-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 126 - ], - [ - 0, - 400 - ] - ] - ] - ] - } + {} ] - ], - "clip-path-circle-001.html": [ - "e40cdb103a97e4b14c7fda8efcc3d2503fab17f7", + ] + }, + "mask-image": { + "mask-clip-1.html": [ + "9c1448439e6c227094176c3245060738b707426b", [ - "css/css-masking/clip-path/clip-path-circle-001.html", + null, [ [ - "/css/css-masking/clip-path/reference/clip-path-circle-ref.html", + "/css/css-masking/mask-image/mask-clip-1-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 38 - ], - [ - 0, - 800 - ] - ] - ] - ] - } + {} ] ], - "clip-path-circle-002.html": [ - "deb199a5b66fcc8f0cf60715867763aaca798a5a", + "mask-clip-2.html": [ + "2093b073dc2b513aded317e693b3db0d7a660f12", [ - "css/css-masking/clip-path/clip-path-circle-002.html", + null, [ [ - "/css/css-masking/clip-path/reference/clip-path-circle-ref.html", + "/css/css-masking/mask-image/mask-clip-2-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 38 - ], - [ - 0, - 800 - ] - ] - ] - ] - } + {} ] ], - "clip-path-circle-003.html": [ - "24b3f31f61b5945cf953197aca016bb5a65f8b35", + "mask-clip-3.html": [ + "d79baa3b5e8edb5561c48d3fb6f14efb7e329848", [ - "css/css-masking/clip-path/clip-path-circle-003.html", + null, [ [ - "/css/css-masking/clip-path/reference/clip-path-circle-ref.html", + "/css/css-masking/mask-image/mask-clip-3-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 38 - ], - [ - 0, - 800 - ] - ] - ] - ] - } + {} ] ], - "clip-path-circle-004.html": [ - "ddbccf0336d798bccda9527b3c67588fb7ae269a", + "mask-clip-4.html": [ + "133c489041176b049bacfa00c3bf2a14bca1b6d5", [ - "css/css-masking/clip-path/clip-path-circle-004.html", + null, [ [ - "/css/css-masking/clip-path/reference/clip-path-circle-ref.html", + "/css/css-masking/mask-image/mask-clip-4-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 38 - ], - [ - 0, - 800 - ] - ] - ] - ] - } + {} ] ], - "clip-path-circle-005.html": [ - "3a25ce5fff79cbc25633090bdc017f532ace0511", + "mask-clip-5.html": [ + "db6a91942bf7262d0dedfcdfd1f297113e85f7c9", [ - "css/css-masking/clip-path/clip-path-circle-005.html", + null, [ [ - "/css/css-masking/clip-path/reference/clip-path-circle-ref.html", + "/css/css-masking/mask-image/mask-clip-2-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 38 - ], - [ - 0, - 800 - ] - ] - ] - ] - } + {} ] ], - "clip-path-circle-006.html": [ - "8434edd2160559c40f7ef3c5df9cb7e75d42ddbd", + "mask-clip-6.html": [ + "43b75df36823fb184c9c92e1081398d451a107d9", [ - "css/css-masking/clip-path/clip-path-circle-006.html", + null, [ [ - "/css/css-masking/clip-path/reference/clip-path-circle-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 38 - ], - [ - 0, - 800 - ] - ] - ] - ] - } + {} ] ], - "clip-path-circle-007.html": [ - "60c5cd52e327b5fdda7799f197e35a3060773fa9", + "mask-clip-7.html": [ + "1c0d8e1dc4ae5be4ca528a7d8f71a7e4fff4f30e", [ - "css/css-masking/clip-path/clip-path-circle-007.html", + null, [ [ - "/css/css-masking/clip-path/reference/clip-path-circle-2-ref.html", + "/css/css-masking/mask-image/mask-clip-7-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 38 - ], - [ - 0, - 800 - ] - ] - ] - ] - } + {} ] ], - "clip-path-circle-008.html": [ - "a931d3e319ea57686059c806b5d5c47d698ad07d", + "mask-clip-8.html": [ + "924920ffacafcfdf3cb71732389ccb768ba60d94", [ - "css/css-masking/clip-path/clip-path-circle-008.html", + null, [ [ - "/css/css-masking/clip-path/reference/clip-path-circle-3-ref.html", + "/css/css-masking/mask-image/mask-clip-8-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 38 - ], - [ - 0, - 800 - ] - ] - ] - ] - } + {} ] ], - "clip-path-columns-shape-001.html": [ - "de13607ad83c9f06382c8584613883bb8e93639d", + "mask-composite-1a.html": [ + "795e52b8ae8df95243997c7d327b114522f8ff1f", [ null, [ [ - "/css/css-masking/clip-path/reference/clip-path-columns-shape-001-ref.html", + "/css/css-masking/mask-image/mask-composite-1-ref.html", "==" ] ], {} ] ], - "clip-path-columns-shape-002.html": [ - "6bd11a5e49a0c5ea810a272b44b9b1a081f4b672", + "mask-composite-1b.html": [ + "be158c923bd9a4185fc57ffc69d2f6f34f1e514f", [ null, [ [ - "/css/css-masking/clip-path/reference/clip-path-columns-shape-002-ref.html", + "/css/css-masking/mask-image/mask-composite-1-ref.html", "==" ] ], {} ] ], - "clip-path-contentBox-1a.html": [ - "b10dcbe3ad50028fdb143121534a41e47a923dc1", + "mask-composite-1c.html": [ + "0eb098d1b7b656ed86dd76a2f0e1a26875a4a37e", [ null, [ [ - "/css/css-masking/clip-path/clip-path-geometryBox-1-ref.html", + "/css/css-masking/mask-image/mask-composite-1-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 62 - ], - [ - 0, - 420 - ] - ] - ] - ] - } + {} ] ], - "clip-path-contentBox-1b.html": [ - "8c2a6517667d6c0434f03f4252e875ad3ff382bf", + "mask-composite-1d.html": [ + "efd26ecb3d151e1f460f494d17bc62431293b566", [ null, [ [ - "/css/css-masking/clip-path/clip-path-geometryBox-1-ref.html", + "/css/css-masking/mask-image/mask-composite-1-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 62 - ], - [ - 0, - 420 - ] - ] - ] - ] - } + {} ] ], - "clip-path-contentBox-1c.html": [ - "e1b653aaf7f16c00f65a5668b225f1ebbaee6544", + "mask-composite-2a.html": [ + "7db800814c4c0593d08e3c8b22b9b26ee3418e1b", [ - "css/css-masking/clip-path/clip-path-contentBox-1c.html", + null, [ [ - "/css/css-masking/clip-path/clip-path-geometryBox-1-ref.html", + "/css/css-masking/mask-image/mask-composite-2-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 52 - ], - [ - 0, - 376 - ] - ] - ] - ] - } + {} ] ], - "clip-path-contentBox-1d.html": [ - "1968fc8044112fa19d9f33199c3bbf773fee21f8", + "mask-composite-2b.html": [ + "3fd983fb11a134e2e7ff9dd9e4c7fe6132073b85", [ - "css/css-masking/clip-path/clip-path-contentBox-1d.html", + null, [ [ - "/css/css-masking/clip-path/reference/green-100x100.html", + "/css/css-masking/mask-image/mask-composite-2-ref.html", "==" ] ], {} ] ], - "clip-path-contentBox-1e.html": [ - "5fde5ccd9a98659b0cd356a2070df7bda186fad5", + "mask-composite-2c.html": [ + "2b26e9ac664068d60d50d317dcb1e72b584a1413", [ - "css/css-masking/clip-path/clip-path-contentBox-1e.html", + null, [ [ - "/css/css-masking/clip-path/reference/green-circle-100x100.html", + "/css/css-masking/mask-image/mask-composite-2-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 65 - ], - [ - 0, - 400 - ] - ] - ] - ] - } + {} ] ], - "clip-path-descendant-text-mutated-001.html": [ - "8753a25f1e4e56cb72d3389533ac96c633dda115", + "mask-composite-2d.html": [ + "feb70df05154ac1b498086802a78fac4eab346a6", [ null, [ [ - "/css/css-masking/clip-path/reference/clip-path-descendant-text-mutated-001-ref.html", + "/css/css-masking/mask-image/mask-composite-2-ref.html", "==" ] ], {} ] ], - "clip-path-document-element-will-change.html": [ - "977eaca1405449fd1f79a01e9a5a91f2bb069b60", + "mask-image-1a.html": [ + "62e00660a3503f6c7d30cbf8cbdb963794bf009f", [ null, [ [ - "/css/css-masking/clip-path/reference/clip-path-document-element-ref.html", + "/css/css-masking/mask-image/mask-image-1-ref.html", "==" ] ], {} ] ], - "clip-path-document-element.html": [ - "56f2d5c8ebb5114fc91a87b3bb240b36957a1800", + "mask-image-1b.html": [ + "9bf74102f9cf06c816f51b0878a9d20c5767c1a1", [ null, [ [ - "/css/css-masking/clip-path/reference/clip-path-document-element-ref.html", + "/css/css-masking/mask-image/mask-image-1-ref.html", "==" ] ], {} ] ], - "clip-path-element-userSpaceOnUse-001.html": [ - "1381f53cb0c0aefc82a91a232b712d18be625b97", + "mask-image-1c.html": [ + "1328d06c95dd12ca06f0b41bc1acfeed2a32a153", [ null, [ [ - "/css/css-masking/clip-path/reference/clip-path-rectangle-ref.html", + "/css/css-masking/mask-image/mask-image-1-ref.html", "==" ] ], {} ] ], - "clip-path-element-userSpaceOnUse-002.html": [ - "6d6d77cecaaa545987e62176ac58ef4511ebab24", + "mask-image-1d.html": [ + "11f0ae7d937414297ee8bd0e8a9b844b464cc895", [ null, [ [ - "/css/css-masking/clip-path/reference/clip-path-rectangle-ref.html", + "/css/css-masking/mask-image/mask-image-1-ref.html", "==" ] ], {} ] ], - "clip-path-element-userSpaceOnUse-003.html": [ - "1eff3b4fcefd29a5322feaac93b5b179c471c840", + "mask-image-2.html": [ + "673f55a7e36136ff58f83f0573849c29db7906fb", [ null, [ [ - "/css/css-masking/clip-path/reference/clip-path-ref-right-green-ref.html", + "/css/css-masking/mask-image/mask-image-2-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 3 + ], + [ + 0, + 14000 + ] + ] + ] + ] + } ] ], - "clip-path-element-userSpaceOnUse-004.html": [ - "af65df668f841390c8642aac3aafddb73c430161", + "mask-image-3a.html": [ + "3aae3df3934e3dd6f56cfa318c815ca85887e2ae", [ null, [ [ - "/css/css-masking/clip-path/reference/clip-path-ref-bottom-green-ref.html", + "/css/css-masking/mask-image/mask-image-3-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 1 + ], + [ + 0, + 100 + ] + ] + ] + ] + } ] ], - "clip-path-ellipse-001.html": [ - "f48b197137cec3ac4131658018c3d6497dcadfce", + "mask-image-3b.html": [ + "b6609fde6a4ac33ca1fb9fd6f87513e2fef9498d", [ - "css/css-masking/clip-path/clip-path-ellipse-001.html", + null, [ [ - "/css/css-masking/clip-path/reference/clip-path-ellipse-ref.html", + "/css/css-masking/mask-image/mask-image-3-ref.html", "==" ] ], @@ -208864,11 +208315,11 @@ [ [ 0, - 38 + 1 ], [ 0, - 400 + 100 ] ] ] @@ -208876,13 +208327,13 @@ } ] ], - "clip-path-ellipse-002.html": [ - "ecc5ca090f7dfad86d1f095dbcdce9a857caf151", + "mask-image-3c.html": [ + "91cc9f7bb100398e9789a39dead4bde623de18e7", [ - "css/css-masking/clip-path/clip-path-ellipse-002.html", + null, [ [ - "/css/css-masking/clip-path/reference/clip-path-ellipse-ref.html", + "/css/css-masking/mask-image/mask-image-3-ref.html", "==" ] ], @@ -208893,11 +208344,11 @@ [ [ 0, - 38 + 1 ], [ 0, - 400 + 100 ] ] ] @@ -208905,13 +208356,13 @@ } ] ], - "clip-path-ellipse-003.html": [ - "eff287614b12ae882494f5f54d33ba0f74ee0a96", + "mask-image-3d.html": [ + "468872fecbde8ec1a8b54abc7c83a7b3dfb4357b", [ - "css/css-masking/clip-path/clip-path-ellipse-003.html", + null, [ [ - "/css/css-masking/clip-path/reference/clip-path-circle-ref.html", + "/css/css-masking/mask-image/mask-image-3-ref.html", "==" ] ], @@ -208922,11 +208373,11 @@ [ [ 0, - 38 + 1 ], [ 0, - 800 + 100 ] ] ] @@ -208934,13 +208385,13 @@ } ] ], - "clip-path-ellipse-004.html": [ - "3988840943c85d5819cf78182570d3279349c8f6", + "mask-image-3e.html": [ + "5e5393755453b30dd73c10ebeee3bfa95ded939b", [ - "css/css-masking/clip-path/clip-path-ellipse-004.html", + null, [ [ - "/css/css-masking/clip-path/reference/clip-path-ellipse-ref.html", + "/css/css-masking/mask-image/mask-image-3-ref.html", "==" ] ], @@ -208951,11 +208402,11 @@ [ [ 0, - 38 + 1 ], [ 0, - 400 + 100 ] ] ] @@ -208963,13 +208414,13 @@ } ] ], - "clip-path-ellipse-005.html": [ - "c7107d26171d8072acaf2e915356f7d7abf8defc", + "mask-image-3f.html": [ + "0ecfd383652bc1a8fd57af6a1936685410dd4329", [ - "css/css-masking/clip-path/clip-path-ellipse-005.html", + null, [ [ - "/css/css-masking/clip-path/reference/clip-path-ellipse-ref.html", + "/css/css-masking/mask-image/mask-image-3-ref.html", "==" ] ], @@ -208980,11 +208431,11 @@ [ [ 0, - 38 + 1 ], [ 0, - 400 + 100 ] ] ] @@ -208992,13 +208443,13 @@ } ] ], - "clip-path-ellipse-006.html": [ - "d0b4efafebf46b5f2f9aa17bb2dd9b701c08cdb9", + "mask-image-3g.html": [ + "133a69fa6094e7c002ac8340761df0244681f0fc", [ - "css/css-masking/clip-path/clip-path-ellipse-006.html", + null, [ [ - "/css/css-masking/clip-path/reference/clip-path-ellipse-ref.html", + "/css/css-masking/mask-image/mask-image-3-ref.html", "==" ] ], @@ -209009,11 +208460,11 @@ [ [ 0, - 38 + 1 ], [ 0, - 400 + 100 ] ] ] @@ -209021,13 +208472,13 @@ } ] ], - "clip-path-ellipse-007.html": [ - "2105b36df370e7030dd3d74a74ec4540fd71cd33", + "mask-image-3h.html": [ + "29f2c33bdf16d22e0f1cf5958ee298ab3f15867c", [ - "css/css-masking/clip-path/clip-path-ellipse-007.html", + null, [ [ - "/css/css-masking/clip-path/reference/clip-path-ellipse-ref.html", + "/css/css-masking/mask-image/mask-image-3-ref.html", "==" ] ], @@ -209038,11 +208489,11 @@ [ [ 0, - 38 + 37 ], [ 0, - 400 + 146 ] ] ] @@ -209050,13 +208501,13 @@ } ] ], - "clip-path-ellipse-008.html": [ - "4e4ac5184299566b5376164fd5af9ad5a854148e", + "mask-image-3i.html": [ + "c0440145e571fc921b6598e07f8290c3278b5de1", [ - "css/css-masking/clip-path/clip-path-ellipse-008.html", + null, [ [ - "/css/css-masking/clip-path/reference/clip-path-ellipse-ref.html", + "/css/css-masking/mask-image/mask-image-3-ref.html", "==" ] ], @@ -209067,11 +208518,11 @@ [ [ 0, - 38 + 1 ], [ 0, - 400 + 100 ] ] ] @@ -209079,13 +208530,52 @@ } ] ], - "clip-path-fillBox-1a.html": [ - "c14890e9673b012e0fc2937c2093abec8e12532d", + "mask-image-4a.html": [ + "bffcedae9ade9943fb8cfe06c9da466678226ff8", [ - "css/css-masking/clip-path/clip-path-fillBox-1a.html", + null, [ [ - "/css/css-masking/clip-path/clip-path-geometryBox-1-ref.html", + "/css/reference/blank.html", + "==" + ] + ], + {} + ] + ], + "mask-image-4b.html": [ + "b05232a1e175164e1d3f38c4d9a99578dc5157db", + [ + null, + [ + [ + "/css/reference/blank.html", + "==" + ] + ], + {} + ] + ], + "mask-image-5.html": [ + "12f0f6000794388b73ac55b3747cf556b4ac8ee4", + [ + null, + [ + [ + "/css/css-masking/mask-image/mask-image-5-ref.html", + "==" + ] + ], + {} + ] + ], + "mask-image-6.html": [ + "3132efb0475b5e9b6025bb8900cdafa795b6e7ca", + [ + null, + [ + [ + "/css/css-masking/mask-image/mask-image-6-ref.html", "==" ] ], @@ -209096,11 +208586,11 @@ [ [ 0, - 79 + 255 ], [ 0, - 392 + 70 ] ] ] @@ -209108,13 +208598,13 @@ } ] ], - "clip-path-fillBox-1b.html": [ - "529cee6a4298299211524b669ede185856f4a7c4", + "mask-image-clip-exclude.html": [ + "21466670b01c3a41bc8afe7e2c2841c19e5d344b", [ - "css/css-masking/clip-path/clip-path-fillBox-1b.html", + null, [ [ - "/css/css-masking/clip-path/clip-path-geometryBox-1-ref.html", + "/css/css-masking/mask-image/mask-image-clip-exclude-ref.html", "==" ] ], @@ -209125,11 +208615,11 @@ [ [ 0, - 52 + 1 ], [ 0, - 376 + 2000 ] ] ] @@ -209137,185 +208627,169 @@ } ] ], - "clip-path-filter-order.html": [ - "5806e75d536cc34a4610630782e5cdfd4b5e552d", + "mask-image-data-url-image.html": [ + "aac59f3c4aabeb362aef0734ca9315d3a2331af4", [ null, [ [ - "/css/css-masking/clip-path/clip-path-filter-order-ref.html", + "/css/css-masking/mask-image/reference/mask-image-data-url-image-ref.html", "==" ] ], {} ] ], - "clip-path-filter-radius-clips.html": [ - "f715f0de787005e60825eb786d12fa5047041f8a", + "mask-image-ib-split-2.html": [ + "94c653a5c4714f8ee167fe35a76c53615fdfb5b5", [ null, [ [ - "/css/css-masking/clip-path/reference/clip-path-filter-radius-clips-ref.html", + "/css/css-masking/mask-image/reference/mask-image-ib-split-2-ref.html", "==" ] ], {} ] ], - "clip-path-fixed-nested.html": [ - "5090bc2aed43e0619eb7b966c2ed46cd43057e40", + "mask-image-ib-split.html": [ + "dab941b11183df95a16792c0c82923052ae501f0", [ null, [ [ - "/css/css-masking/clip-path/clip-path-fixed-nested-ref.html", + "/css/css-masking/mask-image/reference/mask-image-ib-split-ref.html", "==" ] ], {} ] ], - "clip-path-fixed-scroll.html": [ - "2b6e09b0e8391bd1f73b1be0b33dcb36cab3d895", + "mask-image-inline-sliced-1.html": [ + "9d09cc00a1f259644125747d1d1d08cbfdce6dd2", [ null, [ [ - "/css/css-masking/clip-path/clip-path-fixed-scroll-ref.html", + "/css/css-masking/mask-image/reference/mask-image-inline-sliced-1-ref.html", "==" ] ], {} ] ], - "clip-path-foreignobject-non-zero-xy.html": [ - "a63f4c8aa294db0b3e1ed3a3434015d65ecf453f", + "mask-image-svg-child-will-change.html": [ + "248589d54dd99f1bcaf74d03944d9a8bc36fd047", [ - "css/css-masking/clip-path/clip-path-foreignobject-non-zero-xy.html", + null, [ [ - "/css/css-masking/clip-path/reference/green-100x100.html", + "/css/css-masking/mask-image/reference/mask-image-svg-child-will-change-ref.html", "==" ] ], {} ] ], - "clip-path-geometryBox-2.html": [ - "d4c47349d2053c90ebb82998b10b16e916421dbb", + "mask-image-svg-foreignobject-zoomed.html": [ + "85a8b2dbf2799f1356677f4c2d38dd2ed3042d6e", [ null, [ [ - "/css/css-masking/clip-path/clip-path-geometryBox-2-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 60 - ], - [ - 0, - 394 - ] - ] - ] - ] - } + {} ] ], - "clip-path-inline-001.html": [ - "76018614baab3fc3123f9c3d41053effcb64c224", + "mask-image-svg-gradient-zoomed.html": [ + "17d2869f6e4595361efee89501368d60f1e0508c", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "clip-path-inline-002.html": [ - "ca8634b90328b12f965e28fefbac749e4eadf37a", + "mask-image-svg-viewport-changed.html": [ + "156317b2517d639b8521d510b7e5bf3c793273ed", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-masking/clip-path/reference/green-100x100.html", "==" ] ], {} ] ], - "clip-path-inline-003.html": [ - "471c54c1c6fc891f005e62081986d1f0e822e128", + "mask-image-url-image-hash.html": [ + "b1efc90818bec85d5022a9b908a14c2e0c35ff3b", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-masking/mask-image/reference/mask-image-ref.html", "==" ] ], {} ] ], - "clip-path-inline-004.html": [ - "8061a91988c0a1ec17c7182c83977a2471728f62", + "mask-image-url-image.html": [ + "40a1ff9b281647a03cd90046cb62a088c0ed7081", [ - "css/css-masking/clip-path/clip-path-inline-004.html", + null, [ [ - "/css/css-masking/clip-path/clip-path-inline-004-ref.html", + "/css/css-masking/mask-image/reference/mask-image-ref.html", "==" ] ], {} ] ], - "clip-path-inline-005.html": [ - "39dac759e2a34a154eaaba06bfa8d35af27187d9", + "mask-image-url-local-mask.html": [ + "18abc54f85eb4bfd93962dbef92dd5cffe5ba62b", [ - "css/css-masking/clip-path/clip-path-inline-005.html", + null, [ [ - "/css/css-masking/clip-path/clip-path-inline-005-ref.html", + "/css/css-masking/mask-image/reference/mask-image-ref.html", "==" ] ], {} ] ], - "clip-path-inline-006.html": [ - "7a37c04f441a5bc642f450db4e622dc1927be6f9", + "mask-image-url-remote-mask.html": [ + "f3f2eefaa92df83296379efd861b39e2ab65f78e", [ - "css/css-masking/clip-path/clip-path-inline-006.html", + null, [ [ - "/css/css-masking/clip-path/clip-path-inline-006-ref.html", + "/css/css-masking/mask-image/reference/mask-image-ref.html", "==" ] ], {} ] ], - "clip-path-inline-007.html": [ - "9518b587c4f07958c3ec5915204c15495179cb0d", + "mask-mode-a.html": [ + "d69ca24ee4d9bff815b0f2d36d54fa4d6ca972f8", [ - "css/css-masking/clip-path/clip-path-inline-007.html", + null, [ [ - "/css/css-masking/clip-path/clip-path-inline-007-ref.html", + "/css/css-masking/mask-image/mask-mode-ref.html", "==" ] ], @@ -209326,11 +208800,11 @@ [ [ 0, - 62 + 1 ], [ 0, - 332 + 10000 ] ] ] @@ -209338,13 +208812,13 @@ } ] ], - "clip-path-inline-008.html": [ - "911f9cac4dd39ed1f24564c1b1e35e663b0159df", + "mask-mode-b.html": [ + "961411d7185544d5f8fb9490f434cc935ff09e49", [ - "css/css-masking/clip-path/clip-path-inline-008.html", + null, [ [ - "/css/css-masking/clip-path/clip-path-inline-008-ref.html", + "/css/css-masking/mask-image/mask-mode-ref.html", "==" ] ], @@ -209355,11 +208829,11 @@ [ [ 0, - 14 + 1 ], [ 0, - 240 + 10000 ] ] ] @@ -209367,26 +208841,13 @@ } ] ], - "clip-path-inline-009.html": [ - "6a7fbb549885208c015a4ac65ca6d8a440363e47", - [ - "css/css-masking/clip-path/clip-path-inline-009.html", - [ - [ - "/css/css-masking/clip-path/clip-path-inline-009-ref.html", - "==" - ] - ], - {} - ] - ], - "clip-path-inline-010.html": [ - "dea78b6347f496b5805c8a2220c77f882a11a1c5", + "mask-mode-c.html": [ + "115996db9c46ef450554e6f1bb5002c9af88b0d0", [ - "css/css-masking/clip-path/clip-path-inline-010.html", + null, [ [ - "/css/css-masking/clip-path/clip-path-inline-010-ref.html", + "/css/css-masking/mask-image/mask-mode-ref.html", "==" ] ], @@ -209397,11 +208858,11 @@ [ [ 0, - 43 + 2 ], [ 0, - 319 + 11800 ] ] ] @@ -209409,39 +208870,42 @@ } ] ], - "clip-path-inset-round-percent.html": [ - "cb0e5ec73575c83954253bdcf394290b4f4d200e", + "mask-mode-d.html": [ + "c49155e2dcfe041b154d186b5fddde113b01148c", [ null, [ [ - "/css/css-masking/clip-path/clip-path-inset-round-percent-ref.html", + "/css/css-masking/mask-image/mask-mode-ref.html", "==" ] ], - {} - ] - ], - "clip-path-localRef-1.html": [ - "e24afbcd6bd995c19585a82ccee10fb8f35d3497", - [ - null, - [ - [ - "/css/css-masking/clip-path/clip-path-localRef-1-ref.html", - "==" + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 1 + ], + [ + 0, + 10000 + ] + ] + ] ] - ], - {} + } ] ], - "clip-path-marginBox-1a.html": [ - "009ba674d8c56d3f63906e1ab8287ea4db702057", + "mask-mode-e.html": [ + "3ece03c5b73a6e8592af7854648267c088f50c7f", [ null, [ [ - "/css/css-masking/clip-path/clip-path-geometryBox-1-ref.html", + "/css/css-masking/mask-image/mask-mode-ref.html", "==" ] ], @@ -209452,11 +208916,11 @@ [ [ 0, - 62 + 2 ], [ 0, - 420 + 11800 ] ] ] @@ -209464,26 +208928,26 @@ } ] ], - "clip-path-marginBox-1b.html": [ - "04f22e84d5c4a7d8cfc8f4de69ab42270bc61e24", + "mask-mode-luminance-with-mask-size.html": [ + "c618981585a123c1899d3218b352dbff9908b064", [ - "css/css-masking/clip-path/clip-path-marginBox-1b.html", + null, [ [ - "/css/css-masking/clip-path/reference/green-100x100.html", + "/css/css-masking/mask-image/mask-mode-luminance-with-mask-size-ref.html", "==" ] ], {} ] ], - "clip-path-marginBox-1c.html": [ - "7d6780731ed7d60899e5ef18ee4152fa22eac0b0", + "mask-mode-to-mask-type-svg.html": [ + "f3719c7098514250d1325016d27faf399ebe2cb7", [ - "css/css-masking/clip-path/clip-path-marginBox-1c.html", + null, [ [ - "/css/css-masking/clip-path/reference/green-circle-100x100.html", + "/css/css-masking/mask-image/mask-mode-to-mask-type-ref.html", "==" ] ], @@ -209494,11 +208958,11 @@ [ [ 0, - 98 + 1 ], [ 0, - 424 + 30000 ] ] ] @@ -209506,13 +208970,13 @@ } ] ], - "clip-path-marginBox-1d.html": [ - "39d3c9db5afb39eb20f1ed0260111dfff85468ca", + "mask-mode-to-mask-type.html": [ + "1d1a94c585d0895b7ea83b9844f594694e1c64fa", [ - "css/css-masking/clip-path/clip-path-marginBox-1d.html", + null, [ [ - "/css/css-masking/clip-path/clip-path-marginBox-1d-ref.html", + "/css/css-masking/mask-image/mask-mode-to-mask-type-ref.html", "==" ] ], @@ -209523,11 +208987,11 @@ [ [ 0, - 146 + 1 ], [ 0, - 500 + 30000 ] ] ] @@ -209535,39 +208999,13 @@ } ] ], - "clip-path-mix-blend-mode-1.html": [ - "ff0c376905c3ecd329b2bc074aa77cea09cf6c5c", - [ - null, - [ - [ - "/css/css-masking/clip-path/clip-path-mix-blend-mode-1-ref.html", - "==" - ] - ], - {} - ] - ], - "clip-path-on-fixed-position-scroll.html": [ - "b947f10aa2af27127ada1436dc3e81358a4e6e57", - [ - "css/css-masking/clip-path/clip-path-on-fixed-position-scroll.html", - [ - [ - "/css/css-masking/clip-path/clip-path-on-fixed-position-scroll-ref.html", - "==" - ] - ], - {} - ] - ], - "clip-path-paddingBox-1a.html": [ - "493ba7ab05678854d2232e75882483516464a4e8", + "mask-opacity-1a.html": [ + "91823717942154ec7ab276b99de8b74d99be2d04", [ null, [ [ - "/css/css-masking/clip-path/clip-path-geometryBox-1-ref.html", + "/css/css-masking/mask-image/mask-opacity-1-ref.html", "==" ] ], @@ -209577,12 +209015,12 @@ null, [ [ - 0, - 62 + 1, + 1 ], [ 0, - 420 + 5000 ] ] ] @@ -209590,13 +209028,13 @@ } ] ], - "clip-path-paddingBox-1b.html": [ - "d3ea29633e317b94e85e1f2ddd0f097e641d717d", + "mask-opacity-1b.html": [ + "681ec360ae2575be3e4f264284494f411df71f6b", [ null, [ [ - "/css/css-masking/clip-path/clip-path-geometryBox-1-ref.html", + "/css/css-masking/mask-image/mask-opacity-1-ref.html", "==" ] ], @@ -209606,12 +209044,12 @@ null, [ [ - 0, - 62 + 1, + 1 ], [ 0, - 420 + 5000 ] ] ] @@ -209619,13 +209057,13 @@ } ] ], - "clip-path-paddingBox-1c.html": [ - "c3fc5a90af2e1819ad78bcf3cccba165f5f9aa99", + "mask-opacity-1c.html": [ + "271e663e639fc54f7ff2f599056d37f00d6d8b6f", [ - "css/css-masking/clip-path/clip-path-paddingBox-1c.html", + null, [ [ - "/css/css-masking/clip-path/clip-path-geometryBox-1-ref.html", + "/css/css-masking/mask-image/mask-opacity-1-ref.html", "==" ] ], @@ -209635,12 +209073,12 @@ null, [ [ - 0, - 52 + 1, + 1 ], [ 0, - 376 + 5000 ] ] ] @@ -209648,26 +209086,13 @@ } ] ], - "clip-path-paddingBox-1d.html": [ - "3425c3d2d651de9e92ff4b99f652d7c4bf6f702a", - [ - "css/css-masking/clip-path/clip-path-paddingBox-1d.html", - [ - [ - "/css/css-masking/clip-path/reference/green-100x100.html", - "==" - ] - ], - {} - ] - ], - "clip-path-paddingBox-1e.html": [ - "cd0d3987d9f66ce3d83424652988ad9cc9a717a4", + "mask-opacity-1d.html": [ + "77eab966cbfb87c8f0a1f3725ac5566fc50658cc", [ - "css/css-masking/clip-path/clip-path-paddingBox-1e.html", + null, [ [ - "/css/css-masking/clip-path/reference/green-circle-100x100.html", + "/css/css-masking/mask-image/mask-opacity-1-ref.html", "==" ] ], @@ -209678,11 +209103,11 @@ [ [ 0, - 70 + 5 ], [ 0, - 400 + 5000 ] ] ] @@ -209690,4304 +209115,2847 @@ } ] ], - "clip-path-path-001.html": [ - "ebdfc2297bbcc8225f92ba9dfa2ed33819f2f9a9", + "mask-opacity-1e.html": [ + "ad7aa8829e5f250385088449f9cf58916203fb98", [ null, [ [ - "/css/css-masking/clip-path/reference/clip-path-path-001-ref.html", + "/css/css-masking/mask-image/mask-opacity-1-ref.html", "==" ] ], {} ] ], - "clip-path-path-002.html": [ - "e3049922ebdec9a0ee9be2f8c5cff97e2ec25e94", + "mask-origin-1.html": [ + "3788a5591a2f20f57064424bbba03a248bccae6b", [ null, [ [ - "/css/css-masking/clip-path/reference/clip-path-path-002-ref.html", + "/css/css-masking/mask-image/mask-origin-1-ref.html", "==" ] ], {} ] ], - "clip-path-path-003.html": [ - "af1de750c5bea5564a4f3bdffc13f61170a82853", + "mask-origin-3.html": [ + "9659d09ba3cffa1b73a4aeafddc5e62484ac71fe", [ - "css/css-masking/clip-path/clip-path-path-003.html", + null, [ [ - "/css/css-masking/clip-path/reference/green-100x100.html", + "/css/css-masking/mask-image/mask-origin-3-ref.html", "==" ] ], {} ] ], - "clip-path-path-with-zoom.html": [ - "5879917f36e7efb74db4b1aaeb8a05bee96f39cd", + "mask-position-1a-svg.html": [ + "aa9a742e99c6fa5300ba30461cadfff82afe3802", [ null, [ [ - "/css/css-masking/clip-path/reference/clip-path-path-with-zoom-ref.html", + "/css/css-masking/mask-image/mask-position-1-ref.html", "==" ] ], {} ] ], - "clip-path-polygon-001.html": [ - "954f0ba8d91de74cb36b834f06db5a00ad59b194", + "mask-position-1a.html": [ + "cee15ee713b948049c098ae6784032c4048d87cc", [ null, [ [ - "/css/css-masking/clip-path/reference/clip-path-rectangle-ref.html", + "/css/css-masking/mask-image/mask-position-1-ref.html", "==" ] ], {} ] ], - "clip-path-polygon-002.html": [ - "ed2ede4fedbc277c9fd804765c83ca5f162b535f", + "mask-position-1b.html": [ + "669810e61a94f532f04169d9f60751a716176fc4", [ null, [ [ - "/css/css-masking/clip-path/reference/clip-path-rectangle-ref.html", + "/css/css-masking/mask-image/mask-position-1-ref.html", "==" ] ], {} ] ], - "clip-path-polygon-003.html": [ - "1ecf6803ab962f12daa0772d24abf910bea09d54", + "mask-position-1c.html": [ + "9a1671c3d455ac0349c8fe0fb87669c0b780da9f", [ null, [ [ - "/css/css-masking/clip-path/reference/clip-path-rectangle-ref.html", + "/css/css-masking/mask-image/mask-position-1-ref.html", "==" ] ], {} ] ], - "clip-path-polygon-004.html": [ - "cec947a3611e3ff1e878dc8a40622c2a1b493fc1", + "mask-position-2a.html": [ + "d8427338d4fbeed1eeae71a3eccf4469538465f5", [ null, [ [ - "/css/css-masking/clip-path/reference/clip-path-rectangle-border-ref.html", + "/css/css-masking/mask-image/mask-position-2-ref.html", "==" ] ], {} ] ], - "clip-path-polygon-005.html": [ - "b687f2e752f7acb2a55f2d638632940be0c3d73f", + "mask-position-2b.html": [ + "b5f7b31051f7ec330e04ac1c99a269758c4a0f83", [ null, [ [ - "/css/css-masking/clip-path/reference/clip-path-rectangle-border-ref.html", + "/css/css-masking/mask-image/mask-position-2-ref.html", "==" ] ], {} ] ], - "clip-path-polygon-006.html": [ - "1b33eaaf2fa7ab407a0508865b87626ce27eb4d6", + "mask-position-3a.html": [ + "17b1137f62629cbc6dd3e9a83d0b11a8131df46d", [ null, [ [ - "/css/css-masking/clip-path/reference/clip-path-square-001-ref.html", + "/css/css-masking/mask-image/mask-position-3-ref.html", "==" ] ], {} ] ], - "clip-path-polygon-007.html": [ - "9b590979424ef476129a48efb1c5f742cddf0c28", + "mask-position-3b.html": [ + "742a65ea15ee0b40a0615789f797cb40b29aeacd", [ null, [ [ - "/css/css-masking/clip-path/reference/clip-path-stripes-001-ref.html", + "/css/css-masking/mask-image/mask-position-3-ref.html", "==" ] ], {} ] ], - "clip-path-polygon-008.html": [ - "454aba6915ff9bf9d1d10be693bf6ef5ae339232", + "mask-position-4a.html": [ + "9d17692e83ffa2b9dd79cfc2569623543ed589c8", [ null, [ [ - "/css/css-masking/clip-path/reference/clip-path-stripes-002-ref.html", + "/css/css-masking/mask-image/mask-position-4-ref.html", "==" ] ], {} ] ], - "clip-path-polygon-009.html": [ - "7d3ab5bb429079f5fe94052d9147caa0a77feefb", + "mask-position-4b.html": [ + "9b46546d3149eb868332cce235a23c3480abe0a8", [ null, [ [ - "/css/css-masking/clip-path/reference/clip-path-square-002-ref.html", + "/css/css-masking/mask-image/mask-position-4-ref.html", "==" ] ], {} ] ], - "clip-path-polygon-010.html": [ - "e74a134082e509e9d9c5ccc94d7b84867cfd313c", + "mask-position-4c.html": [ + "7437c0232ba551e462cbd778a7f15d8dfbbf42cb", [ - "css/css-masking/clip-path/clip-path-polygon-010.html", + null, [ [ - "/css/css-masking/clip-path/reference/clip-path-stripes-001-ref.html", + "/css/css-masking/mask-image/mask-position-4-ref.html", "==" ] ], {} ] ], - "clip-path-polygon-011.html": [ - "7acccd1a69920b8be408d7e6f7c602ac310709dd", + "mask-position-4d.html": [ + "e5dce03b4a5883a49120d383448bad2f43bba16a", [ null, [ [ - "/css/css-masking/clip-path/reference/clip-path-stripes-001-ref.html", + "/css/css-masking/mask-image/mask-position-4-ref.html", "==" ] ], {} ] ], - "clip-path-polygon-012.html": [ - "9a24abfd10860d4b579f9fdd75102f8a2c6f9227", + "mask-position-5.html": [ + "295402263dbaffc675608fc491466ee6a98a4736", [ null, [ [ - "/css/css-masking/clip-path/reference/clip-path-stripes-001-ref.html", + "/css/css-masking/mask-image/mask-position-5-ref.html", "==" ] ], {} ] ], - "clip-path-polygon-013.html": [ - "23c93f347d175fe91eb2c50d5418f7c3df2a89cd", + "mask-position-6.html": [ + "e4b0715c4de333b51a60923267d5799ac504a4b8", [ - "css/css-masking/clip-path/clip-path-polygon-013.html", + null, [ [ - "/css/css-masking/clip-path/reference/clip-path-stripes-003-ref.html", + "/css/css-masking/mask-image/mask-position-6-ref.html", "==" ] ], {} ] ], - "clip-path-rect-001.html": [ - "1645d45829946a5dfd149ec0d28bfaa049c97c4f", + "mask-position-7.html": [ + "d24fca5bc2a90f8fc3c51c7238c1a3d3f7a9974b", [ - "css/css-masking/clip-path/clip-path-rect-001.html", + null, [ [ - "/css/css-masking/clip-path/reference/clip-path-rectangle-ref.html", + "/css/css-masking/mask-image/mask-position-7-ref.html", "==" ] ], {} ] ], - "clip-path-rect-002.html": [ - "c9032e0a5bb0400529b8d6e82f01610f8b05857b", + "mask-position-8.html": [ + "cb99135fa1df5d8caa7cfec928a55bf738d78b8e", [ - "css/css-masking/clip-path/clip-path-rect-002.html", + null, [ [ - "/css/css-masking/clip-path/reference/clip-path-rectangle-ref.html", + "/css/css-masking/clip-path/reference/green-100x100.html", "==" ] ], {} ] ], - "clip-path-rect-003.html": [ - "a2d201c1b0fed0390d037a0291309b4bce0390cd", + "mask-repeat-1-svg.html": [ + "ba96faf18fe6d0e3f125459d5d5bfa9a3e30de23", [ - "css/css-masking/clip-path/clip-path-rect-003.html", + null, [ [ - "/css/css-masking/clip-path/reference/clip-path-xywh-003-ref.html", + "/css/css-masking/mask-image/mask-repeat-1-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 50 - ], - [ - 0, - 250 - ] - ] - ] - ] - } + {} ] ], - "clip-path-reference-box-001.html": [ - "35b31ebaef1fc184e7f4e6202093d650e6b1db65", + "mask-repeat-1.html": [ + "6c74f1cb91869115761e532ff126a8f597944aa8", [ null, [ [ - "/css/css-masking/clip-path/reference/clip-path-reference-box-001-ref.html", + "/css/css-masking/mask-image/mask-repeat-1-ref.html", "==" ] ], {} ] ], - "clip-path-reference-box-002.html": [ - "a45e4537fc2d4e14965eaee8a0e639d45c606b27", + "mask-repeat-2-svg.html": [ + "740d254473b9ddc17a14a5847f0556147dc8c89b", [ null, [ [ - "/css/css-masking/clip-path/reference/clip-path-reference-box-002-ref.html", + "/css/css-masking/mask-image/mask-repeat-2-ref.html", "==" ] ], {} ] ], - "clip-path-reference-box-003.html": [ - "ac88439d7b2e70a235b7b991b83450083fb8a94c", + "mask-repeat-2.html": [ + "e349239fbfcba99d92bc20a9f217721ca6bf90f2", [ null, [ [ - "/css/css-masking/clip-path/reference/clip-path-reference-box-003-ref.html", + "/css/css-masking/mask-image/mask-repeat-2-ref.html", "==" ] ], {} ] ], - "clip-path-reference-box-004.html": [ - "eb89065364bbb23afc73278c29fe38c1343cdfd0", + "mask-repeat-3-svg.html": [ + "b7d64ac36560e43ea8a209b595ef010644877342", [ null, [ [ - "/css/css-masking/clip-path/reference/clip-path-reference-box-004-ref.html", + "/css/css-masking/mask-image/mask-repeat-3-ref.html", "==" ] ], {} ] ], - "clip-path-reference-restore.html": [ - "eccebd8fbcc3a556a13829be3e25c4efead3aafc", + "mask-repeat-3.html": [ + "cb950d4f2c4e01ea1048ff1930ad87eefacadf6f", [ null, [ [ - "/css/css-masking/clip-path/reference/clip-path-reference-restore-ref.html", + "/css/css-masking/mask-image/mask-repeat-3-ref.html", "==" ] ], {} ] ], - "clip-path-rotated-will-change-transform.html": [ - "a609e9cc91591b853db9713f7e981ecc4f666abb", + "mask-size-auto-auto.html": [ + "01d55f96298f20306fc4ffba31eb19079f802b6a", [ null, [ [ - "/css/css-masking/clip-path/clip-path-rotated-will-change-transform-ref.html", + "/css/css-masking/mask-image/mask-size-auto-ref.html", "==" ] ], {} ] ], - "clip-path-round-zero-size.html": [ - "59404f81c9dffe5695f31145b3486558f5bc7ab5", + "mask-size-auto-length.html": [ + "5ef49cc612f67993a2462d627404750b1191f287", [ - "css/css-masking/clip-path/clip-path-round-zero-size.html", + null, [ [ - "/css/css-masking/clip-path/clip-path-round-zero-size-ref.html", + "/css/css-masking/mask-image/mask-size-auto-length-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 64 - ], - [ - 0, - 100 - ] - ] - ] - ] - } + {} ] ], - "clip-path-scaled-video.html": [ - "c92702d8e78c0ef5f35fff7ebb8d4c16a752b261", + "mask-size-auto-percent.html": [ + "f2644bb1b018ed0d6b5f0781f5753f6a9b719f4a", [ null, [ [ - "/css/css-masking/clip-path/clip-path-scaled-video-ref.html", + "/css/css-masking/mask-image/mask-size-auto-length-ref.html", "==" ] ], {} ] ], - "clip-path-scroll.html": [ - "880fd8b77a603147cc2a4a3660bcabe74e427bba", + "mask-size-auto.html": [ + "6560a81ee3de242cec2cdc28b485d62aa901e2c2", [ null, [ [ - "/css/css-masking/clip-path/reference/clip-path-scroll-ref.html", + "/css/css-masking/mask-image/mask-size-auto-ref.html", "==" ] ], {} ] ], - "clip-path-shape-001.html": [ - "6033e9743e4f4656c63cb56e591b85b7c43313ae", + "mask-size-contain-clip-border.html": [ + "a04557639a72a947bea96e129dcbdcc79685f65c", [ null, [ [ - "/css/css-masking/clip-path/reference/clip-path-path-001-ref.html", + "/css/css-masking/mask-image/mask-size-contain-clip-border-ref.html", "==" ] ], {} ] ], - "clip-path-shape-002-units.html": [ - "b928876a0af353605de810bc70cd8294080bac22", + "mask-size-contain-clip-padding.html": [ + "4f321d9c58f68ab47dde7a256c8eb14c80539ea5", [ null, [ [ - "/css/css-masking/clip-path/reference/clip-path-path-002-ref.html", + "/css/css-masking/mask-image/mask-size-contain-clip-padding-ref.html", "==" ] ], {} ] ], - "clip-path-shape-002.html": [ - "3cb39f8d44863357d9a2e93cd0b166bccd69e73b", + "mask-size-contain-position-fifty-fifty.html": [ + "fcae5ba0ed2998aa3aaf11e12db51036eb17e9ac", [ null, [ [ - "/css/css-masking/clip-path/reference/clip-path-path-002-ref.html", + "/css/css-masking/mask-image/mask-size-contain-position-fifty-fifty-ref.html", "==" ] ], {} ] ], - "clip-path-shape-003.html": [ - "22e7d9aaf5374c9b7e4e3c2d50ecefbcec134b66", + "mask-size-contain.html": [ + "19fc42d6ec51a97e45e1a0c1156555407bd07874", [ null, [ [ - "/css/css-masking/clip-path/reference/clip-path-shape-003-ref.html", + "/css/css-masking/mask-image/mask-size-contain-ref.html", "==" ] ], {} ] ], - "clip-path-shape-004.html": [ - "14e3ba6329d5ebca161dd20a6a8a94053704829a", + "mask-size-cover.html": [ + "171e11805b3ba038cf7f6484452efe03c4f5a2a2", [ null, [ [ - "/css/css-masking/clip-path/reference/clip-path-shape-004-ref.html", + "/css/css-masking/mask-image/mask-size-cover-ref.html", "==" ] ], {} ] ], - "clip-path-shape-foreignobject-non-zero-xy.html": [ - "4e221f36e4cb7bc698f1929dcc09096114ab2693", + "mask-size-length-auto.html": [ + "7152f6ff954f1e8e7c76c28b8948872e3efc8f00", [ - "css/css-masking/clip-path/clip-path-shape-foreignobject-non-zero-xy.html", + null, [ [ - "/css/css-masking/clip-path/reference/green-100x100.html", + "/css/css-masking/mask-image/mask-size-length-length-ref.html", "==" ] ], {} ] ], - "clip-path-strokeBox-1a.html": [ - "487f5363b694304923538d0314d3c6d2a685da6b", + "mask-size-length-length.html": [ + "f9cf2cb6bcb91ccc8f11c76650c66afa9d64bc41", [ - "css/css-masking/clip-path/clip-path-strokeBox-1a.html", + null, [ [ - "/css/css-masking/clip-path/clip-path-geometryBox-1-ref.html", + "/css/css-masking/mask-image/mask-size-length-length-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 65 - ], - [ - 0, - 368 - ] - ] - ] - ] - } + {} ] ], - "clip-path-strokeBox-1b.html": [ - "33956e3d47817e974d5882c03db1c7ef36939c80", + "mask-size-length-percent.html": [ + "ba5bbbc55c504c6aac027bfde86210c3e68898b0", [ - "css/css-masking/clip-path/clip-path-strokeBox-1b.html", + null, [ [ - "/css/css-masking/clip-path/clip-path-geometryBox-1-ref.html", + "/css/css-masking/mask-image/mask-size-length-percent-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 64 - ], - [ - 0, - 260 - ] - ] - ] - ] - } + {} ] ], - "clip-path-strokeBox-1c.html": [ - "577e6d0a4e9f814d768a825c4e3fa27272c2b46d", + "mask-size-length.html": [ + "961357e12f7e1b1f8b49a63ece25179fa9f7e3e0", [ - "css/css-masking/clip-path/clip-path-strokeBox-1c.html", + null, [ [ - "/css/css-masking/clip-path/clip-path-geometryBox-1-ref.html", + "/css/css-masking/mask-image/mask-size-length-length-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 64 - ], - [ - 0, - 260 - ] - ] - ] - ] - } + {} ] ], - "clip-path-svg-invalidate.html": [ - "0bf921c7cf125c1e8a9e6842c62f294b13104790", + "mask-size-percent-auto.html": [ + "603346d6e6b9d4399c35920fb87fef535b043801", [ null, [ [ - "/css/css-masking/clip-path/clip-path-svg-invalidate-ref.html", + "/css/css-masking/mask-image/mask-size-percent-percent-ref.html", "==" ] ], {} ] ], - "clip-path-svg-text-backdrop-filter.html": [ - "68d462ab802fcc5be1280b797d972cfc515b6205", + "mask-size-percent-length.html": [ + "4ac9c8e81fddb12badbcf553d1399af170885fbb", [ null, [ [ - "/css/css-masking/clip-path/clip-path-svg-text-backdrop-filter-ref.html", + "/css/css-masking/mask-image/mask-size-percent-percent-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 1 - ], - [ - 0, - 200 - ] - ] - ] - ] - } + {} ] ], - "clip-path-svg-text-css.html": [ - "8a0d7111b0c3d86cf632e1d1c98c3fcf40d5b980", + "mask-size-percent-percent-stretch.html": [ + "69f89b8a984fb8bf3fa99e03ecc65d6a6b5bab58", [ - "css/css-masking/clip-path/clip-path-svg-text-css.html", + null, [ [ - "/css/css-masking/clip-path/reference/clip-path-svg-text-css-ref.html", + "/css/css-masking/mask-image/mask-size-percent-percent-stretch-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 1 - ], - [ - 0, - 200 - ] - ] - ] - ] - } + {} ] ], - "clip-path-svg-text-font-loading.html": [ - "230c36ce6e731b8303b78471454e5c78408f81d5", + "mask-size-percent-percent.html": [ + "7b04d9b6d54686b8def0e2c288a5e2af737508c4", [ - "css/css-masking/clip-path/clip-path-svg-text-font-loading.html", + null, [ [ - "/css/css-masking/clip-path/reference/green-100x100.html", + "/css/css-masking/mask-image/mask-size-percent-percent-ref.html", "==" ] ], {} ] ], - "clip-path-transform-mutated-001.html": [ - "01f11a34a33823651d46f4788ca12074f91560ed", + "mask-size-percent.html": [ + "2e056df5217b42a379bb3016a9245b04746b32c1", [ null, [ [ - "/css/css-masking/clip-path/reference/clip-path-transform-mutated-001-ref.html", + "/css/css-masking/mask-image/mask-size-percent-percent-ref.html", "==" ] ], {} ] - ], - "clip-path-transform-mutated-002.html": [ - "de00a013ad44b3f5c928e46829b75151e936c2af", + ] + }, + "mask-svg-content": { + "mask-empty-container-with-filter.svg": [ + "ebe7e7e4d1cecd5b8c8343cdac85be644724a24f", [ null, [ [ - "/css/css-masking/clip-path/reference/clip-path-transform-mutated-002-ref.html", + "/css/css-masking/mask-svg-content/reference/mask-green-square-001-ref.svg", "==" ] ], {} ] ], - "clip-path-url-reference-change-from-empty.html": [ - "2de0bb866f1c837887d6fa3c5889f8d38da3c055", + "mask-invalid-reference.svg": [ + "3d68fc0d745a57b5ac93a561329041519c19cbbb", [ null, [ [ - "/css/css-masking/clip-path/reference/green-100x100.html", + "/css/css-masking/mask-svg-content/reference/mask-green-square-001-ref.svg", "==" ] ], {} ] ], - "clip-path-url-reference-change.html": [ - "4a6266aabd0c5ecc0a3acf1f40ac55fbbcbab1e0", + "mask-negative-scale.svg": [ + "36b7abb42eb157b9feff158c6dfb399249ee437c", [ null, [ [ - "/css/css-masking/clip-path/reference/green-100x100.html", + "/css/css-masking/mask-svg-content/reference/mask-negative-scale-001-ref.svg", "==" ] ], {} ] ], - "clip-path-url-reference-svg-foreignobject-zoomed.html": [ - "df8d0cc89cc2211a29245797f135b98ed49e5cdc", + "mask-text-001.svg": [ + "587bd68f804626c46041adcd2f61c4504ef16e26", [ - "css/css-masking/clip-path/clip-path-url-reference-svg-foreignobject-zoomed.html", + null, [ [ - "/css/css-masking/clip-path/reference/green-100x100.html", + "/css/css-masking/mask-svg-content/reference/mask-text-001-ref.svg", "==" ] ], {} ] ], - "clip-path-viewBox-1a.html": [ - "5b029e1ef7cfea200416bd99314c7288e44e3f60", + "mask-type-001.svg": [ + "9bcc40d55b1eba6d2811a3529f33a8f1a7ecdd03", [ null, [ [ - "/css/css-masking/clip-path/clip-path-geometryBox-1-ref.html", + "/css/css-masking/mask-svg-content/reference/mask-green-square-001-ref.svg", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 62 - ], - [ - 0, - 420 - ] - ] - ] - ] - } + {} ] ], - "clip-path-viewBox-1b.html": [ - "7d44efb81ea6f5892935cd121b85a712ea03bb2b", + "mask-type-002.svg": [ + "c298297329cf2d04bb53ae7cf8dbbb42551dfe4c", [ - "css/css-masking/clip-path/clip-path-viewBox-1b.html", + null, [ [ - "/css/css-masking/clip-path/clip-path-geometryBox-1-ref.html", + "/css/css-masking/mask-svg-content/reference/mask-green-square-001-ref.svg", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 36 - ], - [ - 0, - 376 - ] - ] - ] - ] - } + {} ] ], - "clip-path-viewBox-1c.html": [ - "d46c6d2f03ea8fc93bb3f47d15d36d8a66202573", + "mask-type-003.svg": [ + "891405dc46a5d200873d94608ea6de71e77adf38", [ - "css/css-masking/clip-path/clip-path-viewBox-1c.html", + null, [ [ - "/css/css-masking/clip-path/clip-path-geometryBox-1-ref.html", + "/css/css-masking/mask-svg-content/reference/mask-green-square-001-ref.svg", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 65 - ], - [ - 0, - 368 - ] - ] - ] - ] - } + {} ] ], - "clip-path-viewBox-1d.html": [ - "0d58e4f331b5088acd15bd3313cc511584fc8662", + "mask-with-filter-clipped-to-region.svg": [ + "3307ce5101d77d5096b1cf270f2a7fa52474c2e4", [ - "css/css-masking/clip-path/clip-path-viewBox-1d.html", + null, [ [ - "/css/css-masking/clip-path/clip-path-geometryBox-1-ref.html", + "/css/css-masking/mask-svg-content/reference/mask-green-square-001-ref.svg", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 64 - ], - [ - 0, - 376 - ] - ] - ] - ] - } + {} ] ], - "clip-path-xywh-001.html": [ - "a3d55c277cad706fd36c94c73731b5f6c366fc0b", + "mask-with-filter.svg": [ + "aaa383983fd97d4e819a3a24867c5aa3d40f951a", [ - "css/css-masking/clip-path/clip-path-xywh-001.html", + null, [ [ - "/css/css-masking/clip-path/reference/clip-path-rectangle-ref.html", + "/css/css-masking/mask-svg-content/reference/mask-green-square-001-ref.svg", "==" ] ], {} ] ], - "clip-path-xywh-002.html": [ - "be317ec0d489c640507e7491416914e0c891f6c8", + "mask-with-rotation.svg": [ + "9964fd524a1b8eb2815b8f3ecc01e53e6ce8604c", [ - "css/css-masking/clip-path/clip-path-xywh-002.html", + null, [ [ - "/css/css-masking/clip-path/reference/clip-path-rectangle-ref.html", + "/css/css-masking/mask-svg-content/reference/mask-green-square-001-ref.svg", "==" ] ], {} ] - ], - "clip-path-xywh-003.html": [ - "370e1af9757cb6cc067d911ec58bda41aff5bcff", + ] + } + }, + "css-multicol": { + "abspos-after-spanner-static-pos.html": [ + "0cc6b0865005f6d66f84094148e5f7be11a54fab", + [ + null, [ - "css/css-masking/clip-path/clip-path-xywh-003.html", [ - [ - "/css/css-masking/clip-path/reference/clip-path-xywh-003-ref.html", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 2 - ], - [ - 0, - 32 - ] - ] - ] - ] - } - ] - ], - "reference-local-url-with-base-001.html": [ - "c65761bddfc095e0e85b4feaea4359516a8df5b1", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "abspos-after-spanner.html": [ + "98664b50cc144adf01817e98fe844d68d877dbe9", + [ + null, [ - null, [ - [ - "/css/css-masking/clip-path/reference/reference-local-url-with-base-001-ref.html", - "==" - ] - ], - {} - ] - ], - "reference-mutated.html": [ - "09642853c775f33ce3b8dbd6ee26e8eba05e1b3e", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "abspos-autopos-contained-by-viewport-000.html": [ + "8dbf5215b0176c9079511ef6c6e461245c28aa85", + [ + null, [ - null, [ - [ - "/css/css-masking/clip-path/reference/reference-mutated-ref.html", - "==" - ] - ], - {} - ] - ], - "reference-nonexisting-existing-local.html": [ - "d02e1439e64e79a65c185c703e4813e33225e679", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "abspos-autopos-contained-by-viewport-001.html": [ + "05af3e91a0b72423475526ebe0d4010f01d87c0a", + [ + null, [ - null, [ - [ - "/css/css-masking/clip-path/reference/reference-nonexisting-existing-local-ref.html", - "==" - ] - ], - {} - ] - ], - "svg-clip-path-circle-offset.html": [ - "ec4cbaeb25203d8d8897d004a4e9c1ba0986350d", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "abspos-containing-block-outside-spanner.html": [ + "1f0419d9c982588a93ad981656ca1271144756dd", + [ + null, [ - null, [ - [ - "/css/css-masking/clip-path/svg-clip-path-circle-offset-ref.html", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 62 - ], - [ - 0, - 420 - ] - ] - ] - ] - } - ] - ], - "svg-clip-path-ellipse-offset.html": [ - "2b0876eb5890c0aa2cc6fcbf054b70efed16a9d7", + "/css/css-multicol/abspos-containing-block-outside-spanner-ref.html", + "==" + ] + ], + {} + ] + ], + "abspos-multicol-in-second-outer-clipped.html": [ + "9e1b3df69c554e75672cded3e258857bf06b153c", + [ + null, [ - null, [ - [ - "/css/css-masking/clip-path/svg-clip-path-ellipse-offset-ref.html", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 69 - ], - [ - 0, - 394 - ] - ] - ] - ] - } - ] - ], - "svg-clip-path-fixed-values.html": [ - "eb2c44fbb23bd18456b97416cb4c55ba701b6105", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "always-balancing-before-column-span.html": [ + "a80617b96ef8c4e1061640ac0347c5a5cd96af71", + [ + null, [ - "css/css-masking/clip-path/svg-clip-path-fixed-values.html", [ - [ - "/css/css-masking/clip-path/svg-clip-path-fixed-values-ref.html", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 62 - ], - [ - 0, - 608 - ] - ] - ] - ] - } - ] + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} ] - }, - "clip-path-svg-content": { - "clip-path-clip-nested-twice.svg": [ - "269e8feed2d3c21774a7c94729c3551899ce4d92", + ], + "as-column-flex-item.html": [ + "21ff8d8d50cf97ecb22cd05cf1ae774d4aa81cdd", + [ + null, [ - null, [ - [ - "/css/css-masking/clip-path-svg-content/reference/clip-path-square-002-ref.svg", - "==" - ] - ], - {} - ] - ], - "clip-path-clip-rule-001.svg": [ - "e5b972ff0bc95905af8390d384e5611e11868a05", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "balance-break-avoidance-000.html": [ + "f6540e4ab0c1ba55ebef6463f90f2246f2801443", + [ + null, [ - null, [ - [ - "/css/css-masking/clip-path-svg-content/reference/clip-path-square-hole-001-ref.svg", - "==" - ] - ], - {} - ] - ], - "clip-path-clip-rule-002.svg": [ - "7729f7973178db0188e2041737bd89768a04a430", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "balance-break-avoidance-001.html": [ + "1449110516f35ac89bcadd0dfc59fbff3961966d", + [ + null, [ - null, [ - [ - "/css/css-masking/clip-path-svg-content/reference/clip-path-square-001-ref.svg", - "==" - ] - ], - {} - ] - ], - "clip-path-clip-rule-003.svg": [ - "c4f2bf42b0174a72a0cbaec269439416a3e963e1", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "balance-break-avoidance-002.html": [ + "4506ef6add52ead40e8fd9cd1326e1e1dba6e813", + [ + null, [ - null, [ - [ - "/css/css-masking/clip-path-svg-content/reference/clip-path-square-hole-001-ref.svg", - "==" - ] - ], - {} - ] - ], - "clip-path-clip-rule-004.svg": [ - "2ea618602ae387b4cabbb6bf3abba304588b5c9b", + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "balance-grid-container.html": [ + "64df23e09fb62c6e71aa834c96b72d4bf2330f06", + [ + null, [ - null, [ - [ - "/css/css-masking/clip-path-svg-content/reference/clip-path-square-001-ref.svg", - "==" - ] - ], - {} - ] - ], - "clip-path-clip-rule-005.svg": [ - "ca492583cd7b77605db274fc1894621852dc47e8", + "/css/css-multicol/balance-grid-container-ref.html", + "==" + ] + ], + {} + ] + ], + "balance-orphans-widows-000.html": [ + "97f2d0ccd17699b7b43c6cdc01e0edcde049de9d", + [ + null, [ - null, [ - [ - "/css/css-masking/clip-path-svg-content/reference/clip-path-clip-rule-001-ref.svg", - "==" - ] - ], - {} - ] - ], - "clip-path-clip-rule-006.svg": [ - "da9d1010d5423014323a503da47f6b8562d4fe13", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "baseline-000.html": [ + "e01e9de1dd124af08eb5a2aa07f36254769375a7", + [ + null, [ - null, [ - [ - "/css/css-masking/clip-path-svg-content/reference/clip-path-clip-rule-002-ref.svg", - "==" - ] - ], - {} - ] - ], - "clip-path-clip-rule-007.svg": [ - "d1edb6cd9aca29dce860082e3e99d0b6876cc70d", + "/css/css-multicol/baseline-000-ref.html", + "==" + ] + ], + {} + ] + ], + "baseline-001.html": [ + "171c53f3cc2e0476e7d079e74f4c6012cff4122b", + [ + null, [ - null, [ - [ - "/css/css-masking/clip-path-svg-content/reference/clip-path-clip-rule-003-ref.svg", - "==" - ] - ], - {} - ] - ], - "clip-path-clip-rule-008.svg": [ - "66ad9b5cb9b68a2ce25776167ddbfc4e8de6692c", + "/css/css-multicol/baseline-001-ref.html", + "==" + ] + ], + {} + ] + ], + "baseline-002.html": [ + "b1e660bd9e9a5cc3bfc6d0b58d0a67b95e4ab4fc", + [ + null, [ - null, [ - [ - "/css/css-masking/clip-path-svg-content/reference/clip-path-clip-rule-004-ref.svg", - "==" - ] - ], - {} - ] - ], - "clip-path-clip-rule-009.svg": [ - "69d70b4e3e3bf14103f5a56c1c1cd0cc0ac36c6d", + "/css/css-multicol/baseline-002-ref.html", + "==" + ] + ], + {} + ] + ], + "baseline-003.html": [ + "7d1f252d472ed986ea5047e46336053d3b1c3e01", + [ + null, [ - null, [ - [ - "/css/css-masking/clip-path-svg-content/reference/clip-path-square-001-ref.svg", - "==" - ] - ], - {} - ] - ], - "clip-path-clip-rule-010.svg": [ - "594e3097c9014b84ba4d84cf513113b5314a1809", + "/css/css-multicol/baseline-003-ref.html", + "==" + ] + ], + {} + ] + ], + "baseline-004.html": [ + "b14d42761c76df1ef9c53fa07cae23536e9935e8", + [ + null, [ - null, [ - [ - "/css/css-masking/clip-path-svg-content/reference/clip-path-clip-rule-001-ref.svg", - "==" - ] - ], - {} - ] - ], - "clip-path-clip.svg": [ - "530fd014d325f15aa5f694a21733d9c4630e1527", + "/css/css-multicol/baseline-004-ref.html", + "==" + ] + ], + {} + ] + ], + "baseline-005.html": [ + "e1bf253dbce7fa932fee883a38f6757f67ca7b7f", + [ + null, [ - null, [ - [ - "/css/css-masking/clip-path-svg-content/reference/clip-path-square-002-ref.svg", - "==" - ] - ], - {} - ] - ], - "clip-path-content-clip-001.svg": [ - "9991f164769f93eb75518287ec4db887f18a1450", + "/css/css-multicol/baseline-005-ref.html", + "==" + ] + ], + {} + ] + ], + "baseline-006.html": [ + "c55ed730258050f7d73429ddc76be4fd24749961", + [ + null, [ - null, [ - [ - "/css/css-masking/clip-path-svg-content/reference/clip-path-square-002-ref.svg", - "==" - ] - ], - {} - ] - ], - "clip-path-content-clip-002.svg": [ - "7677e3f19a5bb92391799c33a13cd2d2487f0e40", + "/css/css-multicol/baseline-006-ref.html", + "==" + ] + ], + {} + ] + ], + "baseline-007.html": [ + "95f18fe850e474665f4370088a31ec3463c73616", + [ + null, [ - null, [ - [ - "/css/css-masking/clip-path-svg-content/reference/clip-path-square-002-ref.svg", - "==" - ] - ], - {} - ] - ], - "clip-path-content-clip-003.svg": [ - "fd1b29162570d5f6264ea36abbb72e90a8fdcee4", + "/css/css-multicol/baseline-007-ref.html", + "==" + ] + ], + {} + ] + ], + "baseline-008.html": [ + "beb19ca44741aad5bc8f4fd55af8694d615972c5", + [ + null, [ - null, [ - [ - "/css/css-masking/clip-path-svg-content/reference/clip-path-square-002-ref.svg", - "==" - ] - ], - {} - ] - ], - "clip-path-content-clip-004.svg": [ - "2317842e5ff2526635097511999ebc007724c514", + "/css/css-multicol/baseline-008-ref.html", + "==" + ] + ], + {} + ] + ], + "broken-column-rule-1.html": [ + "13deaa72cb7d28e47e316cc54f1b0a062ac6be4c", + [ + null, [ - null, [ - [ - "/css/css-masking/clip-path-svg-content/reference/clip-path-content-clip-004-ref.svg", - "==" - ] - ], - {} - ] - ], - "clip-path-content-invisible.svg": [ - "0696d4b09fd125f0682ac6652236f8122d4b4d7c", + "/css/css-multicol/broken-column-rule-1-ref.html", + "==" + ] + ], + {} + ] + ], + "change-fragmentainer-size-000.html": [ + "823506d1c55e23addc2838ee3c92bf19995d8ec5", + [ + null, [ - null, [ - [ - "/css/css-masking/clip-path-svg-content/reference/clip-path-invisible-ref.svg", - "==" - ] - ], - {} - ] - ], - "clip-path-content-syling.svg": [ - "5fb527d1e5b6c5a918f0580975dc068ed28876a9", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "change-fragmentainer-size-001.html": [ + "d9ae7b1b6628c51e239977e23bf3ec97dc347737", + [ + null, [ - null, [ - [ - "/css/css-masking/clip-path-svg-content/reference/clip-path-square-002-ref.svg", - "==" - ] - ], - {} - ] - ], - "clip-path-content-use-001.svg": [ - "b70cdde6831a6df7c82a9a768c56f866dd06df74", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "change-fragmentainer-size-002.html": [ + "4b3804361e1cb432962275726fc355fcc5e415f6", + [ + null, [ - null, [ - [ - "/css/css-masking/clip-path-svg-content/reference/clip-path-square-002-ref.svg", - "==" - ] - ], - {} - ] - ], - "clip-path-content-use-002.svg": [ - "0596d21cfed89221b01d19c23b462434c789041f", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "change-fragmentainer-size-003.html": [ + "b8fae275022202f4ec3491167a0080eb8484ed16", + [ + null, [ - null, [ - [ - "/css/css-masking/clip-path-svg-content/reference/clip-path-square-002-ref.svg", - "==" - ] - ], - {} - ] - ], - "clip-path-content-use-003.svg": [ - "79354679cfc1de9e5f6f7df04d745a4cb54072c3", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "change-intrinsic-width.html": [ + "3df3e1ebc8f9b5780dc858a878bca13dbedcdb35", + [ + null, [ - null, [ - [ - "/css/css-masking/clip-path-svg-content/reference/clip-path-square-002-ref.svg", - "==" - ] - ], - {} - ] - ], - "clip-path-content-use-004.svg": [ - "8e2e7a67ae1992c98b0c097acbfc21221605d8af", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "change-transform-in-nested.html": [ + "fd5420beceb08004f9a8cd13f79e52a8e87d15c0", + [ + null, [ - null, [ - [ - "/css/css-masking/clip-path-svg-content/reference/clip-path-square-002-ref.svg", - "==" - ] - ], - {} - ] - ], - "clip-path-content-use-005.svg": [ - "c7d5ec83901f010700436e045d761f425770b304", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "change-transform-in-second-column.html": [ + "c627c33fbf8ac395870953dc785463d2f15d682d", + [ + null, [ - null, [ - [ - "/css/css-masking/clip-path-svg-content/reference/clip-path-square-002-ref.svg", - "==" - ] - ], - {} - ] - ], - "clip-path-content-use-006.svg": [ - "6f9d7e0673f5560df7ba44423c2530b87b8fb38f", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "change-transform-in-spanner.html": [ + "a70a4151c4f6c9042f5f81ce7ffdcf4933578c3a", + [ + null, [ - null, [ - [ - "/css/css-masking/clip-path-svg-content/reference/clip-path-square-002-ref.svg", - "==" - ] - ], - {} - ] - ], - "clip-path-content-use-007.svg": [ - "7cf0fa08e5495ee21d18c1a4fc7a57b09edb2d0c", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "change-transform.html": [ + "a70a4151c4f6c9042f5f81ce7ffdcf4933578c3a", + [ + null, [ - null, [ - [ - "/css/css-masking/clip-path-svg-content/reference/clip-path-square-003-ref.svg", - "==" - ] - ], - {} - ] - ], - "clip-path-css-transform-001.svg": [ - "35b21f5f1e04fd04999949ac2b3036157c044e10", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "column-balancing-with-span-and-oof-001.html": [ + "7ecd9ee873843db33c7457c974b5fd87ac893a21", + [ + null, [ - null, [ - [ - "/css/css-masking/clip-path-svg-content/reference/clip-path-square-002-ref.svg", - "==" - ] - ], - {} - ] - ], - "clip-path-css-transform-002.svg": [ - "78b57628ff873f74bfb9367ff5c5df910fcd1bd9", + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "column-balancing-with-span-and-oof-002.html": [ + "71df0e222957f298d6ad6a46fdf0586a8f1d7088", + [ + null, [ - null, [ - [ - "/css/css-masking/clip-path-svg-content/reference/clip-path-square-002-ref.svg", - "==" - ] - ], - {} - ] - ], - "clip-path-css-transform-003.svg": [ - "8f2713d2761d1437e5d584f619b5be4b37202e8d", + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "column-count-used-001.html": [ + "2949a1996ebae0c48329906ea7ef34c83080e90f", + [ + null, [ - null, [ - [ - "/css/css-masking/clip-path-svg-content/reference/clip-path-square-003-ref.svg", - "==" - ] - ], - {} - ] - ], - "clip-path-css-transform-004.svg": [ - "d290fe13a7c29c9d43e2d323b7de9fa3b3d8b7fe", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "column-fill-balance-orthog-block-001.html": [ + "be665763df4839c5885968e67a9eb89dac66458a", + [ + null, [ - null, [ - [ - "/css/css-masking/clip-path-svg-content/reference/clip-path-square-003-ref.svg", - "==" - ] - ], - {} - ] - ], - "clip-path-dom-child-changes.svg": [ - "611fb3fcf0a091ef16d28e11d4555af2144361c1", + "/css/css-multicol/reference/column-fill-balance-orthog-block-001-ref.html", + "==" + ] + ], + {} + ] + ], + "columnfill-auto-max-height-001.html": [ + "bc76caa5474259820d5a8a63a606fccab3b8c270", + [ + null, [ - null, [ - [ - "/css/css-masking/clip-path-svg-content/reference/clip-path-square-003-ref.svg", - "==" - ] - ], - {} - ] - ], - "clip-path-dom-clippathunits.svg": [ - "edfccbd83f86b39443d7e46503bb4203e9fd5a07", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "columnfill-auto-max-height-002.html": [ + "ae2e81d6aa5a587b505beeef98bf51adf829c786", + [ + null, [ - null, [ - [ - "/css/css-masking/clip-path-svg-content/reference/clip-path-square-003-ref.svg", - "==" - ] - ], - {} - ] - ], - "clip-path-dom-href.svg": [ - "748ff2cc5c7fa06ceaabc71f3b9b0d258fec2e31", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "columnfill-auto-max-height-003.html": [ + "a632c8fbbd72ad51c0ecb67cd34eeb03f1a3508c", + [ + null, [ - null, [ - [ - "/css/css-masking/clip-path-svg-content/reference/clip-path-square-003-ref.svg", - "==" - ] - ], - {} - ] - ], - "clip-path-dom-id.svg": [ - "e8ad7daeccbe7de5b738dd6dafedb501e1669338", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "composited-under-clip-under-multicol.html": [ + "a47ed89a2e0eb11624bfb5c96d547f632f9c27e7", + [ + null, [ - null, [ - [ - "/css/css-masking/clip-path-svg-content/reference/clip-path-square-003-ref.svg", - "==" - ] - ], - {} - ] - ], - "clip-path-inset-stroke-001.svg": [ - "06c810cd1119d76b9a6c903249d6d4015c25cd1f", + "/css/css-multicol/composited-under-clip-under-multicol-ref.html", + "==" + ] + ], + {} + ] + ], + "equal-gap-and-rule.html": [ + "bf6d6b9cefa8cf4ccf3be422ffef942ddc595905", + [ + null, [ - "css/css-masking/clip-path-svg-content/clip-path-inset-stroke-001.svg", [ - [ - "/css/css-masking/clip-path-svg-content/reference/clip-path-square-002-ref.svg", - "==" - ] - ], - {} - ] - ], - "clip-path-inset-stroke-002.svg": [ - "bfc60355bac88acc48c1a5b87115a5fced653a55", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "fixed-in-multicol-with-transform-container.html": [ + "ee384c378e537e413981ebfff94fbe3aecc69c6b", + [ + null, [ - "css/css-masking/clip-path-svg-content/clip-path-inset-stroke-002.svg", [ - [ - "/css/css-masking/clip-path-svg-content/reference/clip-path-square-002-ref.svg", - "==" - ] - ], - {} - ] - ], - "clip-path-invalid-reference.svg": [ - "714d90ee767f0b065dfa6fe2b1a749a6d01d95e4", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "fixed-in-nested-multicol-with-transform-container.html": [ + "df836c18ea76c2fd65bf4ee84872a5e1e6ac7096", + [ + null, [ - "css/css-masking/clip-path-svg-content/clip-path-invalid-reference.svg", [ - [ - "/css/css-masking/clip-path-svg-content/reference/clip-path-green-square-001-ref.svg", - "==" - ] - ], - {} - ] - ], - "clip-path-invalid.svg": [ - "85aa3a825b92d928bd32c197bfc9bdbfa074e0be", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "fixed-in-nested-multicol-with-viewport-container.html": [ + "f3681f09176563197ebb6b40f8db247be7c8293d", + [ + null, [ - null, [ - [ - "/css/css-masking/clip-path-svg-content/reference/clip-path-invisible-ref.svg", - "==" - ] - ], - {} - ] - ], - "clip-path-negative-scale.svg": [ - "33d6a78c7da959c42339d7e514d2d1611fee2a9e", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "fixed-in-nested-multicol.html": [ + "0745b8394ad9efabab39ad138624d1e2389420db", + [ + null, [ - null, [ - [ - "/css/css-masking/clip-path-svg-content/reference/clip-path-negative-scale-ref.svg", - "==" - ] - ], - {} - ] - ], - "clip-path-no-content-001.svg": [ - "f7943c615d000bd9e8a4f6c0c8d5337e3cd273cb", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "fixed-size-child-with-overflow.html": [ + "60300c3cd65ba455eb6ef7ab29bf5bc2ec6e4166", + [ + null, [ - null, [ - [ - "/css/css-masking/clip-path-svg-content/reference/clip-path-invisible-ref.svg", - "==" - ] - ], - {} - ] - ], - "clip-path-no-content-002.svg": [ - "65df6176ac1de4970d97f4c09c667ed9de050a91", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "fixedpos-static-pos-with-viewport-cb-001.html": [ + "8b71999a23b7aafd9e720cc7496444d03e475a39", + [ + null, [ - null, [ - [ - "/css/css-masking/clip-path-svg-content/reference/clip-path-invisible-ref.svg", - "==" - ] - ], - {} - ] - ], - "clip-path-no-content-003.svg": [ - "afd8f702ed4d19972971fe008db1e4f5c8436efd", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "fixedpos-static-pos-with-viewport-cb-002.html": [ + "c2afef38aa2c58de083f4fc000d537c31e506ff4", + [ + null, [ - null, [ - [ - "/css/css-masking/clip-path-svg-content/reference/clip-path-invisible-ref.svg", - "==" - ] - ], - {} - ] - ], - "clip-path-no-content-004.svg": [ - "92b27af017cba0f0175c9ab6b7495f52e3fdf68c", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "fixedpos-static-pos-with-viewport-cb-003.html": [ + "fc29b5cb16e1675be29a5592b1a6ab05f1b9aa73", + [ + null, [ - null, [ - [ - "/css/css-masking/clip-path-svg-content/reference/clip-path-invisible-ref.svg", - "==" - ] - ], - {} - ] - ], - "clip-path-no-content-005.svg": [ - "e0c03d28cb0509e31ffb12034a138e0fb9b43da1", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "float-and-block.html": [ + "21f9fb97436be415dfad77a83f2c1f085dbc0700", + [ + null, [ - null, [ - [ - "/css/css-masking/clip-path-svg-content/reference/clip-path-square-003-ref.svg", - "==" - ] - ], - {} - ] - ], - "clip-path-objectboundingbox-001.svg": [ - "d5ef03ac01166554fa573dda10496e598300c82b", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "float-with-line-after-spanner.html": [ + "2351fb4bec9fe454a3f3d4ae9d82f67fc32736a4", + [ + null, [ - null, [ - [ - "/css/css-masking/clip-path-svg-content/reference/clip-path-square-002-ref.svg", - "==" - ] - ], - {} - ] - ], - "clip-path-objectboundingbox-002.svg": [ - "8180ddf9f85972bd13f573632ba98a649b60c6ad", + "/css/css-multicol/float-with-line-after-spanner-ref.html", + "==" + ] + ], + {} + ] + ], + "increase-prev-sibling-height.html": [ + "416f811f28c319f5e39064d424c68c0d743f98bf", + [ + null, [ - null, [ - [ - "/css/css-masking/clip-path-svg-content/reference/clip-path-square-002-ref.svg", - "==" - ] - ], - {} - ] - ], - "clip-path-objectboundingbox-003.svg": [ - "8a7aa0ff5cfdf2520fcaa76a2fb47f7cf3a54dbf", + "/css/css-multicol/increase-prev-sibling-height-ref.html", + "==" + ] + ], + {} + ] + ], + "inline-block-and-column-span-all.html": [ + "c968a0875cd7cc41c3c1dd83abee425ba0e639bb", + [ + null, [ - null, [ - [ - "/css/css-masking/clip-path-svg-content/reference/clip-path-circle-001-ref.svg", - "==" - ] - ], - {} - ] - ], - "clip-path-objectboundingbox-004.svg": [ - "215d2536183253a89cb647657f370cd79fd45473", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "intrinsic-size-001.html": [ + "ce8011b17f82407599ea28a2eaf543ec9d45a98b", + [ + null, [ - null, [ - [ - "/css/css-masking/clip-path-svg-content/reference/clip-path-square-002-ref.svg", - "==" - ] - ], - {} - ] - ], - "clip-path-on-g-001.svg": [ - "6d837af68b4d82f3fe2e2921745816d03ac89bf5", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "intrinsic-size-002.html": [ + "a85f14e9146a94f20f99f22d345be2b3a2ec973e", + [ + null, [ - null, [ - [ - "/css/css-masking/clip-path-svg-content/reference/clip-path-square-002-ref.svg", - "==" - ] - ], - {} - ] - ], - "clip-path-on-g-002.svg": [ - "a14287cbc96d65b4eaec741a857b1201bc5275bb", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "intrinsic-size-003.html": [ + "86f67341d7dd7aec3c4fa4558756b87b9287e961", + [ + null, [ - null, [ - [ - "/css/css-masking/clip-path-svg-content/reference/clip-path-square-002-ref.svg", - "==" - ] - ], - {} - ] - ], - "clip-path-on-g-003.svg": [ - "b3eead8ac2ab05297fb12c691e846bde20bf72c4", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "intrinsic-size-004.html": [ + "d603ae02e6f15c06a3337cc560dce37c1abbda09", + [ + null, [ - null, [ - [ - "/css/css-masking/clip-path-svg-content/reference/clip-path-square-002-ref.svg", - "==" - ] - ], - {} - ] - ], - "clip-path-on-g-004.svg": [ - "32eaf00369b9e981983b79d1abfc4e2f07c6aafd", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "intrinsic-size-005.html": [ + "5f128365134c3669764f42dcff917f5ef121cc9b", + [ + null, [ - null, [ - [ - "/css/css-masking/clip-path-svg-content/reference/clip-path-square-002-ref.svg", - "==" - ] - ], - {} - ] - ], - "clip-path-on-g-005.svg": [ - "c621d91c3e92835df5458ff4e0864228a215d33b", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "intrinsic-width-change-column-count.html": [ + "30e7671e41c3879ceef30627b3d5b65dc8c0ff86", + [ + null, [ - null, [ - [ - "/css/css-masking/clip-path-svg-content/reference/clip-path-square-002-ref.svg", - "==" - ] - ], - {} - ] - ], - "clip-path-on-marker-001.svg": [ - "ae5df003fa908b81081d6ddb0852290e779a74e3", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "large-actual-column-count.html": [ + "615e3f2f0598973d66518b7abbabe2fbf2f76bda", + [ + null, [ - null, [ - [ - "/css/css-masking/clip-path-svg-content/reference/clip-path-on-marker-001-ref.svg", - "==" - ] - ], - {} - ] - ], - "clip-path-on-marker-002.svg": [ - "4f2ffa4c7a4f0069ca8f709e640038c57d5b1139", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "move-with-text-after-paint.html": [ + "1ea3d4b58bce1fe07a57faa05b008e426368925a", + [ + null, [ - null, [ - [ - "/css/css-masking/clip-path-svg-content/reference/clip-path-on-marker-002-ref.svg", - "==" - ] - ], - {} - ] - ], - "clip-path-on-marker-003.svg": [ - "45fc0fbd37dcc9e4d346b79b38d190cae3f691b1", + "/css/css-multicol/move-with-text-after-paint-ref.html", + "==" + ] + ], + {} + ] + ], + "multicol-basic-001.html": [ + "702cf549b1e572f4b6e17ba637603f5667d64b1c", + [ + null, [ - null, [ - [ - "/css/css-masking/clip-path-svg-content/reference/clip-path-on-marker-001-ref.svg", - "==" - ] - ], - {} - ] - ], - "clip-path-on-svg-001.svg": [ - "e92ce1d10fb229d5441032a55ce90d1cade03cfe", + "/css/css-multicol/reference/multicol-basic-ref.html", + "==" + ] + ], + {} + ] + ], + "multicol-basic-002.html": [ + "50334e96d604092f43fa2583fac0cec7062cfda6", + [ + null, [ - null, [ - [ - "/css/css-masking/clip-path-svg-content/reference/clip-path-square-002-ref.svg", - "==" - ] - ], - {} - ] - ], - "clip-path-on-svg-002.svg": [ - "94067d4ba32c1da540fed3c5ccf5d77d9b26d3d5", + "/css/css-multicol/reference/multicol-basic-ref.html", + "==" + ] + ], + {} + ] + ], + "multicol-basic-003.html": [ + "05cc1e0fe1f3259978c0eff8b55a349bab58e5ba", + [ + null, [ - null, [ - [ - "/css/css-masking/clip-path-svg-content/reference/clip-path-square-002-ref.svg", - "==" - ] - ], - {} - ] - ], - "clip-path-on-svg-003.svg": [ - "01c4a2610e8cde9e8400fbc2a023ab936babd3ad", + "/css/css-multicol/reference/multicol-basic-ref.html", + "==" + ] + ], + {} + ] + ], + "multicol-basic-004.html": [ + "a6699692612985852375d0201330f31b6c64e3b3", + [ + null, [ - "css/css-masking/clip-path-svg-content/clip-path-on-svg-003.svg", [ - [ - "/css/css-masking/clip-path-svg-content/reference/clip-path-square-002-ref.svg", - "==" - ] - ], - {} - ] - ], - "clip-path-on-svg-004.svg": [ - "62a020e558676f533add52c8de80518eb54e6041", + "/css/css-multicol/reference/multicol-basic-ref.html", + "==" + ] + ], + {} + ] + ], + "multicol-basic-005.xht": [ + "a4d0e69a5a47455253d042d9272db9dd7a960c39", + [ + null, [ - "css/css-masking/clip-path-svg-content/clip-path-on-svg-004.svg", [ - [ - "/css/css-masking/clip-path-svg-content/reference/clip-path-square-002-ref.svg", - "==" - ] - ], - {} - ] - ], - "clip-path-on-svg-005.svg": [ - "c39d2660280826b6ec2f579d011df3cc2a7f5572", + "/css/css-multicol/reference/multicol-basic-005-ref.xht", + "==" + ] + ], + {} + ] + ], + "multicol-basic-006.xht": [ + "cf407ed20153b6280dc085d4d76c922146976367", + [ + null, [ - "css/css-masking/clip-path-svg-content/clip-path-on-svg-005.svg", [ - [ - "/css/css-masking/clip-path-svg-content/reference/clip-path-square-002-ref.svg", - "==" - ] - ], - {} - ] - ], - "clip-path-on-use-001.svg": [ - "8a2cf81c51de6f62d498c3d2e4cfe7a50113a0f1", + "/css/css-multicol/reference/multicol-basic-005-ref.xht", + "==" + ] + ], + {} + ] + ], + "multicol-basic-007.xht": [ + "add6a0ed667d8178408ffa1e78b800348a54abe8", + [ + null, [ - null, [ - [ - "/css/css-masking/clip-path-svg-content/reference/clip-path-square-002-ref.svg", - "==" - ] - ], - {} - ] - ], - "clip-path-on-use-002.svg": [ - "22e5ab71515aac51509cd5efe21a4863dc83303c", + "/css/css-multicol/reference/multicol-basic-005-ref.xht", + "==" + ] + ], + {} + ] + ], + "multicol-basic-008.xht": [ + "a2f550ca52a15d9f32e505abd494fb763538949d", + [ + null, [ - null, [ - [ - "/css/css-masking/clip-path-svg-content/reference/clip-path-square-002-ref.svg", - "==" - ] - ], - {} - ] - ], - "clip-path-precision-001.svg": [ - "aa8e5ba7e1586f5dd5db7f5520648681bdfcbb96", + "/css/css-multicol/reference/multicol-basic-005-ref.xht", + "==" + ] + ], + {} + ] + ], + "multicol-block-no-clip-001.xht": [ + "239ecfe74e7552c13e991e769ba93a9789d129d5", + [ + null, [ - null, [ - [ - "/css/css-masking/clip-path-svg-content/reference/clip-path-precision-001-ref.svg", - "==" - ] - ], - {} - ] - ], - "clip-path-recursion-001.svg": [ - "5d4b7c2710821f9f4c9902aec12b33b520ed3aa1", + "/css/css-multicol/multicol-block-no-clip-001-ref.xht", + "==" + ] + ], + {} + ] + ], + "multicol-block-no-clip-002.xht": [ + "52439d2b849d2600820ead7cd36f9b10cd7b8da9", + [ + null, [ - null, [ - [ - "/css/css-masking/clip-path-svg-content/reference/clip-path-invisible-ref.svg", - "==" - ] - ], - {} - ] - ], - "clip-path-recursion-002.svg": [ - "7d921ee67d4417f8e510e2793c678bca4235adf7", + "/css/css-multicol/multicol-block-no-clip-002-ref.xht", + "==" + ] + ], + {} + ] + ], + "multicol-br-inside-avoidcolumn-001.xht": [ + "49e28fa8576ffb29c9376fd44f4d2dfbb520098b", + [ + null, [ - null, [ - [ - "/css/css-masking/clip-path-svg-content/reference/clip-path-recursion-002-ref.svg", - "==" - ] - ], - {} - ] - ], - "clip-path-shape-circle-001.svg": [ - "873947943ccbe5c6e9686e1e39e6c0706cdb586c", + "/css/reference/ref-filled-green-200px-square.html", + "==" + ] + ], + {} + ] + ], + "multicol-break-000.xht": [ + "c4deb31adecdad7504425c1ed960b5dfa8fdfc08", + [ + null, [ - null, [ - [ - "/css/css-masking/clip-path-svg-content/reference/clip-path-circle-001-ref.svg", - "==" - ] - ], - {} - ] - ], - "clip-path-shape-circle-002.svg": [ - "dca307dd91f4d46ac3bd04d1978d5502ef391f90", + "/css/css-multicol/multicol-break-000-ref.xht", + "==" + ] + ], + {} + ] + ], + "multicol-break-001.xht": [ + "432f7c5fdec085a516db32ebfa7b55a93490254c", + [ + null, [ - null, [ - [ - "/css/css-masking/clip-path-svg-content/reference/clip-path-circle-001-ref.svg", - "==" - ] - ], - {} - ] - ], - "clip-path-shape-circle-003.svg": [ - "804e1e920a6930d8383dde596b6834cc31b574cb", + "/css/css-multicol/multicol-break-001-ref.xht", + "==" + ] + ], + {} + ] + ], + "multicol-breaking-000.html": [ + "98f808164e7d83e789811f48964e85ea0efac064", + [ + null, [ - "css/css-masking/clip-path-svg-content/clip-path-shape-circle-003.svg", [ - [ - "/css/css-masking/clip-path-svg-content/reference/clip-path-circle-001-ref.svg", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 70 - ], - [ - 0, - 210 - ] - ] - ] - ] - } - ] - ], - "clip-path-shape-circle-004.svg": [ - "83f7eec4feca7c0aedad66e1cda194bbf1db64c2", + "/css/css-multicol/multicol-breaking-000-ref.html", + "==" + ] + ], + {} + ] + ], + "multicol-breaking-001.html": [ + "e1ba966923368009e785427483a8ee3cc65981a0", + [ + null, [ - "css/css-masking/clip-path-svg-content/clip-path-shape-circle-004.svg", [ - [ - "/css/css-masking/clip-path-svg-content/reference/clip-path-circle-001-ref.svg", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 64 - ], - [ - 0, - 376 - ] - ] - ] - ] - } - ] - ], - "clip-path-shape-circle-005.svg": [ - "90a57e7c155fae66f6abc44fad95d7bdd7d98797", + "/css/css-multicol/multicol-breaking-001-ref.html", + "==" + ] + ], + {} + ] + ], + "multicol-breaking-002.html": [ + "279ed941cbee6f1b65d6dc2d62395a995f7fc58c", + [ + null, [ - null, [ - [ - "/css/css-masking/clip-path-svg-content/reference/clip-path-circle-001-ref.svg", - "==" - ] - ], - {} - ] - ], - "clip-path-shape-ellipse-001.svg": [ - "511a197644c7ec1c159eba5b3eb6ce7e9bf39a05", + "/css/css-multicol/multicol-breaking-002-ref.html", + "==" + ] + ], + {} + ] + ], + "multicol-breaking-003.html": [ + "102202dd1da474ee9daaac4e350ca4dc89669878", + [ + null, [ - null, [ - [ - "/css/css-masking/clip-path-svg-content/reference/clip-path-ellipse-001-ref.svg", - "==" - ] - ], - {} - ] - ], - "clip-path-shape-ellipse-002.svg": [ - "08bdc3e19edb189a239d29e2436b43ca6ed03201", + "/css/css-multicol/multicol-breaking-003-ref.html", + "==" + ] + ], + {} + ] + ], + "multicol-breaking-004.html": [ + "10c48c07d179a13ea06ac894e9e5eb9a01845b5d", + [ + null, [ - null, [ - [ - "/css/css-masking/clip-path-svg-content/reference/clip-path-ellipse-001-ref.svg", - "==" - ] - ], - {} - ] - ], - "clip-path-shape-inset-001.svg": [ - "bc8a4d810edf35dc37577cfba606ea4e5ab455d2", + "/css/css-multicol/multicol-breaking-004-ref.html", + "==" + ] + ], + {} + ] + ], + "multicol-breaking-005.html": [ + "c4ae8a46ab0d092ff5d2ca126eefab9368c5368a", + [ + null, [ - "css/css-masking/clip-path-svg-content/clip-path-shape-inset-001.svg", [ - [ - "/css/css-masking/clip-path-svg-content/reference/clip-path-shape-inset-001-ref.svg", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 50 - ], - [ - 0, - 200 - ] - ] - ] - ] - } - ] - ], - "clip-path-shape-inset-002.svg": [ - "5e5b18990598e3ee43bad3aefeec57768679a153", + "/css/css-multicol/multicol-breaking-005-ref.html", + "==" + ] + ], + {} + ] + ], + "multicol-breaking-006.html": [ + "7efeee80251f6d912ff8d6ef1111e2fd6cf5b8a6", + [ + null, [ - "css/css-masking/clip-path-svg-content/clip-path-shape-inset-002.svg", [ - [ - "/css/css-masking/clip-path-svg-content/reference/clip-path-shape-inset-001-ref.svg", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 50 - ], - [ - 0, - 200 - ] - ] - ] - ] - } - ] - ], - "clip-path-shape-polygon-001.svg": [ - "f474b1264d59aee303935917039365456adcae52", + "/css/css-multicol/multicol-breaking-006-ref.html", + "==" + ] + ], + {} + ] + ], + "multicol-breaking-nobackground-000.html": [ + "768ec63298f03eb28a80a4e33f140314168b010d", + [ + null, [ - null, [ - [ - "/css/css-masking/clip-path-svg-content/reference/clip-path-square-001-ref.svg", - "==" - ] - ], - {} - ] - ], - "clip-path-shape-polygon-002.svg": [ - "0fd8b1bec186e3bf68805d8e27757c8c4949256a", + "/css/css-multicol/multicol-breaking-nobackground-000-ref.html", + "==" + ] + ], + {} + ] + ], + "multicol-breaking-nobackground-001.html": [ + "78eda2331f0de812df260c48b63a679a08c39a0f", + [ + null, [ - null, [ - [ - "/css/css-masking/clip-path-svg-content/reference/clip-path-square-hole-001-ref.svg", - "==" - ] - ], - {} - ] - ], - "clip-path-shape-polygon-003.svg": [ - "91ee3d05767d975f8443d752e984cdfb71c88a40", + "/css/css-multicol/multicol-breaking-nobackground-001-ref.html", + "==" + ] + ], + {} + ] + ], + "multicol-breaking-nobackground-002.html": [ + "e20568fd17e7d2dc7526f32a48ed3bb6ac417563", + [ + null, [ - null, [ - [ - "/css/css-masking/clip-path-svg-content/reference/clip-path-square-001-ref.svg", - "==" - ] - ], - {} - ] - ], - "clip-path-text-001.svg": [ - "6d850b993a66cf5cbff33e34703f8252c5f49db5", + "/css/css-multicol/multicol-breaking-nobackground-002-ref.html", + "==" + ] + ], + {} + ] + ], + "multicol-breaking-nobackground-003.html": [ + "edf18f98981753750ec6588e5fd0ff97c1475005", + [ + null, [ - "css/css-masking/clip-path-svg-content/clip-path-text-001.svg", [ - [ - "/css/css-masking/clip-path-svg-content/reference/clip-path-text-001-ref.svg", - "==" - ] - ], - {} - ] - ], - "clip-path-text-002.svg": [ - "f40d13c40d4e0cf07ef9dfd8a8a6aa15d89f90ba", + "/css/css-multicol/multicol-breaking-nobackground-003-ref.html", + "==" + ] + ], + {} + ] + ], + "multicol-breaking-nobackground-004.html": [ + "acc200f972975b7d8a2fbc1458073e47737fa606", + [ + null, [ - "css/css-masking/clip-path-svg-content/clip-path-text-002.svg", [ - [ - "/css/css-masking/clip-path-svg-content/reference/clip-path-text-001-ref.svg", - "==" - ] - ], - {} - ] - ], - "clip-path-text-003.svg": [ - "7a5e9e7d82c99b161c8b6e175dc6b1030bf2c611", + "/css/css-multicol/multicol-breaking-nobackground-004-ref.html", + "==" + ] + ], + {} + ] + ], + "multicol-breaking-nobackground-005.html": [ + "e7395d6c027ad791380fcd7242b04f629a4305af", + [ + null, [ - "css/css-masking/clip-path-svg-content/clip-path-text-003.svg", [ - [ - "/css/css-masking/clip-path-svg-content/reference/clip-path-text-002-ref.svg", - "==" - ] - ], - {} - ] - ], - "clip-path-text-004.svg": [ - "2389320677d8b7c725892e32fa1060fd33d50766", + "/css/css-multicol/multicol-breaking-nobackground-005-ref.html", + "==" + ] + ], + {} + ] + ], + "multicol-clip-001.xht": [ + "c754b98b30562a3f21c784fa97135437e9901dd7", + [ + null, [ - "css/css-masking/clip-path-svg-content/clip-path-text-004.svg", [ - [ - "/css/css-masking/clip-path-svg-content/reference/clip-path-text-001-ref.svg", - "==" - ] - ], - {} - ] - ], - "clip-path-text-005.svg": [ - "487e2fead873755404790926938c8bd39ff64d9b", + "/css/css-multicol/multicol-clip-001-ref.xht", + "==" + ] + ], + {} + ] + ], + "multicol-clip-002.xht": [ + "6b97ad4811e7c6554d5dc84e1d8b45a2d3efbe1d", + [ + null, [ - "css/css-masking/clip-path-svg-content/clip-path-text-005.svg", [ - [ - "/css/css-masking/clip-path-svg-content/reference/clip-path-text-003-ref.svg", - "==" - ] - ], - {} - ] - ], - "clip-path-userspaceonuse-001.svg": [ - "1a3d769089976e0251a1fca260e3feda91019d5b", - [ - null, - [ - [ - "/css/css-masking/clip-path-svg-content/reference/clip-path-square-002-ref.svg", - "==" - ] - ], - {} - ] - ], - "clip-path-with-opacity.svg": [ - "ac944beaff9f88212a389e5059885f98beecabbd", + "/css/css-multicol/multicol-clip-002-ref.xht", + "==" + ] + ], + {} + ] + ], + "multicol-clip-scrolled-content-001.html": [ + "868e91de345cc7d27cb0690f49aa8db53bd33e29", + [ + null, [ - null, [ - [ - "/css/css-masking/clip-path-svg-content/reference/clip-path-square-002-ref.svg", - "==" - ] - ], - {} - ] - ], - "clip-path-with-transform.svg": [ - "b3c3b25d509fdd15115655dd48766e86434d146a", + "/css/css-multicol/reference/multicol-clip-scrolled-content-001-ref.html", + "==" + ] + ], + {} + ] + ], + "multicol-collapsing-001.xht": [ + "a7d2f3717f4bbd860881a1d8bf5fcd618a0e8c4f", + [ + null, [ - null, [ - [ - "/css/css-masking/clip-path-svg-content/reference/clip-path-square-002-ref.svg", - "==" - ] - ], - {} - ] - ], - "mask-and-nested-clip-path.svg": [ - "725f9557523d2c7c84bc6ba591044603ab3a56fb", + "/css/css-multicol/multicol-collapsing-001-ref.xht", + "==" + ] + ], + {} + ] + ], + "multicol-columns-001.xht": [ + "ed12b0629a6eb0332ff104edd39d2f777aee909b", + [ + null, [ - null, [ - [ - "/css/css-masking/clip-path-svg-content/reference/mask-and-nested-clip-path-ref.svg", - "==" - ] - ], - {} - ] - ], - "mask-nested-clip-path-001.svg": [ - "0dc0f7c0f2e38e8aea52a1a3e84a0ae4b35c6829", + "/css/css-multicol/multicol-columns-001-ref.xht", + "==" + ] + ], + {} + ] + ], + "multicol-columns-002.xht": [ + "9436ec8d90baf2242ebd3f7d6fb890212c5ea7cb", + [ + null, [ - null, [ - [ - "/css/css-masking/clip-path-svg-content/reference/mask-nested-clip-path-001-ref.svg", - "==" - ] - ], - {} - ] - ], - "mask-nested-clip-path-002.svg": [ - "2e611feb8b8a4fadf1cd37c5f597086f32000bdb", + "/css/css-multicol/multicol-columns-001-ref.xht", + "==" + ] + ], + {} + ] + ], + "multicol-columns-003.xht": [ + "70128175e3280579ff848824ae2d010732725d7c", + [ + null, [ - null, [ - [ - "/css/css-masking/clip-path-svg-content/reference/mask-nested-clip-path-001-ref.svg", - "==" - ] - ], - {} - ] - ], - "mask-nested-clip-path-003.svg": [ - "622125318c353a060f5204caa7d518cc63665d9d", + "/css/css-multicol/multicol-columns-001-ref.xht", + "==" + ] + ], + {} + ] + ], + "multicol-columns-004.xht": [ + "0d1cf23b664358582027f04cf3f5b1801b7ed544", + [ + null, [ - null, [ - [ - "/css/css-masking/clip-path-svg-content/reference/mask-nested-clip-path-001-ref.svg", - "==" - ] - ], - {} - ] - ], - "mask-nested-clip-path-004.svg": [ - "66bb3b7ea44b8bfd80f4184276f7e5627d76ba66", + "/css/css-multicol/multicol-columns-001-ref.xht", + "==" + ] + ], + {} + ] + ], + "multicol-columns-005.xht": [ + "deb91bf4b65371b17f2fc37f3bf07f634d953619", + [ + null, [ - null, [ - [ - "/css/css-masking/clip-path-svg-content/reference/mask-nested-clip-path-001-ref.svg", - "==" - ] - ], - {} - ] - ], - "mask-nested-clip-path-005.svg": [ - "9317ce4ed0736d26c7bb13ada6ce0d813b29fecd", + "/css/css-multicol/multicol-columns-001-ref.xht", + "==" + ] + ], + {} + ] + ], + "multicol-columns-006.xht": [ + "0fee6ab2184f8a2754bada8c82bca075c705ff30", + [ + null, [ - null, [ - [ - "/css/css-masking/clip-path-svg-content/reference/mask-nested-clip-path-002-ref.svg", - "==" - ] - ], - {} - ] - ], - "mask-nested-clip-path-006.svg": [ - "6ab2a20f4bd8e0274864f1e8211efea986a00674", + "/css/css-multicol/multicol-columns-001-ref.xht", + "==" + ] + ], + {} + ] + ], + "multicol-columns-007.xht": [ + "25da9e8e92c94b1c309235e386bbee253dc1f387", + [ + null, [ - null, [ - [ - "/css/css-masking/clip-path-svg-content/reference/mask-nested-clip-path-002-ref.svg", - "==" - ] - ], - {} - ] - ], - "mask-nested-clip-path-007.svg": [ - "27f372494f6c0d3d8ea1cb7358d7785ca077643b", + "/css/css-multicol/multicol-columns-001-ref.xht", + "==" + ] + ], + {} + ] + ], + "multicol-columns-invalid-001.xht": [ + "48e23756462810a3ff0fcdb19f089c6dbadef4e2", + [ + null, [ - null, [ - [ - "/css/css-masking/clip-path-svg-content/reference/mask-nested-clip-path-001-ref.svg", - "==" - ] - ], - {} - ] - ], - "mask-nested-clip-path-008.svg": [ - "b3f33e199961028072dd6079d782be2650e222eb", + "/css/css-multicol/multicol-columns-invalid-001-ref.xht", + "==" + ] + ], + {} + ] + ], + "multicol-columns-invalid-002.xht": [ + "eea0de53f15c658d6c9125cacab33558fc5fc9b6", + [ + null, [ - null, [ - [ - "/css/css-masking/clip-path-svg-content/reference/mask-nested-clip-path-001-ref.svg", - "==" - ] - ], - {} - ] - ], - "mask-nested-clip-path-009.svg": [ - "955edd3389fa4a8682ccdcc1b6b518e9ba05dd6c", + "/css/css-multicol/multicol-columns-invalid-001-ref.xht", + "==" + ] + ], + {} + ] + ], + "multicol-columns-toolong-001.xht": [ + "c7330c8d543287237d8536b7315e7a058bde4a3d", + [ + null, [ - null, [ - [ - "/css/css-masking/clip-path-svg-content/reference/mask-nested-clip-path-002-ref.svg", - "==" - ] - ], - {} - ] - ], - "mask-nested-clip-path-010.svg": [ - "dc1040e51de157f47c0b768f9fb0261d76305c16", + "/css/css-multicol/multicol-columns-invalid-001-ref.xht", + "==" + ] + ], + {} + ] + ], + "multicol-contained-absolute.html": [ + "44f17e8a0783dd570409cc2aa310f90057307fc5", + [ + null, [ - null, [ - [ - "/css/css-masking/clip-path-svg-content/reference/mask-nested-clip-path-003-ref.svg", - "==" - ] - ], - {} - ] - ], - "mask-nested-clip-path-panning-001.svg": [ - "16890a5859d8971323c1fa1b7c3da70a17e5895d", + "/css/css-multicol/multicol-contained-absolute-ref.html", + "==" + ] + ], + {} + ] + ], + "multicol-containing-001.xht": [ + "1b83f5431ea073e40acf548052a86f02ca247398", + [ + null, [ - null, [ - [ - "/css/css-masking/clip-path-svg-content/reference/mask-nested-clip-path-001-ref.svg", - "==" - ] - ], - {} - ] - ], - "mask-nested-clip-path-panning-002.svg": [ - "e5e426789fc8f5eb7fc7648bcab6d0b866605862", + "/css/css-multicol/multicol-containing-001-ref.xht", + "==" + ] + ], + {} + ] + ], + "multicol-containing-002.xht": [ + "56d42c70ae7f40573b0f474f0b3c8b283df71ac8", + [ + null, [ - null, [ - [ - "/css/css-masking/clip-path-svg-content/reference/mask-nested-clip-path-001-ref.svg", - "==" - ] - ], - {} - ] - ], - "mask-objectboundingbox-content-clip-transform.svg": [ - "397f56d19023f850b15dfe41797ad74dd24a17cc", + "/css/css-multicol/multicol-containing-002-ref.xht", + "==" + ] + ], + {} + ] + ], + "multicol-containing-003.html": [ + "c190385751e56e157d0f349c0b732f322e6c3b44", + [ + null, [ - "css/css-masking/clip-path-svg-content/mask-objectboundingbox-content-clip-transform.svg", [ - [ - "/css/css-masking/clip-path-svg-content/reference/mask-content-clip-002-ref.svg", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 38 - ], - [ - 0, - 268 - ] - ] - ] - ] - } - ] - ], - "mask-objectboundingbox-content-clip.svg": [ - "c87fedec4f88eb0df0e3ef72d1095c8626970328", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "multicol-count-001.xht": [ + "eb3272f9a4e68500fd846ae62958aac397037433", + [ + null, [ - "css/css-masking/clip-path-svg-content/mask-objectboundingbox-content-clip.svg", [ - [ - "/css/css-masking/clip-path-svg-content/reference/mask-content-clip-001-ref.svg", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 38 - ], - [ - 0, - 376 - ] - ] - ] - ] - } - ] - ], - "mask-userspaceonuse-content-clip-transform.svg": [ - "624084a07bcd0a177c94bc7e1c1114df1771a808", + "/css/css-multicol/multicol-columns-001-ref.xht", + "==" + ] + ], + {} + ] + ], + "multicol-count-002.xht": [ + "b8fb6b50adb0de516bb89cdeca9d3e3881f48e93", + [ + null, [ - "css/css-masking/clip-path-svg-content/mask-userspaceonuse-content-clip-transform.svg", [ - [ - "/css/css-masking/clip-path-svg-content/reference/mask-content-clip-002-ref.svg", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 38 - ], - [ - 0, - 268 - ] - ] - ] - ] - } - ] - ], - "mask-userspaceonuse-content-clip.svg": [ - "f1bfbdda58320b1007d937ad74c6c85d2c721174", + "/css/css-multicol/multicol-count-002-ref.xht", + "==" + ] + ], + {} + ] + ], + "multicol-count-computed-003.xht": [ + "96a1e477d92801f155b50520b52c6f9f3a93e020", + [ + null, [ - "css/css-masking/clip-path-svg-content/mask-userspaceonuse-content-clip.svg", [ - [ - "/css/css-masking/clip-path-svg-content/reference/mask-content-clip-001-ref.svg", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 38 - ], - [ - 0, - 376 - ] - ] - ] - ] - } - ] + "/css/css-multicol/multicol-count-computed-003-ref.xht", + "==" + ] + ], + {} ] - }, - "clip-rule": { - "clip-rule-001.html": [ - "a5a0961d100e34d3f81ae7c82eafdb3b2d0fc6e0", + ], + "multicol-count-computed-004.xht": [ + "90f4ac0ebbd9edd58a96a3fd2b4507df7d68516d", + [ + null, [ - null, [ - [ - "/css/css-masking/clip-rule/reference/clip-rule-rectangle-border-ref.html", - "==" - ] - ], - {} - ] - ], - "clip-rule-002.html": [ - "5fee625594f66921f5de13643d487ac9265eb115", + "/css/css-multicol/multicol-count-computed-004-ref.xht", + "==" + ] + ], + {} + ] + ], + "multicol-count-computed-005.xht": [ + "ed89dc8ddb882d52ae6c8232c717fe91947389fd", + [ + null, [ - null, [ - [ - "/css/css-masking/clip-rule/reference/clip-rule-rectangle-border-ref.html", - "==" - ] - ], - {} - ] + "/css/css-multicol/multicol-count-computed-003-ref.xht", + "==" + ] + ], + {} ] - }, - "mask-image": { - "mask-clip-1.html": [ - "9c1448439e6c227094176c3245060738b707426b", + ], + "multicol-count-negative-001.xht": [ + "98bfd027e9b279a6be7f20dfacee5e5604386eba", + [ + null, [ - null, [ - [ - "/css/css-masking/mask-image/mask-clip-1-ref.html", - "==" - ] - ], - {} - ] - ], - "mask-clip-2.html": [ - "2093b073dc2b513aded317e693b3db0d7a660f12", + "/css/css-multicol/multicol-columns-invalid-001-ref.xht", + "==" + ] + ], + {} + ] + ], + "multicol-count-negative-002.xht": [ + "17911b5095ee66f07582dfd3c6fc7c1a995d876b", + [ + null, [ - "css/css-masking/mask-image/mask-clip-2.html", [ - [ - "/css/css-masking/mask-image/mask-clip-2-ref.html", - "==" - ] - ], - {} - ] - ], - "mask-clip-3.html": [ - "d79baa3b5e8edb5561c48d3fb6f14efb7e329848", + "/css/css-multicol/multicol-columns-invalid-001-ref.xht", + "==" + ] + ], + {} + ] + ], + "multicol-count-non-integer-001.xht": [ + "cfa54f312f60d26b33fd1c97cd3f9a8b52b55ae1", + [ + null, [ - "css/css-masking/mask-image/mask-clip-3.html", [ - [ - "/css/css-masking/mask-image/mask-clip-3-ref.html", - "==" - ] - ], - {} - ] - ], - "mask-clip-4.html": [ - "133c489041176b049bacfa00c3bf2a14bca1b6d5", + "/css/css-multicol/multicol-columns-invalid-001-ref.xht", + "==" + ] + ], + {} + ] + ], + "multicol-count-non-integer-002.xht": [ + "93680119936ee351d0f77650e004a1e67691de2a", + [ + null, [ - "css/css-masking/mask-image/mask-clip-4.html", [ - [ - "/css/css-masking/mask-image/mask-clip-4-ref.html", - "==" - ] - ], - {} - ] - ], - "mask-clip-5.html": [ - "db6a91942bf7262d0dedfcdfd1f297113e85f7c9", + "/css/css-multicol/multicol-columns-invalid-001-ref.xht", + "==" + ] + ], + {} + ] + ], + "multicol-count-non-integer-003.xht": [ + "6c94be98775661bea5c5fb698aae868b179be34a", + [ + null, [ - "css/css-masking/mask-image/mask-clip-5.html", [ - [ - "/css/css-masking/mask-image/mask-clip-2-ref.html", - "==" - ] - ], - {} - ] - ], - "mask-clip-6.html": [ - "43b75df36823fb184c9c92e1081398d451a107d9", + "/css/css-multicol/multicol-columns-invalid-001-ref.xht", + "==" + ] + ], + {} + ] + ], + "multicol-dynamic-add-001.html": [ + "8575626ace6a84e5f4c29e2e76721c6e1b8efa4e", + [ + null, [ - "css/css-masking/mask-image/mask-clip-6.html", [ - [ - "/css/reference/ref-filled-green-100px-square-only.html", - "==" - ] - ], - {} - ] - ], - "mask-clip-7.html": [ - "1c0d8e1dc4ae5be4ca528a7d8f71a7e4fff4f30e", + "/css/css-multicol/multicol-dynamic-add-001-ref.html", + "==" + ] + ], + {} + ] + ], + "multicol-dynamic-change-inside-break-inside-avoid-001.html": [ + "11063288c188189dfb17520aea6a7942c6c2901e", + [ + null, [ - "css/css-masking/mask-image/mask-clip-7.html", [ - [ - "/css/css-masking/mask-image/mask-clip-7-ref.html", - "==" - ] - ], - {} - ] - ], - "mask-clip-8.html": [ - "924920ffacafcfdf3cb71732389ccb768ba60d94", + "/css/css-multicol/multicol-dynamic-change-inside-break-inside-avoid-001-ref.html", + "==" + ] + ], + {} + ] + ], + "multicol-fill-000.xht": [ + "79af1cbbf8ba80efd03cd0c21c908742b1f1424a", + [ + null, [ - "css/css-masking/mask-image/mask-clip-8.html", [ - [ - "/css/css-masking/mask-image/mask-clip-8-ref.html", - "==" - ] - ], - {} - ] - ], - "mask-composite-1a.html": [ - "795e52b8ae8df95243997c7d327b114522f8ff1f", + "/css/css-multicol/multicol-fill-000-ref.xht", + "==" + ] + ], + {} + ] + ], + "multicol-fill-001.xht": [ + "3cd79ccbee77bad75eb13085882915bba28800af", + [ + null, [ - null, [ - [ - "/css/css-masking/mask-image/mask-composite-1-ref.html", - "==" - ] - ], - {} - ] - ], - "mask-composite-1b.html": [ - "be158c923bd9a4185fc57ffc69d2f6f34f1e514f", + "/css/css-multicol/multicol-fill-001-ref.xht", + "==" + ] + ], + {} + ] + ], + "multicol-fill-auto-001.xht": [ + "d5990a3ffc026826740af0a80c27c27ceb2b0d0b", + [ + null, [ - null, [ - [ - "/css/css-masking/mask-image/mask-composite-1-ref.html", - "==" - ] - ], - {} - ] - ], - "mask-composite-1c.html": [ - "0eb098d1b7b656ed86dd76a2f0e1a26875a4a37e", + "/css/css-multicol/multicol-fill-auto-001-ref.xht", + "==" + ] + ], + {} + ] + ], + "multicol-fill-auto-002.xht": [ + "98c14f9ac5815c019b0325a8e07a8628e1cf0926", + [ + null, [ - null, [ - [ - "/css/css-masking/mask-image/mask-composite-1-ref.html", - "==" - ] - ], - {} - ] - ], - "mask-composite-1d.html": [ - "efd26ecb3d151e1f460f494d17bc62431293b566", + "/css/css-multicol/multicol-fill-auto-002-ref.xht", + "==" + ] + ], + {} + ] + ], + "multicol-fill-auto-003.xht": [ + "df9e82f9c4f99d4541c0330cffddc10e6fae8af7", + [ + null, [ - null, [ - [ - "/css/css-masking/mask-image/mask-composite-1-ref.html", - "==" - ] - ], - {} - ] - ], - "mask-composite-2a.html": [ - "7db800814c4c0593d08e3c8b22b9b26ee3418e1b", + "/css/css-multicol/multicol-fill-auto-003-ref.xht", + "==" + ] + ], + {} + ] + ], + "multicol-fill-auto-004.html": [ + "18e6fa7258e46bb9ba0399331c22b91cd72f834f", + [ + null, [ - null, [ - [ - "/css/css-masking/mask-image/mask-composite-2-ref.html", - "==" - ] - ], - {} - ] - ], - "mask-composite-2b.html": [ - "3fd983fb11a134e2e7ff9dd9e4c7fe6132073b85", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "multicol-fill-auto-block-children-001.xht": [ + "864080a02a4042e4bf29a27fe5d2c8ce177f2557", + [ + null, [ - null, [ - [ - "/css/css-masking/mask-image/mask-composite-2-ref.html", - "==" - ] - ], - {} - ] - ], - "mask-composite-2c.html": [ - "2b26e9ac664068d60d50d317dcb1e72b584a1413", + "/css/css-multicol/multicol-fill-auto-block-children-ref.xht", + "==" + ] + ], + {} + ] + ], + "multicol-fill-auto-block-children-002.xht": [ + "2399da2e7b9bb464c978f4572656b63b65b4b65f", + [ + null, [ - null, [ - [ - "/css/css-masking/mask-image/mask-composite-2-ref.html", - "==" - ] - ], - {} - ] - ], - "mask-composite-2d.html": [ - "feb70df05154ac1b498086802a78fac4eab346a6", + "/css/css-multicol/multicol-fill-auto-block-children-002-ref.xht", + "==" + ] + ], + {} + ] + ], + "multicol-fill-auto-block-children-003.html": [ + "7bc29898c61da358ba5874e81d0d8d40119c3b23", + [ + null, [ - "css/css-masking/mask-image/mask-composite-2d.html", [ - [ - "/css/css-masking/mask-image/mask-composite-2-ref.html", - "==" - ] - ], - {} - ] - ], - "mask-image-1a.html": [ - "62e00660a3503f6c7d30cbf8cbdb963794bf009f", + "/css/css-multicol/multicol-fill-auto-block-children-003-ref.html", + "==" + ] + ], + {} + ] + ], + "multicol-fill-balance-001.xht": [ + "3c6825a364436aa94054453ba7678f01ac1d6efe", + [ + null, [ - null, [ - [ - "/css/css-masking/mask-image/mask-image-1-ref.html", - "==" - ] - ], - {} - ] - ], - "mask-image-1b.html": [ - "9bf74102f9cf06c816f51b0878a9d20c5767c1a1", + "/css/css-multicol/multicol-fill-balance-001-ref.xht", + "==" + ] + ], + {} + ] + ], + "multicol-fill-balance-002.html": [ + "fb6004d47becf9b51eaeb2d358fd8f772b2babdb", + [ + null, [ - null, [ - [ - "/css/css-masking/mask-image/mask-image-1-ref.html", - "==" - ] - ], - {} - ] - ], - "mask-image-1c.html": [ - "1328d06c95dd12ca06f0b41bc1acfeed2a32a153", + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "multicol-fill-balance-003.html": [ + "5f8db6336bac713dfd9f2aa1263803bc63eb1874", + [ + null, [ - null, [ - [ - "/css/css-masking/mask-image/mask-image-1-ref.html", - "==" - ] - ], - {} - ] - ], - "mask-image-1d.html": [ - "11f0ae7d937414297ee8bd0e8a9b844b464cc895", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "multicol-fill-balance-004.html": [ + "1d90cc45f61fb3512eeca3a1905f5d75bf2b640f", + [ + null, [ - null, [ - [ - "/css/css-masking/mask-image/mask-image-1-ref.html", - "==" - ] - ], - {} - ] - ], - "mask-image-2.html": [ - "673f55a7e36136ff58f83f0573849c29db7906fb", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "multicol-fill-balance-005.html": [ + "ad9a592ec9355ded07383e2071d1dda786ba5f8f", + [ + null, [ - "css/css-masking/mask-image/mask-image-2.html", [ - [ - "/css/css-masking/mask-image/mask-image-2-ref.html", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 3 - ], - [ - 0, - 14000 - ] - ] - ] - ] - } - ] - ], - "mask-image-3a.html": [ - "3aae3df3934e3dd6f56cfa318c815ca85887e2ae", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "multicol-fill-balance-006.html": [ + "3dc2022a3dfcf80ff133c212237503a4b64a9fe1", + [ + null, [ - "css/css-masking/mask-image/mask-image-3a.html", [ - [ - "/css/css-masking/mask-image/mask-image-3-ref.html", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 1 - ], - [ - 0, - 100 - ] - ] - ] - ] - } - ] - ], - "mask-image-3b.html": [ - "b6609fde6a4ac33ca1fb9fd6f87513e2fef9498d", + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "multicol-fill-balance-018.html": [ + "fd4f47c591d743ab4cbb6e52c22ee8b7323396db", + [ + null, [ - "css/css-masking/mask-image/mask-image-3b.html", [ - [ - "/css/css-masking/mask-image/mask-image-3-ref.html", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 1 - ], - [ - 0, - 100 - ] - ] - ] - ] - } - ] - ], - "mask-image-3c.html": [ - "91cc9f7bb100398e9789a39dead4bde623de18e7", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "multicol-fill-balance-024.html": [ + "900dca8636a0eaf4cd19ec7a3772f567259cf0cb", + [ + null, [ - "css/css-masking/mask-image/mask-image-3c.html", [ - [ - "/css/css-masking/mask-image/mask-image-3-ref.html", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 1 - ], - [ - 0, - 100 - ] - ] - ] - ] - } - ] - ], - "mask-image-3d.html": [ - "468872fecbde8ec1a8b54abc7c83a7b3dfb4357b", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "multicol-fill-balance-026.html": [ + "d38ca32e051822736b023e82cf532ef6e6d4e0a0", + [ + null, [ - "css/css-masking/mask-image/mask-image-3d.html", [ - [ - "/css/css-masking/mask-image/mask-image-3-ref.html", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 1 - ], - [ - 0, - 100 - ] - ] - ] - ] - } - ] - ], - "mask-image-3e.html": [ - "5e5393755453b30dd73c10ebeee3bfa95ded939b", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "multicol-fill-balance-029.html": [ + "837141bd0593716c5b5fb46ef3f68efb4aaf077e", + [ + null, [ - "css/css-masking/mask-image/mask-image-3e.html", [ - [ - "/css/css-masking/mask-image/mask-image-3-ref.html", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 1 - ], - [ - 0, - 100 - ] - ] - ] - ] - } - ] - ], - "mask-image-3f.html": [ - "0ecfd383652bc1a8fd57af6a1936685410dd4329", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "multicol-fill-balance-nested-000.html": [ + "5e466df8077545b4d6474389d296bc26c5b28b86", + [ + null, [ - "css/css-masking/mask-image/mask-image-3f.html", [ - [ - "/css/css-masking/mask-image/mask-image-3-ref.html", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 1 - ], - [ - 0, - 100 - ] - ] - ] - ] - } - ] - ], - "mask-image-3g.html": [ - "133a69fa6094e7c002ac8340761df0244681f0fc", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "multicol-gap-000.xht": [ + "88aa17e8b488565dc40398e6e8f1d2e3bf3a97a1", + [ + null, [ - "css/css-masking/mask-image/mask-image-3g.html", [ - [ - "/css/css-masking/mask-image/mask-image-3-ref.html", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 1 - ], - [ - 0, - 100 - ] - ] - ] - ] - } - ] - ], - "mask-image-3h.html": [ - "29f2c33bdf16d22e0f1cf5958ee298ab3f15867c", + "/css/css-multicol/multicol-gap-000-ref.xht", + "==" + ] + ], + {} + ] + ], + "multicol-gap-001.xht": [ + "7a105b7f1977a4b4b793dcfcf394f978a53425eb", + [ + null, [ - "css/css-masking/mask-image/mask-image-3h.html", [ - [ - "/css/css-masking/mask-image/mask-image-3-ref.html", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 37 - ], - [ - 0, - 146 - ] - ] - ] - ] - } - ] - ], - "mask-image-3i.html": [ - "c0440145e571fc921b6598e07f8290c3278b5de1", + "/css/css-multicol/multicol-gap-001-ref.xht", + "==" + ] + ], + {} + ] + ], + "multicol-gap-002.xht": [ + "1ad53340435e09e277a5abb23b1f96d38ede9a88", + [ + null, [ - "css/css-masking/mask-image/mask-image-3i.html", [ - [ - "/css/css-masking/mask-image/mask-image-3-ref.html", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 1 - ], - [ - 0, - 100 - ] - ] - ] - ] - } - ] - ], - "mask-image-4a.html": [ - "bffcedae9ade9943fb8cfe06c9da466678226ff8", + "/css/css-multicol/multicol-gap-002-ref.xht", + "==" + ] + ], + {} + ] + ], + "multicol-gap-003.xht": [ + "39b7bc4f0e112c7ec2fbdef7003cded535027bd1", + [ + null, [ - null, [ - [ - "/css/reference/blank.html", - "==" - ] - ], - {} - ] - ], - "mask-image-4b.html": [ - "b05232a1e175164e1d3f38c4d9a99578dc5157db", + "/css/css-multicol/multicol-gap-002-ref.xht", + "==" + ] + ], + {} + ] + ], + "multicol-gap-fraction-001.xht": [ + "a1614ec2b7c5b8f7bfe6342e6ccd42fd0716b853", + [ + null, [ - null, [ - [ - "/css/reference/blank.html", - "==" - ] - ], - {} - ] - ], - "mask-image-5.html": [ - "12f0f6000794388b73ac55b3747cf556b4ac8ee4", + "/css/css-multicol/multicol-gap-fraction-001-ref.xht", + "==" + ] + ], + {} + ] + ], + "multicol-gap-fraction-002.html": [ + "ae1aaaad774e9f087b9bd3a76bf49c053b48a191", + [ + null, [ - "css/css-masking/mask-image/mask-image-5.html", [ - [ - "/css/css-masking/mask-image/mask-image-5-ref.html", - "==" - ] - ], - {} - ] - ], - "mask-image-6.html": [ - "3132efb0475b5e9b6025bb8900cdafa795b6e7ca", + "/css/reference/nothing.html", + "==" + ] + ], + {} + ] + ], + "multicol-gap-large-001.xht": [ + "5dd1a90691b92653a7574b40c2d967a0e04968d0", + [ + null, [ - "css/css-masking/mask-image/mask-image-6.html", [ - [ - "/css/css-masking/mask-image/mask-image-6-ref.html", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 255 - ], - [ - 0, - 70 - ] - ] - ] - ] - } - ] - ], - "mask-image-clip-exclude.html": [ - "21466670b01c3a41bc8afe7e2c2841c19e5d344b", + "/css/css-multicol/multicol-gap-large-001-ref.xht", + "==" + ] + ], + {} + ] + ], + "multicol-gap-large-002.xht": [ + "8e3be322efc25b370fda948b184f967d472f2bd3", + [ + null, [ - "css/css-masking/mask-image/mask-image-clip-exclude.html", [ - [ - "/css/css-masking/mask-image/mask-image-clip-exclude-ref.html", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 1 - ], - [ - 0, - 2000 - ] - ] - ] - ] - } - ] - ], - "mask-image-data-url-image.html": [ - "aac59f3c4aabeb362aef0734ca9315d3a2331af4", + "/css/css-multicol/multicol-gap-large-002-ref.xht", + "==" + ] + ], + {} + ] + ], + "multicol-gap-negative-001.xht": [ + "b250106788887551ee5ececaf4a8f95334470864", + [ + null, [ - null, [ - [ - "/css/css-masking/mask-image/reference/mask-image-data-url-image-ref.html", - "==" - ] - ], - {} - ] - ], - "mask-image-ib-split-2.html": [ - "94c653a5c4714f8ee167fe35a76c53615fdfb5b5", + "/css/css-multicol/multicol-gap-002-ref.xht", + "==" + ] + ], + {} + ] + ], + "multicol-height-001.xht": [ + "821cfd6ca96cefd1e9e1575dcf40d03a4806d24b", + [ + null, [ - null, [ - [ - "/css/css-masking/mask-image/reference/mask-image-ib-split-2-ref.html", - "==" - ] - ], - {} - ] - ], - "mask-image-ib-split.html": [ - "dab941b11183df95a16792c0c82923052ae501f0", + "/css/css-multicol/multicol-height-001-ref.xht", + "==" + ] + ], + {} + ] + ], + "multicol-height-block-child-001.xht": [ + "3d62176ec36cf6a4a9b17e328a3c4b6f9ec83a38", + [ + null, [ - null, [ - [ - "/css/css-masking/mask-image/reference/mask-image-ib-split-ref.html", - "==" - ] - ], - {} - ] - ], - "mask-image-inline-sliced-1.html": [ - "9d09cc00a1f259644125747d1d1d08cbfdce6dd2", + "/css/css-multicol/multicol-height-block-child-001-ref.xht", + "==" + ] + ], + {} + ] + ], + "multicol-inherit-001.xht": [ + "3d778b9fce28a662475463cbe5ba7e29368dfc97", + [ + null, [ - "css/css-masking/mask-image/mask-image-inline-sliced-1.html", [ - [ - "/css/css-masking/mask-image/reference/mask-image-inline-sliced-1-ref.html", - "==" - ] - ], - {} - ] - ], - "mask-image-svg-child-will-change.html": [ - "248589d54dd99f1bcaf74d03944d9a8bc36fd047", + "/css/css-multicol/multicol-inherit-001-ref.xht", + "==" + ] + ], + {} + ] + ], + "multicol-inherit-002.xht": [ + "cd3ccc6106e13f04f0b1743efc45cfc0ee5b4216", + [ + null, [ - null, [ - [ - "/css/css-masking/mask-image/reference/mask-image-svg-child-will-change-ref.html", - "==" - ] - ], - {} - ] - ], - "mask-image-svg-foreignobject-zoomed.html": [ - "85a8b2dbf2799f1356677f4c2d38dd2ed3042d6e", + "/css/css-multicol/multicol-inherit-002-ref.xht", + "==" + ] + ], + {} + ] + ], + "multicol-inherit-003.xht": [ + "4fead557ce43a4a441e67b1561d127dd634c1936", + [ + null, [ - "css/css-masking/mask-image/mask-image-svg-foreignobject-zoomed.html", [ - [ - "/css/reference/ref-filled-green-100px-square-only.html", - "==" - ] - ], - {} - ] - ], - "mask-image-url-image-hash.html": [ - "b1efc90818bec85d5022a9b908a14c2e0c35ff3b", + "/css/css-multicol/multicol-inherit-3-ref.xht", + "==" + ] + ], + {} + ] + ], + "multicol-list-item-001.xht": [ + "bcf3fa2613e417e691babd51f1d087cc4935768b", + [ + null, [ - null, [ - [ - "/css/css-masking/mask-image/reference/mask-image-ref.html", - "==" - ] - ], - {} - ] - ], - "mask-image-url-image.html": [ - "40a1ff9b281647a03cd90046cb62a088c0ed7081", + "/css/css-multicol/multicol-list-item-001-ref.xht", + "==" + ] + ], + {} + ] + ], + "multicol-list-item-002.html": [ + "6d788a87f3ab94546ccadc1099e9774241588356", + [ + null, [ - null, [ - [ - "/css/css-masking/mask-image/reference/mask-image-ref.html", - "==" - ] - ], - {} - ] - ], - "mask-image-url-local-mask.html": [ - "18abc54f85eb4bfd93962dbef92dd5cffe5ba62b", + "/css/css-multicol/multicol-list-item-002-ref.html", + "==" + ] + ], + {} + ] + ], + "multicol-list-item-003.html": [ + "1ae7c912372203a1cb12d9096a863fdddc24237f", + [ + null, [ - null, [ - [ - "/css/css-masking/mask-image/reference/mask-image-ref.html", - "==" - ] - ], - {} - ] - ], - "mask-image-url-remote-mask.html": [ - "f3f2eefaa92df83296379efd861b39e2ab65f78e", + "/css/css-multicol/multicol-list-item-003-ref.html", + "==" + ] + ], + {} + ] + ], + "multicol-list-item-004.html": [ + "e235aa26b05498b1050582133593a596c60c559a", + [ + null, [ - null, [ - [ - "/css/css-masking/mask-image/reference/mask-image-ref.html", - "==" - ] - ], - {} - ] - ], - "mask-mode-a.html": [ - "d69ca24ee4d9bff815b0f2d36d54fa4d6ca972f8", + "/css/css-multicol/multicol-list-item-004-ref.html", + "==" + ] + ], + {} + ] + ], + "multicol-list-item-005.html": [ + "4f158dfde49aed02aa1a39a9860a71f878da00e5", + [ + null, [ - "css/css-masking/mask-image/mask-mode-a.html", [ - [ - "/css/css-masking/mask-image/mask-mode-ref.html", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 1 - ], - [ - 0, - 10000 - ] - ] - ] - ] - } - ] - ], - "mask-mode-b.html": [ - "961411d7185544d5f8fb9490f434cc935ff09e49", + "/css/css-multicol/multicol-list-item-005-ref.html", + "==" + ] + ], + {} + ] + ], + "multicol-list-item-006.html": [ + "1cf609adf02a2f0c3fc8c12286ade9917fdc708f", + [ + null, [ - "css/css-masking/mask-image/mask-mode-b.html", [ - [ - "/css/css-masking/mask-image/mask-mode-ref.html", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 1 - ], - [ - 0, - 10000 - ] - ] - ] - ] - } - ] - ], - "mask-mode-c.html": [ - "115996db9c46ef450554e6f1bb5002c9af88b0d0", + "/css/css-multicol/multicol-list-item-006-ref.html", + "==" + ] + ], + {} + ] + ], + "multicol-list-item-007.html": [ + "acb21d1cc45f7bc02a4d3399135a1bd7f1139791", + [ + null, [ - "css/css-masking/mask-image/mask-mode-c.html", [ - [ - "/css/css-masking/mask-image/mask-mode-ref.html", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 2 - ], - [ - 0, - 11800 - ] - ] - ] - ] - } - ] - ], - "mask-mode-d.html": [ - "c49155e2dcfe041b154d186b5fddde113b01148c", + "/css/css-multicol/multicol-list-item-007-ref.html", + "==" + ] + ], + {} + ] + ], + "multicol-list-item-008.html": [ + "c77c2c2497b7d92cb81700499ce86ba6f3fba734", + [ + null, [ - "css/css-masking/mask-image/mask-mode-d.html", [ - [ - "/css/css-masking/mask-image/mask-mode-ref.html", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 1 - ], - [ - 0, - 10000 - ] - ] - ] - ] - } - ] - ], - "mask-mode-e.html": [ - "3ece03c5b73a6e8592af7854648267c088f50c7f", + "/css/css-multicol/multicol-list-item-008-ref.html", + "==" + ] + ], + {} + ] + ], + "multicol-margin-001.xht": [ + "dccf78f43d27c484f452edf154c86c016cbd59f3", + [ + null, [ - "css/css-masking/mask-image/mask-mode-e.html", [ - [ - "/css/css-masking/mask-image/mask-mode-ref.html", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 2 - ], - [ - 0, - 11800 - ] - ] - ] - ] - } - ] - ], - "mask-mode-to-mask-type-svg.html": [ - "f3719c7098514250d1325016d27faf399ebe2cb7", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "multicol-margin-002.xht": [ + "94c065d8f8b99f3d62027f9e9d548ca90ac630ca", + [ + null, [ - "css/css-masking/mask-image/mask-mode-to-mask-type-svg.html", [ - [ - "/css/css-masking/mask-image/mask-mode-to-mask-type-ref.html", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 1 - ], - [ - 0, - 30000 - ] - ] - ] - ] - } - ] - ], - "mask-mode-to-mask-type.html": [ - "1d1a94c585d0895b7ea83b9844f594694e1c64fa", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "multicol-margin-003.html": [ + "2b29474306230f595e2c6623fcf5d64d4f1615ba", + [ + null, [ - "css/css-masking/mask-image/mask-mode-to-mask-type.html", [ - [ - "/css/css-masking/mask-image/mask-mode-to-mask-type-ref.html", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 1 - ], - [ - 0, - 30000 - ] - ] - ] - ] - } - ] - ], - "mask-opacity-1a.html": [ - "91823717942154ec7ab276b99de8b74d99be2d04", + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "multicol-margin-child-001.xht": [ + "919faec6b743f55451cc5cfcea840954c0bc07f4", + [ + null, [ - null, [ - [ - "/css/css-masking/mask-image/mask-opacity-1-ref.html", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 1, - 1 - ], - [ - 0, - 5000 - ] - ] - ] - ] - } - ] - ], - "mask-opacity-1b.html": [ - "681ec360ae2575be3e4f264284494f411df71f6b", + "/css/css-multicol/multicol-margin-child-001-ref.xht", + "==" + ] + ], + {} + ] + ], + "multicol-nested-002.xht": [ + "d125ef6e443634eb89ba76bd45fe6d3ac5aeeffa", + [ + null, [ - null, [ - [ - "/css/css-masking/mask-image/mask-opacity-1-ref.html", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 1, - 1 - ], - [ - 0, - 5000 - ] - ] - ] - ] - } - ] - ], - "mask-opacity-1c.html": [ - "271e663e639fc54f7ff2f599056d37f00d6d8b6f", + "/css/css-multicol/multicol-nested-002-ref.xht", + "==" + ] + ], + {} + ] + ], + "multicol-nested-005.xht": [ + "943162e0ec4aace26026c531767be9cfe0619fc0", + [ + null, [ - null, [ - [ - "/css/css-masking/mask-image/mask-opacity-1-ref.html", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 1, - 1 - ], - [ - 0, - 5000 - ] - ] - ] - ] - } - ] - ], - "mask-opacity-1d.html": [ - "77eab966cbfb87c8f0a1f3725ac5566fc50658cc", - [ - "css/css-masking/mask-image/mask-opacity-1d.html", - [ - [ - "/css/css-masking/mask-image/mask-opacity-1-ref.html", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 5 - ], - [ - 0, - 5000 - ] - ] - ] - ] - } - ] - ], - "mask-opacity-1e.html": [ - "ad7aa8829e5f250385088449f9cf58916203fb98", - [ - null, - [ - [ - "/css/css-masking/mask-image/mask-opacity-1-ref.html", - "==" - ] - ], - {} - ] - ], - "mask-origin-1.html": [ - "3788a5591a2f20f57064424bbba03a248bccae6b", - [ - null, - [ - [ - "/css/css-masking/mask-image/mask-origin-1-ref.html", - "==" - ] - ], - {} - ] - ], - "mask-origin-3.html": [ - "9659d09ba3cffa1b73a4aeafddc5e62484ac71fe", - [ - "css/css-masking/mask-image/mask-origin-3.html", - [ - [ - "/css/css-masking/mask-image/mask-origin-3-ref.html", - "==" - ] - ], - {} - ] - ], - "mask-position-1a-svg.html": [ - "aa9a742e99c6fa5300ba30461cadfff82afe3802", - [ - "css/css-masking/mask-image/mask-position-1a-svg.html", - [ - [ - "/css/css-masking/mask-image/mask-position-1-ref.html", - "==" - ] - ], - {} - ] - ], - "mask-position-1a.html": [ - "cee15ee713b948049c098ae6784032c4048d87cc", - [ - null, - [ - [ - "/css/css-masking/mask-image/mask-position-1-ref.html", - "==" - ] - ], - {} - ] - ], - "mask-position-1b.html": [ - "669810e61a94f532f04169d9f60751a716176fc4", - [ - null, - [ - [ - "/css/css-masking/mask-image/mask-position-1-ref.html", - "==" - ] - ], - {} - ] - ], - "mask-position-1c.html": [ - "9a1671c3d455ac0349c8fe0fb87669c0b780da9f", - [ - null, - [ - [ - "/css/css-masking/mask-image/mask-position-1-ref.html", - "==" - ] - ], - {} - ] - ], - "mask-position-2a.html": [ - "d8427338d4fbeed1eeae71a3eccf4469538465f5", - [ - null, - [ - [ - "/css/css-masking/mask-image/mask-position-2-ref.html", - "==" - ] - ], - {} - ] - ], - "mask-position-2b.html": [ - "b5f7b31051f7ec330e04ac1c99a269758c4a0f83", - [ - null, - [ - [ - "/css/css-masking/mask-image/mask-position-2-ref.html", - "==" - ] - ], - {} - ] - ], - "mask-position-3a.html": [ - "17b1137f62629cbc6dd3e9a83d0b11a8131df46d", - [ - null, - [ - [ - "/css/css-masking/mask-image/mask-position-3-ref.html", - "==" - ] - ], - {} - ] - ], - "mask-position-3b.html": [ - "742a65ea15ee0b40a0615789f797cb40b29aeacd", - [ - null, - [ - [ - "/css/css-masking/mask-image/mask-position-3-ref.html", - "==" - ] - ], - {} - ] - ], - "mask-position-4a.html": [ - "9d17692e83ffa2b9dd79cfc2569623543ed589c8", - [ - null, - [ - [ - "/css/css-masking/mask-image/mask-position-4-ref.html", - "==" - ] - ], - {} - ] - ], - "mask-position-4b.html": [ - "9b46546d3149eb868332cce235a23c3480abe0a8", - [ - null, - [ - [ - "/css/css-masking/mask-image/mask-position-4-ref.html", - "==" - ] - ], - {} - ] - ], - "mask-position-4c.html": [ - "7437c0232ba551e462cbd778a7f15d8dfbbf42cb", - [ - null, - [ - [ - "/css/css-masking/mask-image/mask-position-4-ref.html", - "==" - ] - ], - {} - ] - ], - "mask-position-4d.html": [ - "e5dce03b4a5883a49120d383448bad2f43bba16a", - [ - null, - [ - [ - "/css/css-masking/mask-image/mask-position-4-ref.html", - "==" - ] - ], - {} - ] - ], - "mask-position-5.html": [ - "295402263dbaffc675608fc491466ee6a98a4736", - [ - null, - [ - [ - "/css/css-masking/mask-image/mask-position-5-ref.html", - "==" - ] - ], - {} - ] - ], - "mask-position-6.html": [ - "e4b0715c4de333b51a60923267d5799ac504a4b8", - [ - null, - [ - [ - "/css/css-masking/mask-image/mask-position-6-ref.html", - "==" - ] - ], - {} - ] - ], - "mask-position-7.html": [ - "d24fca5bc2a90f8fc3c51c7238c1a3d3f7a9974b", - [ - null, - [ - [ - "/css/css-masking/mask-image/mask-position-7-ref.html", - "==" - ] - ], - {} - ] - ], - "mask-position-8.html": [ - "cb99135fa1df5d8caa7cfec928a55bf738d78b8e", - [ - "css/css-masking/mask-image/mask-position-8.html", - [ - [ - "/css/css-masking/clip-path/reference/green-100x100.html", - "==" - ] - ], - {} - ] - ], - "mask-repeat-1-svg.html": [ - "ba96faf18fe6d0e3f125459d5d5bfa9a3e30de23", - [ - "css/css-masking/mask-image/mask-repeat-1-svg.html", - [ - [ - "/css/css-masking/mask-image/mask-repeat-1-ref.html", - "==" - ] - ], - {} - ] - ], - "mask-repeat-1.html": [ - "6c74f1cb91869115761e532ff126a8f597944aa8", - [ - "css/css-masking/mask-image/mask-repeat-1.html", - [ - [ - "/css/css-masking/mask-image/mask-repeat-1-ref.html", - "==" - ] - ], - {} - ] - ], - "mask-repeat-2-svg.html": [ - "740d254473b9ddc17a14a5847f0556147dc8c89b", - [ - "css/css-masking/mask-image/mask-repeat-2-svg.html", - [ - [ - "/css/css-masking/mask-image/mask-repeat-2-ref.html", - "==" - ] - ], - {} - ] - ], - "mask-repeat-2.html": [ - "e349239fbfcba99d92bc20a9f217721ca6bf90f2", - [ - null, - [ - [ - "/css/css-masking/mask-image/mask-repeat-2-ref.html", - "==" - ] - ], - {} - ] - ], - "mask-repeat-3-svg.html": [ - "b7d64ac36560e43ea8a209b595ef010644877342", - [ - "css/css-masking/mask-image/mask-repeat-3-svg.html", - [ - [ - "/css/css-masking/mask-image/mask-repeat-3-ref.html", - "==" - ] - ], - {} - ] - ], - "mask-repeat-3.html": [ - "cb950d4f2c4e01ea1048ff1930ad87eefacadf6f", - [ - null, - [ - [ - "/css/css-masking/mask-image/mask-repeat-3-ref.html", - "==" - ] - ], - {} - ] - ], - "mask-size-auto-auto.html": [ - "01d55f96298f20306fc4ffba31eb19079f802b6a", - [ - null, - [ - [ - "/css/css-masking/mask-image/mask-size-auto-ref.html", - "==" - ] - ], - {} - ] - ], - "mask-size-auto-length.html": [ - "5ef49cc612f67993a2462d627404750b1191f287", - [ - null, - [ - [ - "/css/css-masking/mask-image/mask-size-auto-length-ref.html", - "==" - ] - ], - {} - ] - ], - "mask-size-auto-percent.html": [ - "f2644bb1b018ed0d6b5f0781f5753f6a9b719f4a", - [ - null, - [ - [ - "/css/css-masking/mask-image/mask-size-auto-length-ref.html", - "==" - ] - ], - {} - ] - ], - "mask-size-auto.html": [ - "6560a81ee3de242cec2cdc28b485d62aa901e2c2", - [ - null, - [ - [ - "/css/css-masking/mask-image/mask-size-auto-ref.html", - "==" - ] - ], - {} - ] - ], - "mask-size-contain-clip-border.html": [ - "a04557639a72a947bea96e129dcbdcc79685f65c", - [ - null, - [ - [ - "/css/css-masking/mask-image/mask-size-contain-clip-border-ref.html", - "==" - ] - ], - {} - ] - ], - "mask-size-contain-clip-padding.html": [ - "4f321d9c58f68ab47dde7a256c8eb14c80539ea5", - [ - null, - [ - [ - "/css/css-masking/mask-image/mask-size-contain-clip-padding-ref.html", - "==" - ] - ], - {} - ] - ], - "mask-size-contain-position-fifty-fifty.html": [ - "fcae5ba0ed2998aa3aaf11e12db51036eb17e9ac", - [ - null, - [ - [ - "/css/css-masking/mask-image/mask-size-contain-position-fifty-fifty-ref.html", - "==" - ] - ], - {} - ] - ], - "mask-size-contain.html": [ - "19fc42d6ec51a97e45e1a0c1156555407bd07874", - [ - null, - [ - [ - "/css/css-masking/mask-image/mask-size-contain-ref.html", - "==" - ] - ], - {} - ] - ], - "mask-size-cover.html": [ - "171e11805b3ba038cf7f6484452efe03c4f5a2a2", - [ - null, - [ - [ - "/css/css-masking/mask-image/mask-size-cover-ref.html", - "==" - ] - ], - {} - ] - ], - "mask-size-length-auto.html": [ - "7152f6ff954f1e8e7c76c28b8948872e3efc8f00", - [ - null, - [ - [ - "/css/css-masking/mask-image/mask-size-length-length-ref.html", - "==" - ] - ], - {} - ] - ], - "mask-size-length-length.html": [ - "f9cf2cb6bcb91ccc8f11c76650c66afa9d64bc41", - [ - null, - [ - [ - "/css/css-masking/mask-image/mask-size-length-length-ref.html", - "==" - ] - ], - {} - ] - ], - "mask-size-length-percent.html": [ - "ba5bbbc55c504c6aac027bfde86210c3e68898b0", - [ - null, - [ - [ - "/css/css-masking/mask-image/mask-size-length-percent-ref.html", - "==" - ] - ], - {} - ] - ], - "mask-size-length.html": [ - "961357e12f7e1b1f8b49a63ece25179fa9f7e3e0", - [ - null, - [ - [ - "/css/css-masking/mask-image/mask-size-length-length-ref.html", - "==" - ] - ], - {} - ] - ], - "mask-size-percent-auto.html": [ - "603346d6e6b9d4399c35920fb87fef535b043801", - [ - null, - [ - [ - "/css/css-masking/mask-image/mask-size-percent-percent-ref.html", - "==" - ] - ], - {} - ] - ], - "mask-size-percent-length.html": [ - "4ac9c8e81fddb12badbcf553d1399af170885fbb", - [ - null, - [ - [ - "/css/css-masking/mask-image/mask-size-percent-percent-ref.html", - "==" - ] - ], - {} - ] - ], - "mask-size-percent-percent-stretch.html": [ - "69f89b8a984fb8bf3fa99e03ecc65d6a6b5bab58", - [ - null, - [ - [ - "/css/css-masking/mask-image/mask-size-percent-percent-stretch-ref.html", - "==" - ] - ], - {} - ] - ], - "mask-size-percent-percent.html": [ - "7b04d9b6d54686b8def0e2c288a5e2af737508c4", - [ - null, - [ - [ - "/css/css-masking/mask-image/mask-size-percent-percent-ref.html", - "==" - ] - ], - {} - ] - ], - "mask-size-percent.html": [ - "2e056df5217b42a379bb3016a9245b04746b32c1", - [ - null, - [ - [ - "/css/css-masking/mask-image/mask-size-percent-percent-ref.html", - "==" - ] - ], - {} - ] - ] - }, - "mask-svg-content": { - "mask-empty-container-with-filter.svg": [ - "ebe7e7e4d1cecd5b8c8343cdac85be644724a24f", - [ - null, - [ - [ - "/css/css-masking/mask-svg-content/reference/mask-green-square-001-ref.svg", - "==" - ] - ], - {} - ] - ], - "mask-invalid-reference.svg": [ - "3d68fc0d745a57b5ac93a561329041519c19cbbb", - [ - "css/css-masking/mask-svg-content/mask-invalid-reference.svg", - [ - [ - "/css/css-masking/mask-svg-content/reference/mask-green-square-001-ref.svg", - "==" - ] - ], - {} - ] - ], - "mask-negative-scale.svg": [ - "36b7abb42eb157b9feff158c6dfb399249ee437c", - [ - null, - [ - [ - "/css/css-masking/mask-svg-content/reference/mask-negative-scale-001-ref.svg", - "==" - ] - ], - {} - ] - ], - "mask-text-001.svg": [ - "587bd68f804626c46041adcd2f61c4504ef16e26", - [ - "css/css-masking/mask-svg-content/mask-text-001.svg", - [ - [ - "/css/css-masking/mask-svg-content/reference/mask-text-001-ref.svg", - "==" - ] - ], - {} - ] - ], - "mask-type-001.svg": [ - "9bcc40d55b1eba6d2811a3529f33a8f1a7ecdd03", - [ - null, - [ - [ - "/css/css-masking/mask-svg-content/reference/mask-green-square-001-ref.svg", - "==" - ] - ], - {} - ] - ], - "mask-type-002.svg": [ - "c298297329cf2d04bb53ae7cf8dbbb42551dfe4c", - [ - null, - [ - [ - "/css/css-masking/mask-svg-content/reference/mask-green-square-001-ref.svg", - "==" - ] - ], - {} - ] - ], - "mask-type-003.svg": [ - "891405dc46a5d200873d94608ea6de71e77adf38", - [ - null, - [ - [ - "/css/css-masking/mask-svg-content/reference/mask-green-square-001-ref.svg", - "==" - ] - ], - {} - ] - ], - "mask-with-filter-clipped-to-region.svg": [ - "3307ce5101d77d5096b1cf270f2a7fa52474c2e4", - [ - "css/css-masking/mask-svg-content/mask-with-filter-clipped-to-region.svg", - [ - [ - "/css/css-masking/mask-svg-content/reference/mask-green-square-001-ref.svg", - "==" - ] - ], - {} - ] - ], - "mask-with-filter.svg": [ - "aaa383983fd97d4e819a3a24867c5aa3d40f951a", - [ - "css/css-masking/mask-svg-content/mask-with-filter.svg", - [ - [ - "/css/css-masking/mask-svg-content/reference/mask-green-square-001-ref.svg", - "==" - ] - ], - {} - ] - ], - "mask-with-rotation.svg": [ - "9964fd524a1b8eb2815b8f3ecc01e53e6ce8604c", - [ - null, - [ - [ - "/css/css-masking/mask-svg-content/reference/mask-green-square-001-ref.svg", - "==" - ] - ], - {} - ] + "/css/css-multicol/multicol-nested-005-ref.xht", + "==" + ] + ], + {} ] - } - }, - "css-multicol": { - "abspos-after-spanner-static-pos.html": [ - "0cc6b0865005f6d66f84094148e5f7be11a54fab", + ], + "multicol-nested-007.html": [ + "92dc7a49ef7a49e9c46fa19fb05e13be4c9f48a2", [ null, [ @@ -213999,8 +211967,8 @@ {} ] ], - "abspos-after-spanner.html": [ - "98664b50cc144adf01817e98fe844d68d877dbe9", + "multicol-nested-008.html": [ + "95c8ab3b92c98d9e8e419b4945b0661c7974aab1", [ null, [ @@ -214012,8 +211980,8 @@ {} ] ], - "abspos-autopos-contained-by-viewport-000.html": [ - "8dbf5215b0176c9079511ef6c6e461245c28aa85", + "multicol-nested-009.html": [ + "4d978a7752b604e1f95e47a2f6c6f37e2e69f8bf", [ null, [ @@ -214025,8 +211993,8 @@ {} ] ], - "abspos-autopos-contained-by-viewport-001.html": [ - "05af3e91a0b72423475526ebe0d4010f01d87c0a", + "multicol-nested-010.html": [ + "6ed41139f8eb3aa1c88758e00d1de8cfdb77e74c", [ null, [ @@ -214038,21 +212006,21 @@ {} ] ], - "abspos-containing-block-outside-spanner.html": [ - "1f0419d9c982588a93ad981656ca1271144756dd", + "multicol-nested-011.html": [ + "925fecf99f283fcb05ff7ecdb5d11566cd9f9b16", [ null, [ [ - "/css/css-multicol/abspos-containing-block-outside-spanner-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "abspos-multicol-in-second-outer-clipped.html": [ - "9e1b3df69c554e75672cded3e258857bf06b153c", + "multicol-nested-013.html": [ + "2014988193f98468d7bf7041928d486cf8ea4a6d", [ null, [ @@ -214064,8 +212032,8 @@ {} ] ], - "always-balancing-before-column-span.html": [ - "a80617b96ef8c4e1061640ac0347c5a5cd96af71", + "multicol-nested-014.html": [ + "27bb5117566afc460dbad4b9a321289b0405f868", [ null, [ @@ -214077,8 +212045,8 @@ {} ] ], - "as-column-flex-item.html": [ - "21ff8d8d50cf97ecb22cd05cf1ae774d4aa81cdd", + "multicol-nested-015.html": [ + "18ae3392e69f0654f952733522b93b118201b81a", [ null, [ @@ -214090,8 +212058,8 @@ {} ] ], - "balance-break-avoidance-000.html": [ - "f6540e4ab0c1ba55ebef6463f90f2246f2801443", + "multicol-nested-016.html": [ + "ad4b6a5aaaf9390917d2c6566e5e7758bfc1b1ec", [ null, [ @@ -214103,8 +212071,8 @@ {} ] ], - "balance-break-avoidance-001.html": [ - "1449110516f35ac89bcadd0dfc59fbff3961966d", + "multicol-nested-017.html": [ + "79952189d517c3b46871e76314c1429dc9e752a1", [ null, [ @@ -214116,34 +212084,34 @@ {} ] ], - "balance-break-avoidance-002.html": [ - "4506ef6add52ead40e8fd9cd1326e1e1dba6e813", + "multicol-nested-018.html": [ + "3e19ec0f8c1b1e76f70abb742717b6f46e6611f0", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "balance-grid-container.html": [ - "64df23e09fb62c6e71aa834c96b72d4bf2330f06", + "multicol-nested-019.html": [ + "13242ff19bf042e08a92602fef5d298b693a47bd", [ null, [ [ - "/css/css-multicol/balance-grid-container-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "balance-orphans-widows-000.html": [ - "97f2d0ccd17699b7b43c6cdc01e0edcde049de9d", + "multicol-nested-020.html": [ + "f191fa5f310eee5284d708ec71bd6850d74bca99", [ null, [ @@ -214155,138 +212123,138 @@ {} ] ], - "baseline-000.html": [ - "e01e9de1dd124af08eb5a2aa07f36254769375a7", + "multicol-nested-021.html": [ + "2e82d93ec27efaf849d98fc14d82c92ff3488ea7", [ null, [ [ - "/css/css-multicol/baseline-000-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "baseline-001.html": [ - "171c53f3cc2e0476e7d079e74f4c6012cff4122b", + "multicol-nested-022.html": [ + "24ec705202d34e80b5ccdf3a5e85f622a1b5ce5a", [ null, [ [ - "/css/css-multicol/baseline-001-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "baseline-002.html": [ - "b1e660bd9e9a5cc3bfc6d0b58d0a67b95e4ab4fc", + "multicol-nested-023.html": [ + "df52e880360722bed21b9f5ca6578fa22377e041", [ null, [ [ - "/css/css-multicol/baseline-002-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "baseline-003.html": [ - "7d1f252d472ed986ea5047e46336053d3b1c3e01", + "multicol-nested-024.html": [ + "e11b27c6823de7ac13ae3e9abc4b1e2ebad01e7a", [ null, [ [ - "/css/css-multicol/baseline-003-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "baseline-004.html": [ - "b14d42761c76df1ef9c53fa07cae23536e9935e8", + "multicol-nested-025.html": [ + "badc91e03f41c3fc01b1611cd0117dd95e864cf6", [ null, [ [ - "/css/css-multicol/baseline-004-ref.html", + "/css/reference/nothing.html", "==" ] ], {} ] ], - "baseline-005.html": [ - "e1bf253dbce7fa932fee883a38f6757f67ca7b7f", + "multicol-nested-026.html": [ + "25371b70780b22d50b8b0cfd6b4c17c9f357243d", [ null, [ [ - "/css/css-multicol/baseline-005-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "baseline-006.html": [ - "c55ed730258050f7d73429ddc76be4fd24749961", + "multicol-nested-027.html": [ + "02590d394aea57787e6a64ca9e7ad59c35cb8940", [ null, [ [ - "/css/css-multicol/baseline-006-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "baseline-007.html": [ - "95f18fe850e474665f4370088a31ec3463c73616", + "multicol-nested-028.html": [ + "cfd164f14ec2a0387b009edaf97d872fb34a34b6", [ null, [ [ - "/css/css-multicol/baseline-007-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "baseline-008.html": [ - "beb19ca44741aad5bc8f4fd55af8694d615972c5", + "multicol-nested-029.html": [ + "4f73427c6f5d4935621b91e2ff06f6f415bdf934", [ null, [ [ - "/css/css-multicol/baseline-008-ref.html", + "/css/css-multicol/multicol-nested-029-ref.html", "==" ] ], {} ] ], - "broken-column-rule-1.html": [ - "13deaa72cb7d28e47e316cc54f1b0a062ac6be4c", + "multicol-nested-030.html": [ + "d2cbd85e77da42fa97ca98b6c93cc8123118c47b", [ null, [ [ - "/css/css-multicol/broken-column-rule-1-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "change-fragmentainer-size-000.html": [ - "823506d1c55e23addc2838ee3c92bf19995d8ec5", + "multicol-nested-031.html": [ + "341bb175d2e869e9d059eacf15f81cd0856b1d47", [ null, [ @@ -214298,21 +212266,21 @@ {} ] ], - "change-fragmentainer-size-001.html": [ - "d9ae7b1b6628c51e239977e23bf3ec97dc347737", + "multicol-nested-column-rule-001.xht": [ + "8fa8fdb7280083b538ce20b451f20d1c711335e5", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-multicol/multicol-nested-column-rule-001-ref.xht", "==" ] ], {} ] ], - "change-fragmentainer-size-002.html": [ - "4b3804361e1cb432962275726fc355fcc5e415f6", + "multicol-nested-column-rule-002.html": [ + "dafb2e9f689582aec8fe49ad0505c62a0658f638", [ null, [ @@ -214324,8 +212292,8 @@ {} ] ], - "change-fragmentainer-size-003.html": [ - "b8fae275022202f4ec3491167a0080eb8484ed16", + "multicol-nested-column-rule-003.html": [ + "ee1339127576266502679b4f0463437fa0cea5db", [ null, [ @@ -214337,1856 +212305,1872 @@ {} ] ], - "change-intrinsic-width.html": [ - "3df3e1ebc8f9b5780dc858a878bca13dbedcdb35", + "multicol-nested-margin-001.xht": [ + "52097c7f91bb9c9acc6e45c12472e13b635f1029", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-multicol/multicol-nested-margin-001-ref.xht", "==" ] ], {} ] ], - "change-transform-in-nested.html": [ - "fd5420beceb08004f9a8cd13f79e52a8e87d15c0", + "multicol-nested-margin-002.xht": [ + "02dbb5331e3caa84dcd0045f8ab02420472e8a96", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-multicol/multicol-nested-margin-002-ref.xht", "==" ] ], {} ] ], - "change-transform-in-second-column.html": [ - "c627c33fbf8ac395870953dc785463d2f15d682d", + "multicol-nested-margin-003.xht": [ + "73c8e5112de75179f43cefd48d2fe6a395d7ce3e", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-multicol/multicol-nested-margin-003-ref.xht", "==" ] ], {} ] ], - "change-transform-in-spanner.html": [ - "a70a4151c4f6c9042f5f81ce7ffdcf4933578c3a", + "multicol-nested-margin-004.xht": [ + "bd8dc51acd56d39b027e0d00d02cc31808edbd7d", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-multicol/multicol-nested-margin-004-ref.xht", "==" ] ], {} ] ], - "change-transform.html": [ - "a70a4151c4f6c9042f5f81ce7ffdcf4933578c3a", + "multicol-nested-margin-005.xht": [ + "b32a3efcdd97a9405726e11d573cba71382e3395", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-multicol/multicol-nested-margin-004-ref.xht", "==" ] ], {} ] ], - "column-balancing-with-span-and-oof-001.html": [ - "7ecd9ee873843db33c7457c974b5fd87ac893a21", + "multicol-oof-inline-cb-001.html": [ + "76c48e8059536707186ae6131fd64f75d3734b2d", [ - "css/css-multicol/column-balancing-with-span-and-oof-001.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-multicol/multicol-oof-inline-cb-001-ref.html", "==" ] ], {} ] ], - "column-balancing-with-span-and-oof-002.html": [ - "71df0e222957f298d6ad6a46fdf0586a8f1d7088", + "multicol-oof-inline-cb-002.html": [ + "505c01652dc08d51dbcb654ef672ce49d0a66304", [ - "css/css-multicol/column-balancing-with-span-and-oof-002.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-multicol/multicol-oof-inline-cb-001-ref.html", "==" ] ], {} ] ], - "column-count-used-001.html": [ - "2949a1996ebae0c48329906ea7ef34c83080e90f", + "multicol-overflow-000.xht": [ + "1d9080b44e1ac2bdc998c5fad3fe2b3aa3ebaee1", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-multicol/multicol-overflow-000-ref.xht", "==" ] ], {} ] ], - "column-fill-balance-orthog-block-001.html": [ - "be665763df4839c5885968e67a9eb89dac66458a", + "multicol-overflow-clip-auto-sized.html": [ + "f48d55c3184af85698315ae93c57702a2b4038b3", [ null, [ [ - "/css/css-multicol/reference/column-fill-balance-orthog-block-001-ref.html", + "/css/css-multicol/multicol-overflow-clip-auto-sized-ref.html", "==" ] ], {} ] ], - "columnfill-auto-max-height-001.html": [ - "bc76caa5474259820d5a8a63a606fccab3b8c270", + "multicol-overflow-clip-positioned.html": [ + "184bfc7f18dadbade32192b777c6b21f345882af", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-multicol/multicol-overflow-clip-positioned-ref.html", "==" ] ], {} ] ], - "columnfill-auto-max-height-002.html": [ - "ae2e81d6aa5a587b505beeef98bf51adf829c786", + "multicol-overflow-clip.html": [ + "af59ff92d4f740ee71c6e3e1378704dd6a1ebe86", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-multicol/multicol-overflow-clip-ref.html", "==" ] ], {} ] ], - "columnfill-auto-max-height-003.html": [ - "a632c8fbbd72ad51c0ecb67cd34eeb03f1a3508c", + "multicol-overflowing-001.xht": [ + "c4130df72992d4acacab2b81d0f2ce8b4f3c145b", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-multicol/multicol-overflowing-001-ref.xht", "==" ] ], {} ] ], - "composited-under-clip-under-multicol.html": [ - "a47ed89a2e0eb11624bfb5c96d547f632f9c27e7", + "multicol-reduce-000.xht": [ + "b979b222467ad1f6f3a96a0a6148f20e04295d9e", [ null, [ [ - "/css/css-multicol/composited-under-clip-under-multicol-ref.html", + "/css/css-multicol/multicol-reduce-000-ref.xht", "==" ] ], {} ] ], - "equal-gap-and-rule.html": [ - "bf6d6b9cefa8cf4ccf3be422ffef942ddc595905", + "multicol-rule-000.xht": [ + "8c45279f19ace65af0d6be746853be9357279caa", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-multicol/multicol-rule-000-ref.xht", "==" ] ], {} ] ], - "fixed-in-multicol-with-transform-container.html": [ - "ee384c378e537e413981ebfff94fbe3aecc69c6b", + "multicol-rule-001.xht": [ + "45c35dde3616ca2f8eb4d3d5ef18ea21bf8333a9", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-multicol/multicol-rule-001-ref.xht", "==" ] ], {} ] ], - "fixed-in-nested-multicol-with-transform-container.html": [ - "df836c18ea76c2fd65bf4ee84872a5e1e6ac7096", + "multicol-rule-002.xht": [ + "19d3cbde8ada25569f0f30c203516b943376b153", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-multicol/multicol-rule-ref.xht", "==" ] ], {} ] ], - "fixed-in-nested-multicol-with-viewport-container.html": [ - "f3681f09176563197ebb6b40f8db247be7c8293d", + "multicol-rule-003.xht": [ + "3037333ea8d1b0e52219ed23c28a0a1454088e28", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-multicol/multicol-rule-003-ref.xht", "==" ] ], {} ] ], - "fixed-in-nested-multicol.html": [ - "0745b8394ad9efabab39ad138624d1e2389420db", + "multicol-rule-004.xht": [ + "d06496881e2eb0d6f35c30169cf0c4d34747df44", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-multicol/multicol-rule-004-ref.xht", "==" ] ], {} ] ], - "fixed-size-child-with-overflow.html": [ - "60300c3cd65ba455eb6ef7ab29bf5bc2ec6e4166", + "multicol-rule-color-001.xht": [ + "fa49c88556b7d0726d465dec181e0faa2333b5a9", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-multicol/multicol-rule-color-001-ref.xht", "==" ] ], {} ] ], - "fixedpos-static-pos-with-viewport-cb-001.html": [ - "8b71999a23b7aafd9e720cc7496444d03e475a39", + "multicol-rule-color-inherit-001.xht": [ + "a675b799b118aacc6eab4d9bf6ab37d8bf9d7985", [ - "css/css-multicol/fixedpos-static-pos-with-viewport-cb-001.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-multicol/multicol-rule-color-inherit-001-ref.xht", "==" ] ], {} ] ], - "fixedpos-static-pos-with-viewport-cb-002.html": [ - "c2afef38aa2c58de083f4fc000d537c31e506ff4", + "multicol-rule-color-inherit-002.xht": [ + "988bbbc8ca9e0895195a24b2904918fb841ba0ac", [ - "css/css-multicol/fixedpos-static-pos-with-viewport-cb-002.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-multicol/multicol-rule-color-inherit-001-ref.xht", "==" ] ], {} ] ], - "fixedpos-static-pos-with-viewport-cb-003.html": [ - "fc29b5cb16e1675be29a5592b1a6ab05f1b9aa73", + "multicol-rule-dashed-000.xht": [ + "8564aea1fce0620c28a99c4b74870fa2dee91791", [ - "css/css-multicol/fixedpos-static-pos-with-viewport-cb-003.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-multicol/multicol-rule-dashed-000-ref.xht", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 85 + ], + [ + 0, + 20 + ] + ] + ] + ] + } ] ], - "float-and-block.html": [ - "21f9fb97436be415dfad77a83f2c1f085dbc0700", + "multicol-rule-dotted-000.xht": [ + "a669b60b6e40d5480ddeab82cf61ae10568a21b0", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-multicol/multicol-rule-dotted-000-ref.xht", "==" ] ], {} ] ], - "float-with-line-after-spanner.html": [ - "2351fb4bec9fe454a3f3d4ae9d82f67fc32736a4", + "multicol-rule-double-000.xht": [ + "ef97ce12d274ef3026d4d93ef387c2502472bb3c", [ null, [ [ - "/css/css-multicol/float-with-line-after-spanner-ref.html", + "/css/css-multicol/multicol-rule-double-000-ref.xht", "==" ] ], {} ] ], - "increase-prev-sibling-height.html": [ - "416f811f28c319f5e39064d424c68c0d743f98bf", + "multicol-rule-fraction-001.xht": [ + "fbbc9fc00e3a4b8f3a0f634322f7d60141c923df", [ null, [ [ - "/css/css-multicol/increase-prev-sibling-height-ref.html", + "/css/css-multicol/multicol-rule-fraction-001-ref.xht", "==" ] ], {} ] ], - "inline-block-and-column-span-all.html": [ - "c968a0875cd7cc41c3c1dd83abee425ba0e639bb", + "multicol-rule-fraction-002.xht": [ + "8645f0e32b7d1769e9abffd9add8bb94e51e9e96", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-multicol/multicol-rule-fraction-002-ref.xht", "==" ] ], {} ] ], - "intrinsic-size-001.html": [ - "ce8011b17f82407599ea28a2eaf543ec9d45a98b", + "multicol-rule-fraction-003.xht": [ + "2d2ad7b744edaad1a97171bee75dfc37b5eeb8a0", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-multicol/multicol-rule-fraction-3-ref.xht", "==" ] ], {} ] ], - "intrinsic-size-002.html": [ - "a85f14e9146a94f20f99f22d345be2b3a2ec973e", + "multicol-rule-groove-000.xht": [ + "5f985f90dc3089cb80b9d1ee6ded18e8d6899d4e", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-multicol/multicol-rule-groove-000-ref.xht", "==" ] ], {} ] ], - "intrinsic-size-003.html": [ - "86f67341d7dd7aec3c4fa4558756b87b9287e961", + "multicol-rule-hidden-000.xht": [ + "e0a4e6ee9755ee3568e8b4e5e23ccf646e95e156", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-multicol/multicol-rule-hidden-000-ref.xht", "==" ] ], {} ] ], - "intrinsic-size-004.html": [ - "d603ae02e6f15c06a3337cc560dce37c1abbda09", + "multicol-rule-inset-000.xht": [ + "474ad1986f6f6bed35d15a2190747498ec66ae14", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-multicol/multicol-rule-ridge-000-ref.xht", "==" ] ], {} ] ], - "intrinsic-size-005.html": [ - "5f128365134c3669764f42dcff917f5ef121cc9b", + "multicol-rule-large-001.xht": [ + "eb74b4e1ab173e28ea7cefa9bc30c6fa4356974d", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-multicol/multicol-rule-large-001-ref.xht", "==" ] ], {} ] ], - "intrinsic-width-change-column-count.html": [ - "30e7671e41c3879ceef30627b3d5b65dc8c0ff86", + "multicol-rule-nested-balancing-001.html": [ + "53a783ef5bb2f4598e76616e111d2f287c2172bc", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-multicol/multicol-rule-nested-balancing-001-ref.html", "==" ] ], {} ] ], - "large-actual-column-count.html": [ - "615e3f2f0598973d66518b7abbabe2fbf2f76bda", + "multicol-rule-nested-balancing-002.html": [ + "7829301c53e3ee5ca0e850fc1155aaa047c576d4", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-multicol/multicol-rule-nested-balancing-002-ref.html", "==" ] ], {} ] ], - "move-with-text-after-paint.html": [ - "1ea3d4b58bce1fe07a57faa05b008e426368925a", + "multicol-rule-nested-balancing-003.html": [ + "6809c3c598aa8fcbec6f88cb39452a410e537951", [ - "css/css-multicol/move-with-text-after-paint.html", + null, [ [ - "/css/css-multicol/move-with-text-after-paint-ref.html", + "/css/css-multicol/multicol-rule-nested-balancing-003-ref.html", "==" ] ], {} ] ], - "multicol-basic-001.html": [ - "702cf549b1e572f4b6e17ba637603f5667d64b1c", + "multicol-rule-nested-balancing-004.html": [ + "d6f6c030b35348ffddc135eef26ef9f036a3552b", [ null, [ [ - "/css/css-multicol/reference/multicol-basic-ref.html", + "/css/css-multicol/multicol-rule-nested-balancing-004-ref.html", "==" ] ], {} ] ], - "multicol-basic-002.html": [ - "50334e96d604092f43fa2583fac0cec7062cfda6", + "multicol-rule-none-000.xht": [ + "32ca043957782f09c69bd77bd4933345228b81d7", [ null, [ [ - "/css/css-multicol/reference/multicol-basic-ref.html", + "/css/css-multicol/multicol-rule-hidden-000-ref.xht", "==" ] ], {} ] ], - "multicol-basic-003.html": [ - "05cc1e0fe1f3259978c0eff8b55a349bab58e5ba", + "multicol-rule-outset-000.xht": [ + "5aaafc09f7a3a72326a824c4d56fa47cf6922318", [ null, [ [ - "/css/css-multicol/reference/multicol-basic-ref.html", + "/css/css-multicol/multicol-rule-groove-000-ref.xht", "==" ] ], {} ] ], - "multicol-basic-004.html": [ - "a6699692612985852375d0201330f31b6c64e3b3", + "multicol-rule-percent-001.xht": [ + "bd54a9f4ef2577f51a2b6d2cc680f765cd838e09", [ null, [ [ - "/css/css-multicol/reference/multicol-basic-ref.html", + "/css/css-multicol/multicol-containing-002-ref.xht", "==" ] ], {} ] ], - "multicol-basic-005.xht": [ - "a4d0e69a5a47455253d042d9272db9dd7a960c39", + "multicol-rule-px-001.xht": [ + "bdca6c7ca4a46eb12faf4667b36bc1722d37220d", [ null, [ [ - "/css/css-multicol/reference/multicol-basic-005-ref.xht", + "/css/css-multicol/multicol-rule-ref.xht", "==" ] ], {} ] ], - "multicol-basic-006.xht": [ - "cf407ed20153b6280dc085d4d76c922146976367", + "multicol-rule-ridge-000.xht": [ + "805cf9da9a7c8d406e560777450b3d71d497e6ec", [ null, [ [ - "/css/css-multicol/reference/multicol-basic-005-ref.xht", + "/css/css-multicol/multicol-rule-ridge-000-ref.xht", "==" ] ], {} ] ], - "multicol-basic-007.xht": [ - "add6a0ed667d8178408ffa1e78b800348a54abe8", + "multicol-rule-samelength-001.xht": [ + "f127a99475acd65ad14692d7c96e015c746410a0", [ null, [ [ - "/css/css-multicol/reference/multicol-basic-005-ref.xht", + "/css/css-multicol/multicol-rule-samelength-001-ref.xht", "==" ] ], {} ] ], - "multicol-basic-008.xht": [ - "a2f550ca52a15d9f32e505abd494fb763538949d", + "multicol-rule-shorthand-001.xht": [ + "6979cd7472daf76745cfb394ee0f8da889285626", [ null, [ [ - "/css/css-multicol/reference/multicol-basic-005-ref.xht", + "/css/css-multicol/multicol-rule-samelength-001-ref.xht", "==" ] ], {} ] ], - "multicol-block-no-clip-001.xht": [ - "239ecfe74e7552c13e991e769ba93a9789d129d5", + "multicol-rule-shorthand-2.xht": [ + "848dc60e0f0b1dca049d22be003058212fc8d192", [ null, [ [ - "/css/css-multicol/multicol-block-no-clip-001-ref.xht", + "/css/css-multicol/multicol-rule-shorthand-2-ref.xht", "==" ] ], {} ] ], - "multicol-block-no-clip-002.xht": [ - "52439d2b849d2600820ead7cd36f9b10cd7b8da9", + "multicol-rule-solid-000.xht": [ + "77cfa24b70ad428e0f8074ed8cdb324065853f55", [ null, [ [ - "/css/css-multicol/multicol-block-no-clip-002-ref.xht", + "/css/css-multicol/multicol-rule-solid-000-ref.xht", "==" ] ], {} ] ], - "multicol-br-inside-avoidcolumn-001.xht": [ - "49e28fa8576ffb29c9376fd44f4d2dfbb520098b", + "multicol-rule-stacking-001.xht": [ + "8a9cca8735524702ec7b6ab5b4c8c96ef9cab240", [ null, [ [ - "/css/reference/ref-filled-green-200px-square.html", + "/css/css-multicol/multicol-rule-stacking-ref.xht", "==" ] ], {} ] ], - "multicol-break-000.xht": [ - "c4deb31adecdad7504425c1ed960b5dfa8fdfc08", + "multicol-scroll-content.html": [ + "9fdaf1a8806ee534e7814be1aa6261ae2f3d2c84", [ null, [ [ - "/css/css-multicol/multicol-break-000-ref.xht", + "/css/css-multicol/multicol-scroll-content-ref.html", "==" ] ], {} ] ], - "multicol-break-001.xht": [ - "432f7c5fdec085a516db32ebfa7b55a93490254c", + "multicol-shorthand-001.xht": [ + "650a324a80433b4f06ae61ac251d579c2d677e99", [ null, [ [ - "/css/css-multicol/multicol-break-001-ref.xht", + "/css/css-multicol/multicol-rule-ref.xht", "==" ] ], {} ] ], - "multicol-breaking-000.html": [ - "98f808164e7d83e789811f48964e85ea0efac064", + "multicol-span-000.xht": [ + "d9870714c62fc9db168675ef7f3cab1097e9bf9e", [ null, [ [ - "/css/css-multicol/multicol-breaking-000-ref.html", + "/css/css-multicol/multicol-span-000-ref.xht", "==" ] ], {} ] ], - "multicol-breaking-001.html": [ - "e1ba966923368009e785427483a8ee3cc65981a0", + "multicol-span-all-001.xht": [ + "5525e7b786f93f9224058e5180b446b44a481ada", [ null, [ [ - "/css/css-multicol/multicol-breaking-001-ref.html", + "/css/css-multicol/multicol-span-all-001-ref.xht", "==" ] ], {} ] ], - "multicol-breaking-002.html": [ - "279ed941cbee6f1b65d6dc2d62395a995f7fc58c", + "multicol-span-all-002.xht": [ + "ad3dc5ccd77807b03b41df78643f3df4cdfb7eae", [ null, [ [ - "/css/css-multicol/multicol-breaking-002-ref.html", + "/css/css-multicol/multicol-span-all-002-ref.xht", "==" ] ], {} ] ], - "multicol-breaking-003.html": [ - "102202dd1da474ee9daaac4e350ca4dc89669878", + "multicol-span-all-003.xht": [ + "6facec9df12d1eed896b4f4263567029fe591f82", [ null, [ [ - "/css/css-multicol/multicol-breaking-003-ref.html", + "/css/css-multicol/multicol-count-002-ref.xht", "==" ] ], {} ] ], - "multicol-breaking-004.html": [ - "10c48c07d179a13ea06ac894e9e5eb9a01845b5d", + "multicol-span-all-004.html": [ + "987f07fd0a2e8891e7f7ee1aba166898f2e7155f", [ - "css/css-multicol/multicol-breaking-004.html", + null, [ [ - "/css/css-multicol/multicol-breaking-004-ref.html", + "/css/css-multicol/multicol-span-all-004-ref.html", "==" ] ], {} ] ], - "multicol-breaking-005.html": [ - "c4ae8a46ab0d092ff5d2ca126eefab9368c5368a", + "multicol-span-all-005.html": [ + "226ed17f08a0ece61449b24f7f7bba41c8a88c9b", [ - "css/css-multicol/multicol-breaking-005.html", + null, [ [ - "/css/css-multicol/multicol-breaking-005-ref.html", + "/css/css-multicol/multicol-span-all-005-ref.html", "==" ] ], {} ] ], - "multicol-breaking-006.html": [ - "7efeee80251f6d912ff8d6ef1111e2fd6cf5b8a6", + "multicol-span-all-006.html": [ + "422e4cde70f83070c0539a719498d6b86377aad9", [ null, [ [ - "/css/css-multicol/multicol-breaking-006-ref.html", + "/css/css-multicol/multicol-span-all-006-ref.html", "==" ] ], {} ] ], - "multicol-breaking-nobackground-000.html": [ - "768ec63298f03eb28a80a4e33f140314168b010d", + "multicol-span-all-007.html": [ + "a931777d179fb4ecdf9a984276fbd3828f235c0d", [ null, [ [ - "/css/css-multicol/multicol-breaking-nobackground-000-ref.html", + "/css/css-multicol/multicol-span-all-007-ref.html", "==" ] ], {} ] ], - "multicol-breaking-nobackground-001.html": [ - "78eda2331f0de812df260c48b63a679a08c39a0f", + "multicol-span-all-008.html": [ + "972132c14b19d76e3e99c351e6a5c13eadc9c00c", [ null, [ [ - "/css/css-multicol/multicol-breaking-nobackground-001-ref.html", + "/css/css-multicol/multicol-span-all-008-ref.html", "==" ] ], {} ] ], - "multicol-breaking-nobackground-002.html": [ - "e20568fd17e7d2dc7526f32a48ed3bb6ac417563", + "multicol-span-all-009.html": [ + "698771b0f4cd7d345778f494dc76911b178376c0", [ null, [ [ - "/css/css-multicol/multicol-breaking-nobackground-002-ref.html", + "/css/css-multicol/multicol-span-all-009-ref.html", "==" ] ], {} ] ], - "multicol-breaking-nobackground-003.html": [ - "edf18f98981753750ec6588e5fd0ff97c1475005", + "multicol-span-all-010.html": [ + "6bab00467afa97d16830368d2d61981408d8990e", [ null, [ [ - "/css/css-multicol/multicol-breaking-nobackground-003-ref.html", + "/css/css-multicol/multicol-span-all-010-ref.html", "==" ] ], {} ] ], - "multicol-breaking-nobackground-004.html": [ - "acc200f972975b7d8a2fbc1458073e47737fa606", + "multicol-span-all-011.html": [ + "57647d7483c86e3edbb52a042f31ea0e655d7b8e", [ - "css/css-multicol/multicol-breaking-nobackground-004.html", + null, [ [ - "/css/css-multicol/multicol-breaking-nobackground-004-ref.html", + "/css/css-multicol/multicol-span-all-011-ref.html", "==" ] ], {} ] ], - "multicol-breaking-nobackground-005.html": [ - "e7395d6c027ad791380fcd7242b04f629a4305af", + "multicol-span-all-012.html": [ + "7f1f9ae1ac41b1760f03056f7998746082f87e2e", [ - "css/css-multicol/multicol-breaking-nobackground-005.html", + null, [ [ - "/css/css-multicol/multicol-breaking-nobackground-005-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "multicol-clip-001.xht": [ - "c754b98b30562a3f21c784fa97135437e9901dd7", + "multicol-span-all-013.html": [ + "38bd05f0b80dbaa809ed8475c6e9c521ac9a1add", [ null, [ [ - "/css/css-multicol/multicol-clip-001-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "multicol-clip-002.xht": [ - "6b97ad4811e7c6554d5dc84e1d8b45a2d3efbe1d", + "multicol-span-all-014.html": [ + "ec835686cf2ec9fffbdb04a8c007613381c778b2", [ null, [ [ - "/css/css-multicol/multicol-clip-002-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "multicol-clip-scrolled-content-001.html": [ - "868e91de345cc7d27cb0690f49aa8db53bd33e29", + "multicol-span-all-015.html": [ + "041c211b855e50ad70e65c98af73567848e3534e", [ null, [ [ - "/css/css-multicol/reference/multicol-clip-scrolled-content-001-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "multicol-collapsing-001.xht": [ - "a7d2f3717f4bbd860881a1d8bf5fcd618a0e8c4f", + "multicol-span-all-017.html": [ + "00764ccdb1bfe91bc6045d6a5bd03bb43c354334", [ null, [ [ - "/css/css-multicol/multicol-collapsing-001-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "multicol-columns-001.xht": [ - "ed12b0629a6eb0332ff104edd39d2f777aee909b", + "multicol-span-all-018.html": [ + "7dbfe3a495923adcf1e6b73837a2ffa1414f2874", [ null, [ [ - "/css/css-multicol/multicol-columns-001-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "multicol-columns-002.xht": [ - "9436ec8d90baf2242ebd3f7d6fb890212c5ea7cb", + "multicol-span-all-019.html": [ + "e1a0de3854b17a4a02fc7d57d24d46b48cb5b15c", [ null, [ [ - "/css/css-multicol/multicol-columns-001-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "multicol-columns-003.xht": [ - "70128175e3280579ff848824ae2d010732725d7c", + "multicol-span-all-block-sibling-003.xht": [ + "abaa45f0a85023f3f07a9db483629b74d2b09d71", [ null, [ [ - "/css/css-multicol/multicol-columns-001-ref.xht", + "/css/css-multicol/multicol-span-all-block-sibling-3-ref.xht", "==" ] ], {} ] ], - "multicol-columns-004.xht": [ - "0d1cf23b664358582027f04cf3f5b1801b7ed544", + "multicol-span-all-button-001.html": [ + "4319b166b48538acd8f19181616af442c2e30add", [ null, [ [ - "/css/css-multicol/multicol-columns-001-ref.xht", + "/css/css-multicol/multicol-span-all-button-001-ref.html", "==" ] ], {} ] ], - "multicol-columns-005.xht": [ - "deb91bf4b65371b17f2fc37f3bf07f634d953619", + "multicol-span-all-button-002.html": [ + "419e9a2e66fe12c3d79bb03a48c26410e37d93b0", [ null, [ [ - "/css/css-multicol/multicol-columns-001-ref.xht", + "/css/css-multicol/multicol-span-all-button-002-ref.html", "==" ] ], {} ] ], - "multicol-columns-006.xht": [ - "0fee6ab2184f8a2754bada8c82bca075c705ff30", + "multicol-span-all-button-003.html": [ + "8c98ca3fa360caec7173690966e21b9380ac2ee0", [ null, [ [ - "/css/css-multicol/multicol-columns-001-ref.xht", + "/css/css-multicol/multicol-span-all-button-003-ref.html", "==" ] ], {} ] ], - "multicol-columns-007.xht": [ - "25da9e8e92c94b1c309235e386bbee253dc1f387", + "multicol-span-all-children-height-001.html": [ + "3226e81c3205528f72ca4ce2f96d9a700d6fa78d", [ null, [ [ - "/css/css-multicol/multicol-columns-001-ref.xht", + "/css/css-multicol/multicol-span-all-children-height-001-ref.html", "==" ] ], {} ] ], - "multicol-columns-invalid-001.xht": [ - "48e23756462810a3ff0fcdb19f089c6dbadef4e2", + "multicol-span-all-children-height-002.html": [ + "91f4112c2f2e8d90ab3b6d56833f9e8234a1ad90", [ null, [ [ - "/css/css-multicol/multicol-columns-invalid-001-ref.xht", + "/css/css-multicol/multicol-span-all-children-height-002-ref.html", "==" ] ], {} ] ], - "multicol-columns-invalid-002.xht": [ - "eea0de53f15c658d6c9125cacab33558fc5fc9b6", + "multicol-span-all-children-height-003.html": [ + "296bf7568f4fe6d9c46a11c61ae6ceec4e265bf0", [ null, [ [ - "/css/css-multicol/multicol-columns-invalid-001-ref.xht", + "/css/css-multicol/multicol-span-all-children-height-003-ref.html", "==" ] ], {} ] ], - "multicol-columns-toolong-001.xht": [ - "c7330c8d543287237d8536b7315e7a058bde4a3d", + "multicol-span-all-children-height-004a.html": [ + "1ee8b5e7c4952c951ce008d1c9eecf1104e58212", [ null, [ [ - "/css/css-multicol/multicol-columns-invalid-001-ref.xht", + "/css/css-multicol/multicol-span-all-children-height-004a-ref.html", "==" ] ], {} ] ], - "multicol-contained-absolute.html": [ - "44f17e8a0783dd570409cc2aa310f90057307fc5", + "multicol-span-all-children-height-004b.html": [ + "df9b687842745084e031ed3dcf84185e0d3933f1", [ null, [ [ - "/css/css-multicol/multicol-contained-absolute-ref.html", + "/css/css-multicol/multicol-span-all-children-height-004b-ref.html", "==" ] ], {} ] ], - "multicol-containing-001.xht": [ - "1b83f5431ea073e40acf548052a86f02ca247398", + "multicol-span-all-children-height-005.html": [ + "6e9a4c299f7c4e05c0014702ca79fac5e77f956c", [ null, [ [ - "/css/css-multicol/multicol-containing-001-ref.xht", + "/css/css-multicol/multicol-span-all-children-height-005-ref.html", "==" ] ], {} ] ], - "multicol-containing-002.xht": [ - "56d42c70ae7f40573b0f474f0b3c8b283df71ac8", + "multicol-span-all-children-height-006.html": [ + "4dad04f34aace0d7cd4376bce6b7e9e2266081f0", [ null, [ [ - "/css/css-multicol/multicol-containing-002-ref.xht", + "/css/css-multicol/multicol-span-all-children-height-006-ref.html", "==" ] ], {} ] ], - "multicol-containing-003.html": [ - "c190385751e56e157d0f349c0b732f322e6c3b44", + "multicol-span-all-children-height-007.html": [ + "71aa69a17595d45a15ae1c134e1391385f0600e3", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-multicol/multicol-span-all-children-height-007-ref.html", "==" ] ], {} ] ], - "multicol-count-001.xht": [ - "eb3272f9a4e68500fd846ae62958aac397037433", + "multicol-span-all-children-height-008.html": [ + "6b9804898d72fb3ba0c803c8fcd3409666582579", [ null, [ [ - "/css/css-multicol/multicol-columns-001-ref.xht", + "/css/css-multicol/multicol-span-all-children-height-008-ref.html", "==" ] ], {} ] ], - "multicol-count-002.xht": [ - "b8fb6b50adb0de516bb89cdeca9d3e3881f48e93", + "multicol-span-all-children-height-009.html": [ + "49b06b5ed4eed9b4773702f2add1198843ed8c98", [ null, [ [ - "/css/css-multicol/multicol-count-002-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "multicol-count-computed-003.xht": [ - "96a1e477d92801f155b50520b52c6f9f3a93e020", + "multicol-span-all-children-height-010.html": [ + "0bcbf4da3ce8e1abff5b1e4c87b1106cc67c3af0", [ null, [ [ - "/css/css-multicol/multicol-count-computed-003-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "multicol-count-computed-004.xht": [ - "90f4ac0ebbd9edd58a96a3fd2b4507df7d68516d", + "multicol-span-all-children-height-011.html": [ + "a85c7c59e6e16c6215ad93d019d0d869a97da7ce", [ null, [ [ - "/css/css-multicol/multicol-count-computed-004-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "multicol-count-computed-005.xht": [ - "ed89dc8ddb882d52ae6c8232c717fe91947389fd", + "multicol-span-all-children-height-012.html": [ + "49437f027c13092d6d03d7cf26d6f79b05039cc6", [ null, [ [ - "/css/css-multicol/multicol-count-computed-003-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "multicol-count-negative-001.xht": [ - "98bfd027e9b279a6be7f20dfacee5e5604386eba", + "multicol-span-all-children-height-013.html": [ + "6889c076b65b6371fdb26b54daeb77f7d6180882", [ null, [ [ - "/css/css-multicol/multicol-columns-invalid-001-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "multicol-count-negative-002.xht": [ - "17911b5095ee66f07582dfd3c6fc7c1a995d876b", + "multicol-span-all-dynamic-add-001.html": [ + "d9bf40889f75db72835c279517341dbb786c8ba8", [ null, [ [ - "/css/css-multicol/multicol-columns-invalid-001-ref.xht", + "/css/css-multicol/multicol-span-all-dynamic-add-001-ref.html", "==" ] ], {} ] ], - "multicol-count-non-integer-001.xht": [ - "cfa54f312f60d26b33fd1c97cd3f9a8b52b55ae1", + "multicol-span-all-dynamic-add-002.html": [ + "665a168083b9e91344cb0e566253dcf4ec921469", [ null, [ [ - "/css/css-multicol/multicol-columns-invalid-001-ref.xht", + "/css/css-multicol/multicol-span-all-dynamic-add-002-ref.html", "==" ] ], {} ] ], - "multicol-count-non-integer-002.xht": [ - "93680119936ee351d0f77650e004a1e67691de2a", + "multicol-span-all-dynamic-add-003.html": [ + "4538733ec4b2e76c5731041154457dd39a9baa20", [ null, [ [ - "/css/css-multicol/multicol-columns-invalid-001-ref.xht", + "/css/css-multicol/multicol-span-all-dynamic-add-003-ref.html", "==" ] ], {} ] ], - "multicol-count-non-integer-003.xht": [ - "6c94be98775661bea5c5fb698aae868b179be34a", + "multicol-span-all-dynamic-add-004.html": [ + "0b2ecbcc2f7ae4adef31f4d4fcc44605fb81c4ca", [ null, [ [ - "/css/css-multicol/multicol-columns-invalid-001-ref.xht", + "/css/css-multicol/multicol-span-all-dynamic-add-004-ref.html", "==" ] ], {} ] ], - "multicol-dynamic-add-001.html": [ - "8575626ace6a84e5f4c29e2e76721c6e1b8efa4e", + "multicol-span-all-dynamic-add-005.html": [ + "4453cae566ab92560f6ed30cd721156e82bcef0c", [ - "css/css-multicol/multicol-dynamic-add-001.html", + null, [ [ - "/css/css-multicol/multicol-dynamic-add-001-ref.html", + "/css/css-multicol/multicol-span-all-dynamic-add-001-ref.html", "==" ] ], {} ] ], - "multicol-dynamic-change-inside-break-inside-avoid-001.html": [ - "11063288c188189dfb17520aea6a7942c6c2901e", + "multicol-span-all-dynamic-add-006.html": [ + "1e16e9dfd926512be371c6716f480c0342cbea0d", [ - "css/css-multicol/multicol-dynamic-change-inside-break-inside-avoid-001.html", + null, [ [ - "/css/css-multicol/multicol-dynamic-change-inside-break-inside-avoid-001-ref.html", + "/css/css-multicol/multicol-span-all-dynamic-add-002-ref.html", "==" ] ], {} ] ], - "multicol-fill-000.xht": [ - "79af1cbbf8ba80efd03cd0c21c908742b1f1424a", + "multicol-span-all-dynamic-add-007.html": [ + "b54e38a32b50fe6320135e1810215253187e23f8", [ null, [ [ - "/css/css-multicol/multicol-fill-000-ref.xht", + "/css/css-multicol/multicol-span-all-dynamic-add-007-ref.html", "==" ] ], {} ] ], - "multicol-fill-001.xht": [ - "3cd79ccbee77bad75eb13085882915bba28800af", + "multicol-span-all-dynamic-add-008.html": [ + "f6340a40b023bf2be286274572d21535db29b259", [ null, [ [ - "/css/css-multicol/multicol-fill-001-ref.xht", + "/css/css-multicol/multicol-span-all-dynamic-add-008-ref.html", "==" ] ], {} ] ], - "multicol-fill-auto-001.xht": [ - "d5990a3ffc026826740af0a80c27c27ceb2b0d0b", + "multicol-span-all-dynamic-add-009.html": [ + "f07c51c6306301981780081f80e0c1c07131daa5", [ null, [ [ - "/css/css-multicol/multicol-fill-auto-001-ref.xht", + "/css/css-multicol/multicol-span-all-dynamic-add-002-ref.html", "==" ] ], {} ] ], - "multicol-fill-auto-002.xht": [ - "98c14f9ac5815c019b0325a8e07a8628e1cf0926", + "multicol-span-all-dynamic-add-010.html": [ + "d431e82304e384710cd4e1bc3a7884a11a7e4115", [ null, [ [ - "/css/css-multicol/multicol-fill-auto-002-ref.xht", + "/css/css-multicol/multicol-span-all-dynamic-add-010-ref.html", "==" ] ], {} ] ], - "multicol-fill-auto-003.xht": [ - "df9e82f9c4f99d4541c0330cffddc10e6fae8af7", + "multicol-span-all-dynamic-add-011.html": [ + "6b96a9afe861e129b1bb23bb5bc7a4884e27647c", [ null, [ [ - "/css/css-multicol/multicol-fill-auto-003-ref.xht", + "/css/css-multicol/multicol-span-all-dynamic-add-003-ref.html", "==" ] ], {} ] ], - "multicol-fill-auto-004.html": [ - "18e6fa7258e46bb9ba0399331c22b91cd72f834f", + "multicol-span-all-dynamic-add-012.html": [ + "fa3a4677fff572e286f3aa34d3bc570a5992f027", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-multicol/multicol-span-all-dynamic-add-012-ref.html", "==" ] ], {} ] ], - "multicol-fill-auto-block-children-001.xht": [ - "864080a02a4042e4bf29a27fe5d2c8ce177f2557", + "multicol-span-all-dynamic-add-013.html": [ + "ae275386e23724a3567a600c96ddb387ddb32009", [ null, [ [ - "/css/css-multicol/multicol-fill-auto-block-children-ref.xht", + "/css/css-multicol/multicol-span-all-dynamic-add-013-ref.html", "==" ] ], {} ] ], - "multicol-fill-auto-block-children-002.xht": [ - "2399da2e7b9bb464c978f4572656b63b65b4b65f", + "multicol-span-all-dynamic-remove-001.html": [ + "0c5523ad124ba1b3ea8c36cca984bfcaf7d42c83", [ null, [ [ - "/css/css-multicol/multicol-fill-auto-block-children-002-ref.xht", + "/css/css-multicol/multicol-span-all-dynamic-remove-001-ref.html", "==" ] ], {} ] ], - "multicol-fill-auto-block-children-003.html": [ - "7bc29898c61da358ba5874e81d0d8d40119c3b23", + "multicol-span-all-dynamic-remove-002.html": [ + "2b4ab81d2d6e39cf220902e9372abb725cace5c1", [ - "css/css-multicol/multicol-fill-auto-block-children-003.html", + null, [ [ - "/css/css-multicol/multicol-fill-auto-block-children-003-ref.html", + "/css/css-multicol/multicol-span-all-dynamic-remove-002-ref.html", "==" ] ], {} ] ], - "multicol-fill-balance-001.xht": [ - "3c6825a364436aa94054453ba7678f01ac1d6efe", + "multicol-span-all-dynamic-remove-003.html": [ + "30de099d5e37bdc9bb702b95cd4acc9d2b7145d5", [ null, [ [ - "/css/css-multicol/multicol-fill-balance-001-ref.xht", + "/css/css-multicol/multicol-span-all-dynamic-remove-001-ref.html", "==" ] ], {} ] ], - "multicol-fill-balance-002.html": [ - "fb6004d47becf9b51eaeb2d358fd8f772b2babdb", + "multicol-span-all-dynamic-remove-004.html": [ + "c362a1c787e04ab8f0060dbf8d8dbbe69292c06f", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-multicol/multicol-span-all-dynamic-remove-004-ref.html", "==" ] ], {} ] ], - "multicol-fill-balance-003.html": [ - "5f8db6336bac713dfd9f2aa1263803bc63eb1874", + "multicol-span-all-dynamic-remove-005.html": [ + "21a8b0b590cd425879337d8bf8ebd945e37f9992", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-multicol/multicol-span-all-dynamic-remove-005-ref.html", "==" ] ], {} ] ], - "multicol-fill-balance-004.html": [ - "1d90cc45f61fb3512eeca3a1905f5d75bf2b640f", + "multicol-span-all-dynamic-remove-006.html": [ + "406cb0aaf08080ff0f8fa75d6d5cbcd6c6c1357b", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-multicol/multicol-span-all-dynamic-remove-001-ref.html", "==" ] ], {} ] ], - "multicol-fill-balance-005.html": [ - "ad9a592ec9355ded07383e2071d1dda786ba5f8f", + "multicol-span-all-dynamic-remove-007.html": [ + "2e9e49420e9e62dc191355f87f9f2f119dd02c39", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-multicol/multicol-span-all-dynamic-remove-001-ref.html", "==" ] ], {} ] ], - "multicol-fill-balance-006.html": [ - "3dc2022a3dfcf80ff133c212237503a4b64a9fe1", + "multicol-span-all-fieldset-001.html": [ + "7e741134ecc1335fc069708ac5f7509f8da22cec", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-multicol/multicol-span-all-fieldset-001-ref.html", "==" ] ], {} ] ], - "multicol-fill-balance-018.html": [ - "fd4f47c591d743ab4cbb6e52c22ee8b7323396db", + "multicol-span-all-fieldset-002.html": [ + "f7c9a842cd9c3e25f2357171705677a54bc592dd", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-multicol/multicol-span-all-fieldset-002-ref.html", "==" ] ], {} ] ], - "multicol-fill-balance-024.html": [ - "900dca8636a0eaf4cd19ec7a3772f567259cf0cb", + "multicol-span-all-fieldset-003.html": [ + "02df35cb8a4625bf7c22b0b5351cc76c0a87abd1", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-multicol/multicol-span-all-fieldset-003-ref.html", "==" ] ], {} ] ], - "multicol-fill-balance-026.html": [ - "d38ca32e051822736b023e82cf532ef6e6d4e0a0", + "multicol-span-all-list-item-001.html": [ + "2cbf740751852d01aa7d720af4e6fc15f7468633", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-multicol/multicol-span-all-list-item-001-ref.html", "==" ] ], {} ] ], - "multicol-fill-balance-nested-000.html": [ - "5e466df8077545b4d6474389d296bc26c5b28b86", + "multicol-span-all-list-item-002.html": [ + "2644fe920fc79878831039ca02d8fd47a87aa418", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-multicol/multicol-span-all-list-item-002-ref.html", "==" ] ], {} ] ], - "multicol-gap-000.xht": [ - "88aa17e8b488565dc40398e6e8f1d2e3bf3a97a1", + "multicol-span-all-margin-001.xht": [ + "a7d25ab56c1b18b5e41a9d3e5ac806f46bd618fa", [ null, [ [ - "/css/css-multicol/multicol-gap-000-ref.xht", + "/css/css-multicol/multicol-span-all-margin-001-ref.xht", "==" ] ], {} ] ], - "multicol-gap-001.xht": [ - "7a105b7f1977a4b4b793dcfcf394f978a53425eb", + "multicol-span-all-margin-002.xht": [ + "2fb05ab502ab868d41ef5ed093de4b0eff7fec76", [ null, [ [ - "/css/css-multicol/multicol-gap-001-ref.xht", + "/css/css-multicol/multicol-span-all-margin-002-ref.xht", "==" ] ], {} ] ], - "multicol-gap-002.xht": [ - "1ad53340435e09e277a5abb23b1f96d38ede9a88", + "multicol-span-all-margin-003.html": [ + "06c1bea3abfed404db4b7b7b6ad83be0f5e3ca24", [ null, [ [ - "/css/css-multicol/multicol-gap-002-ref.xht", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "multicol-gap-003.xht": [ - "39b7bc4f0e112c7ec2fbdef7003cded535027bd1", + "multicol-span-all-margin-bottom-001.xht": [ + "eabb519e6722ad26ee9e43f3d55d129332807e92", [ null, [ [ - "/css/css-multicol/multicol-gap-002-ref.xht", + "/css/css-multicol/multicol-span-all-margin-bottom-001-ref.xht", "==" ] ], {} ] ], - "multicol-gap-fraction-001.xht": [ - "a1614ec2b7c5b8f7bfe6342e6ccd42fd0716b853", + "multicol-span-all-margin-nested-001.xht": [ + "6bd22df89ff4086264dc8735c30816025460ce4f", [ null, [ [ - "/css/css-multicol/multicol-gap-fraction-001-ref.xht", + "/css/css-multicol/multicol-span-all-margin-nested-001-ref.xht", "==" ] ], {} ] ], - "multicol-gap-fraction-002.html": [ - "ae1aaaad774e9f087b9bd3a76bf49c053b48a191", + "multicol-span-all-margin-nested-002.xht": [ + "5e05e8697a28335c64385965fd57282985d927d0", [ null, [ [ - "/css/reference/nothing.html", + "/css/css-multicol/multicol-span-all-margin-nested-001-ref.xht", "==" ] ], {} ] ], - "multicol-gap-large-001.xht": [ - "5dd1a90691b92653a7574b40c2d967a0e04968d0", + "multicol-span-all-margin-nested-firstchild-001.xht": [ + "cfb5853627f7059b5e8dddb2c45571059194bac4", [ null, [ [ - "/css/css-multicol/multicol-gap-large-001-ref.xht", + "/css/css-multicol/multicol-span-all-margin-nested-firstchild-ref.xht", "==" ] ], {} ] ], - "multicol-gap-large-002.xht": [ - "8e3be322efc25b370fda948b184f967d472f2bd3", + "multicol-span-all-restyle-001.html": [ + "0f05c9cc5a61b0e3b36eef3069f3d813e35229e1", [ null, [ [ - "/css/css-multicol/multicol-gap-large-002-ref.xht", + "/css/css-multicol/multicol-span-all-restyle-001-ref.html", "==" ] ], {} ] ], - "multicol-gap-negative-001.xht": [ - "b250106788887551ee5ececaf4a8f95334470864", + "multicol-span-all-restyle-002.html": [ + "bfc8f4b7b73b2409312025e4279b0b255da0e0db", [ null, [ [ - "/css/css-multicol/multicol-gap-002-ref.xht", + "/css/css-multicol/multicol-span-all-restyle-002-ref.html", "==" ] ], {} ] ], - "multicol-height-001.xht": [ - "821cfd6ca96cefd1e9e1575dcf40d03a4806d24b", + "multicol-span-all-restyle-003.html": [ + "a0904770e8f1c0ff90f972418015400d1241178e", [ null, [ [ - "/css/css-multicol/multicol-height-001-ref.xht", + "/css/css-multicol/multicol-span-all-restyle-003-ref.html", "==" ] ], {} ] ], - "multicol-height-block-child-001.xht": [ - "3d62176ec36cf6a4a9b17e328a3c4b6f9ec83a38", + "multicol-span-all-restyle-004.html": [ + "b005913bafaf6f546925387e65e5aab3d98eb5b7", [ null, [ [ - "/css/css-multicol/multicol-height-block-child-001-ref.xht", + "/css/css-multicol/multicol-span-all-restyle-004-ref.html", "==" ] ], {} ] ], - "multicol-inherit-001.xht": [ - "3d778b9fce28a662475463cbe5ba7e29368dfc97", + "multicol-span-all-rule-001.html": [ + "c29cd69b2204298b234e0ab0dbfc63f6d6951974", [ null, [ [ - "/css/css-multicol/multicol-inherit-001-ref.xht", + "/css/css-multicol/multicol-span-all-rule-001-ref.html", "==" ] ], {} ] ], - "multicol-inherit-002.xht": [ - "cd3ccc6106e13f04f0b1743efc45cfc0ee5b4216", + "multicol-span-float-001.xht": [ + "8d123c85657be800b6eced6b70c0ecd01f006069", [ null, [ [ - "/css/css-multicol/multicol-inherit-002-ref.xht", + "/css/css-multicol/multicol-span-float-001-ref.xht", "==" ] ], {} ] ], - "multicol-inherit-003.xht": [ - "4fead557ce43a4a441e67b1561d127dd634c1936", + "multicol-span-float-002.html": [ + "ae461a8e6aed52a1ab204b6817bf4dd6c0b17b9a", [ null, [ [ - "/css/css-multicol/multicol-inherit-3-ref.xht", + "/css/css-multicol/multicol-span-float-002-ref.html", "==" ] ], {} ] ], - "multicol-list-item-001.xht": [ - "bcf3fa2613e417e691babd51f1d087cc4935768b", + "multicol-span-float-003.html": [ + "854db9897ded648dbc6b3f8e049b9bc18697f80d", [ - "css/css-multicol/multicol-list-item-001.xht", + null, [ [ - "/css/css-multicol/multicol-list-item-001-ref.xht", + "/css/css-multicol/multicol-span-float-002-ref.html", "==" ] ], {} ] ], - "multicol-list-item-002.html": [ - "6d788a87f3ab94546ccadc1099e9774241588356", + "multicol-span-none-001.xht": [ + "a2be00b0ccd287effdc446cb18baacdc88fbbe9e", [ null, [ [ - "/css/css-multicol/multicol-list-item-002-ref.html", + "/css/css-multicol/multicol-span-none-001-ref.xht", "==" ] ], {} ] ], - "multicol-list-item-003.html": [ - "1ae7c912372203a1cb12d9096a863fdddc24237f", + "multicol-under-vertical-rl-scroll.html": [ + "61754e7d29d2d5399e6b41ceb27fe25af3b8019c", [ null, [ [ - "/css/css-multicol/multicol-list-item-003-ref.html", + "/css/css-multicol/multicol-under-vertical-rl-scroll-ref.html", "==" ] ], {} ] ], - "multicol-list-item-004.html": [ - "e235aa26b05498b1050582133593a596c60c559a", + "multicol-width-001.xht": [ + "07140f8e020a48b15c20871473eb95bd212fdd21", [ null, [ [ - "/css/css-multicol/multicol-list-item-004-ref.html", + "/css/css-multicol/multicol-width-001-ref.xht", "==" ] ], {} ] ], - "multicol-list-item-005.html": [ - "4f158dfde49aed02aa1a39a9860a71f878da00e5", + "multicol-width-002.xht": [ + "7f016f4837d0401bee770f345eefa90dbb46f05b", [ null, [ [ - "/css/css-multicol/multicol-list-item-005-ref.html", + "/css/css-multicol/multicol-width-002-ref.xht", "==" ] ], {} ] ], - "multicol-list-item-006.html": [ - "1cf609adf02a2f0c3fc8c12286ade9917fdc708f", + "multicol-width-003.xht": [ + "8158deafbe15d1b341479b69b4ecac7a2d9091a3", [ null, [ [ - "/css/css-multicol/multicol-list-item-006-ref.html", + "/css/css-multicol/multicol-width-002-ref.xht", "==" ] ], {} ] ], - "multicol-list-item-007.html": [ - "acb21d1cc45f7bc02a4d3399135a1bd7f1139791", + "multicol-width-004.html": [ + "230a1d2d296d18cf7c8e47307ec03d8d5d2733dc", [ null, [ [ - "/css/css-multicol/multicol-list-item-007-ref.html", + "/css/css-multicol/multicol-width-004-ref.html", "==" ] ], {} ] ], - "multicol-list-item-008.html": [ - "c77c2c2497b7d92cb81700499ce86ba6f3fba734", + "multicol-width-005.html": [ + "2a87b03e2bdc2951be1c923a09306b49403e3212", [ null, [ [ - "/css/css-multicol/multicol-list-item-008-ref.html", + "/css/css-multicol/multicol-width-005-ref.html", "==" ] ], {} ] ], - "multicol-margin-001.xht": [ - "dccf78f43d27c484f452edf154c86c016cbd59f3", + "multicol-width-ch-001.xht": [ + "077693d129ba37d4c41566883af34d8cdedbeac4", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-multicol/multicol-width-ch-ref.xht", "==" ] ], {} ] ], - "multicol-margin-002.xht": [ - "94c065d8f8b99f3d62027f9e9d548ca90ac630ca", + "multicol-width-count-001.xht": [ + "5cbaba214742296d8c031f5376a17ef561fb9254", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-multicol/multicol-width-001-ref.xht", "==" ] ], {} ] ], - "multicol-margin-003.html": [ - "2b29474306230f595e2c6623fcf5d64d4f1615ba", + "multicol-width-count-002.xht": [ + "7f56e604458f59be6a350b018c1eb66c3c109287", [ - "css/css-multicol/multicol-margin-003.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-multicol/multicol-count-002-ref.xht", "==" ] ], {} ] ], - "multicol-margin-child-001.xht": [ - "919faec6b743f55451cc5cfcea840954c0bc07f4", + "multicol-width-invalid-001.xht": [ + "931d55345346d2e834f5a438227ed5ae15fc4d01", [ null, [ [ - "/css/css-multicol/multicol-margin-child-001-ref.xht", + "/css/css-multicol/multicol-width-invalid-001-ref.xht", "==" ] ], {} ] ], - "multicol-nested-002.xht": [ - "d125ef6e443634eb89ba76bd45fe6d3ac5aeeffa", + "multicol-width-large-001.xht": [ + "c34b8b4bcf1689c023a8ee4034cc6e802bf74a6c", [ null, [ [ - "/css/css-multicol/multicol-nested-002-ref.xht", + "/css/css-multicol/multicol-width-invalid-001-ref.xht", "==" ] ], {} ] ], - "multicol-nested-005.xht": [ - "943162e0ec4aace26026c531767be9cfe0619fc0", + "multicol-width-large-002.xht": [ + "bec00cc2dd22776f2075df5959abe857b99a4836", [ null, [ [ - "/css/css-multicol/multicol-nested-005-ref.xht", + "/css/css-multicol/multicol-width-invalid-001-ref.xht", "==" ] ], {} ] ], - "multicol-nested-007.html": [ - "92dc7a49ef7a49e9c46fa19fb05e13be4c9f48a2", + "multicol-width-negative-001.xht": [ + "ea0ed9ab766bbf16b8849fd69c63268d944302b8", [ - "css/css-multicol/multicol-nested-007.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-multicol/multicol-count-002-ref.xht", "==" ] ], {} ] ], - "multicol-nested-008.html": [ - "95c8ab3b92c98d9e8e419b4945b0661c7974aab1", + "multicol-width-small-001.xht": [ + "c786be09ec83bff76f4314651062ea23784a0bcd", [ - "css/css-multicol/multicol-nested-008.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-multicol/multicol-width-small-001-ref.xht", "==" ] ], {} ] ], - "multicol-nested-009.html": [ - "4d978a7752b604e1f95e47a2f6c6f37e2e69f8bf", + "multicol-zero-height-001.xht": [ + "57bfca96e423acd9033d53d7a537ef17f6d6199d", [ - "css/css-multicol/multicol-nested-009.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-multicol/multicol-zero-height-001-ref.xht", "==" ] ], {} ] ], - "multicol-nested-010.html": [ - "6ed41139f8eb3aa1c88758e00d1de8cfdb77e74c", + "multicol-zero-height-002.html": [ + "c5f432d9ae1da5f12a1d2b58a2127c40fbf7c4e9", [ - "css/css-multicol/multicol-nested-010.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-multicol/multicol-zero-height-002-ref.html", "==" ] ], {} ] ], - "multicol-nested-011.html": [ - "925fecf99f283fcb05ff7ecdb5d11566cd9f9b16", + "multicol-zero-height-003.html": [ + "d685d49bf689748ee14443181e14cd44df6b530c", [ - "css/css-multicol/multicol-nested-011.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-multicol/multicol-zero-height-003-ref.html", "==" ] ], {} ] ], - "multicol-nested-013.html": [ - "2014988193f98468d7bf7041928d486cf8ea4a6d", + "named-page.html": [ + "c8b486f2806037042afcf1f24835f0cade507b82", [ - "css/css-multicol/multicol-nested-013.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -216196,10 +214180,10 @@ {} ] ], - "multicol-nested-014.html": [ - "27bb5117566afc460dbad4b9a321289b0405f868", + "nested-after-float-clearance.html": [ + "78ae2b23b766f067aff043971ebd2a3b8940df93", [ - "css/css-multicol/multicol-nested-014.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -216209,10 +214193,10 @@ {} ] ], - "multicol-nested-015.html": [ - "18ae3392e69f0654f952733522b93b118201b81a", + "nested-at-outer-boundary-as-fieldset.html": [ + "2c64b59a7787454e3c5dbe5a76a01c1d0206b5c6", [ - "css/css-multicol/multicol-nested-015.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -216222,10 +214206,10 @@ {} ] ], - "multicol-nested-016.html": [ - "ad4b6a5aaaf9390917d2c6566e5e7758bfc1b1ec", + "nested-at-outer-boundary-as-float.html": [ + "940d39408028a7fcc7b52c05b9802bdc1da71077", [ - "css/css-multicol/multicol-nested-016.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -216235,10 +214219,10 @@ {} ] ], - "multicol-nested-017.html": [ - "79952189d517c3b46871e76314c1429dc9e752a1", + "nested-at-outer-boundary-as-legend.html": [ + "8bf04490f261abced014b6dd4f78ae95396da69d", [ - "css/css-multicol/multicol-nested-017.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -216248,10 +214232,10 @@ {} ] ], - "multicol-nested-018.html": [ - "3e19ec0f8c1b1e76f70abb742717b6f46e6611f0", + "nested-floated-multicol-with-monolithic-child.html": [ + "48eb633e01269c3b43c3f5bbe4dd02019977c2ef", [ - "css/css-multicol/multicol-nested-018.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -216261,23 +214245,23 @@ {} ] ], - "multicol-nested-019.html": [ - "13242ff19bf042e08a92602fef5d298b693a47bd", + "nested-oofs-in-relative-multicol.html": [ + "2130e72e6fe5275af732c18209f5861180b6984d", [ - "css/css-multicol/multicol-nested-019.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-multicol/reference/nested-oofs-in-relative-multicol-ref.html", "==" ] ], {} ] ], - "multicol-nested-020.html": [ - "f191fa5f310eee5284d708ec71bd6850d74bca99", + "nested-past-fragmentation-line.html": [ + "77f91f4a23d802bdfe1d94072825cf25b5aeb10f", [ - "css/css-multicol/multicol-nested-020.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -216287,10 +214271,10 @@ {} ] ], - "multicol-nested-021.html": [ - "2e82d93ec27efaf849d98fc14d82c92ff3488ea7", + "nested-with-padding-and-spanner.html": [ + "bea27a95781c3dd4abf0d590fd15d64530fd9154", [ - "css/css-multicol/multicol-nested-021.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -216300,23 +214284,23 @@ {} ] ], - "multicol-nested-022.html": [ - "24ec705202d34e80b5ccdf3a5e85f622a1b5ce5a", + "nested-with-too-tall-line.html": [ + "67a289ca558af4814906faa4a6b2cb40f25a1860", [ - "css/css-multicol/multicol-nested-022.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-multicol/nested-with-too-tall-line-ref.html", "==" ] ], {} ] ], - "multicol-nested-023.html": [ - "df52e880360722bed21b9f5ca6578fa22377e041", + "no-balancing-after-column-span.html": [ + "8c05ffdd27fd774ff5b9061af8c471bd2bcfa1bf", [ - "css/css-multicol/multicol-nested-023.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -216326,34 +214310,34 @@ {} ] ], - "multicol-nested-024.html": [ - "e11b27c6823de7ac13ae3e9abc4b1e2ebad01e7a", + "non-adjacent-spanners-000.html": [ + "7e6ec67e298b38a4bfcec401d32476643fc8194f", [ - "css/css-multicol/multicol-nested-024.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "multicol-nested-025.html": [ - "badc91e03f41c3fc01b1611cd0117dd95e864cf6", + "non-adjacent-spanners-001.html": [ + "5371f2acc9de097d7456d064dfde3c21d2a5783d", [ null, [ [ - "/css/reference/nothing.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "multicol-nested-026.html": [ - "25371b70780b22d50b8b0cfd6b4c17c9f357243d", + "oof-nested-in-single-column.html": [ + "d888a0692f262a7aa6df424dca07ea6c6f837b66", [ null, [ @@ -216365,8 +214349,8 @@ {} ] ], - "multicol-nested-027.html": [ - "02590d394aea57787e6a64ca9e7ad59c35cb8940", + "orthogonal-writing-mode-shrink-to-fit.html": [ + "b087f56ac6e06d7e11d719976ae66459c97722d7", [ null, [ @@ -216378,8 +214362,8 @@ {} ] ], - "multicol-nested-028.html": [ - "cfd164f14ec2a0387b009edaf97d872fb34a34b6", + "orthogonal-writing-mode-spanner.html": [ + "a0f175141dda3117c60c5a72d90cec94388901ae", [ null, [ @@ -216391,62 +214375,62 @@ {} ] ], - "multicol-nested-029.html": [ - "4f73427c6f5d4935621b91e2ff06f6f415bdf934", + "overflow-unsplittable-001.html": [ + "2baaaaedf6bc7817e6914441ee51603da5bda392", [ null, [ [ - "/css/css-multicol/multicol-nested-029-ref.html", + "/css/css-multicol/overflow-unsplittable-001-ref.html", "==" ] ], {} ] ], - "multicol-nested-030.html": [ - "d2cbd85e77da42fa97ca98b6c93cc8123118c47b", + "overflow-unsplittable-002.html": [ + "d8fafafe2c29da33c7d70644dec2c1e3ba8dac2a", [ - "css/css-multicol/multicol-nested-030.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "multicol-nested-031.html": [ - "341bb175d2e869e9d059eacf15f81cd0856b1d47", + "overflow-unsplittable-003.html": [ + "af9c722868f84230425455ec011c8a087f730a87", [ - "css/css-multicol/multicol-nested-031.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "multicol-nested-column-rule-001.xht": [ - "8fa8fdb7280083b538ce20b451f20d1c711335e5", + "page-property-ignored.html": [ + "7e77b846d9a6c237b694723f392079b33aefb358", [ null, [ [ - "/css/css-multicol/multicol-nested-column-rule-001-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "multicol-nested-column-rule-002.html": [ - "dafb2e9f689582aec8fe49ad0505c62a0658f638", + "parallel-flow-after-spanner-001.html": [ + "38cc5c10157861af3cbcadc7e57fb7aba63ed7f6", [ - "css/css-multicol/multicol-nested-column-rule-002.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -216456,10 +214440,10 @@ {} ] ], - "multicol-nested-column-rule-003.html": [ - "ee1339127576266502679b4f0463437fa0cea5db", + "parallel-flow-after-spanner-002.html": [ + "f766be584d9217c2092b5bcf7f449b69b753a966", [ - "css/css-multicol/multicol-nested-column-rule-003.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -216469,2630 +214453,4513 @@ {} ] ], - "multicol-nested-margin-001.xht": [ - "52097c7f91bb9c9acc6e45c12472e13b635f1029", + "relative-child-overflowing-column-gap.html": [ + "4359e7f7a71c1116eb80e0408c190baae59d72a4", [ null, [ [ - "/css/css-multicol/multicol-nested-margin-001-ref.xht", + "/css/css-multicol/relative-child-overflowing-column-gap-ref.html", "==" ] ], {} ] ], - "multicol-nested-margin-002.xht": [ - "02dbb5331e3caa84dcd0045f8ab02420472e8a96", + "relative-child-overflowing-container.html": [ + "6d00ac82d98aae5e5cc0c9346b590bfa0ea893be", [ null, [ [ - "/css/css-multicol/multicol-nested-margin-002-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "multicol-nested-margin-003.xht": [ - "73c8e5112de75179f43cefd48d2fe6a395d7ce3e", + "remove-child-in-strict-containment-also-spanner.html": [ + "8dfbe1ecc4ab4ea108c0923af751073564142e28", [ null, [ [ - "/css/css-multicol/multicol-nested-margin-003-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "multicol-nested-margin-004.xht": [ - "bd8dc51acd56d39b027e0d00d02cc31808edbd7d", + "remove-inline-with-block-beside-spanners.html": [ + "c943e549860c002ab96ed8974c739b1c83aee328", [ null, [ [ - "/css/css-multicol/multicol-nested-margin-004-ref.xht", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "multicol-nested-margin-005.xht": [ - "b32a3efcdd97a9405726e11d573cba71382e3395", + "replaced-content-spanner-auto-width.html": [ + "90720852ca39d314c79c79d075dc35e4984ed973", [ null, [ [ - "/css/css-multicol/multicol-nested-margin-004-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "multicol-oof-inline-cb-001.html": [ - "76c48e8059536707186ae6131fd64f75d3734b2d", + "resize-in-strict-containment-nested.html": [ + "73f1494a29c56a838a1438ddca37539146e3ec7a", [ - "css/css-multicol/multicol-oof-inline-cb-001.html", + null, [ [ - "/css/css-multicol/multicol-oof-inline-cb-001-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "multicol-oof-inline-cb-002.html": [ - "505c01652dc08d51dbcb654ef672ce49d0a66304", + "resize-multicol-with-fixed-size-children.html": [ + "a3963d06a3d71d50833f6df382e5b330011fe059", [ - "css/css-multicol/multicol-oof-inline-cb-002.html", + null, [ [ - "/css/css-multicol/multicol-oof-inline-cb-001-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "multicol-overflow-000.xht": [ - "1d9080b44e1ac2bdc998c5fad3fe2b3aa3ebaee1", + "resize-with-text-after-paint.html": [ + "9e0b31ddbe5aa0aea3303a1432af9c72a3158d4c", [ null, [ [ - "/css/css-multicol/multicol-overflow-000-ref.xht", + "/css/css-multicol/resize-with-text-after-paint-ref.html", "==" ] ], {} ] ], - "multicol-overflow-clip-auto-sized.html": [ - "f48d55c3184af85698315ae93c57702a2b4038b3", + "spanner-fragmentation-000.html": [ + "f700235621a5833a53185ef2ab12d31343c3d35c", [ null, [ [ - "/css/css-multicol/multicol-overflow-clip-auto-sized-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "multicol-overflow-clip-positioned.html": [ - "184bfc7f18dadbade32192b777c6b21f345882af", + "spanner-fragmentation-001.html": [ + "2cfbd2defa54fac99fd25cf9a1f6d1d8a0c90ce0", [ null, [ [ - "/css/css-multicol/multicol-overflow-clip-positioned-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "multicol-overflow-clip.html": [ - "af59ff92d4f740ee71c6e3e1378704dd6a1ebe86", + "spanner-fragmentation-002.html": [ + "970a1ecbfe78c8e43f24f6cc245e0e962ea4d2da", [ null, [ [ - "/css/css-multicol/multicol-overflow-clip-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "multicol-overflowing-001.xht": [ - "c4130df72992d4acacab2b81d0f2ce8b4f3c145b", + "spanner-fragmentation-003.html": [ + "857ccf92ba9dc337f38b2c5fdeda527ce2768a9d", [ null, [ [ - "/css/css-multicol/multicol-overflowing-001-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "multicol-reduce-000.xht": [ - "b979b222467ad1f6f3a96a0a6148f20e04295d9e", + "spanner-fragmentation-004.html": [ + "2199a9340b563f08ddfa3513b295226c618b946b", [ null, [ [ - "/css/css-multicol/multicol-reduce-000-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "multicol-rule-000.xht": [ - "8c45279f19ace65af0d6be746853be9357279caa", + "spanner-fragmentation-005.html": [ + "56e35c74dafc960f2ef49eb97a92cd0ed29f157e", [ null, [ [ - "/css/css-multicol/multicol-rule-000-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "multicol-rule-001.xht": [ - "45c35dde3616ca2f8eb4d3d5ef18ea21bf8333a9", + "spanner-fragmentation-006.html": [ + "60325b1d17886283446cb99c4b319ad579b4d7f7", [ null, [ [ - "/css/css-multicol/multicol-rule-001-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "multicol-rule-002.xht": [ - "19d3cbde8ada25569f0f30c203516b943376b153", + "spanner-fragmentation-007.html": [ + "ea71c779fea2e02469b7b9d0a579f79f7265870d", [ null, [ [ - "/css/css-multicol/multicol-rule-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "multicol-rule-003.xht": [ - "3037333ea8d1b0e52219ed23c28a0a1454088e28", + "spanner-fragmentation-008.html": [ + "d28eafe6555e047cc028e0399dec2b70d9d8dfb4", [ null, [ [ - "/css/css-multicol/multicol-rule-003-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "multicol-rule-004.xht": [ - "d06496881e2eb0d6f35c30169cf0c4d34747df44", + "spanner-fragmentation-009.html": [ + "981a42c04a2b5f43fcec304b3ac5b7fe3637733c", [ null, [ [ - "/css/css-multicol/multicol-rule-004-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "multicol-rule-color-001.xht": [ - "fa49c88556b7d0726d465dec181e0faa2333b5a9", + "spanner-fragmentation-010.html": [ + "e081d71d917037eb41e2f282237f8fd3a246d0cb", [ null, [ [ - "/css/css-multicol/multicol-rule-color-001-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "multicol-rule-color-inherit-001.xht": [ - "a675b799b118aacc6eab4d9bf6ab37d8bf9d7985", + "spanner-fragmentation-011.html": [ + "b22b2af99b7705bad2d47552483b96061bb04c15", [ null, [ [ - "/css/css-multicol/multicol-rule-color-inherit-001-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "multicol-rule-color-inherit-002.xht": [ - "988bbbc8ca9e0895195a24b2904918fb841ba0ac", + "spanner-fragmentation-012.html": [ + "44a24482897505ef303adbe3a71dd49ce7d97fc1", [ null, [ [ - "/css/css-multicol/multicol-rule-color-inherit-001-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "multicol-rule-dashed-000.xht": [ - "8564aea1fce0620c28a99c4b74870fa2dee91791", + "spanner-in-child-after-parallel-flow-001.html": [ + "124f0116583fb9d02b53526f8436bd1ae383eab8", [ null, [ [ - "/css/css-multicol/multicol-rule-dashed-000-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 85 - ], - [ - 0, - 20 - ] - ] - ] - ] - } + {} ] ], - "multicol-rule-dotted-000.xht": [ - "a669b60b6e40d5480ddeab82cf61ae10568a21b0", + "spanner-in-child-after-parallel-flow-002.html": [ + "3a8bac590b7cb2a0304d6641ba7583b7f67806aa", [ null, [ [ - "/css/css-multicol/multicol-rule-dotted-000-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "multicol-rule-double-000.xht": [ - "ef97ce12d274ef3026d4d93ef387c2502472bb3c", + "spanner-in-child-after-parallel-flow-003.html": [ + "8016205bee2ca02fe3a046e76399c6f2c53b369c", [ null, [ [ - "/css/css-multicol/multicol-rule-double-000-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "multicol-rule-fraction-001.xht": [ - "fbbc9fc00e3a4b8f3a0f634322f7d60141c923df", + "spanner-in-child-after-parallel-flow-004.html": [ + "00d4e0d2fb653d534c4969ccb25d4c518624d3b2", [ null, [ [ - "/css/css-multicol/multicol-rule-fraction-001-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "multicol-rule-fraction-002.xht": [ - "8645f0e32b7d1769e9abffd9add8bb94e51e9e96", + "spanner-in-opacity.html": [ + "78b1ac80e5f504eabb1a85c87d153260cc436d41", [ null, [ [ - "/css/css-multicol/multicol-rule-fraction-002-ref.xht", + "/css/css-multicol/spanner-in-opacity-ref.html", "==" ] ], {} ] ], - "multicol-rule-fraction-003.xht": [ - "2d2ad7b744edaad1a97171bee75dfc37b5eeb8a0", + "subpixel-column-rule-width.tentative.html": [ + "5b35c2802c6b3586a8085ca72e78e53e29e05277", [ null, [ [ - "/css/css-multicol/multicol-rule-fraction-3-ref.xht", + "/css/css-multicol/reference/subpixel-column-rule-width-ref.tentative.html", "==" ] ], {} ] ], - "multicol-rule-groove-000.xht": [ - "5f985f90dc3089cb80b9d1ee6ded18e8d6899d4e", + "table": { + "multicol-table-cell-001.xht": [ + "405ace9234022d68bdf1d5153465324bc0f898cf", + [ + null, + [ + [ + "/css/css-multicol/table/multicol-table-cell-001-ref.xht", + "==" + ] + ], + {} + ] + ], + "multicol-table-cell-height-001.xht": [ + "1d3e44ea5f3288aa47896225950bf9e103f6a724", + [ + null, + [ + [ + "/css/css-multicol/table/multicol-table-cell-height-001-ref.xht", + "==" + ] + ], + {} + ] + ], + "multicol-table-cell-height-002.xht": [ + "c66c475f12a1431ed098c9d7b1f001c36732af14", + [ + null, + [ + [ + "/css/css-multicol/table/multicol-table-cell-height-001-ref.xht", + "==" + ] + ], + {} + ] + ], + "multicol-table-cell-vertical-align-001.xht": [ + "b2fc3f833115dcd5cd74341a7916ea1310255c58", + [ + null, + [ + [ + "/css/css-multicol/table/multicol-table-cell-vertical-align-ref.xht", + "==" + ] + ], + {} + ] + ], + "table-cell-as-multicol.html": [ + "9df85f019286f753df6f1051b3e97d4fe9441c97", + [ + null, + [ + [ + "/css/css-multicol/table/table-cell-as-multicol-ref.html", + "==" + ] + ], + {} + ] + ], + "table-cell-content-change-000.html": [ + "27227e96a9053048b24879befe1e9f453d0b40ff", + [ + null, + [ + [ + "/css/css-multicol/table/table-cell-content-change-000-ref.html", + "==" + ] + ], + {} + ] + ], + "table-cell-content-change-001.html": [ + "5ecb7ec408787dd8224ae893a2f630cf79baa786", + [ + null, + [ + [ + "/css/css-multicol/table/table-cell-content-change-001-ref.html", + "==" + ] + ], + {} + ] + ], + "table-cell-multicol-nested-001.html": [ + "5cb9eaf5643f5b485dd0ef3dbdc420a55fc43e6f", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "table-cell-multicol-nested-002.html": [ + "b250841f92f958dcb4e21a2fd4e1f2ef8c4aab3b", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "table-cell-multicol-nested-003.html": [ + "f4e52910f1df994dd55ad8150c6551a5836ba64c", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ] + }, + "with-custom-layout-on-same-element.https.html": [ + "5388b08cde3936088978f09ccb0fd438347421e1", [ null, [ [ - "/css/css-multicol/multicol-rule-groove-000-ref.xht", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "multicol-rule-hidden-000.xht": [ - "e0a4e6ee9755ee3568e8b4e5e23ccf646e95e156", + "zero-column-width-layout.html": [ + "aaae421912a18276d4750cfaecbc5245d345ecd8", [ null, [ [ - "/css/css-multicol/multicol-rule-hidden-000-ref.xht", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] - ], - "multicol-rule-inset-000.xht": [ - "474ad1986f6f6bed35d15a2190747498ec66ae14", + ] + }, + "css-namespaces": { + "prefix-001.xml": [ + "eb717139e1dfd0e5a3ddd49a402f3c25f0333a48", [ null, [ [ - "/css/css-multicol/multicol-rule-ridge-000-ref.xht", + "/css/css-namespaces/reference/ref-lime-1.xml", "==" ] ], {} ] ], - "multicol-rule-large-001.xht": [ - "eb74b4e1ab173e28ea7cefa9bc30c6fa4356974d", + "prefix-002.xml": [ + "49ca7c0a9e116803ad7acf970e58bb4d3f92e4b3", [ null, [ [ - "/css/css-multicol/multicol-rule-large-001-ref.xht", + "/css/css-namespaces/reference/ref-lime-1.xml", "==" ] ], {} ] ], - "multicol-rule-nested-balancing-001.html": [ - "53a783ef5bb2f4598e76616e111d2f287c2172bc", + "prefix-003.xml": [ + "2f23ad4c061eba68692d222fbbb3cfea6af9a92b", [ - "css/css-multicol/multicol-rule-nested-balancing-001.html", + null, [ [ - "/css/css-multicol/multicol-rule-nested-balancing-001-ref.html", + "/css/css-namespaces/reference/ref-lime-1-generic.xml", "==" ] ], {} ] ], - "multicol-rule-nested-balancing-002.html": [ - "7829301c53e3ee5ca0e850fc1155aaa047c576d4", + "prefix-004.xml": [ + "596d4637f9ba79f67abddef0383f197e66fa1090", [ - "css/css-multicol/multicol-rule-nested-balancing-002.html", + null, [ [ - "/css/css-multicol/multicol-rule-nested-balancing-002-ref.html", + "/css/css-namespaces/reference/ref-lime-2-generic.xml", "==" ] ], {} ] ], - "multicol-rule-nested-balancing-003.html": [ - "6809c3c598aa8fcbec6f88cb39452a410e537951", + "prefix-005.xml": [ + "5f7c3cad3d942ca2c81392b3e4ea38866f2da08d", [ - "css/css-multicol/multicol-rule-nested-balancing-003.html", + null, [ [ - "/css/css-multicol/multicol-rule-nested-balancing-003-ref.html", + "/css/css-namespaces/reference/ref-lime-2-generic.xml", "==" ] ], {} ] ], - "multicol-rule-nested-balancing-004.html": [ - "d6f6c030b35348ffddc135eef26ef9f036a3552b", + "prefix-006.xml": [ + "3cc0ab40f3aa5b91df020dddd2a654620af831bd", [ - "css/css-multicol/multicol-rule-nested-balancing-004.html", + null, [ [ - "/css/css-multicol/multicol-rule-nested-balancing-004-ref.html", + "/css/css-namespaces/reference/ref-lime-2.xml", "==" ] ], {} ] ], - "multicol-rule-none-000.xht": [ - "32ca043957782f09c69bd77bd4933345228b81d7", + "scope-001.xml": [ + "5271096a96432ca6ebd2b2907b7946efc6bc7c46", [ null, [ [ - "/css/css-multicol/multicol-rule-hidden-000-ref.xht", + "/css/css-namespaces/reference/ref-lime-1.xml", "==" ] ], {} ] ], - "multicol-rule-outset-000.xht": [ - "5aaafc09f7a3a72326a824c4d56fa47cf6922318", + "scope-002.xml": [ + "ff5a2fec118407764e92d6d8f34496d1db3fd31d", [ null, [ [ - "/css/css-multicol/multicol-rule-groove-000-ref.xht", + "/css/css-namespaces/reference/ref-lime-1.xml", "==" ] ], {} ] ], - "multicol-rule-percent-001.xht": [ - "bd54a9f4ef2577f51a2b6d2cc680f765cd838e09", + "syntax-001.xml": [ + "83efb665b66cc32409776645b6c53a972e9aebf6", [ null, [ [ - "/css/css-multicol/multicol-containing-002-ref.xht", + "/css/css-namespaces/reference/ref-lime-1-block.xml", "==" ] ], {} ] ], - "multicol-rule-px-001.xht": [ - "bdca6c7ca4a46eb12faf4667b36bc1722d37220d", + "syntax-002.xml": [ + "30fa8aece35ad7b53ee93bb1c1b11bb02b091e34", [ null, [ [ - "/css/css-multicol/multicol-rule-ref.xht", + "/css/css-namespaces/reference/ref-lime-1-block.xml", "==" ] ], {} ] ], - "multicol-rule-ridge-000.xht": [ - "805cf9da9a7c8d406e560777450b3d71d497e6ec", + "syntax-003.xml": [ + "1b2eb5f9c08ddb052616646710fb67b28ca018e6", [ null, [ [ - "/css/css-multicol/multicol-rule-ridge-000-ref.xht", + "/css/css-namespaces/reference/ref-lime-5.xml", "==" ] ], {} ] ], - "multicol-rule-samelength-001.xht": [ - "f127a99475acd65ad14692d7c96e015c746410a0", + "syntax-004.xml": [ + "c4ce372b09c403e54253f944580f9e9f84db6c86", [ null, [ [ - "/css/css-multicol/multicol-rule-samelength-001-ref.xht", + "/css/css-namespaces/reference/ref-lime-1.xml", "==" ] ], {} ] ], - "multicol-rule-shorthand-001.xht": [ - "6979cd7472daf76745cfb394ee0f8da889285626", + "syntax-005.xml": [ + "9d6b0abe945bda36a86eb23a2524b4d2333769f8", [ null, [ [ - "/css/css-multicol/multicol-rule-samelength-001-ref.xht", + "/css/css-namespaces/reference/ref-lime-5.xml", "==" ] ], {} ] ], - "multicol-rule-shorthand-2.xht": [ - "848dc60e0f0b1dca049d22be003058212fc8d192", + "syntax-006.xml": [ + "09ff0d5916ec30c76ca158b8ac917c7d0df2817a", [ null, [ [ - "/css/css-multicol/multicol-rule-shorthand-2-ref.xht", + "/css/css-namespaces/reference/ref-lime-1.xml", "==" ] ], {} ] ], - "multicol-rule-solid-000.xht": [ - "77cfa24b70ad428e0f8074ed8cdb324065853f55", + "syntax-007.xml": [ + "0c651f17d7895200d365d33efd639af46604caa1", [ null, [ [ - "/css/css-multicol/multicol-rule-solid-000-ref.xht", + "/css/css-namespaces/reference/ref-lime-1.xml", "==" ] ], {} ] ], - "multicol-rule-stacking-001.xht": [ - "8a9cca8735524702ec7b6ab5b4c8c96ef9cab240", + "syntax-008.xml": [ + "20284e2247c18821d49bd669c0a748a4c45c506b", [ null, [ [ - "/css/css-multicol/multicol-rule-stacking-ref.xht", + "/css/css-namespaces/reference/ref-lime-2.xml", "==" ] ], {} ] ], - "multicol-scroll-content.html": [ - "9fdaf1a8806ee534e7814be1aa6261ae2f3d2c84", + "syntax-009.xml": [ + "edf2f4c9b48951f7ef40e12af32fc724a5032f2f", [ - "css/css-multicol/multicol-scroll-content.html", + null, [ [ - "/css/css-multicol/multicol-scroll-content-ref.html", + "/css/css-namespaces/reference/ref-lime-1.xml", "==" ] ], {} ] ], - "multicol-shorthand-001.xht": [ - "650a324a80433b4f06ae61ac251d579c2d677e99", + "syntax-010.xml": [ + "06b280da792d05a8960cf3434b91b4f7a58d06c3", [ null, [ [ - "/css/css-multicol/multicol-rule-ref.xht", + "/css/css-namespaces/reference/ref-lime-3.xml", "==" ] ], {} ] ], - "multicol-span-000.xht": [ - "d9870714c62fc9db168675ef7f3cab1097e9bf9e", + "syntax-011.xml": [ + "7d137fc7a546172027f6cb5131b79097e324d7b1", [ null, [ [ - "/css/css-multicol/multicol-span-000-ref.xht", + "/css/css-namespaces/reference/ref-lime-6.xml", "==" ] ], {} ] ], - "multicol-span-all-001.xht": [ - "5525e7b786f93f9224058e5180b446b44a481ada", + "syntax-012.xml": [ + "43f211b4dd20a3de24b4440c9ef3efb7fee08d6b", [ null, [ [ - "/css/css-multicol/multicol-span-all-001-ref.xht", + "/css/css-namespaces/reference/ref-lime-3.xml", "==" ] ], {} ] ], - "multicol-span-all-002.xht": [ - "ad3dc5ccd77807b03b41df78643f3df4cdfb7eae", + "syntax-013.xml": [ + "a7c63e43e092779ec2a0b7084929892cec7cfc99", [ null, [ [ - "/css/css-multicol/multicol-span-all-002-ref.xht", + "/css/css-namespaces/reference/ref-lime-5.xml", "==" ] ], {} ] ], - "multicol-span-all-003.xht": [ - "6facec9df12d1eed896b4f4263567029fe591f82", + "syntax-014.xml": [ + "1bdfc265ef603e8dd39436f8a405f16b3bd43bb6", [ null, [ [ - "/css/css-multicol/multicol-count-002-ref.xht", + "/css/css-namespaces/reference/ref-lime-3.xml", "==" ] ], {} ] ], - "multicol-span-all-004.html": [ - "987f07fd0a2e8891e7f7ee1aba166898f2e7155f", + "syntax-015.xml": [ + "d39eb8b3a48d57062f72c435697824ab1c49f8c0", [ - "css/css-multicol/multicol-span-all-004.html", + null, [ [ - "/css/css-multicol/multicol-span-all-004-ref.html", + "/css/css-namespaces/reference/ref-lime-1.xml", "==" ] ], {} ] - ], - "multicol-span-all-005.html": [ - "226ed17f08a0ece61449b24f7f7bba41c8a88c9b", + ] + }, + "css-nesting": { + "conditional-properties.html": [ + "122b8635c1d09458360fbe06f15029919b1e36f4", [ - "css/css-multicol/multicol-span-all-005.html", + null, [ [ - "/css/css-multicol/multicol-span-all-005-ref.html", + "/css/css-nesting/conditional-properties-ref.html", "==" ] ], {} ] ], - "multicol-span-all-006.html": [ - "422e4cde70f83070c0539a719498d6b86377aad9", + "conditional-rules.html": [ + "0172db645b246a4ed84f0da6016bef76bae79533", [ - "css/css-multicol/multicol-span-all-006.html", + null, [ [ - "/css/css-multicol/multicol-span-all-006-ref.html", + "/css/css-nesting/conditional-rules-ref.html", "==" ] ], {} ] ], - "multicol-span-all-007.html": [ - "a931777d179fb4ecdf9a984276fbd3828f235c0d", + "has-nesting.html": [ + "83fe720236fd7d6ccd708e8cbd6fd340bcd43984", [ - "css/css-multicol/multicol-span-all-007.html", + null, [ [ - "/css/css-multicol/multicol-span-all-007-ref.html", + "/css/css-nesting/has-nesting-ref.html", "==" ] ], {} ] ], - "multicol-span-all-008.html": [ - "972132c14b19d76e3e99c351e6a5c13eadc9c00c", + "host-nesting-001.html": [ + "a166efeac5ec27ce69c77a56f7389117265e661e", [ - "css/css-multicol/multicol-span-all-008.html", + null, [ [ - "/css/css-multicol/multicol-span-all-008-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "multicol-span-all-009.html": [ - "698771b0f4cd7d345778f494dc76911b178376c0", + "host-nesting-002.html": [ + "8f087c4128604022f5d5931f44c8f83392949cc5", [ - "css/css-multicol/multicol-span-all-009.html", + null, [ [ - "/css/css-multicol/multicol-span-all-009-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "multicol-span-all-010.html": [ - "6bab00467afa97d16830368d2d61981408d8990e", + "host-nesting-003.html": [ + "f9830b4fb69913bfa1151ae10619206347ede33f", [ null, [ [ - "/css/css-multicol/multicol-span-all-010-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "multicol-span-all-011.html": [ - "57647d7483c86e3edbb52a042f31ea0e655d7b8e", + "host-nesting-004.html": [ + "8b847200755e7f7960877cde467bbd75fc1bb503", [ - "css/css-multicol/multicol-span-all-011.html", + null, [ [ - "/css/css-multicol/multicol-span-all-011-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "multicol-span-all-012.html": [ - "7f1f9ae1ac41b1760f03056f7998746082f87e2e", + "host-nesting-005.html": [ + "ca5449825aaabf779c3437f9e784120417d26009", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "multicol-span-all-013.html": [ - "38bd05f0b80dbaa809ed8475c6e9c521ac9a1add", + "implicit-nesting.html": [ + "0a76dedc5bf2c3f309dcdd1e8a9b0a9f37161e96", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-nesting/implicit-nesting-ref.html", "==" ] ], {} ] ], - "multicol-span-all-014.html": [ - "ec835686cf2ec9fffbdb04a8c007613381c778b2", + "nest-containing-forgiving.html": [ + "561b5a3af5e73063acd58203be6dd476346137bc", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-nesting/nest-containing-forgiving-ref.html", "==" ] ], {} ] ], - "multicol-span-all-015.html": [ - "041c211b855e50ad70e65c98af73567848e3534e", + "nesting-basic.html": [ + "19ff48e4a29588e48eb19570149ad7525827cd8c", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-nesting/nesting-basic-ref.html", "==" ] ], {} ] ], - "multicol-span-all-017.html": [ - "00764ccdb1bfe91bc6045d6a5bd03bb43c354334", + "nesting-type-selector.html": [ + "1805896b8df462a31828076d7945e306435444a9", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "multicol-span-all-018.html": [ - "7dbfe3a495923adcf1e6b73837a2ffa1414f2874", + "supports-is-consistent.html": [ + "8be0d666d6e3ca4b4306172b7c33897f9d40a9bc", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-nesting/supports-is-consistent-ref.html", "==" ] ], {} ] ], - "multicol-span-all-019.html": [ - "e1a0de3854b17a4a02fc7d57d24d46b48cb5b15c", + "supports-rule.html": [ + "886eda432370f1262dd55280e9d941cc2667c5aa", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-nesting/supports-rule-ref.html", "==" ] ], {} ] - ], - "multicol-span-all-block-sibling-003.xht": [ - "abaa45f0a85023f3f07a9db483629b74d2b09d71", + ] + }, + "css-overflow": { + "clip-001.html": [ + "dacb658db6458e67832b454ebd6887a8a04b9349", [ null, [ [ - "/css/css-multicol/multicol-span-all-block-sibling-3-ref.xht", + "/css/css-overflow/clip-001-ref.html", "==" ] ], {} ] ], - "multicol-span-all-button-001.html": [ - "4319b166b48538acd8f19181616af442c2e30add", + "clip-002.html": [ + "cd8b9a3cbeb632c4ce6031cee39a3cbf519b5164", [ - "css/css-multicol/multicol-span-all-button-001.html", + null, [ [ - "/css/css-multicol/multicol-span-all-button-001-ref.html", + "/css/css-overflow/clip-002-ref.html", "==" ] ], {} ] ], - "multicol-span-all-button-002.html": [ - "419e9a2e66fe12c3d79bb03a48c26410e37d93b0", + "clip-003.html": [ + "0c7e9bfa25489b7be6e4b2ead30cfe615eab7eda", [ - "css/css-multicol/multicol-span-all-button-002.html", + null, [ [ - "/css/css-multicol/multicol-span-all-button-002-ref.html", + "/css/css-overflow/clip-003-ref.html", "==" ] ], {} ] ], - "multicol-span-all-button-003.html": [ - "8c98ca3fa360caec7173690966e21b9380ac2ee0", + "clip-004.html": [ + "30dde4a5e12ac7b918c76b7c6bffa41c01fa7c30", [ - "css/css-multicol/multicol-span-all-button-003.html", + null, [ [ - "/css/css-multicol/multicol-span-all-button-003-ref.html", + "/css/css-overflow/clip-004-ref.html", "==" ] ], {} ] ], - "multicol-span-all-children-height-001.html": [ - "3226e81c3205528f72ca4ce2f96d9a700d6fa78d", + "clip-005.html": [ + "e55f4b22fcb7e0fd5ebc0fd58221404805209f92", [ - "css/css-multicol/multicol-span-all-children-height-001.html", + null, [ [ - "/css/css-multicol/multicol-span-all-children-height-001-ref.html", + "/css/css-overflow/clip-005-ref.html", "==" ] ], {} ] ], - "multicol-span-all-children-height-002.html": [ - "91f4112c2f2e8d90ab3b6d56833f9e8234a1ad90", + "clip-006.html": [ + "08f755ad75c452fade0381b8ba8f44dffbf0e797", [ - "css/css-multicol/multicol-span-all-children-height-002.html", + null, [ [ - "/css/css-multicol/multicol-span-all-children-height-002-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "multicol-span-all-children-height-003.html": [ - "296bf7568f4fe6d9c46a11c61ae6ceec4e265bf0", + "clip-007.html": [ + "642ea9c3e6f38942ae7d754ca80581f2432107ae", [ - "css/css-multicol/multicol-span-all-children-height-003.html", + null, [ [ - "/css/css-multicol/multicol-span-all-children-height-003-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "multicol-span-all-children-height-004a.html": [ - "1ee8b5e7c4952c951ce008d1c9eecf1104e58212", + "display-flex-svg-overflow-default.html": [ + "5fb69d0e09db2205f8c7679775a6a1ec136cbf86", [ - "css/css-multicol/multicol-span-all-children-height-004a.html", + null, [ [ - "/css/css-multicol/multicol-span-all-children-height-004a-ref.html", + "/css/css-overflow/display-flex-svg-overflow-default-ref.html", "==" ] ], {} ] ], - "multicol-span-all-children-height-004b.html": [ - "df9b687842745084e031ed3dcf84185e0d3933f1", + "document-element-overflow-hidden-scroll.html": [ + "6a341703aee1e2864a6612a5777c13284b7e7ef5", [ - "css/css-multicol/multicol-span-all-children-height-004b.html", + null, [ [ - "/css/css-multicol/multicol-span-all-children-height-004b-ref.html", + "/css/css-overflow/document-element-overflow-hidden-scroll-ref.html", "==" ] ], {} ] ], - "multicol-span-all-children-height-005.html": [ - "6e9a4c299f7c4e05c0014702ca79fac5e77f956c", + "dynamic-visible-to-clip-001.html": [ + "e2011324dda6e00309bf70c2e364fdb2dd1f23ae", [ - "css/css-multicol/multicol-span-all-children-height-005.html", + null, [ [ - "/css/css-multicol/multicol-span-all-children-height-005-ref.html", + "/css/css-overflow/clip-001-ref.html", "==" ] ], {} ] ], - "multicol-span-all-children-height-006.html": [ - "4dad04f34aace0d7cd4376bce6b7e9e2266081f0", + "float-with-relpos-and-transform.html": [ + "6024b7261750e0c5dc4a681dccee2ab72b83abca", [ - "css/css-multicol/multicol-span-all-children-height-006.html", + null, [ [ - "/css/css-multicol/multicol-span-all-children-height-006-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "multicol-span-all-children-height-007.html": [ - "71aa69a17595d45a15ae1c134e1391385f0600e3", + "incremental-scroll.html": [ + "be1a1cbb74c33394a2ab3afd0a14eb635818fc23", [ - "css/css-multicol/multicol-span-all-children-height-007.html", + null, [ [ - "/css/css-multicol/multicol-span-all-children-height-007-ref.html", + "/css/css-overflow/incremental-scroll-ref.html", "==" ] ], {} ] ], - "multicol-span-all-children-height-008.html": [ - "6b9804898d72fb3ba0c803c8fcd3409666582579", + "input-scrollable-region-001.html": [ + "96fedfed746e903f06c3f3fd5e13a47bc54466e5", [ - "css/css-multicol/multicol-span-all-children-height-008.html", + null, [ [ - "/css/css-multicol/multicol-span-all-children-height-008-ref.html", + "/css/css-overflow/reference/input-scrollable-region-001-ref.html", "==" ] ], {} ] ], - "multicol-span-all-children-height-009.html": [ - "49b06b5ed4eed9b4773702f2add1198843ed8c98", + "line-clamp": { + "line-clamp-001.html": [ + "c8cfcb1066de1a1d5c98e147c8e47499069046be", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/webkit-line-clamp-005-ref.html", + "==" + ] + ], + {} + ] + ], + "line-clamp-002.html": [ + "5f21b545fb32d8ecb2c72287b9fc9fcf9d41de90", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/webkit-line-clamp-001-ref.html", + "==" + ] + ], + {} + ] + ], + "line-clamp-003.html": [ + "fa3b7472e5e44fe9eb854eb4dadc34f98af16e92", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/webkit-line-clamp-001-ref.html", + "==" + ] + ], + {} + ] + ], + "line-clamp-004.html": [ + "c766d195b7c27935f099876f8e69a18966623ad9", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/webkit-line-clamp-006-ref.html", + "==" + ] + ], + {} + ] + ], + "line-clamp-005.tentative.html": [ + "143aa65d899dc1e83e5be5927f1f349e8f0a399c", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/webkit-line-clamp-009-ref.html", + "==" + ] + ], + {} + ] + ], + "line-clamp-006.tentative.html": [ + "f06d94161b635a092ed3446cdf9e6b3ebf830777", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/webkit-line-clamp-010-ref.html", + "==" + ] + ], + {} + ] + ], + "line-clamp-007.tentative.html": [ + "c71068641b80530031dc4474422225033959d146", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/webkit-line-clamp-011-ref.html", + "==" + ] + ], + {} + ] + ], + "line-clamp-008.tentative.html": [ + "0d91b3612d0cd38a08f56f01d0d38a7e3cc62042", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/webkit-line-clamp-005-ref.html", + "==" + ] + ], + {} + ] + ], + "line-clamp-009.tentative.html": [ + "4dfd3d6194a6f3715f4f684b8072b5be55478911", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/webkit-line-clamp-006-ref.html", + "==" + ] + ], + {} + ] + ], + "line-clamp-010.html": [ + "1386b147ce639f511fa1fc58e0c0cd75ab99efc2", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/line-clamp-010-ref.html", + "==" + ] + ], + {} + ] + ], + "line-clamp-011.tentative.html": [ + "953f0c4faa9e57975cfabfd10d20ae4e1f9c45a3", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/line-clamp-011-ref.html", + "==" + ] + ], + {} + ] + ], + "line-clamp-012.tentative.html": [ + "be39074037745b5bda0092ff29d45c68f93b4442", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/line-clamp-012-ref.html", + "==" + ] + ], + {} + ] + ], + "line-clamp-013.tentative.html": [ + "1bda501f028e9cca1f0f7f5930d4459ac26a5607", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/line-clamp-013-ref.html", + "==" + ] + ], + {} + ] + ], + "line-clamp-014.html": [ + "9ca7c8937248f482aec2976490c2c86b945f0dfd", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/webkit-line-clamp-001-ref.html", + "==" + ] + ], + {} + ] + ], + "line-clamp-015.html": [ + "820300732235ceed5333217a3cc856c224e8e456", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/line-clamp-015-ref.html", + "==" + ] + ], + {} + ] + ], + "line-clamp-016.tentative.html": [ + "09714c499de663e621925c74bc63e167dc9f7b85", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/webkit-line-clamp-005-ref.html", + "==" + ] + ], + {} + ] + ], + "line-clamp-017.tentative.html": [ + "11d6ceeb556c7469b8de0cd323ddb2594e8b8b34", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/webkit-line-clamp-005-ref.html", + "==" + ] + ], + {} + ] + ], + "line-clamp-018.tentative.html": [ + "af75f7dfb0d291f6158fea3081ca5d1042d06989", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/webkit-line-clamp-001-ref.html", + "==" + ] + ], + {} + ] + ], + "line-clamp-019.tentative.html": [ + "b39376d39502ff643d41543c26db8f43abcc35bd", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/webkit-line-clamp-005-ref.html", + "==" + ] + ], + {} + ] + ], + "line-clamp-020.html": [ + "9d8a2b4d06ce8d1ca1c8a90ec44abbf2466fb7a6", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/webkit-line-clamp-001-ref.html", + "==" + ] + ], + {} + ] + ], + "line-clamp-021.tentative.html": [ + "611cd6f8901af66ecdc301305f2db0f30bf96023", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/line-clamp-021-ref.html", + "==" + ] + ], + {} + ] + ], + "line-clamp-022.tentative.html": [ + "1ae5d94465aac2ebca3a30f749302610e2c175ed", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/line-clamp-022-ref.html", + "==" + ] + ], + {} + ] + ], + "line-clamp-023.tentative.html": [ + "0e11ba4d8625bc5693cc114202479fbe99fa9e39", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/line-clamp-023-ref.html", + "==" + ] + ], + {} + ] + ], + "line-clamp-024.tentative.html": [ + "0efb474a11fb7d48dc05439e448dee9e51c5c260", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/line-clamp-022-ref.html", + "==" + ] + ], + {} + ] + ], + "line-clamp-025.tentative.html": [ + "b2a2c54f450bee13863bfce292164c48a705a7d4", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/line-clamp-023-ref.html", + "==" + ] + ], + {} + ] + ], + "line-clamp-026.tentative.html": [ + "329d12d10bd1021a6565b09be013aeefea973fc6", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/line-clamp-026-ref.html", + "==" + ] + ], + {} + ] + ], + "line-clamp-027.tentative.html": [ + "b2a376b2bd93c577e426d5d6f7a52ccf016b0b75", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/line-clamp-027-ref.html", + "==" + ] + ], + {} + ] + ], + "line-clamp-028.tentative.html": [ + "b8fa48025b692c325f66e7e5e7685cf461fcf94d", + [ + "css/css-overflow/line-clamp/line-clamp-028.tentative.html", + [ + [ + "/css/css-overflow/line-clamp/reference/line-clamp-028-ref.html", + "==" + ] + ], + {} + ] + ], + "line-clamp-auto-001.tentative.html": [ + "02d8479736d4d6fd7e26df53611624e7a75d0989", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/webkit-line-clamp-005-ref.html", + "==" + ] + ], + {} + ] + ], + "line-clamp-auto-002.tentative.html": [ + "ff9e802f0f9e376635230707972611ab5a0ec7d6", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/line-clamp-auto-002-ref.html", + "==" + ] + ], + {} + ] + ], + "line-clamp-auto-003.tentative.html": [ + "a74704dd3b0765434c27935c944fac010415b13c", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/line-clamp-auto-002-ref.html", + "==" + ] + ], + {} + ] + ], + "line-clamp-auto-004.tentative.html": [ + "2dbf9d54084034f2a1b83eccf370e281af24dc8c", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/webkit-line-clamp-005-ref.html", + "==" + ] + ], + {} + ] + ], + "line-clamp-auto-005.tentative.html": [ + "1c9148e2647f310522103d1b5c6c2765a6c6644c", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/line-clamp-auto-005-ref.html", + "==" + ] + ], + {} + ] + ], + "line-clamp-auto-006.tentative.html": [ + "ab6915f52163f9cbd1c4c2f2fa4e9d8bf90a3a88", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/webkit-line-clamp-001-ref.html", + "==" + ] + ], + {} + ] + ], + "line-clamp-auto-007.tentative.html": [ + "f7d56bfa6557413e33bbb2422c5234437ac302b4", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/webkit-line-clamp-001-ref.html", + "==" + ] + ], + {} + ] + ], + "line-clamp-auto-008.tentative.html": [ + "9e7f38ab7ca09debf7628505d8d63ce473dc355e", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/webkit-line-clamp-001-ref.html", + "==" + ] + ], + {} + ] + ], + "line-clamp-auto-009.tentative.html": [ + "44d111056c6b021c796ea694d744816125314def", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/webkit-line-clamp-036-ref.html", + "==" + ] + ], + {} + ] + ], + "line-clamp-auto-010.tentative.html": [ + "cb706bba08e2c9dd6ff05b926be23eb22c9c25b7", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/webkit-line-clamp-037-ref.html", + "==" + ] + ], + {} + ] + ], + "line-clamp-auto-011.tentative.html": [ + "00076a5336e89004b6a2143e9bd6c72ec9fe95e0", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/line-clamp-auto-011-ref.html", + "==" + ] + ], + {} + ] + ], + "line-clamp-auto-012.tentative.html": [ + "56957b15c9223466ddd6f06a45bb854cab18fda6", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/webkit-line-clamp-001-ref.html", + "==" + ] + ], + {} + ] + ], + "line-clamp-auto-013.tentative.html": [ + "dd864fbdcb3fbd3cfeb11a385df61a99e739aba9", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/webkit-line-clamp-005-ref.html", + "==" + ] + ], + {} + ] + ], + "line-clamp-auto-014.tentative.html": [ + "6738c708706e778dd4ee307b8532ca32e8b7b881", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/webkit-line-clamp-005-ref.html", + "==" + ] + ], + {} + ] + ], + "line-clamp-auto-015.tentative.html": [ + "cdb1ed18c0d7a913fc3b9e446dbff15add266300", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/webkit-line-clamp-005-ref.html", + "==" + ] + ], + {} + ] + ], + "line-clamp-auto-016.tentative.html": [ + "372213983b7a753037616485bfc2aae7524abfd5", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/line-clamp-auto-016-ref.html", + "==" + ] + ], + {} + ] + ], + "line-clamp-auto-017.tentative.html": [ + "376c69a210611977b3eae9ed3900b2538516be98", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/webkit-line-clamp-005-ref.html", + "==" + ] + ], + {} + ] + ], + "line-clamp-auto-018.tentative.html": [ + "deb1f42431d26c503d5abd6f22ba567d2ecd446f", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/line-clamp-auto-018-ref.html", + "==" + ] + ], + {} + ] + ], + "line-clamp-auto-019.tentative.html": [ + "82c53dc6bbec03a810dc04538a5bc714cd5802fd", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/line-clamp-auto-019-ref.html", + "==" + ] + ], + {} + ] + ], + "line-clamp-auto-020.tentative.html": [ + "eb84151ca66c1a42b8ff35690946350450fcec46", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/line-clamp-auto-020-ref.html", + "==" + ] + ], + {} + ] + ], + "line-clamp-auto-021.tentative.html": [ + "90c33755bee669e770cf2a9a699998ea67c19fc6", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/line-clamp-auto-021-ref.html", + "==" + ] + ], + {} + ] + ], + "line-clamp-auto-022.tentative.html": [ + "7834c9c3ae0e2d2120f5fbc47f7946908235dedd", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/line-clamp-auto-021-ref.html", + "==" + ] + ], + {} + ] + ], + "line-clamp-auto-023.tentative.html": [ + "d41d68d84a3f9518a64aae73bb6d8f990d9ee160", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/line-clamp-auto-023-ref.html", + "==" + ] + ], + {} + ] + ], + "line-clamp-auto-024.tentative.html": [ + "134dade711ad9ff4dcb3cb310e23a5a5e5e492ea", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/line-clamp-auto-023-ref.html", + "==" + ] + ], + {} + ] + ], + "line-clamp-auto-025.tentative.html": [ + "ee394b2a76d12a276c8809577e92993e2e32e7a8", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/line-clamp-auto-025-ref.html", + "==" + ] + ], + {} + ] + ], + "line-clamp-auto-026.tentative.html": [ + "f616cbed028a82638dfd84465e134230eb109219", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/line-clamp-auto-026-ref.html", + "==" + ] + ], + {} + ] + ], + "line-clamp-auto-027.tentative.html": [ + "9ed461d8cfb4c2ee035987148e15b6dcce3cdffa", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/line-clamp-auto-027-ref.html", + "==" + ] + ], + {} + ] + ], + "line-clamp-auto-028.tentative.html": [ + "e3bcf375bc55fa0d51b36af41a716188be52e8b1", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/line-clamp-auto-028-ref.html", + "==" + ] + ], + {} + ] + ], + "line-clamp-auto-029.tentative.html": [ + "17a3f1a78c1aa045cb71d37a267c69f312b8e5f8", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/line-clamp-auto-029-ref.html", + "==" + ] + ], + {} + ] + ], + "line-clamp-auto-030.tentative.html": [ + "2a3a73b3e7121b80a4954bcb623e05a988ea43e2", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/line-clamp-auto-029-ref.html", + "==" + ] + ], + {} + ] + ], + "line-clamp-auto-031.tentative.html": [ + "a723430c83ed7f0ea8ae8f2966d971c5c56d3cff", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/line-clamp-auto-031-ref.html", + "==" + ] + ], + {} + ] + ], + "line-clamp-auto-032.tentative.html": [ + "17c6981ae33f115d8b7ab4245f44c6c837b44d1a", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/line-clamp-auto-032-ref.html", + "==" + ] + ], + {} + ] + ], + "line-clamp-auto-033.tentative.html": [ + "f18d7eefb271e8529d0f2dedde8fe3fe9d7ea947", + [ + "css/css-overflow/line-clamp/line-clamp-auto-033.tentative.html", + [ + [ + "/css/css-overflow/line-clamp/reference/webkit-line-clamp-005-ref.html", + "==" + ] + ], + {} + ] + ], + "line-clamp-auto-034.tentative.html": [ + "ebb676dfd8e0fa265ddf0280b3987fd1eb8f3587", + [ + "css/css-overflow/line-clamp/line-clamp-auto-034.tentative.html", + [ + [ + "/css/css-overflow/line-clamp/reference/line-clamp-auto-034-ref.html", + "==" + ] + ], + {} + ] + ], + "line-clamp-auto-with-ruby-001.tentative.html": [ + "5f69cc1b71e9eaeceacbbb87140349b5d7590a8c", + [ + "css/css-overflow/line-clamp/line-clamp-auto-with-ruby-001.tentative.html", + [ + [ + "/css/css-overflow/line-clamp/reference/line-clamp-auto-with-ruby-001-ref.html", + "==" + ] + ], + {} + ] + ], + "line-clamp-auto-with-ruby-002.tentative.html": [ + "62fe4814bda517297a4ddd5fa3525a8a9d72026f", + [ + "css/css-overflow/line-clamp/line-clamp-auto-with-ruby-002.tentative.html", + [ + [ + "/css/css-overflow/line-clamp/reference/webkit-line-clamp-005-ref.html", + "==" + ] + ], + {} + ] + ], + "line-clamp-auto-with-ruby-003.tentative.html": [ + "4a3b83093dd592c009b53c5b1f68fe7fcdc8c8fc", + [ + "css/css-overflow/line-clamp/line-clamp-auto-with-ruby-003.tentative.html", + [ + [ + "/css/css-overflow/line-clamp/reference/line-clamp-auto-with-ruby-003-ref.html", + "==" + ] + ], + {} + ] + ], + "line-clamp-auto-with-ruby-004.tentative.html": [ + "6b93203de4d898f9c654baa07c7a2a93f709caa7", + [ + "css/css-overflow/line-clamp/line-clamp-auto-with-ruby-004.tentative.html", + [ + [ + "/css/css-overflow/line-clamp/reference/webkit-line-clamp-005-ref.html", + "==" + ] + ], + {} + ] + ], + "line-clamp-auto-with-ruby-005.tentative.html": [ + "af2a19d6fb043c85ead2a185c8ff955e90c9c21c", + [ + "css/css-overflow/line-clamp/line-clamp-auto-with-ruby-005.tentative.html", + [ + [ + "/css/css-overflow/line-clamp/reference/line-clamp-auto-with-ruby-005-ref.html", + "==" + ] + ], + {} + ] + ], + "line-clamp-with-abspos-001.tentative.html": [ + "79667f23fbdc3d941484c343b2cf0a04ec34363f", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/line-clamp-with-abspos-001-ref.html", + "==" + ] + ], + {} + ] + ], + "line-clamp-with-abspos-002.tentative.html": [ + "cecb9d52bc63ec161dd96dfadcef166edd9334ed", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/line-clamp-with-abspos-001-ref.html", + "==" + ] + ], + {} + ] + ], + "line-clamp-with-abspos-003.tentative.html": [ + "e4bd1de222e2b75455ae50d4c8bfa5c62b0c47c2", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/webkit-line-clamp-005-ref.html", + "==" + ] + ], + {} + ] + ], + "line-clamp-with-abspos-004.tentative.html": [ + "483e6d1da6dc739599e25f3172b0ad248ac23c1b", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/webkit-line-clamp-005-ref.html", + "==" + ] + ], + {} + ] + ], + "line-clamp-with-abspos-005.tentative.html": [ + "3dc77831a06ffd28df3a5a4dca6045cba30fe1dd", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/line-clamp-with-abspos-005-ref.html", + "==" + ] + ], + {} + ] + ], + "line-clamp-with-abspos-006.tentative.html": [ + "f18fed6c2daea0ab6e1ab715c1257407067fa97b", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/line-clamp-with-abspos-006-ref.html", + "==" + ] + ], + {} + ] + ], + "line-clamp-with-abspos-007.tentative.html": [ + "f0a1f58c8d304aead5490db007f763d437e9c5ad", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/line-clamp-with-abspos-007-ref.html", + "==" + ] + ], + {} + ] + ], + "line-clamp-with-abspos-008.tentative.html": [ + "9c62e44f3897b5868dde26a6d6c203c7ddea4b8a", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/line-clamp-with-abspos-008-ref.html", + "==" + ] + ], + {} + ] + ], + "line-clamp-with-abspos-009.tentative.html": [ + "dce04d720cfc83d82e2228204b7f6d41e244aabf", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/webkit-line-clamp-005-ref.html", + "==" + ] + ], + {} + ] + ], + "line-clamp-with-abspos-010.tentative.html": [ + "325278b3a0b44f480ea020c575b9427b33f2ec4e", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/line-clamp-with-abspos-010-ref.html", + "==" + ] + ], + {} + ] + ], + "line-clamp-with-abspos-011.tentative.html": [ + "ab5102a7cf2ea75cdb4729092d7618882e9c6ddf", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/line-clamp-with-abspos-011-ref.html", + "==" + ] + ], + {} + ] + ], + "line-clamp-with-abspos-012.tentative.html": [ + "bed065f38381a9b151cee045b37b45de8f7cd0fb", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/webkit-line-clamp-005-ref.html", + "==" + ] + ], + {} + ] + ], + "line-clamp-with-abspos-013.tentative.html": [ + "ccea125f7246cf526da15a469261c3e90d4d2609", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/webkit-line-clamp-005-ref.html", + "==" + ] + ], + {} + ] + ], + "line-clamp-with-floats-001.tentative.html": [ + "98bbdcb9040224c9c9df1a535ffdeb426040a3c7", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/line-clamp-with-floats-001-ref.html", + "==" + ] + ], + {} + ] + ], + "line-clamp-with-floats-002.tentative.html": [ + "15379a3de3e5518505c24ed9722c0ac4541331a2", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/line-clamp-with-floats-001-ref.html", + "==" + ] + ], + {} + ] + ], + "line-clamp-with-floats-003.tentative.html": [ + "c203758235130cd8e4a0c4838b6b99f8c284cd20", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/webkit-line-clamp-005-ref.html", + "==" + ] + ], + {} + ] + ], + "line-clamp-with-floats-004.tentative.html": [ + "6213130174768418c078ffc792c30b2774c5d9c6", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/webkit-line-clamp-005-ref.html", + "==" + ] + ], + {} + ] + ], + "line-clamp-with-floats-005.tentative.html": [ + "9689a83fa7f9e5976c2d5b71f6adc7fd0397e2cc", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/line-clamp-with-floats-005-ref.html", + "==" + ] + ], + {} + ] + ], + "line-clamp-with-floats-006.tentative.html": [ + "0a709bff198f3f4c35072559ab67f9892a1bf668", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/line-clamp-with-floats-006-ref.html", + "==" + ] + ], + {} + ] + ], + "line-clamp-with-floats-007.tentative.html": [ + "7ee286fbf43b3d961d8a26dc0063b38523e49ad5", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/line-clamp-with-floats-007-ref.html", + "==" + ] + ], + {} + ] + ], + "line-clamp-with-floats-008.tentative.html": [ + "c62ba5371a8fe27ab4e463dc7e548135b7561701", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/line-clamp-with-floats-008-ref.html", + "==" + ] + ], + {} + ] + ], + "line-clamp-with-floats-009.tentative.html": [ + "f25ac381c09d8766f1fd8efe9ec8b677a55b2988", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/webkit-line-clamp-005-ref.html", + "==" + ] + ], + {} + ] + ], + "line-clamp-with-floats-010.tentative.html": [ + "a00ff60171258aee2aba3ac98847e5756fbc26eb", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/line-clamp-with-floats-010-ref.html", + "==" + ] + ], + {} + ] + ], + "webkit-line-clamp-001.html": [ + "bba3d1c49f2dab5055fbceb7313659f463454166", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/webkit-line-clamp-001-ref.html", + "==" + ] + ], + {} + ] + ], + "webkit-line-clamp-002.html": [ + "a04b95994204c1ae2e5b6173719fb9ea41f126c2", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/webkit-line-clamp-001-ref.html", + "==" + ] + ], + {} + ] + ], + "webkit-line-clamp-003.html": [ + "5ebe64675f8c76eb4b59a6a19cd8d79ddf9a75f9", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/webkit-line-clamp-001-ref.html", + "==" + ] + ], + {} + ] + ], + "webkit-line-clamp-004.html": [ + "d66d0bb62f12339c0f04c773af2e8daa82739548", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/webkit-line-clamp-001-ref.html", + "==" + ] + ], + {} + ] + ], + "webkit-line-clamp-005.html": [ + "73b4b8cfa8b5ba2a111d38f0b334f51b59da81e4", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/webkit-line-clamp-005-ref.html", + "==" + ] + ], + {} + ] + ], + "webkit-line-clamp-006.html": [ + "0d2c1f9c6458bf4d4c1f43e9337d0bb306957cdf", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/webkit-line-clamp-006-ref.html", + "==" + ] + ], + {} + ] + ], + "webkit-line-clamp-007.html": [ + "95c2db51653c2ef59cf9b1962354d0db1bb48015", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/webkit-line-clamp-007-ref.html", + "==" + ] + ], + {} + ] + ], + "webkit-line-clamp-008.html": [ + "471333e666f17ef780054f1cd456106bc689d9f3", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/webkit-line-clamp-008-ref.html", + "==" + ] + ], + {} + ] + ], + "webkit-line-clamp-009.html": [ + "240f6b113b08f6725256f2b3c4d937cc1ac66970", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/webkit-line-clamp-009-ref.html", + "==" + ] + ], + {} + ] + ], + "webkit-line-clamp-010.html": [ + "9ff23a2fe399bcfc2ee2e39a76f2cb504cecfaa7", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/webkit-line-clamp-010-ref.html", + "==" + ] + ], + {} + ] + ], + "webkit-line-clamp-011.html": [ + "3a0016e9dfdac662089a7898fa30a6edac4c999c", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/webkit-line-clamp-011-ref.html", + "==" + ] + ], + {} + ] + ], + "webkit-line-clamp-012.html": [ + "d46a7944fafb31945a43333c8707078e99e6e999", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/webkit-line-clamp-012-ref.html", + "==" + ] + ], + {} + ] + ], + "webkit-line-clamp-013.html": [ + "6db53906acd2f1354d6de0525fb1f5fa906fbbc8", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/webkit-line-clamp-013-ref.html", + "==" + ] + ], + {} + ] + ], + "webkit-line-clamp-014.html": [ + "948b247533065dbedc6f6c18e6fba9a2e2715b27", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/webkit-line-clamp-014-ref.html", + "==" + ] + ], + {} + ] + ], + "webkit-line-clamp-015.html": [ + "c1817e04e6a8ecc227ab93299d004ac0d93487e3", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/webkit-line-clamp-015-ref.html", + "==" + ] + ], + {} + ] + ], + "webkit-line-clamp-016.html": [ + "5b2d4593aefed4b36653c09394c1fe5e3565aaf3", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/webkit-line-clamp-016-ref.html", + "==" + ] + ], + {} + ] + ], + "webkit-line-clamp-017.html": [ + "ece4d3123b1b8dda7da814648f2c2e0e862f47bb", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/webkit-line-clamp-017-ref.html", + "==" + ] + ], + {} + ] + ], + "webkit-line-clamp-018.html": [ + "d381c645467ffa2a95c74191a748a587b8e1c51b", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/webkit-line-clamp-018-ref.html", + "==" + ] + ], + {} + ] + ], + "webkit-line-clamp-019.html": [ + "ff6f7e3cf788dbda5a6cb18c4e6f4b4724b578b8", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/webkit-line-clamp-019-ref.html", + "==" + ] + ], + {} + ] + ], + "webkit-line-clamp-020.html": [ + "9d875d52dee852ddf360c1edf1ccc2b7c3e638d1", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/webkit-line-clamp-020-ref.html", + "==" + ] + ], + {} + ] + ], + "webkit-line-clamp-021.html": [ + "44a196c9ba1b120f99ae4274c1d70bf9544fcefd", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/webkit-line-clamp-021-ref.html", + "==" + ] + ], + {} + ] + ], + "webkit-line-clamp-022.html": [ + "2959a734411283572b854469f84e547a718ed2a5", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/webkit-line-clamp-022-ref.html", + "==" + ] + ], + {} + ] + ], + "webkit-line-clamp-023.html": [ + "7f03513baa8eddcebf2a5a1e44fe7062bb5f78cc", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/webkit-line-clamp-023-ref.html", + "==" + ] + ], + {} + ] + ], + "webkit-line-clamp-024.html": [ + "6ebf5a8958b9592f3fc3850185cd3ee59867beaa", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/webkit-line-clamp-024-ref.html", + "==" + ] + ], + {} + ] + ], + "webkit-line-clamp-025.html": [ + "67804dedf60db0c75f6da93af3be38398c4cd161", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/webkit-line-clamp-025-ref.html", + "==" + ] + ], + {} + ] + ], + "webkit-line-clamp-026.html": [ + "741384f292770c3a87d0ade0b3745d29c779d988", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/webkit-line-clamp-026-ref.html", + "==" + ] + ], + {} + ] + ], + "webkit-line-clamp-027.html": [ + "93bfb0f4b46a0f3c1d2ed9d6dede2892475884fb", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/webkit-line-clamp-027-ref.html", + "==" + ] + ], + {} + ] + ], + "webkit-line-clamp-029.html": [ + "fc395d313ea5cd8015f56c9fbfec319a24c69622", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/webkit-line-clamp-029-ref.html", + "==" + ] + ], + {} + ] + ], + "webkit-line-clamp-030.html": [ + "5e14a78a583ed0fc3d50ede16f25df68d7f3d05b", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/webkit-line-clamp-030-ref.html", + "==" + ] + ], + {} + ] + ], + "webkit-line-clamp-031.html": [ + "4f8c55301ab26a4ba6c5cedbc50abd2f554bfe89", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/webkit-line-clamp-031-ref.html", + "==" + ] + ], + {} + ] + ], + "webkit-line-clamp-032.html": [ + "4d0731379d042b877926d00236e4e3a7d4d3abea", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/webkit-line-clamp-032-ref.html", + "==" + ] + ], + {} + ] + ], + "webkit-line-clamp-033.html": [ + "261cf5b6b2478698cd50c25f6d6a437e6853e5b1", + [ + null, + [ + [ + "/css/reference/blank.html", + "==" + ] + ], + {} + ] + ], + "webkit-line-clamp-034.html": [ + "e0b31d544c20a0f57486c771b6b4edef9b69625b", + [ + null, + [ + [ + "/css/reference/blank.html", + "==" + ] + ], + {} + ] + ], + "webkit-line-clamp-035.html": [ + "5a550e022ecbb87580c3beb77337fccac825adc7", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/webkit-line-clamp-035-ref.html", + "==" + ] + ], + {} + ] + ], + "webkit-line-clamp-036.html": [ + "b8d7b194f05dd8dc1189900b399188e0d17391d1", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/webkit-line-clamp-036-ref.html", + "==" + ] + ], + {} + ] + ], + "webkit-line-clamp-037.html": [ + "86015228f88e4c622c4bd1c20cb35a20619075c7", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/webkit-line-clamp-037-ref.html", + "==" + ] + ], + {} + ] + ], + "webkit-line-clamp-038.html": [ + "b50ae2764c317c809af07649295a2d42ec211517", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/webkit-line-clamp-038-ref.html", + "==" + ] + ], + {} + ] + ], + "webkit-line-clamp-039.html": [ + "fe9436da53d707f8641e606d5756d3ad2e771b7a", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/webkit-line-clamp-039-ref.html", + "==" + ] + ], + {} + ] + ], + "webkit-line-clamp-040.html": [ + "fa885c8088d5f2d221548ca062fdc0ebb0c83e4b", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/webkit-line-clamp-040-ref.html", + "==" + ] + ], + {} + ] + ], + "webkit-line-clamp-043.html": [ + "1f7a0a94c03ed0661c67c4ef46c7ce31d133ddde", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "webkit-line-clamp-block-in-inline-001.html": [ + "75d1de3bf5bcf5d00d6980de4a70845e9f7ae8e4", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/webkit-line-clamp-block-in-inline-001-ref.html", + "==" + ] + ], + {} + ] + ], + "webkit-line-clamp-dynamic-001.html": [ + "fc4f2f9e4db6b55d124dd774e0563e2625ca3288", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/webkit-line-clamp-dynamic-001-ref.html", + "==" + ] + ], + {} + ] + ], + "webkit-line-clamp-with-line-height.tentative.html": [ + "a82635f986b60ff4853785dc40b7bbe985af4eb1", + [ + null, + [ + [ + "/css/css-overflow/line-clamp/reference/webkit-line-clamp-with-line-height-ref.html", + "==" + ] + ], + {} + ] + ] + }, + "margin-block-end-scroll-area-001.html": [ + "3b8f4ca3f355718d05fe6eeda200bddccb388f57", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-overflow/reference/ref-if-there-is-no-red.xht", "==" ] ], {} ] ], - "multicol-span-all-children-height-010.html": [ - "0bcbf4da3ce8e1abff5b1e4c87b1106cc67c3af0", + "no-scrollable-overflow-vertical-rl-2.html": [ + "895f9bafc621329b95d1bb2fe086602945991cde", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "multicol-span-all-children-height-011.html": [ - "a85c7c59e6e16c6215ad93d019d0d869a97da7ce", + "no-scrollable-overflow-vertical-rl.html": [ + "13385a2685cb8b6c33c94a9b09186336fda9c61a", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "multicol-span-all-children-height-012.html": [ - "49437f027c13092d6d03d7cf26d6f79b05039cc6", + "overflow-auto-scrollbar-gutter-intrinsic-001.html": [ + "061339b49cd29b0f68d53c5ecce6d2eb03fdaa6c", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-overflow/overflow-auto-scrollbar-gutter-intrinsic-001-ref.html", "==" ] ], {} ] ], - "multicol-span-all-children-height-013.html": [ - "6889c076b65b6371fdb26b54daeb77f7d6180882", + "overflow-auto-scrollbar-gutter-intrinsic-002.html": [ + "535f2c4d5298df70e2eb417531093bb7fa753cbd", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-overflow/overflow-auto-scrollbar-gutter-intrinsic-002-ref.html", "==" ] ], {} ] ], - "multicol-span-all-dynamic-add-001.html": [ - "d9bf40889f75db72835c279517341dbb786c8ba8", + "overflow-auto-scrollbar-gutter-intrinsic-003.html": [ + "ab247d9ca5a7cac660200cb475feb6b69093e520", [ - "css/css-multicol/multicol-span-all-dynamic-add-001.html", + null, [ [ - "/css/css-multicol/multicol-span-all-dynamic-add-001-ref.html", + "/css/css-overflow/overflow-auto-scrollbar-gutter-intrinsic-003-ref.html", "==" ] ], {} ] ], - "multicol-span-all-dynamic-add-002.html": [ - "665a168083b9e91344cb0e566253dcf4ec921469", + "overflow-body-propagation-001.html": [ + "0998fe68e007d5a46ff11d5ff87fdbad12d1dfe2", [ - "css/css-multicol/multicol-span-all-dynamic-add-002.html", + null, [ [ - "/css/css-multicol/multicol-span-all-dynamic-add-002-ref.html", + "/css/css-overflow/reference/overflow-body-propagation-ref.html", "==" ] ], {} ] ], - "multicol-span-all-dynamic-add-003.html": [ - "4538733ec4b2e76c5731041154457dd39a9baa20", + "overflow-body-propagation-002.html": [ + "5991dd52e8b6aec74f55780587f15c2b9399c968", [ - "css/css-multicol/multicol-span-all-dynamic-add-003.html", + null, [ [ - "/css/css-multicol/multicol-span-all-dynamic-add-003-ref.html", + "/css/reference/blank.html", "==" ] ], {} ] ], - "multicol-span-all-dynamic-add-004.html": [ - "0b2ecbcc2f7ae4adef31f4d4fcc44605fb81c4ca", + "overflow-body-propagation-003.html": [ + "a329a8dfe3e44c92368bf0496897f74ccec5a63a", [ - "css/css-multicol/multicol-span-all-dynamic-add-004.html", + null, [ [ - "/css/css-multicol/multicol-span-all-dynamic-add-004-ref.html", + "/css/reference/blank.html", "==" ] ], {} ] ], - "multicol-span-all-dynamic-add-005.html": [ - "4453cae566ab92560f6ed30cd721156e82bcef0c", + "overflow-body-propagation-004.html": [ + "2ed8d2687a33608e0e70884ad2ea59330d2b09e3", [ - "css/css-multicol/multicol-span-all-dynamic-add-005.html", + null, [ [ - "/css/css-multicol/multicol-span-all-dynamic-add-001-ref.html", + "/css/css-overflow/reference/overflow-body-no-propagation-ref.html", "==" ] ], {} ] ], - "multicol-span-all-dynamic-add-006.html": [ - "1e16e9dfd926512be371c6716f480c0342cbea0d", + "overflow-body-propagation-005.html": [ + "e4de5769584611f61ec2fecd99c2324916a3d6ec", [ - "css/css-multicol/multicol-span-all-dynamic-add-006.html", + null, [ [ - "/css/css-multicol/multicol-span-all-dynamic-add-002-ref.html", + "/css/css-overflow/reference/overflow-body-propagation-ref.html", "==" ] ], {} ] ], - "multicol-span-all-dynamic-add-007.html": [ - "b54e38a32b50fe6320135e1810215253187e23f8", + "overflow-body-propagation-006.html": [ + "475815068357ee24cfe9f22f968b0289ca982383", [ - "css/css-multicol/multicol-span-all-dynamic-add-007.html", + null, [ [ - "/css/css-multicol/multicol-span-all-dynamic-add-007-ref.html", + "/css/css-overflow/reference/overflow-body-propagation-ref.html", "==" ] ], {} ] ], - "multicol-span-all-dynamic-add-008.html": [ - "f6340a40b023bf2be286274572d21535db29b259", + "overflow-body-propagation-007.html": [ + "ee6e1a1cc69df09571ab5f49ed3f18d85f7cf3a9", [ - "css/css-multicol/multicol-span-all-dynamic-add-008.html", + null, [ [ - "/css/css-multicol/multicol-span-all-dynamic-add-008-ref.html", + "/css/css-overflow/overflow-body-propagation-007-ref.html", "==" ] ], {} ] ], - "multicol-span-all-dynamic-add-009.html": [ - "f07c51c6306301981780081f80e0c1c07131daa5", + "overflow-body-propagation-008.html": [ + "7da4a5a7504ab63a8ff27820155e746b7c69b685", [ - "css/css-multicol/multicol-span-all-dynamic-add-009.html", + null, [ [ - "/css/css-multicol/multicol-span-all-dynamic-add-002-ref.html", + "/css/css-overflow/overflow-body-propagation-008-ref.html", "==" ] ], {} ] ], - "multicol-span-all-dynamic-add-010.html": [ - "d431e82304e384710cd4e1bc3a7884a11a7e4115", + "overflow-body-propagation-009.html": [ + "33cb079487b9f6ea5db5152e447747bbdf3bdad1", [ - "css/css-multicol/multicol-span-all-dynamic-add-010.html", + null, [ [ - "/css/css-multicol/multicol-span-all-dynamic-add-010-ref.html", + "/css/css-overflow/overflow-body-propagation-009-ref.html", "==" ] ], {} ] ], - "multicol-span-all-dynamic-add-011.html": [ - "6b96a9afe861e129b1bb23bb5bc7a4884e27647c", + "overflow-body-propagation-010.html": [ + "a3fcdaf3c5f1faf6d2675cf59c53a4d81e3f1031", [ - "css/css-multicol/multicol-span-all-dynamic-add-011.html", + null, [ [ - "/css/css-multicol/multicol-span-all-dynamic-add-003-ref.html", + "/css/css-overflow/overflow-body-propagation-010-ref.html", "==" ] ], {} ] ], - "multicol-span-all-dynamic-add-012.html": [ - "fa3a4677fff572e286f3aa34d3bc570a5992f027", + "overflow-body-propagation-011.html": [ + "c8672c2af2e44ef3df5f6ede1f8e582e67a767ab", [ - "css/css-multicol/multicol-span-all-dynamic-add-012.html", + null, [ [ - "/css/css-multicol/multicol-span-all-dynamic-add-012-ref.html", + "/css/css-overflow/overflow-body-propagation-011-ref.html", "==" ] ], {} ] ], - "multicol-span-all-dynamic-add-013.html": [ - "ae275386e23724a3567a600c96ddb387ddb32009", + "overflow-canvas.html": [ + "e9529cb0bc81202c5689a507435ea088028a97fc", [ - "css/css-multicol/multicol-span-all-dynamic-add-013.html", + null, [ [ - "/css/css-multicol/multicol-span-all-dynamic-add-013-ref.html", + "/css/css-overflow/overflow-canvas-ref.html", "==" ] ], {} ] ], - "multicol-span-all-dynamic-remove-001.html": [ - "0c5523ad124ba1b3ea8c36cca984bfcaf7d42c83", + "overflow-clip-cant-scroll.html": [ + "529ef1fad94432769428aad25ebcb27e28124d85", [ - "css/css-multicol/multicol-span-all-dynamic-remove-001.html", + null, [ [ - "/css/css-multicol/multicol-span-all-dynamic-remove-001-ref.html", + "/css/css-overflow/overflow-clip-cant-scroll-ref.html", "==" ] ], {} ] ], - "multicol-span-all-dynamic-remove-002.html": [ - "2b4ab81d2d6e39cf220902e9372abb725cace5c1", + "overflow-clip-content-visual-overflow.html": [ + "8ea8e2c3334e17cfa5c5225df837135e64546f7d", [ - "css/css-multicol/multicol-span-all-dynamic-remove-002.html", + null, [ [ - "/css/css-multicol/multicol-span-all-dynamic-remove-002-ref.html", + "/css/css-overflow/overflow-clip-content-visual-overflow-ref.html", "==" ] ], {} ] ], - "multicol-span-all-dynamic-remove-003.html": [ - "30de099d5e37bdc9bb702b95cd4acc9d2b7145d5", + "overflow-clip-margin-001.html": [ + "9a97f94e816011a1d4a26d4f03208022779a4d47", [ - "css/css-multicol/multicol-span-all-dynamic-remove-003.html", + null, [ [ - "/css/css-multicol/multicol-span-all-dynamic-remove-001-ref.html", + "/css/css-overflow/overflow-clip-margin-001-ref.html", "==" ] ], {} ] ], - "multicol-span-all-dynamic-remove-004.html": [ - "c362a1c787e04ab8f0060dbf8d8dbbe69292c06f", + "overflow-clip-margin-002.html": [ + "5f6d740e0bcff6f1dc56dbc011da0dc107ca2201", [ - "css/css-multicol/multicol-span-all-dynamic-remove-004.html", + null, [ [ - "/css/css-multicol/multicol-span-all-dynamic-remove-004-ref.html", + "/css/css-overflow/overflow-clip-margin-002-ref.html", "==" ] ], {} ] ], - "multicol-span-all-dynamic-remove-005.html": [ - "21a8b0b590cd425879337d8bf8ebd945e37f9992", + "overflow-clip-margin-003.html": [ + "52625e90977f1e3ab87037a0bd4f48343b026fc8", [ - "css/css-multicol/multicol-span-all-dynamic-remove-005.html", + null, [ [ - "/css/css-multicol/multicol-span-all-dynamic-remove-005-ref.html", + "/css/css-overflow/overflow-clip-margin-003-ref.html", "==" ] ], {} ] ], - "multicol-span-all-dynamic-remove-006.html": [ - "406cb0aaf08080ff0f8fa75d6d5cbcd6c6c1357b", + "overflow-clip-margin-004.html": [ + "aab356f487ec4cd6095d011203eedbe494a1b03a", [ - "css/css-multicol/multicol-span-all-dynamic-remove-006.html", + null, [ [ - "/css/css-multicol/multicol-span-all-dynamic-remove-001-ref.html", + "/css/css-overflow/overflow-clip-margin-004-ref.html", "==" ] ], {} ] ], - "multicol-span-all-dynamic-remove-007.html": [ - "2e9e49420e9e62dc191355f87f9f2f119dd02c39", + "overflow-clip-margin-005.html": [ + "1b4b4aa943f1fbfecbd434be1722d7bf0e61c2dd", [ - "css/css-multicol/multicol-span-all-dynamic-remove-007.html", + null, [ [ - "/css/css-multicol/multicol-span-all-dynamic-remove-001-ref.html", + "/css/css-overflow/overflow-clip-margin-005-ref.html", "==" ] ], {} ] ], - "multicol-span-all-fieldset-001.html": [ - "7e741134ecc1335fc069708ac5f7509f8da22cec", + "overflow-clip-margin-006.html": [ + "493bcee29f65c6890cec5472ac277adaa662a546", [ - "css/css-multicol/multicol-span-all-fieldset-001.html", + null, [ [ - "/css/css-multicol/multicol-span-all-fieldset-001-ref.html", + "/css/css-overflow/overflow-clip-margin-006-ref.html", "==" ] ], {} ] ], - "multicol-span-all-fieldset-002.html": [ - "f7c9a842cd9c3e25f2357171705677a54bc592dd", + "overflow-clip-margin-007.html": [ + "0ae8881b02ea96d7f388f1a919c712933a7d27b3", [ - "css/css-multicol/multicol-span-all-fieldset-002.html", + null, [ [ - "/css/css-multicol/multicol-span-all-fieldset-002-ref.html", + "/css/css-overflow/overflow-clip-margin-007-ref.html", "==" ] ], {} ] ], - "multicol-span-all-fieldset-003.html": [ - "02df35cb8a4625bf7c22b0b5351cc76c0a87abd1", + "overflow-clip-margin-008.html": [ + "fabe669a49c69319c9fc689cc9f22af6b6fe41f9", [ - "css/css-multicol/multicol-span-all-fieldset-003.html", + null, [ [ - "/css/css-multicol/multicol-span-all-fieldset-003-ref.html", + "/css/css-overflow/overflow-clip-margin-008-ref.html", "==" ] ], {} ] ], - "multicol-span-all-list-item-001.html": [ - "2cbf740751852d01aa7d720af4e6fc15f7468633", + "overflow-clip-margin-009.html": [ + "6ba9a5a3e6073567ff47778030a9fd621fb65049", [ - "css/css-multicol/multicol-span-all-list-item-001.html", + null, [ [ - "/css/css-multicol/multicol-span-all-list-item-001-ref.html", + "/css/css-overflow/overflow-clip-margin-009-ref.html", "==" ] ], {} ] ], - "multicol-span-all-list-item-002.html": [ - "2644fe920fc79878831039ca02d8fd47a87aa418", + "overflow-clip-margin-010.html": [ + "e2d1983069f367dc6edc4065de6535b5a2431c13", [ - "css/css-multicol/multicol-span-all-list-item-002.html", + null, [ [ - "/css/css-multicol/multicol-span-all-list-item-002-ref.html", + "/css/css-overflow/overflow-clip-margin-010-ref.html", "==" ] ], {} ] ], - "multicol-span-all-margin-001.xht": [ - "a7d25ab56c1b18b5e41a9d3e5ac806f46bd618fa", + "overflow-clip-margin-011.html": [ + "5952f5e9ded1f463bc72062d9c9fa0833b165200", [ null, [ [ - "/css/css-multicol/multicol-span-all-margin-001-ref.xht", + "/css/css-overflow/overflow-clip-margin-011-ref.html", "==" ] ], {} ] ], - "multicol-span-all-margin-002.xht": [ - "2fb05ab502ab868d41ef5ed093de4b0eff7fec76", + "overflow-clip-margin-012.html": [ + "a1b0587a4d5f2a9878ab73205fee310631063415", [ null, [ [ - "/css/css-multicol/multicol-span-all-margin-002-ref.xht", + "/css/css-overflow/overflow-clip-margin-007-ref.html", "==" ] ], {} ] ], - "multicol-span-all-margin-003.html": [ - "06c1bea3abfed404db4b7b7b6ad83be0f5e3ca24", + "overflow-clip-margin-invalidation.html": [ + "d9c87a34a53f17451b0d3ae8c2071971d1df3a94", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-overflow/overflow-clip-margin-invalidation-ref.html", "==" ] ], {} ] ], - "multicol-span-all-margin-bottom-001.xht": [ - "eabb519e6722ad26ee9e43f3d55d129332807e92", + "overflow-clip-margin-mul-column-border-box.html": [ + "a0a1e895a66fa27a4ec95d115d646c0881e8da31", [ null, [ [ - "/css/css-multicol/multicol-span-all-margin-bottom-001-ref.xht", + "/css/css-overflow/overflow-clip-margin-mul-column-border-box-ref.html", "==" ] ], {} ] ], - "multicol-span-all-margin-nested-001.xht": [ - "6bd22df89ff4086264dc8735c30816025460ce4f", + "overflow-clip-margin-mul-column-content-box.html": [ + "26c081e04c8010dadc972dadcc74284a39e7cf8a", [ null, [ [ - "/css/css-multicol/multicol-span-all-margin-nested-001-ref.xht", + "/css/css-overflow/overflow-clip-margin-mul-column-content-box-ref.html", "==" ] ], {} ] ], - "multicol-span-all-margin-nested-002.xht": [ - "5e05e8697a28335c64385965fd57282985d927d0", + "overflow-clip-margin-mul-column-padding-box.html": [ + "e3b3700608b4e1256481477db436d82bb3bf4528", [ null, [ [ - "/css/css-multicol/multicol-span-all-margin-nested-001-ref.xht", + "/css/css-overflow/overflow-clip-margin-mul-column-padding-box-ref.html", "==" ] ], {} ] ], - "multicol-span-all-margin-nested-firstchild-001.xht": [ - "cfb5853627f7059b5e8dddb2c45571059194bac4", + "overflow-clip-margin-svg.html": [ + "db66ddbbdb2b8e9281214a2f136b75ac14f988da", [ null, [ [ - "/css/css-multicol/multicol-span-all-margin-nested-firstchild-ref.xht", + "/css/css-overflow/overflow-clip-margin-svg-ref.html", "==" ] ], {} ] ], - "multicol-span-all-restyle-001.html": [ - "0f05c9cc5a61b0e3b36eef3069f3d813e35229e1", + "overflow-clip-margin-visual-box-and-value-with-border-radius.html": [ + "06ddb5c1630340d39af7cd2c35146910d5e5bcfc", [ - "css/css-multicol/multicol-span-all-restyle-001.html", + null, [ [ - "/css/css-multicol/multicol-span-all-restyle-001-ref.html", + "/css/css-overflow/overflow-clip-margin-visual-box-and-value-with-border-radius-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 5 + ], + [ + 0, + 100 + ] + ] + ] + ] + } ] ], - "multicol-span-all-restyle-002.html": [ - "bfc8f4b7b73b2409312025e4279b0b255da0e0db", + "overflow-clip-margin-visual-box-and-value.html": [ + "cfef43481446054671348ce5582438aaa10a7f3a", [ - "css/css-multicol/multicol-span-all-restyle-002.html", + null, [ [ - "/css/css-multicol/multicol-span-all-restyle-002-ref.html", + "/css/css-overflow/overflow-clip-margin-visual-box-and-value-ref.html", "==" ] ], {} ] ], - "multicol-span-all-restyle-003.html": [ - "a0904770e8f1c0ff90f972418015400d1241178e", + "overflow-clip-margin-visual-box.html": [ + "db2c17fcc39cb057616a137d76b1fd12939d0127", [ - "css/css-multicol/multicol-span-all-restyle-003.html", + null, [ [ - "/css/css-multicol/multicol-span-all-restyle-003-ref.html", + "/css/css-overflow/overflow-clip-margin-visual-box-ref.html", "==" ] ], {} ] ], - "multicol-span-all-restyle-004.html": [ - "b005913bafaf6f546925387e65e5aab3d98eb5b7", + "overflow-clip-rounded-table.html": [ + "5484129e7fdedd49a4c4bea509a00dd94c6ec1c3", [ - "css/css-multicol/multicol-span-all-restyle-004.html", + null, [ [ - "/css/css-multicol/multicol-span-all-restyle-004-ref.html", + "/css/css-overflow/overflow-clip-rounded-table-ref.html", "==" ] ], {} ] ], - "multicol-span-all-rule-001.html": [ - "c29cd69b2204298b234e0ab0dbfc63f6d6951974", + "overflow-clip-x-visible-y-svg.html": [ + "bd903cdfd68f604064d46a6d50d64d4784b7a0de", [ - "css/css-multicol/multicol-span-all-rule-001.html", + null, [ [ - "/css/css-multicol/multicol-span-all-rule-001-ref.html", + "/css/css-overflow/overflow-clip-x-visible-y-svg-ref.html", "==" ] ], {} ] ], - "multicol-span-float-001.xht": [ - "8d123c85657be800b6eced6b70c0ecd01f006069", + "overflow-clip-y-visible-x-svg.html": [ + "8416af30470f0a949625acb632ccb6ec2caa9650", [ null, [ [ - "/css/css-multicol/multicol-span-float-001-ref.xht", + "/css/css-overflow/overflow-clip-y-visible-x-svg-ref.html", "==" ] ], {} ] ], - "multicol-span-float-002.html": [ - "ae461a8e6aed52a1ab204b6817bf4dd6c0b17b9a", + "overflow-ellipsis-dynamic-001.html": [ + "2a9edba9308bf06009d7b9a27f21f1e0f1a231c7", [ - "css/css-multicol/multicol-span-float-002.html", + null, [ [ - "/css/css-multicol/multicol-span-float-002-ref.html", + "/css/css-overflow/reference/overflow-ellipsis-dynamic-001-ref.html", "==" ] ], {} ] ], - "multicol-span-float-003.html": [ - "854db9897ded648dbc6b3f8e049b9bc18697f80d", + "overflow-hidden-resize-with-stacking-context-child.html": [ + "8569ac153329c96b5dd27f43fd549163380694e8", [ - "css/css-multicol/multicol-span-float-003.html", + null, [ [ - "/css/css-multicol/multicol-span-float-002-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "multicol-span-none-001.xht": [ - "a2be00b0ccd287effdc446cb18baacdc88fbbe9e", + "overflow-img-border-radius.html": [ + "cec70d6b942b426864b9a1a2648ebf1f71514c4b", [ null, [ [ - "/css/css-multicol/multicol-span-none-001-ref.xht", + "/css/css-overflow/overflow-img-ref.html", "==" ] ], {} ] ], - "multicol-under-vertical-rl-scroll.html": [ - "61754e7d29d2d5399e6b41ceb27fe25af3b8019c", + "overflow-img-display-table.html": [ + "b7e19aa616dc42674e33e399729986d5316ecb13", [ null, [ [ - "/css/css-multicol/multicol-under-vertical-rl-scroll-ref.html", + "/css/css-overflow/overflow-img-display-table-ref.html", "==" ] ], {} ] ], - "multicol-width-001.xht": [ - "07140f8e020a48b15c20871473eb95bd212fdd21", + "overflow-img-object-position.html": [ + "67e6febef275ccd07957db6687bdbefddf02c23b", [ null, [ [ - "/css/css-multicol/multicol-width-001-ref.xht", + "/css/css-overflow/overflow-img-object-position-ref.html", "==" ] ], {} ] ], - "multicol-width-002.xht": [ - "7f016f4837d0401bee770f345eefa90dbb46f05b", + "overflow-img-scroll-non-replaced.html": [ + "6468c73068894979a8585191eb7358f0ee241880", [ null, [ [ - "/css/css-multicol/multicol-width-002-ref.xht", + "/css/css-overflow/overflow-img-scroll-non-replaced-ref.html", "==" ] ], {} ] ], - "multicol-width-003.xht": [ - "8158deafbe15d1b341479b69b4ecac7a2d9091a3", + "overflow-img-scroll-replaced.html": [ + "0657596d4f19ff91d0074918334eba5de8f00ffe", [ null, [ [ - "/css/css-multicol/multicol-width-002-ref.xht", + "/css/css-overflow/overflow-img-scroll-replaced-ref.html", "==" ] ], {} ] ], - "multicol-width-004.html": [ - "230a1d2d296d18cf7c8e47307ec03d8d5d2733dc", + "overflow-img-svg.html": [ + "15285ca3b67451daf3deb7ed17249f1efe279d79", [ - "css/css-multicol/multicol-width-004.html", + null, [ [ - "/css/css-multicol/multicol-width-004-ref.html", + "/css/css-overflow/overflow-img-svg-ref.html", "==" ] ], {} ] ], - "multicol-width-005.html": [ - "2a87b03e2bdc2951be1c923a09306b49403e3212", + "overflow-img.html": [ + "cd9d30ffaa3318d7c9df288260c104c4cd7f0bbe", [ - "css/css-multicol/multicol-width-005.html", + null, [ [ - "/css/css-multicol/multicol-width-005-ref.html", + "/css/css-overflow/overflow-img-ref.html", "==" ] ], {} ] ], - "multicol-width-ch-001.xht": [ - "077693d129ba37d4c41566883af34d8cdedbeac4", + "overflow-inline-block-with-opacity.html": [ + "20288f8a0d5ecf520d1e4114f7949ebd4b159e0d", [ - "css/css-multicol/multicol-width-ch-001.xht", + null, [ [ - "/css/css-multicol/multicol-width-ch-ref.xht", + "/css/css-overflow/reference/overflow-inline-block-with-opacity-ref.html", "==" ] ], {} ] ], - "multicol-width-count-001.xht": [ - "5cbaba214742296d8c031f5376a17ef561fb9254", + "overflow-negative-margin-dynamic.html": [ + "5eec139521adec4a2c6a9687e2e18cd0fbdea181", [ null, [ [ - "/css/css-multicol/multicol-width-001-ref.xht", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "multicol-width-count-002.xht": [ - "7f56e604458f59be6a350b018c1eb66c3c109287", + "overflow-negative-margin.html": [ + "070ab62f7f6717449bf9ca431684111296af347e", [ null, [ [ - "/css/css-multicol/multicol-count-002-ref.xht", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "multicol-width-invalid-001.xht": [ - "931d55345346d2e834f5a438227ed5ae15fc4d01", + "overflow-no-frameset-propagation.html": [ + "687adbe0bced28f73aedde61233159695e23c6cc", [ null, [ [ - "/css/css-multicol/multicol-width-invalid-001-ref.xht", + "/common/blank.html", "==" ] ], {} ] ], - "multicol-width-large-001.xht": [ - "c34b8b4bcf1689c023a8ee4034cc6e802bf74a6c", + "overflow-overlay.html": [ + "0e8ff093b03aa4dd9a78900d6f615590ec510fa7", [ null, [ [ - "/css/css-multicol/multicol-width-invalid-001-ref.xht", + "/css/css-overflow/overflow-overlay-ref.html", "==" ] ], {} ] ], - "multicol-width-large-002.xht": [ - "bec00cc2dd22776f2075df5959abe857b99a4836", + "overflow-recalc-001.html": [ + "5d0d6f000937eb85095513a82f28721b52e624c6", [ null, [ [ - "/css/css-multicol/multicol-width-invalid-001-ref.xht", + "/css/css-overflow/reference/overflow-recalc-001-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 1 + ], + [ + 0, + 5 + ] + ] + ] + ] + } ] ], - "multicol-width-negative-001.xht": [ - "ea0ed9ab766bbf16b8849fd69c63268d944302b8", + "overflow-scroll-big-border-small-content.html": [ + "0b033c02e5d9aaf1d6d981b1500be2b9115dcedd", [ null, [ [ - "/css/css-multicol/multicol-count-002-ref.xht", + "/css/css-overflow/overflow-scroll-big-border-small-content-ref.html", "==" ] ], {} ] ], - "multicol-width-small-001.xht": [ - "c786be09ec83bff76f4314651062ea23784a0bcd", + "overflow-scroll-intrinsic-001.html": [ + "093fd283c77b71e7f73914761cc086e10c12a0d6", [ - "css/css-multicol/multicol-width-small-001.xht", + null, [ [ - "/css/css-multicol/multicol-width-small-001-ref.xht", + "/css/css-overflow/overflow-scroll-intrinsic-001-ref.html", "==" ] ], {} ] ], - "multicol-zero-height-001.xht": [ - "57bfca96e423acd9033d53d7a537ef17f6d6199d", + "overflow-scroll-resize-visibility-hidden.html": [ + "e8d0bc91440c7ed810079cc577d1e02689d3b220", [ null, [ [ - "/css/css-multicol/multicol-zero-height-001-ref.xht", + "/css/css-overflow/overflow-scroll-resize-visibility-hidden-ref.html", "==" ] ], {} ] ], - "multicol-zero-height-002.html": [ - "c5f432d9ae1da5f12a1d2b58a2127c40fbf7c4e9", + "overflow-video.html": [ + "1721f8732be2be2711807c88c66cbb7b4dffdec8", [ null, [ [ - "/css/css-multicol/multicol-zero-height-002-ref.html", + "/css/css-overflow/overflow-video-ref.html", "==" ] ], {} ] ], - "multicol-zero-height-003.html": [ - "d685d49bf689748ee14443181e14cd44df6b530c", + "paint-containment-svg.html": [ + "bf2939f70901db3cfa9755e1acaa87c67929bc18", [ null, [ [ - "/css/css-multicol/multicol-zero-height-003-ref.html", + "/css/css-overflow/paint-containment-svg-ref.html", "==" ] ], {} ] ], - "named-page.html": [ - "c8b486f2806037042afcf1f24835f0cade507b82", + "rounded-overflow-clip-visible.html": [ + "65e7f055a3907da79701f1f8d68f6527d7c69181", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-overflow/rounded-overflow-clip-visible-ref.html", "==" ] ], {} ] ], - "nested-after-float-clearance.html": [ - "78ae2b23b766f067aff043971ebd2a3b8940df93", + "rounded-overflow-visible-clip.html": [ + "8bd727e1cfd6fd62674bdeb1fdf08af0b6b0b1c4", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-overflow/rounded-overflow-visible-clip-ref.html", "==" ] ], {} ] ], - "nested-at-outer-boundary-as-fieldset.html": [ - "2c64b59a7787454e3c5dbe5a76a01c1d0206b5c6", + "scrollable-overflow-input-001.html": [ + "1b58803079f8b60b68eb1c57a0c522962e0a8019", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-overflow/scrollable-overflow-input-001-ref.html", "==" ] ], {} ] ], - "nested-at-outer-boundary-as-float.html": [ - "940d39408028a7fcc7b52c05b9802bdc1da71077", + "scrollable-overflow-input-002.html": [ + "3efebf0b90da7eec05fa4df14b4ac6c78e774773", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-overflow/scrollable-overflow-input-002-ref.html", "==" ] ], {} ] ], - "nested-at-outer-boundary-as-legend.html": [ - "8bf04490f261abced014b6dd4f78ae95396da69d", + "scrollbar-empty-001.html": [ + "0b2eebb569929f1ec19ef086d03e63e281fc5900", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/reference/blank.html", "==" ] ], {} ] ], - "nested-floated-multicol-with-monolithic-child.html": [ - "48eb633e01269c3b43c3f5bbe4dd02019977c2ef", + "scrollbar-empty-002.html": [ + "490146cad20d171b3ac3608ba676765bc41ea923", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/reference/blank.html", "==" ] ], {} ] ], - "nested-oofs-in-relative-multicol.html": [ - "2130e72e6fe5275af732c18209f5861180b6984d", + "scrollbar-gutter-002.html": [ + "73c10dc7b3feccdf97ec442c504dad70e6ea0feb", [ null, [ [ - "/css/css-multicol/reference/nested-oofs-in-relative-multicol-ref.html", + "/css/css-overflow/scrollbar-gutter-002-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 1, + 20 + ], + [ + 0, + 50 + ] + ] + ] + ] + } ] ], - "nested-past-fragmentation-line.html": [ - "77f91f4a23d802bdfe1d94072825cf25b5aeb10f", + "scrollbar-gutter-abspos-001.html": [ + "946cd203e7f688871c8451d042b1d08b0da9d396", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-overflow/scrollbar-gutter-abspos-001-ref.html", "==" ] ], {} ] ], - "nested-with-padding-and-spanner.html": [ - "bea27a95781c3dd4abf0d590fd15d64530fd9154", + "scrollbar-gutter-dynamic-001.html": [ + "3dcb32048cd7a1b94eb7cd30be4a381a5f168eab", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-overflow/scrollbar-gutter-dynamic-001-ref.html", "==" ] ], {} ] ], - "nested-with-too-tall-line.html": [ - "67a289ca558af4814906faa4a6b2cb40f25a1860", + "scrollbar-gutter-dynamic-002.html": [ + "a830e6b680b82984cfb1e95831288c5b804e9aaa", [ null, [ [ - "/css/css-multicol/nested-with-too-tall-line-ref.html", + "/css/css-overflow/scrollbar-gutter-dynamic-002-ref.html", "==" ] ], {} ] ], - "no-balancing-after-column-span.html": [ - "8c05ffdd27fd774ff5b9061af8c471bd2bcfa1bf", + "scrollbar-gutter-dynamic-003.html": [ + "f92beaaa477b48b5785e50c397ff818b71fd6f4c", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-overflow/scrollbar-gutter-dynamic-003-ref.html", "==" ] ], {} ] ], - "non-adjacent-spanners-000.html": [ - "7e6ec67e298b38a4bfcec401d32476643fc8194f", + "scrollbar-gutter-dynamic-004.html": [ + "07b66eede73d471f594864022b13e823050379d1", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-overflow/scrollbar-gutter-dynamic-004-ref.html", "==" ] ], {} ] ], - "non-adjacent-spanners-001.html": [ - "5371f2acc9de097d7456d064dfde3c21d2a5783d", + "scrollbar-gutter-fixedpos-001.html": [ + "d7ba106249ec001e0843935c36714292aada742c", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-overflow/scrollbar-gutter-fixedpos-001-ref.html", "==" ] ], {} ] ], - "oof-nested-in-single-column.html": [ - "d888a0692f262a7aa6df424dca07ea6c6f837b66", + "scrollbar-gutter-fixedpos-002.html": [ + "1776b8d735a0f0a02767f4895cbce82bd6e71495", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-overflow/scrollbar-gutter-fixedpos-002-ref.html", "==" ] ], {} ] ], - "orthogonal-writing-mode-shrink-to-fit.html": [ - "b087f56ac6e06d7e11d719976ae66459c97722d7", + "scrollbar-gutter-fixedpos-003.html": [ + "cdffebb5c7b8db6557e901eee7acd651c273fe01", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-overflow/scrollbar-gutter-fixedpos-003-ref.html", "==" ] ], {} ] ], - "orthogonal-writing-mode-spanner.html": [ - "a0f175141dda3117c60c5a72d90cec94388901ae", + "scrollbar-gutter-fixedpos-004.html": [ + "debb28d397f5f0377565f6fd157a8ac89f7cc1b2", [ - "css/css-multicol/orthogonal-writing-mode-spanner.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-overflow/scrollbar-gutter-fixedpos-004-ref.html", "==" ] ], {} ] ], - "overflow-unsplittable-001.html": [ - "2baaaaedf6bc7817e6914441ee51603da5bda392", + "scrollbar-gutter-rtl-002.html": [ + "8d0376defdfc69ecb44fc2134c81573e553db2bb", [ - "css/css-multicol/overflow-unsplittable-001.html", + null, [ [ - "/css/css-multicol/overflow-unsplittable-001-ref.html", + "/css/css-overflow/scrollbar-gutter-rtl-002-ref.html", "==" ] ], {} ] ], - "overflow-unsplittable-002.html": [ - "d8fafafe2c29da33c7d70644dec2c1e3ba8dac2a", + "scrollbar-gutter-vertical-lr-002.html": [ + "598cfdf3664f6ba14df20b73b3383ceb091fe12c", [ - "css/css-multicol/overflow-unsplittable-002.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-overflow/scrollbar-gutter-vertical-lr-002-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 1, + 25 + ], + [ + 0, + 50 + ] + ] + ] + ] + } ] ], - "overflow-unsplittable-003.html": [ - "af9c722868f84230425455ec011c8a087f730a87", + "scrollbar-gutter-vertical-rl-002.html": [ + "398751845cf3d01dc47254e146d9bb1ada18bf40", [ - "css/css-multicol/overflow-unsplittable-003.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-overflow/scrollbar-gutter-vertical-rl-002-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 1, + 1 + ], + [ + 0, + 50 + ] + ] + ] + ] + } ] ], - "page-property-ignored.html": [ - "7e77b846d9a6c237b694723f392079b33aefb358", + "scrollbars-chrome-bug-001.html": [ + "643781bac8079267c21c4c51920c56ab5f6a315a", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-overflow/scrollbars-chrome-bug-001-ref.html", "==" ] ], {} ] ], - "parallel-flow-after-spanner-001.html": [ - "38cc5c10157861af3cbcadc7e57fb7aba63ed7f6", + "select-size-overflow-001.html": [ + "a4cb1b645221fdb58410868c4a35efb152bd3587", [ - "css/css-multicol/parallel-flow-after-spanner-001.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-overflow/select-size-overflow-001-ref.html", "==" ] ], {} ] ], - "parallel-flow-after-spanner-002.html": [ - "f766be584d9217c2092b5bcf7f449b69b753a966", + "text-overflow-ellipsis-001.html": [ + "41c11d581e982c7de2d51d38b18decd99e8a60b3", [ - "css/css-multicol/parallel-flow-after-spanner-002.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-overflow/reference/text-overflow-ellipsis-001-ref.html", "==" ] ], {} ] ], - "relative-child-overflowing-column-gap.html": [ - "4359e7f7a71c1116eb80e0408c190baae59d72a4", + "text-overflow-ellipsis-002.html": [ + "e326967ca378797ec96defc0ecf84c4efd0b2c73", [ null, [ [ - "/css/css-multicol/relative-child-overflowing-column-gap-ref.html", + "/css/css-overflow/reference/text-overflow-ellipsis-002-ref.html", "==" ] ], {} ] ], - "relative-child-overflowing-container.html": [ - "6d00ac82d98aae5e5cc0c9346b590bfa0ea893be", + "text-overflow-ellipsis-003.html": [ + "a2570c558bfce63c60b73cf0fc530357e86642c9", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-overflow/text-overflow-ellipsis-003-ref.html", "==" ] ], {} ] ], - "remove-child-in-strict-containment-also-spanner.html": [ - "8dfbe1ecc4ab4ea108c0923af751073564142e28", + "text-overflow-ellipsis-editing-input.html": [ + "b235ca503a80c42d2083ba78195d9b28e1307c22", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-overflow/text-overflow-ellipsis-editing-input-ref.html", "==" ] ], {} ] ], - "remove-inline-with-block-beside-spanners.html": [ - "c943e549860c002ab96ed8974c739b1c83aee328", + "text-overflow-ellipsis-rtl-001.html": [ + "32284f89c2e5c4db774ba1a73fd3594f49606b06", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-overflow/reference/text-overflow-ellipsis-rtl-001-ref.html", "==" ] ], {} ] ], - "replaced-content-spanner-auto-width.html": [ - "90720852ca39d314c79c79d075dc35e4984ed973", + "text-overflow-ellipsis-vertical-001.html": [ + "58c8f57dcf5ce328c42bc5552c608d83302af8d6", [ - "css/css-multicol/replaced-content-spanner-auto-width.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-overflow/reference/text-overflow-ellipsis-vertical-001-ref.html", "==" ] ], {} ] ], - "resize-in-strict-containment-nested.html": [ - "73f1494a29c56a838a1438ddca37539146e3ec7a", + "text-overflow-ellipsis-vertical-rtl-001.html": [ + "ac621026fdb1f48b9f4d740b48f74ab7df00a79b", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-overflow/reference/text-overflow-ellipsis-vertical-rtl-001-ref.html", "==" ] ], {} ] ], - "resize-multicol-with-fixed-size-children.html": [ - "a3963d06a3d71d50833f6df382e5b330011fe059", + "text-overflow-scroll-001.html": [ + "91c04fda479cccd5deb367bd813403b7c6c107ac", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-overflow/reference/text-overflow-scroll-001-ref.html", "==" ] ], {} ] ], - "resize-with-text-after-paint.html": [ - "9e0b31ddbe5aa0aea3303a1432af9c72a3158d4c", + "text-overflow-scroll-rtl-001.html": [ + "81f88085c908c1d99e7f1d712be9381cec2e9cce", [ - "css/css-multicol/resize-with-text-after-paint.html", + null, [ [ - "/css/css-multicol/resize-with-text-after-paint-ref.html", + "/css/css-overflow/reference/text-overflow-scroll-rtl-001-ref.html", "==" ] ], {} ] ], - "spanner-fragmentation-000.html": [ - "f700235621a5833a53185ef2ab12d31343c3d35c", + "text-overflow-scroll-vertical-lr-001.html": [ + "f555e8644fdde6b3c274d6403067d139ea7d47ba", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-overflow/reference/text-overflow-scroll-vertical-lr-001-ref.html", "==" ] ], {} ] ], - "spanner-fragmentation-001.html": [ - "2cfbd2defa54fac99fd25cf9a1f6d1d8a0c90ce0", + "text-overflow-scroll-vertical-lr-rtl-001.html": [ + "0d3e537fb24c4701e8d48bbfdc36c58aa914abd3", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-overflow/reference/text-overflow-scroll-vertical-lr-rtl-001-ref.html", "==" ] ], {} ] ], - "spanner-fragmentation-002.html": [ - "970a1ecbfe78c8e43f24f6cc245e0e962ea4d2da", + "text-overflow-scroll-vertical-rl-001.html": [ + "3c846e4f82cfb75902ee2e825916b949f5102431", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-overflow/reference/text-overflow-scroll-vertical-lr-001-ref.html", "==" ] ], {} ] ], - "spanner-fragmentation-003.html": [ - "857ccf92ba9dc337f38b2c5fdeda527ce2768a9d", + "text-overflow-scroll-vertical-rl-rtl-001.html": [ + "c21031d49c6342ed6d419e3a3e1c021f3f28a906", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-overflow/reference/text-overflow-scroll-vertical-lr-rtl-001-ref.html", "==" ] ], {} ] - ], - "spanner-fragmentation-004.html": [ - "2199a9340b563f08ddfa3513b295226c618b946b", + ] + }, + "css-paint-api": { + "background-image-alpha.https.html": [ + "c8fdc852579994edf4ea44155a7c2c1c8a6e1f14", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-paint-api/background-image-alpha-ref.html", "==" ] ], {} ] ], - "spanner-fragmentation-005.html": [ - "56e35c74dafc960f2ef49eb97a92cd0ed29f157e", + "background-image-multiple.https.html": [ + "51c928d2a67c74e173a9f815b3c97a8ec8a21059", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-paint-api/background-image-multiple-ref.html", "==" ] ], {} ] ], - "spanner-fragmentation-006.html": [ - "60325b1d17886283446cb99c4b319ad579b4d7f7", + "background-image-tiled.https.html": [ + "11647c9228c8fb2f10bf5e3aeb25967b40478c45", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-paint-api/background-image-tiled-ref.html", "==" ] ], {} ] ], - "spanner-fragmentation-007.html": [ - "ea71c779fea2e02469b7b9d0a579f79f7265870d", + "background-repeat-x.https.html": [ + "2eccfd2a7d0b6e894a66f1afedc6969090f8ad9c", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-paint-api/background-repeat-x-ref.html", "==" ] ], {} ] ], - "spanner-fragmentation-008.html": [ - "d28eafe6555e047cc028e0399dec2b70d9d8dfb4", + "color-custom-property-animation.https.html": [ + "729af95ceb8f206faa4b6e80059e774dbc8af095", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-paint-api/color-custom-property-animation-ref.html", "==" ] ], {} ] ], - "spanner-fragmentation-009.html": [ - "981a42c04a2b5f43fcec304b3ac5b7fe3637733c", + "custom-property-animation-on-main-thread.https.html": [ + "13ccf3fc27372d9494e09a36095140e4dbef236b", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-paint-api/one-custom-property-animation-ref.html", "==" ] ], {} ] ], - "spanner-fragmentation-010.html": [ - "e081d71d917037eb41e2f282237f8fd3a246d0cb", + "dynamic-import.https.html": [ + "62957fcd4b77c799ebb70f788e8c23b5ca0ef677", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-paint-api/dynamic-import-ref.html", "==" ] ], {} ] ], - "spanner-fragmentation-011.html": [ - "b22b2af99b7705bad2d47552483b96061bb04c15", + "geometry-background-image-001.https.html": [ + "50d75a54703c32fdea3b74890b1f8f3a0e7a55f4", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-paint-api/geometry-background-image-001-ref.html", "==" ] ], {} ] ], - "spanner-fragmentation-012.html": [ - "44a24482897505ef303adbe3a71dd49ce7d97fc1", + "geometry-background-image-002.https.html": [ + "06be523c320ba8393cd287d13676dc1a5ecdb211", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-paint-api/geometry-background-image-002-ref.html", "==" ] ], {} ] ], - "spanner-in-child-after-parallel-flow-001.html": [ - "124f0116583fb9d02b53526f8436bd1ae383eab8", + "geometry-background-image-tiled-001.https.html": [ + "dbb4c385ee1a4f9dc2601475625c6caa1c97fd81", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-paint-api/geometry-background-image-tiled-001-ref.html", "==" ] ], {} ] ], - "spanner-in-child-after-parallel-flow-002.html": [ - "3a8bac590b7cb2a0304d6641ba7583b7f67806aa", + "geometry-background-image-tiled-002.https.html": [ + "6f865175ce30656534e1cb7894cfec91baa7660e", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-paint-api/geometry-background-image-tiled-002-ref.html", "==" ] ], {} ] ], - "spanner-in-child-after-parallel-flow-003.html": [ - "8016205bee2ca02fe3a046e76399c6f2c53b369c", + "geometry-background-image-tiled-003.https.html": [ + "a3792caafbf746f9b9cd32ea0cedb950571e1b65", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-paint-api/geometry-background-image-tiled-003-ref.html", "==" ] ], {} ] ], - "spanner-in-child-after-parallel-flow-004.html": [ - "00d4e0d2fb653d534c4969ccb25d4c518624d3b2", + "geometry-border-image-001.https.html": [ + "76813eab30f1e1cb6e156029defaac858df10366", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-paint-api/geometry-border-image-001-ref.html", "==" ] ], {} ] ], - "spanner-in-opacity.html": [ - "78b1ac80e5f504eabb1a85c87d153260cc436d41", + "geometry-border-image-002.https.html": [ + "4c686b9c11c2aa258ef031bdb460a8fbef1a3f40", [ - "css/css-multicol/spanner-in-opacity.html", + null, [ [ - "/css/css-multicol/spanner-in-opacity-ref.html", + "/css/css-paint-api/geometry-border-image-002-ref.html", "==" ] ], {} ] ], - "subpixel-column-rule-width.tentative.html": [ - "5b35c2802c6b3586a8085ca72e78e53e29e05277", + "geometry-border-image-003.https.html": [ + "ce343df2916b87f4945aab410e939b0404c4fa6a", [ null, [ [ - "/css/css-multicol/reference/subpixel-column-rule-width-ref.tentative.html", + "/css/css-paint-api/geometry-border-image-003-ref.html", "==" ] ], {} ] ], - "table": { - "multicol-table-cell-001.xht": [ - "405ace9234022d68bdf1d5153465324bc0f898cf", - [ - null, - [ - [ - "/css/css-multicol/table/multicol-table-cell-001-ref.xht", - "==" - ] - ], - {} - ] - ], - "multicol-table-cell-height-001.xht": [ - "1d3e44ea5f3288aa47896225950bf9e103f6a724", - [ - null, - [ - [ - "/css/css-multicol/table/multicol-table-cell-height-001-ref.xht", - "==" - ] - ], - {} - ] - ], - "multicol-table-cell-height-002.xht": [ - "c66c475f12a1431ed098c9d7b1f001c36732af14", - [ - null, - [ - [ - "/css/css-multicol/table/multicol-table-cell-height-001-ref.xht", - "==" - ] - ], - {} - ] - ], - "multicol-table-cell-vertical-align-001.xht": [ - "b2fc3f833115dcd5cd74341a7916ea1310255c58", - [ - null, - [ - [ - "/css/css-multicol/table/multicol-table-cell-vertical-align-ref.xht", - "==" - ] - ], - {} - ] - ], - "table-cell-as-multicol.html": [ - "9df85f019286f753df6f1051b3e97d4fe9441c97", + "geometry-border-image-004.https.html": [ + "8dd80c717191346275aa44b8a28125d6aff04105", + [ + null, [ - null, [ - [ - "/css/css-multicol/table/table-cell-as-multicol-ref.html", - "==" - ] - ], - {} - ] - ], - "table-cell-content-change-000.html": [ - "27227e96a9053048b24879befe1e9f453d0b40ff", + "/css/css-paint-api/geometry-border-image-004-ref.html", + "==" + ] + ], + {} + ] + ], + "geometry-border-image-005.https.html": [ + "efdd7fdf1b9673657b8a60bfa5851ff694489d87", + [ + null, [ - null, [ - [ - "/css/css-multicol/table/table-cell-content-change-000-ref.html", - "==" - ] - ], - {} - ] - ], - "table-cell-content-change-001.html": [ - "5ecb7ec408787dd8224ae893a2f630cf79baa786", + "/css/css-paint-api/geometry-border-image-005-ref.html", + "==" + ] + ], + {} + ] + ], + "geometry-with-float-size.https.html": [ + "8cd90c84318dff22e3099af7ef042f92f5b96506", + [ + null, [ - null, [ - [ - "/css/css-multicol/table/table-cell-content-change-001-ref.html", - "==" - ] - ], - {} - ] - ], - "table-cell-multicol-nested-001.html": [ - "5cb9eaf5643f5b485dd0ef3dbdc420a55fc43e6f", + "/css/css-paint-api/geometry-with-float-size-ref.html", + "==" + ] + ], + {} + ] + ], + "hidpi": { + "canvas-reset.https.html": [ + "d8073d645255b4f2f9737b5aa89b716556947ac6", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-paint-api/hidpi/canvas-reset-ref.html", "==" ] ], {} ] ], - "table-cell-multicol-nested-002.html": [ - "b250841f92f958dcb4e21a2fd4e1f2ef8c4aab3b", + "canvas-transform.https.html": [ + "6dc57abaf777c15ca3a868c03eee9e3c0559677c", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-paint-api/hidpi/canvas-transform-ref.html", "==" ] ], {} ] ], - "table-cell-multicol-nested-003.html": [ - "f4e52910f1df994dd55ad8150c6551a5836ba64c", + "device-pixel-ratio.https.html": [ + "f9516e5ccf95dd96f32e770bd132cdc9ebe1e6f4", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-paint-api/hidpi/device-pixel-ratio-ref.html", "==" ] ], @@ -219100,2721 +218967,3063 @@ ] ] }, - "with-custom-layout-on-same-element.https.html": [ - "5388b08cde3936088978f09ccb0fd438347421e1", + "invalid-image-constructor-error.https.html": [ + "8facde43f57cec2bcd75efe25fee58d4c70ead62", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-paint-api/invalid-image-constructor-error-ref.html", "==" ] ], {} ] ], - "zero-column-width-layout.html": [ - "aaae421912a18276d4750cfaecbc5245d345ecd8", + "invalid-image-paint-error.https.html": [ + "17c283e35caae2a69e9c748fe19a8dd53b894e35", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-paint-api/invalid-image-paint-error-ref.html", "==" ] ], {} ] - ] - }, - "css-namespaces": { - "prefix-001.xml": [ - "eb717139e1dfd0e5a3ddd49a402f3c25f0333a48", + ], + "invalid-image-pending-script.https.html": [ + "20a61eff41b68e8f756de2f3fe81bd20e736c92c", [ null, [ [ - "/css/css-namespaces/reference/ref-lime-1.xml", + "/css/css-paint-api/invalid-image-pending-script-ref.html", "==" ] ], {} ] ], - "prefix-002.xml": [ - "49ca7c0a9e116803ad7acf970e58bb4d3f92e4b3", + "no-op-animation.https.html": [ + "5898555844a5113b3ccfe4bc1dea36e0c829ffc2", [ null, [ [ - "/css/css-namespaces/reference/ref-lime-1.xml", + "/css/css-paint-api/no-op-animation-ref.html", "==" ] ], {} ] ], - "prefix-003.xml": [ - "2f23ad4c061eba68692d222fbbb3cfea6af9a92b", + "non-registered-property-value.https.html": [ + "774cb4eb2de487e3254dc4fa7b39bd3e3d19f136", [ null, [ [ - "/css/css-namespaces/reference/ref-lime-1-generic.xml", + "/css/css-paint-api/parse-input-arguments-ref.html", "==" ] ], {} ] ], - "prefix-004.xml": [ - "596d4637f9ba79f67abddef0383f197e66fa1090", + "one-custom-property-animation-half-opaque.https.html": [ + "57c70872c73686076990886c139ac8432970f4b4", [ null, [ [ - "/css/css-namespaces/reference/ref-lime-2-generic.xml", + "/css/css-paint-api/one-custom-property-animation-half-opaque-ref.html", "==" ] ], {} ] ], - "prefix-005.xml": [ - "5f7c3cad3d942ca2c81392b3e4ea38866f2da08d", + "one-custom-property-animation.https.html": [ + "25b1cef1882436679ed46a9da10bc403883ea7c5", [ null, [ [ - "/css/css-namespaces/reference/ref-lime-2-generic.xml", + "/css/css-paint-api/one-custom-property-animation-ref.html", "==" ] ], {} ] ], - "prefix-006.xml": [ - "3cc0ab40f3aa5b91df020dddd2a654620af831bd", + "overdraw.https.html": [ + "8d3dc72f9315884c342013d50f3936804a0747fe", [ null, [ [ - "/css/css-namespaces/reference/ref-lime-2.xml", + "/css/css-paint-api/overdraw-ref.html", "==" ] ], {} ] ], - "scope-001.xml": [ - "5271096a96432ca6ebd2b2907b7946efc6bc7c46", + "paint-arguments.https.html": [ + "c08069c2e399eb8fd04f45c6df2c882321ae93d7", [ null, [ [ - "/css/css-namespaces/reference/ref-lime-1.xml", + "/css/css-paint-api/paint-arguments-ref.html", "==" ] ], {} ] ], - "scope-002.xml": [ - "ff5a2fec118407764e92d6d8f34496d1db3fd31d", + "paint-function-arguments-var.https.html": [ + "e06231cb1d7aca8f8caddf4581ebbb388fbfbedb", [ null, [ [ - "/css/css-namespaces/reference/ref-lime-1.xml", + "/css/css-paint-api/paint-function-arguments-ref.html", "==" ] ], {} ] ], - "syntax-001.xml": [ - "83efb665b66cc32409776645b6c53a972e9aebf6", + "paint-function-arguments.https.html": [ + "c613bd159f928e91dac25fba4a83b344843d8ade", [ null, [ [ - "/css/css-namespaces/reference/ref-lime-1-block.xml", + "/css/css-paint-api/paint-function-arguments-ref.html", "==" ] ], {} ] ], - "syntax-002.xml": [ - "30fa8aece35ad7b53ee93bb1c1b11bb02b091e34", + "paint-function-this-value.https.html": [ + "216913899a931e8144d8a647eccb8ba01037f737", [ null, [ [ - "/css/css-namespaces/reference/ref-lime-1-block.xml", + "/css/css-paint-api/parse-input-arguments-ref.html", "==" ] ], {} ] ], - "syntax-003.xml": [ - "1b2eb5f9c08ddb052616646710fb67b28ca018e6", + "paint2d-canvasFilter.tentative.https.html": [ + "a4d50712be510c20729181c23c63d21a4ef572be", [ null, [ [ - "/css/css-namespaces/reference/ref-lime-5.xml", + "/css/css-paint-api/paint2d-canvasFilter-ref.html", "==" ] ], {} ] ], - "syntax-004.xml": [ - "c4ce372b09c403e54253f944580f9e9f84db6c86", + "paint2d-composite.https.html": [ + "d654ba49aad6048f88e6ddb6750554dc22b860fb", [ null, [ [ - "/css/css-namespaces/reference/ref-lime-1.xml", + "/css/css-paint-api/paint2d-composite-ref.html", "==" ] ], {} ] ], - "syntax-005.xml": [ - "9d6b0abe945bda36a86eb23a2524b4d2333769f8", + "paint2d-conicGradient.https.html": [ + "07584c0897973de860217f9d304e56d0ce4eee5e", [ null, [ [ - "/css/css-namespaces/reference/ref-lime-5.xml", + "/css/css-paint-api/paint2d-conicGradient-ref.html", "==" ] ], {} ] ], - "syntax-006.xml": [ - "09ff0d5916ec30c76ca158b8ac917c7d0df2817a", + "paint2d-filter.https.html": [ + "a53fff986c7207656b93f8d671f01f3280c2b24f", [ null, [ [ - "/css/css-namespaces/reference/ref-lime-1.xml", + "/css/css-paint-api/paint2d-filter-ref.html", "==" ] ], {} ] ], - "syntax-007.xml": [ - "0c651f17d7895200d365d33efd639af46604caa1", + "paint2d-gradient.https.html": [ + "f99b7cb901132f3573a083393fad9baa21b97d8f", [ null, [ [ - "/css/css-namespaces/reference/ref-lime-1.xml", + "/css/css-paint-api/paint2d-gradient-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 5 + ], + [ + 3000, + 4000 + ] + ] + ] + ] + } ] ], - "syntax-008.xml": [ - "20284e2247c18821d49bd669c0a748a4c45c506b", + "paint2d-image.https.html": [ + "71074df796d36a1d97a4598b62cdcc04fff390a3", [ null, [ [ - "/css/css-namespaces/reference/ref-lime-2.xml", + "/css/css-paint-api/paint2d-image-ref.html", "==" ] ], {} ] ], - "syntax-009.xml": [ - "edf2f4c9b48951f7ef40e12af32fc724a5032f2f", + "paint2d-paths.https.html": [ + "ae29930dc61dea1cfe4f48faab4ead46cdd7833d", [ null, [ [ - "/css/css-namespaces/reference/ref-lime-1.xml", + "/css/css-paint-api/paint2d-paths-ref.html", "==" ] ], {} ] ], - "syntax-010.xml": [ - "06b280da792d05a8960cf3434b91b4f7a58d06c3", + "paint2d-rects.https.html": [ + "9279aa2a870b81052360a9feadab4e406070bd3d", [ null, [ [ - "/css/css-namespaces/reference/ref-lime-3.xml", + "/css/css-paint-api/paint2d-rects-ref.html", "==" ] ], {} ] ], - "syntax-011.xml": [ - "7d137fc7a546172027f6cb5131b79097e324d7b1", + "paint2d-reset.https.html": [ + "2d5158effbda6b28a5dff63c56341aea1b4c9ac4", [ null, [ [ - "/css/css-namespaces/reference/ref-lime-6.xml", + "/css/css-paint-api/paint2d-reset-ref.html", "==" ] ], {} ] ], - "syntax-012.xml": [ - "43f211b4dd20a3de24b4440c9ef3efb7fee08d6b", + "paint2d-roundRect.https.html": [ + "7849354e87e577692262a85542b3404a544b6d45", [ null, [ [ - "/css/css-namespaces/reference/ref-lime-3.xml", + "/css/css-paint-api/paint2d-roundRect-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 128 + ], + [ + 0, + 200 + ] + ] + ] + ] + } ] ], - "syntax-013.xml": [ - "a7c63e43e092779ec2a0b7084929892cec7cfc99", + "paint2d-shadows.https.html": [ + "124819fa3a68e893439df41f3e410d5526160dd1", [ null, [ [ - "/css/css-namespaces/reference/ref-lime-5.xml", + "/css/css-paint-api/paint2d-shadows-ref.html", "==" ] ], {} ] ], - "syntax-014.xml": [ - "1bdfc265ef603e8dd39436f8a405f16b3bd43bb6", + "paint2d-transform.https.html": [ + "b264d1da5f5038283b1f83635b7a03df20652426", [ null, [ [ - "/css/css-namespaces/reference/ref-lime-3.xml", + "/css/css-paint-api/paint2d-transform-ref.html", "==" ] ], {} ] ], - "syntax-015.xml": [ - "d39eb8b3a48d57062f72c435697824ab1c49f8c0", + "parse-input-arguments-001.https.html": [ + "d18259e4d719847fdc362d5d471557b7888291f2", [ null, [ [ - "/css/css-namespaces/reference/ref-lime-1.xml", + "/css/css-paint-api/parse-input-arguments-ref.html", "==" ] ], {} ] - ] - }, - "css-nesting": { - "conditional-properties.html": [ - "122b8635c1d09458360fbe06f15029919b1e36f4", + ], + "parse-input-arguments-002.https.html": [ + "c5975586e9b10c98e85f937b0550a85fd2110d9a", [ null, [ [ - "/css/css-nesting/conditional-properties-ref.html", + "/css/css-paint-api/parse-input-arguments-ref.html", "==" ] ], {} ] ], - "conditional-rules.html": [ - "55ecc1f9e49bca5524ef95ca6775b625971ec7a1", + "parse-input-arguments-003.https.html": [ + "4d5daa70731c1895e580e85155f44716448a58b1", [ - "css/css-nesting/conditional-rules.html", + null, [ [ - "/css/css-nesting/conditional-rules-ref.html", + "/css/css-paint-api/parse-input-arguments-ref.html", "==" ] ], {} ] ], - "has-nesting.html": [ - "83fe720236fd7d6ccd708e8cbd6fd340bcd43984", + "parse-input-arguments-004.https.html": [ + "bd1e5651af7c4cb01c446ddee7595f2001dc65c5", [ - "css/css-nesting/has-nesting.html", + null, [ [ - "/css/css-nesting/has-nesting-ref.html", + "/css/css-paint-api/parse-input-arguments-ref.html", "==" ] ], {} ] ], - "host-nesting-001.html": [ - "a166efeac5ec27ce69c77a56f7389117265e661e", + "parse-input-arguments-005.https.html": [ + "16744ec355c28c616eabbdcfdc100cbc0708cf5f", [ - "css/css-nesting/host-nesting-001.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-paint-api/parse-input-arguments-ref.html", "==" ] ], {} ] ], - "host-nesting-002.html": [ - "8f087c4128604022f5d5931f44c8f83392949cc5", + "parse-input-arguments-006.https.html": [ + "2fbbec77054698b7c342294fa989cf854e95e497", [ - "css/css-nesting/host-nesting-002.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-paint-api/parse-input-arguments-ref.html", "==" ] ], {} ] ], - "host-nesting-003.html": [ - "f9830b4fb69913bfa1151ae10619206347ede33f", + "parse-input-arguments-007.https.html": [ + "1fc435fc7b0ab7e47d0e2d183682efbf73e34c95", [ - "css/css-nesting/host-nesting-003.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-paint-api/parse-input-arguments-ref.html", "==" ] ], {} ] ], - "host-nesting-004.html": [ - "8b847200755e7f7960877cde467bbd75fc1bb503", + "parse-input-arguments-008.https.html": [ + "9543d2d88423caf1d9dfdfe29c96a0d4ecb8f0f1", [ - "css/css-nesting/host-nesting-004.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-paint-api/parse-input-arguments-ref.html", "==" ] ], {} ] ], - "host-nesting-005.html": [ - "ca5449825aaabf779c3437f9e784120417d26009", + "parse-input-arguments-009.https.html": [ + "41e8411a4a7e2b060142c0d8a792dc2ea9f7e9a8", [ - "css/css-nesting/host-nesting-005.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-paint-api/parse-input-arguments-ref.html", "==" ] ], {} ] ], - "implicit-nesting.html": [ - "0a76dedc5bf2c3f309dcdd1e8a9b0a9f37161e96", + "parse-input-arguments-010.https.html": [ + "44bbab5b7f1a6d781b209f1fe6f654bec5badb71", [ - "css/css-nesting/implicit-nesting.html", + null, [ [ - "/css/css-nesting/implicit-nesting-ref.html", + "/css/css-paint-api/parse-input-arguments-ref.html", "==" ] ], {} ] ], - "nest-containing-forgiving.html": [ - "561b5a3af5e73063acd58203be6dd476346137bc", + "parse-input-arguments-011.https.html": [ + "09f8b0274760dab95f19d381b3aa365596e864ad", [ - "css/css-nesting/nest-containing-forgiving.html", + null, [ [ - "/css/css-nesting/nest-containing-forgiving-ref.html", + "/css/css-paint-api/parse-input-arguments-ref.html", "==" ] ], {} ] ], - "nesting-basic.html": [ - "19ff48e4a29588e48eb19570149ad7525827cd8c", + "parse-input-arguments-012.https.html": [ + "4a05b6fcf12accb0a2c4604529993b3d0030089b", [ - "css/css-nesting/nesting-basic.html", + null, [ [ - "/css/css-nesting/nesting-basic-ref.html", + "/css/css-paint-api/parse-input-arguments-ref.html", "==" ] ], {} ] ], - "nesting-type-selector.html": [ - "1805896b8df462a31828076d7945e306435444a9", + "parse-input-arguments-013.https.html": [ + "ef8bf905c23dc4cd429d536b5b2f8e450cdf9b91", [ - "css/css-nesting/nesting-type-selector.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-paint-api/parse-input-arguments-ref.html", "==" ] ], {} ] ], - "supports-is-consistent.html": [ - "8be0d666d6e3ca4b4306172b7c33897f9d40a9bc", + "parse-input-arguments-014.https.html": [ + "715dab8dc792cc8ffa4854b1adc8f411bb11676a", [ - "css/css-nesting/supports-is-consistent.html", + null, [ [ - "/css/css-nesting/supports-is-consistent-ref.html", + "/css/css-paint-api/parse-input-arguments-ref.html", "==" ] ], {} ] - ] - }, - "css-outline": { - "subpixel-outline-width.tentative.html": [ - "a9fc0c49cf3e4a21c36eace6769058f99afa1458", + ], + "parse-input-arguments-015.https.html": [ + "4c8cfebca439981e4ab6d1af78010756455df2d0", [ null, [ [ - "/css/css-outline/reference/subpixel-outline-width-ref.tentative.html", + "/css/css-paint-api/parse-input-arguments-ref.html", "==" ] ], {} ] - ] - }, - "css-overflow": { - "clip-001.html": [ - "dacb658db6458e67832b454ebd6887a8a04b9349", + ], + "parse-input-arguments-016.https.html": [ + "aa5eda8aaecb5e2085abd70156f15d7227e797eb", [ null, [ [ - "/css/css-overflow/clip-001-ref.html", + "/css/css-paint-api/parse-input-arguments-ref.html", "==" ] ], {} ] ], - "clip-002.html": [ - "cd8b9a3cbeb632c4ce6031cee39a3cbf519b5164", + "parse-input-arguments-017.https.html": [ + "2ba8d996c63d7856ff982b0f12ccb097e8f4893f", [ null, [ [ - "/css/css-overflow/clip-002-ref.html", + "/css/css-paint-api/parse-input-arguments-ref.html", "==" ] ], {} ] ], - "clip-003.html": [ - "0c7e9bfa25489b7be6e4b2ead30cfe615eab7eda", + "parse-input-arguments-018.https.html": [ + "a07bb2d61967b0566ce501dafaa67d26a69438ec", [ null, [ [ - "/css/css-overflow/clip-003-ref.html", + "/css/css-paint-api/parse-input-arguments-018-ref.html", "==" ] ], {} ] ], - "clip-004.html": [ - "30dde4a5e12ac7b918c76b7c6bffa41c01fa7c30", + "parse-input-arguments-019.https.html": [ + "d0a628561d8f87c382feee2307d496ae9cb7f1c7", [ null, [ [ - "/css/css-overflow/clip-004-ref.html", + "/css/css-paint-api/parse-input-arguments-ref.html", "==" ] ], {} ] ], - "clip-005.html": [ - "e55f4b22fcb7e0fd5ebc0fd58221404805209f92", + "parse-input-arguments-020.https.html": [ + "7797eb45fec1123c4f7138ed101fe24cc58599e2", [ null, [ [ - "/css/css-overflow/clip-005-ref.html", + "/css/css-paint-api/parse-input-arguments-ref.html", "==" ] ], {} ] ], - "clip-006.html": [ - "08f755ad75c452fade0381b8ba8f44dffbf0e797", + "parse-input-arguments-021.https.html": [ + "22d6d5adbd009751117f589df8add31dbf384c4f", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-paint-api/parse-input-arguments-ref.html", "==" ] ], {} ] ], - "clip-007.html": [ - "642ea9c3e6f38942ae7d754ca80581f2432107ae", + "parse-input-arguments-022.https.html": [ + "9434807039762e83ec291e2ff49c2862a9a76662", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-paint-api/parse-input-arguments-ref.html", "==" ] ], {} ] ], - "display-flex-svg-overflow-default.html": [ - "5fb69d0e09db2205f8c7679775a6a1ec136cbf86", + "registered-property-interpolation-001.https.html": [ + "5aaed62542f1231ab866b8c245424f8b676b0aeb", [ null, [ [ - "/css/css-overflow/display-flex-svg-overflow-default-ref.html", + "/css/css-paint-api/parse-input-arguments-ref.html", "==" ] ], {} ] ], - "dynamic-visible-to-clip-001.html": [ - "e2011324dda6e00309bf70c2e364fdb2dd1f23ae", + "registered-property-interpolation-002.https.html": [ + "80b2c9339d70772bbf0468e2ff1e14c3ec088279", [ null, [ [ - "/css/css-overflow/clip-001-ref.html", + "/css/css-paint-api/parse-input-arguments-ref.html", "==" ] ], {} ] ], - "float-with-relpos-and-transform.html": [ - "6024b7261750e0c5dc4a681dccee2ab72b83abca", + "registered-property-interpolation-003.https.html": [ + "683ed403fb8b7a519b06c0b2c6d8564cb5830053", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-paint-api/parse-input-arguments-ref.html", "==" ] ], {} ] ], - "incremental-scroll.html": [ - "be1a1cbb74c33394a2ab3afd0a14eb635818fc23", + "registered-property-interpolation-004.https.html": [ + "9602e902eca44eb704a8f3977c9f4416ad7aab7e", [ null, [ [ - "/css/css-overflow/incremental-scroll-ref.html", + "/css/css-paint-api/parse-input-arguments-ref.html", "==" ] ], {} ] ], - "input-scrollable-region-001.html": [ - "96fedfed746e903f06c3f3fd5e13a47bc54466e5", + "registered-property-interpolation-005.https.html": [ + "35d6ccbf3d4bc3d9278a733f7e21ab44734b2d08", [ null, [ [ - "/css/css-overflow/reference/input-scrollable-region-001-ref.html", + "/css/css-paint-api/parse-input-arguments-ref.html", "==" ] ], {} ] ], - "margin-block-end-scroll-area-001.html": [ - "3b8f4ca3f355718d05fe6eeda200bddccb388f57", + "registered-property-interpolation-006.https.html": [ + "a8cfdead0f7b6d4d358c56f4126780452e827e4e", [ null, [ [ - "/css/css-overflow/reference/ref-if-there-is-no-red.xht", + "/css/css-paint-api/parse-input-arguments-ref.html", "==" ] ], {} ] ], - "no-scrollable-overflow-vertical-rl-2.html": [ - "895f9bafc621329b95d1bb2fe086602945991cde", + "registered-property-interpolation-007.https.html": [ + "77b80b51e67ac275aeff76baf93d0c0e8fca6ef8", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-paint-api/parse-input-arguments-ref.html", "==" ] ], {} ] ], - "no-scrollable-overflow-vertical-rl.html": [ - "13385a2685cb8b6c33c94a9b09186336fda9c61a", + "registered-property-interpolation-008.https.html": [ + "1ec166614e13ccda26fd066cd1ed3c5134792e48", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-paint-api/parse-input-arguments-ref.html", "==" ] ], {} ] ], - "overflow-auto-scrollbar-gutter-intrinsic-001.html": [ - "061339b49cd29b0f68d53c5ecce6d2eb03fdaa6c", + "registered-property-interpolation-009.https.html": [ + "e7a5e37c641f060458b128a4bb53e00f2ca63532", [ null, [ [ - "/css/css-overflow/overflow-auto-scrollbar-gutter-intrinsic-001-ref.html", + "/css/css-paint-api/parse-input-arguments-ref.html", "==" ] ], {} ] ], - "overflow-auto-scrollbar-gutter-intrinsic-002.html": [ - "535f2c4d5298df70e2eb417531093bb7fa753cbd", + "registered-property-interpolation-010.https.html": [ + "ee3a0f1b3217677a5a6d7049d0b85939ed271174", [ null, [ [ - "/css/css-overflow/overflow-auto-scrollbar-gutter-intrinsic-002-ref.html", + "/css/css-paint-api/parse-input-arguments-ref.html", "==" ] ], {} ] ], - "overflow-auto-scrollbar-gutter-intrinsic-003.html": [ - "ab247d9ca5a7cac660200cb475feb6b69093e520", + "registered-property-invalidation-001.https.html": [ + "408ba49743c561f3310eb4beba6767eba87b2f07", [ null, [ [ - "/css/css-overflow/overflow-auto-scrollbar-gutter-intrinsic-003-ref.html", + "/css/css-paint-api/parse-input-arguments-ref.html", "==" ] ], {} ] ], - "overflow-body-propagation-001.html": [ - "0998fe68e007d5a46ff11d5ff87fdbad12d1dfe2", + "registered-property-invalidation-002.https.html": [ + "b65bcd5a6eebb71101d222065a6e704b7bbfae53", [ null, [ [ - "/css/css-overflow/reference/overflow-body-propagation-ref.html", + "/css/css-paint-api/parse-input-arguments-ref.html", "==" ] ], {} ] ], - "overflow-body-propagation-002.html": [ - "5991dd52e8b6aec74f55780587f15c2b9399c968", + "registered-property-stylemap.https.html": [ + "3dec98d9102b4adcb09ec6bb496a4c74cb701280", [ null, [ [ - "/css/reference/blank.html", + "/css/css-paint-api/parse-input-arguments-ref.html", "==" ] ], {} ] ], - "overflow-body-propagation-003.html": [ - "a329a8dfe3e44c92368bf0496897f74ccec5a63a", + "registered-property-value-001.https.html": [ + "970e1f3e5ed9ec422d50a9f71d935d5970b3eb12", [ null, [ [ - "/css/reference/blank.html", + "/css/css-paint-api/parse-input-arguments-ref.html", "==" ] ], {} ] ], - "overflow-body-propagation-004.html": [ - "2ed8d2687a33608e0e70884ad2ea59330d2b09e3", + "registered-property-value-002.https.html": [ + "6019151b10575afda778fc27117877d879c8839a", [ null, [ [ - "/css/css-overflow/reference/overflow-body-no-propagation-ref.html", + "/css/css-paint-api/parse-input-arguments-ref.html", "==" ] ], {} ] ], - "overflow-body-propagation-005.html": [ - "e4de5769584611f61ec2fecd99c2324916a3d6ec", + "registered-property-value-003.https.html": [ + "b9c3bf3fd90422d3293dd30e4074c5b1dd66ee52", [ null, [ [ - "/css/css-overflow/reference/overflow-body-propagation-ref.html", + "/css/css-paint-api/parse-input-arguments-ref.html", "==" ] ], {} ] ], - "overflow-body-propagation-006.html": [ - "475815068357ee24cfe9f22f968b0289ca982383", + "registered-property-value-004.https.html": [ + "e04be69f80c27ee8ad83acdb5b4c0c4f23efaa0d", [ null, [ [ - "/css/css-overflow/reference/overflow-body-propagation-ref.html", + "/css/css-paint-api/parse-input-arguments-ref.html", "==" ] ], {} ] ], - "overflow-body-propagation-007.html": [ - "ee6e1a1cc69df09571ab5f49ed3f18d85f7cf3a9", + "registered-property-value-005.https.html": [ + "bfecd0c56b8d538671540b9c229c7df585df1d31", [ null, [ [ - "/css/css-overflow/overflow-body-propagation-007-ref.html", + "/css/css-paint-api/parse-input-arguments-ref.html", "==" ] ], {} ] ], - "overflow-body-propagation-008.html": [ - "7da4a5a7504ab63a8ff27820155e746b7c69b685", + "registered-property-value-006.https.html": [ + "7176b67d4bb8bf99a8bc3bfc559912424b449826", [ null, [ [ - "/css/css-overflow/overflow-body-propagation-008-ref.html", + "/css/css-paint-api/parse-input-arguments-ref.html", "==" ] ], {} ] ], - "overflow-body-propagation-009.html": [ - "33cb079487b9f6ea5db5152e447747bbdf3bdad1", + "registered-property-value-007.https.html": [ + "309fe969b6bd31a9f1c3212d92dedca8203b0942", [ null, [ [ - "/css/css-overflow/overflow-body-propagation-009-ref.html", + "/css/css-paint-api/parse-input-arguments-ref.html", "==" ] ], {} ] ], - "overflow-body-propagation-010.html": [ - "a3fcdaf3c5f1faf6d2675cf59c53a4d81e3f1031", + "registered-property-value-008.https.html": [ + "db72408d77b9c7fe10142b1f83c9e98f38b219f3", [ null, [ [ - "/css/css-overflow/overflow-body-propagation-010-ref.html", + "/css/css-paint-api/parse-input-arguments-ref.html", "==" ] ], {} ] ], - "overflow-body-propagation-011.html": [ - "c8672c2af2e44ef3df5f6ede1f8e582e67a767ab", + "registered-property-value-009.https.html": [ + "a2c2e9a8cd561ef588f98a08031ad50961f59c07", [ null, [ [ - "/css/css-overflow/overflow-body-propagation-011-ref.html", + "/css/css-paint-api/parse-input-arguments-ref.html", "==" ] ], {} ] ], - "overflow-canvas.html": [ - "e9529cb0bc81202c5689a507435ea088028a97fc", + "registered-property-value-010.https.html": [ + "332a22a1b9d9d1c3c0f117c4804e19ff73b2c670", [ null, [ [ - "/css/css-overflow/overflow-canvas-ref.html", + "/css/css-paint-api/parse-input-arguments-ref.html", "==" ] ], {} ] ], - "overflow-clip-cant-scroll.html": [ - "529ef1fad94432769428aad25ebcb27e28124d85", + "registered-property-value-011.https.html": [ + "a596a5d55fd936921edc4661cdd9680950e2eebb", [ null, [ [ - "/css/css-overflow/overflow-clip-cant-scroll-ref.html", + "/css/css-paint-api/parse-input-arguments-ref.html", "==" ] ], {} ] ], - "overflow-clip-content-visual-overflow.html": [ - "8ea8e2c3334e17cfa5c5225df837135e64546f7d", + "registered-property-value-012.https.html": [ + "80c1e6ed37c5b8d4c611d534dbe4e4c6cbaf286c", [ null, [ [ - "/css/css-overflow/overflow-clip-content-visual-overflow-ref.html", + "/css/css-paint-api/parse-input-arguments-ref.html", "==" ] ], {} ] ], - "overflow-clip-margin-001.html": [ - "9a97f94e816011a1d4a26d4f03208022779a4d47", + "registered-property-value-013.https.html": [ + "7af03929d843cf5a201ff33bd3f57b1f790bd2e0", [ null, [ [ - "/css/css-overflow/overflow-clip-margin-001-ref.html", + "/css/css-paint-api/parse-input-arguments-ref.html", "==" ] ], {} ] ], - "overflow-clip-margin-002.html": [ - "5f6d740e0bcff6f1dc56dbc011da0dc107ca2201", + "registered-property-value-014.https.html": [ + "0ca1eca13ed3d4b1e2da165e827799f6ef968925", [ null, [ [ - "/css/css-overflow/overflow-clip-margin-002-ref.html", + "/css/css-paint-api/parse-input-arguments-ref.html", "==" ] ], {} ] ], - "overflow-clip-margin-003.html": [ - "52625e90977f1e3ab87037a0bd4f48343b026fc8", + "registered-property-value-015.https.html": [ + "d7ba26b852c15a2e4df11a071e042b7f1c523aa0", [ null, [ [ - "/css/css-overflow/overflow-clip-margin-003-ref.html", + "/css/css-paint-api/parse-input-arguments-ref.html", "==" ] ], {} ] ], - "overflow-clip-margin-004.html": [ - "aab356f487ec4cd6095d011203eedbe494a1b03a", + "registered-property-value-016.https.html": [ + "609f00f6d0067efb6fdc44a9b54b104375303924", [ null, [ [ - "/css/css-overflow/overflow-clip-margin-004-ref.html", + "/css/css-paint-api/parse-input-arguments-ref.html", "==" ] ], {} ] ], - "overflow-clip-margin-005.html": [ - "1b4b4aa943f1fbfecbd434be1722d7bf0e61c2dd", + "registered-property-value-017.https.html": [ + "609f00f6d0067efb6fdc44a9b54b104375303924", [ null, [ [ - "/css/css-overflow/overflow-clip-margin-005-ref.html", + "/css/css-paint-api/parse-input-arguments-ref.html", "==" ] ], {} ] ], - "overflow-clip-margin-006.html": [ - "493bcee29f65c6890cec5472ac277adaa662a546", + "registered-property-value-018.https.html": [ + "1f9876b6b502484c1821e559fc038d1050718d0b", [ null, [ [ - "/css/css-overflow/overflow-clip-margin-006-ref.html", + "/css/css-paint-api/parse-input-arguments-ref.html", "==" ] ], {} ] ], - "overflow-clip-margin-007.html": [ - "0ae8881b02ea96d7f388f1a919c712933a7d27b3", + "roundrect.https.html": [ + "7fc2b3fc5baea67c71191a264f0928932923cea3", [ null, [ [ - "/css/css-overflow/overflow-clip-margin-007-ref.html", + "/css/css-paint-api/roundrect-ref.html", "==" ] ], {} ] ], - "overflow-clip-margin-008.html": [ - "fabe669a49c69319c9fc689cc9f22af6b6fe41f9", + "setTransform-001.https.html": [ + "9913d3ba6c08296e2b5e6a4479b0780abd2fdf3a", [ null, [ [ - "/css/css-overflow/overflow-clip-margin-008-ref.html", + "/css/css-paint-api/setTransform-ref.html", "==" ] ], {} ] ], - "overflow-clip-margin-009.html": [ - "6ba9a5a3e6073567ff47778030a9fd621fb65049", + "setTransform-002.https.html": [ + "779ebcac7e9d0baf2d2a2d6e8cb5e88745b19151", [ null, [ [ - "/css/css-overflow/overflow-clip-margin-009-ref.html", + "/css/css-paint-api/setTransform-ref.html", "==" ] ], {} ] ], - "overflow-clip-margin-010.html": [ - "e2d1983069f367dc6edc4065de6535b5a2431c13", + "setTransform-003.https.html": [ + "cbdb525eca2418e1a6d96b91cbb273962cd509b3", [ null, [ [ - "/css/css-overflow/overflow-clip-margin-010-ref.html", + "/css/css-paint-api/setTransform-ref.html", "==" ] ], {} ] ], - "overflow-clip-margin-011.html": [ - "5952f5e9ded1f463bc72062d9c9fa0833b165200", + "setTransform-004.https.html": [ + "38a71677ad9623b4c5b538a7b7584e1f820e152a", [ null, [ [ - "/css/css-overflow/overflow-clip-margin-011-ref.html", + "/css/css-paint-api/setTransform-ref.html", "==" ] ], {} ] ], - "overflow-clip-margin-012.html": [ - "a1b0587a4d5f2a9878ab73205fee310631063415", + "style-background-image.https.html": [ + "c36e50271bf84a519eb31bac7c9143168de0c350", [ - "css/css-overflow/overflow-clip-margin-012.html", + null, [ [ - "/css/css-overflow/overflow-clip-margin-007-ref.html", + "/css/css-paint-api/style-background-image-ref.html", "==" ] ], {} ] ], - "overflow-clip-margin-invalidation.html": [ - "d9c87a34a53f17451b0d3ae8c2071971d1df3a94", + "style-before-pseudo.https.html": [ + "cc569a4b8ec042ccdfbe1705a5969a528f79bc3f", [ null, [ [ - "/css/css-overflow/overflow-clip-margin-invalidation-ref.html", + "/css/css-paint-api/style-before-pseudo-ref.html", "==" ] ], {} ] ], - "overflow-clip-margin-mul-column-border-box.html": [ - "a0a1e895a66fa27a4ec95d115d646c0881e8da31", + "style-first-letter-pseudo.https.html": [ + "67891378035ad776b8511b0c198c84c46bb9d981", [ null, [ [ - "/css/css-overflow/overflow-clip-margin-mul-column-border-box-ref.html", + "/css/css-paint-api/style-first-letter-pseudo-ref.html", "==" ] ], {} ] ], - "overflow-clip-margin-mul-column-content-box.html": [ - "26c081e04c8010dadc972dadcc74284a39e7cf8a", + "top-level-await.https.html": [ + "8a0855cc9781a428f7494dd73592a108381c5418", [ null, [ [ - "/css/css-overflow/overflow-clip-margin-mul-column-content-box-ref.html", + "/css/css-paint-api/top-level-await-ref.html", "==" ] ], {} ] ], - "overflow-clip-margin-mul-column-padding-box.html": [ - "e3b3700608b4e1256481477db436d82bb3bf4528", + "two-custom-property-animation.https.html": [ + "6669076e909c273d2c63b34c91a29e443065a248", [ null, [ [ - "/css/css-overflow/overflow-clip-margin-mul-column-padding-box-ref.html", + "/css/css-paint-api/two-custom-property-animation-ref.html", "==" ] ], {} ] ], - "overflow-clip-margin-svg.html": [ - "db66ddbbdb2b8e9281214a2f136b75ac14f988da", + "two-element-custom-property-animation.https.html": [ + "48b0f201d4b188fe9e62c33790cb7e478811b55e", [ null, [ [ - "/css/css-overflow/overflow-clip-margin-svg-ref.html", + "/css/css-paint-api/two-element-custom-property-animation-ref.html", "==" ] ], {} ] ], - "overflow-clip-margin-visual-box-and-value-with-border-radius.html": [ - "06ddb5c1630340d39af7cd2c35146910d5e5bcfc", + "two-element-one-custom-property-animation.https.html": [ + "1090185409d7a683b381ddb74a7d6ee4522fe108", [ null, [ [ - "/css/css-overflow/overflow-clip-margin-visual-box-and-value-with-border-radius-ref.html", + "/css/css-paint-api/two-element-one-custom-property-animation-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 5 - ], - [ - 0, - 100 - ] - ] - ] - ] - } + {} ] ], - "overflow-clip-margin-visual-box-and-value.html": [ - "cfef43481446054671348ce5582438aaa10a7f3a", + "valid-image-after-load.https.html": [ + "c1bf8e85548656b60145c4d54437b10a2f07880e", [ null, [ [ - "/css/css-overflow/overflow-clip-margin-visual-box-and-value-ref.html", + "/css/css-paint-api/valid-image-after-load-ref.html", "==" ] ], {} ] ], - "overflow-clip-margin-visual-box.html": [ - "db2c17fcc39cb057616a137d76b1fd12939d0127", + "valid-image-before-load.https.html": [ + "b58dfa114ea8327dbce264b44c87a4c92d2b3eb9", [ null, [ [ - "/css/css-overflow/overflow-clip-margin-visual-box-ref.html", + "/css/css-paint-api/valid-image-before-load-ref.html", "==" ] ], {} ] - ], - "overflow-clip-rounded-table.html": [ - "5484129e7fdedd49a4c4bea509a00dd94c6ec1c3", + ] + }, + "css-position": { + "backdrop-inherit-rendered.html": [ + "98dfe748ed5f7430610a93b93f40056183e85c5b", [ - "css/css-overflow/overflow-clip-rounded-table.html", + null, [ [ - "/css/css-overflow/overflow-clip-rounded-table-ref.html", + "/css/css-position/backdrop-inherit-rendered-ref.html", "==" ] ], {} ] ], - "overflow-clip-x-visible-y-svg.html": [ - "bd903cdfd68f604064d46a6d50d64d4784b7a0de", + "change-insets-inside-strict-containment-nested.html": [ + "b70ef0e667be3adb46f261da9e407ae8ecdc1299", [ null, [ [ - "/css/css-overflow/overflow-clip-x-visible-y-svg-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "overflow-clip-y-visible-x-svg.html": [ - "8416af30470f0a949625acb632ccb6ec2caa9650", + "containing-block-change-button.html": [ + "a4d20685ce9f25ae1ff655a13b14186b74bc4323", [ null, [ [ - "/css/css-overflow/overflow-clip-y-visible-x-svg-ref.html", + "/css/css-position/containing-block-change-button-ref.html", "==" ] ], {} ] ], - "overflow-ellipsis-dynamic-001.html": [ - "2a9edba9308bf06009d7b9a27f21f1e0f1a231c7", + "containing-block-change-scrollframe.html": [ + "803512cc1a0a824bc54aac289e03e432d863109d", [ null, [ [ - "/css/css-overflow/reference/overflow-ellipsis-dynamic-001-ref.html", + "/css/css-position/containing-block-change-scrollframe-ref.html", "==" ] ], {} ] ], - "overflow-hidden-resize-with-stacking-context-child.html": [ - "8569ac153329c96b5dd27f43fd549163380694e8", + "fixed-z-index-blend.html": [ + "c532a5870f05c29603266cb6a2d2ad285446a627", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-position/fixed-z-index-blend-ref.html", "==" ] ], {} ] ], - "overflow-img-border-radius.html": [ - "cec70d6b942b426864b9a1a2648ebf1f71514c4b", + "hypothetical-box-scroll-parent.html": [ + "e342e8c275043fb851ddd887c1cc670993f89da4", [ null, [ [ - "/css/css-overflow/overflow-img-ref.html", + "/css/css-position/hypothetical-box-scroll-parent-ref.html", "==" ] ], {} ] ], - "overflow-img-display-table.html": [ - "b7e19aa616dc42674e33e399729986d5316ecb13", + "hypothetical-box-scroll-viewport.html": [ + "9ccb822f107f429651c7949995412c9f2a80feea", [ null, [ [ - "/css/css-overflow/overflow-img-display-table-ref.html", + "/css/css-position/hypothetical-box-scroll-viewport-ref.html", "==" ] ], {} ] ], - "overflow-img-object-position.html": [ - "67e6febef275ccd07957db6687bdbefddf02c23b", + "hypothetical-dynamic-change-001.html": [ + "996f439211ccef5a12d3e5e2598973fd5983b80c", [ null, [ [ - "/css/css-overflow/overflow-img-object-position-ref.html", + "/css/css-position/hypothetical-dynamic-change-001-ref.html", "==" ] ], {} ] ], - "overflow-img-scroll-non-replaced.html": [ - "6468c73068894979a8585191eb7358f0ee241880", + "hypothetical-dynamic-change-002.html": [ + "114b48dc7fc9cfdaabe29f305063aaa6b4577cc0", [ null, [ [ - "/css/css-overflow/overflow-img-scroll-non-replaced-ref.html", + "/css/css-position/hypothetical-dynamic-change-001-ref.html", "==" ] ], {} ] ], - "overflow-img-scroll-replaced.html": [ - "0657596d4f19ff91d0074918334eba5de8f00ffe", + "hypothetical-dynamic-change-003.html": [ + "26a27c269550f2ee0afbb6c2bc0219554acd4948", [ null, [ [ - "/css/css-overflow/overflow-img-scroll-replaced-ref.html", + "/css/css-position/hypothetical-dynamic-change-001-ref.html", "==" ] ], {} ] ], - "overflow-img-svg.html": [ - "15285ca3b67451daf3deb7ed17249f1efe279d79", + "invalidate-opacity-negative-z-index.html": [ + "52deaa080617f7d813449be8e1a007c568871842", [ null, [ [ - "/css/css-overflow/overflow-img-svg-ref.html", + "/css/css-position/invalidate-opacity-negative-z-index-ref.html", "==" ] ], {} ] ], - "overflow-img.html": [ - "cd9d30ffaa3318d7c9df288260c104c4cd7f0bbe", - [ - null, - [ + "multicol": { + "static-position": { + "vlr-ltr-ltr-in-multicol.html": [ + "45de6ffb421d9bfa70a0ab4e262b4192f4275dba", [ - "/css/css-overflow/overflow-img-ref.html", - "==" + null, + [ + [ + "/css/css-position/multicol/static-position/vlr-in-multicol-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "overflow-inline-block-with-opacity.html": [ - "20288f8a0d5ecf520d1e4114f7949ebd4b159e0d", - [ - "css/css-overflow/overflow-inline-block-with-opacity.html", - [ + "vlr-ltr-rtl-in-multicol.tentative.html": [ + "9cb6c26e9c43194f912846a7c6b25173fb812b0d", [ - "/css/css-overflow/reference/overflow-inline-block-with-opacity-ref.html", - "==" + null, + [ + [ + "/css/css-position/multicol/static-position/vlr-in-multicol-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "overflow-negative-margin-dynamic.html": [ - "5eec139521adec4a2c6a9687e2e18cd0fbdea181", - [ - null, - [ + "vlr-rtl-ltr-in-multicol.tentative.html": [ + "5a094987ba8f2c1e326b45ced25bf706cfd14e43", [ - "/css/reference/ref-filled-green-100px-square-only.html", - "==" + null, + [ + [ + "/css/css-position/multicol/static-position/vlr-in-multicol-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "overflow-negative-margin.html": [ - "070ab62f7f6717449bf9ca431684111296af347e", - [ - null, - [ + "vlr-rtl-rtl-in-multicol.html": [ + "e7c4088aa4347ac409adeac0af89a7fa3c62ec28", [ - "/css/reference/ref-filled-green-100px-square-only.html", - "==" + null, + [ + [ + "/css/css-position/multicol/static-position/vlr-in-multicol-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "overflow-no-frameset-propagation.html": [ - "687adbe0bced28f73aedde61233159695e23c6cc", - [ - null, - [ + "vrl-ltr-ltr-in-multicol.html": [ + "ae5059ce787c4a1fa1a0d657415642bf2d644ac3", [ - "/common/blank.html", - "==" + null, + [ + [ + "/css/css-position/multicol/static-position/vrl-in-multicol-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "overflow-overlay.html": [ - "0e8ff093b03aa4dd9a78900d6f615590ec510fa7", - [ - "css/css-overflow/overflow-overlay.html", - [ + "vrl-ltr-rtl-in-multicol.tentative.html": [ + "44bf087765d83d63687244ab4e2209a611842844", [ - "/css/css-overflow/overflow-overlay-ref.html", - "==" + null, + [ + [ + "/css/css-position/multicol/static-position/vrl-in-multicol-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "overflow-recalc-001.html": [ - "5d0d6f000937eb85095513a82f28721b52e624c6", - [ - "css/css-overflow/overflow-recalc-001.html", - [ + "vrl-rtl-ltr-in-multicol.tentative.html": [ + "3cf8e6728e952d66a577ba7b0923990949fdedf5", [ - "/css/css-overflow/reference/overflow-recalc-001-ref.html", - "==" + null, + [ + [ + "/css/css-position/multicol/static-position/vrl-in-multicol-ref.html", + "==" + ] + ], + {} ] ], - { - "fuzzy": [ + "vrl-rtl-rtl-in-multicol.html": [ + "a13f1cf3e91eb48821b00163837418ed333315bb", + [ + null, [ - null, [ - [ - 0, - 1 - ], - [ - 0, - 5 - ] + "/css/css-position/multicol/static-position/vrl-in-multicol-ref.html", + "==" ] - ] + ], + {} ] - } + ] + }, + "vlr-ltr-ltr-in-multicols.html": [ + "af20086994cc6b2da31615b024ab042328116656", + [ + null, + [ + [ + "/css/css-position/multicol/vlr-in-multicols-ref.html", + "==" + ] + ], + {} + ] + ], + "vlr-ltr-rtl-in-multicols.tentative.html": [ + "dfb075f6ce98355cca91020ebc81af8fd2b23dd6", + [ + null, + [ + [ + "/css/css-position/multicol/vlr-in-multicols-ref.html", + "==" + ] + ], + {} + ] + ], + "vlr-rtl-ltr-in-multicols.tentative.html": [ + "bbcee5685a9f08888b9caeaf8ef1bad8a3da2962", + [ + null, + [ + [ + "/css/css-position/multicol/vlr-in-multicols-ref.html", + "==" + ] + ], + {} + ] + ], + "vlr-rtl-rtl-in-multicols.html": [ + "fefae97f354dbd6985046629d788e2195355e40e", + [ + null, + [ + [ + "/css/css-position/multicol/vlr-in-multicols-ref.html", + "==" + ] + ], + {} + ] + ], + "vrl-ltr-ltr-in-multicols.html": [ + "1d8390cd7cfe7d1ba554703ba79f2c141f1c275d", + [ + null, + [ + [ + "/css/css-position/multicol/vrl-in-multicols-ref.html", + "==" + ] + ], + {} + ] + ], + "vrl-ltr-rtl-in-multicols.tentative.html": [ + "9806e9c932a28b26bf85d88e4c71afd9bfa93a3e", + [ + null, + [ + [ + "/css/css-position/multicol/vrl-in-multicols-ref.html", + "==" + ] + ], + {} + ] + ], + "vrl-rtl-ltr-in-multicols.tentative.html": [ + "091f678158a45b08908b11d80611b980a8838a3f", + [ + null, + [ + [ + "/css/css-position/multicol/vrl-in-multicols-ref.html", + "==" + ] + ], + {} + ] + ], + "vrl-rtl-rtl-in-multicols.html": [ + "b402d08fae2c28ccadf607eda5f6fbb3bbd6b709", + [ + null, + [ + [ + "/css/css-position/multicol/vrl-in-multicols-ref.html", + "==" + ] + ], + {} + ] ] - ], - "overflow-scroll-big-border-small-content.html": [ - "0b033c02e5d9aaf1d6d981b1500be2b9115dcedd", + }, + "overlay": { + "overlay-transition-backdrop-entry.html": [ + "8737dc58f92ae012abd9b42785450a1c22b4c35b", + [ + null, + [ + [ + "/css/css-position/overlay/green-ref.html", + "==" + ] + ], + {} + ] + ], + "overlay-transition-backdrop.html": [ + "898b6b2e0f0c26e9ed7af687b3471b7e2ade122f", + [ + null, + [ + [ + "/css/css-position/overlay/green-ref.html", + "==" + ] + ], + {} + ] + ], + "overlay-transition-dialog.html": [ + "0e1297cce75dc7ac6ee02d1160531fcbf83c04f9", + [ + null, + [ + [ + "/css/css-position/overlay/overlay-transition-dialog-ref.html", + "==" + ] + ], + {} + ] + ], + "overlay-transition-finished.html": [ + "7e22cb3cf64b9f4840573f35495aa9ed22918f1b", + [ + null, + [ + [ + "/css/css-position/overlay/green-ref.html", + "==" + ] + ], + {} + ] + ], + "overlay-transition-in-rendering.html": [ + "0ada33c33cec13f57fa71a26d8e5bf1017125831", + [ + null, + [ + [ + "/css/css-position/overlay/green-ref.html", + "==" + ] + ], + {} + ] + ], + "overlay-transition-out-rendering.html": [ + "abb01faef7ea994f4abb826ba590031472acbf22", + [ + null, + [ + [ + "/css/css-position/overlay/green-ref.html", + "==" + ] + ], + {} + ] + ] + }, + "position-absolute-center-001.html": [ + "13af3f0e9f7184155b7edf09fb7a7a5580238fb2", [ - "css/css-overflow/overflow-scroll-big-border-small-content.html", + null, [ [ - "/css/css-overflow/overflow-scroll-big-border-small-content-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "overflow-scroll-intrinsic-001.html": [ - "093fd283c77b71e7f73914761cc086e10c12a0d6", + "position-absolute-center-002.html": [ + "825143521a2354839c078350647684467621a9d8", [ null, [ [ - "/css/css-overflow/overflow-scroll-intrinsic-001-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "overflow-scroll-resize-visibility-hidden.html": [ - "e8d0bc91440c7ed810079cc577d1e02689d3b220", + "position-absolute-center-003.html": [ + "187fae6fabd148e665dbd8bbcd8bd4e074717b5b", [ null, [ [ - "/css/css-overflow/overflow-scroll-resize-visibility-hidden-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "overflow-video.html": [ - "1721f8732be2be2711807c88c66cbb7b4dffdec8", + "position-absolute-center-004.html": [ + "b4922ef77e9aeb0d6c0479a01f40df2df9b6a860", [ null, [ [ - "/css/css-overflow/overflow-video-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "paint-containment-svg.html": [ - "bf2939f70901db3cfa9755e1acaa87c67929bc18", + "position-absolute-center-006.html": [ + "cd7fb566264e0fadc8e682098da5e32d7f112a04", [ null, [ [ - "/css/css-overflow/paint-containment-svg-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "rounded-overflow-clip-visible.html": [ - "65e7f055a3907da79701f1f8d68f6527d7c69181", + "position-absolute-center-007.html": [ + "690f3bedf6c9f435095b2da5750f817feb4d8f92", [ - "css/css-overflow/rounded-overflow-clip-visible.html", + null, [ [ - "/css/css-overflow/rounded-overflow-clip-visible-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "rounded-overflow-visible-clip.html": [ - "8bd727e1cfd6fd62674bdeb1fdf08af0b6b0b1c4", + "position-absolute-dynamic-auto-overflow.html": [ + "142af95a34b07f90f6b7d5bdd62b837c96ef849a", [ - "css/css-overflow/rounded-overflow-visible-clip.html", + null, [ [ - "/css/css-overflow/rounded-overflow-visible-clip-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "scrollable-overflow-input-001.html": [ - "1b58803079f8b60b68eb1c57a0c522962e0a8019", + "position-absolute-dynamic-list-marker.html": [ + "2e233e882e9469950385ed71515249023fda5733", [ - "css/css-overflow/scrollable-overflow-input-001.html", + null, [ [ - "/css/css-overflow/scrollable-overflow-input-001-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "scrollable-overflow-input-002.html": [ - "3efebf0b90da7eec05fa4df14b4ac6c78e774773", + "position-absolute-dynamic-overflow-001.html": [ + "c07919b90f61d8446c53b01e249ad65095202c51", [ - "css/css-overflow/scrollable-overflow-input-002.html", + null, [ [ - "/css/css-overflow/scrollable-overflow-input-002-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "scrollbar-empty-001.html": [ - "0b2eebb569929f1ec19ef086d03e63e281fc5900", + "position-absolute-dynamic-overflow-002.html": [ + "0c3d36275b2cfc687cd68dd06469799b31fa6f3b", [ null, [ [ - "/css/reference/blank.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "scrollbar-empty-002.html": [ - "490146cad20d171b3ac3608ba676765bc41ea923", + "position-absolute-dynamic-relayout-001.html": [ + "1bde15551e7952cce210463d156217a51d3f30f3", [ null, [ [ - "/css/reference/blank.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "scrollbar-gutter-002.html": [ - "129eb2c08590c98505e36f63da173d1c8a4bf98d", + "position-absolute-dynamic-relayout-002.html": [ + "4dc2dc0f803dd657c90e62529f7f37f6a1efc108", [ null, [ [ - "/css/css-overflow/scrollbar-gutter-002-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "scrollbar-gutter-abspos-001.html": [ - "946cd203e7f688871c8451d042b1d08b0da9d396", + "position-absolute-dynamic-relayout-003.html": [ + "8b7556b1f339f6e8db00c17d8f9382b3a37a1658", [ null, [ [ - "/css/css-overflow/scrollbar-gutter-abspos-001-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "scrollbar-gutter-dynamic-001.html": [ - "3dcb32048cd7a1b94eb7cd30be4a381a5f168eab", + "position-absolute-dynamic-relayout-004.html": [ + "b94a8cdbfffe2df7f445d7a8d76b0b02ead826ec", [ null, [ [ - "/css/css-overflow/scrollbar-gutter-dynamic-001-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "scrollbar-gutter-dynamic-002.html": [ - "a830e6b680b82984cfb1e95831288c5b804e9aaa", + "position-absolute-dynamic-static-position-flex.html": [ + "37e6fed3515fa56031fea43aa141cedea0ace117", [ - "css/css-overflow/scrollbar-gutter-dynamic-002.html", + null, [ [ - "/css/css-overflow/scrollbar-gutter-dynamic-002-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "scrollbar-gutter-dynamic-003.html": [ - "f92beaaa477b48b5785e50c397ff818b71fd6f4c", + "position-absolute-dynamic-static-position-floats-001.html": [ + "a63df41089e7e75d33ee1f46d458e97c8ebf0fb0", [ - "css/css-overflow/scrollbar-gutter-dynamic-003.html", + null, [ [ - "/css/css-overflow/scrollbar-gutter-dynamic-003-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "scrollbar-gutter-rtl-002.html": [ - "8d0376defdfc69ecb44fc2134c81573e553db2bb", + "position-absolute-dynamic-static-position-floats-002.html": [ + "49e3807224fcf034e51c1734c60cca34ea24d300", [ null, [ [ - "/css/css-overflow/scrollbar-gutter-rtl-002-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "scrollbar-gutter-vertical-lr-002.html": [ - "9e5dcd299eba99e4ab6f077149a841011805c0a5", + "position-absolute-dynamic-static-position-floats-003.html": [ + "fa7cc695c361f5b43300b42f3c5872e89b5c0879", [ null, [ [ - "/css/css-overflow/scrollbar-gutter-vertical-lr-002-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "scrollbar-gutter-vertical-rl-002.html": [ - "d68d4e5d3cba0353da274f9c75c558c0a8324092", + "position-absolute-dynamic-static-position-floats-004.html": [ + "3ccd1462fd1530e29b43b3710b0708d270818a8f", [ null, [ [ - "/css/css-overflow/scrollbar-gutter-vertical-rl-002-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "select-size-overflow-001.html": [ - "a4cb1b645221fdb58410868c4a35efb152bd3587", + "position-absolute-dynamic-static-position-inline.html": [ + "c0f9ac07188f1e49e869ac65f8a075f4827a6cb8", [ null, [ [ - "/css/css-overflow/select-size-overflow-001-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "text-overflow-ellipsis-001.html": [ - "41c11d581e982c7de2d51d38b18decd99e8a60b3", + "position-absolute-dynamic-static-position-margin-001.html": [ + "78b0ced9df2fd0ea299a7cc35e9ca0c360f453fa", [ null, [ [ - "/css/css-overflow/reference/text-overflow-ellipsis-001-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "text-overflow-ellipsis-002.html": [ - "e326967ca378797ec96defc0ecf84c4efd0b2c73", + "position-absolute-dynamic-static-position-margin-002.html": [ + "98b18efcf96d12581583b7a74b1437b41aaa9a2f", [ - "css/css-overflow/text-overflow-ellipsis-002.html", + null, [ [ - "/css/css-overflow/reference/text-overflow-ellipsis-002-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "text-overflow-ellipsis-003.html": [ - "a2570c558bfce63c60b73cf0fc530357e86642c9", + "position-absolute-dynamic-static-position-table-cell.html": [ + "3a28b205f243df84190cec492dabad239b0a3d66", [ null, [ [ - "/css/css-overflow/text-overflow-ellipsis-003-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "text-overflow-ellipsis-editing-input.html": [ - "b235ca503a80c42d2083ba78195d9b28e1307c22", + "position-absolute-dynamic-static-position.html": [ + "35d5f65055d09b377e55a7d3e5dcaf8d3b609a39", [ null, [ [ - "/css/css-overflow/text-overflow-ellipsis-editing-input-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "text-overflow-ellipsis-rtl-001.html": [ - "32284f89c2e5c4db774ba1a73fd3594f49606b06", + "position-absolute-fieldset.html": [ + "b212e627ae13dc32080936512a85d72367d3dad3", [ null, [ [ - "/css/css-overflow/reference/text-overflow-ellipsis-rtl-001-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "text-overflow-ellipsis-vertical-001.html": [ - "58c8f57dcf5ce328c42bc5552c608d83302af8d6", + "position-absolute-fit-content.html": [ + "a84cc043811607df5bb22f06d769701927631512", [ null, [ [ - "/css/css-overflow/reference/text-overflow-ellipsis-vertical-001-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "text-overflow-ellipsis-vertical-rtl-001.html": [ - "ac621026fdb1f48b9f4d740b48f74ab7df00a79b", + "position-absolute-iframe-print-001.sub.html": [ + "853ad9e9fcb6e2e006a5568e4b2a05dd29fb18b3", [ null, [ [ - "/css/css-overflow/reference/text-overflow-ellipsis-vertical-rtl-001-ref.html", + "/css/css-position/position-absolute-iframe-print-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 255 + ], + [ + 0, + 20 + ] + ] + ] + ] + } ] ], - "text-overflow-scroll-001.html": [ - "91c04fda479cccd5deb367bd813403b7c6c107ac", + "position-absolute-iframe-print-002.sub.html": [ + "b47616d1c1f5b184b1597078cfe387dc044a188f", [ null, [ [ - "/css/css-overflow/reference/text-overflow-scroll-001-ref.html", + "/css/css-position/position-absolute-iframe-print-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 255 + ], + [ + 0, + 20 + ] + ] + ] + ] + } ] ], - "text-overflow-scroll-rtl-001.html": [ - "81f88085c908c1d99e7f1d712be9381cec2e9cce", + "position-absolute-in-inline-003.html": [ + "25fb2bb6dafdf282ce3784401337e17171a40dc0", [ null, [ [ - "/css/css-overflow/reference/text-overflow-scroll-rtl-001-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "text-overflow-scroll-vertical-lr-001.html": [ - "f555e8644fdde6b3c274d6403067d139ea7d47ba", + "position-absolute-in-inline-004.html": [ + "d5b2530643ceaf661df64be3c80b374a46e8af8a", [ null, [ [ - "/css/css-overflow/reference/text-overflow-scroll-vertical-lr-001-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "text-overflow-scroll-vertical-lr-rtl-001.html": [ - "0d3e537fb24c4701e8d48bbfdc36c58aa914abd3", + "position-absolute-large-negative-inset.html": [ + "ed17ea91d5e134d097fca9a600ee3f97872a1e00", [ null, [ [ - "/css/css-overflow/reference/text-overflow-scroll-vertical-lr-rtl-001-ref.html", + "/css/css-position/position-absolute-large-negative-inset-ref.html", "==" ] ], {} ] ], - "text-overflow-scroll-vertical-rl-001.html": [ - "3c846e4f82cfb75902ee2e825916b949f5102431", + "position-absolute-multicol-001.html": [ + "08132188cece2b913187e9662d577c319de02cb3", [ null, [ [ - "/css/css-overflow/reference/text-overflow-scroll-vertical-lr-001-ref.html", + "/css/reference/pass_if_pass_below.html", "==" ] ], {} ] ], - "text-overflow-scroll-vertical-rl-rtl-001.html": [ - "c21031d49c6342ed6d419e3a3e1c021f3f28a906", + "position-absolute-replaced-intrinsic-size.tentative.html": [ + "4e2ecb63abbb990ec565012c87160de046bbe7bf", [ null, [ [ - "/css/css-overflow/reference/text-overflow-scroll-vertical-lr-rtl-001-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "webkit-line-clamp-001.html": [ - "bba3d1c49f2dab5055fbceb7313659f463454166", + "position-absolute-replaced-no-intrinsic-size.tentative.html": [ + "5dfa0c75d639e3a0951b58a99756256167c2c999", [ null, [ [ - "/css/css-overflow/reference/webkit-line-clamp-001-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "webkit-line-clamp-002.html": [ - "a04b95994204c1ae2e5b6173719fb9ea41f126c2", + "position-absolute-replaced-with-display-table.html": [ + "9a966b931524a806bc08767905ea43be00f30094", [ null, [ [ - "/css/css-overflow/reference/webkit-line-clamp-001-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "webkit-line-clamp-003.html": [ - "5ebe64675f8c76eb4b59a6a19cd8d79ddf9a75f9", + "position-absolute-root-element-flex.html": [ + "ed1e4903d807276246f2e212c6c2dd10d349739a", [ null, [ [ - "/css/css-overflow/reference/webkit-line-clamp-001-ref.html", + "/css/css-position/position-absolute-root-element-ref.html", "==" ] ], {} ] ], - "webkit-line-clamp-004.html": [ - "d66d0bb62f12339c0f04c773af2e8daa82739548", + "position-absolute-root-element-grid.html": [ + "1a813b3a2301f02f833d1b82fd0abb0a91096eab", [ null, [ [ - "/css/css-overflow/reference/webkit-line-clamp-001-ref.html", + "/css/css-position/position-absolute-root-element-ref.html", "==" ] ], {} ] ], - "webkit-line-clamp-005.html": [ - "73b4b8cfa8b5ba2a111d38f0b334f51b59da81e4", + "position-absolute-semi-replaced-stretch-button.html": [ + "fbcdbec51b63f2dc2eab281797b505e9586d8072", [ null, [ [ - "/css/css-overflow/reference/webkit-line-clamp-005-ref.html", + "/css/css-position/position-absolute-semi-replaced-stretch-button-ref.html", "==" ] ], {} ] ], - "webkit-line-clamp-006.html": [ - "0d2c1f9c6458bf4d4c1f43e9337d0bb306957cdf", + "position-absolute-semi-replaced-stretch-input.html": [ + "6080f63c1019940bc702fae37a43041719863198", [ null, [ [ - "/css/css-overflow/reference/webkit-line-clamp-006-ref.html", + "/css/css-position/position-absolute-semi-replaced-stretch-input-ref.html", "==" ] ], {} ] ], - "webkit-line-clamp-007.html": [ - "95c2db51653c2ef59cf9b1962354d0db1bb48015", + "position-absolute-semi-replaced-stretch-other.html": [ + "21fc2c84e3d65863dc717b3dea3c82ecbc9dd097", [ null, [ [ - "/css/css-overflow/reference/webkit-line-clamp-007-ref.html", + "/css/css-position/position-absolute-semi-replaced-stretch-other-ref.html", "==" ] ], {} ] ], - "webkit-line-clamp-008.html": [ - "471333e666f17ef780054f1cd456106bc689d9f3", + "position-absolute-under-non-containing-stacking-context.html": [ + "444f125767858827f220669a7088fe228626072e", [ null, [ [ - "/css/css-overflow/reference/webkit-line-clamp-008-ref.html", + "/css/css-position/position-absolute-under-non-containing-stacking-context-ref.html", "==" ] ], {} ] ], - "webkit-line-clamp-009.html": [ - "240f6b113b08f6725256f2b3c4d937cc1ac66970", + "position-change.html": [ + "c5b5069eb91596772c3ae403fc512aeca081d457", [ null, [ [ - "/css/css-overflow/reference/webkit-line-clamp-009-ref.html", + "/css/css-position/position-change-ref.html", "==" ] ], {} ] ], - "webkit-line-clamp-010.html": [ - "9ff23a2fe399bcfc2ee2e39a76f2cb504cecfaa7", + "position-fixed-dynamic-transformed-sibling.html": [ + "50c464812df2a4c7fcb8985db82baa49b90759f4", [ null, [ [ - "/css/css-overflow/reference/webkit-line-clamp-010-ref.html", + "/css/css-position/position-fixed-dynamic-transformed-sibling-ref.html", "==" ] ], {} ] ], - "webkit-line-clamp-011.html": [ - "3a0016e9dfdac662089a7898fa30a6edac4c999c", + "position-fixed-root-element-flex.html": [ + "69c95da519b01acc1cd0b8a2f5a33bdf2bbd05fe", [ null, [ [ - "/css/css-overflow/reference/webkit-line-clamp-011-ref.html", + "/css/css-position/position-fixed-root-element-ref.html", "==" ] ], {} ] ], - "webkit-line-clamp-012.html": [ - "d46a7944fafb31945a43333c8707078e99e6e999", + "position-fixed-root-element-grid.html": [ + "4deebf405c8282c6539925994d709d388c688ae5", [ null, [ [ - "/css/css-overflow/reference/webkit-line-clamp-012-ref.html", + "/css/css-position/position-fixed-root-element-ref.html", "==" ] ], {} ] ], - "webkit-line-clamp-013.html": [ - "6db53906acd2f1354d6de0525fb1f5fa906fbbc8", + "position-fixed-scroll-nested-fixed.html": [ + "64586a207ed4b96c8e803f262e98e387f217f63a", [ null, [ [ - "/css/css-overflow/reference/webkit-line-clamp-013-ref.html", + "/css/css-position/position-fixed-scroll-nested-fixed-ref.html", "==" ] ], {} ] ], - "webkit-line-clamp-014.html": [ - "948b247533065dbedc6f6c18e6fba9a2e2715b27", + "position-fixed-scroll-overlap.html": [ + "3bfcf83761f3fec82589374ee4e3daa220a69e2c", [ null, [ [ - "/css/css-overflow/reference/webkit-line-clamp-014-ref.html", + "/css/css-position/position-fixed-scroll-overlap-ref.html", "==" ] ], {} ] ], - "webkit-line-clamp-015.html": [ - "c1817e04e6a8ecc227ab93299d004ac0d93487e3", + "position-relative-001.html": [ + "7ec9e4f767b4548e52e92b358b59e51376dea389", [ null, [ [ - "/css/css-overflow/reference/webkit-line-clamp-015-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "webkit-line-clamp-016.html": [ - "5b2d4593aefed4b36653c09394c1fe5e3565aaf3", + "position-relative-002.html": [ + "7e176be987e7d6cb52bfa79ef58ec1ee93634375", [ null, [ [ - "/css/css-overflow/reference/webkit-line-clamp-016-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "webkit-line-clamp-017.html": [ - "ece4d3123b1b8dda7da814648f2c2e0e862f47bb", + "position-relative-003.html": [ + "7a0040c40b534da6367fcc0d0a94ac3f7650bc50", [ null, [ [ - "/css/css-overflow/reference/webkit-line-clamp-017-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "webkit-line-clamp-018.html": [ - "d381c645467ffa2a95c74191a748a587b8e1c51b", + "position-relative-004.html": [ + "aac4520f728bb833b2ecaaf5c1a03e904e333040", [ null, [ [ - "/css/css-overflow/reference/webkit-line-clamp-018-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "webkit-line-clamp-019.html": [ - "ff6f7e3cf788dbda5a6cb18c4e6f4b4724b578b8", + "position-relative-005.html": [ + "f1ad0846741704285603dff9d719790676f9e9fe", [ null, [ [ - "/css/css-overflow/reference/webkit-line-clamp-019-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "webkit-line-clamp-020.html": [ - "9d875d52dee852ddf360c1edf1ccc2b7c3e638d1", + "position-relative-006.html": [ + "545edc990b9ff89ddcb5bbf09dc0b8c8d8238888", [ null, [ [ - "/css/css-overflow/reference/webkit-line-clamp-020-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "webkit-line-clamp-021.html": [ - "44a196c9ba1b120f99ae4274c1d70bf9544fcefd", + "position-relative-007.html": [ + "2425514f308afebd3ce32ae6e04c57077428c05e", [ null, [ [ - "/css/css-overflow/reference/webkit-line-clamp-021-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "webkit-line-clamp-022.html": [ - "2959a734411283572b854469f84e547a718ed2a5", + "position-relative-008.html": [ + "e2c7c02bbdf803fa73745b08b21db250b49c088b", [ null, [ [ - "/css/css-overflow/reference/webkit-line-clamp-022-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "webkit-line-clamp-023.html": [ - "7f03513baa8eddcebf2a5a1e44fe7062bb5f78cc", + "position-relative-009.html": [ + "5f4093d75a6fd53da63db5d3f4f1a4416fb7183b", [ null, [ [ - "/css/css-overflow/reference/webkit-line-clamp-023-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "webkit-line-clamp-024.html": [ - "6ebf5a8958b9592f3fc3850185cd3ee59867beaa", + "position-relative-010.html": [ + "40697357991e5d7f49f51e45dc2fe357982a2625", [ null, [ [ - "/css/css-overflow/reference/webkit-line-clamp-024-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "webkit-line-clamp-025.html": [ - "67804dedf60db0c75f6da93af3be38398c4cd161", + "position-relative-011.html": [ + "aaf7492a8b6e776a947dee6cc49b5ea04879766a", [ null, [ [ - "/css/css-overflow/reference/webkit-line-clamp-025-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "webkit-line-clamp-026.html": [ - "741384f292770c3a87d0ade0b3745d29c779d988", + "position-relative-012.html": [ + "c2debe1af986647e6e411f5e40aa382c55e5912c", [ null, [ [ - "/css/css-overflow/reference/webkit-line-clamp-026-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "webkit-line-clamp-027.html": [ - "93bfb0f4b46a0f3c1d2ed9d6dede2892475884fb", + "position-relative-013.html": [ + "94888b158f66145b5b3bcecd2131f48c0214c959", [ null, [ [ - "/css/css-overflow/reference/webkit-line-clamp-027-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "webkit-line-clamp-029.html": [ - "fc395d313ea5cd8015f56c9fbfec319a24c69622", + "position-relative-014.html": [ + "88edec0255ccc4dcadb531e17cc7660f04b2901a", [ null, [ [ - "/css/css-overflow/reference/webkit-line-clamp-029-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "webkit-line-clamp-030.html": [ - "5e14a78a583ed0fc3d50ede16f25df68d7f3d05b", + "position-relative-table-caption.html": [ + "20ff62888008d0b344a6dfab01a0dee1aa173347", [ null, [ [ - "/css/css-overflow/reference/webkit-line-clamp-030-ref.html", + "/css/css-position/position-relative-table-top-ref.html", "==" ] ], {} ] ], - "webkit-line-clamp-031.html": [ - "4f8c55301ab26a4ba6c5cedbc50abd2f554bfe89", + "position-relative-table-tbody-left-absolute-child.html": [ + "98e759a8c0a83817b3d691503e807ed5ed549936", [ null, [ [ - "/css/css-overflow/reference/webkit-line-clamp-031-ref.html", + "/css/css-position/position-relative-table-left-ref.html", "==" ] ], {} ] ], - "webkit-line-clamp-032.html": [ - "4d0731379d042b877926d00236e4e3a7d4d3abea", + "position-relative-table-tbody-left.html": [ + "e58de1053883a24dfb3d189966a9814050851f8c", [ null, [ [ - "/css/css-overflow/reference/webkit-line-clamp-032-ref.html", + "/css/css-position/position-relative-table-left-ref.html", "==" ] ], {} ] ], - "webkit-line-clamp-033.html": [ - "261cf5b6b2478698cd50c25f6d6a437e6853e5b1", + "position-relative-table-tbody-top-absolute-child.html": [ + "44daea4c1b29f569d1c438314b48e7bda6298a17", [ null, [ [ - "/css/reference/blank.html", + "/css/css-position/position-relative-table-top-ref.html", "==" ] ], {} ] ], - "webkit-line-clamp-034.html": [ - "e0b31d544c20a0f57486c771b6b4edef9b69625b", + "position-relative-table-tbody-top.html": [ + "a958de82372366720b9c5ad0dbb6f56f5023ad45", [ - "css/css-overflow/webkit-line-clamp-034.html", + null, [ [ - "/css/reference/blank.html", + "/css/css-position/position-relative-table-top-ref.html", "==" ] ], {} ] ], - "webkit-line-clamp-035.html": [ - "5a550e022ecbb87580c3beb77337fccac825adc7", + "position-relative-table-td-left.html": [ + "0b87d62163aa6ffef1a826d6d6f932fdf57697fb", [ - "css/css-overflow/webkit-line-clamp-035.html", + null, [ [ - "/css/css-overflow/reference/webkit-line-clamp-035-ref.html", + "/css/css-position/position-relative-table-left-ref.html", "==" ] ], {} ] ], - "webkit-line-clamp-036.html": [ - "b8d7b194f05dd8dc1189900b399188e0d17391d1", + "position-relative-table-td-top.html": [ + "dfd86798223e656da2cb8e3b7751f47c18c25b75", [ null, [ [ - "/css/css-overflow/reference/webkit-line-clamp-036-ref.html", + "/css/css-position/position-relative-table-top-ref.html", "==" ] ], {} ] ], - "webkit-line-clamp-037.html": [ - "86015228f88e4c622c4bd1c20cb35a20619075c7", + "position-relative-table-tfoot-left-absolute-child.html": [ + "9833aab71c8b2cc5bb4b74b1d40acdd894bcb193", [ null, [ [ - "/css/css-overflow/reference/webkit-line-clamp-037-ref.html", + "/css/css-position/position-relative-table-left-ref.html", "==" ] ], {} ] ], - "webkit-line-clamp-038.html": [ - "b50ae2764c317c809af07649295a2d42ec211517", + "position-relative-table-tfoot-left.html": [ + "5b72f3bec6bb2e9e4f798b776aadae07bb2d50a7", [ - "css/css-overflow/webkit-line-clamp-038.html", + null, [ [ - "/css/css-overflow/reference/webkit-line-clamp-038-ref.html", + "/css/css-position/position-relative-table-left-ref.html", "==" ] ], {} ] ], - "webkit-line-clamp-039.html": [ - "fe9436da53d707f8641e606d5756d3ad2e771b7a", + "position-relative-table-tfoot-top-absolute-child.html": [ + "e98712b22bb62a14709ddcbd1b6ee5a8ba1a273d", [ - "css/css-overflow/webkit-line-clamp-039.html", + null, [ [ - "/css/css-overflow/reference/webkit-line-clamp-039-ref.html", + "/css/css-position/position-relative-table-tfoot-top-ref.html", "==" ] ], {} ] ], - "webkit-line-clamp-040.html": [ - "fa885c8088d5f2d221548ca062fdc0ebb0c83e4b", + "position-relative-table-tfoot-top.html": [ + "c55c04b2fabba75be982ce4267ce39cf801d7180", [ null, [ [ - "/css/css-overflow/reference/webkit-line-clamp-040-ref.html", + "/css/css-position/position-relative-table-tfoot-top-ref.html", "==" ] ], {} ] ], - "webkit-line-clamp-043.html": [ - "54f0ac538daaa351de0e7d870e8bf35f3a6711f8", + "position-relative-table-thead-left-absolute-child.html": [ + "6619455b23cd6f46732fe9cfbc4382e032c0f6fe", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-position/position-relative-table-left-ref.html", "==" ] ], {} ] ], - "webkit-line-clamp-block-in-inline-001.html": [ - "75d1de3bf5bcf5d00d6980de4a70845e9f7ae8e4", + "position-relative-table-thead-left.html": [ + "d604bc11a31c76987c16f8dec2d13dea7463915b", [ null, [ [ - "/css/css-overflow/reference/webkit-line-clamp-block-in-inline-001-ref.html", + "/css/css-position/position-relative-table-left-ref.html", "==" ] ], {} ] ], - "webkit-line-clamp-dynamic-001.html": [ - "fc4f2f9e4db6b55d124dd774e0563e2625ca3288", + "position-relative-table-thead-top-absolute-child.html": [ + "c2e2bf85a597dd2772087fa60bdec9e2d9ca2c5c", [ null, [ [ - "/css/css-overflow/reference/webkit-line-clamp-dynamic-001-ref.html", + "/css/css-position/position-relative-table-top-ref.html", "==" ] ], {} ] ], - "webkit-line-clamp-with-line-height.tentative.html": [ - "a82635f986b60ff4853785dc40b7bbe985af4eb1", + "position-relative-table-thead-top.html": [ + "ae481313dbd969e402a375d4f7822198221ac06a", [ null, [ [ - "/css/css-overflow/reference/webkit-line-clamp-with-line-height-ref.html", + "/css/css-position/position-relative-table-top-ref.html", "==" ] ], {} ] - ] - }, - "css-paint-api": { - "background-image-alpha.https.html": [ - "c8fdc852579994edf4ea44155a7c2c1c8a6e1f14", + ], + "position-relative-table-tr-left-absolute-child.html": [ + "ef812e4323d9d7a4a99dec1826b880f4930020f6", [ null, [ [ - "/css/css-paint-api/background-image-alpha-ref.html", + "/css/css-position/position-relative-table-left-ref.html", "==" ] ], {} ] ], - "background-image-multiple.https.html": [ - "51c928d2a67c74e173a9f815b3c97a8ec8a21059", + "position-relative-table-tr-left.html": [ + "004b284cb755db03d47f3ec3d42bdcad1902cc36", [ null, [ [ - "/css/css-paint-api/background-image-multiple-ref.html", + "/css/css-position/position-relative-table-left-ref.html", "==" ] ], {} ] ], - "background-image-tiled.https.html": [ - "11647c9228c8fb2f10bf5e3aeb25967b40478c45", + "position-relative-table-tr-top-absolute-child.html": [ + "855080adc8ba580516eece5ce24f0f0cca01ff83", [ null, [ [ - "/css/css-paint-api/background-image-tiled-ref.html", + "/css/css-position/position-relative-table-top-ref.html", "==" ] ], {} ] ], - "background-repeat-x.https.html": [ - "2eccfd2a7d0b6e894a66f1afedc6969090f8ad9c", + "position-relative-table-tr-top.html": [ + "92f95d44220f8892b202dfba4da25cd712750705", [ null, [ [ - "/css/css-paint-api/background-repeat-x-ref.html", + "/css/css-position/position-relative-table-top-ref.html", "==" ] ], {} ] ], - "color-custom-property-animation.https.html": [ - "729af95ceb8f206faa4b6e80059e774dbc8af095", - [ - null, + "static-position": { + "htb-ltr-ltr.html": [ + "5a19c0e9ccd5fa67e1df49e85da74a3a09d2fa15", [ + null, [ - "/css/css-paint-api/color-custom-property-animation-ref.html", - "==" - ] - ], - {} - ] - ], - "custom-property-animation-on-main-thread.https.html": [ - "13ccf3fc27372d9494e09a36095140e4dbef236b", - [ - null, + [ + "/css/css-position/static-position/htb-ref.html", + "==" + ] + ], + {} + ] + ], + "htb-ltr-rtl.tentative.html": [ + "de6ef1c6c1ccd2644c379300672164e40a0f83d2", [ + null, [ - "/css/css-paint-api/one-custom-property-animation-ref.html", - "==" - ] - ], - {} - ] - ], - "dynamic-import.https.html": [ - "62957fcd4b77c799ebb70f788e8c23b5ca0ef677", - [ - null, + [ + "/css/css-position/static-position/htb-ref.html", + "==" + ] + ], + {} + ] + ], + "htb-rtl-ltr.tentative.html": [ + "c3a3155a105b42effa76d81a2a8c13afa7930df9", [ + null, [ - "/css/css-paint-api/dynamic-import-ref.html", - "==" - ] - ], - {} - ] - ], - "geometry-background-image-001.https.html": [ - "50d75a54703c32fdea3b74890b1f8f3a0e7a55f4", - [ - null, + [ + "/css/css-position/static-position/htb-ref.html", + "==" + ] + ], + {} + ] + ], + "htb-rtl-rtl.html": [ + "03ea18770a47a773fccbf47e57587c00d1a7fd5a", [ + null, [ - "/css/css-paint-api/geometry-background-image-001-ref.html", - "==" - ] - ], - {} - ] - ], - "geometry-background-image-002.https.html": [ - "06be523c320ba8393cd287d13676dc1a5ecdb211", - [ - null, + [ + "/css/css-position/static-position/htb-ref.html", + "==" + ] + ], + {} + ] + ], + "inline-level-absolute-in-block-level-context-001.html": [ + "d6f8ed4e39ae3627cf91120b9d7679126fdaf016", [ + null, [ - "/css/css-paint-api/geometry-background-image-002-ref.html", - "==" - ] - ], - {} - ] - ], - "geometry-background-image-tiled-001.https.html": [ - "dbb4c385ee1a4f9dc2601475625c6caa1c97fd81", - [ - null, + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "inline-level-absolute-in-block-level-context-002.html": [ + "9b0f5c2beaf49036c4f669112a137c5ada66b610", [ + null, [ - "/css/css-paint-api/geometry-background-image-tiled-001-ref.html", - "==" - ] - ], - {} - ] - ], - "geometry-background-image-tiled-002.https.html": [ - "6f865175ce30656534e1cb7894cfec91baa7660e", - [ - null, + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "inline-level-absolute-in-block-level-context-003.html": [ + "90db2d4f80d069c17cc490280e9ab82db8b61d9d", [ + null, [ - "/css/css-paint-api/geometry-background-image-tiled-002-ref.html", - "==" - ] - ], - {} - ] - ], - "geometry-background-image-tiled-003.https.html": [ - "a3792caafbf746f9b9cd32ea0cedb950571e1b65", - [ - null, + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "inline-level-absolute-in-block-level-context-004.html": [ + "a6b13b26c8f4972800a1473ad24f0e2f32636a73", [ + null, [ - "/css/css-paint-api/geometry-background-image-tiled-003-ref.html", - "==" - ] - ], - {} - ] - ], - "geometry-border-image-001.https.html": [ - "76813eab30f1e1cb6e156029defaac858df10366", - [ - null, + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "inline-level-absolute-in-block-level-context-005.html": [ + "481c83a757d43b267da8475750312214daacff3d", [ + null, [ - "/css/css-paint-api/geometry-border-image-001-ref.html", - "==" - ] - ], - {} - ] - ], - "geometry-border-image-002.https.html": [ - "4c686b9c11c2aa258ef031bdb460a8fbef1a3f40", - [ - null, + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "inline-level-absolute-in-block-level-context-006.html": [ + "de5322f81998d2705405906d2946fce352baea11", [ + null, [ - "/css/css-paint-api/geometry-border-image-002-ref.html", - "==" - ] - ], - {} - ] - ], - "geometry-border-image-003.https.html": [ - "ce343df2916b87f4945aab410e939b0404c4fa6a", - [ - null, + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "inline-level-absolute-in-block-level-context-007.html": [ + "1168b1d2287c3e0797d64fcaeda5582a3976d475", [ + null, [ - "/css/css-paint-api/geometry-border-image-003-ref.html", - "==" - ] - ], - {} - ] - ], - "geometry-border-image-004.https.html": [ - "8dd80c717191346275aa44b8a28125d6aff04105", - [ - null, + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "inline-level-absolute-in-block-level-context-008.html": [ + "e10a7e191d3548b95b46d289ab57af6324581134", [ + null, [ - "/css/css-paint-api/geometry-border-image-004-ref.html", - "==" - ] - ], - {} - ] - ], - "geometry-border-image-005.https.html": [ - "efdd7fdf1b9673657b8a60bfa5851ff694489d87", - [ - null, + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "inline-level-absolute-in-block-level-context-009.html": [ + "86102fa1d9955594a0e7a49d323d118f729131d9", [ + null, [ - "/css/css-paint-api/geometry-border-image-005-ref.html", - "==" - ] - ], - {} - ] - ], - "geometry-with-float-size.https.html": [ - "8cd90c84318dff22e3099af7ef042f92f5b96506", - [ - null, + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "inline-level-absolute-in-block-level-context-010.html": [ + "95d43b9cfb2b1719bc5f8015e3773a9971d483db", [ + null, [ - "/css/css-paint-api/geometry-with-float-size-ref.html", - "==" - ] - ], - {} - ] - ], - "hidpi": { - "canvas-reset.https.html": [ - "d8073d645255b4f2f9737b5aa89b716556947ac6", + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "inline-level-absolute-in-block-level-context-011.html": [ + "375566388ef6c88833e25241810c4e886aa5f3de", [ - "css/css-paint-api/hidpi/canvas-reset.https.html", + null, [ [ - "/css/css-paint-api/hidpi/canvas-reset-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "canvas-transform.https.html": [ - "6dc57abaf777c15ca3a868c03eee9e3c0559677c", + "inline-level-absolute-in-block-level-context-012.html": [ + "1972317822b945b2a70712884ddb2d39b924420e", [ null, [ [ - "/css/css-paint-api/hidpi/canvas-transform-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "device-pixel-ratio.https.html": [ - "f9516e5ccf95dd96f32e770bd132cdc9ebe1e6f4", + "inline-level-absolute-in-block-level-context-013.html": [ + "59541dd679e1c8ea192662f85bb19b85df3b30d5", [ null, [ [ - "/css/css-paint-api/hidpi/device-pixel-ratio-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "inline-level-absolute-in-block-level-context-014.html": [ + "69416c1cd7988f5842f5074b143379c7b90163c2", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "vlr-ltr-ltr.html": [ + "992bb720f4ce34f8aa7f56391f8734ec3c392169", + [ + null, + [ + [ + "/css/css-position/static-position/vlr-ref.html", + "==" + ] + ], + {} + ] + ], + "vlr-ltr-rtl.tentative.html": [ + "9491fb89a2286c318d496d9b2a978016b499249b", + [ + null, + [ + [ + "/css/css-position/static-position/vlr-ref.html", + "==" + ] + ], + {} + ] + ], + "vlr-rtl-ltr.tentative.html": [ + "e334ff74b8f9bfce07d6fdaba0b3c1e678ddf6fa", + [ + null, + [ + [ + "/css/css-position/static-position/vlr-ref.html", + "==" + ] + ], + {} + ] + ], + "vlr-rtl-rtl.html": [ + "45c8aa3c2675dbf35c2b49d4aad15edb297d201b", + [ + null, + [ + [ + "/css/css-position/static-position/vlr-ref.html", + "==" + ] + ], + {} + ] + ], + "vrl-ltr-ltr.html": [ + "9e3c1306abf91be191e3df2b48acc971d179c4cd", + [ + null, + [ + [ + "/css/css-position/static-position/vrl-ref.html", + "==" + ] + ], + {} + ] + ], + "vrl-ltr-rtl.tentative.html": [ + "a0923f3b48bb5db0cacb9299d24422d13a2118ab", + [ + null, + [ + [ + "/css/css-position/static-position/vrl-ref.html", + "==" + ] + ], + {} + ] + ], + "vrl-rtl-ltr.tentative.html": [ + "29ae6a5f98f40504b56efcf15765dc76cdfec15a", + [ + null, + [ + [ + "/css/css-position/static-position/vrl-ref.html", + "==" + ] + ], + {} + ] + ], + "vrl-rtl-rtl.html": [ + "cfb411871897677f16ad7f01ea7a1f8139850b6d", + [ + null, + [ + [ + "/css/css-position/static-position/vrl-ref.html", "==" ] ], @@ -221822,1651 +222031,2391 @@ ] ] }, - "invalid-image-constructor-error.https.html": [ - "8facde43f57cec2bcd75efe25fee58d4c70ead62", - [ - null, + "sticky": { + "position-sticky-bottom-002.html": [ + "980de2e651b7ab5ed8ed06dadfcd9f89a138ba3d", [ + null, [ - "/css/css-paint-api/invalid-image-constructor-error-ref.html", - "==" - ] - ], - {} - ] - ], - "invalid-image-paint-error.https.html": [ - "17c283e35caae2a69e9c748fe19a8dd53b894e35", - [ - null, + [ + "/css/css-position/sticky/reference/position-sticky-bottom-002-ref.html", + "==" + ] + ], + {} + ] + ], + "position-sticky-bottom-003.html": [ + "649dfc9d364817bcca8ade55c3612c3b3e0bf7e5", [ + null, [ - "/css/css-paint-api/invalid-image-paint-error-ref.html", - "==" - ] - ], - {} - ] - ], - "invalid-image-pending-script.https.html": [ - "20a61eff41b68e8f756de2f3fe81bd20e736c92c", - [ - null, + [ + "/css/css-position/sticky/reference/position-sticky-bottom-002-ref.html", + "==" + ] + ], + {} + ] + ], + "position-sticky-change-top.html": [ + "6a327ccd567818c2267d808a890796724384726e", [ + null, [ - "/css/css-paint-api/invalid-image-pending-script-ref.html", - "==" - ] - ], - {} - ] - ], - "no-op-animation.https.html": [ - "5898555844a5113b3ccfe4bc1dea36e0c829ffc2", - [ - "css/css-paint-api/no-op-animation.https.html", + [ + "/css/css-position/sticky/position-sticky-change-top-ref.html", + "==" + ] + ], + {} + ] + ], + "position-sticky-child-multicolumn.html": [ + "14bb695f1a427e369bd9a8e9c6f761286ce195fd", [ + null, [ - "/css/css-paint-api/no-op-animation-ref.html", - "==" - ] - ], - {} - ] - ], - "non-registered-property-value.https.html": [ - "774cb4eb2de487e3254dc4fa7b39bd3e3d19f136", - [ - null, + [ + "/css/css-position/sticky/position-sticky-child-multicolumn-ref.html", + "==" + ] + ], + {} + ] + ], + "position-sticky-contained-by-display-table.html": [ + "e9c016e9387204d64779c98bd695097e69d62568", [ + null, [ - "/css/css-paint-api/parse-input-arguments-ref.html", - "==" - ] - ], - {} - ] - ], - "one-custom-property-animation-half-opaque.https.html": [ - "57c70872c73686076990886c139ac8432970f4b4", - [ - "css/css-paint-api/one-custom-property-animation-half-opaque.https.html", + [ + "/css/css-position/sticky/position-sticky-contained-by-display-table-ref.html", + "==" + ] + ], + {} + ] + ], + "position-sticky-escape-scroller-001.html": [ + "dd58327388fd903fc47fffd60a97a8a352118937", [ + null, [ - "/css/css-paint-api/one-custom-property-animation-half-opaque-ref.html", - "==" - ] - ], - {} - ] - ], - "one-custom-property-animation.https.html": [ - "25b1cef1882436679ed46a9da10bc403883ea7c5", - [ - null, + [ + "/css/css-position/sticky/position-sticky-escape-scroller-001-ref.html", + "==" + ] + ], + {} + ] + ], + "position-sticky-escape-scroller-002.html": [ + "225012b9ec8935e89f05db2627b50e75961f45d2", [ + null, [ - "/css/css-paint-api/one-custom-property-animation-ref.html", - "==" - ] - ], - {} + [ + "/css/css-position/sticky/position-sticky-escape-scroller-002-ref.html", + "==" + ] + ], + {} + ] + ], + "position-sticky-escape-scroller-003.html": [ + "434b2797055f42ebe3b73a0823060cf055e3c30b", + [ + null, + [ + [ + "/css/css-position/sticky/position-sticky-escape-scroller-001-ref.html", + "==" + ] + ], + {} + ] + ], + "position-sticky-escape-scroller-004.html": [ + "ed14d62ac44ed3d13efeb9d433ff3ffca34987a3", + [ + null, + [ + [ + "/css/css-position/sticky/position-sticky-escape-scroller-004-ref.html", + "==" + ] + ], + {} + ] + ], + "position-sticky-fixed-ancestor-002.html": [ + "dc3c383ea5e9c89498898ce9f53af273dbfbc51d", + [ + null, + [ + [ + "/css/css-position/sticky/reference/position-sticky-fixed-ancestor-002-ref.html", + "==" + ] + ], + {} + ] + ], + "position-sticky-fixed-ancestor-003.html": [ + "382112cae42f1391d7bb4f55c413f29f04b64c49", + [ + null, + [ + [ + "/css/css-position/sticky/reference/position-sticky-fixed-ancestor-002-ref.html", + "==" + ] + ], + {} + ] + ], + "position-sticky-fixed-ancestor-iframe.html": [ + "e50f5c829b6bcee84385083648bca5cc145e1e37", + [ + null, + [ + [ + "/css/css-position/sticky/position-sticky-fixed-ancestor-iframe-ref.html", + "==" + ] + ], + {} + ] + ], + "position-sticky-fixed-ancestor.html": [ + "52760992b111fb41d849cad05fb761a328548f6b", + [ + null, + [ + [ + "/css/css-position/sticky/position-sticky-fixed-ancestor-ref.html", + "==" + ] + ], + {} + ] + ], + "position-sticky-flex-item-001.html": [ + "1b1f9d0afbf34f22da16a9fed3414d2e8373af1b", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "position-sticky-flex-item-002.html": [ + "5b4c81df673dba37c1410a36dca8fc8785a825e1", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "position-sticky-flex-item-003.html": [ + "50e0e2598006797770de5fee6f238d6c2c8e8ac5", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "position-sticky-flex-item-004.html": [ + "68b933a319d0eb6110880a697a846473e125ae9d", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "position-sticky-flexbox.html": [ + "951de1e71c98f3a0e8ff371c4c804988aea4cc76", + [ + null, + [ + [ + "/css/css-position/sticky/position-sticky-flexbox-ref.html", + "==" + ] + ], + {} + ] + ], + "position-sticky-fractional-offset.html": [ + "79c29f4e87bf7c14572e51757c258945eb0c8c6e", + [ + null, + [ + [ + "/css/css-position/sticky/position-sticky-fractional-offset-ref.html", + "==" + ] + ], + {} + ] + ], + "position-sticky-grid.html": [ + "607e7c2936246c192e04c8d3673321c0a54cda3c", + [ + null, + [ + [ + "/css/css-position/sticky/position-sticky-grid-ref.html", + "==" + ] + ], + {} + ] + ], + "position-sticky-hyperlink.html": [ + "cc8de9a822cd786c9703ebe3e2a394f26b81b54c", + [ + null, + [ + [ + "/css/css-position/sticky/position-sticky-hyperlink-ref.html", + "==" + ] + ], + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 5 + ], + [ + 0, + 80 + ] + ] + ] + ] + } + ] + ], + "position-sticky-in-fixed-container.html": [ + "75c2d67259e39513e6fbc7e5daa8d3b227a8ab9c", + [ + null, + [ + [ + "/css/css-position/sticky/position-sticky-in-fixed-container-ref.html", + "==" + ] + ], + { + "fuzzy": [ + [ + null, + [ + [ + 1, + 1 + ], + [ + 0, + 50 + ] + ] + ] + ] + } + ] + ], + "position-sticky-inline.html": [ + "6bd49befe5a66f66ea554d066ae52e5b7bb40ab9", + [ + null, + [ + [ + "/css/css-position/sticky/position-sticky-inline-ref.html", + "==" + ] + ], + {} + ] + ], + "position-sticky-large-top-2.tentative.html": [ + "1cf9c0dfb43b6bfd71c1496a5d7b3b9428d0c086", + [ + null, + [ + [ + "/css/css-position/sticky/position-sticky-large-top-2-ref.html", + "==" + ] + ], + {} + ] + ], + "position-sticky-large-top.tentative.html": [ + "b00a0d139683717b57633e38bb9ce7f033833b65", + [ + null, + [ + [ + "/css/css-position/sticky/position-sticky-large-top-ref.html", + "==" + ] + ], + {} + ] + ], + "position-sticky-left-002.html": [ + "868b58adb0430f03293edf7810d1b9245f010382", + [ + null, + [ + [ + "/css/css-position/sticky/reference/position-sticky-left-002-ref.html", + "==" + ] + ], + {} + ] + ], + "position-sticky-left-003.html": [ + "3114981a69a250f94934b77cc4792a605f9a44cd", + [ + null, + [ + [ + "/css/css-position/sticky/reference/position-sticky-left-002-ref.html", + "==" + ] + ], + {} + ] + ], + "position-sticky-left-004.html": [ + "79188e84b0da0d25ded2630282bc62f72cc4a808", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "position-sticky-left-005.html": [ + "b029e593635152f36878b53e9462c479351eedeb", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "position-sticky-left-006.html": [ + "63fa1ebfd89c6a164d524b0af8f406ea1ee7b938", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "position-sticky-margins-002.html": [ + "29833ccae083513df51016269bab7af7cc907626", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "position-sticky-margins-003.html": [ + "2bc1a3ef255db103225f1e66222b2e2a57c2bf97", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "position-sticky-nested-inline.html": [ + "92eda147bd4e54cc70081eb36eb8bb9ae33f19c2", + [ + null, + [ + [ + "/css/css-position/sticky/position-sticky-nested-inline-ref.html", + "==" + ] + ], + {} + ] + ], + "position-sticky-nested-table.html": [ + "b2a8bf1e87bb3f894636dd40461a0255e19f0d1c", + [ + null, + [ + [ + "/css/css-position/sticky/position-sticky-nested-table-ref.html", + "==" + ] + ], + {} + ] + ], + "position-sticky-nested-thead-th.html": [ + "51f58b75913e132217c1b0e91b00fd9f428eba60", + [ + null, + [ + [ + "/css/css-position/sticky/position-sticky-nested-table-ref.html", + "==" + ] + ], + {} + ] + ], + "position-sticky-overflow-clip-container.html": [ + "63356349afecd3f2b25e080186ba509eb3980cab", + [ + null, + [ + [ + "/css/css-position/sticky/position-sticky-overflow-clip-container-ref.html", + "==" + ] + ], + {} + ] + ], + "position-sticky-padding-001.html": [ + "6bd4952c28fef635144b855db08efbf950f67a1c", + [ + null, + [ + [ + "/css/css-position/sticky/position-sticky-padding-001-ref.html", + "==" + ] + ], + {} + ] + ], + "position-sticky-padding-002.html": [ + "972288fd3a840945ef7ac3e7cf7e33aa3fdda986", + [ + null, + [ + [ + "/css/css-position/sticky/position-sticky-padding-002-ref.html", + "==" + ] + ], + {} + ] + ], + "position-sticky-rendering.html": [ + "a4e03c59d8faba77884e4a290dd188044dcb23a6", + [ + null, + [ + [ + "/css/css-position/sticky/position-sticky-rendering-ref.html", + "==" + ] + ], + {} + ] + ], + "position-sticky-right-002.html": [ + "e83189a498ecf6974347564b4a0ac2a67d4c304a", + [ + null, + [ + [ + "/css/css-position/sticky/reference/position-sticky-right-002-ref.html", + "==" + ] + ], + {} + ] + ], + "position-sticky-right-003.html": [ + "ea712a99daa6fcd457ee56c2b180ef82761ff082", + [ + null, + [ + [ + "/css/css-position/sticky/reference/position-sticky-right-002-ref.html", + "==" + ] + ], + {} + ] + ], + "position-sticky-scroll-reposition.html": [ + "b75275c64fe3b8b1130abade63ea69c575085b80", + [ + null, + [ + [ + "/css/css-position/sticky/position-sticky-scroll-reposition-ref.html", + "==" + ] + ], + {} + ] + ], + "position-sticky-scroll-with-clip-and-abspos.html": [ + "fb7edfe49857cf9f9d4857dec11e5f150a80b8e5", + [ + null, + [ + [ + "/css/css-position/sticky/position-sticky-scroll-with-clip-and-abspos-ref.html", + "==" + ] + ], + {} + ] + ], + "position-sticky-scrolled-remove-sibling-002.html": [ + "870efa417c745f714f55805af8b210bb72a502f9", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "position-sticky-stacking-context-002.html": [ + "1cc162880a37559fd2879912b4418cbba9cbe7cb", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "position-sticky-stacking-context.html": [ + "4e91dfbd9177b51ab231e0cf2634aa6425981236", + [ + null, + [ + [ + "/css/css-position/sticky/position-sticky-stacking-context-ref.html", + "==" + ] + ], + {} + ] + ], + "position-sticky-table-parts.html": [ + "eb32099d44c6eb8f7c946b63872d21c1edfb0753", + [ + null, + [ + [ + "/css/css-position/sticky/position-sticky-table-parts-ref.html", + "==" + ] + ], + {} + ] + ], + "position-sticky-table-td-bottom.html": [ + "7cd3b8d695e00a68e58c9016aa2990eaf78ba846", + [ + null, + [ + [ + "/css/css-position/sticky/position-sticky-table-td-bottom-ref.html", + "==" + ] + ], + {} + ] + ], + "position-sticky-table-td-left.html": [ + "34d31f3eb1d9c289c99b339abf8786a25e374470", + [ + null, + [ + [ + "/css/css-position/sticky/position-sticky-table-td-left-ref.html", + "==" + ] + ], + {} + ] + ], + "position-sticky-table-td-right.html": [ + "093af91a550752707fb5f04b3d6879b4e442f710", + [ + null, + [ + [ + "/css/css-position/sticky/position-sticky-table-td-right-ref.html", + "==" + ] + ], + {} + ] + ], + "position-sticky-table-td-top.html": [ + "46931333c6a0db7d73aaf685e5215fe383172241", + [ + null, + [ + [ + "/css/css-position/sticky/position-sticky-table-td-top-ref.html", + "==" + ] + ], + {} + ] + ], + "position-sticky-table-tfoot-bottom.html": [ + "4ddd0cb78ede4be61deb3ec7585401d1f83bca29", + [ + null, + [ + [ + "/css/css-position/sticky/position-sticky-table-tfoot-bottom-ref.html", + "==" + ] + ], + {} + ] + ], + "position-sticky-table-th-bottom.html": [ + "bd6a82431757b16df2fe975ba982ad7d8cc60364", + [ + null, + [ + [ + "/css/css-position/sticky/position-sticky-table-th-bottom-ref.html", + "==" + ] + ], + {} + ] + ], + "position-sticky-table-th-left.html": [ + "7361b25ce6665cc57bc8b58cf629d57c3c33917b", + [ + null, + [ + [ + "/css/css-position/sticky/position-sticky-table-th-left-ref.html", + "==" + ] + ], + {} + ] + ], + "position-sticky-table-th-right.html": [ + "a1598f55063966ddc18da9a25212d13cd24a5080", + [ + null, + [ + [ + "/css/css-position/sticky/position-sticky-table-th-right-ref.html", + "==" + ] + ], + {} + ] + ], + "position-sticky-table-th-top.html": [ + "57ff489e0384df708c4622cac8054802310f4c58", + [ + null, + [ + [ + "/css/css-position/sticky/position-sticky-table-th-top-ref.html", + "==" + ] + ], + {} + ] + ], + "position-sticky-table-thead-top.html": [ + "13c1b313c57e8635bb414d09557138f7d00837f1", + [ + null, + [ + [ + "/css/css-position/sticky/position-sticky-table-thead-top-ref.html", + "==" + ] + ], + {} + ] + ], + "position-sticky-table-tr-bottom.html": [ + "be9f1480a37ad5dde3af2115c21b64c05fbffb2c", + [ + null, + [ + [ + "/css/css-position/sticky/position-sticky-table-tr-bottom-ref.html", + "==" + ] + ], + {} + ] + ], + "position-sticky-table-tr-top.html": [ + "5e38ad38d95d9df452a4dc8570c2a9f5967aabd6", + [ + null, + [ + [ + "/css/css-position/sticky/position-sticky-table-tr-top-ref.html", + "==" + ] + ], + {} + ] + ], + "position-sticky-top-002.html": [ + "e8025d679ed00b391df492b5d5a36b3d2ce82910", + [ + null, + [ + [ + "/css/css-position/sticky/reference/position-sticky-top-002-ref.html", + "==" + ] + ], + {} + ] + ], + "position-sticky-top-003.html": [ + "574b1b359bc8eadf1d5ce237fa8cfb49f9b4a834", + [ + null, + [ + [ + "/css/css-position/sticky/reference/position-sticky-top-002-ref.html", + "==" + ] + ], + {} + ] + ], + "position-sticky-top-004.html": [ + "bf0b87ab36d857eb0401d610806ed9924f2a4726", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "position-sticky-top-005.html": [ + "5f76a722b52b0b725930895ffaa14b35d35ba843", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "position-sticky-top-006.html": [ + "4ac5310bf35625679ab431bae488c5205b6d04b7", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "position-sticky-top-and-bottom-003.html": [ + "af68bcef729aca98fe7c792df3deb067fbf32763", + [ + null, + [ + [ + "/css/css-position/sticky/reference/position-sticky-top-and-bottom-003-ref.html", + "==" + ] + ], + {} + ] + ], + "position-sticky-writing-modes.html": [ + "98f50500b8c694864c5daca6b6770e465fa4795a", + [ + null, + [ + [ + "/css/css-position/sticky/position-sticky-writing-modes-ref.html", + "==" + ] + ], + {} + ] ] - ], - "overdraw.https.html": [ - "8d3dc72f9315884c342013d50f3936804a0747fe", + }, + "z-index-blend-will-change-overlapping-layers.html": [ + "7c43c3336872db048664e52943b63f195b761ae2", [ null, [ [ - "/css/css-paint-api/overdraw-ref.html", + "/css/css-position/z-index-blend-will-change-overlapping-layers-ref.html", "==" ] ], {} ] - ], - "paint-arguments.https.html": [ - "c08069c2e399eb8fd04f45c6df2c882321ae93d7", + ] + }, + "css-properties-values-api": { + "registered-property-change-style-002.html": [ + "a62461c7d8a5f57d59fe80d6a935976e15363ac4", [ null, [ [ - "/css/css-paint-api/paint-arguments-ref.html", + "/css/css-properties-values-api/registered-property-change-style-002-ref.html", "==" ] ], {} ] ], - "paint-function-arguments-var.https.html": [ - "e06231cb1d7aca8f8caddf4581ebbb388fbfbedb", + "registered-property-computation-color-001.html": [ + "d694908cdd1478a3c41e9f90cdd5eeb956ca78ad", [ - "css/css-paint-api/paint-function-arguments-var.https.html", + null, [ [ - "/css/css-paint-api/paint-function-arguments-ref.html", + "/css/css-properties-values-api/registered-property-computation-color-001-ref.html", "==" ] ], {} ] ], - "paint-function-arguments.https.html": [ - "c613bd159f928e91dac25fba4a83b344843d8ade", + "registered-property-computation-color-002.html": [ + "041697695e3478dfe8429e2354fc84547ee0e7cd", [ null, [ [ - "/css/css-paint-api/paint-function-arguments-ref.html", + "/css/css-properties-values-api/registered-property-computation-color-001-ref.html", "==" ] ], {} ] ], - "paint-function-this-value.https.html": [ - "216913899a931e8144d8a647eccb8ba01037f737", + "registered-property-computation-color-003.html": [ + "66092edf41d125c0c77914df4309c818fb524491", [ null, [ [ - "/css/css-paint-api/parse-input-arguments-ref.html", + "/css/css-properties-values-api/registered-property-computation-color-003-ref.html", "==" ] ], {} ] ], - "paint2d-canvasFilter.tentative.https.html": [ - "a4d50712be510c20729181c23c63d21a4ef572be", + "registered-property-computation-color-004.html": [ + "66abd1b3c32db1361d6e030e8d1759d1da65f355", [ null, [ [ - "/css/css-paint-api/paint2d-canvasFilter-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] - ], - "paint2d-composite.https.html": [ - "d654ba49aad6048f88e6ddb6750554dc22b860fb", + ] + }, + "css-pseudo": { + "active-selection-011.html": [ + "bdee22411d767524a0d3094749a61a8cf62800bd", [ null, [ [ - "/css/css-paint-api/paint2d-composite-ref.html", + "/css/css-pseudo/reference/active-selection-011-ref.html", "==" ] ], {} ] ], - "paint2d-conicGradient.https.html": [ - "07584c0897973de860217f9d304e56d0ce4eee5e", + "active-selection-012.html": [ + "e949f6862f6c80e40393d26c98dee438d3be0af4", [ null, [ [ - "/css/css-paint-api/paint2d-conicGradient-ref.html", + "/css/css-pseudo/reference/active-selection-012-ref.html", "==" ] ], {} ] ], - "paint2d-filter.https.html": [ - "a53fff986c7207656b93f8d671f01f3280c2b24f", + "active-selection-014.html": [ + "89f28a4ffbbefd699b567ce7dcb97a29a9b7b0e2", [ null, [ [ - "/css/css-paint-api/paint2d-filter-ref.html", + "/css/css-pseudo/reference/active-selection-014-ref.html", "==" ] ], {} ] ], - "paint2d-gradient.https.html": [ - "f99b7cb901132f3573a083393fad9baa21b97d8f", + "active-selection-016.html": [ + "82a77d74988224fadea4a1d54663a6076cac9601", [ null, [ [ - "/css/css-paint-api/paint2d-gradient-ref.html", + "/css/css-pseudo/reference/active-selection-016-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 5 - ], - [ - 3000, - 4000 - ] - ] - ] - ] - } + {} ] ], - "paint2d-image.https.html": [ - "71074df796d36a1d97a4598b62cdcc04fff390a3", + "active-selection-018.html": [ + "00826bb5f2f73bb63573d2d7ca197be98933109b", [ null, [ [ - "/css/css-paint-api/paint2d-image-ref.html", + "/css/css-pseudo/reference/active-selection-018-ref.html", "==" ] ], {} ] ], - "paint2d-paths.https.html": [ - "ae29930dc61dea1cfe4f48faab4ead46cdd7833d", + "active-selection-021.html": [ + "767366b8c4e5c5217ef8ab3d28f0759604dc38ec", [ null, [ [ - "/css/css-paint-api/paint2d-paths-ref.html", + "/css/css-pseudo/reference/active-selection-021-ref.html", "==" ] ], {} ] ], - "paint2d-rects.https.html": [ - "9279aa2a870b81052360a9feadab4e406070bd3d", + "active-selection-025.html": [ + "fd861008eef17381a8b285c12027d9d92e2d30df", [ null, [ [ - "/css/css-paint-api/paint2d-rects-ref.html", + "/css/css-pseudo/reference/active-selection-025-ref.html", "==" ] ], {} ] ], - "paint2d-reset.https.html": [ - "2d5158effbda6b28a5dff63c56341aea1b4c9ac4", + "active-selection-027.html": [ + "899d23c48802728969027a3fb069970dee706dbb", [ null, [ [ - "/css/css-paint-api/paint2d-reset-ref.html", + "/css/css-pseudo/reference/active-selection-027-ref.html", "==" ] ], {} ] ], - "paint2d-roundRect.https.html": [ - "7849354e87e577692262a85542b3404a544b6d45", + "active-selection-031.html": [ + "7b08269300e32f0257e90b3ce6b5ddecd2b4638d", [ null, [ [ - "/css/css-paint-api/paint2d-roundRect-ref.html", + "/css/css-pseudo/reference/active-selection-031-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 128 - ], - [ - 0, - 200 - ] - ] - ] - ] - } + {} ] ], - "paint2d-shadows.https.html": [ - "124819fa3a68e893439df41f3e410d5526160dd1", + "active-selection-041.html": [ + "f437c8bb523c3a403b8ccddc0ac224e77ecd52c4", [ null, [ [ - "/css/css-paint-api/paint2d-shadows-ref.html", - "==" + "/css/css-pseudo/reference/active-selection-041-notref.html", + "!=" ] ], {} ] ], - "paint2d-transform.https.html": [ - "b264d1da5f5038283b1f83635b7a03df20652426", + "active-selection-043.html": [ + "944bf5526ecbea16695303a11b1176f61f79a1d3", [ null, [ [ - "/css/css-paint-api/paint2d-transform-ref.html", + "/css/reference/ref-nothing-below.xht", "==" ] ], {} ] ], - "parse-input-arguments-001.https.html": [ - "d18259e4d719847fdc362d5d471557b7888291f2", + "active-selection-045.html": [ + "59cdcc2d9119231bdca79fd1a0b0fa0ae2c393e9", [ null, [ [ - "/css/css-paint-api/parse-input-arguments-ref.html", + "/css/reference/ref-nothing-below.xht", "==" ] ], {} ] ], - "parse-input-arguments-002.https.html": [ - "c5975586e9b10c98e85f937b0550a85fd2110d9a", + "active-selection-051.html": [ + "caab01e392428560331729292f99b91bd20ac20e", [ null, [ [ - "/css/css-paint-api/parse-input-arguments-ref.html", + "/css/css-pseudo/active-selection-051-ref.html", "==" ] ], {} ] ], - "parse-input-arguments-003.https.html": [ - "4d5daa70731c1895e580e85155f44716448a58b1", + "active-selection-052.html": [ + "88acf0106fde6920345ddc4e8ac5704d4ec70ec8", [ null, [ [ - "/css/css-paint-api/parse-input-arguments-ref.html", + "/css/css-pseudo/active-selection-051-ref.html", "==" ] ], {} ] ], - "parse-input-arguments-004.https.html": [ - "bd1e5651af7c4cb01c446ddee7595f2001dc65c5", + "active-selection-053.html": [ + "3b439d26ddbb6e43ed7824343c66414dd082bcd9", [ null, [ [ - "/css/css-paint-api/parse-input-arguments-ref.html", + "/css/css-pseudo/active-selection-051-ref.html", "==" ] ], {} ] ], - "parse-input-arguments-005.https.html": [ - "16744ec355c28c616eabbdcfdc100cbc0708cf5f", + "active-selection-054.html": [ + "d16776e6411ff981cfcb232444749b34f51c968f", [ null, [ [ - "/css/css-paint-api/parse-input-arguments-ref.html", + "/css/css-pseudo/active-selection-051-ref.html", "==" ] ], {} ] ], - "parse-input-arguments-006.https.html": [ - "2fbbec77054698b7c342294fa989cf854e95e497", + "active-selection-056.html": [ + "aa147f35d282fd28b3f8d4bf901a892d7b96acb4", [ null, [ [ - "/css/css-paint-api/parse-input-arguments-ref.html", + "/css/reference/ref-nothing-below.xht", "==" ] ], {} ] ], - "parse-input-arguments-007.https.html": [ - "1fc435fc7b0ab7e47d0e2d183682efbf73e34c95", + "active-selection-057.html": [ + "34afda43ed0b3de72b50ec46731d4fd9108f3379", [ null, [ [ - "/css/css-paint-api/parse-input-arguments-ref.html", + "/css/reference/ref-nothing-below.xht", "==" ] ], {} ] ], - "parse-input-arguments-008.https.html": [ - "9543d2d88423caf1d9dfdfe29c96a0d4ecb8f0f1", + "active-selection-063.html": [ + "0c151cf4e6485f7c44943081705cad7f57fa7292", [ null, [ [ - "/css/css-paint-api/parse-input-arguments-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "parse-input-arguments-009.https.html": [ - "41e8411a4a7e2b060142c0d8a792dc2ea9f7e9a8", + "backdrop-animate-002.html": [ + "910807a7a63081e0bedaffd262bb261bccf611aa", [ null, [ [ - "/css/css-paint-api/parse-input-arguments-ref.html", + "/css/css-pseudo/backdrop-animate-002-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 1 + ], + [ + 0, + 472500 + ] + ] + ] + ] + } ] ], - "parse-input-arguments-010.https.html": [ - "44bbab5b7f1a6d781b209f1fe6f654bec5badb71", + "before-after-dynamic-custom-property-001.html": [ + "dcbd60786b313f8d719b7eefcede3416a2436669", [ null, [ [ - "/css/css-paint-api/parse-input-arguments-ref.html", + "/css/css-pseudo/before-after-dynamic-custom-property-001-ref.html", "==" ] ], {} ] ], - "parse-input-arguments-011.https.html": [ - "09f8b0274760dab95f19d381b3aa365596e864ad", + "before-dynamic-display-none.html": [ + "d8844f9c961e94b2fd353628cb2c6e3e12123054", [ null, [ [ - "/css/css-paint-api/parse-input-arguments-ref.html", + "/css/reference/pass_if_pass_below.html", "==" ] ], {} ] ], - "parse-input-arguments-012.https.html": [ - "4a05b6fcf12accb0a2c4604529993b3d0030089b", + "file-selector-button-001.html": [ + "48b2852de820f61ce5344584ab1ff3aa2313adcf", [ null, [ [ - "/css/css-paint-api/parse-input-arguments-ref.html", - "==" + "/css/css-pseudo/file-selector-button-001-notref.html", + "!=" ] ], {} ] ], - "parse-input-arguments-013.https.html": [ - "ef8bf905c23dc4cd429d536b5b2f8e450cdf9b91", + "file-selector-button-after-part.html": [ + "0bd28fa5d528cfa2f4bb6fb2cb181746c3005781", [ null, [ [ - "/css/css-paint-api/parse-input-arguments-ref.html", - "==" + "/css/css-pseudo/file-selector-button-001-notref.html", + "!=" ] ], {} ] ], - "parse-input-arguments-014.https.html": [ - "715dab8dc792cc8ffa4854b1adc8f411bb11676a", + "file-selector-button-float.html": [ + "a9299ce3c43b626d4f4664d297fabfce399c7a61", [ null, [ [ - "/css/css-paint-api/parse-input-arguments-ref.html", - "==" + "/css/reference/blank.html", + "!=" ] ], {} ] ], - "parse-input-arguments-015.https.html": [ - "4c8cfebca439981e4ab6d1af78010756455df2d0", + "first-letter-001.html": [ + "b1dc5860a39d6c4d7088eccfaaec42898b6b12b3", [ null, [ [ - "/css/css-paint-api/parse-input-arguments-ref.html", + "/css/css-pseudo/first-letter-001-ref.html", "==" ] ], {} ] ], - "parse-input-arguments-016.https.html": [ - "aa5eda8aaecb5e2085abd70156f15d7227e797eb", + "first-letter-002.html": [ + "4ee147699a02c922ac5df8b97b806c4f723c0166", [ null, [ [ - "/css/css-paint-api/parse-input-arguments-ref.html", + "/css/css-pseudo/first-letter-001-ref.html", "==" ] ], {} ] ], - "parse-input-arguments-017.https.html": [ - "2ba8d996c63d7856ff982b0f12ccb097e8f4893f", + "first-letter-003.html": [ + "95b2471fc3a63ae1441c47136d1517e5a636f61f", [ null, [ [ - "/css/css-paint-api/parse-input-arguments-ref.html", + "/css/css-pseudo/first-letter-001-ref.html", "==" ] ], {} ] ], - "parse-input-arguments-018.https.html": [ - "1554cc64451d3133980804bff1e24f87fdfaa51e", + "first-letter-004.html": [ + "33c14feb60286479ae805cc021f14e2b4be5418d", [ null, [ [ - "/css/css-paint-api/parse-input-arguments-018-ref.html", + "/css/css-pseudo/first-letter-004-ref.html", "==" ] ], {} ] ], - "parse-input-arguments-019.https.html": [ - "d0a628561d8f87c382feee2307d496ae9cb7f1c7", + "first-letter-005.html": [ + "60e36eab8f9b065067c4a26d7d134511ed00a3ae", [ null, [ [ - "/css/css-paint-api/parse-input-arguments-ref.html", + "/css/css-pseudo/first-letter-005-ref.html", "==" ] ], {} ] ], - "parse-input-arguments-020.https.html": [ - "7797eb45fec1123c4f7138ed101fe24cc58599e2", + "first-letter-and-sibling-display-change.html": [ + "29bdc5bbbe8ed4c1f4082dabbd7116325ed6e933", [ null, [ [ - "/css/css-paint-api/parse-input-arguments-ref.html", + "/css/css-pseudo/first-letter-block-to-inline-ref.html", "==" ] ], {} ] ], - "parse-input-arguments-021.https.html": [ - "22d6d5adbd009751117f589df8add31dbf384c4f", + "first-letter-and-whitespace.html": [ + "a10612ac9731a7ecdf07416df23e802c131b7570", [ null, [ [ - "/css/css-paint-api/parse-input-arguments-ref.html", + "/css/css-pseudo/first-letter-and-whitespace-ref.html", "==" ] ], {} ] ], - "parse-input-arguments-022.https.html": [ - "9434807039762e83ec291e2ff49c2862a9a76662", + "first-letter-background-image-dynamic.html": [ + "6f8a9378c5c2f041ae8be4bc0a4e22be8869a107", [ null, [ [ - "/css/css-paint-api/parse-input-arguments-ref.html", + "/css/css-pseudo/first-letter-background-image-ref.html", "==" ] ], {} ] ], - "registered-property-interpolation-001.https.html": [ - "5aaed62542f1231ab866b8c245424f8b676b0aeb", + "first-letter-background-image.html": [ + "aa9341df1bd7d97afd12f3896a645f008bdc8c50", [ null, [ [ - "/css/css-paint-api/parse-input-arguments-ref.html", + "/css/css-pseudo/first-letter-background-image-ref.html", "==" ] ], {} ] ], - "registered-property-interpolation-002.https.html": [ - "80b2c9339d70772bbf0468e2ff1e14c3ec088279", + "first-letter-block-to-inline.html": [ + "94f27e6a6665ab1024e1c6367c46a6976a4eec24", [ null, [ [ - "/css/css-paint-api/parse-input-arguments-ref.html", + "/css/css-pseudo/first-letter-block-to-inline-ref.html", "==" ] ], {} ] ], - "registered-property-interpolation-003.https.html": [ - "683ed403fb8b7a519b06c0b2c6d8564cb5830053", + "first-letter-digraph.html": [ + "b539457cf0c5ddab61cb2c63ef45fab47057877e", [ null, [ [ - "/css/css-paint-api/parse-input-arguments-ref.html", + "/css/css-pseudo/reference/first-letter-digraph-ref.html", "==" ] ], {} ] ], - "registered-property-interpolation-004.https.html": [ - "9602e902eca44eb704a8f3977c9f4416ad7aab7e", + "first-letter-exclude-block-child-marker.html": [ + "ecd0fd5b4622d9257658fc1e50ce43221da5bdfb", [ null, [ [ - "/css/css-paint-api/parse-input-arguments-ref.html", + "/css/css-pseudo/first-letter-exclude-block-child-marker-ref.html", "==" ] ], {} ] ], - "registered-property-interpolation-005.https.html": [ - "35d6ccbf3d4bc3d9278a733f7e21ab44734b2d08", + "first-letter-exclude-inline-child-marker.html": [ + "027f145679b4109b7aeda9a7665ebc2788b982ec", [ null, [ [ - "/css/css-paint-api/parse-input-arguments-ref.html", + "/css/css-pseudo/first-letter-exclude-inline-child-marker-ref.html", "==" ] ], {} ] ], - "registered-property-interpolation-006.https.html": [ - "a8cfdead0f7b6d4d358c56f4126780452e827e4e", + "first-letter-exclude-inline-marker.html": [ + "e95393f4496238a58d9bfce76629df1f68cd5293", [ null, [ [ - "/css/css-paint-api/parse-input-arguments-ref.html", + "/css/css-pseudo/first-letter-exclude-inline-marker-ref.html", "==" ] ], {} ] ], - "registered-property-interpolation-007.https.html": [ - "77b80b51e67ac275aeff76baf93d0c0e8fca6ef8", + "first-letter-hi-001.html": [ + "9ea51f8bc588057ec33fab41ac1bd18958aa80e3", [ null, [ [ - "/css/css-paint-api/parse-input-arguments-ref.html", + "/css/css-pseudo/first-letter-hi-001-ref.html", "==" ] ], {} ] ], - "registered-property-interpolation-008.https.html": [ - "1ec166614e13ccda26fd066cd1ed3c5134792e48", + "first-letter-hi-002.html": [ + "c810968f30fc6ce57296d1fd9286361322d1a1ca", [ null, [ [ - "/css/css-paint-api/parse-input-arguments-ref.html", + "/css/css-pseudo/first-letter-hi-002-ref.html", "==" ] ], {} ] ], - "registered-property-interpolation-009.https.html": [ - "e7a5e37c641f060458b128a4bb53e00f2ca63532", + "first-letter-list-item-dynamic-001.html": [ + "f990cd2bb716aafff143f99889d2be61c72b6171", [ null, [ [ - "/css/css-paint-api/parse-input-arguments-ref.html", + "/css/css-pseudo/first-letter-list-item-dynamic-001-ref.html", "==" ] ], {} ] ], - "registered-property-interpolation-010.https.html": [ - "ee3a0f1b3217677a5a6d7049d0b85939ed271174", + "first-letter-of-html-root-refcrash.html": [ + "4233dd1dc351b14e5f514599107cc7b478b9d634", [ null, [ [ - "/css/css-paint-api/parse-input-arguments-ref.html", + "/css/css-pseudo/first-letter-of-html-root-crash-ref.html", "==" ] ], {} ] ], - "registered-property-invalidation-001.https.html": [ - "408ba49743c561f3310eb4beba6767eba87b2f07", + "first-letter-opacity-001-ref.html": [ + "37e4dd5a2c9127d9cdbbb4ceb490033a9a8e6f0e", [ null, [ [ - "/css/css-paint-api/parse-input-arguments-ref.html", - "==" + "/css/css-pseudo/first-letter-opacity-001-not-ref.html", + "!=" ] ], {} ] ], - "registered-property-invalidation-002.https.html": [ - "b65bcd5a6eebb71101d222065a6e704b7bbfae53", + "first-letter-opacity-001.html": [ + "0a867e541aebf2032136930f30f5596759dd65e7", [ null, [ [ - "/css/css-paint-api/parse-input-arguments-ref.html", + "/css/css-pseudo/first-letter-opacity-001-ref.html", "==" ] ], {} ] ], - "registered-property-stylemap.https.html": [ - "3dec98d9102b4adcb09ec6bb496a4c74cb701280", + "first-letter-opacity-float-001.html": [ + "fb939fa0cb0adcadf1960291124c2e06d8949afc", [ null, [ [ - "/css/css-paint-api/parse-input-arguments-ref.html", + "/css/css-pseudo/first-letter-opacity-float-001-ref.html", "==" ] ], {} ] ], - "registered-property-value-001.https.html": [ - "970e1f3e5ed9ec422d50a9f71d935d5970b3eb12", + "first-letter-punctuation-and-space.html": [ + "2e5a353c175e171f52514906cd3ef6dc8747c086", [ null, [ [ - "/css/css-paint-api/parse-input-arguments-ref.html", + "/css/css-pseudo/first-letter-punctuation-and-space-ref.html", "==" ] ], {} ] ], - "registered-property-value-002.https.html": [ - "6019151b10575afda778fc27117877d879c8839a", + "first-letter-punctuation-dynamic.html": [ + "0a7295602a1651932bd48a919cdcd00e2b125702", [ null, [ [ - "/css/css-paint-api/parse-input-arguments-ref.html", + "/css/css-pseudo/first-letter-punctuation-dynamic-ref.html", "==" ] ], {} ] ], - "registered-property-value-003.https.html": [ - "b9c3bf3fd90422d3293dd30e4074c5b1dd66ee52", + "first-letter-skip-empty-span-nested.html": [ + "e57700bbbd61246c93a5e2bae00659d87a4981dc", [ null, [ [ - "/css/css-paint-api/parse-input-arguments-ref.html", + "/css/css-pseudo/first-letter-skip-empty-span-nested-ref.html", "==" ] ], {} ] ], - "registered-property-value-004.https.html": [ - "e04be69f80c27ee8ad83acdb5b4c0c4f23efaa0d", + "first-letter-skip-empty-span.html": [ + "d3914050ad892a13df3d5caacc238488175ac5c3", [ null, [ [ - "/css/css-paint-api/parse-input-arguments-ref.html", + "/css/css-pseudo/first-letter-skip-empty-span-ref.html", "==" ] ], {} ] ], - "registered-property-value-005.https.html": [ - "bfecd0c56b8d538671540b9c229c7df585df1d31", + "first-letter-skip-marker.html": [ + "fb9fe258472e3a0e338f12246469e9499b4c2601", [ null, [ [ - "/css/css-paint-api/parse-input-arguments-ref.html", + "/css/css-pseudo/first-letter-skip-marker-ref.html", "==" ] ], {} ] ], - "registered-property-value-006.https.html": [ - "7176b67d4bb8bf99a8bc3bfc559912424b449826", + "first-letter-text-and-display-change.html": [ + "d50da5f5c6b52975af5519ba27022e8a0f34f23d", [ null, [ [ - "/css/css-paint-api/parse-input-arguments-ref.html", + "/css/reference/pass_if_letter_uppercase.html", "==" ] ], {} ] ], - "registered-property-value-007.https.html": [ - "309fe969b6bd31a9f1c3212d92dedca8203b0942", + "first-letter-width-2.html": [ + "e7d01afe47291b507179ca4f984e710d06ee526e", [ null, [ [ - "/css/css-paint-api/parse-input-arguments-ref.html", + "/css/css-pseudo/first-letter-width-2-ref.html", "==" ] ], {} ] ], - "registered-property-value-008.https.html": [ - "db72408d77b9c7fe10142b1f83c9e98f38b219f3", + "first-letter-width.html": [ + "fedf917c62a1c34c054b7484594ced16960c4c17", [ null, [ [ - "/css/css-paint-api/parse-input-arguments-ref.html", + "/css/css-pseudo/first-letter-width-ref.html", "==" ] ], {} ] ], - "registered-property-value-009.https.html": [ - "a2c2e9a8cd561ef588f98a08031ad50961f59c07", + "first-letter-with-before-after.html": [ + "95150a0e9627994b7248ba1730fc9abaef7f31bc", [ null, [ [ - "/css/css-paint-api/parse-input-arguments-ref.html", + "/css/css-pseudo/first-letter-with-before-after-ref.html", "==" ] ], {} ] ], - "registered-property-value-010.https.html": [ - "332a22a1b9d9d1c3c0f117c4804e19ff73b2c670", + "first-letter-with-preceding-new-line.html": [ + "5243b042882328443daf07e6f05f1cac68cede84", [ null, [ [ - "/css/css-paint-api/parse-input-arguments-ref.html", + "/css/css-pseudo/reference/first-letter-with-preceding-new-line-ref.html", "==" ] ], {} ] ], - "registered-property-value-011.https.html": [ - "a596a5d55fd936921edc4661cdd9680950e2eebb", + "first-letter-with-quote.html": [ + "9a8e0426bd8d52fcc91ab5472f052812daa92abb", [ null, [ [ - "/css/css-paint-api/parse-input-arguments-ref.html", + "/css/css-pseudo/first-letter-with-quote-ref.html", "==" ] ], {} ] ], - "registered-property-value-012.https.html": [ - "80c1e6ed37c5b8d4c611d534dbe4e4c6cbaf286c", + "first-letter-with-span.html": [ + "cbb258837a1e7ca9fc095be5d118bab52770076b", [ null, [ [ - "/css/css-paint-api/parse-input-arguments-ref.html", + "/css/css-pseudo/first-letter-with-span-ref.html", "==" ] ], {} ] ], - "registered-property-value-013.https.html": [ - "7af03929d843cf5a201ff33bd3f57b1f790bd2e0", + "first-line-and-marker.html": [ + "f0a994438f1f848837b6a7814ceb621aae886fde", [ null, [ [ - "/css/css-paint-api/parse-input-arguments-ref.html", + "/css/css-pseudo/first-line-and-marker-ref.html", "==" ] ], {} ] ], - "registered-property-value-014.https.html": [ - "0ca1eca13ed3d4b1e2da165e827799f6ef968925", + "first-line-and-placeholder.html": [ + "2db3480feb5928c6a39fbf6084cf07bec0ba4767", [ null, [ [ - "/css/css-paint-api/parse-input-arguments-ref.html", + "/css/css-pseudo/first-line-and-placeholder-ref.html", "==" ] ], {} ] ], - "registered-property-value-015.https.html": [ - "d7ba26b852c15a2e4df11a071e042b7f1c523aa0", + "first-line-change-inline-color-nested.html": [ + "4a58f1ea5b623ffa5acd2993be16de399cd24127", [ null, [ [ - "/css/css-paint-api/parse-input-arguments-ref.html", + "/css/css-pseudo/first-line-change-inline-color-nested-ref.html", "==" ] ], {} ] ], - "registered-property-value-016.https.html": [ - "609f00f6d0067efb6fdc44a9b54b104375303924", + "first-line-change-inline-color.html": [ + "2a5be916b01d5d12eec1a4e81d912d95c7036916", [ null, [ [ - "/css/css-paint-api/parse-input-arguments-ref.html", + "/css/css-pseudo/first-line-change-inline-color-ref.html", "==" ] ], {} ] ], - "registered-property-value-017.https.html": [ - "609f00f6d0067efb6fdc44a9b54b104375303924", + "first-line-inherited-no-transition.html": [ + "e5253daa63fc7cb074901dd086864e27426cd152", [ null, [ [ - "/css/css-paint-api/parse-input-arguments-ref.html", + "/css/css-pseudo/first-line-inherited-no-transition-ref.html", "==" ] ], {} ] ], - "registered-property-value-018.https.html": [ - "1f9876b6b502484c1821e559fc038d1050718d0b", + "first-line-inherited-with-transition.html": [ + "88b1f34362279e156559e49d6d22f9ca48f5237f", [ null, [ [ - "/css/css-paint-api/parse-input-arguments-ref.html", + "/css/css-pseudo/first-line-inherited-with-transition-ref.html", "==" ] ], {} ] ], - "roundrect.https.html": [ - "7fc2b3fc5baea67c71191a264f0928932923cea3", + "first-line-line-height-001.html": [ + "f1dd69807ed866374539a4416d0102f043bec5e1", [ - "css/css-paint-api/roundrect.https.html", + null, [ [ - "/css/css-paint-api/roundrect-ref.html", + "/css/css-pseudo/first-line-line-height-001-ref.html", "==" ] ], {} ] ], - "setTransform-001.https.html": [ - "9913d3ba6c08296e2b5e6a4479b0780abd2fdf3a", + "first-line-line-height-002.html": [ + "7d1112fbb263fb0bef9fa0f371ed29cf324dee86", [ null, [ [ - "/css/css-paint-api/setTransform-ref.html", + "/css/css-pseudo/first-line-line-height-002-ref.html", "==" ] ], {} ] ], - "setTransform-002.https.html": [ - "779ebcac7e9d0baf2d2a2d6e8cb5e88745b19151", + "first-line-nested-gcs.html": [ + "6777e5468f57b507f96f4e92fbba4393002d15e7", [ null, [ [ - "/css/css-paint-api/setTransform-ref.html", + "/css/css-pseudo/first-line-green-ref.html", "==" ] ], {} ] ], - "setTransform-003.https.html": [ - "cbdb525eca2418e1a6d96b91cbb273962cd509b3", + "first-line-on-ancestor-block.html": [ + "6b797107df80156b511b9dc58c5ee40d6114cfc4", [ null, [ [ - "/css/css-paint-api/setTransform-ref.html", + "/css/css-pseudo/first-line-on-ancestor-block-ref.html", "==" ] ], {} ] ], - "setTransform-004.https.html": [ - "38a71677ad9623b4c5b538a7b7584e1f820e152a", + "first-line-opacity-001-ref.html": [ + "b4f4ddc185fc5e958f1934a0a1e948eee29e8057", [ null, [ [ - "/css/css-paint-api/setTransform-ref.html", - "==" + "/css/css-pseudo/first-line-opacity-001-not-ref.html", + "!=" ] ], {} ] ], - "style-background-image.https.html": [ - "c36e50271bf84a519eb31bac7c9143168de0c350", + "first-line-opacity-001.html": [ + "83f90824b8ab42976a826fcc7567a9f7f52e4379", [ - "css/css-paint-api/style-background-image.https.html", + null, [ [ - "/css/css-paint-api/style-background-image-ref.html", + "/css/css-pseudo/first-line-opacity-001-ref.html", "==" ] ], {} ] ], - "style-before-pseudo.https.html": [ - "cc569a4b8ec042ccdfbe1705a5969a528f79bc3f", + "first-line-replaced-001.html": [ + "453c55e4a76fedbafcc470d5def5b98c4be16ec1", [ - "css/css-paint-api/style-before-pseudo.https.html", + null, [ [ - "/css/css-paint-api/style-before-pseudo-ref.html", + "/css/css-pseudo/first-line-replaced-001-ref.html", "==" ] ], {} ] ], - "style-first-letter-pseudo.https.html": [ - "67891378035ad776b8511b0c198c84c46bb9d981", + "first-line-with-before-after.html": [ + "f91a22a4a7d65366dbd7dda3934c82c9b5776977", [ null, [ [ - "/css/css-paint-api/style-first-letter-pseudo-ref.html", + "/css/css-pseudo/first-line-with-before-after-ref.html", "==" ] ], {} ] ], - "top-level-await.https.html": [ - "8a0855cc9781a428f7494dd73592a108381c5418", + "first-line-with-inline-block-before.html": [ + "8b454faeda368c4d07fb5767991fc25665ec596a", [ null, [ [ - "/css/css-paint-api/top-level-await-ref.html", + "/css/css-pseudo/first-line-with-inline-block-before-ref.html", "==" ] ], {} ] ], - "two-custom-property-animation.https.html": [ - "6669076e909c273d2c63b34c91a29e443065a248", + "first-line-with-inline-block.html": [ + "12e11a3d2e4344b57c755b8a7e749115b299e549", [ null, [ [ - "/css/css-paint-api/two-custom-property-animation-ref.html", + "/css/css-pseudo/reference/first-line-with-inline-block-ref.html", "==" ] ], {} ] ], - "two-element-custom-property-animation.https.html": [ - "48b0f201d4b188fe9e62c33790cb7e478811b55e", + "first-line-with-out-of-flow-and-nested-div.html": [ + "e277e9ce1cb69bcc1c7a61c8a100585e077bd359", [ null, [ [ - "/css/css-paint-api/two-element-custom-property-animation-ref.html", + "/css/css-pseudo/first-line-with-out-of-flow-ref.html", "==" ] ], {} ] ], - "two-element-one-custom-property-animation.https.html": [ - "1090185409d7a683b381ddb74a7d6ee4522fe108", + "first-line-with-out-of-flow-and-nested-span.html": [ + "c0fe55cbc5292fa24e745760ea0c70a4bd15547f", [ null, [ [ - "/css/css-paint-api/two-element-one-custom-property-animation-ref.html", + "/css/css-pseudo/first-line-with-out-of-flow-ref.html", "==" ] ], {} ] ], - "valid-image-after-load.https.html": [ - "c1bf8e85548656b60145c4d54437b10a2f07880e", + "first-line-with-out-of-flow.html": [ + "76d50254506086bfd3364b4ebcab3384e4d6e4a6", [ null, [ [ - "/css/css-paint-api/valid-image-after-load-ref.html", + "/css/css-pseudo/first-line-with-out-of-flow-ref.html", "==" ] ], {} ] ], - "valid-image-before-load.https.html": [ - "b58dfa114ea8327dbce264b44c87a4c92d2b3eb9", + "grammar-error-001.html": [ + "b7eaa6b20fbe61b25ebeb2e0ae74a0f558fcf0e4", [ null, [ [ - "/css/css-paint-api/valid-image-before-load-ref.html", + "/css/css-pseudo/grammar-error-001-ref.html", "==" ] ], {} ] - ] - }, - "css-position": { - "backdrop-inherit-rendered.html": [ - "98dfe748ed5f7430610a93b93f40056183e85c5b", + ], + "grammar-spelling-errors-001.html": [ + "66df551a232183197470e25fb6012886d6630306", [ - "css/css-position/backdrop-inherit-rendered.html", + null, [ [ - "/css/css-position/backdrop-inherit-rendered-ref.html", + "/css/css-pseudo/reference/grammar-spelling-errors-001-ref.html", "==" ] ], {} ] ], - "change-insets-inside-strict-containment-nested.html": [ - "b70ef0e667be3adb46f261da9e407ae8ecdc1299", + "grammar-spelling-errors-002.html": [ + "3a89e54c42e493875bd8e992a35f4a1d2eb0ab8a", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-pseudo/reference/grammar-spelling-errors-002-ref.html", "==" ] ], {} ] ], - "containing-block-change-button.html": [ - "a4d20685ce9f25ae1ff655a13b14186b74bc4323", - [ - null, - [ - [ - "/css/css-position/containing-block-change-button-ref.html", - "==" - ] - ], - {} - ] - ], - "containing-block-change-scrollframe.html": [ - "803512cc1a0a824bc54aac289e03e432d863109d", - [ - "css/css-position/containing-block-change-scrollframe.html", - [ - [ - "/css/css-position/containing-block-change-scrollframe-ref.html", - "==" - ] - ], - {} - ] - ], - "fixed-z-index-blend.html": [ - "c532a5870f05c29603266cb6a2d2ad285446a627", - [ - "css/css-position/fixed-z-index-blend.html", - [ - [ - "/css/css-position/fixed-z-index-blend-ref.html", - "==" - ] - ], - {} - ] - ], - "hypothetical-box-scroll-parent.html": [ - "e342e8c275043fb851ddd887c1cc670993f89da4", - [ - null, - [ - [ - "/css/css-position/hypothetical-box-scroll-parent-ref.html", - "==" - ] - ], - {} - ] - ], - "hypothetical-box-scroll-viewport.html": [ - "9ccb822f107f429651c7949995412c9f2a80feea", - [ - null, - [ - [ - "/css/css-position/hypothetical-box-scroll-viewport-ref.html", - "==" - ] - ], - {} - ] - ], - "hypothetical-dynamic-change-001.html": [ - "996f439211ccef5a12d3e5e2598973fd5983b80c", - [ - null, - [ - [ - "/css/css-position/hypothetical-dynamic-change-001-ref.html", - "==" - ] - ], - {} - ] - ], - "hypothetical-dynamic-change-002.html": [ - "114b48dc7fc9cfdaabe29f305063aaa6b4577cc0", - [ - null, + "highlight-cascade": { + "cascade-highlight-001.html": [ + "f441adf3b90058d9691a7bbb53d1bf7b38a783ba", [ + null, [ - "/css/css-position/hypothetical-dynamic-change-001-ref.html", - "==" - ] - ], - {} - ] - ], - "hypothetical-dynamic-change-003.html": [ - "26a27c269550f2ee0afbb6c2bc0219554acd4948", - [ - null, + [ + "/css/css-pseudo/highlight-cascade/cascade-highlight-001-ref.html", + "==" + ] + ], + {} + ] + ], + "cascade-highlight-002.html": [ + "d10bdb9b042f86eef15d06ffafc7e5f775bf0569", [ + null, [ - "/css/css-position/hypothetical-dynamic-change-001-ref.html", - "==" - ] - ], - {} - ] - ], - "invalidate-opacity-negative-z-index.html": [ - "52deaa080617f7d813449be8e1a007c568871842", - [ - null, + [ + "/css/css-pseudo/highlight-cascade/cascade-highlight-001-ref.html", + "==" + ] + ], + {} + ] + ], + "cascade-highlight-004.html": [ + "295321a1720b9af445b1a294721f79b7ca7928e7", [ + null, [ - "/css/css-position/invalidate-opacity-negative-z-index-ref.html", - "==" - ] - ], - {} - ] - ], - "multicol": { - "static-position": { - "vlr-ltr-ltr-in-multicol.html": [ - "45de6ffb421d9bfa70a0ab4e262b4192f4275dba", - [ - "css/css-position/multicol/static-position/vlr-ltr-ltr-in-multicol.html", [ - [ - "/css/css-position/multicol/static-position/vlr-in-multicol-ref.html", - "==" - ] - ], - {} - ] - ], - "vlr-ltr-rtl-in-multicol.tentative.html": [ - "9cb6c26e9c43194f912846a7c6b25173fb812b0d", + "/css/css-pseudo/highlight-cascade/cascade-highlight-004-ref.html", + "==" + ] + ], + {} + ] + ], + "cascade-highlight-005.html": [ + "25ad85fe70788088d5fbd0a0ba87b26e629a2d08", + [ + null, [ - "css/css-position/multicol/static-position/vlr-ltr-rtl-in-multicol.tentative.html", [ - [ - "/css/css-position/multicol/static-position/vlr-in-multicol-ref.html", - "==" - ] - ], - {} - ] - ], - "vlr-rtl-ltr-in-multicol.tentative.html": [ - "5a094987ba8f2c1e326b45ced25bf706cfd14e43", + "/css/css-pseudo/highlight-cascade/cascade-highlight-005-ref.html", + "==" + ] + ], + {} + ] + ], + "highlight-cascade-001.html": [ + "18b3635b3f7ac6c347f8c91fc57acaadbbf50dfc", + [ + null, [ - "css/css-position/multicol/static-position/vlr-rtl-ltr-in-multicol.tentative.html", [ - [ - "/css/css-position/multicol/static-position/vlr-in-multicol-ref.html", - "==" - ] - ], - {} - ] - ], - "vlr-rtl-rtl-in-multicol.html": [ - "e7c4088aa4347ac409adeac0af89a7fa3c62ec28", + "/css/css-pseudo/highlight-cascade/highlight-cascade-001-ref.html", + "==" + ] + ], + {} + ] + ], + "highlight-cascade-003.html": [ + "b29f37528c0b649ed9df2f9ad162b9262197e32b", + [ + null, [ - "css/css-position/multicol/static-position/vlr-rtl-rtl-in-multicol.html", [ - [ - "/css/css-position/multicol/static-position/vlr-in-multicol-ref.html", - "==" - ] - ], - {} - ] - ], - "vrl-ltr-ltr-in-multicol.html": [ - "ae5059ce787c4a1fa1a0d657415642bf2d644ac3", + "/css/css-pseudo/highlight-cascade/highlight-cascade-003-ref.html", + "==" + ] + ], + {} + ] + ], + "highlight-cascade-004.html": [ + "f3155bcec6b3ecb9f15013e031ae2506940633a4", + [ + null, [ - "css/css-position/multicol/static-position/vrl-ltr-ltr-in-multicol.html", [ - [ - "/css/css-position/multicol/static-position/vrl-in-multicol-ref.html", - "==" - ] - ], - {} - ] - ], - "vrl-ltr-rtl-in-multicol.tentative.html": [ - "44bf087765d83d63687244ab4e2209a611842844", + "/css/css-pseudo/highlight-cascade/highlight-cascade-004-ref.html", + "==" + ] + ], + {} + ] + ], + "highlight-cascade-005.html": [ + "958bdf65447e5399460a621dc7b328915596102f", + [ + null, [ - "css/css-position/multicol/static-position/vrl-ltr-rtl-in-multicol.tentative.html", [ - [ - "/css/css-position/multicol/static-position/vrl-in-multicol-ref.html", - "==" - ] - ], - {} - ] - ], - "vrl-rtl-ltr-in-multicol.tentative.html": [ - "3cf8e6728e952d66a577ba7b0923990949fdedf5", + "/css/css-pseudo/highlight-cascade/highlight-cascade-005-ref.html", + "==" + ] + ], + {} + ] + ], + "highlight-cascade-006.xhtml": [ + "4a37af7c255356c788c1c4e32be47fffa1f2ad98", + [ + null, [ - "css/css-position/multicol/static-position/vrl-rtl-ltr-in-multicol.tentative.html", [ - [ - "/css/css-position/multicol/static-position/vrl-in-multicol-ref.html", - "==" - ] - ], - {} - ] - ], - "vrl-rtl-rtl-in-multicol.html": [ - "a13f1cf3e91eb48821b00163837418ed333315bb", + "/css/css-pseudo/highlight-cascade/highlight-cascade-006-ref.xhtml", + "==" + ] + ], + {} + ] + ], + "highlight-cascade-008.html": [ + "720e2f0469d056475e0d502a19546e6fbfb4567c", + [ + null, [ - "css/css-position/multicol/static-position/vrl-rtl-rtl-in-multicol.html", [ + "/css/css-pseudo/highlight-cascade/highlight-cascade-008-ref.html", + "==" + ] + ], + { + "fuzzy": [ [ - "/css/css-position/multicol/static-position/vrl-in-multicol-ref.html", - "==" + null, + [ + [ + 0, + 255 + ], + [ + 0, + 10 + ] + ] ] - ], - {} - ] + ] + } ] - }, - "vlr-ltr-ltr-in-multicols.html": [ - "af20086994cc6b2da31615b024ab042328116656", + ], + "highlight-currentcolor-painting-properties-001.html": [ + "efdb9016bc213cd4502557fd4f8eb6b77487c172", [ - "css/css-position/multicol/vlr-ltr-ltr-in-multicols.html", + null, [ [ - "/css/css-position/multicol/vlr-in-multicols-ref.html", + "/css/css-pseudo/highlight-cascade/highlight-currentcolor-painting-properties-001-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 50 + ], + [ + 0, + 150 + ] + ] + ] + ] + } ] ], - "vlr-ltr-rtl-in-multicols.tentative.html": [ - "dfb075f6ce98355cca91020ebc81af8fd2b23dd6", + "highlight-currentcolor-painting-properties-002.html": [ + "d02dc9e8c5ba3de05bdc6178944808f97f1a0264", [ - "css/css-position/multicol/vlr-ltr-rtl-in-multicols.tentative.html", + null, [ [ - "/css/css-position/multicol/vlr-in-multicols-ref.html", + "/css/css-pseudo/highlight-cascade/highlight-currentcolor-painting-properties-002-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 50 + ], + [ + 0, + 150 + ] + ] + ] + ] + } ] ], - "vlr-rtl-ltr-in-multicols.tentative.html": [ - "bbcee5685a9f08888b9caeaf8ef1bad8a3da2962", + "highlight-currentcolor-painting-text-shadow-001.html": [ + "c82da8c380ed2f8f13909e001a8f4e170983dbe5", [ - "css/css-position/multicol/vlr-rtl-ltr-in-multicols.tentative.html", + null, [ [ - "/css/css-position/multicol/vlr-in-multicols-ref.html", + "/css/css-pseudo/highlight-cascade/highlight-currentcolor-painting-text-shadow-001-ref.html", "==" ] ], {} ] ], - "vlr-rtl-rtl-in-multicols.html": [ - "fefae97f354dbd6985046629d788e2195355e40e", + "highlight-currentcolor-painting-text-shadow-002.html": [ + "870243f5013b4a90f72787ee01c1631f374def1a", [ - "css/css-position/multicol/vlr-rtl-rtl-in-multicols.html", + null, [ [ - "/css/css-position/multicol/vlr-in-multicols-ref.html", + "/css/css-pseudo/highlight-cascade/highlight-currentcolor-painting-text-shadow-002-ref.html", "==" ] ], {} ] ], - "vrl-ltr-ltr-in-multicols.html": [ - "1d8390cd7cfe7d1ba554703ba79f2c141f1c275d", + "highlight-currentcolor-root-explicit-default-001.html": [ + "1869f8ab53fbc1434497ddd49a3b5a0d04b9e486", [ - "css/css-position/multicol/vrl-ltr-ltr-in-multicols.html", + null, [ [ - "/css/css-position/multicol/vrl-in-multicols-ref.html", + "/css/css-pseudo/highlight-cascade/highlight-currentcolor-root-explicit-default-001-ref.html", "==" ] ], {} ] ], - "vrl-ltr-rtl-in-multicols.tentative.html": [ - "9806e9c932a28b26bf85d88e4c71afd9bfa93a3e", + "highlight-currentcolor-root-explicit-default-002.html": [ + "fe6d80be2e93ec9991209b19743655bbb0beb82f", [ - "css/css-position/multicol/vrl-ltr-rtl-in-multicols.tentative.html", + null, [ [ - "/css/css-position/multicol/vrl-in-multicols-ref.html", + "/css/css-pseudo/highlight-cascade/highlight-currentcolor-root-explicit-default-002-ref.html", "==" ] ], {} ] ], - "vrl-rtl-ltr-in-multicols.tentative.html": [ - "091f678158a45b08908b11d80611b980a8838a3f", + "highlight-currentcolor-root-implicit-default-001.html": [ + "ecf787b9b41a3c684ea2d1175aafa9049c097f84", [ - "css/css-position/multicol/vrl-rtl-ltr-in-multicols.tentative.html", + null, [ [ - "/css/css-position/multicol/vrl-in-multicols-ref.html", + "/css/css-pseudo/highlight-cascade/highlight-currentcolor-root-implicit-default-ref.html", "==" ] ], {} ] ], - "vrl-rtl-rtl-in-multicols.html": [ - "b402d08fae2c28ccadf607eda5f6fbb3bbd6b709", + "highlight-currentcolor-root-implicit-default-002.html": [ + "420cc5ba15e2f83e475db36f9574e2401a5c1217", [ - "css/css-position/multicol/vrl-rtl-rtl-in-multicols.html", + null, [ [ - "/css/css-position/multicol/vrl-in-multicols-ref.html", + "/css/css-pseudo/highlight-cascade/highlight-currentcolor-root-implicit-default-ref.html", "==" ] ], {} ] - ] - }, - "overlay": { - "overlay-transition-backdrop-entry.html": [ - "8737dc58f92ae012abd9b42785450a1c22b4c35b", + ], + "highlight-paired-cascade-001.html": [ + "7f370238dfa450d6d0f3f9fe9ed24202bb06fcf6", [ - "css/css-position/overlay/overlay-transition-backdrop-entry.html", + null, [ [ - "/css/css-position/overlay/green-ref.html", + "/css/css-pseudo/highlight-cascade/highlight-paired-cascade-001-ref.html", "==" ] ], {} ] ], - "overlay-transition-backdrop.html": [ - "898b6b2e0f0c26e9ed7af687b3471b7e2ade122f", + "highlight-paired-cascade-002.html": [ + "626fc57558d1eae8593e58e1ace2fbda7b47ed59", [ - "css/css-position/overlay/overlay-transition-backdrop.html", + null, [ [ - "/css/css-position/overlay/green-ref.html", + "/css/css-pseudo/highlight-cascade/highlight-paired-cascade-002-ref.html", "==" ] ], {} ] ], - "overlay-transition-dialog.html": [ - "0e1297cce75dc7ac6ee02d1160531fcbf83c04f9", + "highlight-paired-cascade-003.html": [ + "8c621cc777c187902f286e977568f0aced8dde52", [ - "css/css-position/overlay/overlay-transition-dialog.html", + null, [ [ - "/css/css-position/overlay/overlay-transition-dialog-ref.html", + "/css/css-pseudo/highlight-cascade/highlight-paired-cascade-003-ref.html", "==" ] ], {} ] ], - "overlay-transition-finished.html": [ - "7e22cb3cf64b9f4840573f35495aa9ed22918f1b", + "highlight-paired-cascade-004.html": [ + "0a73d006b559fc16cde5b09a1d8af9d2c1248088", [ - "css/css-position/overlay/overlay-transition-finished.html", + null, [ [ - "/css/css-position/overlay/green-ref.html", - "==" + "/css/css-pseudo/highlight-cascade/highlight-paired-cascade-004-notref.html", + "!=" ] ], {} ] ], - "overlay-transition-in-rendering.html": [ - "0ada33c33cec13f57fa71a26d8e5bf1017125831", + "highlight-paired-cascade-005.html": [ + "4ee6db3a091536c6b2fbc15314728743c01230bf", [ - "css/css-position/overlay/overlay-transition-in-rendering.html", + null, [ [ - "/css/css-position/overlay/green-ref.html", + "/css/css-pseudo/highlight-cascade/highlight-paired-cascade-005-ref.html", "==" ] ], {} ] ], - "overlay-transition-out-rendering.html": [ - "abb01faef7ea994f4abb826ba590031472acbf22", + "highlight-paired-cascade-006.html": [ + "bef3601ccbf833890a3284cd25e3232b9fe72517", [ - "css/css-position/overlay/overlay-transition-out-rendering.html", + null, [ [ - "/css/css-position/overlay/green-ref.html", + "/css/css-pseudo/highlight-cascade/highlight-paired-cascade-006-ref.html", "==" ] ], @@ -223474,9745 +224423,6973 @@ ] ] }, - "position-absolute-center-001.html": [ - "13af3f0e9f7184155b7edf09fb7a7a5580238fb2", + "highlight-custom-properties-dynamic-001.html": [ + "836ef546fa60509b98e43429ec42cb05293fb562", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-pseudo/highlight-custom-properties-dynamic-001-ref.html", "==" ] ], {} ] ], - "position-absolute-center-002.html": [ - "825143521a2354839c078350647684467621a9d8", + "highlight-painting-001.html": [ + "ef253e6117c94ef63f9be97eaac0d94667c9fce3", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-pseudo/highlight-painting-001-ref.html", "==" ] ], {} ] ], - "position-absolute-center-003.html": [ - "187fae6fabd148e665dbd8bbcd8bd4e074717b5b", + "highlight-painting-002.html": [ + "a00f64d5b659f59945b7b6d7586f7fbdbfcb2149", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-pseudo/highlight-painting-002-ref.html", "==" ] ], {} ] ], - "position-absolute-center-004.html": [ - "b4922ef77e9aeb0d6c0479a01f40df2df9b6a860", + "highlight-painting-003.html": [ + "1e9fa030c0920a99d2c3dea87a96e8721038d5e9", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-pseudo/highlight-painting-003-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 50 + ], + [ + 0, + 300 + ] + ] + ] + ] + } ] ], - "position-absolute-center-006.html": [ - "cd7fb566264e0fadc8e682098da5e32d7f112a04", + "highlight-painting-004.html": [ + "41425e5f14e80b31d8bd7e0dcd9c05709137330b", [ - "css/css-position/position-absolute-center-006.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-pseudo/highlight-painting-004-ref1.html", + "==" + ], + [ + "/css/css-pseudo/highlight-painting-004-ref2.html", + "==" + ], + [ + "/css/css-pseudo/highlight-painting-004-ref3.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 50 + ], + [ + 0, + 320 + ] + ] + ] + ] + } ] ], - "position-absolute-center-007.html": [ - "690f3bedf6c9f435095b2da5750f817feb4d8f92", + "highlight-painting-currentcolor-001.html": [ + "92f9d1c96d875e3cdb532831890dd90d03334fb2", [ - "css/css-position/position-absolute-center-007.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-pseudo/highlight-painting-currentcolor-001-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 120 + ], + [ + 0, + 10 + ] + ] + ] + ] + } ] ], - "position-absolute-dynamic-auto-overflow.html": [ - "142af95a34b07f90f6b7d5bdd62b837c96ef849a", + "highlight-painting-currentcolor-001a.html": [ + "125a76760a3d187832fc36268a13cd49f479f599", [ - "css/css-position/position-absolute-dynamic-auto-overflow.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-pseudo/highlight-painting-currentcolor-001a-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 120 + ], + [ + 0, + 10 + ] + ] + ] + ] + } ] ], - "position-absolute-dynamic-list-marker.html": [ - "2e233e882e9469950385ed71515249023fda5733", + "highlight-painting-currentcolor-002.html": [ + "dcbec06439c70a87a63a8b6511020ea7fc3bc787", [ - "css/css-position/position-absolute-dynamic-list-marker.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-pseudo/highlight-painting-currentcolor-002-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 120 + ], + [ + 0, + 10 + ] + ] + ] + ] + } ] ], - "position-absolute-dynamic-overflow-001.html": [ - "c07919b90f61d8446c53b01e249ad65095202c51", + "highlight-painting-currentcolor-002a.html": [ + "be31b013c3c3748da276b79b1de06aec9729adfb", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-pseudo/highlight-painting-currentcolor-002a-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 120 + ], + [ + 0, + 10 + ] + ] + ] + ] + } ] ], - "position-absolute-dynamic-overflow-002.html": [ - "0c3d36275b2cfc687cd68dd06469799b31fa6f3b", + "highlight-painting-currentcolor-002b.html": [ + "014ddb085f563ea5a28de310523090136ef0351c", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-pseudo/highlight-painting-currentcolor-002b-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 120 + ], + [ + 0, + 10 + ] + ] + ] + ] + } ] ], - "position-absolute-dynamic-relayout-001.html": [ - "1bde15551e7952cce210463d156217a51d3f30f3", + "highlight-painting-currentcolor-003.html": [ + "bfab5694c86918f572b6afc359c6c1daac7e3643", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-pseudo/highlight-painting-currentcolor-003-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 120 + ], + [ + 0, + 10 + ] + ] + ] + ] + } ] ], - "position-absolute-dynamic-relayout-002.html": [ - "4dc2dc0f803dd657c90e62529f7f37f6a1efc108", + "highlight-painting-currentcolor-003a.html": [ + "dd471c96007326d4597ed76f0e8fd3e9f6609e31", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-pseudo/highlight-painting-currentcolor-003a-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 120 + ], + [ + 0, + 10 + ] + ] + ] + ] + } ] ], - "position-absolute-dynamic-relayout-003.html": [ - "8b7556b1f339f6e8db00c17d8f9382b3a37a1658", + "highlight-painting-currentcolor-003b.html": [ + "51e643ec68bb133cd7c03bb63c4aef67870f5c37", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-pseudo/highlight-painting-currentcolor-003b-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 120 + ], + [ + 0, + 10 + ] + ] + ] + ] + } ] ], - "position-absolute-dynamic-relayout-004.html": [ - "b94a8cdbfffe2df7f445d7a8d76b0b02ead826ec", + "highlight-painting-currentcolor-004.html": [ + "d9cce5b08045125c698da421250d772b6d290d44", [ - "css/css-position/position-absolute-dynamic-relayout-004.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-pseudo/highlight-painting-currentcolor-004-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 120 + ], + [ + 0, + 10 + ] + ] + ] + ] + } ] ], - "position-absolute-dynamic-static-position-flex.html": [ - "37e6fed3515fa56031fea43aa141cedea0ace117", + "highlight-painting-currentcolor-004a.html": [ + "0ac021c156bd279750266c50ff0476b77c48083d", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-pseudo/highlight-painting-currentcolor-004a-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 120 + ], + [ + 0, + 10 + ] + ] + ] + ] + } ] ], - "position-absolute-dynamic-static-position-floats-001.html": [ - "a63df41089e7e75d33ee1f46d458e97c8ebf0fb0", + "highlight-painting-currentcolor-004b.html": [ + "856c2232b71b7b48512d7b12c137e579a0f5ef36", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-pseudo/highlight-painting-currentcolor-004b-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 120 + ], + [ + 0, + 10 + ] + ] + ] + ] + } ] ], - "position-absolute-dynamic-static-position-floats-002.html": [ - "49e3807224fcf034e51c1734c60cca34ea24d300", + "highlight-painting-currentcolor-005.html": [ + "f5c15aafa99ac5b068bbf267bb8ea3583d7ba79a", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-pseudo/highlight-painting-currentcolor-005-ref.html", "==" ] ], {} ] ], - "position-absolute-dynamic-static-position-floats-003.html": [ - "fa7cc695c361f5b43300b42f3c5872e89b5c0879", + "highlight-painting-shadows-horizontal.html": [ + "b1762e85ae31fc6dc640fd038ec0edf7ee7d4e25", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-pseudo/highlight-painting-shadows-horizontal-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 32 + ], + [ + 0, + 20 + ] + ] + ] + ] + } ] ], - "position-absolute-dynamic-static-position-floats-004.html": [ - "3ccd1462fd1530e29b43b3710b0708d270818a8f", + "highlight-painting-shadows-vertical.html": [ + "7187c34da4495fbaded9b9986e5a26889fde6beb", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-pseudo/highlight-painting-shadows-vertical-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 32 + ], + [ + 0, + 4 + ] + ] + ] + ] + } ] ], - "position-absolute-dynamic-static-position-inline.html": [ - "c0f9ac07188f1e49e869ac65f8a075f4827a6cb8", + "highlight-painting-soft-hyphens-001.html": [ + "17b5f6a37c4c2489959f41bed4ca53c352a20a4d", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-pseudo/highlight-painting-soft-hyphens-001-ref.html", "==" ] ], {} ] ], - "position-absolute-dynamic-static-position-margin-001.html": [ - "78b0ced9df2fd0ea299a7cc35e9ca0c360f453fa", + "highlight-styling-001.html": [ + "7fe76d19380caff7ed1efe3e5023d629dcb0f96a", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-pseudo/highlight-styling-001-ref.html", "==" ] ], {} ] ], - "position-absolute-dynamic-static-position-margin-002.html": [ - "98b18efcf96d12581583b7a74b1437b41aaa9a2f", + "highlight-styling-002.html": [ + "351eacac8852f8bd6d982e30f07d8f3f269e85cc", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-pseudo/highlight-styling-002-ref.html", "==" ] ], {} ] ], - "position-absolute-dynamic-static-position-table-cell.html": [ - "3a28b205f243df84190cec492dabad239b0a3d66", + "highlight-styling-003.tentative.html": [ + "70d3dc63e520816471f91fa2b5a8b61b50b8ebe3", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-pseudo/highlight-styling-003-ref.html", "==" ] ], {} ] ], - "position-absolute-dynamic-static-position.html": [ - "35d5f65055d09b377e55a7d3e5dcaf8d3b609a39", + "highlight-z-index-001.html": [ + "45b83ae81e89df855b6f104ae0beff7dc7a8d9f7", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-pseudo/highlight-z-index-001-ref.html", "==" ] ], {} ] ], - "position-absolute-fieldset.html": [ - "b212e627ae13dc32080936512a85d72367d3dad3", + "highlight-z-index-002.html": [ + "26c965086546f48d9d1736901e558f94cc5c7ece", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-pseudo/highlight-z-index-002-ref.html", "==" ] ], {} ] ], - "position-absolute-fit-content.html": [ - "a84cc043811607df5bb22f06d769701927631512", + "marker-and-other-pseudo-elements.html": [ + "f393db58fe8a9acd9e52494c4cea56b18c636535", [ - "css/css-position/position-absolute-fit-content.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-pseudo/marker-and-other-pseudo-elements-ref.html", "==" ] ], {} ] ], - "position-absolute-iframe-print-001.sub.html": [ - "853ad9e9fcb6e2e006a5568e4b2a05dd29fb18b3", + "marker-animate-002.html": [ + "0ed8dbf05e4a9a26ae584b7ccb020cdcd78427fa", [ - "css/css-position/position-absolute-iframe-print-001.sub.html", + null, [ [ - "/css/css-position/position-absolute-iframe-print-ref.html", + "/css/css-pseudo/marker-animate-002-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 255 - ], - [ - 0, - 20 - ] - ] - ] - ] - } + {} ] ], - "position-absolute-iframe-print-002.sub.html": [ - "b47616d1c1f5b184b1597078cfe387dc044a188f", + "marker-color.html": [ + "d45c76696eca826456988d7884adcaa52bfad9cd", [ - "css/css-position/position-absolute-iframe-print-002.sub.html", + null, [ [ - "/css/css-position/position-absolute-iframe-print-ref.html", + "/css/css-pseudo/marker-color-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 255 - ], - [ - 0, - 20 - ] - ] - ] - ] - } + {} ] ], - "position-absolute-in-inline-003.html": [ - "25fb2bb6dafdf282ce3784401337e17171a40dc0", + "marker-content-001.html": [ + "5e5bfe1c23abc34c28e3af1504bce8420407f162", [ - "css/css-position/position-absolute-in-inline-003.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-pseudo/marker-content-001-ref.html", "==" ] ], {} ] ], - "position-absolute-in-inline-004.html": [ - "d5b2530643ceaf661df64be3c80b374a46e8af8a", + "marker-content-001b.html": [ + "6ab87a31d802601297715b64561c74b6cb04c81b", [ - "css/css-position/position-absolute-in-inline-004.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-pseudo/marker-content-001-ref.html", "==" ] ], {} ] ], - "position-absolute-large-negative-inset.html": [ - "ed17ea91d5e134d097fca9a600ee3f97872a1e00", + "marker-content-001c.html": [ + "0a32b2ada03593635fda4bae45fc97845fb28ab8", [ null, [ [ - "/css/css-position/position-absolute-large-negative-inset-ref.html", + "/css/css-pseudo/marker-content-001-ref.html", "==" ] ], {} ] ], - "position-absolute-multicol-001.html": [ - "08132188cece2b913187e9662d577c319de02cb3", + "marker-content-002.html": [ + "4c46c4b0b01bfeae7c473f3507d920d7229a64cb", [ null, [ [ - "/css/reference/pass_if_pass_below.html", + "/css/css-pseudo/marker-content-002-ref.html", "==" ] ], {} ] ], - "position-absolute-replaced-intrinsic-size.tentative.html": [ - "4e2ecb63abbb990ec565012c87160de046bbe7bf", + "marker-content-003.html": [ + "b4a41ce6d87ef464a525a9252c2ffc8d824bf901", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-pseudo/marker-content-003-ref.html", "==" ] ], {} ] ], - "position-absolute-replaced-no-intrinsic-size.tentative.html": [ - "5dfa0c75d639e3a0951b58a99756256167c2c999", + "marker-content-003b.html": [ + "da7a2723ce32fae72092795cb30cd2e33709ca5d", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-pseudo/marker-content-003-ref.html", "==" ] ], {} ] ], - "position-absolute-replaced-with-display-table.html": [ - "9a966b931524a806bc08767905ea43be00f30094", + "marker-content-004.html": [ + "24dbaae123cce2882324b59c395d049a8ab7600e", [ null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-pseudo/marker-content-004-ref.html", "==" ] ], {} ] ], - "position-absolute-root-element-flex.html": [ - "ed1e4903d807276246f2e212c6c2dd10d349739a", + "marker-content-005.html": [ + "ad37a65738f98fe4daf2cf0c11b1bb1ed2cd3b60", [ null, [ [ - "/css/css-position/position-absolute-root-element-ref.html", + "/css/css-pseudo/marker-content-005-ref.html", "==" ] ], {} ] ], - "position-absolute-root-element-grid.html": [ - "1a813b3a2301f02f833d1b82fd0abb0a91096eab", + "marker-content-006.html": [ + "bf941ef3b1e83d36daa912f1cd7d3259a6519211", [ null, [ [ - "/css/css-position/position-absolute-root-element-ref.html", + "/css/css-pseudo/marker-content-006-ref.html", "==" ] ], {} ] ], - "position-absolute-semi-replaced-stretch-button.html": [ - "fbcdbec51b63f2dc2eab281797b505e9586d8072", + "marker-content-007.tentative.html": [ + "fb452666e3c16094945ea5212e66cf04914f47f4", [ null, [ [ - "/css/css-position/position-absolute-semi-replaced-stretch-button-ref.html", + "/css/css-pseudo/marker-content-007-ref.html", "==" ] ], {} ] ], - "position-absolute-semi-replaced-stretch-input.html": [ - "6080f63c1019940bc702fae37a43041719863198", + "marker-content-008.tentative.html": [ + "155b50ab6f0a9f633adbb65aaac0fd5fbdebb066", [ null, [ [ - "/css/css-position/position-absolute-semi-replaced-stretch-input-ref.html", + "/css/css-pseudo/marker-content-008-ref.html", "==" ] ], {} ] ], - "position-absolute-semi-replaced-stretch-other.html": [ - "21fc2c84e3d65863dc717b3dea3c82ecbc9dd097", + "marker-content-009.tentative.html": [ + "b3627cca7554076f85d59869eec7bc80e39b82be", [ null, [ [ - "/css/css-position/position-absolute-semi-replaced-stretch-other-ref.html", + "/css/css-pseudo/marker-content-009-ref.html", "==" ] ], {} ] ], - "position-absolute-under-non-containing-stacking-context.html": [ - "444f125767858827f220669a7088fe228626072e", + "marker-content-010.html": [ + "dcd27df148ae4f865402f1e85b7df4cdd195be5b", [ null, [ [ - "/css/css-position/position-absolute-under-non-containing-stacking-context-ref.html", + "/css/css-pseudo/marker-content-010-ref-001.html", + "==" + ], + [ + "/css/css-pseudo/marker-content-010-ref-002.html", "==" ] ], {} ] ], - "position-change.html": [ - "c5b5069eb91596772c3ae403fc512aeca081d457", + "marker-content-011.tentative.html": [ + "0cc20b0cdcd242021bc37b9e2d3500ed21c5b35f", [ null, [ [ - "/css/css-position/position-change-ref.html", + "/css/css-pseudo/marker-content-011-ref.html", "==" ] ], {} ] ], - "position-fixed-dynamic-transformed-sibling.html": [ - "50c464812df2a4c7fcb8985db82baa49b90759f4", + "marker-content-012.html": [ + "f36228719a0656e822892661e83a23a8382c742c", [ null, [ [ - "/css/css-position/position-fixed-dynamic-transformed-sibling-ref.html", + "/css/css-pseudo/marker-content-012-ref.html", "==" ] ], {} ] ], - "position-fixed-root-element-flex.html": [ - "69c95da519b01acc1cd0b8a2f5a33bdf2bbd05fe", + "marker-content-013.html": [ + "3b2ce6fa50abac5cd44a75880eb18dad3aae485c", [ null, [ [ - "/css/css-position/position-fixed-root-element-ref.html", + "/css/css-pseudo/marker-content-013-ref.html", "==" ] ], {} ] ], - "position-fixed-root-element-grid.html": [ - "4deebf405c8282c6539925994d709d388c688ae5", + "marker-content-014.html": [ + "f1ebbe86c4f1f93e33ded979455458b65236414e", [ null, [ [ - "/css/css-position/position-fixed-root-element-ref.html", + "/css/css-pseudo/marker-content-014-ref.html", "==" ] ], {} ] ], - "position-fixed-scroll-nested-fixed.html": [ - "64586a207ed4b96c8e803f262e98e387f217f63a", + "marker-content-015.html": [ + "6e1ec40af1d85c9f34ccb315649b67438a5dcf37", [ null, [ [ - "/css/css-position/position-fixed-scroll-nested-fixed-ref.html", + "/css/css-pseudo/marker-content-015-ref.html", "==" ] ], {} ] ], - "position-fixed-scroll-overlap.html": [ - "3bfcf83761f3fec82589374ee4e3daa220a69e2c", + "marker-content-016.html": [ + "9a0585db72206768e2a7ed77f9245f67103d587b", [ null, [ [ - "/css/css-position/position-fixed-scroll-overlap-ref.html", + "/css/css-pseudo/marker-content-016-ref.html", "==" ] ], {} ] ], - "position-relative-001.html": [ - "7ec9e4f767b4548e52e92b358b59e51376dea389", + "marker-content-017.html": [ + "267e519feee6541596f11310e2075419e13cffc2", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-pseudo/marker-content-017-ref.html", "==" ] ], {} ] ], - "position-relative-002.html": [ - "7e176be987e7d6cb52bfa79ef58ec1ee93634375", + "marker-content-018.html": [ + "0a4a73cd5056415084f9579a2323318c58f1a167", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-pseudo/marker-content-018-ref.html", "==" ] ], {} ] ], - "position-relative-003.html": [ - "7a0040c40b534da6367fcc0d0a94ac3f7650bc50", + "marker-content-019.html": [ + "4921ca7d283e99ea426772ffc47b3a9c86329e9a", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-pseudo/marker-content-019-ref.html", "==" ] ], {} ] ], - "position-relative-004.html": [ - "aac4520f728bb833b2ecaaf5c1a03e904e333040", + "marker-content-020.html": [ + "5211506d8a17ce278407d2337d760b16f3fd34be", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-pseudo/marker-content-020-ref.html", "==" ] ], {} ] ], - "position-relative-005.html": [ - "f1ad0846741704285603dff9d719790676f9e9fe", + "marker-content-021.html": [ + "fc3fe851e9713add5fd6eaa8fc4b50da107f60dc", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-pseudo/marker-content-021-ref.html", "==" ] ], {} ] ], - "position-relative-006.html": [ - "545edc990b9ff89ddcb5bbf09dc0b8c8d8238888", + "marker-content-022.html": [ + "56863bee704baa9c2ee34dda63131cb53a84d75f", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-pseudo/marker-content-022-ref.html", "==" ] ], {} ] ], - "position-relative-007.html": [ - "2425514f308afebd3ce32ae6e04c57077428c05e", + "marker-content-023.html": [ + "9ec0ca46e4290dad6b9e3456b76602d05ab5e7c0", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-pseudo/marker-content-023-ref.html", "==" ] ], {} ] ], - "position-relative-008.html": [ - "e2c7c02bbdf803fa73745b08b21db250b49c088b", + "marker-content-024.html": [ + "8a6ab0b5a7cc8516f5e2d4abbbd6e41fe8acd8b5", [ - "css/css-position/position-relative-008.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-pseudo/marker-content-024-ref.html", "==" ] ], {} ] ], - "position-relative-009.html": [ - "5f4093d75a6fd53da63db5d3f4f1a4416fb7183b", + "marker-display-dynamic-001.html": [ + "c06da7ca803455559a7a12b915d9083b32106cd1", [ - "css/css-position/position-relative-009.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-pseudo/marker-color-ref.html", "==" ] ], {} ] ], - "position-relative-010.html": [ - "40697357991e5d7f49f51e45dc2fe357982a2625", + "marker-font-properties.html": [ + "4dd780679845a34699f31febd927dc3b774a5ffd", [ - "css/css-position/position-relative-010.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-pseudo/marker-font-properties-ref.html", "==" ] ], {} ] ], - "position-relative-011.html": [ - "aaf7492a8b6e776a947dee6cc49b5ea04879766a", + "marker-font-variant-numeric-default-ref.html": [ + "be932213b0f1657524df67788130c09f3602cf80", [ - "css/css-position/position-relative-011.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", - "==" + "/css/css-pseudo/marker-font-variant-numeric-normal-ref.html", + "!=" ] ], {} ] ], - "position-relative-012.html": [ - "c2debe1af986647e6e411f5e40aa382c55e5912c", + "marker-font-variant-numeric-default.html": [ + "21840697c77dfac18f0cbbcc5d15ec6b529c05d5", [ - "css/css-position/position-relative-012.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-pseudo/marker-font-variant-numeric-default-ref.html", "==" ] ], {} ] ], - "position-relative-013.html": [ - "94888b158f66145b5b3bcecd2131f48c0214c959", + "marker-font-variant-numeric-normal-ref.html": [ + "b730a24e55a46d307afc0fe41d4517d65e44046f", + [ + null, + [ + [ + "/css/css-pseudo/marker-font-variant-numeric-default-ref.html", + "!=" + ] + ], + {} + ] + ], + "marker-font-variant-numeric-normal.html": [ + "e763f2871cc109dbdd21fab5cd666327e9875518", [ - "css/css-position/position-relative-013.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-pseudo/marker-font-variant-numeric-normal-ref.html", "==" ] ], {} ] ], - "position-relative-014.html": [ - "88edec0255ccc4dcadb531e17cc7660f04b2901a", + "marker-hyphens.html": [ + "a63e3deaf9be852bf4233eddf21c5b24b8747ee3", [ - "css/css-position/position-relative-014.html", + null, [ [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-pseudo/marker-hyphens-ref.html", "==" ] ], {} ] ], - "position-relative-table-caption.html": [ - "20ff62888008d0b344a6dfab01a0dee1aa173347", + "marker-inherit-line-height.html": [ + "de34c2f7ae33654f6b19d65ba7b2acdf0bfc7b0f", [ null, [ [ - "/css/css-position/position-relative-table-top-ref.html", + "/css/css-pseudo/marker-inherit-line-height-ref.html", "==" ] ], {} ] ], - "position-relative-table-tbody-left-absolute-child.html": [ - "98e759a8c0a83817b3d691503e807ed5ed549936", + "marker-inherit-values.html": [ + "82456afb6c6058a209ddb8bbcee523a900665dee", [ null, [ [ - "/css/css-position/position-relative-table-left-ref.html", + "/css/css-pseudo/marker-inherit-values-ref.html", "==" ] ], {} ] ], - "position-relative-table-tbody-left.html": [ - "e58de1053883a24dfb3d189966a9814050851f8c", + "marker-intrinsic-contribution-002.html": [ + "1430270b3463185763a9dffd4d717614525edb93", [ null, [ [ - "/css/css-position/position-relative-table-left-ref.html", + "/css/css-pseudo/marker-intrinsic-contribution-002-ref.html", "==" ] ], {} ] ], - "position-relative-table-tbody-top-absolute-child.html": [ - "44daea4c1b29f569d1c438314b48e7bda6298a17", + "marker-letter-spacing.html": [ + "8a89e1792159a6bf9b364aba96464c5f4eb91547", [ null, [ [ - "/css/css-position/position-relative-table-top-ref.html", + "/css/css-pseudo/marker-letter-spacing-ref-001.html", + "==" + ], + [ + "/css/css-pseudo/marker-letter-spacing-ref-002.html", "==" ] ], {} ] ], - "position-relative-table-tbody-top.html": [ - "a958de82372366720b9c5ad0dbb6f56f5023ad45", + "marker-line-break.html": [ + "7577822bce32335d6993d15f22850b95267d7e3b", [ null, [ [ - "/css/css-position/position-relative-table-top-ref.html", + "/css/css-pseudo/marker-line-break-ref.html", "==" ] ], {} ] ], - "position-relative-table-td-left.html": [ - "0b87d62163aa6ffef1a826d6d6f932fdf57697fb", + "marker-line-height.html": [ + "ee32f3bb6d6135b02a25a3bb5d48110053bd4347", [ null, [ [ - "/css/css-position/position-relative-table-left-ref.html", + "/css/css-pseudo/marker-line-height-ref.html", "==" ] ], {} ] ], - "position-relative-table-td-top.html": [ - "dfd86798223e656da2cb8e3b7751f47c18c25b75", + "marker-list-style-position.html": [ + "9b122bc3e9b6200fbf33c1c7d3da2ba155ff1691", [ null, [ [ - "/css/css-position/position-relative-table-top-ref.html", + "/css/css-pseudo/marker-list-style-position-ref-001.html", + "==" + ], + [ + "/css/css-pseudo/marker-list-style-position-ref-002.html", "==" ] ], {} ] ], - "position-relative-table-tfoot-left-absolute-child.html": [ - "9833aab71c8b2cc5bb4b74b1d40acdd894bcb193", + "marker-overflow-wrap.html": [ + "29d9cf778493b365ec088c124cfe8b0e77b3c215", [ null, [ [ - "/css/css-position/position-relative-table-left-ref.html", + "/css/css-pseudo/marker-line-break-ref.html", "==" ] ], {} ] ], - "position-relative-table-tfoot-left.html": [ - "5b72f3bec6bb2e9e4f798b776aadae07bb2d50a7", + "marker-tab-size.html": [ + "a521f58bc80c4445ac61714a4f099b7dadfbee4a", [ null, [ [ - "/css/css-position/position-relative-table-left-ref.html", + "/css/css-pseudo/marker-tab-size-ref.html", "==" ] ], {} ] ], - "position-relative-table-tfoot-top-absolute-child.html": [ - "e98712b22bb62a14709ddcbd1b6ee5a8ba1a273d", + "marker-text-align-001.html": [ + "5ef1d8d75d78f25854b43b259eae43f1f21efa8f", [ null, [ [ - "/css/css-position/position-relative-table-tfoot-top-ref.html", + "/css/css-pseudo/marker-text-align-001-ref.html", "==" ] ], {} ] ], - "position-relative-table-tfoot-top.html": [ - "c55c04b2fabba75be982ce4267ce39cf801d7180", + "marker-text-align-002.html": [ + "6fe05b728d94873371c03a85c1cf5085790f94a9", [ null, [ [ - "/css/css-position/position-relative-table-tfoot-top-ref.html", + "/css/css-pseudo/marker-text-align-002-ref.html", "==" ] ], {} ] ], - "position-relative-table-thead-left-absolute-child.html": [ - "6619455b23cd6f46732fe9cfbc4382e032c0f6fe", + "marker-text-align-003.html": [ + "38c513d7ae15bd21b998c96617088487c02fb2e5", [ null, [ [ - "/css/css-position/position-relative-table-left-ref.html", + "/css/css-pseudo/marker-text-align-003-ref.html", "==" ] ], {} ] ], - "position-relative-table-thead-left.html": [ - "d604bc11a31c76987c16f8dec2d13dea7463915b", + "marker-text-combine-upright.html": [ + "64b37a0c7d4355c560cdf02f078ddd65f252b2d9", [ null, [ [ - "/css/css-position/position-relative-table-left-ref.html", + "/css/css-pseudo/marker-text-combine-upright-ref.html", "==" ] ], {} ] ], - "position-relative-table-thead-top-absolute-child.html": [ - "c2e2bf85a597dd2772087fa60bdec9e2d9ca2c5c", + "marker-text-decoration-skip-ink.html": [ + "153e9221a39bbba6f4401ca39b45505468c666ce", [ null, [ [ - "/css/css-position/position-relative-table-top-ref.html", + "/css/css-pseudo/marker-text-decoration-skip-ink-ref.html", "==" ] ], {} ] ], - "position-relative-table-thead-top.html": [ - "ae481313dbd969e402a375d4f7822198221ac06a", + "marker-text-emphasis.html": [ + "db9fb3d5257b2467c7178e7ab245598f80a6f54b", [ null, [ [ - "/css/css-position/position-relative-table-top-ref.html", + "/css/css-pseudo/marker-text-emphasis-ref.html", "==" ] ], {} ] ], - "position-relative-table-tr-left-absolute-child.html": [ - "ef812e4323d9d7a4a99dec1826b880f4930020f6", + "marker-text-shadow.html": [ + "3f8ae566f164f80f0487601b6292c283a8076e93", [ null, [ [ - "/css/css-position/position-relative-table-left-ref.html", + "/css/css-pseudo/marker-text-shadow-ref.html", "==" ] ], {} ] ], - "position-relative-table-tr-left.html": [ - "004b284cb755db03d47f3ec3d42bdcad1902cc36", + "marker-text-transform-default.html": [ + "922c5b0de27b3f4bd58765242e9027390d4eba77", [ null, [ [ - "/css/css-position/position-relative-table-left-ref.html", + "/css/css-pseudo/marker-text-transform-default-ref.html", "==" ] ], {} ] ], - "position-relative-table-tr-top-absolute-child.html": [ - "855080adc8ba580516eece5ce24f0f0cca01ff83", + "marker-text-transform-dynamic.html": [ + "f10b42ead6d77c30dc63d44efa19e73c56573c6c", [ null, [ [ - "/css/css-position/position-relative-table-top-ref.html", + "/css/css-pseudo/marker-text-transform-dynamic-ref.html", "==" ] ], {} ] ], - "position-relative-table-tr-top.html": [ - "92f95d44220f8892b202dfba4da25cd712750705", + "marker-text-transform-uppercase.html": [ + "d77f4e7de2e2507b34b836efd33b882a798069e8", [ null, [ [ - "/css/css-position/position-relative-table-top-ref.html", + "/css/css-pseudo/marker-text-transform-uppercase-ref.html", "==" ] ], {} ] ], - "static-position": { - "htb-ltr-ltr.html": [ - "5a19c0e9ccd5fa67e1df49e85da74a3a09d2fa15", + "marker-unicode-bidi-default-ref.html": [ + "c3c6ee8a63d3959b8be77935532d23393ce8b5e0", + [ + null, [ - null, [ - [ - "/css/css-position/static-position/htb-ref.html", - "==" - ] - ], - {} - ] - ], - "htb-ltr-rtl.tentative.html": [ - "de6ef1c6c1ccd2644c379300672164e40a0f83d2", + "/css/css-pseudo/marker-unicode-bidi-normal-ref.html", + "!=" + ] + ], + {} + ] + ], + "marker-unicode-bidi-default.html": [ + "e732009a57b993d4063d9e498f52670bfc78f1a1", + [ + null, [ - null, [ - [ - "/css/css-position/static-position/htb-ref.html", - "==" - ] - ], - {} - ] - ], - "htb-rtl-ltr.tentative.html": [ - "c3a3155a105b42effa76d81a2a8c13afa7930df9", + "/css/css-pseudo/marker-unicode-bidi-default-ref.html", + "==" + ] + ], + {} + ] + ], + "marker-unicode-bidi-normal-ref.html": [ + "292fd01bb3403f4d7ec6620869d47f5f7b4b60cc", + [ + null, [ - null, [ - [ - "/css/css-position/static-position/htb-ref.html", - "==" - ] - ], - {} - ] - ], - "htb-rtl-rtl.html": [ - "03ea18770a47a773fccbf47e57587c00d1a7fd5a", + "/css/css-pseudo/marker-unicode-bidi-default-ref.html", + "!=" + ] + ], + {} + ] + ], + "marker-unicode-bidi-normal.html": [ + "4cdc86522a5f0e1f1b0940bcd958903b87afda6a", + [ + null, [ - null, [ - [ - "/css/css-position/static-position/htb-ref.html", - "==" - ] - ], - {} - ] - ], - "inline-level-absolute-in-block-level-context-001.html": [ - "d6f8ed4e39ae3627cf91120b9d7679126fdaf016", + "/css/css-pseudo/marker-unicode-bidi-normal-ref.html", + "==" + ] + ], + {} + ] + ], + "marker-variable.html": [ + "eb349c98dfb26fec5917fe1be3c01e404cce5a65", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square-only.html", - "==" - ] - ], - {} - ] - ], - "inline-level-absolute-in-block-level-context-002.html": [ - "9b0f5c2beaf49036c4f669112a137c5ada66b610", + "/css/css-pseudo/marker-variable-ref.html", + "==" + ] + ], + {} + ] + ], + "marker-word-break.html": [ + "4e3aeaebd88159cd0ac7b9a48c31151c4da99d3f", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square-only.html", - "==" - ] - ], - {} - ] - ], - "inline-level-absolute-in-block-level-context-003.html": [ - "90db2d4f80d069c17cc490280e9ab82db8b61d9d", + "/css/css-pseudo/marker-word-break-ref.html", + "==" + ] + ], + {} + ] + ], + "marker-word-spacing.html": [ + "a98f0bd7763f5bec7ccbabfe521b80cf0d7bc263", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square-only.html", - "==" - ] - ], - {} - ] - ], - "inline-level-absolute-in-block-level-context-004.html": [ - "a6b13b26c8f4972800a1473ad24f0e2f32636a73", + "/css/css-pseudo/marker-word-spacing-ref.html", + "==" + ] + ], + {} + ] + ], + "outside-marker-paint-order.html": [ + "94d0c42eca8cffbd5637a1039028925c19e1f851", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square-only.html", - "==" - ] - ], - {} - ] - ], - "inline-level-absolute-in-block-level-context-005.html": [ - "481c83a757d43b267da8475750312214daacff3d", + "/css/css-pseudo/outside-marker-paint-order-ref.html", + "==" + ] + ], + {} + ] + ], + "placeholder-excluded-properties.html": [ + "dc5718164ce23a6cb35ba85644e6bc5f2f0dcc69", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square-only.html", - "==" - ] - ], - {} - ] - ], - "inline-level-absolute-in-block-level-context-006.html": [ - "de5322f81998d2705405906d2946fce352baea11", + "/css/css-pseudo/reference/placeholder-excluded-properties-ref.html", + "==" + ] + ], + {} + ] + ], + "placeholder-input-number.html": [ + "a557f1091ec29dd90cd4290cf96ac4752b04ff3f", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square-only.html", - "==" - ] - ], - {} - ] - ], - "inline-level-absolute-in-block-level-context-007.html": [ - "1168b1d2287c3e0797d64fcaeda5582a3976d475", + "/css/css-pseudo/placeholder-input-number-notref.html", + "!=" + ] + ], + {} + ] + ], + "selection-background-color-001.html": [ + "a416d31e186606bb6b8c9ee5a8ef987bcce5b844", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square-only.html", - "==" - ] - ], - {} - ] - ], - "inline-level-absolute-in-block-level-context-008.html": [ - "e10a7e191d3548b95b46d289ab57af6324581134", + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "selection-background-painting-order.html": [ + "a21cfe8ab732c365ebff20b072e00d3384a6506e", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square-only.html", - "==" - ] + "/css/css-pseudo/selection-background-painting-order-ref1.html", + "==" ], - {} - ] - ], - "inline-level-absolute-in-block-level-context-009.html": [ - "86102fa1d9955594a0e7a49d323d118f729131d9", - [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square-only.html", - "==" - ] - ], - {} - ] - ], - "inline-level-absolute-in-block-level-context-010.html": [ - "95d43b9cfb2b1719bc5f8015e3773a9971d483db", + "/css/css-pseudo/selection-background-painting-order-ref2.html", + "==" + ] + ], + {} + ] + ], + "selection-contenteditable-011.html": [ + "bbefe0910ffd7f797fbafc8267815322281ee084", + [ + null, [ - null, [ + "/css/css-pseudo/reference/selection-contenteditable-011-ref.html", + "==" + ] + ], + { + "fuzzy": [ [ - "/css/reference/ref-filled-green-100px-square-only.html", - "==" + null, + [ + [ + 0, + 5 + ], + [ + 0, + 255 + ] + ] ] - ], - {} - ] - ], - "inline-level-absolute-in-block-level-context-011.html": [ - "375566388ef6c88833e25241810c4e886aa5f3de", + ] + } + ] + ], + "selection-input-011.html": [ + "e5d1858b82f4fde1545e81b6725e321f4c82d1c1", + [ + null, [ - null, [ + "/css/css-pseudo/reference/selection-input-011-ref.html", + "==" + ] + ], + { + "fuzzy": [ [ - "/css/reference/ref-filled-green-100px-square-only.html", - "==" + null, + [ + [ + 0, + 5 + ], + [ + 0, + 255 + ] + ] ] - ], - {} - ] - ], - "inline-level-absolute-in-block-level-context-012.html": [ - "1972317822b945b2a70712884ddb2d39b924420e", + ] + } + ] + ], + "selection-intercharacter-011.html": [ + "3b73bd854afd425c4e2178e48304f7d82d5de738", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square-only.html", - "==" - ] - ], - {} - ] - ], - "inline-level-absolute-in-block-level-context-013.html": [ - "59541dd679e1c8ea192662f85bb19b85df3b30d5", + "/css/css-pseudo/reference/selection-intercharacter-011-ref.html", + "==" + ] + ], + {} + ] + ], + "selection-intercharacter-012.html": [ + "090697054a8e351c9e9822ee62f27384b9957958", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "inline-level-absolute-in-block-level-context-014.html": [ - "69416c1cd7988f5842f5074b143379c7b90163c2", + "/css/css-pseudo/reference/selection-intercharacter-012-ref.html", + "==" + ] + ], + {} + ] + ], + "selection-link-001.html": [ + "08bc5e7323992b8563b298a76ad63ef7beb7c3fd", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "vlr-ltr-ltr.html": [ - "992bb720f4ce34f8aa7f56391f8734ec3c392169", + "/css/css-pseudo/selection-link-001-ref.html", + "==" + ] + ], + {} + ] + ], + "selection-link-002.html": [ + "52c2ae1ec2a36ae18cd81a133b77ffe0a0a9d1f3", + [ + null, [ - "css/css-position/static-position/vlr-ltr-ltr.html", [ - [ - "/css/css-position/static-position/vlr-ref.html", - "==" - ] - ], - {} - ] - ], - "vlr-ltr-rtl.tentative.html": [ - "9491fb89a2286c318d496d9b2a978016b499249b", + "/css/css-pseudo/selection-link-002-ref.html", + "==" + ] + ], + {} + ] + ], + "selection-link-003.html": [ + "e935531997f076de2dce050350c4b47fce7f3194", + [ + null, [ - "css/css-position/static-position/vlr-ltr-rtl.tentative.html", [ - [ - "/css/css-position/static-position/vlr-ref.html", - "==" - ] - ], - {} - ] - ], - "vlr-rtl-ltr.tentative.html": [ - "e334ff74b8f9bfce07d6fdaba0b3c1e678ddf6fa", + "/css/css-pseudo/selection-link-003-ref.html", + "==" + ] + ], + {} + ] + ], + "selection-originating-decoration-color.html": [ + "7f03c19b6d0cb2562eba246c3c4282168573a7b2", + [ + null, [ - "css/css-position/static-position/vlr-rtl-ltr.tentative.html", [ - [ - "/css/css-position/static-position/vlr-ref.html", - "==" - ] - ], - {} - ] - ], - "vlr-rtl-rtl.html": [ - "45c8aa3c2675dbf35c2b49d4aad15edb297d201b", + "/css/css-pseudo/selection-originating-decoration-color-ref.html", + "==" + ] + ], + {} + ] + ], + "selection-originating-strikethrough-order.html": [ + "69d331b4571b493482b58a19202f6a734d87cb81", + [ + null, [ - "css/css-position/static-position/vlr-rtl-rtl.html", [ - [ - "/css/css-position/static-position/vlr-ref.html", - "==" - ] - ], - {} - ] - ], - "vrl-ltr-ltr.html": [ - "9e3c1306abf91be191e3df2b48acc971d179c4cd", + "/css/css-pseudo/selection-originating-strikethrough-order-ref.html", + "==" + ] + ], + {} + ] + ], + "selection-originating-underline-order.html": [ + "43141a0b6aa28c47b9fae0145426351a300af5ad", + [ + null, [ - "css/css-position/static-position/vrl-ltr-ltr.html", [ - [ - "/css/css-position/static-position/vrl-ref.html", - "==" - ] - ], - {} - ] - ], - "vrl-ltr-rtl.tentative.html": [ - "a0923f3b48bb5db0cacb9299d24422d13a2118ab", + "/css/css-pseudo/selection-originating-underline-order-ref.html", + "==" + ] + ], + {} + ] + ], + "selection-over-highlight-001.html": [ + "57078cf83b38e317c4c070347fe43c9e440ff6f9", + [ + null, [ - "css/css-position/static-position/vrl-ltr-rtl.tentative.html", [ - [ - "/css/css-position/static-position/vrl-ref.html", - "==" - ] - ], - {} - ] - ], - "vrl-rtl-ltr.tentative.html": [ - "29ae6a5f98f40504b56efcf15765dc76cdfec15a", + "/css/css-pseudo/selection-over-highlight-001-ref.html", + "==" + ] + ], + {} + ] + ], + "selection-overlay-and-grammar-001.html": [ + "19768c73897155fc03fa063aa9001c5b74521b6e", + [ + null, [ - "css/css-position/static-position/vrl-rtl-ltr.tentative.html", [ - [ - "/css/css-position/static-position/vrl-ref.html", - "==" - ] - ], - {} - ] - ], - "vrl-rtl-rtl.html": [ - "cfb411871897677f16ad7f01ea7a1f8139850b6d", + "/css/css-pseudo/reference/selection-overlay-and-grammar-001-ref.html", + "==" + ] + ], + {} + ] + ], + "selection-overlay-and-spelling-001.html": [ + "13f9a2caf8c7801bdd2e333716fe6e9867fa8749", + [ + null, [ - "css/css-position/static-position/vrl-rtl-rtl.html", [ - [ - "/css/css-position/static-position/vrl-ref.html", - "==" - ] - ], - {} - ] + "/css/css-pseudo/reference/selection-overlay-and-spelling-001-ref.html", + "==" + ] + ], + {} ] - }, - "sticky": { - "position-sticky-bottom-002.html": [ - "980de2e651b7ab5ed8ed06dadfcd9f89a138ba3d", + ], + "selection-paint-image.html": [ + "f5e2383ca8110d03c96e2e52f1701850c96f9962", + [ + null, [ - null, [ - [ - "/css/css-position/sticky/reference/position-sticky-bottom-002-ref.html", - "==" - ] - ], - {} - ] - ], - "position-sticky-bottom-003.html": [ - "649dfc9d364817bcca8ade55c3612c3b3e0bf7e5", + "/css/css-pseudo/selection-paint-image-notref.html", + "!=" + ] + ], + {} + ] + ], + "selection-textarea-011.html": [ + "0152b957c25fed4b8781d1e6a5b63e16ac7db8d7", + [ + null, [ - null, [ - [ - "/css/css-position/sticky/reference/position-sticky-bottom-002-ref.html", - "==" - ] - ], - {} - ] - ], - "position-sticky-change-top.html": [ - "6a327ccd567818c2267d808a890796724384726e", + "/css/css-pseudo/reference/selection-textarea-011-ref.html", + "==" + ] + ], + {} + ] + ], + "slider": { + "slider-fill-001.html": [ + "b318929438aa6ef1524b28019f86ee3b654da7a5", [ null, [ [ - "/css/css-position/sticky/position-sticky-change-top-ref.html", - "==" + "/css/css-pseudo/slider/slider-fill-001-notref.html", + "!=" ] ], {} ] ], - "position-sticky-child-multicolumn.html": [ - "14bb695f1a427e369bd9a8e9c6f761286ce195fd", + "slider-fill-002.html": [ + "84743dcda679761b4c777205002dbb1a2875cdd1", [ null, [ [ - "/css/css-position/sticky/position-sticky-child-multicolumn-ref.html", - "==" - ] - ], - {} - ] - ], - "position-sticky-contained-by-display-table.html": [ - "e9c016e9387204d64779c98bd695097e69d62568", - [ - "css/css-position/sticky/position-sticky-contained-by-display-table.html", - [ - [ - "/css/css-position/sticky/position-sticky-contained-by-display-table-ref.html", - "==" + "/css/css-pseudo/slider/slider-fill-002-notref.html", + "!=" ] ], {} ] ], - "position-sticky-escape-scroller-001.html": [ - "dd58327388fd903fc47fffd60a97a8a352118937", + "slider-fill-003.html": [ + "661c405e79196b075c6f7126d72392ff24e413a7", [ null, [ [ - "/css/css-position/sticky/position-sticky-escape-scroller-001-ref.html", - "==" + "/css/css-pseudo/slider/slider-fill-003-notref.html", + "!=" ] ], {} ] ], - "position-sticky-escape-scroller-002.html": [ - "225012b9ec8935e89f05db2627b50e75961f45d2", + "slider-thumb-001.html": [ + "ffac22647358e7d76bb4e91009139897f9704f65", [ null, [ [ - "/css/css-position/sticky/position-sticky-escape-scroller-002-ref.html", - "==" + "/css/css-pseudo/slider/slider-thumb-001-notref.html", + "!=" ] ], {} ] ], - "position-sticky-escape-scroller-003.html": [ - "434b2797055f42ebe3b73a0823060cf055e3c30b", + "slider-track-001.html": [ + "d46bb9410a95e91b7a931dad8e33ec489a385982", [ null, [ [ - "/css/css-position/sticky/position-sticky-escape-scroller-001-ref.html", - "==" + "/css/css-pseudo/slider/slider-track-001-notref.html", + "!=" ] ], {} ] ], - "position-sticky-escape-scroller-004.html": [ - "ed14d62ac44ed3d13efeb9d433ff3ffca34987a3", + "slider-track-002.html": [ + "db98e166da0919cce8a0dab3a602707dbe57b1c7", [ null, [ [ - "/css/css-position/sticky/position-sticky-escape-scroller-004-ref.html", - "==" + "/css/css-pseudo/slider/slider-track-002-notref.html", + "!=" ] ], {} ] ], - "position-sticky-fixed-ancestor-002.html": [ - "dc3c383ea5e9c89498898ce9f53af273dbfbc51d", + "slider-track-003.html": [ + "5a5096770bebbdc8c48fd0c1399de220e2262acd", [ null, [ [ - "/css/css-position/sticky/reference/position-sticky-fixed-ancestor-002-ref.html", - "==" + "/css/css-pseudo/slider/slider-track-003-notref.html", + "!=" ] ], {} ] - ], - "position-sticky-fixed-ancestor-003.html": [ - "382112cae42f1391d7bb4f55c413f29f04b64c49", + ] + }, + "spelling-error-001.html": [ + "1654611bd107c99faa562046f4ae4d5bb10f8d3e", + [ + null, [ - null, [ - [ - "/css/css-position/sticky/reference/position-sticky-fixed-ancestor-002-ref.html", - "==" - ] - ], - {} - ] - ], - "position-sticky-fixed-ancestor-iframe.html": [ - "e50f5c829b6bcee84385083648bca5cc145e1e37", + "/css/css-pseudo/spelling-error-001-ref.html", + "==" + ] + ], + {} + ] + ], + "spelling-error-006.html": [ + "e5e99f4260d1bbb486a26a8e94ea46d95b311efd", + [ + null, [ - null, [ - [ - "/css/css-position/sticky/position-sticky-fixed-ancestor-iframe-ref.html", - "==" - ] - ], - {} - ] - ], - "position-sticky-fixed-ancestor.html": [ - "52760992b111fb41d849cad05fb761a328548f6b", + "/css/css-pseudo/spelling-error-006-notref.html", + "!=" + ] + ], + {} + ] + ], + "svg-text-selection-002.html": [ + "c25946d3943babf2509453670278515bf070f6c7", + [ + null, [ - null, [ - [ - "/css/css-position/sticky/position-sticky-fixed-ancestor-ref.html", - "==" - ] - ], - {} - ] - ], - "position-sticky-flex-item-001.html": [ - "1b1f9d0afbf34f22da16a9fed3414d2e8373af1b", + "/css/css-pseudo/reference/svg-text-selection-002-ref.html", + "==" + ] + ], + {} + ] + ], + "target-text-001.html": [ + "6fa529aef90ebfda8cacbaa05f481b9f94df358f", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "position-sticky-flex-item-002.html": [ - "5b4c81df673dba37c1410a36dca8fc8785a825e1", + "/css/css-pseudo/target-text-lime-green-ref.html", + "==" + ] + ], + {} + ] + ], + "target-text-002.html": [ + "f93efaa548c477234c99093ccb5c3a77807818aa", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "position-sticky-flex-item-003.html": [ - "50e0e2598006797770de5fee6f238d6c2c8e8ac5", + "/css/css-pseudo/target-text-lime-green-ref.html", + "==" + ] + ], + {} + ] + ], + "target-text-003.html": [ + "410e636df6dc7e411640235877c03ee40405c300", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "position-sticky-flex-item-004.html": [ - "68b933a319d0eb6110880a697a846473e125ae9d", + "/css/css-pseudo/target-text-lime-ref.html", + "==" + ] + ], + {} + ] + ], + "target-text-004.html": [ + "2cd84d5be90ca150ad3c06734db9959309555a75", + [ + null, [ - null, [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "position-sticky-flexbox.html": [ - "951de1e71c98f3a0e8ff371c4c804988aea4cc76", + "/css/css-pseudo/target-text-lime-green-ref.html", + "==" + ] + ], + {} + ] + ], + "target-text-005.html": [ + "0f43e5d717441f71ecafb5d21681e64c5d7dd683", + [ + null, [ - "css/css-position/sticky/position-sticky-flexbox.html", [ - [ - "/css/css-position/sticky/position-sticky-flexbox-ref.html", - "==" - ] - ], - {} - ] - ], - "position-sticky-fractional-offset.html": [ - "79c29f4e87bf7c14572e51757c258945eb0c8c6e", + "/css/css-pseudo/target-text-lime-green-ref.html", + "==" + ] + ], + {} + ] + ], + "target-text-006.html": [ + "6c73ebd028f12b66badb7214dee14baf341fbad4", + [ + null, [ - "css/css-position/sticky/position-sticky-fractional-offset.html", [ - [ - "/css/css-position/sticky/position-sticky-fractional-offset-ref.html", - "==" - ] - ], - {} - ] - ], - "position-sticky-grid.html": [ - "607e7c2936246c192e04c8d3673321c0a54cda3c", - [ - "css/css-position/sticky/position-sticky-grid.html", - [ - [ - "/css/css-position/sticky/position-sticky-grid-ref.html", - "==" - ] - ], - {} - ] - ], - "position-sticky-hyperlink.html": [ - "cc8de9a822cd786c9703ebe3e2a394f26b81b54c", - [ - "css/css-position/sticky/position-sticky-hyperlink.html", - [ - [ - "/css/css-position/sticky/position-sticky-hyperlink-ref.html", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 5 - ], - [ - 0, - 80 - ] - ] - ] - ] - } - ] - ], - "position-sticky-in-fixed-container.html": [ - "359ec2fd337e76e5ba1540754c87375c4090c1e2", - [ - "css/css-position/sticky/position-sticky-in-fixed-container.html", - [ - [ - "/css/css-position/sticky/position-sticky-in-fixed-container-ref.html", - "==" - ] - ], - {} - ] - ], - "position-sticky-inline.html": [ - "6bd49befe5a66f66ea554d066ae52e5b7bb40ab9", - [ - "css/css-position/sticky/position-sticky-inline.html", - [ - [ - "/css/css-position/sticky/position-sticky-inline-ref.html", - "==" - ] - ], - {} - ] - ], - "position-sticky-large-top-2.tentative.html": [ - "1cf9c0dfb43b6bfd71c1496a5d7b3b9428d0c086", - [ - null, - [ - [ - "/css/css-position/sticky/position-sticky-large-top-2-ref.html", - "==" - ] - ], - {} - ] - ], - "position-sticky-large-top.tentative.html": [ - "b00a0d139683717b57633e38bb9ce7f033833b65", - [ - null, - [ - [ - "/css/css-position/sticky/position-sticky-large-top-ref.html", - "==" - ] - ], - {} - ] - ], - "position-sticky-left-002.html": [ - "868b58adb0430f03293edf7810d1b9245f010382", - [ - null, - [ - [ - "/css/css-position/sticky/reference/position-sticky-left-002-ref.html", - "==" - ] - ], - {} - ] - ], - "position-sticky-left-003.html": [ - "3114981a69a250f94934b77cc4792a605f9a44cd", - [ - null, - [ - [ - "/css/css-position/sticky/reference/position-sticky-left-002-ref.html", - "==" - ] - ], - {} - ] - ], - "position-sticky-nested-inline.html": [ - "92eda147bd4e54cc70081eb36eb8bb9ae33f19c2", - [ - "css/css-position/sticky/position-sticky-nested-inline.html", - [ - [ - "/css/css-position/sticky/position-sticky-nested-inline-ref.html", - "==" - ] - ], - {} - ] - ], - "position-sticky-nested-table.html": [ - "b2a8bf1e87bb3f894636dd40461a0255e19f0d1c", - [ - "css/css-position/sticky/position-sticky-nested-table.html", - [ - [ - "/css/css-position/sticky/position-sticky-nested-table-ref.html", - "==" - ] - ], - {} - ] - ], - "position-sticky-nested-thead-th.html": [ - "51f58b75913e132217c1b0e91b00fd9f428eba60", - [ - "css/css-position/sticky/position-sticky-nested-thead-th.html", - [ - [ - "/css/css-position/sticky/position-sticky-nested-table-ref.html", - "==" - ] - ], - {} - ] - ], - "position-sticky-overflow-clip-container.html": [ - "63356349afecd3f2b25e080186ba509eb3980cab", - [ - null, - [ - [ - "/css/css-position/sticky/position-sticky-overflow-clip-container-ref.html", - "==" - ] - ], - {} - ] - ], - "position-sticky-rendering.html": [ - "a4e03c59d8faba77884e4a290dd188044dcb23a6", - [ - "css/css-position/sticky/position-sticky-rendering.html", - [ - [ - "/css/css-position/sticky/position-sticky-rendering-ref.html", - "==" - ] - ], - {} - ] - ], - "position-sticky-right-002.html": [ - "e83189a498ecf6974347564b4a0ac2a67d4c304a", - [ - null, - [ - [ - "/css/css-position/sticky/reference/position-sticky-right-002-ref.html", - "==" - ] - ], - {} - ] - ], - "position-sticky-right-003.html": [ - "ea712a99daa6fcd457ee56c2b180ef82761ff082", - [ - null, - [ - [ - "/css/css-position/sticky/reference/position-sticky-right-002-ref.html", - "==" - ] - ], - {} - ] - ], - "position-sticky-scroll-reposition.html": [ - "b75275c64fe3b8b1130abade63ea69c575085b80", - [ - null, - [ - [ - "/css/css-position/sticky/position-sticky-scroll-reposition-ref.html", - "==" - ] - ], - {} - ] - ], - "position-sticky-scroll-with-clip-and-abspos.html": [ - "fb7edfe49857cf9f9d4857dec11e5f150a80b8e5", - [ - null, - [ - [ - "/css/css-position/sticky/position-sticky-scroll-with-clip-and-abspos-ref.html", - "==" - ] - ], - {} - ] - ], - "position-sticky-stacking-context-002.html": [ - "1cc162880a37559fd2879912b4418cbba9cbe7cb", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "position-sticky-stacking-context.html": [ - "4e91dfbd9177b51ab231e0cf2634aa6425981236", - [ - "css/css-position/sticky/position-sticky-stacking-context.html", - [ - [ - "/css/css-position/sticky/position-sticky-stacking-context-ref.html", - "==" - ] - ], - {} - ] - ], - "position-sticky-table-parts.html": [ - "eb32099d44c6eb8f7c946b63872d21c1edfb0753", - [ - "css/css-position/sticky/position-sticky-table-parts.html", - [ - [ - "/css/css-position/sticky/position-sticky-table-parts-ref.html", - "==" - ] - ], - {} - ] - ], - "position-sticky-table-td-bottom.html": [ - "7cd3b8d695e00a68e58c9016aa2990eaf78ba846", - [ - null, - [ - [ - "/css/css-position/sticky/position-sticky-table-td-bottom-ref.html", - "==" - ] - ], - {} - ] - ], - "position-sticky-table-td-left.html": [ - "34d31f3eb1d9c289c99b339abf8786a25e374470", - [ - null, - [ - [ - "/css/css-position/sticky/position-sticky-table-td-left-ref.html", - "==" - ] - ], - {} - ] - ], - "position-sticky-table-td-right.html": [ - "093af91a550752707fb5f04b3d6879b4e442f710", - [ - null, - [ - [ - "/css/css-position/sticky/position-sticky-table-td-right-ref.html", - "==" - ] - ], - {} - ] - ], - "position-sticky-table-td-top.html": [ - "46931333c6a0db7d73aaf685e5215fe383172241", - [ - null, - [ - [ - "/css/css-position/sticky/position-sticky-table-td-top-ref.html", - "==" - ] - ], - {} - ] - ], - "position-sticky-table-tfoot-bottom.html": [ - "4ddd0cb78ede4be61deb3ec7585401d1f83bca29", - [ - "css/css-position/sticky/position-sticky-table-tfoot-bottom.html", - [ - [ - "/css/css-position/sticky/position-sticky-table-tfoot-bottom-ref.html", - "==" - ] - ], - {} - ] - ], - "position-sticky-table-th-bottom.html": [ - "bd6a82431757b16df2fe975ba982ad7d8cc60364", - [ - "css/css-position/sticky/position-sticky-table-th-bottom.html", - [ - [ - "/css/css-position/sticky/position-sticky-table-th-bottom-ref.html", - "==" - ] - ], - {} - ] - ], - "position-sticky-table-th-left.html": [ - "7361b25ce6665cc57bc8b58cf629d57c3c33917b", - [ - "css/css-position/sticky/position-sticky-table-th-left.html", - [ - [ - "/css/css-position/sticky/position-sticky-table-th-left-ref.html", - "==" - ] - ], - {} - ] - ], - "position-sticky-table-th-right.html": [ - "a1598f55063966ddc18da9a25212d13cd24a5080", - [ - "css/css-position/sticky/position-sticky-table-th-right.html", - [ - [ - "/css/css-position/sticky/position-sticky-table-th-right-ref.html", - "==" - ] - ], - {} - ] - ], - "position-sticky-table-th-top.html": [ - "57ff489e0384df708c4622cac8054802310f4c58", - [ - "css/css-position/sticky/position-sticky-table-th-top.html", - [ - [ - "/css/css-position/sticky/position-sticky-table-th-top-ref.html", - "==" - ] - ], - {} - ] - ], - "position-sticky-table-thead-top.html": [ - "13c1b313c57e8635bb414d09557138f7d00837f1", - [ - "css/css-position/sticky/position-sticky-table-thead-top.html", - [ - [ - "/css/css-position/sticky/position-sticky-table-thead-top-ref.html", - "==" - ] - ], - {} - ] - ], - "position-sticky-table-tr-bottom.html": [ - "be9f1480a37ad5dde3af2115c21b64c05fbffb2c", - [ - "css/css-position/sticky/position-sticky-table-tr-bottom.html", - [ - [ - "/css/css-position/sticky/position-sticky-table-tr-bottom-ref.html", - "==" - ] - ], - {} - ] - ], - "position-sticky-table-tr-top.html": [ - "5e38ad38d95d9df452a4dc8570c2a9f5967aabd6", - [ - "css/css-position/sticky/position-sticky-table-tr-top.html", - [ - [ - "/css/css-position/sticky/position-sticky-table-tr-top-ref.html", - "==" - ] - ], - {} - ] - ], - "position-sticky-top-002.html": [ - "e8025d679ed00b391df492b5d5a36b3d2ce82910", - [ - null, - [ - [ - "/css/css-position/sticky/reference/position-sticky-top-002-ref.html", - "==" - ] - ], - {} - ] - ], - "position-sticky-top-003.html": [ - "574b1b359bc8eadf1d5ce237fa8cfb49f9b4a834", - [ - null, - [ - [ - "/css/css-position/sticky/reference/position-sticky-top-002-ref.html", - "==" - ] - ], - {} - ] - ], - "position-sticky-top-and-bottom-003.html": [ - "af68bcef729aca98fe7c792df3deb067fbf32763", - [ - null, - [ - [ - "/css/css-position/sticky/reference/position-sticky-top-and-bottom-003-ref.html", - "==" - ] - ], - {} - ] - ], - "position-sticky-writing-modes.html": [ - "98f50500b8c694864c5daca6b6770e465fa4795a", + "/css/css-pseudo/target-text-two-words-ref.html", + "==" + ] + ], + {} + ] + ], + "target-text-007.html": [ + "17d4236e390159d90aa6b5be99fa4dbd357e2eed", + [ + null, [ - null, [ - [ - "/css/css-position/sticky/position-sticky-writing-modes-ref.html", - "==" - ] - ], - {} - ] + "/css/reference/pass_if_pass_below.html", + "==" + ] + ], + {} ] - }, - "z-index-blend-will-change-overlapping-layers.html": [ - "7c43c3336872db048664e52943b63f195b761ae2", + ], + "target-text-008.html": [ + "b1759124be5fbefa7e58fd72f15c31465eaefce0", [ null, [ [ - "/css/css-position/z-index-blend-will-change-overlapping-layers-ref.html", + "/css/css-pseudo/target-text-008-ref.html", "==" ] ], {} ] - ] - }, - "css-properties-values-api": { - "registered-property-change-style-002.html": [ - "a62461c7d8a5f57d59fe80d6a935976e15363ac4", + ], + "target-text-009.html": [ + "2670d9319ee672907cc0b7d9a51541f83a446c2f", [ - "css/css-properties-values-api/registered-property-change-style-002.html", + null, [ [ - "/css/css-properties-values-api/registered-property-change-style-002-ref.html", + "/css/css-pseudo/target-text-five-words-ref.html", "==" ] ], {} ] - ] - }, - "css-pseudo": { - "active-selection-011.html": [ - "bdee22411d767524a0d3094749a61a8cf62800bd", + ], + "target-text-010.html": [ + "4aae966a2d0da7e8a0bab5f032acf012d772b2bd", [ null, [ [ - "/css/css-pseudo/reference/active-selection-011-ref.html", + "/css/css-pseudo/target-text-five-words-ref.html", "==" ] ], {} ] ], - "active-selection-012.html": [ - "e949f6862f6c80e40393d26c98dee438d3be0af4", + "target-text-dynamic-001.html": [ + "63cbaa52b257674993afab1e22be3c5ed0927406", [ null, [ [ - "/css/css-pseudo/reference/active-selection-012-ref.html", + "/css/css-pseudo/target-text-dynamic-001-ref.html", "==" ] ], {} ] ], - "active-selection-014.html": [ - "89f28a4ffbbefd699b567ce7dcb97a29a9b7b0e2", + "target-text-dynamic-002.html": [ + "95d5eda5437869f8d0505de0e55a6338f8ec25be", [ null, [ [ - "/css/css-pseudo/reference/active-selection-014-ref.html", + "/css/css-pseudo/target-text-dynamic-001-ref.html", "==" ] ], {} ] ], - "active-selection-016.html": [ - "82a77d74988224fadea4a1d54663a6076cac9601", + "target-text-dynamic-003.html": [ + "7916fa2e29495e3fe1398894ef6e849e2b5e152b", [ null, [ [ - "/css/css-pseudo/reference/active-selection-016-ref.html", + "/css/css-pseudo/target-text-dynamic-001-ref.html", "==" ] ], {} ] ], - "active-selection-018.html": [ - "00826bb5f2f73bb63573d2d7ca197be98933109b", + "target-text-dynamic-004.html": [ + "35f2542c766735f3de82f4e43492b1874c60437d", [ null, [ [ - "/css/css-pseudo/reference/active-selection-018-ref.html", + "/css/css-pseudo/target-text-dynamic-001-ref.html", "==" ] ], {} ] ], - "active-selection-021.html": [ - "767366b8c4e5c5217ef8ab3d28f0759604dc38ec", + "target-text-shadow-horizontal.html": [ + "1ded1360ff047d2432f59fc0a6549a8759af0d24", [ null, [ [ - "/css/css-pseudo/reference/active-selection-021-ref.html", + "/css/css-pseudo/target-text-shadow-horizontal-ref.html", "==" ] ], {} ] ], - "active-selection-025.html": [ - "fd861008eef17381a8b285c12027d9d92e2d30df", + "target-text-shadow-vertical.html": [ + "088f6fc175e7a581b74709c7214e22401098cd52", [ null, [ [ - "/css/css-pseudo/reference/active-selection-025-ref.html", + "/css/css-pseudo/target-text-shadow-vertical-ref.html", "==" ] ], {} ] ], - "active-selection-027.html": [ - "899d23c48802728969027a3fb069970dee706dbb", + "target-text-text-decoration-001.html": [ + "d90d5d96630d05ab88430b88fe4a4ad8985a6fac", [ null, [ [ - "/css/css-pseudo/reference/active-selection-027-ref.html", + "/css/css-pseudo/target-text-text-decoration-001-ref.html", "==" ] ], {} ] ], - "active-selection-031.html": [ - "c7d79c8ac9fd300fa9f2704f64bb5cc28bfbbb7f", + "textpath-selection-011.html": [ + "1e84519b0e572bec3135e3ece3da7f9ada51034a", [ null, [ [ - "/css/css-pseudo/reference/active-selection-031-ref.html", + "/css/css-pseudo/textpath-selection-011-ref.html", "==" ] ], {} ] - ], - "active-selection-041.html": [ - "f437c8bb523c3a403b8ccddc0ac224e77ecd52c4", + ] + }, + "css-rhythm": { + "block-step-size-establishes-block-formatting-context-list-item.html": [ + "85daa729789becc1ed561596788ede5dde23c490", [ null, [ [ - "/css/css-pseudo/reference/active-selection-041-notref.html", - "!=" + "/css/reference/ref-filled-green-100px-square-only.html", + "==" ] ], {} ] ], - "active-selection-043.html": [ - "944bf5526ecbea16695303a11b1176f61f79a1d3", + "block-step-size-establishes-block-formatting-context.html": [ + "e96e3e00824eca6c449a9753f82d81476a264c37", [ null, [ [ - "/css/reference/ref-nothing-below.xht", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "active-selection-045.html": [ - "59cdcc2d9119231bdca79fd1a0b0fa0ae2c393e9", + "block-step-size-establishes-independent-formatting-context-list-item.html": [ + "301ae3e9a2ff58084ba942edbcaf862521cf51f0", [ null, [ [ - "/css/reference/ref-nothing-below.xht", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "active-selection-051.html": [ - "caab01e392428560331729292f99b91bd20ac20e", + "block-step-size-establishes-independent-formatting-context.html": [ + "f87e22d3193a8b53d0f9e280e3bd84700d3cfb25", [ null, [ [ - "/css/css-pseudo/active-selection-051-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "active-selection-052.html": [ - "88acf0106fde6920345ddc4e8ac5704d4ec70ec8", + "block-step-size-none-does-not-establish-block-formatting-context.html": [ + "afbfcd84efb731cfa1fcb5d2261c93fb46e6ecc1", [ null, [ [ - "/css/css-pseudo/active-selection-051-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] ], - "active-selection-053.html": [ - "3b439d26ddbb6e43ed7824343c66414dd082bcd9", + "block-step-size-none-does-not-establish-indepdendent-formatting-context.html": [ + "678428e381be5cd2cdb05054cf67ed416d655d44", [ null, [ [ - "/css/css-pseudo/active-selection-051-ref.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" ] ], {} ] - ], - "active-selection-054.html": [ - "d16776e6411ff981cfcb232444749b34f51c968f", + ] + }, + "css-ruby": { + "abs-in-ruby-base-container.html": [ + "0a4ad8a24cc7c7dcda673f243153e446e21aa475", [ null, [ [ - "/css/css-pseudo/active-selection-051-ref.html", + "/css/css-ruby/abs-in-ruby-base-ref.html", "==" ] ], {} ] ], - "active-selection-056.html": [ - "aa147f35d282fd28b3f8d4bf901a892d7b96acb4", + "abs-in-ruby-base.html": [ + "bff3a3b748c21000f7f27271660a9965779383c5", [ null, [ [ - "/css/reference/ref-nothing-below.xht", + "/css/css-ruby/abs-in-ruby-base-ref.html", "==" ] ], {} ] ], - "active-selection-057.html": [ - "34afda43ed0b3de72b50ec46731d4fd9108f3379", + "abs-in-ruby-container.html": [ + "41be48c47a4eed6c5f167765f841613dd450feb7", [ null, [ [ - "/css/reference/ref-nothing-below.xht", + "/css/css-ruby/abs-in-ruby-base-ref.html", "==" ] ], {} ] ], - "active-selection-063.html": [ - "0c151cf4e6485f7c44943081705cad7f57fa7292", + "block-ruby-001.html": [ + "0602116aacae5187176de06d865b584cbf9bc0b8", [ null, [ [ - "/css/reference/ref-filled-green-100px-square.xht", + "/css/css-ruby/block-ruby-001-ref.html", "==" ] ], {} ] ], - "backdrop-animate-002.html": [ - "910807a7a63081e0bedaffd262bb261bccf611aa", + "block-ruby-002.html": [ + "73fbc3015bfdb7b9835525a6d6d8362b31231545", [ null, [ [ - "/css/css-pseudo/backdrop-animate-002-ref.html", + "/css/css-ruby/block-ruby-002-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 1 - ], - [ - 0, - 472500 - ] - ] - ] - ] - } + {} ] ], - "before-after-dynamic-custom-property-001.html": [ - "dcbd60786b313f8d719b7eefcede3416a2436669", + "block-ruby-003.html": [ + "26b33a1f6affeff15c1ea836f24de93ef6d5b0fd", [ null, [ [ - "/css/css-pseudo/before-after-dynamic-custom-property-001-ref.html", + "/css/css-ruby/block-ruby-003-ref.html", "==" ] ], {} ] ], - "before-dynamic-display-none.html": [ - "d8844f9c961e94b2fd353628cb2c6e3e12123054", + "block-ruby-004.html": [ + "33ab4207b15a90aae31c2400d53975128141ac52", [ null, [ [ - "/css/reference/pass_if_pass_below.html", + "/css/css-ruby/block-ruby-004-ref.html", "==" ] ], {} ] ], - "cascade-highlight-001.html": [ - "6068a076f0da862b834982b60fc1d46c94c72b46", + "block-ruby-005.html": [ + "cf09e768338dc1ae3a1bf1d53cf805e208c0c698", [ null, [ [ - "/css/css-pseudo/cascade-highlight-001-ref.html", + "/css/css-ruby/block-ruby-005-ref.html", "==" ] ], {} ] ], - "cascade-highlight-002.html": [ - "50be805f011c223caf99fc55d0052161428eeb3f", + "break-within-bases": { + "basic.html": [ + "3e609f42ed4f9feacd5720ff173074e73d3b2dfc", + [ + null, + [ + [ + "/css/css-ruby/break-within-bases/basic-ref.html", + "==" + ] + ], + {} + ] + ], + "no-break-opportunity-at-end.html": [ + "83a05b3dce46fd5bf1963c1f85c4119fdff0498b", + [ + null, + [ + [ + "/css/css-ruby/break-within-bases/no-break-opportunity-at-end-ref.html", + "==" + ] + ], + {} + ] + ], + "nowrap.html": [ + "f1d8f53182e54a0bc149c86004d0238e6e284118", + [ + null, + [ + [ + "/css/css-ruby/break-within-bases/nowrap-ref.html", + "==" + ] + ], + {} + ] + ] + }, + "empty-ruby-base-container.html": [ + "4d86e07985d0e99e586848f7ca3195e63371c4d4", [ null, [ [ - "/css/css-pseudo/cascade-highlight-001-ref.html", + "/css/css-ruby/empty-ruby-base-container-ref.html", "==" ] ], {} ] ], - "cascade-highlight-004.html": [ - "56abba71569c05dfbc3244c330414b53d1866c5a", + "empty-ruby-text-container-abs.html": [ + "025859ea744139b8673e37ea0bd0daeb92477bd8", [ null, [ [ - "/css/css-pseudo/cascade-highlight-004-ref.html", + "/css/css-ruby/empty-ruby-text-container-ref.html", "==" ] ], {} ] ], - "cascade-highlight-005.html": [ - "2c6ba60270ca78659647c98ba94aca95ff6de541", + "empty-ruby-text-container-float.html": [ + "88bcf42736e5c3a43d6e25d35477017fb2df8996", [ null, [ [ - "/css/css-pseudo/reference/cascade-highlight-005-ref.html", + "/css/css-ruby/empty-ruby-text-container-ref.html", "==" ] ], {} ] ], - "file-selector-button-001.html": [ - "48b2852de820f61ce5344584ab1ff3aa2313adcf", + "empty-ruby-text-container.html": [ + "972013c6621b553f647c97040a2a76afd45de75a", [ null, [ [ - "/css/css-pseudo/file-selector-button-001-notref.html", - "!=" + "/css/css-ruby/empty-ruby-text-container-ref.html", + "==" ] ], {} ] ], - "file-selector-button-after-part.html": [ - "0bd28fa5d528cfa2f4bb6fb2cb181746c3005781", + "improperly-contained-annotation-001.html": [ + "3790ba0bd1a952cf97023bc144fb46fede5cbc41", [ null, [ [ - "/css/css-pseudo/file-selector-button-001-notref.html", - "!=" + "/css/css-ruby/reference/improperly-contained-annotation-001-ref.html", + "==" ] ], {} ] ], - "file-selector-button-float.html": [ - "a9299ce3c43b626d4f4664d297fabfce399c7a61", + "interlinear-block-margin-box.html": [ + "cf9bb43826e72c321ae25e86a709940da1bea9d6", [ - "css/css-pseudo/file-selector-button-float.html", + null, [ [ - "/css/reference/blank.html", + "/css/css-ruby/interlinear-block-margin-box-ref.html", "!=" ] ], {} ] ], - "first-letter-001.html": [ - "b1dc5860a39d6c4d7088eccfaaec42898b6b12b3", + "intra-base-white-space-001.html": [ + "86468376c3211db6dbe6e8fa53b6186b4214af34", [ null, [ [ - "/css/css-pseudo/first-letter-001-ref.html", + "/css/css-ruby/reference/intra-base-white-space-001-ref.html", "==" ] ], {} ] ], - "first-letter-002.html": [ - "4ee147699a02c922ac5df8b97b806c4f723c0166", + "nested-ruby-pairing-001.html": [ + "d502dbca9b2d4c8a6e47668a2158a3f4d0995105", [ null, [ [ - "/css/css-pseudo/first-letter-001-ref.html", + "/css/css-ruby/nested-ruby-pairing-001-ref.html", "==" ] ], {} ] ], - "first-letter-003.html": [ - "95b2471fc3a63ae1441c47136d1517e5a636f61f", + "pseudo-first-letter.html": [ + "dcb9e8583b4a8208a912e2588fcfeb394d3832d2", [ null, [ [ - "/css/css-pseudo/first-letter-001-ref.html", + "/css/css-ruby/pseudo-first-letter-ref.html", "==" ] ], {} ] ], - "first-letter-004.html": [ - "33c14feb60286479ae805cc021f14e2b4be5418d", + "pseudo-first-line.html": [ + "6be0a8b20a8ced882403ff788ed78d641edde5ce", [ null, [ [ - "/css/css-pseudo/first-letter-004-ref.html", + "/css/css-ruby/pseudo-first-line-ref.html", "==" ] ], {} ] ], - "first-letter-005.html": [ - "60e36eab8f9b065067c4a26d7d134511ed00a3ae", + "rb-display-001.html": [ + "5149eb34a4686a38cdf347fbe6162df83a9403a6", [ null, [ [ - "/css/css-pseudo/first-letter-005-ref.html", + "/css/css-ruby/reference/rb-display-001-ref.html", "==" ] ], {} ] ], - "first-letter-and-sibling-display-change.html": [ - "29bdc5bbbe8ed4c1f4082dabbd7116325ed6e933", + "rbc-rtc-basic-001.html": [ + "758490a5536793449e072f31ef9d38481355a200", [ null, [ [ - "/css/css-pseudo/first-letter-block-to-inline-ref.html", + "/css/css-ruby/reference/rbc-rtc-basic-001-ref.html", "==" ] ], {} ] ], - "first-letter-and-whitespace.html": [ - "a10612ac9731a7ecdf07416df23e802c131b7570", + "root-block-ruby.xhtml": [ + "51ac507c3bec74bff8650965b327089e4d9853ce", [ null, [ [ - "/css/css-pseudo/first-letter-and-whitespace-ref.html", + "/css/css-ruby/root-ruby-ref.xhtml", "==" ] ], {} ] ], - "first-letter-background-image-dynamic.html": [ - "6f8a9378c5c2f041ae8be4bc0a4e22be8869a107", + "root-ruby.xhtml": [ + "4b78690dd4ba72c495429e5decb111a47fcf1825", [ null, [ [ - "/css/css-pseudo/first-letter-background-image-ref.html", + "/css/css-ruby/root-ruby-ref.xhtml", "==" ] ], {} ] ], - "first-letter-background-image.html": [ - "aa9341df1bd7d97afd12f3896a645f008bdc8c50", + "rt-display-001.html": [ + "a83ce243b342a19c420da81d08c3b2eaab475f27", [ null, [ [ - "/css/css-pseudo/first-letter-background-image-ref.html", + "/css/css-ruby/reference/rb-display-001-ref.html", "==" ] ], {} ] ], - "first-letter-block-to-inline.html": [ - "94f27e6a6665ab1024e1c6367c46a6976a4eec24", + "ruby-align-001.html": [ + "c611a56532cef538def6236f62ca9282f62d4694", [ null, [ [ - "/css/css-pseudo/first-letter-block-to-inline-ref.html", + "/css/css-ruby/ruby-align-001-ref.html", "==" ] ], {} ] ], - "first-letter-digraph.html": [ - "b539457cf0c5ddab61cb2c63ef45fab47057877e", + "ruby-align-001a.html": [ + "a2c492bbce5a99243f65fcba8eb0084e292f7a55", [ - "css/css-pseudo/first-letter-digraph.html", + null, [ [ - "/css/css-pseudo/reference/first-letter-digraph-ref.html", + "/css/css-ruby/ruby-align-001-ref.html", "==" ] ], {} ] ], - "first-letter-exclude-block-child-marker.html": [ - "ecd0fd5b4622d9257658fc1e50ce43221da5bdfb", + "ruby-align-002.html": [ + "22e43e44018a350874d4e21216b1e833d014b4a7", [ null, [ [ - "/css/css-pseudo/first-letter-exclude-block-child-marker-ref.html", + "/css/css-ruby/ruby-align-002-ref.html", "==" ] ], {} ] ], - "first-letter-exclude-inline-child-marker.html": [ - "027f145679b4109b7aeda9a7665ebc2788b982ec", + "ruby-align-002a.html": [ + "21838c989ada5a1fce2c0196bc985a08c6e24070", [ null, [ [ - "/css/css-pseudo/first-letter-exclude-inline-child-marker-ref.html", + "/css/css-ruby/ruby-align-002-ref.html", "==" ] ], {} ] ], - "first-letter-exclude-inline-marker.html": [ - "e95393f4496238a58d9bfce76629df1f68cd5293", + "ruby-align-space-around.html": [ + "dfc1b6a894b8aaf5bbb953111036c6ab20e31aa0", [ null, [ [ - "/css/css-pseudo/first-letter-exclude-inline-marker-ref.html", + "/css/css-ruby/ruby-align-space-around-ref.html", "==" ] ], {} ] ], - "first-letter-hi-001.html": [ - "9ea51f8bc588057ec33fab41ac1bd18958aa80e3", + "ruby-annotation-pairing-001.html": [ + "453ba96ebdc51d4cccc5f3547cc656eac469f8d7", [ null, [ [ - "/css/css-pseudo/first-letter-hi-001-ref.html", + "/css/css-ruby/reference/ruby-annotation-pairing-001-ref.html", "==" ] ], {} ] ], - "first-letter-hi-002.html": [ - "c810968f30fc6ce57296d1fd9286361322d1a1ca", + "ruby-autohide-001.html": [ + "61bc6706ba966e0a77d92539f45cd825cbc56dbc", [ null, [ [ - "/css/css-pseudo/first-letter-hi-002-ref.html", + "/css/css-ruby/ruby-autohide-001-ref.html", "==" ] ], {} ] ], - "first-letter-list-item-dynamic-001.html": [ - "f990cd2bb716aafff143f99889d2be61c72b6171", + "ruby-autohide-002.html": [ + "3d5131cdd8cab51c6ff89a68c5264bdc7d123cf7", [ null, [ [ - "/css/css-pseudo/first-letter-list-item-dynamic-001-ref.html", + "/css/css-ruby/ruby-autohide-002-ref.html", "==" ] ], {} ] ], - "first-letter-of-html-root-refcrash.html": [ - "4233dd1dc351b14e5f514599107cc7b478b9d634", + "ruby-autohide-003.html": [ + "2279e7540e3040c3d2d9bbddac5d266dc12ad2de", [ null, [ [ - "/css/css-pseudo/first-letter-of-html-root-crash-ref.html", + "/css/css-ruby/ruby-autohide-003-ref.html", "==" ] ], {} ] ], - "first-letter-opacity-001-ref.html": [ - "37e4dd5a2c9127d9cdbbb4ceb490033a9a8e6f0e", + "ruby-autohide-004.html": [ + "4499cf3e16f76f7fca45ec16eb9107bab6f240cc", [ null, [ [ - "/css/css-pseudo/first-letter-opacity-001-not-ref.html", - "!=" + "/css/css-ruby/ruby-autohide-001-ref.html", + "==" ] ], {} ] ], - "first-letter-opacity-001.html": [ - "0a867e541aebf2032136930f30f5596759dd65e7", + "ruby-base-container-abs.html": [ + "35baeda23e05a5f8b2a7adc0c96fe4753e055ad9", [ null, [ [ - "/css/css-pseudo/first-letter-opacity-001-ref.html", + "/css/css-ruby/empty-ruby-base-container-ref.html", "==" ] ], {} ] ], - "first-letter-opacity-float-001.html": [ - "fb939fa0cb0adcadf1960291124c2e06d8949afc", + "ruby-base-container-float.html": [ + "18ef9bb4ba50ae5b2c48c3b2ce7257ce10d0d874", [ null, [ [ - "/css/css-pseudo/first-letter-opacity-float-001-ref.html", + "/css/css-ruby/empty-ruby-base-container-ref.html", "==" ] ], {} ] ], - "first-letter-punctuation-and-space.html": [ - "2e5a353c175e171f52514906cd3ef6dc8747c086", + "ruby-base-different-size.html": [ + "f71b5644c626b9835f5c9015c04badb626b336a1", [ null, [ [ - "/css/css-pseudo/first-letter-punctuation-and-space-ref.html", + "/css/css-ruby/ruby-base-different-size-ref.html", "==" ] ], {} ] ], - "first-letter-punctuation-dynamic.html": [ - "0a7295602a1651932bd48a919cdcd00e2b125702", + "ruby-bidi-001.html": [ + "ba18071150a71aa8dab724eb71f777c1b4825104", [ - "css/css-pseudo/first-letter-punctuation-dynamic.html", + null, [ [ - "/css/css-pseudo/first-letter-punctuation-dynamic-ref.html", + "/css/css-ruby/ruby-bidi-001-ref.html", "==" ] ], {} ] ], - "first-letter-skip-empty-span-nested.html": [ - "e57700bbbd61246c93a5e2bae00659d87a4981dc", + "ruby-bidi-002.html": [ + "d6692a333aefd75d600a136545addb100dcc9676", [ null, [ [ - "/css/css-pseudo/first-letter-skip-empty-span-nested-ref.html", + "/css/css-ruby/ruby-bidi-002-ref.html", "==" ] ], {} ] ], - "first-letter-skip-empty-span.html": [ - "d3914050ad892a13df3d5caacc238488175ac5c3", + "ruby-bidi-003.html": [ + "2510408ec22524069588b8280913fa781c4ec2da", [ null, [ [ - "/css/css-pseudo/first-letter-skip-empty-span-ref.html", + "/css/css-ruby/ruby-bidi-003-ref.html", "==" ] ], {} ] ], - "first-letter-skip-marker.html": [ - "fb9fe258472e3a0e338f12246469e9499b4c2601", + "ruby-bidi-004.html": [ + "9cfe65059d117d63837ee2c534c621f2f0e0af39", [ null, [ [ - "/css/css-pseudo/first-letter-skip-marker-ref.html", + "/css/css-ruby/ruby-bidi-004-ref.html", "==" ] ], {} ] ], - "first-letter-text-and-display-change.html": [ - "d50da5f5c6b52975af5519ba27022e8a0f34f23d", + "ruby-box-generation-001.html": [ + "ac58d4d43ab966eb1ac57f56c826e309877cebac", [ null, [ [ - "/css/reference/pass_if_letter_uppercase.html", + "/css/css-ruby/ruby-box-generation-001-ref.html", "==" ] ], {} ] ], - "first-letter-width.html": [ - "fedf917c62a1c34c054b7484594ced16960c4c17", + "ruby-box-generation-002.html": [ + "e09ecf1eb252ea773164527e2a82eb0823c050f0", [ null, [ [ - "/css/css-pseudo/first-letter-width-ref.html", + "/css/css-ruby/ruby-box-generation-002-ref.html", "==" ] ], {} ] ], - "first-letter-with-preceding-new-line.html": [ - "5243b042882328443daf07e6f05f1cac68cede84", + "ruby-box-generation-003.html": [ + "6b975afdfbf18db4a8487c4421b4924ee7bf377d", [ - "css/css-pseudo/first-letter-with-preceding-new-line.html", + null, [ [ - "/css/css-pseudo/reference/first-letter-with-preceding-new-line-ref.html", + "/css/css-ruby/ruby-box-generation-003-ref.html", "==" ] ], {} ] ], - "first-letter-with-quote.html": [ - "9a8e0426bd8d52fcc91ab5472f052812daa92abb", + "ruby-box-generation-004.html": [ + "0f6ed72d717a375b861fff1ff067b52c0c2aedcc", [ null, [ [ - "/css/css-pseudo/first-letter-with-quote-ref.html", + "/css/css-ruby/ruby-box-generation-004-ref.html", "==" ] ], {} ] ], - "first-letter-with-span.html": [ - "cbb258837a1e7ca9fc095be5d118bab52770076b", + "ruby-box-generation-005.html": [ + "c86b697bf9d6b2c145dcb0871234c48779e03887", [ null, [ [ - "/css/css-pseudo/first-letter-with-span-ref.html", + "/css/css-ruby/ruby-box-generation-005-ref.html", "==" ] ], {} ] ], - "first-line-and-marker.html": [ - "f0a994438f1f848837b6a7814ceb621aae886fde", + "ruby-box-model-001.html": [ + "1fa2befaf8a84f76b7acb59f399649ce021893f7", [ null, [ [ - "/css/css-pseudo/first-line-and-marker-ref.html", + "/css/css-ruby/ruby-box-model-001-ref.html", "==" ] ], {} ] ], - "first-line-and-placeholder.html": [ - "2db3480feb5928c6a39fbf6084cf07bec0ba4767", + "ruby-dynamic-insertion-001.html": [ + "be1c5ce50056ecd0ffb3699bd4e47f63c7c6c7bf", [ null, [ [ - "/css/css-pseudo/first-line-and-placeholder-ref.html", + "/css/css-ruby/ruby-dynamic-insertion-001-ref.html", "==" ] ], {} ] ], - "first-line-change-inline-color-nested.html": [ - "4a58f1ea5b623ffa5acd2993be16de399cd24127", + "ruby-dynamic-insertion-002.html": [ + "c2a12a041958ce097c44f2d022e1da25b654fae3", [ null, [ [ - "/css/css-pseudo/first-line-change-inline-color-nested-ref.html", + "/css/css-ruby/ruby-dynamic-insertion-002-ref.html", "==" ] ], {} ] ], - "first-line-change-inline-color.html": [ - "2a5be916b01d5d12eec1a4e81d912d95c7036916", + "ruby-dynamic-insertion-003.html": [ + "68984b5568ba969f8caae70e6c1abfbc33137b40", [ null, [ [ - "/css/css-pseudo/first-line-change-inline-color-ref.html", + "/css/css-ruby/ruby-dynamic-insertion-003-ref.html", "==" ] ], {} ] ], - "first-line-inherited-no-transition.html": [ - "e5253daa63fc7cb074901dd086864e27426cd152", + "ruby-dynamic-insertion-004.html": [ + "9b3c36e3ac88764d44c78b1ba516231a84c9e2d9", [ - "css/css-pseudo/first-line-inherited-no-transition.html", + null, [ [ - "/css/css-pseudo/first-line-inherited-no-transition-ref.html", + "/css/css-ruby/ruby-dynamic-insertion-004-ref.html", "==" ] ], {} ] ], - "first-line-inherited-with-transition.html": [ - "88b1f34362279e156559e49d6d22f9ca48f5237f", + "ruby-dynamic-insertion-005.html": [ + "66f7dbdd17922201b01aaaca5c40ca1f169af7f0", [ - "css/css-pseudo/first-line-inherited-with-transition.html", + null, [ [ - "/css/css-pseudo/first-line-inherited-with-transition-ref.html", + "/css/css-ruby/ruby-dynamic-insertion-005-ref.html", "==" ] ], {} ] ], - "first-line-line-height-001.html": [ - "f1dd69807ed866374539a4416d0102f043bec5e1", + "ruby-dynamic-removal-001.html": [ + "090ea43c79a11f58908c481651132bc6a21c99f7", [ null, [ [ - "/css/css-pseudo/first-line-line-height-001-ref.html", + "/css/css-ruby/ruby-dynamic-removal-001-ref.html", "==" ] ], {} ] ], - "first-line-line-height-002.html": [ - "7d1112fbb263fb0bef9fa0f371ed29cf324dee86", + "ruby-dynamic-removal-002.html": [ + "76846e547bb555956256e3adcf8af8913a6ef397", [ null, [ [ - "/css/css-pseudo/first-line-line-height-002-ref.html", + "/css/css-ruby/ruby-dynamic-removal-002-ref.html", "==" ] ], {} ] ], - "first-line-nested-gcs.html": [ - "6777e5468f57b507f96f4e92fbba4393002d15e7", + "ruby-dynamic-removal-003.html": [ + "ff6c0b4c83dcb7b5ded921e58c75906657c4dd71", [ null, [ [ - "/css/css-pseudo/first-line-green-ref.html", + "/css/css-ruby/ruby-dynamic-removal-003-ref.html", "==" ] ], {} ] ], - "first-line-on-ancestor-block.html": [ - "6b797107df80156b511b9dc58c5ee40d6114cfc4", + "ruby-float-handling-001.html": [ + "5cb56e88aca36dce07fcdf17a690edc13ef8b375", [ null, [ [ - "/css/css-pseudo/first-line-on-ancestor-block-ref.html", + "/css/css-ruby/ruby-float-handling-001-ref.html", "==" ] ], {} ] ], - "first-line-opacity-001-ref.html": [ - "b4f4ddc185fc5e958f1934a0a1e948eee29e8057", + "ruby-inlinize-blocks-001.html": [ + "93569e549bb0ee0cb911dbfc38c243bbc6044540", [ null, [ [ - "/css/css-pseudo/first-line-opacity-001-not-ref.html", - "!=" + "/css/css-ruby/ruby-inlinize-blocks-001-ref.html", + "==" ] ], {} ] ], - "first-line-opacity-001.html": [ - "83f90824b8ab42976a826fcc7567a9f7f52e4379", + "ruby-inlinize-blocks-002.html": [ + "4616d5014675224793aa9de4f67a79472462c800", [ null, [ [ - "/css/css-pseudo/first-line-opacity-001-ref.html", + "/css/css-ruby/ruby-inlinize-blocks-002-ref.html", "==" ] ], {} ] ], - "first-line-replaced-001.html": [ - "453c55e4a76fedbafcc470d5def5b98c4be16ec1", + "ruby-inlinize-blocks-003.html": [ + "4d1a85f9d1fcadb2c79c90608f8eb6c4b2fde242", [ null, [ [ - "/css/css-pseudo/first-line-replaced-001-ref.html", + "/css/css-ruby/ruby-inlinize-blocks-003-ref.html", "==" ] ], {} ] ], - "first-line-with-before-after.html": [ - "f91a22a4a7d65366dbd7dda3934c82c9b5776977", + "ruby-inlinize-blocks-004.html": [ + "7d3437121908968a3bbbdada05c8b595e65a5339", [ null, [ [ - "/css/css-pseudo/first-line-with-before-after-ref.html", + "/css/css-ruby/ruby-inlinize-blocks-004-ref.html", "==" ] ], {} ] ], - "first-line-with-inline-block-before.html": [ - "8b454faeda368c4d07fb5767991fc25665ec596a", + "ruby-inlinize-blocks-005.html": [ + "595c704ab254438e0617504716a8693c9d82b046", [ null, [ [ - "/css/css-pseudo/first-line-with-inline-block-before-ref.html", + "/css/css-ruby/ruby-inlinize-blocks-005-ref.html", "==" ] ], {} ] ], - "first-line-with-inline-block.html": [ - "12e11a3d2e4344b57c755b8a7e749115b299e549", + "ruby-inlinize-recursive-simple.html": [ + "ebf0412d6096e56fd09e969bf5b10e6db8ef2c10", [ null, [ [ - "/css/css-pseudo/reference/first-line-with-inline-block-ref.html", + "/css/css-ruby/ruby-inlinize-recursive-simple-ref.html", "==" ] ], {} ] ], - "first-line-with-out-of-flow-and-nested-div.html": [ - "e277e9ce1cb69bcc1c7a61c8a100585e077bd359", + "ruby-intra-level-whitespace-001.html": [ + "4fceda1fb09b7923bb1eeb27e202e274e8168017", [ null, [ [ - "/css/css-pseudo/first-line-with-out-of-flow-ref.html", + "/css/css-ruby/ruby-intra-level-whitespace-001-ref.html", "==" ] ], {} ] ], - "first-line-with-out-of-flow-and-nested-span.html": [ - "c0fe55cbc5292fa24e745760ea0c70a4bd15547f", + "ruby-intra-level-whitespace-002.html": [ + "67aab53bfb0d0542da875db4abe9e7a6d0d4f6a5", [ null, [ [ - "/css/css-pseudo/first-line-with-out-of-flow-ref.html", + "/css/css-ruby/ruby-intra-level-whitespace-002-ref.html", "==" ] ], {} ] ], - "first-line-with-out-of-flow.html": [ - "76d50254506086bfd3364b4ebcab3384e4d6e4a6", + "ruby-intra-level-whitespace-003.html": [ + "716f2e3f0b4f2dbfeed1607272e308a5c1baf2fb", [ null, [ [ - "/css/css-pseudo/first-line-with-out-of-flow-ref.html", + "/css/css-ruby/ruby-intra-level-whitespace-003-ref.html", "==" ] ], {} ] ], - "grammar-error-001.html": [ - "b7eaa6b20fbe61b25ebeb2e0ae74a0f558fcf0e4", + "ruby-intrinsic-isize-001.html": [ + "84f48e2fc936155628c290bfa83006ef509aa0b7", [ null, [ [ - "/css/css-pseudo/grammar-error-001-ref.html", + "/css/css-ruby/ruby-intrinsic-isize-001-ref.html", "==" ] ], {} ] ], - "grammar-spelling-errors-001.html": [ - "66df551a232183197470e25fb6012886d6630306", + "ruby-intrinsic-isize-002.html": [ + "741d41bec577bfe1aeb2e3e1e56a7973911f92bf", [ null, [ [ - "/css/css-pseudo/reference/grammar-spelling-errors-001-ref.html", + "/css/css-ruby/ruby-intrinsic-isize-002-ref.html", "==" ] ], {} ] ], - "grammar-spelling-errors-002.html": [ - "3a89e54c42e493875bd8e992a35f4a1d2eb0ab8a", + "ruby-intrinsic-isize-003.html": [ + "c67033f69a2a58783542fe99fd3ec39ee92d850f", [ null, [ [ - "/css/css-pseudo/reference/grammar-spelling-errors-002-ref.html", + "/css/css-ruby/ruby-intrinsic-isize-003-ref.html", "==" ] ], {} ] ], - "highlight-cascade-001.html": [ - "f237e9eca7321123c6d9de5f40cd95a5cab62fc9", + "ruby-justification-001.html": [ + "edef72874b6b564e0618eb9e795f863ee4cbf20b", [ - "css/css-pseudo/highlight-cascade-001.html", + null, [ [ - "/css/css-pseudo/highlight-cascade-001-ref.html", + "/css/css-ruby/ruby-justification-001-ref.html", "==" ] ], {} ] ], - "highlight-cascade-002.html": [ - "c01d3c796e5ec88c16dae4c1819908a03cba4078", + "ruby-justification-002.html": [ + "979987c028baed8a7f6cd6de0c481b87ce9f2848", [ - "css/css-pseudo/highlight-cascade-002.html", + null, [ [ - "/css/css-pseudo/highlight-cascade-002-ref.html", + "/css/css-ruby/ruby-justification-002-ref.html", "==" ] ], {} ] ], - "highlight-cascade-003.html": [ - "61bc46d4c50feab4f275e6d0785bf729c4239b27", + "ruby-lang-specific-style-001.html": [ + "3206514f0d44855d3a9376ecfa47a6e9c3b62775", [ - "css/css-pseudo/highlight-cascade-003.html", + null, [ [ - "/css/css-pseudo/highlight-cascade-003-ref.html", + "/css/css-ruby/ruby-lang-specific-style-001-ref.html", "==" ] ], {} ] ], - "highlight-cascade-004.html": [ - "eb181096ce1ee035aa10e21e6f35fba58c5c7acb", + "ruby-layout-internal-boxes.html": [ + "cfd271233e20402a20d7e66d174d6b2f05072c4d", [ - "css/css-pseudo/highlight-cascade-004.html", + null, [ [ - "/css/css-pseudo/highlight-cascade-004-ref.html", + "/css/css-ruby/ruby-layout-internal-boxes-ref.html", "==" ] ], {} ] ], - "highlight-cascade-005.html": [ - "008f56aded9f2b7be43e346189f5a7b552065064", + "ruby-line-break-suppression-001.html": [ + "11d4d40d43610fbcdbc8df580336eb1a41bfea22", [ null, [ [ - "/css/css-pseudo/highlight-cascade-005-ref.html", + "/css/css-ruby/ruby-line-break-suppression-001-ref.html", "==" ] ], {} ] ], - "highlight-cascade-006.xhtml": [ - "fb6d07f8f0b6b420a3fcf71480055756b09a1901", + "ruby-line-break-suppression-002.html": [ + "394b9c27e536eb7dfc7e9b248f9b27d5b848af20", [ null, [ [ - "/css/css-pseudo/highlight-cascade-006-ref.xhtml", + "/css/css-ruby/ruby-line-break-suppression-002-ref.html", "==" ] ], {} ] ], - "highlight-cascade-008.html": [ - "10ca924b8fd1d24089011c71584071a6e84423e4", + "ruby-line-break-suppression-003.html": [ + "dadfd562a45ac49ad303ea232a04fa5fe5c66621", [ - "css/css-pseudo/highlight-cascade-008.html", + null, [ [ - "/css/css-pseudo/highlight-cascade-008-ref.html", + "/css/css-ruby/ruby-line-break-suppression-003-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 255 - ], - [ - 0, - 10 - ] - ] - ] - ] - } + {} ] ], - "highlight-currentcolor-painting-properties-001.html": [ - "76d80d228a0482acfd8d1c57591eca540b445e6f", + "ruby-line-break-suppression-004.html": [ + "0314237f07f61c30fa562aa86c3142aaa8057a06", [ - "css/css-pseudo/highlight-currentcolor-painting-properties-001.html", + null, [ [ - "/css/css-pseudo/highlight-currentcolor-painting-properties-001-ref.html", + "/css/css-ruby/ruby-line-break-suppression-004-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 50 - ], - [ - 0, - 150 - ] - ] - ] - ] - } + {} ] ], - "highlight-currentcolor-painting-properties-002.html": [ - "ac3677c1cff258088942b00dd9bc0f903df5cb35", + "ruby-line-break-suppression-005.html": [ + "10d6690b3d8bbea027f250a3a0cfbbbf72da4c43", [ - "css/css-pseudo/highlight-currentcolor-painting-properties-002.html", + null, [ [ - "/css/css-pseudo/highlight-currentcolor-painting-properties-002-ref.html", + "/css/css-ruby/ruby-line-break-suppression-005-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 50 - ], - [ - 0, - 150 - ] - ] - ] - ] - } + {} ] ], - "highlight-currentcolor-painting-text-shadow-001.html": [ - "141556f935b8e38f0352fd0a0c32212f2c62debf", + "ruby-line-breaking-001.html": [ + "b6b4d861e21e241852bb97d1671a73d160089ccc", [ null, [ [ - "/css/css-pseudo/highlight-currentcolor-painting-text-shadow-001-ref.html", + "/css/css-ruby/ruby-line-breaking-001-ref.html", "==" ] ], {} ] ], - "highlight-currentcolor-painting-text-shadow-002.html": [ - "77858729afaf8c55b435094baceb5959b67d3d46", + "ruby-line-breaking-002.html": [ + "dddf41f9309abc3aa0535400a0cd967b97910cdc", [ null, [ [ - "/css/css-pseudo/highlight-currentcolor-painting-text-shadow-002-ref.html", + "/css/css-ruby/ruby-line-breaking-002-ref.html", "==" ] ], {} ] ], - "highlight-currentcolor-root-explicit-default-001.html": [ - "a1512f014df4a38b81ac4c60cb1e2383542a60bd", + "ruby-line-breaking-003.html": [ + "27348d0cf11082e875506b9df6a56b0117538e65", [ null, [ [ - "/css/css-pseudo/highlight-currentcolor-root-explicit-default-001-ref.html", + "/css/css-ruby/ruby-line-breaking-003-ref.html", "==" ] ], {} ] ], - "highlight-currentcolor-root-explicit-default-002.html": [ - "fc5698faa1e794bde4ca69cf6b83a5f9868d1171", + "ruby-no-transform.html": [ + "56b2fc8380957743ddad8b6de6787c6110fae353", [ null, [ [ - "/css/css-pseudo/highlight-currentcolor-root-explicit-default-002-ref.html", + "/css/css-ruby/ruby-no-transform-ref.html", "==" ] ], {} ] ], - "highlight-currentcolor-root-implicit-default-001.html": [ - "ecf787b9b41a3c684ea2d1175aafa9049c097f84", + "ruby-reflow-001-opaqueruby.html": [ + "77feb2e6b8dcdd514114dbec9867529e3bda0323", [ null, [ [ - "/css/css-pseudo/highlight-currentcolor-root-implicit-default-ref.html", - "==" + "/css/css-ruby/ruby-reflow-001-noruby.html", + "!=" ] ], {} ] ], - "highlight-currentcolor-root-implicit-default-002.html": [ - "420cc5ba15e2f83e475db36f9574e2401a5c1217", + "ruby-reflow-001-transparentruby.html": [ + "008c5250bc364d4a9e15643ce38dc4d18eb7a145", [ null, [ [ - "/css/css-pseudo/highlight-currentcolor-root-implicit-default-ref.html", + "/css/css-ruby/ruby-reflow-001-noruby.html", "==" ] ], {} ] ], - "highlight-painting-001.html": [ - "ef253e6117c94ef63f9be97eaac0d94667c9fce3", + "ruby-span-001.html": [ + "e7b19667aa9fdbbf25ef662036ed1c0babd8e0fc", [ - "css/css-pseudo/highlight-painting-001.html", + null, [ [ - "/css/css-pseudo/highlight-painting-001-ref.html", + "/css/css-ruby/ruby-span-001-ref.html", "==" ] ], {} ] ], - "highlight-painting-002.html": [ - "a00f64d5b659f59945b7b6d7586f7fbdbfcb2149", + "ruby-text-collapse.html": [ + "5bb01aab026847c0e6092c7edcc2b208c5e2fe57", [ - "css/css-pseudo/highlight-painting-002.html", + null, [ [ - "/css/css-pseudo/highlight-painting-002-ref.html", + "/css/css-ruby/ruby-text-collapse-ref.html", "==" ] ], {} ] ], - "highlight-painting-003.html": [ - "1e9fa030c0920a99d2c3dea87a96e8721038d5e9", + "ruby-text-combine-upright-001a.html": [ + "bdb87e29b9b1b011868a6c03082fc60f80f72e36", [ - "css/css-pseudo/highlight-painting-003.html", + null, [ [ - "/css/css-pseudo/highlight-painting-003-ref.html", + "/css/css-ruby/ruby-text-combine-upright-001-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 50 - ], - [ - 0, - 300 - ] - ] - ] - ] - } + {} ] ], - "highlight-painting-004.html": [ - "41425e5f14e80b31d8bd7e0dcd9c05709137330b", + "ruby-text-combine-upright-001b.html": [ + "8aed0146b5493d2219129ff02de11daa68820d94", [ - "css/css-pseudo/highlight-painting-004.html", + null, [ [ - "/css/css-pseudo/highlight-painting-004-ref1.html", - "==" - ], - [ - "/css/css-pseudo/highlight-painting-004-ref2.html", - "==" - ], - [ - "/css/css-pseudo/highlight-painting-004-ref3.html", + "/css/css-ruby/ruby-text-combine-upright-001-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 50 - ], - [ - 0, - 320 - ] - ] - ] - ] - } + {} ] ], - "highlight-painting-currentcolor-005.html": [ - "f5c15aafa99ac5b068bbf267bb8ea3583d7ba79a", + "ruby-text-combine-upright-002a.html": [ + "6c95c169e240f99d145506d3df854ed9d9fb6509", [ null, [ [ - "/css/css-pseudo/highlight-painting-currentcolor-005-ref.html", + "/css/css-ruby/ruby-text-combine-upright-002-ref.html", "==" ] ], {} ] ], - "highlight-painting-soft-hyphens-001.html": [ - "17b5f6a37c4c2489959f41bed4ca53c352a20a4d", + "ruby-text-combine-upright-002b.html": [ + "ed7dabb0269789e73d1073fbf1a9af2a68d1d1d6", [ null, [ [ - "/css/css-pseudo/highlight-painting-soft-hyphens-001-ref.html", + "/css/css-ruby/ruby-text-combine-upright-002-ref.html", "==" ] ], {} ] ], - "highlight-paired-cascade-001.html": [ - "09e5abf9a3285ff219044a84b61bbc239f405689", + "ruby-text-dynamic-style.html": [ + "3adade2dd3cd4723774efe22352e3e9389f81e82", [ - "css/css-pseudo/highlight-paired-cascade-001.html", + null, [ [ - "/css/css-pseudo/highlight-paired-cascade-001-ref.html", + "/css/css-ruby/reference/ruby-text-dynamic-style-ref.html", "==" ] ], {} ] ], - "highlight-paired-cascade-002.html": [ - "affbe9562975c351f848bdc927c1cdcc56e118f5", + "ruby-whitespace-001.html": [ + "9072a8e6841925a5023730ad48b5a2f074b1d0dd", [ - "css/css-pseudo/highlight-paired-cascade-002.html", + null, [ [ - "/css/css-pseudo/highlight-paired-cascade-002-ref.html", + "/css/css-ruby/ruby-whitespace-001-ref.html", "==" ] ], {} ] ], - "highlight-paired-cascade-003.html": [ - "250e320210c65f6b8538adf849362d5e34da634a", + "ruby-whitespace-002.html": [ + "98ed78913375ad36d2422ca231cb880a07032741", [ - "css/css-pseudo/highlight-paired-cascade-003.html", + null, [ [ - "/css/css-pseudo/highlight-paired-cascade-003-ref.html", + "/css/css-ruby/ruby-whitespace-002-ref.html", "==" ] ], {} ] ], - "highlight-paired-cascade-004.html": [ - "61e2b7d7f0735e75a34b043354a60ac58659083b", + "ruby-with-floats-001.html": [ + "a49c1b255ff6afc6227d2ad603a68f7eeae0656a", [ null, [ [ - "/css/css-pseudo/highlight-paired-cascade-004-notref.html", - "!=" + "/css/css-ruby/ruby-with-floats-001-ref.html", + "==" ] ], {} ] ], - "highlight-paired-cascade-005.html": [ - "50677c811e78fc81496d462e00fc4977e5d29ff9", + "ruby-with-floats-002.html": [ + "190089d3340394e0aa82d17979b6efdad0f961f4", [ null, [ [ - "/css/css-pseudo/highlight-paired-cascade-005-ref.html", + "/css/css-ruby/ruby-with-floats-002-ref.html", "==" ] ], {} ] ], - "highlight-paired-cascade-006.html": [ - "20c03282c81a03df93d912080ede2bb5fc8e64ed", + "ruby-with-floats-003.html": [ + "4fd7524315ed2b745788c07191c417fea07b3344", [ - "css/css-pseudo/highlight-paired-cascade-006.html", + null, [ [ - "/css/css-pseudo/highlight-paired-cascade-006-ref.html", + "/css/css-ruby/ruby-with-floats-003-ref.html", "==" ] ], {} ] - ], - "highlight-styling-001.html": [ - "63d8ee1eda47dec0eeaf30f56316e4203e49f182", + ] + }, + "css-scoping": { + "css-scoping-shadow-assigned-node-with-before-after.html": [ + "b926540ae94034ce1acadad02fc3cf4cb7d20580", [ - "css/css-pseudo/highlight-styling-001.html", + null, [ [ - "/css/css-pseudo/highlight-styling-001-ref.html", + "/css/css-scoping/reference/green-box.html", "==" ] ], {} ] ], - "highlight-styling-002.html": [ - "2f7cc29128e4dc8de7922922f33cab8451c0eaf1", + "css-scoping-shadow-assigned-node-with-rules.html": [ + "e981eae0557bdf98101c474cd7ae5ffe031d16b3", [ - "css/css-pseudo/highlight-styling-002.html", + null, [ [ - "/css/css-pseudo/highlight-styling-002-ref.html", + "/css/css-scoping/reference/green-box.html", "==" ] ], {} ] ], - "highlight-styling-003.tentative.html": [ - "70d3dc63e520816471f91fa2b5a8b61b50b8ebe3", + "css-scoping-shadow-host-functional-rule.html": [ + "13f9a67ed8c006a010d11e9ad71815832da2a31b", [ null, [ [ - "/css/css-pseudo/highlight-styling-003-ref.html", + "/css/css-scoping/reference/green-box.html", "==" ] ], {} ] ], - "highlight-z-index-001.html": [ - "45b83ae81e89df855b6f104ae0beff7dc7a8d9f7", + "css-scoping-shadow-host-namespace.html": [ + "46dffc8de38a52a6448e2e7692e6af0d7be1177d", [ null, [ [ - "/css/css-pseudo/highlight-z-index-001-ref.html", + "/css/css-scoping/reference/green-box.html", "==" ] ], {} ] ], - "highlight-z-index-002.html": [ - "26c965086546f48d9d1736901e558f94cc5c7ece", + "css-scoping-shadow-host-rule.html": [ + "ef70b9017cdf3d8a5ca04b5da57f491d9b8dffb5", [ null, [ [ - "/css/css-pseudo/highlight-z-index-002-ref.html", + "/css/css-scoping/reference/green-box.html", "==" ] ], {} ] ], - "marker-and-other-pseudo-elements.html": [ - "f393db58fe8a9acd9e52494c4cea56b18c636535", + "css-scoping-shadow-host-with-before-after.html": [ + "c32d8a9e87855b1131851c7e423b3da5de71d916", [ null, [ [ - "/css/css-pseudo/marker-and-other-pseudo-elements-ref.html", + "/css/css-scoping/reference/green-box.html", "==" ] ], {} ] ], - "marker-animate-002.html": [ - "0ed8dbf05e4a9a26ae584b7ccb020cdcd78427fa", + "css-scoping-shadow-invisible-slot.html": [ + "be9f308fc40a9107c708aa15facf8d2c455f288a", [ null, [ [ - "/css/css-pseudo/marker-animate-002-ref.html", + "/css/css-scoping/reference/green-box.html", "==" ] ], {} ] ], - "marker-color.html": [ - "d45c76696eca826456988d7884adcaa52bfad9cd", + "css-scoping-shadow-nested-slot-display-override.html": [ + "f194e469f05845e9ee4e362541971aeeaceff1ce", [ null, [ [ - "/css/css-pseudo/marker-color-ref.html", + "/css/css-scoping/reference/green-box.html", "==" ] ], {} ] ], - "marker-content-001.html": [ - "5e5bfe1c23abc34c28e3af1504bce8420407f162", + "css-scoping-shadow-root-hides-children.html": [ + "bc526059dcafa63267a9a4abbcf4e120ea738374", [ null, [ [ - "/css/css-pseudo/marker-content-001-ref.html", + "/css/css-scoping/reference/green-box.html", "==" ] ], {} ] ], - "marker-content-001b.html": [ - "6ab87a31d802601297715b64561c74b6cb04c81b", + "css-scoping-shadow-slot-display-override.html": [ + "9338a25be6fe21089f359da72b8fe118ac593bdc", [ null, [ [ - "/css/css-pseudo/marker-content-001-ref.html", + "/css/css-scoping/reference/green-box.html", "==" ] ], {} ] ], - "marker-content-001c.html": [ - "0a32b2ada03593635fda4bae45fc97845fb28ab8", + "css-scoping-shadow-slot-fallback.html": [ + "6cf1b5bafc549b5f27de0868a14fcaa749a08dba", [ null, [ [ - "/css/css-pseudo/marker-content-001-ref.html", + "/css/css-scoping/reference/green-box.html", "==" ] ], {} ] ], - "marker-content-002.html": [ - "4c46c4b0b01bfeae7c473f3507d920d7229a64cb", + "css-scoping-shadow-slot-style.html": [ + "e3f37c33c848d45133717e79ed333afd52219493", [ null, [ [ - "/css/css-pseudo/marker-content-002-ref.html", + "/css/css-scoping/reference/green-box.html", "==" ] ], {} ] ], - "marker-content-003.html": [ - "b4a41ce6d87ef464a525a9252c2ffc8d824bf901", + "css-scoping-shadow-slot.html": [ + "2b588d622e12dff9f146150b25edae0e76b31356", [ null, [ [ - "/css/css-pseudo/marker-content-003-ref.html", + "/css/css-scoping/reference/green-box.html", "==" ] ], {} ] ], - "marker-content-003b.html": [ - "da7a2723ce32fae72092795cb30cd2e33709ca5d", + "css-scoping-shadow-slotted-nested.html": [ + "5f930e2e8777e7c4bb84aa19789e54b588122214", [ null, [ [ - "/css/css-pseudo/marker-content-003-ref.html", + "/css/css-scoping/reference/green-box.html", "==" ] ], {} ] ], - "marker-content-004.html": [ - "24dbaae123cce2882324b59c395d049a8ab7600e", + "css-scoping-shadow-slotted-rule.html": [ + "9771c5d1dfb6d9139ecd76f7db3c0363b2c5d0c9", [ null, [ [ - "/css/css-pseudo/marker-content-004-ref.html", + "/css/css-scoping/reference/green-box.html", "==" ] ], {} ] ], - "marker-content-005.html": [ - "ad37a65738f98fe4daf2cf0c11b1bb1ed2cd3b60", + "css-scoping-shadow-with-outside-rules.html": [ + "c725752cba54234c632d385d2ca1d9b0547da3f6", [ null, [ [ - "/css/css-pseudo/marker-content-005-ref.html", + "/css/css-scoping/reference/green-box.html", "==" ] ], {} ] ], - "marker-content-006.html": [ - "bf941ef3b1e83d36daa912f1cd7d3259a6519211", + "css-scoping-shadow-with-rules-no-style-leak.html": [ + "e4d1d15b7be7c20dff2d6fe66d86161e885c82c9", [ null, [ [ - "/css/css-pseudo/marker-content-006-ref.html", + "/css/css-scoping/reference/green-box.html", "==" ] ], {} ] ], - "marker-content-007.tentative.html": [ - "fb452666e3c16094945ea5212e66cf04914f47f4", + "css-scoping-shadow-with-rules.html": [ + "3338ecbf72f028cdb657bacc2a176ebd2658333b", [ null, [ [ - "/css/css-pseudo/marker-content-007-ref.html", + "/css/css-scoping/reference/green-box.html", "==" ] ], {} ] ], - "marker-content-008.tentative.html": [ - "155b50ab6f0a9f633adbb65aaac0fd5fbdebb066", + "host-context-specificity-001.html": [ + "694087f56b76cae0a3ccf5015cc25902a1dad8cf", [ - "css/css-pseudo/marker-content-008.tentative.html", + null, [ [ - "/css/css-pseudo/marker-content-008-ref.html", + "/css/css-scoping/reference/green-box.html", "==" ] ], {} ] ], - "marker-content-009.tentative.html": [ - "b3627cca7554076f85d59869eec7bc80e39b82be", + "host-context-specificity-002.html": [ + "3d4d3e5b245950f15ec126909393ff5e8b3edcb8", [ null, [ [ - "/css/css-pseudo/marker-content-009-ref.html", + "/css/css-scoping/reference/green-box.html", "==" ] ], {} ] ], - "marker-content-010.html": [ - "dcd27df148ae4f865402f1e85b7df4cdd195be5b", + "host-context-specificity-003.html": [ + "7abf8847c95ed04fae77b8601457909ecd72742e", [ null, [ [ - "/css/css-pseudo/marker-content-010-ref-001.html", - "==" - ], - [ - "/css/css-pseudo/marker-content-010-ref-002.html", + "/css/css-scoping/reference/green-box.html", "==" ] ], {} ] ], - "marker-content-011.tentative.html": [ - "0cc20b0cdcd242021bc37b9e2d3500ed21c5b35f", + "host-defined.html": [ + "9e9776754a3f360537e899e064a0d3b36dbe14c3", [ null, [ [ - "/css/css-pseudo/marker-content-011-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "marker-content-012.html": [ - "f36228719a0656e822892661e83a23a8382c742c", + "host-descendant-001.html": [ + "423beaf055b9f482dd299c055721a405df1d5d77", [ null, [ [ - "/css/css-pseudo/marker-content-012-ref.html", + "/css/css-scoping/reference/green-box.html", "==" ] ], {} ] ], - "marker-content-013.html": [ - "3b2ce6fa50abac5cd44a75880eb18dad3aae485c", + "host-descendant-002.html": [ + "6660d4a40c6244e675bb0b0dfddac86d36034fe9", [ null, [ [ - "/css/css-pseudo/marker-content-013-ref.html", + "/css/css-scoping/reference/green-box.html", "==" ] ], {} ] ], - "marker-content-014.html": [ - "f1ebbe86c4f1f93e33ded979455458b65236414e", + "host-has-001.html": [ + "79c89874c63af3b2fa14ed64e0711b006a8032dc", [ - null, + "css/css-scoping/host-has-001.html", [ [ - "/css/css-pseudo/marker-content-014-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "marker-content-015.html": [ - "6e1ec40af1d85c9f34ccb315649b67438a5dcf37", + "host-has-002.html": [ + "33a705672aeb07fdaae71eb7fac583396f20d450", [ - null, + "css/css-scoping/host-has-002.html", [ [ - "/css/css-pseudo/marker-content-015-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "marker-content-016.html": [ - "9a0585db72206768e2a7ed77f9245f67103d587b", + "host-has-003.html": [ + "58f1482564b0b29afd2a1c5dea7a7640d6b74a72", [ - null, + "css/css-scoping/host-has-003.html", [ [ - "/css/css-pseudo/marker-content-016-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "marker-content-017.html": [ - "267e519feee6541596f11310e2075419e13cffc2", + "host-has-internal-001.tentative.html": [ + "c2082de0ac306be835d1913e4b011b5503eac186", [ - null, + "css/css-scoping/host-has-internal-001.tentative.html", [ [ - "/css/css-pseudo/marker-content-017-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "marker-content-018.html": [ - "0a4a73cd5056415084f9579a2323318c58f1a167", + "host-has-internal-002.tentative.html": [ + "217ed9596c411a6d20b2cda5d972728a8e4da8eb", [ - null, + "css/css-scoping/host-has-internal-002.tentative.html", [ [ - "/css/css-pseudo/marker-content-018-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "marker-content-019.html": [ - "4921ca7d283e99ea426772ffc47b3a9c86329e9a", + "host-has-internal-003.tentative.html": [ + "9c0a724834596d29f397a5434a83b5bbba658d46", [ - null, + "css/css-scoping/host-has-internal-003.tentative.html", [ [ - "/css/css-pseudo/marker-content-019-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "marker-content-020.html": [ - "5211506d8a17ce278407d2337d760b16f3fd34be", + "host-is-001.html": [ + "16d0dd76691362ee963e386a2fd238783c096243", [ null, [ [ - "/css/css-pseudo/marker-content-020-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "marker-content-021.html": [ - "fc3fe851e9713add5fd6eaa8fc4b50da107f60dc", + "host-is-002.html": [ + "408dde2987690b715e454504030499d68baa12a1", [ null, [ [ - "/css/css-pseudo/marker-content-021-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "marker-content-022.html": [ - "56863bee704baa9c2ee34dda63131cb53a84d75f", + "host-is-003.html": [ + "b1958c00ea2a2d40d6ae8f757e250861132a63fb", [ null, [ [ - "/css/css-pseudo/marker-content-022-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "marker-content-023.html": [ - "9ec0ca46e4290dad6b9e3456b76602d05ab5e7c0", + "host-is-004.html": [ + "5d12a5b5a77e4b2f4d9964d48141ec05c444a52a", [ null, [ [ - "/css/css-pseudo/marker-content-023-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "marker-content-024.html": [ - "8a6ab0b5a7cc8516f5e2d4abbbd6e41fe8acd8b5", + "host-is-005.html": [ + "1e2209abda828d785ecf561e307f3bd26391ca7c", [ null, [ [ - "/css/css-pseudo/marker-content-024-ref.html", + "/css/reference/ref-filled-green-100px-square-only.html", "==" ] ], {} ] ], - "marker-display-dynamic-001.html": [ - "c06da7ca803455559a7a12b915d9083b32106cd1", + "host-multiple-001.html": [ + "c8833c4b5b7abb52a6c336ea6b6f24e546cfed62", [ null, [ [ - "/css/css-pseudo/marker-color-ref.html", + "/css/css-scoping/reference/green-box.html", "==" ] ], {} ] ], - "marker-font-properties.html": [ - "4dd780679845a34699f31febd927dc3b774a5ffd", + "host-nested-001.html": [ + "f8e412cc00565c5b20416bee5b88e0cc95ddc6d8", [ null, [ [ - "/css/css-pseudo/marker-font-properties-ref.html", + "/css/css-scoping/reference/green-box.html", "==" ] ], {} ] ], - "marker-font-variant-numeric-default-ref.html": [ - "be932213b0f1657524df67788130c09f3602cf80", + "host-slotted-001.html": [ + "f05b7c729f31a7225809f6166ea0d65be8fa0314", [ null, [ [ - "/css/css-pseudo/marker-font-variant-numeric-normal-ref.html", - "!=" + "/css/css-scoping/reference/green-box.html", + "==" ] ], {} ] ], - "marker-font-variant-numeric-default.html": [ - "21840697c77dfac18f0cbbcc5d15ec6b529c05d5", + "host-specificity-002.html": [ + "3132d3a3455241347d6fe421f3434c361e424493", [ null, [ [ - "/css/css-pseudo/marker-font-variant-numeric-default-ref.html", + "/css/css-scoping/reference/green-box.html", "==" ] ], {} ] ], - "marker-font-variant-numeric-normal-ref.html": [ - "b730a24e55a46d307afc0fe41d4517d65e44046f", + "host-specificity-003.html": [ + "54a22599d8f83f612d7fc9ff91abfe650114c6e2", [ null, [ [ - "/css/css-pseudo/marker-font-variant-numeric-default-ref.html", - "!=" + "/css/css-scoping/reference/green-box.html", + "==" ] ], {} ] ], - "marker-font-variant-numeric-normal.html": [ - "e763f2871cc109dbdd21fab5cd666327e9875518", + "host-specificity.html": [ + "3ef61d4135fe7dbf846feb82540ca1a213ce7987", [ null, [ [ - "/css/css-pseudo/marker-font-variant-numeric-normal-ref.html", + "/css/css-scoping/reference/green-box.html", "==" ] ], {} ] ], - "marker-hyphens.html": [ - "a63e3deaf9be852bf4233eddf21c5b24b8747ee3", + "host-with-default-namespace-001.html": [ + "dcd51f8119f4bbaed2f97bf3b4dcee9fa8f0fc7c", [ null, [ [ - "/css/css-pseudo/marker-hyphens-ref.html", + "/css/css-scoping/reference/green-box.html", "==" ] ], {} ] ], - "marker-inherit-line-height.html": [ - "de34c2f7ae33654f6b19d65ba7b2acdf0bfc7b0f", + "reslot-text-inheritance.html": [ + "43711c83bd160825caf1d89c7599f3df1ae64508", [ null, [ [ - "/css/css-pseudo/marker-inherit-line-height-ref.html", + "/css/css-scoping/reference/green-text.html", "==" ] ], {} ] ], - "marker-inherit-values.html": [ - "82456afb6c6058a209ddb8bbcee523a900665dee", + "scoped-reference-animation-001.html": [ + "891bda52a39b42322cf15cb01727f9cad58cf026", [ null, [ [ - "/css/css-pseudo/marker-inherit-values-ref.html", + "/css/css-scoping/scoped-reference-animation-ref.html", "==" ] ], {} ] ], - "marker-intrinsic-contribution-002.html": [ - "1430270b3463185763a9dffd4d717614525edb93", + "scoped-reference-animation-002.html": [ + "d5c25f06c0aa73269615ec9bf2b6399729ea261a", [ null, [ [ - "/css/css-pseudo/marker-intrinsic-contribution-002-ref.html", + "/css/css-scoping/scoped-reference-animation-ref.html", "==" ] ], {} ] ], - "marker-letter-spacing.html": [ - "8a89e1792159a6bf9b364aba96464c5f4eb91547", + "shadow-assign-dynamic-001.html": [ + "b9a0d1a2991c071bb3654995f93c4ac7ff495aee", [ null, [ [ - "/css/css-pseudo/marker-letter-spacing-ref-001.html", - "==" - ], - [ - "/css/css-pseudo/marker-letter-spacing-ref-002.html", + "/css/css-scoping/reference/green-box.html", "==" ] ], {} ] ], - "marker-line-break.html": [ - "7577822bce32335d6993d15f22850b95267d7e3b", + "shadow-at-import.html": [ + "1adf516311f3a7ae470308e8698f3165b5fa6ca5", [ null, [ [ - "/css/css-pseudo/marker-line-break-ref.html", + "/css/css-scoping/reference/green-box.html", "==" ] ], {} ] ], - "marker-line-height.html": [ - "ee32f3bb6d6135b02a25a3bb5d48110053bd4347", + "shadow-directionality-001.tentative.html": [ + "7070d2a1d9a856fa9a00fa590f5f582df0a29ac9", [ null, [ [ - "/css/css-pseudo/marker-line-height-ref.html", + "/css/css-scoping/reference/green-box.html", "==" ] ], {} ] ], - "marker-list-style-position.html": [ - "9b122bc3e9b6200fbf33c1c7d3da2ba155ff1691", + "shadow-directionality-002.tentative.html": [ + "6aba12436a6780ce5afde675388506f7f82c29a8", [ null, [ [ - "/css/css-pseudo/marker-list-style-position-ref-001.html", - "==" - ], - [ - "/css/css-pseudo/marker-list-style-position-ref-002.html", + "/css/css-scoping/reference/green-box.html", "==" ] ], {} ] ], - "marker-overflow-wrap.html": [ - "29d9cf778493b365ec088c124cfe8b0e77b3c215", + "shadow-disabled-sheet-001.html": [ + "275ac47a613adb26c408912160a339b8a71c9c9c", [ null, [ [ - "/css/css-pseudo/marker-line-break-ref.html", + "/css/css-scoping/reference/green-box.html", "==" ] ], {} ] ], - "marker-tab-size.html": [ - "a521f58bc80c4445ac61714a4f099b7dadfbee4a", + "shadow-fallback-dynamic-001.html": [ + "9a5672eb63a902d08f309f96ba659b615cceeda9", [ null, [ [ - "/css/css-pseudo/marker-tab-size-ref.html", + "/css/css-scoping/reference/green-box.html", "==" ] ], {} ] ], - "marker-text-align-001.html": [ - "5ef1d8d75d78f25854b43b259eae43f1f21efa8f", + "shadow-fallback-dynamic-002.html": [ + "f65d0c7a2129d685429cef4b754a720816af6b22", [ null, [ [ - "/css/css-pseudo/marker-text-align-001-ref.html", + "/css/css-scoping/reference/green-box.html", "==" ] ], {} ] ], - "marker-text-align-002.html": [ - "6fe05b728d94873371c03a85c1cf5085790f94a9", + "shadow-fallback-dynamic-003.html": [ + "a30e8fed7d257ceedc249c24b249fab69d85c19d", [ null, [ [ - "/css/css-pseudo/marker-text-align-002-ref.html", + "/css/css-scoping/reference/green-box.html", "==" ] ], {} ] ], - "marker-text-align-003.html": [ - "38c513d7ae15bd21b998c96617088487c02fb2e5", + "shadow-fallback-dynamic-004.html": [ + "29e407573a31ba87da8419121431b661612c68ca", [ null, [ [ - "/css/css-pseudo/marker-text-align-003-ref.html", + "/css/css-scoping/reference/green-box.html", "==" ] ], {} ] ], - "marker-text-combine-upright.html": [ - "64b37a0c7d4355c560cdf02f078ddd65f252b2d9", + "shadow-fallback-dynamic-005.html": [ + "1d84907e5fc0deb164bd38ab6b9979977a003fc6", [ null, [ [ - "/css/css-pseudo/marker-text-combine-upright-ref.html", + "/css/css-scoping/reference/green-box.html", "==" ] ], {} ] ], - "marker-text-decoration-skip-ink.html": [ - "153e9221a39bbba6f4401ca39b45505468c666ce", + "shadow-host-with-before-after.html": [ + "87e1554f154d82c6252e752caa830954c119310c", [ null, [ [ - "/css/css-pseudo/marker-text-decoration-skip-ink-ref.html", + "/css/css-scoping/reference/green-box.html", "==" ] ], {} ] ], - "marker-text-emphasis.html": [ - "db9fb3d5257b2467c7178e7ab245598f80a6f54b", + "shadow-link-rel-stylesheet-no-style-leak.html": [ + "8ca69ccd1b287ad36283405c8ca95742ad08299e", [ null, [ [ - "/css/css-pseudo/marker-text-emphasis-ref.html", + "/css/css-scoping/reference/green-box.html", "==" ] ], {} ] ], - "marker-text-shadow.html": [ - "3f8ae566f164f80f0487601b6292c283a8076e93", + "shadow-link-rel-stylesheet.html": [ + "d67929a1adbd42b807500685c6a36a9e61e22fed", [ null, [ [ - "/css/css-pseudo/marker-text-shadow-ref.html", + "/css/css-scoping/reference/green-box.html", "==" ] ], {} ] ], - "marker-text-transform-default.html": [ - "922c5b0de27b3f4bd58765242e9027390d4eba77", + "shadow-reassign-dynamic-001.html": [ + "e8fe49ac96ff1694565bd82213c07f7204f0bb1c", [ null, [ [ - "/css/css-pseudo/marker-text-transform-default-ref.html", + "/css/css-scoping/reference/green-box.html", "==" ] ], {} ] ], - "marker-text-transform-dynamic.html": [ - "f10b42ead6d77c30dc63d44efa19e73c56573c6c", + "shadow-reassign-dynamic-002.html": [ + "7874e2e13987246c1160c419967aba9db32bbf63", [ null, [ [ - "/css/css-pseudo/marker-text-transform-dynamic-ref.html", + "/css/css-scoping/reference/green-box.html", "==" ] ], {} ] ], - "marker-text-transform-uppercase.html": [ - "d77f4e7de2e2507b34b836efd33b882a798069e8", + "shadow-reassign-dynamic-004.html": [ + "6c2beadc36a5007f26affa4ad4cceb39f6849d8e", [ null, [ [ - "/css/css-pseudo/marker-text-transform-uppercase-ref.html", + "/css/css-scoping/reference/green-box.html", "==" ] ], {} ] ], - "marker-unicode-bidi-default-ref.html": [ - "c3c6ee8a63d3959b8be77935532d23393ce8b5e0", + "shadow-root-insert-into-document.html": [ + "a3b89be389a780dd53a1b53224810ecb4866c287", [ null, [ [ - "/css/css-pseudo/marker-unicode-bidi-normal-ref.html", - "!=" + "/css/css-scoping/reference/green-box.html", + "==" ] ], {} ] ], - "marker-unicode-bidi-default.html": [ - "e732009a57b993d4063d9e498f52670bfc78f1a1", + "slotted-placeholder.html": [ + "a3d607afb8e78e8c340b2d4c6ec86a5f4fc12190", [ null, [ [ - "/css/css-pseudo/marker-unicode-bidi-default-ref.html", + "/css/css-scoping/slotted-placeholder-ref.html", "==" ] ], {} ] ], - "marker-unicode-bidi-normal-ref.html": [ - "292fd01bb3403f4d7ec6620869d47f5f7b4b60cc", + "slotted-specificity-002.html": [ + "ca2b9ab14c429a855e37823ce76b20f0e0b65921", [ null, [ [ - "/css/css-pseudo/marker-unicode-bidi-default-ref.html", - "!=" + "/css/css-scoping/reference/green-box.html", + "==" ] ], {} ] ], - "marker-unicode-bidi-normal.html": [ - "4cdc86522a5f0e1f1b0940bcd958903b87afda6a", + "slotted-specificity.html": [ + "d049182db65ae9b0339c33c429ac4beb92dc39a1", [ null, [ [ - "/css/css-pseudo/marker-unicode-bidi-normal-ref.html", + "/css/css-scoping/reference/green-box.html", "==" ] ], {} ] ], - "marker-variable.html": [ - "eb349c98dfb26fec5917fe1be3c01e404cce5a65", + "slotted-with-pseudo-element.html": [ + "f2b33ae49474ff6594acd2052d400d781d4101af", [ - "css/css-pseudo/marker-variable.html", + null, [ [ - "/css/css-pseudo/marker-variable-ref.html", + "/css/css-scoping/slotted-with-pseudo-element-ref.html", "==" ] ], {} ] ], - "marker-word-break.html": [ - "4e3aeaebd88159cd0ac7b9a48c31151c4da99d3f", + "stylesheet-title-001.html": [ + "a91fca8ce132770b6d031fe9a3abacf8d40a66f6", [ null, [ [ - "/css/css-pseudo/marker-word-break-ref.html", + "/css/css-scoping/reference/green-box.html", "==" ] ], {} ] ], - "marker-word-spacing.html": [ - "a98f0bd7763f5bec7ccbabfe521b80cf0d7bc263", + "whitespace-crash-001.html": [ + "d3b4a8a4ad21962d8277a8ab1ecd9e9ffb1675d4", [ null, [ [ - "/css/css-pseudo/marker-word-spacing-ref.html", + "/css/css-scoping/reference/green-box.html", "==" ] ], {} ] - ], - "outside-marker-paint-order.html": [ - "94d0c42eca8cffbd5637a1039028925c19e1f851", + ] + }, + "css-scroll-anchoring": { + "nested-overflow-subtree-layout-vertical.html": [ + "5b176a2042e7607f740e94faa445ec301c8e88d8", [ null, [ [ - "/css/css-pseudo/outside-marker-paint-order-ref.html", + "/css/css-scroll-anchoring/nested-overflow-subtree-layout-vertical-ref.html", "==" ] ], {} ] ], - "placeholder-excluded-properties.html": [ - "dc5718164ce23a6cb35ba85644e6bc5f2f0dcc69", + "nested-overflow-subtree-layout.html": [ + "e7696016bb31fde98a57cd8ef2b3f78551350d40", [ null, [ [ - "/css/css-pseudo/reference/placeholder-excluded-properties-ref.html", + "/css/css-scroll-anchoring/nested-overflow-subtree-layout-ref.html", "==" ] ], {} ] ], - "placeholder-input-number.html": [ - "a557f1091ec29dd90cd4290cf96ac4752b04ff3f", + "vertical-rl-viewport-size-change-000.html": [ + "ee367b1c9718e6d353dbaaaa922f9e13546a7734", [ null, [ [ - "/css/css-pseudo/placeholder-input-number-notref.html", - "!=" + "/css/reference/ref-filled-green-100px-square.xht", + "==" ] ], {} ] ], - "selection-background-painting-order.html": [ - "a21cfe8ab732c365ebff20b072e00d3384a6506e", + "vertical-rl-viewport-size-change-001.html": [ + "0e58a1e63b10d68e0aae1ff0ba6ec0c7b1f726e9", [ - "css/css-pseudo/selection-background-painting-order.html", + null, [ [ - "/css/css-pseudo/selection-background-painting-order-ref1.html", + "/css/reference/ref-filled-green-100px-square.xht", "==" - ], + ] + ], + {} + ] + ] + }, + "css-scroll-snap": { + "scroll-snap-root-001.html": [ + "43028cb874d0e2b4899cb3248e20d43dd5930ee3", + [ + null, + [ [ - "/css/css-pseudo/selection-background-painting-order-ref2.html", + "/css/css-scroll-snap/scroll-snap-root-001-ref.html", "==" ] ], {} ] ], - "selection-contenteditable-011.html": [ - "bbefe0910ffd7f797fbafc8267815322281ee084", + "scroll-snap-root-002.html": [ + "302c75634133de666d4262d1a94c9c9ae9bd7b7e", [ null, [ [ - "/css/css-pseudo/reference/selection-contenteditable-011-ref.html", + "/css/css-scroll-snap/scroll-snap-root-002-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 5 - ], - [ - 0, - 255 - ] - ] - ] - ] - } + {} ] ], - "selection-input-011.html": [ - "e5d1858b82f4fde1545e81b6725e321f4c82d1c1", + "scroll-snap-root-003.html": [ + "fc7b28fdf56f360f2ef963d54f4f205426f3ffc9", [ null, [ [ - "/css/css-pseudo/reference/selection-input-011-ref.html", + "/css/css-scroll-snap/no-red-ref.html", "==" ] ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 5 - ], - [ - 0, - 255 - ] - ] - ] - ] - } + {} ] ], - "selection-intercharacter-011.html": [ - "3b73bd854afd425c4e2178e48304f7d82d5de738", + "scroll-target-align-001.html": [ + "eeda674e07c591cb1d17cce1c8f8bb460c45fbdf", [ null, [ [ - "/css/css-pseudo/reference/selection-intercharacter-011-ref.html", + "/css/css-scroll-snap/scroll-target-001-ref.html", "==" ] ], {} ] ], - "selection-intercharacter-012.html": [ - "090697054a8e351c9e9822ee62f27384b9957958", + "scroll-target-align-002.html": [ + "01db026dff29c62dbbe27a4e262bb2ed715ba5ef", [ null, [ [ - "/css/css-pseudo/reference/selection-intercharacter-012-ref.html", + "/css/css-scroll-snap/scroll-target-001-ref.html", "==" ] ], {} ] ], - "selection-link-001.html": [ - "08bc5e7323992b8563b298a76ad63ef7beb7c3fd", + "scroll-target-align-003.html": [ + "d13efa0abb5d1a13dbb43d78301730b322322ccb", [ null, [ [ - "/css/css-pseudo/selection-link-001-ref.html", + "/css/css-scroll-snap/scroll-target-001-ref.html", "==" ] ], {} ] ], - "selection-link-002.html": [ - "52c2ae1ec2a36ae18cd81a133b77ffe0a0a9d1f3", + "scroll-target-margin-001.html": [ + "8ddbbcec5f0b7992ba366c5f638b548327eb9fb2", [ null, [ [ - "/css/css-pseudo/selection-link-002-ref.html", + "/css/css-scroll-snap/scroll-target-001-ref.html", "==" ] ], {} ] ], - "selection-link-003.html": [ - "e935531997f076de2dce050350c4b47fce7f3194", + "scroll-target-margin-002.html": [ + "51cf553b3603f237226fa6b7d0ca33089f801a0e", [ null, [ [ - "/css/css-pseudo/selection-link-003-ref.html", + "/css/css-scroll-snap/scroll-target-001-ref.html", "==" ] ], {} ] ], - "selection-originating-decoration-color.html": [ - "7f03c19b6d0cb2562eba246c3c4282168573a7b2", + "scroll-target-margin-003.html": [ + "2ea8eff67c3d17b38031ca5534c8091cfa854409", [ - "css/css-pseudo/selection-originating-decoration-color.html", + null, [ [ - "/css/css-pseudo/selection-originating-decoration-color-ref.html", + "/css/css-scroll-snap/scroll-target-001-ref.html", "==" ] ], {} ] ], - "selection-originating-strikethrough-order.html": [ - "69d331b4571b493482b58a19202f6a734d87cb81", + "scroll-target-margin-004.html": [ + "ac87c8684d6a13cf400baea0fb918e4c59db368e", [ - "css/css-pseudo/selection-originating-strikethrough-order.html", + null, [ [ - "/css/css-pseudo/selection-originating-strikethrough-order-ref.html", + "/css/css-scroll-snap/scroll-target-001-ref.html", "==" ] ], {} ] ], - "selection-originating-underline-order.html": [ - "43141a0b6aa28c47b9fae0145426351a300af5ad", + "scroll-target-padding-001.html": [ + "5cd4fddcc53637b6f7e005574398d88c48bed8b1", [ - "css/css-pseudo/selection-originating-underline-order.html", + null, [ [ - "/css/css-pseudo/selection-originating-underline-order-ref.html", + "/css/css-scroll-snap/scroll-target-001-ref.html", "==" ] ], {} ] ], - "selection-overlay-and-grammar-001.html": [ - "19768c73897155fc03fa063aa9001c5b74521b6e", + "scroll-target-padding-002.html": [ + "fbed1e132ecf3805784436c4b13889f61ff8c7ba", [ null, [ [ - "/css/css-pseudo/reference/selection-overlay-and-grammar-001-ref.html", + "/css/css-scroll-snap/scroll-target-001-ref.html", "==" ] ], {} ] ], - "selection-overlay-and-spelling-001.html": [ - "13f9a2caf8c7801bdd2e333716fe6e9867fa8749", + "scroll-target-padding-003.html": [ + "ccbe7b0ec97c9ba14d2ac11df1a24b032e185fe0", [ null, [ [ - "/css/css-pseudo/reference/selection-overlay-and-spelling-001-ref.html", + "/css/css-scroll-snap/scroll-target-001-ref.html", "==" ] ], {} ] ], - "selection-paint-image.html": [ - "f5e2383ca8110d03c96e2e52f1701850c96f9962", + "scroll-target-snap-001.html": [ + "76d3222a0bf34750c90b236348694580c42ea94e", [ null, [ [ - "/css/css-pseudo/selection-paint-image-notref.html", - "!=" + "/css/css-scroll-snap/scroll-target-001-ref.html", + "==" ] ], {} ] ], - "selection-textarea-011.html": [ - "0152b957c25fed4b8781d1e6a5b63e16ac7db8d7", + "scroll-target-snap-002.html": [ + "6e928a435eb5c21c5d87a1754965336e1f3b7375", [ null, [ [ - "/css/css-pseudo/reference/selection-textarea-011-ref.html", + "/css/css-scroll-snap/scroll-target-001-ref.html", "==" ] ], {} ] ], - "slider": { - "slider-fill-001.html": [ - "b318929438aa6ef1524b28019f86ee3b654da7a5", + "scroll-target-snap-003.html": [ + "6fe3901e51c10b9d3d687d7b421b67e1ae6e5896", + [ + null, [ - "css/css-pseudo/slider/slider-fill-001.html", [ - [ - "/css/css-pseudo/slider/slider-fill-001-notref.html", - "!=" - ] - ], - {} - ] - ], - "slider-fill-002.html": [ - "84743dcda679761b4c777205002dbb1a2875cdd1", + "/css/css-scroll-snap/scroll-target-001-ref.html", + "==" + ] + ], + {} + ] + ], + "snap-after-initial-layout": { + "direction-rtl.html": [ + "85724c31feae72e26fd90b03d54f314311cd0137", [ - "css/css-pseudo/slider/slider-fill-002.html", + null, [ [ - "/css/css-pseudo/slider/slider-fill-002-notref.html", - "!=" + "/css/css-scroll-snap/snap-after-initial-layout/snap-after-initial-layout-ref.html", + "==" ] ], {} ] ], - "slider-fill-003.html": [ - "661c405e79196b075c6f7126d72392ff24e413a7", + "scroll-snap-initial-layout-000.html": [ + "ea47c9f36cc1f9bfda413dd6b6c9eb697bd54540", [ - "css/css-pseudo/slider/slider-fill-003.html", + null, [ [ - "/css/css-pseudo/slider/slider-fill-003-notref.html", - "!=" + "/css/css-scroll-snap/snap-after-initial-layout/scroll-snap-initial-layout-000-ref.html", + "==" ] ], {} ] ], - "slider-thumb-001.html": [ - "ffac22647358e7d76bb4e91009139897f9704f65", + "scroll-snap-writing-mode-000.html": [ + "f44317c8585e875d79561993411703d96e4c180b", [ - "css/css-pseudo/slider/slider-thumb-001.html", + null, [ [ - "/css/css-pseudo/slider/slider-thumb-001-notref.html", - "!=" + "/css/css-scroll-snap/snap-after-initial-layout/scroll-snap-writing-mode-000-ref.html", + "==" ] ], {} ] ], - "slider-track-001.html": [ - "d46bb9410a95e91b7a931dad8e33ec489a385982", + "writing-mode-horizontal-tb.html": [ + "9a680d10d9ff61fc7173118bbfac4fae5b08ff97", [ - "css/css-pseudo/slider/slider-track-001.html", + null, [ [ - "/css/css-pseudo/slider/slider-track-001-notref.html", - "!=" + "/css/css-scroll-snap/snap-after-initial-layout/snap-after-initial-layout-ref.html", + "==" ] ], {} ] ], - "slider-track-002.html": [ - "db98e166da0919cce8a0dab3a602707dbe57b1c7", + "writing-mode-vertical-lr.html": [ + "f4de0411e053f0bb9505209e3ff6b4d9196961ab", [ - "css/css-pseudo/slider/slider-track-002.html", + null, [ [ - "/css/css-pseudo/slider/slider-track-002-notref.html", - "!=" + "/css/css-scroll-snap/snap-after-initial-layout/snap-after-initial-layout-ref.html", + "==" ] ], {} ] ], - "slider-track-003.html": [ - "5a5096770bebbdc8c48fd0c1399de220e2262acd", + "writing-mode-vertical-rl.html": [ + "1710bc16ddf6a95ff66e3305e1b591a130855a81", [ - "css/css-pseudo/slider/slider-track-003.html", + null, [ [ - "/css/css-pseudo/slider/slider-track-003-notref.html", - "!=" + "/css/css-scroll-snap/snap-after-initial-layout/snap-after-initial-layout-ref.html", + "==" ] ], {} ] ] - }, - "spelling-error-001.html": [ - "1654611bd107c99faa562046f4ae4d5bb10f8d3e", + } + }, + "css-scrollbars": { + "input-scrollbar-color.html": [ + "fa03b1391e44941bd2d37c8db1c7c518a1c181ff", [ null, [ [ - "/css/css-pseudo/spelling-error-001-ref.html", + "/css/css-scrollbars/input-scrollbar-color-ref.html", "==" ] ], {} ] ], - "spelling-error-006.html": [ - "e5e99f4260d1bbb486a26a8e94ea46d95b311efd", + "scrollbar-color-006.html": [ + "55947c984c119f712978f6db86927a033b0b76c5", [ null, [ [ - "/css/css-pseudo/spelling-error-006-notref.html", + "/css/css-scrollbars/scrollbar-color-006-ref.html", + "==" + ], + [ + "/css/css-scrollbars/scrollbar-color-006-mis-ref.html", "!=" ] ], {} ] ], - "svg-text-selection-002.html": [ - "c25946d3943babf2509453670278515bf070f6c7", + "scrollbar-color-007.html": [ + "0ef07089de8f3a570962737d1c4db7533ef86e47", [ - "css/css-pseudo/svg-text-selection-002.html", + null, [ [ - "/css/css-pseudo/reference/svg-text-selection-002-ref.html", + "/css/css-scrollbars/scrollbar-color-007-ref.html", "==" + ], + [ + "/css/css-scrollbars/scrollbar-color-007-mis-ref.html", + "!=" ] ], {} ] ], - "target-text-001.html": [ - "6fa529aef90ebfda8cacbaa05f481b9f94df358f", + "scrollbar-color-008.html": [ + "01e3848603e600aec24d51e15744018072be982d", [ - "css/css-pseudo/target-text-001.html", + null, [ [ - "/css/css-pseudo/target-text-lime-green-ref.html", + "/css/css-scrollbars/scrollbar-color-008-ref.html", "==" + ], + [ + "/css/css-scrollbars/scrollbar-color-008-mis-ref.html", + "!=" ] ], {} ] ], - "target-text-002.html": [ - "f93efaa548c477234c99093ccb5c3a77807818aa", + "scrollbar-color-009.html": [ + "6b17c19c15c056d1d884632fe6c715b46654b772", [ - "css/css-pseudo/target-text-002.html", + null, [ [ - "/css/css-pseudo/target-text-lime-green-ref.html", + "/css/css-scrollbars/scrollbar-color-009-ref.html", "==" + ], + [ + "/css/css-scrollbars/scrollbar-color-009-mis-ref.html", + "!=" ] ], {} ] ], - "target-text-003.html": [ - "410e636df6dc7e411640235877c03ee40405c300", + "scrollbar-color-010.html": [ + "cc78504ba7378419f54167091823584d6d181d40", [ - "css/css-pseudo/target-text-003.html", + null, [ [ - "/css/css-pseudo/target-text-lime-ref.html", + "/css/css-scrollbars/scrollbar-color-010-ref.html", "==" + ], + [ + "/css/css-scrollbars/scrollbar-color-010-mis-ref.html", + "!=" ] ], {} ] ], - "target-text-004.html": [ - "2cd84d5be90ca150ad3c06734db9959309555a75", + "scrollbar-color-011.html": [ + "3df5f843e7f4db563c0c8a0b94a09fbc1bb5ff0e", [ - "css/css-pseudo/target-text-004.html", + null, [ [ - "/css/css-pseudo/target-text-lime-green-ref.html", + "/css/css-scrollbars/scrollbar-color-011-ref.html", "==" + ], + [ + "/css/css-scrollbars/scrollbar-color-011-mis-ref.html", + "!=" ] ], {} ] ], - "target-text-005.html": [ - "0f43e5d717441f71ecafb5d21681e64c5d7dd683", + "scrollbar-color-012.html": [ + "974c6012b20d636d9b694305d4f7eb6ebc9190a9", [ - "css/css-pseudo/target-text-005.html", + null, [ [ - "/css/css-pseudo/target-text-lime-green-ref.html", + "/css/css-scrollbars/scrollbar-color-012-ref.html", "==" ] ], {} ] ], - "target-text-006.html": [ - "6c73ebd028f12b66badb7214dee14baf341fbad4", + "scrollbar-color-dynamic-1.html": [ + "9a03bcddc4bcdcf354b784d049f0fcc8f4140b29", [ - "css/css-pseudo/target-text-006.html", + null, [ [ - "/css/css-pseudo/target-text-two-words-ref.html", + "/css/css-scrollbars/scrollbar-color-dynamic-1-ref.html", "==" + ], + [ + "/css/css-scrollbars/scrollbar-color-dynamic-1-mis-ref.html", + "!=" ] ], {} ] ], - "target-text-007.html": [ - "17d4236e390159d90aa6b5be99fa4dbd357e2eed", + "scrollbar-color-dynamic-2.html": [ + "f2faeb392182fc600364e28c748b2c408745858f", [ null, [ [ - "/css/reference/pass_if_pass_below.html", + "/css/css-scrollbars/scrollbar-color-dynamic-2-ref.html", "==" + ], + [ + "/css/css-scrollbars/scrollbar-color-dynamic-2-mis-ref.html", + "!=" ] ], {} ] ], - "target-text-008.html": [ - "b1759124be5fbefa7e58fd72f15c31465eaefce0", + "scrollbar-color-dynamic-3.html": [ + "91bc4692ae1718ca2b4cf331bb5049390e833c08", [ null, [ [ - "/css/css-pseudo/target-text-008-ref.html", + "/css/css-scrollbars/scrollbar-color-dynamic-3-ref.html", "==" + ], + [ + "/css/css-scrollbars/scrollbar-color-dynamic-3-mis-ref.html", + "!=" ] ], {} ] ], - "target-text-009.html": [ - "2670d9319ee672907cc0b7d9a51541f83a446c2f", + "scrollbar-color-dynamic-4.html": [ + "c2a5a8b84445f67846c2305638a48899b8315d39", [ - "css/css-pseudo/target-text-009.html", + null, [ [ - "/css/css-pseudo/target-text-five-words-ref.html", + "/css/css-scrollbars/scrollbar-color-dynamic-4-ref.html", "==" + ], + [ + "/css/css-scrollbars/scrollbar-color-dynamic-4-mis-ref.html", + "!=" ] ], {} ] ], - "target-text-010.html": [ - "4aae966a2d0da7e8a0bab5f032acf012d772b2bd", + "scrollbar-color-dynamic-5.html": [ + "42648850b467a686818750dffa4fd2043587a9f0", [ - "css/css-pseudo/target-text-010.html", + null, [ [ - "/css/css-pseudo/target-text-five-words-ref.html", + "/css/css-scrollbars/scrollbar-color-dynamic-5-ref.html", "==" + ], + [ + "/css/css-scrollbars/scrollbar-color-dynamic-5-mis-ref.html", + "!=" ] ], {} ] ], - "target-text-dynamic-001.html": [ - "63cbaa52b257674993afab1e22be3c5ed0927406", + "scrollbar-color-dynamic-6.html": [ + "63b1e369426a2a1ea580bb5e4a457fb5c04ee1f0", [ null, [ [ - "/css/css-pseudo/target-text-dynamic-001-ref.html", + "/css/css-scrollbars/scrollbar-color-dynamic-6-ref.html", "==" + ], + [ + "/css/css-scrollbars/scrollbar-color-dynamic-6-mis-ref.html", + "!=" ] ], {} ] ], - "target-text-dynamic-002.html": [ - "95d5eda5437869f8d0505de0e55a6338f8ec25be", + "scrollbar-color-dynamic-7.html": [ + "71bb93fb7263d9c3741c5e611961bdd1849c24c3", [ - "css/css-pseudo/target-text-dynamic-002.html", + null, [ [ - "/css/css-pseudo/target-text-dynamic-001-ref.html", + "/css/css-scrollbars/scrollbar-color-dynamic-7-ref.html", "==" + ], + [ + "/css/css-scrollbars/scrollbar-color-dynamic-7-mis-ref.html", + "!=" ] ], {} ] ], - "target-text-dynamic-003.html": [ - "7916fa2e29495e3fe1398894ef6e849e2b5e152b", + "scrollbar-color-dynamic-8.html": [ + "8f1cd13a2fadbf48079502c54e517e40d7ba942e", [ - "css/css-pseudo/target-text-dynamic-003.html", + null, [ [ - "/css/css-pseudo/target-text-dynamic-001-ref.html", + "/css/css-scrollbars/scrollbar-color-dynamic-8-ref.html", "==" ] ], {} ] ], - "target-text-dynamic-004.html": [ - "279ec674b402e6b2bc47aea07487dda8ca10f0dd", + "scrollbar-color-scheme-dynamic-1.html": [ + "71fd97f27419316f5d923dce5673a3f0e0d87633", [ - "css/css-pseudo/target-text-dynamic-004.html", + null, [ [ - "/css/css-pseudo/target-text-dynamic-001-ref.html", + "/css/css-scrollbars/scrollbar-color-scheme-dynamic-1-ref.html", "==" ] ], {} ] ], - "target-text-text-decoration-001.html": [ - "d90d5d96630d05ab88430b88fe4a4ad8985a6fac", + "scrollbar-color-scheme-dynamic-2.html": [ + "111219c7d167243b6de1491ae7c6882af7d481c1", [ null, [ [ - "/css/css-pseudo/target-text-text-decoration-001-ref.html", + "/css/css-scrollbars/scrollbar-color-scheme-dynamic-2-ref.html", "==" ] ], {} ] ], - "textpath-selection-011.html": [ - "1e84519b0e572bec3135e3ece3da7f9ada51034a", + "scrollbar-color-scheme-dynamic-3.html": [ + "47105f0c6d92dc28dd3ed52743bd220973d86691", [ null, [ [ - "/css/css-pseudo/textpath-selection-011-ref.html", - "==" - ] - ], - {} - ] - ] - }, - "css-rhythm": { - "block-step-size-establishes-independent-formatting-context-list-item.html": [ - "301ae3e9a2ff58084ba942edbcaf862521cf51f0", - [ - "css/css-rhythm/block-step-size-establishes-independent-formatting-context-list-item.html", - [ - [ - "/css/reference/ref-filled-green-100px-square-only.html", - "==" - ] - ], - {} - ] - ], - "block-step-size-establishes-independent-formatting-context.html": [ - "f87e22d3193a8b53d0f9e280e3bd84700d3cfb25", - [ - "css/css-rhythm/block-step-size-establishes-independent-formatting-context.html", - [ - [ - "/css/reference/ref-filled-green-100px-square-only.html", + "/css/css-scrollbars/scrollbar-color-scheme-dynamic-3-ref.html", "==" ] ], {} ] ], - "block-step-size-none-does-not-establish-indepdendent-formatting-context.html": [ - "678428e381be5cd2cdb05054cf67ed416d655d44", - [ - "css/css-rhythm/block-step-size-none-does-not-establish-indepdendent-formatting-context.html", - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ] - }, - "css-ruby": { - "abs-in-ruby-base-container.html": [ - "0a4ad8a24cc7c7dcda673f243153e446e21aa475", + "scrollbar-color-scheme-dynamic-4.html": [ + "9655a0ebb2429585bb482a2872d310b23ea55c46", [ null, [ [ - "/css/css-ruby/abs-in-ruby-base-ref.html", + "/css/css-scrollbars/scrollbar-color-scheme-dynamic-4-ref.html", "==" ] ], {} ] ], - "abs-in-ruby-base.html": [ - "bff3a3b748c21000f7f27271660a9965779383c5", + "scrollbar-gutter-scroll-into-view.html": [ + "a619d1aa3e42a703021e254be2bbfd4d6a06d283", [ - null, + "css/css-scrollbars/scrollbar-gutter-scroll-into-view.html", [ [ - "/css/css-ruby/abs-in-ruby-base-ref.html", + "/css/css-scrollbars/scrollbar-gutter-scroll-into-view-ref.html", "==" ] ], {} ] ], - "abs-in-ruby-container.html": [ - "41be48c47a4eed6c5f167765f841613dd450feb7", + "scrollbar-width-paint-001.html": [ + "320af264644e36c21caa92e0ff7e467612c5a752", [ null, [ [ - "/css/css-ruby/abs-in-ruby-base-ref.html", + "/css/css-scrollbars/scrollbar-width-paint-001-ref.html", "==" - ] - ], - {} - ] - ], - "block-ruby-001.html": [ - "0602116aacae5187176de06d865b584cbf9bc0b8", - [ - null, - [ + ], [ - "/css/css-ruby/block-ruby-001-ref.html", - "==" + "/css/css-scrollbars/scrollbar-width-paint-001-mis-ref.html", + "!=" ] ], {} ] ], - "block-ruby-002.html": [ - "73fbc3015bfdb7b9835525a6d6d8362b31231545", + "scrollbar-width-paint-002.html": [ + "a163aef37f2d7ac38d8fa71efb533ffa0c33c70a", [ null, [ [ - "/css/css-ruby/block-ruby-002-ref.html", - "==" - ] - ], - {} - ] - ], - "block-ruby-003.html": [ - "26b33a1f6affeff15c1ea836f24de93ef6d5b0fd", - [ - "css/css-ruby/block-ruby-003.html", - [ - [ - "/css/css-ruby/block-ruby-003-ref.html", - "==" - ] - ], - {} - ] - ], - "block-ruby-004.html": [ - "33ab4207b15a90aae31c2400d53975128141ac52", - [ - "css/css-ruby/block-ruby-004.html", - [ - [ - "/css/css-ruby/block-ruby-004-ref.html", + "/css/css-scrollbars/scrollbar-width-paint-002-ref.html", "==" - ] - ], - {} - ] - ], - "block-ruby-005.html": [ - "cf09e768338dc1ae3a1bf1d53cf805e208c0c698", - [ - "css/css-ruby/block-ruby-005.html", - [ + ], [ - "/css/css-ruby/block-ruby-005-ref.html", - "==" + "/css/css-scrollbars/scrollbar-width-paint-002-mis-ref.html", + "!=" ] ], {} ] ], - "empty-ruby-base-container.html": [ - "4d86e07985d0e99e586848f7ca3195e63371c4d4", + "scrollbar-width-paint-003.html": [ + "516c620551ae0a9026b91a27224b568d28965841", [ null, [ [ - "/css/css-ruby/empty-ruby-base-container-ref.html", + "/css/css-scrollbars/scrollbar-width-paint-003-ref.html", "==" ] ], {} ] ], - "empty-ruby-text-container-abs.html": [ - "025859ea744139b8673e37ea0bd0daeb92477bd8", + "scrollbar-width-paint-004.html": [ + "6f5b4d300cefad7845be8382fc82f222888f5360", [ null, [ [ - "/css/css-ruby/empty-ruby-text-container-ref.html", + "/css/css-scrollbars/scrollbar-width-paint-004-ref.html", "==" - ] - ], - {} - ] - ], - "empty-ruby-text-container-float.html": [ - "88bcf42736e5c3a43d6e25d35477017fb2df8996", - [ - null, - [ + ], [ - "/css/css-ruby/empty-ruby-text-container-ref.html", - "==" + "/css/css-scrollbars/scrollbar-width-paint-004-mis-ref.html", + "!=" ] ], {} ] ], - "empty-ruby-text-container.html": [ - "972013c6621b553f647c97040a2a76afd45de75a", + "scrollbar-width-paint-005.html": [ + "9ce46d296a6a8300d4c753d52d2d3d2a836e1c8e", [ null, [ [ - "/css/css-ruby/empty-ruby-text-container-ref.html", + "/css/css-scrollbars/scrollbar-width-paint-005-ref.html", "==" ] ], {} ] ], - "improperly-contained-annotation-001.html": [ - "3790ba0bd1a952cf97023bc144fb46fede5cbc41", + "scrollbar-width-paint-006.html": [ + "2273575950c449e0ed6724db3bd2e39541509e6a", [ null, [ [ - "/css/css-ruby/reference/improperly-contained-annotation-001-ref.html", + "/css/css-scrollbars/scrollbar-width-paint-006-ref.html", "==" - ] - ], - {} - ] - ], - "intra-base-white-space-001.html": [ - "86468376c3211db6dbe6e8fa53b6186b4214af34", - [ - null, - [ + ], [ - "/css/css-ruby/reference/intra-base-white-space-001-ref.html", - "==" + "/css/css-scrollbars/scrollbar-width-paint-006-mis-ref.html", + "!=" ] ], {} ] ], - "nested-ruby-pairing-001.html": [ - "d502dbca9b2d4c8a6e47668a2158a3f4d0995105", + "textarea-scrollbar-width-none.html": [ + "dcfaf5b6270ee0e0092dc795d33bb01af0b9a695", [ null, [ [ - "/css/css-ruby/nested-ruby-pairing-001-ref.html", + "/css/css-scrollbars/textarea-scrollbar-width-none-ref.html", "==" ] ], {} ] ], - "rb-display-001.html": [ - "5149eb34a4686a38cdf347fbe6162df83a9403a6", + "transparent-on-root.html": [ + "fcab71127d3cd8b38c0843cedff1f10aa59bb7bf", [ null, [ [ - "/css/css-ruby/reference/rb-display-001-ref.html", + "/css/css-scrollbars/transparent-on-root-ref.html", "==" ] ], {} ] ], - "rbc-rtc-basic-001.html": [ - "758490a5536793449e072f31ef9d38481355a200", + "viewport-scrollbar-body.html": [ + "5afd103892e4bc2871598badfe0a1e62d1e333b6", [ null, [ [ - "/css/css-ruby/reference/rbc-rtc-basic-001-ref.html", + "/css/css-scrollbars/viewport-scrollbar-body-ref.html", "==" - ] - ], - {} - ] - ], - "root-block-ruby.xhtml": [ - "51ac507c3bec74bff8650965b327089e4d9853ce", - [ - null, - [ + ], [ - "/css/css-ruby/root-ruby-ref.xhtml", - "==" + "/css/css-scrollbars/viewport-scrollbar-body-mis-ref.html", + "!=" ] ], {} ] ], - "root-ruby.xhtml": [ - "4b78690dd4ba72c495429e5decb111a47fcf1825", + "viewport-scrollbar.html": [ + "aac43f12e45a748ffcff5b38f5aee3b6d7f6597d", [ null, [ [ - "/css/css-ruby/root-ruby-ref.xhtml", + "/css/css-scrollbars/viewport-scrollbar-ref.html", "==" - ] - ], - {} - ] - ], - "rt-display-001.html": [ - "a83ce243b342a19c420da81d08c3b2eaab475f27", - [ - null, - [ + ], [ - "/css/css-ruby/reference/rb-display-001-ref.html", - "==" + "/css/css-scrollbars/viewport-scrollbar-mis-ref.html", + "!=" ] ], {} ] - ], - "ruby-align-001.html": [ - "13c96f53f2f30ecef1a9017cd7f63159dfd9a6e7", + ] + }, + "css-shadow-parts": { + "animation-part.html": [ + "333785fe6284871ff18358fefcb15e74bedee108", [ null, [ [ - "/css/css-ruby/ruby-align-001-ref.html", + "/css/css-shadow-parts/animation-part-ref.html", "==" ] ], {} ] ], - "ruby-align-001a.html": [ - "6e652f172653867d8a9fce5930463fb7fd1832e5", + "exportparts-different-scope.html": [ + "94fce0d3ad57fe71b2fdcd368633fd875b3c7de9", [ null, [ [ - "/css/css-ruby/ruby-align-001-ref.html", + "/css/css-shadow-parts/exportparts-different-scope-ref.html", "==" ] ], {} ] ], - "ruby-align-002.html": [ - "ec40be5e105b5e1e64802b56b465a5f3286a761b", + "interaction-with-nested-pseudo-class.html": [ + "1061e4b0e3501535d2bebf741e4986a2a6779c1a", [ null, [ [ - "/css/css-ruby/ruby-align-002-ref.html", + "/css/css-shadow-parts/interaction-with-nested-pseudo-class-ref.html", "==" ] ], {} ] ], - "ruby-align-002a.html": [ - "dfb7ae37ed90232164728b0d47e2273a9e794b48", + "interaction-with-placeholder.html": [ + "a064789f06111bf5ce791650207bcee195d346ab", [ null, [ [ - "/css/css-ruby/ruby-align-002-ref.html", + "/css/css-shadow-parts/interaction-with-placeholder-ref.html", "==" ] ], {} ] ], - "ruby-annotation-pairing-001.html": [ - "453ba96ebdc51d4cccc5f3547cc656eac469f8d7", + "part-after-combinator-invalidation.html": [ + "76beabe8855fad7344690e1388fb2251abf23033", [ null, [ [ - "/css/css-ruby/reference/ruby-annotation-pairing-001-ref.html", + "/css/css-shadow-parts/part-after-combinator-invalidation-ref.html", "==" ] ], {} ] ], - "ruby-autohide-001.html": [ - "61bc6706ba966e0a77d92539f45cd825cbc56dbc", + "part-nested-pseudo.html": [ + "f1753de7752840cd2841cb8002c10ac08038cf18", [ null, [ [ - "/css/css-ruby/ruby-autohide-001-ref.html", + "/css/css-shadow-parts/part-nested-pseudo-ref.html", "==" ] ], {} ] - ], - "ruby-autohide-002.html": [ - "3d5131cdd8cab51c6ff89a68c5264bdc7d123cf7", - [ - null, - [ + ] + }, + "css-shapes": { + "shape-outside": { + "assorted": { + "float-retry-push-circle.html": [ + "fe0b82ab6fd557875ea7d453b59980b82f31c689", [ - "/css/css-ruby/ruby-autohide-002-ref.html", - "==" + null, + [ + [ + "/css/css-shapes/shape-outside/assorted/reference/float-retry-push-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "ruby-autohide-003.html": [ - "2279e7540e3040c3d2d9bbddac5d266dc12ad2de", - [ - null, - [ + "float-retry-push-image.html": [ + "aed064d9c8b97d91bbdf16e710b52796200c0575", [ - "/css/css-ruby/ruby-autohide-003-ref.html", - "==" + null, + [ + [ + "/css/css-shapes/shape-outside/assorted/reference/float-retry-push-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "ruby-autohide-004.html": [ - "4499cf3e16f76f7fca45ec16eb9107bab6f240cc", - [ - null, - [ + "float-retry-push-inset.html": [ + "ba339e6d6c9ba125baef89efe3e200e00389b824", [ - "/css/css-ruby/ruby-autohide-001-ref.html", - "==" + null, + [ + [ + "/css/css-shapes/shape-outside/assorted/reference/float-retry-push-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "ruby-base-container-abs.html": [ - "35baeda23e05a5f8b2a7adc0c96fe4753e055ad9", - [ - "css/css-ruby/ruby-base-container-abs.html", - [ + "float-retry-push-polygon.html": [ + "9fc0330630ffe4ca282ede78c2bf3415f7855c84", [ - "/css/css-ruby/empty-ruby-base-container-ref.html", - "==" + null, + [ + [ + "/css/css-shapes/shape-outside/assorted/reference/float-retry-push-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "ruby-base-container-float.html": [ - "18ef9bb4ba50ae5b2c48c3b2ce7257ce10d0d874", - [ - "css/css-ruby/ruby-base-container-float.html", - [ + "float-should-push.html": [ + "4901b8b5c77bd40b66f8d24b9c861533707f1454", [ - "/css/css-ruby/empty-ruby-base-container-ref.html", - "==" + null, + [ + [ + "/css/css-shapes/shape-outside/assorted/reference/float-should-push-ref.html", + "==" + ] + ], + {} ] - ], - {} - ] - ], - "ruby-base-different-size.html": [ - "f71b5644c626b9835f5c9015c04badb626b336a1", - [ - null, - [ + ] + }, + "formatting-context": { + "shape-outside-formatting-context.tentative.html": [ + "cfb5d46a0db6745a4aa735b51342d198e2ab80ec", [ - "/css/css-ruby/ruby-base-different-size-ref.html", - "==" + null, + [ + [ + "/css/css-shapes/shape-outside/formatting-context/reference/shape-outside-formatting-context-ref.html", + "==" + ] + ], + {} ] - ], - {} - ] - ], - "ruby-bidi-001.html": [ - "ba18071150a71aa8dab724eb71f777c1b4825104", - [ - null, - [ + ] + }, + "shape-box": { + "shape-outside-border-box-001.html": [ + "9bcadb121db3361ba9d4547a9e4d74b5e5d97f1b", [ - "/css/css-ruby/ruby-bidi-001-ref.html", - "==" + null, + [ + [ + "/css/css-shapes/shape-outside/shape-box/reference/shape-outside-border-box-001-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "ruby-bidi-002.html": [ - "d6692a333aefd75d600a136545addb100dcc9676", - [ - null, - [ + "shape-outside-border-box-002.html": [ + "de942dc69d818ab16036175f27269dec6b8719b0", [ - "/css/css-ruby/ruby-bidi-002-ref.html", - "==" + null, + [ + [ + "/css/css-shapes/shape-outside/shape-box/reference/shape-outside-border-box-002-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "ruby-bidi-003.html": [ - "2510408ec22524069588b8280913fa781c4ec2da", - [ - null, - [ + "shape-outside-border-box-003.html": [ + "fd97e01202ebf40b2a1ea54578a5890d949e064a", [ - "/css/css-ruby/ruby-bidi-003-ref.html", - "==" + null, + [ + [ + "/css/css-shapes/shape-outside/shape-box/reference/shape-outside-padding-box-003-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "ruby-bidi-004.html": [ - "9cfe65059d117d63837ee2c534c621f2f0e0af39", - [ - "css/css-ruby/ruby-bidi-004.html", - [ + "shape-outside-border-box-border-radius-001.html": [ + "863e3c000d85cfb3835ef1635f36da3ba30dcf4a", [ - "/css/css-ruby/ruby-bidi-004-ref.html", - "==" + null, + [ + [ + "/css/css-shapes/shape-outside/shape-box/reference/shape-outside-border-box-border-radius-001-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "ruby-box-generation-001.html": [ - "ac58d4d43ab966eb1ac57f56c826e309877cebac", - [ - null, - [ + "shape-outside-border-box-border-radius-002.html": [ + "5b2837187ecbab6d629e14bd2069cf49a827ba47", [ - "/css/css-ruby/ruby-box-generation-001-ref.html", - "==" + null, + [ + [ + "/css/css-shapes/shape-outside/shape-box/reference/shape-outside-border-box-border-radius-002-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "ruby-box-generation-002.html": [ - "e09ecf1eb252ea773164527e2a82eb0823c050f0", - [ - null, - [ + "shape-outside-border-box-border-radius-003.html": [ + "ff0960fc19a589a12c86a183fbacf7a2e3aaa0e6", [ - "/css/css-ruby/ruby-box-generation-002-ref.html", - "==" + null, + [ + [ + "/css/css-shapes/shape-outside/shape-box/reference/shape-outside-border-box-border-radius-003-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "ruby-box-generation-003.html": [ - "6b975afdfbf18db4a8487c4421b4924ee7bf377d", - [ - null, - [ + "shape-outside-border-box-border-radius-004.html": [ + "0a7dee8caa1b51c0d4739ff121ce456ddeaacd08", [ - "/css/css-ruby/ruby-box-generation-003-ref.html", - "==" + null, + [ + [ + "/css/css-shapes/shape-outside/shape-box/reference/shape-outside-border-box-border-radius-004-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "ruby-box-generation-004.html": [ - "0f6ed72d717a375b861fff1ff067b52c0c2aedcc", - [ - null, - [ + "shape-outside-border-box-border-radius-005.html": [ + "8bd21139213eb9927fe0aadb8ccbb88f4f73250c", [ - "/css/css-ruby/ruby-box-generation-004-ref.html", - "==" + null, + [ + [ + "/css/css-shapes/shape-outside/shape-box/reference/shape-outside-border-box-border-radius-005-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "ruby-box-generation-005.html": [ - "c86b697bf9d6b2c145dcb0871234c48779e03887", - [ - null, - [ + "shape-outside-border-box-border-radius-006.html": [ + "4afe1d42c1189476305c00aef53e39c51dbc7c9a", [ - "/css/css-ruby/ruby-box-generation-005-ref.html", - "==" + null, + [ + [ + "/css/css-shapes/shape-outside/shape-box/reference/shape-outside-border-box-border-radius-006-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "ruby-box-model-001.html": [ - "1fa2befaf8a84f76b7acb59f399649ce021893f7", - [ - null, - [ + "shape-outside-border-box-border-radius-007.html": [ + "4a55ad0364ba1bc9d89593670e829cbc12af3329", [ - "/css/css-ruby/ruby-box-model-001-ref.html", - "==" + null, + [ + [ + "/css/css-shapes/shape-outside/shape-box/reference/shape-outside-border-box-border-radius-007-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "ruby-dynamic-insertion-001.html": [ - "be1c5ce50056ecd0ffb3699bd4e47f63c7c6c7bf", - [ - null, - [ + "shape-outside-border-box-border-radius-008.html": [ + "de0c5d5dce165656a2b157c38fd4496a8701e9a4", [ - "/css/css-ruby/ruby-dynamic-insertion-001-ref.html", - "==" + null, + [ + [ + "/css/css-shapes/shape-outside/shape-box/reference/shape-outside-border-box-border-radius-008-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "ruby-dynamic-insertion-002.html": [ - "c2a12a041958ce097c44f2d022e1da25b654fae3", - [ - null, - [ + "shape-outside-border-box-border-radius-009.html": [ + "27119bf33a40ec906874ec6cbd9e0b2d55a95d0d", [ - "/css/css-ruby/ruby-dynamic-insertion-002-ref.html", - "==" + null, + [ + [ + "/css/css-shapes/shape-outside/shape-box/reference/shape-outside-border-box-border-radius-009-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "ruby-dynamic-insertion-003.html": [ - "68984b5568ba969f8caae70e6c1abfbc33137b40", - [ - null, - [ + "shape-outside-border-box-border-radius-010.html": [ + "dcb60fc4959f694a9e7f45cb01d640ae45d2912c", [ - "/css/css-ruby/ruby-dynamic-insertion-003-ref.html", - "==" + null, + [ + [ + "/css/css-shapes/shape-outside/shape-box/reference/shape-outside-border-box-border-radius-010-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "ruby-dynamic-insertion-004.html": [ - "9b3c36e3ac88764d44c78b1ba516231a84c9e2d9", - [ - null, - [ + "shape-outside-border-box-border-radius-011.html": [ + "c604857c9b8b561ccf0242d42234579feeac72c7", [ - "/css/css-ruby/ruby-dynamic-insertion-004-ref.html", - "==" + null, + [ + [ + "/css/css-shapes/shape-outside/shape-box/reference/shape-outside-border-box-border-radius-011-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "ruby-dynamic-insertion-005.html": [ - "a684d665c8918f5b5b87b36fd6a7c469b7a1653d", - [ - null, - [ + "shape-outside-border-box-border-radius-012.html": [ + "70b16559a9b8bf3cf800b362c3e1e7a11219e05b", [ - "/css/css-ruby/ruby-dynamic-insertion-005-ref.html", - "==" + null, + [ + [ + "/css/css-shapes/shape-outside/shape-box/reference/shape-outside-border-box-border-radius-012-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "ruby-dynamic-removal-001.html": [ - "090ea43c79a11f58908c481651132bc6a21c99f7", - [ - null, - [ + "shape-outside-box-002.html": [ + "76a9bbb1525f4896f5d742b91bce755f04fc1bc2", [ - "/css/css-ruby/ruby-dynamic-removal-001-ref.html", - "==" + null, + [ + [ + "/css/css-shapes/shape-outside/shape-box/reference/shape-outside-box-001-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "ruby-dynamic-removal-002.html": [ - "76846e547bb555956256e3adcf8af8913a6ef397", - [ - null, - [ + "shape-outside-box-003.html": [ + "c58152efb7e47cedf915f841c61f3dab56637a09", [ - "/css/css-ruby/ruby-dynamic-removal-002-ref.html", - "==" + null, + [ + [ + "/css/css-shapes/shape-outside/shape-box/reference/shape-outside-box-001-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "ruby-dynamic-removal-003.html": [ - "d35b2b968d651ecb7cc4d8a0e461b83f900ddcfc", - [ - null, - [ + "shape-outside-box-004.html": [ + "dd2030d9cfc5f02f4483c6cb128bf242a698d733", [ - "/css/css-ruby/ruby-dynamic-removal-003-ref.html", - "==" + null, + [ + [ + "/css/css-shapes/shape-outside/shape-box/reference/shape-outside-box-001-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "ruby-float-handling-001.html": [ - "5cb56e88aca36dce07fcdf17a690edc13ef8b375", - [ - null, - [ + "shape-outside-box-006.html": [ + "9465b5197e0056149b07f7813e5915ad37a0e966", [ - "/css/css-ruby/ruby-float-handling-001-ref.html", - "==" + null, + [ + [ + "/css/css-shapes/shape-outside/shape-box/reference/shape-outside-box-005-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "ruby-inlinize-blocks-001.html": [ - "93569e549bb0ee0cb911dbfc38c243bbc6044540", - [ - null, - [ + "shape-outside-box-007.html": [ + "cc88efaf04877317a731c9d1fdba65475d55a8cc", [ - "/css/css-ruby/ruby-inlinize-blocks-001-ref.html", - "==" + null, + [ + [ + "/css/css-shapes/shape-outside/shape-box/reference/shape-outside-box-005-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "ruby-inlinize-blocks-002.html": [ - "4616d5014675224793aa9de4f67a79472462c800", - [ - null, - [ + "shape-outside-box-008.html": [ + "3b3e58f0ddd2b58ae89b5cb963fcedf77227f950", [ - "/css/css-ruby/ruby-inlinize-blocks-002-ref.html", - "==" + null, + [ + [ + "/css/css-shapes/shape-outside/shape-box/reference/shape-outside-box-005-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "ruby-inlinize-blocks-003.html": [ - "4d1a85f9d1fcadb2c79c90608f8eb6c4b2fde242", - [ - null, - [ + "shape-outside-box-009.html": [ + "3216a761551b3e2cf40ef5a0abcc4fda43714b1a", [ - "/css/css-ruby/ruby-inlinize-blocks-003-ref.html", - "==" + null, + [ + [ + "/css/css-shapes/shape-outside/shape-box/reference/shape-outside-box-005-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "ruby-inlinize-blocks-004.html": [ - "7d3437121908968a3bbbdada05c8b595e65a5339", - [ - null, - [ + "shape-outside-content-box-001.html": [ + "a6558ae41b0f2c88515f8d566a45657d8ac87d4c", [ - "/css/css-ruby/ruby-inlinize-blocks-004-ref.html", - "==" + null, + [ + [ + "/css/css-shapes/shape-outside/shape-box/reference/shape-outside-content-box-001-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "ruby-inlinize-blocks-005.html": [ - "595c704ab254438e0617504716a8693c9d82b046", - [ - null, - [ + "shape-outside-content-box-002.html": [ + "f20457781e80e4dff72e2d209ccf02458d929212", [ - "/css/css-ruby/ruby-inlinize-blocks-005-ref.html", - "==" + null, + [ + [ + "/css/css-shapes/shape-outside/shape-box/reference/shape-outside-content-box-002-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "ruby-intra-level-whitespace-001.html": [ - "4fceda1fb09b7923bb1eeb27e202e274e8168017", - [ - null, - [ + "shape-outside-content-box-003.html": [ + "5ad0463bef7efe48568396dc8b587e8408a62fc9", [ - "/css/css-ruby/ruby-intra-level-whitespace-001-ref.html", - "==" + null, + [ + [ + "/css/css-shapes/shape-outside/shape-box/reference/shape-outside-padding-box-003-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "ruby-intra-level-whitespace-002.html": [ - "67aab53bfb0d0542da875db4abe9e7a6d0d4f6a5", - [ - null, - [ + "shape-outside-content-box-border-radius-001.html": [ + "90bc2d3a572a246f0b75e00c3700c0f9e2a07de1", [ - "/css/css-ruby/ruby-intra-level-whitespace-002-ref.html", - "==" + null, + [ + [ + "/css/css-shapes/shape-outside/shape-box/reference/shape-outside-content-box-border-radius-001-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "ruby-intra-level-whitespace-003.html": [ - "716f2e3f0b4f2dbfeed1607272e308a5c1baf2fb", - [ - null, - [ + "shape-outside-content-box-border-radius-002.html": [ + "aeae55ca23a9fde96e7e26193d0d44ed1c75f050", [ - "/css/css-ruby/ruby-intra-level-whitespace-003-ref.html", - "==" + null, + [ + [ + "/css/css-shapes/shape-outside/shape-box/reference/shape-outside-content-box-border-radius-002-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "ruby-intrinsic-isize-001.html": [ - "84f48e2fc936155628c290bfa83006ef509aa0b7", - [ - null, - [ + "shape-outside-margin-box-001.html": [ + "b8977a92a645682a5873b6aa4ccb480eecc1612e", [ - "/css/css-ruby/ruby-intrinsic-isize-001-ref.html", - "==" + null, + [ + [ + "/css/css-shapes/shape-outside/shape-box/reference/shape-outside-margin-box-001-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "ruby-intrinsic-isize-002.html": [ - "741d41bec577bfe1aeb2e3e1e56a7973911f92bf", - [ - null, - [ + "shape-outside-margin-box-002.html": [ + "09d4e57aca7a92e4a2ac34ee434f6f96c79b1eaf", [ - "/css/css-ruby/ruby-intrinsic-isize-002-ref.html", - "==" + null, + [ + [ + "/css/css-shapes/shape-outside/shape-box/reference/shape-outside-margin-box-002-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "ruby-intrinsic-isize-003.html": [ - "c67033f69a2a58783542fe99fd3ec39ee92d850f", - [ - null, - [ + "shape-outside-margin-box-border-radius-001.html": [ + "c2a21fc5204b587f1213529256863ba0b29b0e19", [ - "/css/css-ruby/ruby-intrinsic-isize-003-ref.html", - "==" + null, + [ + [ + "/css/css-shapes/shape-outside/shape-box/reference/shape-outside-margin-box-border-radius-001-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "ruby-justification-001.html": [ - "edef72874b6b564e0618eb9e795f863ee4cbf20b", - [ - null, - [ + "shape-outside-margin-box-border-radius-002.html": [ + "96b162e9043c6411280008a9b05621ef59fd4909", [ - "/css/css-ruby/ruby-justification-001-ref.html", - "==" + null, + [ + [ + "/css/css-shapes/shape-outside/shape-box/reference/shape-outside-margin-box-border-radius-002-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "ruby-justification-002.html": [ - "979987c028baed8a7f6cd6de0c481b87ce9f2848", - [ - null, - [ + "shape-outside-margin-box-border-radius-003.html": [ + "f1b7f550fb48d8c82280cf941f349c9263495a0f", [ - "/css/css-ruby/ruby-justification-002-ref.html", - "==" + null, + [ + [ + "/css/css-shapes/shape-outside/shape-box/reference/shape-outside-margin-box-border-radius-003-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "ruby-lang-specific-style-001.html": [ - "3206514f0d44855d3a9376ecfa47a6e9c3b62775", - [ - null, - [ + "shape-outside-margin-box-border-radius-004.html": [ + "26f000fc9a4c3852d41916b31713ed6df83b02c0", [ - "/css/css-ruby/ruby-lang-specific-style-001-ref.html", - "==" + null, + [ + [ + "/css/css-shapes/shape-outside/shape-box/reference/shape-outside-margin-box-border-radius-004-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "ruby-layout-internal-boxes.html": [ - "cfd271233e20402a20d7e66d174d6b2f05072c4d", - [ - null, - [ + "shape-outside-margin-box-border-radius-005.html": [ + "39d2a87e9da6d06b19a428a4d89c9d413bd71c50", [ - "/css/css-ruby/ruby-layout-internal-boxes-ref.html", - "==" + null, + [ + [ + "/css/css-shapes/shape-outside/shape-box/reference/shape-outside-margin-box-border-radius-005-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "ruby-line-break-suppression-001.html": [ - "11d4d40d43610fbcdbc8df580336eb1a41bfea22", - [ - null, - [ + "shape-outside-margin-box-border-radius-006.html": [ + "8cce6f1831b7e252f0e1b35739dcd2d1cfb8a6cf", [ - "/css/css-ruby/ruby-line-break-suppression-001-ref.html", - "==" + null, + [ + [ + "/css/css-shapes/shape-outside/shape-box/reference/shape-outside-margin-box-border-radius-006-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "ruby-line-break-suppression-002.html": [ - "394b9c27e536eb7dfc7e9b248f9b27d5b848af20", - [ - null, - [ + "shape-outside-margin-box-border-radius-007.html": [ + "61143a8fe522171dc86f68736f77e6f0dc23cf27", [ - "/css/css-ruby/ruby-line-break-suppression-002-ref.html", - "==" + null, + [ + [ + "/css/css-shapes/shape-outside/shape-box/reference/shape-outside-margin-box-border-radius-007-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "ruby-line-break-suppression-003.html": [ - "dadfd562a45ac49ad303ea232a04fa5fe5c66621", - [ - null, - [ + "shape-outside-margin-box-border-radius-008.html": [ + "ddae6453d38a699f845597a8078218bf0ece7399", [ - "/css/css-ruby/ruby-line-break-suppression-003-ref.html", - "==" + null, + [ + [ + "/css/css-shapes/shape-outside/shape-box/reference/shape-outside-margin-box-border-radius-008-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "ruby-line-break-suppression-004.html": [ - "0314237f07f61c30fa562aa86c3142aaa8057a06", - [ - null, - [ + "shape-outside-padding-box-001.html": [ + "0eee6fb41ea2ef2861761a17b553cbca4c002dd5", [ - "/css/css-ruby/ruby-line-break-suppression-004-ref.html", - "==" + null, + [ + [ + "/css/css-shapes/shape-outside/shape-box/reference/shape-outside-padding-box-001-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "ruby-line-break-suppression-005.html": [ - "10d6690b3d8bbea027f250a3a0cfbbbf72da4c43", - [ - null, - [ + "shape-outside-padding-box-002.html": [ + "eb298dee2bb831b15982f51a0b5bf0fc8a870322", [ - "/css/css-ruby/ruby-line-break-suppression-005-ref.html", - "==" + null, + [ + [ + "/css/css-shapes/shape-outside/shape-box/reference/shape-outside-padding-box-002-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "ruby-line-breaking-001.html": [ - "b6b4d861e21e241852bb97d1671a73d160089ccc", - [ - null, - [ + "shape-outside-padding-box-003.html": [ + "d816be13e4267dea5becf8bc09b006be41cbbc44", [ - "/css/css-ruby/ruby-line-breaking-001-ref.html", - "==" + null, + [ + [ + "/css/css-shapes/shape-outside/shape-box/reference/shape-outside-padding-box-003-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "ruby-line-breaking-002.html": [ - "dddf41f9309abc3aa0535400a0cd967b97910cdc", - [ - null, - [ + "shape-outside-padding-box-border-radius-001.html": [ + "8b775c1526f6ab7d96a0ce9597d3353344bce6c2", [ - "/css/css-ruby/ruby-line-breaking-002-ref.html", - "==" + null, + [ + [ + "/css/css-shapes/shape-outside/shape-box/reference/shape-outside-padding-box-border-radius-001-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "ruby-line-breaking-003.html": [ - "27348d0cf11082e875506b9df6a56b0117538e65", - [ - null, - [ + "shape-outside-padding-box-border-radius-002.html": [ + "ba603db9123681aa9ba8c256aff9d0bf7bdbcd8f", [ - "/css/css-ruby/ruby-line-breaking-003-ref.html", - "==" + null, + [ + [ + "/css/css-shapes/shape-outside/shape-box/reference/shape-outside-padding-box-border-radius-002-ref.html", + "==" + ] + ], + {} ] - ], - {} - ] - ], - "ruby-no-transform.html": [ - "1cdd4f3bbf5af81309805285a25622f7e444a3ee", - [ - null, - [ + ] + }, + "shape-image": { + "gradients": { + "shape-outside-linear-gradient-001.html": [ + "148b5cd6ef6bc43884428f880b01507bbab6c023", + [ + null, + [ + [ + "/css/css-shapes/shape-outside/shape-image/gradients/reference/shape-outside-linear-gradient-001-ref.html", + "==" + ] + ], + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 1 + ], + [ + 0, + 8700 + ] + ] + ] + ] + } + ] + ], + "shape-outside-linear-gradient-002.html": [ + "2b17a3f81e6d242045aaffa28cbffefef1afddff", + [ + null, + [ + [ + "/css/css-shapes/shape-outside/shape-image/gradients/reference/shape-outside-linear-gradient-002-ref.html", + "==" + ] + ], + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 1 + ], + [ + 0, + 8700 + ] + ] + ] + ] + } + ] + ], + "shape-outside-linear-gradient-003.html": [ + "e3f38a3c78da9a14ac40e3aca3f21476b92bccda", + [ + null, + [ + [ + "/css/css-shapes/shape-outside/shape-image/gradients/reference/shape-outside-linear-gradient-002-ref.html", + "==" + ] + ], + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 1 + ], + [ + 0, + 8700 + ] + ] + ] + ] + } + ] + ], + "shape-outside-linear-gradient-004.html": [ + "80048a1465c2fcd39df3ad7eab3a4f805fb4ee6f", + [ + null, + [ + [ + "/css/css-shapes/shape-outside/shape-image/gradients/reference/shape-outside-linear-gradient-004-ref.html", + "==" + ] + ], + {} + ] + ], + "shape-outside-linear-gradient-005.html": [ + "6d0fc21361bd3dd36b7b7f96659f9eed8c4dffab", + [ + null, + [ + [ + "/css/css-shapes/shape-outside/shape-image/gradients/reference/shape-outside-linear-gradient-001-ref.html", + "==" + ] + ], + {} + ] + ], + "shape-outside-linear-gradient-006.html": [ + "68243e0ab8f8848a6da29e78b69acda56f878e76", + [ + null, + [ + [ + "/css/css-shapes/shape-outside/shape-image/gradients/reference/shape-outside-linear-gradient-001-ref.html", + "==" + ] + ], + {} + ] + ], + "shape-outside-linear-gradient-007.html": [ + "4ef0b6b5dfeaec318dc7f612d52073a8c3f12e39", + [ + null, + [ + [ + "/css/css-shapes/shape-outside/shape-image/gradients/reference/shape-outside-linear-gradient-001-ref.html", + "==" + ] + ], + {} + ] + ], + "shape-outside-linear-gradient-008.html": [ + "11ae7faa36eacdb41d629784d979582a083d164f", + [ + null, + [ + [ + "/css/css-shapes/shape-outside/shape-image/gradients/reference/shape-outside-linear-gradient-001-ref.html", + "==" + ] + ], + {} + ] + ], + "shape-outside-linear-gradient-009.html": [ + "50c80d0ac76e2a98a60cd40a5b82fa017e0f8a7a", + [ + null, + [ + [ + "/css/css-shapes/shape-outside/shape-image/gradients/reference/shape-outside-linear-gradient-001-ref.html", + "==" + ] + ], + {} + ] + ], + "shape-outside-linear-gradient-010.html": [ + "1e245cb285c465383253232cf005cd88de070b97", + [ + null, + [ + [ + "/css/css-shapes/shape-outside/shape-image/gradients/reference/shape-outside-linear-gradient-001-ref.html", + "==" + ] + ], + {} + ] + ], + "shape-outside-linear-gradient-011.html": [ + "756b58eaa08ae731bf681d7b7ba0732e84aaf94a", + [ + null, + [ + [ + "/css/css-shapes/shape-outside/shape-image/gradients/reference/shape-outside-linear-gradient-001-ref.html", + "==" + ] + ], + {} + ] + ], + "shape-outside-linear-gradient-012.html": [ + "5a78d1c3eafdea5f2c1ab7ef80b454b7a1649eb2", + [ + null, + [ + [ + "/css/css-shapes/shape-outside/shape-image/gradients/reference/shape-outside-linear-gradient-001-ref.html", + "==" + ] + ], + {} + ] + ], + "shape-outside-linear-gradient-013.html": [ + "9ecf76d70bc2efa49625624a528f36345f2aa7fc", + [ + null, + [ + [ + "/css/css-shapes/shape-outside/shape-image/gradients/reference/shape-outside-linear-gradient-001-ref.html", + "==" + ] + ], + {} + ] + ], + "shape-outside-linear-gradient-014.html": [ + "624884e3903b0c648be13e79557b2adf322dadd7", + [ + null, + [ + [ + "/css/css-shapes/shape-outside/shape-image/gradients/reference/shape-outside-linear-gradient-001-ref.html", + "==" + ] + ], + {} + ] + ], + "shape-outside-linear-gradient-015.html": [ + "182c5843d88c61d764dd9959667bb78989c48cf5", + [ + null, + [ + [ + "/css/css-shapes/shape-outside/shape-image/gradients/reference/shape-outside-linear-gradient-001-ref.html", + "==" + ] + ], + {} + ] + ], + "shape-outside-linear-gradient-016.html": [ + "c1098f0a22dbf83a9af95faf80da803257118939", + [ + null, + [ + [ + "/css/css-shapes/shape-outside/shape-image/gradients/reference/shape-outside-linear-gradient-001-ref.html", + "==" + ] + ], + {} + ] + ] + }, + "shape-image-000.html": [ + "0671a06e4d97ed8af375ac388aa0b40bb16b7f58", [ - "/css/css-ruby/ruby-no-transform-ref.html", - "==" + null, + [ + [ + "/css/css-shapes/shape-outside/shape-image/reference/shape-image-000-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "ruby-reflow-001-opaqueruby.html": [ - "77feb2e6b8dcdd514114dbec9867529e3bda0323", - [ - null, - [ + "shape-image-001.html": [ + "d66925da6c72186937a841c29cbe67fef8b89fdd", [ - "/css/css-ruby/ruby-reflow-001-noruby.html", - "!=" + null, + [ + [ + "/css/css-shapes/shape-outside/shape-image/reference/shape-image-001-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "ruby-reflow-001-transparentruby.html": [ - "008c5250bc364d4a9e15643ce38dc4d18eb7a145", - [ - null, - [ + "shape-image-002.html": [ + "b7e4578afa1f9f03a8118034d0303da124f7cf07", [ - "/css/css-ruby/ruby-reflow-001-noruby.html", - "==" + null, + [ + [ + "/css/css-shapes/shape-outside/shape-image/reference/shape-image-002-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "ruby-span-001.html": [ - "e7b19667aa9fdbbf25ef662036ed1c0babd8e0fc", - [ - null, - [ + "shape-image-003.html": [ + "5994a792828f8152ffaabce1868118968e5ba7b6", [ - "/css/css-ruby/ruby-span-001-ref.html", - "==" + null, + [ + [ + "/css/css-shapes/shape-outside/shape-image/reference/shape-image-002-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "ruby-text-collapse.html": [ - "5bb01aab026847c0e6092c7edcc2b208c5e2fe57", - [ - null, - [ + "shape-image-004.html": [ + "117f3a8e2cc87673c9b93e98c57d8b4178815443", [ - "/css/css-ruby/ruby-text-collapse-ref.html", - "==" + null, + [ + [ + "/css/css-shapes/shape-outside/shape-image/reference/shape-image-000-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "ruby-text-combine-upright-001a.html": [ - "bdb87e29b9b1b011868a6c03082fc60f80f72e36", - [ - null, - [ + "shape-image-005.html": [ + "d15cbf4157b0b69da1b046d153ba1ba0f9956643", [ - "/css/css-ruby/ruby-text-combine-upright-001-ref.html", - "==" + null, + [ + [ + "/css/css-shapes/shape-outside/shape-image/reference/shape-image-002-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "ruby-text-combine-upright-001b.html": [ - "8aed0146b5493d2219129ff02de11daa68820d94", - [ - null, - [ + "shape-image-006.html": [ + "1a9fe771761936fa1f2315d9a9eefe2c69476133", [ - "/css/css-ruby/ruby-text-combine-upright-001-ref.html", - "==" + null, + [ + [ + "/css/css-shapes/shape-outside/shape-image/reference/shape-image-006-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "ruby-text-combine-upright-002a.html": [ - "6c95c169e240f99d145506d3df854ed9d9fb6509", - [ - null, - [ + "shape-image-007.html": [ + "351aa02416ff50d3264c9b7d4b5cda6ee077bb0d", [ - "/css/css-ruby/ruby-text-combine-upright-002-ref.html", - "==" + null, + [ + [ + "/css/css-shapes/shape-outside/shape-image/reference/shape-image-007-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "ruby-text-combine-upright-002b.html": [ - "ed7dabb0269789e73d1073fbf1a9af2a68d1d1d6", - [ - null, - [ + "shape-image-008.html": [ + "64ea7ef342900205d22da1ceb6cf30beb257cc23", [ - "/css/css-ruby/ruby-text-combine-upright-002-ref.html", - "==" + null, + [ + [ + "/css/css-shapes/shape-outside/shape-image/reference/shape-image-008-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "ruby-whitespace-001.html": [ - "9072a8e6841925a5023730ad48b5a2f074b1d0dd", - [ - null, - [ + "shape-image-009.html": [ + "c7978bbabc6558ad8f00e1466acd0d6a145c60b8", [ - "/css/css-ruby/ruby-whitespace-001-ref.html", - "==" + null, + [ + [ + "/css/css-shapes/shape-outside/shape-image/reference/shape-image-006-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "ruby-whitespace-002.html": [ - "98ed78913375ad36d2422ca231cb880a07032741", - [ - null, - [ + "shape-image-010.html": [ + "07acd2a4208b4216df8d6ef7cd9676985138739c", [ - "/css/css-ruby/ruby-whitespace-002-ref.html", - "==" + null, + [ + [ + "/css/css-shapes/shape-outside/shape-image/reference/shape-image-006-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "ruby-with-floats-001.html": [ - "a49c1b255ff6afc6227d2ad603a68f7eeae0656a", - [ - "css/css-ruby/ruby-with-floats-001.html", - [ + "shape-image-011.html": [ + "a1286f07bc8eb7b2d41d3fff02d073ca87fe0ca0", [ - "/css/css-ruby/ruby-with-floats-001-ref.html", - "==" + null, + [ + [ + "/css/css-shapes/shape-outside/shape-image/reference/shape-image-007-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "ruby-with-floats-002.html": [ - "190089d3340394e0aa82d17979b6efdad0f961f4", - [ - "css/css-ruby/ruby-with-floats-002.html", - [ + "shape-image-012.html": [ + "5ec28f5a7a5c17b54d965692e91e5127d7b96bf9", [ - "/css/css-ruby/ruby-with-floats-002-ref.html", - "==" + null, + [ + [ + "/css/css-shapes/shape-outside/shape-image/reference/shape-image-012-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "ruby-with-floats-003.html": [ - "4fd7524315ed2b745788c07191c417fea07b3344", - [ - "css/css-ruby/ruby-with-floats-003.html", - [ + "shape-image-013.html": [ + "c487d63138693ee1f020dd77bf3b1e98af4fefde", [ - "/css/css-ruby/ruby-with-floats-003-ref.html", - "==" + null, + [ + [ + "/css/css-shapes/shape-outside/shape-image/reference/shape-image-013-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ] - }, - "css-scoping": { - "css-scoping-shadow-assigned-node-with-before-after.html": [ - "b926540ae94034ce1acadad02fc3cf4cb7d20580", - [ - null, - [ + "shape-image-014.html": [ + "1a8bf75f16111bbfe86e138a207bb4f5e322cb9d", [ - "/css/css-scoping/reference/green-box.html", - "==" + null, + [ + [ + "/css/css-shapes/shape-outside/shape-image/reference/shape-image-002-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "css-scoping-shadow-assigned-node-with-rules.html": [ - "e981eae0557bdf98101c474cd7ae5ffe031d16b3", - [ - null, - [ + "shape-image-015.html": [ + "3d2c1ec6a334f62405cf7e279c2916c5ba266fd0", [ - "/css/css-scoping/reference/green-box.html", - "==" + null, + [ + [ + "/css/css-shapes/shape-outside/shape-image/reference/shape-image-013-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "css-scoping-shadow-host-functional-rule.html": [ - "13f9a67ed8c006a010d11e9ad71815832da2a31b", - [ - null, - [ + "shape-image-016.html": [ + "d0eed8d1736961faa2c59b75a308b2d86b72af10", [ - "/css/css-scoping/reference/green-box.html", - "==" + null, + [ + [ + "/css/css-shapes/shape-outside/shape-image/reference/shape-image-013-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "css-scoping-shadow-host-namespace.html": [ - "46dffc8de38a52a6448e2e7692e6af0d7be1177d", - [ - null, - [ + "shape-image-017.html": [ + "d5afb242db40b463a0b21181c5810e4062c3e2fc", [ - "/css/css-scoping/reference/green-box.html", - "==" + null, + [ + [ + "/css/css-shapes/shape-outside/shape-image/reference/shape-image-002-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "css-scoping-shadow-host-rule.html": [ - "ef70b9017cdf3d8a5ca04b5da57f491d9b8dffb5", - [ - null, - [ + "shape-image-018.html": [ + "d94a2a9d9243c4eb59d2bb2a375ccf5e92867bd6", [ - "/css/css-scoping/reference/green-box.html", - "==" + null, + [ + [ + "/css/css-shapes/shape-outside/shape-image/reference/shape-image-018-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "css-scoping-shadow-host-with-before-after.html": [ - "c32d8a9e87855b1131851c7e423b3da5de71d916", - [ - null, - [ + "shape-image-019.html": [ + "14c3fb2a5f33051d427d4cffc67fbc55630e74d3", [ - "/css/css-scoping/reference/green-box.html", - "==" + null, + [ + [ + "/css/css-shapes/shape-outside/shape-image/reference/shape-image-019-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "css-scoping-shadow-invisible-slot.html": [ - "be9f308fc40a9107c708aa15facf8d2c455f288a", - [ - null, - [ + "shape-image-020.html": [ + "aa3c5cc3aa4f4e0fc61e028a30b73475dcc7409c", [ - "/css/css-scoping/reference/green-box.html", - "==" + null, + [ + [ + "/css/css-shapes/shape-outside/shape-image/reference/shape-image-020-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "css-scoping-shadow-nested-slot-display-override.html": [ - "f194e469f05845e9ee4e362541971aeeaceff1ce", - [ - null, - [ + "shape-image-021.html": [ + "8671fa1c6136de877a4ec46666795a86642ffbb8", [ - "/css/css-scoping/reference/green-box.html", - "==" + null, + [ + [ + "/css/css-shapes/shape-outside/shape-image/reference/shape-image-021-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "css-scoping-shadow-root-hides-children.html": [ - "bc526059dcafa63267a9a4abbcf4e120ea738374", - [ - null, - [ + "shape-image-022.html": [ + "8e567b1708df588878eff24f01940e7ba78f1a24", [ - "/css/css-scoping/reference/green-box.html", - "==" + null, + [ + [ + "/css/css-shapes/shape-outside/shape-image/reference/shape-image-022-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "css-scoping-shadow-slot-display-override.html": [ - "9338a25be6fe21089f359da72b8fe118ac593bdc", - [ - null, - [ + "shape-image-023.html": [ + "73e6322c8f1128c1d23810aaa999bcccd06943c2", [ - "/css/css-scoping/reference/green-box.html", - "==" + null, + [ + [ + "/css/css-shapes/shape-outside/shape-image/reference/shape-image-023-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "css-scoping-shadow-slot-fallback.html": [ - "6cf1b5bafc549b5f27de0868a14fcaa749a08dba", - [ - null, - [ + "shape-image-024.html": [ + "3ca0ba912b146a7aad4a51ad25d358b6ffb59367", [ - "/css/css-scoping/reference/green-box.html", - "==" + null, + [ + [ + "/css/css-shapes/shape-outside/shape-image/reference/shape-image-024-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "css-scoping-shadow-slot-style.html": [ - "e3f37c33c848d45133717e79ed333afd52219493", - [ - null, - [ + "shape-image-025.html": [ + "f202ffb2e7dce19be437c52296f2cf21839c8bdd", [ - "/css/css-scoping/reference/green-box.html", - "==" + null, + [ + [ + "/css/css-shapes/shape-outside/shape-image/reference/shape-image-025-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "css-scoping-shadow-slot.html": [ - "2b588d622e12dff9f146150b25edae0e76b31356", - [ - null, - [ + "shape-image-026.html": [ + "74f5f34411ffbda6fc9a1a73a9f0883aae87db15", [ - "/css/css-scoping/reference/green-box.html", - "==" + null, + [ + [ + "/css/css-shapes/shape-outside/shape-image/reference/shape-image-006-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "css-scoping-shadow-slotted-nested.html": [ - "5f930e2e8777e7c4bb84aa19789e54b588122214", - [ - null, - [ + "shape-image-027.html": [ + "112d7b976378fc2a9e3969b81df507eec5888df9", [ - "/css/css-scoping/reference/green-box.html", - "==" + null, + [ + [ + "/css/css-shapes/shape-outside/shape-image/reference/shape-image-006-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "css-scoping-shadow-slotted-rule.html": [ - "9771c5d1dfb6d9139ecd76f7db3c0363b2c5d0c9", - [ - null, - [ + "shape-image-029.html": [ + "3c8d58607cbc3cef483d1bd7fd607d29d477ac28", [ - "/css/css-scoping/reference/green-box.html", - "==" - ] - ], - {} - ] - ], - "css-scoping-shadow-with-outside-rules.html": [ - "c725752cba54234c632d385d2ca1d9b0547da3f6", - [ - null, - [ - [ - "/css/css-scoping/reference/green-box.html", - "==" - ] - ], - {} - ] - ], - "css-scoping-shadow-with-rules-no-style-leak.html": [ - "e4d1d15b7be7c20dff2d6fe66d86161e885c82c9", - [ - null, - [ - [ - "/css/css-scoping/reference/green-box.html", - "==" - ] - ], - {} - ] - ], - "css-scoping-shadow-with-rules.html": [ - "3338ecbf72f028cdb657bacc2a176ebd2658333b", - [ - null, - [ - [ - "/css/css-scoping/reference/green-box.html", - "==" - ] - ], - {} - ] - ], - "host-context-specificity-001.html": [ - "694087f56b76cae0a3ccf5015cc25902a1dad8cf", - [ - null, - [ - [ - "/css/css-scoping/reference/green-box.html", - "==" - ] - ], - {} - ] - ], - "host-context-specificity-002.html": [ - "3d4d3e5b245950f15ec126909393ff5e8b3edcb8", - [ - null, - [ - [ - "/css/css-scoping/reference/green-box.html", - "==" - ] - ], - {} - ] - ], - "host-context-specificity-003.html": [ - "7abf8847c95ed04fae77b8601457909ecd72742e", - [ - null, - [ - [ - "/css/css-scoping/reference/green-box.html", - "==" - ] - ], - {} - ] - ], - "host-descendant-001.html": [ - "423beaf055b9f482dd299c055721a405df1d5d77", - [ - null, - [ - [ - "/css/css-scoping/reference/green-box.html", - "==" - ] - ], - {} - ] - ], - "host-descendant-002.html": [ - "6660d4a40c6244e675bb0b0dfddac86d36034fe9", - [ - null, - [ - [ - "/css/css-scoping/reference/green-box.html", - "==" - ] - ], - {} - ] - ], - "host-is-001.html": [ - "16d0dd76691362ee963e386a2fd238783c096243", - [ - "css/css-scoping/host-is-001.html", - [ - [ - "/css/reference/ref-filled-green-100px-square-only.html", - "==" - ] - ], - {} - ] - ], - "host-is-002.html": [ - "408dde2987690b715e454504030499d68baa12a1", - [ - "css/css-scoping/host-is-002.html", - [ - [ - "/css/reference/ref-filled-green-100px-square-only.html", - "==" - ] - ], - {} - ] - ], - "host-is-003.html": [ - "b1958c00ea2a2d40d6ae8f757e250861132a63fb", - [ - "css/css-scoping/host-is-003.html", - [ - [ - "/css/reference/ref-filled-green-100px-square-only.html", - "==" - ] - ], - {} - ] - ], - "host-is-004.html": [ - "5d12a5b5a77e4b2f4d9964d48141ec05c444a52a", - [ - "css/css-scoping/host-is-004.html", - [ - [ - "/css/reference/ref-filled-green-100px-square-only.html", - "==" - ] - ], - {} - ] - ], - "host-is-005.html": [ - "1e2209abda828d785ecf561e307f3bd26391ca7c", - [ - "css/css-scoping/host-is-005.html", - [ - [ - "/css/reference/ref-filled-green-100px-square-only.html", - "==" - ] - ], - {} - ] - ], - "host-multiple-001.html": [ - "c8833c4b5b7abb52a6c336ea6b6f24e546cfed62", - [ - null, - [ - [ - "/css/css-scoping/reference/green-box.html", - "==" - ] - ], - {} - ] - ], - "host-nested-001.html": [ - "f8e412cc00565c5b20416bee5b88e0cc95ddc6d8", - [ - null, - [ - [ - "/css/css-scoping/reference/green-box.html", - "==" - ] - ], - {} - ] - ], - "host-slotted-001.html": [ - "f05b7c729f31a7225809f6166ea0d65be8fa0314", - [ - null, - [ - [ - "/css/css-scoping/reference/green-box.html", - "==" - ] - ], - {} - ] - ], - "host-specificity-002.html": [ - "3132d3a3455241347d6fe421f3434c361e424493", - [ - null, - [ - [ - "/css/css-scoping/reference/green-box.html", - "==" - ] - ], - {} - ] - ], - "host-specificity-003.html": [ - "54a22599d8f83f612d7fc9ff91abfe650114c6e2", - [ - null, - [ - [ - "/css/css-scoping/reference/green-box.html", - "==" - ] - ], - {} - ] - ], - "host-specificity.html": [ - "3ef61d4135fe7dbf846feb82540ca1a213ce7987", - [ - null, - [ - [ - "/css/css-scoping/reference/green-box.html", - "==" - ] - ], - {} - ] - ], - "host-with-default-namespace-001.html": [ - "dcd51f8119f4bbaed2f97bf3b4dcee9fa8f0fc7c", - [ - null, - [ - [ - "/css/css-scoping/reference/green-box.html", - "==" - ] - ], - {} - ] - ], - "reslot-text-inheritance.html": [ - "43711c83bd160825caf1d89c7599f3df1ae64508", - [ - null, - [ - [ - "/css/css-scoping/reference/green-text.html", - "==" - ] - ], - {} - ] - ], - "scoped-reference-animation-001.html": [ - "891bda52a39b42322cf15cb01727f9cad58cf026", - [ - null, - [ - [ - "/css/css-scoping/scoped-reference-animation-ref.html", - "==" - ] - ], - {} - ] - ], - "scoped-reference-animation-002.html": [ - "d5c25f06c0aa73269615ec9bf2b6399729ea261a", - [ - null, - [ - [ - "/css/css-scoping/scoped-reference-animation-ref.html", - "==" - ] - ], - {} - ] - ], - "shadow-assign-dynamic-001.html": [ - "b9a0d1a2991c071bb3654995f93c4ac7ff495aee", - [ - null, - [ - [ - "/css/css-scoping/reference/green-box.html", - "==" - ] - ], - {} - ] - ], - "shadow-at-import.html": [ - "1adf516311f3a7ae470308e8698f3165b5fa6ca5", - [ - null, - [ - [ - "/css/css-scoping/reference/green-box.html", - "==" - ] - ], - {} - ] - ], - "shadow-directionality-001.tentative.html": [ - "7070d2a1d9a856fa9a00fa590f5f582df0a29ac9", - [ - null, - [ - [ - "/css/css-scoping/reference/green-box.html", - "==" - ] - ], - {} - ] - ], - "shadow-directionality-002.tentative.html": [ - "6aba12436a6780ce5afde675388506f7f82c29a8", - [ - null, - [ - [ - "/css/css-scoping/reference/green-box.html", - "==" - ] - ], - {} - ] - ], - "shadow-disabled-sheet-001.html": [ - "275ac47a613adb26c408912160a339b8a71c9c9c", - [ - null, - [ - [ - "/css/css-scoping/reference/green-box.html", - "==" - ] - ], - {} - ] - ], - "shadow-fallback-dynamic-001.html": [ - "9a5672eb63a902d08f309f96ba659b615cceeda9", - [ - null, - [ - [ - "/css/css-scoping/reference/green-box.html", - "==" - ] - ], - {} - ] - ], - "shadow-fallback-dynamic-002.html": [ - "f65d0c7a2129d685429cef4b754a720816af6b22", - [ - null, - [ - [ - "/css/css-scoping/reference/green-box.html", - "==" - ] - ], - {} - ] - ], - "shadow-fallback-dynamic-003.html": [ - "a30e8fed7d257ceedc249c24b249fab69d85c19d", - [ - null, - [ - [ - "/css/css-scoping/reference/green-box.html", - "==" - ] - ], - {} - ] - ], - "shadow-fallback-dynamic-004.html": [ - "29e407573a31ba87da8419121431b661612c68ca", - [ - null, - [ - [ - "/css/css-scoping/reference/green-box.html", - "==" - ] - ], - {} - ] - ], - "shadow-fallback-dynamic-005.html": [ - "1d84907e5fc0deb164bd38ab6b9979977a003fc6", - [ - null, - [ - [ - "/css/css-scoping/reference/green-box.html", - "==" - ] - ], - {} - ] - ], - "shadow-host-with-before-after.html": [ - "87e1554f154d82c6252e752caa830954c119310c", - [ - null, - [ - [ - "/css/css-scoping/reference/green-box.html", - "==" - ] - ], - {} - ] - ], - "shadow-link-rel-stylesheet-no-style-leak.html": [ - "8ca69ccd1b287ad36283405c8ca95742ad08299e", - [ - null, - [ - [ - "/css/css-scoping/reference/green-box.html", - "==" - ] - ], - {} - ] - ], - "shadow-link-rel-stylesheet.html": [ - "d67929a1adbd42b807500685c6a36a9e61e22fed", - [ - null, - [ - [ - "/css/css-scoping/reference/green-box.html", - "==" - ] - ], - {} - ] - ], - "shadow-reassign-dynamic-001.html": [ - "e8fe49ac96ff1694565bd82213c07f7204f0bb1c", - [ - null, - [ - [ - "/css/css-scoping/reference/green-box.html", - "==" - ] - ], - {} - ] - ], - "shadow-reassign-dynamic-002.html": [ - "7874e2e13987246c1160c419967aba9db32bbf63", - [ - null, - [ - [ - "/css/css-scoping/reference/green-box.html", - "==" - ] - ], - {} - ] - ], - "shadow-reassign-dynamic-004.html": [ - "6c2beadc36a5007f26affa4ad4cceb39f6849d8e", - [ - null, - [ - [ - "/css/css-scoping/reference/green-box.html", - "==" - ] - ], - {} - ] - ], - "shadow-root-insert-into-document.html": [ - "a3b89be389a780dd53a1b53224810ecb4866c287", - [ - null, - [ - [ - "/css/css-scoping/reference/green-box.html", - "==" - ] - ], - {} - ] - ], - "slotted-placeholder.html": [ - "a3d607afb8e78e8c340b2d4c6ec86a5f4fc12190", - [ - null, - [ - [ - "/css/css-scoping/slotted-placeholder-ref.html", - "==" - ] - ], - {} - ] - ], - "slotted-specificity-002.html": [ - "ca2b9ab14c429a855e37823ce76b20f0e0b65921", - [ - "css/css-scoping/slotted-specificity-002.html", - [ - [ - "/css/css-scoping/reference/green-box.html", - "==" - ] - ], - {} - ] - ], - "slotted-specificity.html": [ - "d049182db65ae9b0339c33c429ac4beb92dc39a1", - [ - null, - [ - [ - "/css/css-scoping/reference/green-box.html", - "==" - ] - ], - {} - ] - ], - "slotted-with-pseudo-element.html": [ - "f2b33ae49474ff6594acd2052d400d781d4101af", - [ - "css/css-scoping/slotted-with-pseudo-element.html", - [ - [ - "/css/css-scoping/slotted-with-pseudo-element-ref.html", - "==" - ] - ], - {} - ] - ], - "stylesheet-title-001.html": [ - "a91fca8ce132770b6d031fe9a3abacf8d40a66f6", - [ - null, - [ - [ - "/css/css-scoping/reference/green-box.html", - "==" - ] - ], - {} - ] - ], - "whitespace-crash-001.html": [ - "d3b4a8a4ad21962d8277a8ab1ecd9e9ffb1675d4", - [ - null, - [ - [ - "/css/css-scoping/reference/green-box.html", - "==" - ] - ], - {} - ] - ] - }, - "css-scroll-anchoring": { - "nested-overflow-subtree-layout-vertical.html": [ - "5b176a2042e7607f740e94faa445ec301c8e88d8", - [ - null, - [ - [ - "/css/css-scroll-anchoring/nested-overflow-subtree-layout-vertical-ref.html", - "==" - ] - ], - {} - ] - ], - "nested-overflow-subtree-layout.html": [ - "e7696016bb31fde98a57cd8ef2b3f78551350d40", - [ - null, - [ - [ - "/css/css-scroll-anchoring/nested-overflow-subtree-layout-ref.html", - "==" - ] - ], - {} - ] - ], - "vertical-rl-viewport-size-change-000.html": [ - "ee367b1c9718e6d353dbaaaa922f9e13546a7734", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], - "vertical-rl-viewport-size-change-001.html": [ - "0e58a1e63b10d68e0aae1ff0ba6ec0c7b1f726e9", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ] - }, - "css-scroll-snap": { - "scroll-snap-root-001.html": [ - "43028cb874d0e2b4899cb3248e20d43dd5930ee3", - [ - null, - [ - [ - "/css/css-scroll-snap/scroll-snap-root-001-ref.html", - "==" - ] - ], - {} - ] - ], - "scroll-snap-root-002.html": [ - "302c75634133de666d4262d1a94c9c9ae9bd7b7e", - [ - null, - [ - [ - "/css/css-scroll-snap/scroll-snap-root-002-ref.html", - "==" - ] - ], - {} - ] - ], - "scroll-snap-root-003.html": [ - "fc7b28fdf56f360f2ef963d54f4f205426f3ffc9", - [ - null, - [ - [ - "/css/css-scroll-snap/no-red-ref.html", - "==" - ] - ], - {} - ] - ], - "scroll-target-align-001.html": [ - "eeda674e07c591cb1d17cce1c8f8bb460c45fbdf", - [ - null, - [ - [ - "/css/css-scroll-snap/scroll-target-001-ref.html", - "==" - ] - ], - {} - ] - ], - "scroll-target-align-002.html": [ - "01db026dff29c62dbbe27a4e262bb2ed715ba5ef", - [ - null, - [ - [ - "/css/css-scroll-snap/scroll-target-001-ref.html", - "==" - ] - ], - {} - ] - ], - "scroll-target-align-003.html": [ - "d13efa0abb5d1a13dbb43d78301730b322322ccb", - [ - null, - [ - [ - "/css/css-scroll-snap/scroll-target-001-ref.html", - "==" - ] - ], - {} - ] - ], - "scroll-target-margin-001.html": [ - "8ddbbcec5f0b7992ba366c5f638b548327eb9fb2", - [ - null, - [ - [ - "/css/css-scroll-snap/scroll-target-001-ref.html", - "==" - ] - ], - {} - ] - ], - "scroll-target-margin-002.html": [ - "51cf553b3603f237226fa6b7d0ca33089f801a0e", - [ - null, - [ - [ - "/css/css-scroll-snap/scroll-target-001-ref.html", - "==" - ] - ], - {} - ] - ], - "scroll-target-margin-003.html": [ - "2ea8eff67c3d17b38031ca5534c8091cfa854409", - [ - null, - [ - [ - "/css/css-scroll-snap/scroll-target-001-ref.html", - "==" - ] - ], - {} - ] - ], - "scroll-target-margin-004.html": [ - "ac87c8684d6a13cf400baea0fb918e4c59db368e", - [ - null, - [ - [ - "/css/css-scroll-snap/scroll-target-001-ref.html", - "==" - ] - ], - {} - ] - ], - "scroll-target-padding-001.html": [ - "5cd4fddcc53637b6f7e005574398d88c48bed8b1", - [ - null, - [ - [ - "/css/css-scroll-snap/scroll-target-001-ref.html", - "==" - ] - ], - {} - ] - ], - "scroll-target-padding-002.html": [ - "fbed1e132ecf3805784436c4b13889f61ff8c7ba", - [ - null, - [ - [ - "/css/css-scroll-snap/scroll-target-001-ref.html", - "==" - ] - ], - {} - ] - ], - "scroll-target-padding-003.html": [ - "ccbe7b0ec97c9ba14d2ac11df1a24b032e185fe0", - [ - null, - [ - [ - "/css/css-scroll-snap/scroll-target-001-ref.html", - "==" - ] - ], - {} - ] - ], - "scroll-target-snap-001.html": [ - "76d3222a0bf34750c90b236348694580c42ea94e", - [ - null, - [ - [ - "/css/css-scroll-snap/scroll-target-001-ref.html", - "==" - ] - ], - {} - ] - ], - "scroll-target-snap-002.html": [ - "6e928a435eb5c21c5d87a1754965336e1f3b7375", - [ - "css/css-scroll-snap/scroll-target-snap-002.html", - [ - [ - "/css/css-scroll-snap/scroll-target-001-ref.html", - "==" - ] - ], - {} - ] - ], - "scroll-target-snap-003.html": [ - "6fe3901e51c10b9d3d687d7b421b67e1ae6e5896", - [ - null, - [ - [ - "/css/css-scroll-snap/scroll-target-001-ref.html", - "==" + "css/css-shapes/shape-outside/shape-image/shape-image-029.html", + [ + [ + "/css/css-shapes/shape-outside/shape-image/reference/shape-image-000-ref.html", + "==" + ] + ], + {} ] - ], - {} - ] - ], - "snap-after-initial-layout": { - "direction-rtl.html": [ - "85724c31feae72e26fd90b03d54f314311cd0137", - [ - null, - [ + ] + }, + "supported-shapes": { + "circle": { + "shape-outside-circle-013.html": [ + "e15f053de9781e02d91df89358f414cfa9706f49", [ - "/css/css-scroll-snap/snap-after-initial-layout/snap-after-initial-layout-ref.html", - "==" + null, + [ + [ + "/css/css-shapes/shape-outside/supported-shapes/circle/reference/shape-outside-circle-013-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "scroll-snap-initial-layout-000.html": [ - "ea47c9f36cc1f9bfda413dd6b6c9eb697bd54540", - [ - null, - [ + "shape-outside-circle-014.html": [ + "e4e3372e31bac6fda02778c9e557bf1ddd17e793", [ - "/css/css-scroll-snap/snap-after-initial-layout/scroll-snap-initial-layout-000-ref.html", - "==" + null, + [ + [ + "/css/css-shapes/shape-outside/supported-shapes/circle/reference/shape-outside-circle-013-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "scroll-snap-writing-mode-000.html": [ - "f44317c8585e875d79561993411703d96e4c180b", - [ - "css/css-scroll-snap/snap-after-initial-layout/scroll-snap-writing-mode-000.html", - [ + "shape-outside-circle-015.html": [ + "b6d93677c45dd6b8bee6143437d589409ba55824", [ - "/css/css-scroll-snap/snap-after-initial-layout/scroll-snap-writing-mode-000-ref.html", - "==" + null, + [ + [ + "/css/css-shapes/shape-outside/supported-shapes/circle/reference/shape-outside-circle-013-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "writing-mode-horizontal-tb.html": [ - "9a680d10d9ff61fc7173118bbfac4fae5b08ff97", - [ - null, - [ + "shape-outside-circle-016.html": [ + "28dfca669958c153c341abe39c0fdc47bf118ade", [ - "/css/css-scroll-snap/snap-after-initial-layout/snap-after-initial-layout-ref.html", - "==" + null, + [ + [ + "/css/css-shapes/shape-outside/supported-shapes/circle/reference/shape-outside-circle-013-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "writing-mode-vertical-lr.html": [ - "f4de0411e053f0bb9505209e3ff6b4d9196961ab", - [ - null, - [ + "shape-outside-circle-017.html": [ + "48b0d180158aaea9e3b783eb10743182e48eacf2", [ - "/css/css-scroll-snap/snap-after-initial-layout/snap-after-initial-layout-ref.html", - "==" + null, + [ + [ + "/css/css-shapes/shape-outside/supported-shapes/circle/reference/shape-outside-circle-013-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ], - "writing-mode-vertical-rl.html": [ - "1710bc16ddf6a95ff66e3305e1b591a130855a81", - [ - null, - [ + "shape-outside-circle-018.html": [ + "cfbab52e8d483316bd94153c897243ce6f980125", [ - "/css/css-scroll-snap/snap-after-initial-layout/snap-after-initial-layout-ref.html", - "==" + null, + [ + [ + "/css/css-shapes/shape-outside/supported-shapes/circle/reference/shape-outside-circle-013-ref.html", + "==" + ] + ], + {} ] ], - {} - ] - ] - } - }, - "css-scrollbars": { - "input-scrollbar-color.html": [ - "fa03b1391e44941bd2d37c8db1c7c518a1c181ff", - [ - "css/css-scrollbars/input-scrollbar-color.html", - [ - [ - "/css/css-scrollbars/input-scrollbar-color-ref.html", - "==" - ] - ], - {} - ] - ], - "scrollbar-color-006.html": [ - "6a369299434c8eda080716274854df9e1b00f237", - [ - "css/css-scrollbars/scrollbar-color-006.html", - [ - [ - "/css/css-scrollbars/scrollbar-color-006-ref.html", - "==" - ] - ], - {} - ] - ], - "scrollbar-color-007.html": [ - "876dd70af72b18a30fea22431d009016fb15bd83", - [ - "css/css-scrollbars/scrollbar-color-007.html", - [ - [ - "/css/css-scrollbars/scrollbar-color-007-ref.html", - "==" - ] - ], - {} - ] - ], - "scrollbar-color-008.html": [ - "8241fe06459e1bec8725bc58351107b20ff892a2", - [ - "css/css-scrollbars/scrollbar-color-008.html", - [ - [ - "/css/css-scrollbars/scrollbar-color-008-ref.html", - "==" - ] - ], - {} - ] - ], - "scrollbar-color-009.html": [ - "d11d2641bff98d8c69e95842797ddad130352ef9", - [ - "css/css-scrollbars/scrollbar-color-009.html", - [ - [ - "/css/css-scrollbars/scrollbar-color-009-ref.html", - "==" - ] - ], - {} - ] - ], - "scrollbar-color-010.html": [ - "9b379eabd14317467fe4df38409dc69c15aac750", - [ - "css/css-scrollbars/scrollbar-color-010.html", - [ - [ - "/css/css-scrollbars/scrollbar-color-010-ref.html", - "==" - ] - ], - {} - ] - ], - "scrollbar-color-011.html": [ - "90b6c45cdecb5dcdccc6e1f32adba39e31d2e9b3", - [ - "css/css-scrollbars/scrollbar-color-011.html", - [ - [ - "/css/css-scrollbars/scrollbar-color-011-ref.html", - "==" - ] - ], - {} - ] - ], - "scrollbar-color-012.html": [ - "974c6012b20d636d9b694305d4f7eb6ebc9190a9", - [ - "css/css-scrollbars/scrollbar-color-012.html", - [ - [ - "/css/css-scrollbars/scrollbar-color-012-ref.html", - "==" - ] - ], - {} - ] - ], - "scrollbar-color-dynamic-1.html": [ - "0b4820c7b7ef2cb72df4e46de18c7b0c0f9c6bbb", - [ - "css/css-scrollbars/scrollbar-color-dynamic-1.html", - [ - [ - "/css/css-scrollbars/scrollbar-color-dynamic-1-ref.html", - "==" - ] - ], - {} - ] - ], - "scrollbar-color-dynamic-2.html": [ - "4adce84f246a8e48168cc330baed775b49bb8dcf", - [ - "css/css-scrollbars/scrollbar-color-dynamic-2.html", - [ - [ - "/css/css-scrollbars/scrollbar-color-dynamic-2-ref.html", - "==" - ] - ], - {} - ] - ], - "scrollbar-color-dynamic-3.html": [ - "0bb72a68e4ac57210311e0c3fa2d8ac91aac8862", - [ - "css/css-scrollbars/scrollbar-color-dynamic-3.html", - [ - [ - "/css/css-scrollbars/scrollbar-color-dynamic-3-ref.html", - "==" - ] - ], - {} - ] - ], - "scrollbar-color-dynamic-4.html": [ - "e8cd6e1e7c60a73a2ddc4ba94c35be9fde9e3376", - [ - "css/css-scrollbars/scrollbar-color-dynamic-4.html", - [ - [ - "/css/css-scrollbars/scrollbar-color-dynamic-4-ref.html", - "==" - ] - ], - {} - ] - ], - "scrollbar-color-dynamic-5.html": [ - "2faa28caac0785e2b39e649d3b9e4baf666ac57e", - [ - "css/css-scrollbars/scrollbar-color-dynamic-5.html", - [ - [ - "/css/css-scrollbars/scrollbar-color-dynamic-5-ref.html", - "==" - ] - ], - {} - ] - ], - "scrollbar-color-dynamic-6.html": [ - "85791297529ac2166ad52afcddb05d3e84618f6b", - [ - "css/css-scrollbars/scrollbar-color-dynamic-6.html", - [ - [ - "/css/css-scrollbars/scrollbar-color-dynamic-6-ref.html", - "==" - ] - ], - {} - ] - ], - "scrollbar-color-dynamic-7.html": [ - "894db93d6a1a6f08db6a3006a4d356cb19f6c25d", - [ - "css/css-scrollbars/scrollbar-color-dynamic-7.html", - [ - [ - "/css/css-scrollbars/scrollbar-color-dynamic-7-ref.html", - "==" - ] - ], - {} - ] - ], - "scrollbar-color-scheme-dynamic-1.html": [ - "71fd97f27419316f5d923dce5673a3f0e0d87633", - [ - "css/css-scrollbars/scrollbar-color-scheme-dynamic-1.html", - [ - [ - "/css/css-scrollbars/scrollbar-color-scheme-dynamic-1-ref.html", - "==" - ] - ], - {} - ] - ], - "scrollbar-color-scheme-dynamic-2.html": [ - "111219c7d167243b6de1491ae7c6882af7d481c1", - [ - "css/css-scrollbars/scrollbar-color-scheme-dynamic-2.html", - [ - [ - "/css/css-scrollbars/scrollbar-color-scheme-dynamic-2-ref.html", - "==" - ] - ], - {} - ] - ], - "scrollbar-color-scheme-dynamic-3.html": [ - "47105f0c6d92dc28dd3ed52743bd220973d86691", - [ - "css/css-scrollbars/scrollbar-color-scheme-dynamic-3.html", - [ - [ - "/css/css-scrollbars/scrollbar-color-scheme-dynamic-3-ref.html", - "==" - ] - ], - {} - ] - ], - "scrollbar-color-scheme-dynamic-4.html": [ - "9655a0ebb2429585bb482a2872d310b23ea55c46", - [ - "css/css-scrollbars/scrollbar-color-scheme-dynamic-4.html", - [ - [ - "/css/css-scrollbars/scrollbar-color-scheme-dynamic-4-ref.html", - "==" - ] - ], - {} - ] - ], - "scrollbar-width-paint-001.html": [ - "3621a65b39ed7d9e3b0afea4e1770427b31534de", - [ - "css/css-scrollbars/scrollbar-width-paint-001.html", - [ - [ - "/css/css-scrollbars/scrollbar-width-paint-001-ref.html", - "==" - ] - ], - {} - ] - ], - "scrollbar-width-paint-002.html": [ - "1b3965032b0c98f8cf001a6b98562d36f34f2fbd", - [ - "css/css-scrollbars/scrollbar-width-paint-002.html", - [ - [ - "/css/css-scrollbars/scrollbar-width-paint-002-ref.html", - "==" - ] - ], - {} - ] - ], - "scrollbar-width-paint-003.html": [ - "516c620551ae0a9026b91a27224b568d28965841", - [ - "css/css-scrollbars/scrollbar-width-paint-003.html", - [ - [ - "/css/css-scrollbars/scrollbar-width-paint-003-ref.html", - "==" - ] - ], - {} - ] - ], - "scrollbar-width-paint-004.html": [ - "5b9c9c36bc7fe5246fe1746a148f3defb627ce15", - [ - "css/css-scrollbars/scrollbar-width-paint-004.html", - [ - [ - "/css/css-scrollbars/scrollbar-width-paint-004-ref.html", - "==" - ] - ], - {} - ] - ], - "scrollbar-width-paint-005.html": [ - "9ce46d296a6a8300d4c753d52d2d3d2a836e1c8e", - [ - "css/css-scrollbars/scrollbar-width-paint-005.html", - [ - [ - "/css/css-scrollbars/scrollbar-width-paint-005-ref.html", - "==" - ] - ], - {} - ] - ], - "scrollbar-width-paint-006.html": [ - "42dbbd959d41bb3c2e22fc3742927cac25e4fe1b", - [ - "css/css-scrollbars/scrollbar-width-paint-006.html", - [ - [ - "/css/css-scrollbars/scrollbar-width-paint-006-ref.html", - "==" - ] - ], - {} - ] - ], - "scrollbars-chrome-bug-001.html": [ - "643781bac8079267c21c4c51920c56ab5f6a315a", - [ - null, - [ - [ - "/css/css-scrollbars/scrollbars-chrome-bug-001-ref.html", - "==" - ] - ], - {} - ] - ], - "textarea-scrollbar-width-none.html": [ - "dcfaf5b6270ee0e0092dc795d33bb01af0b9a695", - [ - null, - [ - [ - "/css/css-scrollbars/textarea-scrollbar-width-none-ref.html", - "==" - ] - ], - {} - ] - ], - "transparent-on-root.html": [ - "fcab71127d3cd8b38c0843cedff1f10aa59bb7bf", - [ - null, - [ - [ - "/css/css-scrollbars/transparent-on-root-ref.html", - "==" - ] - ], - {} - ] - ], - "viewport-scrollbar-body.html": [ - "a1b3aee871a918dc4e3f92e669d6631c0944cd18", - [ - null, - [ - [ - "/css/css-scrollbars/viewport-scrollbar-body-ref.html", - "==" - ] - ], - {} - ] - ], - "viewport-scrollbar.html": [ - "500da7a9f9584428f27624d1e877085c382c0429", - [ - null, - [ - [ - "/css/css-scrollbars/viewport-scrollbar-ref.html", - "==" - ] - ], - {} - ] - ] - }, - "css-shadow-parts": { - "animation-part.html": [ - "333785fe6284871ff18358fefcb15e74bedee108", - [ - "css/css-shadow-parts/animation-part.html", - [ - [ - "/css/css-shadow-parts/animation-part-ref.html", - "==" - ] - ], - {} - ] - ], - "exportparts-different-scope.html": [ - "94fce0d3ad57fe71b2fdcd368633fd875b3c7de9", - [ - "css/css-shadow-parts/exportparts-different-scope.html", - [ - [ - "/css/css-shadow-parts/exportparts-different-scope-ref.html", - "==" - ] - ], - {} - ] - ], - "interaction-with-nested-pseudo-class.html": [ - "1061e4b0e3501535d2bebf741e4986a2a6779c1a", - [ - null, - [ - [ - "/css/css-shadow-parts/interaction-with-nested-pseudo-class-ref.html", - "==" - ] - ], - {} - ] - ], - "interaction-with-placeholder.html": [ - "a064789f06111bf5ce791650207bcee195d346ab", - [ - null, - [ - [ - "/css/css-shadow-parts/interaction-with-placeholder-ref.html", - "==" - ] - ], - {} - ] - ], - "part-nested-pseudo.html": [ - "f1753de7752840cd2841cb8002c10ac08038cf18", - [ - null, - [ - [ - "/css/css-shadow-parts/part-nested-pseudo-ref.html", - "==" - ] - ], - {} - ] - ] - }, - "css-shapes": { - "shape-outside": { - "assorted": { - "float-retry-push-circle.html": [ - "fe0b82ab6fd557875ea7d453b59980b82f31c689", - [ - null, + "shape-outside-circle-019.html": [ + "024273b701747aad0270f142b6f10e3403df284b", [ + null, [ - "/css/css-shapes/shape-outside/assorted/reference/float-retry-push-ref.html", - "==" - ] - ], - {} - ] - ], - "float-retry-push-image.html": [ - "aed064d9c8b97d91bbdf16e710b52796200c0575", - [ - null, + [ + "/css/css-shapes/shape-outside/supported-shapes/circle/reference/shape-outside-circle-013-ref.html", + "==" + ] + ], + {} + ] + ], + "shape-outside-circle-020.html": [ + "060501fdf9a06f377431219fe88420b762a58f01", [ + null, [ - "/css/css-shapes/shape-outside/assorted/reference/float-retry-push-ref.html", - "==" - ] - ], - {} - ] - ], - "float-retry-push-inset.html": [ - "ba339e6d6c9ba125baef89efe3e200e00389b824", - [ - null, + [ + "/css/css-shapes/shape-outside/supported-shapes/circle/reference/shape-outside-circle-013-ref.html", + "==" + ] + ], + {} + ] + ], + "shape-outside-circle-021.html": [ + "fa6a5f8a7f0e5a3c8ebc5407679f9ced6464b3d2", [ + null, [ - "/css/css-shapes/shape-outside/assorted/reference/float-retry-push-ref.html", - "==" - ] - ], - {} - ] - ], - "float-retry-push-polygon.html": [ - "9fc0330630ffe4ca282ede78c2bf3415f7855c84", - [ - null, + [ + "/css/css-shapes/shape-outside/supported-shapes/circle/reference/shape-outside-circle-013-ref.html", + "==" + ] + ], + {} + ] + ], + "shape-outside-circle-022.html": [ + "fb0e14bf9f46cc85f369407773d1c6b4b57ab6eb", [ + null, [ - "/css/css-shapes/shape-outside/assorted/reference/float-retry-push-ref.html", - "==" - ] - ], - {} - ] - ], - "float-should-push.html": [ - "4901b8b5c77bd40b66f8d24b9c861533707f1454", - [ - null, + [ + "/css/css-shapes/shape-outside/supported-shapes/circle/reference/shape-outside-circle-013-ref.html", + "==" + ] + ], + {} + ] + ], + "shape-outside-circle-024.html": [ + "97763adf01aced0ce5a3e6ae2b5c3954cf4e8bbb", [ + null, [ - "/css/css-shapes/shape-outside/assorted/reference/float-should-push-ref.html", - "==" - ] - ], - {} - ] - ] - }, - "formatting-context": { - "shape-outside-formatting-context.tentative.html": [ - "cfb5d46a0db6745a4aa735b51342d198e2ab80ec", - [ - null, + [ + "/css/css-shapes/shape-outside/supported-shapes/circle/reference/shape-outside-circle-023-ref.html", + "==" + ] + ], + {} + ] + ], + "shape-outside-circle-025.html": [ + "233ea98210b20bf984f6c43278625c4b595819a6", [ + null, [ - "/css/css-shapes/shape-outside/formatting-context/reference/shape-outside-formatting-context-ref.html", - "==" - ] - ], - {} - ] - ] - }, - "shape-box": { - "shape-outside-border-box-001.html": [ - "9bcadb121db3361ba9d4547a9e4d74b5e5d97f1b", - [ - null, + [ + "/css/css-shapes/shape-outside/supported-shapes/circle/reference/shape-outside-circle-023-ref.html", + "==" + ] + ], + {} + ] + ], + "shape-outside-circle-026.html": [ + "600150b2517e972957dab238bf08fa4ee4c5a077", [ + null, [ - "/css/css-shapes/shape-outside/shape-box/reference/shape-outside-border-box-001-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-outside-border-box-002.html": [ - "de942dc69d818ab16036175f27269dec6b8719b0", - [ - null, + [ + "/css/css-shapes/shape-outside/supported-shapes/circle/reference/shape-outside-circle-023-ref.html", + "==" + ] + ], + {} + ] + ], + "shape-outside-circle-027.html": [ + "ecfb9b7f346e83d532839bc7c25eabe07069c6f2", [ + null, [ - "/css/css-shapes/shape-outside/shape-box/reference/shape-outside-border-box-002-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-outside-border-box-003.html": [ - "fd97e01202ebf40b2a1ea54578a5890d949e064a", - [ - null, + [ + "/css/css-shapes/shape-outside/supported-shapes/circle/reference/shape-outside-circle-023-ref.html", + "==" + ] + ], + {} + ] + ], + "shape-outside-circle-028.html": [ + "673d084c8ddb7a099810831950af826386450286", [ + null, [ - "/css/css-shapes/shape-outside/shape-box/reference/shape-outside-padding-box-003-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-outside-border-box-border-radius-001.html": [ - "863e3c000d85cfb3835ef1635f36da3ba30dcf4a", - [ - null, + [ + "/css/css-shapes/shape-outside/supported-shapes/circle/reference/shape-outside-circle-023-ref.html", + "==" + ] + ], + {} + ] + ], + "shape-outside-circle-029.html": [ + "229ee76a127aff75f2b7bddba359e840e6bfb651", [ + null, [ - "/css/css-shapes/shape-outside/shape-box/reference/shape-outside-border-box-border-radius-001-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-outside-border-box-border-radius-002.html": [ - "5b2837187ecbab6d629e14bd2069cf49a827ba47", - [ - null, + [ + "/css/css-shapes/shape-outside/supported-shapes/circle/reference/shape-outside-circle-023-ref.html", + "==" + ] + ], + {} + ] + ], + "shape-outside-circle-030.html": [ + "e9085aefaceef2e53228d7b9da4824ad35f03115", [ + null, [ - "/css/css-shapes/shape-outside/shape-box/reference/shape-outside-border-box-border-radius-002-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-outside-border-box-border-radius-003.html": [ - "ff0960fc19a589a12c86a183fbacf7a2e3aaa0e6", - [ - null, + [ + "/css/css-shapes/shape-outside/supported-shapes/circle/reference/shape-outside-circle-030-ref.html", + "==" + ] + ], + {} + ] + ], + "shape-outside-circle-031.html": [ + "340fef640021cdc8621b82f935bd14d36727f1ce", [ + null, [ - "/css/css-shapes/shape-outside/shape-box/reference/shape-outside-border-box-border-radius-003-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-outside-border-box-border-radius-004.html": [ - "0a7dee8caa1b51c0d4739ff121ce456ddeaacd08", - [ - null, + [ + "/css/css-shapes/shape-outside/supported-shapes/circle/reference/shape-outside-circle-030-ref.html", + "==" + ] + ], + {} + ] + ], + "shape-outside-circle-032.html": [ + "d57bb5de4d6da338a9792c978803fc5994d431b2", [ + null, [ - "/css/css-shapes/shape-outside/shape-box/reference/shape-outside-border-box-border-radius-004-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-outside-border-box-border-radius-005.html": [ - "8bd21139213eb9927fe0aadb8ccbb88f4f73250c", - [ - null, + [ + "/css/css-shapes/shape-outside/supported-shapes/circle/reference/shape-outside-circle-032-ref.html", + "==" + ] + ], + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 6 + ], + [ + 0, + 6 + ] + ] + ] + ] + } + ] + ], + "shape-outside-circle-033.html": [ + "5e02e1674f5215407bde2fac5579bc16eb205fc3", [ + null, [ - "/css/css-shapes/shape-outside/shape-box/reference/shape-outside-border-box-border-radius-005-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-outside-border-box-border-radius-006.html": [ - "4afe1d42c1189476305c00aef53e39c51dbc7c9a", - [ - null, + [ + "/css/css-shapes/shape-outside/supported-shapes/circle/reference/shape-outside-circle-033-ref.html", + "==" + ] + ], + {} + ] + ], + "shape-outside-circle-034.html": [ + "60fac07dd57a7f72a46b64fc28da53a9fce1de18", [ + null, [ - "/css/css-shapes/shape-outside/shape-box/reference/shape-outside-border-box-border-radius-006-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-outside-border-box-border-radius-007.html": [ - "4a55ad0364ba1bc9d89593670e829cbc12af3329", - [ - null, + [ + "/css/css-shapes/shape-outside/supported-shapes/circle/reference/shape-outside-circle-034-ref.html", + "==" + ] + ], + {} + ] + ], + "shape-outside-circle-035.html": [ + "ed9229416b9b518d946cc9b5e28f6913c6d61299", [ + null, [ - "/css/css-shapes/shape-outside/shape-box/reference/shape-outside-border-box-border-radius-007-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-outside-border-box-border-radius-008.html": [ - "de0c5d5dce165656a2b157c38fd4496a8701e9a4", - [ - null, + [ + "/css/css-shapes/shape-outside/supported-shapes/circle/reference/shape-outside-circle-035-ref.html", + "==" + ] + ], + {} + ] + ], + "shape-outside-circle-036.html": [ + "75b8b85a86c1e4fa325c0646daabfffa2ed588f3", [ + null, [ - "/css/css-shapes/shape-outside/shape-box/reference/shape-outside-border-box-border-radius-008-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-outside-border-box-border-radius-009.html": [ - "27119bf33a40ec906874ec6cbd9e0b2d55a95d0d", - [ - null, + [ + "/css/css-shapes/shape-outside/supported-shapes/circle/reference/shape-outside-circle-036-ref.html", + "==" + ] + ], + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 6 + ], + [ + 0, + 6 + ] + ] + ] + ] + } + ] + ], + "shape-outside-circle-037.html": [ + "b868cacbe9b80db883be50eb326c7f25da36fdbe", [ + null, [ - "/css/css-shapes/shape-outside/shape-box/reference/shape-outside-border-box-border-radius-009-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-outside-border-box-border-radius-010.html": [ - "dcb60fc4959f694a9e7f45cb01d640ae45d2912c", - [ - null, + [ + "/css/css-shapes/shape-outside/supported-shapes/circle/reference/shape-outside-circle-036-ref.html", + "==" + ] + ], + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 6 + ], + [ + 0, + 6 + ] + ] + ] + ] + } + ] + ], + "shape-outside-circle-038.html": [ + "2c823219ff630b0978286ab1171d3ec6d69be23c", [ + null, [ - "/css/css-shapes/shape-outside/shape-box/reference/shape-outside-border-box-border-radius-010-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-outside-border-box-border-radius-011.html": [ - "c604857c9b8b561ccf0242d42234579feeac72c7", - [ - null, + [ + "/css/css-shapes/shape-outside/supported-shapes/circle/reference/shape-outside-circle-036-ref.html", + "==" + ] + ], + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 6 + ], + [ + 0, + 6 + ] + ] + ] + ] + } + ] + ], + "shape-outside-circle-041.html": [ + "faeb4cd3c00dbab42dfced07ed86452618e836f8", [ + null, [ - "/css/css-shapes/shape-outside/shape-box/reference/shape-outside-border-box-border-radius-011-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-outside-border-box-border-radius-012.html": [ - "70b16559a9b8bf3cf800b362c3e1e7a11219e05b", - [ - null, + [ + "/css/css-shapes/shape-outside/supported-shapes/circle/reference/shape-outside-circle-041-ref.html", + "==" + ] + ], + {} + ] + ], + "shape-outside-circle-042.html": [ + "b2a3836d154f8c6d68f888b56df32c1e6ddef802", [ + null, [ - "/css/css-shapes/shape-outside/shape-box/reference/shape-outside-border-box-border-radius-012-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-outside-box-002.html": [ - "76a9bbb1525f4896f5d742b91bce755f04fc1bc2", - [ - null, + [ + "/css/css-shapes/shape-outside/supported-shapes/circle/reference/shape-outside-circle-042-ref.html", + "==" + ] + ], + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 6 + ], + [ + 0, + 6 + ] + ] + ] + ] + } + ] + ], + "shape-outside-circle-043.html": [ + "3d73f7e9679a7f2147aff337fc65de80a77597c0", [ + null, [ - "/css/css-shapes/shape-outside/shape-box/reference/shape-outside-box-001-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-outside-box-003.html": [ - "c58152efb7e47cedf915f841c61f3dab56637a09", - [ - null, + [ + "/css/css-shapes/shape-outside/supported-shapes/circle/reference/shape-outside-circle-042-ref.html", + "==" + ] + ], + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 6 + ], + [ + 0, + 6 + ] + ] + ] + ] + } + ] + ], + "shape-outside-circle-044.html": [ + "a6f34cfa1f8bde7ee720a5c8af6a82f751638e85", [ + null, [ - "/css/css-shapes/shape-outside/shape-box/reference/shape-outside-box-001-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-outside-box-004.html": [ - "dd2030d9cfc5f02f4483c6cb128bf242a698d733", - [ - null, + [ + "/css/css-shapes/shape-outside/supported-shapes/circle/reference/shape-outside-circle-042-ref.html", + "==" + ] + ], + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 6 + ], + [ + 0, + 6 + ] + ] + ] + ] + } + ] + ], + "shape-outside-circle-047.html": [ + "8dbc47580448621853d5789b725237ddf1ff2f17", [ - [ - "/css/css-shapes/shape-outside/shape-box/reference/shape-outside-box-001-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-outside-box-006.html": [ - "9465b5197e0056149b07f7813e5915ad37a0e966", - [ - null, - [ - [ - "/css/css-shapes/shape-outside/shape-box/reference/shape-outside-box-005-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-outside-box-007.html": [ - "cc88efaf04877317a731c9d1fdba65475d55a8cc", - [ - null, - [ - [ - "/css/css-shapes/shape-outside/shape-box/reference/shape-outside-box-005-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-outside-box-008.html": [ - "3b3e58f0ddd2b58ae89b5cb963fcedf77227f950", - [ - null, - [ - [ - "/css/css-shapes/shape-outside/shape-box/reference/shape-outside-box-005-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-outside-box-009.html": [ - "3216a761551b3e2cf40ef5a0abcc4fda43714b1a", - [ - null, - [ - [ - "/css/css-shapes/shape-outside/shape-box/reference/shape-outside-box-005-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-outside-content-box-001.html": [ - "a6558ae41b0f2c88515f8d566a45657d8ac87d4c", - [ - null, - [ - [ - "/css/css-shapes/shape-outside/shape-box/reference/shape-outside-content-box-001-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-outside-content-box-002.html": [ - "f20457781e80e4dff72e2d209ccf02458d929212", - [ - null, - [ - [ - "/css/css-shapes/shape-outside/shape-box/reference/shape-outside-content-box-002-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-outside-content-box-003.html": [ - "5ad0463bef7efe48568396dc8b587e8408a62fc9", - [ - null, - [ - [ - "/css/css-shapes/shape-outside/shape-box/reference/shape-outside-padding-box-003-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-outside-content-box-border-radius-001.html": [ - "90bc2d3a572a246f0b75e00c3700c0f9e2a07de1", - [ - null, - [ - [ - "/css/css-shapes/shape-outside/shape-box/reference/shape-outside-content-box-border-radius-001-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-outside-content-box-border-radius-002.html": [ - "aeae55ca23a9fde96e7e26193d0d44ed1c75f050", - [ - null, - [ - [ - "/css/css-shapes/shape-outside/shape-box/reference/shape-outside-content-box-border-radius-002-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-outside-margin-box-001.html": [ - "b8977a92a645682a5873b6aa4ccb480eecc1612e", - [ - null, - [ - [ - "/css/css-shapes/shape-outside/shape-box/reference/shape-outside-margin-box-001-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-outside-margin-box-002.html": [ - "09d4e57aca7a92e4a2ac34ee434f6f96c79b1eaf", - [ - null, - [ - [ - "/css/css-shapes/shape-outside/shape-box/reference/shape-outside-margin-box-002-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-outside-margin-box-border-radius-001.html": [ - "c2a21fc5204b587f1213529256863ba0b29b0e19", - [ - null, - [ - [ - "/css/css-shapes/shape-outside/shape-box/reference/shape-outside-margin-box-border-radius-001-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-outside-margin-box-border-radius-002.html": [ - "96b162e9043c6411280008a9b05621ef59fd4909", - [ - null, - [ - [ - "/css/css-shapes/shape-outside/shape-box/reference/shape-outside-margin-box-border-radius-002-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-outside-margin-box-border-radius-003.html": [ - "f1b7f550fb48d8c82280cf941f349c9263495a0f", - [ - null, - [ - [ - "/css/css-shapes/shape-outside/shape-box/reference/shape-outside-margin-box-border-radius-003-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-outside-margin-box-border-radius-004.html": [ - "26f000fc9a4c3852d41916b31713ed6df83b02c0", - [ - null, - [ - [ - "/css/css-shapes/shape-outside/shape-box/reference/shape-outside-margin-box-border-radius-004-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-outside-margin-box-border-radius-005.html": [ - "39d2a87e9da6d06b19a428a4d89c9d413bd71c50", - [ - null, - [ - [ - "/css/css-shapes/shape-outside/shape-box/reference/shape-outside-margin-box-border-radius-005-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-outside-margin-box-border-radius-006.html": [ - "8cce6f1831b7e252f0e1b35739dcd2d1cfb8a6cf", - [ - null, - [ - [ - "/css/css-shapes/shape-outside/shape-box/reference/shape-outside-margin-box-border-radius-006-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-outside-margin-box-border-radius-007.html": [ - "61143a8fe522171dc86f68736f77e6f0dc23cf27", - [ - null, - [ - [ - "/css/css-shapes/shape-outside/shape-box/reference/shape-outside-margin-box-border-radius-007-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-outside-margin-box-border-radius-008.html": [ - "ddae6453d38a699f845597a8078218bf0ece7399", - [ - null, - [ - [ - "/css/css-shapes/shape-outside/shape-box/reference/shape-outside-margin-box-border-radius-008-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-outside-padding-box-001.html": [ - "0eee6fb41ea2ef2861761a17b553cbca4c002dd5", - [ - null, - [ - [ - "/css/css-shapes/shape-outside/shape-box/reference/shape-outside-padding-box-001-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-outside-padding-box-002.html": [ - "eb298dee2bb831b15982f51a0b5bf0fc8a870322", - [ - null, - [ - [ - "/css/css-shapes/shape-outside/shape-box/reference/shape-outside-padding-box-002-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-outside-padding-box-003.html": [ - "d816be13e4267dea5becf8bc09b006be41cbbc44", - [ - null, - [ - [ - "/css/css-shapes/shape-outside/shape-box/reference/shape-outside-padding-box-003-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-outside-padding-box-border-radius-001.html": [ - "8b775c1526f6ab7d96a0ce9597d3353344bce6c2", - [ - null, - [ - [ - "/css/css-shapes/shape-outside/shape-box/reference/shape-outside-padding-box-border-radius-001-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-outside-padding-box-border-radius-002.html": [ - "ba603db9123681aa9ba8c256aff9d0bf7bdbcd8f", - [ - null, - [ - [ - "/css/css-shapes/shape-outside/shape-box/reference/shape-outside-padding-box-border-radius-002-ref.html", - "==" - ] - ], - {} - ] - ] - }, - "shape-image": { - "gradients": { - "shape-outside-linear-gradient-001.html": [ - "148b5cd6ef6bc43884428f880b01507bbab6c023", - [ - "css/css-shapes/shape-outside/shape-image/gradients/shape-outside-linear-gradient-001.html", - [ - [ - "/css/css-shapes/shape-outside/shape-image/gradients/reference/shape-outside-linear-gradient-001-ref.html", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 1 - ], - [ - 0, - 8700 - ] - ] - ] - ] - } - ] - ], - "shape-outside-linear-gradient-002.html": [ - "2b17a3f81e6d242045aaffa28cbffefef1afddff", - [ - "css/css-shapes/shape-outside/shape-image/gradients/shape-outside-linear-gradient-002.html", - [ - [ - "/css/css-shapes/shape-outside/shape-image/gradients/reference/shape-outside-linear-gradient-002-ref.html", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 1 - ], - [ - 0, - 8700 - ] - ] - ] - ] - } - ] - ], - "shape-outside-linear-gradient-003.html": [ - "e3f38a3c78da9a14ac40e3aca3f21476b92bccda", - [ - "css/css-shapes/shape-outside/shape-image/gradients/shape-outside-linear-gradient-003.html", - [ - [ - "/css/css-shapes/shape-outside/shape-image/gradients/reference/shape-outside-linear-gradient-002-ref.html", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 1 - ], - [ - 0, - 8700 - ] - ] - ] - ] - } - ] - ], - "shape-outside-linear-gradient-004.html": [ - "80048a1465c2fcd39df3ad7eab3a4f805fb4ee6f", - [ - null, - [ - [ - "/css/css-shapes/shape-outside/shape-image/gradients/reference/shape-outside-linear-gradient-004-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-outside-linear-gradient-005.html": [ - "6d0fc21361bd3dd36b7b7f96659f9eed8c4dffab", - [ - null, - [ - [ - "/css/css-shapes/shape-outside/shape-image/gradients/reference/shape-outside-linear-gradient-001-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-outside-linear-gradient-006.html": [ - "68243e0ab8f8848a6da29e78b69acda56f878e76", - [ - null, - [ - [ - "/css/css-shapes/shape-outside/shape-image/gradients/reference/shape-outside-linear-gradient-001-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-outside-linear-gradient-007.html": [ - "4ef0b6b5dfeaec318dc7f612d52073a8c3f12e39", - [ - null, - [ - [ - "/css/css-shapes/shape-outside/shape-image/gradients/reference/shape-outside-linear-gradient-001-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-outside-linear-gradient-008.html": [ - "11ae7faa36eacdb41d629784d979582a083d164f", - [ - null, - [ - [ - "/css/css-shapes/shape-outside/shape-image/gradients/reference/shape-outside-linear-gradient-001-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-outside-linear-gradient-009.html": [ - "50c80d0ac76e2a98a60cd40a5b82fa017e0f8a7a", - [ - null, - [ - [ - "/css/css-shapes/shape-outside/shape-image/gradients/reference/shape-outside-linear-gradient-001-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-outside-linear-gradient-010.html": [ - "1e245cb285c465383253232cf005cd88de070b97", - [ - null, - [ - [ - "/css/css-shapes/shape-outside/shape-image/gradients/reference/shape-outside-linear-gradient-001-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-outside-linear-gradient-011.html": [ - "756b58eaa08ae731bf681d7b7ba0732e84aaf94a", - [ - null, - [ - [ - "/css/css-shapes/shape-outside/shape-image/gradients/reference/shape-outside-linear-gradient-001-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-outside-linear-gradient-012.html": [ - "5a78d1c3eafdea5f2c1ab7ef80b454b7a1649eb2", - [ - null, - [ - [ - "/css/css-shapes/shape-outside/shape-image/gradients/reference/shape-outside-linear-gradient-001-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-outside-linear-gradient-013.html": [ - "9ecf76d70bc2efa49625624a528f36345f2aa7fc", - [ - null, - [ - [ - "/css/css-shapes/shape-outside/shape-image/gradients/reference/shape-outside-linear-gradient-001-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-outside-linear-gradient-014.html": [ - "624884e3903b0c648be13e79557b2adf322dadd7", - [ - null, - [ - [ - "/css/css-shapes/shape-outside/shape-image/gradients/reference/shape-outside-linear-gradient-001-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-outside-linear-gradient-015.html": [ - "182c5843d88c61d764dd9959667bb78989c48cf5", - [ - null, - [ - [ - "/css/css-shapes/shape-outside/shape-image/gradients/reference/shape-outside-linear-gradient-001-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-outside-linear-gradient-016.html": [ - "c1098f0a22dbf83a9af95faf80da803257118939", - [ - null, - [ - [ - "/css/css-shapes/shape-outside/shape-image/gradients/reference/shape-outside-linear-gradient-001-ref.html", - "==" - ] - ], - {} - ] - ] - }, - "shape-image-000.html": [ - "0671a06e4d97ed8af375ac388aa0b40bb16b7f58", - [ - null, - [ - [ - "/css/css-shapes/shape-outside/shape-image/reference/shape-image-000-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-image-001.html": [ - "d66925da6c72186937a841c29cbe67fef8b89fdd", - [ - null, - [ - [ - "/css/css-shapes/shape-outside/shape-image/reference/shape-image-001-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-image-002.html": [ - "b7e4578afa1f9f03a8118034d0303da124f7cf07", - [ - null, - [ - [ - "/css/css-shapes/shape-outside/shape-image/reference/shape-image-002-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-image-003.html": [ - "5994a792828f8152ffaabce1868118968e5ba7b6", - [ - null, - [ - [ - "/css/css-shapes/shape-outside/shape-image/reference/shape-image-002-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-image-004.html": [ - "117f3a8e2cc87673c9b93e98c57d8b4178815443", - [ - null, - [ - [ - "/css/css-shapes/shape-outside/shape-image/reference/shape-image-000-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-image-005.html": [ - "d15cbf4157b0b69da1b046d153ba1ba0f9956643", - [ - null, - [ - [ - "/css/css-shapes/shape-outside/shape-image/reference/shape-image-002-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-image-006.html": [ - "1a9fe771761936fa1f2315d9a9eefe2c69476133", - [ - null, - [ - [ - "/css/css-shapes/shape-outside/shape-image/reference/shape-image-006-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-image-007.html": [ - "351aa02416ff50d3264c9b7d4b5cda6ee077bb0d", - [ - null, - [ - [ - "/css/css-shapes/shape-outside/shape-image/reference/shape-image-007-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-image-008.html": [ - "64ea7ef342900205d22da1ceb6cf30beb257cc23", - [ - null, - [ - [ - "/css/css-shapes/shape-outside/shape-image/reference/shape-image-008-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-image-009.html": [ - "c7978bbabc6558ad8f00e1466acd0d6a145c60b8", - [ - null, - [ - [ - "/css/css-shapes/shape-outside/shape-image/reference/shape-image-006-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-image-010.html": [ - "07acd2a4208b4216df8d6ef7cd9676985138739c", - [ - null, - [ - [ - "/css/css-shapes/shape-outside/shape-image/reference/shape-image-006-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-image-011.html": [ - "a1286f07bc8eb7b2d41d3fff02d073ca87fe0ca0", - [ - null, - [ - [ - "/css/css-shapes/shape-outside/shape-image/reference/shape-image-007-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-image-012.html": [ - "5ec28f5a7a5c17b54d965692e91e5127d7b96bf9", - [ - null, - [ - [ - "/css/css-shapes/shape-outside/shape-image/reference/shape-image-012-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-image-013.html": [ - "c487d63138693ee1f020dd77bf3b1e98af4fefde", - [ - null, - [ - [ - "/css/css-shapes/shape-outside/shape-image/reference/shape-image-013-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-image-014.html": [ - "1a8bf75f16111bbfe86e138a207bb4f5e322cb9d", - [ - null, - [ - [ - "/css/css-shapes/shape-outside/shape-image/reference/shape-image-002-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-image-015.html": [ - "3d2c1ec6a334f62405cf7e279c2916c5ba266fd0", - [ - null, - [ - [ - "/css/css-shapes/shape-outside/shape-image/reference/shape-image-013-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-image-016.html": [ - "d0eed8d1736961faa2c59b75a308b2d86b72af10", - [ - null, - [ - [ - "/css/css-shapes/shape-outside/shape-image/reference/shape-image-013-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-image-017.html": [ - "d5afb242db40b463a0b21181c5810e4062c3e2fc", - [ - null, - [ - [ - "/css/css-shapes/shape-outside/shape-image/reference/shape-image-002-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-image-018.html": [ - "d94a2a9d9243c4eb59d2bb2a375ccf5e92867bd6", - [ - null, - [ - [ - "/css/css-shapes/shape-outside/shape-image/reference/shape-image-018-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-image-019.html": [ - "14c3fb2a5f33051d427d4cffc67fbc55630e74d3", - [ - null, - [ - [ - "/css/css-shapes/shape-outside/shape-image/reference/shape-image-019-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-image-020.html": [ - "aa3c5cc3aa4f4e0fc61e028a30b73475dcc7409c", - [ - null, - [ - [ - "/css/css-shapes/shape-outside/shape-image/reference/shape-image-020-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-image-021.html": [ - "8671fa1c6136de877a4ec46666795a86642ffbb8", - [ - null, - [ - [ - "/css/css-shapes/shape-outside/shape-image/reference/shape-image-021-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-image-022.html": [ - "8e567b1708df588878eff24f01940e7ba78f1a24", - [ - null, - [ - [ - "/css/css-shapes/shape-outside/shape-image/reference/shape-image-022-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-image-023.html": [ - "73e6322c8f1128c1d23810aaa999bcccd06943c2", - [ - null, - [ - [ - "/css/css-shapes/shape-outside/shape-image/reference/shape-image-023-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-image-024.html": [ - "3ca0ba912b146a7aad4a51ad25d358b6ffb59367", - [ - null, - [ - [ - "/css/css-shapes/shape-outside/shape-image/reference/shape-image-024-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-image-025.html": [ - "f202ffb2e7dce19be437c52296f2cf21839c8bdd", - [ - null, - [ - [ - "/css/css-shapes/shape-outside/shape-image/reference/shape-image-025-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-image-026.html": [ - "74f5f34411ffbda6fc9a1a73a9f0883aae87db15", - [ - null, - [ - [ - "/css/css-shapes/shape-outside/shape-image/reference/shape-image-006-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-image-027.html": [ - "112d7b976378fc2a9e3969b81df507eec5888df9", - [ - null, - [ - [ - "/css/css-shapes/shape-outside/shape-image/reference/shape-image-006-ref.html", - "==" - ] - ], - {} - ] - ] - }, - "supported-shapes": { - "circle": { - "shape-outside-circle-013.html": [ - "e15f053de9781e02d91df89358f414cfa9706f49", - [ - null, - [ - [ - "/css/css-shapes/shape-outside/supported-shapes/circle/reference/shape-outside-circle-013-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-outside-circle-014.html": [ - "e4e3372e31bac6fda02778c9e557bf1ddd17e793", - [ - null, - [ - [ - "/css/css-shapes/shape-outside/supported-shapes/circle/reference/shape-outside-circle-013-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-outside-circle-015.html": [ - "b6d93677c45dd6b8bee6143437d589409ba55824", - [ - null, - [ - [ - "/css/css-shapes/shape-outside/supported-shapes/circle/reference/shape-outside-circle-013-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-outside-circle-016.html": [ - "28dfca669958c153c341abe39c0fdc47bf118ade", - [ - null, - [ - [ - "/css/css-shapes/shape-outside/supported-shapes/circle/reference/shape-outside-circle-013-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-outside-circle-017.html": [ - "48b0d180158aaea9e3b783eb10743182e48eacf2", - [ - null, - [ - [ - "/css/css-shapes/shape-outside/supported-shapes/circle/reference/shape-outside-circle-013-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-outside-circle-018.html": [ - "cfbab52e8d483316bd94153c897243ce6f980125", - [ - null, - [ - [ - "/css/css-shapes/shape-outside/supported-shapes/circle/reference/shape-outside-circle-013-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-outside-circle-019.html": [ - "024273b701747aad0270f142b6f10e3403df284b", - [ - null, - [ - [ - "/css/css-shapes/shape-outside/supported-shapes/circle/reference/shape-outside-circle-013-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-outside-circle-020.html": [ - "060501fdf9a06f377431219fe88420b762a58f01", - [ - null, - [ - [ - "/css/css-shapes/shape-outside/supported-shapes/circle/reference/shape-outside-circle-013-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-outside-circle-021.html": [ - "fa6a5f8a7f0e5a3c8ebc5407679f9ced6464b3d2", - [ - null, - [ - [ - "/css/css-shapes/shape-outside/supported-shapes/circle/reference/shape-outside-circle-013-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-outside-circle-022.html": [ - "fb0e14bf9f46cc85f369407773d1c6b4b57ab6eb", - [ - null, - [ - [ - "/css/css-shapes/shape-outside/supported-shapes/circle/reference/shape-outside-circle-013-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-outside-circle-024.html": [ - "97763adf01aced0ce5a3e6ae2b5c3954cf4e8bbb", - [ - null, - [ - [ - "/css/css-shapes/shape-outside/supported-shapes/circle/reference/shape-outside-circle-023-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-outside-circle-025.html": [ - "233ea98210b20bf984f6c43278625c4b595819a6", - [ - null, - [ - [ - "/css/css-shapes/shape-outside/supported-shapes/circle/reference/shape-outside-circle-023-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-outside-circle-026.html": [ - "600150b2517e972957dab238bf08fa4ee4c5a077", - [ - null, - [ - [ - "/css/css-shapes/shape-outside/supported-shapes/circle/reference/shape-outside-circle-023-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-outside-circle-027.html": [ - "ecfb9b7f346e83d532839bc7c25eabe07069c6f2", - [ - null, - [ - [ - "/css/css-shapes/shape-outside/supported-shapes/circle/reference/shape-outside-circle-023-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-outside-circle-028.html": [ - "673d084c8ddb7a099810831950af826386450286", - [ - null, - [ - [ - "/css/css-shapes/shape-outside/supported-shapes/circle/reference/shape-outside-circle-023-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-outside-circle-029.html": [ - "229ee76a127aff75f2b7bddba359e840e6bfb651", - [ - null, - [ - [ - "/css/css-shapes/shape-outside/supported-shapes/circle/reference/shape-outside-circle-023-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-outside-circle-030.html": [ - "e9085aefaceef2e53228d7b9da4824ad35f03115", - [ - null, - [ - [ - "/css/css-shapes/shape-outside/supported-shapes/circle/reference/shape-outside-circle-030-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-outside-circle-031.html": [ - "340fef640021cdc8621b82f935bd14d36727f1ce", - [ - null, - [ - [ - "/css/css-shapes/shape-outside/supported-shapes/circle/reference/shape-outside-circle-030-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-outside-circle-032.html": [ - "d57bb5de4d6da338a9792c978803fc5994d431b2", - [ - "css/css-shapes/shape-outside/supported-shapes/circle/shape-outside-circle-032.html", - [ - [ - "/css/css-shapes/shape-outside/supported-shapes/circle/reference/shape-outside-circle-032-ref.html", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 6 - ], - [ - 0, - 6 - ] - ] - ] - ] - } - ] - ], - "shape-outside-circle-033.html": [ - "5e02e1674f5215407bde2fac5579bc16eb205fc3", - [ - null, - [ - [ - "/css/css-shapes/shape-outside/supported-shapes/circle/reference/shape-outside-circle-033-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-outside-circle-034.html": [ - "60fac07dd57a7f72a46b64fc28da53a9fce1de18", - [ - null, - [ - [ - "/css/css-shapes/shape-outside/supported-shapes/circle/reference/shape-outside-circle-034-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-outside-circle-035.html": [ - "ed9229416b9b518d946cc9b5e28f6913c6d61299", - [ - null, - [ - [ - "/css/css-shapes/shape-outside/supported-shapes/circle/reference/shape-outside-circle-035-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-outside-circle-036.html": [ - "75b8b85a86c1e4fa325c0646daabfffa2ed588f3", - [ - "css/css-shapes/shape-outside/supported-shapes/circle/shape-outside-circle-036.html", - [ - [ - "/css/css-shapes/shape-outside/supported-shapes/circle/reference/shape-outside-circle-036-ref.html", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 6 - ], - [ - 0, - 6 - ] - ] - ] - ] - } - ] - ], - "shape-outside-circle-037.html": [ - "b868cacbe9b80db883be50eb326c7f25da36fdbe", - [ - "css/css-shapes/shape-outside/supported-shapes/circle/shape-outside-circle-037.html", - [ - [ - "/css/css-shapes/shape-outside/supported-shapes/circle/reference/shape-outside-circle-036-ref.html", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 6 - ], - [ - 0, - 6 - ] - ] - ] - ] - } - ] - ], - "shape-outside-circle-038.html": [ - "2c823219ff630b0978286ab1171d3ec6d69be23c", - [ - "css/css-shapes/shape-outside/supported-shapes/circle/shape-outside-circle-038.html", - [ - [ - "/css/css-shapes/shape-outside/supported-shapes/circle/reference/shape-outside-circle-036-ref.html", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 6 - ], - [ - 0, - 6 - ] - ] - ] - ] - } - ] - ], - "shape-outside-circle-041.html": [ - "faeb4cd3c00dbab42dfced07ed86452618e836f8", - [ - null, - [ - [ - "/css/css-shapes/shape-outside/supported-shapes/circle/reference/shape-outside-circle-041-ref.html", - "==" - ] - ], - {} - ] - ], - "shape-outside-circle-042.html": [ - "b2a3836d154f8c6d68f888b56df32c1e6ddef802", - [ - "css/css-shapes/shape-outside/supported-shapes/circle/shape-outside-circle-042.html", - [ - [ - "/css/css-shapes/shape-outside/supported-shapes/circle/reference/shape-outside-circle-042-ref.html", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 6 - ], - [ - 0, - 6 - ] - ] - ] - ] - } - ] - ], - "shape-outside-circle-043.html": [ - "3d73f7e9679a7f2147aff337fc65de80a77597c0", - [ - "css/css-shapes/shape-outside/supported-shapes/circle/shape-outside-circle-043.html", - [ - [ - "/css/css-shapes/shape-outside/supported-shapes/circle/reference/shape-outside-circle-042-ref.html", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 6 - ], - [ - 0, - 6 - ] - ] - ] - ] - } - ] - ], - "shape-outside-circle-044.html": [ - "a6f34cfa1f8bde7ee720a5c8af6a82f751638e85", - [ - "css/css-shapes/shape-outside/supported-shapes/circle/shape-outside-circle-044.html", - [ - [ - "/css/css-shapes/shape-outside/supported-shapes/circle/reference/shape-outside-circle-042-ref.html", - "==" - ] - ], - { - "fuzzy": [ - [ - null, - [ - [ - 0, - 6 - ], - [ - 0, - 6 - ] - ] - ] - ] - } - ] - ], - "shape-outside-circle-047.html": [ - "8dbc47580448621853d5789b725237ddf1ff2f17", - [ - null, + null, [ [ "/css/css-shapes/shape-outside/supported-shapes/circle/reference/shape-outside-circle-047-ref.html", @@ -233225,7 +231402,7 @@ "shape-outside-circle-048.html": [ "4e370a31adcef3e3c93ec61f279e599917a70499", [ - "css/css-shapes/shape-outside/supported-shapes/circle/shape-outside-circle-048.html", + null, [ [ "/css/css-shapes/shape-outside/supported-shapes/circle/reference/shape-outside-circle-048-ref.html", @@ -233267,7 +231444,7 @@ "shape-outside-circle-050.html": [ "c3f18190226d10f11e66687cb17a73e9e7cfba8a", [ - "css/css-shapes/shape-outside/supported-shapes/circle/shape-outside-circle-050.html", + null, [ [ "/css/css-shapes/shape-outside/supported-shapes/circle/reference/shape-outside-circle-050-ref.html", @@ -233335,7 +231512,7 @@ "shape-outside-circle-054.html": [ "0ee6d036c0c01fade883d9dcb9740e06e5930066", [ - "css/css-shapes/shape-outside/supported-shapes/circle/shape-outside-circle-054.html", + null, [ [ "/css/css-shapes/shape-outside/supported-shapes/circle/reference/shape-outside-circle-054-ref.html", @@ -233587,7 +231764,7 @@ "shape-outside-ellipse-032.html": [ "f715148e2b5fbd00f4fa9522286970f504665d3f", [ - "css/css-shapes/shape-outside/supported-shapes/ellipse/shape-outside-ellipse-032.html", + null, [ [ "/css/css-shapes/shape-outside/supported-shapes/ellipse/reference/shape-outside-ellipse-032-ref.html", @@ -233655,7 +231832,7 @@ "shape-outside-ellipse-036.html": [ "dadfe85872755ac2deede7c349e990617dd5641e", [ - "css/css-shapes/shape-outside/supported-shapes/ellipse/shape-outside-ellipse-036.html", + null, [ [ "/css/css-shapes/shape-outside/supported-shapes/ellipse/reference/shape-outside-ellipse-036-ref.html", @@ -233684,7 +231861,7 @@ "shape-outside-ellipse-037.html": [ "c7ed856513b386bd6966d8008b2d34ad4a1c742c", [ - "css/css-shapes/shape-outside/supported-shapes/ellipse/shape-outside-ellipse-037.html", + null, [ [ "/css/css-shapes/shape-outside/supported-shapes/ellipse/reference/shape-outside-ellipse-037-ref.html", @@ -233713,7 +231890,7 @@ "shape-outside-ellipse-038.html": [ "82e8b177498ff942691614a052792dfb8a5d51fa", [ - "css/css-shapes/shape-outside/supported-shapes/ellipse/shape-outside-ellipse-038.html", + null, [ [ "/css/css-shapes/shape-outside/supported-shapes/ellipse/reference/shape-outside-ellipse-038-ref.html", @@ -233742,7 +231919,7 @@ "shape-outside-ellipse-039.html": [ "b6ea86c3253c0899276db9c8d078a75e23ee622b", [ - "css/css-shapes/shape-outside/supported-shapes/ellipse/shape-outside-ellipse-039.html", + null, [ [ "/css/css-shapes/shape-outside/supported-shapes/ellipse/reference/shape-outside-ellipse-039-ref.html", @@ -234046,7 +232223,7 @@ "shape-outside-inset-020.html": [ "929882733370e26f0adf10d9b0d5c92b0b050ec4", [ - "css/css-shapes/shape-outside/supported-shapes/inset/shape-outside-inset-020.html", + null, [ [ "/css/css-shapes/shape-outside/supported-shapes/inset/reference/shape-outside-inset-020-ref.html", @@ -234101,7 +232278,7 @@ "shape-outside-inset-023.html": [ "3a97f8327eb03a87a3e0f667942124c4ba94a8b8", [ - "css/css-shapes/shape-outside/supported-shapes/inset/shape-outside-inset-023.html", + null, [ [ "/css/css-shapes/shape-outside/supported-shapes/inset/reference/shape-outside-inset-023-ref.html", @@ -234130,7 +232307,7 @@ "shape-outside-inset-024.html": [ "5de0dad9ebc8ed851eb9df11f6188ed8af093f52", [ - "css/css-shapes/shape-outside/supported-shapes/inset/shape-outside-inset-024.html", + null, [ [ "/css/css-shapes/shape-outside/supported-shapes/inset/reference/shape-outside-inset-024-ref.html", @@ -234912,7 +233089,7 @@ "abspos-021.html": [ "c44b29c4b3b08e778503dc8c0e4dd4f8271e2a16", [ - "css/css-sizing/aspect-ratio/abspos-021.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -235456,9 +233633,9 @@ ] ], "block-aspect-ratio-042.html": [ - "3f76d42b97125d793637f0477394b16f4ef848f0", + "63c3b1abc9bc1d58d971e953508b1c56b12c367b", [ - null, + "css/css-sizing/aspect-ratio/block-aspect-ratio-042.html", [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -235469,9 +233646,9 @@ ] ], "block-aspect-ratio-043.html": [ - "98fd3697dc3e68b9a102b74bf70e8c4075792bb5", + "da63c050320cc9aa5b8f3d91afc1f4dafe88525f", [ - null, + "css/css-sizing/aspect-ratio/block-aspect-ratio-043.html", [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -235624,6 +233801,32 @@ {} ] ], + "block-aspect-ratio-056.html": [ + "c12f8082a3660c1ac38efc794256057c3c4b83c1", + [ + "css/css-sizing/aspect-ratio/block-aspect-ratio-056.html", + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "block-aspect-ratio-057.tentative.html": [ + "e183c7ec0a3932dfc9c2c57554ecc6498f6ca123", + [ + "css/css-sizing/aspect-ratio/block-aspect-ratio-057.tentative.html", + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], "block-aspect-ratio-with-margin-collapsing-001.html": [ "78a0418fe285da58030cdd863460add0533e6af5", [ @@ -235663,6 +233866,19 @@ {} ] ], + "fieldset-element-002.html": [ + "5483330fe70c8305c0ec36bab2b266e6d1d85e1d", + [ + null, + [ + [ + "/css/css-sizing/aspect-ratio/fieldset-element-002-ref.html", + "==" + ] + ], + {} + ] + ], "flex-aspect-ratio-001.html": [ "3b477e299ad763a1c0108e16f05981c76c25bb77", [ @@ -236004,7 +234220,7 @@ "flex-aspect-ratio-027.html": [ "a2d853e54cd1dc4d9ae0cdf82b9d75c30e0317cd", [ - "css/css-sizing/aspect-ratio/flex-aspect-ratio-027.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -236017,7 +234233,7 @@ "flex-aspect-ratio-028.html": [ "1819d30cdda8e1e40dda391b44465194924a9b8a", [ - "css/css-sizing/aspect-ratio/flex-aspect-ratio-028.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -236030,7 +234246,7 @@ "flex-aspect-ratio-029.html": [ "a0ce16088a7652421df79798626f6a0774e751b8", [ - "css/css-sizing/aspect-ratio/flex-aspect-ratio-029.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -236043,7 +234259,7 @@ "flex-aspect-ratio-030.html": [ "df6d6985c56ce136f011b99ead497cf9fa4adba5", [ - "css/css-sizing/aspect-ratio/flex-aspect-ratio-030.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -236056,7 +234272,7 @@ "flex-aspect-ratio-031.html": [ "5bd4a9d58c2ca57b3f4ad701a4e8ddbc0ce49665", [ - "css/css-sizing/aspect-ratio/flex-aspect-ratio-031.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -236069,7 +234285,7 @@ "flex-aspect-ratio-032.html": [ "7dee0dd3f2226665fbac34a60d065c61d12dc14f", [ - "css/css-sizing/aspect-ratio/flex-aspect-ratio-032.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -236082,7 +234298,7 @@ "flex-aspect-ratio-033.html": [ "36acf08444d0fa174f4dfdb96ac259dae98ae684", [ - "css/css-sizing/aspect-ratio/flex-aspect-ratio-033.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -236209,6 +234425,162 @@ {} ] ], + "flex-aspect-ratio-043.html": [ + "a1cd972d4dae64111987db345035f11652132817", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "flex-aspect-ratio-044.html": [ + "76f6ac115bd5536e3e2d4c0be903a86771af6cf3", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "flex-aspect-ratio-045.html": [ + "e5381df7cc157973e9f6e1b29193fbb227557196", + [ + "css/css-sizing/aspect-ratio/flex-aspect-ratio-045.html", + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "flex-aspect-ratio-046.html": [ + "e6ac10a32b4ddc75f40b528ed56fbd3a08c820cf", + [ + "css/css-sizing/aspect-ratio/flex-aspect-ratio-046.html", + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "flex-aspect-ratio-047.html": [ + "06fa3ba23723a666483f5d811b41a8131e91ccb0", + [ + "css/css-sizing/aspect-ratio/flex-aspect-ratio-047.html", + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "flex-aspect-ratio-048.html": [ + "8d00a08f04a25248ac8fbb646ee678b8b58a0eaf", + [ + "css/css-sizing/aspect-ratio/flex-aspect-ratio-048.html", + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "flex-aspect-ratio-049.html": [ + "c69950742e33682fda26a178495bafb3f06fc3e8", + [ + "css/css-sizing/aspect-ratio/flex-aspect-ratio-049.html", + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "flex-aspect-ratio-050.html": [ + "c7e74e699c1684af98a8f4e5f1469eb7601172a4", + [ + "css/css-sizing/aspect-ratio/flex-aspect-ratio-050.html", + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "flex-aspect-ratio-051.html": [ + "0556c1c1ff31729de2c8fb5bffacac4a812ecb63", + [ + "css/css-sizing/aspect-ratio/flex-aspect-ratio-051.html", + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "flex-aspect-ratio-052.html": [ + "c046c2ed129e19ae3a3d8ad03980cdae6268bc76", + [ + "css/css-sizing/aspect-ratio/flex-aspect-ratio-052.html", + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "flex-aspect-ratio-053.html": [ + "05b9874798c2c4532b73e7933f907a3ac7b7da23", + [ + "css/css-sizing/aspect-ratio/flex-aspect-ratio-053.html", + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "flex-aspect-ratio-054.html": [ + "5e2cd7a4f764ab8119cbb558a859b22f40c3ad3f", + [ + "css/css-sizing/aspect-ratio/flex-aspect-ratio-054.html", + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], "floats-aspect-ratio-001.html": [ "53627d2134aacff311142d5513a5a662264143de", [ @@ -236433,7 +234805,7 @@ "grid-aspect-ratio-018.html": [ "d0b496e2503529847bbf91ff8b0d49565abc1892", [ - "css/css-sizing/aspect-ratio/grid-aspect-ratio-018.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -236446,7 +234818,7 @@ "grid-aspect-ratio-019.html": [ "bf9c353866f73d21e50aca50ed59debceebffc50", [ - "css/css-sizing/aspect-ratio/grid-aspect-ratio-019.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -236459,7 +234831,7 @@ "grid-aspect-ratio-020.html": [ "7141793f9de415ad85e8b496699d1351b3745923", [ - "css/css-sizing/aspect-ratio/grid-aspect-ratio-020.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -236472,7 +234844,7 @@ "grid-aspect-ratio-021.html": [ "3b962b542a106c5fc50c37f0738a638cee13fca5", [ - "css/css-sizing/aspect-ratio/grid-aspect-ratio-021.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -236563,7 +234935,7 @@ "grid-aspect-ratio-028.html": [ "030857a60519dd388500aff02da99fcc3c59f5e3", [ - "css/css-sizing/aspect-ratio/grid-aspect-ratio-028.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -236576,7 +234948,7 @@ "grid-aspect-ratio-029.html": [ "82b727165acf4b966741190a14f23944c29bf1c9", [ - "css/css-sizing/aspect-ratio/grid-aspect-ratio-029.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -236589,7 +234961,7 @@ "grid-aspect-ratio-030.html": [ "e160c435ec1292d50711af261900a46123e3fe6e", [ - "css/css-sizing/aspect-ratio/grid-aspect-ratio-030.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -236602,7 +234974,7 @@ "grid-aspect-ratio-031.html": [ "8cc61904da184145af36975a1aba54c52264d1a7", [ - "css/css-sizing/aspect-ratio/grid-aspect-ratio-031.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -236615,7 +234987,7 @@ "grid-aspect-ratio-032.html": [ "88808850254a3bb3735c616742b766734a9ccc54", [ - "css/css-sizing/aspect-ratio/grid-aspect-ratio-032.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -236628,7 +235000,7 @@ "grid-aspect-ratio-033.html": [ "e0047a60bd3261b288915cdaf2396cd562f931ce", [ - "css/css-sizing/aspect-ratio/grid-aspect-ratio-033.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -236641,7 +235013,7 @@ "grid-aspect-ratio-034.html": [ "e217909966970b2adca75b4d712a34d6cef1dd83", [ - "css/css-sizing/aspect-ratio/grid-aspect-ratio-034.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -236654,7 +235026,7 @@ "grid-aspect-ratio-035.html": [ "a07326794a71ebc3709921b2e07a4788ce7e2086", [ - "css/css-sizing/aspect-ratio/grid-aspect-ratio-035.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -236667,7 +235039,7 @@ "grid-aspect-ratio-036.html": [ "54a6e6ed4769533d445ced0da6cadbd35b32252a", [ - "css/css-sizing/aspect-ratio/grid-aspect-ratio-036.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -236680,7 +235052,7 @@ "grid-aspect-ratio-037.html": [ "daa978a1571f4d7bf46ffce619f18d908afce46a", [ - "css/css-sizing/aspect-ratio/grid-aspect-ratio-037.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -236693,7 +235065,7 @@ "grid-aspect-ratio-038.html": [ "6ddbe758333737fac91b76d32e3d23dbcf9d3438", [ - "css/css-sizing/aspect-ratio/grid-aspect-ratio-038.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -236729,6 +235101,32 @@ {} ] ], + "grid-aspect-ratio-041.html": [ + "8fe724308a48770ed35c7979f172eff420a4b967", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "grid-aspect-ratio-042.html": [ + "7f836164adac71bad59bd01c4925036943c18133", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], "intrinsic-size-001.html": [ "5b2c6049bd935c928f29c50bf4ad7afae41c4576", [ @@ -236937,6 +235335,123 @@ {} ] ], + "intrinsic-size-017.html": [ + "d3742a532d207b9644bd3d76ab265180b23ecfa9", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "intrinsic-size-018.html": [ + "cbe5d5f10f73d54ce23aa2b620bc30b5cabcee22", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "intrinsic-size-019.html": [ + "94ddc3c5781e8aa94184ea0b23efbbd563a87d6a", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "intrinsic-size-020.html": [ + "0b8c038571c4afd666cca49d23486466d1a6519e", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "intrinsic-size-021.html": [ + "b8ea5cd32cacbde71699905ea8575bd5d81ce825", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "intrinsic-size-022.html": [ + "d03a1d37d5cbab8d5fbc987cdb162680f89da4ba", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "intrinsic-size-023.html": [ + "65269f06bab5f4b9e683ba56ae5c454b3a8a00b9", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "intrinsic-size-024.html": [ + "e05724f258fb70cecc8ef1f4f6378a4d57a54590", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "intrinsic-size-025.html": [ + "cc7aa35724ec80663ddc4019847504eb85c46c3a", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], "percentage-resolution-001.html": [ "d606bfc65e340f95fbbc355b764a7de5e7aeb6a1", [ @@ -237031,7 +235546,7 @@ "replaced-element-003.html": [ "171d23543f51f482614c2c2802b484befe3696f1", [ - "css/css-sizing/aspect-ratio/replaced-element-003.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -237528,7 +236043,7 @@ "select-element-001.html": [ "a504e26e79ef90994ef7f53f1a54c673ff404ea2", [ - "css/css-sizing/aspect-ratio/select-element-001.html", + null, [ [ "/css/css-sizing/aspect-ratio/select-element-001-ref.html", @@ -237747,6 +236262,84 @@ {} ] ], + "block-size-with-min-or-max-content-2.html": [ + "cd649b86df19127c52e4713bbb93a05ec46a2ed3", + [ + "css/css-sizing/block-size-with-min-or-max-content-2.html", + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "block-size-with-min-or-max-content-3.html": [ + "0d765ca27d12617286bc1066de1c7ef1d4b59601", + [ + "css/css-sizing/block-size-with-min-or-max-content-3.html", + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "block-size-with-min-or-max-content-4.html": [ + "95a60ec85fa83b4833f7803b8937dbf3035dcb8b", + [ + "css/css-sizing/block-size-with-min-or-max-content-4.html", + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "block-size-with-min-or-max-content-5.html": [ + "749ccf59bfcc604221e93bdc7f933de020cdfa9c", + [ + "css/css-sizing/block-size-with-min-or-max-content-5.html", + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "block-size-with-min-or-max-content-6.html": [ + "e05962cb7a6995319deb828eb449fbfe3b58c79a", + [ + "css/css-sizing/block-size-with-min-or-max-content-6.html", + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "block-size-with-min-or-max-content-7.html": [ + "11517c23ee7d773966156cbaf52a8ddc2a38a6eb", + [ + "css/css-sizing/block-size-with-min-or-max-content-7.html", + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], "block-size-with-min-or-max-content-table-1a.html": [ "f5abc672a853779fdcc8356db754954bc711aadb", [ @@ -238401,7 +236994,7 @@ "contain-intrinsic-size-logical-001.html": [ "9a84bff491b5ef3e7928e4cb8a03568eac775d36", [ - "css/css-sizing/contain-intrinsic-size/contain-intrinsic-size-logical-001.html", + null, [ [ "/css/reference/ref-filled-green-100px-square-only.html", @@ -238414,7 +237007,7 @@ "contain-intrinsic-size-logical-002.html": [ "b5b9748f81419451e5a34174898d2c43e8348f64", [ - "css/css-sizing/contain-intrinsic-size/contain-intrinsic-size-logical-002.html", + null, [ [ "/css/reference/ref-filled-green-100px-square-only.html", @@ -238779,7 +237372,7 @@ "dynamic-change-inline-size-001.html": [ "bc6db56a58067322122f24cb412773a435ba47d9", [ - "css/css-sizing/dynamic-change-inline-size-001.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -238792,7 +237385,7 @@ "dynamic-change-inline-size-002.html": [ "4d0306205e8b0a33f813fc436af6e9f85a17ed9e", [ - "css/css-sizing/dynamic-change-inline-size-002.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -238805,7 +237398,7 @@ "dynamic-change-inline-size-003.html": [ "7b2d465da4d1ee65e539046539fb2a203c1ae064", [ - "css/css-sizing/dynamic-change-inline-size-003.html", + null, [ [ "/css/css-sizing/dynamic-change-inline-size-003-ref.html", @@ -238818,7 +237411,7 @@ "fit-content-block-size-abspos.html": [ "8ed6771483d220665d73f2667bf698f01d249994", [ - "css/css-sizing/fit-content-block-size-abspos.html", + null, [ [ "/css/css-sizing/fit-content-block-size-fixedpos-ref.html", @@ -238831,7 +237424,7 @@ "fit-content-block-size-fixedpos.html": [ "052435ba93771f146c3875ce868a9b4ae366b2a8", [ - "css/css-sizing/fit-content-block-size-fixedpos.html", + null, [ [ "/css/css-sizing/fit-content-block-size-fixedpos-ref.html", @@ -239062,10 +237655,36 @@ {} ] ], + "fit-content-max-inline-size.tentative.html": [ + "3333d55ba20befc05285b884648561e8fd64a41c", + [ + "css/css-sizing/fit-content-max-inline-size.tentative.html", + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "fit-content-min-inline-size.tentative.html": [ + "46e2d5d127338fce204f7ed692954bef7e626695", + [ + "css/css-sizing/fit-content-min-inline-size.tentative.html", + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], "grid-item-image-percentage-min-height-computes-as-0.html": [ "ef3da03100229a846ca77156bdf34e5e37c92508", [ - "css/css-sizing/grid-item-image-percentage-min-height-computes-as-0.html", + null, [ [ "/css/css-sizing/grid-item-image-percentage-min-height-computes-as-0-ref.html", @@ -239247,7 +237866,7 @@ "inline-intrinsic-size-calc.html": [ "1e47bd9b04491fbe4f27d2e1814ccbb848559e19", [ - "css/css-sizing/inline-intrinsic-size-calc.html", + null, [ [ "/css/css-sizing/inline-intrinsic-size-calc-ref.html", @@ -239270,6 +237889,19 @@ {} ] ], + "intrinsic-percent-non-replaced-002.html": [ + "fd0490a68a969afcfa349d2ecc7d0198c999fdd1", + [ + null, + [ + [ + "/css/css-sizing/intrinsic-percent-non-replaced-002-ref.html", + "==" + ] + ], + {} + ] + ], "intrinsic-percent-non-replaced-003.html": [ "1dd1a2ef5da40e98950e28a6c6951ed75219491a", [ @@ -239582,6 +238214,32 @@ {} ] ], + "intrinsic-percent-replaced-dynamic-011.html": [ + "198aa06b26946152fe3314ffaff6a316f159ccc0", + [ + "css/css-sizing/intrinsic-percent-replaced-dynamic-011.html", + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "intrinsic-percent-replaced-dynamic-012.html": [ + "a21aa249cb580833582daa0bccd01c879b0ad68f", + [ + "css/css-sizing/intrinsic-percent-replaced-dynamic-012.html", + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], "max-content-input-001.html": [ "aabbea015748f9276718e2ba9728efc375c8910b", [ @@ -239611,7 +238269,7 @@ "nested-flexbox-image-percentage-max-height-computes-as-none.html": [ "06b70f18e3d4e89299281024048f7984ba39a469", [ - "css/css-sizing/nested-flexbox-image-percentage-max-height-computes-as-none.html", + null, [ [ "/css/css-sizing/nested-flexbox-image-percentage-max-height-computes-as-none-ref.html", @@ -239751,10 +238409,62 @@ {} ] ], + "replaced-max-height-min-content.html": [ + "189a979be8beb66f45b4677c40431ad6e491da51", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], "replaced-max-size-saturation.html": [ "16765fba78afb703e89c84f81df0384e3abe7d74", [ - "css/css-sizing/replaced-max-size-saturation.html", + null, + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "replaced-max-width-min-content.html": [ + "41074632422d3e01dde66ad843411698c3c49807", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "replaced-min-height-min-content.html": [ + "6e6938107336fdcbdfadb820e9888d4ef8d0da36", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "replaced-min-width-min-content.html": [ + "bb77166def1e806d4b8277ffd105d71277d46db1", + [ + null, [ [ "/css/reference/ref-filled-green-100px-square-only.html", @@ -239829,10 +238539,36 @@ {} ] ], + "svg-no-ar-max-height-min-content.html": [ + "ae3f69e72bd436483f9e1e0961be3770beae6250", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "svg-no-ar-min-height-min-content.html": [ + "6848e9375be22f7d6abf4e321c20add0097978ff", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], "table-child-percentage-height-with-border-box.html": [ "1b798ff8c54cd36b821f62d0aec32d275a998da5", [ - "css/css-sizing/table-child-percentage-height-with-border-box.html", + null, [ [ "/css/css-sizing/table-child-percentage-height-with-border-box-ref.html", @@ -240122,7 +238858,7 @@ "missing-semicolon.html": [ "d8e70e631591c05d2025d1800b1201ce80550fed", [ - "css/css-syntax/missing-semicolon.html", + null, [ [ "/css/css-syntax/missing-semicolon-ref.html", @@ -240280,7 +239016,7 @@ "abspos-container-change-dynamic-001.html": [ "5fdf7ce96759e1dc0e0b1ada89359c79888e7411", [ - "css/css-tables/abspos-container-change-dynamic-001.html", + null, [ [ "/css/css-tables/abspos-container-change-dynamic-001-ref.html", @@ -240550,6 +239286,45 @@ {} ] ], + "collapsed-border-partial-invalidation-001.html": [ + "67330e4d2c4e976fd4837334417151dab50e4cb6", + [ + null, + [ + [ + "/css/css-tables/collapsed-border-partial-invalidation-001-ref.html", + "==" + ] + ], + {} + ] + ], + "collapsed-border-partial-invalidation-002.html": [ + "e48271995cf0ebd41b2afdbe8d0a110dac280082", + [ + null, + [ + [ + "/css/css-tables/collapsed-border-partial-invalidation-002-ref.html", + "==" + ] + ], + {} + ] + ], + "collapsed-border-partial-invalidation-003.html": [ + "073f67e669da0b884c507c356a016e1ef229961f", + [ + null, + [ + [ + "/css/css-tables/collapsed-border-partial-invalidation-003-ref.html", + "==" + ] + ], + {} + ] + ], "collapsed-border-positioned-tr-td.html": [ "d5c6094497268941071e516073a54f38e5900d45", [ @@ -240566,7 +239341,7 @@ "collapsed-border-remove-cell.html": [ "2a84a6392196413f3d12ca49f0210946374afde7", [ - "css/css-tables/collapsed-border-remove-cell.html", + null, [ [ "/css/css-tables/collapsed-border-remove-cell-ref.html", @@ -240576,10 +239351,23 @@ {} ] ], + "collapsed-border-remove-row-group.html": [ + "39b89956c54c3b589e9396c23a7ce87c6028a2cb", + [ + null, + [ + [ + "/css/css-tables/collapsed-border-remove-row-group-ref.html", + "==" + ] + ], + {} + ] + ], "colspan-004.html": [ "cbe7f96ec2c44466e42c619ca8d1db676e6cd6db", [ - "css/css-tables/colspan-004.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -240710,7 +239498,7 @@ "percentage-sizing-of-table-cell-007.html": [ "371333a24d90afb9550729250432d605a84c098c", [ - "css/css-tables/height-distribution/percentage-sizing-of-table-cell-007.html", + null, [ [ "/css/css-tables/height-distribution/percentage-sizing-of-table-cell-007-ref.html", @@ -240907,7 +239695,7 @@ "col-change-span-bg-invalidation-001.html": [ "997745954eb2543d711e6791da4f82957208fcfc", [ - "css/css-tables/paint/col-change-span-bg-invalidation-001.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -240936,7 +239724,7 @@ "col-change-span-bg-invalidation-002.html": [ "abfd6dbaaffd13d9b08280b73ba0dace9b46c53b", [ - "css/css-tables/paint/col-change-span-bg-invalidation-002.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -240991,7 +239779,7 @@ "row-background-paint-remove-last-cell.html": [ "e61b5d4fea02a815edb6d00e87e295d3a252959a", [ - "css/css-tables/paint/row-background-paint-remove-last-cell.html", + null, [ [ "/css/css-tables/paint/row-background-paint-remove-last-cell-ref.html", @@ -241018,7 +239806,7 @@ "percent-height-replaced-in-percent-cell-002.html": [ "78d4b0be1d2551972b6d5476ddf46b3da4819379", [ - "css/css-tables/percent-height-replaced-in-percent-cell-002.html", + null, [ [ "/css/reference/ref-filled-green-100px-square-only.html", @@ -241044,7 +239832,7 @@ "percent-height-table-cell-child.html": [ "acf9205259a91f216fca1af1040ec62e46808d1e", [ - "css/css-tables/percent-height-table-cell-child.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -241093,6 +239881,32 @@ {} ] ], + "remove-caption-from-anon-table.html": [ + "ea71c54327c4efcc127be3a5de5758b421161b45", + [ + null, + [ + [ + "/css/css-tables/remove-caption-from-anon-table-ref.html", + "==" + ] + ], + {} + ] + ], + "remove-colgroup-from-anon-table.html": [ + "cea6524ddfce6feb9edee877770680b7049613bf", + [ + null, + [ + [ + "/css/css-tables/remove-caption-from-anon-table-ref.html", + "==" + ] + ], + {} + ] + ], "row-group-margin-border-padding.html": [ "97c7a6e5b9ce29ab7143a5b0b06e57916097ce02", [ @@ -241135,7 +239949,7 @@ "rules-groups.html": [ "d07aa0b765892ec5fb153228271add2dfa21bc6f", [ - "css/css-tables/rules-groups.html", + null, [ [ "/css/css-tables/rules-groups-ref.html", @@ -241262,10 +240076,23 @@ {} ] ], + "table-cell-inline-size-box-sizing-quirks.html": [ + "a59a0672e909951be12a25d67e4da4a2c707178f", + [ + null, + [ + [ + "/css/css-tables/table-cell-inline-size-box-sizing-quirks-ref.html", + "==" + ] + ], + {} + ] + ], "table-cell-overflow-auto-scrolled.html": [ "e31a7805c7da63aa20f2a3e37a63ec1957d3a7aa", [ - "css/css-tables/table-cell-overflow-auto-scrolled.html", + null, [ [ "/css/css-tables/table-cell-overflow-auto-scrolled-ref.html", @@ -241288,6 +240115,32 @@ {} ] ], + "table-cell-overflow-explicit-height-001.html": [ + "b57d4a2bad9e03be2111069d0bfd2cb291105f7c", + [ + null, + [ + [ + "/css/css-tables/table-cell-overflow-explicit-height-ref.html", + "==" + ] + ], + {} + ] + ], + "table-cell-overflow-explicit-height-002.html": [ + "de65f625d68b2bc636436d6bf25c84e34da7488e", + [ + null, + [ + [ + "/css/css-tables/table-cell-overflow-explicit-height-ref.html", + "==" + ] + ], + {} + ] + ], "table-has-box-sizing-border-box-001.html": [ "570065c697609afb91b03bead3e33f53c67580c4", [ @@ -241328,6 +240181,19 @@ ] ], "tentative": { + "padding-percentage.html": [ + "67f8009de365a32275232b5c5b008072a0c8fc17", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], "paint": { "background-image-column-collapsed.html": [ "6e6ae7a82cfd04c09989dcea682744eb79e982a7", @@ -241461,7 +240327,7 @@ {} ] ], - "visibility-collapse-border-spacing.html": [ + "visibility-collapse-border-spacing-001.html": [ "738cea16d5d0d41a2990fead77e8fd1c8bc246ec", [ null, @@ -241474,6 +240340,19 @@ {} ] ], + "visibility-collapse-border-spacing-002.html": [ + "95e2fb063594dee23cec40e6faab6388a35231bd", + [ + null, + [ + [ + "/css/reference/ref-filled-green-200px-square.html", + "==" + ] + ], + {} + ] + ], "visibility-collapse-colspan-003.html": [ "37092818f62c8beff7666f88910a5e803292bb47", [ @@ -241770,7 +240649,7 @@ "hanging-punctuation-first-002.html": [ "a2dd69f3a47d1786a34f6521d719b85ac2566b56", [ - "css/css-text/hanging-punctuation/hanging-punctuation-first-002.html", + null, [ [ "/css/css-text/hanging-punctuation/reference/hanging-punctuation-first-002-ref.html", @@ -242065,7 +240944,7 @@ "hyphens-auto-min-content.html": [ "b3f7c316239162e2d43a9bd3db87e9765b669261", [ - "css/css-text/hyphens/hyphens-auto-min-content.html", + null, [ [ "/css/css-text/hyphens/hyphens-auto-min-content-ref-1.html", @@ -242271,7 +241150,7 @@ "hyphens-none-shy-on-2nd-line-001.html": [ "3efaa54d4f4501d47ed4c4ef5ab07dfd2b6f4241", [ - "css/css-text/hyphens/hyphens-none-shy-on-2nd-line-001.html", + null, [ [ "/css/css-text/hyphens/reference/hyphens-none-shy-on-2nd-line-001-ref.html", @@ -242437,6 +241316,32 @@ {} ] ], + "hyphens-vs-float-clearance-001.html": [ + "29b7c3c9fa595dd23d6cc7ee4aded6687feea8f3", + [ + null, + [ + [ + "/css/css-text/hyphens/reference/hyphens-vs-float-clearance-001-ref.html", + "==" + ] + ], + {} + ] + ], + "hyphens-vs-float-clearance-002.html": [ + "6b5b213cb71cb55930da8ef0058522667301f49e", + [ + null, + [ + [ + "/css/css-text/hyphens/reference/hyphens-vs-float-clearance-001-ref.html", + "==" + ] + ], + {} + ] + ], "i18n": { "hyphens-i18n-auto-001.html": [ "bfcd2f1362f40dd932e5444eb38ff676a27e895f", @@ -242530,7 +241435,7 @@ "hyphens-i18n-auto-006.html": [ "7b252f8150fa48bcfcab41a2a3ae5b740f79b2b9", [ - "css/css-text/hyphens/i18n/hyphens-i18n-auto-006.html", + null, [ [ "/css/css-text/hyphens/i18n/reference/hyphens-i18n-auto-006-ref.html", @@ -244929,7 +243834,7 @@ "letter-spacing-end-of-line-002.html": [ "c3781a3b0c17a3d89b1708478868efb7bc242d0e", [ - "css/css-text/letter-spacing/letter-spacing-end-of-line-002.html", + null, [ [ "/css/css-text/letter-spacing/reference/letter-spacing-end-of-line-002-ref.html", @@ -245029,6 +243934,32 @@ ], {} ] + ], + "letter-spacing-percent-001.html": [ + "522320de580652becea6fee125a170f940958827", + [ + null, + [ + [ + "/css/css-text/letter-spacing/reference/letter-spacing-percent-001-ref.html", + "==" + ] + ], + {} + ] + ], + "letter-spacing-trim-start-001.html": [ + "33cbc8e49a1e076fa0ec0ca9fafd4ea5e0040c8b", + [ + null, + [ + [ + "/css/css-text/letter-spacing/reference/letter-spacing-trim-start-001-ref.html", + "==" + ] + ], + {} + ] ] }, "line-break": { @@ -245958,7 +244889,7 @@ "line-break-strict-012.xht": [ "c9f80dd81a3f31b60a1cc633d8b2d0dbe46be0cd", [ - "css/css-text/line-break/line-break-strict-012.xht", + null, [ [ "/css/css-text/line-break/reference/line-break-strict-012-ref.xht", @@ -246464,6 +245395,45 @@ {} ] ], + "line-breaking-030.html": [ + "9cf0b3d5c418a7a5350c2030d700cb14aedb97a3", + [ + null, + [ + [ + "/css/css-text/line-breaking/reference/line-breaking-030-ref.html", + "==" + ] + ], + {} + ] + ], + "line-breaking-031.html": [ + "c8e34574165faee1b7b3aa0e5a56607980dc94f6", + [ + null, + [ + [ + "/css/css-text/line-breaking/reference/line-breaking-030-ref.html", + "==" + ] + ], + {} + ] + ], + "line-breaking-032.html": [ + "2c79f5955f405fe01a67578a3990ff696fbde59b", + [ + null, + [ + [ + "/css/css-text/line-breaking/reference/line-breaking-030-ref.html", + "==" + ] + ], + {} + ] + ], "line-breaking-atomic-001.html": [ "e071378c95fd436484a3056ecb2ba6ff35ddbaae", [ @@ -246493,7 +245463,7 @@ "line-breaking-atomic-003.html": [ "39c50250f58124a59612ed8318a981ed61e48633", [ - "css/css-text/line-breaking/line-breaking-atomic-003.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -246506,7 +245476,7 @@ "line-breaking-atomic-004.html": [ "fc27424026dc6ae7b60b7c67f0ee94831881af54", [ - "css/css-text/line-breaking/line-breaking-atomic-004.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -246519,7 +245489,7 @@ "line-breaking-atomic-005.html": [ "900487118c11288c5624db7964e542f95110fb3b", [ - "css/css-text/line-breaking/line-breaking-atomic-005.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -246532,7 +245502,7 @@ "line-breaking-atomic-006.html": [ "5552ec022744107804426ff75d7e308be6afa863", [ - "css/css-text/line-breaking/line-breaking-atomic-006.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -246584,7 +245554,7 @@ "line-breaking-atomic-010.html": [ "318da447f96515d63248f21d3d8d59e9003b4d8b", [ - "css/css-text/line-breaking/line-breaking-atomic-010.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -246597,7 +245567,7 @@ "line-breaking-atomic-011.html": [ "06fc493a666233640fad3beb0d92951300383429", [ - "css/css-text/line-breaking/line-breaking-atomic-011.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -246610,7 +245580,7 @@ "line-breaking-atomic-012.html": [ "5bd3423f6ed2fcb736ad114c55e6482d7a6eb485", [ - "css/css-text/line-breaking/line-breaking-atomic-012.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -246623,7 +245593,7 @@ "line-breaking-atomic-013.html": [ "04a0ef7bc0ca5d31f0392c47963550691f3ee620", [ - "css/css-text/line-breaking/line-breaking-atomic-013.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -246636,7 +245606,7 @@ "line-breaking-atomic-014.html": [ "70bc118c6f6d7536b318668c888a45444827e50c", [ - "css/css-text/line-breaking/line-breaking-atomic-014.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -246649,7 +245619,7 @@ "line-breaking-atomic-015.html": [ "f696ce0a14f594500587a663b6d818cc306ae8cd", [ - "css/css-text/line-breaking/line-breaking-atomic-015.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -246662,7 +245632,7 @@ "line-breaking-atomic-016.html": [ "a3bbe40118b2a61cef99774d0ea64f659d4c1175", [ - "css/css-text/line-breaking/line-breaking-atomic-016.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -246675,7 +245645,7 @@ "line-breaking-atomic-017.html": [ "ac62af6ce0d4a318ea8f4f7bb6bb71b899865f6c", [ - "css/css-text/line-breaking/line-breaking-atomic-017.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -246688,7 +245658,7 @@ "line-breaking-atomic-018.html": [ "3517dcebce79d3f4ce55e6632eeb86130ed5dc74", [ - "css/css-text/line-breaking/line-breaking-atomic-018.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -246701,7 +245671,7 @@ "line-breaking-atomic-019.html": [ "2c173063154bbf73e7ccca1eacceb02b9f5bac44", [ - "css/css-text/line-breaking/line-breaking-atomic-019.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -246714,7 +245684,7 @@ "line-breaking-atomic-020.html": [ "02bd61f83d64c62ea3a0fb876bdf4f4d69a77b96", [ - "css/css-text/line-breaking/line-breaking-atomic-020.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -246727,7 +245697,7 @@ "line-breaking-atomic-021.html": [ "14c3dfbf037e659efbc5f0cf0c2bd41846dacdeb", [ - "css/css-text/line-breaking/line-breaking-atomic-021.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -246740,7 +245710,7 @@ "line-breaking-atomic-022.html": [ "b3541e9a21a6253081f4b26af442f98416229947", [ - "css/css-text/line-breaking/line-breaking-atomic-022.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -246753,7 +245723,7 @@ "line-breaking-atomic-023.html": [ "8616ca60aadc50e7c2951a9cfe06e601d9c15621", [ - "css/css-text/line-breaking/line-breaking-atomic-023.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -246766,7 +245736,7 @@ "line-breaking-atomic-024.html": [ "b823dace2bdfdde92b56f4a5d0ba325a0b30c073", [ - "css/css-text/line-breaking/line-breaking-atomic-024.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -246779,7 +245749,7 @@ "line-breaking-atomic-025.html": [ "541a82de9668c74fed61d65623a81b695b52c422", [ - "css/css-text/line-breaking/line-breaking-atomic-025.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -246792,7 +245762,7 @@ "line-breaking-atomic-026.html": [ "2b52e730415aa8d3ff7e2c91742ef0186965216c", [ - "css/css-text/line-breaking/line-breaking-atomic-026.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -246805,7 +245775,7 @@ "line-breaking-atomic-027.html": [ "acbe4edf07516c775b42c29b4d26d9b689f98a96", [ - "css/css-text/line-breaking/line-breaking-atomic-027.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -246870,7 +245840,7 @@ "line-breaking-replaced-002.html": [ "d50c104ed0bc2f3568697f1f86dc9238152bc59b", [ - "css/css-text/line-breaking/line-breaking-replaced-002.html", + null, [ [ "/css/css-text/line-breaking/reference/line-breaking-replaced-002-ref.html", @@ -246883,7 +245853,7 @@ "line-breaking-replaced-003.html": [ "81b15d9d4cb8567715e498d9fb9f0768198e876d", [ - "css/css-text/line-breaking/line-breaking-replaced-003.html", + null, [ [ "/css/css-text/line-breaking/reference/line-breaking-replaced-003-ref.html", @@ -248934,7 +247904,7 @@ "tab-min-rendered-width-1.html": [ "e4cd2afaf1f6d613789c6229e400432527b89a26", [ - "css/css-text/tab-size/tab-min-rendered-width-1.html", + null, [ [ "/css/css-text/tab-size/tab-min-rendered-width-1-ref.html", @@ -248947,7 +247917,7 @@ "tab-size-block-ancestor.html": [ "b295382a2f1d6f19c340d5b3ec367ea01e0c29e4", [ - "css/css-text/tab-size/tab-size-block-ancestor.html", + null, [ [ "/css/css-text/tab-size/tab-size-block-ancestor-ref.html", @@ -249051,7 +248021,7 @@ "tab-size-integer-005.html": [ "a58e4ea23a7c59253b0d5c6a57210c92e4df3c5f", [ - "css/css-text/tab-size/tab-size-integer-005.html", + null, [ [ "/css/css-text/tab-size/tab-size-integer-005-ref.html", @@ -249116,7 +248086,7 @@ "tab-size-spacing-002.html": [ "01bc6cafad5b9e126076ceaf9587553f677e02b4", [ - "css/css-text/tab-size/tab-size-spacing-002.html", + null, [ [ "/css/css-text/tab-size/tab-size-spacing-002-ref.html", @@ -249129,7 +248099,7 @@ "tab-size-spacing-003.html": [ "767cc5924453c98095824490361aa2530910a95d", [ - "css/css-text/tab-size/tab-size-spacing-003.html", + null, [ [ "/css/css-text/tab-size/tab-size-spacing-003-ref.html", @@ -249436,7 +248406,7 @@ "text-align-end-016.html": [ "2b8a9b38298a0fd1a5e931e14cfdf8b7ee59868b", [ - "css/css-text/text-align/text-align-end-016.html", + null, [ [ "/css/css-text/text-align/reference/text-align-end-ref-016.html", @@ -249449,7 +248419,7 @@ "text-align-end-017.html": [ "4420808eaaddb5b83acaa669bc1c4d633925fa0b", [ - "css/css-text/text-align/text-align-end-017.html", + null, [ [ "/css/css-text/text-align/reference/text-align-end-ref-015.html", @@ -249634,6 +248604,19 @@ {} ] ], + "text-align-justify-bidi-control.html": [ + "934e947b7584ce21c5ae2175b5f840377d791367", + [ + null, + [ + [ + "/css/css-text/text-align/text-align-justify-bidi-control-ref.html", + "==" + ] + ], + {} + ] + ], "text-align-justify-last-center.html": [ "8aba126e14802b81a0f3c196e588753adfb7f40d", [ @@ -249747,7 +248730,7 @@ "text-align-justify-tabs-001.html": [ "6905b4b601b719bf8b14bb8033fa81fbef644d21", [ - "css/css-text/text-align/text-align-justify-tabs-001.html", + null, [ [ "/css/css-text/text-align/reference/text-align-justify-tabs-001-ref.html", @@ -249760,7 +248743,7 @@ "text-align-justify-tabs-002.html": [ "473a960bdaa6aca9c8e9b18014a4783d71dde21e", [ - "css/css-text/text-align/text-align-justify-tabs-002.html", + null, [ [ "/css/css-text/text-align/reference/text-align-justify-tabs-002-ref.html", @@ -249773,7 +248756,7 @@ "text-align-justify-tabs-003.html": [ "f3fb0cf93b3fee03e4b78514e1411964640b6d88", [ - "css/css-text/text-align/text-align-justify-tabs-003.html", + null, [ [ "/css/css-text/text-align/reference/text-align-justify-tabs-002-ref.html", @@ -249786,7 +248769,7 @@ "text-align-justify-tabs-004.html": [ "689f6f6a698712b66bfa2fbb9ecc1d901062fe03", [ - "css/css-text/text-align/text-align-justify-tabs-004.html", + null, [ [ "/css/css-text/text-align/reference/text-align-justify-tabs-002-ref.html", @@ -249903,7 +248886,7 @@ "text-align-last-015.html": [ "a0d8fa4df92c4b5a1cb1e37cfb1177bcaa71e3f7", [ - "css/css-text/text-align/text-align-last-015.html", + null, [ [ "/css/css-text/text-align/text-align-last-015-ref.html", @@ -249939,6 +248922,19 @@ {} ] ], + "text-align-last-justify-br.html": [ + "5685da088b830b11e80e5f011f79d2c72fee6681", + [ + null, + [ + [ + "/css/css-text/text-align/text-align-last-justify-br-ref.html", + "==" + ] + ], + {} + ] + ], "text-align-last-justify-rtl.html": [ "835e4cdd5ca39939bec14ee3fc636d6efe4d9831", [ @@ -250405,7 +249401,7 @@ "text-autospace-break-001.html": [ "5af0e1f65afed7d878bb82ac9dfe3695a273cc97", [ - "css/css-text/text-autospace/text-autospace-break-001.html", + null, [ [ "/css/css-text/text-autospace/text-autospace-break-001-ref.html", @@ -250418,7 +249414,7 @@ "text-autospace-dynamic-001.html": [ "db718eca8da2ea4ae5135da1e76dca672213734d", [ - "css/css-text/text-autospace/text-autospace-dynamic-001.html", + null, [ [ "/css/css-text/text-autospace/text-autospace-no-001-ref.html", @@ -250435,7 +249431,7 @@ "text-autospace-no-001.html": [ "6b5fd6132d8240ddb7991f461944a55055a09444", [ - "css/css-text/text-autospace/text-autospace-no-001.html", + null, [ [ "/css/css-text/text-autospace/text-autospace-no-001-ref.html", @@ -250452,7 +249448,7 @@ "text-autospace-vertical-combine-001.html": [ "bed306e159774446ac23ae5238fa654511a27067", [ - "css/css-text/text-autospace/text-autospace-vertical-combine-001.html", + null, [ [ "/css/css-text/text-autospace/text-autospace-vertical-combine-001-ref.html", @@ -250465,7 +249461,7 @@ "text-autospace-vertical-upright-001.html": [ "21d454e7133c1d979e7a666249533629562d9662", [ - "css/css-text/text-autospace/text-autospace-vertical-upright-001.html", + null, [ [ "/css/css-text/text-autospace/text-autospace-vertical-upright-001-ref.html", @@ -250731,7 +249727,7 @@ "anonymous-flex-item-001.html": [ "0b305fc307be36e5a5d61c4ae686c40b76b8f359", [ - "css/css-text/text-indent/anonymous-flex-item-001.html", + null, [ [ "/css/css-text/text-indent/reference/anonymous-flex-grid-item-001-ref.html", @@ -250744,7 +249740,7 @@ "anonymous-grid-item-001.html": [ "268365807200a5d7533bdf4b9d0157c4ac793c60", [ - "css/css-text/text-indent/anonymous-grid-item-001.html", + null, [ [ "/css/css-text/text-indent/reference/anonymous-flex-grid-item-001-ref.html", @@ -250770,7 +249766,7 @@ "text-indent-length-001.html": [ "49fe68733a01543a82299ca407d21d70aec4f80d", [ - "css/css-text/text-indent/text-indent-length-001.html", + null, [ [ "/css/css-text/text-indent/reference/text-indent-length-001-ref.html", @@ -250783,7 +249779,7 @@ "text-indent-length-002.html": [ "efb9d7e3d4db1e945c5a78f0bf8718b75a914f40", [ - "css/css-text/text-indent/text-indent-length-002.html", + null, [ [ "/css/css-text/text-indent/reference/text-indent-length-002-ref.html", @@ -250796,7 +249792,7 @@ "text-indent-min-max-content-001.html": [ "93ddac50d6b6c8a7f272f208fdec6057d52a383b", [ - "css/css-text/text-indent/text-indent-min-max-content-001.html", + null, [ [ "/css/css-text/text-indent/reference/text-indent-min-max-content-001-ref.html", @@ -250809,7 +249805,7 @@ "text-indent-overflow.html": [ "faefbf628f85118cc116cc50a7a98a91918c4dff", [ - "css/css-text/text-indent/text-indent-overflow.html", + null, [ [ "/css/css-text/text-indent/reference/text-indent-overflow-ref.html", @@ -250887,7 +249883,7 @@ "text-indent-text-align-end.html": [ "6afda2b5ab4d12e208d79aa719f8de6a3c819e52", [ - "css/css-text/text-indent/text-indent-text-align-end.html", + null, [ [ "/css/css-text/text-indent/reference/text-indent-text-align-end-ref.html", @@ -251095,7 +250091,7 @@ "text-justify-word-separators.html": [ "028b69e40e0c6761187bbb1435873fb5955ff67e", [ - "css/css-text/text-justify/text-justify-word-separators.html", + null, [ [ "/css/css-text/text-justify/text-justify-word-separators-ref.html", @@ -251259,6 +250255,49 @@ {} ] ], + "text-spacing-trim-end-001.html": [ + "c5293f099810c41c2da9911b7a3a87b8990693f5", + [ + "css/css-text/text-spacing-trim/text-spacing-trim-end-001.html?class=chws,htb", + [ + [ + "/css/css-text/text-spacing-trim/text-spacing-trim-end-001-ref.html?class=chws,htb", + "==" + ] + ], + {} + ], + [ + "css/css-text/text-spacing-trim/text-spacing-trim-end-001.html?class=chws,vrl", + [ + [ + "/css/css-text/text-spacing-trim/text-spacing-trim-end-001-ref.html?class=chws,vrl", + "==" + ] + ], + {} + ], + [ + "css/css-text/text-spacing-trim/text-spacing-trim-end-001.html?class=halt,htb", + [ + [ + "/css/css-text/text-spacing-trim/text-spacing-trim-end-001-ref.html?class=halt,htb", + "==" + ] + ], + {} + ], + [ + "css/css-text/text-spacing-trim/text-spacing-trim-end-001.html?class=halt,vrl", + [ + [ + "/css/css-text/text-spacing-trim/text-spacing-trim-end-001-ref.html?class=halt,vrl", + "==" + ] + ], + {} + ] + ], "text-spacing-trim-feature-001.html": [ "25ddad34aee7d99ae1b17949773087f2ff558ac3", [ @@ -251491,215 +250530,325 @@ {} ] ], - "text-spacing-trim-space-first-wrap-001.html": [ - "ebbea0e52b09c21be870ffd2dea48d2b70d4cb88", + "text-spacing-trim-span-001.html": [ + "623abbf7c7f9c78188e89990ff7fc878ea9bf15f", [ - "css/css-text/text-spacing-trim/text-spacing-trim-space-first-wrap-001.html?class=chws,htb", + "css/css-text/text-spacing-trim/text-spacing-trim-span-001.html?class=chws,htb", [ [ - "/css/css-text/text-spacing-trim/text-spacing-trim-space-first-wrap-001-ref.html?class=chws,htb", + "/css/css-text/text-spacing-trim/text-spacing-trim-span-001-ref.html?class=chws,htb", "==" ] ], {} ], [ - "css/css-text/text-spacing-trim/text-spacing-trim-space-first-wrap-001.html?class=chws,vrl", + "css/css-text/text-spacing-trim/text-spacing-trim-span-001.html?class=chws,vrl", [ [ - "/css/css-text/text-spacing-trim/text-spacing-trim-space-first-wrap-001-ref.html?class=chws,vrl", + "/css/css-text/text-spacing-trim/text-spacing-trim-span-001-ref.html?class=chws,vrl", "==" ] ], {} ], [ - "css/css-text/text-spacing-trim/text-spacing-trim-space-first-wrap-001.html?class=halt,htb", + "css/css-text/text-spacing-trim/text-spacing-trim-span-001.html?class=halt,htb", [ [ - "/css/css-text/text-spacing-trim/text-spacing-trim-space-first-wrap-001-ref.html?class=halt,htb", + "/css/css-text/text-spacing-trim/text-spacing-trim-span-001-ref.html?class=halt,htb", "==" ] ], {} ], [ - "css/css-text/text-spacing-trim/text-spacing-trim-space-first-wrap-001.html?class=halt,vrl", + "css/css-text/text-spacing-trim/text-spacing-trim-span-001.html?class=halt,vrl", [ [ - "/css/css-text/text-spacing-trim/text-spacing-trim-space-first-wrap-001-ref.html?class=halt,vrl", + "/css/css-text/text-spacing-trim/text-spacing-trim-span-001-ref.html?class=halt,vrl", "==" ] ], {} - ] - ], - "text-spacing-trim-space-first-wrap-br-001.html": [ - "acbfaa3ddcba0a1029676eb39dc9e8d45e2ad495", + ], [ - "css/css-text/text-spacing-trim/text-spacing-trim-space-first-wrap-br-001.html?class=chws,htb", + "css/css-text/text-spacing-trim/text-spacing-trim-span-001.html?class=space-first,chws,htb", [ [ - "/css/css-text/text-spacing-trim/text-spacing-trim-wrap-001-ref.html?class=chws,htb", + "/css/css-text/text-spacing-trim/text-spacing-trim-span-001-ref.html?class=space-first,chws,htb", "==" ] ], {} ], [ - "css/css-text/text-spacing-trim/text-spacing-trim-space-first-wrap-br-001.html?class=chws,vrl", + "css/css-text/text-spacing-trim/text-spacing-trim-span-001.html?class=space-first,chws,vrl", [ [ - "/css/css-text/text-spacing-trim/text-spacing-trim-wrap-001-ref.html?class=chws,vrl", + "/css/css-text/text-spacing-trim/text-spacing-trim-span-001-ref.html?class=space-first,chws,vrl", "==" ] ], {} ], [ - "css/css-text/text-spacing-trim/text-spacing-trim-space-first-wrap-br-001.html?class=halt,htb", + "css/css-text/text-spacing-trim/text-spacing-trim-span-001.html?class=space-first,halt,htb", [ [ - "/css/css-text/text-spacing-trim/text-spacing-trim-wrap-001-ref.html?class=halt,htb", + "/css/css-text/text-spacing-trim/text-spacing-trim-span-001-ref.html?class=space-first,halt,htb", "==" ] ], {} ], [ - "css/css-text/text-spacing-trim/text-spacing-trim-space-first-wrap-br-001.html?class=halt,vrl", + "css/css-text/text-spacing-trim/text-spacing-trim-span-001.html?class=space-first,halt,vrl", [ [ - "/css/css-text/text-spacing-trim/text-spacing-trim-wrap-001-ref.html?class=halt,vrl", + "/css/css-text/text-spacing-trim/text-spacing-trim-span-001-ref.html?class=space-first,halt,vrl", "==" ] ], {} - ] - ], - "text-spacing-trim-trim-all-001.html": [ - "ca2b1ccd038c847c6a7a13a5b0d8bf7f2cb7edcc", + ], [ - "css/css-text/text-spacing-trim/text-spacing-trim-trim-all-001.html?class=chws,htb", + "css/css-text/text-spacing-trim/text-spacing-trim-span-001.html?class=trim-start,chws,htb", [ [ - "/css/css-text/text-spacing-trim/text-spacing-trim-trim-all-001-ref.html?class=chws,htb", + "/css/css-text/text-spacing-trim/text-spacing-trim-span-001-ref.html?class=trim-start,chws,htb", "==" ] ], {} ], [ - "css/css-text/text-spacing-trim/text-spacing-trim-trim-all-001.html?class=chws,vrl", + "css/css-text/text-spacing-trim/text-spacing-trim-span-001.html?class=trim-start,chws,vrl", [ [ - "/css/css-text/text-spacing-trim/text-spacing-trim-trim-all-001-ref.html?class=chws,vrl", + "/css/css-text/text-spacing-trim/text-spacing-trim-span-001-ref.html?class=trim-start,chws,vrl", "==" ] ], {} ], [ - "css/css-text/text-spacing-trim/text-spacing-trim-trim-all-001.html?class=halt,htb", + "css/css-text/text-spacing-trim/text-spacing-trim-span-001.html?class=trim-start,halt,htb", [ [ - "/css/css-text/text-spacing-trim/text-spacing-trim-trim-all-001-ref.html?class=halt,htb", + "/css/css-text/text-spacing-trim/text-spacing-trim-span-001-ref.html?class=trim-start,halt,htb", "==" ] ], {} ], [ - "css/css-text/text-spacing-trim/text-spacing-trim-trim-all-001.html?class=halt,vrl", + "css/css-text/text-spacing-trim/text-spacing-trim-span-001.html?class=trim-start,halt,vrl", [ [ - "/css/css-text/text-spacing-trim/text-spacing-trim-trim-all-001-ref.html?class=halt,vrl", + "/css/css-text/text-spacing-trim/text-spacing-trim-span-001-ref.html?class=trim-start,halt,vrl", "==" ] ], {} ] ], - "text-spacing-trim-wrap-001.html": [ - "76af819d79cd53831be4670b401d16158ff6efb5", + "text-spacing-trim-start-001.html": [ + "f007245277b7c26bcc92ac5a70664b42b914a5fc", [ - "css/css-text/text-spacing-trim/text-spacing-trim-wrap-001.html?class=chws,htb", + "css/css-text/text-spacing-trim/text-spacing-trim-start-001.html?class=chws,htb", [ [ - "/css/css-text/text-spacing-trim/text-spacing-trim-wrap-001-ref.html?class=chws,htb", + "/css/css-text/text-spacing-trim/text-spacing-trim-start-001-ref.html?class=chws,htb", "==" ] ], {} ], [ - "css/css-text/text-spacing-trim/text-spacing-trim-wrap-001.html?class=chws,vrl", + "css/css-text/text-spacing-trim/text-spacing-trim-start-001.html?class=chws,vrl", [ [ - "/css/css-text/text-spacing-trim/text-spacing-trim-wrap-001-ref.html?class=chws,vrl", + "/css/css-text/text-spacing-trim/text-spacing-trim-start-001-ref.html?class=chws,vrl", "==" ] ], {} ], [ - "css/css-text/text-spacing-trim/text-spacing-trim-wrap-001.html?class=halt,htb", + "css/css-text/text-spacing-trim/text-spacing-trim-start-001.html?class=halt,htb", [ [ - "/css/css-text/text-spacing-trim/text-spacing-trim-wrap-001-ref.html?class=halt,htb", + "/css/css-text/text-spacing-trim/text-spacing-trim-start-001-ref.html?class=halt,htb", "==" ] ], {} ], [ - "css/css-text/text-spacing-trim/text-spacing-trim-wrap-001.html?class=halt,vrl", - [ - [ - "/css/css-text/text-spacing-trim/text-spacing-trim-wrap-001-ref.html?class=halt,vrl", - "==" - ] - ], - {} - ] - ], - "text-spacing-trim-wrap-br-001.html": [ - "017443976f876546bd58d9c98c039bb3f6168874", - [ - "css/css-text/text-spacing-trim/text-spacing-trim-wrap-br-001.html?class=chws,htb", + "css/css-text/text-spacing-trim/text-spacing-trim-start-001.html?class=halt,vrl", [ [ - "/css/css-text/text-spacing-trim/text-spacing-trim-wrap-001-ref.html?class=chws,htb", + "/css/css-text/text-spacing-trim/text-spacing-trim-start-001-ref.html?class=halt,vrl", "==" ] ], {} ], [ - "css/css-text/text-spacing-trim/text-spacing-trim-wrap-br-001.html?class=chws,vrl", + "css/css-text/text-spacing-trim/text-spacing-trim-start-001.html?class=space-first,chws,htb", [ [ - "/css/css-text/text-spacing-trim/text-spacing-trim-wrap-001-ref.html?class=chws,vrl", + "/css/css-text/text-spacing-trim/text-spacing-trim-start-001-ref.html?class=space-first,chws,htb", "==" ] ], {} ], [ - "css/css-text/text-spacing-trim/text-spacing-trim-wrap-br-001.html?class=halt,htb", + "css/css-text/text-spacing-trim/text-spacing-trim-start-001.html?class=space-first,chws,vrl", [ [ - "/css/css-text/text-spacing-trim/text-spacing-trim-wrap-001-ref.html?class=halt,htb", + "/css/css-text/text-spacing-trim/text-spacing-trim-start-001-ref.html?class=space-first,chws,vrl", "==" ] ], {} ], [ - "css/css-text/text-spacing-trim/text-spacing-trim-wrap-br-001.html?class=halt,vrl", + "css/css-text/text-spacing-trim/text-spacing-trim-start-001.html?class=space-first,halt,htb", [ [ - "/css/css-text/text-spacing-trim/text-spacing-trim-wrap-001-ref.html?class=halt,vrl", + "/css/css-text/text-spacing-trim/text-spacing-trim-start-001-ref.html?class=space-first,halt,htb", + "==" + ] + ], + {} + ], + [ + "css/css-text/text-spacing-trim/text-spacing-trim-start-001.html?class=space-first,halt,vrl", + [ + [ + "/css/css-text/text-spacing-trim/text-spacing-trim-start-001-ref.html?class=space-first,halt,vrl", + "==" + ] + ], + {} + ], + [ + "css/css-text/text-spacing-trim/text-spacing-trim-start-001.html?class=trim-start,chws,htb", + [ + [ + "/css/css-text/text-spacing-trim/text-spacing-trim-start-001-ref.html?class=trim-start,chws,htb", + "==" + ] + ], + {} + ], + [ + "css/css-text/text-spacing-trim/text-spacing-trim-start-001.html?class=trim-start,chws,vrl", + [ + [ + "/css/css-text/text-spacing-trim/text-spacing-trim-start-001-ref.html?class=trim-start,chws,vrl", + "==" + ] + ], + {} + ], + [ + "css/css-text/text-spacing-trim/text-spacing-trim-start-001.html?class=trim-start,halt,htb", + [ + [ + "/css/css-text/text-spacing-trim/text-spacing-trim-start-001-ref.html?class=trim-start,halt,htb", + "==" + ] + ], + {} + ], + [ + "css/css-text/text-spacing-trim/text-spacing-trim-start-001.html?class=trim-start,halt,vrl", + [ + [ + "/css/css-text/text-spacing-trim/text-spacing-trim-start-001-ref.html?class=trim-start,halt,vrl", + "==" + ] + ], + {} + ] + ], + "text-spacing-trim-start-002.html": [ + "0d8b19272660b9973fa7ed1bf903f657ab342ba5", + [ + null, + [ + [ + "/css/css-text/text-spacing-trim/text-spacing-trim-start-002-ref.html", + "==" + ] + ], + {} + ] + ], + "text-spacing-trim-subset-001.html": [ + "caef2b18e4bb7612b4373c462c456a13e6096780", + [ + "css/css-text/text-spacing-trim/text-spacing-trim-subset-001.html?class=halt,htb", + [ + [ + "/css/css-text/text-spacing-trim/text-spacing-trim-subset-001-ref.html?class=halt,htb", + "==" + ] + ], + {} + ], + [ + "css/css-text/text-spacing-trim/text-spacing-trim-subset-001.html?class=halt,vrl", + [ + [ + "/css/css-text/text-spacing-trim/text-spacing-trim-subset-001-ref.html?class=halt,vrl", + "==" + ] + ], + {} + ] + ], + "text-spacing-trim-trim-all-001.html": [ + "ca2b1ccd038c847c6a7a13a5b0d8bf7f2cb7edcc", + [ + "css/css-text/text-spacing-trim/text-spacing-trim-trim-all-001.html?class=chws,htb", + [ + [ + "/css/css-text/text-spacing-trim/text-spacing-trim-trim-all-001-ref.html?class=chws,htb", + "==" + ] + ], + {} + ], + [ + "css/css-text/text-spacing-trim/text-spacing-trim-trim-all-001.html?class=chws,vrl", + [ + [ + "/css/css-text/text-spacing-trim/text-spacing-trim-trim-all-001-ref.html?class=chws,vrl", + "==" + ] + ], + {} + ], + [ + "css/css-text/text-spacing-trim/text-spacing-trim-trim-all-001.html?class=halt,htb", + [ + [ + "/css/css-text/text-spacing-trim/text-spacing-trim-trim-all-001-ref.html?class=halt,htb", + "==" + ] + ], + {} + ], + [ + "css/css-text/text-spacing-trim/text-spacing-trim-trim-all-001.html?class=halt,vrl", + [ + [ + "/css/css-text/text-spacing-trim/text-spacing-trim-trim-all-001-ref.html?class=halt,vrl", "==" ] ], @@ -251710,7 +250859,7 @@ "text-stroke-width-subpixel.html": [ "97cbc3f44de91ceb094283de84f7fb9a9e018d36", [ - "css/css-text/text-stroke-width-subpixel.html", + null, [ [ "/css/css-text/text-stroke-width-subpixel-notref.html", @@ -251725,7 +250874,7 @@ "text-transform-math-auto-001.html": [ "db5e5b86f49bd7732a1e32d5fbe7e6937321c487", [ - "css/css-text/text-transform/math/text-transform-math-auto-001.html", + null, [ [ "/css/css-text/text-transform/math/text-transform-math-auto-001-ref.html", @@ -251738,7 +250887,7 @@ "text-transform-math-auto-002.html": [ "34e43e718e0baa3377417d82fd15bc01dc6d9134", [ - "css/css-text/text-transform/math/text-transform-math-auto-002.html", + null, [ [ "/css/css-text/text-transform/math/text-transform-math-auto-002-ref.html", @@ -251999,7 +251148,7 @@ "text-transform-capitalize-034.html": [ "4fa0bf8a25722a8cf627859ba85d5865fb73171c", [ - "css/css-text/text-transform/text-transform-capitalize-034.html", + null, [ [ "/css/css-text/text-transform/text-transform-capitalize-034-ref.html", @@ -252012,7 +251161,7 @@ "text-transform-capitalize-035.html": [ "8b979ab2d80054716b19d73aeb05ef1f6f9735fa", [ - "css/css-text/text-transform/text-transform-capitalize-035.html", + null, [ [ "/css/css-text/text-transform/text-transform-capitalize-035-ref.html", @@ -252116,7 +251265,7 @@ "text-transform-full-size-kana-008.html": [ "5b1cdde7b39a393b0dc8778c4ba7eed94a673b88", [ - "css/css-text/text-transform/text-transform-full-size-kana-008.html", + null, [ [ "/css/css-text/text-transform/reference/text-transform-full-size-kana-008-ref.html", @@ -252412,6 +251561,19 @@ {} ] ], + "text-transform-uppercase-dynamic.html": [ + "b8683ad512504efe0ab2f4526f17feed8b88950a", + [ + null, + [ + [ + "/css/css-text/text-transform/reference/text-transform-uppercase-dynamic-ref.html", + "==" + ] + ], + {} + ] + ], "text-transform-upperlower-001.html": [ "0174f0c8113ec2815294fd736b9f668930f1e5bd", [ @@ -253000,7 +252162,7 @@ "text-transform-upperlower-105.html": [ "8b41ae4e33800d25b53c93be4dbf3de9e81dd5d4", [ - "css/css-text/text-transform/text-transform-upperlower-105.html", + null, [ [ "/css/css-text/text-transform/reference/text-transform-upperlower-105-ref.html", @@ -253013,7 +252175,7 @@ "text-transform-upperlower-106.html": [ "e4dc180fcf834ec049ef303d6ec4fca963fb15a6", [ - "css/css-text/text-transform/text-transform-upperlower-106.html", + null, [ [ "/css/css-text/text-transform/reference/text-transform-upperlower-106-ref.html", @@ -253093,7 +252255,7 @@ "break-spaces-006.html": [ "056aa8a21bcda057df1aef26836c7705c715874f", [ - "css/css-text/white-space/break-spaces-006.html", + null, [ [ "/css/css-text/white-space/reference/white-space-break-spaces-005-ref.html", @@ -253117,7 +252279,7 @@ ] ], "break-spaces-008.html": [ - "4612996c52cb6039fb74991ae53539b991ca22cb", + "dc9f5934f413df2406995cd7107a55c03873bb52", [ null, [ @@ -253158,7 +252320,7 @@ "break-spaces-011.html": [ "0355d6d6b519bca0e210c0a1151f4deccd1666d7", [ - "css/css-text/white-space/break-spaces-011.html", + null, [ [ "/css/css-text/white-space/reference/white-space-break-spaces-005-ref.html", @@ -253910,7 +253072,7 @@ ] ], "break-spaces-with-ideographic-space-008.html": [ - "7102439d4697e9d49e29afbc52ab9d2040c95af8", + "d222e1b75350b19ff40f0ab65dc5ecb4ea9b0510", [ null, [ @@ -254900,7 +254062,7 @@ "display-contents-remove-whitespace-change.html": [ "baf42aa3a8a6f6b2af963b38b2441f7f9e12a3e7", [ - "css/css-text/white-space/display-contents-remove-whitespace-change.html", + null, [ [ "/css/reference/pass_if_two_words.html", @@ -254911,7 +254073,7 @@ ] ], "eol-spaces-bidi-001.html": [ - "b8bcbe17b738d40e4facffc0285282fe20002d30", + "570f22de7be9f160a40a8984beb2dfe2af3c09b0", [ null, [ @@ -254924,7 +254086,7 @@ ] ], "eol-spaces-bidi-002.html": [ - "0efba0a363fc8353775263928223773a9d10e3b4", + "47a1952832f4c8fdecf1ff21acef8c381503ab3e", [ null, [ @@ -254953,6 +254115,23 @@ {} ] ], + "eol-spaces-bidi-004.html": [ + "6d3ef998870d660a9c6a3d9a7245738c2812fad4", + [ + null, + [ + [ + "/css/css-text/white-space/reference/eol-spaces-bidi-004-ref.html", + "==" + ], + [ + "/css/css-text/white-space/reference/eol-spaces-bidi-alt-004-ref.html", + "==" + ] + ], + {} + ] + ], "full-width-leading-spaces-001.html": [ "c23e4fdbc76e6f4c70cf936aaba2e7f5f51b734e", [ @@ -255018,6 +254197,45 @@ {} ] ], + "hanging-whitespace-001.tentative.html": [ + "17e778165d5d18ba96ee9db161b9431c8d874caf", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "hanging-whitespace-002.tentative.html": [ + "6c486ac69c6a5f532ffee06ecadb5c39fb85cb0f", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "hanging-whitespace-003.tentative.html": [ + "b8f4df5967b81d9f7b8fb624b734a7eda1db591f", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], "line-edge-white-space-collapse-001.html": [ "3c5e7052a26647ea2f96a3539e3884cc4189d444", [ @@ -255060,7 +254278,7 @@ "object-replacement-1.html": [ "0192dfef6928b5316d39d65841d0432b01636684", [ - "css/css-text/white-space/object-replacement-1.html", + null, [ [ "/css/css-text/white-space/reference/object-replacement-1-notref.html", @@ -255073,7 +254291,7 @@ "object-replacement-2.html": [ "14c5e3ba3560d5b5867b01c6c423d7e954ba3f70", [ - "css/css-text/white-space/object-replacement-2.html", + null, [ [ "/css/css-text/white-space/reference/object-replacement-2-notref.html", @@ -255424,7 +254642,7 @@ "pre-wrap-align-center-001.html": [ "0d923665b2442a05c1db838af822605a17f97ea3", [ - "css/css-text/white-space/pre-wrap-align-center-001.html", + null, [ [ "/css/css-text/white-space/reference/pre-wrap-align-center-001-ref.html", @@ -255437,7 +254655,7 @@ "pre-wrap-align-center-002.html": [ "9e28158fdc7a9295af7d40a368c391798831cefd", [ - "css/css-text/white-space/pre-wrap-align-center-002.html", + null, [ [ "/css/css-text/white-space/reference/pre-wrap-align-center-002-ref.html", @@ -255450,7 +254668,7 @@ "pre-wrap-align-center-003.html": [ "8225e80fe0144728f07ab373e951a98217263f6c", [ - "css/css-text/white-space/pre-wrap-align-center-003.html", + null, [ [ "/css/css-text/white-space/reference/pre-wrap-align-center-003-ref.html", @@ -255463,7 +254681,7 @@ "pre-wrap-align-end-001.html": [ "3d002c20df6a326c9ccaeb5471c81631f53ac1a3", [ - "css/css-text/white-space/pre-wrap-align-end-001.html", + null, [ [ "/css/css-text/white-space/reference/pre-wrap-align-right-001-ref.html", @@ -255476,7 +254694,7 @@ "pre-wrap-align-end-002.html": [ "c1bd5902d7e9be297d6ae0a676c6e965c3fc01c6", [ - "css/css-text/white-space/pre-wrap-align-end-002.html", + null, [ [ "/css/css-text/white-space/reference/pre-wrap-align-left-002-ref.html", @@ -255489,7 +254707,7 @@ "pre-wrap-align-end-003.html": [ "72530985f3a08b2255e99606c00e095482f4d4b5", [ - "css/css-text/white-space/pre-wrap-align-end-003.html", + null, [ [ "/css/css-text/white-space/reference/pre-wrap-align-left-003-ref.html", @@ -255502,7 +254720,7 @@ "pre-wrap-align-left-001.html": [ "a6a286b9c4f0215ab6243f0811ddb394ddd95550", [ - "css/css-text/white-space/pre-wrap-align-left-001.html", + null, [ [ "/css/css-text/white-space/reference/pre-wrap-align-left-001-ref.html", @@ -255515,7 +254733,7 @@ "pre-wrap-align-left-002.html": [ "0671b0e7eb109e54bff3f54ea32afcacd0b3b3cd", [ - "css/css-text/white-space/pre-wrap-align-left-002.html", + null, [ [ "/css/css-text/white-space/reference/pre-wrap-align-left-002-ref.html", @@ -255528,7 +254746,7 @@ "pre-wrap-align-left-003.html": [ "bdef8ada0bfcd8490cf72723ec2ff008b7a01e90", [ - "css/css-text/white-space/pre-wrap-align-left-003.html", + null, [ [ "/css/css-text/white-space/reference/pre-wrap-align-left-003-ref.html", @@ -255541,7 +254759,7 @@ "pre-wrap-align-right-001.html": [ "878b297df44618e54ffb8e8ce7ac65016196d6d3", [ - "css/css-text/white-space/pre-wrap-align-right-001.html", + null, [ [ "/css/css-text/white-space/reference/pre-wrap-align-right-001-ref.html", @@ -255554,7 +254772,7 @@ "pre-wrap-align-right-002.html": [ "0c13f9ca182c9d94132a6c56f0f3d10c5c08a770", [ - "css/css-text/white-space/pre-wrap-align-right-002.html", + null, [ [ "/css/css-text/white-space/reference/pre-wrap-align-right-002-ref.html", @@ -255567,7 +254785,7 @@ "pre-wrap-align-right-003.html": [ "e3cae1672044a061d9fa2315c59223c5f63a4241", [ - "css/css-text/white-space/pre-wrap-align-right-003.html", + null, [ [ "/css/css-text/white-space/reference/pre-wrap-align-right-003-ref.html", @@ -255580,7 +254798,7 @@ "pre-wrap-align-start-001.html": [ "c9b884e892dfd2cd2160e09cae7efa551aa0d0d8", [ - "css/css-text/white-space/pre-wrap-align-start-001.html", + null, [ [ "/css/css-text/white-space/reference/pre-wrap-align-left-001-ref.html", @@ -255593,7 +254811,7 @@ "pre-wrap-align-start-002.html": [ "e226a19c94042acd628a00da4ced385020594947", [ - "css/css-text/white-space/pre-wrap-align-start-002.html", + null, [ [ "/css/css-text/white-space/reference/pre-wrap-align-right-002-ref.html", @@ -255606,7 +254824,7 @@ "pre-wrap-align-start-003.html": [ "f91b38c6ac1d3a1429551a15fc113c9745afdebf", [ - "css/css-text/white-space/pre-wrap-align-start-003.html", + null, [ [ "/css/css-text/white-space/reference/pre-wrap-align-right-003-ref.html", @@ -255931,7 +255149,7 @@ "remove-slotted-with-whitespace-sibling.html": [ "806bf05eac1800478c1fdc6ac14b556c87e55267", [ - "css/css-text/white-space/remove-slotted-with-whitespace-sibling.html", + null, [ [ "/css/reference/pass_if_two_words.html", @@ -256061,7 +255279,7 @@ "text-wrap-balance-002.html": [ "cae9d54de0e60c42047f7bffafe729f8aae2b740", [ - "css/css-text/white-space/text-wrap-balance-002.html", + null, [ [ "/css/css-text/white-space/reference/text-wrap-balance-002-ref.html", @@ -256071,10 +255289,57 @@ {} ] ], + "text-wrap-balance-003.html": [ + "a2eb8bbff561acf3105103ee8189672c8c34d96e", + [ + null, + [ + [ + "/css/css-text/white-space/reference/text-wrap-balance-003-ref.html", + "==" + ] + ], + {} + ] + ], + "text-wrap-balance-004.html": [ + "f5494708eae3ee7261ee7a1f044a196febe6efd6", + [ + null, + [ + [ + "/css/css-text/white-space/reference/text-wrap-balance-004-ref.html", + "==" + ], + [ + "/css/css-text/white-space/reference/text-wrap-balance-004-misref.html", + "!=" + ] + ], + {} + ] + ], + "text-wrap-balance-005.html": [ + "cf5789cd5ba256b077dfed685638586d042c6249", + [ + null, + [ + [ + "/css/css-text/white-space/reference/text-wrap-balance-004-a-ref.html", + "==" + ], + [ + "/css/css-text/white-space/reference/text-wrap-balance-004-b-ref.html", + "==" + ] + ], + {} + ] + ], "text-wrap-balance-align-001.html": [ "b27823b72a4dfec983e0e0eae7a5436d9f958b74", [ - "css/css-text/white-space/text-wrap-balance-align-001.html", + null, [ [ "/css/css-text/white-space/reference/text-wrap-balance-align-001-ref.html", @@ -256087,7 +255352,7 @@ "text-wrap-balance-dynamic-001.html": [ "76b4cbbb433568b7cc25f7b1fb6e419b9a9570be", [ - "css/css-text/white-space/text-wrap-balance-dynamic-001.html", + null, [ [ "/css/css-text/white-space/reference/text-wrap-balance-dynamic-001-ref.html", @@ -256100,7 +255365,7 @@ "text-wrap-balance-float-001.html": [ "3f00fdfbf445844c2a9a0e4a3f76daa2dc125e4f", [ - "css/css-text/white-space/text-wrap-balance-float-001.html", + null, [ [ "/css/css-text/white-space/reference/text-wrap-balance-float-001-ref.html", @@ -256113,7 +255378,7 @@ "text-wrap-balance-float-002.html": [ "b611b8d7964c8ac4009cee89df40042330fa6ad1", [ - "css/css-text/white-space/text-wrap-balance-float-002.html", + null, [ [ "/css/css-text/white-space/reference/text-wrap-balance-float-002-ref.html", @@ -256126,7 +255391,7 @@ "text-wrap-balance-float-003.html": [ "b2a4c7a43b3cad110fc08ae3b081b133078e64bc", [ - "css/css-text/white-space/text-wrap-balance-float-003.html", + null, [ [ "/css/css-text/white-space/reference/text-wrap-balance-float-001-ref.html", @@ -256139,7 +255404,7 @@ "text-wrap-balance-float-004.html": [ "b39f329255c598aa562ae6951c2b75f250d4abea", [ - "css/css-text/white-space/text-wrap-balance-float-004.html", + null, [ [ "/css/css-text/white-space/reference/text-wrap-balance-float-002-ref.html", @@ -256152,7 +255417,7 @@ "text-wrap-balance-float-005.html": [ "177be0e10ac41b0896b5d1fb98cdecc9e102a55c", [ - "css/css-text/white-space/text-wrap-balance-float-005.html", + null, [ [ "/css/css-text/white-space/reference/text-wrap-balance-float-005-ref.html", @@ -256162,10 +255427,23 @@ {} ] ], + "text-wrap-balance-float-006.html": [ + "5343e845984eab06e8c52bf50346e0b4bcc5fec7", + [ + null, + [ + [ + "/css/css-text/white-space/reference/text-wrap-balance-float-006-ref.html", + "==" + ] + ], + {} + ] + ], "text-wrap-balance-line-clamp-001.html": [ "f104a5261bc9837ad0f9af675ba44de28421b824", [ - "css/css-text/white-space/text-wrap-balance-line-clamp-001.html", + null, [ [ "/css/css-text/white-space/reference/text-wrap-balance-line-clamp-001-ref.html", @@ -256178,7 +255456,7 @@ "text-wrap-balance-overflow-001.html": [ "5f79832549bd6cb3ecfae01e6cf1320af864218c", [ - "css/css-text/white-space/text-wrap-balance-overflow-001.html", + null, [ [ "/css/css-text/white-space/reference/text-wrap-balance-overflow-001-ref.html", @@ -256188,10 +255466,23 @@ {} ] ], + "text-wrap-balance-overflow-002.html": [ + "0eee3bdbc877e0727afda082a9e77e425309caa9", + [ + null, + [ + [ + "/css/css-text/white-space/reference/text-wrap-balance-overflow-002-ref.html", + "==" + ] + ], + {} + ] + ], "text-wrap-balance-text-indent-001.html": [ "0fe4447acfb0f3a9a0c445723c99071959ff6d6c", [ - "css/css-text/white-space/text-wrap-balance-text-indent-001.html", + null, [ [ "/css/css-text/white-space/reference/text-wrap-balance-text-indent-001-ref.html", @@ -256201,6 +255492,23 @@ {} ] ], + "text-wrap-nowrap-001.html": [ + "94437df6deeb3ddcf73d7732c046901cb4b3842d", + [ + null, + [ + [ + "/css/css-text/white-space/reference/text-wrap-nowrap-001-ref.html", + "==" + ], + [ + "/css/css-text/white-space/reference/text-wrap-nowrap-001-mis-ref.html", + "!=" + ] + ], + {} + ] + ], "textarea-break-spaces-001.html": [ "ad81e99768f9816c6e8a659c13aed81c4f22d940", [ @@ -256389,7 +255697,7 @@ "trailing-ideographic-space-001.html": [ "96fd312176a5a3424ae9b088b0211e1e75fa6613", [ - "css/css-text/white-space/trailing-ideographic-space-001.html", + null, [ [ "/css/css-text/white-space/reference/trailing-ideographic-space-001-ref.html", @@ -256402,7 +255710,7 @@ "trailing-ideographic-space-002.html": [ "864a8f87b564b9b605b704a1bd71c8e4ffdf1958", [ - "css/css-text/white-space/trailing-ideographic-space-002.html", + null, [ [ "/css/css-text/white-space/reference/trailing-ideographic-space-002-ref.html", @@ -257173,7 +256481,7 @@ "trailing-space-and-text-alignment-001.html": [ "2165e7fe4a84962e37353e4bd102051b1b12cb24", [ - "css/css-text/white-space/trailing-space-and-text-alignment-001.html", + null, [ [ "/css/css-text/white-space/reference/trailing-space-and-text-alignment-001-ref.html", @@ -257184,22 +256492,38 @@ ] ], "trailing-space-and-text-alignment-002.html": [ - "30e37908a22b669af58753fbacd3fcaaa2147803", + "27a0fd2b6315f39b87a3959f449597f7c1c54abc", [ - "css/css-text/white-space/trailing-space-and-text-alignment-002.html", + null, [ [ "/css/css-text/white-space/reference/trailing-space-and-text-alignment-002-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 1, + 1 + ], + [ + 0, + 100 + ] + ] + ] + ] + } ] ], "trailing-space-and-text-alignment-003.html": [ "9995e240580994dd836412b2734aba56718d574f", [ - "css/css-text/white-space/trailing-space-and-text-alignment-003.html", + null, [ [ "/css/css-text/white-space/reference/trailing-space-and-text-alignment-001-ref.html", @@ -257210,22 +256534,38 @@ ] ], "trailing-space-and-text-alignment-004.html": [ - "3d7aad05418bce1691ec766a598f6c1d51c00aed", + "756f07133a7be77f096ac091c8d5e431af88a7ca", [ - "css/css-text/white-space/trailing-space-and-text-alignment-004.html", + null, [ [ "/css/css-text/white-space/reference/trailing-space-and-text-alignment-002-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 1, + 1 + ], + [ + 0, + 100 + ] + ] + ] + ] + } ] ], "trailing-space-and-text-alignment-005.html": [ "76348aaf216a0497b565a9db44472cb9dadb7b3a", [ - "css/css-text/white-space/trailing-space-and-text-alignment-005.html", + null, [ [ "/css/css-text/white-space/reference/trailing-space-and-text-alignment-001-ref.html", @@ -257238,7 +256578,7 @@ "trailing-space-and-text-alignment-rtl-001.html": [ "6e70740cdde781c36874c58def741c56bfd39595", [ - "css/css-text/white-space/trailing-space-and-text-alignment-rtl-001.html", + null, [ [ "/css/css-text/white-space/reference/trailing-space-and-text-alignment-rtl-001-ref.html", @@ -257249,22 +256589,38 @@ ] ], "trailing-space-and-text-alignment-rtl-002.html": [ - "0422506b516abcff0d0bd3b3e422426c67fa1e43", + "bb3649f3f31837c5575a0a3d6ba731332cb3f578", [ - "css/css-text/white-space/trailing-space-and-text-alignment-rtl-002.html", + null, [ [ "/css/css-text/white-space/reference/trailing-space-and-text-alignment-rtl-002-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 1, + 1 + ], + [ + 0, + 100 + ] + ] + ] + ] + } ] ], "trailing-space-and-text-alignment-rtl-003.html": [ "70fc786924a5db12baf3bc47de67da3c0e9e54c9", [ - "css/css-text/white-space/trailing-space-and-text-alignment-rtl-003.html", + null, [ [ "/css/css-text/white-space/reference/trailing-space-and-text-alignment-rtl-001-ref.html", @@ -257275,22 +256631,38 @@ ] ], "trailing-space-and-text-alignment-rtl-004.html": [ - "7705d6dfb147925308590869b061f174503e34ad", + "0421942963d82232071ba5ed421e08ec86d8b6fc", [ - "css/css-text/white-space/trailing-space-and-text-alignment-rtl-004.html", + null, [ [ "/css/css-text/white-space/reference/trailing-space-and-text-alignment-rtl-005-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 1, + 1 + ], + [ + 0, + 100 + ] + ] + ] + ] + } ] ], "trailing-space-and-text-alignment-rtl-005.html": [ "31afbe4b3a8022872468310424c1c1efc2225843", [ - "css/css-text/white-space/trailing-space-and-text-alignment-rtl-005.html", + null, [ [ "/css/css-text/white-space/reference/trailing-space-and-text-alignment-rtl-001-ref.html", @@ -257301,7 +256673,7 @@ ] ], "trailing-space-rtl-001.html": [ - "8bc6cc75cbeaf8b6a091b2aadd5eead52d3b1bfd", + "0550f7279fcea337f7065f8f4bd52c67a5a96f5b", [ null, [ @@ -257329,7 +256701,7 @@ "white-space-collapse-discard-001.xht": [ "dc7e5e5708ab9f34780077952a308ed29db286d5", [ - "css/css-text/white-space/white-space-collapse-discard-001.xht", + null, [ [ "/css/css-text/white-space/reference/white-space-collapse-discard-001-ref.xht", @@ -257342,7 +256714,7 @@ "white-space-collapse-preserve-breaks-001.xht": [ "50113eade1fd6c0d53e18a8ef7052cbedd70faf5", [ - "css/css-text/white-space/white-space-collapse-preserve-breaks-001.xht", + null, [ [ "/css/css-text/white-space/reference/white-space-collapse-preserve-breaks-001-ref.xht", @@ -257502,7 +256874,7 @@ "white-space-intrinsic-size-017.html": [ "978dfb8ba4a3cf55d3da56fe669e267db28148d3", [ - "css/css-text/white-space/white-space-intrinsic-size-017.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -257531,7 +256903,7 @@ "white-space-intrinsic-size-018.html": [ "707e19adc0e8e857dbe175746aa047f29a0c6346", [ - "css/css-text/white-space/white-space-intrinsic-size-018.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -257716,7 +257088,7 @@ "white-space-pre-wrap-justify-001.html": [ "2ceb8d7293690086675e55741485df4e6c921e3e", [ - "css/css-text/white-space/white-space-pre-wrap-justify-001.html", + null, [ [ "/css/css-text/white-space/reference/white-space-pre-wrap-justify-001-ref.html", @@ -257729,7 +257101,7 @@ "white-space-pre-wrap-justify-002.html": [ "785ebef2272fcc7caa5ce612cedec6fe3469c59b", [ - "css/css-text/white-space/white-space-pre-wrap-justify-002.html", + null, [ [ "/css/css-text/white-space/reference/white-space-pre-wrap-justify-002-ref.html", @@ -257742,7 +257114,7 @@ "white-space-pre-wrap-justify-003.html": [ "a00f9c381860a09e4a1ebcac90e38b3340a03e03", [ - "css/css-text/white-space/white-space-pre-wrap-justify-003.html", + null, [ [ "/css/css-text/white-space/reference/white-space-pre-wrap-justify-003-ref.html", @@ -257755,7 +257127,7 @@ "white-space-pre-wrap-justify-004.html": [ "e1611a3143f3596c89776a61909e19aae6556c12", [ - "css/css-text/white-space/white-space-pre-wrap-justify-004.html", + null, [ [ "/css/css-text/white-space/reference/white-space-pre-wrap-justify-004-ref.html", @@ -257978,7 +257350,7 @@ "white-space-pre-wrap-trailing-spaces-021.html": [ "1a506540aceb2bf4f8f7f3d8c2e98440d23a2d36", [ - "css/css-text/white-space/white-space-pre-wrap-trailing-spaces-021.html", + null, [ [ "/css/css-text/white-space/reference/white-space-pre-wrap-trailing-spaces-021-ref.html", @@ -258017,7 +257389,7 @@ "white-space-trim-discard-inner-001.xht": [ "e8e53074a9858ca404580e6739687bff2f0c2f85", [ - "css/css-text/white-space/white-space-trim-discard-inner-001.xht", + null, [ [ "/css/css-text/white-space/reference/white-space-trim-discard-inner-001-ref.xht", @@ -258030,7 +257402,7 @@ "white-space-vs-joiners-001.html": [ "88c11f11549283082330e546c2cf5b6e006f2ace", [ - "css/css-text/white-space/white-space-vs-joiners-001.html", + null, [ [ "/css/css-text/white-space/reference/white-space-vs-joiners-001-ref.html", @@ -258043,7 +257415,7 @@ "white-space-vs-joiners-002.html": [ "25470f02f2dd27e8cba993feed8f9881e518e3a3", [ - "css/css-text/white-space/white-space-vs-joiners-002.html", + null, [ [ "/css/css-text/white-space/reference/white-space-vs-joiners-002-ref.html", @@ -258280,7 +257652,7 @@ "word-break-auto-phrase-001.html": [ "ce837a1d5d882e8b7d583875e4f02de185795709", [ - "css/css-text/word-break/auto-phrase/word-break-auto-phrase-001.html", + null, [ [ "/css/css-text/word-break/auto-phrase/reference/word-break-auto-phrase-001-ref.html", @@ -258293,7 +257665,7 @@ "word-break-auto-phrase-002.html": [ "c4f437e99d0d9e0eb0c61964e2120c36465681db", [ - "css/css-text/word-break/auto-phrase/word-break-auto-phrase-002.html", + null, [ [ "/css/css-text/word-break/auto-phrase/reference/word-break-auto-phrase-002-ref.html", @@ -258306,7 +257678,7 @@ "word-break-auto-phrase-003.html": [ "6ff8d959f8b27a311c507501714af452e92a4999", [ - "css/css-text/word-break/auto-phrase/word-break-auto-phrase-003.html", + null, [ [ "/css/css-text/word-break/auto-phrase/reference/word-break-auto-phrase-003-ref.html", @@ -258319,7 +257691,7 @@ "word-break-auto-phrase-004.html": [ "4e455091de4cf5b696c4f8b778f8679c1ca940ef", [ - "css/css-text/word-break/auto-phrase/word-break-auto-phrase-004.html", + null, [ [ "/css/css-text/word-break/auto-phrase/reference/word-break-auto-phrase-004-ref.html", @@ -258332,7 +257704,7 @@ "word-break-auto-phrase-005.html": [ "5183d3bc13d59c7fec0b327678844e32102a88c4", [ - "css/css-text/word-break/auto-phrase/word-break-auto-phrase-005.html", + null, [ [ "/css/css-text/word-break/auto-phrase/reference/word-break-auto-phrase-005-ref.html", @@ -258345,7 +257717,7 @@ "word-break-auto-phrase-006.html": [ "9fca535a7a1b17217f4d173bd07a5fbf89651a74", [ - "css/css-text/word-break/auto-phrase/word-break-auto-phrase-006.html", + null, [ [ "/css/css-text/word-break/auto-phrase/reference/word-break-auto-phrase-006-ref.html", @@ -258358,7 +257730,7 @@ "word-break-auto-phrase-007.html": [ "154fb8c447e4535cc1e87a5bb53071704c17acd5", [ - "css/css-text/word-break/auto-phrase/word-break-auto-phrase-007.html", + null, [ [ "/css/css-text/word-break/auto-phrase/reference/word-break-auto-phrase-007-ref.html", @@ -258371,7 +257743,7 @@ "word-break-auto-phrase-008.html": [ "68af0f5f190c04484d7f3ce0d0c8d00a4cd3b439", [ - "css/css-text/word-break/auto-phrase/word-break-auto-phrase-008.html", + null, [ [ "/css/css-text/word-break/auto-phrase/reference/word-break-auto-phrase-008-ref.html", @@ -258384,7 +257756,7 @@ "word-break-auto-phrase-009.html": [ "6f0c736183ed3998787829f325fc675dcf9a6b7f", [ - "css/css-text/word-break/auto-phrase/word-break-auto-phrase-009.html", + null, [ [ "/css/css-text/word-break/auto-phrase/reference/word-break-auto-phrase-009-ref.html", @@ -258397,7 +257769,7 @@ "word-break-auto-phrase-fallback-001.html": [ "02a33734e59bf5b98600cffd78e76ff372961890", [ - "css/css-text/word-break/auto-phrase/word-break-auto-phrase-fallback-001.html", + null, [ [ "/css/css-text/word-break/auto-phrase/reference/word-break-auto-phrase-fallback-001-ref.html", @@ -258410,7 +257782,7 @@ "word-break-auto-phrase-fallback-002.html": [ "e2905f1d5a72332f9439e15bf05a7755d4a8e7f2", [ - "css/css-text/word-break/auto-phrase/word-break-auto-phrase-fallback-002.html", + null, [ [ "/css/css-text/word-break/auto-phrase/reference/word-break-auto-phrase-fallback-002-ref.html", @@ -258423,7 +257795,7 @@ "word-break-auto-phrase-fallback-003.html": [ "cea15820bd1212312ea0adaba0aecaac81e3a011", [ - "css/css-text/word-break/auto-phrase/word-break-auto-phrase-fallback-003.html", + null, [ [ "/css/css-text/word-break/auto-phrase/reference/word-break-auto-phrase-fallback-003-ref.html", @@ -258436,7 +257808,7 @@ "word-break-auto-phrase-intrinsic-001.html": [ "ebb07cf3b533f3cc239087de05c7acd22b1e46b7", [ - "css/css-text/word-break/auto-phrase/word-break-auto-phrase-intrinsic-001.html", + null, [ [ "/css/css-text/word-break/auto-phrase/reference/word-break-auto-phrase-intrinsic-001-ref.html", @@ -258449,7 +257821,7 @@ "word-break-auto-phrase-overflow-001.html": [ "fcd17528ac0137cc2174f8de4c5e2bdf00b122da", [ - "css/css-text/word-break/auto-phrase/word-break-auto-phrase-overflow-001.html", + null, [ [ "/css/css-text/word-break/auto-phrase/reference/word-break-auto-phrase-overflow-001-ref.html", @@ -258462,7 +257834,7 @@ "word-break-auto-phrase-wbr-nobr-001.html": [ "b8e55200462699e3badd5cbb8f618e0edcae5f53", [ - "css/css-text/word-break/auto-phrase/word-break-auto-phrase-wbr-nobr-001.html", + null, [ [ "/css/css-text/word-break/auto-phrase/reference/word-break-auto-phrase-wbr-nobr-001-ref.html", @@ -258475,7 +257847,7 @@ "word-break-auto-phrase-wbr-nobr-002.html": [ "85061923cad197cfb347ed59c84c90c4d75ed409", [ - "css/css-text/word-break/auto-phrase/word-break-auto-phrase-wbr-nobr-002.html", + null, [ [ "/css/css-text/word-break/auto-phrase/reference/word-break-auto-phrase-wbr-nobr-002-ref.html", @@ -259247,7 +258619,7 @@ "word-break-manual-001.html": [ "09d803b0fc1f75f2f253687c5c9dc3305d77616f", [ - "css/css-text/word-break/word-break-manual-001.html", + null, [ [ "/css/css-text/word-break/reference/word-break-manual-001-ref.html", @@ -259364,7 +258736,7 @@ "word-break-normal-002.html": [ "c988928eb8f4a7081842c4468c74e2435e7df09c", [ - "css/css-text/word-break/word-break-normal-002.html", + null, [ [ "/css/css-text/word-break/reference/word-break-normal-002-ref.html", @@ -259377,7 +258749,7 @@ "word-break-normal-003.html": [ "bb6c2b477a16810f17e4096edf497a355c7f2815", [ - "css/css-text/word-break/word-break-normal-003.html", + null, [ [ "/css/css-text/word-break/reference/word-break-normal-003-ref.html", @@ -259585,7 +258957,7 @@ "word-break-normal-th-001.html": [ "919dcc22a31856257d830f478ed6b15ceb84b67d", [ - "css/css-text/word-break/word-break-normal-th-001.html", + null, [ [ "/css/css-text/word-break/reference/word-break-normal-th-001-ref.html", @@ -259613,7 +258985,7 @@ "word-space-transform-001.html": [ "5378808efe56b2953ec25788148f588623ea5179", [ - "css/css-text/word-space-transform/word-space-transform-001.html", + null, [ [ "/css/css-text/word-space-transform/reference/word-space-transform-001-ref.html", @@ -259626,7 +258998,7 @@ "word-space-transform-002.html": [ "5cad18ef476a60e424dda910632768df8dae82d9", [ - "css/css-text/word-space-transform/word-space-transform-002.html", + null, [ [ "/css/css-text/word-space-transform/reference/word-space-transform-002-ref.html", @@ -259639,7 +259011,7 @@ "word-space-transform-003.html": [ "f7e4f5c9e240d594fb7f479bba0bc433c50a6d2a", [ - "css/css-text/word-space-transform/word-space-transform-003.html", + null, [ [ "/css/css-text/word-space-transform/reference/word-space-transform-001-ref.html", @@ -259652,7 +259024,7 @@ "word-space-transform-004.html": [ "082824542f1dfc1bd82c9e2011dd727aeb485c82", [ - "css/css-text/word-space-transform/word-space-transform-004.html", + null, [ [ "/css/css-text/word-space-transform/reference/word-space-transform-004-ref.html", @@ -259665,7 +259037,7 @@ "word-space-transform-005.html": [ "fc994ebbe66a66d3654094cd900937fbfa14b649", [ - "css/css-text/word-space-transform/word-space-transform-005.html", + null, [ [ "/css/css-text/word-space-transform/reference/word-space-transform-004-ref.html", @@ -259678,7 +259050,7 @@ "word-space-transform-006.html": [ "6fdd0abbe9a135caeebf83ae9b33e98d56db38f5", [ - "css/css-text/word-space-transform/word-space-transform-006.html", + null, [ [ "/css/css-text/word-space-transform/reference/word-space-transform-002-ref.html", @@ -259691,7 +259063,7 @@ "word-space-transform-007.html": [ "5d021684de477711b2599b3d3d38fe47198e3aca", [ - "css/css-text/word-space-transform/word-space-transform-007.html", + null, [ [ "/css/css-text/word-space-transform/reference/word-space-transform-007-ref.html", @@ -259704,7 +259076,7 @@ "word-space-transform-008.html": [ "8808d936f005f04ee2137b1f81b5c5400c2d1e78", [ - "css/css-text/word-space-transform/word-space-transform-008.html", + null, [ [ "/css/css-text/word-space-transform/reference/word-space-transform-008-ref.html", @@ -259717,7 +259089,7 @@ "word-space-transform-009.html": [ "5c0df04d1dabed892d4815fad51f1a134ecce881", [ - "css/css-text/word-space-transform/word-space-transform-009.html", + null, [ [ "/css/css-text/word-space-transform/reference/word-space-transform-009-ref.html", @@ -259730,7 +259102,7 @@ "word-space-transform-010.html": [ "b91f2d24996f1bbfc83b8cb1e82fbb245698c332", [ - "css/css-text/word-space-transform/word-space-transform-010.html", + null, [ [ "/css/css-text/word-space-transform/reference/word-space-transform-010-ref.html", @@ -259743,7 +259115,7 @@ "word-space-transform-011.html": [ "9df80d707324625537a33061b98c65216e3dc177", [ - "css/css-text/word-space-transform/word-space-transform-011.html", + null, [ [ "/css/css-text/word-space-transform/reference/word-space-transform-011-ref.html", @@ -259756,7 +259128,7 @@ "word-space-transform-012.html": [ "5aa86fe4d41c1af090d225eee2ef4636c3c4f34b", [ - "css/css-text/word-space-transform/word-space-transform-012.html", + null, [ [ "/css/css-text/word-space-transform/reference/word-space-transform-012-ref.html", @@ -259769,7 +259141,7 @@ "word-space-transform-013.html": [ "2f3fe9c661dbae86e968bc1bd0aadd1eca217c33", [ - "css/css-text/word-space-transform/word-space-transform-013.html", + null, [ [ "/css/css-text/word-space-transform/reference/word-space-transform-013-ref.html", @@ -259782,7 +259154,7 @@ "word-space-transform-014.html": [ "9ab350c7b8426593d6a646e1a4d94b7f3a216a90", [ - "css/css-text/word-space-transform/word-space-transform-014.html", + null, [ [ "/css/css-text/word-space-transform/reference/word-space-transform-014-ref.html", @@ -259795,7 +259167,7 @@ "word-space-transform-016.html": [ "c76acf7bf6e10a806a3b78d6369fd384101562e6", [ - "css/css-text/word-space-transform/word-space-transform-016.html", + null, [ [ "/css/css-text/word-space-transform/reference/word-space-transform-016-a-ref.html", @@ -259812,7 +259184,7 @@ "word-space-transform-017.html": [ "3a50355153c24084125dc60729b7db463d23b39b", [ - "css/css-text/word-space-transform/word-space-transform-017.html", + null, [ [ "/css/css-text/word-space-transform/reference/word-space-transform-017-ref.html", @@ -259825,7 +259197,7 @@ "word-space-transform-018.html": [ "53703bb7ba627f954c7e03958951cc69b5906a41", [ - "css/css-text/word-space-transform/word-space-transform-018.html", + null, [ [ "/css/css-text/word-space-transform/reference/word-space-transform-018-ref.html", @@ -259838,7 +259210,7 @@ "word-space-transform-019.html": [ "d52fcdabd9b6280a48c3e1c1607b2a65020506eb", [ - "css/css-text/word-space-transform/word-space-transform-019.html", + null, [ [ "/css/css-text/word-space-transform/reference/word-space-transform-019-a-ref.html", @@ -259855,7 +259227,7 @@ "word-space-transform-020.html": [ "fac894ab0ab05d387bbca3c0512ecf2d6666bf79", [ - "css/css-text/word-space-transform/word-space-transform-020.html", + null, [ [ "/css/css-text/word-space-transform/reference/word-space-transform-020-ref.html", @@ -259868,7 +259240,7 @@ "word-space-transform-021.html": [ "d77e6e41bac5217b1188f698a3eed036091d7912", [ - "css/css-text/word-space-transform/word-space-transform-021.html", + null, [ [ "/css/css-text/word-space-transform/reference/word-space-transform-021-ref.html", @@ -259881,7 +259253,7 @@ "word-space-transform-022.html": [ "3e17a5bc8c586eaeb0023ec3a49ead79e5d1e54f", [ - "css/css-text/word-space-transform/word-space-transform-022.html", + null, [ [ "/css/css-text/word-space-transform/reference/word-space-transform-022-ref.html", @@ -259894,7 +259266,7 @@ "word-space-transform-023.html": [ "044c3b18b674dc40460dd01a5aeb65443d19b8a2", [ - "css/css-text/word-space-transform/word-space-transform-023.html", + null, [ [ "/css/css-text/word-space-transform/reference/word-space-transform-022-ref.html", @@ -259907,7 +259279,7 @@ "word-space-transform-024.html": [ "644ee08e5e043f1f4322ccefecfcc583b484361f", [ - "css/css-text/word-space-transform/word-space-transform-024.html", + null, [ [ "/css/css-text/word-space-transform/reference/word-space-transform-024-ref.html", @@ -259920,7 +259292,7 @@ "word-space-transform-025.html": [ "704081ac13ebc74454f7800a9fe26959ffbb1216", [ - "css/css-text/word-space-transform/word-space-transform-025.html", + null, [ [ "/css/css-text/word-space-transform/reference/word-space-transform-025-ref.html", @@ -259933,7 +259305,7 @@ "word-space-transform-026.html": [ "30531bfc4b238e3708bb24abbbc97714e20e22b6", [ - "css/css-text/word-space-transform/word-space-transform-026.html", + null, [ [ "/css/css-text/word-space-transform/reference/word-space-transform-026-ref.html", @@ -259946,7 +259318,7 @@ "word-space-transform-027.html": [ "325daa12c4fe294e00ff50b188efd28350be8b92", [ - "css/css-text/word-space-transform/word-space-transform-027.html", + null, [ [ "/css/css-text/word-space-transform/reference/word-space-transform-027-ref.html", @@ -259959,7 +259331,7 @@ "word-space-transform-028.html": [ "e334449a70e6bf35fc0d8591ee10afafd69697e7", [ - "css/css-text/word-space-transform/word-space-transform-028.html", + null, [ [ "/css/css-text/word-space-transform/reference/word-space-transform-028-ref.html", @@ -259972,7 +259344,7 @@ "word-space-transform-029.html": [ "8eb25c13511ce49d7e2d7695a00e2907265dfc41", [ - "css/css-text/word-space-transform/word-space-transform-029.html", + null, [ [ "/css/css-text/word-space-transform/reference/word-space-transform-029-ref.html", @@ -259985,7 +259357,7 @@ "word-space-transform-030.html": [ "9c1ba11fd56c5d2d6f67b3cf728f7e50c342411c", [ - "css/css-text/word-space-transform/word-space-transform-030.html", + null, [ [ "/css/css-text/word-space-transform/reference/word-space-transform-030-ref.html", @@ -260010,10 +259382,23 @@ {} ] ], + "word-spacing-002.html": [ + "0def7e01790a885e52fc685231fbcf38df12d8bf", + [ + null, + [ + [ + "/css/css-text/word-spacing/word-spacing-001-ref.html", + "==" + ] + ], + {} + ] + ], "word-spacing-negative-value-001.html": [ "6e5df950c0b55a8b55e6d8c836ca166f0957849c", [ - "css/css-text/word-spacing/word-spacing-negative-value-001.html", + null, [ [ "/css/css-text/word-spacing/reference/ref-filled-green-100px-square.xht", @@ -260022,6 +259407,19 @@ ], {} ] + ], + "word-spacing-percent-001.html": [ + "65f9972040e3b5ccc96d45f1ad668ac55991751b", + [ + null, + [ + [ + "/css/css-text/word-spacing/reference/word-spacing-percent-001-ref.html", + "==" + ] + ], + {} + ] ] }, "writing-system": { @@ -260097,7 +259495,7 @@ "selection-pseudo-with-decoration-invalidation-001.html": [ "a2dfbb3f77e250a5442304a9de234c46739e45b2", [ - "css/css-text-decor/invalidation/selection-pseudo-with-decoration-invalidation-001.html", + null, [ [ "/css/css-text-decor/invalidation/reference/selection-pseudo-with-decoration-invalidation-001-ref.html", @@ -260110,7 +259508,7 @@ "selection-pseudo-with-decoration-invalidation-002.html": [ "2abe8c621400611571b661902810c1f62e189faf", [ - "css/css-text-decor/invalidation/selection-pseudo-with-decoration-invalidation-002.html", + null, [ [ "/css/css-text-decor/invalidation/reference/selection-pseudo-with-decoration-invalidation-002-ref.html", @@ -260173,9 +259571,9 @@ ] ], "text-decoration-thickness.html": [ - "93fe9a611579de3ed66d23b62049fda45e6924df", + "66080a1301d8cb88ca91bdc70984ce91fb2c1a97", [ - null, + "css/css-text-decor/invalidation/text-decoration-thickness.html", [ [ "/css/css-text-decor/invalidation/text-decoration-thickness-ref.html", @@ -260215,7 +259613,7 @@ "text-combine-emphasis.html": [ "752e335a1f8c53155e1a805aea678523bd8c532c", [ - "css/css-text-decor/text-combine-emphasis.html", + null, [ [ "/css/css-text-decor/reference/text-combine-emphasis-notref.html", @@ -260371,7 +259769,7 @@ "text-decoration-line-grammar-error-color-001.html": [ "e9560bb47cfa11aa1b6b2a58b0f5f6c956f1e2b3", [ - "css/css-text-decor/text-decoration-line-grammar-error-color-001.html", + null, [ [ "/css/css-text-decor/text-decoration-line-grammar-error-color-001-ref.html", @@ -260397,7 +259795,7 @@ "text-decoration-line-spelling-error-color-001.html": [ "e2855f04aa67419f785382787764aa982216ad5b", [ - "css/css-text-decor/text-decoration-line-spelling-error-color-001.html", + null, [ [ "/css/css-text-decor/text-decoration-line-spelling-error-color-001-ref.html", @@ -260410,7 +259808,7 @@ "text-decoration-line-through-wavy-covers-whole-line-length-001.html": [ "20837062ac1d1053cc585e7bc461b879e382366d", [ - "css/css-text-decor/text-decoration-line-through-wavy-covers-whole-line-length-001.html", + null, [ [ "/css/css-text-decor/reference/text-decoration-wavy-covers-whole-line-length-001-notref.html", @@ -260449,7 +259847,7 @@ "text-decoration-overline-wavy-covers-whole-line-length-001.html": [ "4dfd0901733c1730a59ff3c29964938412174526", [ - "css/css-text-decor/text-decoration-overline-wavy-covers-whole-line-length-001.html", + null, [ [ "/css/css-text-decor/reference/text-decoration-wavy-covers-whole-line-length-001-notref.html", @@ -260475,7 +259873,7 @@ "text-decoration-propagation-02.html": [ "d618452b2d98d9d0b1fcb7fe326280093447e3ee", [ - "css/css-text-decor/text-decoration-propagation-02.html", + null, [ [ "/css/css-text-decor/reference/text-decoration-propagation-02-ref.html", @@ -260488,7 +259886,7 @@ "text-decoration-propagation-03.html": [ "b019c25e7754172d228fc69f1738fd634a9410c1", [ - "css/css-text-decor/text-decoration-propagation-03.html", + null, [ [ "/css/css-text-decor/reference/text-decoration-propagation-03-ref.html", @@ -260501,7 +259899,7 @@ "text-decoration-propagation-04.html": [ "8c9bb9b7e72bcb261eac5840f024a5cdacdc7fe3", [ - "css/css-text-decor/text-decoration-propagation-04.html", + null, [ [ "/css/css-text-decor/reference/text-decoration-propagation-04-ref.html", @@ -260514,7 +259912,7 @@ "text-decoration-propagation-05.html": [ "5165aa6b66b94dfbd93bf0501b1e13020014bc8b", [ - "css/css-text-decor/text-decoration-propagation-05.html", + null, [ [ "/css/css-text-decor/reference/text-decoration-propagation-05-ref.html", @@ -260648,7 +260046,7 @@ "text-decoration-skip-ink-005.html": [ "9b6362733e3cbc9e7638fbb8fc0e76f5755d81e1", [ - "css/css-text-decor/text-decoration-skip-ink-005.html", + null, [ [ "/css/css-text-decor/reference/text-decoration-skip-ink-005-notref.html", @@ -260953,7 +260351,7 @@ "text-decoration-thickness-calc.html": [ "b23d6efd356811a420abaa411d44592e40fccc51", [ - "css/css-text-decor/text-decoration-thickness-calc.html", + null, [ [ "/css/css-text-decor/text-decoration-thickness-calc-ref.html", @@ -260992,7 +260390,7 @@ "text-decoration-thickness-from-zero-sized-font.html": [ "b23d5b923ecd05e0f7d1dc357cf89a86cb49a0ca", [ - "css/css-text-decor/text-decoration-thickness-from-zero-sized-font.html", + null, [ [ "/css/reference/blank.html", @@ -261070,7 +260468,7 @@ "text-decoration-thickness-non-inherit.html": [ "c0aabdfde2dd4ab333d92c1c25c0d97076ccf1ac", [ - "css/css-text-decor/text-decoration-thickness-non-inherit.html", + null, [ [ "/css/css-text-decor/reference/text-decoration-thickness-non-inherit-ref.html", @@ -261122,7 +260520,7 @@ "text-decoration-thickness-single.html": [ "272df4287f31357f1efc3f2abf235827673d35e3", [ - "css/css-text-decor/text-decoration-thickness-single.html", + null, [ [ "/css/css-text-decor/reference/text-decoration-thickness-single-notref.html", @@ -261171,49 +260569,10 @@ {} ] ], - "text-decoration-underline-position-horizontal.html": [ - "e4d495e722e43414e562c315c530c285d7bc6356", - [ - null, - [ - [ - "/css/css-text-decor/reference/text-decoration-underline-position-horizontal-ref.html", - "==" - ] - ], - {} - ] - ], - "text-decoration-underline-position-vertical-ja.html": [ - "6f41e939b24ffdfeac213879550c6c5d1158b922", - [ - null, - [ - [ - "/css/css-text-decor/reference/text-decoration-underline-position-vertical-ja-ref.html", - "==" - ] - ], - {} - ] - ], - "text-decoration-underline-position-vertical.html": [ - "9f60bc116bab043db1e476e68c77ab6797f6d323", - [ - null, - [ - [ - "/css/css-text-decor/reference/text-decoration-underline-position-vertical-ref.html", - "==" - ] - ], - {} - ] - ], "text-decoration-underline-wavy-covers-whole-line-length-001.html": [ "9ff8cd00b2d514efda5bad117d2751dc8749c178", [ - "css/css-text-decor/text-decoration-underline-wavy-covers-whole-line-length-001.html", + null, [ [ "/css/css-text-decor/reference/text-decoration-wavy-covers-whole-line-length-001-notref.html", @@ -261460,7 +260819,7 @@ "text-emphasis-position-over-left-001.xht": [ "94a2a8c3db16072b4d9c1de0de6b1a1807c774b9", [ - "css/css-text-decor/text-emphasis-position-over-left-001.xht", + null, [ [ "/css/css-text-decor/reference/text-emphasis-position-over-left-001-ref.xht", @@ -261473,7 +260832,7 @@ "text-emphasis-position-over-left-002.xht": [ "8ccc421b143cd7b32116d626987baff470ae50e2", [ - "css/css-text-decor/text-emphasis-position-over-left-002.xht", + null, [ [ "/css/css-text-decor/reference/text-emphasis-position-over-left-002-ref.xht", @@ -261486,7 +260845,7 @@ "text-emphasis-position-over-right-001.xht": [ "69702a8c91fab966651d5e4d3904f4987401f255", [ - "css/css-text-decor/text-emphasis-position-over-right-001.xht", + null, [ [ "/css/css-text-decor/reference/text-emphasis-position-over-right-001-ref.xht", @@ -261499,7 +260858,7 @@ "text-emphasis-position-over-right-002.xht": [ "2c6ab9a0deb236d5b4018b57d19f9a0b8d0e516e", [ - "css/css-text-decor/text-emphasis-position-over-right-002.xht", + null, [ [ "/css/css-text-decor/reference/text-emphasis-position-over-right-002-ref.xht", @@ -262032,7 +261391,7 @@ "text-emphasis-position-under-left-001.xht": [ "84b779b9fcce512961183373e622324257554893", [ - "css/css-text-decor/text-emphasis-position-under-left-001.xht", + null, [ [ "/css/css-text-decor/reference/text-emphasis-position-under-left-001-ref.xht", @@ -262045,7 +261404,7 @@ "text-emphasis-position-under-left-002.xht": [ "39837553509c4b488ee5e5cb0ae6a9a4b32b32c2", [ - "css/css-text-decor/text-emphasis-position-under-left-002.xht", + null, [ [ "/css/css-text-decor/reference/text-emphasis-position-under-left-002-ref.xht", @@ -262058,7 +261417,7 @@ "text-emphasis-position-under-right-001.xht": [ "9dd8d5661db81b745180624c01b5e9a8a34b93f2", [ - "css/css-text-decor/text-emphasis-position-under-right-001.xht", + null, [ [ "/css/css-text-decor/reference/text-emphasis-position-under-right-001-ref.xht", @@ -262071,7 +261430,7 @@ "text-emphasis-position-under-right-002.xht": [ "18b03d5c6a14ae0fb19195d7ed56a8b301810760", [ - "css/css-text-decor/text-emphasis-position-under-right-002.xht", + null, [ [ "/css/css-text-decor/reference/text-emphasis-position-under-right-002-ref.xht", @@ -262172,6 +261531,45 @@ {} ] ], + "text-emphasis-punctuation-1.html": [ + "f965566c0d7109bc442d867a76d391b9626646e3", + [ + "css/css-text-decor/text-emphasis-punctuation-1.html", + [ + [ + "/css/css-text-decor/text-emphasis-punctuation-1-ref.html", + "==" + ] + ], + {} + ] + ], + "text-emphasis-punctuation-2.html": [ + "1a48f9d32cb27be5cf2cd77832569e402d489b6f", + [ + "css/css-text-decor/text-emphasis-punctuation-2.html", + [ + [ + "/css/css-text-decor/text-emphasis-punctuation-2-ref.html", + "==" + ] + ], + {} + ] + ], + "text-emphasis-punctuation-3.html": [ + "4c0d81cb5f6aa2a110c14a71bad0f49d902d8c7c", + [ + "css/css-text-decor/text-emphasis-punctuation-3.html", + [ + [ + "/css/css-text-decor/text-emphasis-punctuation-3-ref.html", + "==" + ] + ], + {} + ] + ], "text-emphasis-ruby-001.html": [ "03f562bc8db13c7a6ade9724878c937cded47837", [ @@ -262266,7 +261664,7 @@ "text-emphasis-style-002.html": [ "8189df238398693c5a7af2fd11737d8f403178c1", [ - "css/css-text-decor/text-emphasis-style-002.html", + null, [ [ "/css/css-text-decor/reference/text-emphasis-style-002-ref.html", @@ -262279,7 +261677,7 @@ "text-emphasis-style-007.html": [ "d78a7e20b81c3dc998b321a322318c677c7c282d", [ - "css/css-text-decor/text-emphasis-style-007.html", + null, [ [ "/css/css-text-decor/reference/text-emphasis-style-007.html", @@ -262292,7 +261690,7 @@ "text-emphasis-style-008.html": [ "3eda8d7d6e6823a61c793ba23923150a83804377", [ - "css/css-text-decor/text-emphasis-style-008.html", + null, [ [ "/css/css-text-decor/reference/text-emphasis-style-008-ref.html", @@ -262305,7 +261703,7 @@ "text-emphasis-style-010.html": [ "3b83a16c3092e83fb3d1006216eec27e84664567", [ - "css/css-text-decor/text-emphasis-style-010.html", + null, [ [ "/css/css-text-decor/reference/text-emphasis-style-010-ref.html", @@ -262318,7 +261716,7 @@ "text-emphasis-style-012.html": [ "da7febb0dacdab0a8833b7db6dfbec0210f67988", [ - "css/css-text-decor/text-emphasis-style-012.html", + null, [ [ "/css/css-text-decor/reference/text-emphasis-style-012-ref.html", @@ -262331,7 +261729,7 @@ "text-emphasis-style-016.html": [ "630e6ddf9a559350d1bf43574898787cc83952e7", [ - "css/css-text-decor/text-emphasis-style-016.html", + null, [ [ "/css/css-text-decor/reference/text-emphasis-style-002-ref.html", @@ -262344,7 +261742,7 @@ "text-emphasis-style-021.html": [ "285d26075dc3e358430dca928147fa5c852fc0f8", [ - "css/css-text-decor/text-emphasis-style-021.html", + null, [ [ "/css/css-text-decor/reference/text-emphasis-style-021-ref.html", @@ -262940,6 +262338,32 @@ {} ] ], + "basic-opacity-near-zero.html": [ + "01cb5f86848f4f0e5f7faf54656a01777de63fae", + [ + null, + [ + [ + "/css/css-text-decor/text-shadow/basic-opacity-near-zero-ref.html", + "==" + ] + ], + {} + ] + ], + "basic-opacity-zero.html": [ + "ff9d5078533980f4e0d4b244a57e271ca521e320", + [ + null, + [ + [ + "/css/css-text-decor/text-shadow/basic-opacity-zero-ref.html", + "==" + ] + ], + {} + ] + ], "basic-opacity.html": [ "a8cea6ad0e64d4e2e185d45c9a49262d33e59da0", [ @@ -263127,9 +262551,9 @@ ] ], "standards-decor-noblur-2.html": [ - "5b420da52b8aec6ab1ebd92b70f014e2fba6258c", + "75d95b578dcf08d073576940c7a7a06f6458909e", [ - "css/css-text-decor/text-shadow/standards-decor-noblur-2.html", + null, [ [ "/css/css-text-decor/text-shadow/standards-decor-noblur-2-ref.html", @@ -263143,11 +262567,11 @@ [ [ 0, - 2 + 40 ], [ 0, - 10 + 14 ] ] ] @@ -263168,6 +262592,58 @@ {} ] ], + "svg-fill-none.html": [ + "389db4a3426e0a98bf0e90d62ef94fdc8facc4f7", + [ + null, + [ + [ + "/css/css-text-decor/text-shadow/svg-fill-none-ref.html", + "==" + ] + ], + {} + ] + ], + "svg-fill-opacity.html": [ + "1ac577bf76e40ebecc417a6176552ebf53650e3a", + [ + null, + [ + [ + "/css/css-text-decor/text-shadow/svg-fill-opacity-ref.html", + "==" + ] + ], + {} + ] + ], + "svg-stroke-dasharray.html": [ + "bd77d85edf4f7a4f2bc13afc9ae72e06d991b8e7", + [ + null, + [ + [ + "/css/css-text-decor/text-shadow/svg-stroke-dasharray-ref.html", + "==" + ] + ], + {} + ] + ], + "svg-stroke.html": [ + "b65348fd0f20daf9fea975125cf0b4d73703611a", + [ + null, + [ + [ + "/css/css-text-decor/text-shadow/svg-stroke-ref.html", + "==" + ] + ], + {} + ] + ], "textindent.html": [ "4b66f9dcb8916a125bced71bec37d757a5521af5", [ @@ -263319,7 +262795,7 @@ "text-underline-offset-zero-position.html": [ "ed1c71c2f280e4335d193712ebd58e64f0639e01", [ - "css/css-text-decor/text-underline-offset-zero-position.html", + null, [ [ "/css/css-text-decor/reference/text-underline-offset-zero-position-ref.html", @@ -263367,6 +262843,45 @@ ], {} ] + ], + "text-underline-position-horizontal.html": [ + "f008bdec2f77d8d6ea7adace6456fd14b0bc7943", + [ + null, + [ + [ + "/css/css-text-decor/reference/text-underline-position-horizontal-ref.html", + "==" + ] + ], + {} + ] + ], + "text-underline-position-vertical-ja.html": [ + "27c978bc7d19ebe4d1e7309f0d52e50cc57afe0d", + [ + null, + [ + [ + "/css/css-text-decor/reference/text-underline-position-vertical-ja-ref.html", + "==" + ] + ], + {} + ] + ], + "text-underline-position-vertical.html": [ + "95aea0a6a292bd5dc0dfc8f83a8b0f008fdb1253", + [ + null, + [ + [ + "/css/css-text-decor/reference/text-underline-position-vertical-ref.html", + "==" + ] + ], + {} + ] ] }, "css-transforms": { @@ -263454,7 +262969,7 @@ "3d-rendering-context-and-inline.html": [ "815140d7e6dfcc2c4056734cb1d9d9def61e5038", [ - "css/css-transforms/3d-rendering-context-and-inline.html", + null, [ [ "/css/css-transforms/transform-blank-ref.html", @@ -263611,7 +263126,7 @@ "rotate-transform-equivalent.html": [ "5748d86608d07e31f7ae7aae487217cf4867f7cc", [ - "css/css-transforms/animation/rotate-transform-equivalent.html", + null, [ [ "/css/css-transforms/animation/rotate-transform-equivalent-ref.html", @@ -263640,7 +263155,7 @@ "scale-and-rotate-both-specified-on-animation-keyframes.html": [ "708bfa49666d816a612fda6b7c5c6b13fbfc5956", [ - "css/css-transforms/animation/scale-and-rotate-both-specified-on-animation-keyframes.html", + null, [ [ "/css/css-transforms/animation/scale-and-rotate-both-specified-on-animation-keyframes-ref.html", @@ -263663,6 +263178,32 @@ {} ] ], + "transform-box-will-change-transform-layer.html": [ + "2d2f9c99149dfabfdf8c7a6d79f78852d8dcaff3", + [ + null, + [ + [ + "/css/css-transforms/animation/transform-box-ref.html", + "==" + ] + ], + {} + ] + ], + "transform-box.html": [ + "87f32e4883815bec23b5d935e2e8995d317fd8a1", + [ + null, + [ + [ + "/css/css-transforms/animation/transform-box-ref.html", + "==" + ] + ], + {} + ] + ], "transform-interpolation-matrix.html": [ "b5f9c3cd3084024756ef95e46e85d0110273cab5", [ @@ -263679,7 +263220,7 @@ "transform-interpolation-perspective.html": [ "bb1e17b3c31334039a9b62ca508d8f08eab3683b", [ - "css/css-transforms/animation/transform-interpolation-perspective.html", + null, [ [ "/css/css-transforms/animation/transform-interpolation-ref.html?perspective", @@ -263815,10 +263356,23 @@ {} ] ], + "transform-non-invertible-discrete-interpolation.html": [ + "fae924d9849e9c904f5bf562b233e22bc38d1f44", + [ + null, + [ + [ + "/css/css-transforms/animation/transform-non-invertible-discrete-interpolation-ref.html", + "==" + ] + ], + {} + ] + ], "transform-percent-with-width-and-height-separate.html": [ "d03ba24f9366d71424c50a5db0fbda8c67612457", [ - "css/css-transforms/animation/transform-percent-with-width-and-height-separate.html", + null, [ [ "/css/css-transforms/animation/transform-percent-with-width-and-height-separate-ref.html", @@ -263831,7 +263385,7 @@ "transform-percent-with-width-and-height.html": [ "a207435db402c70aaab2e22d46179915df7f4d86", [ - "css/css-transforms/animation/transform-percent-with-width-and-height.html", + null, [ [ "/css/css-transforms/animation/transform-percent-with-width-and-height-ref.html", @@ -263857,7 +263411,7 @@ "translate-percent-with-width-and-height-separate.html": [ "bfd5d483feee54e27cecdffcdd5dec03ff044c27", [ - "css/css-transforms/animation/translate-percent-with-width-and-height-separate.html", + null, [ [ "/css/css-transforms/animation/translate-percent-with-width-and-height-separate-ref.html", @@ -263870,7 +263424,7 @@ "translate-percent-with-width-and-height.html": [ "fa7ea844630692437cbb626958e0643253177318", [ - "css/css-transforms/animation/translate-percent-with-width-and-height.html", + null, [ [ "/css/css-transforms/animation/translate-percent-with-width-and-height-ref.html", @@ -263884,7 +263438,7 @@ "backface-visibility-001.html": [ "cfba13db630a81469d332d250670e3d62b8c7cd8", [ - "css/css-transforms/backface-visibility-001.html", + null, [ [ "/css/css-transforms/backface-visibility-001.ref.html", @@ -263942,7 +263496,7 @@ "backface-visibility-hidden-002.html": [ "d30ba64ebb867833f4d93912ac27abb29b416b71", [ - "css/css-transforms/backface-visibility-hidden-002.html", + null, [ [ "/css/css-transforms/backface-visibility-hidden-002-ref.html", @@ -263955,7 +263509,7 @@ "backface-visibility-hidden-003.html": [ "bda82b697abb47892c2be905ea3d9f39ff2b2279", [ - "css/css-transforms/backface-visibility-hidden-003.html", + null, [ [ "/css/css-transforms/backface-visibility-hidden-003-ref.html", @@ -263968,7 +263522,7 @@ "backface-visibility-hidden-004.html": [ "8a8834c39e49364429ab62e530df0e0172708ac4", [ - "css/css-transforms/backface-visibility-hidden-004.html", + null, [ [ "/css/css-transforms/backface-visibility-hidden-003-ref.html", @@ -263981,7 +263535,7 @@ "backface-visibility-hidden-005.html": [ "4a77466fe40f20e27e0b5971874223552601fcf3", [ - "css/css-transforms/backface-visibility-hidden-005.html", + null, [ [ "/css/css-transforms/backface-visibility-hidden-003-ref.html", @@ -264020,7 +263574,7 @@ "backface-visibility-hidden-animated-002.html": [ "b3029f9e46535c4686f5e7bda567b1c7577d1cb6", [ - "css/css-transforms/backface-visibility-hidden-animated-002.html", + null, [ [ "/css/css-transforms/backface-visibility-hidden-animated-ref.html", @@ -264033,7 +263587,7 @@ "backface-visibility-hidden-child-translate.html": [ "f03d88f0187b746379e0a882b291411cb36ee1ad", [ - "css/css-transforms/backface-visibility-hidden-child-translate.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -264046,7 +263600,7 @@ "backface-visibility-hidden-child-will-change-transform.html": [ "dda7ba6827ff65686dff7a414a20c001effa33a2", [ - "css/css-transforms/backface-visibility-hidden-child-will-change-transform.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -264137,7 +263691,7 @@ "composited-under-rotateY-180deg-perspective.html": [ "c91e6f725f95bfe450f94a3b157d372cf21e02fb", [ - "css/css-transforms/composited-under-rotateY-180deg-perspective.html", + null, [ [ "/css/css-transforms/composited-under-rotateY-180deg-ref.html", @@ -264150,7 +263704,7 @@ "composited-under-rotateY-180deg-preserve-3d.html": [ "282d0b1c95ab5fc1379aa3379779773ffc4cf912", [ - "css/css-transforms/composited-under-rotateY-180deg-preserve-3d.html", + null, [ [ "/css/css-transforms/composited-under-rotateY-180deg-ref.html", @@ -264163,7 +263717,7 @@ "composited-under-rotateY-180deg.html": [ "674cc4492fc539251bcc10155a2199a912e2c71c", [ - "css/css-transforms/composited-under-rotateY-180deg.html", + null, [ [ "/css/css-transforms/composited-under-rotateY-180deg-ref.html", @@ -264465,7 +264019,7 @@ "css-transforms-transformlist.html": [ "a4620f59e6e69764113a8f2dd3af80f6b8486916", [ - "css/css-transforms/css-transforms-transformlist.html", + null, [ [ "/css/css-transforms/reference/css-transforms-transformlist-ref.html", @@ -264570,7 +264124,7 @@ "svg-document-styles-004.html": [ "1a7c139028634b72472240846c173e7b881d6b35", [ - "css/css-transforms/document-styles/svg-document-styles-004.html", + null, [ [ "/css/css-transforms/document-styles/reference/svg-document-styles-ref.html", @@ -264674,7 +264228,7 @@ "svg-document-styles-012.html": [ "e649ef2ddf4866eafa5768217efcce5ec4337140", [ - "css/css-transforms/document-styles/svg-document-styles-012.html", + null, [ [ "/css/css-transforms/document-styles/reference/svg-document-styles-ref.html", @@ -264687,7 +264241,7 @@ "svg-document-styles-013.html": [ "e12bc8f0d4bc1bbb6f4c1f77f21d2c86fa9d43cb", [ - "css/css-transforms/document-styles/svg-document-styles-013.html", + null, [ [ "/css/css-transforms/document-styles/reference/svg-document-styles-ref.html", @@ -264700,7 +264254,7 @@ "svg-document-styles-014.html": [ "c7a43b158250bcff93c8cb3a48a243a0f03cd1cb", [ - "css/css-transforms/document-styles/svg-document-styles-014.html", + null, [ [ "/css/css-transforms/document-styles/reference/svg-document-styles-ref.html", @@ -264884,7 +264438,7 @@ "svg-external-styles-014.html": [ "6ec267febef70a58e07a472bb5f91ee0ee19e5e1", [ - "css/css-transforms/external-styles/svg-external-styles-014.html", + null, [ [ "/css/css-transforms/external-styles/reference/svg-external-styles-ref.html", @@ -264928,7 +264482,7 @@ "svg-gradientTransform-001.html": [ "c953a692320aaec7237f6403e92be949258dcc82", [ - "css/css-transforms/gradientTransform/svg-gradientTransform-001.html", + null, [ [ "/css/css-transforms/gradientTransform/reference/svg-gradientTransform-ref.html", @@ -264957,7 +264511,7 @@ "svg-gradientTransform-combination-001.html": [ "c43a0de30c83ce1fc7f8b25f1c645f44e64f9bd1", [ - "css/css-transforms/gradientTransform/svg-gradientTransform-combination-001.html", + null, [ [ "/css/css-transforms/gradientTransform/reference/svg-gradientTransform-combination-ref.html", @@ -264986,7 +264540,7 @@ "svg-gradientTransform-combination-003.html": [ "694119b6ec75ed07e17c5fbbdfceb5d1730d8416", [ - "css/css-transforms/gradientTransform/svg-gradientTransform-combination-003.html", + null, [ [ "/css/css-transforms/gradientTransform/reference/svg-gradientTransform-combination-ref.html", @@ -265030,7 +264584,7 @@ "svg-transform-group-002.html": [ "cb4d7aac460d8da42aeee3eab5092d45ed83e923", [ - "css/css-transforms/group/svg-transform-group-002.html", + null, [ [ "/css/css-transforms/group/reference/svg-green-square-ref.html", @@ -265069,7 +264623,7 @@ "svg-transform-group-005.html": [ "5d5e5ada46af9ee3088b1a4892cd0aaac22ccb01", [ - "css/css-transforms/group/svg-transform-group-005.html", + null, [ [ "/css/css-transforms/group/reference/svg-green-square-ref.html", @@ -265082,7 +264636,7 @@ "svg-transform-group-006.html": [ "2bbf77d26f7e75c9707336adef79241f3e52cbb8", [ - "css/css-transforms/group/svg-transform-group-006.html", + null, [ [ "/css/css-transforms/group/reference/svg-green-square-ref.html", @@ -265121,7 +264675,7 @@ "svg-transform-group-009.html": [ "58f4beeda9c2e207ac259f4567fef171ef0f3056", [ - "css/css-transforms/group/svg-transform-group-009.html", + null, [ [ "/css/css-transforms/group/reference/svg-green-square-250x250-ref.html", @@ -265163,7 +264717,7 @@ "svg-transform-group-011.html": [ "59c4e77b2786339a5f007aaef7e0d0e14cb09403", [ - "css/css-transforms/group/svg-transform-group-011.html", + null, [ [ "/css/css-transforms/group/reference/svg-green-square-ref.html", @@ -265228,7 +264782,7 @@ "svg-transform-nested-005.html": [ "ca693d2c34cec9006b00e472dba1db403dfae972", [ - "css/css-transforms/group/svg-transform-nested-005.html", + null, [ [ "/css/css-transforms/group/reference/svg-green-square-ref.html", @@ -265241,7 +264795,7 @@ "svg-transform-nested-006.html": [ "91f1d3e857f24a9d1165e10a79070a67a92d667e", [ - "css/css-transforms/group/svg-transform-nested-006.html", + null, [ [ "/css/css-transforms/group/reference/svg-green-square-ref.html", @@ -265267,7 +264821,7 @@ "svg-transform-nested-008.html": [ "8348aaeb8d9e5a8001ce9e129f7ac66b3310ae61", [ - "css/css-transforms/group/svg-transform-nested-008.html", + null, [ [ "/css/css-transforms/group/reference/svg-green-square-250x250-ref.html", @@ -265296,7 +264850,7 @@ "svg-transform-nested-009.html": [ "fe3b06ac2c564126e9bcc10203ea798655086563", [ - "css/css-transforms/group/svg-transform-nested-009.html", + null, [ [ "/css/css-transforms/group/reference/svg-green-square-250x250-ref.html", @@ -265351,7 +264905,7 @@ "svg-transform-nested-012.html": [ "a6571892df948e636c0163dc2f70c6cff1a5c5d5", [ - "css/css-transforms/group/svg-transform-nested-012.html", + null, [ [ "/css/css-transforms/group/reference/svg-green-square-ref.html", @@ -265377,7 +264931,7 @@ "svg-transform-nested-014.html": [ "9da7a80c1011c3481bd6d6bed3441d8a5e63997c", [ - "css/css-transforms/group/svg-transform-nested-014.html", + null, [ [ "/css/css-transforms/group/reference/svg-green-square-250x250-ref.html", @@ -265406,7 +264960,7 @@ "svg-transform-nested-015.html": [ "6ec40d41d396c5a991a5f1587f47b66db9781265", [ - "css/css-transforms/group/svg-transform-nested-015.html", + null, [ [ "/css/css-transforms/group/reference/svg-green-square-ref.html", @@ -265419,7 +264973,7 @@ "svg-transform-nested-016.html": [ "22db9eaebcf345aaf62a026e612d13ea405c156f", [ - "css/css-transforms/group/svg-transform-nested-016.html", + null, [ [ "/css/css-transforms/group/reference/svg-green-square-ref.html", @@ -265445,7 +264999,7 @@ "svg-transform-nested-018.html": [ "798078e872c22162581692be69ddb9fe2c6b66ce", [ - "css/css-transforms/group/svg-transform-nested-018.html", + null, [ [ "/css/css-transforms/group/reference/svg-green-square-250x250-ref.html", @@ -265458,7 +265012,7 @@ "svg-transform-nested-019.html": [ "4bb658d2f9ccc1d844141538b1e8cbc87396d684", [ - "css/css-transforms/group/svg-transform-nested-019.html", + null, [ [ "/css/css-transforms/group/reference/svg-green-square-250x250-ref.html", @@ -265487,7 +265041,7 @@ "svg-transform-nested-020.html": [ "a90af99610958cf204d02023b20b84b21db3020d", [ - "css/css-transforms/group/svg-transform-nested-020.html", + null, [ [ "/css/css-transforms/group/reference/svg-green-square-ref.html", @@ -265500,7 +265054,7 @@ "svg-transform-nested-021.html": [ "3b8be89f3f7c30701cc6f870eddf2b3ed264eb72", [ - "css/css-transforms/group/svg-transform-nested-021.html", + null, [ [ "/css/css-transforms/group/reference/svg-green-square-ref.html", @@ -265513,7 +265067,7 @@ "svg-transform-nested-022.html": [ "3ef4bba5a5624fc2abdabb6ca5dd8efdd6c1a6a5", [ - "css/css-transforms/group/svg-transform-nested-022.html", + null, [ [ "/css/css-transforms/group/reference/svg-green-square-ref.html", @@ -265526,7 +265080,7 @@ "svg-transform-nested-023.html": [ "a240df2f43edd96d06f1aff9fb1b6e613940b5fa", [ - "css/css-transforms/group/svg-transform-nested-023.html", + null, [ [ "/css/css-transforms/group/reference/svg-green-square-ref.html", @@ -265539,7 +265093,7 @@ "svg-transform-nested-024.html": [ "baab7bfa874241e1708c73824ce3317076e05029", [ - "css/css-transforms/group/svg-transform-nested-024.html", + null, [ [ "/css/css-transforms/group/reference/svg-green-square-ref.html", @@ -265552,7 +265106,7 @@ "svg-transform-nested-025.html": [ "68958f6f5189cc1be0cf70213a1f9445cae4c010", [ - "css/css-transforms/group/svg-transform-nested-025.html", + null, [ [ "/css/css-transforms/group/reference/svg-green-square-ref.html", @@ -265565,7 +265119,7 @@ "svg-transform-nested-026.html": [ "5c87506a031cd4fce12121e68aee72d17bec7c7f", [ - "css/css-transforms/group/svg-transform-nested-026.html", + null, [ [ "/css/css-transforms/group/reference/svg-green-square-ref.html", @@ -265578,7 +265132,7 @@ "svg-transform-nested-027.html": [ "f4119792ff8aab96b040114fbca719806dc61a6e", [ - "css/css-transforms/group/svg-transform-nested-027.html", + null, [ [ "/css/css-transforms/group/reference/svg-green-square-ref.html", @@ -265591,7 +265145,7 @@ "svg-transform-nested-028.html": [ "69d88bc27212b469036e09ab18e76b66b5a80e71", [ - "css/css-transforms/group/svg-transform-nested-028.html", + null, [ [ "/css/css-transforms/group/reference/svg-green-square-ref.html", @@ -265604,7 +265158,7 @@ "svg-transform-nested-029.html": [ "3a28c97a1c4e36d04f2e2ca7066ae475e5c9e828", [ - "css/css-transforms/group/svg-transform-nested-029.html", + null, [ [ "/css/css-transforms/group/reference/svg-green-square-ref.html", @@ -265987,7 +265541,7 @@ "svg-inline-styles-014.html": [ "9d17363d1e4b3dc315ac7f0921e9ae5ad0920e75", [ - "css/css-transforms/inline-styles/svg-inline-styles-014.html", + null, [ [ "/css/css-transforms/inline-styles/reference/svg-inline-styles-ref.html", @@ -266821,7 +266375,7 @@ "svg-matrix-064.html": [ "116acf9bea0803368555fb1a5f0e50c147322efb", [ - "css/css-transforms/matrix/svg-matrix-064.html", + null, [ [ "/css/css-transforms/matrix/reference/svg-matrix-four-color-ref.html", @@ -266834,7 +266388,7 @@ "svg-matrix-065.html": [ "b372f4b9ddbf9949fa8937159297974d2954982e", [ - "css/css-transforms/matrix/svg-matrix-065.html", + null, [ [ "/css/css-transforms/matrix/reference/svg-matrix-four-color-ref.html", @@ -266873,7 +266427,7 @@ "svg-matrix-068.html": [ "7232ebe44daa43e01758a7e436ed2433f6965f3f", [ - "css/css-transforms/matrix/svg-matrix-068.html", + null, [ [ "/css/css-transforms/matrix/reference/svg-matrix-four-color-ref.html", @@ -266886,7 +266440,7 @@ "svg-matrix-069.html": [ "bf500336935b0167a8133a535a401b2c39d6b0b7", [ - "css/css-transforms/matrix/svg-matrix-069.html", + null, [ [ "/css/css-transforms/matrix/reference/svg-matrix-four-color-ref.html", @@ -266941,7 +266495,7 @@ "perspective-children-only-abspos.html": [ "ce0b80ea7e15c370657dfb0090c64ed0eb975c64", [ - "css/css-transforms/perspective-children-only-abspos.html", + null, [ [ "/css/css-transforms/reference/green.html", @@ -266954,7 +266508,7 @@ "perspective-children-only-fixpos.html": [ "512f2032f42881c4e11e19038835beec364d8b9b", [ - "css/css-transforms/perspective-children-only-fixpos.html", + null, [ [ "/css/css-transforms/reference/green.html", @@ -266967,7 +266521,7 @@ "perspective-children-only-inline.html": [ "c6897ad8eeb28773ad2bbdaa24ffe0d6d5b9e9c2", [ - "css/css-transforms/perspective-children-only-inline.html", + null, [ [ "/css/css-transforms/reference/green.html", @@ -267136,7 +266690,7 @@ "perspective-transforms-equivalence.html": [ "8f59d51ada8884c570d98a6d8762d7ea4a971a84", [ - "css/css-transforms/perspective-transforms-equivalence.html", + null, [ [ "/css/css-transforms/perspective-transforms-equivalence-ref.html", @@ -267256,7 +266810,7 @@ "preserve-3d-flat-grouping-properties-containing-block-inline.tentative.html": [ "c5666aa358079fae47ca48d64824258fe2ed5c57", [ - "css/css-transforms/preserve-3d-flat-grouping-properties-containing-block-inline.tentative.html", + null, [ [ "/css/css-transforms/preserve-3d-flat-grouping-properties-containing-block-inline-ref.html", @@ -267525,7 +267079,7 @@ "preserve3d-pseudo-element.html": [ "a84482e5ecd549d57f0cca49dcd0bdde5f622eff", [ - "css/css-transforms/preserve3d-pseudo-element.html", + null, [ [ "/css/css-transforms/preserve3d-pseudo-element-ref.html", @@ -267552,7 +267106,7 @@ "svg-rotate-3args-invalid-001.html": [ "f21063afbd9af48069ea09f08348a06fcee28809", [ - "css/css-transforms/rotate/svg-rotate-3args-invalid-001.html", + null, [ [ "/css/css-transforms/rotate/reference/svg-rotate-3args-ref.html", @@ -267565,7 +267119,7 @@ "svg-rotate-3args-invalid-002.html": [ "6cdd6b179ddc30c826e7c1e6655488fb788aa1e5", [ - "css/css-transforms/rotate/svg-rotate-3args-invalid-002.html", + null, [ [ "/css/css-transforms/rotate/reference/svg-rotate-3args-ref.html", @@ -267578,7 +267132,7 @@ "svg-rotate-3args-invalid-003.html": [ "d1b01eabb9268628b06d7c51064b1886c64ff8f3", [ - "css/css-transforms/rotate/svg-rotate-3args-invalid-003.html", + null, [ [ "/css/css-transforms/rotate/reference/svg-rotate-3args-ref.html", @@ -267591,7 +267145,7 @@ "svg-rotate-3args-invalid-004.html": [ "102807b280bb0af2135bf24ce7ff506e04e87b68", [ - "css/css-transforms/rotate/svg-rotate-3args-invalid-004.html", + null, [ [ "/css/css-transforms/rotate/reference/svg-rotate-3args-ref.html", @@ -267604,7 +267158,7 @@ "svg-rotate-3args-invalid-005.html": [ "0b48a82cbf3e404aa9b6008b0a6ddd8d1cc3039d", [ - "css/css-transforms/rotate/svg-rotate-3args-invalid-005.html", + null, [ [ "/css/css-transforms/rotate/reference/svg-rotate-3args-ref.html", @@ -267617,7 +267171,7 @@ "svg-rotate-angle-45-001.html": [ "be3e4bead853a9c767b215783f8f6d6419a11338", [ - "css/css-transforms/rotate/svg-rotate-angle-45-001.html", + null, [ [ "/css/css-transforms/rotate/reference/svg-rotate-angle-45-ref.html", @@ -267646,7 +267200,7 @@ "svg-rotate-angle-45-011.html": [ "d6164c0444d28211821aa8c569aa250c85a0d6fa", [ - "css/css-transforms/rotate/svg-rotate-angle-45-011.html", + null, [ [ "/css/css-transforms/rotate/reference/svg-rotate-angle-45-ref.html", @@ -267675,7 +267229,7 @@ "svg-rotate-angle-45-022.html": [ "4542f7597d03e5474a19f7174bb98bdad9608d4d", [ - "css/css-transforms/rotate/svg-rotate-angle-45-022.html", + null, [ [ "/css/css-transforms/rotate/reference/svg-rotate-angle-45-ref.html", @@ -268040,7 +267594,7 @@ "svg-scale-013.html": [ "d94e0b7d09b4a15f3f1aca128fecf5786a7cfed2", [ - "css/css-transforms/scale/svg-scale-013.html", + null, [ [ "/css/css-transforms/scale/reference/svg-scale-ref.html", @@ -268053,7 +267607,7 @@ "svg-scale-014.html": [ "f2acf1b0c66fe86ebd25898b731ffa3d28c5f0fe", [ - "css/css-transforms/scale/svg-scale-014.html", + null, [ [ "/css/css-transforms/scale/reference/svg-scale-ref.html", @@ -268171,7 +267725,7 @@ "scrollable-hidden-3d-transform-z.html": [ "7f4c6d14f506d970b1633606ec617b3f4f341a68", [ - "css/css-transforms/scrollable-hidden-3d-transform-z.html", + null, [ [ "/css/css-transforms/scrollable-hidden-3d-transform-z-ref.html", @@ -268184,7 +267738,7 @@ "scrollable-scroll-3d-transform-z.html": [ "0f7ee00cf0d17d55be9565c3b7a2b69b263d6317", [ - "css/css-transforms/scrollable-scroll-3d-transform-z.html", + null, [ [ "/css/css-transforms/scrollable-scroll-3d-transform-z-ref.html", @@ -268210,7 +267764,7 @@ "skew-test1.html": [ "b96c2e04027efb60a4350ad25d9113f8873740b8", [ - "css/css-transforms/skew-test1.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -268302,7 +267856,7 @@ "svg-skewxy-001.html": [ "0eee25c5dfe36d919a1a116de15ae2780f7428c4", [ - "css/css-transforms/skewX/svg-skewxy-001.html", + null, [ [ "/css/css-transforms/skewX/reference/svg-skewxy-ref.html", @@ -268333,7 +267887,7 @@ "svg-skewy-001.html": [ "a5678f30fb42bae41e660ae56fffdb99f708546a", [ - "css/css-transforms/skewY/svg-skewy-001.html", + null, [ [ "/css/css-transforms/skewY/reference/svg-skewy-ref.html", @@ -268362,7 +267916,7 @@ "svg-skewy-006.html": [ "51d7b768973909f81726017bf522b4317999f3de", [ - "css/css-transforms/skewY/svg-skewy-006.html", + null, [ [ "/css/css-transforms/skewY/reference/svg-skewy-ref.html", @@ -268391,7 +267945,7 @@ "svg-skewy-011.html": [ "89f0aa9e62ca59d3c71adddff5d04edd943ec591", [ - "css/css-transforms/skewY/svg-skewy-011.html", + null, [ [ "/css/css-transforms/skewY/reference/svg-skewy-ref.html", @@ -268420,7 +267974,7 @@ "svg-skewy-016.html": [ "fee2331f96e38f5d159f10e34c76831d7189b031", [ - "css/css-transforms/skewY/svg-skewy-016.html", + null, [ [ "/css/css-transforms/skewY/reference/svg-skewy-ref.html", @@ -268449,7 +268003,7 @@ "svg-skewy-021.html": [ "5905e79c0d0f11faf38466b705bf229316bdb1d4", [ - "css/css-transforms/skewY/svg-skewy-021.html", + null, [ [ "/css/css-transforms/skewY/reference/svg-skewy-ref.html", @@ -268596,7 +268150,7 @@ "transform-3d-rotateY-stair-below-001.xht": [ "bcb28dbd516738fb276047e4bb636b1032845ced", [ - "css/css-transforms/transform-3d-rotateY-stair-below-001.xht", + null, [ [ "/css/css-transforms/reference/transform-3d-rotateY-stair-above-ref-001.xht", @@ -268625,7 +268179,7 @@ "transform-3d-scales-different-x-y-dynamic-001.html": [ "36323a715a9cef19c05318865fc885042c04fe05", [ - "css/css-transforms/transform-3d-scales-different-x-y-dynamic-001.html", + null, [ [ "/css/css-transforms/transform-3d-scales-different-x-y-dynamic-001-ref.html", @@ -268654,7 +268208,7 @@ "transform-3d-scales-different-x-y-dynamic-002.html": [ "cace6699cbde50aaef7354d792c083a08858bb62", [ - "css/css-transforms/transform-3d-scales-different-x-y-dynamic-002.html", + null, [ [ "/css/css-transforms/transform-3d-scales-different-x-y-dynamic-002-ref.html", @@ -268771,7 +268325,7 @@ "transform-applies-to-002.xht": [ "c3e107af3367fdb13d277b0f23633b4109e7bb42", [ - "css/css-transforms/transform-applies-to-002.xht", + null, [ [ "/css/css-transforms/reference/transform-applies-to-002-ref.xht", @@ -268916,7 +268470,7 @@ "transform-background-005.html": [ "e669d3c629b9842529b998c082e49b2afb84862d", [ - "css/css-transforms/transform-background-005.html", + null, [ [ "/css/css-transforms/transform-background-ref-2.html", @@ -268989,7 +268543,7 @@ "content-box-mutation-001.html": [ "e9ddc8dcfac87df5d1c0677eb5d2945080fbddae", [ - "css/css-transforms/transform-box/content-box-mutation-001.html", + null, [ [ "/css/css-transforms/transform-box/reference/cssbox-ref.html", @@ -269015,7 +268569,7 @@ "cssbox-content-box-001.html": [ "31a44282930b71e5483fa0dc9774c99843b0fd93", [ - "css/css-transforms/transform-box/cssbox-content-box-001.html", + null, [ [ "/css/css-transforms/transform-box/reference/cssbox-ref.html", @@ -269028,7 +268582,7 @@ "cssbox-content-box-002.html": [ "24e038b562d12df45416344b83e21596806204c0", [ - "css/css-transforms/transform-box/cssbox-content-box-002.html", + null, [ [ "/css/css-transforms/transform-box/reference/cssbox-ref.html", @@ -269145,7 +268699,7 @@ "stroke-box-mutation-001.html": [ "8c64e5406af04f60589fdb615223544d6ff2788c", [ - "css/css-transforms/transform-box/stroke-box-mutation-001.html", + null, [ [ "/css/css-transforms/transform-box/reference/svgbox-rect-ref.html", @@ -269158,7 +268712,7 @@ "stroke-box-mutation-002.html": [ "3884b98a89abed2fd7513ce53bce94c9f4281fbf", [ - "css/css-transforms/transform-box/stroke-box-mutation-002.html", + null, [ [ "/css/css-transforms/transform-box/reference/svgbox-rect-ref.html", @@ -269171,7 +268725,7 @@ "stroke-box-mutation-003.html": [ "717cf170f1043e79e6869446768f6c43f181d681", [ - "css/css-transforms/transform-box/stroke-box-mutation-003.html", + null, [ [ "/css/css-transforms/transform-box/reference/svgbox-rect-ref.html", @@ -269184,7 +268738,7 @@ "stroke-box-mutation-004.html": [ "ace6b6252aee6bb7e74d6abb8964b5401327a69a", [ - "css/css-transforms/transform-box/stroke-box-mutation-004.html", + null, [ [ "/css/css-transforms/transform-box/reference/svgbox-rect-ref.html", @@ -269197,7 +268751,7 @@ "svgbox-border-box.html": [ "b848dbf238abccf3467fb9e67081b94eeb2991b6", [ - "css/css-transforms/transform-box/svgbox-border-box.html", + null, [ [ "/css/css-transforms/transform-box/reference/svgbox-rect-ref.html", @@ -269249,7 +268803,7 @@ "svgbox-stroke-box-001.html": [ "2687d933b1a3e1a54870241821db2fb28fd12ae0", [ - "css/css-transforms/transform-box/svgbox-stroke-box-001.html", + null, [ [ "/css/css-transforms/transform-box/reference/svgbox-rect-ref.html", @@ -269262,7 +268816,7 @@ "svgbox-stroke-box-002.html": [ "50afbae813ded5c56e744fcc7052904a2217c1b8", [ - "css/css-transforms/transform-box/svgbox-stroke-box-002.html", + null, [ [ "/css/css-transforms/transform-box/reference/svgbox-rect-dasharray-ref.html", @@ -269275,7 +268829,7 @@ "svgbox-stroke-box-003.html": [ "f132eb41013d8bbf6d236afef145c4c2fcedbc1c", [ - "css/css-transforms/transform-box/svgbox-stroke-box-003.html", + null, [ [ "/css/css-transforms/transform-box/reference/svgbox-rect-ref.html", @@ -269288,7 +268842,20 @@ "svgbox-stroke-box-004.html": [ "0046295cf9a81910c69f5b3a7df613099c9e5784", [ - "css/css-transforms/transform-box/svgbox-stroke-box-004.html", + null, + [ + [ + "/css/css-transforms/transform-box/reference/svgbox-rect-ref.html", + "==" + ] + ], + {} + ] + ], + "svgbox-stroke-box-005.html": [ + "c1a741b7411e4dbcc02588b158ac298ccc2ae6cf", + [ + null, [ [ "/css/css-transforms/transform-box/reference/svgbox-rect-ref.html", @@ -269453,7 +269020,7 @@ "transform-containing-block-and-scrolling-area-for-fixed.html": [ "2fd5f3873a211fc3a0970fabc9e1d23873bf2afe", [ - "css/css-transforms/transform-containing-block-and-scrolling-area-for-fixed.html", + null, [ [ "/css/css-transforms/transform-containing-block-and-scrolling-area-for-fixed-ref.html", @@ -269573,7 +269140,7 @@ "transform-fixed-bg-001.html": [ "5198d09cc36d4071e6ac20374b091762674781ae", [ - "css/css-transforms/transform-fixed-bg-001.html", + null, [ [ "/css/css-transforms/transform-fixed-bg-ref.html", @@ -269586,7 +269153,7 @@ "transform-fixed-bg-002.html": [ "37b4975dc27a4060564000c3f13ee5ffc54ffdc4", [ - "css/css-transforms/transform-fixed-bg-002.html", + null, [ [ "/css/css-transforms/transform-fixed-bg-ref.html", @@ -269599,7 +269166,7 @@ "transform-fixed-bg-003.html": [ "73d4296b14c6b9f6acfed0faabd21cafb8326191", [ - "css/css-transforms/transform-fixed-bg-003.html", + null, [ [ "/css/css-transforms/transform-fixed-bg-ref.html", @@ -269628,7 +269195,7 @@ "transform-fixed-bg-004.html": [ "8da168962036d49a3c89801856b997d9ef426732", [ - "css/css-transforms/transform-fixed-bg-004.html", + null, [ [ "/css/css-transforms/transform-fixed-bg-ref.html", @@ -269657,7 +269224,7 @@ "transform-fixed-bg-005.html": [ "c4cd1c264292e99210c391c42925cbecb336f855", [ - "css/css-transforms/transform-fixed-bg-005.html", + null, [ [ "/css/css-transforms/transform-fixed-bg-ref.html", @@ -269670,7 +269237,7 @@ "transform-fixed-bg-006.html": [ "89acec8e74640481cbb54feb0e62040a7738880f", [ - "css/css-transforms/transform-fixed-bg-006.html", + null, [ [ "/css/css-transforms/transform-fixed-bg-ref.html", @@ -269699,7 +269266,7 @@ "transform-fixed-bg-007.html": [ "2ffbc41e1839f56971b705072821e655126300e1", [ - "css/css-transforms/transform-fixed-bg-007.html", + null, [ [ "/css/css-transforms/transform-fixed-bg-ref.html", @@ -269814,10 +269381,36 @@ {} ] ], + "transform-iframe-002.html": [ + "b9b10ea368324efa93e73476fc8084dadb89f2d0", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "transform-iframe-scroll-position.html": [ + "efb7bab532606cd9893a4cb4223dbf4b7baa6f1d", + [ + null, + [ + [ + "/css/css-transforms/transform-iframe-scroll-position-ref.html", + "==" + ] + ], + {} + ] + ], "transform-image-001.html": [ "0565b8dbeeb86b82993847a139c8f38b66c0b163", [ - "css/css-transforms/transform-image-001.html", + null, [ [ "/css/css-transforms/transform-image-ref.html", @@ -269915,7 +269508,7 @@ "transform-input-001.html": [ "fb3e8201659fc5331e77c63c5587ccc7f15f585f", [ - "css/css-transforms/transform-input-001.html", + null, [ [ "/css/css-transforms/transform-input-001-ref.html", @@ -269944,7 +269537,7 @@ "transform-input-002.html": [ "c191a848ef8c4b26fe15a6f56d4c46027924bdf0", [ - "css/css-transforms/transform-input-002.html", + null, [ [ "/css/css-transforms/transform-input-002-ref.html", @@ -269973,7 +269566,7 @@ "transform-input-003.html": [ "b8aa4e17ee93e275809fbfd957163cbf0602e100", [ - "css/css-transforms/transform-input-003.html", + null, [ [ "/css/css-transforms/transform-input-003-ref.html", @@ -270002,7 +269595,7 @@ "transform-input-004.html": [ "cde5e5c65193b574f6c3fd813cab8b296122fc6a", [ - "css/css-transforms/transform-input-004.html", + null, [ [ "/css/css-transforms/transform-input-004-ref.html", @@ -270031,7 +269624,7 @@ "transform-input-005.html": [ "efa053e9c80dab15af05cb118fef68817be81de7", [ - "css/css-transforms/transform-input-005.html", + null, [ [ "/css/css-transforms/transform-input-005-ref.html", @@ -270060,7 +269653,7 @@ "transform-input-006.html": [ "0a3715a65b925d5234984104b426d86f990534eb", [ - "css/css-transforms/transform-input-006.html", + null, [ [ "/css/css-transforms/transform-input-006-ref.html", @@ -270089,7 +269682,7 @@ "transform-input-007.html": [ "397fe0dd1d55f37f77db14bad7fd465d171806e8", [ - "css/css-transforms/transform-input-007.html", + null, [ [ "/css/css-transforms/transform-input-007-ref.html", @@ -270118,7 +269711,7 @@ "transform-input-008.html": [ "984d789ae13a1e4748a6a096fa3ec1c9cffd54e9", [ - "css/css-transforms/transform-input-008.html", + null, [ [ "/css/css-transforms/transform-input-008-ref.html", @@ -270147,7 +269740,7 @@ "transform-input-009.html": [ "0295be5ded43872d164f76fbd8ac474c6430251d", [ - "css/css-transforms/transform-input-009.html", + null, [ [ "/css/css-transforms/transform-input-009-ref.html", @@ -270160,7 +269753,7 @@ "transform-input-010.html": [ "64005a9b44f4ef1c0982a9db4d692c7d2434bd16", [ - "css/css-transforms/transform-input-010.html", + null, [ [ "/css/css-transforms/transform-input-010-ref.html", @@ -270189,7 +269782,7 @@ "transform-input-011.html": [ "64ac2ddb0a55aba76462ebd37687e9dda794825e", [ - "css/css-transforms/transform-input-011.html", + null, [ [ "/css/css-transforms/transform-input-011-ref.html", @@ -270218,7 +269811,7 @@ "transform-input-012.html": [ "92d77720a9f77faf452c40889210427c6a51caa1", [ - "css/css-transforms/transform-input-012.html", + null, [ [ "/css/css-transforms/transform-input-012-ref.html", @@ -270247,7 +269840,7 @@ "transform-input-013.html": [ "1fe2b07f0b7a88748edb2ba3a5f3fc58bd6c6d26", [ - "css/css-transforms/transform-input-013.html", + null, [ [ "/css/css-transforms/transform-input-013-ref.html", @@ -270276,7 +269869,7 @@ "transform-input-014.html": [ "f463d6a0512535be8165843db00495a1cc29da6e", [ - "css/css-transforms/transform-input-014.html", + null, [ [ "/css/css-transforms/transform-input-014-ref.html", @@ -270305,7 +269898,7 @@ "transform-input-015.html": [ "14547a3fee87682e12653799431d3048a8171965", [ - "css/css-transforms/transform-input-015.html", + null, [ [ "/css/css-transforms/transform-input-015-ref.html", @@ -270334,7 +269927,7 @@ "transform-input-016.html": [ "8b3e0b4537098290c443744d0bffac9e2a63231e", [ - "css/css-transforms/transform-input-016.html", + null, [ [ "/css/css-transforms/transform-input-016-ref.html", @@ -270363,7 +269956,7 @@ "transform-input-017.html": [ "8c180bbe8f572a7f5ba92d4710c3625e5b850543", [ - "css/css-transforms/transform-input-017.html", + null, [ [ "/css/css-transforms/transform-input-017-ref.html", @@ -270405,7 +269998,7 @@ "transform-input-019.html": [ "c5de33bf07dce2a66d20c0fbf2f982c239b8859b", [ - "css/css-transforms/transform-input-019.html", + null, [ [ "/css/css-transforms/transform-input-019-ref.html", @@ -270513,7 +270106,7 @@ "svg-transform-list-separations-007.html": [ "e04a9053e8b24dd6bf522108b9f55ac7a68c6118", [ - "css/css-transforms/transform-list-separation/svg-transform-list-separations-007.html", + null, [ [ "/css/css-transforms/transform-list-separation/reference/svg-transform-list-separations-ref.html", @@ -270696,7 +270289,7 @@ "svg-origin-length-001.html": [ "2f2256361cadd4f69aa08fd775a4305219a41fdd", [ - "css/css-transforms/transform-origin/svg-origin-length-001.html", + null, [ [ "/css/css-transforms/transform-origin/reference/svg-origin-length-ref.html", @@ -270709,7 +270302,7 @@ "svg-origin-length-002.html": [ "d7d238c26e536d878270648aab3f7cda71598503", [ - "css/css-transforms/transform-origin/svg-origin-length-002.html", + null, [ [ "/css/css-transforms/transform-origin/reference/svg-origin-length-ref.html", @@ -270722,7 +270315,7 @@ "svg-origin-length-003.html": [ "3afea97a7eeeabcd46e8d46001aad5b477c8abf9", [ - "css/css-transforms/transform-origin/svg-origin-length-003.html", + null, [ [ "/css/css-transforms/transform-origin/reference/svg-origin-length-ref.html", @@ -270735,7 +270328,7 @@ "svg-origin-length-004.html": [ "c33c9809c3d9575bbd77b32fb93bca368ab7c07c", [ - "css/css-transforms/transform-origin/svg-origin-length-004.html", + null, [ [ "/css/css-transforms/transform-origin/reference/svg-origin-length-ref.html", @@ -270748,7 +270341,7 @@ "svg-origin-length-005.html": [ "0f1d4d260f44364a079c87535064cd35f8979628", [ - "css/css-transforms/transform-origin/svg-origin-length-005.html", + null, [ [ "/css/css-transforms/transform-origin/reference/svg-origin-length-ref.html", @@ -270761,7 +270354,7 @@ "svg-origin-length-006.html": [ "f29363483a43cd6fec821fb2e4622ae8d56f3904", [ - "css/css-transforms/transform-origin/svg-origin-length-006.html", + null, [ [ "/css/css-transforms/transform-origin/reference/svg-origin-length-ref.html", @@ -270774,7 +270367,7 @@ "svg-origin-length-007.html": [ "d1b067e0e7ab381993d657dc8b2c401ec4260c83", [ - "css/css-transforms/transform-origin/svg-origin-length-007.html", + null, [ [ "/css/css-transforms/transform-origin/reference/svg-origin-length-ref.html", @@ -270787,7 +270380,7 @@ "svg-origin-length-008.html": [ "545cbe0132876c719378d0d22c7dd0eff3bab0e9", [ - "css/css-transforms/transform-origin/svg-origin-length-008.html", + null, [ [ "/css/css-transforms/transform-origin/reference/svg-origin-length-ref.html", @@ -270800,7 +270393,7 @@ "svg-origin-length-cm-001.html": [ "6324edf6ca110c1a30d7293213dd5adc8b60df7c", [ - "css/css-transforms/transform-origin/svg-origin-length-cm-001.html", + null, [ [ "/css/css-transforms/transform-origin/reference/svg-origin-length-cm-ref.html", @@ -270813,7 +270406,7 @@ "svg-origin-length-cm-002.html": [ "83c1ffc814de17ff5d7f4b7e162e143862adeead", [ - "css/css-transforms/transform-origin/svg-origin-length-cm-002.html", + null, [ [ "/css/css-transforms/transform-origin/reference/svg-origin-length-cm-ref.html", @@ -270826,7 +270419,7 @@ "svg-origin-length-cm-003.html": [ "f20e0522224937bf5f92d8b33667d3f700f769a6", [ - "css/css-transforms/transform-origin/svg-origin-length-cm-003.html", + null, [ [ "/css/css-transforms/transform-origin/reference/svg-origin-length-cm-ref.html", @@ -270839,7 +270432,7 @@ "svg-origin-length-cm-004.html": [ "09bd7735de17ecce47997eb8b88fa7a6884d040e", [ - "css/css-transforms/transform-origin/svg-origin-length-cm-004.html", + null, [ [ "/css/css-transforms/transform-origin/reference/svg-origin-length-cm-ref.html", @@ -270852,7 +270445,7 @@ "svg-origin-length-cm-005.html": [ "6c16f0e1112a070206f9ac60bbd3d293a0c088f5", [ - "css/css-transforms/transform-origin/svg-origin-length-cm-005.html", + null, [ [ "/css/css-transforms/transform-origin/reference/svg-origin-length-cm-ref.html", @@ -270865,7 +270458,7 @@ "svg-origin-length-in-001.html": [ "4d2d58df2eb54cef50e4f74391b3019e2554a5c9", [ - "css/css-transforms/transform-origin/svg-origin-length-in-001.html", + null, [ [ "/css/css-transforms/transform-origin/reference/svg-origin-length-in-ref.html", @@ -270878,7 +270471,7 @@ "svg-origin-length-in-002.html": [ "0bd200cfbe9506da5fefeac8afbe28426f5f251c", [ - "css/css-transforms/transform-origin/svg-origin-length-in-002.html", + null, [ [ "/css/css-transforms/transform-origin/reference/svg-origin-length-in-ref.html", @@ -270891,7 +270484,7 @@ "svg-origin-length-in-003.html": [ "2108ef1840e07b57c61d9b41af13671b88203a9c", [ - "css/css-transforms/transform-origin/svg-origin-length-in-003.html", + null, [ [ "/css/css-transforms/transform-origin/reference/svg-origin-length-in-ref.html", @@ -270904,7 +270497,7 @@ "svg-origin-length-in-004.html": [ "ec44d317cc55a1902814921fb60ca0875fd7c208", [ - "css/css-transforms/transform-origin/svg-origin-length-in-004.html", + null, [ [ "/css/css-transforms/transform-origin/reference/svg-origin-length-in-ref.html", @@ -270917,7 +270510,7 @@ "svg-origin-length-in-005.html": [ "98b33c25c1aa6073c1cff7f5a5e99c6aa4fc0a43", [ - "css/css-transforms/transform-origin/svg-origin-length-in-005.html", + null, [ [ "/css/css-transforms/transform-origin/reference/svg-origin-length-in-ref.html", @@ -270930,7 +270523,7 @@ "svg-origin-length-pt-001.html": [ "6772fd10b9d9772c17b4128b5152e637cd25072f", [ - "css/css-transforms/transform-origin/svg-origin-length-pt-001.html", + null, [ [ "/css/css-transforms/transform-origin/reference/svg-origin-length-pt-ref.html", @@ -270943,7 +270536,7 @@ "svg-origin-length-pt-002.html": [ "94b4b58daeb69ccdc986a14e26459fffd7e3e63e", [ - "css/css-transforms/transform-origin/svg-origin-length-pt-002.html", + null, [ [ "/css/css-transforms/transform-origin/reference/svg-origin-length-pt-ref.html", @@ -270956,7 +270549,7 @@ "svg-origin-length-pt-003.html": [ "2d456b9c0165817d2508f386d5a93c38427a25e5", [ - "css/css-transforms/transform-origin/svg-origin-length-pt-003.html", + null, [ [ "/css/css-transforms/transform-origin/reference/svg-origin-length-pt-ref.html", @@ -270969,7 +270562,7 @@ "svg-origin-length-pt-004.html": [ "494edb2a630fb0faf8c94b943311c3dfdb069097", [ - "css/css-transforms/transform-origin/svg-origin-length-pt-004.html", + null, [ [ "/css/css-transforms/transform-origin/reference/svg-origin-length-pt-ref.html", @@ -270982,7 +270575,7 @@ "svg-origin-length-pt-005.html": [ "f3072823791799ad35a65520df1b3b16ed836abd", [ - "css/css-transforms/transform-origin/svg-origin-length-pt-005.html", + null, [ [ "/css/css-transforms/transform-origin/reference/svg-origin-length-pt-ref.html", @@ -270995,7 +270588,7 @@ "svg-origin-relative-length-001.html": [ "54e0031ee976eeaed15472928361411753a3a145", [ - "css/css-transforms/transform-origin/svg-origin-relative-length-001.html", + null, [ [ "/css/css-transforms/transform-origin/reference/svg-origin-relative-length-ref.html", @@ -271008,7 +270601,7 @@ "svg-origin-relative-length-002.html": [ "ad58d8c4317d34872b2efa1850bd35c3aa42961e", [ - "css/css-transforms/transform-origin/svg-origin-relative-length-002.html", + null, [ [ "/css/css-transforms/transform-origin/reference/svg-origin-relative-length-ref.html", @@ -271021,7 +270614,7 @@ "svg-origin-relative-length-003.html": [ "65f4d6003508185285409474a2e8af1e318a1beb", [ - "css/css-transforms/transform-origin/svg-origin-relative-length-003.html", + null, [ [ "/css/css-transforms/transform-origin/reference/svg-origin-relative-length-ref.html", @@ -271034,7 +270627,7 @@ "svg-origin-relative-length-004.html": [ "3b76a772dfde703dcbbdba0a2dafc1d86fbb793c", [ - "css/css-transforms/transform-origin/svg-origin-relative-length-004.html", + null, [ [ "/css/css-transforms/transform-origin/reference/svg-origin-relative-length-ref.html", @@ -271047,7 +270640,7 @@ "svg-origin-relative-length-005.html": [ "87e22fbe51f59a23dd1792ce9d2e2448e62ddfd7", [ - "css/css-transforms/transform-origin/svg-origin-relative-length-005.html", + null, [ [ "/css/css-transforms/transform-origin/reference/svg-origin-relative-length-ref.html", @@ -271060,7 +270653,7 @@ "svg-origin-relative-length-006.html": [ "e74489e5136ec19d47d45d5fbe3652a994a0f242", [ - "css/css-transforms/transform-origin/svg-origin-relative-length-006.html", + null, [ [ "/css/css-transforms/transform-origin/reference/svg-origin-relative-length-ref.html", @@ -271073,7 +270666,7 @@ "svg-origin-relative-length-007.html": [ "e03a8d0d138c06063399cc303aa8ec68603c76b0", [ - "css/css-transforms/transform-origin/svg-origin-relative-length-007.html", + null, [ [ "/css/css-transforms/transform-origin/reference/svg-origin-relative-length-ref.html", @@ -271086,7 +270679,7 @@ "svg-origin-relative-length-008.html": [ "c9e9e3b70b05fbb4a0b971ea3d8f9951977eb6e6", [ - "css/css-transforms/transform-origin/svg-origin-relative-length-008.html", + null, [ [ "/css/css-transforms/transform-origin/reference/svg-origin-relative-length-ref.html", @@ -271099,7 +270692,7 @@ "svg-origin-relative-length-009.html": [ "a40a998d90377a764d76c91ea03f1b4028bf24b5", [ - "css/css-transforms/transform-origin/svg-origin-relative-length-009.html", + null, [ [ "/css/css-transforms/transform-origin/reference/svg-origin-relative-length-ref.html", @@ -271112,7 +270705,7 @@ "svg-origin-relative-length-010.html": [ "0f4335dd1023fbde6e601df0e511c439d5aa1ab4", [ - "css/css-transforms/transform-origin/svg-origin-relative-length-010.html", + null, [ [ "/css/css-transforms/transform-origin/reference/svg-origin-relative-length-ref.html", @@ -271125,7 +270718,7 @@ "svg-origin-relative-length-011.html": [ "9ff00e621354cce7a4fb6bbad6617f5474af677b", [ - "css/css-transforms/transform-origin/svg-origin-relative-length-011.html", + null, [ [ "/css/css-transforms/transform-origin/reference/svg-origin-relative-length-ref.html", @@ -271138,7 +270731,7 @@ "svg-origin-relative-length-012.html": [ "e3c8a9b672047a0645ed46fa3362d9db6e6d0e51", [ - "css/css-transforms/transform-origin/svg-origin-relative-length-012.html", + null, [ [ "/css/css-transforms/transform-origin/reference/svg-origin-relative-length-ref.html", @@ -271151,7 +270744,7 @@ "svg-origin-relative-length-013.html": [ "b4977ea8e99e37d5aee6d2f2ac6e72092ea4764c", [ - "css/css-transforms/transform-origin/svg-origin-relative-length-013.html", + null, [ [ "/css/css-transforms/transform-origin/reference/svg-origin-relative-length-ref.html", @@ -271164,7 +270757,7 @@ "svg-origin-relative-length-014.html": [ "6249beb7d5d6c08a7753e5285cf55e04897b2054", [ - "css/css-transforms/transform-origin/svg-origin-relative-length-014.html", + null, [ [ "/css/css-transforms/transform-origin/reference/svg-origin-relative-length-ref.html", @@ -271177,7 +270770,7 @@ "svg-origin-relative-length-015.html": [ "180f6cf8caca0211f13b2ae4718b35826c605100", [ - "css/css-transforms/transform-origin/svg-origin-relative-length-015.html", + null, [ [ "/css/css-transforms/transform-origin/reference/svg-origin-relative-length-ref.html", @@ -271190,7 +270783,7 @@ "svg-origin-relative-length-016.html": [ "7a0b0128cce2702323d9172724a1826e84ef9da1", [ - "css/css-transforms/transform-origin/svg-origin-relative-length-016.html", + null, [ [ "/css/css-transforms/transform-origin/reference/svg-origin-relative-length-ref.html", @@ -271203,7 +270796,7 @@ "svg-origin-relative-length-017.html": [ "41abf1a0141991479a4467003108e69ae2c85956", [ - "css/css-transforms/transform-origin/svg-origin-relative-length-017.html", + null, [ [ "/css/css-transforms/transform-origin/reference/svg-origin-relative-length-ref.html", @@ -271216,7 +270809,7 @@ "svg-origin-relative-length-018.html": [ "6252022d3f9aeb3d31a8600bf718d96446c79895", [ - "css/css-transforms/transform-origin/svg-origin-relative-length-018.html", + null, [ [ "/css/css-transforms/transform-origin/reference/svg-origin-relative-length-ref.html", @@ -271229,7 +270822,7 @@ "svg-origin-relative-length-019.html": [ "af42850b30583d26978d46d92f7acae66a4baa9b", [ - "css/css-transforms/transform-origin/svg-origin-relative-length-019.html", + null, [ [ "/css/css-transforms/transform-origin/reference/svg-origin-relative-length-ref.html", @@ -271242,7 +270835,7 @@ "svg-origin-relative-length-020.html": [ "8ca59aa90411d874244fc73b6fcd62dd1a36b169", [ - "css/css-transforms/transform-origin/svg-origin-relative-length-020.html", + null, [ [ "/css/css-transforms/transform-origin/reference/svg-origin-relative-length-ref.html", @@ -271255,7 +270848,7 @@ "svg-origin-relative-length-021.html": [ "5b3ce3373e2a5752c6d80fc11e5a6c4397dc92ee", [ - "css/css-transforms/transform-origin/svg-origin-relative-length-021.html", + null, [ [ "/css/css-transforms/transform-origin/reference/svg-origin-relative-length-ref.html", @@ -271268,7 +270861,7 @@ "svg-origin-relative-length-022.html": [ "d6b4a25b88a8e14409c0a0c96a6a07bbbe8bfddb", [ - "css/css-transforms/transform-origin/svg-origin-relative-length-022.html", + null, [ [ "/css/css-transforms/transform-origin/reference/svg-origin-relative-length-ref.html", @@ -271281,7 +270874,7 @@ "svg-origin-relative-length-023.html": [ "d7b0c77f4b645f2e2b25293333cf08b4f441b805", [ - "css/css-transforms/transform-origin/svg-origin-relative-length-023.html", + null, [ [ "/css/css-transforms/transform-origin/reference/svg-origin-relative-length-ref.html", @@ -271294,7 +270887,7 @@ "svg-origin-relative-length-024.html": [ "24347e8cd49cff73004b3f274ffb64b91071ce2b", [ - "css/css-transforms/transform-origin/svg-origin-relative-length-024.html", + null, [ [ "/css/css-transforms/transform-origin/reference/svg-origin-relative-length-ref.html", @@ -271307,7 +270900,7 @@ "svg-origin-relative-length-025.html": [ "7cf1d16c044bf0422e800f6d6d21207f8d12a552", [ - "css/css-transforms/transform-origin/svg-origin-relative-length-025.html", + null, [ [ "/css/css-transforms/transform-origin/reference/svg-origin-relative-length-ref.html", @@ -271320,7 +270913,7 @@ "svg-origin-relative-length-026.html": [ "42d8044f58a137b1c1163278d37fc64e3c70b83b", [ - "css/css-transforms/transform-origin/svg-origin-relative-length-026.html", + null, [ [ "/css/css-transforms/transform-origin/reference/svg-origin-relative-length-ref.html", @@ -271333,7 +270926,7 @@ "svg-origin-relative-length-027.html": [ "2e65ae445e37eb3d30d0f82ea8e47d0ab837eb99", [ - "css/css-transforms/transform-origin/svg-origin-relative-length-027.html", + null, [ [ "/css/css-transforms/transform-origin/reference/svg-origin-relative-length-ref.html", @@ -271346,7 +270939,7 @@ "svg-origin-relative-length-028.html": [ "91c288e639241306d1607db08e9a61f4cf43ba52", [ - "css/css-transforms/transform-origin/svg-origin-relative-length-028.html", + null, [ [ "/css/css-transforms/transform-origin/reference/svg-origin-relative-length-ref.html", @@ -271359,7 +270952,7 @@ "svg-origin-relative-length-029.html": [ "0010c4d836d04845c5eec07397777f07107dd3aa", [ - "css/css-transforms/transform-origin/svg-origin-relative-length-029.html", + null, [ [ "/css/css-transforms/transform-origin/reference/svg-origin-relative-length-ref.html", @@ -271372,7 +270965,7 @@ "svg-origin-relative-length-030.html": [ "3faaee6647347a8fc3fc6ce86672c805d484047d", [ - "css/css-transforms/transform-origin/svg-origin-relative-length-030.html", + null, [ [ "/css/css-transforms/transform-origin/reference/svg-origin-relative-length-ref.html", @@ -271385,7 +270978,7 @@ "svg-origin-relative-length-031.html": [ "369be12dd2b3e5c0c9ff0d7c0efe891984fa2244", [ - "css/css-transforms/transform-origin/svg-origin-relative-length-031.html", + null, [ [ "/css/css-transforms/transform-origin/reference/svg-origin-relative-length-ref.html", @@ -271398,7 +270991,7 @@ "svg-origin-relative-length-032.html": [ "40e79ba7d0d64f89bef1761e4efa3292f8e8cda6", [ - "css/css-transforms/transform-origin/svg-origin-relative-length-032.html", + null, [ [ "/css/css-transforms/transform-origin/reference/svg-origin-relative-length-ref.html", @@ -271411,7 +271004,7 @@ "svg-origin-relative-length-033.html": [ "9abce87f704d3e1522a834d9099913b32a84d364", [ - "css/css-transforms/transform-origin/svg-origin-relative-length-033.html", + null, [ [ "/css/css-transforms/transform-origin/reference/svg-origin-relative-length-ref.html", @@ -271424,7 +271017,7 @@ "svg-origin-relative-length-034.html": [ "16c1eeebb8a7742e481623d56855e28c5a9a4f0f", [ - "css/css-transforms/transform-origin/svg-origin-relative-length-034.html", + null, [ [ "/css/css-transforms/transform-origin/reference/svg-origin-relative-length-ref.html", @@ -271437,7 +271030,7 @@ "svg-origin-relative-length-035.html": [ "4a8c485673f66350114aef29321258706d55ee38", [ - "css/css-transforms/transform-origin/svg-origin-relative-length-035.html", + null, [ [ "/css/css-transforms/transform-origin/reference/svg-origin-relative-length-ref.html", @@ -271450,7 +271043,7 @@ "svg-origin-relative-length-036.html": [ "2ed45e7cfe1c6f43890a70e1ce9de6569984ec37", [ - "css/css-transforms/transform-origin/svg-origin-relative-length-036.html", + null, [ [ "/css/css-transforms/transform-origin/reference/svg-origin-relative-length-ref.html", @@ -271463,7 +271056,7 @@ "svg-origin-relative-length-037.html": [ "4a40e18760194feec992430eb2ddaace8c3c5c6a", [ - "css/css-transforms/transform-origin/svg-origin-relative-length-037.html", + null, [ [ "/css/css-transforms/transform-origin/reference/svg-origin-relative-length-ref.html", @@ -271476,7 +271069,7 @@ "svg-origin-relative-length-038.html": [ "50924a663c7eb7780f97b31b22474e7545624715", [ - "css/css-transforms/transform-origin/svg-origin-relative-length-038.html", + null, [ [ "/css/css-transforms/transform-origin/reference/svg-origin-relative-length-ref.html", @@ -271489,7 +271082,7 @@ "svg-origin-relative-length-039.html": [ "2e2b446309c9e244b45fc565ee7acbdde84d8d84", [ - "css/css-transforms/transform-origin/svg-origin-relative-length-039.html", + null, [ [ "/css/css-transforms/transform-origin/reference/svg-origin-relative-length-ref.html", @@ -271502,7 +271095,7 @@ "svg-origin-relative-length-040.html": [ "3b46d2d22c891eb2f8389094219c86273c19c856", [ - "css/css-transforms/transform-origin/svg-origin-relative-length-040.html", + null, [ [ "/css/css-transforms/transform-origin/reference/svg-origin-relative-length-ref.html", @@ -271515,7 +271108,7 @@ "svg-origin-relative-length-041.html": [ "62189588a00eecfd5ef7f145c0c1de1995e25968", [ - "css/css-transforms/transform-origin/svg-origin-relative-length-041.html", + null, [ [ "/css/css-transforms/transform-origin/reference/svg-origin-relative-length-ref.html", @@ -271528,7 +271121,7 @@ "svg-origin-relative-length-042.html": [ "3e8f278d3170b7d5a78f3d76cbc1885ffd207631", [ - "css/css-transforms/transform-origin/svg-origin-relative-length-042.html", + null, [ [ "/css/css-transforms/transform-origin/reference/svg-origin-relative-length-ref.html", @@ -271541,7 +271134,7 @@ "svg-origin-relative-length-043.html": [ "b1d5a346c899f3c0139e91717caa23c4c7bf5464", [ - "css/css-transforms/transform-origin/svg-origin-relative-length-043.html", + null, [ [ "/css/css-transforms/transform-origin/reference/svg-origin-relative-length-ref.html", @@ -271554,7 +271147,7 @@ "svg-origin-relative-length-044.html": [ "e8352af4017e29de442132a66620ec4eaa48a0a8", [ - "css/css-transforms/transform-origin/svg-origin-relative-length-044.html", + null, [ [ "/css/css-transforms/transform-origin/reference/svg-origin-relative-length-ref.html", @@ -271567,7 +271160,7 @@ "svg-origin-relative-length-045.html": [ "8af656ee7c2a13c0dc343078ab28e23d13cfdffa", [ - "css/css-transforms/transform-origin/svg-origin-relative-length-045.html", + null, [ [ "/css/css-transforms/transform-origin/reference/svg-origin-relative-length-ref.html", @@ -271580,7 +271173,7 @@ "svg-origin-relative-length-046.html": [ "fd7d9764e3bf8c8b29f4749cd6bcf98748b35e3a", [ - "css/css-transforms/transform-origin/svg-origin-relative-length-046.html", + null, [ [ "/css/css-transforms/transform-origin/reference/svg-origin-relative-length-ref.html", @@ -271593,7 +271186,7 @@ "svg-origin-relative-length-invalid-001.html": [ "a7e921169785b53d4a633bc76d692a7da155b6a9", [ - "css/css-transforms/transform-origin/svg-origin-relative-length-invalid-001.html", + null, [ [ "/css/css-transforms/transform-origin/reference/svg-origin-relative-length-invalid-ref.html", @@ -271606,7 +271199,7 @@ "svg-origin-relative-length-invalid-002.html": [ "d9296ec019cf1d6089b14483988586f938a3271a", [ - "css/css-transforms/transform-origin/svg-origin-relative-length-invalid-002.html", + null, [ [ "/css/css-transforms/transform-origin/reference/svg-origin-relative-length-invalid-ref.html", @@ -271619,7 +271212,7 @@ "svg-origin-relative-length-invalid-003.html": [ "afee0ebc719d4e70fbce76fa4a1222d8c6af5537", [ - "css/css-transforms/transform-origin/svg-origin-relative-length-invalid-003.html", + null, [ [ "/css/css-transforms/transform-origin/reference/svg-origin-relative-length-invalid-ref.html", @@ -271632,7 +271225,7 @@ "svg-origin-relative-length-invalid-004.html": [ "cdf1270bf8655a9ce4df584e01f0516b77d2ec17", [ - "css/css-transforms/transform-origin/svg-origin-relative-length-invalid-004.html", + null, [ [ "/css/css-transforms/transform-origin/reference/svg-origin-relative-length-invalid-ref.html", @@ -271645,7 +271238,7 @@ "svg-origin-relative-length-invalid-005.html": [ "e06e6f47dc12913ae140ad68794c45c9c53745c1", [ - "css/css-transforms/transform-origin/svg-origin-relative-length-invalid-005.html", + null, [ [ "/css/css-transforms/transform-origin/reference/svg-origin-relative-length-invalid-ref.html", @@ -271658,7 +271251,7 @@ "svg-origin-relative-length-invalid-006.html": [ "09d02c5cdb908227868d2f7e2dca7e6bd5fd6e42", [ - "css/css-transforms/transform-origin/svg-origin-relative-length-invalid-006.html", + null, [ [ "/css/css-transforms/transform-origin/reference/svg-origin-relative-length-invalid-ref.html", @@ -271671,7 +271264,7 @@ "svg-origin-relative-length-invalid-007.html": [ "727197b9755a61876e8d62382068b809066c3560", [ - "css/css-transforms/transform-origin/svg-origin-relative-length-invalid-007.html", + null, [ [ "/css/css-transforms/transform-origin/reference/svg-origin-relative-length-invalid-ref.html", @@ -271684,7 +271277,7 @@ "svg-origin-relative-length-invalid-008.html": [ "da91e511996b6119cf35eeab2ffa2a8b7e44f8be", [ - "css/css-transforms/transform-origin/svg-origin-relative-length-invalid-008.html", + null, [ [ "/css/css-transforms/transform-origin/reference/svg-origin-relative-length-invalid-ref.html", @@ -271697,7 +271290,7 @@ "svg-origin-relative-length-invalid-009.html": [ "39dcbf4f73e8b8a39ac919d33f764d533f02a2da", [ - "css/css-transforms/transform-origin/svg-origin-relative-length-invalid-009.html", + null, [ [ "/css/css-transforms/transform-origin/reference/svg-origin-relative-length-invalid-ref.html", @@ -271710,7 +271303,7 @@ "svg-origin-relative-length-invalid-010.html": [ "b13dd1e393bbdc23c180e1ff4df74500b589a4e8", [ - "css/css-transforms/transform-origin/svg-origin-relative-length-invalid-010.html", + null, [ [ "/css/css-transforms/transform-origin/reference/svg-origin-relative-length-invalid-ref.html", @@ -271723,7 +271316,7 @@ "svg-origin-relative-length-invalid-011.html": [ "f53d7f0a79dfbf294f71f9394413c624e6639b7c", [ - "css/css-transforms/transform-origin/svg-origin-relative-length-invalid-011.html", + null, [ [ "/css/css-transforms/transform-origin/reference/svg-origin-relative-length-invalid-ref.html", @@ -271736,7 +271329,7 @@ "svg-origin-relative-length-invalid-012.html": [ "69fe6f8129fce64c32d8d7c7d3b16196c6765747", [ - "css/css-transforms/transform-origin/svg-origin-relative-length-invalid-012.html", + null, [ [ "/css/css-transforms/transform-origin/reference/svg-origin-relative-length-invalid-ref.html", @@ -272370,7 +271963,7 @@ "transform-rotate-003.html": [ "40b69fb35bf0e888a6ef0478570918fc9e0e821b", [ - "css/css-transforms/transform-rotate-003.html", + null, [ [ "/css/css-transforms/transform-rotate-001-ref.html", @@ -272403,7 +271996,7 @@ "transform-rotate-004.html": [ "58f8103ab176d10428deb915557c16356e0a566f", [ - "css/css-transforms/transform-rotate-004.html", + null, [ [ "/css/css-transforms/transform-rotate-001-ref.html", @@ -272453,7 +272046,7 @@ "transform-rotate-006.html": [ "678d0cbeec3078acbcec2b956035a8d29092afe5", [ - "css/css-transforms/transform-rotate-006.html", + null, [ [ "/css/css-transforms/transform-rotate-001-ref.html", @@ -272470,7 +272063,7 @@ "transform-rotate-007.html": [ "915c72b0d52de15179d0333761a574e67e2567d6", [ - "css/css-transforms/transform-rotate-007.html", + null, [ [ "/css/css-transforms/transform-rotate-007-ref.html", @@ -272516,7 +272109,7 @@ "transform-scale-001.html": [ "d046cc3fb313dae2719fcc7fe1a0c0f98d6fad6d", [ - "css/css-transforms/transform-scale-001.html", + null, [ [ "/css/css-transforms/transform-scale-ref.html", @@ -272529,7 +272122,7 @@ "transform-scale-002.html": [ "dad5f25af5c7a038718f1bb4017e8c65f1e9c972", [ - "css/css-transforms/transform-scale-002.html", + null, [ [ "/css/css-transforms/transform-scale-ref.html", @@ -272581,7 +272174,7 @@ "transform-scaley-001.html": [ "e226156bf8275d13903ec79263fd68cdf8593d8d", [ - "css/css-transforms/transform-scaley-001.html", + null, [ [ "/css/css-transforms/transform-scaley-ref.html", @@ -272783,7 +272376,7 @@ "transform-table-008.html": [ "24a96d44bd8d9b98b686f5d8273fd3bedb399fc9", [ - "css/css-transforms/transform-table-008.html", + null, [ [ "/css/css-transforms/transform-blank-ref.html", @@ -273194,7 +272787,7 @@ "transform-translate-background-001.html": [ "00fefeb6e8d69f02586375caf1c08c872b8afe5d", [ - "css/css-transforms/transform-translate-background-001.html", + null, [ [ "/css/css-transforms/transform-translate-background-001-ref.html", @@ -273207,7 +272800,7 @@ "transform-translate-background-002.html": [ "9551ec51ad122ecdc6c9bf1d13d9b56742b24c50", [ - "css/css-transforms/transform-translate-background-002.html", + null, [ [ "/css/css-transforms/transform-translate-background-001-ref.html", @@ -273285,7 +272878,7 @@ "transform-translatex-006.html": [ "fd6f46fc165650291cf6e3eb20e2a511de39dc50", [ - "css/css-transforms/transform-translatex-006.html", + null, [ [ "/css/css-transforms/reference/transform-translatex-006-ref.html", @@ -273769,7 +273362,7 @@ "transform3d-preserve3d-001.html": [ "9459381760a51d3266a8fff068261dbf527e54e0", [ - "css/css-transforms/transform3d-preserve3d-001.html", + null, [ [ "/css/css-transforms/transform3d-preserve3d-001-ref.html", @@ -274031,6 +273624,19 @@ } ] ], + "transform3d-preserve3d-014.html": [ + "e8d7a4805b001dda187ab1f45b30e2ddd7df2e43", + [ + null, + [ + [ + "/css/css-transforms/transform-lime-square-ref.html", + "==" + ] + ], + {} + ] + ], "transform3d-rotate3d-001.html": [ "93a46f1c6ab038b92e9bbbe3356d219cd2f1bdf4", [ @@ -274103,7 +273709,7 @@ "transform3d-rotatex-perspective-003.html": [ "a371155f58eb658a6cd6d8321d01ab23db6d58d5", [ - "css/css-transforms/transform3d-rotatex-perspective-003.html", + null, [ [ "/css/css-transforms/transform3d-rotatex-perspective-ref.html", @@ -274435,7 +274041,7 @@ "transform3d-sorting-006.html": [ "acc478079e713044958958d5f02bf92bd00aa35f", [ - "css/css-transforms/transform3d-sorting-006.html", + null, [ [ "/css/css-transforms/transform3d-sorting-006-ref.html", @@ -274634,7 +274240,7 @@ "transforms-skewY.html": [ "49c6cbf6700ab84b7f53f0a1d10010c2344526f6", [ - "css/css-transforms/transforms-skewY.html", + null, [ [ "/css/css-transforms/reference/transforms-skewY-ref.html", @@ -275051,7 +274657,7 @@ "ttwf-transform-translatex-001.html": [ "bef05c05fd9dc61807c2da6bba9952b9dca05cb8", [ - "css/css-transforms/ttwf-transform-translatex-001.html", + null, [ [ "/css/css-transforms/reference/ttwf-reftest-transform-translatex-001.html", @@ -275102,6 +274708,19 @@ {} ] ], + "pseudo-element-transform.html": [ + "1919835e3e043a1b7555882710d575e48c9c288f", + [ + null, + [ + [ + "/css/css-transitions/pseudo-element-transform-ref.html", + "==" + ] + ], + {} + ] + ], "render-blocking": { "no-transition-from-ua-to-blocking-stylesheet.html": [ "d59118c66f942d1192ad5e311e0c00a1985d4e60", @@ -275202,7 +274821,7 @@ "accent-color-checkbox-checked-001.html": [ "46296e62e69fd3fc7c22deb18a2981058483cfd9", [ - "css/css-ui/accent-color-checkbox-checked-001.html", + null, [ [ "/css/css-ui/accent-color-checkbox-checked-001-notref.html", @@ -275215,7 +274834,7 @@ "accent-color-invalidation-currentcolor.html": [ "804e8544b8990333d62a13b1a9850c69282247cc", [ - "css/css-ui/accent-color-invalidation-currentcolor.html", + null, [ [ "/css/css-ui/accent-color-invalidation-currentcolor-ref.html", @@ -275228,7 +274847,7 @@ "accent-color-parent-currentcolor.html": [ "32240cfab7129e47fe6562097fa797c14612cac2", [ - "css/css-ui/accent-color-parent-currentcolor.html", + null, [ [ "/css/css-ui/accent-color-parent-currentcolor-ref.html", @@ -275241,7 +274860,7 @@ "accent-color-radio-checked-001.html": [ "64fb37064df85e8cad97b9af1ca81a7a44a51f98", [ - "css/css-ui/accent-color-radio-checked-001.html", + null, [ [ "/css/css-ui/accent-color-radio-checked-001-notref.html", @@ -275254,7 +274873,7 @@ "accent-color-visited.html": [ "48605d8f199999c7512decd104b43e06ee95bab5", [ - "css/css-ui/accent-color-visited.html", + null, [ [ "/css/css-ui/accent-color-visited-ref.html", @@ -275293,7 +274912,7 @@ "appearance-auto-non-html-namespace-001.html": [ "892e0da63bb54dc9e5af6af31dd8ad3ec18f59a3", [ - "css/css-ui/appearance-auto-non-html-namespace-001.html", + null, [ [ "/css/css-ui/nothing-below-ref.html", @@ -275525,7 +275144,7 @@ ] ], "box-sizing-007.html": [ - "c51f4318db4ed1e37213078db89db09e110f42e2", + "8e3c5a632555785b59999bc631262dcaf37558b3", [ null, [ @@ -275538,7 +275157,7 @@ ] ], "box-sizing-008.html": [ - "3e79e29bcdcf81a02a70edd602b29056ee5e0397", + "f44096038999a0d49a6770f9c61fab5d851d6b92", [ null, [ @@ -275551,7 +275170,7 @@ ] ], "box-sizing-009.html": [ - "69d526d63d3557adbe3c78d1e83a9863b8c4816b", + "b13b64c0f838929e31ec501df105783a0ecec77b", [ null, [ @@ -286098,7 +285717,7 @@ "compute-kind-widget-no-fallback-props-001.html": [ "bda712ec50de76607aac917a661f203434dc3431", [ - "css/css-ui/compute-kind-widget-no-fallback-props-001.html", + null, [ [ "/css/css-ui/compute-kind-widget-no-fallback-ref.html", @@ -286127,7 +285746,7 @@ "input-security-auto-sensitive-text-input.html": [ "3031094055aecf7d3306037d0d40cff1c1cb48a2", [ - "css/css-ui/input-security-auto-sensitive-text-input.html", + null, [ [ "/css/css-ui/input-security-auto-sensitive-text-input-ref.html", @@ -286140,7 +285759,7 @@ "input-security-non-sensitive-elements.html": [ "a3e1499bb29ead4cda75a14a3ca2f165e0b2efba", [ - "css/css-ui/input-security-non-sensitive-elements.html", + null, [ [ "/css/css-ui/input-security-non-sensitive-elements-ref.html", @@ -286153,7 +285772,7 @@ "input-security-none-sensitive-text-input.html": [ "46af8fdc981d3c261c0d9a1c3dccc8c117f3b93b", [ - "css/css-ui/input-security-none-sensitive-text-input.html", + null, [ [ "/css/css-ui/input-security-none-sensitive-text-input-ref.html", @@ -286166,7 +285785,7 @@ "negative-outline-offset.html": [ "3d20df08539d917f91fada7063ded4bc541936b5", [ - "css/css-ui/negative-outline-offset.html", + null, [ [ "/css/css-ui/negative-outline-offset-ref.html", @@ -286231,7 +285850,7 @@ "outline-005.html": [ "69b70ddd7522aacdcc3ec381ca2e8e555809eca5", [ - "css/css-ui/outline-005.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -286533,7 +286152,7 @@ "outline-auto-width-001.html": [ "e9f561b1e2433cf07f257efaf90014889472ac33", [ - "css/css-ui/outline-auto-width-001.html", + null, [ [ "/css/css-ui/reference/outline-auto-width-001-ref.html", @@ -286563,7 +286182,7 @@ "outline-color-002.html": [ "f23ef69a6998e8f19e77f143268e9f4c51926bf1", [ - "css/css-ui/outline-color-002.html", + null, [ [ "/css/css-ui/outline-color-002-ref.html", @@ -286576,7 +286195,7 @@ "outline-color-003.html": [ "b2c9e8138d89ab9a4419159892f7719b669b70b9", [ - "css/css-ui/outline-color-003.html", + null, [ [ "/css/css-ui/outline-color-003-ref.html", @@ -286589,7 +286208,7 @@ "outline-color-004.html": [ "3bd1ea44d8a70f19759f7f68fe780442a234a34e", [ - "css/css-ui/outline-color-004.html", + null, [ [ "/css/css-ui/outline-color-004-ref.html", @@ -286732,7 +286351,7 @@ "pointer-events-no-scrollbars-001.html": [ "fc438f7bea7cb61825aec1dc38cb96202da89b7c", [ - "css/css-ui/pointer-events-no-scrollbars-001.html", + null, [ [ "/css/css-ui/pointer-events-no-scrollbars-001-ref.html", @@ -286745,7 +286364,7 @@ "pointer-events-no-scrollbars-002.html": [ "1371c12644ec7f72a91f8d610a4804e8c40fbac8", [ - "css/css-ui/pointer-events-no-scrollbars-002.html", + null, [ [ "/css/css-ui/pointer-events-no-scrollbars-001-ref.html", @@ -286794,6 +286413,19 @@ {} ] ], + "subpixel-outline-width.tentative.html": [ + "a9fc0c49cf3e4a21c36eace6769058f99afa1458", + [ + null, + [ + [ + "/css/css-ui/reference/subpixel-outline-width-ref.tentative.html", + "==" + ] + ], + {} + ] + ], "text-overflow-001.html": [ "ae9029933a6ade15e63ea06b60082b5a06f85232", [ @@ -287197,6 +286829,64 @@ {} ] ], + "transparent-accent-color-001.html": [ + "5a5ad4f0a41dcd7f4690b684269a2746cf58d65a", + [ + null, + [ + [ + "/css/css-ui/reference/transparent-accent-color-001-ref.html", + "==" + ] + ], + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 1 + ], + [ + 0, + 450 + ] + ] + ] + ] + } + ] + ], + "transparent-accent-color-002.html": [ + "9bc5022c562d98d95423b994fc0f67a7fb6e546f", + [ + null, + [ + [ + "/css/css-ui/reference/transparent-accent-color-002-ref.html", + "==" + ] + ], + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 1 + ], + [ + 0, + 450 + ] + ] + ] + ] + } + ] + ], "webkit-appearance-auto-001.html": [ "fb0261b020f6fc2b1e3bfccb3da7d899f0337f79", [ @@ -287223,6 +286913,19 @@ {} ] ], + "webkit-appearance-auto-non-html-namespace-001.html": [ + "27567497250252ef0a45808506ab2b2c95371189", + [ + null, + [ + [ + "/css/css-ui/nothing-below-ref.html", + "==" + ] + ], + {} + ] + ], "webkit-appearance-button-001.html": [ "cf36b42384a7168d85a0475bded03aaadf26d52c", [ @@ -287397,7 +287100,7 @@ "angle-units-001.html": [ "4491224f719a29acc03c5c2d122f68853c00d9f4", [ - "css/css-values/angle-units-001.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -287426,7 +287129,7 @@ "angle-units-002.html": [ "729123b6d0ed8ab271daa650b2a02bcbcfb258de", [ - "css/css-values/angle-units-002.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -287455,7 +287158,7 @@ "angle-units-003.html": [ "1fb929e1135c73063de2217ee26048826b5d0a13", [ - "css/css-values/angle-units-003.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -287484,7 +287187,7 @@ "angle-units-004.html": [ "fee440a0d0280f23db1de19d449e31b9742f1aaf", [ - "css/css-values/angle-units-004.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -287513,7 +287216,7 @@ "angle-units-005.html": [ "55dbe683861b7f007ece39b4057df2386ea89069", [ - "css/css-values/angle-units-005.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -287617,19 +287320,6 @@ {} ] ], - "attr-invalid-type-008.html": [ - "a76be44d76a1c1f03d818b8b11a3ee5830815e38", - [ - null, - [ - [ - "/css/reference/ref-filled-green-100px-square.xht", - "==" - ] - ], - {} - ] - ], "attr-length-invalid-cast.html": [ "930832363605fa85651b075f17d6c109535c0b41", [ @@ -287698,7 +287388,7 @@ "attr-notype-fallback.html": [ "b88f3de4b571136c53c74486e6b63682bbd3291c", [ - "css/css-values/attr-notype-fallback.html", + null, [ [ "/css/css-values/attr-notype-fallback-ref.html", @@ -287802,7 +287492,7 @@ "calc-border-radius-1.html": [ "f94bdf2cb9451d5ac39daa3a909f9530081cf69d", [ - "css/css-values/calc-border-radius-1.html", + null, [ [ "/css/css-values/calc-border-radius-1-ref.html", @@ -288205,6 +287895,294 @@ {} ] ], + "calc-rounding-001.html": [ + "46ea2ebc04560a11f5047838a8f0b7db908e7d76", + [ + null, + [ + [ + "/css/css-values/calc-rounding-001-ref.html", + "==" + ] + ], + {} + ] + ], + "calc-rounding-002.html": [ + "32c4a75dd8f2185866b2f1eba5e19ff884e38373", + [ + null, + [ + [ + "/css/css-values/calc-rounding-002-ref.html", + "==" + ] + ], + {} + ] + ], + "calc-rounding-003.html": [ + "bf609e1c1d4bfcb597bd76d9eb1e4b5c501985fb", + [ + null, + [ + [ + "/css/css-values/calc-rounding-003-ref.html", + "==" + ] + ], + {} + ] + ], + "calc-size": { + "calc-size-aspect-ratio-001.html": [ + "34487f49dd1e0fe709b3e0e5ce1c46af2ea2a8e5", + [ + "css/css-values/calc-size/calc-size-aspect-ratio-001.html", + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "calc-size-aspect-ratio-002.html": [ + "0730a31d82a00bfbb42fac761fb3785fd3cc7051", + [ + "css/css-values/calc-size/calc-size-aspect-ratio-002.html", + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "calc-size-aspect-ratio-003.html": [ + "3a91792fbd246b6590159f757e4958dca4d21143", + [ + "css/css-values/calc-size/calc-size-aspect-ratio-003.html", + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "calc-size-aspect-ratio-004.html": [ + "f4f0b66b1eaec4a8a476ca75cf19893fb83aae65", + [ + "css/css-values/calc-size/calc-size-aspect-ratio-004.html", + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "calc-size-aspect-ratio-005.html": [ + "70f0ffe9a3f633be154f287eecab0e77a74200a9", + [ + "css/css-values/calc-size/calc-size-aspect-ratio-005.html", + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "calc-size-flex-001.html": [ + "22aa9d90bb5e9c72e2e8a1a0c2b84896677ab3f8", + [ + "css/css-values/calc-size/calc-size-flex-001.html", + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "calc-size-flex-002.html": [ + "0b93341fc0be5300fe01550b95f3121db080db70", + [ + "css/css-values/calc-size/calc-size-flex-002.html", + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "calc-size-flex-003.html": [ + "22858da47357ab66228d0f01d446ff8c7dc16e10", + [ + "css/css-values/calc-size/calc-size-flex-003.html", + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "calc-size-flex-004.html": [ + "759fc326859b790fae2c4c7429edb5464ef241c4", + [ + "css/css-values/calc-size/calc-size-flex-004.html", + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "calc-size-flex-005.html": [ + "01f142e16e147784d8a0f6ca81887d246fd1fba4", + [ + "css/css-values/calc-size/calc-size-flex-005.html", + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "calc-size-flex-006.html": [ + "02e9f993bd9e91b2c8e59f4f884b7667afb3e137", + [ + "css/css-values/calc-size/calc-size-flex-006.html", + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "calc-size-flex-007.html": [ + "987764e7213bed8703c57db1c2e356846e7d859a", + [ + "css/css-values/calc-size/calc-size-flex-007.html", + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "calc-size-grid-repeat.html": [ + "a6526507aabac3999f056c537217f93e3fa9758c", + [ + "css/css-values/calc-size/calc-size-grid-repeat.html", + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "calc-size-min-max-sizes-001.html": [ + "d64a1fdc24d25d345b9f1214b7fcb8dc8690a741", + [ + "css/css-values/calc-size/calc-size-min-max-sizes-001.html", + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "calc-size-min-max-sizes-002.html": [ + "cfd71d4924835ef651e963fcd21298db1f2fb665", + [ + "css/css-values/calc-size/calc-size-min-max-sizes-002.html", + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "calc-size-min-max-sizes-003.html": [ + "dee45b8d55e2482441c2b87ac2b13f206900043d", + [ + "css/css-values/calc-size/calc-size-min-max-sizes-003.html", + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "calc-size-min-max-sizes-004.html": [ + "b2ed44adbcd71792d3ca505b924aa212d8ff228c", + [ + "css/css-values/calc-size/calc-size-min-max-sizes-004.html", + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "calc-size-min-max-sizes-005.html": [ + "592fd5c53eda4781ce73b71a2b0f7a669f4d6453", + [ + "css/css-values/calc-size/calc-size-min-max-sizes-005.html", + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ], + "calc-size-min-max-sizes-006.html": [ + "47a136c717039237e029d177575968c4eb41d4d5", + [ + "css/css-values/calc-size/calc-size-min-max-sizes-006.html", + [ + [ + "/css/reference/ref-filled-green-100px-square-only.html", + "==" + ] + ], + {} + ] + ] + }, "calc-text-indent-1.html": [ "f1480f46e773e8767367306dd16a64950f176880", [ @@ -288377,7 +288355,7 @@ "ch-unit-004.html": [ "82ebb1b037544d5e3e76addec9cdec4ca103098f", [ - "css/css-values/ch-unit-004.html", + null, [ [ "/css/css-values/reference/ch-unit-001-ref.html", @@ -288523,7 +288501,7 @@ "ex-unit-001.html": [ "b147c1cc987f26696a735f9d0ca2348b58389c22", [ - "css/css-values/ex-unit-001.html", + null, [ [ "/css/css-values/reference/ex-unit-001-ref.html", @@ -288754,6 +288732,64 @@ {} ] ], + "lh-unit-same-element-font-size-dependency.html": [ + "0646f2d876c0322f0bf6e0f6701becb7fd9178bb", + [ + "css/css-values/lh-unit-same-element-font-size-dependency.html", + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 1 + ], + [ + 0, + 5000 + ] + ] + ] + ] + } + ] + ], + "lh-unit-same-element-line-height-dependency.html": [ + "0a9da7d536d77923c4ffbcadee67945c6cd2fd8d", + [ + "css/css-values/lh-unit-same-element-line-height-dependency.html", + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 1 + ], + [ + 0, + 5000 + ] + ] + ] + ] + } + ] + ], "max-20-arguments.html": [ "9ed12875ac42ce55cf3b763d07c760c37c8f6616", [ @@ -288884,6 +288920,19 @@ {} ] ], + "rlh-unit-001.html": [ + "c435fd99709dd6a61a9ec128e52958653518b882", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], "vh-calc-support-pct.html": [ "3a422d4ce46fd57636eaf564c356f4152ca3a061", [ @@ -289068,6 +289117,32 @@ {} ] ], + "viewport-units-scrollbars-auto-vhw-001.html": [ + "04b959fa49a4bf44ae88a12209f67c910166f82f", + [ + null, + [ + [ + "/css/css-values/viewport-units-scrollbars-auto-ltr-001-ref.html", + "==" + ] + ], + {} + ] + ], + "viewport-units-scrollbars-scroll-vhw-001.html": [ + "c44edc2da804a12ae1971357772f4fc7051087bc", + [ + null, + [ + [ + "/css/css-values/viewport-units-scrollbars-scroll-ltr-001-ref.html", + "==" + ] + ], + {} + ] + ], "viewport-units-writing-mode-font-size.html": [ "fd1a4aaca5d61b51f932b1b39cf6e1719bb75824", [ @@ -289086,7 +289161,7 @@ "css-vars-custom-property-case-sensitive-001.html": [ "df2b352702311f0a2ae55160cb9fbc2bde576dd0", [ - "css/css-variables/css-vars-custom-property-case-sensitive-001.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -289099,7 +289174,7 @@ "css-vars-custom-property-inheritance.html": [ "bbda51d2fe512b8acf234274e131e4febc0d31b8", [ - "css/css-variables/css-vars-custom-property-inheritance.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -289411,7 +289486,7 @@ "variable-declaration-24.html": [ "14fe47a1e5ea424e107161dfe7d0f743068b2380", [ - "css/css-variables/variable-declaration-24.html", + null, [ [ "/css/css-variables/support/color-green-ref.html", @@ -289424,7 +289499,7 @@ "variable-declaration-25.html": [ "ad79f4ced1933c11890c4a0c6d3778aa140a021f", [ - "css/css-variables/variable-declaration-25.html", + null, [ [ "/css/css-variables/support/color-green-ref.html", @@ -291374,7 +291449,7 @@ "vars-background-shorthand-001.html": [ "6f41923da20d48b57f4c5dec8cfc025d957c262a", [ - "css/css-variables/vars-background-shorthand-001.html", + null, [ [ "/css/css-variables/reference/vars-background-shorthand-001-ref.html", @@ -291416,7 +291491,7 @@ "wide-keyword-fallback-001.html": [ "947c253837c059f66042964ed7c263520667b4b1", [ - "css/css-variables/wide-keyword-fallback-001.html", + null, [ [ "/css/css-variables/wide-keyword-fallback-001-ref.html", @@ -291429,7 +291504,7 @@ "wide-keyword-fallback-002.html": [ "315468a75ec040c23e8bfeeea061f7c25ce15441", [ - "css/css-variables/wide-keyword-fallback-002.html", + null, [ [ "/css/css-variables/wide-keyword-fallback-002-ref.html", @@ -291442,9 +291517,9 @@ }, "css-view-transitions": { "3d-transform-incoming.html": [ - "24ab886025ae5975868224f5f9b833ecd14831a1", + "4b1411f25dc641ff94878d11a1f4fc30453a1925", [ - "css/css-view-transitions/3d-transform-incoming.html", + null, [ [ "/css/css-view-transitions/3d-transform-incoming-ref.html", @@ -291454,11 +291529,7 @@ { "fuzzy": [ [ - [ - "/css/css-view-transitions/3d-transform-incoming.html", - "/css/css-view-transitions/3d-transform-incoming-ref.html", - "==" - ], + null, [ [ 0, @@ -291475,9 +291546,9 @@ ] ], "3d-transform-outgoing.html": [ - "746b93afd40c1c1e33f8ca3b4a8e0fa2970e635c", + "2fe4887bb190248d494321bbdb00a3157462963f", [ - "css/css-view-transitions/3d-transform-outgoing.html", + null, [ [ "/css/css-view-transitions/3d-transform-outgoing-ref.html", @@ -291487,11 +291558,7 @@ { "fuzzy": [ [ - [ - "/css/css-view-transitions/3d-transform-outgoing.html", - "/css/css-view-transitions/3d-transform-outgoing-ref.html", - "==" - ], + null, [ [ 0, @@ -291507,10 +291574,49 @@ } ] ], + "active-view-transition-on-non-root.html": [ + "9870b15cca958d0e7c5080cebe24c463ad7a33ca", + [ + "css/css-view-transitions/active-view-transition-on-non-root.html", + [ + [ + "/css/css-view-transitions/view-transition-types-one-green-square-ref.html", + "==" + ] + ], + {} + ] + ], + "active-view-transition-pseudo-class-match.html": [ + "534c144ecf0c3b7dc14fd915782f8daeef93a18c", + [ + null, + [ + [ + "/css/css-view-transitions/view-transition-types-one-green-square-ref.html", + "==" + ] + ], + {} + ] + ], + "active-view-transition-type-on-non-root.html": [ + "f4225485b860b09fc0fca560fbc7f33c270dbf05", + [ + "css/css-view-transitions/active-view-transition-type-on-non-root.html", + [ + [ + "/css/css-view-transitions/view-transition-types-one-green-square-ref.html", + "==" + ] + ], + {} + ] + ], "animating-new-content-subset.html": [ "d5a342c572041f8ef30efef4cfca703636a9266f", [ - "css/css-view-transitions/animating-new-content-subset.html", + null, [ [ "/css/css-view-transitions/animating-new-content-subset-ref.html", @@ -291523,7 +291629,7 @@ "animating-new-content.html": [ "9bfcb51a913ac2c7a4e6e4d5dd8a045a0987cff1", [ - "css/css-view-transitions/animating-new-content.html", + null, [ [ "/css/css-view-transitions/animating-new-content-ref.html", @@ -291536,7 +291642,7 @@ "backdrop-filter-animated.html": [ "3a5f0665b00c476add8795fb59e7c29dea51fcb0", [ - "css/css-view-transitions/backdrop-filter-animated.html", + null, [ [ "/css/css-view-transitions/backdrop-filter-animated-ref.html", @@ -291549,7 +291655,7 @@ "backdrop-filter-captured.html": [ "d42a197a309da2c361af8a3b63ea08650e170d32", [ - "css/css-view-transitions/backdrop-filter-captured.html", + null, [ [ "/css/css-view-transitions/backdrop-filter-captured-ref.html", @@ -291560,9 +291666,9 @@ ] ], "block-with-overflowing-text.html": [ - "b3f8f42cfdf7ea3eae4833b071eea9b56a6a6e29", + "61b3dc1329ce0d94fffe6aa8f26200927a94d282", [ - "css/css-view-transitions/block-with-overflowing-text.html", + null, [ [ "/css/css-view-transitions/block-with-overflowing-text-ref.html", @@ -291572,11 +291678,7 @@ { "fuzzy": [ [ - [ - "/css/css-view-transitions/block-with-overflowing-text.html", - "/css/css-view-transitions/block-with-overflowing-text-ref.html", - "==" - ], + null, [ [ 0, @@ -291593,9 +291695,9 @@ ] ], "break-inside-avoid-child.html": [ - "7b2a83c77691acbae4af3651f637f7d1fa59eb86", + "87d56d33af0e187e302eeaf97e81447c5c8fe025", [ - "css/css-view-transitions/break-inside-avoid-child.html", + null, [ [ "/css/css-view-transitions/break-inside-avoid-child-ref.html", @@ -291605,11 +291707,7 @@ { "fuzzy": [ [ - [ - "/css/css-view-transitions/break-inside-avoid-child.html", - "/css/css-view-transitions/break-inside-avoid-child-ref.html", - "==" - ], + null, [ [ 0, @@ -291628,7 +291726,7 @@ "capture-with-offscreen-child-translated.html": [ "925bb8dbc456e8968d099eedf9632e2857e383d8", [ - "css/css-view-transitions/capture-with-offscreen-child-translated.html", + null, [ [ "/css/css-view-transitions/capture-with-offscreen-child-translated-ref.html", @@ -291639,9 +291737,9 @@ ] ], "capture-with-offscreen-child.html": [ - "8588968d8afba2be185d20422073d43a79a276a1", + "7f8085cae2d23b26125db0b49914cb2f9f41a148", [ - "css/css-view-transitions/capture-with-offscreen-child.html", + null, [ [ "/css/css-view-transitions/capture-with-offscreen-child-ref.html", @@ -291651,11 +291749,7 @@ { "fuzzy": [ [ - [ - "/css/css-view-transitions/capture-with-offscreen-child.html", - "/css/css-view-transitions/capture-with-offscreen-child-ref.html", - "==" - ], + null, [ [ 0, @@ -291672,9 +291766,9 @@ ] ], "capture-with-opacity-zero-child.html": [ - "888d0d17208fb6252df62e5b67a78186541f35e5", + "2b0563ea31b6c7e875c7eee4e302836437a72ba8", [ - "css/css-view-transitions/capture-with-opacity-zero-child.html", + null, [ [ "/css/css-view-transitions/capture-with-visibility-hidden-child-ref.html", @@ -291684,11 +291778,7 @@ { "fuzzy": [ [ - [ - "/css/css-view-transitions/capture-with-opacity-zero-child.html", - "/css/css-view-transitions/capture-with-visibility-hidden-child-ref.html", - "==" - ], + null, [ [ 0, @@ -291707,7 +291797,7 @@ "capture-with-visibility-hidden-child.html": [ "2d1761249964f667017bd385954c6aef4b2a2da7", [ - "css/css-view-transitions/capture-with-visibility-hidden-child.html", + null, [ [ "/css/css-view-transitions/capture-with-visibility-hidden-child-ref.html", @@ -291718,9 +291808,9 @@ ] ], "capture-with-visibility-mixed-descendants.html": [ - "462d267b94546313eb1605dccac320ab349871dc", + "3a4811ada10ec3d9bf8f2b3df6adec97c9c9ea67", [ - "css/css-view-transitions/capture-with-visibility-mixed-descendants.html", + null, [ [ "/css/css-view-transitions/capture-with-visibility-mixed-descendants-ref.html", @@ -291730,11 +291820,7 @@ { "fuzzy": [ [ - [ - "/css/css-view-transitions/capture-with-visibility-mixed-descendants.html", - "/css/css-view-transitions/capture-with-visibility-mixed-descendants-ref.html", - "==" - ], + null, [ [ 0, @@ -291750,8 +291836,50 @@ } ] ], + "class-specificity.html": [ + "55de2ec3884c174a4978be193fde2220fb0c5164", + [ + null, + [ + [ + "/css/css-view-transitions/class-specificity-ref.html", + "==" + ] + ], + {} + ] + ], + "clip-path-larger-than-border-box-on-child-of-named-element.html": [ + "75019d349d1222380a13fbe40b538c875431ca8d", + [ + null, + [ + [ + "/css/css-view-transitions/clip-path-larger-than-border-box-on-child-of-named-element-ref.html", + "==" + ] + ], + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 255 + ], + [ + 0, + 400 + ] + ] + ] + ] + } + ] + ], "content-smaller-than-box-size.html": [ - "d2b8f63ca068ffc744b7b1a7b0ca8d1c25a32854", + "86c6f9c7ee110c4c40966ee23af3d677ef3322c2", [ null, [ @@ -291764,7 +291892,7 @@ ] ], "content-visibility-auto-shared-element.html": [ - "11b4957fbcca7d1ceb8b151741eba1b86cb5708e", + "1c74897000f86dc14418ffe361d742d34beabddc", [ null, [ @@ -291777,9 +291905,9 @@ ] ], "content-with-child-with-transparent-background.html": [ - "6c447aa1a8f0d3b4d6d3551a388baec9f33db619", + "81a53494d0579945cfd891e0f6ea23b1590a142c", [ - "css/css-view-transitions/content-with-child-with-transparent-background.html", + null, [ [ "/css/css-view-transitions/content-with-child-with-transparent-background-ref.html", @@ -291790,7 +291918,7 @@ ] ], "content-with-clip-root.html": [ - "5acd847734db222b50ec2aeef1133e929c132b2d", + "e0aef0fc37483a6767d8d31e8a2868ac1bd91f09", [ null, [ @@ -291803,9 +291931,9 @@ ] ], "content-with-clip.html": [ - "28bfa86875252497b11b9d69f2e9547f492a51a9", + "9c9f2385c17f207435d1059ad685abda494ab483", [ - "css/css-view-transitions/content-with-clip.html", + null, [ [ "/css/css-view-transitions/content-with-clip-ref.html", @@ -291816,7 +291944,7 @@ ] ], "content-with-inline-child.html": [ - "f1a5ca79af6042c1b5a689617bfd1ec79b584148", + "bc72443b39630fa342dd8b58286ab769602e612c", [ null, [ @@ -291829,7 +291957,7 @@ ] ], "content-with-transform-new-image.html": [ - "9baf9563d19c4f5ac65eb7e1396d37d49639c592", + "a6c444917a46ddc39d864eb4be87e07f2160d007", [ null, [ @@ -291841,11 +291969,7 @@ { "fuzzy": [ [ - [ - "/css/css-view-transitions/content-with-transform-new-image.html", - "/css/css-view-transitions/content-with-transform-ref.html", - "==" - ], + null, [ [ 0, @@ -291862,7 +291986,7 @@ ] ], "content-with-transform-old-image.html": [ - "e3bd7fff1df5c43f64b928f5df3aedec4ce8e6c2", + "c6fda7f98852a7395316a1d20c1c3e54b3aeda5d", [ null, [ @@ -291874,11 +291998,7 @@ { "fuzzy": [ [ - [ - "/css/css-view-transitions/content-with-transform-old-image.html", - "/css/css-view-transitions/content-with-transform-ref.html", - "==" - ], + null, [ [ 0, @@ -291896,9 +292016,9 @@ ] ], "content-with-transparent-background.html": [ - "b961a095e727247ecc805be6b19e7744160afff2", + "416cc4eca5b8f6ac648844ec87c813bb9061ab32", [ - "css/css-view-transitions/content-with-transparent-background.html", + null, [ [ "/css/css-view-transitions/content-with-transparent-background-ref.html", @@ -291909,7 +292029,7 @@ ] ], "css-tags-paint-order-with-entry.html": [ - "703b64f5c68c732d42d5ffeb1bb590f3c8ebf543", + "c8d92ed33f8f8e11e7eead7fd5ddd66add1131e8", [ null, [ @@ -291921,11 +292041,7 @@ { "fuzzy": [ [ - [ - "/css/css-view-transitions/css-tags-paint-order-with-entry.html", - "/css/css-view-transitions/css-tags-paint-order-with-entry-ref.html", - "==" - ], + null, [ [ 0, @@ -291942,9 +292058,9 @@ ] ], "css-tags-paint-order.html": [ - "c0e8769b473052d3adc8f192d454f5bb59c10647", + "9f1c6ad961db88a263fa7e079faec60a7b85ac64", [ - "css/css-view-transitions/css-tags-paint-order.html", + null, [ [ "/css/css-view-transitions/css-tags-paint-order-ref.html", @@ -291955,7 +292071,7 @@ ] ], "css-tags-shared-element.html": [ - "33bbae70fc6b918d12a17c856a3c75c1c0071ff7", + "29ec7350d04e39b2f49d1d19003c11f4d953d3b0", [ null, [ @@ -291968,9 +292084,9 @@ ] ], "dialog-in-rtl-iframe.html": [ - "b9c0f7e25c07a6afcd0335322bdd57c895a4028e", + "05bc98dca97dab1bb3e12f4cad3c032572c163ec", [ - "css/css-view-transitions/dialog-in-rtl-iframe.html", + null, [ [ "/css/css-view-transitions/dialog-in-rtl-iframe-ref.html", @@ -291980,11 +292096,7 @@ { "fuzzy": [ [ - [ - "/css/css-view-transitions/dialog-in-rtl-iframe.html", - "/css/css-view-transitions/dialog-in-rtl-iframe-ref.html", - "==" - ], + null, [ [ 0, @@ -292001,9 +292113,9 @@ ] ], "dialog-in-top-layer-during-transition-new.html": [ - "91c22773665a1838ab2d8e3d1005929cfdc72d51", + "487a828b14c612978175e1fae05785de35f8ee9f", [ - "css/css-view-transitions/dialog-in-top-layer-during-transition-new.html", + null, [ [ "/css/css-view-transitions/dialog-in-top-layer-during-transition-ref.html", @@ -292014,9 +292126,9 @@ ] ], "dialog-in-top-layer-during-transition-old.html": [ - "406bdac32b86ffde4980a5f0f2d2661b58444294", + "5e9867e8cbc143b8379d71216c34ab5fe78c68f0", [ - "css/css-view-transitions/dialog-in-top-layer-during-transition-old.html", + null, [ [ "/css/css-view-transitions/dialog-in-top-layer-during-transition-ref.html", @@ -292029,7 +292141,7 @@ "element-is-grouping-during-animation.html": [ "b1ef745e0dba3e60022921cdf60deea4116791be", [ - "css/css-view-transitions/element-is-grouping-during-animation.html", + null, [ [ "/css/css-view-transitions/element-is-grouping-during-animation-ref.html", @@ -292042,7 +292154,7 @@ "element-stops-grouping-after-animation.html": [ "df7965215e708af37930e7cdaeef5c2a8b74c92c", [ - "css/css-view-transitions/element-stops-grouping-after-animation.html", + null, [ [ "/css/css-view-transitions/element-stops-grouping-after-animation-ref.html", @@ -292053,9 +292165,9 @@ ] ], "element-with-overflow.html": [ - "678e0a062e07452feb6faee8f986f3280fcd5e6d", + "a4dcf5707b2e9cc204bb93e9c88a09ef87a187f6", [ - "css/css-view-transitions/element-with-overflow.html", + null, [ [ "/css/css-view-transitions/element-with-overflow-ref.html", @@ -292068,7 +292180,7 @@ "exit-transition-with-anonymous-layout-object.html": [ "ea2d17b276100111263b1ea5278fbb4167042ee0", [ - "css/css-view-transitions/exit-transition-with-anonymous-layout-object.html", + null, [ [ "/css/css-view-transitions/exit-transition-with-anonymous-layout-object-ref.html", @@ -292079,7 +292191,7 @@ ] ], "far-away-capture.html": [ - "bfe0b9fb9484f5984fbea9460d40818a40ab6ddd", + "9ac162163956093d90609ef3060b2d13dd4893f2", [ null, [ @@ -292091,11 +292203,7 @@ { "fuzzy": [ [ - [ - "/css/css-view-transitions/far-away-capture.html", - "/css/css-view-transitions/far-away-capture-ref.html", - "==" - ], + null, [ [ 0, @@ -292114,7 +292222,7 @@ "fractional-box-new.html": [ "407636b967b2e1c0aa6d437708a58cd14f3407e5", [ - "css/css-view-transitions/fractional-box-new.html", + null, [ [ "/css/css-view-transitions/fractional-box-ref.html", @@ -292127,7 +292235,7 @@ "fractional-box-old.html": [ "915cd41704f369c8d24a82f797ea66be8f7ce093", [ - "css/css-view-transitions/fractional-box-old.html", + null, [ [ "/css/css-view-transitions/fractional-box-ref.html", @@ -292138,9 +292246,9 @@ ] ], "fractional-box-with-overflow-children-new.html": [ - "e50e6654a75578559cfb55ee972cb619a954a579", + "14371aca3fc040d790e31efea1bb150178d59c2c", [ - "css/css-view-transitions/fractional-box-with-overflow-children-new.html", + null, [ [ "/css/css-view-transitions/fractional-box-with-overflow-children-ref.html", @@ -292150,11 +292258,7 @@ { "fuzzy": [ [ - [ - "/css/css-view-transitions/fractional-box-with-overflow-children-new.html", - "/css/css-view-transitions/fractional-box-with-overflow-children-ref.html", - "==" - ], + null, [ [ 0, @@ -292171,9 +292275,9 @@ ] ], "fractional-box-with-overflow-children-old.html": [ - "acf72e20df5c6e0dcee12f06e4088b31934753b0", + "0d19bf9c296b32fa2b667b70337f24b6187ba6fa", [ - "css/css-view-transitions/fractional-box-with-overflow-children-old.html", + null, [ [ "/css/css-view-transitions/fractional-box-with-overflow-children-ref.html", @@ -292183,11 +292287,7 @@ { "fuzzy": [ [ - [ - "/css/css-view-transitions/fractional-box-with-overflow-children-old.html", - "/css/css-view-transitions/fractional-box-with-overflow-children-ref.html", - "==" - ], + null, [ [ 0, @@ -292206,7 +292306,7 @@ "fractional-box-with-shadow-new.html": [ "820a48b1b0f85a9dc4c238082d4889db324e0347", [ - "css/css-view-transitions/fractional-box-with-shadow-new.html", + null, [ [ "/css/css-view-transitions/fractional-box-with-shadow-ref.html", @@ -292219,7 +292319,7 @@ "fractional-box-with-shadow-old.html": [ "882f8992ade215679b18de817cc9ea9e70529357", [ - "css/css-view-transitions/fractional-box-with-shadow-old.html", + null, [ [ "/css/css-view-transitions/fractional-box-with-shadow-ref.html", @@ -292230,9 +292330,9 @@ ] ], "fractional-translation-from-position.html": [ - "a09b08cf00c554955ec4c4e041c169fe1575de43", + "6187348b9ea792e252cd5c34e00e11b5774481a8", [ - "css/css-view-transitions/fractional-translation-from-position.html", + null, [ [ "/css/css-view-transitions/fractional-translation-from-position-ref.html", @@ -292245,7 +292345,7 @@ "fractional-translation-from-transform.html": [ "7027a9008640945f2781fe7a4d7b236f786053fb", [ - "css/css-view-transitions/fractional-translation-from-transform.html", + null, [ [ "/css/css-view-transitions/fractional-translation-from-transform-ref.html", @@ -292274,7 +292374,7 @@ "fragmented-at-start-ignored.html": [ "bab52f156762afbf26dc84e3d1360e301870d0cc", [ - "css/css-view-transitions/fragmented-at-start-ignored.html", + null, [ [ "/css/css-view-transitions/fragmented-at-start-ignored-ref.html", @@ -292287,7 +292387,7 @@ "fragmented-during-transition-skips.html": [ "dc4164dae5e3697ae55116311243b1620b981464", [ - "css/css-view-transitions/fragmented-during-transition-skips.html", + null, [ [ "/css/css-view-transitions/fragmented-during-transition-skips-ref.html", @@ -292298,7 +292398,7 @@ ] ], "hit-test-unpainted-element.html": [ - "68026edfb1f99237a9e905816ef0e424b5be1500", + "e8bec197f6c3ae3810812479fa8ce50637fd592e", [ null, [ @@ -292311,9 +292411,9 @@ ] ], "hit-test-unrelated-element.html": [ - "1b8868280b2a82dbf8d5d4506372c925d642e159", + "a427aee8d1e4ddae2609970cb9c4b725d1401b41", [ - "css/css-view-transitions/hit-test-unrelated-element.html", + null, [ [ "/css/css-view-transitions/hit-test-unrelated-element-ref.html", @@ -292323,10 +292423,88 @@ {} ] ], + "iframe-and-main-frame-transition-new-main-new-iframe.html": [ + "89360c0dcca68b9c7e36cb1cf14e4fb159fa9311", + [ + null, + [ + [ + "/css/css-view-transitions/iframe-and-main-frame-transition-new-main-new-iframe-ref.html", + "==" + ] + ], + {} + ] + ], + "iframe-and-main-frame-transition-new-main-old-iframe.html": [ + "7a9c53ffc16808b4f35e8a815a87c07a6bf6a790", + [ + null, + [ + [ + "/css/css-view-transitions/iframe-and-main-frame-transition-new-main-old-iframe-ref.html", + "==" + ] + ], + {} + ] + ], + "iframe-and-main-frame-transition-old-main-new-iframe.html": [ + "d3681aa43497c0c68947e1a492ab7fb598b3c81d", + [ + null, + [ + [ + "/css/css-view-transitions/iframe-and-main-frame-transition-old-main-new-iframe-ref.html", + "==" + ] + ], + {} + ] + ], + "iframe-and-main-frame-transition-old-main-old-iframe.html": [ + "bcdc566a260e38881cd4c21e1a46bd3e58ecd565", + [ + null, + [ + [ + "/css/css-view-transitions/iframe-and-main-frame-transition-old-main-old-iframe-ref.html", + "==" + ] + ], + {} + ] + ], + "iframe-and-main-frame-transition-old-main.html": [ + "bd58368645fb587b610f8a28771d6e23a8e34244", + [ + null, + [ + [ + "/css/css-view-transitions/iframe-and-main-frame-transition-old-main-ref.html", + "==" + ] + ], + {} + ] + ], + "iframe-and-main-frame-transition-with-name-on-iframe.html": [ + "f948e89dc7d13429008da1d9418209f46fb1da54", + [ + null, + [ + [ + "/css/css-view-transitions/iframe-and-main-frame-transition-with-name-on-iframe-ref.html", + "==" + ] + ], + {} + ] + ], "iframe-new-has-scrollbar.html": [ - "37a300902a2147632355a58dc60c37cbedf015ee", + "81072ac38aa1d8fd98649b23ffe178c633daedb7", [ - "css/css-view-transitions/iframe-new-has-scrollbar.html", + null, [ [ "/css/css-view-transitions/iframe-new-has-scrollbar-ref.html", @@ -292336,11 +292514,7 @@ { "fuzzy": [ [ - [ - "/css/css-view-transitions/iframe-new-has-scrollbar.html", - "/css/css-view-transitions/iframe-new-has-scrollbar-ref.html", - "==" - ], + null, [ [ 0, @@ -292357,9 +292531,9 @@ ] ], "iframe-old-has-scrollbar.html": [ - "014a4299945ac7fd7278f9850d57f308d3004116", + "5d266333989b36260f0de9a6350d7a8d3d4d0dca", [ - "css/css-view-transitions/iframe-old-has-scrollbar.html", + null, [ [ "/css/css-view-transitions/iframe-old-has-scrollbar-ref.html", @@ -292369,11 +292543,7 @@ { "fuzzy": [ [ - [ - "/css/css-view-transitions/iframe-old-has-scrollbar.html", - "/css/css-view-transitions/iframe-old-has-scrollbar-ref.html", - "==" - ], + null, [ [ 0, @@ -292390,7 +292560,7 @@ ] ], "iframe-transition.sub.html": [ - "93a5cbed66eb0efac3c68fbed699984556e362b4", + "5f26a494b24c7c16781f11d5239fa1d2cc0fa3e7", [ null, [ @@ -292402,11 +292572,7 @@ { "fuzzy": [ [ - [ - "/css/css-view-transitions/iframe-transition.sub.html", - "/css/css-view-transitions/iframe-transition-ref.html", - "==" - ], + null, [ [ 0, @@ -292426,7 +292592,7 @@ "inline-child-with-filter.html": [ "2c4a8b85ec175ef0e611f92019481b76658ef387", [ - "css/css-view-transitions/inline-child-with-filter.html", + null, [ [ "/css/css-view-transitions/inline-child-with-filter-ref.html", @@ -292437,9 +292603,9 @@ ] ], "inline-element-size.html": [ - "c9f0d48942c400677083531ac6c7e8f2abecee73", + "a571ace718a32882d727ac965bb2431451d8046c", [ - "css/css-view-transitions/inline-element-size.html", + null, [ [ "/css/css-view-transitions/inline-element-size-ref.html", @@ -292450,9 +292616,9 @@ ] ], "inline-with-offset-from-containing-block.html": [ - "8640899814a08ac38a1ea1e69fc63c7e39c9c231", + "026ecb240a35f1ca1c7044f95f4d09468af9e05f", [ - "css/css-view-transitions/inline-with-offset-from-containing-block.html", + null, [ [ "/css/css-view-transitions/inline-with-offset-from-containing-block-ref.html", @@ -292462,11 +292628,7 @@ { "fuzzy": [ [ - [ - "/css/css-view-transitions/inline-with-offset-from-containing-block.html", - "/css/css-view-transitions/inline-with-offset-from-containing-block-ref.html", - "==" - ], + null, [ [ 0, @@ -292483,7 +292645,7 @@ ] ], "japanese-tag.html": [ - "976dcab4fca8f8cf17fbdedbf7af0a162036eb37", + "8940608f9556591ae9561d3ca1d9ff438ad81ea5", [ null, [ @@ -292496,9 +292658,9 @@ ] ], "massive-element-below-and-on-top-of-viewport-partially-onscreen-new.html": [ - "9a00a62b7ae7c404f93db79f55be2df3e80b711d", + "65b14a6c4b85f90ba382dbb93e3fd591c8be85f7", [ - "css/css-view-transitions/massive-element-below-and-on-top-of-viewport-partially-onscreen-new.html", + null, [ [ "/css/css-view-transitions/massive-element-below-and-on-top-of-viewport-partially-onscreen-ref.html", @@ -292508,11 +292670,7 @@ { "fuzzy": [ [ - [ - "/css/css-view-transitions/massive-element-below-and-on-top-of-viewport-partially-onscreen-new.html", - "/css/css-view-transitions/massive-element-below-and-on-top-of-viewport-partially-onscreen-ref.html", - "==" - ], + null, [ [ 0, @@ -292529,9 +292687,9 @@ ] ], "massive-element-below-and-on-top-of-viewport-partially-onscreen-old.html": [ - "ed16ac5662343afb54b36ef5b4ec10acc15afaf3", + "b35222c24a8c06c48ddc9ec6485f689b5616bb7a", [ - "css/css-view-transitions/massive-element-below-and-on-top-of-viewport-partially-onscreen-old.html", + null, [ [ "/css/css-view-transitions/massive-element-below-and-on-top-of-viewport-partially-onscreen-ref.html", @@ -292541,11 +292699,7 @@ { "fuzzy": [ [ - [ - "/css/css-view-transitions/massive-element-below-and-on-top-of-viewport-partially-onscreen-old.html", - "/css/css-view-transitions/massive-element-below-and-on-top-of-viewport-partially-onscreen-ref.html", - "==" - ], + null, [ [ 0, @@ -292553,7 +292707,7 @@ ], [ 0, - 330 + 700 ] ] ] @@ -292562,9 +292716,9 @@ ] ], "massive-element-below-viewport-offscreen-new.html": [ - "b5c0d4e9aee3ecaabf06458abc06fe3d9ca41759", + "a122cd4b3bcc003105ae47124c5b8b5ed003b638", [ - "css/css-view-transitions/massive-element-below-viewport-offscreen-new.html", + null, [ [ "/css/css-view-transitions/massive-element-below-viewport-offscreen-ref.html", @@ -292574,11 +292728,7 @@ { "fuzzy": [ [ - [ - "/css/css-view-transitions/massive-element-below-viewport-offscreen-new.html", - "/css/css-view-transitions/massive-element-below-viewport-offscreen-ref.html", - "==" - ], + null, [ [ 0, @@ -292595,9 +292745,9 @@ ] ], "massive-element-below-viewport-offscreen-old.html": [ - "6eeb85af3e3d412ed782e61a9f118adb83bbf7bf", + "763a98cfb30be54f1a5b473c07847b1b66384e8b", [ - "css/css-view-transitions/massive-element-below-viewport-offscreen-old.html", + null, [ [ "/css/css-view-transitions/massive-element-below-viewport-offscreen-ref.html", @@ -292607,11 +292757,7 @@ { "fuzzy": [ [ - [ - "/css/css-view-transitions/massive-element-below-viewport-offscreen-old.html", - "/css/css-view-transitions/massive-element-below-viewport-offscreen-ref.html", - "==" - ], + null, [ [ 0, @@ -292619,7 +292765,7 @@ ], [ 0, - 445 + 1497 ] ] ] @@ -292628,9 +292774,9 @@ ] ], "massive-element-below-viewport-partially-onscreen-new.html": [ - "54232ead6fe335fa2817e30cab46eb54e1cda749", + "127dc2ef344ebe2d186926db10697980c529375a", [ - "css/css-view-transitions/massive-element-below-viewport-partially-onscreen-new.html", + null, [ [ "/css/css-view-transitions/massive-element-below-viewport-partially-onscreen-ref.html", @@ -292640,11 +292786,7 @@ { "fuzzy": [ [ - [ - "/css/css-view-transitions/massive-element-below-viewport-partially-onscreen-new.html", - "/css/css-view-transitions/massive-element-below-viewport-partially-onscreen-ref.html", - "==" - ], + null, [ [ 0, @@ -292661,9 +292803,9 @@ ] ], "massive-element-below-viewport-partially-onscreen-old.html": [ - "772720def1116c689bd405e1ab1511de6751d5b8", + "275c0d8840b64ce4fec54484dfb06154611f9bea", [ - "css/css-view-transitions/massive-element-below-viewport-partially-onscreen-old.html", + null, [ [ "/css/css-view-transitions/massive-element-below-viewport-partially-onscreen-ref.html", @@ -292673,11 +292815,7 @@ { "fuzzy": [ [ - [ - "/css/css-view-transitions/massive-element-below-viewport-partially-onscreen-old.html", - "/css/css-view-transitions/massive-element-below-viewport-partially-onscreen-ref.html", - "==" - ], + null, [ [ 0, @@ -292685,7 +292823,7 @@ ], [ 0, - 445 + 1600 ] ] ] @@ -292694,9 +292832,9 @@ ] ], "massive-element-left-of-viewport-offscreen-new.html": [ - "d9d03d1e91998da52996cc3da182adcb9ff4b586", + "97a3cb41ff1d2e4f503021e7edc3f03c30be969c", [ - "css/css-view-transitions/massive-element-left-of-viewport-offscreen-new.html", + null, [ [ "/css/css-view-transitions/massive-element-left-of-viewport-offscreen-ref.html", @@ -292706,11 +292844,7 @@ { "fuzzy": [ [ - [ - "/css/css-view-transitions/massive-element-left-of-viewport-offscreen-new.html", - "/css/css-view-transitions/massive-element-left-of-viewport-offscreen-ref.html", - "==" - ], + null, [ [ 0, @@ -292727,9 +292861,9 @@ ] ], "massive-element-left-of-viewport-offscreen-old.html": [ - "7861e5c3b8cc74fb1e98140891599f964641a010", + "a41a73882660a0aea3fd3402113ca1bb5251a2d5", [ - "css/css-view-transitions/massive-element-left-of-viewport-offscreen-old.html", + null, [ [ "/css/css-view-transitions/massive-element-left-of-viewport-offscreen-ref.html", @@ -292739,11 +292873,7 @@ { "fuzzy": [ [ - [ - "/css/css-view-transitions/massive-element-left-of-viewport-offscreen-old.html", - "/css/css-view-transitions/massive-element-left-of-viewport-offscreen-ref.html", - "==" - ], + null, [ [ 0, @@ -292760,9 +292890,9 @@ ] ], "massive-element-left-of-viewport-partially-onscreen-new.html": [ - "7c14cef2d0026abaf9663d10de6683e9ef620563", + "a472c0906188c7a2a7422f9e26be53d90ace81ef", [ - "css/css-view-transitions/massive-element-left-of-viewport-partially-onscreen-new.html", + null, [ [ "/css/css-view-transitions/massive-element-left-of-viewport-partially-onscreen-ref.html", @@ -292772,11 +292902,7 @@ { "fuzzy": [ [ - [ - "/css/css-view-transitions/massive-element-left-of-viewport-partially-onscreen-new.html", - "/css/css-view-transitions/massive-element-left-of-viewport-partially-onscreen-ref.html", - "==" - ], + null, [ [ 0, @@ -292793,9 +292919,9 @@ ] ], "massive-element-left-of-viewport-partially-onscreen-old.html": [ - "b586f96de9faa912d7cea63cb4e57853398c8c00", + "6c29737ab358aec4d8b60e80d92a5d9a2e9ef781", [ - "css/css-view-transitions/massive-element-left-of-viewport-partially-onscreen-old.html", + null, [ [ "/css/css-view-transitions/massive-element-left-of-viewport-partially-onscreen-ref.html", @@ -292805,11 +292931,7 @@ { "fuzzy": [ [ - [ - "/css/css-view-transitions/massive-element-left-of-viewport-partially-onscreen-old.html", - "/css/css-view-transitions/massive-element-left-of-viewport-partially-onscreen-ref.html", - "==" - ], + null, [ [ 0, @@ -292826,9 +292948,9 @@ ] ], "massive-element-on-top-of-viewport-offscreen-new.html": [ - "f4a9f833df43d52938a1a249d57a3fd1324d515b", + "24edbc1ec7a0ba52b91d36a42e74ba2d0685f004", [ - "css/css-view-transitions/massive-element-on-top-of-viewport-offscreen-new.html", + null, [ [ "/css/css-view-transitions/massive-element-on-top-of-viewport-offscreen-ref.html", @@ -292838,11 +292960,7 @@ { "fuzzy": [ [ - [ - "/css/css-view-transitions/massive-element-on-top-of-viewport-offscreen-new.html", - "/css/css-view-transitions/massive-element-on-top-of-viewport-offscreen-ref.html", - "==" - ], + null, [ [ 0, @@ -292859,9 +292977,9 @@ ] ], "massive-element-on-top-of-viewport-offscreen-old.html": [ - "a2eb0447bd096950561c998a8eee7fe4053ec356", + "c42170c1b9fad0060a3b50763bebac0003f03d81", [ - "css/css-view-transitions/massive-element-on-top-of-viewport-offscreen-old.html", + null, [ [ "/css/css-view-transitions/massive-element-on-top-of-viewport-offscreen-ref.html", @@ -292871,15 +292989,11 @@ { "fuzzy": [ [ - [ - "/css/css-view-transitions/massive-element-on-top-of-viewport-offscreen-old.html", - "/css/css-view-transitions/massive-element-on-top-of-viewport-offscreen-ref.html", - "==" - ], + null, [ [ 0, - 3 + 16 ], [ 0, @@ -292892,9 +293006,9 @@ ] ], "massive-element-on-top-of-viewport-partially-onscreen-new.html": [ - "764a311fc9699c884bebbc864d1abce82241ef11", + "f9a3babdf99c143620d954e20d6a4a000d559e21", [ - "css/css-view-transitions/massive-element-on-top-of-viewport-partially-onscreen-new.html", + null, [ [ "/css/css-view-transitions/massive-element-on-top-of-viewport-partially-onscreen-ref.html", @@ -292904,11 +293018,7 @@ { "fuzzy": [ [ - [ - "/css/css-view-transitions/massive-element-on-top-of-viewport-partially-onscreen-new.html", - "/css/css-view-transitions/massive-element-on-top-of-viewport-partially-onscreen-ref.html", - "==" - ], + null, [ [ 0, @@ -292925,9 +293035,9 @@ ] ], "massive-element-on-top-of-viewport-partially-onscreen-old.html": [ - "cecefd8f587030bbfcc71a900edbc404e5eb831c", + "15786b55fc53017aab795929d8fb0d60dcc654fd", [ - "css/css-view-transitions/massive-element-on-top-of-viewport-partially-onscreen-old.html", + null, [ [ "/css/css-view-transitions/massive-element-on-top-of-viewport-partially-onscreen-ref.html", @@ -292937,11 +293047,7 @@ { "fuzzy": [ [ - [ - "/css/css-view-transitions/massive-element-on-top-of-viewport-partially-onscreen-old.html", - "/css/css-view-transitions/massive-element-on-top-of-viewport-partially-onscreen-ref.html", - "==" - ], + null, [ [ 0, @@ -292958,9 +293064,9 @@ ] ], "massive-element-right-and-left-of-viewport-partially-onscreen-new.html": [ - "b1bae1c09b67d9abb465a3d96dcd082a50578e08", + "426751d09397f101cbd981bdfbc4c32731c1ae64", [ - "css/css-view-transitions/massive-element-right-and-left-of-viewport-partially-onscreen-new.html", + null, [ [ "/css/css-view-transitions/massive-element-right-and-left-of-viewport-partially-onscreen-ref.html", @@ -292970,11 +293076,7 @@ { "fuzzy": [ [ - [ - "/css/css-view-transitions/massive-element-right-and-left-of-viewport-partially-onscreen-new.html", - "/css/css-view-transitions/massive-element-right-and-left-of-viewport-partially-onscreen-ref.html", - "==" - ], + null, [ [ 0, @@ -292991,9 +293093,9 @@ ] ], "massive-element-right-and-left-of-viewport-partially-onscreen-old.html": [ - "c878ce881ec5ad51fee148a371c5227de2ed5d4f", + "ea10e2471bb3c574d66ea02cca5a1b2d3884ff04", [ - "css/css-view-transitions/massive-element-right-and-left-of-viewport-partially-onscreen-old.html", + null, [ [ "/css/css-view-transitions/massive-element-right-and-left-of-viewport-partially-onscreen-ref.html", @@ -293003,11 +293105,7 @@ { "fuzzy": [ [ - [ - "/css/css-view-transitions/massive-element-right-and-left-of-viewport-partially-onscreen-old.html", - "/css/css-view-transitions/massive-element-right-and-left-of-viewport-partially-onscreen-ref.html", - "==" - ], + null, [ [ 0, @@ -293015,7 +293113,7 @@ ], [ 0, - 330 + 700 ] ] ] @@ -293024,9 +293122,9 @@ ] ], "massive-element-right-of-viewport-offscreen-new.html": [ - "91b133f2cf30f802f90973caf919af9788cb7078", + "53749f29b2f9147cd1fbeb4d82fcdc8ecdb55bb0", [ - "css/css-view-transitions/massive-element-right-of-viewport-offscreen-new.html", + null, [ [ "/css/css-view-transitions/massive-element-right-of-viewport-offscreen-ref.html", @@ -293036,11 +293134,7 @@ { "fuzzy": [ [ - [ - "/css/css-view-transitions/massive-element-right-of-viewport-offscreen-new.html", - "/css/css-view-transitions/massive-element-right-of-viewport-offscreen-ref.html", - "==" - ], + null, [ [ 0, @@ -293057,9 +293151,9 @@ ] ], "massive-element-right-of-viewport-offscreen-old.html": [ - "164ff05f931e9e41177352ba74016e5b49e29043", + "5ffb5443fb3b35ced10e70b2e53c8d5494ad4477", [ - "css/css-view-transitions/massive-element-right-of-viewport-offscreen-old.html", + null, [ [ "/css/css-view-transitions/massive-element-right-of-viewport-offscreen-ref.html", @@ -293069,11 +293163,7 @@ { "fuzzy": [ [ - [ - "/css/css-view-transitions/massive-element-right-of-viewport-offscreen-old.html", - "/css/css-view-transitions/massive-element-right-of-viewport-offscreen-ref.html", - "==" - ], + null, [ [ 0, @@ -293081,7 +293171,7 @@ ], [ 0, - 445 + 1497777777 ] ] ] @@ -293090,9 +293180,9 @@ ] ], "massive-element-right-of-viewport-partially-onscreen-new.html": [ - "b63ed0722525a2669da67d38d4e329d47209d153", + "9daadd97de44265cffed8dbe29977ee36bf80e66", [ - "css/css-view-transitions/massive-element-right-of-viewport-partially-onscreen-new.html", + null, [ [ "/css/css-view-transitions/massive-element-right-of-viewport-partially-onscreen-ref.html", @@ -293102,11 +293192,7 @@ { "fuzzy": [ [ - [ - "/css/css-view-transitions/massive-element-right-of-viewport-partially-onscreen-new.html", - "/css/css-view-transitions/massive-element-right-of-viewport-partially-onscreen-ref.html", - "==" - ], + null, [ [ 0, @@ -293123,9 +293209,9 @@ ] ], "massive-element-right-of-viewport-partially-onscreen-old.html": [ - "cf090e0ab4c19e10e9c11fc2ce13c7db3836d5a4", + "b99d752e3fe931a054bad945cc0bda390dd175be", [ - "css/css-view-transitions/massive-element-right-of-viewport-partially-onscreen-old.html", + null, [ [ "/css/css-view-transitions/massive-element-right-of-viewport-partially-onscreen-ref.html", @@ -293135,11 +293221,7 @@ { "fuzzy": [ [ - [ - "/css/css-view-transitions/massive-element-right-of-viewport-partially-onscreen-old.html", - "/css/css-view-transitions/massive-element-right-of-viewport-partially-onscreen-ref.html", - "==" - ], + null, [ [ 0, @@ -293156,9 +293238,9 @@ ] ], "modify-style-via-cssom.html": [ - "6f026607bc5c24eb8f3cf41166025da3d212cf85", + "5e96a68465c49d959623eff2f68196fd096001bc", [ - "css/css-view-transitions/modify-style-via-cssom.html", + null, [ [ "/css/css-view-transitions/modify-style-via-cssom-ref.html", @@ -293169,9 +293251,9 @@ ] ], "multiline-span-with-overflowing-text-and-box-decorations.html": [ - "e166b3c9dfe66370a4800ff6cac37e236100d62d", + "423cd255081e52b6feea7aa2b637e1c974dfbb0c", [ - "css/css-view-transitions/multiline-span-with-overflowing-text-and-box-decorations.html", + null, [ [ "/css/css-view-transitions/multiline-span-with-overflowing-text-and-box-decorations-ref.html", @@ -293181,11 +293263,7 @@ { "fuzzy": [ [ - [ - "/css/css-view-transitions/multiline-span-with-overflowing-text-and-box-decorations.html", - "/css/css-view-transitions/multiline-span-with-overflowing-text-and-box-decorations-ref.html", - "==" - ], + null, [ [ 0, @@ -293202,9 +293280,9 @@ ] ], "named-element-with-fix-pos-child-new.html": [ - "8a552b03a5ec5d4f3c8c84433023faeb5130116d", + "402c2a41318b35e3e6bbe2edc7df0fb666c88e09", [ - "css/css-view-transitions/named-element-with-fix-pos-child-new.html", + null, [ [ "/css/css-view-transitions/named-element-with-fix-pos-child-ref.html", @@ -293215,9 +293293,9 @@ ] ], "named-element-with-fix-pos-child-old.html": [ - "a8211f4200e494340e9696f1ed5a62f25ed3770b", + "b011291bfcda016f8721b52e11b07042cd5b8eff", [ - "css/css-view-transitions/named-element-with-fix-pos-child-old.html", + null, [ [ "/css/css-view-transitions/named-element-with-fix-pos-child-ref.html", @@ -293227,8 +293305,923 @@ {} ] ], + "names-are-tree-scoped.html": [ + "efca07e209da39040ee6a954480801e1280d427e", + [ + null, + [ + [ + "/css/css-view-transitions/names-are-tree-scoped-ref.html", + "==" + ] + ], + {} + ] + ], + "navigation": { + "at-rule-opt-in-auto.html": [ + "8993cf1a6772e5fc72908482539b5fb9e4f43e61", + [ + null, + [ + [ + "/css/css-view-transitions/navigation/at-rule-opt-in-auto-ref.html", + "==" + ] + ], + {} + ] + ], + "at-rule-opt-in-none-in-new.html": [ + "2aecb7b91355086acba7908c9069716415aa5f38", + [ + null, + [ + [ + "/css/css-view-transitions/navigation/at-rule-opt-in-none-ref.html", + "==" + ] + ], + {} + ] + ], + "at-rule-opt-in-none-in-old.html": [ + "b5b0b3a1104d1eae0e7a7ae68728136ca9d99d51", + [ + null, + [ + [ + "/css/css-view-transitions/navigation/at-rule-opt-in-none-ref.html", + "==" + ] + ], + {} + ] + ], + "chromium-paint-holding-timeout.html": [ + "83596940fa420005492b38def7e8cd49d0252632", + [ + null, + [ + [ + "/css/css-view-transitions/navigation/chromium-paint-holding-timeout-ref.html", + "==" + ] + ], + {} + ] + ], + "navigation-auto-excludes-reload.html": [ + "c0fb61a4b0aa85848f55332e5d491798854853b0", + [ + null, + [ + [ + "/css/css-view-transitions/navigation/navigation-auto-excludes-reload-ref.html", + "==" + ] + ], + {} + ] + ], + "no-view-transition-with-cross-origin-redirect.sub.html": [ + "8780310af2ff2942de48a824919c8c4b950519cb", + [ + null, + [ + [ + "/css/css-view-transitions/navigation/no-view-transition-with-cross-origin-redirect-ref.html", + "==" + ] + ], + {} + ] + ], + "opt-in-removed-during-transition.html": [ + "eb2295f2f0306be34afcbbe17f0ca726c3a7eb8e", + [ + null, + [ + [ + "/css/css-view-transitions/navigation/opt-in-removed-during-transition-ref.html", + "==" + ] + ], + {} + ] + ], + "pagereveal-finished-promise.html": [ + "baac948bac431a2c0a9774b098b137bc1a93d520", + [ + null, + [ + [ + "/css/css-view-transitions/navigation/pagereveal-finished-promise-ref.html", + "==" + ] + ], + {} + ] + ], + "pagereveal-ready-promise.html": [ + "65b370c9c052e07de27c62e072850792a5a4c2ab", + [ + null, + [ + [ + "/css/css-view-transitions/navigation/pagereveal-ready-promise-ref.html", + "==" + ] + ], + {} + ] + ], + "pagereveal-setup-transition.html": [ + "7407824ea73d5649028cae7fe3838676fece1577", + [ + null, + [ + [ + "/css/css-view-transitions/navigation/pagereveal-setup-transition-ref.html", + "==" + ] + ], + {} + ] + ], + "pageswap-fired-before-old-state-capture.html": [ + "8ce791bcaecfdc181da3c34a644d1014fe806e36", + [ + null, + [ + [ + "/css/css-view-transitions/navigation/pageswap-fired-before-old-state-capture-ref.html", + "==" + ] + ], + {} + ] + ], + "prerender-removed-during-navigation.html": [ + "d261b0df5520fc9b5ce6deb5112138111e3a5899", + [ + null, + [ + [ + "/css/css-view-transitions/navigation/prerender-removed-during-navigation-ref.html", + "==" + ] + ], + {} + ] + ], + "root-and-nested-element-transition.html": [ + "457f263bf955eabd43bd38c1dbabeafcbc89f7b2", + [ + null, + [ + [ + "/css/css-view-transitions/navigation/root-and-nested-element-transition-ref.html", + "==" + ] + ], + { + "fuzzy": [ + [ + [ + "/css/css-view-transitions/navigation/root-and-nested-element-transition.html", + "/css/css-view-transitions/navigation/root-and-nested-element-transition-ref.html", + "==" + ], + [ + [ + 0, + 2 + ], + [ + 0, + 2000 + ] + ] + ] + ] + } + ] + ], + "root-element-transition-iframe-cross-origin.sub.html": [ + "51a7c926e6d04088285e83bc1d492fdf071406cb", + [ + null, + [ + [ + "/css/css-view-transitions/navigation/root-element-transition-iframe-ref.html", + "==" + ] + ], + {} + ] + ], + "root-element-transition-iframe-with-startVT-on-main.html": [ + "b7ef426121c3435587f8cb33d05957e9aab019e9", + [ + null, + [ + [ + "/css/css-view-transitions/navigation/root-element-transition-iframe-with-startVT-on-main-ref.html", + "==" + ] + ], + {} + ] + ], + "root-element-transition-iframe.html": [ + "a320d92c698c0b0f287de1d70e217d0e254b1665", + [ + null, + [ + [ + "/css/css-view-transitions/navigation/root-element-transition-iframe-ref.html", + "==" + ] + ], + {} + ] + ], + "root-element-transition-no-opt-in-on-new.html": [ + "5cec74aac2d768ef065ae88bf73b9b805e98f812", + [ + null, + [ + [ + "/css/css-view-transitions/navigation/root-element-transition-no-opt-in-ref.html", + "==" + ] + ], + {} + ] + ], + "root-element-transition-no-opt-in-on-old.html": [ + "9d834ffd6a1c4815dc9b71e12c8eb3c0e525a78e", + [ + null, + [ + [ + "/css/css-view-transitions/navigation/root-element-transition-no-opt-in-ref.html", + "==" + ] + ], + {} + ] + ], + "root-element-transition-opt-in-removed-on-new.html": [ + "46daf95e5e4e1f31229692aea8b10504311a9ec0", + [ + null, + [ + [ + "/css/css-view-transitions/navigation/root-element-transition-no-opt-in-ref.html", + "==" + ] + ], + {} + ] + ], + "root-element-transition-opt-in-removed-on-old.html": [ + "5fab64a306712d2bdf81facba96be6038201adde", + [ + null, + [ + [ + "/css/css-view-transitions/navigation/root-element-transition-no-opt-in-ref.html", + "==" + ] + ], + {} + ] + ], + "root-element-transition.html": [ + "fb293b83994cc51fdd60e96fd08789801b2666d8", + [ + null, + [ + [ + "/css/css-view-transitions/navigation/root-element-transition-ref.html", + "==" + ] + ], + {} + ] + ], + "transition-to-prerender.html": [ + "bdc66708970bda64e24f0f64b6a5525d0a8947ff", + [ + null, + [ + [ + "/css/css-view-transitions/navigation/transition-to-prerender-ref.html", + "==" + ] + ], + {} + ] + ], + "with-types": { + "at-rule-opt-in-auto-with-types-mutable.html": [ + "307e8a8b747eabce19d0e3dac100d0c040512c09", + [ + null, + [ + [ + "/css/css-view-transitions/navigation/at-rule-opt-in-auto-ref.html", + "==" + ] + ], + {} + ] + ], + "at-rule-opt-in-auto-with-types-no-cascade.html": [ + "5fec29db89c7d833cdf3bf325bf3b20c6e065f97", + [ + null, + [ + [ + "/css/css-view-transitions/navigation/at-rule-opt-in-auto-ref.html", + "==" + ] + ], + {} + ] + ], + "at-rule-opt-in-auto-with-types.html": [ + "87503d9f1e360cffd85cfb0369ec7f3b305ff05f", + [ + null, + [ + [ + "/css/css-view-transitions/navigation/at-rule-opt-in-auto-ref.html", + "==" + ] + ], + {} + ] + ] + } + }, + "nested": { + "adjust-transform-with-scale.tentative.html": [ + "e58a7f363004def39a6ef9e8acb8e73e84dd18e2", + [ + "css/css-view-transitions/nested/adjust-transform-with-scale.tentative.html", + [ + [ + "/css/css-view-transitions/nested/nested-ref-100.html", + "==" + ] + ], + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 255 + ], + [ + 0, + 1250 + ] + ] + ] + ] + } + ] + ], + "adjust-transform.tenative.html": [ + "bbf9e8376e57e291c11516436af720fb94d26b0b", + [ + "css/css-view-transitions/nested/adjust-transform.tenative.html", + [ + [ + "/css/css-view-transitions/nested/nested-ref-100.html", + "==" + ] + ], + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 255 + ], + [ + 0, + 515 + ] + ] + ] + ] + } + ] + ], + "compute-explicit-name-direct.tentative.html": [ + "d0b3e0f16d64e710cd2cfb144bff0c4ebcddda78", + [ + "css/css-view-transitions/nested/compute-explicit-name-direct.tentative.html", + [ + [ + "/css/css-view-transitions/nested/nested-ref.html", + "==" + ] + ], + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 255 + ], + [ + 0, + 515 + ] + ] + ] + ] + } + ] + ], + "compute-explicit-name-nested-vt-names.tentative.html": [ + "b5b12197712657f1e917162b37482465dbd48487", + [ + "css/css-view-transitions/nested/compute-explicit-name-nested-vt-names.tentative.html", + [ + [ + "/css/css-view-transitions/nested/nested-ref.html", + "==" + ] + ], + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 255 + ], + [ + 0, + 515 + ] + ] + ] + ] + } + ] + ], + "compute-explicit-name-nested.tentative.html": [ + "ad47461b142323817196f49c81b0e8ada34f4154", + [ + "css/css-view-transitions/nested/compute-explicit-name-nested.tentative.html", + [ + [ + "/css/css-view-transitions/nested/nested-ref.html", + "==" + ] + ], + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 255 + ], + [ + 0, + 515 + ] + ] + ] + ] + } + ] + ], + "compute-explicit-name-non-ancestor.tentative.html": [ + "8a2c69147ad6bfe28146b1ab22db857fdf0e2fa3", + [ + "css/css-view-transitions/nested/compute-explicit-name-non-ancestor.tentative.html", + [ + [ + "/css/css-view-transitions/nested/nested-ref.html", + "==" + ] + ], + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 255 + ], + [ + 0, + 515 + ] + ] + ] + ] + } + ] + ], + "compute-explicit-name-non-existent.tentative.html": [ + "2e3d71f96d15abb468a03d6a7f41a26399867a38", + [ + "css/css-view-transitions/nested/compute-explicit-name-non-existent.tentative.html", + [ + [ + "/css/css-view-transitions/nested/nested-ref.html", + "==" + ] + ], + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 255 + ], + [ + 0, + 515 + ] + ] + ] + ] + } + ] + ], + "compute-explicit-name-self.tentative.html": [ + "09aa0f653318610fca56decf9366e984c1d4f0a7", + [ + "css/css-view-transitions/nested/compute-explicit-name-self.tentative.html", + [ + [ + "/css/css-view-transitions/nested/nested-ref.html", + "==" + ] + ], + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 255 + ], + [ + 0, + 515 + ] + ] + ] + ] + } + ] + ], + "contain-direct.tentative.html": [ + "8cc856883df16410730d40da72d3ef4cc35562be", + [ + "css/css-view-transitions/nested/contain-direct.tentative.html", + [ + [ + "/css/css-view-transitions/nested/nested-ref.html", + "==" + ] + ], + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 255 + ], + [ + 0, + 515 + ] + ] + ] + ] + } + ] + ], + "contain-nested.tentative.html": [ + "643aad7b6db97b890ecd7fcb9e650915426d3520", + [ + "css/css-view-transitions/nested/contain-nested.tentative.html", + [ + [ + "/css/css-view-transitions/nested/nested-ref.html", + "==" + ] + ], + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 255 + ], + [ + 0, + 515 + ] + ] + ] + ] + } + ] + ], + "contain-on-self.tentative.html": [ + "f8662850bb94b64e27448b9e1187f7c4a5e788d6", + [ + "css/css-view-transitions/nested/contain-on-self.tentative.html", + [ + [ + "/css/css-view-transitions/nested/nested-ref.html", + "==" + ] + ], + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 255 + ], + [ + 0, + 515 + ] + ] + ] + ] + } + ] + ], + "nearest-direct.tentative.html": [ + "a42e5a847c053b2b248208df64be87512b24716e", + [ + "css/css-view-transitions/nested/nearest-direct.tentative.html", + [ + [ + "/css/css-view-transitions/nested/nested-ref.html", + "==" + ] + ], + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 255 + ], + [ + 0, + 515 + ] + ] + ] + ] + } + ] + ], + "nearest-ignores-nearest-name.tentative.html": [ + "ddae634f87a0ace4216ea66cbb72bc7734df3e10", + [ + "css/css-view-transitions/nested/nearest-ignores-nearest-name.tentative.html", + [ + [ + "/css/css-view-transitions/nested/nested-ref.html", + "==" + ] + ], + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 255 + ], + [ + 0, + 515 + ] + ] + ] + ] + } + ] + ], + "nearest-nested.tentative.html": [ + "9ec3e8f95ffe3194e85cdbe455ee3b3a3d723211", + [ + "css/css-view-transitions/nested/nearest-nested.tentative.html", + [ + [ + "/css/css-view-transitions/nested/nested-ref.html", + "==" + ] + ], + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 255 + ], + [ + 0, + 515 + ] + ] + ] + ] + } + ] + ], + "nested-exit.tentative.html": [ + "4612a88a13021f51b28e6d276de6f4d9ef5582a1", + [ + "css/css-view-transitions/nested/nested-exit.tentative.html?vtmode=crossdoc", + [ + [ + "/css/css-view-transitions/nested/nested-ref-100.html?vtmode=crossdoc", + "==" + ] + ], + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 255 + ], + [ + 0, + 515 + ] + ] + ] + ] + } + ] + ], + "nested-group-display-none.tentative.html": [ + "084348732540c7651230c3072ee736dbea0c0bd5", + [ + "css/css-view-transitions/nested/nested-group-display-none.tentative.html", + [ + [ + "/css/css-view-transitions/nested/nested-ref.html", + "==" + ] + ], + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 255 + ], + [ + 0, + 515 + ] + ] + ] + ] + } + ] + ], + "nested-group-in-pseudo-basic.tentative.html": [ + "77241d06b73217a9a99f46aa9838f3ebb7507732", + [ + "css/css-view-transitions/nested/nested-group-in-pseudo-basic.tentative.html", + [ + [ + "/css/css-view-transitions/nested/nested-ref.html", + "==" + ] + ], + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 255 + ], + [ + 0, + 515 + ] + ] + ] + ] + } + ] + ], + "normal-goes-up.tentative.html": [ + "f68c93d474425d958b46c3dcd2d29197f797fbdd", + [ + "css/css-view-transitions/nested/normal-goes-up.tentative.html", + [ + [ + "/css/css-view-transitions/nested/nested-ref.html", + "==" + ] + ], + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 255 + ], + [ + 0, + 515 + ] + ] + ] + ] + } + ] + ], + "render-element.tentative.html": [ + "59a5a108314c0270b561339bf9a8a0cb6fdfe27d", + [ + "css/css-view-transitions/nested/render-element.tentative.html", + [ + [ + "/css/css-view-transitions/nested/nested-ref-100.html", + "==" + ] + ], + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 255 + ], + [ + 0, + 515 + ] + ] + ] + ] + } + ] + ] + }, "new-and-old-sizes-match.html": [ - "78efa9d82fa7591f62d855b2fe8ab80c4140f0fe", + "70b6515fb5b8189c925127636f7860ae424f0284", [ null, [ @@ -293240,11 +294233,7 @@ { "fuzzy": [ [ - [ - "/css/css-view-transitions/new-and-old-sizes-match.html", - "/css/css-view-transitions/new-and-old-sizes-match-ref.html", - "==" - ], + null, [ [ 0, @@ -293260,8 +294249,34 @@ } ] ], + "new-content-ancestor-clipped-2.html": [ + "3ce02097476ec97219e2991ab1366f1ea746caa1", + [ + null, + [ + [ + "/css/css-view-transitions/new-content-ancestor-clipped-2-ref.html", + "==" + ] + ], + {} + ] + ], + "new-content-ancestor-clipped.html": [ + "69a8de5f527a459f2a85b562dee46b8298bbb65e", + [ + null, + [ + [ + "/css/css-view-transitions/new-content-ancestor-clipped-ref.html", + "==" + ] + ], + {} + ] + ], "new-content-captures-clip-path.html": [ - "4a2dfc78c2746c02ca7aae34685292fbc76aed47", + "19af2493d05ed1e0d4fd82a01dcb8f5dc304a731", [ null, [ @@ -293273,11 +294288,7 @@ { "fuzzy": [ [ - [ - "/css/css-view-transitions/new-content-captures-clip-path.html", - "/css/css-view-transitions/new-content-captures-clip-path-ref.html", - "==" - ], + null, [ [ 0, @@ -293294,7 +294305,7 @@ ] ], "new-content-captures-different-size.html": [ - "a891dec55532d6a740a459772f65acb39136cd9b", + "18f323c32075bc9f10d6f007ab18eb2caad3812f", [ null, [ @@ -293306,11 +294317,7 @@ { "fuzzy": [ [ - [ - "/css/css-view-transitions/new-content-captures-different-size.html", - "/css/css-view-transitions/new-content-captures-different-size-ref.html", - "==" - ], + null, [ [ 0, @@ -293328,7 +294335,7 @@ ] ], "new-content-captures-opacity.html": [ - "ab4efd1f42478c2fb1c78b224a564623b3197046", + "03d2cc858e0fc5bcd0d728a0d9f5a6e0b579557d", [ null, [ @@ -293341,9 +294348,9 @@ ] ], "new-content-captures-positioned-spans.html": [ - "b88654cd379c92316e6eee6ed6e27ba0c80038fb", + "7ea6b1583c8e6f5439a850e8a48c974d60027401", [ - "css/css-view-transitions/new-content-captures-positioned-spans.html", + null, [ [ "/css/css-view-transitions/new-content-captures-positioned-spans-ref.html", @@ -293354,7 +294361,7 @@ ] ], "new-content-captures-root.html": [ - "84e55de58a79ae2efc205ecb406cc3c4360d5fd7", + "90b13c338cf907612b5137240c75d341d0aff77c", [ null, [ @@ -293367,22 +294374,53 @@ ] ], "new-content-captures-spans.html": [ - "843f6752d76740550f8348ed3cd3c9134700aa77", + "c099ff7ced67eb8b610bfb022ef31c3599bad6e7", [ - "css/css-view-transitions/new-content-captures-spans.html", + null, [ [ "/css/css-view-transitions/new-content-captures-spans-ref.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 1 + ], + [ + 0, + 400 + ] + ] + ] + ] + } + ] + ], + "new-content-changes-overflow-left.html": [ + "e362dce76acd0456698c6400143bc60357b4561c", + [ + null, + [ + [ + "/css/css-view-transitions/new-content-changes-overflow-left-ref.html", + "==" + ] + ], + { + "timeout": "long" + } ] ], "new-content-changes-overflow.html": [ - "a8e2fa8c6b090551ee172cb028810f69d88fb2e5", + "9dbd25883396b330fa14a95f9a465e5d995968fd", [ - "css/css-view-transitions/new-content-changes-overflow.html", + null, [ [ "/css/css-view-transitions/new-content-changes-overflow-ref.html", @@ -293395,7 +294433,7 @@ ] ], "new-content-container-writing-modes.html": [ - "e7ac768e17d6104d0f70cab29a891c8b08b03c8c", + "c6fceff6c11a455cb182597ee21b4362d4e2cc0a", [ null, [ @@ -293408,9 +294446,9 @@ ] ], "new-content-element-writing-modes.html": [ - "d7740d78f54f52766c58adfcd618d1e260bdba42", + "6a975c6d9c3aa6b141ec4ff9c9ca0a3fcccb594c", [ - "css/css-view-transitions/new-content-element-writing-modes.html", + null, [ [ "/css/css-view-transitions/new-content-element-writing-modes-ref.html", @@ -293420,10 +294458,52 @@ {} ] ], + "new-content-escapes-clip-with-abspos-child.html": [ + "4c90a78b505e26c87d0a8f6a2df29a85886d6fd0", + [ + null, + [ + [ + "/css/css-view-transitions/content-escapes-clip-with-abspos-child-ref.html", + "==" + ] + ], + {} + ] + ], + "new-content-flat-transform-ancestor.html": [ + "112a0af2c45d8df8b6e2a8580dece11e86f816e8", + [ + null, + [ + [ + "/css/css-view-transitions/new-content-flat-transform-ancestor-ref.html", + "==" + ] + ], + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 63 + ], + [ + 0, + 510 + ] + ] + ] + ] + } + ] + ], "new-content-from-root-display-none.html": [ - "4d2ad28b17844f0b878a408cb8c04ff895aea06c", + "e59c029ccce74d22c553af008d478e8accf3cef1", [ - "css/css-view-transitions/new-content-from-root-display-none.html", + null, [ [ "/css/css-view-transitions/new-content-from-root-display-none-ref.html", @@ -293434,7 +294514,7 @@ ] ], "new-content-has-scrollbars.html": [ - "4024952b13ac1953d9874ad08dfcd6bf08edeadd", + "834d0e8f454ebd7f87f5cde66d19d475563d4a3e", [ null, [ @@ -293446,11 +294526,7 @@ { "fuzzy": [ [ - [ - "/css/css-view-transitions/new-content-has-scrollbars.html", - "/css/css-view-transitions/new-content-has-scrollbars-ref.html", - "==" - ], + null, [ [ 0, @@ -293467,8 +294543,21 @@ } ] ], + "new-content-inline-with-offset-from-containing-block-clipped.html": [ + "2b122d0a74620db0fa67c545d65a82624fa8e666", + [ + null, + [ + [ + "/css/css-view-transitions/inline-with-offset-from-containing-block-clipped-ref.html", + "==" + ] + ], + {} + ] + ], "new-content-intrinsic-aspect-ratio.html": [ - "53ec94122f06998a01c3b69b47d5c312e15e21d0", + "60f2b92036c246803bae4b5d207e6ff5aa612d0f", [ null, [ @@ -293481,7 +294570,7 @@ ] ], "new-content-is-empty-div.html": [ - "bacc63f1945835678628f59c229540e990e6e30e", + "a61a6f06ef630b2d0571595c9c5a77b493bc152f", [ null, [ @@ -293494,9 +294583,9 @@ ] ], "new-content-is-inline.html": [ - "46c96acb0471eace651554d4796673b2e06dd7e6", + "9be8332c857beee817788a85e3c0b876c8e6b0d0", [ - "css/css-view-transitions/new-content-is-inline.html", + null, [ [ "/css/css-view-transitions/new-content-is-inline-ref.html", @@ -293506,11 +294595,7 @@ { "fuzzy": [ [ - [ - "/css/css-view-transitions/new-content-is-inline.html", - "/css/css-view-transitions/new-content-is-inline-ref.html", - "==" - ], + null, [ [ 0, @@ -293527,9 +294612,9 @@ ] ], "new-content-object-fit-fill.html": [ - "b891eee16d5e93258f8bf8df0ce80b5bdb9b2d6e", + "a610d688023439155382f48f2b9fb6b4b81d030a", [ - "css/css-view-transitions/new-content-object-fit-fill.html", + null, [ [ "/css/css-view-transitions/content-object-fit-fill-ref.html", @@ -293539,11 +294624,7 @@ { "fuzzy": [ [ - [ - "/css/css-view-transitions/new-content-object-fit-fill.html", - "/css/css-view-transitions/content-object-fit-fill-ref.html", - "==" - ], + null, [ [ 0, @@ -293560,9 +294641,9 @@ ] ], "new-content-object-fit-none.html": [ - "d4b81b1a0eeadb38f13b7ae00a4d694d90e43568", + "ccdbc6edc38f8f61bc8d1ffd290a541e35a3cd96", [ - "css/css-view-transitions/new-content-object-fit-none.html", + null, [ [ "/css/css-view-transitions/content-object-fit-none-ref.html", @@ -293573,7 +294654,7 @@ ] ], "new-content-object-view-box-clip-path-reference.html": [ - "01a3ed3204fb418947a1d89f237ef918327a394e", + "73346e66df3ffb55fb1081a2e9088d8a6a4cf54b", [ null, [ @@ -293586,7 +294667,7 @@ ] ], "new-content-object-view-box-clip-path.html": [ - "dcd5fec70a1c539c65dbd665d13442f0a4725966", + "47b1e91c9dd4fa417a0bcb9edc21f68761d1bdff", [ null, [ @@ -293599,7 +294680,7 @@ ] ], "new-content-object-view-box-overflow-clipped.html": [ - "593901529f43b2daa0b02e1e1eb9c9ff0e05d2fd", + "1c4761f1f3ba549603aebb17bacd6efa08fc6e39", [ null, [ @@ -293612,7 +294693,7 @@ ] ], "new-content-object-view-box-overflow.html": [ - "2bbea1e1c4c54d5e5e6281de8f14ccc4bae8aad1", + "89e83beb7fe611a34214a9e6f641dd29788a30e1", [ null, [ @@ -293624,8 +294705,50 @@ {} ] ], + "new-content-preserve-3d-ancestor.html": [ + "61f274d276cae22f5f52b45bb16bd3b0600e8b1e", + [ + null, + [ + [ + "/css/css-view-transitions/new-content-preserve-3d-ancestor-ref.html", + "==" + ] + ], + {} + ] + ], + "new-content-root-scrollbar-with-fixed-background.html": [ + "89f8158b58b96886ad0abcc6bb2f1e3c6663ff37", + [ + null, + [ + [ + "/css/css-view-transitions/root-scrollbar-with-fixed-background-ref.html", + "==" + ] + ], + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 2 + ], + [ + 0, + 4500 + ] + ] + ] + ] + } + ] + ], "new-content-scaling.html": [ - "4ea3c2e04a486b74c8c92b2ca473ad9f2a2bfe44", + "376b7fd11f7e2e86e549c300fcb09cc8767751c4", [ null, [ @@ -293637,11 +294760,7 @@ { "fuzzy": [ [ - [ - "/css/css-view-transitions/new-content-scaling.html", - "/css/css-view-transitions/new-content-scaling-ref.html", - "==" - ], + null, [ [ 0, @@ -293657,10 +294776,23 @@ } ] ], + "new-content-transform-position-fixed.html": [ + "4b27796c9b4fa224b82514fd0c05bea56a125ea1", + [ + null, + [ + [ + "/css/css-view-transitions/new-content-transform-position-fixed-ref.html", + "==" + ] + ], + {} + ] + ], "new-content-with-object-view-box.html": [ - "47917e90f3011342a6490834c11f125afe4c87cf", + "40139bbaa95b8d8ec612bab52ed527d0b5c00455", [ - "css/css-view-transitions/new-content-with-object-view-box.html", + null, [ [ "/css/css-view-transitions/content-with-object-view-box-ref.html", @@ -293673,7 +294805,7 @@ ] ], "new-content-with-overflow-zoomed.html": [ - "59170ebf00349710d34c8f5fd2966352b1d23594", + "4ab9fa5a5751c1083afb69ca84f36cd9a1481fa5", [ null, [ @@ -293686,7 +294818,7 @@ ] ], "new-content-with-overflow.html": [ - "e2dc045089b024fce27e8a1ce1facacbab5ef2aa", + "165b4710ca355471aa2b0b5655e57f14393b70d6", [ null, [ @@ -293699,9 +294831,9 @@ ] ], "new-element-on-start.html": [ - "7e870e9d892195b5d6511013e70a6cf2f2ad8282", + "d57bdd6d42a122273eb9335c4db1ed0f799f9819", [ - "css/css-view-transitions/new-element-on-start.html", + null, [ [ "/css/css-view-transitions/new-element-on-start-ref.html", @@ -293712,7 +294844,7 @@ ] ], "new-root-vertical-writing-mode.html": [ - "61dc5aca172cb13abfc81b390ddfa6141a0d77be", + "e956fbc6cd0fe503afc0d2cfe3a4eb732c323c4d", [ null, [ @@ -293724,8 +294856,34 @@ {} ] ], + "no-named-elements.html": [ + "ee7625591319ef36163b2337390cb8db45882bab", + [ + null, + [ + [ + "/css/css-view-transitions/no-named-elements-ref.html", + "==" + ] + ], + {} + ] + ], + "no-painting-while-render-blocked.html": [ + "1feb4759eb87e43e125f0753bd3c0c9c889816f7", + [ + null, + [ + [ + "/css/css-view-transitions/no-painting-while-render-blocked-ref.html", + "==" + ] + ], + {} + ] + ], "no-root-capture.html": [ - "9e16d1e447d9e29b639bfc8ba045fd3e6e582bfe", + "87e03266004ad19f135a46be47381be5bc94c4cc", [ null, [ @@ -293737,8 +294895,21 @@ {} ] ], + "no-white-flash-before-activation.html": [ + "1b4bb7cfaeb8204e41c09efea4ffbeb30ac408bc", + [ + null, + [ + [ + "/css/css-view-transitions/no-white-flash-before-activation-ref.html", + "==" + ] + ], + {} + ] + ], "nothing-captured.html": [ - "468cb6e199237123e9b54183c543d3e38cb803c7", + "ac5635ec7cd0983162bc4189e62c9b9628d1417a", [ null, [ @@ -293751,7 +294922,7 @@ ] ], "object-view-box-new-image.html": [ - "3ea7eb96b688f7768d752d18eeff098e7e78fc65", + "8ef19ed35876c22044125ebfad67316f7aef2704", [ null, [ @@ -293764,7 +294935,7 @@ ] ], "object-view-box-old-image.html": [ - "7f6f79ba445b94c0d1aa71aa0d5819f188c0dcd3", + "793dfd46c9f4e336829ed60a0a755a573849f443", [ null, [ @@ -293776,11 +294947,7 @@ { "fuzzy": [ [ - [ - "/css/css-view-transitions/object-view-box-old-image.html", - "/css/css-view-transitions/object-view-box-ref.html", - "==" - ], + null, [ [ 0, @@ -293798,9 +294965,9 @@ ] ], "offscreen-element-modified-before-coming-onscreen.html": [ - "77c35ab58341e3f957549e4269763f55073e7b02", + "2a47a05972d8725f6f2c6bfc7c310f8ee83b8302", [ - "css/css-view-transitions/offscreen-element-modified-before-coming-onscreen.html", + null, [ [ "/css/css-view-transitions/offscreen-element-modified-before-coming-onscreen-ref.html", @@ -293811,9 +294978,9 @@ ] ], "old-content-captures-clip-path.html": [ - "467b19d928d62492dbb33a54edebdc9f92f8bcf9", + "67aa5bf32f6b83219dba4dc0152dcbc30c002c37", [ - "css/css-view-transitions/old-content-captures-clip-path.html", + null, [ [ "/css/css-view-transitions/old-content-captures-clip-path-ref.html", @@ -293823,11 +294990,7 @@ { "fuzzy": [ [ - [ - "/css/css-view-transitions/old-content-captures-clip-path.html", - "/css/css-view-transitions/old-content-captures-clip-path-ref.html", - "==" - ], + null, [ [ 0, @@ -293844,7 +295007,7 @@ ] ], "old-content-captures-different-size.html": [ - "a8d375f06463eef00ea8bf0d509e0137658c2a88", + "7f3be742b0d400d17e3aba73360a9c9dd6de6c02", [ null, [ @@ -293856,11 +295019,7 @@ { "fuzzy": [ [ - [ - "/css/css-view-transitions/old-content-captures-different-size.html", - "/css/css-view-transitions/old-content-captures-different-size-ref.html", - "==" - ], + null, [ [ 0, @@ -293878,7 +295037,7 @@ ] ], "old-content-captures-opacity.html": [ - "ee3e3e4cde132895f9e1b4f2a1ca5dcd02710d3d", + "97b89116445f6c3588e225910c2e859e69832498", [ null, [ @@ -293890,11 +295049,7 @@ { "fuzzy": [ [ - [ - "/css/css-view-transitions/old-content-captures-opacity.html", - "/css/css-view-transitions/old-content-captures-opacity-ref.html", - "==" - ], + null, [ [ 0, @@ -293911,7 +295066,7 @@ ] ], "old-content-captures-root.html": [ - "96acb9f45550e9727464ff137b04107d3b07dccf", + "a1cb3329426aa7ab00946b92833b4440fd38f84c", [ null, [ @@ -293923,11 +295078,7 @@ { "fuzzy": [ [ - [ - "/css/css-view-transitions/old-content-captures-root.html", - "/css/css-view-transitions/old-content-captures-root-ref.html", - "==" - ], + null, [ [ 0, @@ -293944,7 +295095,7 @@ ] ], "old-content-container-writing-modes.html": [ - "9896c27152746f9598666455d1ffa133026ec1b0", + "1a0d9b9428a51deca39e829a0e4edf92fdd9623a", [ null, [ @@ -293957,7 +295108,7 @@ ] ], "old-content-element-writing-modes.html": [ - "5029c6aaaa362e47033389005ba050993100cfeb", + "3b1ba1ad4f2d5d0ff9aeb3d8376dec601e3036a1", [ null, [ @@ -293969,8 +295120,21 @@ {} ] ], + "old-content-escapes-clip-with-abspos-child.html": [ + "652bc9f952a797a812eb80e4678a0ffc4cf836d6", + [ + null, + [ + [ + "/css/css-view-transitions/content-escapes-clip-with-abspos-child-ref.html", + "==" + ] + ], + {} + ] + ], "old-content-has-scrollbars.html": [ - "781ff7c125dd524bf3c003e83a1568217852500c", + "b9638ebb10082ee73b47a5a98244f327731b0d6c", [ null, [ @@ -293982,11 +295146,7 @@ { "fuzzy": [ [ - [ - "/css/css-view-transitions/old-content-has-scrollbars.html", - "/css/css-view-transitions/old-content-has-scrollbars-ref.html", - "==" - ], + null, [ [ 0, @@ -294003,8 +295163,21 @@ } ] ], + "old-content-inline-with-offset-from-containing-block-clipped.html": [ + "7f35d8599b37188d0c0838d90126673ef1c88af4", + [ + null, + [ + [ + "/css/css-view-transitions/inline-with-offset-from-containing-block-clipped-ref.html", + "==" + ] + ], + {} + ] + ], "old-content-intrinsic-aspect-ratio.html": [ - "b46a77821781f857a5fc4742056b296092b1f113", + "bfca9d321abb9c12c2ed933c32771b94c40bf7ae", [ null, [ @@ -294017,7 +295190,7 @@ ] ], "old-content-is-empty-div.html": [ - "137060c1ddb7ad88da61593238b1b4178f158966", + "34aa580b34dc1eae2050f5aa112495e4a8dbaad9", [ null, [ @@ -294030,9 +295203,9 @@ ] ], "old-content-is-inline.html": [ - "70ff67c0e0ab78f891acf370ab19bf0e336f8dc7", + "3333a07a02963e45f3e8991ea102533226e0dc41", [ - "css/css-view-transitions/old-content-is-inline.html", + null, [ [ "/css/css-view-transitions/old-content-is-inline-ref.html", @@ -294042,11 +295215,7 @@ { "fuzzy": [ [ - [ - "/css/css-view-transitions/old-content-is-inline.html", - "/css/css-view-transitions/old-content-is-inline-ref.html", - "==" - ], + null, [ [ 0, @@ -294063,9 +295232,9 @@ ] ], "old-content-object-fit-fill.html": [ - "9ad8b14843fbb059229234fb8970f87e5a83ee48", + "51023fa27b6b1a47c03524037e5e32ad8d742a3e", [ - "css/css-view-transitions/old-content-object-fit-fill.html", + null, [ [ "/css/css-view-transitions/content-object-fit-fill-ref.html", @@ -294075,11 +295244,7 @@ { "fuzzy": [ [ - [ - "/css/css-view-transitions/old-content-object-fit-fill.html", - "/css/css-view-transitions/content-object-fit-fill-ref.html", - "==" - ], + null, [ [ 0, @@ -294096,9 +295261,9 @@ ] ], "old-content-object-fit-none.html": [ - "1275aece7cae48d02e6fc403af743337d8d20d94", + "cfe733230b9e7ad9a61cdec2dc262c01892c35ef", [ - "css/css-view-transitions/old-content-object-fit-none.html", + null, [ [ "/css/css-view-transitions/content-object-fit-none-ref.html", @@ -294109,7 +295274,7 @@ ] ], "old-content-object-view-box-clip-path-reference.html": [ - "14a1ee83d9271555f3d85b5e4a73feeb2cf532b2", + "827ca027dd5157f236b084e00595575a18ed488c", [ null, [ @@ -294121,11 +295286,7 @@ { "fuzzy": [ [ - [ - "/css/css-view-transitions/old-content-object-view-box-clip-path-reference.html", - "/css/css-view-transitions/old-content-object-view-box-clip-path-reference-ref.html", - "==" - ], + null, [ [ 0, @@ -294142,7 +295303,7 @@ ] ], "old-content-object-view-box-clip-path.html": [ - "dff57c68f6b5f5f6cfa807df9d280d499605fc45", + "d0d26b9790117bfdaded30cf9f19bb531dd51b42", [ null, [ @@ -294154,11 +295315,7 @@ { "fuzzy": [ [ - [ - "/css/css-view-transitions/old-content-object-view-box-clip-path.html", - "/css/css-view-transitions/old-content-object-view-box-clip-path-ref.html", - "==" - ], + null, [ [ 0, @@ -294175,7 +295332,7 @@ ] ], "old-content-object-view-box-overflow.html": [ - "ff9bb4e7d2be4eb7194b3bbe9730210e105fd089", + "09285ddfe4faa1d59040a4d8cc9a9743b0182d6a", [ null, [ @@ -294187,10 +295344,39 @@ {} ] ], + "old-content-root-scrollbar-with-fixed-background.html": [ + "7c8b7dd92e47d81938fb13fe0de925047f387331", + [ + null, + [ + [ + "/css/css-view-transitions/root-scrollbar-with-fixed-background-ref.html", + "==" + ] + ], + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 2 + ], + [ + 0, + 4500 + ] + ] + ] + ] + } + ] + ], "old-content-with-object-view-box.html": [ - "f24c8e60d1ea1c4e1b34dd40dedc268cd86f5de2", + "df32005546ee27a3edd23a8f3a63e8cc29bf7f15", [ - "css/css-view-transitions/old-content-with-object-view-box.html", + null, [ [ "/css/css-view-transitions/content-with-object-view-box-ref.html", @@ -294203,7 +295389,7 @@ ] ], "old-content-with-overflow-zoomed.html": [ - "10257b761fa639410849e8982e317b38baa0161c", + "fa701deb3394514fa2a25a062bd5d6949034a3b7", [ null, [ @@ -294216,7 +295402,7 @@ ] ], "old-content-with-overflow.html": [ - "6ed31d375c6f83f90253e7d4b324d81cb56f87f2", + "79c7ba160e179c24e5a4343764aacee5873e8ceb", [ null, [ @@ -294229,7 +295415,7 @@ ] ], "old-root-vertical-writing-mode.html": [ - "5f4425f64db92cecef8a9fddebd82aaa31695004", + "e94610e26165269e4e681ff38e3cca859a1e3572", [ null, [ @@ -294241,10 +295427,49 @@ {} ] ], + "paint-holding-in-iframe.html": [ + "4f2aa5360b03b8eaf65400203251ba936b947144", + [ + null, + [ + [ + "/css/css-view-transitions/paint-holding-in-iframe-ref.html", + "==" + ] + ], + {} + ] + ], + "pseudo-element-overflow-hidden.html": [ + "e40df4f6a8b196d52eb8b4da571e987af75ebfe3", + [ + null, + [ + [ + "/css/css-view-transitions/pseudo-element-overflow-hidden-ref.html", + "==" + ] + ], + {} + ] + ], + "pseudo-element-preserve-3d.html": [ + "474f743e1c50ac0dacf15980cc75a08e5bf9303f", + [ + null, + [ + [ + "/css/css-view-transitions/pseudo-element-preserve-3d-ref.html", + "==" + ] + ], + {} + ] + ], "pseudo-rendering-invalidation.html": [ - "55a9d5d373ea7042b5af5b64ab8aca380cb93197", + "4d492c40d8761ddda3551448ce725cfbb5a82f4a", [ - "css/css-view-transitions/pseudo-rendering-invalidation.html", + null, [ [ "/css/css-view-transitions/pseudo-rendering-invalidation-ref.html", @@ -294254,11 +295479,7 @@ { "fuzzy": [ [ - [ - "/css/css-view-transitions/pseudo-rendering-invalidation.html", - "/css/css-view-transitions/pseudo-rendering-invalidation-ref.html", - "==" - ], + null, [ [ 0, @@ -294274,8 +295495,216 @@ } ] ], + "pseudo-with-classes-entry.html": [ + "21f87b907ecfc055d590cbfeb81abe04fd8aa8a3", + [ + null, + [ + [ + "/css/css-view-transitions/pseudo-with-classes-ref.html", + "==" + ] + ], + {} + ] + ], + "pseudo-with-classes-exit.html": [ + "0480e1e53123b2fd7d1525e1085e36f1abf68e84", + [ + null, + [ + [ + "/css/css-view-transitions/pseudo-with-classes-ref.html", + "==" + ] + ], + {} + ] + ], + "pseudo-with-classes-match-ident.html": [ + "9cfc3f12ce8450a845f2a407f95476e10bccd1b6", + [ + null, + [ + [ + "/css/css-view-transitions/pseudo-with-classes-ref.html", + "==" + ] + ], + {} + ] + ], + "pseudo-with-classes-match-multiple-wildcard.html": [ + "261c00f0875ac4d1d566a1cca0dda13cf209132a", + [ + null, + [ + [ + "/css/css-view-transitions/pseudo-with-classes-ref.html", + "==" + ] + ], + {} + ] + ], + "pseudo-with-classes-match-multiple.html": [ + "7ff42edf366d8f97cb53961c00b84bb9feac66ec", + [ + null, + [ + [ + "/css/css-view-transitions/pseudo-with-classes-ref.html", + "==" + ] + ], + {} + ] + ], + "pseudo-with-classes-match-wildcard-no-star.html": [ + "96186cd8784ab76ea3ac4a0b210da43030bfa5a1", + [ + null, + [ + [ + "/css/css-view-transitions/pseudo-with-classes-ref.html", + "==" + ] + ], + {} + ] + ], + "pseudo-with-classes-match-wildcard.html": [ + "f777e245ba68f2c06440372bbcb671e09982c419", + [ + null, + [ + [ + "/css/css-view-transitions/pseudo-with-classes-ref.html", + "==" + ] + ], + {} + ] + ], + "pseudo-with-classes-mismatch-ident.html": [ + "107f388b388f42a51c311198cd911b54008a21d7", + [ + null, + [ + [ + "/css/css-view-transitions/pseudo-with-classes-ref.html", + "==" + ] + ], + {} + ] + ], + "pseudo-with-classes-mismatch-partial.html": [ + "ddb9b2535f26aa77e6c485e99043dd9496ef3dab", + [ + null, + [ + [ + "/css/css-view-transitions/pseudo-with-classes-ref.html", + "==" + ] + ], + {} + ] + ], + "pseudo-with-classes-mismatch-wildcard.html": [ + "1e27dc2c05ce97b54f4b362f6d21b94bf6e32d61", + [ + null, + [ + [ + "/css/css-view-transitions/pseudo-with-classes-ref.html", + "==" + ] + ], + {} + ] + ], + "pseudo-with-classes-multiple-vt-classes.html": [ + "fa7ae4eeb15f1df1366069d7fa7cdf4a3c30947f", + [ + null, + [ + [ + "/css/css-view-transitions/pseudo-with-classes-ref.html", + "==" + ] + ], + {} + ] + ], + "pseudo-with-classes-new-with-class-old-without.html": [ + "225ed1cb7f32194b67808207f899fc1034d33171", + [ + null, + [ + [ + "/css/css-view-transitions/pseudo-with-classes-ref.html", + "==" + ] + ], + {} + ] + ], + "pseudo-with-classes-old-with-class-new-without.html": [ + "f9ef100ef7edf9f279594af18cb970ea7b1dab80", + [ + null, + [ + [ + "/css/css-view-transitions/pseudo-with-classes-ref.html", + "==" + ] + ], + {} + ] + ], + "pseudo-with-classes-view-transition-group.html": [ + "f9fe20222589283591cee10fa33f88d8d47f15ad", + [ + null, + [ + [ + "/css/css-view-transitions/pseudo-with-classes-ref.html", + "==" + ] + ], + {} + ] + ], + "pseudo-with-classes-view-transition-image-pair.html": [ + "0473742260c3d40ccd8ddd311e4a40b3647a1852", + [ + null, + [ + [ + "/css/css-view-transitions/pseudo-with-classes-ref.html", + "==" + ] + ], + {} + ] + ], + "reset-state-after-scrolled-view-transition.html": [ + "5f8c14fd9b7bfc520be5b227c163adf4f518eea3", + [ + null, + [ + [ + "/css/css-view-transitions/reset-state-after-scrolled-view-transition-ref.html", + "==" + ] + ], + {} + ] + ], "root-captured-as-different-tag.html": [ - "4264db81699c395e9af0a693915b92069df7a93d", + "1d4d1610d16bd4e6e682acdc19fcad3d48aefa2f", [ null, [ @@ -294287,11 +295716,7 @@ { "fuzzy": [ [ - [ - "/css/css-view-transitions/root-captured-as-different-tag.html", - "/css/css-view-transitions/old-content-captures-root-ref.html", - "==" - ], + null, [ [ 0, @@ -294307,21 +295732,8 @@ } ] ], - "root-scrollbar-with-fixed-background.html": [ - "c657fa19fba1923c3fbde4e2aa833b07aec5e455", - [ - "css/css-view-transitions/root-scrollbar-with-fixed-background.html", - [ - [ - "/css/css-view-transitions/root-scrollbar-with-fixed-background-ref.html", - "==" - ] - ], - {} - ] - ], "root-style-change-during-animation.html": [ - "d1d291124bd6dfa57b36e24072a1be830940753f", + "0b8fb19946d63ddc99f2e68ffa5e90047fccfc66", [ null, [ @@ -294334,7 +295746,7 @@ ] ], "root-to-shared-animation-end.html": [ - "6ba07bd9e62b0cae3d4b91a29f22741517b41fca", + "52a7d771ef5eac8245418a4762f7742622e105d4", [ null, [ @@ -294347,7 +295759,7 @@ ] ], "root-to-shared-animation-incoming.html": [ - "0620e911cfaa285a76cc5a4b60329d003c1d622e", + "adddf377c6a22346b8639dd71b3347b3d38d69f7", [ null, [ @@ -294360,7 +295772,7 @@ ] ], "root-to-shared-animation-start.html": [ - "0a1cb9617e45d0c549b500a866f59274d447f759", + "e7e669539df6caed316e3d75d01ef3fbd6ecf057", [ null, [ @@ -294373,9 +295785,9 @@ ] ], "rotated-cat-off-top-edge.html": [ - "c7179b7a011ee31e1121df2149de89bc451a89aa", + "f61b916caa53c076d843851da6a859d2069889a3", [ - "css/css-view-transitions/rotated-cat-off-top-edge.html", + null, [ [ "/css/css-view-transitions/rotated-cat-off-top-edge-ref.html", @@ -294385,19 +295797,15 @@ { "fuzzy": [ [ - [ - "/css/css-view-transitions/rotated-cat-off-top-edge.html", - "/css/css-view-transitions/rotated-cat-off-top-edge-ref.html", - "==" - ], + null, [ [ 0, - 5 + 70 ], [ 0, - 1500 + 22000 ] ] ] @@ -294406,9 +295814,9 @@ ] ], "rtl-with-scrollbar.html": [ - "de2570605adbc04428b414448e1eeaeb7b55b0fb", + "c8248b5d89491e508e554e73bd3a8193b4d40bb9", [ - "css/css-view-transitions/rtl-with-scrollbar.html", + null, [ [ "/css/css-view-transitions/rtl-with-scrollbar-ref.html", @@ -294419,9 +295827,9 @@ ] ], "scroller-child-abspos.html": [ - "3b94ffa7bb99b88ee1f8a052e19feab147e577f4", + "d04f87215edfd41131a1d02b84dc4f999f8c7138", [ - "css/css-view-transitions/scroller-child-abspos.html", + null, [ [ "/css/css-view-transitions/scroller-child-abspos-ref.html", @@ -294431,11 +295839,7 @@ { "fuzzy": [ [ - [ - "/css/css-view-transitions/scroller-child-abspos.html", - "/css/css-view-transitions/scroller-child-abspos-ref.html", - "==" - ], + null, [ [ 0, @@ -294452,9 +295856,9 @@ ] ], "scroller-child.html": [ - "5cb2f03e704334dad70745a9221a035bd169502a", + "7d4368fe574d0509bf3a11e21815eb7de4bb55a8", [ - "css/css-view-transitions/scroller-child.html", + null, [ [ "/css/css-view-transitions/scroller-child-ref.html", @@ -294464,11 +295868,7 @@ { "fuzzy": [ [ - [ - "/css/css-view-transitions/scroller-child.html", - "/css/css-view-transitions/scroller-child-ref.html", - "==" - ], + null, [ [ 0, @@ -294485,9 +295885,9 @@ ] ], "scroller.html": [ - "e61d13b3166e7ebab7fb18f6180f9b6efab027b8", + "9d820468918d5f4c2c2d91cb622392e39182a055", [ - "css/css-view-transitions/scroller.html", + null, [ [ "/css/css-view-transitions/scroller-ref.html", @@ -294497,11 +295897,7 @@ { "fuzzy": [ [ - [ - "/css/css-view-transitions/scroller.html", - "/css/css-view-transitions/scroller-ref.html", - "==" - ], + null, [ [ 0, @@ -294520,7 +295916,7 @@ "set-current-time-transform.html": [ "0c7ac64f1cf504599ec7eba0bc27ddf9bca649df", [ - "css/css-view-transitions/set-current-time-transform.html", + null, [ [ "/css/css-view-transitions/set-current-time-transform-ref.html", @@ -294531,9 +295927,9 @@ ] ], "set-current-time.html": [ - "f7e802d79b4f1a6ede216cc8cb8a9879b67f2a70", + "efe561c6ea549686dfc88ad40e9cac7aa9a9b420", [ - "css/css-view-transitions/set-current-time.html", + null, [ [ "/css/css-view-transitions/set-current-time-ref.html", @@ -294543,11 +295939,7 @@ { "fuzzy": [ [ - [ - "/css/css-view-transitions/set-current-time.html", - "/css/css-view-transitions/set-current-time-ref.html", - "==" - ], + null, [ [ 0, @@ -294564,7 +295956,7 @@ ] ], "set-universal-specificity.html": [ - "ec50b1e4078589752dcc9f887a39f877cd443a40", + "2e9e9c245c12ed1e20c6e4ba5e3ccad5f3062e6f", [ null, [ @@ -294576,10 +295968,101 @@ {} ] ], + "shadow-part-with-class-inside-shadow-important.html": [ + "34d98be1fa4210694c63c8600b63139a5a12ce8c", + [ + "css/css-view-transitions/shadow-part-with-class-inside-shadow-important.html", + [ + [ + "/css/css-view-transitions/names-are-tree-scoped-ref.html", + "==" + ] + ], + {} + ] + ], + "shadow-part-with-class-inside-shadow.html": [ + "ad89ce230b541909921bad47d1031f3555117dd2", + [ + "css/css-view-transitions/shadow-part-with-class-inside-shadow.html", + [ + [ + "/css/css-view-transitions/names-are-tree-scoped-ref.html", + "==" + ] + ], + {} + ] + ], + "shadow-part-with-class.html": [ + "090fceeb14bf4387d1f7f093846301127b5d7935", + [ + "css/css-view-transitions/shadow-part-with-class.html", + [ + [ + "/css/css-view-transitions/names-are-tree-scoped-ref.html", + "==" + ] + ], + {} + ] + ], + "shadow-part-with-name-nested.html": [ + "e34903a4a2218a92fb782f34d0f5c20de4a0f37f", + [ + null, + [ + [ + "/css/css-view-transitions/names-are-tree-scoped-ref.html", + "==" + ] + ], + {} + ] + ], + "shadow-part-with-name-overridden-by-important.html": [ + "139fbd01b76cf4f832eae5d0b04f3dc2be088c26", + [ + null, + [ + [ + "/css/css-view-transitions/names-are-tree-scoped-ref.html", + "==" + ] + ], + {} + ] + ], + "shadow-part-with-name.html": [ + "192fbca20c99248c81b7b184080c1e8896608ba3", + [ + null, + [ + [ + "/css/css-view-transitions/names-are-tree-scoped-ref.html", + "==" + ] + ], + {} + ] + ], + "sibling-frames-transition.html": [ + "b4814c5ca81b768e73971ba7c1c858ac8b65c41f", + [ + null, + [ + [ + "/css/css-view-transitions/sibling-frames-transition-ref.html", + "==" + ] + ], + {} + ] + ], "snapshot-containing-block-absolute.html": [ - "ef986cd75c3b3ba6edfe11b75ce24844d9fdde4a", + "91b71f7eec99096a7f9ce7615f418634728cee5f", [ - "css/css-view-transitions/snapshot-containing-block-absolute.html", + null, [ [ "/css/css-view-transitions/snapshot-containing-block-absolute-ref.html", @@ -294589,11 +296072,7 @@ { "fuzzy": [ [ - [ - "/css/css-view-transitions/snapshot-containing-block-absolute.html", - "/css/css-view-transitions/snapshot-containing-block-absolute-ref.html", - "==" - ], + null, [ [ 0, @@ -294610,9 +296089,9 @@ ] ], "snapshot-containing-block-includes-scrollbar-gutter.html": [ - "6e9bf568f67cc3c6bb2a915b45bf0c9d86367a6a", + "40feea46ef78a5d431739b581e0fdc5f8761989d", [ - "css/css-view-transitions/snapshot-containing-block-includes-scrollbar-gutter.html", + null, [ [ "/css/css-view-transitions/snapshot-containing-block-includes-scrollbar-gutter-ref.html", @@ -294622,11 +296101,7 @@ { "fuzzy": [ [ - [ - "/css/css-view-transitions/snapshot-containing-block-includes-scrollbar-gutter.html", - "/css/css-view-transitions/snapshot-containing-block-includes-scrollbar-gutter-ref.html", - "==" - ], + null, [ [ 0, @@ -294643,9 +296118,9 @@ ] ], "snapshot-containing-block-static.html": [ - "5e03480c27e714c29d0a883b98bf58f4bdb07c97", + "44fe4cfc5e66e8afff7ad1a21db40d8d1576be37", [ - "css/css-view-transitions/snapshot-containing-block-static.html", + null, [ [ "/css/css-view-transitions/snapshot-containing-block-static-ref.html", @@ -294655,11 +296130,7 @@ { "fuzzy": [ [ - [ - "/css/css-view-transitions/snapshot-containing-block-static.html", - "/css/css-view-transitions/snapshot-containing-block-static-ref.html", - "==" - ], + null, [ [ 0, @@ -294676,9 +296147,9 @@ ] ], "span-with-overflowing-text-and-box-decorations.html": [ - "a2bf59ecb00771c3bcb68eefd6622ad86df18073", + "c22fda0f797c843582212173007f3ef42186fdea", [ - "css/css-view-transitions/span-with-overflowing-text-and-box-decorations.html", + null, [ [ "/css/css-view-transitions/span-with-overflowing-text-and-box-decorations-ref.html", @@ -294688,11 +296159,7 @@ { "fuzzy": [ [ - [ - "/css/css-view-transitions/span-with-overflowing-text-and-box-decorations.html", - "/css/css-view-transitions/span-with-overflowing-text-and-box-decorations-ref.html", - "==" - ], + null, [ [ 0, @@ -294711,7 +296178,7 @@ "span-with-overflowing-text-hidden.html": [ "65b1497c700599964efaa3e802794f2d16d5fbbf", [ - "css/css-view-transitions/span-with-overflowing-text-hidden.html", + null, [ [ "/css/css-view-transitions/span-with-overflowing-text-hidden-ref.html", @@ -294722,9 +296189,9 @@ ] ], "span-with-overflowing-text.html": [ - "f3f0f534e9e10c57d42ada86aa08d60df044f080", + "769b47159f1e965007937dc919b6618cc53ac82b", [ - "css/css-view-transitions/span-with-overflowing-text.html", + null, [ [ "/css/css-view-transitions/span-with-overflowing-text-ref.html", @@ -294734,11 +296201,7 @@ { "fuzzy": [ [ - [ - "/css/css-view-transitions/span-with-overflowing-text.html", - "/css/css-view-transitions/span-with-overflowing-text-ref.html", - "==" - ], + null, [ [ 0, @@ -294757,7 +296220,7 @@ "transform-origin-view-transition-group.html": [ "17a8218b76964d899c548dbae3e11292f8feffa7", [ - "css/css-view-transitions/transform-origin-view-transition-group.html", + null, [ [ "/css/css-view-transitions/transform-origin-view-transition-group-ref.html", @@ -294767,10 +296230,23 @@ {} ] ], + "transformed-element-scroll-transform.html": [ + "8ff0780bbd3a2dd2b827599d1c486371da91638d", + [ + null, + [ + [ + "/css/css-view-transitions/transformed-element-scroll-transform-ref.html", + "==" + ] + ], + {} + ] + ], "transition-in-empty-iframe.html": [ - "869967a57ef7a7337c4250fe5227c8860a1905bd", + "101f7c2a632f6b02ed285a0a73c46a3934b54667", [ - "css/css-view-transitions/transition-in-empty-iframe.html", + null, [ [ "/css/css-view-transitions/transition-in-empty-iframe-ref.html", @@ -294780,11 +296256,7 @@ { "fuzzy": [ [ - [ - "/css/css-view-transitions/transition-in-empty-iframe.html", - "/css/css-view-transitions/transition-in-empty-iframe-ref.html", - "==" - ], + null, [ [ 0, @@ -294827,9 +296299,9 @@ ] ], "view-transition-name-on-document-root.html": [ - "afd5d56f615b57c58ec7e10ad855e511f8b9691c", + "a25b329b030a392781398c12a7f187d300edb8de", [ - "css/css-view-transitions/view-transition-name-on-document-root.html", + null, [ [ "/css/css-view-transitions/view-transition-name-on-document-root-ref.html", @@ -294840,9 +296312,9 @@ ] ], "view-transition-name-removed-mid-transition.html": [ - "b18df685118f40ee118c4988a1c22c34328a8abc", + "265dc1fef0097fad339ef91850f47852eff51489", [ - "css/css-view-transitions/view-transition-name-removed-mid-transition.html", + null, [ [ "/css/css-view-transitions/view-transition-name-removed-mid-transition-ref.html", @@ -294852,10 +296324,273 @@ {} ] ], + "view-transition-types-match-early-mutation.html": [ + "24737d9050ef6d53be5a44c553faa2901d014928", + [ + null, + [ + [ + "/css/css-view-transitions/view-transition-types-one-green-square-ref.html", + "==" + ] + ], + {} + ] + ], + "view-transition-types-match-early.html": [ + "b62e8a716795367d5b34f33c190ffd7be4b6ad78", + [ + null, + [ + [ + "/css/css-view-transitions/view-transition-types-one-green-square-ref.html", + "==" + ] + ], + {} + ] + ], + "view-transition-types-match-late-mutation.html": [ + "dbceba111ee416e078948c0042f6e8660c764ba4", + [ + null, + [ + [ + "/css/css-view-transitions/view-transition-types-one-green-square-ref.html", + "==" + ] + ], + {} + ] + ], + "view-transition-types-matches.html": [ + "c84819e8c724da84ffeb949d63f6725569022435", + [ + "css/css-view-transitions/view-transition-types-matches.html", + [ + [ + "/css/css-view-transitions/view-transition-types-matches-ref.html", + "==" + ] + ], + {} + ] + ], + "view-transition-types-removed.html": [ + "fe458efafd302dbe3b6b4d00e58cb1f19ee1a761", + [ + null, + [ + [ + "/css/css-view-transitions/view-transition-types-one-green-square-ref.html", + "==" + ] + ], + {} + ] + ], + "view-transition-types-reserved-mutation.html": [ + "c17cff92af66771452613a7fe220be7402e096fe", + [ + "css/css-view-transitions/view-transition-types-reserved-mutation.html", + [ + [ + "/css/css-view-transitions/view-transition-types-reserved-ref.html", + "==" + ] + ], + {} + ] + ], + "view-transition-types-reserved.html": [ + "871b4104d75803a14eddbd1fd3090cc31b95fa78", + [ + "css/css-view-transitions/view-transition-types-reserved.html", + [ + [ + "/css/css-view-transitions/view-transition-types-reserved-ref.html", + "==" + ] + ], + {} + ] + ], + "view-transition-types-stay.html": [ + "dc738e6912c01850b21a93c9e8fffe925c1502b2", + [ + null, + [ + [ + "/css/css-view-transitions/view-transition-types-one-green-square-ref.html", + "==" + ] + ], + {} + ] + ], + "web-animations-api-parse-pseudo-argument.html": [ + "dfaac62c17f99e7465a32c452eaed807f289cac6", + [ + "css/css-view-transitions/web-animations-api-parse-pseudo-argument.html?first-pseudo=::view-transition-group( first )", + [ + [ + "/css/css-view-transitions/web-animations-api-ref.html?first-pseudo=::view-transition-group( first )", + "==" + ] + ], + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 2 + ], + [ + 0, + 500 + ] + ] + ] + ] + } + ], + [ + "css/css-view-transitions/web-animations-api-parse-pseudo-argument.html?first-pseudo=::view-transition-group( first", + [ + [ + "/css/css-view-transitions/web-animations-api-ref.html?first-pseudo=::view-transition-group( first", + "==" + ] + ], + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 2 + ], + [ + 0, + 500 + ] + ] + ] + ] + } + ], + [ + "css/css-view-transitions/web-animations-api-parse-pseudo-argument.html?first-pseudo=::view-transition-group( first)", + [ + [ + "/css/css-view-transitions/web-animations-api-ref.html?first-pseudo=::view-transition-group( first)", + "==" + ] + ], + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 2 + ], + [ + 0, + 500 + ] + ] + ] + ] + } + ], + [ + "css/css-view-transitions/web-animations-api-parse-pseudo-argument.html?first-pseudo=::view-transition-group(first", + [ + [ + "/css/css-view-transitions/web-animations-api-ref.html?first-pseudo=::view-transition-group(first", + "==" + ] + ], + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 2 + ], + [ + 0, + 500 + ] + ] + ] + ] + } + ], + [ + "css/css-view-transitions/web-animations-api-parse-pseudo-argument.html?first-pseudo=::view-transition-group(first )", + [ + [ + "/css/css-view-transitions/web-animations-api-ref.html?first-pseudo=::view-transition-group(first )", + "==" + ] + ], + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 2 + ], + [ + 0, + 500 + ] + ] + ] + ] + } + ], + [ + "css/css-view-transitions/web-animations-api-parse-pseudo-argument.html?first-pseudo=::view-transition-group(first)", + [ + [ + "/css/css-view-transitions/web-animations-api-ref.html?first-pseudo=::view-transition-group(first)", + "==" + ] + ], + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 2 + ], + [ + 0, + 500 + ] + ] + ] + ] + } + ] + ], "web-animations-api.html": [ - "6d8395ebb72e4a3ec8c7a663031361d602c4f25f", + "23b1504b240a92e6f2f7a99b6684a621c2631866", [ - "css/css-view-transitions/web-animations-api.html", + null, [ [ "/css/css-view-transitions/web-animations-api-ref.html", @@ -294865,11 +296600,7 @@ { "fuzzy": [ [ - [ - "/css/css-view-transitions/web-animations-api.html", - "/css/css-view-transitions/web-animations-api-ref.html", - "==" - ], + null, [ [ 0, @@ -294888,7 +296619,7 @@ "writing-mode-container-resize.html": [ "d440cf6eeb713d99aa143bdfbc6e69c7c0f6c2f8", [ - "css/css-view-transitions/writing-mode-container-resize.html", + null, [ [ "/css/css-view-transitions/writing-mode-container-resize-ref.html", @@ -294899,6 +296630,335 @@ ] ] }, + "css-viewport": { + "width.html": [ + "b76328be84913a40a1cc3dfd3de2d2d2d30b8401", + [ + null, + [ + [ + "/css/css-viewport/width-ref.html", + "==" + ] + ], + {} + ] + ], + "zoom": { + "background-image.html": [ + "805dad187d7e12a375958060e6bc5f4adc1548c2", + [ + null, + [ + [ + "/css/css-viewport/zoom/background-image-ref.html", + "==" + ] + ], + {} + ] + ], + "basic.html": [ + "580d3c83cd389ff651270d51e198feb8ef343076", + [ + null, + [ + [ + "/css/css-viewport/zoom/basic-ref.html", + "==" + ] + ], + {} + ] + ], + "border-spacing.html": [ + "f4ecb8f77a50eb6c17cfb0bdf5f165b21b2f8808", + [ + null, + [ + [ + "/css/css-viewport/zoom/reference/border-spacing-ref.html", + "==" + ] + ], + {} + ] + ], + "container-queries.html": [ + "cc8cefdd6c03a2f0da838ef1f35bfda9c1a7af48", + [ + null, + [ + [ + "/css/css-viewport/zoom/reference/container-queries-ref.html", + "==" + ] + ], + {} + ] + ], + "font-size.html": [ + "e572806be41f21297b6b864f9b74378de35a28c6", + [ + null, + [ + [ + "/css/css-viewport/zoom/font-size-ref.html", + "==" + ] + ], + {} + ] + ], + "iframe-zoom-nested.html": [ + "9dc99a0fa55ea28e4a7e36ecd90166aef64771fb", + [ + null, + [ + [ + "/css/css-viewport/zoom/reference/iframe-zoom-nested-ref.html", + "==" + ] + ], + {} + ] + ], + "iframe-zoom.sub.html": [ + "3ddfcd820d72f3ecbc5365a303f9ce1311be60b1", + [ + null, + [ + [ + "/css/css-viewport/zoom/reference/iframe-zoom-ref.html", + "==" + ] + ], + {} + ] + ], + "image-intrinsic-size.html": [ + "d152bb24eefb9fd092f3c6232d7b3a21c0bd71c0", + [ + null, + [ + [ + "/css/css-viewport/zoom/background-image-ref.html", + "==" + ] + ], + {} + ] + ], + "inherited-length.html": [ + "d83111a43528b7f0cf08732084330a43148d998b", + [ + null, + [ + [ + "/css/css-viewport/zoom/green-square-100px.html", + "==" + ] + ], + {} + ] + ], + "inherited.html": [ + "2c8ad1694a94ee3bcc8a13d604b7d129910c12a2", + [ + null, + [ + [ + "/css/css-viewport/zoom/basic-ref.html", + "==" + ] + ], + {} + ] + ], + "letter-spacing.html": [ + "03b66cddb358b64fc14401c1ecd6db9456aace21", + [ + null, + [ + [ + "/css/css-viewport/zoom/reference/letter-spacing-ref.html", + "==" + ] + ], + {} + ] + ], + "line-height.html": [ + "072d666ed290487fe747acdbb70228227b84eef1", + [ + null, + [ + [ + "/css/css-viewport/zoom/line-height-ref.html", + "==" + ] + ], + {} + ] + ], + "list-style-image.html": [ + "f6caa249f789758a87f27ebc874e3c2bda9440c9", + [ + null, + [ + [ + "/css/css-viewport/zoom/reference/list-style-image-ref.html", + "==" + ] + ], + {} + ] + ], + "relative-units-from-parent.html": [ + "57df82b6f1c5b8cd9ef405cdc1097826de0e061f", + [ + null, + [ + [ + "/css/css-viewport/zoom/relative-units-from-parent-ref.html", + "==" + ] + ], + {} + ] + ], + "stroke.html": [ + "5af4eec10cce386eb5afce8d89ee4efb5a71cc85", + [ + null, + [ + [ + "/css/css-viewport/zoom/reference/stroke-ref.html", + "==" + ] + ], + {} + ] + ], + "svg-path-simple.html": [ + "aebea6ea1fb5000b3c3ab4b5ca6a0908a299853a", + [ + null, + [ + [ + "/css/css-viewport/zoom/svg-path-simple-ref.html", + "==" + ] + ], + {} + ] + ], + "svg-path.html": [ + "9a7bc3ffee97a062409fc6c3e628dcd7a57ed7f4", + [ + null, + [ + [ + "/css/css-viewport/zoom/svg-path-ref.html", + "==" + ] + ], + {} + ] + ], + "svg-viewBox.html": [ + "d5c2336bdd0402259ce94e9f83c69ce794fb2d1e", + [ + null, + [ + [ + "/css/css-viewport/zoom/svg-viewBox-ref.html", + "==" + ] + ], + {} + ] + ], + "svg.html": [ + "826ce5a80a3b9c06b3c14678704daffd3e2faf7b", + [ + null, + [ + [ + "/css/css-viewport/zoom/svg-ref.html", + "==" + ] + ], + {} + ] + ], + "text-indent.html": [ + "1994d4e489c32b0d952053883aecaa13e77b4694", + [ + null, + [ + [ + "/css/css-viewport/zoom/reference/text-indent-ref.html", + "==" + ] + ], + {} + ] + ], + "text-shadow.html": [ + "b1aa9be581abefaa2335a5114d7196c08ac984ed", + [ + null, + [ + [ + "/css/css-viewport/zoom/reference/text-shadow-ref.html", + "==" + ] + ], + {} + ] + ], + "text-stroke-width.html": [ + "1bba3236894181e7ff411dc8fc50b21ab969b196", + [ + null, + [ + [ + "/css/css-viewport/zoom/reference/text-stroke-width-ref.html", + "==" + ] + ], + {} + ] + ], + "text-underline-offset.html": [ + "4c7f378ab95c2cabfa8367d01333034567b010a5", + [ + null, + [ + [ + "/css/css-viewport/zoom/reference/text-underline-offset-ref.html", + "==" + ] + ], + {} + ] + ], + "word-spacing.html": [ + "80f52046cd5016a703285d26e9cbd5572107b0d0", + [ + null, + [ + [ + "/css/css-viewport/zoom/reference/word-spacing-ref.html", + "==" + ] + ], + {} + ] + ] + } + }, "css-will-change": { "will-change-abspos-cb-001.html": [ "d59e443310fa84f94533c7b18ce67d6c82cf1fc7", @@ -299340,7 +301400,7 @@ "bidi-dynamic-iframe-001.html": [ "f55973fd5ff5dd24f34c1775ace600e4c4b41d65", [ - "css/css-writing-modes/bidi-dynamic-iframe-001.html", + null, [ [ "/css/css-writing-modes/bidi-dynamic-iframe-001-ref.html", @@ -300575,7 +302635,7 @@ "block-flow-direction-slr-062.xht": [ "b1bf73d13f8fa033211cf45896f0cf240c6f8aae", [ - "css/css-writing-modes/block-flow-direction-slr-062.xht", + null, [ [ "/css/css-writing-modes/block-flow-direction-043-ref.xht", @@ -300731,7 +302791,7 @@ "block-flow-direction-srl-061.xht": [ "8e97775a10a2785ab90da2a461f72adfc8d50c44", [ - "css/css-writing-modes/block-flow-direction-srl-061.xht", + null, [ [ "/css/css-writing-modes/block-flow-direction-002-ref.xht", @@ -300887,7 +302947,7 @@ "block-flow-direction-vlr-022.xht": [ "6c2f4d3b65514630b4537f0a807b2aaf5ef3a525", [ - "css/css-writing-modes/block-flow-direction-vlr-022.xht", + null, [ [ "/css/css-writing-modes/block-flow-direction-001-ref.xht", @@ -301030,7 +303090,7 @@ "block-flow-direction-vrl-021.xht": [ "41a623db55c06b98211409b72192b187cdd13b62", [ - "css/css-writing-modes/block-flow-direction-vrl-021.xht", + null, [ [ "/css/css-writing-modes/block-flow-direction-002-ref.xht", @@ -301680,7 +303740,7 @@ "ch-units-vrl-006.html": [ "f3297175741be972d9f134f1a87cd5014b1fad85", [ - "css/css-writing-modes/ch-units-vrl-006.html", + null, [ [ "/css/css-writing-modes/reference/ch-units-vrl-005-ref.html", @@ -302942,7 +305002,7 @@ "button-appearance-native-horizontal.optional.html": [ "44579ac29212bb9544c505e022fab0c1719437c5", [ - "css/css-writing-modes/forms/button-appearance-native-horizontal.optional.html", + null, [ [ "/css/css-writing-modes/forms/button-appearance-none-horizontal.optional.html", @@ -302963,7 +305023,7 @@ "button-appearance-native-vertical.optional.html": [ "3a0c61b4902c2e1b89893eddf493d04563435c0a", [ - "css/css-writing-modes/forms/button-appearance-native-vertical.optional.html", + null, [ [ "/css/css-writing-modes/forms/button-appearance-none-vertical.optional.html", @@ -302984,7 +305044,7 @@ "button-appearance-none-horizontal.optional.html": [ "2679c6f04d711d332468a85792c8500aa7de019e", [ - "css/css-writing-modes/forms/button-appearance-none-horizontal.optional.html", + null, [ [ "/css/css-writing-modes/forms/button-appearance-native-horizontal.optional.html", @@ -303005,7 +305065,7 @@ "button-appearance-none-vertical.optional.html": [ "b37565a4099b66bf1d1b0556b230b311c70f4fac", [ - "css/css-writing-modes/forms/button-appearance-none-vertical.optional.html", + null, [ [ "/css/css-writing-modes/forms/button-appearance-native-vertical.optional.html", @@ -303026,7 +305086,7 @@ "checkbox-appearance-native-vertical-lr-baseline.optional.html": [ "377a8e8785430c76e2d64e1e73002d92b0dd6cd2", [ - "css/css-writing-modes/forms/checkbox-appearance-native-vertical-lr-baseline.optional.html", + null, [ [ "/css/css-writing-modes/forms/checkbox-appearance-native-vertical-lr-baseline.optional-ref.html", @@ -303039,7 +305099,7 @@ "checkbox-appearance-native-vertical-rl-baseline.optional.html": [ "630a83c7ee88d60b69459285871c13514fbdb196", [ - "css/css-writing-modes/forms/checkbox-appearance-native-vertical-rl-baseline.optional.html", + null, [ [ "/css/css-writing-modes/forms/checkbox-appearance-native-vertical-rl-baseline.optional-ref.html", @@ -303120,7 +305180,7 @@ "date-input-appearance-native-horizontal.optional.html": [ "10510d7ea10542445cb6e6b4cfafaaa746c2cdea", [ - "css/css-writing-modes/forms/date-input-appearance-native-horizontal.optional.html", + null, [ [ "/css/css-writing-modes/forms/date-input-appearance-native-vertical.optional.html", @@ -303137,7 +305197,7 @@ "date-input-appearance-native-vertical.optional.html": [ "02b05748c1ef0c16d1b06a0a5771418dda125274", [ - "css/css-writing-modes/forms/date-input-appearance-native-vertical.optional.html", + null, [ [ "/css/css-writing-modes/forms/date-input-appearance-native-horizontal.optional.html", @@ -303154,7 +305214,7 @@ "date-input-appearance-none-horizontal.optional.html": [ "6115e6f33ba12796f6c1a530ddaa81f176023fcf", [ - "css/css-writing-modes/forms/date-input-appearance-none-horizontal.optional.html", + null, [ [ "/css/css-writing-modes/forms/date-input-appearance-none-vertical.optional.html", @@ -303171,7 +305231,7 @@ "date-input-appearance-none-vertical.optional.html": [ "e608ead51b7afbce992d15595664f791b977d5d1", [ - "css/css-writing-modes/forms/date-input-appearance-none-vertical.optional.html", + null, [ [ "/css/css-writing-modes/forms/date-input-appearance-none-horizontal.optional.html", @@ -303188,7 +305248,7 @@ "file-input-horizontal.optional.html": [ "b7bcb340e0ef1644e99bbe665d544cc51f446ce8", [ - "css/css-writing-modes/forms/file-input-horizontal.optional.html", + null, [ [ "/css/css-writing-modes/forms/file-input-vertical.optional.html", @@ -303205,7 +305265,7 @@ "file-input-vertical-rtl.optional.html": [ "b58242555b31251ba174fd691240337fc927f19b", [ - "css/css-writing-modes/forms/file-input-vertical-rtl.optional.html", + null, [ [ "/css/css-writing-modes/forms/file-input-horizontal.optional.html", @@ -303222,7 +305282,7 @@ "file-input-vertical.optional.html": [ "c9b4272f84b2ed4b29a63516d156fb7c26f2b3fa", [ - "css/css-writing-modes/forms/file-input-vertical.optional.html", + null, [ [ "/css/css-writing-modes/forms/file-input-vertical-rtl.optional.html", @@ -303236,11 +305296,49 @@ {} ] ], + "meter-appearance-native-horizontal-rtl.optional.html": [ + "65bbd653b5c7e2bfdf25595a2504a1a741c348cd", + [ + null, + [ + [ + "/css/css-writing-modes/forms/meter-appearance-native-horizontal.optional.html", + "!=" + ], + [ + "/css/css-writing-modes/forms/meter-appearance-native-vertical-rtl.optional.html", + "!=" + ] + ], + {} + ] + ], "meter-appearance-native-horizontal.optional.html": [ - "7b25e1a9000d6c611c62c770871b7e32e4f8c696", + "1e7a8df8ab9545ee29c8da8f272abae14286f587", [ null, [ + [ + "/css/css-writing-modes/forms/meter-appearance-native-horizontal-rtl.optional.html", + "!=" + ], + [ + "/css/css-writing-modes/forms/meter-appearance-native-vertical.optional.html", + "!=" + ] + ], + {} + ] + ], + "meter-appearance-native-vertical-rtl.optional.html": [ + "e488d8dd51f99baa15c6da94186fe0c9023e1fad", + [ + null, + [ + [ + "/css/css-writing-modes/forms/meter-appearance-native-horizontal-rtl.optional.html", + "!=" + ], [ "/css/css-writing-modes/forms/meter-appearance-native-vertical.optional.html", "!=" @@ -303250,13 +305348,17 @@ ] ], "meter-appearance-native-vertical.optional.html": [ - "6beca6bfa152a7799a6eb60940679959087fb762", + "2205d5615d65148f8515e683a365950356b9db4b", [ null, [ [ "/css/css-writing-modes/forms/meter-appearance-native-horizontal.optional.html", "!=" + ], + [ + "/css/css-writing-modes/forms/meter-appearance-native-vertical-rtl.optional.html", + "!=" ] ], {} @@ -303275,17 +305377,63 @@ {} ] ], + "progress-appearance-native-horizontal-rtl.optional.html": [ + "319050638b9c1ebf98bd7268fd9b34ee0626656d", + [ + null, + [ + [ + "/css/css-writing-modes/forms/progress-appearance-native-horizontal.optional.html", + "!=" + ], + [ + "/css/css-writing-modes/forms/progress-appearance-none-horizontal-rtl.optional.html", + "!=" + ], + [ + "/css/css-writing-modes/forms/progress-appearance-native-vertical-rtl.optional.html", + "!=" + ] + ], + {} + ] + ], "progress-appearance-native-horizontal.optional.html": [ - "ad7d2aa4479b3d8dfe927b2b9d08c854f721737c", + "bdda28675e8b50f38a12aa654f21022f1626bc44", [ null, [ + [ + "/css/css-writing-modes/forms/progress-appearance-native-horizontal-rtl.optional.html", + "!=" + ], [ "/css/css-writing-modes/forms/progress-appearance-native-vertical.optional.html", "!=" ], [ - "/css/css-writing-modes/forms/progress-appearance-none-vertical.optional.html", + "/css/css-writing-modes/forms/progress-appearance-none-horizontal.optional.html", + "!=" + ] + ], + {} + ] + ], + "progress-appearance-native-vertical-rtl.optional.html": [ + "9a1834e46d21e49e6d3fa5acf917dca6e511b2a9", + [ + null, + [ + [ + "/css/css-writing-modes/forms/progress-appearance-native-horizontal-rtl.optional.html", + "!=" + ], + [ + "/css/css-writing-modes/forms/progress-appearance-native-vertical.optional.html", + "!=" + ], + [ + "/css/css-writing-modes/forms/progress-appearance-none-vertical-rtl.optional.html", "!=" ] ], @@ -303293,7 +305441,7 @@ ] ], "progress-appearance-native-vertical.optional.html": [ - "38ca538b09d32cf61cf1b4c51a0c80a0be25f5c7", + "5ddfa20761536046c24e8f6fabbec0feecd322b7", [ null, [ @@ -303301,25 +305449,75 @@ "/css/css-writing-modes/forms/progress-appearance-native-horizontal.optional.html", "!=" ], + [ + "/css/css-writing-modes/forms/progress-appearance-native-vertical-rtl.optional.html", + "!=" + ], + [ + "/css/css-writing-modes/forms/progress-appearance-none-vertical.optional.html", + "!=" + ] + ], + {} + ] + ], + "progress-appearance-none-horizontal-rtl.optional.html": [ + "4276cac63326377c3199d92a31e6f7c280d82f06", + [ + null, + [ [ "/css/css-writing-modes/forms/progress-appearance-none-horizontal.optional.html", "!=" + ], + [ + "/css/css-writing-modes/forms/progress-appearance-none-vertical-rtl.optional.html", + "!=" + ], + [ + "/css/css-writing-modes/forms/progress-appearance-native-horizontal-rtl.optional.html", + "!=" ] ], {} ] ], "progress-appearance-none-horizontal.optional.html": [ - "adb05704c623e6b9cec0f4d51303a1e84accb705", + "cda8a007155fad6b4bf3ac218d35e1e82a18be58", [ null, [ + [ + "/css/css-writing-modes/forms/progress-appearance-none-horizontal-rtl.optional.html", + "!=" + ], [ "/css/css-writing-modes/forms/progress-appearance-none-vertical.optional.html", "!=" ], [ - "/css/css-writing-modes/forms/progress-appearance-native-vertical.optional.html", + "/css/css-writing-modes/forms/progress-appearance-native-horizontal.optional.html", + "!=" + ] + ], + {} + ] + ], + "progress-appearance-none-vertical-rtl.optional.html": [ + "56baeb472f6938224c37e02b6faaddf082732337", + [ + null, + [ + [ + "/css/css-writing-modes/forms/progress-appearance-none-vertical.optional.html", + "!=" + ], + [ + "/css/css-writing-modes/forms/progress-appearance-native-vertical-rtl.optional.html", + "!=" + ], + [ + "/css/css-writing-modes/forms/progress-appearance-none-horizontal-rtl.optional.html", "!=" ] ], @@ -303327,7 +305525,7 @@ ] ], "progress-appearance-none-vertical.optional.html": [ - "db9aac21f2fd8cd4614717cb4e6ebba3b9f19c70", + "b02f725504ed46ce9198667e5237b958c6af9c0c", [ null, [ @@ -303336,7 +305534,11 @@ "!=" ], [ - "/css/css-writing-modes/forms/progress-appearance-native-horizontal.optional.html", + "/css/css-writing-modes/forms/progress-appearance-none-vertical-rtl.optional.html", + "!=" + ], + [ + "/css/css-writing-modes/forms/progress-appearance-native-vertical.optional.html", "!=" ] ], @@ -303346,7 +305548,7 @@ "radio-appearance-native-vertical-lr-baseline.optional.html": [ "c7810034fe2870ef8db16904a2903848a8417f3c", [ - "css/css-writing-modes/forms/radio-appearance-native-vertical-lr-baseline.optional.html", + null, [ [ "/css/css-writing-modes/forms/radio-appearance-native-vertical-lr-baseline.optional-ref.html", @@ -303359,7 +305561,7 @@ "radio-appearance-native-vertical-rl-baseline.optional.html": [ "6f7eed705e3605cf788fc603db028ac3bc327201", [ - "css/css-writing-modes/forms/radio-appearance-native-vertical-rl-baseline.optional.html", + null, [ [ "/css/css-writing-modes/forms/radio-appearance-native-vertical-rl-baseline.optional-ref.html", @@ -303406,7 +305608,7 @@ "range-input-appearance-native-vertical-rtl.optional.html": [ "095ca96ea580b0dfed5a130f5edc7cdd0d87eb01", [ - "css/css-writing-modes/forms/range-input-appearance-native-vertical-rtl.optional.html", + null, [ [ "/css/css-writing-modes/forms/range-input-appearance-native-vertical.optional.html", @@ -303478,7 +305680,7 @@ "range-input-appearance-none-vertical-rtl.optional.html": [ "527038ea84ae338da79c3b4b6be548973cf7b545", [ - "css/css-writing-modes/forms/range-input-appearance-none-vertical-rtl.optional.html", + null, [ [ "/css/css-writing-modes/forms/range-input-appearance-none-vertical.optional.html", @@ -303542,7 +305744,7 @@ "select-appearance-native-horizontal.optional.html": [ "669c2c8c03c82919ed129d2803ced8db5e09e051", [ - "css/css-writing-modes/forms/select-appearance-native-horizontal.optional.html", + null, [ [ "/css/css-writing-modes/forms/select-appearance-none-horizontal.optional.html", @@ -303567,7 +305769,7 @@ "select-appearance-native-vertical.optional.html": [ "79eb364023d8e4b532045c4eb41d6ee0589552b9", [ - "css/css-writing-modes/forms/select-appearance-native-vertical.optional.html", + null, [ [ "/css/css-writing-modes/forms/select-appearance-none-vertical-lr.optional.html", @@ -303592,7 +305794,7 @@ "select-appearance-none-horizontal.optional.html": [ "a7bcd3a85f7b05223d1c06d14eb86d03e60298c1", [ - "css/css-writing-modes/forms/select-appearance-none-horizontal.optional.html", + null, [ [ "/css/css-writing-modes/forms/select-appearance-native-horizontal.optional.html", @@ -303617,7 +305819,7 @@ "select-appearance-none-vertical-lr.optional.html": [ "2b93db377387d8a7b20b9c0dd9c996c14dd89a7e", [ - "css/css-writing-modes/forms/select-appearance-none-vertical-lr.optional.html", + null, [ [ "/css/css-writing-modes/forms/select-appearance-none-vertical-rl.optional.html", @@ -303642,7 +305844,7 @@ "select-appearance-none-vertical-rl.optional.html": [ "7a412d88f6582c182efceb04c3013e02b14d78bd", [ - "css/css-writing-modes/forms/select-appearance-none-vertical-rl.optional.html", + null, [ [ "/css/css-writing-modes/forms/select-appearance-none-vertical-lr.optional.html", @@ -305442,7 +307644,7 @@ ] ], "mongolian-orientation-002.html": [ - "66dde36ac09fd0ac28369593c789124dd858417e", + "82dabab9c2fd8eef8c1a1ebb11ddc67afdbddac3", [ null, [ @@ -305587,7 +307789,7 @@ "orthogonal-root-resize-icb-001.html": [ "5e7ff7aef51344e8fa6fafed85318da33a33397b", [ - "css/css-writing-modes/orthogonal-root-resize-icb-001.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -305600,7 +307802,7 @@ "orthogonal-root-resize-icb-002.html": [ "6164411b64cd1a43dc092e97b700a7624588efcc", [ - "css/css-writing-modes/orthogonal-root-resize-icb-002.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -305613,7 +307815,7 @@ "orthogonal-root-resize-icb-003.html": [ "4bf7183c15bf1275bf5132b82719ad0622ef3188", [ - "css/css-writing-modes/orthogonal-root-resize-icb-003.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -305626,7 +307828,7 @@ "orthogonal-root-resize-icb-004.html": [ "c01497e1eafebe44077a930ffd9932ea2d8f159b", [ - "css/css-writing-modes/orthogonal-root-resize-icb-004.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -305639,7 +307841,7 @@ "orthogonal-root-resize-icb-005.html": [ "927086a723a333d31935fc6397cdaf3361bf8b6a", [ - "css/css-writing-modes/orthogonal-root-resize-icb-005.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -305652,7 +307854,7 @@ "orthogonal-root-resize-icb-006.html": [ "5ed7d4f3025783314a6534272edf475f9d9ad740", [ - "css/css-writing-modes/orthogonal-root-resize-icb-006.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -305665,7 +307867,7 @@ "orthogonal-root-resize-icb-007.html": [ "0b403b2aafcd89614810834bec8d04c0bb80b0e1", [ - "css/css-writing-modes/orthogonal-root-resize-icb-007.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -306029,7 +308231,7 @@ "replaced-content-image-004.html": [ "61705d3d1543d2b4408a123264223ce41993dcc7", [ - "css/css-writing-modes/replaced-content-image-004.html", + null, [ [ "/css/css-writing-modes/replaced-content-image-004-ref.html", @@ -307784,7 +309986,7 @@ "slr-alongside-vlr-floats.html": [ "9dbbebbd55520ce3efcd65ee68354834590b2488", [ - "css/css-writing-modes/slr-alongside-vlr-floats.html", + null, [ [ "/css/css-writing-modes/slr-alongside-vlr-floats-ref.html", @@ -307797,7 +309999,7 @@ "srl-alongside-vrl-floats.html": [ "db9996551896b7211f59a4a3b71b6ea07781849e", [ - "css/css-writing-modes/srl-alongside-vrl-floats.html", + null, [ [ "/css/css-writing-modes/srl-alongside-vrl-floats-ref.html", @@ -308681,7 +310883,7 @@ "text-combine-upright-rtl-001.html": [ "d67e3cc2aef1db83957503b427e1111f3ade4532", [ - "css/css-writing-modes/text-combine-upright-rtl-001.html", + null, [ [ "/css/css-writing-modes/text-combine-upright-rtl-001-ref.html", @@ -308694,7 +310896,7 @@ "text-combine-upright-rtl-002.html": [ "f4e2dc193e010b7632684a9e95ada9cadb36c7c0", [ - "css/css-writing-modes/text-combine-upright-rtl-002.html", + null, [ [ "/css/css-writing-modes/text-combine-upright-rtl-002-ref.html", @@ -309206,7 +311408,7 @@ "text-orientation-mixed-vlr-100.html": [ "e2f2bedb1c3966a8c4cb7509a198bca5efa1ab89", [ - "css/css-writing-modes/text-orientation-mixed-vlr-100.html", + null, [ [ "/css/css-writing-modes/text-orientation-mixed-vlr-100-ref.html", @@ -309219,7 +311421,7 @@ "text-orientation-mixed-vrl-100.html": [ "355857463dfcfc4834387b77497d1330d906428f", [ - "css/css-writing-modes/text-orientation-mixed-vrl-100.html", + null, [ [ "/css/css-writing-modes/text-orientation-mixed-vrl-100-ref.html", @@ -309232,7 +311434,7 @@ "text-orientation-sideways-vlr-100.html": [ "2060c865ca552e8c072c24ff5eaea541277ef2b6", [ - "css/css-writing-modes/text-orientation-sideways-vlr-100.html", + null, [ [ "/css/css-writing-modes/text-orientation-sideways-vlr-100-ref.html", @@ -309245,7 +311447,7 @@ "text-orientation-sideways-vrl-100.html": [ "ada168e27b8bc795cacb5e3b0aa9f88983d4aa74", [ - "css/css-writing-modes/text-orientation-sideways-vrl-100.html", + null, [ [ "/css/css-writing-modes/text-orientation-sideways-vrl-100-ref.html", @@ -309687,7 +311889,7 @@ "vlr-text-orientation-sideways-alongside-vlr-floats.html": [ "b381a50e98f37d7661125a402eb0b0e55661d01c", [ - "css/css-writing-modes/vlr-text-orientation-sideways-alongside-vlr-floats.html", + null, [ [ "/css/css-writing-modes/vlr-text-orientation-sideways-alongside-vlr-floats-ref.html", @@ -309713,7 +311915,7 @@ "vrl-text-orientation-sideways-alongside-vrl-floats.html": [ "cf0c3124a6404ebf8806d23f6f88128e39f5f621", [ - "css/css-writing-modes/vrl-text-orientation-sideways-alongside-vrl-floats.html", + null, [ [ "/css/css-writing-modes/vrl-text-orientation-sideways-alongside-vrl-floats-ref.html", @@ -310077,7 +312279,7 @@ "wm-propagation-body-dynamic-change-001.html": [ "f8a39119f69241b540669d54521d7622b80b76ce", [ - "css/css-writing-modes/wm-propagation-body-dynamic-change-001.html", + null, [ [ "/css/css-writing-modes/block-flow-direction-025-ref.xht", @@ -310090,7 +312292,7 @@ "wm-propagation-body-dynamic-change-002.html": [ "4690de1891dd7e7b1cb8e86615c4c6b66548a877", [ - "css/css-writing-modes/wm-propagation-body-dynamic-change-002.html", + null, [ [ "/css/css-writing-modes/wm-propagation-body-dynamic-change-002-ref.html", @@ -310116,7 +312318,7 @@ "wm-propagation-svg-root-scrollbar.svg": [ "bb86217904513bffcc836ac6448c01f8238500e7", [ - "css/css-writing-modes/wm-propagation-svg-root-scrollbar.svg", + null, [ [ "/css/reference/blank.html", @@ -310222,7 +312424,7 @@ "CSSStyleSheet-constructable-concat.html": [ "87ba6bfea53243b2aa82365e57e16cd09ec299da", [ - "css/cssom/CSSStyleSheet-constructable-concat.html", + null, [ [ "/css/cssom/CSSStyleSheet-constructable-concat-ref.html", @@ -310232,6 +312434,19 @@ {} ] ], + "CSSStyleSheet-constructable-insertRule-base-uri.html": [ + "22f298a34eb5de6eb27c13130df0162e98503d30", + [ + null, + [ + [ + "/css/cssom/CSSStyleSheet-constructable-insertRule-base-uri-ref.html", + "==" + ] + ], + {} + ] + ], "HTMLLinkElement-disabled-alternate.html": [ "f1457c0dcf04d27a52a29fc860e94e81d432e5af", [ @@ -310422,7 +312637,7 @@ "window-scrollBy-display-change.html": [ "eff3654cde39ddebb8ed26062da3f6d10a179315", [ - "css/cssom-view/window-scrollBy-display-change.html", + null, [ [ "/css/cssom-view/window-scrollBy-display-change-ref.html", @@ -310434,6 +312649,132 @@ ] }, "filter-effects": { + "backdrop-filter-backdrop-root-backdrop-filter.html": [ + "6be85d5cf24ca4fd605c428fb8d6d0c109210cc4", + [ + null, + [ + [ + "/css/filter-effects/backdrop-filter-backdrop-root-ref.html", + "==" + ] + ], + {} + ] + ], + "backdrop-filter-backdrop-root-clip-path.html": [ + "172d07be93e6ed271d9c7444f0674c72b79b7367", + [ + null, + [ + [ + "/css/filter-effects/backdrop-filter-backdrop-root-clip-path-ref.html", + "==" + ] + ], + {} + ] + ], + "backdrop-filter-backdrop-root-filter.html": [ + "e988b479ced02e521ddbd578ede43473aa3d0419", + [ + null, + [ + [ + "/css/filter-effects/backdrop-filter-backdrop-root-filter-ref.html", + "==" + ] + ], + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 5 + ], + [ + 0, + 500 + ] + ] + ] + ] + } + ] + ], + "backdrop-filter-backdrop-root-mix-blend-mode.html": [ + "2d77b61b849393d5b61b2e62a5a50d373bf5abea", + [ + null, + [ + [ + "/css/filter-effects/backdrop-filter-backdrop-root-ref.html", + "==" + ] + ], + {} + ] + ], + "backdrop-filter-backdrop-root-opacity.html": [ + "b11d064cb3b2d9a860964c682aa4f02ebc4061b6", + [ + null, + [ + [ + "/css/filter-effects/backdrop-filter-backdrop-root-opacity-ref.html", + "==" + ] + ], + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 5 + ], + [ + 0, + 500 + ] + ] + ] + ] + } + ] + ], + "backdrop-filter-basic-blur.html": [ + "03b6c25fee003b242363cf40d71228e6e0b28270", + [ + null, + [ + [ + "/css/filter-effects/reference/backdrop-filter-basic-blur-ref.html", + "==" + ] + ], + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 40 + ], + [ + 0, + 30000 + ] + ] + ] + ] + } + ] + ], "backdrop-filter-basic-opacity-2.html": [ "c40e8bc09832ec6d30daa6803e98baa3141c9efe", [ @@ -310473,8 +312814,66 @@ {} ] ], + "backdrop-filter-boundary.html": [ + "9f371387abf4e1171c3b9ed7c10cd33928d993aa", + [ + null, + [ + [ + "/css/filter-effects/reference/backdrop-filter-boundary-ref.html", + "==" + ] + ], + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 20 + ], + [ + 0, + 100000 + ] + ] + ] + ] + } + ] + ], + "backdrop-filter-clip-rect-2.html": [ + "8116bd0dcf292eb8dd6dfd3710bdbc4dedcf509e", + [ + null, + [ + [ + "/css/filter-effects/reference/backdrop-filter-clip-rect-2-ref.html", + "==" + ] + ], + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 80 + ], + [ + 0, + 1000 + ] + ] + ] + ] + } + ] + ], "backdrop-filter-clip-rect.html": [ - "5d5c707116c4fa2f7f16542f1da5bfa9100318e1", + "35b74652dcec6da5c9fe7d1275c30f145dedcb04", [ null, [ @@ -310483,7 +312882,23 @@ "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 1 + ], + [ + 0, + 1 + ] + ] + ] + ] + } ] ], "backdrop-filter-clip-rounded-clip.html": [ @@ -310554,6 +312969,35 @@ {} ] ], + "backdrop-filter-edge-clipping-2.html": [ + "0c9bed73c891df76624856e57790ab46d5a70321", + [ + null, + [ + [ + "/css/filter-effects/reference/backdrop-filter-edge-clipping-2-ref.html", + "==" + ] + ], + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 20 + ], + [ + 0, + 10000 + ] + ] + ] + ] + } + ] + ], "backdrop-filter-edge-clipping.html": [ "f6f7d89e5bf0faa1a3e29efe8f1bca3f69d9f935", [ @@ -310567,6 +313011,64 @@ {} ] ], + "backdrop-filter-edge-mirror.html": [ + "b56bddf7ad2b51bced27e5fa4ddbf8306871282a", + [ + null, + [ + [ + "/css/filter-effects/reference/backdrop-filter-edge-mirror-ref.html", + "==" + ] + ], + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 10 + ], + [ + 0, + 10000 + ] + ] + ] + ] + } + ] + ], + "backdrop-filter-edge-pixels-2.html": [ + "8b87ef95c02ceed0946de9b9a3e194743e73fdcd", + [ + null, + [ + [ + "/css/filter-effects/reference/backdrop-filter-edge-pixels-2-ref.html", + "==" + ] + ], + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 20 + ], + [ + 0, + 30000 + ] + ] + ] + ] + } + ] + ], "backdrop-filter-edge-pixels.html": [ "5a70020890b619fd08f6546a4f3549568ce3856b", [ @@ -310632,19 +313134,6 @@ {} ] ], - "backdrop-filter-isolation.html": [ - "06791f73d2b78ed03b77cd4a4d5b56e44406abf8", - [ - null, - [ - [ - "/css/filter-effects/backdrop-filter-isolation-ref.html", - "==" - ] - ], - {} - ] - ], "backdrop-filter-opacity-rounded-clip.html": [ "88fed5742034734f539d965d99ffa20c16428282", [ @@ -310749,6 +313238,35 @@ {} ] ], + "backdrop-filter-svg-blur.html": [ + "eff40c9e0fa334dbd21f475a3b3dd046b2a3eacf", + [ + null, + [ + [ + "/css/filter-effects/reference/backdrop-filter-svg-blur-ref.html", + "==" + ] + ], + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 20 + ], + [ + 0, + 10000 + ] + ] + ] + ] + } + ] + ], "backdrop-filter-svg-foreignObject.html": [ "4ccaa0cf81ff6c9787ad02c53cf6a1d19857dace", [ @@ -310765,7 +313283,7 @@ "backdrop-filter-svg.html": [ "01771ed56386c08c7c9c719d0417bd7ba897d6b9", [ - "css/filter-effects/backdrop-filter-svg.html", + null, [ [ "/css/filter-effects/reference/backdrop-filter-svg-ref.html", @@ -310804,7 +313322,7 @@ "backdrop-filters-brightness.html": [ "cb74e0a88634b8260ab9386104f11ce4b0c5b368", [ - "css/filter-effects/backdrop-filters-brightness.html", + null, [ [ "/css/filter-effects/backdrop-filters-brightness-ref.html", @@ -310833,7 +313351,7 @@ "backdrop-filters-contrast.html": [ "e2f5ccdd8bf67531684c84e449b5b0d8c5bc0d98", [ - "css/filter-effects/backdrop-filters-contrast.html", + null, [ [ "/css/filter-effects/backdrop-filters-contrast-ref.html", @@ -310914,7 +313432,7 @@ "backdrop-filters-invert.html": [ "b652946818604dc1cb3bc815f5a7233bba1b99e8", [ - "css/filter-effects/backdrop-filters-invert.html", + null, [ [ "/css/filter-effects/backdrop-filters-invert-ref.html", @@ -310956,7 +313474,7 @@ "backdrop-filters-saturate.html": [ "4a5de5b560fbd3602c90d1351db247b3b5b7c92c", [ - "css/filter-effects/backdrop-filters-saturate.html", + null, [ [ "/css/filter-effects/backdrop-filters-saturate-ref.html", @@ -310998,7 +313516,7 @@ "background-image-blur-repaint.html": [ "6ec81b6f5e821dd031e1a7130debcf4f99371b8b", [ - "css/filter-effects/background-image-blur-repaint.html", + null, [ [ "/css/filter-effects/reference/background-image-blur-repaint-ref.html", @@ -311034,6 +313552,19 @@ {} ] ], + "blur-text.html": [ + "cfb692386bbb3714f6684e9edb3672d9e0a486ec", + [ + null, + [ + [ + "/css/filter-effects/blur-text-ref.html", + "==" + ] + ], + {} + ] + ], "clip-under-filter-001.html": [ "7fbf0d60182f70a1d3d4538d9aca143999cfb1de", [ @@ -311394,7 +313925,7 @@ "css-reference-large-svg-filter.html": [ "0750fd7f638034b807e2a6ba6846b5f6c314ecf8", [ - "css/filter-effects/css-reference-large-svg-filter.html", + null, [ [ "/css/filter-effects/css-reference-large-svg-filter-ref.html", @@ -311420,7 +313951,7 @@ "drop-shadow-currentcolor-dynamic-001.html": [ "9c70274d5d85878737414d18515f2eb384bd3070", [ - "css/filter-effects/drop-shadow-currentcolor-dynamic-001.html", + null, [ [ "/css/filter-effects/reference/green-100x100.html", @@ -311433,7 +313964,7 @@ "drop-shadow-currentcolor-dynamic-002.html": [ "3f17b5d634e03402048f9284e7f85621d92d72bb", [ - "css/filter-effects/drop-shadow-currentcolor-dynamic-002.html", + null, [ [ "/css/filter-effects/reference/green-100x100.html", @@ -312006,7 +314537,7 @@ "filter-function-conic-gradient.html": [ "fd5f3965d9b7ec4061a89f8b79bc03d5911bd005", [ - "css/filter-effects/filter-function/filter-function-conic-gradient.html", + null, [ [ "/css/filter-effects/filter-function/filter-function-conic-gradient-ref.html", @@ -312019,7 +314550,7 @@ "filter-function-linear-gradient.html": [ "de965b1e9a0ffa15c2a8df264e47c4fc72b0c689", [ - "css/filter-effects/filter-function/filter-function-linear-gradient.html", + null, [ [ "/css/filter-effects/filter-function/filter-function-linear-gradient-ref.html", @@ -312032,7 +314563,7 @@ "filter-function-radial-gradient.html": [ "a1d88677448587966f25a8db2ad68a59508058bd", [ - "css/filter-effects/filter-function/filter-function-radial-gradient.html", + null, [ [ "/css/filter-effects/filter-function/filter-function-radial-gradient-ref.html", @@ -312045,7 +314576,7 @@ "filter-function-repeating-conic-gradient.html": [ "8920a8b31c36a7c4258f06dfc0cd203a2c7441fa", [ - "css/filter-effects/filter-function/filter-function-repeating-conic-gradient.html", + null, [ [ "/css/filter-effects/filter-function/filter-function-repeating-conic-gradient-ref.html", @@ -312058,7 +314589,7 @@ "filter-function-repeating-linear-gradient.html": [ "dc81e0995bb125b9e84b09974fd7ec48d96e6266", [ - "css/filter-effects/filter-function/filter-function-repeating-linear-gradient.html", + null, [ [ "/css/filter-effects/filter-function/filter-function-repeating-linear-gradient-ref.html", @@ -312071,7 +314602,7 @@ "filter-function-repeating-radial-gradient.html": [ "ec6c9bf83cd638f3dd10610a8de584ef37112e54", [ - "css/filter-effects/filter-function/filter-function-repeating-radial-gradient.html", + null, [ [ "/css/filter-effects/filter-function/filter-function-repeating-radial-gradient-ref.html", @@ -312212,6 +314743,19 @@ {} ] ], + "filter-region-html-content-viewport.tentative.html": [ + "d248abf9230ed57d2ca4fc8d7f9c1b7d2265ff5d", + [ + null, + [ + [ + "/css/filter-effects/reference/green-100x100.html", + "==" + ] + ], + {} + ] + ], "filter-region-negative-positioned-child-001.html": [ "8f302ab52abe2f1008ca60d46fbc77d8ce35c22a", [ @@ -312644,7 +315188,7 @@ "svg-external-filter-resource.html": [ "6df5fc281f05fe1d05e3019c0cf364dc2fac564a", [ - "css/filter-effects/svg-external-filter-resource.html", + null, [ [ "/css/filter-effects/reference/green-100x100.html", @@ -312683,7 +315227,7 @@ "svg-feimage-002.html": [ "b462ba91ad0b5847304e2a190ca0985aa8ace886", [ - "css/filter-effects/svg-feimage-002.html", + null, [ [ "/css/filter-effects/reference/svg-feimage-ref.html", @@ -313712,7 +316256,85 @@ "mq-calc-resolution.html": [ "da649eb753f4ca0b1854147fe233c2ab966d3520", [ - "css/mediaqueries/mq-calc-resolution.html", + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "mq-calc-sign-function-001.html": [ + "12286cb531e89a710b4dd471e19c7693a18626be", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "mq-calc-sign-function-002.html": [ + "35fd111ba1e0317c8c7f964bd1533a0cc67161d2", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "mq-calc-sign-function-003.html": [ + "8d532b915ac19fabfce2114a8be1fe513cf0ab7c", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "mq-calc-sign-function-004.html": [ + "bd4c74331ce22068bc0a7fa997403cd508d565f1", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "mq-calc-sign-function-005.html": [ + "602cac02be137335b060d85219dad6c5a0f6b291", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], + "mq-calc-sign-function-006.html": [ + "3db626343ab96aa74a54557867fb4af772e0f073", + [ + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -313881,7 +316503,7 @@ "mq-negative-range-001.html": [ "761df3ac087b8aee9eb04e9d91c877f12472bcd6", [ - "css/mediaqueries/mq-negative-range-001.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -313894,7 +316516,7 @@ "mq-negative-range-002.html": [ "e905b39231da5dc35d1a3abf1cd67a4b2b34aa9e", [ - "css/mediaqueries/mq-negative-range-002.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -313943,6 +316565,19 @@ {} ] ], + "prefers-color-scheme-svg-as-image.html": [ + "65d6556f7af321d40854288bb3ad546d0e5a2714", + [ + null, + [ + [ + "/css/mediaqueries/prefers-color-scheme-svg-as-image-ref.html", + "==" + ] + ], + {} + ] + ], "prefers-color-scheme-svg-image-normal-with-meta-dark.html": [ "be633826ece7b29ff698d67bc6f919cbea29f94c", [ @@ -314050,7 +316685,7 @@ "scripting-print-noscript.html": [ "1d1af708fd7e746ef991d2067a5a32b150672893", [ - "css/mediaqueries/scripting-print-noscript.html", + null, [ [ "/css/mediaqueries/scripting-print-noscript-ref.html", @@ -314063,7 +316698,7 @@ "scripting-print-script.html": [ "e80dba4d83f586df8ba48fde04356a0361861b69", [ - "css/mediaqueries/scripting-print-script.html", + null, [ [ "/css/mediaqueries/scripting-print-script-ref.html", @@ -314316,7 +316951,7 @@ "offset-path-coord-box-001.html": [ "a8f7d98b22a43f3e90558f442a9502488c6cd269", [ - "css/motion/offset-path-coord-box-001.html", + null, [ [ "/css/motion/offset-path-coord-box-001-ref.html", @@ -314345,7 +316980,7 @@ "offset-path-coord-box-002.html": [ "40b94727d373fd47859ff29d909a28c00276a6e3", [ - "css/motion/offset-path-coord-box-002.html", + null, [ [ "/css/motion/offset-path-coord-box-002-ref.html", @@ -314358,7 +316993,7 @@ "offset-path-coord-box-003.html": [ "e793c18830df60560a6fa746081fd714ea9ad3ab", [ - "css/motion/offset-path-coord-box-003.html", + null, [ [ "/css/motion/offset-path-coord-box-003-ref.html", @@ -314371,7 +317006,7 @@ "offset-path-coord-box-004.html": [ "c84bae6832ee6154862d472e0997989ca54dad59", [ - "css/motion/offset-path-coord-box-004.html", + null, [ [ "/css/motion/offset-path-coord-box-004-ref.html", @@ -314384,7 +317019,7 @@ "offset-path-ray-001.html": [ "1820eb6cfa674d6ad313353c82ac0ce0dfc460b0", [ - "css/motion/offset-path-ray-001.html", + null, [ [ "/css/motion/offset-path-ray-001-ref.html", @@ -314413,7 +317048,7 @@ "offset-path-ray-002.html": [ "adfac939f37649ecfbbd0c2cf6190f2a84499de6", [ - "css/motion/offset-path-ray-002.html", + null, [ [ "/css/motion/offset-path-ray-001-ref.html", @@ -314442,7 +317077,7 @@ "offset-path-ray-003.html": [ "cbcbd8b3b3f0949dfb352c369f868034515abb27", [ - "css/motion/offset-path-ray-003.html", + null, [ [ "/css/motion/offset-path-ray-003-ref.html", @@ -314455,7 +317090,7 @@ "offset-path-ray-004.html": [ "9b6f5befef9372bcd63e47a26a29b170bf09f65a", [ - "css/motion/offset-path-ray-004.html", + null, [ [ "/css/motion/offset-path-ray-003-ref.html", @@ -314468,7 +317103,7 @@ "offset-path-ray-005.html": [ "26167b6bc1df5a90ef7d8029ddda1a7459ac5a6b", [ - "css/motion/offset-path-ray-005.html", + null, [ [ "/css/motion/offset-path-ray-005-ref.html", @@ -314481,7 +317116,7 @@ "offset-path-ray-006.html": [ "d3bea439798687f2c0a31bd8209f600f30af6a34", [ - "css/motion/offset-path-ray-006.html", + null, [ [ "/css/motion/offset-path-ray-005-ref.html", @@ -314494,7 +317129,7 @@ "offset-path-ray-007.html": [ "7b9ff1e0ebe0eeae5e926b6a7940d5ca7e2f0e0c", [ - "css/motion/offset-path-ray-007.html", + null, [ [ "/css/motion/offset-path-ray-007-ref.html", @@ -314507,7 +317142,7 @@ "offset-path-ray-008.html": [ "60713924562f9e9fd0c8d8cf83e579fcf3cb0ae9", [ - "css/motion/offset-path-ray-008.html", + null, [ [ "/css/motion/offset-path-ray-008-ref.html", @@ -314520,7 +317155,7 @@ "offset-path-ray-009.html": [ "8cff3136450df241d69f10b0a877f39cfc6a5de8", [ - "css/motion/offset-path-ray-009.html", + null, [ [ "/css/motion/offset-path-ray-009-ref.html", @@ -314533,7 +317168,7 @@ "offset-path-ray-010.html": [ "9e99898222f101fa488047fbab53a53528498d5e", [ - "css/motion/offset-path-ray-010.html", + null, [ [ "/css/motion/offset-path-ray-001-ref.html", @@ -314562,7 +317197,7 @@ "offset-path-ray-011.html": [ "cf01e2b86ecdc3ea0b7033ffd6ab4fb8b236e3fe", [ - "css/motion/offset-path-ray-011.html", + null, [ [ "/css/motion/offset-path-ray-011-ref.html", @@ -314575,7 +317210,7 @@ "offset-path-ray-012.html": [ "7c921cfac85c6203a330dcf947b4fedbb2ad9408", [ - "css/motion/offset-path-ray-012.html", + null, [ [ "/css/motion/offset-path-ray-012-ref.html", @@ -314588,7 +317223,7 @@ "offset-path-ray-013.html": [ "196ff4efd6fb91265857e357cfbd0bdff689cd6c", [ - "css/motion/offset-path-ray-013.html", + null, [ [ "/css/motion/offset-path-ray-013-ref.html", @@ -314601,7 +317236,7 @@ "offset-path-ray-014.html": [ "42e431de3548315530abb0e4a35dc720cb57fb7c", [ - "css/motion/offset-path-ray-014.html", + null, [ [ "/css/motion/offset-path-ray-014-ref.html", @@ -314614,7 +317249,7 @@ "offset-path-ray-015.html": [ "d8729c199e2d8198bf10eb2eadcb0424d41696c0", [ - "css/motion/offset-path-ray-015.html", + null, [ [ "/css/motion/offset-path-ray-015-ref.html", @@ -314627,7 +317262,7 @@ "offset-path-ray-016.html": [ "539823a5909a6ab5399183f9123663c1885e5de2", [ - "css/motion/offset-path-ray-016.html", + null, [ [ "/css/motion/offset-path-ray-016-ref.html", @@ -314640,7 +317275,7 @@ "offset-path-ray-017.html": [ "93f3ce09cb008b3b9b9ca0115d36f2e1b21e0ce6", [ - "css/motion/offset-path-ray-017.html", + null, [ [ "/css/motion/offset-path-ray-017-ref.html", @@ -314653,7 +317288,7 @@ "offset-path-ray-018.html": [ "73b5b6c263b17c5ae7e7cacf0d56828d163d1055", [ - "css/motion/offset-path-ray-018.html", + null, [ [ "/css/motion/offset-path-ray-018-ref.html", @@ -314666,7 +317301,7 @@ "offset-path-ray-019.html": [ "31681fd43c2176e3b80b188576e89634e51a53fe", [ - "css/motion/offset-path-ray-019.html", + null, [ [ "/css/motion/offset-path-ray-019-ref.html", @@ -314679,7 +317314,7 @@ "offset-path-ray-020.html": [ "b332453af9c3fe1b58ce6cbc5926f003b0004e3c", [ - "css/motion/offset-path-ray-020.html", + null, [ [ "/css/motion/offset-path-ray-007-ref.html", @@ -314692,7 +317327,7 @@ "offset-path-ray-021.html": [ "f0a18ea4cb992284a576a9473ed4e32859e3a3a9", [ - "css/motion/offset-path-ray-021.html", + null, [ [ "/css/motion/offset-path-ray-007-ref.html", @@ -314705,7 +317340,7 @@ "offset-path-ray-022.html": [ "c264076c91ac47595ce573b4628813ac1c5838ea", [ - "css/motion/offset-path-ray-022.html", + null, [ [ "/css/motion/offset-path-ray-022-ref.html", @@ -314718,7 +317353,7 @@ "offset-path-ray-contain-001.html": [ "dc3cb4d52b1f8a036ebae1e7b0b768e38b16bade", [ - "css/motion/offset-path-ray-contain-001.html", + null, [ [ "/css/motion/offset-path-ray-contain-001-ref.html", @@ -314731,7 +317366,7 @@ "offset-path-ray-contain-002.html": [ "6825c755d5b7dd490571256e18f19f83c345e01c", [ - "css/motion/offset-path-ray-contain-002.html", + null, [ [ "/css/motion/offset-path-ray-contain-002-ref.html", @@ -314744,7 +317379,7 @@ "offset-path-ray-contain-003.html": [ "a71c8aa73a068ab3a10ec90e66ecacba60bda6a2", [ - "css/motion/offset-path-ray-contain-003.html", + null, [ [ "/css/motion/offset-path-ray-contain-003-ref.html", @@ -314757,7 +317392,7 @@ "offset-path-ray-contain-004.html": [ "0689ccba6f58eb55d698fbab31d33ced23e7f331", [ - "css/motion/offset-path-ray-contain-004.html", + null, [ [ "/css/motion/offset-path-ray-contain-004-ref.html", @@ -314786,7 +317421,7 @@ "offset-path-ray-contain-005.html": [ "6e44f88f811ab83a397768df22d0beee695d5807", [ - "css/motion/offset-path-ray-contain-005.html", + null, [ [ "/css/motion/offset-path-ray-contain-005-ref.html", @@ -314799,7 +317434,7 @@ "offset-path-shape-circle-001.html": [ "5b05cb8811ba3c202790b00fd01065cd9c08ec18", [ - "css/motion/offset-path-shape-circle-001.html", + null, [ [ "/css/motion/offset-path-shape-circle-001-ref.html", @@ -314828,7 +317463,7 @@ "offset-path-shape-circle-002.html": [ "74828fe6f4ba20115fef82a5dfccc1d5b65c28db", [ - "css/motion/offset-path-shape-circle-002.html", + null, [ [ "/css/motion/offset-path-shape-circle-002-ref.html", @@ -314841,7 +317476,7 @@ "offset-path-shape-circle-003.html": [ "390b587de5704c7251cfae2e3e59afafd65afa72", [ - "css/motion/offset-path-shape-circle-003.html", + null, [ [ "/css/motion/offset-path-shape-circle-003-ref.html", @@ -314870,7 +317505,7 @@ "offset-path-shape-circle-004.html": [ "6c8bbcc1706d8042a9806c01feec702c93545e82", [ - "css/motion/offset-path-shape-circle-004.html", + null, [ [ "/css/motion/offset-path-shape-circle-004-ref.html", @@ -314899,7 +317534,7 @@ "offset-path-shape-circle-005.html": [ "e35ab294919ba8da2e0c614efb2f996e3d36a4ee", [ - "css/motion/offset-path-shape-circle-005.html", + null, [ [ "/css/motion/offset-path-shape-circle-005-ref.html", @@ -314928,7 +317563,7 @@ "offset-path-shape-circle-006.html": [ "f94af711bdd3d263462f9a4b1b335c2121ea1490", [ - "css/motion/offset-path-shape-circle-006.html", + null, [ [ "/css/motion/offset-path-shape-circle-005-ref.html", @@ -314957,7 +317592,7 @@ "offset-path-shape-circle-007.html": [ "ea292e5605591d5a9b75ae65527408acd2d0b47d", [ - "css/motion/offset-path-shape-circle-007.html", + null, [ [ "/css/motion/offset-path-shape-circle-003-ref.html", @@ -314983,10 +317618,39 @@ } ] ], + "offset-path-shape-circle-008.html": [ + "7c3dfe81355c6e178476bab34423ac1f790befa6", + [ + null, + [ + [ + "/css/motion/offset-path-shape-circle-001-ref.html", + "==" + ] + ], + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 150 + ], + [ + 0, + 300 + ] + ] + ] + ] + } + ] + ], "offset-path-shape-ellipse-001.html": [ "ec152e323c52a02f441556ecc12b77b528e1f0b5", [ - "css/motion/offset-path-shape-ellipse-001.html", + null, [ [ "/css/motion/offset-path-shape-ellipse-001-ref.html", @@ -315015,7 +317679,7 @@ "offset-path-shape-ellipse-002.html": [ "fa647a9c2e5c15c8e38800cf1bebabb899c869a1", [ - "css/motion/offset-path-shape-ellipse-002.html", + null, [ [ "/css/motion/offset-path-shape-ellipse-002-ref.html", @@ -315028,7 +317692,7 @@ "offset-path-shape-ellipse-003.html": [ "ead222914339d15151145dd6fcea11971dbc0244", [ - "css/motion/offset-path-shape-ellipse-003.html", + null, [ [ "/css/motion/offset-path-shape-ellipse-003-ref.html", @@ -315057,7 +317721,7 @@ "offset-path-shape-ellipse-004.html": [ "af178eb14ef3127dd0265de8600067ed196a927b", [ - "css/motion/offset-path-shape-ellipse-004.html", + null, [ [ "/css/motion/offset-path-shape-ellipse-004-ref.html", @@ -315086,7 +317750,7 @@ "offset-path-shape-ellipse-005.html": [ "7364728df1ffa47e51a4d91eec6ef59a4cbfa887", [ - "css/motion/offset-path-shape-ellipse-005.html", + null, [ [ "/css/motion/offset-path-shape-ellipse-005-ref.html", @@ -315115,7 +317779,7 @@ "offset-path-shape-ellipse-006.html": [ "6ec56ff496210d96902872163ad09d2c12d21e4e", [ - "css/motion/offset-path-shape-ellipse-006.html", + null, [ [ "/css/motion/offset-path-shape-ellipse-003-ref.html", @@ -315141,10 +317805,39 @@ } ] ], + "offset-path-shape-ellipse-007.html": [ + "fda9cd44f9fce408d820ad6a70af1e89d62f3f6e", + [ + null, + [ + [ + "/css/motion/offset-path-shape-ellipse-001-ref.html", + "==" + ] + ], + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 100 + ], + [ + 0, + 401 + ] + ] + ] + ] + } + ] + ], "offset-path-shape-inset-001.html": [ "8d90aef2e1971ed8132e1302ff990f7de1347d5c", [ - "css/motion/offset-path-shape-inset-001.html", + null, [ [ "/css/motion/offset-path-shape-inset-001-ref.html", @@ -315173,7 +317866,7 @@ "offset-path-shape-inset-002.html": [ "ceafdd8cd2389de91e78ceeec7ea00723dcf4fa3", [ - "css/motion/offset-path-shape-inset-002.html", + null, [ [ "/css/motion/offset-path-shape-inset-002-ref.html", @@ -315202,7 +317895,7 @@ "offset-path-shape-polygon-001.html": [ "fcb31f245252de3db5c38e18708e46a96f47eb71", [ - "css/motion/offset-path-shape-polygon-001.html", + null, [ [ "/css/motion/offset-path-shape-polygon-001-ref.html", @@ -315231,7 +317924,7 @@ "offset-path-shape-polygon-002.html": [ "39352f22be95b72c62ac942f224f756d2774bac4", [ - "css/motion/offset-path-shape-polygon-002.html", + null, [ [ "/css/motion/offset-path-shape-polygon-002-ref.html", @@ -315244,7 +317937,7 @@ "offset-path-shape-polygon-003.html": [ "caa08082e4e879f93aa249d01c9971788513f2ae", [ - "css/motion/offset-path-shape-polygon-003.html", + null, [ [ "/css/motion/offset-path-shape-polygon-003-ref.html", @@ -315273,7 +317966,7 @@ "offset-path-shape-rect-001.html": [ "a8a2336cc81c8e9089d62a8d8b2773df8af91f3b", [ - "css/motion/offset-path-shape-rect-001.html", + null, [ [ "/css/motion/offset-path-shape-rect-001-ref.html", @@ -315286,7 +317979,7 @@ "offset-path-shape-rect-002.html": [ "204eadcfc34ea4ef895e0501319b3a22f006dcb3", [ - "css/motion/offset-path-shape-rect-002.html", + null, [ [ "/css/motion/offset-path-shape-rect-002-ref.html", @@ -315315,7 +318008,7 @@ "offset-path-shape-rect-003.html": [ "597cdb372681008117e41c5d0ea1fbb53cb4c605", [ - "css/motion/offset-path-shape-rect-003.html", + null, [ [ "/css/motion/offset-path-shape-rect-003-ref.html", @@ -315325,10 +318018,49 @@ {} ] ], + "offset-path-shape-shape-001.html": [ + "4cca1744d061257c3cf1245988cd5f479e0b50f3", + [ + null, + [ + [ + "/css/motion/offset-path-shape-shape-001-ref.html", + "==" + ] + ], + {} + ] + ], + "offset-path-shape-shape-002.html": [ + "51030cab1465b2d52fa103e93c661bbd58540d47", + [ + null, + [ + [ + "/css/motion/offset-path-shape-shape-001-ref.html", + "==" + ] + ], + {} + ] + ], + "offset-path-shape-shape-003.html": [ + "2b83f89cdc455c433e46f02648e45d91d7bb8a76", + [ + null, + [ + [ + "/css/motion/offset-path-shape-shape-001-ref.html", + "==" + ] + ], + {} + ] + ], "offset-path-shape-xywh-001.html": [ "0360b2fa3f32f8e1587ce0c872ad208f5838cf0e", [ - "css/motion/offset-path-shape-xywh-001.html", + null, [ [ "/css/motion/offset-path-shape-xywh-001-ref.html", @@ -315341,7 +318073,7 @@ "offset-path-shape-xywh-002.html": [ "ef6a9e6324249621a112498e9b8075e98cae53e8", [ - "css/motion/offset-path-shape-xywh-002.html", + null, [ [ "/css/motion/offset-path-shape-xywh-002-ref.html", @@ -315370,7 +318102,7 @@ "offset-path-shape-xywh-003.html": [ "a03bea9e12dbb95f1aa273dc32e412aa2fa25689", [ - "css/motion/offset-path-shape-xywh-003.html", + null, [ [ "/css/motion/offset-path-shape-xywh-003-ref.html", @@ -315409,7 +318141,7 @@ "offset-path-url-001.html": [ "0c7ac4f1019b3bad85f565c2851ef8ed7c187860", [ - "css/motion/offset-path-url-001.html", + null, [ [ "/css/motion/offset-path-url-001-ref.html", @@ -315422,7 +318154,7 @@ "offset-path-url-002.html": [ "7957d785a3ff9f74e90a6ceba231a424d54ca2c7", [ - "css/motion/offset-path-url-002.html", + null, [ [ "/css/motion/offset-path-url-002-ref.html", @@ -315435,7 +318167,7 @@ "offset-path-url-003.html": [ "4485b52d071f15b9b9f812af0fe5f56a30cd0494", [ - "css/motion/offset-path-url-003.html", + null, [ [ "/css/motion/offset-path-url-003-ref.html", @@ -315464,7 +318196,7 @@ "offset-path-url-004.html": [ "05aea375a18018eac9e0797f2cbdc1c3dae8963d", [ - "css/motion/offset-path-url-004.html", + null, [ [ "/css/motion/offset-path-url-004-ref.html", @@ -315493,7 +318225,7 @@ "offset-path-url-005.html": [ "437a111a7eab49821e1cc07b0d65fb1bf8971324", [ - "css/motion/offset-path-url-005.html", + null, [ [ "/css/motion/offset-path-url-001-ref.html", @@ -315506,7 +318238,7 @@ "offset-path-url-006.html": [ "b65af774bb7eefafafffd8799d8daeb4476c1bcd", [ - "css/motion/offset-path-url-006.html", + null, [ [ "/css/motion/offset-path-url-001-ref.html", @@ -315519,7 +318251,7 @@ "offset-path-url-007.html": [ "0f80207c0e3c491a242ad43993a4edc108568756", [ - "css/motion/offset-path-url-007.html", + null, [ [ "/css/motion/offset-path-url-002-ref.html", @@ -315532,7 +318264,7 @@ "offset-path-url-008.html": [ "48b99006f94289179cb2ddd6c5af044ad721e09d", [ - "css/motion/offset-path-url-008.html", + null, [ [ "/css/motion/offset-path-url-008-ref.html", @@ -315545,7 +318277,7 @@ "offset-path-url-009.html": [ "90a13d18f4ba99d7746817ccdf2e58051c4ef511", [ - "css/motion/offset-path-url-009.html", + null, [ [ "/css/motion/offset-path-url-008-ref.html", @@ -315558,7 +318290,7 @@ "offset-path-url-010.html": [ "d29077045978ea09c8902af24f507365a86a27f1", [ - "css/motion/offset-path-url-010.html", + null, [ [ "/css/motion/offset-path-url-008-ref.html", @@ -315571,7 +318303,7 @@ "offset-path-url-011.html": [ "84dfe5205bac5a388f87cc83e1d0d4e40324f158", [ - "css/motion/offset-path-url-011.html", + null, [ [ "/css/motion/offset-path-url-011-ref.html", @@ -315584,7 +318316,7 @@ "offset-rotate-001.html": [ "e5b13fe8a9ab5a4db3acf1c6428c951d1a146da6", [ - "css/motion/offset-rotate-001.html", + null, [ [ "/css/motion/offset-rotate-ref.html", @@ -315597,7 +318329,7 @@ "offset-rotate-002.html": [ "1edf38d546dff30e855c6d38342107ae10875903", [ - "css/motion/offset-rotate-002.html", + null, [ [ "/css/motion/offset-rotate-ref.html", @@ -315723,7 +318455,7 @@ "case-insensitive-parent.html": [ "a684bbb97c870b587b73e616ca1bfa4fa423f4ff", [ - "css/selectors/case-insensitive-parent.html", + null, [ [ "/css/selectors/case-insensitive-parent-ref.html", @@ -315762,7 +318494,7 @@ "dir-pseudo-update-document-element.html": [ "92bf1b4d5f02aa477d4e4e16272803e04da8eb52", [ - "css/selectors/dir-pseudo-update-document-element.html", + null, [ [ "/css/selectors/dir-pseudo-update-document-element-ref.html", @@ -315905,7 +318637,7 @@ "dir-style-01a.html": [ "f379d14e1896d4d3127d184cbac7278ee96c98ec", [ - "css/selectors/dir-style-01a.html", + null, [ [ "/css/selectors/dir-style-01-ref.html", @@ -315934,7 +318666,7 @@ "dir-style-01b.html": [ "37ad9406cfd7df45eb52f87d0e63c0c95f579eda", [ - "css/selectors/dir-style-01b.html", + null, [ [ "/css/selectors/dir-style-01-ref.html", @@ -316015,7 +318747,7 @@ "dir-style-04.html": [ "cbfe1307d43185998a3b476fce6701f189f2ee2f", [ - "css/selectors/dir-style-04.html", + null, [ [ "/css/selectors/dir-style-04-ref.html", @@ -316044,7 +318776,7 @@ "first-letter-flag-001.html": [ "dc23dda1741b154a7af3f48677b0fbe0744d06d4", [ - "css/selectors/first-letter-flag-001.html", + null, [ [ "/css/selectors/first-letter-flag-001-ref.html", @@ -316340,10 +319072,23 @@ {} ] ], + "has-display-none-checked.html": [ + "96b1f8bd0489658bdf5183c4772f780a25dc0bb9", + [ + null, + [ + [ + "/css/selectors/has-display-none-checked-ref.html", + "==" + ] + ], + {} + ] + ], "has-style-sharing-001.html": [ "bf45e98cf2d40700c40cacec84edfb26b6cdb55f", [ - "css/selectors/has-style-sharing-001.html", + null, [ [ "/css/selectors/has-style-sharing-001-ref.html", @@ -316356,7 +319101,7 @@ "has-style-sharing-002.html": [ "630a136186af4472e3ace0b084bf8ccf05696ed1", [ - "css/selectors/has-style-sharing-002.html", + null, [ [ "/css/selectors/has-style-sharing-002-ref.html", @@ -316369,7 +319114,7 @@ "has-style-sharing-003.html": [ "480a23e368219e69fde2434559fa194089702fa8", [ - "css/selectors/has-style-sharing-003.html", + null, [ [ "/css/selectors/has-style-sharing-003-ref.html", @@ -316382,7 +319127,7 @@ "has-style-sharing-004.html": [ "c0879f70ec7644196bfb9f35e8cbfd1e97f96ec6", [ - "css/selectors/has-style-sharing-004.html", + null, [ [ "/css/selectors/has-style-sharing-004-ref.html", @@ -316395,7 +319140,7 @@ "has-style-sharing-005.html": [ "d6b05fc33d8a7df0e77373818a24eda28747d169", [ - "css/selectors/has-style-sharing-005.html", + null, [ [ "/css/selectors/has-style-sharing-005-ref.html", @@ -316408,7 +319153,7 @@ "has-style-sharing-006.html": [ "e0d824f359f91aec0d30049e4312d3accf7281f5", [ - "css/selectors/has-style-sharing-006.html", + null, [ [ "/css/selectors/has-style-sharing-006-ref.html", @@ -316421,7 +319166,7 @@ "has-style-sharing-007.html": [ "494ff15796af6bc0e112a51ffe1f4a0e43a06ef3", [ - "css/selectors/has-style-sharing-007.html", + null, [ [ "/css/selectors/has-style-sharing-007-ref.html", @@ -316431,6 +319176,110 @@ {} ] ], + "has-style-sharing-pseudo-001.html": [ + "6edb3da03eed5c9328d194c4d365f04b19a5025b", + [ + null, + [ + [ + "/css/selectors/has-style-sharing-pseudo-001-ref.html", + "==" + ] + ], + {} + ] + ], + "has-style-sharing-pseudo-002.html": [ + "59dd2a9a1b5f38a08c35c26bb255d675b6551903", + [ + null, + [ + [ + "/css/selectors/has-style-sharing-pseudo-002-ref.html", + "==" + ] + ], + {} + ] + ], + "has-style-sharing-pseudo-003.html": [ + "f94636f5dcc234796e408a80940d7ad267c258c1", + [ + null, + [ + [ + "/css/selectors/has-style-sharing-pseudo-003-ref.html", + "==" + ] + ], + {} + ] + ], + "has-style-sharing-pseudo-004.html": [ + "82e42005d0630b1c6b5a72c4b82ad63541bae077", + [ + null, + [ + [ + "/css/selectors/has-style-sharing-pseudo-004-ref.html", + "==" + ] + ], + {} + ] + ], + "has-style-sharing-pseudo-005.html": [ + "9e7cbe96fcf74c345029e51849115e8afddc5d12", + [ + null, + [ + [ + "/css/selectors/has-style-sharing-pseudo-005-ref.html", + "==" + ] + ], + {} + ] + ], + "has-style-sharing-pseudo-006.html": [ + "d8747abd4a4a310a7f728d9319d6c0bf0f6e7e29", + [ + null, + [ + [ + "/css/selectors/has-style-sharing-pseudo-006-ref.html", + "==" + ] + ], + {} + ] + ], + "has-style-sharing-pseudo-007.html": [ + "0e245f5aaff172483e0cbaa1e44affdb58e5868c", + [ + null, + [ + [ + "/css/selectors/has-style-sharing-pseudo-007-ref.html", + "==" + ] + ], + {} + ] + ], + "has-style-sharing-pseudo-008.html": [ + "59844419ffaa467afb51daee7f3c387a85a56ab6", + [ + null, + [ + [ + "/css/selectors/has-style-sharing-pseudo-008-ref.html", + "==" + ] + ], + {} + ] + ], "has-visited.html": [ "8fe322c8b1751b2f4232e9898fa71bab5e203cde", [ @@ -316476,7 +319325,7 @@ "any-link-attribute-removal.html": [ "9da6b2edeba36fe0a98b661fd1f027e85ea729bf", [ - "css/selectors/invalidation/any-link-attribute-removal.html", + null, [ [ "/css/selectors/invalidation/any-link-attribute-removal-ref.html", @@ -316512,10 +319361,23 @@ {} ] ], + "has-append-first-node.html": [ + "82060cc99fa0f181d59a1402120d916c9801f290", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], "has-pseudo-element.html": [ "0dfd602e511fbca18f1c54de5ff04719f5935e3a", [ - "css/selectors/invalidation/has-pseudo-element.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -316580,7 +319442,7 @@ "negated-nth-child-when-ancestor-changes.html": [ "0d76146f19ad312d42a09cd89c14824424c193d3", [ - "css/selectors/invalidation/negated-nth-child-when-ancestor-changes.html", + null, [ [ "/css/selectors/invalidation/negated-nth-child-when-ancestor-changes-ref.html", @@ -316593,7 +319455,7 @@ "negated-nth-last-child-when-ancestor-changes.html": [ "27f66ee3244dc58e4bb09a64222d8f2b55524ea0", [ - "css/selectors/invalidation/negated-nth-last-child-when-ancestor-changes.html", + null, [ [ "/css/selectors/invalidation/negated-nth-last-child-when-ancestor-changes-ref.html", @@ -316606,7 +319468,7 @@ "nth-child-containing-ancestor.html": [ "a7f246328c8f5f48c7f32822ea8dfdecde474022", [ - "css/selectors/invalidation/nth-child-containing-ancestor.html", + null, [ [ "/css/selectors/invalidation/nth-child-containing-ancestor-ref.html", @@ -316617,9 +319479,9 @@ ] ], "nth-child-in-shadow-root.html": [ - "9e6a5b129a37576f310266525c35c2cf7af0bcea", + "1618033c9593fabbc1bde5e7239b86bcb475f3aa", [ - "css/selectors/invalidation/nth-child-in-shadow-root.html", + null, [ [ "/css/selectors/invalidation/nth-child-in-shadow-root-ref.html", @@ -316632,7 +319494,7 @@ "nth-child-of-attr-largedom.html": [ "07d87d2d4b4ae7448725890cc27f8ac0bc334c88", [ - "css/selectors/invalidation/nth-child-of-attr-largedom.html", + null, [ [ "/css/selectors/invalidation/nth-child-of-attr-largedom-ref.html", @@ -316645,7 +319507,7 @@ "nth-child-of-attr.html": [ "d4e82ff78c01832f2531d0b0e0a720b7fb9115fc", [ - "css/selectors/invalidation/nth-child-of-attr.html", + null, [ [ "/css/selectors/invalidation/nth-child-of-attr-ref.html", @@ -316658,7 +319520,7 @@ "nth-child-of-class-prefix.html": [ "2ea57c099f815399ec1d2f1a7839b08901e00f54", [ - "css/selectors/invalidation/nth-child-of-class-prefix.html", + null, [ [ "/css/selectors/invalidation/nth-child-of-class-ref.html", @@ -316671,7 +319533,7 @@ "nth-child-of-class.html": [ "1171f25c0a448a233580e7552fa5bb06ef721ec3", [ - "css/selectors/invalidation/nth-child-of-class.html", + null, [ [ "/css/selectors/invalidation/nth-child-of-class-ref.html", @@ -316684,7 +319546,7 @@ "nth-child-of-has.html": [ "8473828973def17ad8859fd1167ba364c5c4b41b", [ - "css/selectors/invalidation/nth-child-of-has.html", + null, [ [ "/css/selectors/invalidation/nth-child-of-has-ref.html", @@ -316697,7 +319559,7 @@ "nth-child-of-id-prefix.html": [ "b07b1cfc411c3b002f991ef5e13021880d225969", [ - "css/selectors/invalidation/nth-child-of-id-prefix.html", + null, [ [ "/css/selectors/invalidation/nth-child-of-class-ref.html", @@ -316710,7 +319572,7 @@ "nth-child-of-ids.html": [ "8e94aa3e22c68e2fdb8c4787949dab8bd999ef59", [ - "css/selectors/invalidation/nth-child-of-ids.html", + null, [ [ "/css/selectors/invalidation/nth-child-of-class-ref.html", @@ -316723,7 +319585,7 @@ "nth-child-of-in-ancestor.html": [ "2ae80061b05deff92ae2805634530ee4e2b212d0", [ - "css/selectors/invalidation/nth-child-of-in-ancestor.html", + null, [ [ "/css/selectors/invalidation/nth-child-of-in-ancestor-ref.html", @@ -316736,7 +319598,7 @@ "nth-child-of-in-is.html": [ "f004195c83e226c02fe87c0b70a0a8e74d59eaa1", [ - "css/selectors/invalidation/nth-child-of-in-is.html", + null, [ [ "/css/selectors/invalidation/nth-child-of-class-ref.html", @@ -316747,9 +319609,9 @@ ] ], "nth-child-of-in-shadow-root.html": [ - "4195a14a3ed80583ace772854fcbbf6e84388614", + "519885ea78537ac906016496c2289d74f6ac86df", [ - "css/selectors/invalidation/nth-child-of-in-shadow-root.html", + null, [ [ "/css/selectors/invalidation/nth-child-of-in-shadow-root-ref.html", @@ -316762,7 +319624,7 @@ "nth-child-of-is.html": [ "4473845a7a09d97acd5dacd1fbc51e50b679222c", [ - "css/selectors/invalidation/nth-child-of-is.html", + null, [ [ "/css/selectors/invalidation/nth-child-of-class-ref.html", @@ -316775,7 +319637,7 @@ "nth-child-of-pseudo-class.html": [ "2a0b071b93b05cbea5e67fad3d8dcd1ba35ed020", [ - "css/selectors/invalidation/nth-child-of-pseudo-class.html", + null, [ [ "/css/selectors/invalidation/nth-child-of-pseudo-class-ref.html", @@ -316788,7 +319650,7 @@ "nth-child-of-sibling.html": [ "68e46518ec2bf1bb82b56572b58bde61377120b4", [ - "css/selectors/invalidation/nth-child-of-sibling.html", + null, [ [ "/css/selectors/invalidation/nth-child-of-sibling-ref.html", @@ -316801,7 +319663,7 @@ "nth-child-when-ancestor-changes.html": [ "c4a97ee7e805c24e74874c330a9ed1f260229267", [ - "css/selectors/invalidation/nth-child-when-ancestor-changes.html", + null, [ [ "/css/selectors/invalidation/nth-child-when-ancestor-changes-ref.html", @@ -316814,7 +319676,7 @@ "nth-child-when-sibling-changes.html": [ "43374df917423e7ec9860011b2ce6e1915e52289", [ - "css/selectors/invalidation/nth-child-when-sibling-changes.html", + null, [ [ "/css/selectors/invalidation/nth-child-when-sibling-changes-ref.html", @@ -316827,7 +319689,7 @@ "nth-last-child-containing-ancestor.html": [ "f3a63bdb2e5ade24142c1e42cf0c1f37208ef07d", [ - "css/selectors/invalidation/nth-last-child-containing-ancestor.html", + null, [ [ "/css/selectors/invalidation/nth-child-containing-ancestor-ref.html", @@ -316838,9 +319700,9 @@ ] ], "nth-last-child-in-shadow-root.html": [ - "a14f4765674cb45cc3b93f48125606a278612d24", + "4145bf7498437fd6275dac356cb917b6f2009530", [ - "css/selectors/invalidation/nth-last-child-in-shadow-root.html", + null, [ [ "/css/selectors/invalidation/nth-last-child-in-shadow-root-ref.html", @@ -316853,7 +319715,7 @@ "nth-last-child-of-attr.html": [ "9381796bf1636d33ece681581db693985c151757", [ - "css/selectors/invalidation/nth-last-child-of-attr.html", + null, [ [ "/css/selectors/invalidation/nth-last-child-of-attr-ref.html", @@ -316866,7 +319728,7 @@ "nth-last-child-of-class-prefix.html": [ "da12246926d72293893330a041592130ddd4663c", [ - "css/selectors/invalidation/nth-last-child-of-class-prefix.html", + null, [ [ "/css/selectors/invalidation/nth-last-child-of-class-ref.html", @@ -316879,7 +319741,7 @@ "nth-last-child-of-class.html": [ "2026796bb927c48782946fbf3e0d215d9e343534", [ - "css/selectors/invalidation/nth-last-child-of-class.html", + null, [ [ "/css/selectors/invalidation/nth-last-child-of-class-ref.html", @@ -316892,7 +319754,7 @@ "nth-last-child-of-has.html": [ "0c80925f87ab0dab8f7240dea4451fcc747c2175", [ - "css/selectors/invalidation/nth-last-child-of-has.html", + null, [ [ "/css/selectors/invalidation/nth-last-child-of-has-ref.html", @@ -316905,7 +319767,7 @@ "nth-last-child-of-id-prefix.html": [ "747236aca0b8818bce370626f359c779dcf4a0ac", [ - "css/selectors/invalidation/nth-last-child-of-id-prefix.html", + null, [ [ "/css/selectors/invalidation/nth-last-child-of-class-ref.html", @@ -316918,7 +319780,7 @@ "nth-last-child-of-ids.html": [ "def336119a5c2143a3330afc265325f3cfb46c1d", [ - "css/selectors/invalidation/nth-last-child-of-ids.html", + null, [ [ "/css/selectors/invalidation/nth-last-child-of-class-ref.html", @@ -316931,7 +319793,7 @@ "nth-last-child-of-in-ancestor.html": [ "b4e0e6f4f6bec9584a7469d04266899f859e56ca", [ - "css/selectors/invalidation/nth-last-child-of-in-ancestor.html", + null, [ [ "/css/selectors/invalidation/nth-last-child-of-in-ancestor-ref.html", @@ -316944,7 +319806,7 @@ "nth-last-child-of-in-is.html": [ "370883ecf1c44412f8978980296ad30c0f547977", [ - "css/selectors/invalidation/nth-last-child-of-in-is.html", + null, [ [ "/css/selectors/invalidation/nth-last-child-of-class-ref.html", @@ -316955,9 +319817,9 @@ ] ], "nth-last-child-of-in-shadow-root.html": [ - "d403111785723ce4e96d4273c224a8d9d5e7b108", + "7ae04f302cab89db5fc2e743402ff25e218fbb3c", [ - "css/selectors/invalidation/nth-last-child-of-in-shadow-root.html", + null, [ [ "/css/selectors/invalidation/nth-last-child-of-in-shadow-root-ref.html", @@ -316970,7 +319832,7 @@ "nth-last-child-of-is.html": [ "0db7347698db341f4c11adf2203efd909410ed39", [ - "css/selectors/invalidation/nth-last-child-of-is.html", + null, [ [ "/css/selectors/invalidation/nth-last-child-of-class-ref.html", @@ -316983,7 +319845,7 @@ "nth-last-child-of-pseudo-class.html": [ "1907532065c39af008a9294d5484a5ff513eaf06", [ - "css/selectors/invalidation/nth-last-child-of-pseudo-class.html", + null, [ [ "/css/selectors/invalidation/nth-last-child-of-pseudo-class-ref.html", @@ -316996,7 +319858,7 @@ "nth-last-child-of-sibling.html": [ "b7b9bd70ab8e3f3a2c95613709d26e501e5671aa", [ - "css/selectors/invalidation/nth-last-child-of-sibling.html", + null, [ [ "/css/selectors/invalidation/nth-last-child-of-sibling-ref.html", @@ -317009,7 +319871,7 @@ "nth-last-child-when-ancestor-changes.html": [ "1cc7020e5b1a9688dad2da1871c98c2e02709ec4", [ - "css/selectors/invalidation/nth-last-child-when-ancestor-changes.html", + null, [ [ "/css/selectors/invalidation/nth-last-child-when-ancestor-changes-ref.html", @@ -317022,7 +319884,7 @@ "nth-last-child-when-sibling-changes.html": [ "a8c2156483846953ee97d30f4b9d7c9017f387c0", [ - "css/selectors/invalidation/nth-last-child-when-sibling-changes.html", + null, [ [ "/css/selectors/invalidation/nth-last-child-when-sibling-changes-ref.html", @@ -317033,9 +319895,9 @@ ] ], "part-pseudo.html": [ - "a409271762fb41a3c4d4243e1759aa5f8cd3c54b", + "eee8bf552283a9f3457c7f25402c1a70c0b05842", [ - "css/selectors/invalidation/part-pseudo.html", + null, [ [ "/css/selectors/invalidation/part-pseudo-ref.html", @@ -317179,7 +320041,7 @@ "nth-child-and-nth-last-child.html": [ "1379b4c706de2e3353f0ecc4bb5e2bbe00e24b25", [ - "css/selectors/nth-child-and-nth-last-child.html", + null, [ [ "/css/selectors/nth-child-and-nth-last-child-ref.html", @@ -317218,7 +320080,7 @@ "nth-child-of-classname.html": [ "1cfb01056c96390771aa07c1e704113f689188fd", [ - "css/selectors/nth-child-of-classname.html", + null, [ [ "/css/selectors/nth-child-of-classname-ref.html", @@ -317231,7 +320093,7 @@ "nth-child-of-complex-selector-many-children-2.html": [ "1f4fcf2418547e837ed5bcad9fbba71099d5f06d", [ - "css/selectors/nth-child-of-complex-selector-many-children-2.html", + null, [ [ "/css/selectors/nth-child-of-complex-selector-many-children-2-ref.html", @@ -317244,7 +320106,7 @@ "nth-child-of-complex-selector-many-children.html": [ "ab958c9d8844c485cb78401051840dba688d224e", [ - "css/selectors/nth-child-of-complex-selector-many-children.html", + null, [ [ "/css/selectors/nth-child-of-complex-selector-many-children-ref.html", @@ -317257,7 +320119,7 @@ "nth-child-of-complex-selector.html": [ "f06680a57f7260b275b8205d878b9febd6b37fb1", [ - "css/selectors/nth-child-of-complex-selector.html", + null, [ [ "/css/selectors/nth-child-of-complex-selector-ref.html", @@ -317270,7 +320132,7 @@ "nth-child-of-compound-selector.html": [ "50bdba0b83ee53ff6b6c8e5e7d6f8b2ea37b333a", [ - "css/selectors/nth-child-of-compound-selector.html", + null, [ [ "/css/selectors/nth-child-of-compound-selector-ref.html", @@ -317296,7 +320158,7 @@ "nth-child-of-nesting.html": [ "78c5cde1cc6e359ef45cb7d2f2505944c0e7a5c4", [ - "css/selectors/nth-child-of-nesting.html", + null, [ [ "/css/selectors/nth-child-of-nesting-ref.html", @@ -317309,7 +320171,7 @@ "nth-child-of-no-space-after-of.html": [ "997b07c27dc52c12ec5e279a2f1b19aae09682bd", [ - "css/selectors/nth-child-of-no-space-after-of.html", + null, [ [ "/css/selectors/nth-child-of-no-space-after-of-ref.html", @@ -317348,7 +320210,7 @@ "nth-child-of-pseudo.html": [ "7113af901042966053b5484a5a9e3d09139e006d", [ - "css/selectors/nth-child-of-pseudo.html", + null, [ [ "/css/selectors/nth-child-of-pseudo-ref.html", @@ -317361,7 +320223,7 @@ "nth-child-of-tagname.html": [ "cc92ad6df99c532d69e788710a756b4533a52cc4", [ - "css/selectors/nth-child-of-tagname.html", + null, [ [ "/css/selectors/nth-child-of-tagname-ref.html", @@ -317387,7 +320249,7 @@ "nth-child-specificity-1.html": [ "64d9eb27c0e34feda152a613dc8d20894ec20a76", [ - "css/selectors/nth-child-specificity-1.html", + null, [ [ "/css/selectors/nth-child-specificity-1-ref.html", @@ -317400,7 +320262,7 @@ "nth-child-specificity-2.html": [ "10467e7408ffcd42586982c89fb0b1443295aedc", [ - "css/selectors/nth-child-specificity-2.html", + null, [ [ "/css/selectors/nth-child-specificity-2-ref.html", @@ -317413,7 +320275,7 @@ "nth-child-specificity-3.html": [ "8649f4fc4a058ad452a7cb4abf613a4b044dcde1", [ - "css/selectors/nth-child-specificity-3.html", + null, [ [ "/css/selectors/nth-child-specificity-3-ref.html", @@ -317426,7 +320288,7 @@ "nth-child-specificity-4.html": [ "de856c28249de80672b577835461d727457dc601", [ - "css/selectors/nth-child-specificity-4.html", + null, [ [ "/css/selectors/nth-child-specificity-4-ref.html", @@ -317439,7 +320301,7 @@ "nth-last-child-of-classname.html": [ "80770b08a60b006a391331ab6bc46b59170d359a", [ - "css/selectors/nth-last-child-of-classname.html", + null, [ [ "/css/selectors/nth-last-child-of-classname-ref.html", @@ -317452,7 +320314,7 @@ "nth-last-child-of-complex-selector.html": [ "ae8fc6ebfad500c13ec77d39b9440980e87b9ca6", [ - "css/selectors/nth-last-child-of-complex-selector.html", + null, [ [ "/css/selectors/nth-last-child-of-complex-selector-ref.html", @@ -317465,7 +320327,7 @@ "nth-last-child-of-compound-selector.html": [ "df1d58347b73bb277b64fdc221217106147833cf", [ - "css/selectors/nth-last-child-of-compound-selector.html", + null, [ [ "/css/selectors/nth-last-child-of-compound-selector-ref.html", @@ -317478,7 +320340,7 @@ "nth-last-child-of-nesting.html": [ "e1ce3ce2038f33640c32bf11d7064273bd922e4b", [ - "css/selectors/nth-last-child-of-nesting.html", + null, [ [ "/css/selectors/nth-child-of-nesting-ref.html", @@ -317491,7 +320353,7 @@ "nth-last-child-of-no-space-after-of.html": [ "5ce99119b91c0df63ac1d1360e6bd7684ce9e3ee", [ - "css/selectors/nth-last-child-of-no-space-after-of.html", + null, [ [ "/css/selectors/nth-child-of-no-space-after-of-ref.html", @@ -317504,7 +320366,7 @@ "nth-last-child-of-style-sharing-1.html": [ "17ea008b2d8da04d709b2bba11041b9fa91a368e", [ - "css/selectors/nth-last-child-of-style-sharing-1.html", + null, [ [ "/css/selectors/nth-last-child-of-style-sharing-1-ref.html", @@ -317517,7 +320379,7 @@ "nth-last-child-of-style-sharing-2.html": [ "2c586956b4a5afd38608fe4a98828f3797daee1e", [ - "css/selectors/nth-last-child-of-style-sharing-2.html", + null, [ [ "/css/selectors/nth-last-child-of-style-sharing-2-ref.html", @@ -317530,7 +320392,7 @@ "nth-last-child-of-tagname.html": [ "385d12948c011365717342494cef0f24a49230ff", [ - "css/selectors/nth-last-child-of-tagname.html", + null, [ [ "/css/selectors/nth-last-child-of-tagname-ref.html", @@ -317543,7 +320405,7 @@ "nth-last-child-specificity-1.html": [ "18e00f1ca57dbe6be1f1af10650023f8f3e8e020", [ - "css/selectors/nth-last-child-specificity-1.html", + null, [ [ "/css/selectors/nth-last-child-specificity-1-ref.html", @@ -317556,7 +320418,7 @@ "nth-last-child-specificity-2.html": [ "3c3c8739f37b8190b0f0745b23395223d9a18e37", [ - "css/selectors/nth-last-child-specificity-2.html", + null, [ [ "/css/selectors/nth-last-child-specificity-2-ref.html", @@ -317569,7 +320431,7 @@ "nth-last-child-specificity-3.html": [ "93a7007a48bf114a51ff4f05f88d9b2ac7e190d0", [ - "css/selectors/nth-last-child-specificity-3.html", + null, [ [ "/css/selectors/nth-last-child-specificity-3-ref.html", @@ -317582,7 +320444,7 @@ "nth-last-child-specificity-4.html": [ "f556b994b06b894e1b9cf68854f5e87b0283630d", [ - "css/selectors/nth-last-child-specificity-4.html", + null, [ [ "/css/selectors/nth-last-child-specificity-4-ref.html", @@ -319184,7 +322046,7 @@ "lang-000.html": [ "1d66bebbc6b53706ae782eec7b6a70cbaba3ec7f", [ - "css/selectors/selectors-4/lang-000.html", + null, [ [ "/css/selectors/selectors-4/lang-000-ref.html", @@ -319197,7 +322059,7 @@ "lang-001.html": [ "908643fca81d533e76869c6af874fb3797991bfc", [ - "css/selectors/selectors-4/lang-001.html", + null, [ [ "/css/selectors/selectors-4/lang-000-ref.html", @@ -319210,7 +322072,7 @@ "lang-002.html": [ "0be426c66e7d4e1e12de1778db3256752a7a560a", [ - "css/selectors/selectors-4/lang-002.html", + null, [ [ "/css/selectors/selectors-4/lang-000-ref.html", @@ -319223,7 +322085,7 @@ "lang-003.html": [ "a3e5340b6e915d32963261669991d4040df7f096", [ - "css/selectors/selectors-4/lang-003.html", + null, [ [ "/css/selectors/selectors-4/lang-000-ref.html", @@ -319236,7 +322098,7 @@ "lang-004.html": [ "d592997270746bb0cbfa286dad65d3539e519ecb", [ - "css/selectors/selectors-4/lang-004.html", + null, [ [ "/css/selectors/selectors-4/lang-000-ref.html", @@ -319249,7 +322111,7 @@ "lang-005.html": [ "816dfc9b5034e8d9787be254660012e70b60c55d", [ - "css/selectors/selectors-4/lang-005.html", + null, [ [ "/css/selectors/selectors-4/lang-000-ref.html", @@ -319262,7 +322124,7 @@ "lang-006.html": [ "d249a4c8c06a5e9a10b40df6a9bab68f367a69d2", [ - "css/selectors/selectors-4/lang-006.html", + null, [ [ "/css/selectors/selectors-4/lang-000-ref.html", @@ -319275,7 +322137,7 @@ "lang-007.html": [ "a21506d94c1125da970792b3e2da5a542f96e332", [ - "css/selectors/selectors-4/lang-007.html", + null, [ [ "/css/selectors/selectors-4/lang-000-ref.html", @@ -319288,7 +322150,7 @@ "lang-008.html": [ "77f77a884ac5088c360c34971eec637e48c42cff", [ - "css/selectors/selectors-4/lang-008.html", + null, [ [ "/css/selectors/selectors-4/lang-000-ref.html", @@ -319301,7 +322163,7 @@ "lang-009.html": [ "bf2e9883916ea0e219a968b7dd6b0457e312d794", [ - "css/selectors/selectors-4/lang-009.html", + null, [ [ "/css/selectors/selectors-4/lang-000-ref.html", @@ -319314,7 +322176,7 @@ "lang-010.html": [ "081c9207add489896a7db13d946658d249bd893b", [ - "css/selectors/selectors-4/lang-010.html", + null, [ [ "/css/selectors/selectors-4/lang-000-ref.html", @@ -319327,7 +322189,7 @@ "lang-011.html": [ "5620317a14be99de361c456dbea873bdd294562f", [ - "css/selectors/selectors-4/lang-011.html", + null, [ [ "/css/selectors/selectors-4/lang-000-ref.html", @@ -319340,7 +322202,7 @@ "lang-012.html": [ "f299e22eaecd2bde8351b01fca62ed8eaf2eab49", [ - "css/selectors/selectors-4/lang-012.html", + null, [ [ "/css/selectors/selectors-4/lang-000-ref.html", @@ -319353,7 +322215,7 @@ "lang-013.html": [ "34303d97805386d7ca1ece6a61ebcdf1977f748d", [ - "css/selectors/selectors-4/lang-013.html", + null, [ [ "/css/selectors/selectors-4/lang-000-ref.html", @@ -319366,7 +322228,7 @@ "lang-014.html": [ "2d064c8d29b60fbb0d3351c6c019cbc3aca85521", [ - "css/selectors/selectors-4/lang-014.html", + null, [ [ "/css/selectors/selectors-4/lang-000-ref.html", @@ -319379,7 +322241,7 @@ "lang-015.html": [ "4d90b080f39607f09a63fe28756a6a51542094af", [ - "css/selectors/selectors-4/lang-015.html", + null, [ [ "/css/selectors/selectors-4/lang-000-ref.html", @@ -319392,7 +322254,7 @@ "lang-016.html": [ "4923890fe649618095275d2f3c46bc87d928ee56", [ - "css/selectors/selectors-4/lang-016.html", + null, [ [ "/css/selectors/selectors-4/lang-000-ref.html", @@ -319405,7 +322267,7 @@ "lang-017.html": [ "d5c86e5b779d095702aea1d45fc039e7cf1553f5", [ - "css/selectors/selectors-4/lang-017.html", + null, [ [ "/css/selectors/selectors-4/lang-000-ref.html", @@ -319418,7 +322280,7 @@ "lang-018.html": [ "2f777a2ab4f4beb968df03ebf8fd2feb481c246b", [ - "css/selectors/selectors-4/lang-018.html", + null, [ [ "/css/selectors/selectors-4/lang-000-ref.html", @@ -319431,7 +322293,7 @@ "lang-019.html": [ "a1e793cdacfeb5674cc49744ab2afb5da7fffbe3", [ - "css/selectors/selectors-4/lang-019.html", + null, [ [ "/css/selectors/selectors-4/lang-000-ref.html", @@ -319444,7 +322306,7 @@ "lang-020.html": [ "9a17af2e4199ee9f78c6500b4d1f1f865b1975f5", [ - "css/selectors/selectors-4/lang-020.html", + null, [ [ "/css/selectors/selectors-4/lang-000-ref.html", @@ -319457,7 +322319,7 @@ "lang-021.html": [ "7320902151074e1b73a86fd9dff99052c4b88dcc", [ - "css/selectors/selectors-4/lang-021.html", + null, [ [ "/css/selectors/selectors-4/lang-000-ref.html", @@ -319470,7 +322332,7 @@ "lang-022.html": [ "5573fa00d358f909192be135f2d02e449b77dabb", [ - "css/selectors/selectors-4/lang-022.html", + null, [ [ "/css/selectors/selectors-4/lang-000-ref.html", @@ -319483,7 +322345,7 @@ "lang-023.html": [ "58e82e7be73848b356e702f1e0ad519c11b1d80a", [ - "css/selectors/selectors-4/lang-023.html", + null, [ [ "/css/selectors/selectors-4/lang-000-ref.html", @@ -319496,7 +322358,7 @@ "lang-024.html": [ "fb1926855d83aef90a380007dab574ce50d9ddba", [ - "css/selectors/selectors-4/lang-024.html", + null, [ [ "/css/selectors/selectors-4/lang-000-ref.html", @@ -319509,7 +322371,7 @@ "lang-025.html": [ "027223299da8aedcaf62bd09198480d6e428248d", [ - "css/selectors/selectors-4/lang-025.html", + null, [ [ "/css/selectors/selectors-4/lang-000-ref.html", @@ -319585,6 +322447,19 @@ {} ] ], + "user-invalid-form-submission-invalidation.html": [ + "578ea8d4c50d28bb6809aa3fc093f371ea3eeaa0", + [ + "css/selectors/user-invalid-form-submission-invalidation.html", + [ + [ + "/css/selectors/user-invalid-form-submission-invalidation-ref.html", + "==" + ] + ], + {} + ] + ], "visited-inheritance.html": [ "1442307a9293ed0b26970dd25e70e8c57fef8ee8", [ @@ -319601,7 +322476,7 @@ "xml-class-selector.xml": [ "5666c0065d6262e0ca3c586d145a67e7f9c2a3cf", [ - "css/selectors/xml-class-selector.xml", + null, [ [ "/css/selectors/xml-class-selector-ref.xml", @@ -319611,62 +322486,6 @@ {} ] ] - }, - "zoom": { - "tentative": { - "background-image.html": [ - "db6baa60db1f9d7b49ee0a3a92def5bc8d5d03f4", - [ - "css/zoom/tentative/background-image.html", - [ - [ - "/css/zoom/tentative/background-image-ref.html", - "==" - ] - ], - {} - ] - ], - "basic.html": [ - "fcd1761cfad478bba33b2f9ce312eec297a6886b", - [ - "css/zoom/tentative/basic.html", - [ - [ - "/css/zoom/tentative/basic-ref.html", - "==" - ] - ], - {} - ] - ], - "inherited-length.html": [ - "2bc04ff0cbe8e87e06919b8cdee371bf3f90faa0", - [ - "css/zoom/tentative/inherited-length.html", - [ - [ - "/css/zoom/tentative/green-square-100px.html", - "==" - ] - ], - {} - ] - ], - "inherited.html": [ - "baa7f7ed8ac4afd85f42b976bc3a7eee1b7b74fa", - [ - "css/zoom/tentative/inherited.html", - [ - [ - "/css/zoom/tentative/basic-ref.html", - "==" - ] - ], - {} - ] - ] - } } }, "custom-elements": { @@ -319674,7 +322493,7 @@ "ElementInternals-reportValidity-bubble.html": [ "adad00d90e0d391891fffb812f16084f04c62b8a", [ - "custom-elements/form-associated/ElementInternals-reportValidity-bubble.html", + null, [ [ "/custom-elements/form-associated/ElementInternals-reportValidity-bubble-notref.html", @@ -319716,7 +322535,7 @@ "density-corrected-image-svg-cross-origin.sub.html": [ "293f1da1e3c5684d53c61541042ba51e6cc7487b", [ - "density-size-correction/density-corrected-image-svg-cross-origin.sub.html", + null, [ [ "/density-size-correction/density-corrected-image-svg-ref.html", @@ -319742,7 +322561,7 @@ "density-corrected-size-bg-cross-origin.sub.html": [ "2fe9eb4929c55aad1cc9cd0ef64095aeb0530621", [ - "density-size-correction/density-corrected-size-bg-cross-origin.sub.html", + null, [ [ "/density-size-correction/density-corrected-size-bg-ref.html", @@ -319755,7 +322574,7 @@ "density-corrected-size-bg-with-radius.html": [ "8d61e7442bbf29c2298c54ea4bafddeeac775581", [ - "density-size-correction/density-corrected-size-bg-with-radius.html", + null, [ [ "/density-size-correction/density-corrected-size-bg-with-radius-ref.html", @@ -319781,7 +322600,7 @@ "density-corrected-size-img-cross-origin.sub.html": [ "9f5e836bcc7665fd8f4f749d6d52d48dc685b6e7", [ - "density-size-correction/density-corrected-size-img-cross-origin.sub.html", + null, [ [ "/density-size-correction/density-corrected-size-img-ref.html", @@ -319807,7 +322626,7 @@ "density-corrected-size-pseudo-elements-cross-origin.sub.html": [ "d80f4a50dddc4006061aacdb39d42cfa400651dc", [ - "density-size-correction/density-corrected-size-pseudo-elements-cross-origin.sub.html", + null, [ [ "/density-size-correction/density-corrected-size-pseudo-elements-ref.html", @@ -319833,7 +322652,7 @@ "density-corrected-various-elements-cross-origin.sub.html": [ "9a6cc26e65dd21c5cefb61715d23eca5bf83a67b", [ - "density-size-correction/density-corrected-various-elements-cross-origin.sub.html", + null, [ [ "/density-size-correction/density-corrected-various-elements-ref.html", @@ -319859,7 +322678,7 @@ "image-set-001-cross-origin.sub.html": [ "8d331f1342a3df622e58e3ae5f40c769dcc8a8de", [ - "density-size-correction/image-set-001-cross-origin.sub.html", + null, [ [ "/density-size-correction/image-set-001-ref.html", @@ -319885,7 +322704,7 @@ "image-set-002-cross-origin.sub.html": [ "de65b8cb1a73081a3bddad85082cc598ca28e22e", [ - "density-size-correction/image-set-002-cross-origin.sub.html", + null, [ [ "/density-size-correction/image-set-002-ref.html", @@ -319911,7 +322730,7 @@ "image-set-003.html": [ "2ad8063eaa0f272ba3de2d1f01501481b736c66a", [ - "density-size-correction/image-set-003.html", + null, [ [ "/density-size-correction/image-set-001-ref.html", @@ -319924,7 +322743,7 @@ "srcset-cross-origin.sub.html": [ "60cf2463b65d9bbdf24cb71d1693129ecb3b9214", [ - "density-size-correction/srcset-cross-origin.sub.html", + null, [ [ "/density-size-correction/srcset-ref.html", @@ -319948,23 +322767,6 @@ ] ] }, - "document-policy": { - "font-display": { - "override-to-optional.tentative.html": [ - "26927bb8c6694e39d6113fad3dc6ae96ba44a150", - [ - null, - [ - [ - "/document-policy/font-display/override-to-optional.tentative-ref.html", - "==" - ] - ], - {} - ] - ] - } - }, "dom": { "nodes": { "remove-from-shadow-host-and-adopt-into-iframe.html": [ @@ -319998,7 +322800,7 @@ "large-cdata.html": [ "9c83b731bd0bec908f520fd8d71381f6592aa490", [ - "dom/xslt/large-cdata.html", + null, [ [ "/dom/xslt/large-cdata-ref.html", @@ -320249,9 +323051,9 @@ }, "focus": { "focus-large-element-in-overflow-hidden-container.html": [ - "31d2a8bce9fd75ebd8862480c7a297868abd7c24", + "261c8c1d51a8095ef69a79eecd6a4d12a383c8f3", [ - "focus/focus-large-element-in-overflow-hidden-container.html", + null, [ [ "/focus/focus-large-element-in-overflow-hidden-container-ref.html", @@ -320264,7 +323066,7 @@ "focus-visible-element-in-overflow-hidden-container.html": [ "22f5c3349d8c88c456d60fab2adcc0404d4ce05d", [ - "focus/focus-visible-element-in-overflow-hidden-container.html", + null, [ [ "/focus/focus-visible-element-in-overflow-hidden-container-ref.html", @@ -320280,7 +323082,7 @@ "forced-colors-mode-backplate-01.html": [ "97c8261a4ca5b99655f68fd99fe465b3564df5f5", [ - "forced-colors-mode/backplate/forced-colors-mode-backplate-01.html", + null, [ [ "/forced-colors-mode/backplate/forced-colors-mode-backplate-01-ref.html", @@ -320489,7 +323291,7 @@ "forced-colors-mode-14.html": [ "3ecc082d7bcaa34d1b1f204be9c1680bca42b8df", [ - "forced-colors-mode/forced-colors-mode-14.html", + null, [ [ "/forced-colors-mode/forced-colors-mode-14-ref.html", @@ -320801,7 +323603,7 @@ "forced-colors-mode-48.html": [ "feb3fc0876a3acc90693f1e004c38ece63a1ab46", [ - "forced-colors-mode/forced-colors-mode-48.html", + null, [ [ "/forced-colors-mode/forced-colors-mode-48-ref.html", @@ -320814,7 +323616,7 @@ "forced-colors-mode-49.html": [ "e96c3790fbb9e4bd37acaa83f5e3fa571da336dc", [ - "forced-colors-mode/forced-colors-mode-49.html", + null, [ [ "/forced-colors-mode/forced-colors-mode-49-ref.html", @@ -320827,7 +323629,7 @@ "forced-colors-mode-52.html": [ "5812d1eed5c7c263b90ab48e5f0e0da417703afb", [ - "forced-colors-mode/forced-colors-mode-52.html", + null, [ [ "/forced-colors-mode/forced-colors-mode-52-ref.html", @@ -320840,7 +323642,7 @@ "forced-colors-mode-53.html": [ "3b31a5999b38f3fa554cc143ca3157c5c7c6ac87", [ - "forced-colors-mode/forced-colors-mode-53.html", + null, [ [ "/forced-colors-mode/forced-colors-mode-53-ref.html", @@ -320870,12 +323672,25 @@ "fullscreen": { "rendering": { "backdrop-iframe.html": [ - "710d1b48f182d0fcb577298c72bbf6a7f7329dbf", + "dbdf9c841a4685160987ed5df0ba5e632b754669", [ null, [ [ - "/fullscreen/rendering/backdrop-iframe-ref.html", + "/fullscreen/rendering/backdrop-green-ref.html", + "==" + ] + ], + {} + ] + ], + "backdrop-inherit.html": [ + "3a38dc4c815269bcba1fb570c1b0ee1a06ff8b2e", + [ + null, + [ + [ + "/fullscreen/rendering/backdrop-green-ref.html", "==" ] ], @@ -320898,7 +323713,7 @@ "fullscreen-root-fills-page.html": [ "e2a6217346db1a4f7850446760f8be43532fa4d2", [ - "fullscreen/rendering/fullscreen-root-fills-page.html", + null, [ [ "/fullscreen/rendering/fullscreen-root-fills-page-ref.html", @@ -320933,7 +323748,7 @@ "2d.text-outside-of-the-flat-tree.html": [ "cf76967a1ea1ea879253b980922aa17363ac1e07", [ - "html/canvas/element/2d.text-outside-of-the-flat-tree.html", + null, [ [ "/html/canvas/element/2d.text-outside-of-the-flat-tree-ref.html", @@ -320943,588 +323758,692 @@ {} ] ], - "filters": { - "2d.filter.canvasFilterObject.dropShadow.tentative.html": [ - "47bb891b3f88cb0253cc646bc1e649bd4907fa06", + "compositing": { + "colr-glyph-composition.html": [ + "ed372a2613c488d0e4fff6f959ab7ffe6557aa0c", [ - "html/canvas/element/filters/2d.filter.canvasFilterObject.dropShadow.tentative.html", + null, [ [ - "/html/canvas/element/filters/2d.filter.canvasFilterObject.dropShadow.tentative-expected.html", + "/html/canvas/element/compositing/colr-glyph-composition-ref.html", "==" ] ], {} ] - ], - "2d.filter.canvasFilterObject.gaussianBlur.tentative.isotropic.html": [ - "6376d07b0e640b617ef100b7c04e8fe93e352ee8", + ] + }, + "filters": { + "2d.filter.canvasFilterObject.componentTransfer.discrete.tentative.html": [ + "0a4830568b409ea329a99eed9b06aa6f41000572", [ - "html/canvas/element/filters/2d.filter.canvasFilterObject.gaussianBlur.tentative.isotropic.html", + null, [ [ - "/html/canvas/element/filters/2d.filter.canvasFilterObject.gaussianBlur.tentative.isotropic-expected.html", + "/html/canvas/element/filters/2d.filter.canvasFilterObject.componentTransfer.discrete.tentative-expected.html", "==" ] ], - {} - ] - ], - "2d.filter.canvasFilterObject.gaussianBlur.tentative.mostly-x.html": [ - "145cb32757adbec61bb541a0cf6737b3ac9146f4", - [ - "html/canvas/element/filters/2d.filter.canvasFilterObject.gaussianBlur.tentative.mostly-x.html", - [ - [ - "/html/canvas/element/filters/2d.filter.canvasFilterObject.gaussianBlur.tentative.mostly-x-expected.html", - "==" + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 2 + ], + [ + 0, + 500 + ] + ] + ] ] - ], - {} + } ] ], - "2d.filter.canvasFilterObject.gaussianBlur.tentative.mostly-y.html": [ - "e921e0eaa65a6410a66aadce57fd8b1fe6096998", + "2d.filter.canvasFilterObject.componentTransfer.gamma.tentative.html": [ + "22e3abe624fbe6b8ac795be09ee3e06018166ba5", [ - "html/canvas/element/filters/2d.filter.canvasFilterObject.gaussianBlur.tentative.mostly-y.html", + null, [ [ - "/html/canvas/element/filters/2d.filter.canvasFilterObject.gaussianBlur.tentative.mostly-y-expected.html", + "/html/canvas/element/filters/2d.filter.canvasFilterObject.componentTransfer.gamma.tentative-expected.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 2 + ], + [ + 0, + 500 + ] + ] + ] + ] + } ] ], - "2d.filter.canvasFilterObject.gaussianBlur.tentative.x-only.html": [ - "fd6ac687f9cf72a2efbf0975e5d645c88d5d4ed8", + "2d.filter.canvasFilterObject.componentTransfer.identity.tentative.html": [ + "17761ce31a2f3c2beffff54ba17109aaa9d669e4", [ - "html/canvas/element/filters/2d.filter.canvasFilterObject.gaussianBlur.tentative.x-only.html", + null, [ [ - "/html/canvas/element/filters/2d.filter.canvasFilterObject.gaussianBlur.tentative.x-only-expected.html", + "/html/canvas/element/filters/2d.filter.canvasFilterObject.componentTransfer.identity.tentative-expected.html", "==" ] ], {} ] ], - "2d.filter.canvasFilterObject.gaussianBlur.tentative.y-only.html": [ - "6442433e7c5a37e5447a9871e7528f16cd37b9c9", + "2d.filter.canvasFilterObject.componentTransfer.linear.tentative.html": [ + "5ea5f8e0e310dc2f1d0687231ed5acd519f41c0c", [ - "html/canvas/element/filters/2d.filter.canvasFilterObject.gaussianBlur.tentative.y-only.html", + null, [ [ - "/html/canvas/element/filters/2d.filter.canvasFilterObject.gaussianBlur.tentative.y-only-expected.html", + "/html/canvas/element/filters/2d.filter.canvasFilterObject.componentTransfer.linear.tentative-expected.html", "==" ] ], - {} - ] - ] - }, - "layers": { - "2d.layer.anisotropic-blur.isotropic.html": [ - "4e496b7e4813c6af0c9676076612df123526a546", - [ - "html/canvas/element/layers/2d.layer.anisotropic-blur.isotropic.html", - [ - [ - "/html/canvas/element/layers/2d.layer.anisotropic-blur.isotropic-expected.html", - "==" + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 2 + ], + [ + 0, + 500 + ] + ] + ] ] - ], - {} + } ] ], - "2d.layer.anisotropic-blur.mostly-x.html": [ - "4217d9fad3fb719092c2d80ced75bb28dceeed3a", + "2d.filter.canvasFilterObject.componentTransfer.table.tentative.html": [ + "0f74d9c3bfd3735dca158fe28f2dd82944310349", [ - "html/canvas/element/layers/2d.layer.anisotropic-blur.mostly-x.html", + null, [ [ - "/html/canvas/element/layers/2d.layer.anisotropic-blur.mostly-x-expected.html", + "/html/canvas/element/filters/2d.filter.canvasFilterObject.componentTransfer.table.tentative-expected.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 2 + ], + [ + 0, + 500 + ] + ] + ] + ] + } ] ], - "2d.layer.anisotropic-blur.mostly-y.html": [ - "97a44e9045a040aae8b90cb6b2c5ca16f97cab04", + "2d.filter.canvasFilterObject.dropShadow.tentative.html": [ + "d6e706647387a54c790f227bf282cea0cde00d8c", [ - "html/canvas/element/layers/2d.layer.anisotropic-blur.mostly-y.html", + null, [ [ - "/html/canvas/element/layers/2d.layer.anisotropic-blur.mostly-y-expected.html", + "/html/canvas/element/filters/2d.filter.canvasFilterObject.dropShadow.tentative-expected.html", "==" ] ], {} ] ], - "2d.layer.anisotropic-blur.x-only.html": [ - "fdf604616b8c904f2de1f37b2a53ccd343ea32ad", + "2d.filter.canvasFilterObject.gaussianBlur.tentative.html": [ + "498418c292c0f294acd64daa5dc941dca0714944", [ - "html/canvas/element/layers/2d.layer.anisotropic-blur.x-only.html", + null, [ [ - "/html/canvas/element/layers/2d.layer.anisotropic-blur.x-only-expected.html", + "/html/canvas/element/filters/2d.filter.canvasFilterObject.gaussianBlur.tentative-expected.html", "==" ] ], {} ] ], - "2d.layer.anisotropic-blur.y-only.html": [ - "c7ceb63a87cb0a5d38208f973eda3f9f70d7d350", + "2d.filter.layers.componentTransfer.discrete.html": [ + "ef9db79547c7bc8c0fd43f564e7f36d93ca0721a", [ - "html/canvas/element/layers/2d.layer.anisotropic-blur.y-only.html", + null, [ [ - "/html/canvas/element/layers/2d.layer.anisotropic-blur.y-only-expected.html", + "/html/canvas/element/filters/2d.filter.layers.componentTransfer.discrete-expected.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 2 + ], + [ + 0, + 500 + ] + ] + ] + ] + } ] ], - "2d.layer.blur-from-outside-canvas.no-clipping.html": [ - "b689ad39fe160d85725f67fa2fe7ebf03349d4dc", + "2d.filter.layers.componentTransfer.gamma.html": [ + "cccd07e92b9a715d129b21f0f692937e53ce4f20", [ - "html/canvas/element/layers/2d.layer.blur-from-outside-canvas.no-clipping.html", + null, [ [ - "/html/canvas/element/layers/2d.layer.blur-from-outside-canvas.no-clipping-expected.html", + "/html/canvas/element/filters/2d.filter.layers.componentTransfer.gamma-expected.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 2 + ], + [ + 0, + 500 + ] + ] + ] + ] + } ] ], - "2d.layer.blur-from-outside-canvas.with-clipping.html": [ - "9e8161019aa116c00d732d299134cc8c59dbfbbf", + "2d.filter.layers.componentTransfer.identity.html": [ + "3a06353849c7b88b12651488d088bfc40429cf61", [ - "html/canvas/element/layers/2d.layer.blur-from-outside-canvas.with-clipping.html", + null, [ [ - "/html/canvas/element/layers/2d.layer.blur-from-outside-canvas.with-clipping-expected.html", + "/html/canvas/element/filters/2d.filter.layers.componentTransfer.identity-expected.html", "==" ] ], {} ] ], - "2d.layer.clip-inside-and-outside.html": [ - "1a727bbd3cc8f8ca15f30a4aee2ec47e3ad5e2c8", + "2d.filter.layers.componentTransfer.linear.html": [ + "c9e744ebef0b3982a2bb32feaf234118d6620756", [ - "html/canvas/element/layers/2d.layer.clip-inside-and-outside.html", + null, [ [ - "/html/canvas/element/layers/2d.layer.clip-inside-and-outside-expected.html", + "/html/canvas/element/filters/2d.filter.layers.componentTransfer.linear-expected.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 2 + ], + [ + 0, + 500 + ] + ] + ] + ] + } ] ], - "2d.layer.clip-inside.html": [ - "f3555c8321a8b5a39155a82db971dd20374bc0dc", + "2d.filter.layers.componentTransfer.table.html": [ + "eae036b142dba42476a99677e2c6b635eb95f12e", [ - "html/canvas/element/layers/2d.layer.clip-inside.html", + null, [ [ - "/html/canvas/element/layers/2d.layer.clip-inside-expected.html", + "/html/canvas/element/filters/2d.filter.layers.componentTransfer.table-expected.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 2 + ], + [ + 0, + 500 + ] + ] + ] + ] + } ] ], - "2d.layer.clip-outside.html": [ - "bf8e84e3d25542e88c65dc1281673e775d8ecc72", + "2d.filter.layers.dropShadow.html": [ + "ceb20bb9eb3bc59a9e853a6a42d6e65af95065eb", [ - "html/canvas/element/layers/2d.layer.clip-outside.html", + null, [ [ - "/html/canvas/element/layers/2d.layer.clip-outside-expected.html", + "/html/canvas/element/filters/2d.filter.layers.dropShadow-expected.html", "==" ] ], {} ] ], - "2d.layer.cross-layer-paths.html": [ - "7feebfdce6d1b8a712636654925fb6a143a8a839", + "2d.filter.layers.gaussianBlur.html": [ + "19db679076773556e3e2291150bb79ef1edfa836", [ - "html/canvas/element/layers/2d.layer.cross-layer-paths.html", + null, [ [ - "/html/canvas/element/layers/2d.layer.cross-layer-paths-expected.html", + "/html/canvas/element/filters/2d.filter.layers.gaussianBlur-expected.html", "==" ] ], {} ] - ], - "2d.layer.css-filters.blur-and-shadow.html": [ - "08adfa3d7460c311ddb1eabfc66c062d2785e0cf", + ] + }, + "layers": { + "2d.layer.anisotropic-blur.isotropic.html": [ + "4e496b7e4813c6af0c9676076612df123526a546", [ - "html/canvas/element/layers/2d.layer.css-filters.blur-and-shadow.html", + null, [ [ - "/html/canvas/element/layers/2d.layer.css-filters.blur-and-shadow-expected.html", + "/html/canvas/element/layers/2d.layer.anisotropic-blur.isotropic-expected.html", "==" ] ], {} ] ], - "2d.layer.css-filters.blur.html": [ - "3eb3ab8f9c37b46cb3511ddac963c110f7502364", + "2d.layer.anisotropic-blur.mostly-x.html": [ + "4217d9fad3fb719092c2d80ced75bb28dceeed3a", [ - "html/canvas/element/layers/2d.layer.css-filters.blur.html", + null, [ [ - "/html/canvas/element/layers/2d.layer.css-filters.blur-expected.html", + "/html/canvas/element/layers/2d.layer.anisotropic-blur.mostly-x-expected.html", "==" ] ], {} ] ], - "2d.layer.css-filters.shadow.html": [ - "e6df8a3ac23db0da80e9fba1989f26d749f9e3d7", + "2d.layer.anisotropic-blur.mostly-y.html": [ + "97a44e9045a040aae8b90cb6b2c5ca16f97cab04", [ - "html/canvas/element/layers/2d.layer.css-filters.shadow.html", + null, [ [ - "/html/canvas/element/layers/2d.layer.css-filters.shadow-expected.html", + "/html/canvas/element/layers/2d.layer.anisotropic-blur.mostly-y-expected.html", "==" ] ], {} ] ], - "2d.layer.global-filter.html": [ - "cf46f41b974947839f6f69e028b6dc51ba4ec62d", + "2d.layer.anisotropic-blur.x-only.html": [ + "fdf604616b8c904f2de1f37b2a53ccd343ea32ad", [ - "html/canvas/element/layers/2d.layer.global-filter.html", + null, [ [ - "/html/canvas/element/layers/2d.layer.global-filter-expected.html", + "/html/canvas/element/layers/2d.layer.anisotropic-blur.x-only-expected.html", "==" ] ], {} ] ], - "2d.layer.global-states.alpha.blending.html": [ - "8e15a2b936417297761da7150e64d6ede9c4f8c6", + "2d.layer.anisotropic-blur.y-only.html": [ + "c7ceb63a87cb0a5d38208f973eda3f9f70d7d350", [ - "html/canvas/element/layers/2d.layer.global-states.alpha.blending.html", + null, [ [ - "/html/canvas/element/layers/2d.layer.global-states.alpha.blending-expected.html", + "/html/canvas/element/layers/2d.layer.anisotropic-blur.y-only-expected.html", "==" ] ], {} ] ], - "2d.layer.global-states.alpha.blending.shadow.html": [ - "c8c6d433bc0c63d41c831c7a4708155cd6270ed4", + "2d.layer.blur-from-outside-canvas.no-clipping.html": [ + "b689ad39fe160d85725f67fa2fe7ebf03349d4dc", [ - "html/canvas/element/layers/2d.layer.global-states.alpha.blending.shadow.html", + null, [ [ - "/html/canvas/element/layers/2d.layer.global-states.alpha.blending.shadow-expected.html", + "/html/canvas/element/layers/2d.layer.blur-from-outside-canvas.no-clipping-expected.html", "==" ] ], {} ] ], - "2d.layer.global-states.alpha.composite.html": [ - "1ac6a2cbfe819e1d8b07d402b78585d27b85d5de", + "2d.layer.blur-from-outside-canvas.with-clipping.html": [ + "9e8161019aa116c00d732d299134cc8c59dbfbbf", [ - "html/canvas/element/layers/2d.layer.global-states.alpha.composite.html", + null, [ [ - "/html/canvas/element/layers/2d.layer.global-states.alpha.composite-expected.html", + "/html/canvas/element/layers/2d.layer.blur-from-outside-canvas.with-clipping-expected.html", "==" ] ], {} ] ], - "2d.layer.global-states.alpha.composite.shadow.html": [ - "92b8a0d7a75c8ed7f292392fa3b0a0a71ec86464", + "2d.layer.clearRect.full.html": [ + "579c6e10533002fd539f8124908b77a97d67eead", [ - "html/canvas/element/layers/2d.layer.global-states.alpha.composite.shadow.html", + null, [ [ - "/html/canvas/element/layers/2d.layer.global-states.alpha.composite.shadow-expected.html", + "/html/canvas/element/layers/2d.layer.clearRect.full-expected.html", "==" ] ], {} ] ], - "2d.layer.global-states.alpha.html": [ - "829796acbf9802f2dd8a81ef25d41d4d3448bad9", + "2d.layer.clearRect.partial.html": [ + "8323ffb93164a4cf6d4f9011dd4605ff54ea6817", [ - "html/canvas/element/layers/2d.layer.global-states.alpha.html", + null, [ [ - "/html/canvas/element/layers/2d.layer.global-states.alpha-expected.html", + "/html/canvas/element/layers/2d.layer.clearRect.partial-expected.html", "==" ] ], {} ] ], - "2d.layer.global-states.alpha.shadow.html": [ - "a325302b3b0705a1758252c181dba6f671e6dedc", + "2d.layer.clip-inside-and-outside.html": [ + "1a727bbd3cc8f8ca15f30a4aee2ec47e3ad5e2c8", [ - "html/canvas/element/layers/2d.layer.global-states.alpha.shadow.html", + null, [ [ - "/html/canvas/element/layers/2d.layer.global-states.alpha.shadow-expected.html", + "/html/canvas/element/layers/2d.layer.clip-inside-and-outside-expected.html", "==" ] ], {} ] ], - "2d.layer.global-states.blending.html": [ - "7d4d9ae4b5ba5ab2d5729122a5a727529a962bc1", + "2d.layer.clip-inside.html": [ + "f3555c8321a8b5a39155a82db971dd20374bc0dc", [ - "html/canvas/element/layers/2d.layer.global-states.blending.html", + null, [ [ - "/html/canvas/element/layers/2d.layer.global-states.blending-expected.html", + "/html/canvas/element/layers/2d.layer.clip-inside-expected.html", "==" ] ], {} ] ], - "2d.layer.global-states.blending.shadow.html": [ - "51926d76d8ca888713e5a73b6c8161032e85391a", + "2d.layer.clip-outside.html": [ + "bf8e84e3d25542e88c65dc1281673e775d8ecc72", [ - "html/canvas/element/layers/2d.layer.global-states.blending.shadow.html", + null, [ [ - "/html/canvas/element/layers/2d.layer.global-states.blending.shadow-expected.html", + "/html/canvas/element/layers/2d.layer.clip-outside-expected.html", "==" ] ], {} ] ], - "2d.layer.global-states.composite.html": [ - "898d14992412b19391b2e5e6bd82d58c9ac83815", + "2d.layer.cross-layer-paths.html": [ + "7feebfdce6d1b8a712636654925fb6a143a8a839", [ - "html/canvas/element/layers/2d.layer.global-states.composite.html", + null, [ [ - "/html/canvas/element/layers/2d.layer.global-states.composite-expected.html", + "/html/canvas/element/layers/2d.layer.cross-layer-paths-expected.html", "==" ] ], {} ] ], - "2d.layer.global-states.composite.shadow.html": [ - "c563a57b76ec704d953d4c7d0f1d6af610d976d1", + "2d.layer.css-filters.blur-and-shadow.html": [ + "08adfa3d7460c311ddb1eabfc66c062d2785e0cf", [ - "html/canvas/element/layers/2d.layer.global-states.composite.shadow.html", + null, [ [ - "/html/canvas/element/layers/2d.layer.global-states.composite.shadow-expected.html", + "/html/canvas/element/layers/2d.layer.css-filters.blur-and-shadow-expected.html", "==" ] ], {} ] ], - "2d.layer.global-states.filter.alpha.blending.html": [ - "17e0f0c8c5bae2d641ae79c798d14efa47694d1c", + "2d.layer.css-filters.blur.html": [ + "3eb3ab8f9c37b46cb3511ddac963c110f7502364", [ - "html/canvas/element/layers/2d.layer.global-states.filter.alpha.blending.html", + null, [ [ - "/html/canvas/element/layers/2d.layer.global-states.filter.alpha.blending-expected.html", + "/html/canvas/element/layers/2d.layer.css-filters.blur-expected.html", "==" ] ], {} ] ], - "2d.layer.global-states.filter.alpha.blending.shadow.html": [ - "ccadfb624b727d5706e60eea1bd81b8c2194fd0c", + "2d.layer.css-filters.shadow.html": [ + "e6df8a3ac23db0da80e9fba1989f26d749f9e3d7", [ - "html/canvas/element/layers/2d.layer.global-states.filter.alpha.blending.shadow.html", + null, [ [ - "/html/canvas/element/layers/2d.layer.global-states.filter.alpha.blending.shadow-expected.html", + "/html/canvas/element/layers/2d.layer.css-filters.shadow-expected.html", "==" ] ], {} ] ], - "2d.layer.global-states.filter.alpha.composite.html": [ - "71a27cf710b2586931378f266cf745995af4019b", + "2d.layer.ctm.filter.html": [ + "3d56ac36011cdac9aff399c0159806162edf9b58", [ - "html/canvas/element/layers/2d.layer.global-states.filter.alpha.composite.html", + null, [ [ - "/html/canvas/element/layers/2d.layer.global-states.filter.alpha.composite-expected.html", + "/html/canvas/element/layers/2d.layer.ctm.filter-expected.html", "==" ] ], {} ] ], - "2d.layer.global-states.filter.alpha.composite.shadow.html": [ - "b2907f02aa57551ceace61a4189d1e2dbaee0e21", + "2d.layer.ctm.resetTransform.html": [ + "9291f8f3f2ff4167d16925d77e33a3428b2c416f", [ - "html/canvas/element/layers/2d.layer.global-states.filter.alpha.composite.shadow.html", + null, [ [ - "/html/canvas/element/layers/2d.layer.global-states.filter.alpha.composite.shadow-expected.html", + "/html/canvas/element/layers/2d.layer.ctm.resetTransform-expected.html", "==" ] ], {} ] ], - "2d.layer.global-states.filter.alpha.html": [ - "5133aa170e7e843816a6badfb753ac8d514be238", + "2d.layer.ctm.setTransform.html": [ + "b5d98ba45fbd7959cb95d35eee9d49dc16d8224a", [ - "html/canvas/element/layers/2d.layer.global-states.filter.alpha.html", + null, [ [ - "/html/canvas/element/layers/2d.layer.global-states.filter.alpha-expected.html", + "/html/canvas/element/layers/2d.layer.ctm.setTransform-expected.html", "==" ] ], {} ] ], - "2d.layer.global-states.filter.alpha.shadow.html": [ - "6aa8e75a9507e60d4bf922cd300aafc472996037", + "2d.layer.ctm.shadow-in-transformed-layer.html": [ + "f047bd30b285ad7cadd66060450843fca0acd14b", [ - "html/canvas/element/layers/2d.layer.global-states.filter.alpha.shadow.html", + null, [ [ - "/html/canvas/element/layers/2d.layer.global-states.filter.alpha.shadow-expected.html", + "/html/canvas/element/layers/2d.layer.ctm.shadow-in-transformed-layer-expected.html", "==" ] ], {} ] ], - "2d.layer.global-states.filter.blending.html": [ - "31628812c2ea24d77488b39dc1a2305f83220cb2", + "2d.layer.drawImage.html": [ + "58206c3eb87408b2993740cf9912bf271d84d3f1", [ - "html/canvas/element/layers/2d.layer.global-states.filter.blending.html", + null, [ [ - "/html/canvas/element/layers/2d.layer.global-states.filter.blending-expected.html", + "/html/canvas/element/layers/2d.layer.drawImage-expected.html", "==" ] ], {} ] ], - "2d.layer.global-states.filter.blending.shadow.html": [ - "e54cf06d0dd301f034724d9688b2723ecc0dcd8a", + "2d.layer.flush-on-frame-presentation.html": [ + "c8a118f8a2e860e4110f8b254fe08408930173ff", [ - "html/canvas/element/layers/2d.layer.global-states.filter.blending.shadow.html", + null, [ [ - "/html/canvas/element/layers/2d.layer.global-states.filter.blending.shadow-expected.html", + "/html/canvas/element/layers/2d.layer.flush-on-frame-presentation-expected.html", "==" ] ], {} ] ], - "2d.layer.global-states.filter.composite.html": [ - "d7e365422f2528c2c40a96c9757e4677c3b090d7", + "2d.layer.global-filter.html": [ + "cf46f41b974947839f6f69e028b6dc51ba4ec62d", [ - "html/canvas/element/layers/2d.layer.global-states.filter.composite.html", + null, [ [ - "/html/canvas/element/layers/2d.layer.global-states.filter.composite-expected.html", + "/html/canvas/element/layers/2d.layer.global-filter-expected.html", "==" ] ], {} ] ], - "2d.layer.global-states.filter.composite.shadow.html": [ - "e5c76986347ae7fc3473fb9e7b0edb27b6efb82e", + "2d.layer.global-states.filter.no-transform.html": [ + "dc55eeb38cf9093d7e6749ffcd56b89d775dbfc1", [ - "html/canvas/element/layers/2d.layer.global-states.filter.composite.shadow.html", + null, [ [ - "/html/canvas/element/layers/2d.layer.global-states.filter.composite.shadow-expected.html", + "/html/canvas/element/layers/2d.layer.global-states.filter.no-transform-expected.html", "==" ] ], {} ] ], - "2d.layer.global-states.filter.no-global-states.html": [ - "68f4d5004a2974596cd0d7018dc6cf1fedbc03f0", + "2d.layer.global-states.filter.rotation.html": [ + "49676d458ef38f581b3f3cc03fec160b83bf3826", [ - "html/canvas/element/layers/2d.layer.global-states.filter.no-global-states.html", + null, [ [ - "/html/canvas/element/layers/2d.layer.global-states.filter.no-global-states-expected.html", + "/html/canvas/element/layers/2d.layer.global-states.filter.rotation-expected.html", "==" ] ], {} ] ], - "2d.layer.global-states.filter.shadow.html": [ - "9efcd9d4f753c8a8c7dbadd086c858cf5232b616", + "2d.layer.global-states.no-transform.html": [ + "cabbe954cee38864c414099114998c1b559d3d4d", [ - "html/canvas/element/layers/2d.layer.global-states.filter.shadow.html", + null, [ [ - "/html/canvas/element/layers/2d.layer.global-states.filter.shadow-expected.html", + "/html/canvas/element/layers/2d.layer.global-states.no-transform-expected.html", "==" ] ], {} ] ], - "2d.layer.global-states.no-global-states.html": [ - "d561be234103c400f17410bbeb02624e5722d962", + "2d.layer.global-states.rotation.html": [ + "240a510b844710ecaabe94b08bbc482a977abef1", [ - "html/canvas/element/layers/2d.layer.global-states.no-global-states.html", + null, [ [ - "/html/canvas/element/layers/2d.layer.global-states.no-global-states-expected.html", + "/html/canvas/element/layers/2d.layer.global-states.rotation-expected.html", "==" ] ], {} ] ], - "2d.layer.global-states.shadow.html": [ - "209316164cb2cd8e38cc47507ca2a2083f20a17a", + "2d.layer.globalCompositeOperation.html": [ + "32809d852c7b2466edc20334f0541320010e0d91", [ - "html/canvas/element/layers/2d.layer.global-states.shadow.html", + null, [ [ - "/html/canvas/element/layers/2d.layer.global-states.shadow-expected.html", + "/html/canvas/element/layers/2d.layer.globalCompositeOperation-expected.html", "==" ] ], @@ -321534,7 +324453,7 @@ "2d.layer.nested-filters.html": [ "333de67ac9bcbacac96f7266eb3b50a44be311d3", [ - "html/canvas/element/layers/2d.layer.nested-filters.html", + null, [ [ "/html/canvas/element/layers/2d.layer.nested-filters-expected.html", @@ -321547,7 +324466,7 @@ "2d.layer.nested.html": [ "a508d8e5c8581f87f2c40dde972509fe39c57811", [ - "html/canvas/element/layers/2d.layer.nested.html", + null, [ [ "/html/canvas/element/layers/2d.layer.nested-expected.html", @@ -321557,91 +324476,52 @@ {} ] ], - "2d.layer.opaque-canvas.html": [ - "be8b088fbbbd3b5778a032efe7ef0c3863537775", - [ - "html/canvas/element/layers/2d.layer.opaque-canvas.html", - [ - [ - "/html/canvas/element/layers/2d.layer.opaque-canvas-expected.html", - "==" - ] - ], - {} - ] - ], - "2d.layer.render-opportunities.createImageBitmap.html": [ - "9b3d79c9f92954af1a067fc561b586e7ddd4448b", - [ - "html/canvas/element/layers/2d.layer.render-opportunities.createImageBitmap.html", - [ - [ - "/html/canvas/element/layers/2d.layer.render-opportunities.createImageBitmap-expected.html", - "==" - ] - ], - {} - ] - ], - "2d.layer.render-opportunities.drawImage.html": [ - "ea669f304f26c31469040c1b9192438fd0383fbb", - [ - "html/canvas/element/layers/2d.layer.render-opportunities.drawImage.html", - [ - [ - "/html/canvas/element/layers/2d.layer.render-opportunities.drawImage-expected.html", - "==" - ] - ], - {} - ] - ], - "2d.layer.render-opportunities.getImageData.html": [ - "fce2e368a219824fbd0224cbcefcdd6f3b2cf4b2", + "2d.layer.non-invertible-matrix.html": [ + "0cd13b7c224778b4578b61bf5586b580ca3c2686", [ - "html/canvas/element/layers/2d.layer.render-opportunities.getImageData.html", + null, [ [ - "/html/canvas/element/layers/2d.layer.render-opportunities.getImageData-expected.html", + "/html/canvas/element/layers/2d.layer.non-invertible-matrix-expected.html", "==" ] ], {} ] ], - "2d.layer.render-opportunities.requestAnimationFrame.html": [ - "b2b2605123b35e89d8fd555a7e678693ba08188a", + "2d.layer.non-invertible-matrix.shadow.html": [ + "864935db63f900f0595e566e80fec74263ee70c6", [ - "html/canvas/element/layers/2d.layer.render-opportunities.requestAnimationFrame.html", + null, [ [ - "/html/canvas/element/layers/2d.layer.render-opportunities.requestAnimationFrame-expected.html", + "/html/canvas/element/layers/2d.layer.non-invertible-matrix.shadow-expected.html", "==" ] ], {} ] ], - "2d.layer.render-opportunities.toBlob.html": [ - "f3d5fe904ee03e9e371be08eac483d29759d1595", + "2d.layer.non-invertible-matrix.with-render-states-and-filter.html": [ + "c81732c1bd3c70addd2c812930141c084ea00d72", [ - "html/canvas/element/layers/2d.layer.render-opportunities.toBlob.html", + null, [ [ - "/html/canvas/element/layers/2d.layer.render-opportunities.toBlob-expected.html", + "/html/canvas/element/layers/2d.layer.non-invertible-matrix.with-render-states-and-filter-expected.html", "==" ] ], {} ] ], - "2d.layer.render-opportunities.toDataURL.html": [ - "d9f433344d55896a6a3e269d7a5e072c53c20114", + "2d.layer.opaque-canvas.html": [ + "be8b088fbbbd3b5778a032efe7ef0c3863537775", [ - "html/canvas/element/layers/2d.layer.render-opportunities.toDataURL.html", + null, [ [ - "/html/canvas/element/layers/2d.layer.render-opportunities.toDataURL-expected.html", + "/html/canvas/element/layers/2d.layer.opaque-canvas-expected.html", "==" ] ], @@ -321651,7 +324531,7 @@ "2d.layer.reset.html": [ "9ad779abfddabe221d600b4cc48f69954ee1aa4f", [ - "html/canvas/element/layers/2d.layer.reset.html", + null, [ [ "/html/canvas/element/layers/2d.layer.reset-expected.html", @@ -321664,7 +324544,7 @@ "2d.layer.restore-style.html": [ "2537f409d6d99e0175667725ffedd5c384071864", [ - "html/canvas/element/layers/2d.layer.restore-style.html", + null, [ [ "/html/canvas/element/layers/2d.layer.restore-style-expected.html", @@ -321693,7 +324573,7 @@ "2d.layer.several-complex.html": [ "cff0c123ef64d2f8d6508b9d48511b27060ca054", [ - "html/canvas/element/layers/2d.layer.several-complex.html", + null, [ [ "/html/canvas/element/layers/2d.layer.several-complex-expected.html", @@ -321722,7 +324602,7 @@ "2d.layer.shadow-from-outside-canvas.long-distance-with-clipping.html": [ "88a3a67c7b38f2270c7e5cb619b33e695e197632", [ - "html/canvas/element/layers/2d.layer.shadow-from-outside-canvas.long-distance-with-clipping.html", + null, [ [ "/html/canvas/element/layers/2d.layer.shadow-from-outside-canvas.long-distance-with-clipping-expected.html", @@ -321735,7 +324615,7 @@ "2d.layer.shadow-from-outside-canvas.long-distance.html": [ "8ade08bec5f0ae057858b570f8425ff0a7a8eb15", [ - "html/canvas/element/layers/2d.layer.shadow-from-outside-canvas.long-distance.html", + null, [ [ "/html/canvas/element/layers/2d.layer.shadow-from-outside-canvas.long-distance-expected.html", @@ -321748,7 +324628,7 @@ "2d.layer.shadow-from-outside-canvas.short-distance-with-clipping.html": [ "7ced4481445c78aaa68e141b7a50527e14471fce", [ - "html/canvas/element/layers/2d.layer.shadow-from-outside-canvas.short-distance-with-clipping.html", + null, [ [ "/html/canvas/element/layers/2d.layer.shadow-from-outside-canvas.short-distance-with-clipping-expected.html", @@ -321761,7 +324641,7 @@ "2d.layer.shadow-from-outside-canvas.short-distance.html": [ "37398400d18b82dc37ff91c4b1e9f761313631e0", [ - "html/canvas/element/layers/2d.layer.shadow-from-outside-canvas.short-distance.html", + null, [ [ "/html/canvas/element/layers/2d.layer.shadow-from-outside-canvas.short-distance-expected.html", @@ -321770,32 +324650,6 @@ ], {} ] - ], - "2d.layer.unclosed-nested.html": [ - "c02aae4af116be203af40610444db1cf7b91624b", - [ - "html/canvas/element/layers/2d.layer.unclosed-nested.html", - [ - [ - "/html/canvas/element/layers/2d.layer.unclosed-nested-expected.html", - "==" - ] - ], - {} - ] - ], - "2d.layer.unclosed.html": [ - "3d4530860f3dd053258dcbe38a6cfaa4332df1ac", - [ - "html/canvas/element/layers/2d.layer.unclosed.html", - [ - [ - "/html/canvas/element/layers/2d.layer.unclosed-expected.html", - "==" - ] - ], - {} - ] ] }, "manual": { @@ -322089,7 +324943,7 @@ "canvas.2d.disconnected-font-size-math.html": [ "2cecff68f113c1330637e83dd8e36feff000ecce", [ - "html/canvas/element/manual/drawing-text-to-the-canvas/canvas.2d.disconnected-font-size-math.html", + null, [ [ "/html/canvas/element/manual/drawing-text-to-the-canvas/canvas.2d.disconnected-font-size-math-ref.html", @@ -322329,11 +325183,24 @@ } ] ], + "svg-filter-lh-rlh.html": [ + "b61193fb9fdd107319d98ee8429970221dbfd549", + [ + null, + [ + [ + "/html/canvas/element/manual/filters/svg-filter-lh-rlh-expected.html", + "==" + ] + ], + {} + ] + ], "tentative": { "canvas-filter-object-blur.html": [ "9fe7ef120c5cc73f3f3bfd1278d9d7dc025f402f", [ - "html/canvas/element/manual/filters/tentative/canvas-filter-object-blur.html", + null, [ [ "/html/canvas/element/manual/filters/tentative/canvas-filter-object-blur-expected.html", @@ -322346,7 +325213,7 @@ "canvas-filter-object-component-transfer.html": [ "47889c0db232207612394bac925ce06e561c3436", [ - "html/canvas/element/manual/filters/tentative/canvas-filter-object-component-transfer.html", + null, [ [ "/html/canvas/element/manual/filters/tentative/canvas-filter-object-component-transfer-expected.html", @@ -322359,7 +325226,7 @@ "canvas-filter-object-convolve-matrix.html": [ "1dfd602d13348b778a2c34d1fe719bcd52fea0d4", [ - "html/canvas/element/manual/filters/tentative/canvas-filter-object-convolve-matrix.html", + null, [ [ "/html/canvas/element/manual/filters/tentative/canvas-filter-object-convolve-matrix-expected.html", @@ -322370,9 +325237,9 @@ ] ], "canvas-filter-object-turbulence.html": [ - "b5b494825e7a714be3326cd052078c9b5c780a92", + "eb0803e42e0d8cd925af408ee84d479852561e84", [ - "html/canvas/element/manual/filters/tentative/canvas-filter-object-turbulence.html", + null, [ [ "/html/canvas/element/manual/filters/tentative/canvas-filter-object-blur-expected.html", @@ -322386,7 +325253,7 @@ "canvas-filter-boolean-conversion.html": [ "97ade79f3794e50940598a5f6a56e57a9be5d6c2", [ - "html/canvas/element/manual/filters/tentative/idl-conversions/canvas-filter-boolean-conversion.html", + null, [ [ "/html/canvas/element/manual/filters/tentative/idl-conversions/canvas-filter-boolean-conversion-expected.html", @@ -322429,7 +325296,7 @@ "imageBitmapRendering-transferFromImageBitmap-flipped.html": [ "02e0690876430b8c746cca4bee19d39e11836df9", [ - "html/canvas/element/manual/imagebitmap/imageBitmapRendering-transferFromImageBitmap-flipped.html", + null, [ [ "/html/canvas/element/manual/imagebitmap/imageBitmapRendering-transferFromImageBitmap-flipped-expected.html", @@ -322442,7 +325309,7 @@ "imageBitmapRendering-transferFromImageBitmap-webgl.html": [ "049a3822cd69f8223c955fcc6995d204416f51ef", [ - "html/canvas/element/manual/imagebitmap/imageBitmapRendering-transferFromImageBitmap-webgl.html", + null, [ [ "/html/canvas/element/manual/imagebitmap/imageBitmapRendering-transferFromImageBitmap-webgl-expected.html", @@ -322466,6 +325333,34 @@ ] ] }, + "layers": { + "unclosed-layers.html": [ + "afb53cfbebc679e803a3f183b40c2eef183390a8", + [ + null, + [ + [ + "/html/canvas/element/manual/layers/unclosed-layers-expected.html", + "==" + ] + ], + {} + ] + ], + "unclosed-nested-layers.html": [ + "ada874a51aa66308a69ea10c2a156ed63de923ed", + [ + null, + [ + [ + "/html/canvas/element/manual/layers/unclosed-nested-layers-expected.html", + "==" + ] + ], + {} + ] + ] + }, "line-styles": { "canvas_linestyles_linecap_001.htm": [ "583dbc9d134682a778569877e38513e07736dd82", @@ -322511,7 +325406,7 @@ "canvas_shadows_system_colors.html": [ "42978fb18f9f27427b2fe703889e693f4d64430f", [ - "html/canvas/element/manual/shadows/canvas_shadows_system_colors.html", + null, [ [ "/html/canvas/element/manual/shadows/canvas_shadows_system_colors-expected.html", @@ -322526,7 +325421,7 @@ "canvas.2d.disconnected.html": [ "a1715f6663c96289adac6db909035020b6640d1c", [ - "html/canvas/element/manual/text/canvas.2d.disconnected.html", + null, [ [ "/html/canvas/element/manual/text/canvas.2d.disconnected-ref.html", @@ -322555,7 +325450,7 @@ "canvas.2d.fontStretch.condensed.html": [ "72db41f007a503f5767b2f3a1812397cd74bad8c", [ - "html/canvas/element/manual/text/canvas.2d.fontStretch.condensed.html", + null, [ [ "/html/canvas/element/manual/text/canvas.2d.fontStretch-ref.html", @@ -322568,7 +325463,7 @@ "canvas.2d.fontStretch.expanded.html": [ "8a13ba13fcb633b4d1176fb3e2f31cb9ddf26dca", [ - "html/canvas/element/manual/text/canvas.2d.fontStretch.expanded.html", + null, [ [ "/html/canvas/element/manual/text/canvas.2d.fontStretch-ref.html", @@ -322581,7 +325476,7 @@ "canvas.2d.fontStretch.extra-condensed.html": [ "afa910f62cef05a60a1398828069d5752be17fa8", [ - "html/canvas/element/manual/text/canvas.2d.fontStretch.extra-condensed.html", + null, [ [ "/html/canvas/element/manual/text/canvas.2d.fontStretch-ref.html", @@ -322594,7 +325489,7 @@ "canvas.2d.fontStretch.extra-expanded.html": [ "d10d4d931256cd827348162d7fb7c7a454f181ec", [ - "html/canvas/element/manual/text/canvas.2d.fontStretch.extra-expanded.html", + null, [ [ "/html/canvas/element/manual/text/canvas.2d.fontStretch-ref.html", @@ -322607,7 +325502,7 @@ "canvas.2d.fontStretch.normal.html": [ "e8fd66acad92fd00175bfbe77971f6312129d84e", [ - "html/canvas/element/manual/text/canvas.2d.fontStretch.normal.html", + null, [ [ "/html/canvas/element/manual/text/canvas.2d.fontStretch-ref.html", @@ -322620,7 +325515,7 @@ "canvas.2d.fontStretch.semi-condensed.html": [ "2ac97195958a3b979eb839cfce7016073f667f72", [ - "html/canvas/element/manual/text/canvas.2d.fontStretch.semi-condensed.html", + null, [ [ "/html/canvas/element/manual/text/canvas.2d.fontStretch-ref.html", @@ -322633,7 +325528,7 @@ "canvas.2d.fontStretch.semi-expanded.html": [ "3c9fa278947331ea355d4a60081a52f06ba155f4", [ - "html/canvas/element/manual/text/canvas.2d.fontStretch.semi-expanded.html", + null, [ [ "/html/canvas/element/manual/text/canvas.2d.fontStretch-ref.html", @@ -322646,7 +325541,7 @@ "canvas.2d.fontStretch.ultra-condensed.html": [ "2b0426e976d97beca8873d2eb663c61d0ebb14f5", [ - "html/canvas/element/manual/text/canvas.2d.fontStretch.ultra-condensed.html", + null, [ [ "/html/canvas/element/manual/text/canvas.2d.fontStretch-ref.html", @@ -322659,7 +325554,7 @@ "canvas.2d.fontStretch.ultra-expanded.html": [ "5b4979de864b0dcac967a8bae61b265546323a3f", [ - "html/canvas/element/manual/text/canvas.2d.fontStretch.ultra-expanded.html", + null, [ [ "/html/canvas/element/manual/text/canvas.2d.fontStretch-ref.html", @@ -322672,7 +325567,7 @@ "canvas_text_font_001.htm": [ "923ce71c077c99e61678f1b97759f871324eba03", [ - "html/canvas/element/manual/text/canvas_text_font_001.htm", + null, [ [ "/html/canvas/element/manual/text/canvas_text_font_001-ref.htm", @@ -322793,10 +325688,23 @@ ] }, "reset": { + "2d.reset.after-rasterization.html": [ + "365fdefbb4497a47e6ede954c7d973fa136b1445", + [ + "html/canvas/element/reset/2d.reset.after-rasterization.html", + [ + [ + "/html/canvas/element/reset/2d.reset.after-rasterization-expected.html", + "==" + ] + ], + {} + ] + ], "2d.reset.render.drop_shadow.html": [ "264355c8b315b8a69b9d5007a2d450fa5a91e075", [ - "html/canvas/element/reset/2d.reset.render.drop_shadow.html", + null, [ [ "/html/canvas/element/reset/2d.reset.render.drop_shadow-expected.html", @@ -322809,7 +325717,7 @@ "2d.reset.render.global_composite_operation.html": [ "fc851b84b8e774f488c4a29338aa109e7d71d4d4", [ - "html/canvas/element/reset/2d.reset.render.global_composite_operation.html", + null, [ [ "/html/canvas/element/reset/2d.reset.render.global_composite_operation-expected.html", @@ -322822,7 +325730,7 @@ "2d.reset.render.line.html": [ "0dda7c7a7e628aca9fb3b951a82dbeda4e36ca34", [ - "html/canvas/element/reset/2d.reset.render.line.html", + null, [ [ "/html/canvas/element/reset/2d.reset.render.line-expected.html", @@ -322835,7 +325743,7 @@ "2d.reset.render.misc.html": [ "61d2dbe2f05fbfeb79b9d64a2e98fa5b014623fb", [ - "html/canvas/element/reset/2d.reset.render.misc.html", + null, [ [ "/html/canvas/element/reset/2d.reset.render.misc-expected.html", @@ -322848,7 +325756,7 @@ "2d.reset.render.miter_limit.html": [ "f6eaed00f6fd88989a168e2814a7b81b6cf3172a", [ - "html/canvas/element/reset/2d.reset.render.miter_limit.html", + null, [ [ "/html/canvas/element/reset/2d.reset.render.miter_limit-expected.html", @@ -322861,7 +325769,7 @@ "2d.reset.render.text.html": [ "3d76ddf2920f53a85e57af510f4fba3d2319809a", [ - "html/canvas/element/reset/2d.reset.render.text.html", + null, [ [ "/html/canvas/element/reset/2d.reset.render.text-expected.html", @@ -322874,7 +325782,7 @@ "2d.reset.state.clip.html": [ "ab3fa1081ca9be4e21fc751fd44e1b69324d4318", [ - "html/canvas/element/reset/2d.reset.state.clip.html", + null, [ [ "/html/canvas/element/reset/2d.reset.state.clip-expected.html", @@ -322886,10 +325794,36 @@ ] }, "text": { + "2d.text.drawing.style.reset.fontKerning.none2.html": [ + "78d06b955d8208af01737137726e0256ab4ce7f3", + [ + null, + [ + [ + "/html/canvas/element/text/2d.text.drawing.style.reset.fontKerning.none2-expected.html", + "==" + ] + ], + {} + ] + ], + "2d.text.fontVariantCaps.after.reset.font.html": [ + "d1a18627e7a3f826c292aee76171db2e47bfaf27", + [ + null, + [ + [ + "/html/canvas/element/text/2d.text.fontVariantCaps.after.reset.font-expected.html", + "==" + ] + ], + {} + ] + ], "2d.text.fontVariantCaps1.html": [ "56acfc61f47c32092db1793eb2f4a9966fde04ef", [ - "html/canvas/element/text/2d.text.fontVariantCaps1.html", + null, [ [ "/html/canvas/element/text/2d.text.fontVariantCaps1-expected.html", @@ -322902,7 +325836,7 @@ "2d.text.fontVariantCaps3.html": [ "c3d80d3e56caf84b9e5e1d7ab294300d722275cb", [ - "html/canvas/element/text/2d.text.fontVariantCaps3.html", + null, [ [ "/html/canvas/element/text/2d.text.fontVariantCaps3-expected.html", @@ -322915,7 +325849,7 @@ "2d.text.fontVariantCaps4.html": [ "1ee9053b4d9bc06343394cdae54950283873ed44", [ - "html/canvas/element/text/2d.text.fontVariantCaps4.html", + null, [ [ "/html/canvas/element/text/2d.text.fontVariantCaps4-expected.html", @@ -322928,7 +325862,7 @@ "2d.text.fontVariantCaps5.html": [ "d80de4ea31873274d14761cb9b1f171a4eb9b208", [ - "html/canvas/element/text/2d.text.fontVariantCaps5.html", + null, [ [ "/html/canvas/element/text/2d.text.fontVariantCaps5-expected.html", @@ -322941,7 +325875,7 @@ "2d.text.fontVariantCaps6.html": [ "c17fac18b773da2e581c5e55fb0d04dc64deafab", [ - "html/canvas/element/text/2d.text.fontVariantCaps6.html", + null, [ [ "/html/canvas/element/text/2d.text.fontVariantCaps6-expected.html", @@ -322951,10 +325885,23 @@ {} ] ], + "2d.text.writingmode.html": [ + "2a12154762badecc5e86880dd7fae61cea125b58", + [ + null, + [ + [ + "/html/canvas/element/text/2d.text.writingmode-expected.html", + "==" + ] + ], + {} + ] + ], "direction-inherit-rtl.html": [ "0ad92181a06acfdd4ca1d553b5fc7dfa4970f001", [ - "html/canvas/element/text/direction-inherit-rtl.html", + null, [ [ "/html/canvas/element/text/reference/direction-rtl-ref.html", @@ -322967,7 +325914,7 @@ "direction-ltr.html": [ "42a39ac589c6da944af4cfc450675044d619be3f", [ - "html/canvas/element/text/direction-ltr.html", + null, [ [ "/html/canvas/element/text/reference/direction-default-ref.html", @@ -322980,7 +325927,7 @@ "direction-rtl.html": [ "3cc67c69f585f88dce6e4db4518c4016d5f39b03", [ - "html/canvas/element/text/direction-rtl.html", + null, [ [ "/html/canvas/element/text/reference/direction-rtl-ref.html", @@ -322994,1172 +325941,1324 @@ }, "offscreen": { "filters": { - "2d.filter.canvasFilterObject.dropShadow.tentative.html": [ - "81eb1eae453045c01afd3b74d8e72bd00540c684", + "2d.filter.canvasFilterObject.componentTransfer.discrete.tentative.html": [ + "491d073efbcc569e467d74e3a44c3407f694bca6", [ - "html/canvas/offscreen/filters/2d.filter.canvasFilterObject.dropShadow.tentative.html", + null, [ [ - "/html/canvas/offscreen/filters/2d.filter.canvasFilterObject.dropShadow.tentative-expected.html", + "/html/canvas/offscreen/filters/2d.filter.canvasFilterObject.componentTransfer.discrete.tentative-expected.html", "==" ] ], - {} - ] - ], - "2d.filter.canvasFilterObject.dropShadow.tentative.w.html": [ - "fe9087244a08f47fbdca8bfd9b844abe56bb984a", - [ - "html/canvas/offscreen/filters/2d.filter.canvasFilterObject.dropShadow.tentative.w.html", - [ - [ - "/html/canvas/offscreen/filters/2d.filter.canvasFilterObject.dropShadow.tentative-expected.html", - "==" + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 2 + ], + [ + 0, + 500 + ] + ] + ] ] - ], - {} + } ] ], - "2d.filter.canvasFilterObject.gaussianBlur.tentative.isotropic.html": [ - "4417a1917c9abe01ad1fd7ed90051c72be1080e7", + "2d.filter.canvasFilterObject.componentTransfer.discrete.tentative.w.html": [ + "d3a999a24262684532b71c8b9610ebfd7bd683ea", [ - "html/canvas/offscreen/filters/2d.filter.canvasFilterObject.gaussianBlur.tentative.isotropic.html", + null, [ [ - "/html/canvas/offscreen/filters/2d.filter.canvasFilterObject.gaussianBlur.tentative.isotropic-expected.html", + "/html/canvas/offscreen/filters/2d.filter.canvasFilterObject.componentTransfer.discrete.tentative-expected.html", "==" ] ], - {} - ] - ], - "2d.filter.canvasFilterObject.gaussianBlur.tentative.isotropic.w.html": [ - "d2024ad205e415ef069faef0a47d4008c531dbe9", - [ - "html/canvas/offscreen/filters/2d.filter.canvasFilterObject.gaussianBlur.tentative.isotropic.w.html", - [ - [ - "/html/canvas/offscreen/filters/2d.filter.canvasFilterObject.gaussianBlur.tentative.isotropic-expected.html", - "==" + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 2 + ], + [ + 0, + 500 + ] + ] + ] ] - ], - {} + } ] ], - "2d.filter.canvasFilterObject.gaussianBlur.tentative.mostly-x.html": [ - "2ea26359fe9b5f05a874a79566a4964351aaff70", + "2d.filter.canvasFilterObject.componentTransfer.gamma.tentative.html": [ + "b262f3b1d32dcb9cfc4d37c254713838137cc567", [ - "html/canvas/offscreen/filters/2d.filter.canvasFilterObject.gaussianBlur.tentative.mostly-x.html", + null, [ [ - "/html/canvas/offscreen/filters/2d.filter.canvasFilterObject.gaussianBlur.tentative.mostly-x-expected.html", + "/html/canvas/offscreen/filters/2d.filter.canvasFilterObject.componentTransfer.gamma.tentative-expected.html", "==" ] ], - {} - ] - ], - "2d.filter.canvasFilterObject.gaussianBlur.tentative.mostly-x.w.html": [ - "fa49ea4682823b3b48b6fa77f3dbb4fae2e61812", - [ - "html/canvas/offscreen/filters/2d.filter.canvasFilterObject.gaussianBlur.tentative.mostly-x.w.html", - [ - [ - "/html/canvas/offscreen/filters/2d.filter.canvasFilterObject.gaussianBlur.tentative.mostly-x-expected.html", - "==" + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 2 + ], + [ + 0, + 500 + ] + ] + ] ] - ], - {} + } ] ], - "2d.filter.canvasFilterObject.gaussianBlur.tentative.mostly-y.html": [ - "a9783ccb6a006a34d8cba0d533e23099c6ee7024", + "2d.filter.canvasFilterObject.componentTransfer.gamma.tentative.w.html": [ + "1fe346eacf23f411c6b02c38f5c0fe65206e03f7", [ - "html/canvas/offscreen/filters/2d.filter.canvasFilterObject.gaussianBlur.tentative.mostly-y.html", + null, [ [ - "/html/canvas/offscreen/filters/2d.filter.canvasFilterObject.gaussianBlur.tentative.mostly-y-expected.html", + "/html/canvas/offscreen/filters/2d.filter.canvasFilterObject.componentTransfer.gamma.tentative-expected.html", "==" ] ], - {} - ] - ], - "2d.filter.canvasFilterObject.gaussianBlur.tentative.mostly-y.w.html": [ - "ab83f50ea0e36b36caeb3411f698b19cf1fec636", - [ - "html/canvas/offscreen/filters/2d.filter.canvasFilterObject.gaussianBlur.tentative.mostly-y.w.html", - [ - [ - "/html/canvas/offscreen/filters/2d.filter.canvasFilterObject.gaussianBlur.tentative.mostly-y-expected.html", - "==" + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 2 + ], + [ + 0, + 500 + ] + ] + ] ] - ], - {} + } ] ], - "2d.filter.canvasFilterObject.gaussianBlur.tentative.x-only.html": [ - "3028c2a700e1c4d2736de39565abfbbd00f1ac6f", + "2d.filter.canvasFilterObject.componentTransfer.identity.tentative.html": [ + "26b6e4c70226463f5b46723bc1035496d77524b3", [ - "html/canvas/offscreen/filters/2d.filter.canvasFilterObject.gaussianBlur.tentative.x-only.html", + null, [ [ - "/html/canvas/offscreen/filters/2d.filter.canvasFilterObject.gaussianBlur.tentative.x-only-expected.html", + "/html/canvas/offscreen/filters/2d.filter.canvasFilterObject.componentTransfer.identity.tentative-expected.html", "==" ] ], {} ] ], - "2d.filter.canvasFilterObject.gaussianBlur.tentative.x-only.w.html": [ - "e8482cf3ed8df4d0c66dc2fd99a9f3011f6edc19", + "2d.filter.canvasFilterObject.componentTransfer.identity.tentative.w.html": [ + "d2216d16479ebae91505f295fd988f78c9fdd0c0", [ - "html/canvas/offscreen/filters/2d.filter.canvasFilterObject.gaussianBlur.tentative.x-only.w.html", + null, [ [ - "/html/canvas/offscreen/filters/2d.filter.canvasFilterObject.gaussianBlur.tentative.x-only-expected.html", + "/html/canvas/offscreen/filters/2d.filter.canvasFilterObject.componentTransfer.identity.tentative-expected.html", "==" ] ], {} ] ], - "2d.filter.canvasFilterObject.gaussianBlur.tentative.y-only.html": [ - "fca324716b4807d54c74a0045704de3ced4040aa", + "2d.filter.canvasFilterObject.componentTransfer.linear.tentative.html": [ + "3fc3bd9eec249e77fde9c2beb663d8b978d6d1c9", [ - "html/canvas/offscreen/filters/2d.filter.canvasFilterObject.gaussianBlur.tentative.y-only.html", + null, [ [ - "/html/canvas/offscreen/filters/2d.filter.canvasFilterObject.gaussianBlur.tentative.y-only-expected.html", + "/html/canvas/offscreen/filters/2d.filter.canvasFilterObject.componentTransfer.linear.tentative-expected.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 2 + ], + [ + 0, + 500 + ] + ] + ] + ] + } ] ], - "2d.filter.canvasFilterObject.gaussianBlur.tentative.y-only.w.html": [ - "50cfb3083a2507040dabb7fc577d5edbbba15534", + "2d.filter.canvasFilterObject.componentTransfer.linear.tentative.w.html": [ + "054dbce92992231cc3140bb6e76ab25e8328cf05", [ - "html/canvas/offscreen/filters/2d.filter.canvasFilterObject.gaussianBlur.tentative.y-only.w.html", + null, [ [ - "/html/canvas/offscreen/filters/2d.filter.canvasFilterObject.gaussianBlur.tentative.y-only-expected.html", + "/html/canvas/offscreen/filters/2d.filter.canvasFilterObject.componentTransfer.linear.tentative-expected.html", "==" ] ], - {} - ] - ] - }, - "layers": { - "2d.layer.anisotropic-blur.isotropic.html": [ - "d59a4ccf62e3759438abf74e305eb61df3d63745", - [ - "html/canvas/offscreen/layers/2d.layer.anisotropic-blur.isotropic.html", - [ - [ - "/html/canvas/offscreen/layers/2d.layer.anisotropic-blur.isotropic-expected.html", - "==" + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 2 + ], + [ + 0, + 500 + ] + ] + ] ] - ], - {} + } ] ], - "2d.layer.anisotropic-blur.isotropic.w.html": [ - "15961d5c7ea822529fe1c0891463dd29c0569332", + "2d.filter.canvasFilterObject.componentTransfer.table.tentative.html": [ + "ef2da126eb47370ebd7b801158ffd778b364c27d", [ - "html/canvas/offscreen/layers/2d.layer.anisotropic-blur.isotropic.w.html", + null, [ [ - "/html/canvas/offscreen/layers/2d.layer.anisotropic-blur.isotropic-expected.html", + "/html/canvas/offscreen/filters/2d.filter.canvasFilterObject.componentTransfer.table.tentative-expected.html", "==" ] ], - {} - ] - ], - "2d.layer.anisotropic-blur.mostly-x.html": [ - "c5ad2ee6c585cc1448093b81cb1773b4b5a54599", - [ - "html/canvas/offscreen/layers/2d.layer.anisotropic-blur.mostly-x.html", - [ - [ - "/html/canvas/offscreen/layers/2d.layer.anisotropic-blur.mostly-x-expected.html", - "==" + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 2 + ], + [ + 0, + 500 + ] + ] + ] ] - ], - {} + } ] ], - "2d.layer.anisotropic-blur.mostly-x.w.html": [ - "60f5ac3ebdb1f699e1cced2477da6b0ae6d4bbb0", + "2d.filter.canvasFilterObject.componentTransfer.table.tentative.w.html": [ + "f39723da8e86e066f03fc95b20b6aa27127eb596", [ - "html/canvas/offscreen/layers/2d.layer.anisotropic-blur.mostly-x.w.html", + null, [ [ - "/html/canvas/offscreen/layers/2d.layer.anisotropic-blur.mostly-x-expected.html", + "/html/canvas/offscreen/filters/2d.filter.canvasFilterObject.componentTransfer.table.tentative-expected.html", "==" ] ], - {} - ] - ], - "2d.layer.anisotropic-blur.mostly-y.html": [ - "9545257cfa02c0aa7756d51e39aa030f5332975f", - [ - "html/canvas/offscreen/layers/2d.layer.anisotropic-blur.mostly-y.html", - [ - [ - "/html/canvas/offscreen/layers/2d.layer.anisotropic-blur.mostly-y-expected.html", - "==" + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 2 + ], + [ + 0, + 500 + ] + ] + ] ] - ], - {} + } ] ], - "2d.layer.anisotropic-blur.mostly-y.w.html": [ - "d533ad3187bf2b506f05f3021219a8891271d032", + "2d.filter.canvasFilterObject.dropShadow.tentative.html": [ + "7569304b95aa253bc9ec2f4a9787bab3fc12bdf8", [ - "html/canvas/offscreen/layers/2d.layer.anisotropic-blur.mostly-y.w.html", + null, [ [ - "/html/canvas/offscreen/layers/2d.layer.anisotropic-blur.mostly-y-expected.html", + "/html/canvas/offscreen/filters/2d.filter.canvasFilterObject.dropShadow.tentative-expected.html", "==" ] ], {} ] ], - "2d.layer.anisotropic-blur.x-only.html": [ - "4552ad44339ab96cde937d19c5d6af5ed87afcb5", + "2d.filter.canvasFilterObject.dropShadow.tentative.w.html": [ + "2a26af4ec3eae0bd8e8f65ac29752e67633d975e", [ - "html/canvas/offscreen/layers/2d.layer.anisotropic-blur.x-only.html", + null, [ [ - "/html/canvas/offscreen/layers/2d.layer.anisotropic-blur.x-only-expected.html", + "/html/canvas/offscreen/filters/2d.filter.canvasFilterObject.dropShadow.tentative-expected.html", "==" ] ], {} ] ], - "2d.layer.anisotropic-blur.x-only.w.html": [ - "38abb21cd99baec10701077d88ab4a2a1ffc6bfc", + "2d.filter.canvasFilterObject.gaussianBlur.tentative.html": [ + "8e7ea3f7273d363a6dc89a7644e233a956fd0149", [ - "html/canvas/offscreen/layers/2d.layer.anisotropic-blur.x-only.w.html", + null, [ [ - "/html/canvas/offscreen/layers/2d.layer.anisotropic-blur.x-only-expected.html", + "/html/canvas/offscreen/filters/2d.filter.canvasFilterObject.gaussianBlur.tentative-expected.html", "==" ] ], {} ] ], - "2d.layer.anisotropic-blur.y-only.html": [ - "87dbcd3708e41e73cf21f10d148c939b71bd08eb", + "2d.filter.canvasFilterObject.gaussianBlur.tentative.w.html": [ + "71626ac46e1c9f336c26da99276fe3e7044cd3c4", [ - "html/canvas/offscreen/layers/2d.layer.anisotropic-blur.y-only.html", + null, [ [ - "/html/canvas/offscreen/layers/2d.layer.anisotropic-blur.y-only-expected.html", + "/html/canvas/offscreen/filters/2d.filter.canvasFilterObject.gaussianBlur.tentative-expected.html", "==" ] ], {} ] ], - "2d.layer.anisotropic-blur.y-only.w.html": [ - "062328db751dbace3775d250bf9aefea54969e14", + "2d.filter.layers.componentTransfer.discrete.html": [ + "459c2f28504da3ceb69a75fa7d5df85708c799a8", [ - "html/canvas/offscreen/layers/2d.layer.anisotropic-blur.y-only.w.html", + null, [ [ - "/html/canvas/offscreen/layers/2d.layer.anisotropic-blur.y-only-expected.html", + "/html/canvas/offscreen/filters/2d.filter.layers.componentTransfer.discrete-expected.html", "==" ] ], - {} - ] - ], - "2d.layer.blur-from-outside-canvas.no-clipping.html": [ - "3cd1c674a131f1e81c960ff4059a59cc7b38e1c5", - [ - "html/canvas/offscreen/layers/2d.layer.blur-from-outside-canvas.no-clipping.html", - [ - [ - "/html/canvas/offscreen/layers/2d.layer.blur-from-outside-canvas.no-clipping-expected.html", - "==" + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 2 + ], + [ + 0, + 500 + ] + ] + ] ] - ], - {} + } ] ], - "2d.layer.blur-from-outside-canvas.no-clipping.w.html": [ - "90b013c077c85fbb247dff02477930dc07bd6526", + "2d.filter.layers.componentTransfer.discrete.w.html": [ + "86e1d54fb7c87db8a741c96db6adb1415c866701", [ - "html/canvas/offscreen/layers/2d.layer.blur-from-outside-canvas.no-clipping.w.html", + null, [ [ - "/html/canvas/offscreen/layers/2d.layer.blur-from-outside-canvas.no-clipping-expected.html", + "/html/canvas/offscreen/filters/2d.filter.layers.componentTransfer.discrete-expected.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 2 + ], + [ + 0, + 500 + ] + ] + ] + ] + } ] ], - "2d.layer.blur-from-outside-canvas.with-clipping.html": [ - "76477445e57bdeb8ebd8f31f191838f26e019770", + "2d.filter.layers.componentTransfer.gamma.html": [ + "9012115adfca1274609ee2dd8f6c74c86bc8c58b", [ - "html/canvas/offscreen/layers/2d.layer.blur-from-outside-canvas.with-clipping.html", + null, [ [ - "/html/canvas/offscreen/layers/2d.layer.blur-from-outside-canvas.with-clipping-expected.html", + "/html/canvas/offscreen/filters/2d.filter.layers.componentTransfer.gamma-expected.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 2 + ], + [ + 0, + 500 + ] + ] + ] + ] + } ] ], - "2d.layer.blur-from-outside-canvas.with-clipping.w.html": [ - "cf5570c932d22e29fc0407ed5b4c63ea1efd86a6", + "2d.filter.layers.componentTransfer.gamma.w.html": [ + "767bcc58e5fdedffd83ad20c64908cb7e7f8414d", [ - "html/canvas/offscreen/layers/2d.layer.blur-from-outside-canvas.with-clipping.w.html", + null, [ [ - "/html/canvas/offscreen/layers/2d.layer.blur-from-outside-canvas.with-clipping-expected.html", + "/html/canvas/offscreen/filters/2d.filter.layers.componentTransfer.gamma-expected.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 2 + ], + [ + 0, + 500 + ] + ] + ] + ] + } ] ], - "2d.layer.clip-inside-and-outside.html": [ - "03a3aee60519379807cabf3641b3bfee59e16a66", + "2d.filter.layers.componentTransfer.identity.html": [ + "901dae3bed499a0afd1ca84b8728bcc6b396e9df", [ - "html/canvas/offscreen/layers/2d.layer.clip-inside-and-outside.html", + null, [ [ - "/html/canvas/offscreen/layers/2d.layer.clip-inside-and-outside-expected.html", + "/html/canvas/offscreen/filters/2d.filter.layers.componentTransfer.identity-expected.html", "==" ] ], {} ] ], - "2d.layer.clip-inside-and-outside.w.html": [ - "71f9fe7db4d80e7190c62f0d422144af2cd7e7ac", + "2d.filter.layers.componentTransfer.identity.w.html": [ + "2e45018755a315c332cf5507c69b385c6d47246a", [ - "html/canvas/offscreen/layers/2d.layer.clip-inside-and-outside.w.html", + null, [ [ - "/html/canvas/offscreen/layers/2d.layer.clip-inside-and-outside-expected.html", + "/html/canvas/offscreen/filters/2d.filter.layers.componentTransfer.identity-expected.html", "==" ] ], {} ] ], - "2d.layer.clip-inside.html": [ - "e0c41f21e17581a0aba9b2a34c5a23e00a62cdd7", + "2d.filter.layers.componentTransfer.linear.html": [ + "f418b72ad552f2c1b508cadf5c0428acbf106ccc", [ - "html/canvas/offscreen/layers/2d.layer.clip-inside.html", + null, [ [ - "/html/canvas/offscreen/layers/2d.layer.clip-inside-expected.html", + "/html/canvas/offscreen/filters/2d.filter.layers.componentTransfer.linear-expected.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 2 + ], + [ + 0, + 500 + ] + ] + ] + ] + } ] ], - "2d.layer.clip-inside.w.html": [ - "9c4260a8cec5b056e0879d17fe7c2812882e6e14", + "2d.filter.layers.componentTransfer.linear.w.html": [ + "fbc29c86c170c2f2ae3cfe521ce5a774702d1e0c", [ - "html/canvas/offscreen/layers/2d.layer.clip-inside.w.html", + null, [ [ - "/html/canvas/offscreen/layers/2d.layer.clip-inside-expected.html", + "/html/canvas/offscreen/filters/2d.filter.layers.componentTransfer.linear-expected.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 2 + ], + [ + 0, + 500 + ] + ] + ] + ] + } ] ], - "2d.layer.clip-outside.html": [ - "d2d091e96b77638ab05a7d6cac7619e5f22121e7", + "2d.filter.layers.componentTransfer.table.html": [ + "ef5e0f847ba693406191b6aa26f9326a23052a7d", [ - "html/canvas/offscreen/layers/2d.layer.clip-outside.html", + null, [ [ - "/html/canvas/offscreen/layers/2d.layer.clip-outside-expected.html", + "/html/canvas/offscreen/filters/2d.filter.layers.componentTransfer.table-expected.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 2 + ], + [ + 0, + 500 + ] + ] + ] + ] + } ] ], - "2d.layer.clip-outside.w.html": [ - "aed72db5ab721e21d0d41c5e27c6ace9195882ed", + "2d.filter.layers.componentTransfer.table.w.html": [ + "b11f0ef6f30e125001fe99aa3c90881967236bee", [ - "html/canvas/offscreen/layers/2d.layer.clip-outside.w.html", + null, [ [ - "/html/canvas/offscreen/layers/2d.layer.clip-outside-expected.html", + "/html/canvas/offscreen/filters/2d.filter.layers.componentTransfer.table-expected.html", "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 2 + ], + [ + 0, + 500 + ] + ] + ] + ] + } ] ], - "2d.layer.cross-layer-paths.html": [ - "f167ae00bdf18f985cab62f350466bc903dbddaf", + "2d.filter.layers.dropShadow.html": [ + "1ecf309fc4e59a4dbf1baa6855bdb88a58852705", [ - "html/canvas/offscreen/layers/2d.layer.cross-layer-paths.html", + null, [ [ - "/html/canvas/offscreen/layers/2d.layer.cross-layer-paths-expected.html", + "/html/canvas/offscreen/filters/2d.filter.layers.dropShadow-expected.html", "==" ] ], {} ] ], - "2d.layer.cross-layer-paths.w.html": [ - "5b1f7f949cc57e12c7477ef3229369407c20fc1f", + "2d.filter.layers.dropShadow.w.html": [ + "e73b573779ede7e9dbe7a0d512b77ae9818a3311", [ - "html/canvas/offscreen/layers/2d.layer.cross-layer-paths.w.html", + null, [ [ - "/html/canvas/offscreen/layers/2d.layer.cross-layer-paths-expected.html", + "/html/canvas/offscreen/filters/2d.filter.layers.dropShadow-expected.html", "==" ] ], {} ] ], - "2d.layer.css-filters.blur-and-shadow.html": [ - "a44ce4707f4ec28ce647b7041f4bb2d7a0cf1803", + "2d.filter.layers.gaussianBlur.html": [ + "a51fe320080d570dfa97da72d3e6561510f7ef96", [ - "html/canvas/offscreen/layers/2d.layer.css-filters.blur-and-shadow.html", + null, [ [ - "/html/canvas/offscreen/layers/2d.layer.css-filters.blur-and-shadow-expected.html", + "/html/canvas/offscreen/filters/2d.filter.layers.gaussianBlur-expected.html", "==" ] ], {} ] ], - "2d.layer.css-filters.blur-and-shadow.w.html": [ - "9413ca6674bb0637756f9e4c5abb17d24d0fc113", + "2d.filter.layers.gaussianBlur.w.html": [ + "10ea8baa10636013b3afe96fc97bfe8c34c2a619", [ - "html/canvas/offscreen/layers/2d.layer.css-filters.blur-and-shadow.w.html", + null, [ [ - "/html/canvas/offscreen/layers/2d.layer.css-filters.blur-and-shadow-expected.html", + "/html/canvas/offscreen/filters/2d.filter.layers.gaussianBlur-expected.html", "==" ] ], {} ] - ], - "2d.layer.css-filters.blur.html": [ - "5407ec37ad87b35029df07b720a7d210d274c3c4", + ] + }, + "layers": { + "2d.layer.anisotropic-blur.isotropic.html": [ + "d59a4ccf62e3759438abf74e305eb61df3d63745", [ - "html/canvas/offscreen/layers/2d.layer.css-filters.blur.html", + null, [ [ - "/html/canvas/offscreen/layers/2d.layer.css-filters.blur-expected.html", + "/html/canvas/offscreen/layers/2d.layer.anisotropic-blur.isotropic-expected.html", "==" ] ], {} ] ], - "2d.layer.css-filters.blur.w.html": [ - "35af0e1bfb74c193598ffcd21569b2e0066631eb", + "2d.layer.anisotropic-blur.isotropic.w.html": [ + "15961d5c7ea822529fe1c0891463dd29c0569332", [ - "html/canvas/offscreen/layers/2d.layer.css-filters.blur.w.html", + null, [ [ - "/html/canvas/offscreen/layers/2d.layer.css-filters.blur-expected.html", + "/html/canvas/offscreen/layers/2d.layer.anisotropic-blur.isotropic-expected.html", "==" ] ], {} ] ], - "2d.layer.css-filters.shadow.html": [ - "28d6e6e4033e6263e7141ccaf8ccf813e22e690d", + "2d.layer.anisotropic-blur.mostly-x.html": [ + "c5ad2ee6c585cc1448093b81cb1773b4b5a54599", [ - "html/canvas/offscreen/layers/2d.layer.css-filters.shadow.html", + null, [ [ - "/html/canvas/offscreen/layers/2d.layer.css-filters.shadow-expected.html", + "/html/canvas/offscreen/layers/2d.layer.anisotropic-blur.mostly-x-expected.html", "==" ] ], {} ] ], - "2d.layer.css-filters.shadow.w.html": [ - "98e9d2fbd43290c18d2ab8038cfd8ad23d6f98e2", + "2d.layer.anisotropic-blur.mostly-x.w.html": [ + "60f5ac3ebdb1f699e1cced2477da6b0ae6d4bbb0", [ - "html/canvas/offscreen/layers/2d.layer.css-filters.shadow.w.html", + null, [ [ - "/html/canvas/offscreen/layers/2d.layer.css-filters.shadow-expected.html", + "/html/canvas/offscreen/layers/2d.layer.anisotropic-blur.mostly-x-expected.html", "==" ] ], {} ] ], - "2d.layer.global-filter.html": [ - "2388a06a964222700dd1f71b57ad0b7004becfbb", + "2d.layer.anisotropic-blur.mostly-y.html": [ + "9545257cfa02c0aa7756d51e39aa030f5332975f", [ - "html/canvas/offscreen/layers/2d.layer.global-filter.html", + null, [ [ - "/html/canvas/offscreen/layers/2d.layer.global-filter-expected.html", + "/html/canvas/offscreen/layers/2d.layer.anisotropic-blur.mostly-y-expected.html", "==" ] ], {} ] ], - "2d.layer.global-filter.w.html": [ - "4c8f92d18a1d149185ae86a5e9d6c3ad7dd16aa5", + "2d.layer.anisotropic-blur.mostly-y.w.html": [ + "d533ad3187bf2b506f05f3021219a8891271d032", [ - "html/canvas/offscreen/layers/2d.layer.global-filter.w.html", + null, [ [ - "/html/canvas/offscreen/layers/2d.layer.global-filter-expected.html", + "/html/canvas/offscreen/layers/2d.layer.anisotropic-blur.mostly-y-expected.html", "==" ] ], {} ] ], - "2d.layer.global-states.alpha.blending.html": [ - "71414b4b3790b97ad4947418c4ab9b1b04abcb57", + "2d.layer.anisotropic-blur.x-only.html": [ + "4552ad44339ab96cde937d19c5d6af5ed87afcb5", [ - "html/canvas/offscreen/layers/2d.layer.global-states.alpha.blending.html", + null, [ [ - "/html/canvas/offscreen/layers/2d.layer.global-states.alpha.blending-expected.html", + "/html/canvas/offscreen/layers/2d.layer.anisotropic-blur.x-only-expected.html", "==" ] ], {} ] ], - "2d.layer.global-states.alpha.blending.shadow.html": [ - "ed2d2d70af2cf5083a7ae72657605d3e99ef0afe", + "2d.layer.anisotropic-blur.x-only.w.html": [ + "38abb21cd99baec10701077d88ab4a2a1ffc6bfc", [ - "html/canvas/offscreen/layers/2d.layer.global-states.alpha.blending.shadow.html", + null, [ [ - "/html/canvas/offscreen/layers/2d.layer.global-states.alpha.blending.shadow-expected.html", + "/html/canvas/offscreen/layers/2d.layer.anisotropic-blur.x-only-expected.html", "==" ] ], {} ] ], - "2d.layer.global-states.alpha.blending.shadow.w.html": [ - "1ff3ad838505496370aa41c5e9c935300ed73b61", + "2d.layer.anisotropic-blur.y-only.html": [ + "87dbcd3708e41e73cf21f10d148c939b71bd08eb", [ - "html/canvas/offscreen/layers/2d.layer.global-states.alpha.blending.shadow.w.html", + null, [ [ - "/html/canvas/offscreen/layers/2d.layer.global-states.alpha.blending.shadow-expected.html", + "/html/canvas/offscreen/layers/2d.layer.anisotropic-blur.y-only-expected.html", "==" ] ], {} ] ], - "2d.layer.global-states.alpha.blending.w.html": [ - "618480c813fdd19049284ead5e1ec8f636b1d4c6", + "2d.layer.anisotropic-blur.y-only.w.html": [ + "062328db751dbace3775d250bf9aefea54969e14", [ - "html/canvas/offscreen/layers/2d.layer.global-states.alpha.blending.w.html", + null, [ [ - "/html/canvas/offscreen/layers/2d.layer.global-states.alpha.blending-expected.html", + "/html/canvas/offscreen/layers/2d.layer.anisotropic-blur.y-only-expected.html", "==" ] ], {} ] ], - "2d.layer.global-states.alpha.composite.html": [ - "94fed5752df2b618e2b34b4ca8a931b024bc1044", + "2d.layer.blur-from-outside-canvas.no-clipping.html": [ + "3cd1c674a131f1e81c960ff4059a59cc7b38e1c5", [ - "html/canvas/offscreen/layers/2d.layer.global-states.alpha.composite.html", + null, [ [ - "/html/canvas/offscreen/layers/2d.layer.global-states.alpha.composite-expected.html", + "/html/canvas/offscreen/layers/2d.layer.blur-from-outside-canvas.no-clipping-expected.html", "==" ] ], {} ] ], - "2d.layer.global-states.alpha.composite.shadow.html": [ - "eb579cdcce72a5236a9e095aac37c9658e740949", + "2d.layer.blur-from-outside-canvas.no-clipping.w.html": [ + "90b013c077c85fbb247dff02477930dc07bd6526", [ - "html/canvas/offscreen/layers/2d.layer.global-states.alpha.composite.shadow.html", + null, [ [ - "/html/canvas/offscreen/layers/2d.layer.global-states.alpha.composite.shadow-expected.html", + "/html/canvas/offscreen/layers/2d.layer.blur-from-outside-canvas.no-clipping-expected.html", "==" ] ], {} ] ], - "2d.layer.global-states.alpha.composite.shadow.w.html": [ - "60e36f4b9786c6eff4bf53b16c1aa8e3350b468d", + "2d.layer.blur-from-outside-canvas.with-clipping.html": [ + "76477445e57bdeb8ebd8f31f191838f26e019770", [ - "html/canvas/offscreen/layers/2d.layer.global-states.alpha.composite.shadow.w.html", + null, [ [ - "/html/canvas/offscreen/layers/2d.layer.global-states.alpha.composite.shadow-expected.html", + "/html/canvas/offscreen/layers/2d.layer.blur-from-outside-canvas.with-clipping-expected.html", "==" ] ], {} ] ], - "2d.layer.global-states.alpha.composite.w.html": [ - "d7d2b7a21e28596a4b031ee771dff98dc7ce063b", + "2d.layer.blur-from-outside-canvas.with-clipping.w.html": [ + "cf5570c932d22e29fc0407ed5b4c63ea1efd86a6", [ - "html/canvas/offscreen/layers/2d.layer.global-states.alpha.composite.w.html", + null, [ [ - "/html/canvas/offscreen/layers/2d.layer.global-states.alpha.composite-expected.html", + "/html/canvas/offscreen/layers/2d.layer.blur-from-outside-canvas.with-clipping-expected.html", "==" ] ], {} ] ], - "2d.layer.global-states.alpha.html": [ - "63a264e6819fd67841f69bf240da0dcc7dd2a562", + "2d.layer.clearRect.full.html": [ + "ec9f453b69ef379653debd215ae1dc66a0672382", [ - "html/canvas/offscreen/layers/2d.layer.global-states.alpha.html", + null, [ [ - "/html/canvas/offscreen/layers/2d.layer.global-states.alpha-expected.html", + "/html/canvas/offscreen/layers/2d.layer.clearRect.full-expected.html", "==" ] ], {} ] ], - "2d.layer.global-states.alpha.shadow.html": [ - "65a66c977d5d8aa2716e97405d78e7a9e1b90106", + "2d.layer.clearRect.full.w.html": [ + "a6f4021dd50e12f17c46ba5565384b31dbfe2916", [ - "html/canvas/offscreen/layers/2d.layer.global-states.alpha.shadow.html", + null, [ [ - "/html/canvas/offscreen/layers/2d.layer.global-states.alpha.shadow-expected.html", + "/html/canvas/offscreen/layers/2d.layer.clearRect.full-expected.html", "==" ] ], {} ] ], - "2d.layer.global-states.alpha.shadow.w.html": [ - "f404601e3d15392c5919fb5b49ac4e267fadf60f", + "2d.layer.clearRect.partial.html": [ + "88509a8a40be36c5c3c6b1541e6ba1f6f517e4e1", [ - "html/canvas/offscreen/layers/2d.layer.global-states.alpha.shadow.w.html", + null, [ [ - "/html/canvas/offscreen/layers/2d.layer.global-states.alpha.shadow-expected.html", + "/html/canvas/offscreen/layers/2d.layer.clearRect.partial-expected.html", "==" ] ], {} ] ], - "2d.layer.global-states.alpha.w.html": [ - "694f31e208b3276a0c30c7dc4eb4750e48386f6a", + "2d.layer.clearRect.partial.w.html": [ + "c6ba41afd76c79a63eb332ce247dea75d066db26", [ - "html/canvas/offscreen/layers/2d.layer.global-states.alpha.w.html", + null, [ [ - "/html/canvas/offscreen/layers/2d.layer.global-states.alpha-expected.html", + "/html/canvas/offscreen/layers/2d.layer.clearRect.partial-expected.html", "==" ] ], {} ] ], - "2d.layer.global-states.blending.html": [ - "6a36bb4ba101ce5e91f0279c95a728e94d808912", + "2d.layer.clip-inside-and-outside.html": [ + "03a3aee60519379807cabf3641b3bfee59e16a66", [ - "html/canvas/offscreen/layers/2d.layer.global-states.blending.html", + null, [ [ - "/html/canvas/offscreen/layers/2d.layer.global-states.blending-expected.html", + "/html/canvas/offscreen/layers/2d.layer.clip-inside-and-outside-expected.html", "==" ] ], {} ] ], - "2d.layer.global-states.blending.shadow.html": [ - "2e91f3d2d108c7397e623b2170a4f4cfc0a210d6", + "2d.layer.clip-inside-and-outside.w.html": [ + "71f9fe7db4d80e7190c62f0d422144af2cd7e7ac", [ - "html/canvas/offscreen/layers/2d.layer.global-states.blending.shadow.html", + null, [ [ - "/html/canvas/offscreen/layers/2d.layer.global-states.blending.shadow-expected.html", + "/html/canvas/offscreen/layers/2d.layer.clip-inside-and-outside-expected.html", "==" ] ], {} ] ], - "2d.layer.global-states.blending.shadow.w.html": [ - "d8e20d0479542b14e49652f6f3e2be2416be346c", + "2d.layer.clip-inside.html": [ + "e0c41f21e17581a0aba9b2a34c5a23e00a62cdd7", [ - "html/canvas/offscreen/layers/2d.layer.global-states.blending.shadow.w.html", + null, [ [ - "/html/canvas/offscreen/layers/2d.layer.global-states.blending.shadow-expected.html", + "/html/canvas/offscreen/layers/2d.layer.clip-inside-expected.html", "==" ] ], {} ] ], - "2d.layer.global-states.blending.w.html": [ - "8964e97713cd9eea2cdef3904194b3f461fb4be7", + "2d.layer.clip-inside.w.html": [ + "9c4260a8cec5b056e0879d17fe7c2812882e6e14", [ - "html/canvas/offscreen/layers/2d.layer.global-states.blending.w.html", + null, [ [ - "/html/canvas/offscreen/layers/2d.layer.global-states.blending-expected.html", + "/html/canvas/offscreen/layers/2d.layer.clip-inside-expected.html", "==" ] ], {} ] ], - "2d.layer.global-states.composite.html": [ - "84fb4b3d95a199c82d6b556af8a13cce374877ef", + "2d.layer.clip-outside.html": [ + "d2d091e96b77638ab05a7d6cac7619e5f22121e7", [ - "html/canvas/offscreen/layers/2d.layer.global-states.composite.html", + null, [ [ - "/html/canvas/offscreen/layers/2d.layer.global-states.composite-expected.html", + "/html/canvas/offscreen/layers/2d.layer.clip-outside-expected.html", "==" ] ], {} ] ], - "2d.layer.global-states.composite.shadow.html": [ - "1e3ab4d6a0764bbd73e3bb62d3c08d75960f0c92", + "2d.layer.clip-outside.w.html": [ + "aed72db5ab721e21d0d41c5e27c6ace9195882ed", [ - "html/canvas/offscreen/layers/2d.layer.global-states.composite.shadow.html", + null, [ [ - "/html/canvas/offscreen/layers/2d.layer.global-states.composite.shadow-expected.html", + "/html/canvas/offscreen/layers/2d.layer.clip-outside-expected.html", "==" ] ], {} ] ], - "2d.layer.global-states.composite.shadow.w.html": [ - "7dfb70148b56fdd4c6006892b3ef593d9dced9a3", + "2d.layer.cross-layer-paths.html": [ + "f167ae00bdf18f985cab62f350466bc903dbddaf", [ - "html/canvas/offscreen/layers/2d.layer.global-states.composite.shadow.w.html", + null, [ [ - "/html/canvas/offscreen/layers/2d.layer.global-states.composite.shadow-expected.html", + "/html/canvas/offscreen/layers/2d.layer.cross-layer-paths-expected.html", "==" ] ], {} ] ], - "2d.layer.global-states.composite.w.html": [ - "b695871fcdcfc55469ae9f29983bff485edd76b8", + "2d.layer.cross-layer-paths.w.html": [ + "5b1f7f949cc57e12c7477ef3229369407c20fc1f", [ - "html/canvas/offscreen/layers/2d.layer.global-states.composite.w.html", + null, [ [ - "/html/canvas/offscreen/layers/2d.layer.global-states.composite-expected.html", + "/html/canvas/offscreen/layers/2d.layer.cross-layer-paths-expected.html", "==" ] ], {} ] ], - "2d.layer.global-states.filter.alpha.blending.html": [ - "be6f962b3371e743a5ca784bc798327e54a8fec5", + "2d.layer.css-filters.blur-and-shadow.html": [ + "a44ce4707f4ec28ce647b7041f4bb2d7a0cf1803", [ - "html/canvas/offscreen/layers/2d.layer.global-states.filter.alpha.blending.html", + null, [ [ - "/html/canvas/offscreen/layers/2d.layer.global-states.filter.alpha.blending-expected.html", + "/html/canvas/offscreen/layers/2d.layer.css-filters.blur-and-shadow-expected.html", "==" ] ], {} ] ], - "2d.layer.global-states.filter.alpha.blending.shadow.html": [ - "62d98d967c83a2085837f8fb8cda8c81b9fbd7ec", + "2d.layer.css-filters.blur-and-shadow.w.html": [ + "9413ca6674bb0637756f9e4c5abb17d24d0fc113", [ - "html/canvas/offscreen/layers/2d.layer.global-states.filter.alpha.blending.shadow.html", + null, [ [ - "/html/canvas/offscreen/layers/2d.layer.global-states.filter.alpha.blending.shadow-expected.html", + "/html/canvas/offscreen/layers/2d.layer.css-filters.blur-and-shadow-expected.html", "==" ] ], {} ] ], - "2d.layer.global-states.filter.alpha.blending.shadow.w.html": [ - "e81efd6b8de3ee6a228333c2987ef1e12e774666", + "2d.layer.css-filters.blur.html": [ + "5407ec37ad87b35029df07b720a7d210d274c3c4", [ - "html/canvas/offscreen/layers/2d.layer.global-states.filter.alpha.blending.shadow.w.html", + null, [ [ - "/html/canvas/offscreen/layers/2d.layer.global-states.filter.alpha.blending.shadow-expected.html", + "/html/canvas/offscreen/layers/2d.layer.css-filters.blur-expected.html", "==" ] ], {} ] ], - "2d.layer.global-states.filter.alpha.blending.w.html": [ - "2b53ad7c1ee4a0498399a8a11a04f2bb238d0548", + "2d.layer.css-filters.blur.w.html": [ + "35af0e1bfb74c193598ffcd21569b2e0066631eb", [ - "html/canvas/offscreen/layers/2d.layer.global-states.filter.alpha.blending.w.html", + null, [ [ - "/html/canvas/offscreen/layers/2d.layer.global-states.filter.alpha.blending-expected.html", + "/html/canvas/offscreen/layers/2d.layer.css-filters.blur-expected.html", "==" ] ], {} ] ], - "2d.layer.global-states.filter.alpha.composite.html": [ - "087fea88af8ca3961f1e302642336dcd0bf42af9", + "2d.layer.css-filters.shadow.html": [ + "28d6e6e4033e6263e7141ccaf8ccf813e22e690d", [ - "html/canvas/offscreen/layers/2d.layer.global-states.filter.alpha.composite.html", + null, [ [ - "/html/canvas/offscreen/layers/2d.layer.global-states.filter.alpha.composite-expected.html", + "/html/canvas/offscreen/layers/2d.layer.css-filters.shadow-expected.html", "==" ] ], {} ] ], - "2d.layer.global-states.filter.alpha.composite.shadow.html": [ - "d067ff2f5e4caecdedbea9abb1626008575dc9a1", + "2d.layer.css-filters.shadow.w.html": [ + "98e9d2fbd43290c18d2ab8038cfd8ad23d6f98e2", [ - "html/canvas/offscreen/layers/2d.layer.global-states.filter.alpha.composite.shadow.html", + null, [ [ - "/html/canvas/offscreen/layers/2d.layer.global-states.filter.alpha.composite.shadow-expected.html", + "/html/canvas/offscreen/layers/2d.layer.css-filters.shadow-expected.html", "==" ] ], {} ] ], - "2d.layer.global-states.filter.alpha.composite.shadow.w.html": [ - "39abc78b17de4eb5c3b396549a40c520530dd721", + "2d.layer.ctm.filter.html": [ + "e5efc24bcc4f1e19ba49e5e5bee67cc21cce1eb6", [ - "html/canvas/offscreen/layers/2d.layer.global-states.filter.alpha.composite.shadow.w.html", + null, [ [ - "/html/canvas/offscreen/layers/2d.layer.global-states.filter.alpha.composite.shadow-expected.html", + "/html/canvas/offscreen/layers/2d.layer.ctm.filter-expected.html", "==" ] ], {} ] ], - "2d.layer.global-states.filter.alpha.composite.w.html": [ - "6aa83a32788057e5fc8a3d0643574c3c000c6cac", + "2d.layer.ctm.filter.w.html": [ + "760a65e2c82bac684351844e8fdc24cfe2dea33f", [ - "html/canvas/offscreen/layers/2d.layer.global-states.filter.alpha.composite.w.html", + null, [ [ - "/html/canvas/offscreen/layers/2d.layer.global-states.filter.alpha.composite-expected.html", + "/html/canvas/offscreen/layers/2d.layer.ctm.filter-expected.html", "==" ] ], {} ] ], - "2d.layer.global-states.filter.alpha.html": [ - "f1d631c25ce17402b1a58f341f8e7224ce1e04ec", + "2d.layer.ctm.resetTransform.html": [ + "9508b34044c784d80b6e1852502e2204c57e9107", [ - "html/canvas/offscreen/layers/2d.layer.global-states.filter.alpha.html", + null, [ [ - "/html/canvas/offscreen/layers/2d.layer.global-states.filter.alpha-expected.html", + "/html/canvas/offscreen/layers/2d.layer.ctm.resetTransform-expected.html", "==" ] ], {} ] ], - "2d.layer.global-states.filter.alpha.shadow.html": [ - "2548c211810ced1086c0b670847c649f0499ede5", + "2d.layer.ctm.resetTransform.w.html": [ + "7bf63e1473e25080b3d8b1915409954225d452ab", [ - "html/canvas/offscreen/layers/2d.layer.global-states.filter.alpha.shadow.html", + null, [ [ - "/html/canvas/offscreen/layers/2d.layer.global-states.filter.alpha.shadow-expected.html", + "/html/canvas/offscreen/layers/2d.layer.ctm.resetTransform-expected.html", "==" ] ], {} ] ], - "2d.layer.global-states.filter.alpha.shadow.w.html": [ - "5e1494422ee0e9aa7f5bb7cae7f8a9401fe20eb7", + "2d.layer.ctm.setTransform.html": [ + "91034943b6da1d10077c360c9cd2f8bf373ff745", [ - "html/canvas/offscreen/layers/2d.layer.global-states.filter.alpha.shadow.w.html", + null, [ [ - "/html/canvas/offscreen/layers/2d.layer.global-states.filter.alpha.shadow-expected.html", + "/html/canvas/offscreen/layers/2d.layer.ctm.setTransform-expected.html", "==" ] ], {} ] ], - "2d.layer.global-states.filter.alpha.w.html": [ - "e75d668ad5489cadec9a6405a715bd980d89410a", + "2d.layer.ctm.setTransform.w.html": [ + "8b1ea1ce5129efe01d2cba1592ea9adbc1ccd39f", [ - "html/canvas/offscreen/layers/2d.layer.global-states.filter.alpha.w.html", + null, [ [ - "/html/canvas/offscreen/layers/2d.layer.global-states.filter.alpha-expected.html", + "/html/canvas/offscreen/layers/2d.layer.ctm.setTransform-expected.html", "==" ] ], {} ] ], - "2d.layer.global-states.filter.blending.html": [ - "ce2b04679847a2dcdd06e6eabccdc5260ff9b606", + "2d.layer.ctm.shadow-in-transformed-layer.html": [ + "59305076f0ba942135102139eb49d624469dcc4a", [ - "html/canvas/offscreen/layers/2d.layer.global-states.filter.blending.html", + null, [ [ - "/html/canvas/offscreen/layers/2d.layer.global-states.filter.blending-expected.html", + "/html/canvas/offscreen/layers/2d.layer.ctm.shadow-in-transformed-layer-expected.html", "==" ] ], {} ] ], - "2d.layer.global-states.filter.blending.shadow.html": [ - "d0d429bee333ef86887b601e4beff84da8aa72ae", + "2d.layer.ctm.shadow-in-transformed-layer.w.html": [ + "486a028335f2995ae299597b40f01c63a6f73758", [ - "html/canvas/offscreen/layers/2d.layer.global-states.filter.blending.shadow.html", + null, [ [ - "/html/canvas/offscreen/layers/2d.layer.global-states.filter.blending.shadow-expected.html", + "/html/canvas/offscreen/layers/2d.layer.ctm.shadow-in-transformed-layer-expected.html", "==" ] ], {} ] ], - "2d.layer.global-states.filter.blending.shadow.w.html": [ - "ce432ea74d9f051c47be8881b9efc5be22b1e599", + "2d.layer.drawImage.html": [ + "37718f6f2c5290c91879564dee61039bd3c93142", [ - "html/canvas/offscreen/layers/2d.layer.global-states.filter.blending.shadow.w.html", + null, [ [ - "/html/canvas/offscreen/layers/2d.layer.global-states.filter.blending.shadow-expected.html", + "/html/canvas/offscreen/layers/2d.layer.drawImage-expected.html", "==" ] ], {} ] ], - "2d.layer.global-states.filter.blending.w.html": [ - "bb101cdc0b129ded926b014f9bf7595eba547361", + "2d.layer.drawImage.w.html": [ + "78a235597d53188057a570f34632aba7147e9123", [ - "html/canvas/offscreen/layers/2d.layer.global-states.filter.blending.w.html", + null, [ [ - "/html/canvas/offscreen/layers/2d.layer.global-states.filter.blending-expected.html", + "/html/canvas/offscreen/layers/2d.layer.drawImage-expected.html", "==" ] ], {} ] ], - "2d.layer.global-states.filter.composite.html": [ - "32052a11501489c80d2141c57f4be67af68f68ab", + "2d.layer.global-filter.html": [ + "2388a06a964222700dd1f71b57ad0b7004becfbb", [ - "html/canvas/offscreen/layers/2d.layer.global-states.filter.composite.html", + null, [ [ - "/html/canvas/offscreen/layers/2d.layer.global-states.filter.composite-expected.html", + "/html/canvas/offscreen/layers/2d.layer.global-filter-expected.html", "==" ] ], {} ] ], - "2d.layer.global-states.filter.composite.shadow.html": [ - "b5e8b9f843a1d1cfd488181536263f8063062fa8", + "2d.layer.global-filter.w.html": [ + "4c8f92d18a1d149185ae86a5e9d6c3ad7dd16aa5", [ - "html/canvas/offscreen/layers/2d.layer.global-states.filter.composite.shadow.html", + null, [ [ - "/html/canvas/offscreen/layers/2d.layer.global-states.filter.composite.shadow-expected.html", + "/html/canvas/offscreen/layers/2d.layer.global-filter-expected.html", "==" ] ], {} ] ], - "2d.layer.global-states.filter.composite.shadow.w.html": [ - "894089d88e43bb3b7e71f14465688a2d8e58bf48", + "2d.layer.global-states.filter.no-transform.html": [ + "3afded0040552a09621515de9f1ce94789262715", [ - "html/canvas/offscreen/layers/2d.layer.global-states.filter.composite.shadow.w.html", + null, [ [ - "/html/canvas/offscreen/layers/2d.layer.global-states.filter.composite.shadow-expected.html", + "/html/canvas/offscreen/layers/2d.layer.global-states.filter.no-transform-expected.html", "==" ] ], {} ] ], - "2d.layer.global-states.filter.composite.w.html": [ - "41ccdaf5c0d313f52647df20cd2164d2c1ebb450", + "2d.layer.global-states.filter.no-transform.w.html": [ + "7b925b2539aeabc0f8b21ea0c5eb97f256bb8bc2", [ - "html/canvas/offscreen/layers/2d.layer.global-states.filter.composite.w.html", + null, [ [ - "/html/canvas/offscreen/layers/2d.layer.global-states.filter.composite-expected.html", + "/html/canvas/offscreen/layers/2d.layer.global-states.filter.no-transform-expected.html", "==" ] ], {} ] ], - "2d.layer.global-states.filter.no-global-states.html": [ - "3effa3ee9dd403a55995e44ddafd2052d74f89ee", + "2d.layer.global-states.filter.rotation.html": [ + "851b24adbd5f5acc8277ef5396be3a57b0c54f70", [ - "html/canvas/offscreen/layers/2d.layer.global-states.filter.no-global-states.html", + null, [ [ - "/html/canvas/offscreen/layers/2d.layer.global-states.filter.no-global-states-expected.html", + "/html/canvas/offscreen/layers/2d.layer.global-states.filter.rotation-expected.html", "==" ] ], {} ] ], - "2d.layer.global-states.filter.no-global-states.w.html": [ - "ec744d7ffe7955a54f42f9330d2d3b2d75d90e6f", + "2d.layer.global-states.filter.rotation.w.html": [ + "adb85393eb1e2e866fdef409a5a5f36a3341c8d4", [ - "html/canvas/offscreen/layers/2d.layer.global-states.filter.no-global-states.w.html", + null, [ [ - "/html/canvas/offscreen/layers/2d.layer.global-states.filter.no-global-states-expected.html", + "/html/canvas/offscreen/layers/2d.layer.global-states.filter.rotation-expected.html", "==" ] ], {} ] ], - "2d.layer.global-states.filter.shadow.html": [ - "7bb0ef5e134cced998f81a9dbc6bb3c75c60cb00", + "2d.layer.global-states.no-transform.html": [ + "d80b669af927b320716deaeb30304eb6290e88cd", [ - "html/canvas/offscreen/layers/2d.layer.global-states.filter.shadow.html", + null, [ [ - "/html/canvas/offscreen/layers/2d.layer.global-states.filter.shadow-expected.html", + "/html/canvas/offscreen/layers/2d.layer.global-states.no-transform-expected.html", "==" ] ], {} ] ], - "2d.layer.global-states.filter.shadow.w.html": [ - "bc9bd48aad3d81ddedc82427c1e00c6d39f33cd8", + "2d.layer.global-states.no-transform.w.html": [ + "e9e1f753a3cf350480a2da2e2a37feb5acebde17", [ - "html/canvas/offscreen/layers/2d.layer.global-states.filter.shadow.w.html", + null, [ [ - "/html/canvas/offscreen/layers/2d.layer.global-states.filter.shadow-expected.html", + "/html/canvas/offscreen/layers/2d.layer.global-states.no-transform-expected.html", "==" ] ], {} ] ], - "2d.layer.global-states.no-global-states.html": [ - "c8a98153816c1ae5f3064e75b7609b95264ce030", + "2d.layer.global-states.rotation.html": [ + "30d0ef5aca5893fe1733ba4603208c0c79d7814c", [ - "html/canvas/offscreen/layers/2d.layer.global-states.no-global-states.html", + null, [ [ - "/html/canvas/offscreen/layers/2d.layer.global-states.no-global-states-expected.html", + "/html/canvas/offscreen/layers/2d.layer.global-states.rotation-expected.html", "==" ] ], {} ] ], - "2d.layer.global-states.no-global-states.w.html": [ - "db03a3fd0c3c9f820fe5889b27483a4d8f070727", + "2d.layer.global-states.rotation.w.html": [ + "7f947d8dba2ac3cb3023f608c7963f207fdf6b02", [ - "html/canvas/offscreen/layers/2d.layer.global-states.no-global-states.w.html", + null, [ [ - "/html/canvas/offscreen/layers/2d.layer.global-states.no-global-states-expected.html", + "/html/canvas/offscreen/layers/2d.layer.global-states.rotation-expected.html", "==" ] ], {} ] ], - "2d.layer.global-states.shadow.html": [ - "ad60e87fb13e9a64e8b0b269ebdf8c337bdb0bfd", + "2d.layer.globalCompositeOperation.html": [ + "ab9bc4270b386951eb06b731dc4ae8ae8e0d8661", [ - "html/canvas/offscreen/layers/2d.layer.global-states.shadow.html", + null, [ [ - "/html/canvas/offscreen/layers/2d.layer.global-states.shadow-expected.html", + "/html/canvas/offscreen/layers/2d.layer.globalCompositeOperation-expected.html", "==" ] ], {} ] ], - "2d.layer.global-states.shadow.w.html": [ - "1fc35fd33aa6dc98ae6d78c329879702db18d096", + "2d.layer.globalCompositeOperation.w.html": [ + "9a403140fc4b20402caf6c00b24b30aa33b72420", [ - "html/canvas/offscreen/layers/2d.layer.global-states.shadow.w.html", + null, [ [ - "/html/canvas/offscreen/layers/2d.layer.global-states.shadow-expected.html", + "/html/canvas/offscreen/layers/2d.layer.globalCompositeOperation-expected.html", "==" ] ], @@ -324169,7 +327268,7 @@ "2d.layer.nested-filters.html": [ "adf99bacbe700beaf38f3ea84e3a3f676fe80d91", [ - "html/canvas/offscreen/layers/2d.layer.nested-filters.html", + null, [ [ "/html/canvas/offscreen/layers/2d.layer.nested-filters-expected.html", @@ -324182,7 +327281,7 @@ "2d.layer.nested-filters.w.html": [ "0616fecfd9d432fd10acbec41a73272d057ef37a", [ - "html/canvas/offscreen/layers/2d.layer.nested-filters.w.html", + null, [ [ "/html/canvas/offscreen/layers/2d.layer.nested-filters-expected.html", @@ -324195,7 +327294,7 @@ "2d.layer.nested.html": [ "9e5b7d5826c17ee5a6c52bbd53a1cbc2b70081e3", [ - "html/canvas/offscreen/layers/2d.layer.nested.html", + null, [ [ "/html/canvas/offscreen/layers/2d.layer.nested-expected.html", @@ -324208,7 +327307,7 @@ "2d.layer.nested.w.html": [ "99e73906096bd8f7f0fb81ddf5aea70853ad05e5", [ - "html/canvas/offscreen/layers/2d.layer.nested.w.html", + null, [ [ "/html/canvas/offscreen/layers/2d.layer.nested-expected.html", @@ -324218,130 +327317,104 @@ {} ] ], - "2d.layer.opaque-canvas.html": [ - "f9759abebeb71ed5733e03be85d58412429a9e1e", - [ - "html/canvas/offscreen/layers/2d.layer.opaque-canvas.html", - [ - [ - "/html/canvas/offscreen/layers/2d.layer.opaque-canvas-expected.html", - "==" - ] - ], - {} - ] - ], - "2d.layer.opaque-canvas.w.html": [ - "ff5ec19418b51b30091fbd08ef77570b15a83235", - [ - "html/canvas/offscreen/layers/2d.layer.opaque-canvas.w.html", - [ - [ - "/html/canvas/offscreen/layers/2d.layer.opaque-canvas-expected.html", - "==" - ] - ], - {} - ] - ], - "2d.layer.render-opportunities.convertToBlob.html": [ - "c9367532018adffa4cfe38f4d5e3789ebbee2522", + "2d.layer.non-invertible-matrix.html": [ + "426268baea89416d9653f57904c6f4149f248aeb", [ - "html/canvas/offscreen/layers/2d.layer.render-opportunities.convertToBlob.html", + null, [ [ - "/html/canvas/offscreen/layers/2d.layer.render-opportunities.convertToBlob-expected.html", + "/html/canvas/offscreen/layers/2d.layer.non-invertible-matrix-expected.html", "==" ] ], {} ] ], - "2d.layer.render-opportunities.convertToBlob.w.html": [ - "c1f9c1e2c0b4412bf905c431c0c41b7f408d12c2", + "2d.layer.non-invertible-matrix.shadow.html": [ + "45c20b527fb650860854b88c274ecde485875231", [ - "html/canvas/offscreen/layers/2d.layer.render-opportunities.convertToBlob.w.html", + null, [ [ - "/html/canvas/offscreen/layers/2d.layer.render-opportunities.convertToBlob-expected.html", + "/html/canvas/offscreen/layers/2d.layer.non-invertible-matrix.shadow-expected.html", "==" ] ], {} ] ], - "2d.layer.render-opportunities.createImageBitmap.html": [ - "1523f9f3bb0108f583291d85709e2071495cf679", + "2d.layer.non-invertible-matrix.shadow.w.html": [ + "573168f7c422a4c050285d9637129a882fcab14c", [ - "html/canvas/offscreen/layers/2d.layer.render-opportunities.createImageBitmap.html", + null, [ [ - "/html/canvas/offscreen/layers/2d.layer.render-opportunities.createImageBitmap-expected.html", + "/html/canvas/offscreen/layers/2d.layer.non-invertible-matrix.shadow-expected.html", "==" ] ], {} ] ], - "2d.layer.render-opportunities.createImageBitmap.w.html": [ - "600287782b135e16ae6035c4a83316274b75bcaa", + "2d.layer.non-invertible-matrix.w.html": [ + "19aafd6d1abe8e29401528c54cb49c336af3eb88", [ - "html/canvas/offscreen/layers/2d.layer.render-opportunities.createImageBitmap.w.html", + null, [ [ - "/html/canvas/offscreen/layers/2d.layer.render-opportunities.createImageBitmap-expected.html", + "/html/canvas/offscreen/layers/2d.layer.non-invertible-matrix-expected.html", "==" ] ], {} ] ], - "2d.layer.render-opportunities.drawImage.html": [ - "d7eae8ddd7dfe7307a03ab1f356c97b2035ba7aa", + "2d.layer.non-invertible-matrix.with-render-states-and-filter.html": [ + "ec69a96b70270b5fc6d34d9b05a0f1a15bf40d08", [ - "html/canvas/offscreen/layers/2d.layer.render-opportunities.drawImage.html", + null, [ [ - "/html/canvas/offscreen/layers/2d.layer.render-opportunities.drawImage-expected.html", + "/html/canvas/offscreen/layers/2d.layer.non-invertible-matrix.with-render-states-and-filter-expected.html", "==" ] ], {} ] ], - "2d.layer.render-opportunities.drawImage.w.html": [ - "457e84d56e00890ff5e43336466119477154bbb5", + "2d.layer.non-invertible-matrix.with-render-states-and-filter.w.html": [ + "1fe9d99d6d7b56c4509a670124dc40e67cb99bf9", [ - "html/canvas/offscreen/layers/2d.layer.render-opportunities.drawImage.w.html", + null, [ [ - "/html/canvas/offscreen/layers/2d.layer.render-opportunities.drawImage-expected.html", + "/html/canvas/offscreen/layers/2d.layer.non-invertible-matrix.with-render-states-and-filter-expected.html", "==" ] ], {} ] ], - "2d.layer.render-opportunities.getImageData.html": [ - "fe29b4be1a51c430c5c0afdd56ee69e13fe89dcd", + "2d.layer.opaque-canvas.html": [ + "f9759abebeb71ed5733e03be85d58412429a9e1e", [ - "html/canvas/offscreen/layers/2d.layer.render-opportunities.getImageData.html", + null, [ [ - "/html/canvas/offscreen/layers/2d.layer.render-opportunities.getImageData-expected.html", + "/html/canvas/offscreen/layers/2d.layer.opaque-canvas-expected.html", "==" ] ], {} ] ], - "2d.layer.render-opportunities.getImageData.w.html": [ - "9eceff91dafdd5c7850992c900366110c48cb45b", + "2d.layer.opaque-canvas.w.html": [ + "ff5ec19418b51b30091fbd08ef77570b15a83235", [ - "html/canvas/offscreen/layers/2d.layer.render-opportunities.getImageData.w.html", + null, [ [ - "/html/canvas/offscreen/layers/2d.layer.render-opportunities.getImageData-expected.html", + "/html/canvas/offscreen/layers/2d.layer.opaque-canvas-expected.html", "==" ] ], @@ -324351,7 +327424,7 @@ "2d.layer.reset.html": [ "3254c0a0489094feee414f868bdd59da81e11729", [ - "html/canvas/offscreen/layers/2d.layer.reset.html", + null, [ [ "/html/canvas/offscreen/layers/2d.layer.reset-expected.html", @@ -324364,7 +327437,7 @@ "2d.layer.reset.w.html": [ "09bd6451bd00884dc837b830b275204fd81fc044", [ - "html/canvas/offscreen/layers/2d.layer.reset.w.html", + null, [ [ "/html/canvas/offscreen/layers/2d.layer.reset-expected.html", @@ -324377,7 +327450,7 @@ "2d.layer.restore-style.html": [ "a3593cd2a82748df9db8bd74a67dbc29dcaefb31", [ - "html/canvas/offscreen/layers/2d.layer.restore-style.html", + null, [ [ "/html/canvas/offscreen/layers/2d.layer.restore-style-expected.html", @@ -324406,7 +327479,7 @@ "2d.layer.restore-style.w.html": [ "a66fc2bc598344c7c9afc51dbdecbd13935b37a3", [ - "html/canvas/offscreen/layers/2d.layer.restore-style.w.html", + null, [ [ "/html/canvas/offscreen/layers/2d.layer.restore-style-expected.html", @@ -324435,7 +327508,7 @@ "2d.layer.several-complex.html": [ "e30f1d2fa0eebc2983c8478f7c0e3eb970e40057", [ - "html/canvas/offscreen/layers/2d.layer.several-complex.html", + null, [ [ "/html/canvas/offscreen/layers/2d.layer.several-complex-expected.html", @@ -324464,7 +327537,7 @@ "2d.layer.several-complex.w.html": [ "e00de63507248deaaf435ba76b158ba7d59d5011", [ - "html/canvas/offscreen/layers/2d.layer.several-complex.w.html", + null, [ [ "/html/canvas/offscreen/layers/2d.layer.several-complex-expected.html", @@ -324493,7 +327566,7 @@ "2d.layer.shadow-from-outside-canvas.long-distance-with-clipping.html": [ "98262f53b61e93ccd30f5cdf323f15b072f13d2e", [ - "html/canvas/offscreen/layers/2d.layer.shadow-from-outside-canvas.long-distance-with-clipping.html", + null, [ [ "/html/canvas/offscreen/layers/2d.layer.shadow-from-outside-canvas.long-distance-with-clipping-expected.html", @@ -324506,7 +327579,7 @@ "2d.layer.shadow-from-outside-canvas.long-distance-with-clipping.w.html": [ "90b4332f94b154b3a1a48cfd2a9e448972c1c3ff", [ - "html/canvas/offscreen/layers/2d.layer.shadow-from-outside-canvas.long-distance-with-clipping.w.html", + null, [ [ "/html/canvas/offscreen/layers/2d.layer.shadow-from-outside-canvas.long-distance-with-clipping-expected.html", @@ -324519,7 +327592,7 @@ "2d.layer.shadow-from-outside-canvas.long-distance.html": [ "eea9b5dc25f940e1ae6c98794b9604cd79be664b", [ - "html/canvas/offscreen/layers/2d.layer.shadow-from-outside-canvas.long-distance.html", + null, [ [ "/html/canvas/offscreen/layers/2d.layer.shadow-from-outside-canvas.long-distance-expected.html", @@ -324532,7 +327605,7 @@ "2d.layer.shadow-from-outside-canvas.long-distance.w.html": [ "e4422558cf024eb8bcdf6b2b85b3241bd0b28ace", [ - "html/canvas/offscreen/layers/2d.layer.shadow-from-outside-canvas.long-distance.w.html", + null, [ [ "/html/canvas/offscreen/layers/2d.layer.shadow-from-outside-canvas.long-distance-expected.html", @@ -324545,7 +327618,7 @@ "2d.layer.shadow-from-outside-canvas.short-distance-with-clipping.html": [ "d5f5b0c8ff91cf2a05830c90af8be5929433b1d1", [ - "html/canvas/offscreen/layers/2d.layer.shadow-from-outside-canvas.short-distance-with-clipping.html", + null, [ [ "/html/canvas/offscreen/layers/2d.layer.shadow-from-outside-canvas.short-distance-with-clipping-expected.html", @@ -324558,7 +327631,7 @@ "2d.layer.shadow-from-outside-canvas.short-distance-with-clipping.w.html": [ "acbf09edec180b53913291397a707c905d76193c", [ - "html/canvas/offscreen/layers/2d.layer.shadow-from-outside-canvas.short-distance-with-clipping.w.html", + null, [ [ "/html/canvas/offscreen/layers/2d.layer.shadow-from-outside-canvas.short-distance-with-clipping-expected.html", @@ -324571,7 +327644,7 @@ "2d.layer.shadow-from-outside-canvas.short-distance.html": [ "a1c4689f7e59bceaeaef8f792aa299d9300dd8eb", [ - "html/canvas/offscreen/layers/2d.layer.shadow-from-outside-canvas.short-distance.html", + null, [ [ "/html/canvas/offscreen/layers/2d.layer.shadow-from-outside-canvas.short-distance-expected.html", @@ -324584,7 +327657,7 @@ "2d.layer.shadow-from-outside-canvas.short-distance.w.html": [ "2e39091f3d4ada95b3dc824b06114754df084364", [ - "html/canvas/offscreen/layers/2d.layer.shadow-from-outside-canvas.short-distance.w.html", + null, [ [ "/html/canvas/offscreen/layers/2d.layer.shadow-from-outside-canvas.short-distance-expected.html", @@ -324593,65 +327666,95 @@ ], {} ] - ], - "2d.layer.unclosed-nested.html": [ - "b7be6d82423805c7d138ea3ee53561a2a9cc9433", - [ - "html/canvas/offscreen/layers/2d.layer.unclosed-nested.html", + ] + }, + "manual": { + "layers": { + "unclosed-layers.html": [ + "4fee600d6cbf7ba28ae6ec54d9d0dd3a639b55a3", [ + null, [ - "/html/canvas/offscreen/layers/2d.layer.unclosed-nested-expected.html", - "==" - ] - ], - {} - ] - ], - "2d.layer.unclosed-nested.w.html": [ - "e330e1710cf488f6cb31a8dd032f87ad2ae07905", - [ - "html/canvas/offscreen/layers/2d.layer.unclosed-nested.w.html", + [ + "/html/canvas/offscreen/manual/layers/unclosed-layers-expected.html", + "==" + ] + ], + {} + ] + ], + "unclosed-layers.w.html": [ + "a0014bb597686332935626b75714752ac1af4299", [ + null, [ - "/html/canvas/offscreen/layers/2d.layer.unclosed-nested-expected.html", - "==" - ] - ], - {} + [ + "/html/canvas/offscreen/manual/layers/unclosed-layers-expected.html", + "==" + ] + ], + {} + ] + ], + "unclosed-nested-layers.html": [ + "c6925beb745dcc69881a4784479c4d90d0312b3e", + [ + null, + [ + [ + "/html/canvas/offscreen/manual/layers/unclosed-nested-layers-expected.html", + "==" + ] + ], + {} + ] + ], + "unclosed-nested-layers.w.html": [ + "1a1dc540526fe30dbf24ca4fec573e5aca1e8564", + [ + null, + [ + [ + "/html/canvas/offscreen/manual/layers/unclosed-nested-layers-expected.html", + "==" + ] + ], + {} + ] ] - ], - "2d.layer.unclosed.html": [ - "d2e599b2b99ffa63825295d8880e4aae0f2b49a1", + } + }, + "reset": { + "2d.reset.after-rasterization.html": [ + "b78b19d29001d6d721648320bef7ef4424bd6a15", [ - "html/canvas/offscreen/layers/2d.layer.unclosed.html", + "html/canvas/offscreen/reset/2d.reset.after-rasterization.html", [ [ - "/html/canvas/offscreen/layers/2d.layer.unclosed-expected.html", + "/html/canvas/offscreen/reset/2d.reset.after-rasterization-expected.html", "==" ] ], {} ] ], - "2d.layer.unclosed.w.html": [ - "1da44c26c8661b2deaa9747d704acc52610debc7", + "2d.reset.after-rasterization.w.html": [ + "00ba44133c662c6c24131003058ec0e40c4376c6", [ - "html/canvas/offscreen/layers/2d.layer.unclosed.w.html", + "html/canvas/offscreen/reset/2d.reset.after-rasterization.w.html", [ [ - "/html/canvas/offscreen/layers/2d.layer.unclosed-expected.html", + "/html/canvas/offscreen/reset/2d.reset.after-rasterization-expected.html", "==" ] ], {} ] - ] - }, - "reset": { + ], "2d.reset.render.drop_shadow.html": [ "e6decd1687e8dcf78036fdeb3cbfa866738db1ae", [ - "html/canvas/offscreen/reset/2d.reset.render.drop_shadow.html", + null, [ [ "/html/canvas/offscreen/reset/2d.reset.render.drop_shadow-expected.html", @@ -324664,7 +327767,7 @@ "2d.reset.render.drop_shadow.w.html": [ "0ceba2f91d243fad1fb3bb37635a28fa63ffbf62", [ - "html/canvas/offscreen/reset/2d.reset.render.drop_shadow.w.html", + null, [ [ "/html/canvas/offscreen/reset/2d.reset.render.drop_shadow-expected.html", @@ -324677,7 +327780,7 @@ "2d.reset.render.global_composite_operation.html": [ "4ddcc8d8f0b77494927572c776e49f970d527192", [ - "html/canvas/offscreen/reset/2d.reset.render.global_composite_operation.html", + null, [ [ "/html/canvas/offscreen/reset/2d.reset.render.global_composite_operation-expected.html", @@ -324690,7 +327793,7 @@ "2d.reset.render.global_composite_operation.w.html": [ "6df07a47e2f08ca930a0c90459cc7be0fa267dd6", [ - "html/canvas/offscreen/reset/2d.reset.render.global_composite_operation.w.html", + null, [ [ "/html/canvas/offscreen/reset/2d.reset.render.global_composite_operation-expected.html", @@ -324703,7 +327806,7 @@ "2d.reset.render.line.html": [ "0e478cbf9d4b4337fbf8ed294b060f5c7a4e1162", [ - "html/canvas/offscreen/reset/2d.reset.render.line.html", + null, [ [ "/html/canvas/offscreen/reset/2d.reset.render.line-expected.html", @@ -324716,7 +327819,7 @@ "2d.reset.render.line.w.html": [ "e85f155b328a5f2bb3d82469c389f431f558147e", [ - "html/canvas/offscreen/reset/2d.reset.render.line.w.html", + null, [ [ "/html/canvas/offscreen/reset/2d.reset.render.line-expected.html", @@ -324729,7 +327832,7 @@ "2d.reset.render.misc.html": [ "b471327d989fb6c2e1623f945c8af926bb4603e1", [ - "html/canvas/offscreen/reset/2d.reset.render.misc.html", + null, [ [ "/html/canvas/offscreen/reset/2d.reset.render.misc-expected.html", @@ -324742,7 +327845,7 @@ "2d.reset.render.misc.w.html": [ "eef646df663992245b7c9728ec838386042fb0da", [ - "html/canvas/offscreen/reset/2d.reset.render.misc.w.html", + null, [ [ "/html/canvas/offscreen/reset/2d.reset.render.misc-expected.html", @@ -324755,7 +327858,7 @@ "2d.reset.render.miter_limit.html": [ "c00284bbc23bc83078a95ed44f7191d5a4f7a315", [ - "html/canvas/offscreen/reset/2d.reset.render.miter_limit.html", + null, [ [ "/html/canvas/offscreen/reset/2d.reset.render.miter_limit-expected.html", @@ -324768,7 +327871,7 @@ "2d.reset.render.miter_limit.w.html": [ "1f98606b55ee4d5ce5caba4cf90c4a26302ff3d7", [ - "html/canvas/offscreen/reset/2d.reset.render.miter_limit.w.html", + null, [ [ "/html/canvas/offscreen/reset/2d.reset.render.miter_limit-expected.html", @@ -324781,7 +327884,7 @@ "2d.reset.render.text.html": [ "31e35db71cbe2ed0b89f7f6c7c5b6a7c1d53c6af", [ - "html/canvas/offscreen/reset/2d.reset.render.text.html", + null, [ [ "/html/canvas/offscreen/reset/2d.reset.render.text-expected.html", @@ -324794,7 +327897,7 @@ "2d.reset.render.text.w.html": [ "6ddfd9fd9d99642aeccc6b9508168948ebdcb278", [ - "html/canvas/offscreen/reset/2d.reset.render.text.w.html", + null, [ [ "/html/canvas/offscreen/reset/2d.reset.render.text-expected.html", @@ -324807,7 +327910,7 @@ "2d.reset.state.clip.html": [ "2f53da7a496c57a7148a0d252bcdf7788095ca06", [ - "html/canvas/offscreen/reset/2d.reset.state.clip.html", + null, [ [ "/html/canvas/offscreen/reset/2d.reset.state.clip-expected.html", @@ -324820,7 +327923,7 @@ "2d.reset.state.clip.w.html": [ "ec4bdf5b23f2956e38d4e6aca30181cb95a3d70b", [ - "html/canvas/offscreen/reset/2d.reset.state.clip.w.html", + null, [ [ "/html/canvas/offscreen/reset/2d.reset.state.clip-expected.html", @@ -324832,10 +327935,62 @@ ] }, "text": { + "2d.text.drawing.style.reset.fontKerning.none2.html": [ + "21b699ecc89e73940251eb5c94c60abe5753ceae", + [ + null, + [ + [ + "/html/canvas/offscreen/text/2d.text.drawing.style.reset.fontKerning.none2-expected.html", + "==" + ] + ], + {} + ] + ], + "2d.text.drawing.style.reset.fontKerning.none2.w.html": [ + "6f81dfe0b1f74db19f66ec46f8370bc8e2a86071", + [ + null, + [ + [ + "/html/canvas/offscreen/text/2d.text.drawing.style.reset.fontKerning.none2-expected.html", + "==" + ] + ], + {} + ] + ], + "2d.text.fontVariantCaps.after.reset.font.html": [ + "bd09cc2ca0646434e6603a605e0be7d873a4a226", + [ + null, + [ + [ + "/html/canvas/offscreen/text/2d.text.fontVariantCaps.after.reset.font-expected.html", + "==" + ] + ], + {} + ] + ], + "2d.text.fontVariantCaps.after.reset.font.w.html": [ + "8f9ba4a1564ab19bdb41156f047e1b9ea5d8ac6d", + [ + null, + [ + [ + "/html/canvas/offscreen/text/2d.text.fontVariantCaps.after.reset.font-expected.html", + "==" + ] + ], + {} + ] + ], "2d.text.fontVariantCaps1.html": [ "3c216f07daac09924ae79221b05665ea0510000b", [ - "html/canvas/offscreen/text/2d.text.fontVariantCaps1.html", + null, [ [ "/html/canvas/offscreen/text/2d.text.fontVariantCaps1-expected.html", @@ -324848,7 +328003,7 @@ "2d.text.fontVariantCaps1.w.html": [ "4bc1b36e17576a6ef35f75783e5ffd4fb16c0ffb", [ - "html/canvas/offscreen/text/2d.text.fontVariantCaps1.w.html", + null, [ [ "/html/canvas/offscreen/text/2d.text.fontVariantCaps1-expected.html", @@ -324861,7 +328016,7 @@ "2d.text.fontVariantCaps3.html": [ "48699a640fe1f792ed275908b3b167e5e19aa01b", [ - "html/canvas/offscreen/text/2d.text.fontVariantCaps3.html", + null, [ [ "/html/canvas/offscreen/text/2d.text.fontVariantCaps3-expected.html", @@ -324874,7 +328029,7 @@ "2d.text.fontVariantCaps3.w.html": [ "cd5c1db818fcbf9c827cf3554d1ddd767ce2dac2", [ - "html/canvas/offscreen/text/2d.text.fontVariantCaps3.w.html", + null, [ [ "/html/canvas/offscreen/text/2d.text.fontVariantCaps3-expected.html", @@ -324887,7 +328042,7 @@ "2d.text.fontVariantCaps4.html": [ "b1b81b81e28747f9ec671a63eefcc2cb13d3c5bd", [ - "html/canvas/offscreen/text/2d.text.fontVariantCaps4.html", + null, [ [ "/html/canvas/offscreen/text/2d.text.fontVariantCaps4-expected.html", @@ -324900,7 +328055,7 @@ "2d.text.fontVariantCaps4.w.html": [ "0bae66fcd46b3e2903a1ce2350f571224efeb591", [ - "html/canvas/offscreen/text/2d.text.fontVariantCaps4.w.html", + null, [ [ "/html/canvas/offscreen/text/2d.text.fontVariantCaps4-expected.html", @@ -324913,7 +328068,7 @@ "2d.text.fontVariantCaps5.html": [ "2a6f7b5f737ca8c549ae88d413241ada90543049", [ - "html/canvas/offscreen/text/2d.text.fontVariantCaps5.html", + null, [ [ "/html/canvas/offscreen/text/2d.text.fontVariantCaps5-expected.html", @@ -324926,7 +328081,7 @@ "2d.text.fontVariantCaps5.w.html": [ "8c59f5b517d4b8bd07b2d057a44792614eb55103", [ - "html/canvas/offscreen/text/2d.text.fontVariantCaps5.w.html", + null, [ [ "/html/canvas/offscreen/text/2d.text.fontVariantCaps5-expected.html", @@ -324939,7 +328094,7 @@ "2d.text.fontVariantCaps6.html": [ "c33684d38869cd1fed409d44dc6bb1c6cfecf3e5", [ - "html/canvas/offscreen/text/2d.text.fontVariantCaps6.html", + null, [ [ "/html/canvas/offscreen/text/2d.text.fontVariantCaps6-expected.html", @@ -324952,7 +328107,7 @@ "2d.text.fontVariantCaps6.w.html": [ "47f70d812b6664c19fb424102df09d4960caad97", [ - "html/canvas/offscreen/text/2d.text.fontVariantCaps6.w.html", + null, [ [ "/html/canvas/offscreen/text/2d.text.fontVariantCaps6-expected.html", @@ -324965,7 +328120,7 @@ "canvas.2d.fontStretch.condensed.html": [ "0cbd5e3c1f18935d04a18359caa8c91c89fd1806", [ - "html/canvas/offscreen/text/canvas.2d.fontStretch.condensed.html", + null, [ [ "/html/canvas/offscreen/text/canvas.2d.fontStretch-ref.html", @@ -324978,7 +328133,7 @@ "canvas.2d.fontStretch.expanded.html": [ "5ec853985fd9f9a575d9401786a0cdc27bf7fdb8", [ - "html/canvas/offscreen/text/canvas.2d.fontStretch.expanded.html", + null, [ [ "/html/canvas/offscreen/text/canvas.2d.fontStretch-ref.html", @@ -324991,7 +328146,7 @@ "canvas.2d.fontStretch.extra-condensed.html": [ "12843c53b82b1d46d33a1e1c2abe5c0eceaeab2c", [ - "html/canvas/offscreen/text/canvas.2d.fontStretch.extra-condensed.html", + null, [ [ "/html/canvas/offscreen/text/canvas.2d.fontStretch-ref.html", @@ -325004,7 +328159,7 @@ "canvas.2d.fontStretch.extra-expanded.html": [ "20d801718aaf219cd0b35dcbd9c27b46ed15e868", [ - "html/canvas/offscreen/text/canvas.2d.fontStretch.extra-expanded.html", + null, [ [ "/html/canvas/offscreen/text/canvas.2d.fontStretch-ref.html", @@ -325017,7 +328172,7 @@ "canvas.2d.fontStretch.normal.html": [ "786cb408e135366cd832b793dc5befef6ea44ba8", [ - "html/canvas/offscreen/text/canvas.2d.fontStretch.normal.html", + null, [ [ "/html/canvas/offscreen/text/canvas.2d.fontStretch-ref.html", @@ -325030,7 +328185,7 @@ "canvas.2d.fontStretch.semi-condensed.html": [ "04bd5a80d006b4f6e6b97a04187d64dc4958b908", [ - "html/canvas/offscreen/text/canvas.2d.fontStretch.semi-condensed.html", + null, [ [ "/html/canvas/offscreen/text/canvas.2d.fontStretch-ref.html", @@ -325043,7 +328198,7 @@ "canvas.2d.fontStretch.semi-expanded.html": [ "d86b7306878fe1962d635a51e01ba0cd2b56390e", [ - "html/canvas/offscreen/text/canvas.2d.fontStretch.semi-expanded.html", + null, [ [ "/html/canvas/offscreen/text/canvas.2d.fontStretch-ref.html", @@ -325056,7 +328211,7 @@ "canvas.2d.fontStretch.ultra-condensed.html": [ "d78f6d0078c83210909f19065f448b8361ba207d", [ - "html/canvas/offscreen/text/canvas.2d.fontStretch.ultra-condensed.html", + null, [ [ "/html/canvas/offscreen/text/canvas.2d.fontStretch-ref.html", @@ -325069,7 +328224,7 @@ "canvas.2d.fontStretch.ultra-expanded.html": [ "8b8f6f5698eb81262686f6179525bd35d2efc427", [ - "html/canvas/offscreen/text/canvas.2d.fontStretch.ultra-expanded.html", + null, [ [ "/html/canvas/offscreen/text/canvas.2d.fontStretch-ref.html", @@ -325100,10 +328255,49 @@ }, "elements": { "global-attributes": { + "dir-auto-dynamic-simple-dataChange.html": [ + "ded136a3ae1a444641997bedb1da93f3c5e9c6bc", + [ + null, + [ + [ + "/html/dom/elements/global-attributes/dir-auto-dynamic-simple-ref.html", + "==" + ] + ], + {} + ] + ], + "dir-auto-dynamic-simple-replace.html": [ + "6d785f08b8144219e499b158b98d91bd7785a416", + [ + null, + [ + [ + "/html/dom/elements/global-attributes/dir-auto-dynamic-simple-ref.html", + "==" + ] + ], + {} + ] + ], + "dir-auto-dynamic-simple-textContent.html": [ + "3b644908ab05947262e6889cc26c02ccaf952b22", + [ + null, + [ + [ + "/html/dom/elements/global-attributes/dir-auto-dynamic-simple-ref.html", + "==" + ] + ], + {} + ] + ], "dir-shadow-01.html": [ "2d6983cb14b3f3f2c4f4ddbb2dcb987ecbc99bcf", [ - "html/dom/elements/global-attributes/dir-shadow-01.html", + null, [ [ "/html/dom/elements/global-attributes/dir-shadow-01-ref.html", @@ -325116,7 +328310,7 @@ "dir-shadow-02.html": [ "0553ef9a333a03f211c3fd302011c0b1c17c52a4", [ - "html/dom/elements/global-attributes/dir-shadow-02.html", + null, [ [ "/html/dom/elements/global-attributes/dir-shadow-02-ref.html", @@ -325129,7 +328323,7 @@ "dir-shadow-03.html": [ "5986a9d0f74a3e07ffbfa3e86b180d722feb3d01", [ - "html/dom/elements/global-attributes/dir-shadow-03.html", + null, [ [ "/html/dom/elements/global-attributes/dir-shadow-03-ref.html", @@ -325142,7 +328336,7 @@ "dir-shadow-04.html": [ "aa2ab9dc93e1e163e6408eb768a815e514f56c5b", [ - "html/dom/elements/global-attributes/dir-shadow-04.html", + null, [ [ "/html/dom/elements/global-attributes/dir-shadow-04-ref.html", @@ -325155,7 +328349,7 @@ "dir-shadow-05.html": [ "597cb8d5b8e4934ac4214a2d37f8fc52096e4e8f", [ - "html/dom/elements/global-attributes/dir-shadow-05.html", + null, [ [ "/html/dom/elements/global-attributes/dir-shadow-05-ref.html", @@ -325168,7 +328362,7 @@ "dir-shadow-06.html": [ "6cfaf7fcecd84f447b81209e31040d16558a175d", [ - "html/dom/elements/global-attributes/dir-shadow-06.html", + null, [ [ "/html/dom/elements/global-attributes/dir-shadow-06-ref.html", @@ -325181,7 +328375,7 @@ "dir-shadow-07.html": [ "dd11f4a605dfae855158673b281ecc7c55b111d0", [ - "html/dom/elements/global-attributes/dir-shadow-07.html", + null, [ [ "/html/dom/elements/global-attributes/dir-shadow-07-ref.html", @@ -325194,7 +328388,7 @@ "dir-shadow-08.html": [ "8b1377d32add450e7a2f244e4c443d7844c7f9ec", [ - "html/dom/elements/global-attributes/dir-shadow-08.html", + null, [ [ "/html/dom/elements/global-attributes/dir-shadow-08-ref.html", @@ -325207,7 +328401,7 @@ "dir-shadow-09.html": [ "d9c66e79319b75ded2a6cdc8c2da4a1854813f43", [ - "html/dom/elements/global-attributes/dir-shadow-09.html", + null, [ [ "/html/dom/elements/global-attributes/dir-shadow-09-ref.html", @@ -325220,7 +328414,7 @@ "dir-shadow-10.html": [ "ad35af808eb8128f613e2ec1f399b8b3e44febbf", [ - "html/dom/elements/global-attributes/dir-shadow-10.html", + null, [ [ "/html/dom/elements/global-attributes/dir-shadow-10-ref.html", @@ -325233,7 +328427,7 @@ "dir-shadow-11.html": [ "31e04f065e978d7e7e9c011f6cce2c2bd3aace75", [ - "html/dom/elements/global-attributes/dir-shadow-11.html", + null, [ [ "/html/dom/elements/global-attributes/dir-shadow-11-ref.html", @@ -325246,7 +328440,7 @@ "dir-shadow-12.html": [ "f6183a98d9dc290a3dd23be2f575a8052620c523", [ - "html/dom/elements/global-attributes/dir-shadow-12.html", + null, [ [ "/html/dom/elements/global-attributes/dir-shadow-12-ref.html", @@ -325259,7 +328453,7 @@ "dir-shadow-13.html": [ "35a00e6d288cc52b3b62300b956ecf5ff4ca2268", [ - "html/dom/elements/global-attributes/dir-shadow-13.html", + null, [ [ "/html/dom/elements/global-attributes/dir-shadow-13-ref.html", @@ -325272,7 +328466,7 @@ "dir-shadow-14.html": [ "6aa4a639fd03c4c2eb858e4eb3bc078d503c3bb0", [ - "html/dom/elements/global-attributes/dir-shadow-14.html", + null, [ [ "/html/dom/elements/global-attributes/dir-shadow-14-ref.html", @@ -325285,7 +328479,7 @@ "dir-shadow-15.html": [ "37c05d283c25b617095e4b2580334dceb77ff599", [ - "html/dom/elements/global-attributes/dir-shadow-15.html", + null, [ [ "/html/dom/elements/global-attributes/dir-shadow-15-ref.html", @@ -325298,7 +328492,7 @@ "dir-shadow-16.html": [ "2a8bb64a1bd5b10deb5bfa554832c11fac8e65b4", [ - "html/dom/elements/global-attributes/dir-shadow-16.html", + null, [ [ "/html/dom/elements/global-attributes/dir-shadow-16-ref.html", @@ -325311,7 +328505,7 @@ "dir-shadow-17.html": [ "7016a271741bb51b57b67afd4ab6e7c25adcf018", [ - "html/dom/elements/global-attributes/dir-shadow-17.html", + null, [ [ "/html/dom/elements/global-attributes/dir-shadow-17-ref.html", @@ -325324,7 +328518,7 @@ "dir-shadow-18.html": [ "6796dd18eaff02072147c2727a8d403e09d425b7", [ - "html/dom/elements/global-attributes/dir-shadow-18.html", + null, [ [ "/html/dom/elements/global-attributes/dir-shadow-18-ref.html", @@ -325337,7 +328531,7 @@ "dir-shadow-19.html": [ "a345a7b60d4c41abac9c9c56a444a0d28b90fee3", [ - "html/dom/elements/global-attributes/dir-shadow-19.html", + null, [ [ "/html/dom/elements/global-attributes/dir-shadow-19-ref.html", @@ -325350,7 +328544,7 @@ "dir-shadow-20.html": [ "0072d9b6c96adc4beb0814d02da56f944e925868", [ - "html/dom/elements/global-attributes/dir-shadow-20.html", + null, [ [ "/html/dom/elements/global-attributes/dir-shadow-20-ref.html", @@ -325363,7 +328557,7 @@ "dir-shadow-21.html": [ "5b9a4aa184bd65e565a1352dc36848f26482f292", [ - "html/dom/elements/global-attributes/dir-shadow-21.html", + null, [ [ "/html/dom/elements/global-attributes/dir-shadow-21-ref.html", @@ -325376,7 +328570,7 @@ "dir-shadow-22.html": [ "009ba460ce1e9b8870970f451cf563f76e4f2313", [ - "html/dom/elements/global-attributes/dir-shadow-22.html", + null, [ [ "/html/dom/elements/global-attributes/dir-shadow-22-ref.html", @@ -325389,7 +328583,7 @@ "dir-shadow-23.html": [ "dea79b93e13ae0609549d1fa61d6757776270138", [ - "html/dom/elements/global-attributes/dir-shadow-23.html", + null, [ [ "/html/dom/elements/global-attributes/dir-shadow-23-ref.html", @@ -325402,7 +328596,7 @@ "dir-shadow-24.html": [ "d26ccb270a25e91bd835401026f52a95b15e319d", [ - "html/dom/elements/global-attributes/dir-shadow-24.html", + null, [ [ "/html/dom/elements/global-attributes/dir-shadow-24-ref.html", @@ -325415,7 +328609,7 @@ "dir-shadow-25.html": [ "508b8260ff923a2208cd7aa1ab8407141604c6aa", [ - "html/dom/elements/global-attributes/dir-shadow-25.html", + null, [ [ "/html/dom/elements/global-attributes/dir-shadow-25-ref.html", @@ -325428,7 +328622,7 @@ "dir-shadow-26.html": [ "b19cb976f88ee216abf781e0d7a4333fca37d050", [ - "html/dom/elements/global-attributes/dir-shadow-26.html", + null, [ [ "/html/dom/elements/global-attributes/dir-shadow-26-ref.html", @@ -325441,7 +328635,7 @@ "dir-shadow-27.html": [ "8380f17b2186be630977f43bf90590bb945c9b8f", [ - "html/dom/elements/global-attributes/dir-shadow-27.html", + null, [ [ "/html/dom/elements/global-attributes/dir-shadow-27-ref.html", @@ -325454,7 +328648,7 @@ "dir-shadow-28.html": [ "3a0d6756b355270b9bd0ae3a2c225e39f8158159", [ - "html/dom/elements/global-attributes/dir-shadow-28.html", + null, [ [ "/html/dom/elements/global-attributes/dir-shadow-28-ref.html", @@ -325467,7 +328661,7 @@ "dir-shadow-29.html": [ "46cbf8d2911a85105ebd28f171a89e977b446781", [ - "html/dom/elements/global-attributes/dir-shadow-29.html", + null, [ [ "/html/dom/elements/global-attributes/dir-shadow-29-ref.html", @@ -325480,7 +328674,7 @@ "dir-shadow-30.html": [ "2a3e56e62cc6447fc9f0cd784839f8d7fe5457f3", [ - "html/dom/elements/global-attributes/dir-shadow-30.html", + null, [ [ "/html/dom/elements/global-attributes/dir-shadow-30-ref.html", @@ -325493,7 +328687,7 @@ "dir-shadow-31.html": [ "d48a0f8c0403e6dc56ebdea975b36161233917fd", [ - "html/dom/elements/global-attributes/dir-shadow-31.html", + null, [ [ "/html/dom/elements/global-attributes/dir-shadow-31-ref.html", @@ -325506,7 +328700,7 @@ "dir-shadow-32.html": [ "ac9c9e45792c2a61181abf7336613144cd2008eb", [ - "html/dom/elements/global-attributes/dir-shadow-32.html", + null, [ [ "/html/dom/elements/global-attributes/dir-shadow-32-ref.html", @@ -325519,7 +328713,7 @@ "dir-shadow-33.html": [ "814e3b34d6f66add65d08e1a7680c1b009475d49", [ - "html/dom/elements/global-attributes/dir-shadow-33.html", + null, [ [ "/html/dom/elements/global-attributes/dir-shadow-33-ref.html", @@ -325532,7 +328726,7 @@ "dir-shadow-34.html": [ "07f75d216a898b4d81e7c591f59e3d5d292fbb25", [ - "html/dom/elements/global-attributes/dir-shadow-34.html", + null, [ [ "/html/dom/elements/global-attributes/dir-shadow-34-ref.html", @@ -325545,7 +328739,7 @@ "dir-shadow-35.html": [ "8d063f44e6398f81b181408da275211c07a5c92d", [ - "html/dom/elements/global-attributes/dir-shadow-35.html", + null, [ [ "/html/dom/elements/global-attributes/dir-shadow-35-ref.html", @@ -325558,7 +328752,7 @@ "dir-shadow-36.html": [ "ff4f11b3a6f7edbb83c74757e8fa3d6542901901", [ - "html/dom/elements/global-attributes/dir-shadow-36.html", + null, [ [ "/html/dom/elements/global-attributes/dir-shadow-36-ref.html", @@ -325571,7 +328765,7 @@ "dir-shadow-37.html": [ "ba0480636a0fd51ac83d32b65834789afa7428b5", [ - "html/dom/elements/global-attributes/dir-shadow-37.html", + null, [ [ "/html/dom/elements/global-attributes/dir-shadow-37-ref.html", @@ -325584,7 +328778,7 @@ "dir-shadow-38.html": [ "e8f25eb5689c89c64eb1d91fcaf4c71e6e5b3f7a", [ - "html/dom/elements/global-attributes/dir-shadow-38.html", + null, [ [ "/html/dom/elements/global-attributes/dir-shadow-38-ref.html", @@ -325597,7 +328791,7 @@ "dir-shadow-39.html": [ "72fdd665fc3ec8377e5f5f9fa165d724a30291a8", [ - "html/dom/elements/global-attributes/dir-shadow-39.html", + null, [ [ "/html/dom/elements/global-attributes/dir-shadow-39-ref.html", @@ -325610,7 +328804,7 @@ "dir-shadow-40.html": [ "567f4fa9da833fb38cf3b7cc4699487816dea3e4", [ - "html/dom/elements/global-attributes/dir-shadow-40.html", + null, [ [ "/html/dom/elements/global-attributes/dir-shadow-40-ref.html", @@ -325623,7 +328817,7 @@ "dir-shadow-41.html": [ "6c025fb3de5d90cca95ec5c32f7c6ed49b4189f2", [ - "html/dom/elements/global-attributes/dir-shadow-41.html", + null, [ [ "/html/dom/elements/global-attributes/dir-shadow-41-ref.html", @@ -325633,6 +328827,19 @@ {} ] ], + "dir-shadow-42.html": [ + "b9697678cbc79cc9f5c7e4721c5ce1ec241f6168", + [ + null, + [ + [ + "/html/dom/elements/global-attributes/dir-shadow-42-ref.html", + "==" + ] + ], + {} + ] + ], "dir_auto-EN-L.html": [ "fa8d793bd043d008a98020063dcea6549e9d3e19", [ @@ -325699,9 +328906,9 @@ ] ], "dir_auto-N-EN.html": [ - "467b4d093943953da64513d8344598f4c239fd80", + "5d948d34568aa5481ffc6f438190d1677ee0839e", [ - "html/dom/elements/global-attributes/dir_auto-N-EN.html", + null, [ [ "/html/dom/elements/global-attributes/dir_auto-N-EN-ref.html", @@ -326234,7 +329441,7 @@ "dir_auto-textarea-N-between-Rs.html": [ "b5850e1c3c91ebc192590d0330c06e94c0be915a", [ - "html/dom/elements/global-attributes/dir_auto-textarea-N-between-Rs.html", + null, [ [ "/html/dom/elements/global-attributes/dir_auto-textarea-N-between-Rs-ref.html", @@ -326273,7 +329480,7 @@ "dir_auto-textarea-script-N-between-Rs.html": [ "f5e53667e5699c02b8d99d3d3177579c80ec45e6", [ - "html/dom/elements/global-attributes/dir_auto-textarea-script-N-between-Rs.html", + null, [ [ "/html/dom/elements/global-attributes/dir_auto-textarea-script-N-between-Rs-ref.html", @@ -326299,7 +329506,7 @@ "lang-xmllang-01.html": [ "04d8b74e2d1260d24318f975fedc2552897e9327", [ - "html/dom/elements/global-attributes/lang-xmllang-01.html", + null, [ [ "/html/dom/elements/global-attributes/lang-xmllang-01-ref.html", @@ -326312,7 +329519,7 @@ "lang-xyzzy.html": [ "b950e1fac99168e76121eaa4553a014e7ed84bfb", [ - "html/dom/elements/global-attributes/lang-xyzzy.html", + null, [ [ "/html/dom/elements/global-attributes/lang-xyzzy-ref.html", @@ -326962,7 +330169,7 @@ "hidden-until-found-001.html": [ "3c87b985dcc885208017f38229fdf853ed748a67", [ - "html/editing/the-hidden-attribute/hidden-until-found-001.html", + null, [ [ "/html/editing/the-hidden-attribute/resources/container-ref.html", @@ -326975,7 +330182,7 @@ "hidden-until-found-004.html": [ "3ca6feb7a3dd41ab5067b952372962a6446cfda8", [ - "html/editing/the-hidden-attribute/hidden-until-found-004.html", + null, [ [ "/html/editing/the-hidden-attribute/resources/container-ref.html", @@ -326988,7 +330195,7 @@ "hidden-until-found-005.html": [ "fabf636ec94850c7eea86b4e4bafafb1f795fd66", [ - "html/editing/the-hidden-attribute/hidden-until-found-005.html", + null, [ [ "/html/editing/the-hidden-attribute/hidden-until-found-005-ref.html", @@ -327001,7 +330208,7 @@ "hidden-until-found-007.html": [ "7b11a92cc93940d99769804951ad3fb6c3929094", [ - "html/editing/the-hidden-attribute/hidden-until-found-007.html", + null, [ [ "/html/editing/the-hidden-attribute/resources/spacer-and-container-ref.html", @@ -327052,6 +330259,21 @@ } }, "rendering": { + "bidi-rendering": { + "slot-no-isolate-001.html": [ + "bb2e927c08bad7cb0689187f4908bd6a9c816e76", + [ + null, + [ + [ + "/html/rendering/bidi-rendering/slot-no-isolate-001-ref.html", + "==" + ] + ], + {} + ] + ] + }, "bindings": { "the-button-element": { "button-type-menu-historical.html": [ @@ -327266,7 +330488,7 @@ "dir-type.html": [ "d1f0ae3fe3f1f11eaf4e8cb508121a8f58118b5f", [ - "html/rendering/non-replaced-elements/lists/dir-type.html", + null, [ [ "/html/rendering/non-replaced-elements/lists/dir-type-ref.html", @@ -327781,7 +331003,7 @@ "table-bordercolor-001.html": [ "014abe3567a7ab5dd15cf4024753abaeb4e32a62", [ - "html/rendering/non-replaced-elements/tables/table-bordercolor-001.html", + null, [ [ "/html/rendering/non-replaced-elements/tables/table-bordercolor-001-ref.html", @@ -328108,7 +331330,7 @@ "fieldset-dynamic-pseudo.html": [ "c5fbf53000e6439deeb2bd03078b886cbba4e5cb", [ - "html/rendering/non-replaced-elements/the-fieldset-and-legend-elements/fieldset-dynamic-pseudo.html", + null, [ [ "/html/rendering/non-replaced-elements/the-fieldset-and-legend-elements/fieldset-dynamic-pseudo-ref.html", @@ -328158,7 +331380,7 @@ ] ], "fieldset-overflow.html": [ - "83813f9020910200ba5cc4b66450c02430dd6c37", + "089b0d9300bea4cccbe3cce540a72d833c1cef5a", [ null, [ @@ -328167,7 +331389,23 @@ "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 1, + 1 + ], + [ + 0, + 50 + ] + ] + ] + ] + } ] ], "fieldset-painting-order.html": [ @@ -328183,6 +331421,19 @@ {} ] ], + "fieldset-resize.html": [ + "6a34a7465c2510b36f52f0c8196f1023450a2d7d", + [ + null, + [ + [ + "/html/rendering/non-replaced-elements/the-fieldset-and-legend-elements/fieldset-resize-ref.html", + "==" + ] + ], + {} + ] + ], "fieldset-transform-translatez.html": [ "df30468b0041323667946739369ec7d42bf47742", [ @@ -328212,7 +331463,7 @@ "grid-template-propagation.html": [ "aa51ebac629c54b6305466342a01119246db47de", [ - "html/rendering/non-replaced-elements/the-fieldset-and-legend-elements/grid-template-propagation.html", + null, [ [ "/html/rendering/non-replaced-elements/the-fieldset-and-legend-elements/grid-template-propagation-ref.html", @@ -328303,7 +331554,7 @@ "legend-in-slot.html": [ "c4ab5a3ea0e6d68d4019f786d6e4559f8f31728c", [ - "html/rendering/non-replaced-elements/the-fieldset-and-legend-elements/legend-in-slot.html", + null, [ [ "/html/rendering/non-replaced-elements/the-fieldset-and-legend-elements/legend-in-slot-ref.html", @@ -328316,7 +331567,7 @@ "legend-list-item-numbering.html": [ "d7d904b8c7b442fb28c4e980e6ff5627af5427a2", [ - "html/rendering/non-replaced-elements/the-fieldset-and-legend-elements/legend-list-item-numbering.html", + null, [ [ "/html/rendering/non-replaced-elements/the-fieldset-and-legend-elements/legend-list-item-numbering-ref.html", @@ -329020,7 +332271,7 @@ "change-src-while-not-displayed.html": [ "521a816337eed943e57262f7bcbe31596b37dd81", [ - "html/rendering/replaced-elements/embedded-content/change-src-while-not-displayed.html", + null, [ [ "/html/rendering/replaced-elements/embedded-content/change-src-while-not-displayed-ref.html", @@ -329085,7 +332336,7 @@ "video-controls-vertical-writing-mode.html": [ "acd258811290c60258c3a0dbf6c290d207225bd5", [ - "html/rendering/replaced-elements/embedded-content/video-controls-vertical-writing-mode.html", + null, [ [ "/html/rendering/replaced-elements/embedded-content/video-controls-vertical-writing-mode-ref.html", @@ -329100,7 +332351,7 @@ "audio-controls-001.html": [ "eeb4368aaa071b30da43db8f0132e193292bb286", [ - "html/rendering/replaced-elements/embedded-content-rendering-rules/audio-controls-001.html", + null, [ [ "/common/blank.html", @@ -329113,7 +332364,7 @@ "audio-controls-002.html": [ "678ba7281ef4f3f65ce969dac869c3df5cda6039", [ - "html/rendering/replaced-elements/embedded-content-rendering-rules/audio-controls-002.html", + null, [ [ "/common/blank.html", @@ -329126,7 +332377,7 @@ "audio-without-controls.html": [ "8cc134d6d60b326ffe31daca2c8015e3db098872", [ - "html/rendering/replaced-elements/embedded-content-rendering-rules/audio-without-controls.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -329206,7 +332457,7 @@ "input-image-content.html": [ "5376e8033ffe30027fdd988f5e0ffa9c62316420", [ - "html/rendering/replaced-elements/images/input-image-content.html", + null, [ [ "/html/rendering/replaced-elements/images/input-image-content-ref.html", @@ -329260,7 +332511,7 @@ }, "the-select-element": { "select-1-block-size-001-ref.html": [ - "3834281dd83cd0e604fc27dd66dcaa3fb12287ff", + "3d30c2bd9d0a105595ca6b1c75448fcdb801b101", [ null, [ @@ -329311,6 +332562,19 @@ {} ] ], + "select-button-min-height-001.html": [ + "c09910507690642cfaf41479503f7f0947359634", + [ + null, + [ + [ + "/html/rendering/replaced-elements/the-select-element/select-button-min-height-001-ref.html", + "==" + ] + ], + {} + ] + ], "select-empty.html": [ "6568a6de34985a7fc201ce0bd530b86b145083e8", [ @@ -329461,78 +332725,78 @@ {} ] ], - "details-display-property-is-ignored.html": [ - "445b4e483d00c8aabfa76a946d8cb0871e479c7d", + "details-display-type-001-ref.html": [ + "925ee19f775fd07ac6e679598329d05f609e5335", [ null, [ [ - "/html/rendering/the-details-element/details-display-property-is-ignored-ref.html", + "/html/rendering/the-details-element/details-display-type-001-ref2.html", "==" ] ], {} ] ], - "details-display-type-001-ref.html": [ - "925ee19f775fd07ac6e679598329d05f609e5335", + "details-display-type-001.html": [ + "3188c1eafda1bbb4e43a5c048bc9d33647b6e444", [ - "html/rendering/the-details-element/details-display-type-001-ref.html", + null, [ [ - "/html/rendering/the-details-element/details-display-type-001-ref2.html", + "/html/rendering/the-details-element/details-display-type-001-ref.html", "==" ] ], {} ] ], - "details-display-type-001.tentative.html": [ - "81641355187ae465a02a775b274f7a7903e5d172", + "details-display-type-002.html": [ + "6426e1c524f0b12b88330678263951af1b1e42d7", [ - "html/rendering/the-details-element/details-display-type-001.tentative.html", + null, [ [ - "/html/rendering/the-details-element/details-display-type-001-ref.html", + "/html/rendering/the-details-element/details-display-type-002-ref.html", "==" ] ], {} ] ], - "details-display-type-002.tentative.html": [ - "716221f7c5c6f83f4b341e4affce90c2622cc40f", + "details-pseudo-elements-001.html": [ + "8ea3d0f85af933b6202f15ee00b9fdac451ab0c9", [ - "html/rendering/the-details-element/details-display-type-002.tentative.html", + null, [ [ - "/html/rendering/the-details-element/details-display-type-002-ref.html", + "/html/rendering/the-details-element/details-pseudo-elements-001-ref.html", "==" ] ], {} ] ], - "details-pseudo-elements-001.tentative.html": [ - "1a9f7d6a023832c1b106d67579bfbbec34a5c4f2", + "details-pseudo-elements-002.html": [ + "0f1176a3316bb08f9a49c63544d4ae090d878e40", [ - "html/rendering/the-details-element/details-pseudo-elements-001.tentative.html", + null, [ [ - "/html/rendering/the-details-element/details-pseudo-elements-001-ref.html", + "/html/rendering/the-details-element/details-pseudo-elements-002-ref.html", "==" ] ], {} ] ], - "details-pseudo-elements-002.tentative.html": [ - "e149395665171e1ba7068422857f11d75c54f566", + "details-pseudo-elements-003.html": [ + "ee5b42f13ac166f65ee2884722ab76cf0e2a1ba1", [ - "html/rendering/the-details-element/details-pseudo-elements-002.tentative.html", + null, [ [ - "/html/rendering/the-details-element/details-pseudo-elements-002-ref.html", + "/html/rendering/the-details-element/details-pseudo-elements-003-ref.html", "==" ] ], @@ -329607,7 +332871,7 @@ "summary-display-list-item-001.html": [ "8b94f10f27e58026788c94744b7574f0ef628523", [ - "html/rendering/the-details-element/summary-display-list-item-001.html", + null, [ [ "/html/rendering/the-details-element/summary-display-list-item-001-ref.html", @@ -329620,7 +332884,7 @@ "summary-display-list-item-002.html": [ "ee32997009ccbd4116c9c256876e87e159f5d7f7", [ - "html/rendering/the-details-element/summary-display-list-item-002.html", + null, [ [ "/html/rendering/the-details-element/summary-display-list-item-002-ref.html", @@ -329739,6 +333003,45 @@ {} ] ], + "block-in-inline.html": [ + "6fbde753b53dceee659fa784600835eebdfe2fa7", + [ + null, + [ + [ + "/html/rendering/widgets/button-layout/block-in-inline-ref.html", + "==" + ] + ], + {} + ] + ], + "button-dynamic-content.html": [ + "5bfd3d729d778736d8c5697602da183a588980f4", + [ + null, + [ + [ + "/html/rendering/widgets/button-layout/button-dynamic-content-ref.html", + "==" + ] + ], + {} + ] + ], + "display-none-or-contents.html": [ + "8f0ad3ab29c9d976bf18e2f180d4862d41aebb3e", + [ + null, + [ + [ + "/html/rendering/widgets/button-layout/display-none-or-contents-ref.html", + "==" + ] + ], + {} + ] + ], "inline-level.html": [ "e23aba731ce2ff58a0e0ca173cce97ac2d9f70de", [ @@ -329755,7 +333058,7 @@ "input-type-button-clip.html": [ "db1ad35cce5b8830cba06e19b3b6d5dbcfc7c005", [ - "html/rendering/widgets/button-layout/input-type-button-clip.html", + null, [ [ "/html/rendering/widgets/button-layout/input-type-button-clip-ref.html", @@ -329794,7 +333097,7 @@ "propagate-text-decoration.html": [ "83608402c12a99086f3fee9043d580f6664c3294", [ - "html/rendering/widgets/button-layout/propagate-text-decoration.html", + null, [ [ "/html/rendering/widgets/button-layout/propagate-text-decoration-ref.html", @@ -329824,7 +333127,7 @@ "input-checkbox-disabled-checked.html": [ "f72fdf62fdcc148a0799b06bde02ccaf4186c8fb", [ - "html/rendering/widgets/input-checkbox-disabled-checked.html", + null, [ [ "/html/rendering/widgets/input-checkbox-disabled-checked-notref.html", @@ -329837,7 +333140,7 @@ "input-checkbox-no-centering.html": [ "7dba149c75f298cf40f4ace4ae9496f100f14305", [ - "html/rendering/widgets/input-checkbox-no-centering.html", + null, [ [ "/html/rendering/widgets/input-no-centering-ref.html", @@ -329850,7 +333153,7 @@ "input-checkbox-switch-indeterminate.tentative.html": [ "bd4137c1b5808f1d469adeaea5e0bc9bb0b7afff", [ - "html/rendering/widgets/input-checkbox-switch-indeterminate.tentative.html", + null, [ [ "/html/rendering/widgets/input-checkbox-switch-indeterminate-ref.html", @@ -329863,7 +333166,7 @@ "input-checkbox-switch-rtl.tentative.html": [ "3e0c5d44c932775987a8dd09aa585d9d23a72587", [ - "html/rendering/widgets/input-checkbox-switch-rtl.tentative.html", + null, [ [ "/html/rendering/widgets/input-checkbox-switch-rtl-notref.html", @@ -329876,7 +333179,7 @@ "input-checkbox-switch.tentative.html": [ "315728d539056950a1112d8f0b93ea446a1ee041", [ - "html/rendering/widgets/input-checkbox-switch.tentative.html", + null, [ [ "/html/rendering/widgets/input-checkbox-switch-ref.html", @@ -329890,10 +333193,23 @@ {} ] ], + "input-checkbox-zero-size.html": [ + "406f7da9547b4f7f1142fe5a8b129d150fd95ea4", + [ + null, + [ + [ + "/css/reference/blank.html", + "==" + ] + ], + {} + ] + ], "input-date-baseline-min-height.html": [ "86b552ab809bb77e0edee713daacab8869351941", [ - "html/rendering/widgets/input-date-baseline-min-height.html", + null, [ [ "/html/rendering/widgets/input-date-baseline-min-height-ref.html", @@ -329929,10 +333245,36 @@ {} ] ], + "input-number-text-size.tentative.html": [ + "0850f0558e3fb97e31b25f4b9aa498e59f08f7cd", + [ + null, + [ + [ + "/html/rendering/widgets/input-number-text-size-ref.html", + "==" + ] + ], + {} + ] + ], + "input-password-background-suppresses-appearance.html": [ + "3c85b100a1dc74e94d0a7f7e187da951d7476209", + [ + null, + [ + [ + "/html/rendering/widgets/input-password-background-suppresses-appearance-ref.html", + "==" + ] + ], + {} + ] + ], "input-radio-disabled-checked.html": [ "3ac2a37199b653ab4e1dd5d098bce9bb9e83dc44", [ - "html/rendering/widgets/input-radio-disabled-checked.html", + null, [ [ "/html/rendering/widgets/input-radio-disabled-checked-notref.html", @@ -329945,7 +333287,7 @@ "input-radio-no-centering.html": [ "6a714f8460016fa3612376f4f234900c65ac95bc", [ - "html/rendering/widgets/input-radio-no-centering.html", + null, [ [ "/html/rendering/widgets/input-no-centering-ref.html", @@ -330115,6 +333457,21 @@ } } }, + "select": { + "select-capitalize-sizing.html": [ + "47214a67cf1e478358114f2604265c9ebd2c0b65", + [ + "html/select/select-capitalize-sizing.html", + [ + [ + "/html/select/select-capitalize-sizing-ref.html", + "==" + ] + ], + {} + ] + ] + }, "semantics": { "document-metadata": { "the-link-element": { @@ -330423,7 +333780,7 @@ "iframe-loading-lazy-in-viewport-001.html": [ "408e5309e57d621ca6e486f62533bbd985de0c48", [ - "html/semantics/embedded-content/the-iframe-element/iframe-loading-lazy-in-viewport-001.html", + null, [ [ "/html/semantics/embedded-content/the-iframe-element/iframe-loading-lazy-in-viewport-ref.html", @@ -330516,7 +333873,7 @@ "image-compositing-change.html": [ "d3e7ee41711fbd1a02bb1c8f76c31435d52151a5", [ - "html/semantics/embedded-content/the-img-element/image-compositing-change.html", + null, [ [ "/html/semantics/embedded-content/the-img-element/image-compositing-change-ref.html", @@ -330584,7 +333941,7 @@ "image-loading-lazy-slow-aspect-ratio.html": [ "662ada69095c5079924008ad2a252fdaa474267e", [ - "html/semantics/embedded-content/the-img-element/image-loading-lazy-slow-aspect-ratio.html", + null, [ [ "/html/semantics/embedded-content/the-img-element/image-loading-lazy-slow-aspect-ratio-ref.html", @@ -330597,7 +333954,7 @@ "image-loading-lazy-slow.html": [ "fac2c2e8f742b6ee83fc9f3447c8fe9abfd7ad5c", [ - "html/semantics/embedded-content/the-img-element/image-loading-lazy-slow.html", + null, [ [ "/html/semantics/embedded-content/the-img-element/image-loading-lazy-slow-ref.html", @@ -330623,7 +333980,7 @@ "img-with-containment-and-size.html": [ "bdeae0ac2ead8d0ff4113fbfa33b4b594cea5196", [ - "html/semantics/embedded-content/the-img-element/img-with-containment-and-size.html", + null, [ [ "/html/semantics/embedded-content/the-img-element/img-with-containment-and-size-ref.html", @@ -330637,7 +333994,7 @@ "sizes-auto-rendering-2.html": [ "75d1884e34bf9fe4adfdc1536667949672f97f90", [ - "html/semantics/embedded-content/the-img-element/sizes/sizes-auto-rendering-2.html", + null, [ [ "/html/semantics/embedded-content/the-img-element/sizes/reference/sizes-auto-rendering-ref.html", @@ -330650,7 +334007,7 @@ "sizes-auto-rendering-3.html": [ "71ed90ebbec9e1d5a03622109fec8435a7286083", [ - "html/semantics/embedded-content/the-img-element/sizes/sizes-auto-rendering-3.html", + null, [ [ "/html/semantics/embedded-content/the-img-element/sizes/reference/sizes-auto-rendering-ref.html", @@ -330663,7 +334020,7 @@ "sizes-auto-rendering-dynamic.html": [ "901c6f2e096c2c60a649a9b3835be59fe09463aa", [ - "html/semantics/embedded-content/the-img-element/sizes/sizes-auto-rendering-dynamic.html", + null, [ [ "/html/semantics/embedded-content/the-img-element/sizes/reference/sizes-auto-rendering-ref.html", @@ -330676,7 +334033,7 @@ "sizes-auto-rendering.html": [ "e972f69c20d70218810abb39204ada0a363c5a2a", [ - "html/semantics/embedded-content/the-img-element/sizes/sizes-auto-rendering.html", + null, [ [ "/html/semantics/embedded-content/the-img-element/sizes/reference/sizes-auto-rendering-ref.html", @@ -330746,7 +334103,7 @@ "video-poster-shown-preload-auto.html": [ "95e32bb77ce1f7642a881edc1c61ae4d6879cea2", [ - "html/semantics/embedded-content/the-video-element/video-poster-shown-preload-auto.html", + null, [ [ "/html/semantics/embedded-content/the-video-element/video-poster-shown-preload-auto-ref.html", @@ -330824,11 +334181,39 @@ } }, "forms": { + "the-datalist-element": { + "input-text-datalist-appearance.html": [ + "c1663de2f2f181305f5d988f1e36a0f54ea4b4c6", + [ + null, + [ + [ + "/html/semantics/forms/the-datalist-element/input-text-focused-ref.html", + "!=" + ] + ], + {} + ] + ], + "input-text-datalist-removal.html": [ + "c85bd288ed519eccfd97f4b07eacb8d2217b5451", + [ + null, + [ + [ + "/html/semantics/forms/the-datalist-element/input-text-focused-ref.html", + "==" + ] + ], + {} + ] + ] + }, "the-input-element": { "auto-direction-dynamic.html": [ "68ea51185c07833a8cd197f35cbcd6c5ee9c184a", [ - "html/semantics/forms/the-input-element/auto-direction-dynamic.html", + null, [ [ "/html/semantics/forms/the-input-element/auto-direction-ref.html", @@ -330893,7 +334278,7 @@ "placeholder-update.html": [ "af0c0793ee1ca73b2eff5d5054c4bf2c52e27c61", [ - "html/semantics/forms/the-input-element/placeholder-update.html", + null, [ [ "/html/semantics/forms/the-input-element/placeholder-update-ref.html", @@ -331087,6 +334472,58 @@ ] }, "the-meter-element": { + "meter-appearance-none-even-less-good-value-rendering.html": [ + "07c0b89a067107bcd423e36de5dcde05795ceec3", + [ + "html/semantics/forms/the-meter-element/meter-appearance-none-even-less-good-value-rendering.html", + [ + [ + "/html/semantics/forms/the-meter-element/reference/meter-appearance-auto-even-less-good-value-rendering.html", + "!=" + ] + ], + {} + ] + ], + "meter-appearance-none-optimum-value-rendering.html": [ + "7ed863d6085ce4c1b33f4b1351284909390525ca", + [ + "html/semantics/forms/the-meter-element/meter-appearance-none-optimum-value-rendering.html", + [ + [ + "/html/semantics/forms/the-meter-element/reference/meter-appearance-auto-optimum-value-rendering.html", + "!=" + ] + ], + {} + ] + ], + "meter-appearance-none-rendering.html": [ + "2b0227892abdbfbd6e7833c5511d5986cf53ff02", + [ + "html/semantics/forms/the-meter-element/meter-appearance-none-rendering.html", + [ + [ + "/html/semantics/forms/the-meter-element/reference/meter-appearance-auto-rendering-ref.html", + "!=" + ] + ], + {} + ] + ], + "meter-appearance-none-suboptimum-value-rendering.html": [ + "80cefe102701098bb6471455a7a2de424c7dbb7e", + [ + "html/semantics/forms/the-meter-element/meter-appearance-none-suboptimum-value-rendering.html", + [ + [ + "/html/semantics/forms/the-meter-element/reference/meter-appearance-auto-suboptimum-value-rendering-ref.html", + "!=" + ] + ], + {} + ] + ], "meter-min-rendering.html": [ "ca83fc9565bc2245f9525ce78d48496022bc51e5", [ @@ -331105,7 +334542,7 @@ "dynamic-content-change-rendering.html": [ "1108c45e11b4de2f92e66a5475e4b5e346c5fa44", [ - "html/semantics/forms/the-option-element/dynamic-content-change-rendering.html", + null, [ [ "/html/semantics/forms/the-option-element/dynamic-content-change-rendering-ref.html", @@ -331145,13 +334582,106 @@ ], {} ] - ] + ], + "stylable-select": { + "closed-listbox-rendering.tentative.html": [ + "4d46aba2281a057405a534e747a6e736be7b5719", + [ + "html/semantics/forms/the-select-element/stylable-select/closed-listbox-rendering.tentative.html", + [ + [ + "/html/semantics/forms/the-select-element/stylable-select/closed-listbox-rendering-ref.html", + "==" + ] + ], + {} + ] + ], + "select-child-button-and-datalist-invalidation.tentative.html": [ + "4a71c187c6e858de69b23e3e9170e519488bac38", + [ + "html/semantics/forms/the-select-element/stylable-select/select-child-button-and-datalist-invalidation.tentative.html", + [ + [ + "/html/semantics/forms/the-select-element/stylable-select/select-child-button-and-datalist-ref.html", + "==" + ] + ], + {} + ] + ], + "select-child-button-and-datalist.tentative.html": [ + "1650f37d5c1612e74120eb2723639a0030b3b566", + [ + "html/semantics/forms/the-select-element/stylable-select/select-child-button-and-datalist.tentative.html", + [ + [ + "/html/semantics/forms/the-select-element/stylable-select/select-child-button-and-datalist-ref.html", + "==" + ] + ], + {} + ] + ], + "select-icon-color.tentative.html": [ + "13026cd5f8c4aea0cec65248a3684a4eed11fcec", + [ + null, + [ + [ + "/html/semantics/forms/the-select-element/stylable-select/select-icon-color-ref.html", + "==" + ] + ], + {} + ] + ], + "select-open-invalidation.tentative.html": [ + "d973d42b5bf7698652446f3393f4231398c36387", + [ + "html/semantics/forms/the-select-element/stylable-select/select-open-invalidation.tentative.html", + [ + [ + "/html/semantics/forms/the-select-element/stylable-select/select-open-invalidation-ref.html", + "==" + ] + ], + {} + ] + ], + "select-option-images.tentative.html": [ + "9768810f6f5e8540ff93d77a17b457e278b431f6", + [ + "html/semantics/forms/the-select-element/stylable-select/select-option-images.tentative.html", + [ + [ + "/html/semantics/forms/the-select-element/stylable-select/select-option-images-ref.html", + "==" + ] + ], + {} + ] + ], + "select-size-multiple-new-content.tentative.html": [ + "169f1096255ce35a64eafa15e45cb9b555071710", + [ + "html/semantics/forms/the-select-element/stylable-select/select-size-multiple-new-content.tentative.html", + [ + [ + "/html/semantics/forms/the-select-element/stylable-select/select-size-multiple-new-content-ref.html", + "==" + ] + ], + {} + ] + ] + } }, "the-selectlist-element": { "button-type-selectlist-appearance.tentative.html": [ "3ab7044366e54bf1640dcb287491389db0523c82", [ - "html/semantics/forms/the-selectlist-element/button-type-selectlist-appearance.tentative.html", + null, [ [ "/html/semantics/forms/the-selectlist-element/button-type-selectlist-appearance-ref.html", @@ -331164,7 +334694,7 @@ "selectlist-button-type-appearance.tentative.html": [ "50ad339b0568c2f0fd641ad6241d464b66421fcb", [ - "html/semantics/forms/the-selectlist-element/selectlist-button-type-appearance.tentative.html", + null, [ [ "/html/semantics/forms/the-selectlist-element/selectlist-button-type-appearance-ref.html", @@ -331177,7 +334707,7 @@ "selectlist-default-button-slot.tentative.html": [ "d8688d5957d211d2b475a20579038455b7d90d18", [ - "html/semantics/forms/the-selectlist-element/selectlist-default-button-slot.tentative.html", + null, [ [ "/html/semantics/forms/the-selectlist-element/selectlist-default-button-slot-ref.html", @@ -331190,7 +334720,7 @@ "selectlist-explicit-size.tentative.html": [ "d9e52a9fff74ab91b6a33cc10d70a7055a54e48e", [ - "html/semantics/forms/the-selectlist-element/selectlist-explicit-size.tentative.html", + null, [ [ "/html/semantics/forms/the-selectlist-element/selectlist-explicit-size-ref.tentative.html", @@ -331203,7 +334733,7 @@ "selectlist-font-size.tentative.html": [ "9c30e71bda38ea344419de4e087be5b651a38989", [ - "html/semantics/forms/the-selectlist-element/selectlist-font-size.tentative.html", + null, [ [ "/html/semantics/forms/the-selectlist-element/selectlist-font-size-ref.tentative.html", @@ -331216,7 +334746,7 @@ "selectlist-listbox-element.tentative.html": [ "14223633b90eba2c49234a3e2ec4edc68f0df187", [ - "html/semantics/forms/the-selectlist-element/selectlist-listbox-element.tentative.html", + null, [ [ "/html/semantics/forms/the-selectlist-element/selectlist-listbox-element-ref.html", @@ -331229,7 +334759,7 @@ "selectlist-marker-end-aligned.tentative.html": [ "c2540acb368c7b945f13b454d1190c8780c27a48", [ - "html/semantics/forms/the-selectlist-element/selectlist-marker-end-aligned.tentative.html", + null, [ [ "/html/semantics/forms/the-selectlist-element/selectlist-marker-end-aligned-ref.tentative.html", @@ -331242,7 +334772,7 @@ "selectlist-marker-part.tentative.html": [ "dedabc9bab78d96f2485366a6277ae83ca89245f", [ - "html/semantics/forms/the-selectlist-element/selectlist-marker-part.tentative.html", + null, [ [ "/html/semantics/forms/the-selectlist-element/selectlist-marker-part-ref.html", @@ -331255,7 +334785,7 @@ "selectlist-marker-slot.tentative.html": [ "de43a02c33f0e7f2e9db4703c7b3078e10f32d86", [ - "html/semantics/forms/the-selectlist-element/selectlist-marker-slot.tentative.html", + null, [ [ "/html/semantics/forms/the-selectlist-element/selectlist-marker-slot-ref.html", @@ -331268,7 +334798,7 @@ "selectlist-marker-visible-overflow.tentative.html": [ "345c2059837af324d47c31658eeabb8375ad991e", [ - "html/semantics/forms/the-selectlist-element/selectlist-marker-visible-overflow.tentative.html", + null, [ [ "/html/semantics/forms/the-selectlist-element/selectlist-marker-visible-overflow-ref.tentative.html", @@ -331278,36 +334808,10 @@ {} ] ], - "selectlist-option-arbitrary-content-displayed.tentative.html": [ - "2d51002fb2e7e30f5cae4cd1a9452f63641e0dff", - [ - "html/semantics/forms/the-selectlist-element/selectlist-option-arbitrary-content-displayed.tentative.html", - [ - [ - "/html/semantics/forms/the-selectlist-element/selectlist-option-arbitrary-content-displayed-ref.tentative.html", - "==" - ] - ], - {} - ] - ], - "selectlist-option-arbitrary-content-not-displayed.tentative.html": [ - "66b87ec33b9cc279b67c7d7ed9d1d1f617af5611", - [ - "html/semantics/forms/the-selectlist-element/selectlist-option-arbitrary-content-not-displayed.tentative.html", - [ - [ - "/html/semantics/forms/the-selectlist-element/selectlist-option-arbitrary-content-not-displayed-ref.tentative.html", - "==" - ] - ], - {} - ] - ], "selectlist-option-label-rendering.tentative.html": [ "c719ee0e070166d9a669c2abd8ee082a12d615f6", [ - "html/semantics/forms/the-selectlist-element/selectlist-option-label-rendering.tentative.html", + null, [ [ "/html/semantics/forms/the-selectlist-element/selectlist-option-label-rendering-ref.html", @@ -331320,7 +334824,7 @@ "selectlist-overflow-x.tentative.html": [ "93c1b948a096020f1865f9f6ccba93a3c839afa8", [ - "html/semantics/forms/the-selectlist-element/selectlist-overflow-x.tentative.html", + null, [ [ "/html/semantics/forms/the-selectlist-element/selectlist-overflow-x-ref.tentative.html", @@ -331333,7 +334837,7 @@ "selectlist-rtl.tentative.html": [ "24f79596321f413025cddc9c5e10a8c34f701d90", [ - "html/semantics/forms/the-selectlist-element/selectlist-rtl.tentative.html", + null, [ [ "/html/semantics/forms/the-selectlist-element/selectlist-rtl-ref.tentative.html", @@ -331346,7 +334850,7 @@ "selectlist-selected-value-behavior.tentative.html": [ "a43e43d267a6bb007738ffc311b2f681a09115b5", [ - "html/semantics/forms/the-selectlist-element/selectlist-selected-value-behavior.tentative.html", + null, [ [ "/html/semantics/forms/the-selectlist-element/selectlist-selected-value-behavior-ref.html", @@ -331359,7 +334863,7 @@ "selectlist-selected-value-part.tentative.html": [ "8fc05480d15ebf06d12d2be31bf49f801c0018a4", [ - "html/semantics/forms/the-selectlist-element/selectlist-selected-value-part.tentative.html", + null, [ [ "/html/semantics/forms/the-selectlist-element/selectlist-selected-value-part-ref.html", @@ -331372,7 +334876,7 @@ "selectlist-selected-value-slot.tentative.html": [ "c69a962c295673f15d6b1923d984341b9023ffd3", [ - "html/semantics/forms/the-selectlist-element/selectlist-selected-value-slot.tentative.html", + null, [ [ "/html/semantics/forms/the-selectlist-element/selectlist-selected-value-slot-ref.html", @@ -331385,7 +334889,7 @@ "selectlist-selectedoption-element-cloning.tentative.html": [ "5d273c21bffb71372efd35469372878284fff742", [ - "html/semantics/forms/the-selectlist-element/selectlist-selectedoption-element-cloning.tentative.html", + null, [ [ "/html/semantics/forms/the-selectlist-element/selectlist-selectedoption-element-cloning-ref.html", @@ -331398,7 +334902,7 @@ "selectlist-text-only.tentative.html": [ "ceefeca6087fb8252383022cae60c032048d8d93", [ - "html/semantics/forms/the-selectlist-element/selectlist-text-only.tentative.html", + null, [ [ "/html/semantics/forms/the-selectlist-element/selectlist-text-only-ref.html", @@ -331411,7 +334915,7 @@ "selectlist-writingmode-lr.tentative.html": [ "9973696ddd75f568af09d0c89639bdb9fbbc83b6", [ - "html/semantics/forms/the-selectlist-element/selectlist-writingmode-lr.tentative.html", + null, [ [ "/html/semantics/forms/the-selectlist-element/selectlist-writingmode-tb-ref.html", @@ -331424,7 +334928,7 @@ "selectlist-writingmode-rl.tentative.html": [ "dc74203e69c89bc6a31553668ba880ecdd947b99", [ - "html/semantics/forms/the-selectlist-element/selectlist-writingmode-rl.tentative.html", + null, [ [ "/html/semantics/forms/the-selectlist-element/selectlist-writingmode-tb-ref.html", @@ -331478,7 +334982,7 @@ "placeholder-white-space.tentative.html": [ "7af55643fb4bfe491f67c94fce84f79ab230d4d4", [ - "html/semantics/forms/the-textarea-element/placeholder-white-space.tentative.html", + null, [ [ "/html/semantics/forms/the-textarea-element/placeholder-white-space-notref.html", @@ -331932,7 +335436,7 @@ "details-add-summary.html": [ "1b0062e43aaec84a5bafc096e759c96ca1240876", [ - "html/semantics/interactive-elements/the-details-element/details-add-summary.html", + null, [ [ "/html/semantics/interactive-elements/the-details-element/details-add-summary-ref.html", @@ -331947,7 +335451,7 @@ "backdrop-descendant-selector.html": [ "73706548eafa1a49df59d19932ab728353b0860b", [ - "html/semantics/interactive-elements/the-dialog-element/backdrop-descendant-selector.html", + null, [ [ "/html/semantics/interactive-elements/the-dialog-element/backdrop-descendant-selector-ref.html", @@ -331960,7 +335464,7 @@ "backdrop-dynamic-display-none.html": [ "bcf100b36898f0d1bb57822e8a7ac1699f4bcc4e", [ - "html/semantics/interactive-elements/the-dialog-element/backdrop-dynamic-display-none.html", + null, [ [ "/html/semantics/interactive-elements/the-dialog-element/backdrop-dynamic-display-none-ref.html", @@ -331973,7 +335477,7 @@ "backdrop-dynamic-style-change.html": [ "6c609a769cc257ffda7513856f04de30b579d099", [ - "html/semantics/interactive-elements/the-dialog-element/backdrop-dynamic-style-change.html", + null, [ [ "/html/semantics/interactive-elements/the-dialog-element/backdrop-dynamic-style-change-ref.html", @@ -331986,7 +335490,7 @@ "backdrop-in-flow.html": [ "06f790979eb8118a52ffa0f0481a64d1686f46f0", [ - "html/semantics/interactive-elements/the-dialog-element/backdrop-in-flow.html", + null, [ [ "/html/semantics/interactive-elements/the-dialog-element/backdrop-in-flow-ref.html", @@ -331999,7 +335503,7 @@ "backdrop-inherits.html": [ "458320f0196b029c362517e8192540eb48912a41", [ - "html/semantics/interactive-elements/the-dialog-element/backdrop-inherits.html", + null, [ [ "/html/semantics/interactive-elements/the-dialog-element/backdrop-inherits-ref.html", @@ -332012,7 +335516,7 @@ "backdrop-stacking-order.html": [ "897f54a53fbaeaa8c3d62da28ed810902193e631", [ - "html/semantics/interactive-elements/the-dialog-element/backdrop-stacking-order.html", + null, [ [ "/html/semantics/interactive-elements/the-dialog-element/backdrop-stacking-order-ref.html", @@ -332025,7 +335529,7 @@ "dialog-overlay-re-add-during-transition.html": [ "30d104a973a600766c9670d51d32288fc04cc4e9", [ - "html/semantics/interactive-elements/the-dialog-element/dialog-overlay-re-add-during-transition.html", + null, [ [ "/html/semantics/interactive-elements/the-dialog-element/pass-dialog-ref.html", @@ -332038,7 +335542,7 @@ "dialogs-with-no-backdrop.html": [ "fec4ba85874e898bd5f4ffc698b5881513346217", [ - "html/semantics/interactive-elements/the-dialog-element/dialogs-with-no-backdrop.html", + null, [ [ "/html/semantics/interactive-elements/the-dialog-element/dialogs-with-no-backdrop-ref.html", @@ -332051,7 +335555,7 @@ "dont-share-style-to-top-layer.html": [ "e4f4ce50b3e2fffa9cea11ed5a4b82baa2887bd5", [ - "html/semantics/interactive-elements/the-dialog-element/dont-share-style-to-top-layer.html", + null, [ [ "/html/semantics/interactive-elements/the-dialog-element/dont-share-style-to-top-layer-ref.html", @@ -332064,7 +335568,7 @@ "element-removed-from-top-layer-has-original-position.html": [ "0dead331636355deb3dc9f610d8edeb3847e2438", [ - "html/semantics/interactive-elements/the-dialog-element/element-removed-from-top-layer-has-original-position.html", + null, [ [ "/html/semantics/interactive-elements/the-dialog-element/element-removed-from-top-layer-has-original-position-ref.html", @@ -332077,7 +335581,7 @@ "fixed-position-child-with-contain-ancestor.html": [ "5ee64fc1d9e31d76de81e5d4ae8df8139fada7b4", [ - "html/semantics/interactive-elements/the-dialog-element/fixed-position-child-with-contain-ancestor.html", + null, [ [ "/html/semantics/interactive-elements/the-dialog-element/fixed-position-child-with-fixed-position-cb-ref.html", @@ -332090,7 +335594,7 @@ "fixed-position-child-with-fo-ancestor.html": [ "2bc294be2fae16c02bd6d822c16a5726273e104f", [ - "html/semantics/interactive-elements/the-dialog-element/fixed-position-child-with-fo-ancestor.html", + null, [ [ "/html/semantics/interactive-elements/the-dialog-element/fixed-position-child-with-fixed-position-cb-ref.html", @@ -332103,7 +335607,7 @@ "fixed-position-child-with-transformed-ancestor.tentative.html": [ "527d508252c15d0f1b46580afc0a0ae8bbe625d8", [ - "html/semantics/interactive-elements/the-dialog-element/fixed-position-child-with-transformed-ancestor.tentative.html", + null, [ [ "/html/semantics/interactive-elements/the-dialog-element/fixed-position-child-with-fixed-position-cb-ref.html", @@ -332116,7 +335620,7 @@ "fixed-position-child-with-will-change-ancestor.tentative.html": [ "e9db7321cd703d26e90c4a50932892da7d504218", [ - "html/semantics/interactive-elements/the-dialog-element/fixed-position-child-with-will-change-ancestor.tentative.html", + null, [ [ "/html/semantics/interactive-elements/the-dialog-element/fixed-position-child-with-fixed-position-cb-ref.html", @@ -332129,7 +335633,7 @@ "inert-node-is-not-highlighted.html": [ "f6db38ed72a8cc24c5462313ae41f803ec0016eb", [ - "html/semantics/interactive-elements/the-dialog-element/inert-node-is-not-highlighted.html", + null, [ [ "/html/semantics/interactive-elements/the-dialog-element/inert-node-is-not-highlighted-ref.html", @@ -332142,7 +335646,7 @@ "modal-dialog-backdrop-opacity.html": [ "09c31ce2af95a4fde0024605cc1cdb4453e7d476", [ - "html/semantics/interactive-elements/the-dialog-element/modal-dialog-backdrop-opacity.html", + null, [ [ "/html/semantics/interactive-elements/the-dialog-element/modal-dialog-backdrop-opacity-ref.html", @@ -332155,7 +335659,7 @@ "modal-dialog-backdrop.html": [ "55d7132f8cefa6be3b2a3133e35e9c9c3cbef603", [ - "html/semantics/interactive-elements/the-dialog-element/modal-dialog-backdrop.html", + null, [ [ "/html/semantics/interactive-elements/the-dialog-element/modal-dialog-backdrop-ref.html", @@ -332168,7 +335672,7 @@ "modal-dialog-display-contents.html": [ "032033de011b9f27a1cf504521d9687115d506ae", [ - "html/semantics/interactive-elements/the-dialog-element/modal-dialog-display-contents.html", + null, [ [ "/html/semantics/interactive-elements/the-dialog-element/modal-dialog-display-contents-ref.html", @@ -332181,7 +335685,7 @@ "modal-dialog-generated-content.html": [ "96b97f8ec3c490532508bfea1a7d3963ec3c0834", [ - "html/semantics/interactive-elements/the-dialog-element/modal-dialog-generated-content.html", + null, [ [ "/html/semantics/interactive-elements/the-dialog-element/modal-dialog-generated-content-ref.html", @@ -332246,7 +335750,7 @@ "modal-dialog-sibling.html": [ "85cc61890a2a2bdddf436dd333829d1dcc3566b5", [ - "html/semantics/interactive-elements/the-dialog-element/modal-dialog-sibling.html", + null, [ [ "/html/semantics/interactive-elements/the-dialog-element/modal-dialog-sibling-ref.html", @@ -332259,7 +335763,7 @@ "removed-element-is-removed-from-top-layer.html": [ "b0e50e3869883cfca0388455476a1a57548da517", [ - "html/semantics/interactive-elements/the-dialog-element/removed-element-is-removed-from-top-layer.html", + null, [ [ "/html/semantics/interactive-elements/the-dialog-element/removed-element-is-removed-from-top-layer-ref.html", @@ -332272,7 +335776,7 @@ "top-layer-containing-block.html": [ "0886c2cd2c2a0cfe6383b6488afa9943e568508f", [ - "html/semantics/interactive-elements/the-dialog-element/top-layer-containing-block.html", + null, [ [ "/html/semantics/interactive-elements/the-dialog-element/top-layer-containing-block-ref.html", @@ -332285,7 +335789,7 @@ "top-layer-display-none.html": [ "ba790c1db9a561498737dee83411c525a8a8c38a", [ - "html/semantics/interactive-elements/the-dialog-element/top-layer-display-none.html", + null, [ [ "/html/semantics/interactive-elements/the-dialog-element/top-layer-display-none-ref.html", @@ -332298,7 +335802,7 @@ "top-layer-nesting.html": [ "9e0616e952033642489edaf1de7bc7f4b09433bf", [ - "html/semantics/interactive-elements/the-dialog-element/top-layer-nesting.html", + null, [ [ "/html/semantics/interactive-elements/the-dialog-element/top-layer-nesting-ref.html", @@ -332311,7 +335815,7 @@ "top-layer-parent-clip.html": [ "6e3c52aa02a50d9e2c4b3f5e4beb74c6ff07a4b0", [ - "html/semantics/interactive-elements/the-dialog-element/top-layer-parent-clip.html", + null, [ [ "/html/semantics/interactive-elements/the-dialog-element/green-dialog-and-backdrop.html", @@ -332324,7 +335828,7 @@ "top-layer-parent-filter.html": [ "589d5397791ab426136e1cda2a4f53fbc6ff09c5", [ - "html/semantics/interactive-elements/the-dialog-element/top-layer-parent-filter.html", + null, [ [ "/html/semantics/interactive-elements/the-dialog-element/green-dialog-and-backdrop.html", @@ -332337,7 +335841,7 @@ "top-layer-parent-mask.html": [ "8ba3ed47c27750981fb7a7a56f86fe408b780e38", [ - "html/semantics/interactive-elements/the-dialog-element/top-layer-parent-mask.html", + null, [ [ "/html/semantics/interactive-elements/the-dialog-element/green-dialog-and-backdrop.html", @@ -332350,7 +335854,7 @@ "top-layer-parent-opacity.html": [ "46c5de2a6dd54a6564abf31f0bdb47e605c8fed0", [ - "html/semantics/interactive-elements/the-dialog-element/top-layer-parent-opacity.html", + null, [ [ "/html/semantics/interactive-elements/the-dialog-element/green-dialog-and-backdrop.html", @@ -332363,7 +335867,7 @@ "top-layer-parent-overflow-clip.html": [ "d80595496929d0352a874a2dfb825098af7ecd91", [ - "html/semantics/interactive-elements/the-dialog-element/top-layer-parent-overflow-clip.html", + null, [ [ "/html/semantics/interactive-elements/the-dialog-element/green-dialog-and-backdrop.html", @@ -332376,7 +335880,7 @@ "top-layer-parent-overflow-hidden.html": [ "f5389ddc09a234dd2725f30791df1e9406a30304", [ - "html/semantics/interactive-elements/the-dialog-element/top-layer-parent-overflow-hidden.html", + null, [ [ "/html/semantics/interactive-elements/the-dialog-element/green-dialog-and-backdrop.html", @@ -332389,7 +335893,7 @@ "top-layer-parent-overflow-scroll.html": [ "a230defeeab10dbd84a45677f759a0e33d8634e9", [ - "html/semantics/interactive-elements/the-dialog-element/top-layer-parent-overflow-scroll.html", + null, [ [ "/html/semantics/interactive-elements/the-dialog-element/green-dialog-and-backdrop.html", @@ -332402,7 +335906,7 @@ "top-layer-parent-transform.html": [ "ac6f3cffc3ccc0d52fcfc31b5d3dd8f1640d19e7", [ - "html/semantics/interactive-elements/the-dialog-element/top-layer-parent-transform.html", + null, [ [ "/html/semantics/interactive-elements/the-dialog-element/green-dialog-and-backdrop.html", @@ -332438,10 +335942,23 @@ {} ] ], + "top-layer-remove-popover-attribute.html": [ + "3827e90c5bdb01c1b59fc159bd312a2afbd09342", + [ + null, + [ + [ + "/html/semantics/interactive-elements/the-dialog-element/top-layer-remove-popover-attribute-ref.html", + "==" + ] + ], + {} + ] + ], "top-layer-stacking-correct-order-remove-readd.html": [ "4fdd28820dbb27af2d397d747573e0bd7cbecf35", [ - "html/semantics/interactive-elements/the-dialog-element/top-layer-stacking-correct-order-remove-readd.html", + null, [ [ "/html/semantics/interactive-elements/the-dialog-element/top-layer-stacking-correct-order-remove-readd-ref.html", @@ -332454,7 +335971,7 @@ "top-layer-stacking-dynamic.html": [ "ebccdc66cf9f6215919eff7769c14debb68b4a99", [ - "html/semantics/interactive-elements/the-dialog-element/top-layer-stacking-dynamic.html", + null, [ [ "/html/semantics/interactive-elements/the-dialog-element/top-layer-stacking-dynamic-ref.html", @@ -332467,7 +335984,7 @@ "top-layer-stacking.tentative.html": [ "6407ef23c2e38ef000bfb59be340900312935a8a", [ - "html/semantics/interactive-elements/the-dialog-element/top-layer-stacking.tentative.html", + null, [ [ "/html/semantics/interactive-elements/the-dialog-element/top-layer-stacking-ref.html", @@ -332511,11 +336028,91 @@ } } }, + "permission-element": { + "bounded-css-properties-reftest.tentative.html": [ + "ad6986f52b40e3a164fe0237df9aec1365d513cd", + [ + null, + [ + [ + "/html/semantics/permission-element/bounded-css-properties-reftest-ref.html", + "==" + ] + ], + {} + ] + ], + "bounded-sizes-reftest.tentative.html": [ + "45ffb633c3dc4aab7b40e750e922abc7a27e6275", + [ + null, + [ + [ + "/html/semantics/permission-element/bounded-sizes-reftest-ref.html", + "==" + ] + ], + {} + ] + ], + "display-css-property-reftest.tentative.html": [ + "e83786373d599a6df6934b019ffaf7ff08918b6d", + [ + null, + [ + [ + "/html/semantics/permission-element/display-css-property-reftest-ref.html", + "==" + ] + ], + {} + ] + ], + "large-min-size-reftest.tentative.html": [ + "9a786101693b25bdc0ae80a051e11c765118bb86", + [ + null, + [ + [ + "/html/semantics/permission-element/large-min-size-reftest-ref.html", + "==" + ] + ], + {} + ] + ], + "pseudo-elements-in-div.tentative.html": [ + "e9080708021d2d44fd6675c662ce62d141ed9f9b", + [ + null, + [ + [ + "/html/semantics/permission-element/pseudo-elements-in-div-ref.html", + "==" + ] + ], + {} + ] + ], + "pseudo-elements.tentative.html": [ + "e0faefeb55d34ff93cf28da22e62463ac2f28ace", + [ + null, + [ + [ + "/html/semantics/permission-element/pseudo-elements-ref.html", + "==" + ] + ], + {} + ] + ] + }, "popovers": { "popover-anchor-change-display.tentative.html": [ - "435929a6c1b05adc811fe8df029f2a30e2e79cf3", + "4312a156ceecafcace7e57e11ea1fa8f2eb7efd8", [ - "html/semantics/popovers/popover-anchor-change-display.tentative.html", + null, [ [ "/html/semantics/popovers/popover-anchor-change-display-ref.html", @@ -332526,9 +336123,9 @@ ] ], "popover-anchor-display.tentative.html": [ - "d50dd6c857b24f5e75e979d6356151e5cf7b65c8", + "1475c7de7283f3f6cb21ae40f1ae2852193e63d3", [ - "html/semantics/popovers/popover-anchor-display.tentative.html", + null, [ [ "/html/semantics/popovers/popover-anchor-display-ref.html", @@ -332538,10 +336135,23 @@ {} ] ], + "popover-anchor-inset-rule-display.tentative.html": [ + "72395cc7103c49161dcd992d2c64faa62e5c911b", + [ + null, + [ + [ + "/html/semantics/popovers/popover-anchor-inset-rule-display-ref.html", + "==" + ] + ], + {} + ] + ], "popover-anchor-nested-display.tentative.html": [ "b60ff49e09cf189dcc6985aa353e649b4681936f", [ - "html/semantics/popovers/popover-anchor-nested-display.tentative.html", + null, [ [ "/html/semantics/popovers/popover-anchor-nested-display-ref.html", @@ -332552,9 +336162,9 @@ ] ], "popover-anchor-scroll-display.tentative.html": [ - "7ed6cf1adf8d11ce5ab121340879ea95dd170991", + "a301032a5b7b9c7b11c6766e874e4fd57549e1ad", [ - "html/semantics/popovers/popover-anchor-scroll-display.tentative.html", + null, [ [ "/html/semantics/popovers/popover-anchor-scroll-display-ref.html", @@ -332567,7 +336177,7 @@ "popover-and-svg.html": [ "c5e8bb42a876ee57982f21fd968c261eb108f37e", [ - "html/semantics/popovers/popover-and-svg.html", + null, [ [ "/html/semantics/popovers/popover-and-svg-ref.html", @@ -332580,7 +336190,7 @@ "popover-appearance.html": [ "e9050bdeb9ddc2215bb91d0fc5c7cd6bf6c83365", [ - "html/semantics/popovers/popover-appearance.html", + null, [ [ "/html/semantics/popovers/popover-appearance-ref.html", @@ -332593,7 +336203,7 @@ "popover-backdrop-appearance.html": [ "cf57aee69e3d4fe332acc63873fa853b2555c813", [ - "html/semantics/popovers/popover-backdrop-appearance.html", + null, [ [ "/html/semantics/popovers/popover-backdrop-appearance-ref.html", @@ -332606,7 +336216,7 @@ "popover-dialog-appearance.html": [ "8b4edadee9e127355b0e14cbabeb65b30020c5c0", [ - "html/semantics/popovers/popover-dialog-appearance.html", + null, [ [ "/html/semantics/popovers/popover-dialog-appearance-ref.html", @@ -332619,7 +336229,7 @@ "popover-hidden-display.html": [ "db61802db60adf9d14ec1266e230222116f40b47", [ - "html/semantics/popovers/popover-hidden-display.html", + null, [ [ "/html/semantics/popovers/popover-hidden-display-ref.html", @@ -332648,7 +336258,7 @@ "popover-inside-display-none.html": [ "24ce7c6fc6c09b1f9b9478680673977a6c28cdfc", [ - "html/semantics/popovers/popover-inside-display-none.html", + null, [ [ "/html/semantics/popovers/popover-inside-display-none-ref.html", @@ -332661,7 +336271,7 @@ "popover-open-display.html": [ "bc4d16fe80f9dad5ca27b5646db2740ac3dfa652", [ - "html/semantics/popovers/popover-open-display.html", + null, [ [ "/html/semantics/popovers/popover-open-display-ref.html", @@ -332674,7 +336284,7 @@ "popover-open-overflow-display.tentative.html": [ "3d4d833063877ce1a9a3338d534709f94bdcdd77", [ - "html/semantics/popovers/popover-open-overflow-display.tentative.html", + null, [ [ "/html/semantics/popovers/popover-open-overflow-display-ref.html", @@ -332687,7 +336297,7 @@ "popover-stacking-context.html": [ "ba4e85a89785cc158b2d4768ad6382c648b544f4", [ - "html/semantics/popovers/popover-stacking-context.html", + null, [ [ "/html/semantics/popovers/popover-stacking-context-ref.html", @@ -332769,7 +336379,7 @@ "indeterminate-radio-group.html": [ "a49b95702118c7524675bfe861aaa4fae385ea07", [ - "html/semantics/selectors/pseudo-classes/indeterminate-radio-group.html", + null, [ [ "/html/semantics/selectors/pseudo-classes/indeterminate-radio-group-ref.html", @@ -334262,7 +337872,7 @@ "reftest_window_load.html": [ "c983494dd19fd685b6bffb6fa3397d9a62b62739", [ - "infrastructure/reftest/reftest_window_load.html", + null, [ [ "/infrastructure/reftest/green.html", @@ -334304,7 +337914,7 @@ "3x3_jpeg_recompression.html": [ "f28fca8fdce33b39ace86403a348195f910de481", [ - "jpegxl/3x3_jpeg_recompression.html", + null, [ [ "/jpegxl/3x3_jpeg_recompression-ref.html", @@ -334333,7 +337943,7 @@ "3x3_srgb_lossless.html": [ "589f11c68c4152eea3d395104c0d5ce4bbefbf4d", [ - "jpegxl/3x3_srgb_lossless.html", + null, [ [ "/jpegxl/3x3_srgb_lossless-ref.html", @@ -334362,7 +337972,7 @@ "3x3_srgb_lossy.html": [ "3a92b2b7301d35570b4349513ccc1e1318a8ca8f", [ - "jpegxl/3x3_srgb_lossy.html", + null, [ [ "/jpegxl/3x3_srgb_lossy-ref.html", @@ -334391,7 +338001,7 @@ "3x3a_srgb_lossless.html": [ "1de61a5ba2713b0fc876305666069cb58299de29", [ - "jpegxl/3x3a_srgb_lossless.html", + null, [ [ "/jpegxl/3x3a_srgb_lossless-ref.html", @@ -334420,7 +338030,7 @@ "3x3a_srgb_lossy.html": [ "59583a11a9aab8bf4114bad2de3f405dffc3f0cd", [ - "jpegxl/3x3a_srgb_lossy.html", + null, [ [ "/jpegxl/3x3a_srgb_lossy-ref.html", @@ -334468,7 +338078,7 @@ "direction-006.html": [ "76cdc414710c86bf2cf2d14e5bd17d16a01410cf", [ - "mathml/presentation-markup/direction/direction-006.html", + null, [ [ "/mathml/presentation-markup/direction/direction-006-ref.html", @@ -334481,7 +338091,7 @@ "direction-007.html": [ "3419467ae2cba1c4c568daa23aec297c9a6a00b0", [ - "mathml/presentation-markup/direction/direction-007.html", + null, [ [ "/mathml/presentation-markup/direction/direction-007-ref.html", @@ -334494,7 +338104,7 @@ "direction-008.html": [ "0be81373640bdf98615ca8b2612622f89dbf774e", [ - "mathml/presentation-markup/direction/direction-008.html", + null, [ [ "/mathml/presentation-markup/direction/direction-008-ref.html", @@ -334507,7 +338117,7 @@ "direction-010.html": [ "6e92dfda2a9ef10fedb242063059b268b4501129", [ - "mathml/presentation-markup/direction/direction-010.html", + null, [ [ "/mathml/presentation-markup/direction/direction-010-ref.html", @@ -334520,7 +338130,7 @@ "direction-mpadded.html": [ "772535171d563634a2928499a3ede212ffb1513a", [ - "mathml/presentation-markup/direction/direction-mpadded.html", + null, [ [ "/mathml/presentation-markup/direction/direction-mpadded-ref.html", @@ -334530,10 +338140,36 @@ {} ] ], + "direction-overall-002.html": [ + "8840eaed56a546f11b2606b7e77eee28e9b0eb33", + [ + null, + [ + [ + "/mathml/presentation-markup/direction/direction-overall-002-ref.html", + "==" + ] + ], + {} + ] + ], + "direction-overall-003.html": [ + "7acc0f65c1b5c3c5800686ac517be9f6a82914a6", + [ + null, + [ + [ + "/mathml/presentation-markup/direction/direction-overall-003-ref.html", + "==" + ] + ], + {} + ] + ], "direction-overall.html": [ "6effb94c54b21d09efd29da7c2cb85c1173debf9", [ - "mathml/presentation-markup/direction/direction-overall.html", + null, [ [ "/mathml/presentation-markup/direction/direction-overall-ref.html", @@ -334546,7 +338182,7 @@ "direction-token.html": [ "58319fbfaccfefa54622672a5070f426342325e3", [ - "mathml/presentation-markup/direction/direction-token.html", + null, [ [ "/mathml/presentation-markup/direction/direction-token-ref.html", @@ -334561,7 +338197,7 @@ "frac-bar-001.html": [ "8284546e4fbcb576687f4113ae3fc2839922effd", [ - "mathml/presentation-markup/fractions/frac-bar-001.html", + null, [ [ "/mathml/presentation-markup/fractions/frac-bar-001-ref.html", @@ -334574,7 +338210,7 @@ "frac-bar-002.html": [ "3eb5433e821382a3a7c76dce8f62219e46e56c5b", [ - "mathml/presentation-markup/fractions/frac-bar-002.html", + null, [ [ "/mathml/presentation-markup/fractions/frac-bar-002-ref.html", @@ -334587,7 +338223,7 @@ "frac-bar-003.html": [ "69b45ea29c91faa552534b5db4832d4d99f223e4", [ - "mathml/presentation-markup/fractions/frac-bar-003.html", + null, [ [ "/mathml/presentation-markup/fractions/frac-bar-003-ref.html", @@ -334600,7 +338236,7 @@ "frac-color-001.html": [ "442388a6eb8239aa8e8433391639c8b46b254ca3", [ - "mathml/presentation-markup/fractions/frac-color-001.html", + null, [ [ "/mathml/presentation-markup/fractions/frac-color-001-notref.html", @@ -334613,7 +338249,7 @@ "frac-color-002.html": [ "5c87212f598655a6adc152808b5f82d6a5684d9b", [ - "mathml/presentation-markup/fractions/frac-color-002.html", + null, [ [ "/mathml/presentation-markup/fractions/frac-color-002-ref.html", @@ -334626,7 +338262,7 @@ "frac-created-dynamically-2.html": [ "8e9fa520ead0acb4d02442b754b866eb78110d67", [ - "mathml/presentation-markup/fractions/frac-created-dynamically-2.html", + null, [ [ "/mathml/presentation-markup/fractions/frac-created-dynamically-2-ref.html", @@ -334639,7 +338275,7 @@ "frac-created-dynamically-3.html": [ "1f7e23bb8455706aa2ffddb64c218f54ccf61230", [ - "mathml/presentation-markup/fractions/frac-created-dynamically-3.html", + null, [ [ "/mathml/presentation-markup/fractions/frac-created-dynamically-3-ref.html", @@ -334649,10 +338285,23 @@ {} ] ], + "frac-created-dynamically-4.html": [ + "66665620e38aa8e53583b8794fe33c4c60689e8b", + [ + null, + [ + [ + "/mathml/presentation-markup/fractions/frac-created-dynamically-4-ref.html", + "==" + ] + ], + {} + ] + ], "frac-created-dynamically.html": [ "8f65e8d9cf85b5e40798b83f9d01c144e2d3b081", [ - "mathml/presentation-markup/fractions/frac-created-dynamically.html", + null, [ [ "/mathml/presentation-markup/fractions/frac-created-dynamically-ref.html", @@ -334665,7 +338314,7 @@ "frac-default-padding.html": [ "30f155661aa464736f39875821ebe5a719e47a7e", [ - "mathml/presentation-markup/fractions/frac-default-padding.html", + null, [ [ "/mathml/presentation-markup/fractions/frac-default-padding-ref.html", @@ -334678,7 +338327,7 @@ "frac-invalid-2.html": [ "729fe813d0b372bb6b77193c28a952dabece220b", [ - "mathml/presentation-markup/fractions/frac-invalid-2.html", + null, [ [ "/mathml/presentation-markup/fractions/frac-invalid-2-ref.html", @@ -334691,7 +338340,7 @@ "frac-invalid-3.html": [ "d56b55ef805f33f2524a18e5e689b104a2aa61bb", [ - "mathml/presentation-markup/fractions/frac-invalid-3.html", + null, [ [ "/mathml/presentation-markup/fractions/frac-invalid-3-ref.html", @@ -334704,7 +338353,7 @@ "frac-invalid.html": [ "78e11e7e2ba9ad9a39c9b73816c3baa6a60f8d94", [ - "mathml/presentation-markup/fractions/frac-invalid.html", + null, [ [ "/mathml/presentation-markup/fractions/frac-invalid-ref.html", @@ -334717,7 +338366,7 @@ "frac-legacy-bevelled-attribute.tentative.html": [ "a98fc0f979bebad71f381794dd87b33b8e700a28", [ - "mathml/presentation-markup/fractions/frac-legacy-bevelled-attribute.tentative.html", + null, [ [ "/mathml/presentation-markup/fractions/frac-legacy-bevelled-attribute.tentative-ref.html", @@ -334730,7 +338379,7 @@ "frac-linethickness-001.html": [ "99f751026399f5eb9b7ea799dcecf634283a3da2", [ - "mathml/presentation-markup/fractions/frac-linethickness-001.html", + null, [ [ "/mathml/presentation-markup/fractions/frac-linethickness-001-ref.html", @@ -334743,7 +338392,7 @@ "frac-linethickness-003.html": [ "d930f058c55992c5c2c141f7e0533a97c0690ee3", [ - "mathml/presentation-markup/fractions/frac-linethickness-003.html", + null, [ [ "/mathml/presentation-markup/fractions/frac-linethickness-003-notref.html", @@ -334756,7 +338405,7 @@ "frac-linethickness-004.html": [ "bfb708c092a885dc1c49ef82954d2e2c35b77ffd", [ - "mathml/presentation-markup/fractions/frac-linethickness-004.html", + null, [ [ "/mathml/presentation-markup/fractions/frac-linethickness-004-ref.html", @@ -334766,10 +338415,62 @@ {} ] ], + "frac-linethickness-005.html": [ + "9ecc636215a898717a9560c42698389814e2a399", + [ + null, + [ + [ + "/mathml/presentation-markup/fractions/frac-linethickness-005-ref.html", + "==" + ] + ], + {} + ] + ], + "frac-linethickness-006.html": [ + "4ee477b81399cd863c28b42f4ce95b53dfd79b61", + [ + null, + [ + [ + "/mathml/presentation-markup/fractions/frac-linethickness-006-ref.html", + "==" + ] + ], + {} + ] + ], + "frac-linethickness-007.html": [ + "8702c3c698c13a179ef995cf66a6f8832e92c98a", + [ + null, + [ + [ + "/mathml/presentation-markup/fractions/frac-linethickness-007-ref.html", + "==" + ] + ], + {} + ] + ], + "frac-linethickness-008.html": [ + "8e5bfe89f517a2f4da5aa34ea4ffc0fe1d531928", + [ + null, + [ + [ + "/mathml/presentation-markup/fractions/frac-linethickness-008-ref.html", + "==" + ] + ], + {} + ] + ], "frac-mrow-001.html": [ "82e817e4debb12c4737cbcedb15774c6656b38d7", [ - "mathml/presentation-markup/fractions/frac-mrow-001.html", + null, [ [ "/mathml/presentation-markup/fractions/frac-mrow-001-ref.html", @@ -334782,7 +338483,7 @@ "frac-numalign-denomalign-001.html": [ "653962f33d611c4098f4a3a18fc89178669bbc31", [ - "mathml/presentation-markup/fractions/frac-numalign-denomalign-001.html", + null, [ [ "/mathml/presentation-markup/fractions/frac-numalign-denomalign-001-ref.html", @@ -334795,7 +338496,7 @@ "frac-parameters-gap-001.html": [ "ee31231145a698dc3ce0d100e2c7eaebc8183c20", [ - "mathml/presentation-markup/fractions/frac-parameters-gap-001.html", + null, [ [ "/mathml/presentation-markup/fractions/frac-parameters-gap-001-ref.html", @@ -334808,7 +338509,7 @@ "frac-parameters-gap-002.html": [ "bf77b2d910eb58a29739699eb255576a38abb2d5", [ - "mathml/presentation-markup/fractions/frac-parameters-gap-002.html", + null, [ [ "/mathml/presentation-markup/fractions/frac-parameters-gap-002-ref.html", @@ -334821,7 +338522,7 @@ "frac-parameters-gap-003.html": [ "c35c11ffdc2fcbbc9052e3c6baab81f45838d96d", [ - "mathml/presentation-markup/fractions/frac-parameters-gap-003.html", + null, [ [ "/mathml/presentation-markup/fractions/frac-parameters-gap-003-ref.html", @@ -334834,7 +338535,7 @@ "frac-parameters-gap-004.html": [ "6d567d02d918897c16b07c26bc174c37bb0946e4", [ - "mathml/presentation-markup/fractions/frac-parameters-gap-004.html", + null, [ [ "/mathml/presentation-markup/fractions/frac-parameters-gap-004-ref.html", @@ -334847,7 +338548,7 @@ "frac-parameters-gap-005.html": [ "a0aa13e679922b5f2e2e331bc4a4198d504fd507", [ - "mathml/presentation-markup/fractions/frac-parameters-gap-005.html", + null, [ [ "/mathml/presentation-markup/fractions/frac-parameters-gap-005-ref.html", @@ -334860,7 +338561,7 @@ "frac-parameters-gap-006.html": [ "1260126e55ebd35eaf2bd6b1eb613e1ab73f72e3", [ - "mathml/presentation-markup/fractions/frac-parameters-gap-006.html", + null, [ [ "/mathml/presentation-markup/fractions/frac-parameters-gap-006-ref.html", @@ -334873,7 +338574,7 @@ "frac-rendering-from-in-flow.html": [ "b57564b57486dcc624f01769a6f92db13d92c207", [ - "mathml/presentation-markup/fractions/frac-rendering-from-in-flow.html", + null, [ [ "/mathml/presentation-markup/fractions/frac-rendering-from-in-flow-ref.html", @@ -334886,7 +338587,7 @@ "frac-visibility-001.html": [ "29212c05944e54eec8bfba269f35fe708412b1a8", [ - "mathml/presentation-markup/fractions/frac-visibility-001.html", + null, [ [ "/mathml/presentation-markup/fractions/frac-visibility-001-ref.html", @@ -334913,6 +338614,58 @@ ] }, "mpadded": { + "mpadded-010.html": [ + "bc0b73788b57bd7a184f763786257b8073d474b4", + [ + null, + [ + [ + "/mathml/presentation-markup/mpadded/mpadded-010-ref.html", + "==" + ] + ], + {} + ] + ], + "mpadded-011.html": [ + "4bcdd13f77ede96b807990271fc9e638806cfb96", + [ + null, + [ + [ + "/mathml/presentation-markup/mpadded/mpadded-011-ref.html", + "==" + ] + ], + {} + ] + ], + "mpadded-012.html": [ + "f6ce585010f344a5d049e38d4e054580b72f5199", + [ + null, + [ + [ + "/mathml/presentation-markup/mpadded/mpadded-012-ref.html", + "==" + ] + ], + {} + ] + ], + "mpadded-013.html": [ + "3720911edc3db481a6beeb44885bbcecca8e31a0", + [ + null, + [ + [ + "/mathml/presentation-markup/mpadded/mpadded-013-ref.html", + "==" + ] + ], + {} + ] + ], "mpadded-percentage-001.html": [ "ef2391c42b58f2c634791691d86e8949a728182b", [ @@ -334931,7 +338684,7 @@ "dynamic-mrow-like-001.html": [ "79de59feec61d42b30caa8ae1957cd319b2997de", [ - "mathml/presentation-markup/mrow/dynamic-mrow-like-001.html", + null, [ [ "/mathml/presentation-markup/mrow/dynamic-mrow-like-001-ref.html", @@ -334944,7 +338697,7 @@ "legacy-mfenced-element-001.html": [ "d39ff45f625a3b1452bb690586d39e230ff6b0a4", [ - "mathml/presentation-markup/mrow/legacy-mfenced-element-001.html", + null, [ [ "/mathml/presentation-markup/mrow/legacy-mfenced-element-001-ref.html", @@ -334957,7 +338710,7 @@ "legacy-mrow-like-elements-002.html": [ "99a5721bce8b06485c0c87aea82331d3f87875ad", [ - "mathml/presentation-markup/mrow/legacy-mrow-like-elements-002.html", + null, [ [ "/mathml/presentation-markup/mrow/legacy-mrow-like-elements-002-ref.html", @@ -334970,7 +338723,7 @@ "mrow-painting-order.html": [ "516359a5459c71da7b6bccd6f1d9b83655045965", [ - "mathml/presentation-markup/mrow/mrow-painting-order.html", + null, [ [ "/mathml/presentation-markup/mrow/mrow-painting-order-ref.html", @@ -334979,13 +338732,78 @@ ], {} ] + ], + "semantics-001.html": [ + "63aa9a4da887a3271f2058a59c525ee46a2dcd46", + [ + null, + [ + [ + "/mathml/presentation-markup/mrow/semantics-001-ref.html", + "==" + ] + ], + {} + ] + ], + "semantics-002.html": [ + "62028fb863ee2f1fb89556748501f9ccf226f680", + [ + null, + [ + [ + "/mathml/presentation-markup/mrow/semantics-002-ref.html", + "==" + ] + ], + {} + ] + ], + "semantics-003.html": [ + "83572f4c8c3820e347a73dbcb5a130651b7627a0", + [ + null, + [ + [ + "/mathml/presentation-markup/mrow/semantics-003-ref.html", + "==" + ] + ], + {} + ] + ], + "semantics-004.html": [ + "17f0f1ecd09419d55840424e27f11c35e21ff79b", + [ + null, + [ + [ + "/mathml/presentation-markup/mrow/semantics-004-ref.html", + "==" + ] + ], + {} + ] + ], + "semantics-005.html": [ + "e4fe611c475d0caa28677019868cb54a1c9bb7b6", + [ + null, + [ + [ + "/mathml/presentation-markup/mrow/semantics-005-ref.html", + "==" + ] + ], + {} + ] ] }, "operators": { "embellished-op-1-2.html": [ "f8bfb26d4e9ba7af2942733461c40c54ec54165a", [ - "mathml/presentation-markup/operators/embellished-op-1-2.html", + null, [ [ "/mathml/presentation-markup/operators/embellished-op-1-2-ref.html", @@ -334998,7 +338816,7 @@ "embellished-op-1-3.html": [ "85a21cc50b9809594d5f0c60c0b8bfbee89e14a8", [ - "mathml/presentation-markup/operators/embellished-op-1-3.html", + null, [ [ "/mathml/presentation-markup/operators/embellished-op-1-3-ref.html", @@ -335011,7 +338829,7 @@ "embellished-op-1-4.html": [ "b6c41256e88847410c85fd1a4d720c515af5cf94", [ - "mathml/presentation-markup/operators/embellished-op-1-4.html", + null, [ [ "/mathml/presentation-markup/operators/embellished-op-1-4-ref.html", @@ -335024,7 +338842,7 @@ "embellished-op-1-5.html": [ "1623991c79538bfe01b14dd01bac8d4674809665", [ - "mathml/presentation-markup/operators/embellished-op-1-5.html", + null, [ [ "/mathml/presentation-markup/operators/embellished-op-1-5-ref.html", @@ -335037,7 +338855,7 @@ "embellished-op-2-1.html": [ "a43f65e00e0adea5f73f35703ac2790f3e7be95d", [ - "mathml/presentation-markup/operators/embellished-op-2-1.html", + null, [ [ "/mathml/presentation-markup/operators/embellished-op-2-1-ref.html", @@ -335050,7 +338868,7 @@ "embellished-op-2-2.html": [ "108353dcb3a4762ba40ed6bf7f45c9c6c3757f99", [ - "mathml/presentation-markup/operators/embellished-op-2-2.html", + null, [ [ "/mathml/presentation-markup/operators/embellished-op-2-2-ref.html", @@ -335063,7 +338881,7 @@ "embellished-op-2-3.html": [ "e72cb68be309e31a30075f71f551e71429dcc85d", [ - "mathml/presentation-markup/operators/embellished-op-2-3.html", + null, [ [ "/mathml/presentation-markup/operators/embellished-op-2-3-ref.html", @@ -335076,7 +338894,7 @@ "embellished-op-2-4.html": [ "7e60d5370b7b7b0f0b8a79395c0fd863817e553a", [ - "mathml/presentation-markup/operators/embellished-op-2-4.html", + null, [ [ "/mathml/presentation-markup/operators/embellished-op-2-4-ref.html", @@ -335089,7 +338907,7 @@ "embellished-op-3-2.html": [ "ff7b1020cbb3e6d7fca9177fdcf06efad37af2d3", [ - "mathml/presentation-markup/operators/embellished-op-3-2.html", + null, [ [ "/mathml/presentation-markup/operators/embellished-op-3-2-ref.html", @@ -335102,7 +338920,7 @@ "embellished-op-3-3.html": [ "84dec135cac7321e444b2279172310749da79236", [ - "mathml/presentation-markup/operators/embellished-op-3-3.html", + null, [ [ "/mathml/presentation-markup/operators/embellished-op-3-3-ref.html", @@ -335115,7 +338933,7 @@ "embellished-op-3-4.html": [ "648b0028f462b64d3c5962430b35a45ed463c980", [ - "mathml/presentation-markup/operators/embellished-op-3-4.html", + null, [ [ "/mathml/presentation-markup/operators/embellished-op-3-4-ref.html", @@ -335128,7 +338946,7 @@ "embellished-op-3-5.html": [ "b6d032a589d8d318e414f6ce9dc6962896c59118", [ - "mathml/presentation-markup/operators/embellished-op-3-5.html", + null, [ [ "/mathml/presentation-markup/operators/embellished-op-3-5-ref.html", @@ -335141,7 +338959,7 @@ "embellished-op-4-1.html": [ "724d39ceab0ba9a372242ab2ba9874ae0e2b0f2f", [ - "mathml/presentation-markup/operators/embellished-op-4-1.html", + null, [ [ "/mathml/presentation-markup/operators/embellished-op-4-1-ref.html", @@ -335154,7 +338972,7 @@ "embellished-op-4-2.html": [ "1a3724cb9d42d00aca5d23be4cbee4f89b0baa56", [ - "mathml/presentation-markup/operators/embellished-op-4-2.html", + null, [ [ "/mathml/presentation-markup/operators/embellished-op-4-2-ref.html", @@ -335167,7 +338985,7 @@ "embellished-op-4-3.html": [ "1be87b81dd2bebd8262ad544fd8d80f6e26f69ee", [ - "mathml/presentation-markup/operators/embellished-op-4-3.html", + null, [ [ "/mathml/presentation-markup/operators/embellished-op-4-3-ref.html", @@ -335180,7 +338998,7 @@ "embellished-op-5-1.html": [ "946bda0dc718730b0cb26a6514f8575c95c53658", [ - "mathml/presentation-markup/operators/embellished-op-5-1.html", + null, [ [ "/mathml/presentation-markup/operators/embellished-op-5-ref.html", @@ -335193,7 +339011,7 @@ "embellished-op-5-2.html": [ "95bd2694a5070186080ba6cd327fef768d932522", [ - "mathml/presentation-markup/operators/embellished-op-5-2.html", + null, [ [ "/mathml/presentation-markup/operators/embellished-op-5-ref.html", @@ -335206,7 +339024,7 @@ "embellished-operator-dynamic-001.html": [ "09a7fe412a4ecc291c16e81a5c31ca1a35b7baf8", [ - "mathml/presentation-markup/operators/embellished-operator-dynamic-001.html", + null, [ [ "/mathml/presentation-markup/operators/embellished-operator-dynamic-001-ref.html", @@ -335219,7 +339037,7 @@ "mo-dynamic-mozilla-347348.xhtml": [ "a8471e116a5c2fc249c521c65de9b9487e4734ea", [ - "mathml/presentation-markup/operators/mo-dynamic-mozilla-347348.xhtml", + null, [ [ "/mathml/presentation-markup/operators/mo-dynamic-mozilla-347348-ref.xhtml", @@ -335232,7 +339050,7 @@ "mo-form-dynamic-002.html": [ "862fc36a20c9876e96e273c1544462a953bc321d", [ - "mathml/presentation-markup/operators/mo-form-dynamic-002.html", + null, [ [ "/mathml/presentation-markup/operators/mo-form-dynamic-002-ref.html", @@ -335245,7 +339063,7 @@ "mo-form-dynamic.html": [ "cec203f5178e28cd3fe16e5a34d40684bd285a20", [ - "mathml/presentation-markup/operators/mo-form-dynamic.html", + null, [ [ "/mathml/presentation-markup/operators/mo-form-dynamic-ref.html", @@ -335258,7 +339076,7 @@ "mo-form-fallback.html": [ "b49db9d9ff2b02f6739d1609ee1c3f0fb06de3f8", [ - "mathml/presentation-markup/operators/mo-form-fallback.html", + null, [ [ "/mathml/presentation-markup/operators/mo-form-fallback-ref.html", @@ -335271,7 +339089,7 @@ "mo-form-minus-plus.html": [ "eb7dbbce2a17e7f3bd1a785a9b1b236e71072586", [ - "mathml/presentation-markup/operators/mo-form-minus-plus.html", + null, [ [ "/mathml/presentation-markup/operators/mo-form-minus-plus-ref.html", @@ -335284,7 +339102,7 @@ "mo-form.html": [ "38cbd6bb4b27186758a027ab35cdf3b11fcbb6f2", [ - "mathml/presentation-markup/operators/mo-form.html", + null, [ [ "/mathml/presentation-markup/operators/mo-form-ref.html", @@ -335294,6 +339112,32 @@ {} ] ], + "mo-invisibleoperators-2.html": [ + "d5511a8ea84cad0189d62b103ae6baa0d7b9db1d", + [ + null, + [ + [ + "/mathml/presentation-markup/operators/mo-invisibleoperators-2-ref.html", + "==" + ] + ], + {} + ] + ], + "mo-invisibleoperators.html": [ + "d027b6491ffe208c73e2ec2468b465c83563f10a", + [ + null, + [ + [ + "/mathml/presentation-markup/operators/mo-invisibleoperators-ref.html", + "==" + ] + ], + {} + ] + ], "mo-lspace-rspace-2.html": [ "d54f45c21de3b33428d1daeae71918d7a330b103", [ @@ -335321,9 +339165,9 @@ ] ], "mo-lspace-rspace-4.html": [ - "47984548685b31f540fcf4df1925edf36db336c4", + "c3254a56352de9c7376f0fc828d537fa94d3b504", [ - null, + "mathml/presentation-markup/operators/mo-lspace-rspace-4.html", [ [ "/mathml/presentation-markup/operators/mo-lspace-rspace-4-ref.html", @@ -335336,7 +339180,7 @@ "mo-lspace-rspace-dynamic.html": [ "70098bebf97a99f6272bcde0674cd4ccf712239e", [ - "mathml/presentation-markup/operators/mo-lspace-rspace-dynamic.html", + null, [ [ "/mathml/presentation-markup/operators/mo-lspace-rspace-dynamic-ref.html", @@ -335362,7 +339206,7 @@ "mo-movablelimits-and-embellished-operator.html": [ "2bdfa15bc602f64e5b3440b2379203c583d6a2c3", [ - "mathml/presentation-markup/operators/mo-movablelimits-and-embellished-operator.html", + null, [ [ "/mathml/presentation-markup/operators/mo-movablelimits-and-embellished-operator-ref.html", @@ -335375,7 +339219,7 @@ "mo-movablelimits-default.html": [ "4d6ee00d82b3f7ac12dd05e7042ca6665d5c7f8c", [ - "mathml/presentation-markup/operators/mo-movablelimits-default.html", + null, [ [ "/mathml/presentation-markup/operators/mo-movablelimits-default-ref.html", @@ -335386,9 +339230,9 @@ ] ], "mo-movablelimits-dynamic.html": [ - "647fc523217e6955f79a1be7a234395c27b46fae", + "cf6d0ffa5b6b91ec4011a0c2d3ea28bf14b21ab5", [ - "mathml/presentation-markup/operators/mo-movablelimits-dynamic.html", + null, [ [ "/mathml/presentation-markup/operators/mo-movablelimits-dynamic-ref.html", @@ -335401,7 +339245,7 @@ "mo-movablelimits-from-in-flow.html": [ "d1a2422c985780a9978f5850e3f5d412ebdb5123", [ - "mathml/presentation-markup/operators/mo-movablelimits-from-in-flow.html", + null, [ [ "/mathml/presentation-markup/operators/mo-movablelimits-from-in-flow-ref.html", @@ -335414,7 +339258,7 @@ "mo-movablelimits.html": [ "e7aa17380bd007299b625674021b6c26a8f5d978", [ - "mathml/presentation-markup/operators/mo-movablelimits.html", + null, [ [ "/mathml/presentation-markup/operators/mo-movablelimits-ref.html", @@ -335427,7 +339271,7 @@ "mo-not-in-dictionary-lspace-rspace.html": [ "e6b5b172c3d8df0ace9bafbfbcd3709ddede0e8f", [ - "mathml/presentation-markup/operators/mo-not-in-dictionary-lspace-rspace.html", + null, [ [ "/mathml/presentation-markup/operators/mo-not-in-dictionary-lspace-rspace-ref.html", @@ -335440,7 +339284,7 @@ "mo-not-in-dictionary-movablelimits.html": [ "8a96e31953152c14cdf62f4de195c8ebb1392a72", [ - "mathml/presentation-markup/operators/mo-not-in-dictionary-movablelimits.html", + null, [ [ "/mathml/presentation-markup/operators/mo-not-in-dictionary-movablelimits-ref.html", @@ -335453,7 +339297,7 @@ "mo-paint-lspace-rspace.html": [ "a3a3ed501e7867ffe25a43287b751038695d1b1b", [ - "mathml/presentation-markup/operators/mo-paint-lspace-rspace.html", + null, [ [ "/mathml/presentation-markup/operators/mo-paint-lspace-rspace-ref.html", @@ -335466,7 +339310,7 @@ "mo-single-char-and-children.html": [ "a911c44411867e4e1558aa6df1fa8f2b89a568d6", [ - "mathml/presentation-markup/operators/mo-single-char-and-children.html", + null, [ [ "/mathml/presentation-markup/operators/mo-single-char-and-children-ref.html", @@ -335476,10 +339320,36 @@ {} ] ], + "munderover-accent-dynamic-001.html": [ + "6c3bc0d83002292fef534c453ea5a10edfa22c3a", + [ + null, + [ + [ + "/mathml/presentation-markup/operators/munderover-accent-dynamic-001-ref.html", + "==" + ] + ], + {} + ] + ], + "munderover-accentunder-dynamic-001.html": [ + "33fc5b3f21269518b635509ee21693019771cc14", + [ + null, + [ + [ + "/mathml/presentation-markup/operators/munderover-accentunder-dynamic-001-ref.html", + "==" + ] + ], + {} + ] + ], "non-spacing-accent-1.xhtml": [ "6061b96bc5192f7ef8ace55ecf9fb2f3feb36181", [ - "mathml/presentation-markup/operators/non-spacing-accent-1.xhtml", + null, [ [ "/mathml/presentation-markup/operators/non-spacing-accent-1-ref.xhtml", @@ -335687,7 +339557,7 @@ "stretchy-underbar-1.xhtml": [ "63bf7391c673a9580d3503b416d31db4e7da9ef4", [ - "mathml/presentation-markup/operators/stretchy-underbar-1.xhtml", + null, [ [ "/mathml/presentation-markup/operators/stretchy-underbar-1-ref.xhtml", @@ -335702,7 +339572,7 @@ "dynamic-radical-paint-invalidation-001.html": [ "4e9375842dc850296bb42dda0e7b9f21570a5e9b", [ - "mathml/presentation-markup/radicals/dynamic-radical-paint-invalidation-001.html", + null, [ [ "/mathml/presentation-markup/radicals/dynamic-radical-paint-invalidation-001-ref.html", @@ -335715,7 +339585,7 @@ "empty-msqrt.html": [ "f9fb65ba4b13b732572544599decc96e39f838da", [ - "mathml/presentation-markup/radicals/empty-msqrt.html", + null, [ [ "/mathml/presentation-markup/radicals/empty-msqrt-ref.html", @@ -335728,7 +339598,7 @@ "radical-rendering-from-in-flow.html": [ "7a5de3811b1e45b85f8805ae4dc01225649ae7a9", [ - "mathml/presentation-markup/radicals/radical-rendering-from-in-flow.html", + null, [ [ "/mathml/presentation-markup/radicals/radical-rendering-from-in-flow-ref.html", @@ -335740,10 +339610,49 @@ ] }, "scripts": { + "mmultiscript-001.html": [ + "e55a04e12864577004fe1cbfc2201bc91db4bb7b", + [ + null, + [ + [ + "/mathml/presentation-markup/scripts/mmultiscript-001-ref.html", + "==" + ] + ], + {} + ] + ], + "mmultiscript-002.html": [ + "c5e426008f9f7517a858703416e84d17f78a4989", + [ + null, + [ + [ + "/mathml/presentation-markup/scripts/mmultiscript-002-ref.html", + "==" + ] + ], + {} + ] + ], + "mmultiscript-003.html": [ + "7de3e98b8ab8a06ef5e66f52bb2fb4bcbce99da4", + [ + null, + [ + [ + "/mathml/presentation-markup/scripts/mmultiscript-003-ref.html", + "==" + ] + ], + {} + ] + ], "mover-accent-dynamic-change.html": [ "a744149e6061310a2df2461635fba4a69c116707", [ - "mathml/presentation-markup/scripts/mover-accent-dynamic-change.html", + null, [ [ "/mathml/presentation-markup/scripts/mover-accent-dynamic-change-ref.html", @@ -335766,6 +339675,58 @@ {} ] ], + "munder-mover-align-accent-false.html": [ + "0d4205410a9e842c89b17d6eac0df47c6cd9bf36", + [ + null, + [ + [ + "/mathml/presentation-markup/scripts/munder-mover-align-accent-false-ref.html", + "==" + ] + ], + {} + ] + ], + "munder-mover-align-accent-true.html": [ + "aa70d244f33f4babd64492913dfd4b1645df56bd", + [ + null, + [ + [ + "/mathml/presentation-markup/scripts/munder-mover-align-accent-true-ref.html", + "==" + ] + ], + {} + ] + ], + "munderover-align-accent-false.html": [ + "2c082612a255e2d20cd504783e24a494c4465d94", + [ + null, + [ + [ + "/mathml/presentation-markup/scripts/munderover-align-accent-false-ref.html", + "==" + ] + ], + {} + ] + ], + "munderover-align-accent-true.html": [ + "e6578ade5238fd615e011573b1b5720598fe9685", + [ + null, + [ + [ + "/mathml/presentation-markup/scripts/munderover-align-accent-true-ref.html", + "==" + ] + ], + {} + ] + ], "none-001.html": [ "f1bfb442f79b3adf3ba51a5aeaa7b6f82ff522d2", [ @@ -335795,7 +339756,7 @@ "stretchy-mover-1a.html": [ "8a87c2387f935361a6330d01676f74854b71bc88", [ - "mathml/presentation-markup/scripts/stretchy-mover-1a.html", + null, [ [ "/mathml/presentation-markup/scripts/stretchy-mover-1-ref.html", @@ -335808,7 +339769,7 @@ "stretchy-mover-1b.html": [ "da351235135876de6439bf69324bebc503d31efe", [ - "mathml/presentation-markup/scripts/stretchy-mover-1b.html", + null, [ [ "/mathml/presentation-markup/scripts/stretchy-mover-1-ref.html", @@ -335821,7 +339782,7 @@ "stretchy-mover-2a.html": [ "87738363cd3ab941b12a8d53806a85d48860d700", [ - "mathml/presentation-markup/scripts/stretchy-mover-2a.html", + null, [ [ "/mathml/presentation-markup/scripts/stretchy-mover-2-ref.html", @@ -335834,7 +339795,7 @@ "stretchy-mover-2b.html": [ "6f44ffe17da159492d7eba3e250ad04ca9b8c1d7", [ - "mathml/presentation-markup/scripts/stretchy-mover-2b.html", + null, [ [ "/mathml/presentation-markup/scripts/stretchy-mover-2-ref.html", @@ -335847,7 +339808,7 @@ "stretchy-mover-3.html": [ "9becf31d14ca5c40df2cb3caae07a80ead52f1cb", [ - "mathml/presentation-markup/scripts/stretchy-mover-3.html", + null, [ [ "/mathml/presentation-markup/scripts/stretchy-mover-3-ref.html", @@ -335860,7 +339821,7 @@ "stretchy-msup-1a.html": [ "1abf64aad6ea7034300f99383bb5cf312a846b87", [ - "mathml/presentation-markup/scripts/stretchy-msup-1a.html", + null, [ [ "/mathml/presentation-markup/scripts/stretchy-msup-1-ref.html", @@ -335873,7 +339834,7 @@ "stretchy-msup-1b.html": [ "c6e0a8aaabcbdaf76ef56632b61d3d0a2cbcc87b", [ - "mathml/presentation-markup/scripts/stretchy-msup-1b.html", + null, [ [ "/mathml/presentation-markup/scripts/stretchy-msup-1-ref.html", @@ -335886,7 +339847,7 @@ "stretchy-msup-1c.html": [ "056000566ac832e7e90e9da99980f04c49e72974", [ - "mathml/presentation-markup/scripts/stretchy-msup-1c.html", + null, [ [ "/mathml/presentation-markup/scripts/stretchy-msup-1-ref.html", @@ -335899,7 +339860,7 @@ "stretchy-msup-1d.html": [ "a1ac5772f25bd49ed7e22afedc2bcdac3de892c9", [ - "mathml/presentation-markup/scripts/stretchy-msup-1d.html", + null, [ [ "/mathml/presentation-markup/scripts/stretchy-msup-1-ref.html", @@ -335912,7 +339873,7 @@ "stretchy-munderover-1a.html": [ "0dfd5ad40bbeb4208495a6ffce65c6e1b375db77", [ - "mathml/presentation-markup/scripts/stretchy-munderover-1a.html", + null, [ [ "/mathml/presentation-markup/scripts/stretchy-munderover-1-ref.html", @@ -335925,7 +339886,7 @@ "stretchy-munderover-1b.html": [ "f4a2c67c58ad813670dd7f8c235f6429709e369a", [ - "mathml/presentation-markup/scripts/stretchy-munderover-1b.html", + null, [ [ "/mathml/presentation-markup/scripts/stretchy-munderover-1-ref.html", @@ -335938,7 +339899,7 @@ "stretchy-munderover-1c.html": [ "6430545794a692d877c88244c4523e6d6148ae7f", [ - "mathml/presentation-markup/scripts/stretchy-munderover-1c.html", + null, [ [ "/mathml/presentation-markup/scripts/stretchy-munderover-1-ref.html", @@ -335951,7 +339912,7 @@ "stretchy-munderover-1d.html": [ "d2345c5f14427d74def57b5d5a6ce116a11b8b23", [ - "mathml/presentation-markup/scripts/stretchy-munderover-1d.html", + null, [ [ "/mathml/presentation-markup/scripts/stretchy-munderover-1-ref.html", @@ -335964,7 +339925,7 @@ "stretchy-munderover-1e.html": [ "ba959a58790ff59cf59e3a0d29182e599ff8d631", [ - "mathml/presentation-markup/scripts/stretchy-munderover-1e.html", + null, [ [ "/mathml/presentation-markup/scripts/stretchy-munderover-1-ref.html", @@ -335977,7 +339938,7 @@ "stretchy-munderover-2a.html": [ "54aea8d7c9a61d17046e96f526c487b0cfa06c41", [ - "mathml/presentation-markup/scripts/stretchy-munderover-2a.html", + null, [ [ "/mathml/presentation-markup/scripts/stretchy-munderover-2-ref.html", @@ -335990,7 +339951,7 @@ "stretchy-munderover-2b.html": [ "6420f01dd7ae1dce9f8fae9b0d42b97a8e459f9a", [ - "mathml/presentation-markup/scripts/stretchy-munderover-2b.html", + null, [ [ "/mathml/presentation-markup/scripts/stretchy-munderover-2-ref.html", @@ -336003,7 +339964,7 @@ "stretchy-munderover-2c.html": [ "3a77e78078a51e0defef6bf71cdb00f133940add", [ - "mathml/presentation-markup/scripts/stretchy-munderover-2c.html", + null, [ [ "/mathml/presentation-markup/scripts/stretchy-munderover-2-ref.html", @@ -336016,7 +339977,7 @@ "stretchy-munderover-2d.html": [ "30a7ca2e728a4bbaa1d41afa15826fa99aedbac2", [ - "mathml/presentation-markup/scripts/stretchy-munderover-2d.html", + null, [ [ "/mathml/presentation-markup/scripts/stretchy-munderover-2-ref.html", @@ -336029,7 +339990,7 @@ "stretchy-munderover-2e.html": [ "199c101b6ae592a416fcd4cc2863c6fb5960bf31", [ - "mathml/presentation-markup/scripts/stretchy-munderover-2e.html", + null, [ [ "/mathml/presentation-markup/scripts/stretchy-munderover-2-ref.html", @@ -336042,7 +340003,7 @@ "stretchy-munderover-2f.html": [ "5b736fda0a87d4ee1e05592b769344842f0a4448", [ - "mathml/presentation-markup/scripts/stretchy-munderover-2f.html", + null, [ [ "/mathml/presentation-markup/scripts/stretchy-munderover-2-ref.html", @@ -336055,7 +340016,7 @@ "stretchy-munderover-2g.html": [ "11cca42de141299c36026669a8318c4c41ad558d", [ - "mathml/presentation-markup/scripts/stretchy-munderover-2g.html", + null, [ [ "/mathml/presentation-markup/scripts/stretchy-munderover-2-ref.html", @@ -336068,7 +340029,7 @@ "stretchy-munderover-3a.html": [ "dd41c82def591351b4c5f8e2607a938a95fbc5e7", [ - "mathml/presentation-markup/scripts/stretchy-munderover-3a.html", + null, [ [ "/mathml/presentation-markup/scripts/stretchy-munderover-3-ref.html", @@ -336081,7 +340042,7 @@ "stretchy-munderover-3b.html": [ "b4619bfef90ff4441f1e64c075a7794b97ba5bb3", [ - "mathml/presentation-markup/scripts/stretchy-munderover-3b.html", + null, [ [ "/mathml/presentation-markup/scripts/stretchy-munderover-3-ref.html", @@ -336094,7 +340055,7 @@ "stretchy-munderover-3c.html": [ "004349f831941e0367a89c0a22ceb773f38395b8", [ - "mathml/presentation-markup/scripts/stretchy-munderover-3c.html", + null, [ [ "/mathml/presentation-markup/scripts/stretchy-munderover-3-ref.html", @@ -336107,7 +340068,7 @@ "stretchy-munderover-3d.html": [ "e5cf01f23e19833edf2a431ee8914b076c4dfd41", [ - "mathml/presentation-markup/scripts/stretchy-munderover-3d.html", + null, [ [ "/mathml/presentation-markup/scripts/stretchy-munderover-3-ref.html", @@ -336120,7 +340081,7 @@ "sub-vs-sup-mozilla-345563.xhtml": [ "5c8d78952f00530b6e853e33a1870992f2d405c9", [ - "mathml/presentation-markup/scripts/sub-vs-sup-mozilla-345563.xhtml", + null, [ [ "/mathml/presentation-markup/scripts/sub-vs-sup-mozilla-345563-ref.xhtml", @@ -336133,7 +340094,7 @@ "subsup-legacy-scriptshift-attributes-001.tentative.html": [ "2f29db401db1370b3a8de2a7ab669181ac6d7cc1", [ - "mathml/presentation-markup/scripts/subsup-legacy-scriptshift-attributes-001.tentative.html", + null, [ [ "/mathml/presentation-markup/scripts/subsup-legacy-scriptshift-attributes-001.tentative-ref.html", @@ -336146,7 +340107,7 @@ "underover-legacy-align-attribute-001.html": [ "aa2460e0626cd3d58da9f80828135f4170160e0a", [ - "mathml/presentation-markup/scripts/underover-legacy-align-attribute-001.html", + null, [ [ "/mathml/presentation-markup/scripts/underover-legacy-align-attribute-001-ref.html", @@ -336159,7 +340120,7 @@ "underover-stretchy-001.html": [ "6b0f99ec11815f9e9d55d06614a0d36cae8624eb", [ - "mathml/presentation-markup/scripts/underover-stretchy-001.html", + null, [ [ "/mathml/presentation-markup/scripts/underover-stretchy-001-ref.html", @@ -336172,7 +340133,7 @@ "underover-stretchy-002.html": [ "a1cfa20bb422e7d52e37b0f4deeadf6bc2984cdf", [ - "mathml/presentation-markup/scripts/underover-stretchy-002.html", + null, [ [ "/mathml/presentation-markup/scripts/underover-stretchy-002-ref.html", @@ -336185,7 +340146,7 @@ "underover-stretchy-003.html": [ "735fcab63efade700beb7c600e729f72f7fb86ba", [ - "mathml/presentation-markup/scripts/underover-stretchy-003.html", + null, [ [ "/mathml/presentation-markup/scripts/underover-stretchy-003-ref.html", @@ -336200,7 +340161,7 @@ "mspace-children.html": [ "8520f83d248008912bf262665d6caa2a504601b3", [ - "mathml/presentation-markup/spaces/mspace-children.html", + null, [ [ "/mathml/presentation-markup/spaces/mspace-children-ref.html", @@ -336226,7 +340187,7 @@ "space-2.html": [ "640afb204fec30d4f2daacb96b6e94fdfc61c699", [ - "mathml/presentation-markup/spaces/space-2.html", + null, [ [ "/mathml/presentation-markup/spaces/space-2-ref.html", @@ -336236,10 +340197,23 @@ {} ] ], + "space-3.html": [ + "d4f79ed25a3169d0c94fc5f0bf7b43db15a016fa", + [ + null, + [ + [ + "/mathml/presentation-markup/spaces/space-3-ref.html", + "==" + ] + ], + {} + ] + ], "space-vertical-align.tentative.html": [ "359b12aa34885aff7d5ab52bec8584002e0acb0e", [ - "mathml/presentation-markup/spaces/space-vertical-align.tentative.html", + null, [ [ "/mathml/presentation-markup/spaces/space-vertical-align.tentative-ref.html", @@ -336254,7 +340228,7 @@ "columnspan-rowspan-001.html": [ "705ba64eb4c6f4641e3153b1e9a50779f4c7e2ff", [ - "mathml/presentation-markup/tables/columnspan-rowspan-001.html", + null, [ [ "/mathml/presentation-markup/tables/columnspan-rowspan-ref.html", @@ -336267,7 +340241,7 @@ "columnspan-rowspan-002.html": [ "92383c58e5a553b1831effdaf03bd93aeca35ff6", [ - "mathml/presentation-markup/tables/columnspan-rowspan-002.html", + null, [ [ "/mathml/presentation-markup/tables/columnspan-rowspan-ref.html", @@ -336280,7 +340254,7 @@ "columnspan-rowspan-003.html": [ "2a9b21580505695f87d976df5aeb6ae161b74fca", [ - "mathml/presentation-markup/tables/columnspan-rowspan-003.html", + null, [ [ "/mathml/presentation-markup/tables/columnspan-rowspan-ref.html", @@ -336293,7 +340267,7 @@ "columnspan-rowspan-004.html": [ "31c188421000dae27cc129a83942416b787d961a", [ - "mathml/presentation-markup/tables/columnspan-rowspan-004.html", + null, [ [ "/mathml/presentation-markup/tables/columnspan-rowspan-ref.html", @@ -336306,7 +340280,7 @@ "columnspan-rowspan-005.html": [ "d1fdd7a9c6006b6beda1333a765e8e168b84328b", [ - "mathml/presentation-markup/tables/columnspan-rowspan-005.html", + null, [ [ "/mathml/presentation-markup/tables/columnspan-rowspan-ref.html", @@ -336319,7 +340293,7 @@ "columnspan-rowspan-006.html": [ "774fcbfdc79f81c423d26fe493afcff7444dc3d4", [ - "mathml/presentation-markup/tables/columnspan-rowspan-006.html", + null, [ [ "/mathml/presentation-markup/tables/columnspan-rowspan-ref.html", @@ -336332,7 +340306,7 @@ "dynamic-columnspan-rowspan-001a.html": [ "c08c1a9fd49cea3b4d7a38dd63dcf48cb4e174d0", [ - "mathml/presentation-markup/tables/dynamic-columnspan-rowspan-001a.html", + null, [ [ "/mathml/presentation-markup/tables/columnspan-rowspan-ref.html", @@ -336345,7 +340319,7 @@ "dynamic-columnspan-rowspan-001b.html": [ "fdedd4297e62ec77efda39403a8eb06cd819dd4e", [ - "mathml/presentation-markup/tables/dynamic-columnspan-rowspan-001b.html", + null, [ [ "/mathml/presentation-markup/tables/columnspan-rowspan-ref.html", @@ -336358,7 +340332,7 @@ "dynamic-columnspan-rowspan-001c.html": [ "813c82b3de722651ae060783c387ef26836908bf", [ - "mathml/presentation-markup/tables/dynamic-columnspan-rowspan-001c.html", + null, [ [ "/mathml/presentation-markup/tables/columnspan-rowspan-ref.html", @@ -336371,7 +340345,7 @@ "dynamic-columnspan-rowspan-002a.html": [ "288048d57709a90e31f376f72e70c59a88790b64", [ - "mathml/presentation-markup/tables/dynamic-columnspan-rowspan-002a.html", + null, [ [ "/mathml/presentation-markup/tables/columnspan-rowspan-ref.html", @@ -336384,7 +340358,7 @@ "dynamic-columnspan-rowspan-002b.html": [ "47a68480065317c72b175e8b33771ee624910b06", [ - "mathml/presentation-markup/tables/dynamic-columnspan-rowspan-002b.html", + null, [ [ "/mathml/presentation-markup/tables/columnspan-rowspan-ref.html", @@ -336397,7 +340371,7 @@ "dynamic-columnspan-rowspan-002c.html": [ "57d54defa808e2fd7058ba0eff2debeba515fc31", [ - "mathml/presentation-markup/tables/dynamic-columnspan-rowspan-002c.html", + null, [ [ "/mathml/presentation-markup/tables/columnspan-rowspan-ref.html", @@ -336410,7 +340384,7 @@ "dynamic-rowspan-mozilla-370692.xhtml": [ "e16326b1aa9b9005682030ebfc5b1c58a0b1adaf", [ - "mathml/presentation-markup/tables/dynamic-rowspan-mozilla-370692.xhtml", + null, [ [ "/mathml/presentation-markup/tables/dynamic-rowspan-mozilla-370692-ref.xhtml", @@ -336425,7 +340399,7 @@ "dynamic-mi-mozilla-409125.xhtml": [ "35b9951dcbc7d97e2f62dd4a917581b522a208ba", [ - "mathml/presentation-markup/tokens/dynamic-mi-mozilla-409125.xhtml", + null, [ [ "/mathml/presentation-markup/tokens/dynamic-mi-mozilla-409125-ref.xhtml", @@ -336438,7 +340412,7 @@ "dynamic-mi-mozilla-414123.xhtml": [ "b2d7e2d1667b09d366da0a250e27e66b3b892f82", [ - "mathml/presentation-markup/tokens/dynamic-mi-mozilla-414123.xhtml", + null, [ [ "/mathml/presentation-markup/tokens/dynamic-mi-mozilla-414123-ref.xhtml", @@ -336451,7 +340425,7 @@ "dynamic-mtext-like-001.html": [ "8e42f7fa1797a0429dae47be4859d5c828c9f015", [ - "mathml/presentation-markup/tokens/dynamic-mtext-like-001.html", + null, [ [ "/mathml/presentation-markup/tokens/dynamic-mtext-like-001-ref.html", @@ -336464,7 +340438,7 @@ "dynamic-mtext-like-002.html": [ "f04504bb8cc038169a333d530769494cafff5da5", [ - "mathml/presentation-markup/tokens/dynamic-mtext-like-002.html", + null, [ [ "/mathml/presentation-markup/tokens/dynamic-mtext-like-001-ref.html", @@ -336477,7 +340451,7 @@ "mi-mathvariant-1.xhtml": [ "04fe19194ee430cf38f044322f52a39e3355607c", [ - "mathml/presentation-markup/tokens/mi-mathvariant-1.xhtml", + null, [ [ "/mathml/presentation-markup/tokens/mi-mathvariant-1-ref.xhtml", @@ -336490,7 +340464,7 @@ "mi-mathvariant-2.xhtml": [ "e83a24c5d34a63ff7db2bf1f9868b96bddf6de39", [ - "mathml/presentation-markup/tokens/mi-mathvariant-2.xhtml", + null, [ [ "/mathml/presentation-markup/tokens/mi-mathvariant-2-ref.xhtml", @@ -336503,7 +340477,7 @@ "ms-001.html": [ "abac0c8b2ea3ee1a95057a8d8648440f3858bf84", [ - "mathml/presentation-markup/tokens/ms-001.html", + null, [ [ "/mathml/presentation-markup/tokens/ms-001-ref.html", @@ -336520,7 +340494,7 @@ "blur-filter.html": [ "92a894bf34de0e6d084b56848961754ec5430ee4", [ - "mathml/relations/css-styling/blur-filter.html", + null, [ [ "/mathml/relations/css-styling/blur-filter-ref.html", @@ -336533,7 +340507,7 @@ "clip-path.html": [ "abe58e22615f207dc689a9311d35acb89dd1cd25", [ - "mathml/relations/css-styling/clip-path.html", + null, [ [ "/mathml/relations/css-styling/clip-path-ref.html", @@ -336546,7 +340520,7 @@ "clip.html": [ "48b7753fd8667ec0230a557824ff14e99bc65cbe", [ - "mathml/relations/css-styling/clip.html", + null, [ [ "/mathml/relations/css-styling/clip-ref.html", @@ -336559,7 +340533,7 @@ "color-001.html": [ "76d65f579c8217160925b5ecde0d823d5f887cf2", [ - "mathml/relations/css-styling/color-001.html", + null, [ [ "/mathml/relations/css-styling/color-001-ref.html", @@ -336572,7 +340546,7 @@ "color-002.html": [ "bce24f54c87ccac08213482a1a535cfb8b5d8ad7", [ - "mathml/relations/css-styling/color-002.html", + null, [ [ "/mathml/relations/css-styling/color-002-ref.html", @@ -336585,7 +340559,7 @@ "color-003.html": [ "dd04b61054021513378debdbf98d2fa20ea33c1d", [ - "mathml/relations/css-styling/color-003.html", + null, [ [ "/mathml/relations/css-styling/color-003-ref.html", @@ -336598,7 +340572,7 @@ "color-004.tentative.html": [ "4bd15e62a08afaea41daf10b2c1464c115839aba", [ - "mathml/relations/css-styling/color-004.tentative.html", + null, [ [ "/mathml/relations/css-styling/color-004.tentative-ref.html", @@ -336611,7 +340585,7 @@ "color-005.html": [ "f2660c9e62545bd91e464cd7ddc3a9aa964be9b6", [ - "mathml/relations/css-styling/color-005.html", + null, [ [ "/mathml/relations/css-styling/color-005-ref.html", @@ -336624,7 +340598,7 @@ "display-1.html": [ "5a9e4db68754e5dddfe503af3796f723222dd01e", [ - "mathml/relations/css-styling/display-1.html", + null, [ [ "/mathml/relations/css-styling/display-1-ref.html", @@ -336637,7 +340611,7 @@ "display-with-overflow.html": [ "33df26c3ee0eb5ba6c39bbc17ae391118626fc00", [ - "mathml/relations/css-styling/display-with-overflow.html", + null, [ [ "/mathml/relations/css-styling/display-with-overflow-ref.html", @@ -336650,7 +340624,7 @@ "displaystyle-011.html": [ "a0bfc29ae5fd4088c70c50a2c9c46ae7d7443a26", [ - "mathml/relations/css-styling/displaystyle-011.html", + null, [ [ "/mathml/relations/css-styling/displaystyle-011-ref.html", @@ -336663,7 +340637,7 @@ "displaystyle-012.html": [ "9fd4c784ddc91d85d10248c44458b46a4c89dade", [ - "mathml/relations/css-styling/displaystyle-012.html", + null, [ [ "/mathml/relations/css-styling/displaystyle-012-ref.html", @@ -336676,7 +340650,7 @@ "displaystyle-013.html": [ "3ce9fff0625a8a2e589334eca518c3a8b31a8a13", [ - "mathml/relations/css-styling/displaystyle-013.html", + null, [ [ "/mathml/relations/css-styling/displaystyle-013-ref.html", @@ -336689,7 +340663,7 @@ "displaystyle-014.html": [ "a4f1208e3560eff1dced4553cbb953577ff043a9", [ - "mathml/relations/css-styling/displaystyle-014.html", + null, [ [ "/mathml/relations/css-styling/displaystyle-014-ref.html", @@ -336702,7 +340676,7 @@ "displaystyle-015.html": [ "e4a747fb207631bdab9374db2b430b3195444dc8", [ - "mathml/relations/css-styling/displaystyle-015.html", + null, [ [ "/mathml/relations/css-styling/displaystyle-015-ref.html", @@ -336715,7 +340689,7 @@ "dynamic-dir-1.html": [ "d97505eff101c41731d7559962ba532ab67670eb", [ - "mathml/relations/css-styling/dynamic-dir-1.html", + null, [ [ "/mathml/relations/css-styling/dynamic-dir-1-ref.html", @@ -336725,6 +340699,58 @@ {} ] ], + "first-line-first-letter-pseudo-elements-001.html": [ + "42d0f04ed85f5ec2c851c0baf428984911bf6309", + [ + null, + [ + [ + "/mathml/relations/css-styling/first-line-first-letter-pseudo-elements-001-ref.html", + "==" + ] + ], + {} + ] + ], + "first-line-first-letter-pseudo-elements-002.html": [ + "7e206c951e55e91239a1f8adbdd6bf1a1b42240d", + [ + null, + [ + [ + "/mathml/relations/css-styling/first-line-first-letter-pseudo-elements-002-ref.html", + "==" + ] + ], + {} + ] + ], + "first-line-first-letter-pseudo-elements-003.html": [ + "042a9555e6015486cfa30d26be20314f9d558f7a", + [ + null, + [ + [ + "/mathml/relations/css-styling/first-line-first-letter-pseudo-elements-003-ref.html", + "==" + ] + ], + {} + ] + ], + "first-line-first-letter-pseudo-elements-004.html": [ + "b463266bdbc643a6ee75486634766d4a986310a1", + [ + null, + [ + [ + "/mathml/relations/css-styling/first-line-first-letter-pseudo-elements-004-ref.html", + "==" + ] + ], + {} + ] + ], "floats": { "floating-inside-mathml-with-block-display.html": [ "f398094e15aca3197639fef8edf95f7ec02372b3", @@ -336756,7 +340782,7 @@ "legacy-scriptminsize-attribute.html": [ "0ce87b61477b5b1a4151e2b7958cd4e35697c790", [ - "mathml/relations/css-styling/legacy-scriptminsize-attribute.html", + null, [ [ "/mathml/relations/css-styling/legacy-scriptminsize-attribute-ref.html", @@ -336769,7 +340795,7 @@ "legacy-scriptsizemultiplier-attribute.html": [ "9a955612bc7f6d71c56ddaaff0037041548bf6b1", [ - "mathml/relations/css-styling/legacy-scriptsizemultiplier-attribute.html", + null, [ [ "/mathml/relations/css-styling/legacy-scriptsizemultiplier-attribute-ref.html", @@ -336782,7 +340808,7 @@ "lengths-1.html": [ "896f08d111907e62a23a146299ab20a8a5260c09", [ - "mathml/relations/css-styling/lengths-1.html", + null, [ [ "/mathml/relations/css-styling/lengths-1-ref.html", @@ -336795,7 +340821,7 @@ "mathbackground-001.html": [ "e71fc53eaa32f30e47af764016fc299e0f80b129", [ - "mathml/relations/css-styling/mathbackground-001.html", + null, [ [ "/mathml/relations/css-styling/mathbackground-001-notref.html", @@ -336808,7 +340834,7 @@ "mathbackground-002.html": [ "09407d9269a4ef9992099abf7d606280f778eb53", [ - "mathml/relations/css-styling/mathbackground-002.html", + null, [ [ "/mathml/relations/css-styling/mathbackground-002-notref.html", @@ -336821,7 +340847,7 @@ "mathbackground-003.html": [ "8cb11889dbaadcdb4710788f2e2d4b3cd4234c20", [ - "mathml/relations/css-styling/mathbackground-003.html", + null, [ [ "/mathml/relations/css-styling/mathbackground-003-notref.html", @@ -336834,7 +340860,7 @@ "mathbackground-004.html": [ "be174cdbde962b1e27681432970cd5c7ae6a559b", [ - "mathml/relations/css-styling/mathbackground-004.html", + null, [ [ "/mathml/relations/css-styling/mathbackground-004-notref.html", @@ -336847,7 +340873,7 @@ "mathcolor-001.html": [ "2c463cac872bb977a314497969192999b49ddd4a", [ - "mathml/relations/css-styling/mathcolor-001.html", + null, [ [ "/mathml/relations/css-styling/mathcolor-001-notref.html", @@ -336860,7 +340886,7 @@ "mathcolor-002.html": [ "147d41b46dc97395c75be714cf0b27aefc27a991", [ - "mathml/relations/css-styling/mathcolor-002.html", + null, [ [ "/mathml/relations/css-styling/mathcolor-002-notref.html", @@ -336873,7 +340899,7 @@ "mathcolor-003.html": [ "5565b0d83735a89d9de2765c15392652c440e5a0", [ - "mathml/relations/css-styling/mathcolor-003.html", + null, [ [ "/mathml/relations/css-styling/mathcolor-003-notref.html", @@ -336886,7 +340912,7 @@ "mathcolor-004.html": [ "3ea37fecdb86cb1d6419aea59503cdfb0805508c", [ - "mathml/relations/css-styling/mathcolor-004.html", + null, [ [ "/mathml/relations/css-styling/mathcolor-004-notref.html", @@ -336899,7 +340925,7 @@ "mathcolor-mathbackground-css.html": [ "2f5321534686cd79790e771c5d68e26bf5c7c27a", [ - "mathml/relations/css-styling/mathcolor-mathbackground-css.html", + null, [ [ "/mathml/relations/css-styling/mathcolor-mathbackground-css-ref.html", @@ -336912,7 +340938,7 @@ "mathsize-attribute-css-keywords.html": [ "2daed4cdea7ba17e1fa8ab9193761bb8310ce35c", [ - "mathml/relations/css-styling/mathsize-attribute-css-keywords.html", + null, [ [ "/mathml/relations/css-styling/mathsize-attribute-css-keywords-ref.html", @@ -336925,7 +340951,7 @@ "mathsize-attribute-legacy-values.html": [ "aebf09f9b844b75c834dc160f33e714c4f8f0575", [ - "mathml/relations/css-styling/mathsize-attribute-legacy-values.html", + null, [ [ "/mathml/relations/css-styling/mathsize-attribute-legacy-values-ref.html", @@ -336938,7 +340964,7 @@ "mathsize-attribute.html": [ "66bcb6dd25eb4958497e6d17df9703dab9033257", [ - "mathml/relations/css-styling/mathsize-attribute.html", + null, [ [ "/mathml/relations/css-styling/mathsize-attribute-ref.html", @@ -336951,7 +340977,7 @@ "mathvariant-auto.html": [ "affb02f0c9edc6290c4d08fffb2546f39f394efa", [ - "mathml/relations/css-styling/mathvariant-auto.html", + null, [ [ "/mathml/relations/css-styling/mathvariant-auto-ref.html", @@ -336990,7 +341016,7 @@ "mozilla-393760-1.xml": [ "cc2e725f92ae38c4608a195a7b76ac985aee0ba9", [ - "mathml/relations/css-styling/mozilla-393760-1.xml", + null, [ [ "/mathml/relations/css-styling/mozilla-393760-1-ref.xml", @@ -337003,7 +341029,7 @@ "mozilla-393760-2.xml": [ "c6ebcb5eceea74d5333ebee823e4f53337805508", [ - "mathml/relations/css-styling/mozilla-393760-2.xml", + null, [ [ "/mathml/relations/css-styling/mozilla-393760-2-ref.xml", @@ -337045,7 +341071,7 @@ "padding-border-margin-001.html": [ "b0fb17c7d284dac4ef7dcb6b01242697d1423083", [ - "mathml/relations/css-styling/padding-border-margin/padding-border-margin-001.html", + null, [ [ "/mathml/relations/css-styling/padding-border-margin/padding-border-margin-001-ref.html", @@ -337058,7 +341084,7 @@ "padding-border-margin-002.html": [ "4559fc49ce6c8dd3616b978ef5a5873dfe93d7dd", [ - "mathml/relations/css-styling/padding-border-margin/padding-border-margin-002.html", + null, [ [ "/mathml/relations/css-styling/padding-border-margin/padding-border-margin-002-ref.html", @@ -337069,7 +341095,7 @@ ] ], "padding-border-margin-003.html": [ - "c54682f309e749600bb7da278f4cee034f38fd16", + "b864b5752567e9e63c36c8015acd240d8463bf34", [ "mathml/relations/css-styling/padding-border-margin/padding-border-margin-003.html", [ @@ -337080,12 +341106,64 @@ ], {} ] + ], + "padding-border-margin-004.html": [ + "ee8196d8597e66d659e97bb6ac911dff2e0a08c1", + [ + null, + [ + [ + "/mathml/relations/css-styling/padding-border-margin/padding-border-margin-004-ref.html", + "==" + ] + ], + {} + ] + ], + "padding-border-margin-005.html": [ + "4f5656cdf55813e9d3bb6eca1a9e823fbb089f85", + [ + "mathml/relations/css-styling/padding-border-margin/padding-border-margin-005.html", + [ + [ + "/mathml/relations/css-styling/padding-border-margin/padding-border-margin-005-ref.html", + "==" + ] + ], + {} + ] + ], + "padding-border-margin-006.html": [ + "f1d4ea7e28b421e3454e14b8fe0d7e7adf678ad1", + [ + "mathml/relations/css-styling/padding-border-margin/padding-border-margin-006.html", + [ + [ + "/mathml/relations/css-styling/padding-border-margin/padding-border-margin-006-ref.html", + "==" + ] + ], + {} + ] + ], + "padding-border-margin-007.html": [ + "4ee2805f4634f559b84a0c791d3b616646e7e0b6", + [ + "mathml/relations/css-styling/padding-border-margin/padding-border-margin-007.html", + [ + [ + "/mathml/relations/css-styling/padding-border-margin/padding-border-margin-007-ref.html", + "==" + ] + ], + {} + ] ] }, "presentational-hints-001.html": [ "96ee69541bc7d6008d51574123ac5476592d7d99", [ - "mathml/relations/css-styling/presentational-hints-001.html", + null, [ [ "/mathml/relations/css-styling/presentational-hints-001-ref.html", @@ -337098,7 +341176,7 @@ "presentational-hints-002.html": [ "8bb9153b863e91da7f239d7aad8bc623d34696b3", [ - "mathml/relations/css-styling/presentational-hints-002.html", + null, [ [ "/mathml/relations/css-styling/presentational-hints-002-ref.html", @@ -337109,9 +341187,9 @@ ] ], "table-width-1.xhtml": [ - "c3689adb6f2549e17112d4a328c182dfedfec5b8", + "9158948c7264b636849790cedab5f32476901193", [ - "mathml/relations/css-styling/table-width-1.xhtml", + null, [ [ "/mathml/relations/css-styling/table-width-1-ref.xhtml", @@ -337124,7 +341202,7 @@ "table-width-2.html": [ "533a9324b4e4a26f52754c81b7cc3d14919df0c7", [ - "mathml/relations/css-styling/table-width-2.html", + null, [ [ "/mathml/relations/css-styling/table-width-2-ref.html", @@ -337137,7 +341215,7 @@ "table-width-3.html": [ "4847ce430456ef3e60d85c76ac3640c85977525a", [ - "mathml/relations/css-styling/table-width-3.html", + null, [ [ "/mathml/relations/css-styling/table-width-3-ref.html", @@ -337150,7 +341228,7 @@ "table-width-4.html": [ "4a88b84cb2a6e11dd5682b5c3c51abf85a69ea03", [ - "mathml/relations/css-styling/table-width-4.html", + null, [ [ "/mathml/relations/css-styling/table-width-4-ref.html", @@ -337163,7 +341241,7 @@ "transform.html": [ "c45fda3469b56cf7b0e2fcee9c434e3a5401817a", [ - "mathml/relations/css-styling/transform.html", + null, [ [ "/mathml/relations/css-styling/transform-ref.html", @@ -337176,7 +341254,7 @@ "visibility-001.html": [ "56bf7b7da20a690162e98cbfcfd272885374bd14", [ - "mathml/relations/css-styling/visibility-001.html", + null, [ [ "/mathml/relations/css-styling/visibility-001-ref.html", @@ -337189,7 +341267,7 @@ "visibility-002.html": [ "f92d0faf6d8f30cdb20589949b29f9eb424bd443", [ - "mathml/relations/css-styling/visibility-002.html", + null, [ [ "/mathml/relations/css-styling/visibility-002-ref.html", @@ -337202,7 +341280,7 @@ "visibility-003.html": [ "4bf4d45c815e5bc6d5152d1fe3f33d96bea97e27", [ - "mathml/relations/css-styling/visibility-003.html", + null, [ [ "/mathml/relations/css-styling/visibility-003-ref.html", @@ -337215,7 +341293,7 @@ "visibility-004.tentative.html": [ "28678eaf0c06f033beba23321ee35f00a5eb0864", [ - "mathml/relations/css-styling/visibility-004.tentative.html", + null, [ [ "/mathml/relations/css-styling/visibility-004.tentative-ref.html", @@ -337228,7 +341306,7 @@ "visibility-005.html": [ "a3af376fea9f114e45c3d517f04c5977981c1114", [ - "mathml/relations/css-styling/visibility-005.html", + null, [ [ "/mathml/relations/css-styling/visibility-005-ref.html", @@ -337241,7 +341319,7 @@ "width-height-002.html": [ "99822c1ed997f00795183b6ed905066527dfb17a", [ - "mathml/relations/css-styling/width-height-002.html", + null, [ [ "/mathml/relations/css-styling/width-height-002-ref.html", @@ -337254,7 +341332,7 @@ "width-height-003.html": [ "05e00f4759b2f7a4b38262353d9c8de6ba6981c0", [ - "mathml/relations/css-styling/width-height-003.html", + null, [ [ "/mathml/relations/css-styling/width-height-003-ref.html", @@ -337284,7 +341362,7 @@ "class-1.html": [ "fd1678d4403683fbe72ea47fb7a6e190b6493de7", [ - "mathml/relations/html5-tree/class-1.html", + null, [ [ "/mathml/relations/html5-tree/class-1-ref.html", @@ -337297,7 +341375,7 @@ "color-attributes-1.html": [ "211bda7f851d62250e0b96a71251fc83e639aeb9", [ - "mathml/relations/html5-tree/color-attributes-1.html", + null, [ [ "/mathml/relations/html5-tree/color-attributes-1-ref.html", @@ -337310,7 +341388,7 @@ "css-inline-style-dynamic.tentative.html": [ "5d27d6a7e60a7ed40d7cb9bac0a8715488b41dd7", [ - "mathml/relations/html5-tree/css-inline-style-dynamic.tentative.html", + null, [ [ "/mathml/relations/html5-tree/css-inline-style-dynamic.tentative-ref.html", @@ -337323,7 +341401,7 @@ "display-2.html": [ "b4e79395a1c783e94b6681c7afa8bb51a76e0b0f", [ - "mathml/relations/html5-tree/display-2.html", + null, [ [ "/mathml/relations/html5-tree/display-2-ref.html", @@ -337336,7 +341414,7 @@ "dynamic-1.html": [ "59403196a85f191e7ea46e7b4da29d23cb1e1906", [ - "mathml/relations/html5-tree/dynamic-1.html", + null, [ [ "/mathml/relations/html5-tree/dynamic-1-ref.html", @@ -337349,7 +341427,7 @@ "dynamic-2.html": [ "8ad47c5cd99d57611132a6ee037a5c36e05dd218", [ - "mathml/relations/html5-tree/dynamic-2.html", + null, [ [ "/mathml/relations/html5-tree/dynamic-2-ref.html", @@ -337362,7 +341440,7 @@ "dynamic-mozilla-162063.xhtml": [ "73bb25fd6f6979f5453b7b6c42d11356add5520e", [ - "mathml/relations/html5-tree/dynamic-mozilla-162063.xhtml", + null, [ [ "about:blank", @@ -337372,26 +341450,26 @@ {} ] ], - "href-click-1.html": [ - "c3e605cb72716636ca845cacc820471016992d45", + "href-click-001.tentative.html": [ + "9e40c0b02e9cc857d8e51ae64ae06c05232c9a29", [ - "mathml/relations/html5-tree/href-click-1.html", + null, [ [ - "/mathml/relations/html5-tree/href-click-1-ref.html", + "/mathml/relations/html5-tree/href-click-001.tentative-ref.html", "==" ] ], {} ] ], - "href-click-2.html": [ - "8ffec61cc7c8f95a09d1b76be23654149712deaf", + "href-click-002.tentative.html": [ + "bc5b9a00cfa09410ccc2c5e09a806ff6b7fb4d28", [ - "mathml/relations/html5-tree/href-click-2.html", + null, [ [ - "/mathml/relations/html5-tree/href-click-2-ref.html", + "/mathml/relations/html5-tree/href-click-002.tentative-ref.html", "==" ] ], @@ -337401,7 +341479,7 @@ "integration-point-1.html": [ "bc725e9d1995b544f05f91ee0e220fedc754b954", [ - "mathml/relations/html5-tree/integration-point-1.html", + null, [ [ "/mathml/relations/html5-tree/integration-point-1-ref.html", @@ -337414,7 +341492,7 @@ "integration-point-2.html": [ "7e6c11a5ac193a36e2f82912cfd96f202877b020", [ - "mathml/relations/html5-tree/integration-point-2.html", + null, [ [ "/mathml/relations/html5-tree/integration-point-2-ref.html", @@ -337427,7 +341505,7 @@ "integration-point-3.html": [ "4c6f89ee9389bfa3ec14895c6873857c07764dac", [ - "mathml/relations/html5-tree/integration-point-3.html", + null, [ [ "/mathml/relations/html5-tree/integration-point-3-ref.html", @@ -337437,10 +341515,23 @@ {} ] ], + "link-color-001.tentative.html": [ + "5f0adc42c70398581ffb4224004106cba053016b", + [ + null, + [ + [ + "/mathml/relations/html5-tree/link-color-001.tentative-ref.html", + "!=" + ] + ], + {} + ] + ], "required-extensions-2.html": [ "738f1255077be3a412f7e282cc232d38a2746880", [ - "mathml/relations/html5-tree/required-extensions-2.html", + null, [ [ "/mathml/relations/html5-tree/required-extensions-2-ref.html", @@ -337453,7 +341544,7 @@ "shadow-dom-mozilla-1066554.html": [ "563ceb29e50016e04ce2270ecb26344b6a2f26da", [ - "mathml/relations/html5-tree/shadow-dom-mozilla-1066554.html", + null, [ [ "/mathml/relations/html5-tree/shadow-dom-mozilla-1066554-ref.html", @@ -337466,7 +341557,7 @@ "unique-identifier-1.html": [ "f5de2757c313a1788c78adcfb04da0b6b6e9ab28", [ - "mathml/relations/html5-tree/unique-identifier-1.html", + null, [ [ "/mathml/relations/html5-tree/unique-identifier-1-ref.html", @@ -337479,7 +341570,7 @@ "unique-identifier-3.html": [ "306ce41e25ccb2b5131ce9d083bd1be245b893e6", [ - "mathml/relations/html5-tree/unique-identifier-3.html", + null, [ [ "/mathml/relations/html5-tree/unique-identifier-3-ref.html", @@ -337494,7 +341585,7 @@ "mi-automatic-italic-with-default-font.html": [ "501992141076b76b994db5ad9d89819ef91c7ecb", [ - "mathml/relations/text-and-math/mi-automatic-italic-with-default-font.html", + null, [ [ "/mathml/relations/text-and-math/mi-automatic-italic-with-default-font-ref.html", @@ -337504,10 +341595,23 @@ {} ] ], + "mo-glyph-height-with-default-font.html": [ + "262d3b927774a539f21530ae3c24327b79abcc63", + [ + null, + [ + [ + "/mathml/relations/text-and-math/mo-glyph-height-with-default-font-ref.html", + "==" + ] + ], + {} + ] + ], "use-typo-metrics-1.html": [ "1af8fdfde16ae9ec3d85aa7abf325536baed31f7", [ - "mathml/relations/text-and-math/use-typo-metrics-1.html", + null, [ [ "/mathml/relations/text-and-math/use-typo-metrics-1-ref.html", @@ -337542,7 +341646,7 @@ "acTL-plays-one.html": [ "9012e0e56ac962187f8b79a16ea87c1e94e59c93", [ - "png/apng/acTL-plays-one.html", + null, [ [ "/png/apng/apng-blue-rectangle-one-ref.html", @@ -337555,7 +341659,7 @@ "acTL-plays-two.html": [ "147b57957e8db600eec70db291c3f867db44f9c6", [ - "png/apng/acTL-plays-two.html", + null, [ [ "/png/apng/apng-blue-rectangle-ref.html", @@ -337565,10 +341669,23 @@ {} ] ], + "fDAT-inherits-cICP.html": [ + "14f0e501e7f367b6a896677a9982501d7035c9d3", + [ + null, + [ + [ + "/png/apng/apng-lime-rectangle-ref.html", + "==" + ] + ], + {} + ] + ], "fcTL-acTL-ordering.html": [ "9d9856d9857569e97d0240b3f0bd45f389eb3772", [ - "png/apng/fcTL-acTL-ordering.html", + null, [ [ "/png/apng/apng-lime-rectangle-ref.html", @@ -337581,7 +341698,7 @@ "fcTL-blend-over-repeatedly.html": [ "cb42a037a915a34c6e4a10abb3825ec77054297f", [ - "png/apng/fcTL-blend-over-repeatedly.html", + null, [ [ "/png/apng/apng-lime-rectangle-ref.html", @@ -337594,7 +341711,7 @@ "fcTL-blend-over-solid.html": [ "45d7917376526c0155c15a57e35cb8228bfc286f", [ - "png/apng/fcTL-blend-over-solid.html", + null, [ [ "/png/apng/apng-lime-rectangle-ref.html", @@ -337607,7 +341724,7 @@ "fcTL-blend-source-nearly-transparent.html": [ "98205ca69bafea83d58fc32ae55b04f1f61315d8", [ - "png/apng/fcTL-blend-source-nearly-transparent.html", + null, [ [ "/png/apng/nearly-transparent-ref.html", @@ -337620,7 +341737,7 @@ "fcTL-blend-source-solid.html": [ "c00c478d4040de9b95b0d83eb54a1bd48da36c1b", [ - "png/apng/fcTL-blend-source-solid.html", + null, [ [ "/png/apng/apng-lime-rectangle-ref.html", @@ -337633,7 +341750,7 @@ "fcTL-blend-source-transparent.html": [ "1eab83d80db938d106f646b4073662401a3291c2", [ - "png/apng/fcTL-blend-source-transparent.html", + null, [ [ "/png/apng/apng-checkerboard-ref.html", @@ -337646,7 +341763,7 @@ "fcTL-dispose-background-final.html": [ "d56010eb3db94467c9687c5043f03a963e5b1a5c", [ - "png/apng/fcTL-dispose-background-final.html", + null, [ [ "/png/apng/apng-lime-rectangle-ref.html", @@ -337659,7 +341776,7 @@ "fcTL-dispose-background.html": [ "a68ed42b98e455ae09141c206fcb05e5ca01c9ae", [ - "png/apng/fcTL-dispose-background.html", + null, [ [ "/png/apng/apng-checkerboard-ref.html", @@ -337672,7 +341789,7 @@ "fcTL-dispose-before-region-background.html": [ "09570513cfa49b3d870c3869cb2ffd499b1267e5", [ - "png/apng/fcTL-dispose-before-region-background.html", + null, [ [ "/png/apng/apng-checkerboard-ref.html", @@ -337685,7 +341802,7 @@ "fcTL-dispose-in-region-background.html": [ "5f61da232d4bea8c5ecfb76d806b1435d4f1ed3d", [ - "png/apng/fcTL-dispose-in-region-background.html", + null, [ [ "/png/apng/apng-blue-rect-checkerboard-ref.html", @@ -337698,7 +341815,7 @@ "fcTL-dispose-in-region-none.html": [ "d0bd937e87332b1fc5d8c00f83b84cb624b801e2", [ - "png/apng/fcTL-dispose-in-region-none.html", + null, [ [ "/png/apng/apng-lime-rectangle-ref.html", @@ -337711,7 +341828,7 @@ "fcTL-dispose-in-region-previous.html": [ "0d15b3c66456f7d991843808977ff7020cbd80da", [ - "png/apng/fcTL-dispose-in-region-previous.html", + null, [ [ "/png/apng/apng-lime-rectangle-ref.html", @@ -337724,7 +341841,7 @@ "fcTL-dispose-none.html": [ "f41f17a7c2e8e8c2fd008be165cbbc2df77b183c", [ - "png/apng/fcTL-dispose-none.html", + null, [ [ "/png/apng/apng-lime-rectangle-ref.html", @@ -337737,7 +341854,7 @@ "fcTL-dispose-previous-final.html": [ "1862fcfad4caf198d630e1860ee8d7856307f83c", [ - "png/apng/fcTL-dispose-previous-final.html", + null, [ [ "/png/apng/apng-lime-rectangle-ref.html", @@ -337750,7 +341867,7 @@ "fcTL-dispose-previous-first.html": [ "c3a3ca9ddffdca38f1efecd0f8f0e2475de57f2b", [ - "png/apng/fcTL-dispose-previous-first.html", + null, [ [ "/png/apng/apng-checkerboard-ref.html", @@ -337763,7 +341880,7 @@ "fcTL-dispose-previous.html": [ "cf9c408d8e17af62bd16f72c44da8d1b4593ea3a", [ - "png/apng/fcTL-dispose-previous.html", + null, [ [ "/png/apng/apng-lime-rectangle-ref.html", @@ -337776,7 +341893,7 @@ "fdAT-16bit.html": [ "cc59528642438bbd8bd99e306703b9415ed59404", [ - "png/apng/fdAT-16bit.html", + null, [ [ "/png/apng/apng-darkblue-rectangle-ref.html", @@ -337789,7 +341906,7 @@ "fdAT-1bit-PLTE-tRNS.html": [ "da10d16f6af5cce23c5289e093889908c1709939", [ - "png/apng/fdAT-1bit-PLTE-tRNS.html", + null, [ [ "/png/apng/apng-darkblue-rectangle-ref.html", @@ -337802,7 +341919,7 @@ "fdAT-1bit-PLTE.html": [ "6b15b198fbe2c9d78a5a62fe98338b684e045cfe", [ - "png/apng/fdAT-1bit-PLTE.html", + null, [ [ "/png/apng/apng-solidlime-rectangle-ref.html", @@ -337815,7 +341932,7 @@ "fdAT-2bit-PLTE-tRNS.html": [ "5ab6f8e0d6f76a371b2755884d3d856c9a8eb779", [ - "png/apng/fdAT-2bit-PLTE-tRNS.html", + null, [ [ "/png/apng/apng-solidlime-rectangle-ref.html", @@ -337828,7 +341945,7 @@ "fdAT-8bit-gray-alpha.html": [ "1719ebd1b5c05705a585d12baef5a74abde410aa", [ - "png/apng/fdAT-8bit-gray-alpha.html", + null, [ [ "/png/apng/apng-solidgray-rectangle-ref.html", @@ -337841,7 +341958,7 @@ "fdAT-8bit-gray.html": [ "969a8867a86da389cea6ca09fed4b6853160be41", [ - "png/apng/fdAT-8bit-gray.html", + null, [ [ "/png/apng/apng-graywhite-rectangle-ref.html", @@ -337854,7 +341971,7 @@ "fdAT-split-basic.html": [ "1c718f0ce42eaccf71fd71763955cdb2d3784c17", [ - "png/apng/fdAT-split-basic.html", + null, [ [ "/png/apng/apng-lime-rectangle-ref.html", @@ -337867,7 +341984,7 @@ "fdAT-split-zero-length.html": [ "68ddec482c57a809011ea5618f4657b6e68054fc", [ - "png/apng/fdAT-split-zero-length.html", + null, [ [ "/png/apng/apng-lime-rectangle-ref.html", @@ -337880,7 +341997,7 @@ "first-frame-IDAT.html": [ "8231f66da71a3fe82bc95757cb6c013336f38ce2", [ - "png/apng/first-frame-IDAT.html", + null, [ [ "/png/apng/apng-lime-rectangle-ref.html", @@ -337893,7 +342010,7 @@ "first-frame-not-IDAT.html": [ "8abe46d339937aeb93694be9dd409b0628ee7fdb", [ - "png/apng/first-frame-not-IDAT.html", + null, [ [ "/png/apng/apng-lime-rectangle-ref.html", @@ -337903,6 +342020,47 @@ {} ] ] + }, + "cICP-wins.html": [ + "c2aa29e30465a2a1bdb5da7a1aed5b09064b1e6d", + [ + null, + [ + [ + "/png/cICP-wins-ref.html", + "==" + ] + ], + {} + ] + ], + "errors": { + "unknown-ancillary-error-recovery-2.html": [ + "23191fe39f714875f1692d9499f971e4254e288b", + [ + null, + [ + [ + "/png/errors/unknown-ancillary-error-recovery-2-ref.html", + "==" + ] + ], + {} + ] + ], + "unknown-ancillary-error-recovery.html": [ + "df37153fd76026be581c4da33f9df0fd60e2c05b", + [ + null, + [ + [ + "/png/errors/unknown-ancillary-error-recovery-ref.html", + "==" + ] + ], + {} + ] + ] } }, "preload": { @@ -337986,6 +342144,19 @@ {} ] ], + "class-names-across-iframes.html": [ + "a40a0e9dc5323001d2f32175680bf552c0de4742", + [ + null, + [ + [ + "/quirks/class-names-across-iframes-ref.html", + "==" + ] + ], + {} + ] + ], "dd-dl-firefox-001.html": [ "96fc76f08f45b800f5e210aee135bf880f8f2d32", [ @@ -338053,7 +342224,7 @@ {} ] ], - "line-height-in-list-item.tentative.html": [ + "line-height-in-list-item.html": [ "be655e51fc8f84d2d34930414de5428412f98b5b", [ null, @@ -338079,6 +342250,19 @@ {} ] ], + "line-height-preserved-segment-break.html": [ + "8ad2651f4b999091996682be72745e31e0ce559a", + [ + null, + [ + [ + "/css/reference/ref-filled-green-100px-square.xht", + "==" + ] + ], + {} + ] + ], "line-height-quirks-mode.html": [ "9e9baf62226dfccc15f81b6d22edb87a29e2d313", [ @@ -338192,7 +342376,7 @@ "devicepixel.html": [ "e92079bea529390e3441eb67ec7c248981ad765a", [ - "resize-observer/devicepixel.html", + null, [ [ "/resize-observer/devicepixel-ref.html", @@ -338234,7 +342418,7 @@ "animation-fill-outside-range-test.html": [ "90d4f4518b9360a0b5690fbc95a9b3a1fae932db", [ - "scroll-animations/css/animation-fill-outside-range-test.html", + null, [ [ "/scroll-animations/css/animation-fill-outside-range-ref.html", @@ -338247,7 +342431,7 @@ "animation-inactive-outside-range-test.html": [ "8034e451be59b5fea4f134744a11f5920010bf05", [ - "scroll-animations/css/animation-inactive-outside-range-test.html", + null, [ [ "/scroll-animations/css/animation-inactive-outside-range-ref.html", @@ -338258,9 +342442,9 @@ ] ], "animation-range-visual-test.html": [ - "1ff2b12d1f978303d3bf175742303a46c03cb091", + "8720bfbb7399f0cd010c3e4770ba179b96b5f285", [ - "scroll-animations/css/animation-range-visual-test.html", + null, [ [ "/scroll-animations/css/animation-range-visual-test-ref.html", @@ -338278,7 +342462,7 @@ ], [ 0, - 15 + 25 ] ] ] @@ -338289,7 +342473,7 @@ "deferred-timeline-composited.html": [ "e2437911b3993db5940e9113e077a005f71f7012", [ - "scroll-animations/css/deferred-timeline-composited.html", + null, [ [ "/scroll-animations/css/deferred-timeline-composited-ref.html", @@ -338302,7 +342486,7 @@ "scroll-animation-initial-offset.html": [ "34ae52d47927ee73c9c41c6f608bcd988e8f0cd7", [ - "scroll-animations/css/scroll-animation-initial-offset.html", + null, [ [ "/scroll-animations/css/scroll-animation-initial-offset-ref.html", @@ -338393,7 +342577,7 @@ "scroll-timeline-update-reversed-animation.html": [ "6bc18544f4ac7e61e98d5363520d3abaa1c48564", [ - "scroll-animations/css/scroll-timeline-update-reversed-animation.html", + null, [ [ "/scroll-animations/css/animation-update-ref.html?translate=55px&scroll=825", @@ -338404,9 +342588,9 @@ ] ], "view-timeline-range-update-reversed-animation.html": [ - "960a8e6ecfb90bf9c03178aab3fa8b3047c41dc3", + "be51998f2e0e2efe78f7a255a1d6343ad9b579bd", [ - "scroll-animations/css/view-timeline-range-update-reversed-animation.html", + null, [ [ "/scroll-animations/css/animation-update-ref.html?translate=60px", @@ -338419,7 +342603,7 @@ "view-timeline-range-update.html": [ "e1938caf5007daa13467a0197cb7a8ff674ecb51", [ - "scroll-animations/css/view-timeline-range-update.html", + null, [ [ "/scroll-animations/css/animation-update-ref.html?translate=40px", @@ -338432,7 +342616,7 @@ "view-timeline-subject-bounds-update.html": [ "2961fedd4258bc60a3a0a9e404e56a4c5bd7dd39", [ - "scroll-animations/css/view-timeline-subject-bounds-update.html", + null, [ [ "/scroll-animations/css/animation-update-ref.html?translate=100px&scroll=800", @@ -338447,7 +342631,7 @@ "animation-with-animatable-interface.html": [ "b04aaf2d336eeb3d7ddc8cfebbe4f902d3ef94f0", [ - "scroll-animations/scroll-timelines/animation-with-animatable-interface.html", + null, [ [ "/scroll-animations/scroll-timelines/animation-ref.html", @@ -338460,7 +342644,7 @@ "animation-with-display-none.html": [ "a62916833c24937bd25beed8e2e7ee383a4f5ee9", [ - "scroll-animations/scroll-timelines/animation-with-display-none.html", + null, [ [ "/scroll-animations/scroll-timelines/animation-ref.html", @@ -338473,7 +342657,7 @@ "animation-with-overflow-hidden.html": [ "bc7611d05a10883a46030fa96d4b710c1cc9adf2", [ - "scroll-animations/scroll-timelines/animation-with-overflow-hidden.html", + null, [ [ "/scroll-animations/scroll-timelines/animation-with-overflow-hidden-ref.html", @@ -338486,7 +342670,7 @@ "animation-with-root-scroller.html": [ "6ba1a22445f83c58f156599cec22665329a5d8e9", [ - "scroll-animations/scroll-timelines/animation-with-root-scroller.html", + null, [ [ "/scroll-animations/scroll-timelines/animation-with-root-scroller-ref.html", @@ -338499,7 +342683,7 @@ "animation-with-transform.html": [ "f741cc634d732624186d8d0a034822bef831c872", [ - "scroll-animations/scroll-timelines/animation-with-transform.html", + null, [ [ "/scroll-animations/scroll-timelines/animation-ref.html", @@ -338512,7 +342696,7 @@ "custom-property.html": [ "d6fdda6752224f72ae64e3c9cc89685bfbe78a57", [ - "scroll-animations/scroll-timelines/custom-property.html", + null, [ [ "/scroll-animations/scroll-timelines/custom-property-ref.html", @@ -338538,7 +342722,7 @@ "progress-based-effect-delay.tentative.html": [ "525d8448ffe73be5b62b3302946417c901ff860a", [ - "scroll-animations/scroll-timelines/progress-based-effect-delay.tentative.html", + null, [ [ "/scroll-animations/scroll-timelines/progress-based-effect-delay-ref.html", @@ -338551,7 +342735,7 @@ "set-current-time-before-play.html": [ "280346e755f0dede65035ca91731927726526b01", [ - "scroll-animations/scroll-timelines/set-current-time-before-play.html", + null, [ [ "/scroll-animations/scroll-timelines/animation-ref.html", @@ -338564,7 +342748,7 @@ "two-animations-attach-to-same-scroll-timeline-cancel-one.html": [ "ed8e8337a65af3033e3df4e158333d225d88a56d", [ - "scroll-animations/scroll-timelines/two-animations-attach-to-same-scroll-timeline-cancel-one.html", + null, [ [ "/scroll-animations/scroll-timelines/animation-ref.html", @@ -338577,7 +342761,7 @@ "two-animations-attach-to-same-scroll-timeline.html": [ "de50599fbafb634e44ccd9546e18bea8ba7f7f7e", [ - "scroll-animations/scroll-timelines/two-animations-attach-to-same-scroll-timeline.html", + null, [ [ "/scroll-animations/scroll-timelines/animation-ref.html", @@ -338592,7 +342776,7 @@ "range-boundary.html": [ "e2ca394ec0c9587b5e5b0be9eb1b2c3897a67764", [ - "scroll-animations/view-timelines/range-boundary.html", + null, [ [ "/scroll-animations/view-timelines/range-boundary-ref.html", @@ -338606,10 +342790,23 @@ }, "selection": { "caret": { + "after-designMode-off.html": [ + "c5ccd66cc4b77650095929aaaea39038073d653a", + [ + null, + [ + [ + "/selection/caret/after-designMode-off-ref.html", + "==" + ] + ], + {} + ] + ], "collapse-pre-linestart-1.html": [ "e8bd262868cb1bdc2734a50a934d3222e6d69fe0", [ - "selection/caret/collapse-pre-linestart-1.html", + null, [ [ "/selection/caret/collapse-pre-linestart-ref.html", @@ -338622,7 +342819,7 @@ "collapse-pre-linestart-2.html": [ "0feee464c98a66a73eb718dbaf76061a67a08610", [ - "selection/caret/collapse-pre-linestart-2.html", + null, [ [ "/selection/caret/collapse-pre-linestart-ref.html", @@ -338632,6 +342829,125 @@ {} ] ] + }, + "shadow-dom": { + "cross-shadow-boundary-1.html": [ + "58d7e9f8e46add45e9c60a0701f316fe560ef54a", + [ + null, + [ + [ + "/selection/shadow-dom/cross-shadow-boundary-1-ref.html", + "==" + ] + ], + {} + ] + ], + "cross-shadow-boundary-2.html": [ + "e0d3a14f489bca7aaedb3f822153355c64e5f11b", + [ + null, + [ + [ + "/selection/shadow-dom/cross-shadow-boundary-2-ref.html", + "==" + ] + ], + {} + ] + ], + "cross-shadow-boundary-3.html": [ + "3eb2ab37b1634ef18a369985935fae25d5169dd5", + [ + null, + [ + [ + "/selection/shadow-dom/cross-shadow-boundary-3-ref.html", + "==" + ] + ], + {} + ] + ], + "cross-shadow-boundary-4.html": [ + "a93bf77aaadc4a8f632404f205266cc15881493c", + [ + null, + [ + [ + "/selection/shadow-dom/cross-shadow-boundary-3-ref.html", + "==" + ] + ], + {} + ] + ], + "cross-shadow-boundary-5.html": [ + "75c0525ade09ac8cf3880481fc45541d6b98615f", + [ + null, + [ + [ + "/selection/shadow-dom/cross-shadow-boundary-5-ref.html", + "==" + ] + ], + {} + ] + ], + "cross-shadow-boundary-6.html": [ + "cc264a66686dc3425099461f02cc4b51be1ab663", + [ + null, + [ + [ + "/selection/shadow-dom/cross-shadow-boundary-6-ref.html", + "==" + ] + ], + {} + ] + ], + "cross-shadow-boundary-img.html": [ + "46e8d70833207d16c115b4772af33f94d4654dcd", + [ + null, + [ + [ + "/selection/shadow-dom/cross-shadow-boundary-img-ref.html", + "==" + ] + ], + {} + ] + ], + "cross-shadow-boundary-select-document.html": [ + "9eb298abbf5c9cbdff1a9aa765bed6e2ef45a3e9", + [ + null, + [ + [ + "/selection/shadow-dom/cross-shadow-boundary-select-document-ref.html", + "==" + ] + ], + {} + ] + ], + "cross-shadow-boundary-select-root.html": [ + "f64dd0f3b086c3d27295d4562f4e9528897e57f1", + [ + null, + [ + [ + "/selection/shadow-dom/cross-shadow-boundary-select-root-ref.html", + "==" + ] + ], + {} + ] + ] } }, "service-workers": { @@ -338695,7 +343011,7 @@ "focus-pseudo-on-shadow-host-2.html": [ "f119008ee3bb33db70241afcbcc4c17cde8a2b0f", [ - "shadow-dom/focus/focus-pseudo-on-shadow-host-2.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -338966,11 +343282,24 @@ }, "svg": { "animations": { + "conditional-processing-01.html": [ + "fe3958f71f3ba6fdc37b65afd02aeabe5dc88bb7", + [ + null, + [ + [ + "/svg/struct/reftests/reference/green-100x100.html", + "==" + ] + ], + {} + ] + ], "scripted": { "animateMotion-animated-line.svg": [ "5e853dab03a547f2e963e0ecc51048a9ea3ea307", [ - "svg/animations/scripted/animateMotion-animated-line.svg", + null, [ [ "/svg/embedded/reference/green-rect-100x100.svg", @@ -338983,7 +343312,7 @@ "clear-mapped-animation.svg": [ "518fe6129faa2e00de0e30442eacc59dbee37527", [ - "svg/animations/scripted/clear-mapped-animation.svg", + null, [ [ "/svg/embedded/reference/green-rect-100x100.svg", @@ -338994,10 +343323,49 @@ ] ] }, + "stop-animation-01.html": [ + "d240c51142abb4e96d88b9bcc341c03d70d9d3ee", + [ + null, + [ + [ + "/svg/struct/reftests/reference/green-100x100.html", + "==" + ] + ], + {} + ] + ], + "switch-animation-01.html": [ + "f33becbb6556a04ae4b3cde31e86d835dd416140", + [ + null, + [ + [ + "/svg/struct/reftests/reference/green-100x100.html", + "==" + ] + ], + {} + ] + ], + "switch-animation-02.html": [ + "c0b97a2cd2af0392ccfb284ccdef877f5941e2a0", + [ + null, + [ + [ + "/svg/struct/reftests/reference/green-100x100.html", + "==" + ] + ], + {} + ] + ], "use-animate-display-none-symbol-2.html": [ "db06b641d9a60b094aee40a3930fd7229fcdb0d5", [ - "svg/animations/use-animate-display-none-symbol-2.html", + null, [ [ "/svg/struct/reftests/reference/green-100x100.html", @@ -339021,19 +343389,6 @@ ] ] }, - "color-inherit-link-visited.svg": [ - "9324f1116b0ec7a0362c081085ed6f6cc5556c67", - [ - "svg/color-inherit-link-visited.svg", - [ - [ - "/svg/color-inherit-link-visited-ref.svg", - "==" - ] - ], - {} - ] - ], "coordinate-systems": { "abspos.html": [ "fb37bbe7f3ae4a61d1c216970c8a263673aed0dc", @@ -339051,7 +343406,7 @@ "outer-svg-intrinsic-size-003.html": [ "25549ef14ee705ff79e22e022690dde50fadc59d", [ - "svg/coordinate-systems/outer-svg-intrinsic-size-003.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -339064,7 +343419,7 @@ "outer-svg-intrinsic-size-004.html": [ "5cccbf750f5c637bea08847f8724f30e67a3d11f", [ - "svg/coordinate-systems/outer-svg-intrinsic-size-004.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -339077,7 +343432,7 @@ "outer-svg-intrinsic-size-005.html": [ "8e80e1c63b898885edaddb34e001f9c5974072e0", [ - "svg/coordinate-systems/outer-svg-intrinsic-size-005.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -339209,7 +343564,7 @@ "image-embedding-svg-with-near-integral-width.html": [ "8f3ecab44105bb66c1e089b600901e6d3ab529e1", [ - "svg/embedded/image-embedding-svg-with-near-integral-width.html", + null, [ [ "/svg/embedded/image-embedding-svg-with-near-integral-width-ref.html", @@ -339257,6 +343612,84 @@ ], {} ] + ], + "image-modify-href-1.svg": [ + "20bc1567eafdbb66ed52ea99fe18e8458878e58c", + [ + null, + [ + [ + "/svg/embedded/reference/green-rect-100x100.svg", + "==" + ] + ], + {} + ] + ], + "image-modify-href-2.svg": [ + "0b028ce188dc234ef4750aa27e1fde20259b2b1e", + [ + null, + [ + [ + "/svg/embedded/reference/green-rect-100x100.svg", + "==" + ] + ], + {} + ] + ], + "image-modify-href-3.svg": [ + "533a28ebb2b3c7fa3f9fe084891aa5de9770f876", + [ + null, + [ + [ + "/svg/embedded/reference/green-rect-100x100.svg", + "==" + ] + ], + {} + ] + ], + "image-remove-href-1.svg": [ + "f35fa08f561dc38363d5c83918ec789fbc523b60", + [ + null, + [ + [ + "/svg/embedded/reference/green-rect-100x100.svg", + "==" + ] + ], + {} + ] + ], + "image-remove-href-2.svg": [ + "7db8454f3b62fc983cd52505a080b0d33042039e", + [ + null, + [ + [ + "/svg/embedded/reference/green-rect-100x100.svg", + "==" + ] + ], + {} + ] + ], + "image-remove-href-3.svg": [ + "885a3baa6e9fd64bc5fae1d2c3404edc2e3ac0fa", + [ + null, + [ + [ + "/svg/embedded/reference/green-rect-100x100.svg", + "==" + ] + ], + {} + ] ] }, "extensibility": { @@ -339303,7 +343736,7 @@ "foreign-object-containing-svg-in-svg-in-object.html": [ "311697dd7bf135142f0920e108e2b0f726f39591", [ - "svg/extensibility/foreignObject/foreign-object-containing-svg-in-svg-in-object.html", + null, [ [ "/svg/struct/reftests/reference/green-100x100.html", @@ -339407,7 +343840,7 @@ "masked.html": [ "a4ca2fd8521f06808d4c2515ce007027ebcac2a4", [ - "svg/extensibility/foreignObject/masked.html", + null, [ [ "/svg/extensibility/foreignObject/masked-ref.html", @@ -339518,7 +343951,7 @@ "circle-001.svg": [ "4ece9da683b8c6cac33886a451155ab6297413ad", [ - "svg/geometry/reftests/circle-001.svg", + null, [ [ "/svg/geometry/reftests/circle-ref.svg", @@ -339547,7 +343980,7 @@ "circle-002.svg": [ "d9dd067b0484e5056eac72c151337cf44b349356", [ - "svg/geometry/reftests/circle-002.svg", + null, [ [ "/svg/geometry/reftests/circle-ref.svg", @@ -339576,7 +344009,7 @@ "circle-003.svg": [ "5cd5cbf3a5c0d35345a14afaa38482dd480f73ff", [ - "svg/geometry/reftests/circle-003.svg", + null, [ [ "/svg/geometry/reftests/circle-ref.svg", @@ -339605,7 +344038,7 @@ "circle-004.svg": [ "1027078953d43716bb7dd230a8b1e22eb68fd77c", [ - "svg/geometry/reftests/circle-004.svg", + null, [ [ "/svg/geometry/reftests/circle-ref.svg", @@ -339660,7 +344093,7 @@ "ellipse-002.svg": [ "86c40f389735c3fc132a206a3105e613d4e54de6", [ - "svg/geometry/reftests/ellipse-002.svg", + null, [ [ "/svg/geometry/reftests/ellipse-ref.svg", @@ -339689,7 +344122,7 @@ "ellipse-003.svg": [ "a4f0ed141c583d6f7047d3526d4aad0d68e5fdef", [ - "svg/geometry/reftests/ellipse-003.svg", + null, [ [ "/svg/geometry/reftests/ellipse-ref.svg", @@ -339809,10 +344242,23 @@ } }, "layout": { + "svg-embed-intrinsic-size-min-size.html": [ + "79dfb07b42bb4f60c56033ac1fcb5e7f0eb33ec8", + [ + null, + [ + [ + "/svg/layout/svg-intrinsic-size-min-size-ref.html", + "==" + ] + ], + {} + ] + ], "svg-foreign-relayout-001.html": [ "2c8a8141526d0ddf759f32d038754ec919d93435", [ - "svg/layout/svg-foreign-relayout-001.html", + null, [ [ "/css/reference/ref-filled-green-100px-square-only.html", @@ -339825,7 +344271,7 @@ "svg-foreign-relayout-002.html": [ "cebc2d492d6dce9f134261c07ae2d9f68aa1b867", [ - "svg/layout/svg-foreign-relayout-002.html", + null, [ [ "/css/reference/ref-filled-green-100px-square-only.html", @@ -339838,7 +344284,7 @@ "svg-intrinsic-size-invalidation.html": [ "7c3daf8e5c0c4b4c4cbb1f2ca38f237b480f8c9c", [ - "svg/layout/svg-intrinsic-size-invalidation.html", + null, [ [ "/svg/layout/svg-intrinsic-size-invalidation-ref.html", @@ -339848,6 +344294,19 @@ {} ] ], + "svg-intrinsic-size-min-size.html": [ + "41c68e56e1e92afb164c46a6c19f6391eff6bd6b", + [ + null, + [ + [ + "/svg/layout/svg-intrinsic-size-min-size-ref.html", + "==" + ] + ], + {} + ] + ], "svg-with-precent-dimensions-relayout.html": [ "9d04f412b70ad3038bde08b31bf981b7f65619bb", [ @@ -339970,24 +344429,11 @@ ], "svgview-viewbox-override-multiple.html": [ "a071084a0589bd37e7300bf1cd8770ac384d27e1", - [ - "svg/linking/reftests/svgview-viewbox-override-multiple.html", - [ - [ - "/svg/struct/reftests/reference/green-100x100.html", - "==" - ] - ], - {} - ] - ], - "url-processing-invalid-base.svg": [ - "fc5d7c6b0620da9b775f461359444979e2868245", [ null, [ [ - "/svg/linking/reftests/reference/green-100x100.svg", + "/svg/struct/reftests/reference/green-100x100.html", "==" ] ], @@ -340140,7 +344586,7 @@ "use-template.html": [ "1c07415442d690485ba706f613fbd2ccafd72909", [ - "svg/linking/reftests/use-template.html", + null, [ [ "/svg/linking/reftests/use-template-ref.html", @@ -340153,7 +344599,7 @@ "view-viewbox-override.html": [ "83976f4d1363177a789eb6d80a86a18c015914d3", [ - "svg/linking/reftests/view-viewbox-override.html", + null, [ [ "/svg/struct/reftests/reference/green-100x100.html", @@ -340169,7 +344615,7 @@ "color-interpolation-001.svg": [ "78f0cd4084fdd6d5b3bc71f9699dc53903e5cd52", [ - "svg/painting/color-interpolation-001.svg", + null, [ [ "/svg/struct/reftests/reference/green-100x100.svg", @@ -340182,7 +344628,7 @@ "color-mix-currentcolor-fill-stroke-repaint.html": [ "70e9013ac456dc8e7f06669d32e38b24a0219942", [ - "svg/painting/color-mix-currentcolor-fill-stroke-repaint.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -340234,7 +344680,7 @@ "currentcolor-fill-stroke-repaint.html": [ "4b08e1b857442adab324da93c7259f16e30cde79", [ - "svg/painting/currentcolor-fill-stroke-repaint.html", + null, [ [ "/css/reference/ref-filled-green-100px-square.xht", @@ -340336,7 +344782,7 @@ ] ], "marker-007.svg": [ - "c7812203787a02db8f8e8ae005b4be54605dbf7e", + "e7df9945c4873079f94a2545f1f30ccfdf213936", [ null, [ @@ -340345,7 +344791,23 @@ "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 1 + ], + [ + 0, + 10 + ] + ] + ] + ] + } ] ], "marker-008.svg": [ @@ -340440,8 +344902,21 @@ {} ] ], + "marker-implicit-subpaths.html": [ + "7f87ae05e6f3463892d5868865c7088c4edfd580", + [ + null, + [ + [ + "/svg/struct/reftests/reference/green-100x100.html", + "==" + ] + ], + {} + ] + ], "marker-path-001.svg": [ - "7fb4adf4277321eb69e50fecb9018c1950aef4ca", + "75bc5703b7b0851b92727cb00f078960346ce500", [ null, [ @@ -340450,7 +344925,23 @@ "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 8 + ], + [ + 0, + 8 + ] + ] + ] + ] + } ] ], "marker-path-002.svg": [ @@ -340612,7 +345103,7 @@ "mask-percentage.html": [ "e9cd0977413b5b6043ac7f4b703c6d25bfed9fd0", [ - "svg/painting/reftests/mask-percentage.html", + null, [ [ "/svg/painting/reftests/mask-percentage-ref.html", @@ -340622,8 +345113,60 @@ {} ] ], + "non-scaling-stroke-001.html": [ + "a9870ac8bb22094ecb4664228d185fe803758365", + [ + null, + [ + [ + "/svg/painting/reftests/green-100x100.svg", + "==" + ] + ], + {} + ] + ], + "non-scaling-stroke-002.html": [ + "bdb31c286097825c0af01d990a4019d6242bf2c8", + [ + null, + [ + [ + "/svg/painting/reftests/green-100x100.svg", + "==" + ] + ], + {} + ] + ], + "non-scaling-stroke-003.html": [ + "4fec5711d6c46e1da279f3cbd24da0a45a723e08", + [ + null, + [ + [ + "/svg/painting/reftests/green-100x100.svg", + "==" + ] + ], + {} + ] + ], + "non-scaling-stroke-004.html": [ + "32c745a4e2ecff16d94161539c1f88daba1f6102", + [ + "svg/painting/reftests/non-scaling-stroke-004.html", + [ + [ + "/svg/painting/reftests/green-100x100.svg", + "==" + ] + ], + {} + ] + ], "paint-context-001.svg": [ - "fd58d9b790a512940e2d8244148a3c62fb107898", + "7be33cb20fb257496cb1357a5481edecf364bc59", [ null, [ @@ -340648,6 +345191,71 @@ {} ] ], + "paint-context-003.svg": [ + "be1f378bf820b42770d3f8c89ccd2cbe250e6b4d", + [ + null, + [ + [ + "/svg/painting/reftests/paint-context-003-ref.svg", + "==" + ] + ], + {} + ] + ], + "paint-context-004.svg": [ + "669d44de46bc0f06c979cf26e4db30657dad578e", + [ + null, + [ + [ + "/svg/painting/reftests/paint-context-004-ref.svg", + "==" + ] + ], + {} + ] + ], + "paint-context-006.svg": [ + "95bd2740fae3f9fc3dc4a6043e32967403b05f6d", + [ + null, + [ + [ + "/svg/painting/reftests/paint-context-006-ref.svg", + "==" + ] + ], + {} + ] + ], + "paint-context-007.svg": [ + "50360a302e3a3d2ca74b465122d322a25abf743a", + [ + null, + [ + [ + "/svg/painting/reftests/paint-context-007-ref.svg", + "==" + ] + ], + {} + ] + ], + "paint-context-008.svg": [ + "83308f09b1fc95d538ee078ff9acbf7e7def307e", + [ + null, + [ + [ + "/svg/painting/reftests/paint-context-008-ref.svg", + "==" + ] + ], + {} + ] + ], "paint-order-001.svg": [ "c8d60bd5bf68d0dc5f56fb360acdd2bac5aa1aa2", [ @@ -340661,6 +345269,45 @@ {} ] ], + "paint-order-002.svg": [ + "a9bf7d01fc7300b95b03529743c1f9b6ad655c19", + [ + null, + [ + [ + "/svg/painting/reftests/paint-order-002-ref.svg", + "==" + ] + ], + {} + ] + ], + "paint-order-003.svg": [ + "f1962600744bafb99f11e03e4c2bf67a1a7c0470", + [ + null, + [ + [ + "/svg/painting/reftests/paint-order-003-ref.svg", + "==" + ] + ], + {} + ] + ], + "paintorder-text-decorations.svg": [ + "5b313220bd30a11aceaba1a45bcbaab44207ff9a", + [ + null, + [ + [ + "/svg/painting/reftests/paintorder-text-decorations-ref.svg", + "==" + ] + ], + {} + ] + ], "percentage-attribute.svg": [ "d245999db08ec13ea34c6c832483d3c1135ceec0", [ @@ -340686,6 +345333,34 @@ ], {} ] + ], + "symbol-in-mask.html": [ + "da1e11f1704468c2ec77476ea1c566299737d9f9", + [ + null, + [ + [ + "/svg/painting/reftests/green-100x100.svg", + "==" + ] + ], + {} + ] + ] + }, + "scripted": { + "marker-element-added.html": [ + "39d3cb190cdc73265701c86c623992803484d678", + [ + null, + [ + [ + "/svg/struct/reftests/reference/green-100x100.html", + "==" + ] + ], + {} + ] ] }, "subpixel-clip-path-transform.html": [ @@ -340985,6 +345660,19 @@ ] }, "property": { + "d-none.svg": [ + "6f82a06a0d76ac0215e4eae8267b767efbd20051", + [ + null, + [ + [ + "/svg/path/property/d-none-ref.svg", + "==" + ] + ], + {} + ] + ], "marker-path.svg": [ "c03e9c515c478dc6c46521b0867ec714d55e13e9", [ @@ -341031,7 +345719,7 @@ "gradient-color-interpolation.svg": [ "f7959437734230d394197d1837be2ba6ffaa7d3c", [ - "svg/pservers/reftests/gradient-color-interpolation.svg", + null, [ [ "/svg/pservers/reftests/reference/gradient-color-interpolation-ref.svg", @@ -341057,6 +345745,45 @@ } ] ], + "gradient-transform-01.svg": [ + "310cb7de513e0c63684650a1eb25d89cad685fcd", + [ + null, + [ + [ + "/svg/pservers/reftests/reference/green-100x100.svg", + "==" + ] + ], + {} + ] + ], + "gradient-transform-02.svg": [ + "1ce1006b8399f9aaba85328cdfb6109dfe9a30f7", + [ + null, + [ + [ + "/svg/pservers/reftests/reference/green-100x100.svg", + "==" + ] + ], + {} + ] + ], + "gradient-transform-03.svg": [ + "25e304614dbe43422e5d0daa9b9e03f9944aabe0", + [ + null, + [ + [ + "/svg/pservers/reftests/reference/green-100x100.svg", + "==" + ] + ], + {} + ] + ], "meshgradient-basic-001.svg": [ "24290d40d6c37583d86aae4a098293c6cb8a6653", [ @@ -341164,7 +345891,7 @@ "pattern-opacity-01.svg": [ "eb2d2d7e9a9a7776e5ffeeaf51ba992204a70fc4", [ - "svg/pservers/reftests/pattern-opacity-01.svg", + null, [ [ "/svg/pservers/reftests/reference/pattern-opacity-01-ref.svg", @@ -341177,7 +345904,7 @@ "pattern-text-01.svg": [ "16c053590d0df65c01f57e3b454793bc93fbbc0a", [ - "svg/pservers/reftests/pattern-text-01.svg", + null, [ [ "/svg/pservers/reftests/reference/green-100x100.svg", @@ -341190,7 +345917,7 @@ "pattern-transform-01.svg": [ "e3db18f2ed2762bd24a3cc51b7304888f4b0a53c", [ - "svg/pservers/reftests/pattern-transform-01.svg", + null, [ [ "/svg/pservers/reftests/reference/pattern-transform-01-ref.svg", @@ -341200,10 +345927,36 @@ {} ] ], + "pattern-transform-02.svg": [ + "93acd1d6273604a82d91eedd197d5cf8bebc031f", + [ + null, + [ + [ + "/svg/pservers/reftests/reference/green-100x100.svg", + "==" + ] + ], + {} + ] + ], + "pattern-transform-03.svg": [ + "b2e0e7aaa2ef1b107586ea03230dc173d1133de1", + [ + null, + [ + [ + "/svg/pservers/reftests/reference/green-100x100.svg", + "==" + ] + ], + {} + ] + ], "pattern-viewbox-01.svg": [ "618b8fc29e69d2624d5556d6bbcdba600ce21a4a", [ - "svg/pservers/reftests/pattern-viewbox-01.svg", + null, [ [ "/svg/pservers/reftests/reference/pattern-viewbox-01-ref.svg", @@ -341257,7 +346010,7 @@ "pattern-transform-clear.svg": [ "6800fd8d20dfe3222f782140ca6106f3864e3db6", [ - "svg/pservers/scripted/pattern-transform-clear.svg", + null, [ [ "/svg/pservers/reftests/reference/green-100x100.svg", @@ -341270,6 +346023,34 @@ } }, "render": { + "order": { + "clip-path-filter-order.svg": [ + "22cda52d68145da9482abea0da2bedbf3691e82d", + [ + null, + [ + [ + "/svg/render/order/clip-path-filter-order-ref.svg", + "==" + ] + ], + {} + ] + ], + "z-index.svg": [ + "786290a158b99a727bf26c4a30556246d30af8dc", + [ + null, + [ + [ + "/svg/render/order/z-index-ref.svg", + "==" + ] + ], + {} + ] + ] + }, "reftests": { "blending-001.svg": [ "f8fcf9fae49363d94157b1a5c9c50e8d6c997d15", @@ -341390,36 +346171,6 @@ ] } }, - "rendering": { - "order": { - "clip-path-filter-order.svg": [ - "22cda52d68145da9482abea0da2bedbf3691e82d", - [ - null, - [ - [ - "/svg/rendering/order/clip-path-filter-order-ref.svg", - "==" - ] - ], - {} - ] - ], - "z-index.svg": [ - "786290a158b99a727bf26c4a30556246d30af8dc", - [ - null, - [ - [ - "/svg/rendering/order/z-index-ref.svg", - "==" - ] - ], - {} - ] - ] - } - }, "scripted": { "script-style-attribute-csp.html": [ "a70138d98ac6fcd01ab14830acd833a154d6cf41", @@ -341647,7 +346398,7 @@ "rect-rx-set-by-css.svg": [ "375147a7d2045d0c7fcb1cfd3a7b069a3c645d79", [ - "svg/shapes/rect-rx-set-by-css.svg", + null, [ [ "/svg/shapes/rect-rx-set-by-css-ref.svg", @@ -341753,6 +346504,19 @@ {} ] ], + "gradient-in-symbol.svg": [ + "be0f4ff895315f4382863ba37d376fd29aa42184", + [ + null, + [ + [ + "/svg/struct/reftests/reference/green-100x100.svg", + "==" + ] + ], + {} + ] + ], "nested-svg-through-display-contents.svg": [ "1be64d5242f9f65f53cd079df270c8a2232b741b", [ @@ -341795,7 +346559,7 @@ "svg-getIntersectionList-001.svg": [ "20958dd76b88d3256460ed3434ab64ad66a08d6d", [ - "svg/struct/reftests/svg-getIntersectionList-001.svg", + null, [ [ "/svg/struct/reftests/reference/green-100x100.svg", @@ -341808,7 +346572,7 @@ "use-a.svg": [ "40d4c83f21faccfddb50c683c2a0b0c42a585935", [ - "svg/struct/reftests/use-a.svg", + null, [ [ "/svg/struct/reftests/reference/green-100x100.svg", @@ -341847,7 +346611,7 @@ "use-data-url-set-attributeName.tentative.svg": [ "248f218bd792e1ffd07711095b3612c45ecb7a6c", [ - "svg/struct/reftests/use-data-url-set-attributeName.tentative.svg", + null, [ [ "/svg/struct/reftests/reference/green-100x100.svg", @@ -341860,7 +346624,7 @@ "use-data-url-setAttribute.tentative.html": [ "b28dd0ecf5b9e798ad8af8c5d6e2c01aea07b7e6", [ - "svg/struct/reftests/use-data-url-setAttribute.tentative.html", + null, [ [ "/svg/struct/reftests/reference/green-100x100.html", @@ -341886,7 +346650,7 @@ "use-encoding.svg": [ "e376fa18b776fac3af12cd159de0307cb1ac5f6d", [ - "svg/struct/reftests/use-encoding.svg", + null, [ [ "/svg/struct/reftests/reference/green-100x100.svg", @@ -341896,6 +346660,84 @@ {} ] ], + "use-external-html-resource-with-content-type-svg.html": [ + "bc2ac83978ba30925b0be630a88cd027b4b1d441", + [ + null, + [ + [ + "/svg/struct/reftests/reference/green-100x100.html", + "==" + ] + ], + {} + ] + ], + "use-external-html-resource-with-doctype.html": [ + "c0aba28334e382bc597836df747e0b3f796079db", + [ + null, + [ + [ + "/svg/struct/reftests/reference/green-100x100.html", + "==" + ] + ], + {} + ] + ], + "use-external-html-resource.html": [ + "7e79ea1ff76d7d0cd1086912f116cf85d703f9cd", + [ + null, + [ + [ + "/svg/struct/reftests/reference/green-100x100.html", + "==" + ] + ], + {} + ] + ], + "use-external-resource-no-svg-root.html": [ + "444dbe843f1ca9f1154b3c112018d1e10c73e0df", + [ + null, + [ + [ + "/svg/struct/reftests/reference/green-100x100.html", + "==" + ] + ], + {} + ] + ], + "use-external-resource-target-pseudo-001.html": [ + "153aedba026055a9dba922ca08385090b9fe9880", + [ + null, + [ + [ + "/svg/struct/reftests/reference/green-100x100.html", + "==" + ] + ], + {} + ] + ], + "use-external-resource-target-pseudo-002.html": [ + "0a483aff54d4d9bb9fa363868630e485248e095a", + [ + null, + [ + [ + "/svg/struct/reftests/reference/green-100x100.html", + "==" + ] + ], + {} + ] + ], "use-external-resource-with-revalidation.tentative.html": [ "d899165fa9ccef15d893b599ec6a8f4e005bcb36", [ @@ -341925,7 +346767,7 @@ "use-inheritance-nth-child-of.svg": [ "1c4a39540760f8215c81bf7076ccd601263db47a", [ - "svg/struct/reftests/use-inheritance-nth-child-of.svg", + null, [ [ "/svg/struct/reftests/reference/green-100x100.svg", @@ -341938,7 +346780,7 @@ "use-inheritance-nth-last-child-of.svg": [ "229be9cbf9dc880351e7df21e727ba5a034d665c", [ - "svg/struct/reftests/use-inheritance-nth-last-child-of.svg", + null, [ [ "/svg/struct/reftests/reference/green-100x100.svg", @@ -341951,7 +346793,7 @@ "use-no-tspan.svg": [ "5368ca343c869b0eb3c1cd42a77178df715141d6", [ - "svg/struct/reftests/use-no-tspan.svg", + null, [ [ "/svg/struct/reftests/reference/green-100x100.svg", @@ -341964,7 +346806,20 @@ "use-ref-inside-data-url.tentative.html": [ "d6ac2e3654a6f1ae2591c47415b38f8c279b3b37", [ - "svg/struct/reftests/use-ref-inside-data-url.tentative.html", + null, + [ + [ + "/svg/struct/reftests/reference/green-100x100.html", + "==" + ] + ], + {} + ] + ], + "use-referencing-non-svg-fragment-element.html": [ + "2bf828c3bab856617791ee0b1d96d2937af88ec9", + [ + null, [ [ "/svg/struct/reftests/reference/green-100x100.html", @@ -342016,7 +346871,7 @@ "use-switch.svg": [ "6c01c30198024de7a6572d496bb126ccdadb888d", [ - "svg/struct/reftests/use-switch.svg", + null, [ [ "/svg/struct/reftests/reference/green-100x100.svg", @@ -342051,15 +346906,41 @@ ], {} ] + ], + "use-symbol-display-none.svg": [ + "7cb2720d7e869d6871297aebfd3fb7eb13bc4960", + [ + null, + [ + [ + "/svg/struct/reftests/reference/green-100x100.svg", + "==" + ] + ], + {} + ] ] } }, "styling": { + "color-inherit-link-visited.svg": [ + "9324f1116b0ec7a0362c081085ed6f6cc5556c67", + [ + null, + [ + [ + "/svg/styling/color-inherit-link-visited-ref.svg", + "==" + ] + ], + {} + ] + ], "invalidation": { "nth-child-of-class.svg": [ "a91f421337ceeaade2072cee54b29b6eeeda6a01", [ - "svg/styling/invalidation/nth-child-of-class.svg", + null, [ [ "/svg/styling/invalidation/nth-child-of-class-ref.svg", @@ -342072,7 +346953,7 @@ "nth-last-child-of-class.svg": [ "ff439bf17b1efe36c9531b2d9c82ba590b86a0b2", [ - "svg/styling/invalidation/nth-last-child-of-class.svg", + null, [ [ "/svg/styling/invalidation/nth-child-of-class-ref.svg", @@ -342140,7 +347021,7 @@ "use-element-animations.html": [ "b09606011818f9979fa222f89661f7ca04031b1f", [ - "svg/styling/use-element-animations.html", + null, [ [ "/svg/styling/use-element-transitions-ref.html", @@ -342153,7 +347034,7 @@ "use-element-transitions.html": [ "68653835f44f8a4787983df30a011d532e0c04dc", [ - "svg/styling/use-element-transitions.html", + null, [ [ "/svg/styling/use-element-transitions-ref.html", @@ -342166,7 +347047,7 @@ "use-element-web-animations.html": [ "bbf878b3a90e8348ef30754c9aaefe43a220f76f", [ - "svg/styling/use-element-web-animations.html", + null, [ [ "/svg/styling/use-element-transitions-ref.html", @@ -342192,6 +347073,19 @@ {} ] ], + "first-letter.svg": [ + "d3b62a5a58998f7d38da689c499d29351051a2fe", + [ + null, + [ + [ + "/svg/text/reftests/first-letter-ref.svg", + "==" + ] + ], + {} + ] + ], "gradient-after-reposition.html": [ "850b0eb91d3f8c483fb2902cb41d5ed6342006d8", [ @@ -342231,6 +347125,45 @@ {} ] ], + "lengthAdjust-large-font-vertical.svg": [ + "5127081bf6907159d803a5e5af71eb72486e629b", + [ + null, + [ + [ + "/svg/text/reftests/green-100x100.svg", + "==" + ] + ], + {} + ] + ], + "lengthAdjust-large-font.svg": [ + "7a204fe8a7984a0f9838448b6d81cfb0668e2584", + [ + null, + [ + [ + "/svg/text/reftests/green-100x100.svg", + "==" + ] + ], + {} + ] + ], + "lengthAdjust-vertical.svg": [ + "32ebd2ae38481e1121971c7cfa60f0eb256dff47", + [ + null, + [ + [ + "/svg/text/reftests/green-100x100.svg", + "==" + ] + ], + {} + ] + ], "multiple-textpaths.svg": [ "6df4ecc27bbddaa76709e041620dacdc5c1303bd", [ @@ -342247,7 +347180,7 @@ "no-background.svg": [ "117b5d6357ff48a3db742d0a5358c622e1e4757d", [ - "svg/text/reftests/no-background.svg", + null, [ [ "/svg/text/reftests/no-background-ref.svg", @@ -342260,7 +347193,7 @@ "no-margin-border-padding.svg": [ "b9c1b33e45d472c1587ea4037ee991f93ef7a8c6", [ - "svg/text/reftests/no-margin-border-padding.svg", + null, [ [ "/svg/text/reftests/no-margin-border-padding-ref.svg", @@ -342273,7 +347206,7 @@ "opacity.svg": [ "949de0cbf0c8aeaf779a94aa01c2688698e756f6", [ - "svg/text/reftests/opacity.svg", + null, [ [ "/svg/text/reftests/opacity-ref.svg", @@ -342283,6 +347216,32 @@ {} ] ], + "text-bidi-controls-anchors-1.svg": [ + "92a1ed1e3fb0426319934f739847dec9583f8cf4", + [ + null, + [ + [ + "/svg/text/reftests/text-bidi-controls-anchors-1-ref.svg", + "==" + ] + ], + {} + ] + ], + "text-bidi-controls-anchors-2.svg": [ + "b9a4a9b5e7df978775eb7c5c64d0a653a8c60006", + [ + null, + [ + [ + "/svg/text/reftests/text-bidi-controls-anchors-2-ref.svg", + "==" + ] + ], + {} + ] + ], "text-clipped-offscreen-move-onscreen.html": [ "c29f790326537395d40f251d3a0be746014fbb5e", [ @@ -342322,6 +347281,19 @@ {} ] ], + "text-font-face-load-image.html": [ + "eb9a5fe4357373e3be74293c66f14f621a911405", + [ + null, + [ + [ + "/svg/text/reftests/text-font-face-load-image-ref.html", + "==" + ] + ], + {} + ] + ], "text-inline-size-001.svg": [ "ae1a10d190ac0f04a2a3168ff8096aaa4fa60066", [ @@ -342585,7 +347557,7 @@ "text-transform-001.html": [ "71c231f690c33b2c8d4038add2fbbba5c5522993", [ - "svg/text/reftests/text-transform-001.html", + null, [ [ "/svg/text/reftests/text-transform-001-ref.html", @@ -342598,7 +347570,7 @@ "text-transform-002.html": [ "53da0d8c66311564d7ff21fec8543392d1a4a1f7", [ - "svg/text/reftests/text-transform-002.html", + null, [ [ "/svg/text/reftests/text-transform-002-ref.html", @@ -342621,6 +347593,19 @@ {} ] ], + "textpath-letter-spacing-01.svg": [ + "4815e618a6d18a6bfdac3ba1d8f84e63758c47a9", + [ + null, + [ + [ + "/svg/text/reftests/textpath-letter-spacing-01-ref.svg", + "==" + ] + ], + {} + ] + ], "textpath-shape-001.svg": [ "dbc0d9e42062d89fafe4c7220bd89c40d7dbd8fa", [ @@ -342663,7 +347648,7 @@ "transform-dynamic-change.html": [ "0efefba0f54510925eb5a350e253212de303196b", [ - "svg/text/reftests/transform-dynamic-change.html", + null, [ [ "/svg/text/reftests/transform-dynamic-change-ref.html", @@ -342734,7 +347719,7 @@ "effect-value-opacity-replaced-effect-in-shadow-root.html": [ "43e229856badb391109eb5fce2bcb29d52ba3461", [ - "web-animations/animation-model/keyframe-effects/effect-value-opacity-replaced-effect-in-shadow-root.html", + null, [ [ "/web-animations/animation-model/keyframe-effects/effect-value-opacity-replaced-effect-in-shadow-root-ref.html", @@ -342747,7 +347732,7 @@ "effect-value-opacity-replaced-effect.html": [ "bef3bd3e8d27fd721dd373e4f33cbae1f6b5b2c0", [ - "web-animations/animation-model/keyframe-effects/effect-value-opacity-replaced-effect.html", + null, [ [ "/web-animations/animation-model/keyframe-effects/effect-value-opacity-replaced-effect-ref.html", @@ -342772,9 +347757,9 @@ ] }, "side-effects-of-animations-current.html": [ - "b0de72bdbf9bcffef88ca5dc12bbe0f9ef239823", + "18b13be9fa689ea6b8fb7f5691bedb0e905fb9d0", [ - "web-animations/animation-model/side-effects-of-animations-current.html", + null, [ [ "/web-animations/animation-model/side-effects-of-animations-current-ref.html", @@ -342785,9 +347770,9 @@ ] ], "side-effects-of-animations-in-effect.html": [ - "ff53c98d79373bd048f5ec96051cb129d7ed5795", + "90ee05508270e8d025c94bc68c4464a8ceb58304", [ - "web-animations/animation-model/side-effects-of-animations-in-effect.html", + null, [ [ "/web-animations/animation-model/side-effects-of-animations-in-effect-ref.html", @@ -342798,9 +347783,9 @@ ] ], "side-effects-of-animations-none.html": [ - "b460ecc27fd1487075b9871e656e5a3bdbfb5399", + "d200409e647170105eb98d117dcaeaf78a6677ff", [ - "web-animations/animation-model/side-effects-of-animations-none.html", + null, [ [ "/web-animations/animation-model/side-effects-of-animations-none-ref.html", @@ -342812,8 +347797,21 @@ ] }, "responsive": { + "neutral-keyframe.html": [ + "813aa7c04c5c2925bf620c31cdcf43c34bcd1536", + [ + null, + [ + [ + "/web-animations/responsive/neutral-keyframe-ref.html", + "==" + ] + ], + {} + ] + ], "toggle-animated-iframe-visibility.html": [ - "f50ffaad34722afd3e626e6b41ccddf5f02ce0eb", + "df1287d40be632c8de22d9eeae592eabee47a5a3", [ null, [ @@ -342822,7 +347820,23 @@ "==" ] ], - {} + { + "fuzzy": [ + [ + null, + [ + [ + 0, + 25 + ], + [ + 0, + 50 + ] + ] + ] + ] + } ] ] }, @@ -343597,7 +348611,7 @@ "non-standard-pseudo-elements.html": [ "20cf81ace29a9a958a12ea68343a0e576f291cda", [ - "webvtt/rendering/cues-with-video/processing-model/evil/non-standard-pseudo-elements.html", + null, [ [ "/webvtt/rendering/cues-with-video/processing-model/evil/non-standard-pseudo-elements-ref.html", @@ -346187,7 +351201,7 @@ }, "support": { ".azure-pipelines.yml": [ - "1a21d2f7a00fed5cd418927b0e1e6a92e2483046", + "2455ad8df121717ef12b224e8c944b3a460377e4", [] ], ".git": [ @@ -346208,8 +351222,12 @@ [] ], "workflows": { + "docker.yml": [ + "2484331cc09a2ebdaf8668afec22efaebb710e0d", + [] + ], "documentation.yml": [ - "0efa736adefb34737f93dff0d55755fd43fb13fa", + "eecf8ea6369f1128a8992194d7b326ae7f64a528", [] ], "epochs.yml": [ @@ -346217,15 +351235,15 @@ [] ], "interfaces.yml": [ - "04636e0bb3d5f923321f7979b829c01785465017", + "ff2a679b5983ed7913d8eaafff605b31bde38faf", [] ], "manifest.yml": [ - "597259eb72e85cba9a588d84595c533427f6c500", + "aae43615a9ed23bf1aadbb6e9150bb65a95c1ee7", [] ], "regen_certs.yml": [ - "d3e1240e79aadfeeb47a728b3c38df4d8fa9b50d", + "bb0cea9f396c41faf9f045b402fb3b8ee99e1f4a", [] ] } @@ -346239,7 +351257,7 @@ [] ], ".taskcluster.yml": [ - "53518a9498a7cd3dafcc6f0a0ca5b952c0fd9330", + "85204ee17b9255ebd7dcd08716acd7da59b75d57", [] ], ".well-known": { @@ -346258,6 +351276,10 @@ "attribution-reporting": { "debug": { "report-aggregate-attribution": [ + "2f07defd8471d1efc523b5fcb3c6d20cdeb8bce1", + [] + ], + "report-aggregate-debug": [ "9a5de3bdf5791bebff2aa30d6b39b43c16b13680", [] ], @@ -346293,6 +351315,14 @@ [] ] }, + "interest-group": { + "permissions": { + "default.py": [ + "c24531c2f76db54d1af8cf415368e0b4ec2eb4d2", + [] + ] + } + }, "private-aggregation": { "debug": { "report-protected-audience": [ @@ -346314,12 +351344,12 @@ ] }, "web-identity": [ - "6f1260dbc373c19505e5d6c9a7328d63ef4eef2f", + "3369c96de284723699219b856f48f7862edb80e6", [] ] }, "CODEOWNERS": [ - "140e0c6545b855cabd9c23b9aa27f6493081c93d", + "07bda888b209dcd0d66e4fc87c94a2042771a595", [] ], "CODE_OF_CONDUCT.md": [ @@ -346464,15 +351494,15 @@ "3f5238e841d7f3af9a87fb8e8fe4e784dc662a67", [] ], - "idb-partitioned-basic-iframe.tentative.html": [ + "idb-partitioned-basic-iframe.html": [ "ed6bbf272f0af4609e77afa7679ec5f0d677e100", [] ], - "idb-partitioned-coverage-iframe.tentative.html": [ + "idb-partitioned-coverage-iframe.html": [ "a7be7e2cc94766f1c591f63c1b20db9521024cd7", [] ], - "idb-partitioned-persistence-iframe.tentative.html": [ + "idb-partitioned-persistence-iframe.html": [ "ad6869f945a44a5f9d13a3ba0bee2cba7c3d0cf1", [] ], @@ -346501,7 +351531,7 @@ [] ], "support.js": [ - "5036e50466578be3ec9e4f9596cb4146cf481cf8", + "1d5d8df5ca3a0d3f3a7b93408c83eba47aa4e046", [] ] }, @@ -346529,7 +351559,7 @@ ], "derive_bits_keys": { "cfrg_curves_bits.js": [ - "4e12ca0eb711fae5168eb1a17db756588ef4eab6", + "da809278a87aa51d8ba726c43d5c0e209dfbae59", [] ], "cfrg_curves_bits_fixtures.js": [ @@ -346540,8 +351570,20 @@ "81244ba05a876614cf2777528fdaf5deac7298aa", [] ], + "derived_bits_length.js": [ + "5a7ed7eb50a0a0b683c1631b639be89b2e428a1c", + [] + ], + "derived_bits_length_testcases.js": [ + "1bd7fbc2c8598964ec122e14392761240c1a26fa", + [] + ], + "derived_bits_length_vectors.js": [ + "fa51f7d3f2b195d068f8d7722bb7dfb40294ecfc", + [] + ], "ecdh_bits.js": [ - "e52ffc6bfdb6f6d4655cfa14b835adbebd088a2a", + "36b29c20a282abb13aaf5ab3308db81fe7a48c89", [] ], "ecdh_keys.js": [ @@ -346549,7 +351591,7 @@ [] ], "hkdf.js": [ - "2bb58533473eb9997151b43d342b7ef9ec06701d", + "b2dfda0257bc81b00131026e1983a267342d9e9a", [] ], "hkdf_vectors.js": [ @@ -346557,7 +351599,7 @@ [] ], "pbkdf2.js": [ - "0403f382e1479c7c5018e91aba2ceb31b89998dc", + "090806ceb6b3eaa5a7d48f44143bbe95fe63876b", [] ], "pbkdf2_vectors.js": [ @@ -346625,11 +351667,11 @@ [] ], "eddsa.js": [ - "d77a880883117634aaba9c34ddda9b7ba60f9804", + "74452d26091ae28fb6ed3ff020bb7f30c9917e1d", [] ], "eddsa_vectors.js": [ - "96ec2b01af96f2fdd027c983e9d1bba53b5bc95c", + "ce80e0ea7e262675165db685106fe118c247bee3", [] ], "hmac.js": [ @@ -347977,7 +353019,7 @@ }, "tools": { "make_tests.py": [ - "6890baa296170f05ac8e1eeef4c3e5e6813a62af", + "007db68ea803f67162796667b9fbcfb0d38a92cf", [] ], "samples": { @@ -348463,6 +353505,14 @@ "2bab061d43ab9e533b0160ca506231939886cd89", [] ], + "display-override-member-media-feature-tabbed.webmanifest": [ + "b8b5fdb0f0bf0db30e1c79d529639d1290b69c58", + [] + ], + "display-override-member-media-feature-tabbed.webmanifest.headers": [ + "2bab061d43ab9e533b0160ca506231939886cd89", + [] + ], "display-override-member-media-feature-window-controls-overlay-overrides-browser.webmanifest": [ "75e91eaf877a2a520ff0baee6d96c49e3e138e7b", [] @@ -349003,11 +354053,11 @@ [] ], "helpers.js": [ - "488e3b33e3e708d45f9a8e085d9e0f846d163cb7", + "0f20a71237c83589f676afeacb4660b39457fea3", [] ], "reporting_origin.py": [ - "4a5877035e0491bd21f2e027a82080b36deae0fa", + "4aa5af4d9e73dbc88cf6537ee901ad73a8751ec6", [] ], "reports.py": [ @@ -349145,7 +354195,7 @@ ], "headers": { "header-referrer.js": [ - "ebd67df1d767636a5044cec105ee5d3b1a3e606a", + "1e9d4f697d008ee793b8649280bbe712acf56d0f", [] ] }, @@ -349173,6 +354223,10 @@ "027b606e85066d301eb68498f40b62ddc6835e05", [] ], + "WEB_FEATURES.yml": [ + "9b01ed7dae7fa79886cef7f1c4c1b593f6a52b55", + [] + ], "generate.py": [ "505375d55fede4f613f4c37b938c4f4b9e16e3c9", [] @@ -349215,7 +354269,7 @@ [] ], "bluetooth-test.js": [ - "7852aadf466cbb2617c3be049c4aa05b5edee0b6", + "474c9b9bec4c1a2274e0a3fc7838c66240e03c88", [] ], "health-thermometer-iframe.html": [ @@ -349782,6 +354836,10 @@ [] ], "resources": { + "2x3-svg-scaled-by-sec-ch-width.py": [ + "d53574c361213ddf0949f906a08ebe388f9aa2d0", + [] + ], "accept-ch-different.html": [ "05cc0b61b07c36fca5816e277df1dc98e70d9ba1", [] @@ -350105,11 +355163,11 @@ [] ], "page.html": [ - "35bde8e5016bd3ff045ebe8cc3e0e39b08d90dc1", + "fc8bd895d10012748775e18c7c46c929b07ab797", [] ], "user-activation.js": [ - "ed294bb9cb27b552f23061118fcd260dc6b86a8f", + "4535f8c6d7446eaf9a2994478e41270a75301266", [] ] }, @@ -350125,9 +355183,21 @@ "4534ab8abe2449c419cab3779e2c8ee0955aa75b", [] ], + "esc-key": { + "README.md": [ + "817edc09ab821b8eda047055edc90818587d625c", + [] + ] + }, "resources": { "helpers.js": [ - "97a62309cd5b39c14ab9c31b9c1305b160ba5c7e", + "ad80c28847f3a6802a56527e11d89a2829ecc8f9", + [] + ] + }, + "user-activation": { + "README.md": [ + "b9aa9a212342470c1e4c4e5b15b38197600297e7", [] ] } @@ -350191,7 +355261,7 @@ [] ], "dispatcher.js": [ - "ce17a7c9145311fe06e68e201caf732aaf8badcd", + "dab0100020b82919bfbf4e68a10bec1e2e3b66ab", [] ], "dispatcher.py": [ @@ -350248,7 +355318,7 @@ [] ], "media.js": [ - "800593f5343ad6d73a3af411ef07065a94009efe", + "a5a8e957e9b5be6f5e7565f9c8e4b5d6b8b1f220", [] ], "media.js.headers": [ @@ -350645,6 +355715,10 @@ "0afbe29a53e8071333a5d6b6ef790284d63a156a", [] ], + "WEB_FEATURES.yml": [ + "c8b072631ea496142e16a2fe6ac5d516af3e2e14", + [] + ], "resources": { "concatenate-stream.js": [ "a35bb1416e754893e331c0089d97720ae3b5af8e", @@ -350673,6 +355747,10 @@ "7695c4a33e328a01434196d5fa19af84e04bc57b", [] ], + "WEB_FEATURES.yml": [ + "ae8464657b14e41a7da2513f65cf39920496c689", + [] + ], "permissions-policy": { "compute-pressure-allowed-by-permissions-policy.https.html.headers": [ "76185cbb2de93a463c1fb7930343a73cbb31f99a", @@ -369088,7 +374166,7 @@ ], "support": { "echo-allow-csp-from.py": [ - "3a914379671ce91b6991750f5b7b9b6bf4afa02c", + "b025012ec8e982958ed9104cd83f618a8f4a98b3", [] ], "echo-policy-multiple.py": [ @@ -369112,7 +374190,7 @@ [] ], "testharness-helper.sub.js": [ - "7d2307ebbc974446d59fd7b023fe9f7ce088c193", + "551ad0348a754c906778dbfb58459298530f48e5", [] ] } @@ -369748,7 +374826,7 @@ "877e192bbff2204ddf56f83e411f17bfb6adab89", [] ], - "eval-typecheck-callout-order.tentative.html.headers": [ + "eval-typecheck-callout-order.html.headers": [ "85de8bd415def35ca45c0abf74590cdfa393d0f4", [] ], @@ -369776,9 +374854,13 @@ "15053e055d6fb085556aea01507edf21f14f347a", [] ], + "src-trailing-dot.sub.any.js.sub.headers": [ + "4a8ad9c0f5438fc9e917eafacb6c5dbaf5edd60b", + [] + ], "support": { "304-response.py": [ - "f9756555f79ee350f9b86de5b5b221c056265e09", + "b8d346e448af982e062f74c6a7e34249ee8c5163", [] ], "eval.js": [ @@ -370220,7 +375302,7 @@ [] ], "not-embeddable-frame.py": [ - "9e65b42435908e33ed5b16e97f8bee3700bab340", + "be7e635ac2456a26a9783565184bee5f881c2bb7", [] ], "preload-csp-report.https.sub.html": [ @@ -370477,7 +375559,7 @@ [] ], "script-src-strict_dynamic_hashes.html.headers": [ - "0d824d8b0e1a1441cebd4f9a9a7265a9ca07c6dd", + "4d3d904c6801d91ef8be7a1cdf767412b43ddccb", [] ], "script-src-strict_dynamic_in_img-src.html.headers": [ @@ -370570,7 +375652,7 @@ [] ], "worker-with-script-src-none-set-timeout.js": [ - "c4241c97d0b4aa37baf50a7a5f8312aabb4e50d6", + "15e2108d0aee53b7021f80418ca3d8257b42fb50", [] ], "worker-with-script-src-none-set-timeout.js.sub.headers": [ @@ -371065,7 +376147,7 @@ [] ], "cookie-test.js": [ - "a909e4d72facf95760ef35c96efbb426bbc9c8e0", + "58f5109c813507e5292707cba54f385f0959e207", [] ], "cookie.py": [ @@ -371214,15 +376296,27 @@ "third-party-cookies": { "resources": { "test-helpers.js": [ - "2ae2c46a37193244e9e5d1e921fb9ac2e3c81935", + "c76ac716161ae0f0a4ba2f697fc66433c2c60d13", [] ], "third-party-cookies-cross-site-embed.html": [ "2d579c91bed92b69235c357dafb51ef98490dab6", [] ], - "third-party-cookies-cross-site-window.html": [ - "99418a67491e896bcc4caf6f73d0465390ecef4a", + "third-party-cookies-cross-site-embedder.html": [ + "ec25902a915a1d2b93e1cd2028a5f42476476713", + [] + ], + "third-party-cookies-cross-site-popup-opener.html": [ + "a09b07e5b702317d4f7a194a9673a7489aad9505", + [] + ], + "third-party-cookies-cross-site-popup-verify.html": [ + "6deb88b5d03d7439ac816807e890d52e08beff35", + [] + ], + "third-party-cookies-cross-site-popup.html": [ + "7addc7943c0ee29dd92f6319d92501984f7f46fe", [] ] } @@ -371230,7 +376324,7 @@ }, "core-aam": { "META.yml": [ - "a976c16dabce11346831845879b5b2b60dc8f754", + "dfce961fa8a5152167da328a70618c7459fe8241", [] ], "README.md": [ @@ -371319,225 +376413,19 @@ "7b1860921312cc9d9934aa803e3f639df21423a0", [] ], - "fedcm-cross-origin-policy.https.html.sub.headers": [ - "32523a697886f7fb26ab4456e5b14cb19d8c1aae", - [] - ], - "fedcm-csp.https.html.sub.headers": [ - "c1e6fd6c4c281f22e7f92506ec72ca39b6293f23", - [] - ], "support": { "README.md": [ - "a6d33ff6f75c408712f8b1cf6b78b50326d4f3fc", + "f58d4cd0ce430ec61840b6d745a8cefe41643a88", [] ], "echoing-nester.html": [ "d4f5899da7894749a51039f9d5bf3b8bfd680570", [] ], - "fedcm": { - "accounts.py": [ - "126f911a58c80a62de06b6062cdb4488549471b9", - [] - ], - "client_metadata.py": [ - "72ddcc5cd62569fa280adcab9490e84b851e6780", - [] - ], - "client_metadata.py.headers": [ - "7164e5f81827da39996b033972a508e5b371de11", - [] - ], - "client_metadata_clear_count.py": [ - "3c31bf5077d73ac258f4a96bb6b4f5e95802f184", - [] - ], - "disconnect-iframe.html": [ - "f65763932b8c742debdbabbefc310613fe83f0e5", - [] - ], - "disconnect.py": [ - "cf62ceda22515dd036cdea9fec4de7305b4a51b4", - [] - ], - "disconnect_failure.py": [ - "f880218b2f6156817aeb7ac16c0e1e42f3ed5103", - [] - ], - "error_with_code_and_url.py": [ - "71bfea00f463051e7bd496cf1c28f25208e2b41e", - [] - ], - "intercept_service_worker.js": [ - "773e38fd21b023b8314f732b6d1893ab6c65a3cd", - [] - ], - "keys.py": [ - "6b7d67e21e7eea7927a40ab094847b7224d49985", - [] - ], - "login.html": [ - "78d241cda952bccdeff05653f0cc7311afa73710", - [] - ], - "manifest-not-in-list.json": [ - "00700666675413d378bba7c3f8bed12f2b9b4849", - [] - ], - "manifest.py": [ - "a40fc100eee697ed7dcd451626409af18606442e", - [] - ], - "manifest_id_assertion_endpoint_returns_error.json": [ - "e098cc4511a1980392097d0a26c020db3243ae35", - [] - ], - "manifest_no_login_url.json": [ - "15a657c679df7b0dfb0be1058e7086b439781762", - [] - ], - "manifest_redirect_accounts.json": [ - "6a8972feebd6d139cb279d2f0446d4c3957bc5fc", - [] - ], - "manifest_redirect_token.json": [ - "867b4dffb76902ed20d2ec96e1f744851bbb5163", - [] - ], - "manifest_token_with_http_error.json": [ - "691a1e8d3a63a3695ec1fd29267506363871af71", - [] - ], - "manifest_with_auto_selected_flag.json": [ - "591c927153b9a78695ded0663fed600cbae5bcb6", - [] - ], - "manifest_with_cross_origin_disconnect.sub.json": [ - "a1ad5c71ac3d2395c97d4aa387a6ec1de2b84b3e", - [] - ], - "manifest_with_disconnect_failure.json": [ - "96035e7e8b34d982c86e6555b384126e043e03fa", - [] - ], - "manifest_with_no_accounts.json": [ - "0d38f26d350c5064c3cd174d4af2c822c9d2ff97", - [] - ], - "manifest_with_single_account.json": [ - "5f9b7a81b9a4f9cdb1506dffc922bd15627a1222", - [] - ], - "manifest_with_two_accounts.json": [ - "6310fb0a0becfbe03b7fec666aea406a587b0858", - [] - ], - "manifest_with_variable_accounts.json": [ - "10c2ddd55d1308cb7d88810898fbc6fe446b7a69", - [] - ], - "no_accounts.py": [ - "8767c50afb470d994b67b0486791b6835a8f558f", - [] - ], - "pending-userinfo-iframe.html": [ - "0afe279bcc57a73210fb41739be69fa1fdb99fc1", - [] - ], - "request-params-check.py": [ - "daf91aad8f154af610d299c0de249bbc76db53c8", - [] - ], - "select_manifest_in_root_manifest.py": [ - "d4f1efff6a74c7636f60cba35b4eff010fccfd29", - [] - ], - "simple.html": [ - "d62419ce8a0ac12a85f5b8e595a874714b038b44", - [] - ], - "single_account.py": [ - "7c8906ae7b97d281b22049266076c0ff72f62385", - [] - ], - "token.py": [ - "b914eb2d9656cb4a892c8b51dc1754748b86d5c5", - [] - ], - "token_with_account_id.py": [ - "52fb20184bc081186e7f9aaab7561dc87c8906bd", - [] - ], - "token_with_auto_selected_flag.py": [ - "93ccf3ee7e2277716dc1c9d5b02805b9e2b398cc", - [] - ], - "token_with_http_error.py": [ - "c8d95ab63d7ebda6d32a60307f123bd858f39891", - [] - ], - "two_accounts.py": [ - "4022561ff78321d91605b07f76d03a1f8deb5297", - [] - ], - "userinfo-iframe.html": [ - "45a1a34ce9e360e8eae13cb1e79c011c9b74db4a", - [] - ], - "variable_accounts.py": [ - "c9db2c4528e15c74cdd9b3d056fd2044b8e7eeb1", - [] - ] - }, - "fedcm-helper.sub.js": [ - "38cc26604ba328bab8562c7975f96ec1d5809ab0", - [] - ], - "fedcm-iframe-level2.html": [ - "7622d988ff2c129003f0e3251bb7a0be698d17d6", - [] - ], - "fedcm-iframe.html": [ - "ba79c4cf9e955672d94450143dff091a6691a0e2", - [] - ], - "fedcm-mock.js": [ - "271dd9cd944a2770f27b119331dc77d919ba9cf5", - [] - ], - "fedcm-mojojs-helper.js": [ - "40ab729b1f9555f751611e845fac6360d0cbdd30", - [] - ], "federatedcredential-get.html": [ "476f32688f91cede949edf2a1e650ef573525bd7", [] ], - "fencedframe-mark-signedin.html": [ - "532db7047a8a0903dfa8dec0fac943318c18e505", - [] - ], - "iframe-mark-signedin.html": [ - "4ca0125cde2e4ec7a404ba360becf22a66eb3e40", - [] - ], - "mark_signedin": [ - "d9adcaa762909e0ddef54daa989848169ede25dc", - [] - ], - "mark_signedin.sub.headers": [ - "d560fade5a0e4237f751b0c90a87fc25f92aa14a", - [] - ], - "mark_signedout": [ - "d9adcaa762909e0ddef54daa989848169ede25dc", - [] - ], - "mark_signedout.sub.headers": [ - "69157b3a371e369df585331a2479144fee444f5c", - [] - ], "otpcredential-helper.js": [ "e07e9f5be359e9173b6c916d91d8ce1f87260885", [] @@ -371549,14 +376437,6 @@ "passwordcredential-get.html": [ "0ec584d73d1f6d8626efe4c7190e5160fe527286", [] - ], - "set_cookie": [ - "1080b366e4680fe5eb8abb4916360cd4a29eef53", - [] - ], - "set_cookie.headers": [ - "b19ff933a6f5854923bdaf378e91d5fa63e341b0", - [] ] } }, @@ -371701,286 +376581,10 @@ "95d6ab883eaf9cb79630886c4c1a5bdcc07bb88a", [] ], - "background-color-002-ref.xht": [ - "b469a4cb8dc47b04b31f83653a9cc922dd245e73", - [] - ], - "background-color-003-ref.xht": [ - "ecc99ecb07c1d6a8beb8df2ad668ebff5b8dd957", - [] - ], - "background-color-004-ref.xht": [ - "f0ae15aefb36bcd94b1d96b2d9d68707986cea98", - [] - ], - "background-color-005-ref.xht": [ - "388bd8ab70a55a4e8658d639b165a1cf4f6f180d", - [] - ], - "background-color-006-ref.xht": [ - "5041fb87d3c62a16e2739771f9760f00f422e1d2", - [] - ], - "background-color-009-ref.xht": [ - "e818c26885f403013c862d5885a0c9bdf46c7665", - [] - ], - "background-color-010-ref.xht": [ - "8dbab72574bd48d801a73bf1fd92c22c618792c1", - [] - ], - "background-color-011-ref.xht": [ - "9f4b87fd5ee387732160485bb278cd3216c8c6af", - [] - ], - "background-color-012-ref.xht": [ - "59025f39b7088aae2e3f440e3b6f35819e6ec939", - [] - ], - "background-color-013-ref.xht": [ - "62226dacb9fbebd99a74c33442c19be4edaa5cf3", - [] - ], - "background-color-014-ref.xht": [ - "cdfa33419c2579113469e2d54f22067d5c703440", - [] - ], - "background-color-015-ref.xht": [ - "150cb97303574c700075265144b88ba915c9c1d4", - [] - ], - "background-color-016-ref.xht": [ - "60460bd998e78fc909be797e9073c2b6e197f83e", - [] - ], - "background-color-017-ref.xht": [ - "3c841881993c43bc5a654097b43603306cbd5c1a", - [] - ], - "background-color-019-ref.xht": [ - "79ac0258078cec2368b62a01002880291c5049a1", - [] - ], - "background-color-020-ref.xht": [ - "290b880fe841b6b90a4598aeb5efb05c5f001284", - [] - ], - "background-color-021-ref.xht": [ - "2c7402ed17ca96f4da87f217c3500bd3ede85433", - [] - ], - "background-color-022-ref.xht": [ - "307427e5b791e9b8aeac9391afd191b6bff0a6aa", - [] - ], - "background-color-025-ref.xht": [ - "b469a4cb8dc47b04b31f83653a9cc922dd245e73", - [] - ], - "background-color-026-ref.xht": [ - "0b2d2856df50f76e5a2745e1aa178a88b9bca266", - [] - ], - "background-color-027-ref.xht": [ - "f0ae15aefb36bcd94b1d96b2d9d68707986cea98", - [] - ], - "background-color-028-ref.xht": [ - "59a7fa02b72b3f09b3aeda914377126432d2180d", - [] - ], - "background-color-029-ref.xht": [ - "5041fb87d3c62a16e2739771f9760f00f422e1d2", - [] - ], - "background-color-032-ref.xht": [ - "366b222e9bdd1a941c67a51d5c3060c413e5b2be", - [] - ], - "background-color-033-ref.xht": [ - "8dbab72574bd48d801a73bf1fd92c22c618792c1", - [] - ], - "background-color-034-ref.xht": [ - "9f135dc7454ab8bbada2414a75798939219e05b4", - [] - ], - "background-color-035-ref.xht": [ - "59025f39b7088aae2e3f440e3b6f35819e6ec939", - [] - ], - "background-color-037-ref.xht": [ - "75cf4a2f3428da7cc1e7f187b912090156b54c21", - [] - ], - "background-color-038-ref.xht": [ - "150cb97303574c700075265144b88ba915c9c1d4", - [] - ], - "background-color-039-ref.xht": [ - "6d08ab58951a7d082fd70728a3a12fee38035f4b", - [] - ], - "background-color-040-ref.xht": [ - "3c841881993c43bc5a654097b43603306cbd5c1a", - [] - ], - "background-color-041-ref.xht": [ - "389ae583eddca353182c93107ffd97746d81de4a", - [] - ], - "background-color-042-ref.xht": [ - "916cd6647cd851f9cbf3c5ab1c8ed7c94267c36c", - [] - ], - "background-color-043-ref.xht": [ - "290b880fe841b6b90a4598aeb5efb05c5f001284", - [] - ], - "background-color-044-ref.xht": [ - "1435c39446263a6f72620e79789c84f8d855223d", - [] - ], - "background-color-045-ref.xht": [ - "307427e5b791e9b8aeac9391afd191b6bff0a6aa", - [] - ], - "background-color-049-020202-ref.xht": [ - "4b37e52103130a79b77dd5aa0f451bbd47dd0058", - [] - ], - "background-color-049-030303-ref.xht": [ - "f5381c0c0d3bcfd0f52b2f84b2df3a6aa1cd0ae3", - [] - ], - "background-color-052-ref.xht": [ - "1e98cfe008bf52bb115b50f615f403eb30f59c81", - [] - ], - "background-color-054-fcfcfc-ref.xht": [ - "602375664818ca9cbdc958e17818ef5947c863e5", - [] - ], - "background-color-054-fdfdfd-ref.xht": [ - "58104c73c17620edc1caccf8d50a4bc956892fd5", - [] - ], - "background-color-063-ref.xht": [ - "43cbdd90997717c5c9186057cef95d9890e87432", - [] - ], - "background-color-070-020000-ref.xht": [ - "b60b3c17e0ef75ac5582c892bea5fa4f5b737648", - [] - ], - "background-color-070-030000-ref.xht": [ - "97ab0b2a04cf27c6bddfd9267c6da2f516001736", - [] - ], - "background-color-073-ref.xht": [ - "3c4b5c2af038c7e9596cf7b58fa188163613e431", - [] - ], - "background-color-075-fc0000-ref.xht": [ - "7cfa6f5b93c93a476d077adba85e9f91ccd4bc9c", - [] - ], - "background-color-075-fd0000-ref.xht": [ - "77c1d9a5ac56422c0a0b0c36c16516dd9163a851", - [] - ], - "background-color-083-ref.xht": [ - "05116ff48083a1f9da5949b8e7a8cd0cdb1b068e", - [] - ], - "background-color-090-000200-ref.xht": [ - "1e43bfad1c6a3a4bb0244480dbd02d73dcebb660", - [] - ], - "background-color-090-000300-ref.xht": [ - "6a072d9954c8cf07b24c21d57c9a8e32e432b283", - [] - ], - "background-color-093-ref.xht": [ - "280c4e54056c11b69d7cc4e12c1cc58233cac440", - [] - ], - "background-color-095-00fc00-ref.xht": [ - "d1d9355d9bb213e22a162c53ba1d7ad38d1fef79", - [] - ], - "background-color-095-00fd00-ref.xht": [ - "e5dec694c474cca4224249290ca57bbcdaa7ad81", - [] - ], - "background-color-103-ref.xht": [ - "934fcd6da64b14d20a116291e7e7e4ff1636d1fe", - [] - ], - "background-color-110-000002-ref.xht": [ - "ce7525c80bb273eee70f83795a37393404d6887e", - [] - ], - "background-color-110-000003-ref.xht": [ - "b6e2f8a8c37fc2f16698d244c1c8514a2163f4a8", - [] - ], - "background-color-113-ref.xht": [ - "120857be31ede81fbfb6f69b7545b364be2c04c3", - [] - ], - "background-color-115-0000fc-ref.xht": [ - "55590fcccb1912be93bbdb8f112d5cafca94c345", - [] - ], - "background-color-115-0000fd-ref.xht": [ - "83a5e96e608d6ccfc93688c4f76a58f56c24437c", - [] - ], - "background-color-123-ref.xht": [ - "68617d2c43a82f4c5e3e6b94e0f21268f72cbab7", - [] - ], "background-color-129-ref.xht": [ "bf2a612ed02080e0af2f28030cfb0ea0729fdb2e", [] ], - "background-color-132-ref.xht": [ - "9d6a313268e70b523a1cbe4bfd8376bac8ee1033", - [] - ], - "background-color-135-ref.xht": [ - "aa547b0a5422cd92009e37c1ce42ccc66f92b233", - [] - ], - "background-color-136-ref.xht": [ - "c3382a769aa55fa6c36654268e8d3cd7bdfa7f70", - [] - ], - "background-color-138-ref.xht": [ - "832375425ce6abe2776d38fba0f48153587eb8c7", - [] - ], - "background-color-139-ref.xht": [ - "587737848bf87d704c725eeab4a3c81c9189d736", - [] - ], - "background-color-140-ref.xht": [ - "056f8e4dcf20e08de5fe1f694fa4476b0e72e268", - [] - ], - "background-color-142-ref.xht": [ - "3f7ffb2f2bf589ea4190ac77a63bcb9dbee5a94a", - [] - ], - "background-color-143-ref.xht": [ - "70c54ff1a9ba59c67c087c9cf6d1aec670a3bd75", - [] - ], - "background-color-145-ref.xht": [ - "1d05b5f071d0d8018d39d12fb98bf4cc9db22c1c", - [] - ], "background-color-175-ref.xht": [ "3b320296aebfaeb6d8b68a8de4a876921c5edb6a", [] @@ -373117,246 +377721,10 @@ "ff381421b7ac5f70952f610b93d18561d81136d6", [] ], - "border-bottom-color-001-ref.xht": [ - "7c5bdccdce16321e12a9664f98e0c092001d9e0c", - [] - ], - "border-bottom-color-003-ref.xht": [ - "b2b51318751345c51948f7dfa1aa24ed0099cffc", - [] - ], - "border-bottom-color-004-ref.xht": [ - "aa7950069d2f18c2ee8cd2bd8c74dce664bce530", - [] - ], - "border-bottom-color-005-ref.xht": [ - "eb79eb193dfa3fccc3968f7274eee22f337f0713", - [] - ], - "border-bottom-color-006-ref.xht": [ - "9ef802086a8d161e34aa7ed91d2033051294965f", - [] - ], - "border-bottom-color-009-ref.xht": [ - "e5076a43ed8851c197db6bd87d8690f80e26a9aa", - [] - ], - "border-bottom-color-010-ref.xht": [ - "92ea2c169f32b5952ee8bab82508b6d704a09295", - [] - ], - "border-bottom-color-011-ref.xht": [ - "1c97de1ffcd359c3df039df08c35051fe89d44b6", - [] - ], - "border-bottom-color-012-ref.xht": [ - "ea9e7c3bcdc57c08b92cb58c19870f26b0098882", - [] - ], - "border-bottom-color-014-ref.xht": [ - "d3082895e93514d855cf9159e01d28eb650b3ae6", - [] - ], - "border-bottom-color-015-ref.xht": [ - "b04da2378811af19ed28f568692447c4b6dd1ee7", - [] - ], - "border-bottom-color-016-ref.xht": [ - "538f9051c2b3edaa4c1804a4333a3ccd455a8498", - [] - ], - "border-bottom-color-017-ref.xht": [ - "cf6912694c1cbf16307ffa906fe0a92c8da9d6d7", - [] - ], - "border-bottom-color-019-ref.xht": [ - "322c6fc059e8408446c6fbd0fb07cc0adf9371a8", - [] - ], - "border-bottom-color-020-ref.xht": [ - "833ec72aa3470948a6f34127f8cdc54b82266b08", - [] - ], - "border-bottom-color-021-ref.xht": [ - "4ea14313ac48b87efbf9063b96b259571dab2fad", - [] - ], - "border-bottom-color-022-ref.xht": [ - "d99e3eaf48175af761b16462ce04d618d9c6f24c", - [] - ], - "border-bottom-color-026-ref.xht": [ - "79cf8fd3c0a71b7977f79ba3ec1e92549171f1aa", - [] - ], - "border-bottom-color-027-ref.xht": [ - "aa7950069d2f18c2ee8cd2bd8c74dce664bce530", - [] - ], - "border-bottom-color-028-ref.xht": [ - "dad179e9eaa12581ee254f9e1d75fabb6ca6a54e", - [] - ], - "border-bottom-color-032-ref.xht": [ - "d5f9edb9e36f4ba7bf6e529984d97ec148dcb3ac", - [] - ], - "border-bottom-color-034-ref.xht": [ - "29939695788f42b1031f386872b99a0f5811ad2f", - [] - ], - "border-bottom-color-037-ref.xht": [ - "f89e162bd8d34f009de02fa02484a217d4c86237", - [] - ], - "border-bottom-color-038-ref.xht": [ - "b04da2378811af19ed28f568692447c4b6dd1ee7", - [] - ], - "border-bottom-color-039-ref.xht": [ - "192db0e6f9b80b00b0157cebd450928aa72f2cfe", - [] - ], - "border-bottom-color-042-ref.xht": [ - "11bffd78f2ef34c8b338d83c69d48da548ea45f6", - [] - ], - "border-bottom-color-044-ref.xht": [ - "3d27161bc47909d73451c90abdb08fe06b0a4165", - [] - ], - "border-bottom-color-049-ref.xht": [ - "344ce16730732139c44a3c60d2d182ac300b1271", - [] - ], - "border-bottom-color-052-ref.xht": [ - "8096f85a34258c38b50736f331cc9324d639c512", - [] - ], - "border-bottom-color-054-ref.xht": [ - "9d1c01f601152b10beac4885b2154b51bd29d469", - [] - ], - "border-bottom-color-063-ref.xht": [ - "3afc17f0ed9e19131ef2a2792c420ec13019eafa", - [] - ], - "border-bottom-color-070-ref.xht": [ - "8e185252fab793f51f3537625409ec24555f7294", - [] - ], - "border-bottom-color-073-ref.xht": [ - "9c8b4d8c643ae7ab5b587c1b745699c2271d3188", - [] - ], - "border-bottom-color-075-ref.xht": [ - "813946da33074aaf8f2f42e23b59adf0b9ed7389", - [] - ], - "border-bottom-color-083-ref.xht": [ - "bf6367d4efe0f088d3852dc42929ef32f51666a9", - [] - ], - "border-bottom-color-090-ref.xht": [ - "d18a102f4f32d56131b8005b69f09d57f7980f5c", - [] - ], - "border-bottom-color-093-ref.xht": [ - "e6d82904856a35607382acc4888f44429a9dda88", - [] - ], - "border-bottom-color-095-ref.xht": [ - "938e1105056f58129ea38841da63af1d938e6d88", - [] - ], - "border-bottom-color-100-ref.xht": [ - "27a0264086698c9c81d40d3662f684ab5c92d3de", - [] - ], - "border-bottom-color-103-ref.xht": [ - "3f0eb480ad0b3af5a8d6b9eb4934a30b1f11d69a", - [] - ], - "border-bottom-color-110-ref.xht": [ - "a9241f5351a6549d567054c490f526e240e903a1", - [] - ], - "border-bottom-color-113-ref.xht": [ - "030ee6ec0043f264d54420f366932cfa170a9033", - [] - ], - "border-bottom-color-115-ref.xht": [ - "46288771833caa3639376da59ae71359d37e6e71", - [] - ], - "border-bottom-color-123-ref.xht": [ - "6e03bafdd7502298116d316686a2d875a11adee4", - [] - ], "border-bottom-color-129-ref.xht": [ "290b83cf674ff6e0ba3a74ad044dedb0d0b9f98b", [] ], - "border-bottom-color-131-ref.xht": [ - "4e5d9de91eb969b1244d6c2836b6a0a17b09115d", - [] - ], - "border-bottom-color-132-ref.xht": [ - "713977b023b6dac8c314d3b226d5b4022003a40b", - [] - ], - "border-bottom-color-133-ref.xht": [ - "5db22dc25452f49a1247fa0e5849e03e7d4c7099", - [] - ], - "border-bottom-color-134-ref.xht": [ - "beccb7d434eb75f68a7238e6d2a5e7473b542d15", - [] - ], - "border-bottom-color-135-ref.xht": [ - "7546efe622d40e13e011e6393416a4172cbc9b33", - [] - ], - "border-bottom-color-136-ref.xht": [ - "a6b78590d5342d0495df54e6dacc8d64e507a104", - [] - ], - "border-bottom-color-137-ref.xht": [ - "80bc045ae08f5826caef14c45515bbe741db9051", - [] - ], - "border-bottom-color-138-ref.xht": [ - "23131e179cb76fde6b031509af72d61f4e8a2cb0", - [] - ], - "border-bottom-color-139-ref.xht": [ - "3569017b366dc38d2f5f63f67e295d8ac8a775c4", - [] - ], - "border-bottom-color-140-ref.xht": [ - "f0efa8828606ceddd7fabfcf671ad4cc983f2ba0", - [] - ], - "border-bottom-color-141-ref.xht": [ - "b15072ea27cb2117ede0a10fcbca98fc0f9a2b19", - [] - ], - "border-bottom-color-142-ref.xht": [ - "814f26daa65784771ab95e1e0d5f08b76cf371ea", - [] - ], - "border-bottom-color-143-ref.xht": [ - "2acd5974e35221bc35421a7e892d5b2ed38b4d17", - [] - ], - "border-bottom-color-144-ref.xht": [ - "374461a4f0cd8126c88902cbef16d90857905bbf", - [] - ], - "border-bottom-color-145-ref.xht": [ - "a7e37e77a62ab18c7c93537db0a065abca66c830", - [] - ], "border-bottom-style-005-ref.xht": [ "be3e33274f9b84abc9f3ec76f6aa01c4fc05492d", [] @@ -373505,250 +377873,10 @@ "fb0c1f515d21888af7f48f1d2b3d8e18885d965f", [] ], - "border-right-color-001-ref.xht": [ - "5e969a7057d1c3326337d338b802007e0a4a378d", - [] - ], - "border-right-color-003-ref.xht": [ - "cd50ec9c95f08b6e37571ec431219a37fc1df8a0", - [] - ], - "border-right-color-004-ref.xht": [ - "6658033e03f13acd886066c14f3e6b65d0a35cbc", - [] - ], - "border-right-color-005-ref.xht": [ - "271f0257338379fb8ab5c2598285ae13442a2621", - [] - ], - "border-right-color-006-ref.xht": [ - "54a3f0780dfa36b5358e8977889dbd3d9c64729d", - [] - ], - "border-right-color-007-ref.xht": [ - "33ec214d70c4ae870d06c7f232daa64acb76aa48", - [] - ], - "border-right-color-009-ref.xht": [ - "d29b3cff006f317349ebd99c6cf8092b20b854df", - [] - ], - "border-right-color-010-ref.xht": [ - "1f4e1bb39346a5dd3d3cf12c3ab10d38ed83cd8e", - [] - ], - "border-right-color-011-ref.xht": [ - "caf4b75eecef0f493aba5772770f20b2bf3a31cf", - [] - ], - "border-right-color-012-ref.xht": [ - "97e1d2d5511f5c6d01fb011ca292fbd4c9fdb474", - [] - ], - "border-right-color-014-ref.xht": [ - "1d6efa8dbaabf6fae1af6eeb82f4c9967508c5bc", - [] - ], - "border-right-color-015-ref.xht": [ - "ea5d366423906797c2433a6e84579d11ca2517ba", - [] - ], - "border-right-color-016-ref.xht": [ - "ce65cb7b2eaa63b67039cc6b01edb4e8f31ab5a7", - [] - ], - "border-right-color-017-ref.xht": [ - "5c86113e20a49fd8817c992c8b7607e278fb6340", - [] - ], - "border-right-color-019-ref.xht": [ - "2ed1d89d019e06e9115a61c96fb85a8293b9481a", - [] - ], - "border-right-color-020-ref.xht": [ - "3678117f240f14cf5c58f4876537218149197447", - [] - ], - "border-right-color-021-ref.xht": [ - "54e59ecce1a6a050b4928a0b8998983f763b98e3", - [] - ], - "border-right-color-022-ref.xht": [ - "5649a4692fb1220d3d74d267feaa69f391e6a99e", - [] - ], - "border-right-color-026-ref.xht": [ - "b04781282ed8545b782a70be86d1a15937de78db", - [] - ], - "border-right-color-027-ref.xht": [ - "6658033e03f13acd886066c14f3e6b65d0a35cbc", - [] - ], - "border-right-color-028-ref.xht": [ - "e2f0624e0a438079515931f66482038ea4b5b291", - [] - ], - "border-right-color-032-ref.xht": [ - "4de6e2612e0cc33708706d3cf11ca6e76c07a007", - [] - ], - "border-right-color-034-ref.xht": [ - "b42d611a0ccf752035f59929131f90cfd455841a", - [] - ], - "border-right-color-037-ref.xht": [ - "c471d6e34896379a5e150c070b17844d498613eb", - [] - ], - "border-right-color-038-ref.xht": [ - "ea5d366423906797c2433a6e84579d11ca2517ba", - [] - ], - "border-right-color-039-ref.xht": [ - "75d200c8f69eceba1b8a8ce8839062f5151f6cec", - [] - ], - "border-right-color-042-ref.xht": [ - "c62e0983af57c009fca90168f3ebf00abaf2ebc3", - [] - ], - "border-right-color-044-ref.xht": [ - "935decca7110cbe0ac0bd2019727af82d6e2a999", - [] - ], - "border-right-color-049-ref.xht": [ - "a1e55f878d87501c59a110127c66665a74361b0e", - [] - ], - "border-right-color-052-ref.xht": [ - "3eab45d6ef27f2d62be7673afc5f40688b658f67", - [] - ], - "border-right-color-054-ref.xht": [ - "1a8528541919b23e32d6e3a12c4dd634ea6bcd73", - [] - ], - "border-right-color-063-ref.xht": [ - "31fcddc30bcc184d9917ba305cb642338bd07e15", - [] - ], - "border-right-color-070-ref.xht": [ - "f0ed168b38131f3422032380115266ee2346546d", - [] - ], - "border-right-color-073-ref.xht": [ - "a851dd306fd2b1925d59c41f1d240e8e48c02a02", - [] - ], - "border-right-color-075-ref.xht": [ - "c0708eb0b317c74821b1ec2eff8e47f67d8c556d", - [] - ], - "border-right-color-083-ref.xht": [ - "fcb41f086599be2c6cb8026387fc3139d8102a50", - [] - ], - "border-right-color-090-ref.xht": [ - "07a74483a102d85722177173be0338347df2619d", - [] - ], - "border-right-color-093-ref.xht": [ - "8a38a2b9e27cd1775ab556f8ed8bd06dba5913cf", - [] - ], - "border-right-color-095-ref.xht": [ - "89fbb1ece749f1e5afd682993d2f28cc6191d47d", - [] - ], - "border-right-color-100-ref.xht": [ - "af48ac1dc0ba87ed1616a27262faef9da059b50d", - [] - ], - "border-right-color-103-ref.xht": [ - "94d16c8f06901ecf3d84d6b6ac16c55b2c71627b", - [] - ], - "border-right-color-110-ref.xht": [ - "7c5049a194bae7f75457de0ea7b61b9a7ed5934b", - [] - ], - "border-right-color-113-ref.xht": [ - "4579ac40b253383c4a62e7ee2e93b341ab60fd48", - [] - ], - "border-right-color-115-ref.xht": [ - "e573484d0cfd41082899a81b3b3ad46e6e0c0859", - [] - ], - "border-right-color-123-ref.xht": [ - "b8637fa28e7260c38acc74d33434f2553a32af80", - [] - ], "border-right-color-129-ref.xht": [ "9bce8d0dcbd7dfee7ffd27cc3f316087ef4a2fe3", [] ], - "border-right-color-131-ref.xht": [ - "28f861bbf670d6afd46d82cfa1301a1b63050dda", - [] - ], - "border-right-color-132-ref.xht": [ - "44f62e9915dcccaaccda468b6ab96d99c635b3ec", - [] - ], - "border-right-color-133-ref.xht": [ - "f8ff0058e43e48a8e4bd9a4c4f7b11ae20f8ec9e", - [] - ], - "border-right-color-134-ref.xht": [ - "3b3157912f9edbc7a3a70804b0758e74ef75604f", - [] - ], - "border-right-color-135-ref.xht": [ - "d2ccb1bf2b5749af4cbdef3c71a4ef18b86552a8", - [] - ], - "border-right-color-136-ref.xht": [ - "ad88d9b088ba59c15a0853c0a08189cadff288fb", - [] - ], - "border-right-color-137-ref.xht": [ - "861a21b121565e4b01064fba1211abe9d152ffad", - [] - ], - "border-right-color-138-ref.xht": [ - "d51452ccc960df5a9508352677698e0c94835579", - [] - ], - "border-right-color-139-ref.xht": [ - "d11d7998d0a4df700bc564cfa789f34eeb44792c", - [] - ], - "border-right-color-140-ref.xht": [ - "69f95adc7c3559eb53792c4ea243235fb6618dc6", - [] - ], - "border-right-color-141-ref.xht": [ - "8fa051bf2f7b1c923133d9415f1a66576bdbed06", - [] - ], - "border-right-color-142-ref.xht": [ - "82ae509f8201564cb5216f67b7b75805e1f33c77", - [] - ], - "border-right-color-143-ref.xht": [ - "b5927d37c258f0f0ee89e06cd7ef5106a2594f21", - [] - ], - "border-right-color-144-ref.xht": [ - "da46e0dd1c5d0cdfcc837eb84970dafd0b8e90aa", - [] - ], - "border-right-color-145-ref.xht": [ - "5c93a0cee79fe51b28e15b4dac12bdff1366fa99", - [] - ], "border-right-color-175-ref.xht": [ "ed715694de436241e51a456430bee01dec4b397a", [] @@ -374955,250 +379083,10 @@ } }, "colors": { - "color-001-ref.xht": [ - "acd2384afde31a01befe51e7bccd0b773c159624", - [] - ], - "color-002-ref.xht": [ - "b469a4cb8dc47b04b31f83653a9cc922dd245e73", - [] - ], - "color-003-ref.xht": [ - "ecc99ecb07c1d6a8beb8df2ad668ebff5b8dd957", - [] - ], - "color-004-ref.xht": [ - "f0ae15aefb36bcd94b1d96b2d9d68707986cea98", - [] - ], - "color-005-ref.xht": [ - "6ace4bbbbde3af870a199efcff9a74e380b75cb5", - [] - ], - "color-006-ref.xht": [ - "5041fb87d3c62a16e2739771f9760f00f422e1d2", - [] - ], - "color-009-ref.xht": [ - "e818c26885f403013c862d5885a0c9bdf46c7665", - [] - ], - "color-010-ref.xht": [ - "8dbab72574bd48d801a73bf1fd92c22c618792c1", - [] - ], - "color-011-ref.xht": [ - "9f4b87fd5ee387732160485bb278cd3216c8c6af", - [] - ], - "color-012-ref.xht": [ - "59025f39b7088aae2e3f440e3b6f35819e6ec939", - [] - ], - "color-014-ref.xht": [ - "cdfa33419c2579113469e2d54f22067d5c703440", - [] - ], - "color-015-ref.xht": [ - "150cb97303574c700075265144b88ba915c9c1d4", - [] - ], - "color-016-ref.xht": [ - "60460bd998e78fc909be797e9073c2b6e197f83e", - [] - ], - "color-017-ref.xht": [ - "3c841881993c43bc5a654097b43603306cbd5c1a", - [] - ], - "color-019-ref.xht": [ - "79ac0258078cec2368b62a01002880291c5049a1", - [] - ], - "color-020-ref.xht": [ - "290b880fe841b6b90a4598aeb5efb05c5f001284", - [] - ], - "color-021-ref.xht": [ - "2c7402ed17ca96f4da87f217c3500bd3ede85433", - [] - ], - "color-022-ref.xht": [ - "307427e5b791e9b8aeac9391afd191b6bff0a6aa", - [] - ], - "color-026-ref.xht": [ - "0b2d2856df50f76e5a2745e1aa178a88b9bca266", - [] - ], - "color-027-ref.xht": [ - "f0ae15aefb36bcd94b1d96b2d9d68707986cea98", - [] - ], - "color-028-ref.xht": [ - "59a7fa02b72b3f09b3aeda914377126432d2180d", - [] - ], - "color-032-ref.xht": [ - "366b222e9bdd1a941c67a51d5c3060c413e5b2be", - [] - ], - "color-033-ref.xht": [ - "8dbab72574bd48d801a73bf1fd92c22c618792c1", - [] - ], - "color-034-ref.xht": [ - "9f135dc7454ab8bbada2414a75798939219e05b4", - [] - ], - "color-037-ref.xht": [ - "75cf4a2f3428da7cc1e7f187b912090156b54c21", - [] - ], - "color-039-ref.xht": [ - "6d08ab58951a7d082fd70728a3a12fee38035f4b", - [] - ], - "color-042-ref.xht": [ - "916cd6647cd851f9cbf3c5ab1c8ed7c94267c36c", - [] - ], - "color-044-ref.xht": [ - "1435c39446263a6f72620e79789c84f8d855223d", - [] - ], - "color-049-ref.xht": [ - "f6fbe6b75c3e455e09b8edc47940a36a44527c7c", - [] - ], - "color-052-ref.xht": [ - "336b50856b97eda3ab920a9383c84a1e97ccbc8f", - [] - ], - "color-054-ref.xht": [ - "129435262e7ce96abc7efed7fde19f65fee749d9", - [] - ], - "color-063-ref.xht": [ - "43cbdd90997717c5c9186057cef95d9890e87432", - [] - ], - "color-070-ref.xht": [ - "7f93e3ad88cc0c27228c5a70e9dfb1a293b77d46", - [] - ], - "color-073-ref.xht": [ - "10485f719bff9350d35b62cd4f006670dd1c6d75", - [] - ], - "color-075-ref.xht": [ - "cc2c24969a83980e830bebd17405676e63982bef", - [] - ], - "color-083-ref.xht": [ - "5417ef07e8fbc1cc59de626384312d592b791b7a", - [] - ], - "color-090-ref.xht": [ - "017bcb95e8c0bd7b1f110a0641c774a76d3e9c22", - [] - ], - "color-093-ref.xht": [ - "aae925114736d5fa87f82526d10302662ce35f78", - [] - ], - "color-095-ref.xht": [ - "62e3f7b7f18c26e23ae8a5021027abb5f86843fe", - [] - ], - "color-103-ref.xht": [ - "934fcd6da64b14d20a116291e7e7e4ff1636d1fe", - [] - ], - "color-110-ref.xht": [ - "a382d1c2fb1f117db67dd62b34c7410157afbd1f", - [] - ], - "color-113-ref.xht": [ - "2f53e518755864f4693fc647ec4434ecbbabec68", - [] - ], - "color-115-ref.xht": [ - "d574618ac554da875cd227cc5883c59cf889e1f4", - [] - ], - "color-123-ref.xht": [ - "68617d2c43a82f4c5e3e6b94e0f21268f72cbab7", - [] - ], "color-129-ref.xht": [ "bf2a612ed02080e0af2f28030cfb0ea0729fdb2e", [] ], - "color-130-ref.xht": [ - "b469a4cb8dc47b04b31f83653a9cc922dd245e73", - [] - ], - "color-131-ref.xht": [ - "2dad381d88fcade0842a91035e9de52dd1983ab8", - [] - ], - "color-132-ref.xht": [ - "9d6a313268e70b523a1cbe4bfd8376bac8ee1033", - [] - ], - "color-133-ref.xht": [ - "43cbdd90997717c5c9186057cef95d9890e87432", - [] - ], - "color-134-ref.xht": [ - "10db5fbb5fef9ee14dfeb33f7827e17bc11cae33", - [] - ], - "color-135-ref.xht": [ - "aa547b0a5422cd92009e37c1ce42ccc66f92b233", - [] - ], - "color-136-ref.xht": [ - "c3382a769aa55fa6c36654268e8d3cd7bdfa7f70", - [] - ], - "color-137-ref.xht": [ - "68617d2c43a82f4c5e3e6b94e0f21268f72cbab7", - [] - ], - "color-138-ref.xht": [ - "832375425ce6abe2776d38fba0f48153587eb8c7", - [] - ], - "color-139-ref.xht": [ - "280a5fc35bc89b3182c196938bb708fce95bacdd", - [] - ], - "color-140-ref.xht": [ - "056f8e4dcf20e08de5fe1f694fa4476b0e72e268", - [] - ], - "color-141-ref.xht": [ - "59025f39b7088aae2e3f440e3b6f35819e6ec939", - [] - ], - "color-142-ref.xht": [ - "3f7ffb2f2bf589ea4190ac77a63bcb9dbee5a94a", - [] - ], - "color-143-ref.xht": [ - "70c54ff1a9ba59c67c087c9cf6d1aec670a3bd75", - [] - ], - "color-144-ref.xht": [ - "5041fb87d3c62a16e2739771f9760f00f422e1d2", - [] - ], - "color-145-ref.xht": [ - "1d05b5f071d0d8018d39d12fb98bf4cc9db22c1c", - [] - ], "color-175-ref.xht": [ "5c4e0b7de5a6799858ab8a3ff3d3f46f89ee0127", [] @@ -375728,7 +379616,7 @@ [] ], "c541-word-sp-001-ref.xht": [ - "25dcde185958d126efa051e4d82aa4cc2c2f5e8e", + "b2cbf53f9ad72d04cc019f19e3be6eea7ab1792a", [] ], "c542-letter-sp-000-ref.xht": [ @@ -376063,10 +379951,6 @@ "ae9648ff690deea942849d84a2d52be5342a8a0e", [] ], - "c63-color-000-ref.xht": [ - "1cb42e36412daedcd31e415e44026d46aaa18d0f", - [] - ], "c64-uri-000-ref.xht": [ "e7d8f606d0a52bdbc22736f2bb3be32985e97f97", [] @@ -379267,6 +383151,10 @@ "c0db9e0e8bbc2bbec91ffaa564e326b4744dd2fd", [] ], + "vertical-align-122-ref.xht": [ + "86b4856266285a3a9b66b5c426384d2699cbaceb", + [] + ], "vertical-align-applies-to-001-ref.xht": [ "8ed51e0c21a0613e67c49e3e36e488e176027165", [] @@ -379737,6 +383625,10 @@ "f9c8c4c765f75eb1135f9c723e90de5b34b18010", [] ], + "margin-collapse-clear-011-ref.xht": [ + "2611de9f4a9310475172e775c4b18db81567bcfc", + [] + ], "margin-collapse-min-height-001-ref.xht": [ "f86d2b201f6a488b5d875b61fab075497d88d08c", [] @@ -380509,6 +384401,10 @@ "22204233d95d1deb05ca71ae04a885434db1d3ac", [] ], + "inline-box-border-line-break-ref.html": [ + "6b66951fcc76b42253fb1486563a029bb845b9b2", + [] + ], "inline-non-replaced-height-002-ref.xht": [ "0cc109939200d47938bf06729b150ce54d8dcb55", [] @@ -385505,7 +389401,7 @@ ], "reference": { "no_red_3x3_monospace_table-ref.xht": [ - "821ddc77b00912897200e27392583fed6d07173d", + "5425f5b17501d561212af815fc05957976492905", [] ], "no_red_antialiasing_a_bc_d-ref.xht": [ @@ -385715,6 +389611,14 @@ "5133164219b73747fb0f40fc98cb4a7bfca8b56a", [] ], + "table-anonymous-objects-212-ref.xht": [ + "4781f3c52702c92cedd61e79d0f9471316f7f4bd", + [] + ], + "table-anonymous-objects-213-ref.xht": [ + "9c2f98a29d8fc7bbd33463236a6ea02706206329", + [] + ], "table-backgrounds-bc-cell-001-ref.xht": [ "4ee2659b4458c95b53dfbd16071d4aed7b11a3b7", [] @@ -385991,6 +389895,10 @@ "0e8b86f98b128d6994b1d815e281c29700aae66b", [] ], + "text-align-justify-with-overflow-ref.html": [ + "be2ac9dae173062a8a473fdeeda4afa97d418319", + [] + ], "text-align-white-space-001-ref.xht": [ "44dc0aabc9a8588311acd8e64d10e0facd4a69b7", [] @@ -386115,6 +390023,10 @@ "8b9aeacf34436c545d0d087db04fef0170825962", [] ], + "text-indent-wrap-002-ref.html": [ + "9750ce4c8994bb807cfbdd5cba0f789892bda07c", + [] + ], "text-transform-001-ref.xht": [ "f34e7044897f7f48e204a7b8c75bd051c227a8c9", [] @@ -386501,54 +390413,6 @@ "2ec1fb0447c9c08ef41b147c4b7109022a5e4678", [] ], - "outline-color-049-ref.xht": [ - "e1d340d24a10bcc5748b3d5563092aa6ac4fd355", - [] - ], - "outline-color-052-ref.xht": [ - "fe849dfc2c1c94d42b125a084764dc8733dd55fe", - [] - ], - "outline-color-054-ref.xht": [ - "ecd5c5b6a70cd651817a91ee1e261f6cfda784e0", - [] - ], - "outline-color-070-ref.xht": [ - "ce6d3133e770c12eb1f8d7de23fdb7aafe5efd3d", - [] - ], - "outline-color-073-ref.xht": [ - "e5289db8f46abd985e27a7cbe3940833efcaadc7", - [] - ], - "outline-color-075-ref.xht": [ - "bbac031cb8b97fb404d00fe1bf1216b7be1cb00c", - [] - ], - "outline-color-090-ref.xht": [ - "ec3954e119a9d4a48d871de5ff263c96bb3b9cc4", - [] - ], - "outline-color-093-ref.xht": [ - "6086a60f4f66ef2ac25d20af21b19b6e22348ea5", - [] - ], - "outline-color-095-ref.xht": [ - "db3b9a2b2e8b5f0077aa1e55920f138079a89274", - [] - ], - "outline-color-110-ref.xht": [ - "215dd07ad215e9a27facdf298ec935059da9f777", - [] - ], - "outline-color-113-ref.xht": [ - "8baabd985a2a3b6f7d6e0f7bc53de582b2ddf880", - [] - ], - "outline-color-115-ref.xht": [ - "b3d7efcb6022ed6452694c48d21ff81a4b4f1f3a", - [] - ], "outline-width-096-ref.xht": [ "5fe0512173c24af3afbc336efb24d331019d1e4c", [] @@ -386721,10 +390585,6 @@ } }, "values": { - "color-000-ref.xht": [ - "9d463033b3e5f86af01048193fb627372af3de18", - [] - ], "numbers-units-007-ref.xht": [ "ac9b53bd4d89f57ceea6108f557a566e33c25d76", [] @@ -390044,10 +393904,6 @@ "0d0ac933ecc8c5c5ccca1cd17d7aa35967822204", [] ], - "RGB_Circles.oggtheora.ogv": [ - "baed6e2f5df3573ca38c233d105b696867323b3f", - [] - ], "RGB_Circles.webmhd.webm": [ "37e6862bcaff04e20e155ea9bd1921ec3beb72eb", [] @@ -390217,6 +394073,10 @@ "7b27284cdf42896765b1cf05c1e8ab74d1ab3649", [] ], + "align-content-block-dynamic-content-ref.html": [ + "b77c76235d9d7de087540e74163f80bd623ca067", + [] + ], "align-content-block-overflow-000-ref.html": [ "8ca5407e4ca0a65d3a98e322c90d4cada8fef15b", [] @@ -390249,6 +394109,10 @@ ] }, "self-alignment": { + "block-justify-self-ref.html": [ + "862719986965da01ca6daf529ddb95c1f3bd206b", + [] + ], "self-align-safe-unsafe-flex-001-ref.html": [ "69d7f347087d7a298090a76762714268aa11930a", [] @@ -390272,6 +394136,10 @@ "self-align-safe-unsafe-grid-003-ref.html": [ "0d0b17977d291bcc98874f34eb5364e819050dcc", [] + ], + "self-align-start-end-flex-001-ref.html": [ + "1b8c2558c316b20177e5b6c6615193b7e9e978cf", + [] ] } }, @@ -390284,19 +394152,135 @@ "40ccc2b044b3da3be44582522d99e5a138b6f354", [] ], - "anchor-default-ref.html": [ - "4d7de12447c8297b8f0fc04338d80a028a3e9798", + "anchor-center-scroll-ref.html": [ + "d2638491cef23e0c1a788801aec9a4ec848b78d4", [] ], "anchor-position-top-layer-ref.html": [ "dc7f77f2b3441ebee25f3e40a9480b668ee79ea4", [] ], + "anchor-scroll-overflow-hidden-ref.html": [ + "b674998a5db1f347af82bde1f5efb4261a3732af", + [] + ], + "anchor-scroll-position-try-012-ref.html": [ + "fbc0b5fc6da55cfadb1ea610092882b8ff7502a7", + [] + ], + "anchor-scroll-scrollable-anchor-ref.html": [ + "3528b565fccb1d32dff6fe732c9497446e5f525e", + [] + ], + "position-anchor-ref.html": [ + "4d7de12447c8297b8f0fc04338d80a028a3e9798", + [] + ], + "position-area-inline-container-ref.html": [ + "ecf54f1a9ac2d756cb78f4d2c0690c1ac8b65916", + [] + ], + "position-area-scroll-adjust-ref.html": [ + "5cd863500a7729a8acf0eaab5883ca58cfcfb935", + [] + ], + "position-try-switch-from-fixed-anchor-ref.html": [ + "72026a2f63e0bef3ba9481780946f1f9d1148a5a", + [] + ], + "position-try-switch-to-fixed-anchor-ref.html": [ + "254cbf3df455dad3c235a7880463f5a275e2957b", + [] + ], + "position-visibility-anchors-valid-ref.html": [ + "96b4e865512c2adf1215e7aaae43bc1053bd6356", + [] + ], + "position-visibility-anchors-visible-after-scroll-in-ref.html": [ + "10f74d4fb09852a4d7c139de70ac2d10da94575e", + [] + ], + "position-visibility-anchors-visible-after-scroll-out-ref.html": [ + "bd4fe1f09f8ae455f71645958092e7f53e4617b1", + [] + ], + "position-visibility-anchors-visible-both-position-fixed-ref.html": [ + "7a9d69a9e3b3206fbc8a5865fb951ecec67b1bea", + [] + ], + "position-visibility-anchors-visible-chained-004-ref.html": [ + "409247a6953084288fcd3cb1623f4b200dab505a", + [] + ], + "position-visibility-anchors-visible-change-anchor-ref.html": [ + "cc35e4cd1f23e951ae6bd233362789945d6975c5", + [] + ], + "position-visibility-anchors-visible-change-css-visibility-ref.html": [ + "c4af73bf65bbfc79da015b813ebb396813482ee0", + [] + ], + "position-visibility-anchors-visible-css-visibility-ref.html": [ + "3ac85888e484b15a27add7331f84ee731fa26f66", + [] + ], + "position-visibility-anchors-visible-non-intervening-container-ref.html": [ + "3b6532e27b02a21037926adda9c4204c3ac6c017", + [] + ], + "position-visibility-anchors-visible-position-fixed-ref.html": [ + "e24992fd5ea44d66f01c275049436d15349f7a2b", + [] + ], + "position-visibility-anchors-visible-ref.html": [ + "17798173804b41258690ed22f1169a529bca42fe", + [] + ], + "position-visibility-no-overflow-ref.html": [ + "d6e64d0d107664532f657d8774df1aeda6e038f9", + [] + ], + "position-visibility-no-overflow-scroll-ref.html": [ + "b62a6d1078b28c3083e4292b0777e24c13b716e1", + [] + ], + "position-visibility-remove-anchors-visible-ref.html": [ + "135763bf6bb8d705810247b3e6ac6b85e0d54b38", + [] + ], + "position-visibility-remove-no-overflow-ref.html": [ + "b41d2110e5079c847378f41b1a95e1485028a091", + [] + ], "reference": { + "anchor-position-circular-ref.html": [ + "6beb7c77e998b6750859580f910e97b005430e4b", + [] + ], + "anchor-scroll-chained-001-ref.html": [ + "fb858cc10527ba5a0cd17d368c3b9184f94b5592", + [] + ], + "anchor-scroll-chained-002-ref.html": [ + "9dde5d00f00a7ae4a768f55c4a3438d0dd110e79", + [] + ], + "anchor-scroll-chained-004-ref.html": [ + "22c2270ddea93e99ecd938b67ee6b0e536733cd4", + [] + ], + "anchor-scroll-chained-fallback-ref.html": [ + "0933430fc3b570c4a6ea304b38308c3c406e9f13", + [] + ], "anchor-scroll-composited-scrolling-006-ref.html": [ "92fe187117ed3f55379797da7987e5272bd71301", [] ], + "anchor-scroll-fixedpos-002-ref.html": [ + "7bae7bfbb827561d340acd4b7363252533230ceb", + [] + ], "anchor-scroll-fixedpos-ref.html": [ "e73354df72dac33f7a94eaef445e80ec61e3976a", [] @@ -390309,6 +394293,18 @@ "06d4a60e23a4822eee74c792bd143822625c9b96", [] ], + "anchor-scroll-to-sticky-001-ref.html": [ + "2327b50607dab431d458087ce90eeb676fa49349", + [] + ], + "anchor-scroll-to-sticky-002-ref.html": [ + "d08d3545d6a31bcdbb67bd6c4f2f62597f5f8add", + [] + ], + "anchor-scroll-to-sticky-004-ref.html": [ + "d97b4ffc145357ae1e62032cfa0ae1fe674b4817", + [] + ], "anchor-scroll-update-005-ref.html": [ "b0c3a820f8c73834d863bbc2c595ef66f2535924", [] @@ -390326,7 +394322,7 @@ [] ], "sticky-anchor-position-invalid-ref.html": [ - "3a48755874448eced08a7bc691641613b25ca240", + "c4a5dd37354f61c66b0e2e53847b8fcc16112fc3", [] ] }, @@ -390346,6 +394342,10 @@ "3ef19970007d4bb6a889f9601bc7c910f619f841", [] ], + "WEB_FEATURES.yml": [ + "2059bd49274dcd9fe4896674e266c0f3b33b29da", + [] + ], "animation-common-ref.html": [ "ddc7da67ddf5fed83e653d1130a65f5c1e3a6dec", [] @@ -390354,6 +394354,10 @@ "52855cb91e6b780fc6375280b0643335802dd4e3", [] ], + "animation-offscreen-to-onscreen-ref.html": [ + "76fd70f3e02f93c460ef29fb34488243a9a2a2f5", + [] + ], "animation-opacity-pause-and-set-time-ref.html": [ "ab9f614ed8e7e846b9c5f3c5d66a0827db4d6637", [] @@ -390378,10 +394382,20 @@ "a25f465fdf9c10d3d51e7576eb475d025516b2ad", [] ], + "jump-start-animation-before-phase-ref.html": [ + "3e1d363058f1378aeb45e94389517410359a4010", + [] + ], "nested-scale-animations-ref.html": [ "6dd3cde31126329fd3012c0fc1feac5855b24826", [] ], + "parsing": { + "WEB_FEATURES.yml": [ + "7e3ccd1b3b7f488544a7ca4073935a645ae5e1fd", + [] + ] + }, "support": { "empty-sheet.css": [ "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", @@ -390414,7 +394428,15 @@ "d673be5f4f29bf82619aba6f40ed7e287e902582", [] ], + "WEB_FEATURES.yml": [ + "bee11ae42cf53d3e57733ffb0401a0c8ca27cfa5", + [] + ], "animations": { + "WEB_FEATURES.yml": [ + "0d5911d01d5cec0d737aae75aa477d5719c6dcd5", + [] + ], "background-color-animation-element-not-visible-at-current-viewport-ref.html": [ "e47a83e393b77657869eceb7786bbf3e61ae4b07", [] @@ -390621,10 +394643,18 @@ [] ], "background-clip": { + "WEB_FEATURES.yml": [ + "5258340ceeba8489d3c75a62b6199908640bd591", + [] + ], "clip-rounded-corner-ref.html": [ "379ad36992a92384444bd0db12cb7b90531fcd1c", [] ], + "clip-text-animated-text-ref.html": [ + "10ffd2442096f35175172fa2d2efef3a2f6534e5", + [] + ], "clip-text-dynamic-2-ref.html": [ "2619a196d77f615cdee81bfdfe8d8cf3449bedef", [] @@ -390636,10 +394666,6 @@ "clip-text-multi-line-ref.html": [ "455daa7aeabc3fba876eda3d1807b4ddca98c4f9", [] - ], - "list.txt": [ - "52c47ebba998b264b0218b84bacf2cf9784371ea", - [] ] }, "background-clip-color-ref.html": [ @@ -390658,6 +394684,14 @@ "87ddae625a5453d1602be1580264e412f5de21ae", [] ], + "background-gradient-interpolation-001-notref.html": [ + "7820bb0c4103d76035316ce2974f6841403c150a", + [] + ], + "background-gradient-interpolation-002-notref.html": [ + "672dd42e8cc9dd9fd2443815eb5c785d48874531", + [] + ], "background-image-centered-ref.html": [ "f52cd963ad25238bafc2081b7024aa5375614f5a", [] @@ -390707,10 +394741,6 @@ [] ], "background-origin": { - "list.txt": [ - "a6fdedde542b154bbd33a090981da966ce5e6197", - [] - ], "support": { "yellow-orange-blue-160x160.png": [ "1372399ddf3c5122d67ae6ae3efcb234c285f8c4", @@ -390875,6 +394905,10 @@ "rectangle-96x60.png": [ "add0d272b1eb56d0003d414c6e04f080053b62a4", [] + ], + "sprite-view-no-viewbox.svg": [ + "c17f5cf582611b0b85e5af0c1668e635865b057c", + [] ] }, "vector": { @@ -391374,22 +395408,6 @@ "10324966edb042c1c7298ce22dad76766c2a777b", [] ], - "color-mix-currentcolor-background-repaint-expected.xht": [ - "05a13794482a94f6c10bd9d4c98704e63ef60331", - [] - ], - "color-mix-currentcolor-background-repaint-parent-expected.xht": [ - "05a13794482a94f6c10bd9d4c98704e63ef60331", - [] - ], - "color-mix-currentcolor-outline-repaint-expected.xht": [ - "05a13794482a94f6c10bd9d4c98704e63ef60331", - [] - ], - "color-mix-currentcolor-outline-repaint-parent-expected.xht": [ - "05a13794482a94f6c10bd9d4c98704e63ef60331", - [] - ], "document-canvas-remove-body-ref.html": [ "8612aaafa99b6805690766d4ac5f910a695a7991", [] @@ -391424,6 +395442,12 @@ "a6fd494660b6f1072d68211862b7bfd14fd345c5", [] ], + "parsing": { + "WEB_FEATURES.yml": [ + "6a2438077a7db085bf5e0a1450095e13aee45dee", + [] + ] + }, "reference": { "60x60-green-background.html": [ "d19ed4ea2678a45bbe53838d6eebf61ab641bcdd", @@ -392444,15 +396468,83 @@ ] }, "css-borders": { + "META.yml": [ + "e1ef68513f7cabfd9c1ec444e8e9c5f00c9e0baf", + [] + ], "reference": { "border-radius-greater-than-width-ref.html": [ "3c8c470ef5ac93ed8d29fb26d40a2c4bbea47827", [] ], + "border-radius-side-shorthands-ref.html": [ + "428a1c8bf79bf545aafb859d4f586d842874f583", + [] + ], "borders-on-sub-unit-sized-elements-ref.html": [ "19233778ed87c6153924a153e5fdaadc5925a057", [] ], + "corner-shape-angle-bottom-001-ref.html": [ + "b66d20e03eb5316afe5b82de96270f4c30af8e3c", + [] + ], + "corner-shape-angle-bottom-left-001-ref.html": [ + "9cb42c2d6375ba618ee4c7ea2fa0c734317becd6", + [] + ], + "corner-shape-angle-bottom-right-ref.html": [ + "bf05cdb6c1f0dee933cadb3ade4933bdf16dedea", + [] + ], + "corner-shape-angle-left-001-ref.html": [ + "c9b74047907d9a7346e7956d0660cdb4c68030b5", + [] + ], + "corner-shape-angle-ref.html": [ + "6080f68c654ecded6545e9627dba427a42d345f1", + [] + ], + "corner-shape-angle-right-001-ref.html": [ + "0fb9b128368bb2f6669aacbf60875ca9f5a79bd1", + [] + ], + "corner-shape-angle-top-001-ref.html": [ + "d16076c29e1bc19edc21a078b1cf53905c2f4d92", + [] + ], + "corner-shape-angle-top-left-bottom-right-ref.html": [ + "1588d40f4c5f994748ef6a60b7c0a6305c277a0e", + [] + ], + "corner-shape-angle-top-left-ref.html": [ + "d461b7708096ca7c21be869430ba095f918207c3", + [] + ], + "corner-shape-angle-top-right-001-ref.html": [ + "9047db1de0358c9f5e070c5dd8684a90b8e577fa", + [] + ], + "corner-shape-angle-top-right-bottom-left-ref.html": [ + "0cda23ed45d4427a972413cb5d1614316e365cbb", + [] + ], + "corner-shape-round-bottom-left-001-ref.html": [ + "eff799bb96af234df351e2e30b67df04497160e3", + [] + ], + "corner-shape-round-bottom-right-ref.html": [ + "3e60f0058f65ae7f57017dca654f8c85299028b6", + [] + ], + "corner-shape-round-top-left-ref.html": [ + "864f1fca7add0640e8d6389f88d3a4b818b0dadd", + [] + ], + "corner-shape-round-top-right-001-ref.html": [ + "56caa3dac0af793dc83f808dc876523d643c8d11", + [] + ], "subpixel-border-width-ref.tentative.html": [ "3ba8ac5754ef75130a6e843c5bc259190b8b63f1", [] @@ -392465,6 +396557,68 @@ "b8ce0e834856b0a53545ccd2cf5046a83a0a8fb4", [] ] + }, + "support": { + "corner-shape-angle-all.svg": [ + "4463dc02624cc549cc3148711ebf95a2139a6f11", + [] + ], + "corner-shape-angle-bottom-left.svg": [ + "f6ffa30bbabd719bdf96bf1bf902fb4b493c833d", + [] + ], + "corner-shape-angle-bottom-right.svg": [ + "65ccb694f3e4c17cd8d0d80c43932083e4b8f63a", + [] + ], + "corner-shape-angle-bottom.svg": [ + "a1b46822f99728bcb23705376c716452369bf7b8", + [] + ], + "corner-shape-angle-left.svg": [ + "5cb22750b4d47252b123aa40598939701faa24e9", + [] + ], + "corner-shape-angle-right.svg": [ + "4e7fe54a373e66ffe6cc6e9f3e7b736a08e7e42f", + [] + ], + "corner-shape-angle-top-left-bottom-right.svg": [ + "7581bde26d760fed6869bbef262000c0003f0952", + [] + ], + "corner-shape-angle-top-left.svg": [ + "793e0dae88908c91cf669ef6ec62a53ea5569aaa", + [] + ], + "corner-shape-angle-top-right-bottom-left.svg": [ + "285ba108762e89801908ea2afe2266f2389108db", + [] + ], + "corner-shape-angle-top-right.svg": [ + "12c5f5fe858d05a47d4d12f3616fee4489495d81", + [] + ], + "corner-shape-angle-top.svg": [ + "1b460436605364e8890abeaf25e90c6123ca7c0e", + [] + ], + "corner-shape-round-bottom-left.svg": [ + "9947b39748ae2ad5e0bc0ca6c7977dda5d041f87", + [] + ], + "corner-shape-round-bottom-right.svg": [ + "b01202b8be40df2ba5407c4ddebd72773b184efc", + [] + ], + "corner-shape-round-top-left.svg": [ + "3ec5f63d7070071ae04e45ba1d960ce490bc1068", + [] + ], + "corner-shape-round-top-right.svg": [ + "ffadca194e2b36105f6342023e65a57e45f978c5", + [] + ] } }, "css-box": { @@ -392473,6 +396627,30 @@ [] ], "margin-trim": { + "block-container-block-end-collapsed-margins-ref.html": [ + "1d2f7ff98b28adb58509753e6c1a3714fa6ffe3d", + [] + ], + "block-container-block-end-self-collapsing-item-has-larger-block-end-ref.html": [ + "9633928fd4d1a9702496ff714241f2436a92169a", + [] + ], + "block-container-block-end-self-collapsing-item-has-larger-block-start-ref.html": [ + "0b2b5662d1065241bdef7a9353891ba5cd58afb2", + [] + ], + "block-container-block-start-collapsed-margins-ref.html": [ + "c90bc2bf3a9d683bc72deaee29396b388e549894", + [] + ], + "block-container-block-start-self-collapsing-item-has-larger-block-end-ref.html": [ + "f851fe437a15ddba32af84122047870a81234fad", + [] + ], + "block-container-block-start-self-collapsing-item-larger-block-start-ref.html": [ + "3e7de7eb972639ef400b20493e87eae7ed8a2920", + [] + ], "block-container-non-adjoining-item-ref.html": [ "4affb87f11b2174047836baecc556734fd2e77b7", [] @@ -392664,6 +396842,10 @@ "3b9e23678d4eb08387423de7a0a0dfb5675445ef", [] ], + "box-decoration-break-clone-009-ref.html": [ + "23be78f87fcc373e74584c788b05b61a374803b3", + [] + ], "box-shadow-001-ref.html": [ "f87e16adedc779911ec081990acd76dd5f6ed5ad", [] @@ -392805,6 +396987,14 @@ "de6bd49c922454e303216fb45a627954bab33df6", [] ], + "multi-line-row-flex-fragmentation-081-print-ref.html": [ + "5eb4a3117362167e3fcb38f1d1295de6147f56e2", + [] + ], + "multi-line-row-flex-fragmentation-082-print-ref.html": [ + "e7314be63b845053b717580eaf2d61febe99fbba", + [] + ], "single-line-column-flex-fragmentation-040-ref.html": [ "3d20cb44e49b065fdb90d400fba69aca442f0fc2", [] @@ -392821,6 +397011,14 @@ "100fcca0840f784914d386d366fce905cb95f184", [] ], + "single-line-column-flex-fragmentation-068-print-ref.html": [ + "feff86edf96a6611be80c2d7b789d9394c398339", + [] + ], + "single-line-column-flex-fragmentation-069-print-ref.html": [ + "7f37d32454e3fc5a675c687d8db22034d646c910", + [] + ], "single-line-row-flex-fragmentation-027-ref.html": [ "e1079de13fb771854107b4022054945a0b460e18", [] @@ -392866,6 +397064,12 @@ "5effc82452da07054ca2c3e2d74e3a9b0f84d9ea", [] ], + "grid": { + "monolithic-overflow-print-ref.html": [ + "58cc0828d2cd31182dac2b5e8ee555721d0ed39e", + [] + ] + }, "line-after-unbreakable-float-after-padding-ref.html": [ "9a329b2446849d8f13b9d88cb5f73934536c3767", [] @@ -392902,6 +397106,14 @@ "ad74e1f53d4f27fde674dfb964366f8574cac9c1", [] ], + "overflowing-block-002-print-ref.html": [ + "0322ba04a07a7c0e36b2c4f2f9f25bc4f357ed3c", + [] + ], + "overflowing-block-003-ref.html": [ + "a8f86d1cfe4af41a575f22a9896bb8233a964858", + [] + ], "overflowing-block-print-ref.html": [ "cf345b59638f28ddf423ed343a269178ab47f1b9", [] @@ -393047,6 +397259,30 @@ "2721bc0af0b11cddb17087d988990379cc48ebc5", [] ], + "table-fragmentation-001a-print-ref.html": [ + "d4229ebb873ef95f1abe12b31493dad789183a04", + [] + ], + "table-fragmentation-001c-print-ref.html": [ + "d7778e340ab092422994fa3fcd0d87dc4fee6599", + [] + ], + "table-fragmentation-002a-print-ref.html": [ + "d7272352a158923070af69e47e07ed08ebb5b11c", + [] + ], + "table-fragmentation-002c-print-ref.html": [ + "18c1e0d5a9b8cc291f1142776736680f791f8aed", + [] + ], + "table-fragmentation-003a-print-ref.html": [ + "bf99e5b41e2094ade866ef5ff9451f414a2e2916", + [] + ], + "table-fragmentation-003c-print-ref.html": [ + "50738fbaa8af3ed2abe0cd8a498d8f299000578f", + [] + ], "table-grid-paint-htb-ltr-ref.html": [ "5830aa5fd51585120e86e4579ecee85bb5b84628", [] @@ -393100,6 +397336,18 @@ "d7d3ebf604c62d80874d4f42a2dc71744c776b75", [] ], + "transform-022-print-ref.html": [ + "45c3abf1810a55dc760058bf5fcc3064f3bac188", + [] + ], + "transform-023-print-ref.html": [ + "7204e1d65712ce4e4b8680184b976b8982b6a981", + [] + ], + "transform-024-print-ref.html": [ + "766c415a1be21e6ebf9022a0826a1e865688fcb8", + [] + ], "underflow-from-next-page-print-ref.html": [ "5c444b7220436690b42c6b22ff8be424df36680a", [] @@ -393114,6 +397362,10 @@ "96467729fe91cef54b0bf5cc82d83e9f2a5c01ed", [] ], + "WEB_FEATURES.yml": [ + "5d0f726ab5d268838519d98bd3084933944de766", + [] + ], "all-prop-001-ref.html": [ "e25558578344f0725d752e35fcc35e2db683eb2c", [] @@ -393142,6 +397394,12 @@ "fe004e5bda989248b67aad3b5c20f8a280447914", [] ], + "parsing": { + "WEB_FEATURES.yml": [ + "56f7e89b85a9ac407fb3acd3fe0974d3928bc56b", + [] + ] + }, "reference": { "all-green.html": [ "c70532129ad86b81faad3e98093084d644100bfb", @@ -393166,6 +397424,22 @@ "661016619c0c46c113dedc57aa890f62b35e137c", [] ], + "scope-featureless-ref.html": [ + "b53c789544655dddf05bb40fb5cc8ad46622e0e2", + [] + ], + "scope-part-ref.html": [ + "d0824e735722a568d86c46e822b8d9adb30fd5d5", + [] + ], + "scope-pseudo-element-ref.html": [ + "2ad6a0995a9e3bb9db0131eb2c42b19d09768fb4", + [] + ], + "scope-shadow-sharing-ref.html": [ + "4ade124bcd89965d2e4c325c81a6cc29d3686a23", + [] + ], "scope-visited-ref.html": [ "91efd659216ab1de4efdfe2cac961bc6200ae62b", [] @@ -393190,14 +397464,14 @@ "21086fc62185a65da89513daf0c8bc1b66688064", [] ], - "LICENSE": [ - "d47f50cca8a2d9dc40dee384ae256f8aecf44e0a", - [] - ], "META.yml": [ "f5030db7cb57a09012f740fe54ae26d466bcef24", [] ], + "WEB_FEATURES.yml": [ + "cbb0f23ede228cea0304ad3c7de5e9ca41a047d4", + [] + ], "a98rgb-003-ref.html": [ "9db28b6de5aaabe81cc4477f7e4bd048a5d43cab", [] @@ -393256,6 +397530,14 @@ "28f67840548fbd1a3c2c97dfccbf97575f7e9728", [] ], + "clip-opacity-out-of-flow-ref.html": [ + "7610a6f1911aecb33cedf7fad16c48977a5d14ba", + [] + ], + "color-layers-no-blend-mode-ref.html": [ + "7e45ac4f8b7ffd5c4085afe441e05c7c856408d5", + [] + ], "color-mix-basic-001-ref.html": [ "7296d17fba3bd7b45769cbed12e954509ee85eac", [] @@ -393281,7 +397563,7 @@ [] ], "color-mix-non-srgb-001-ref.html": [ - "15556737c7f8b10e80bcaec6bf550403050dd990", + "e143350866dc37125d840f1783780e324eaba152", [] ], "color-mix-percents-01-ref.html": [ @@ -393348,6 +397630,14 @@ "dc7e324e0edbd096f5ac6a31346836377e366c8d", [] ], + "hsl-clamp-negative-saturation-ref.html": [ + "33a82517ae7f68bc45e59239cb1c7a1cc1dfb09a", + [] + ], + "hsla-clamp-negative-saturation-ref.html": [ + "bbf5c3b037d071467c1286941b3edf5a79bf6ce7", + [] + ], "htaccess": [ "26cbb024e8aedc9b8f613872b76dd1d9f4dedc31", [] @@ -393381,7 +397671,7 @@ [] ], "lab-l-over-100-ref.html": [ - "57328cfa7c5569850f1d69fbcb6cab7c81b68478", + "eccc492079d2d7510319a60b20e7ad780bd5579c", [] ], "lch-004-ref.html": [ @@ -393401,7 +397691,7 @@ [] ], "lch-l-over-100-ref.html": [ - "67766274e59aced21539d94499d3a324d11b8478", + "291772e166fb93f557fc1aac117716fc8ff82ba8", [] ], "mossgreensquare-ref.html": [ @@ -393424,8 +397714,16 @@ "c71e428aa2a88250fa5a09304885143fe6b9ae29", [] ], + "oklab-l-almost-0-ref.html": [ + "244321ea69d2d89dc1bd306fb78048ca322421c1", + [] + ], + "oklab-l-almost-1-ref.html": [ + "72cdf3544705d9373dd6ad595d7563a183fb5018", + [] + ], "oklab-l-over-1-ref.html": [ - "eb380dcb750e6fe1eb2a329544dc960cc4b6d891", + "f050bbc6434ee6e8e10d45ee4340695bfd95fbb5", [] ], "oklch-004-ref.html": [ @@ -393444,8 +397742,16 @@ "fd1deb36f4a7632beaf6cda83b4fa2ba9f46cf96", [] ], + "oklch-l-almost-0-ref.html": [ + "e019136f96f73efaba80b5e7aba95ac3a95e6abd", + [] + ], + "oklch-l-almost-1-ref.html": [ + "e1f29eaa1853c0f4454283763cf23488578dcecc", + [] + ], "oklch-l-over-1-ref.html": [ - "2c7815c5f0e408197241367e2bb38e7b7df8dfdc", + "ae1b5e00e57039e8f0e8d3ea3db3495acc02472b", [] ], "opacity-overlapping-letters-ref.html": [ @@ -393456,6 +397762,12 @@ "4b1079569f10e26d9ede14a535a0e658d7047af1", [] ], + "parsing": { + "WEB_FEATURES.yml": [ + "cc8273c2adc8a53ee46bd3882878cbebe0f39b07", + [] + ] + }, "prophoto-rgb-003-ref.html": [ "e938de60345bf348d9092d03af79c16bccec9929", [] @@ -393624,10 +397936,6 @@ "f79bc4beb3cac388bdc8c10d0169d1b41f8723f9", [] ], - "t424-hsl-clip-outside-gamut-b-ref.html": [ - "7d1f1bf2786074794f9069ea14080cd2d6731ded", - [] - ], "t424-hsl-h-rotating-b-ref.html": [ "60585ea91ae15a1e04b48af9ebb008d1926fbb17", [] @@ -393700,10 +398008,6 @@ "bc21fe36a26a573b5922aa84b9934e003bcadb49", [] ], - "t425-hsla-clip-outside-device-gamut-b-ref.html": [ - "d35a608fb58c1f9258477207ddb12dd89e93f9a1", - [] - ], "t425-hsla-h-rotating-b-ref.html": [ "2aec2f33e18d9599530704bbfea224a6af718243", [] @@ -393772,6 +398076,10 @@ ], "rendering": { "dark-color-scheme": { + "WEB_FEATURES.yml": [ + "48bbe25901e085455ca7569c4bfbc0147fd40455", + [] + ], "color-scheme-change-checkbox-notref.html": [ "921482afcdf10cc38d113d0d428e1df43d09dd66", [] @@ -393788,6 +398096,14 @@ "8cc4618ede4af030adc8fe5f119deccf3c2e3882", [] ], + "color-scheme-iframe-preferred-page-dark-ref.html": [ + "24e8c6edb0993f49366ee38d0798731cd2194b41", + [] + ], + "color-scheme-iframe-preferred-page-light-ref.html": [ + "5c614823824a8973d57fb5d5bf64c6eb99630ead", + [] + ], "color-scheme-iframe-preferred-ref.html": [ "ff2683bbd31da32aecf5bb48c3cf417543438f9c", [] @@ -393824,16 +398140,8 @@ "prefers-color-scheme-blue-purple.html": [ "99d687b47f4685e8ca0960fbcfd7aaa7bdafc19a", [] - ], - "prefers-color-scheme.svg": [ - "3afcac70fe9b561280f32d53420404a3cf23e1cf", - [] ] - }, - "svg-as-image-ref.html": [ - "1ff9d88f302f90dbe4b708657e9fb0bc1378453a", - [] - ] + } } } }, @@ -393858,6 +398166,114 @@ "3e1f9b6a78416bd7c74759c5ad859001f101081e", [] ], + "container-queries": { + "WEB_FEATURES.yml": [ + "445ceb373f006b2741029c1360416dee2d3d7057", + [] + ], + "change-display-in-container-ref.html": [ + "8dd3b8b2c1dea6230357f8ff6ec1225154650094", + [] + ], + "container-for-cue-ref.html": [ + "40b0a07ae0183163576247a4adcf534345b068c1", + [] + ], + "container-units-gradient-ref.html": [ + "dbdabd9bc4ecee3eec34406e7fd13a1e04141978", + [] + ], + "container-units-rule-cache-ref.html": [ + "6c8261959f674aa8a80f1f1f8fda343e64450114", + [] + ], + "container-units-sharing-via-rule-node-ref.html": [ + "c664ce4ccf38f781834dfbdc4d38f8d7af57484b", + [] + ], + "counters-ref.html": [ + "303c1e89bdfe5449177a2d144f4be1e1760a80d5", + [] + ], + "display-in-container-ref.html": [ + "fd8e9ef0c10f523ff3347d5a71530f0adca66b4e", + [] + ], + "fieldset-legend-change-ref.html": [ + "b6e8dc603849e6691dc509b6c7085ea7a23d46b6", + [] + ], + "inline-size-bfc-floats-ref.html": [ + "ecd72b7516c41c83b6e8d320c9b0b87f9c231781", + [] + ], + "inner-first-line-non-matching-ref.html": [ + "99e9c334bf2c856535c7643911a3050390658a6f", + [] + ], + "no-layout-containment-baseline-ref.html": [ + "295dc88c1bd409ffce276502a1c5d6a3d5e9ed18", + [] + ], + "pseudo-elements-002-ref.html": [ + "da96a826cffe697475ff552aafe97d72d613e9fb", + [] + ], + "pseudo-elements-002b-ref.html": [ + "5783b77fec394dbee9fe97bfd0925ffc1043dacb", + [] + ], + "pseudo-elements-009-ref.html": [ + "fe6fbb140b387701bbfbb6f82e65845c96715896", + [] + ], + "pseudo-elements-010-ref.html": [ + "a98a4023284ae0c489d8a6cb161e1b1f67ee4cf4", + [] + ], + "resize-while-content-visibility-hidden-ref.html": [ + "2a87df85b7aba82588c984e7c41132feb777f427", + [] + ], + "scrollbar-container-units-block-ref.html": [ + "0d64f07f4a53144ee62b66af6d446a4f04a4538c", + [] + ], + "scrollbar-container-units-inline-ref.html": [ + "bd9c0966856f33ee38fc632e8099df7d41d80bae", + [] + ], + "size-container-with-quotes-ref.html": [ + "e1822fa544ec91a113eaa911f69243d767eaf5cc", + [] + ], + "support": { + "cq-testcommon.js": [ + "2eaca1dd091cbf7c3a406fa02c2696d7a9c258e4", + [] + ], + "test.vtt": [ + "ffd1d4ca443d3c86e1c2076f0584ef9a7b4a049f", + [] + ] + }, + "svg-foreignobject-no-size-container-ref.html": [ + "abf1af122baad9f9ae39640be4ebc56171b4db23", + [] + ], + "svg-g-no-size-container-ref.html": [ + "4f30c399399796410b47ca5a63b49c97509f9fad", + [] + ], + "table-inside-container-changing-display-ref.html": [ + "c0355d2f5019b8c7c1e0b387e2f9c3b1a0c1f81c", + [] + ], + "top-layer-dialog-backdrop-ref.html": [ + "49c46974c9de23284852d302b57b0ad206158d0f", + [] + ] + }, "reference": { "background-lime.html": [ "fcb243c7fb1f72c5cf1f995e0a3d9771ec5d71fd", @@ -393900,6 +398316,14 @@ "6ee9f4fb8f2111609c7573f199ab7958cfd9eb5a", [] ], + "contain-layout-dynamic-004-ref.html": [ + "40923d836ca0ad31a97de0776ccfe2f5e1051041", + [] + ], + "contain-layout-dynamic-005-ref.html": [ + "3c2e6cf2e41098c7915dd0cd66a5271d5312aa44", + [] + ], "contain-layout-formatting-context-margin-001-ref.html": [ "5a6d653862417ff7c1a6817434da2b2025a347ad", [] @@ -393964,6 +398388,22 @@ "8861d19f888aa155ffdb6c3bbdd8a81e04ccaf8b", [] ], + "contain-paint-dynamic-002-ref.html": [ + "58473c86492bf4ce0c53b46f03c989a96a9e5b49", + [] + ], + "contain-paint-dynamic-003-ref.html": [ + "b30f32d9c3d4a1ab037e6ca5cea92c958f340637", + [] + ], + "contain-paint-dynamic-004-ref.html": [ + "02f3d94ee937b7429584f28826827c4b6b722dd6", + [] + ], + "contain-paint-dynamic-005-ref.html": [ + "1d1ce904fc646925985c64dccd2509f42e1c1fbd", + [] + ], "contain-paint-formatting-context-float-001-ref.html": [ "ceff7f4569e1a7e6b0b36b9f9b3f50317b320bad", [] @@ -394104,105 +398544,9 @@ "feef9209f5c19f51233a2025108b66c63b58f34c", [] ], - "container-queries": { - "WEB_FEATURES.yml": [ - "445ceb373f006b2741029c1360416dee2d3d7057", - [] - ], - "change-display-in-container-ref.html": [ - "8dd3b8b2c1dea6230357f8ff6ec1225154650094", - [] - ], - "container-for-cue-ref.html": [ - "40b0a07ae0183163576247a4adcf534345b068c1", - [] - ], - "container-units-gradient-ref.html": [ - "dbdabd9bc4ecee3eec34406e7fd13a1e04141978", - [] - ], - "container-units-rule-cache-ref.html": [ - "6c8261959f674aa8a80f1f1f8fda343e64450114", - [] - ], - "container-units-sharing-via-rule-node-ref.html": [ - "c664ce4ccf38f781834dfbdc4d38f8d7af57484b", - [] - ], - "counters-ref.html": [ - "303c1e89bdfe5449177a2d144f4be1e1760a80d5", - [] - ], - "display-in-container-ref.html": [ - "fd8e9ef0c10f523ff3347d5a71530f0adca66b4e", - [] - ], - "fieldset-legend-change-ref.html": [ - "b6e8dc603849e6691dc509b6c7085ea7a23d46b6", - [] - ], - "inline-size-bfc-floats-ref.html": [ - "ecd72b7516c41c83b6e8d320c9b0b87f9c231781", - [] - ], - "inner-first-line-non-matching-ref.html": [ - "99e9c334bf2c856535c7643911a3050390658a6f", - [] - ], - "pseudo-elements-002-ref.html": [ - "da96a826cffe697475ff552aafe97d72d613e9fb", - [] - ], - "pseudo-elements-002b-ref.html": [ - "5783b77fec394dbee9fe97bfd0925ffc1043dacb", - [] - ], - "pseudo-elements-009-ref.html": [ - "fe6fbb140b387701bbfbb6f82e65845c96715896", - [] - ], - "pseudo-elements-010-ref.html": [ - "a98a4023284ae0c489d8a6cb161e1b1f67ee4cf4", - [] - ], - "resize-while-content-visibility-hidden-ref.html": [ - "2a87df85b7aba82588c984e7c41132feb777f427", - [] - ], - "size-container-with-quotes-ref.html": [ - "e1822fa544ec91a113eaa911f69243d767eaf5cc", - [] - ], - "support": { - "cq-testcommon.js": [ - "2eaca1dd091cbf7c3a406fa02c2696d7a9c258e4", - [] - ], - "test.vtt": [ - "ffd1d4ca443d3c86e1c2076f0584ef9a7b4a049f", - [] - ] - }, - "svg-foreignobject-no-size-container-ref.html": [ - "abf1af122baad9f9ae39640be4ebc56171b4db23", - [] - ], - "svg-g-no-size-container-ref.html": [ - "4f30c399399796410b47ca5a63b49c97509f9fad", - [] - ], - "table-inside-container-changing-display-ref.html": [ - "c0355d2f5019b8c7c1e0b387e2f9c3b1a0c1f81c", - [] - ], - "top-layer-dialog-backdrop-ref.html": [ - "49c46974c9de23284852d302b57b0ad206158d0f", - [] - ] - }, "content-visibility": { "WEB_FEATURES.yml": [ - "345619e8b7108b9f528497559886aca0eeacca12", + "bf7ea3fd50d60d298034656065ad7e1d17b1d7fe", [] ], "container-focus-ref.html": [ @@ -394310,7 +398654,19 @@ [] ], "content-visibility-095-ref.html": [ - "844ca37eb6c05fa6b419227a55af8553bb61918c", + "3e7d8cd92b328e3f6335be320336420603e7c08d", + [] + ], + "content-visibility-096-ref.html": [ + "5b013f6e1ad3b1c77ee7c865231feb086d7ee590", + [] + ], + "content-visibility-097-ref.html": [ + "5b013f6e1ad3b1c77ee7c865231feb086d7ee590", + [] + ], + "content-visibility-099-ref.html": [ + "7ab3094c31c55d2fa28144c7070e55229ddbd975", [] ], "content-visibility-animation-and-scroll-ref.html": [ @@ -394333,6 +398689,14 @@ "aad9b9b73efe854cb0324b55c461c51592cf7a00", [] ], + "content-visibility-auto-print-ref.html": [ + "6f500daa743380bf54f2aa3d5734322b370c5a43", + [] + ], + "content-visibility-auto-svg-image-ref.html": [ + "39939a6b33b7b83ef8da4c1dafe421380a2c57da", + [] + ], "content-visibility-canvas-ref.html": [ "dbedcf18ad7200f3595ba70607fb023a1373edb7", [] @@ -394341,6 +398705,10 @@ "7958810b40ecc2837ecb13d419a577fab9643115", [] ], + "content-visibility-intrinsic-size-001-ref.html": [ + "8d9bd96f7ed0c878310917d7c7ff66ce2e1ba724", + [] + ], "content-visibility-on-g-ref.html": [ "e93425d5ff8afb0cd77a8492c12b36013211bf25", [] @@ -394349,6 +398717,18 @@ "258cdfacab67cd5cc0bc4a468474f8b039517b10", [] ], + "content-visibility-paint-containment-001-ref.html": [ + "1e8e96df13f8525bd964538d9f453adf3ff80cb0", + [] + ], + "content-visibility-paint-containment-002-ref.html": [ + "e71e9c0c9f8d321699710d2bf65eb00f38de404c", + [] + ], + "content-visibility-paint-containment-003-ref.html": [ + "43f3a2ed480b61e0eda0f3c60709acd4e4a720d1", + [] + ], "content-visibility-resize-observer-no-error-ref.html": [ "228eebfaa6b6018dc60db090971f2f8176614a27", [] @@ -394478,7 +398858,7 @@ [] ], "contain-layout-baseline-005-ref.html": [ - "360652c9397ee8b69a4bf07c763148eafcc64be0", + "83340137ac6ac90bcab35f1e979bfae5b7ca7465", [] ], "contain-layout-breaks-002-ref.html": [ @@ -394486,7 +398866,11 @@ [] ], "contain-layout-button-001-ref.html": [ - "da83204dce641b37a820cf47d2201d94a0fd60cb", + "c20efbbb39d4cc9181db3a332d4846c214695c65", + [] + ], + "contain-layout-button-002-ref.html": [ + "85b98ee4a66b1a9d66f0910a2e436c1136f7ce86", [] ], "contain-layout-cell-001-ref.html": [ @@ -394693,6 +399077,10 @@ "c0c652b3351930655b713d3e6907ee70ec42bd69", [] ], + "contain-style-counters-002-ref.html": [ + "7a14112c44c2ab42036f46659f32565089d9da1b", + [] + ], "contain-style-counters-003-ref.html": [ "12f9b989fd2402d5e8af279cd03f03931856270e", [] @@ -395211,6 +399599,10 @@ [] ], "counter-style-at-rule": { + "WEB_FEATURES.yml": [ + "fc866d5c1246989f29f1a917470edc611296149e", + [] + ], "access-from-shadow-dom-ref.html": [ "ee40f94bda4b400be543eb79eff155269a6f4056", [] @@ -395280,7 +399672,7 @@ [] ], "disclosure-styles-ref.html": [ - "a1dafa7560fbe424bbf160e4484603e973dbf0e3", + "d9191d6e542d2f9072a3ba03a9f612c7c241cb2a", [] ], "empty-string-symbol-notref.html": [ @@ -395383,6 +399775,10 @@ [] ], "cssom": { + "WEB_FEATURES.yml": [ + "1efb03070d8cdd0be1284ba554171d5cd3b2089d", + [] + ], "cssom-additive-symbols-setter-ref.html": [ "a09788e369a58a35dd92370cc1f25ef2561c1814", [] @@ -395488,7 +399884,7 @@ }, "hebrew": { "counter-hebrew-nested-ref.html": [ - "7e725760e8852efb79d92b8cdb3c77f404d1d62c", + "9ae6b5e011d1011ddf205016c2acead43f56c3c0", [] ], "css3-counter-styles-015-ref.html": [ @@ -396352,6 +400748,10 @@ "2c412b40f0f1b6059099682bc5c787310e8d2991", [] ], + "WEB_FEATURES.yml": [ + "c17b6206c55bb09fe0920d7a4af8cfe8cb3603b7", + [] + ], "testcommon.js": [ "9fd25b86507258b900911df892540bdb1ae17cd3", [] @@ -396410,6 +400810,10 @@ "503fc08f57614916ba42660b1dbf5acbe0f267ee", [] ], + "WEB_FEATURES.yml": [ + "69d08754517812caf497fc2a0c3ec412dc1dda84", + [] + ], "abspos": { "flex-abspos-staticpos-align-self-safe-001-ref.html": [ "fb1fb93ea997b1107efa595f17ae5b9c38419a92", @@ -396935,11 +401339,11 @@ [] ], "flexbox-justify-content-horiz-003-ref.xhtml": [ - "4ad2dc202ea3c1800fb189315b691c8ada9aaadd", + "444ead8665e79b2dbe3c9a392d2739e12421549b", [] ], "flexbox-justify-content-horiz-004-ref.xhtml": [ - "231729d8565fe7c232c0506a9d161031428c63b7", + "23a6d98904d2753f9d768506238921fcfbdc47bd", [] ], "flexbox-justify-content-horiz-005-ref.xhtml": [ @@ -396959,11 +401363,11 @@ [] ], "flexbox-justify-content-vert-003-ref.xhtml": [ - "12064db1a5df2dbe82b214d8bc92ee78dcd0b350", + "ee3714e08b155213b31e2ead8eff593e6b064cca", [] ], "flexbox-justify-content-vert-004-ref.xhtml": [ - "b3a45e06f13fdfee0672197b49db244e90cf73d2", + "7ef2c3ac11cc96ca7d164bc92063025e5cd651da", [] ], "flexbox-justify-content-vert-005-ref.xhtml": [ @@ -397218,6 +401622,18 @@ "c3a223389d0455b2fe71d74837e5ff6121567432", [] ], + "flexbox-writing-mode-slr-ref.html": [ + "2ca10b3e0ee9f02b70eac2f7155c33f0c7c68b83", + [] + ], + "flexbox-writing-mode-slr-row-mix-ref.html": [ + "6f4c1df339c5006da2f283a535e75608cff1b3c1", + [] + ], + "flexbox-writing-mode-srl-row-mix-ref.html": [ + "32eebea0ac47f03bdb0b1903b82ef40e81697ae1", + [] + ], "flexbox_align-content-center-ref.html": [ "e0118b707fc2a6e01cab0d8e16216140b1bc869b", [] @@ -397751,7 +402167,7 @@ [] ], "flexbox_justifycontent-spacearound-negative-ref.html": [ - "b5ec4d58e60eb0947ce7d2dcd9103ba7ed9a36bf", + "619a333a3bd45ba4a80dde5d499b5311545762d3", [] ], "flexbox_justifycontent-spacearound-only-ref.html": [ @@ -397986,6 +402402,10 @@ "8c390de08d10d1e9591c5885d355514b9412aab1", [] ], + "min-size-auto-overflow-clip-ref.html": [ + "2503af6df34f3e3be6a8c6d880d67e2fe6fb9615", + [] + ], "order": { "order-with-column-reverse-ref.html": [ "c8b9be7c4ec9d7238a45db8d7b06fc93eb92c889", @@ -398634,10 +403054,20 @@ "c10f0c1dd0356e3bc4fbcbd759091e6105512bbe", [] ], + "WEB_FEATURES.yml": [ + "e20c3d7ab57dc53910e36875eb238b0a3b784470", + [] + ], "alternates-order-ref.html": [ "fdb477fe168c17d21f5eecaf4d6a7aa6de4581ae", [] ], + "animations": { + "WEB_FEATURES.yml": [ + "6a3e58e9f54a869eb0169fd2a2663b318b1be487", + [] + ] + }, "ascent-descent-override-ref.html": [ "eeddd2ed86a226ff8c894fdd843d13c266575b27", [] @@ -398650,6 +403080,10 @@ "28a92a86dcaf6bc9c45bb75fce4869bc0ae21c37", [] ], + "downloadable-font-scoped-to-document-ref.html": [ + "4d7da060cbf1a161aa1366f0bcb00b94e09502ad", + [] + ], "first-available-font-001-ref.html": [ "0acbd338e0ce9f558d2eaa2e48ad4be0524fb0ae", [] @@ -399040,6 +403474,10 @@ "be552aade1b898ed6a803499afdcd9305678a5c5", [] ], + "font-size-adjust-ic-height-ref.html": [ + "1b364bd6d9de648f185d1cb7341964a14fcb7029", + [] + ], "font-size-adjust-metrics-override-ref.html": [ "a8d06c9674bb118fe3f1f052ce0d59081374a779", [] @@ -399340,6 +403778,14 @@ "deb5f9324a1cb7747919fdfcf7a347e32ee0b514", [] ], + "font-variant-emoji-003-ref.html": [ + "1e8cdb89cfa744b2f13ed7fc1d53ee06b8d735d9", + [] + ], + "font-variant-emoji-004-ref.html": [ + "b15c8227cc4a019c369c5c97b53bd6810eb0b72f", + [] + ], "font-variant-emoji-1-notref.html": [ "bbf3654ccfcdd415fe5a28468e3329ba94ce63da", [] @@ -399497,6 +403943,10 @@ "ebbef02f628baa63b2cb565f0f2850899d54ae65", [] ], + "font-unicode-PUA-primary-font-notref.html": [ + "df9b829a41905dc8c393c3b8f64394475e8d9e23", + [] + ], "font-unicode-PUA-ref.html": [ "01b95e8e72e59bf248148555d32a5e06c943b166", [] @@ -399579,6 +404029,10 @@ [] ], "parsing": { + "WEB_FEATURES.yml": [ + "b21b7a700e986bb0a77b7d247744aa646d2335ed", + [] + ], "ahem-ex-500.otf": [ "9966da1929c09a29a7f69148b988764ad1a44795", [] @@ -399636,7 +404090,37 @@ "separator-test-font.ttf": [ "26cc99783d079f91ae9c1627a6af0c56d72d324a", [] - ] + ], + "vs": { + "MPLUS1-Regular_without-cmap14-subset.ttf": [ + "b77096690df1b4136cb7907708c778d716433c59", + [] + ], + "NotoColorEmoji-Regular_subset.ttf": [ + "8754e127d7fdecf4e13e1d8f4222d6b600fb66d2", + [] + ], + "NotoEmoji-Regular_subset.ttf": [ + "f9996293bf667c50c8a34a4a49c13064ee640db4", + [] + ], + "NotoEmoji-Regular_without-cmap14-subset.ttf": [ + "3d00ef81dea38d7de7b95538a1217126b897f8c9", + [] + ], + "NotoSansJP-Regular_with-cmap14-subset.ttf": [ + "edcb98e37458b23ba6bf4ebdff01b19e0ad8b6c3", + [] + ], + "NotoSansMath-Regular_without-cmap14-subset.ttf": [ + "5436d06dae52733c018bb01371dfca0bb2bc6afd", + [] + ], + "STIXTwoMath-Regular_with-cmap14-subset.ttf": [ + "c9720cf9ce712da3631a327e1ee00d399e28613b", + [] + ] + } }, "rex-in-monospace-ref.html": [ "27972869e6cf3b8c5cd57670b9b7c3533353a01e", @@ -399835,6 +404319,10 @@ "font-variant-features.css": [ "fbe701918dc2739cd381d2c32f310bdc3f56848d", [] + ], + "variation-sequences.css": [ + "5977f17b678c286556b45983ed8212a6cce33e9b", + [] ] }, "diamond.png": [ @@ -405727,10 +410215,26 @@ "6ed4aa506e95a35a065318f597547653bda52eb5", [] ], + "iframe-missing-font-face-rule.html": [ + "da97b781e8072923138e0160320e76d3013c3e53", + [] + ], + "iframe-using-ahem-as-web-font.html": [ + "b21066df8f57a8b11432a1168a62e7a4fbbe07b1", + [] + ], + "iframe-without-web-font.html": [ + "85e7fef282889894016088e082b623b92a436784", + [] + ], "js": { "font-variant-features.js": [ "4b56fee193956710b847ba79c5f9c3a5a7d15a33", [] + ], + "variation-sequences.js": [ + "84c5a1a9c77932b9b4aedc2be24a38e148bae00d", + [] ] }, "margin-collapse-2em-space.png": [ @@ -405850,6 +410354,10 @@ [] ] }, + "synthetic-bold-space-width-ref.html": [ + "6345defe68153186ffbbcf65f16675804c3834ef", + [] + ], "system-ui-ar-notref.html": [ "76a216ca7439a37190a38bc70cd5abc91432df77", [] @@ -405882,11 +410390,19 @@ "a0721426016c949369ae0114211136f45ce51b27", [] ], + "variation-sequences-ref.html": [ + "a44f18bb3e1f3584aa9b3407a0b7033dddd234aa", + [] + ], "variations": { "META.yml": [ "53487a6d85ecaafdc33738292312120ffed4bb6a", [] ], + "WEB_FEATURES.yml": [ + "c035a0ee11b73d739a0870d7edc1afba8ae43563", + [] + ], "font-descriptor-range-reversed-ref.html": [ "fc2b7aca29fe7d3be3b9cd4282129ba3565a396b", [] @@ -406117,7 +410633,11 @@ "4e88cace350e32711fc06220c2d14dcbd3ab3339", [] ] - } + }, + "web-font-no-longer-accessible-when-stylesheet-removed-ref.html": [ + "363b88d7180a9471c647cd69b9c69678e2f88da6", + [] + ] }, "css-gcpm": { "META.yml": [ @@ -406675,35 +411195,35 @@ }, "self-baseline": { "grid-self-baseline-001-ref.html": [ - "c85fd77ef91092a1e87a9a60ddf5bc5392b3be3b", + "2253b24ac07f83b2b2b5e161e071c8e2309eb0ce", [] ], "grid-self-baseline-002-b-ref.html": [ - "1b563f1f42ad319879ef13f9798ceb771184f136", + "800578e31d70022c90cf3cb86300c8192e90f4d6", [] ], "grid-self-baseline-002-ref.html": [ - "8593ea1abce9757b07f04da3b8b257cff5448d3d", + "a959d659d35203bb65966b47d743a90eb94fc038", [] ], "grid-self-baseline-003-ref.html": [ - "cd097c1d48a6ba4cddf10030e2d499c383ac2fed", + "c701e97fb8567cbb6d158978d281decadc57e22d", [] ], "grid-self-baseline-004-ref.html": [ - "d589acb3742cdc8cd61557d5a5afa9d1cf206b2f", + "57b44e6d769c0879ed77598fef3b302213dedde8", [] ], "grid-self-baseline-005-ref.html": [ - "75a366fc409d7ecc19fef2408b0aad08a302b778", + "52390473f218dd01241385da91b37e7b6015afe9", [] ], "grid-self-baseline-006-ref.html": [ - "610b2ad0a11ff010e30fc9c8d8a532c5e8c7c973", + "a8129d0bec4ed6d925b99bed2b2ca81e90f30b23", [] ], "grid-self-baseline-007-ref.html": [ - "59a0e339598b4c6e0f9b604636c9199826c45f2d", + "aa79b3eda74a521dcad8dd8b3408d15a79fa3189", [] ], "grid-self-baseline-008-ref.html": [ @@ -406711,87 +411231,87 @@ [] ], "grid-self-baseline-horiz-001-ref.html": [ - "1b8130d7b89ae35111009318535320e05bbda766", + "e8c6bb3b09c2479b7f00f73882fe2c2203c94bca", [] ], "grid-self-baseline-horiz-002-ref.html": [ - "735ea557868ab9e2f4c4bcd3b2b8eebd60f9d150", + "35068082ba5c04537713c93a451b8a7552dc2327", [] ], "grid-self-baseline-horiz-003-ref.html": [ - "fd966d16a152cf0748f390acc9f651c3124651ea", + "26ab87872c39b6f583ca423815e0001686b0fbc9", [] ], "grid-self-baseline-horiz-004-ref.html": [ - "be610d4f7f2ba9a0fd51116e3dfd66be89c470af", + "3851c45ff45a874b4e7edece4a4430973b32409d", [] ], "grid-self-baseline-horiz-005-ref.html": [ - "c38b6c76115724d05b284c197b9012bcff86c9d9", + "7851a214eec3acae68b344c5593638b92ffbfd7f", [] ], "grid-self-baseline-horiz-006-ref.html": [ - "6053b38a6fdf1e402ed341d2077dd3b2e78cc990", + "a92602fb3dbae37485d8f5d39d8d3b11960ae4b6", [] ], "grid-self-baseline-horiz-007-ref.html": [ - "cba725f4256d67ce022635aea66ce5be2f8bf8dd", + "ef5e5dac1546d457095ac702c8cba787a615a9b3", [] ], "grid-self-baseline-vertical-lr-001-ref.html": [ - "cf19544be84333c3820a8cb7776d019ea3c15693", + "ecb3c7c5014fc547536e95dbacd14f491cb8ef06", [] ], "grid-self-baseline-vertical-lr-002-ref.html": [ - "9a7a53969d3aad4e0453b104a536387c24fc0487", + "0e32b854180053a53e02b2ae9602d260ef19edcc", [] ], "grid-self-baseline-vertical-lr-003-ref.html": [ - "795926615fabb0634162ae2592eae10d4450a4f6", + "ce7bbb722ec640e26e8f8cfc154376a256524927", [] ], "grid-self-baseline-vertical-lr-004-ref.html": [ - "1ce8267ee7d3a381116afd1dcd62c9bdc40c71c5", + "17f0bbf75064b6c75b2903f8fac114a4a311cead", [] ], "grid-self-baseline-vertical-lr-005-ref.html": [ - "fb68579d9aef3c511550337204383649840b6942", + "4409a98b778bfd7f96bd36079e2e53d5d4a75da1", [] ], "grid-self-baseline-vertical-lr-006-ref.html": [ - "51c5f77da3574f49b5d9ce87d1f3128607f07f9d", + "46fbf2ebbc86e5805db0bf828f79461b47fb1f68", [] ], "grid-self-baseline-vertical-lr-007-ref.html": [ - "6f5641448d588dcf58ada8560ddaa069c07d4101", + "d216a18a9e9c95430550a202ff9a59c57b40fe37", [] ], "grid-self-baseline-vertical-rl-001-ref.html": [ - "02d3feb12672028ba0616414b93245327014807f", + "e759c48e636e431c5c93e4eb8ef162f7917c76ca", [] ], "grid-self-baseline-vertical-rl-002-ref.html": [ - "ef6b45c9c97e91620982683da957d49a817b7422", + "03faebeeceb74e33606d93fc1efbd1877afb1333", [] ], "grid-self-baseline-vertical-rl-003-ref.html": [ - "b72fc8817a4986cae1b0143f74ddc9cb58ef0366", + "40f6ac86da3524f2812f3153397375ef76e1de68", [] ], "grid-self-baseline-vertical-rl-004-ref.html": [ - "bab359226660df446219a578da60da73f2855e00", + "33958bcf937fd609866206914b810e04f8c6fd3f", [] ], "grid-self-baseline-vertical-rl-005-ref.html": [ - "da72a5f0179f01204c49e1fcaa62f5b16a60918d", + "0a0a935e296bf4bb60e59fd152d76f8f40482d3a", [] ], "grid-self-baseline-vertical-rl-006-ref.html": [ - "4011c691427b8f13ac15f79409213df39a82b86c", + "e345ca9d761283f0a9a283d4a3a8199984b66a9f", [] ], "grid-self-baseline-vertical-rl-007-ref.html": [ - "30658b8cc730598817d055f8ba6d0d2ae1f74b81", + "6c702dfbf5d26b6e403a6426085537f2c60725e6", [] ] }, @@ -406836,6 +411356,10 @@ "df8393a1f0310b7b524d49b05962600602c1500e", [] ], + "firefox-bug-1881495-ref.html": [ + "aa6275c4a712a8c9873c694e20a820f3bdde3c27", + [] + ], "grid-child-percent-basis-resize-1-ref.html": [ "2ee6b077d3c6a9375029209a6ce202478db437a4", [] @@ -406884,6 +411408,10 @@ ] } }, + "grid-fragmentation-between-rows-001-print-ref.tentative.html": [ + "78464712c5cb698fd26a7a12b6c522d4bda946d6", + [] + ], "grid-item-non-auto-height-stretch-ref.html": [ "1249dbaa8c88cd1436741b6bcf526efb183a35a6", [] @@ -407028,6 +411556,10 @@ ] } }, + "grid-relayout-with-nested-grid-ref.html": [ + "5cace4099c4b3e271a853d06721e592f6442dce5", + [] + ], "layout-algorithm": { "references": { "auto-margins-ignored-during-track-sizing-001-ref.html": [ @@ -407058,7 +411590,7 @@ [] ], "tentative": { - "align-content": { + "alignment": { "masonry-align-content-001-ref.html": [ "fff6cf21381f2ca635cc52daa0b440ef96e77cc3", [] @@ -407068,12 +411600,28 @@ [] ], "masonry-align-content-003-ref.html": [ - "9780d5f5dcf069295ce97d301e37bc4253b561d0", + "9da15c0f40319f07c5560f9aaf96a2e3e0ffa592", [] ], "masonry-align-content-004-ref.html": [ "de11c836b8d060f94d56831bef9fda471e062ea3", [] + ], + "masonry-justify-content-001-ref.html": [ + "f7d9ccf48f1d9af15826fb12610f18e73d8e645f", + [] + ], + "masonry-justify-content-002-ref.html": [ + "6889af7eaccb0caae8acb8aac40a80d6700ae348", + [] + ], + "masonry-justify-content-003-ref.html": [ + "81d0fba41070bb5b6cba5a71f1bb33ca239d6f02", + [] + ], + "masonry-justify-content-004-ref.html": [ + "43af71fc01f9811cc2906389cf09834a33e6bc3a", + [] ] }, "baseline": { @@ -407110,45 +411658,83 @@ }, "gap": { "masonry-gap-001-ref.html": [ - "031629e926bf103fc3700e01a864c341de8bd44d", + "7157460267ae8556006a3383fbde53618d6dbcd6", + [] + ], + "masonry-gap-002-ref.html": [ + "834a884f7630844d75730d12b4f7871d0911b637", [] ] }, "grid-placement": { "masonry-grid-placement-named-lines-001-ref.html": [ - "c99b117f2ee5d669f99ddc3fc48cd48545387027", + "2aefa719dc4373781ff7e8c5975df68d464557ea", [] ], "masonry-grid-placement-named-lines-002-ref.html": [ - "dd589f90c5ffa06f9353d1dfaa4befa707dbc0b4", + "cfe1369e87d20046b6f0d403290e56dd446dba51", [] ] }, "intrinsic-sizing": { - "masonry-intrinsic-sizing-001-ref.html": [ - "898bff16d8e32d4c8f47a6bb091a9fea341a5daa", + "masonry-intrinsic-sizing-cols-001-ref.html": [ + "eddbb9cbe197fb296389a7dd7f61e23f27c8a993", [] ], - "masonry-intrinsic-sizing-002-ref.html": [ - "4f6519db949ee64dc3fd5e752e930cf3520deff5", + "masonry-intrinsic-sizing-cols-002-ref.html": [ + "54f29233252e715f835a5505aca96341d4c34012", [] ], - "masonry-intrinsic-sizing-003-ref.html": [ - "61eb21570df2b883245fcdde2430fa30e7a27ec1", + "masonry-intrinsic-sizing-cols-003-ref.html": [ + "d088b132c29e68905337219f97c2c018f5985f40", [] ], - "masonry-intrinsic-sizing-004-ref.html": [ - "6a5d81fedb2ca1371a55773647a89511488dc0f6", + "masonry-intrinsic-sizing-cols-004-ref.html": [ + "282dd280213579a591094f5043c0f8fbf0fb4e6f", [] ], - "masonry-intrinsic-sizing-005-ref.html": [ - "e564fb1b3e6baf1d68980a49ac41eca4bb1c3216", + "masonry-intrinsic-sizing-cols-005-ref.html": [ + "99d5d05dd4e06eb23e7b6a2dab59e5e2743a2240", [] ], - "masonry-intrinsic-sizing-006-ref.html": [ - "e1cb015cfe81f2d2f1ef43a46e822872227324bb", + "masonry-intrinsic-sizing-cols-006-ref.html": [ + "1a41f071ab431c3c150aa9c06c28dd82b3f6cd71", [] - ] + ], + "masonry-intrinsic-sizing-cols-007-ref.html": [ + "0c4da43ef50cd20a2c520267a52d0ecb37960f3d", + [] + ], + "masonry-intrinsic-sizing-rows-001-ref.html": [ + "6214f6723ad5ef8e35a8eac515f54d7aceaba924", + [] + ], + "masonry-intrinsic-sizing-rows-002-ref.html": [ + "38ede3202adafccdfc5fd25cbbdc6b3e4f49f3f5", + [] + ], + "masonry-intrinsic-sizing-rows-003-ref.html": [ + "3e2b0a2a3be6b7a5fcb9f74e5e8ad83e2901cc79", + [] + ], + "masonry-intrinsic-sizing-rows-004-ref.html": [ + "a79aca3b88212f568600123ed28879c61d42a0b6", + [] + ], + "masonry-intrinsic-sizing-rows-005-ref.html": [ + "0c5eae740f608a2ecf029e0c07f926716b951ae4", + [] + ], + "masonry-intrinsic-sizing-rows-006-ref.html": [ + "f3f67e287d2a454f4c16de2dfae18f7f2d4fd090", + [] + ], + "support": { + "masonry-intrinsic-sizing-visual.css": [ + "5ac6586904f13b3eb716897390a7293c4beb7f3e", + [] + ] + } }, "item-placement": { "masonry-columns-item-placement-auto-flow-next-001-ref.html": [ @@ -407184,7 +411770,7 @@ [] ], "masonry-item-placement-008-ref.html": [ - "e14ca3173abdda981bf7ba7e3a7d5c4760a72190", + "f3503bf071131f396111956dcc0ebddf5e9bd051", [] ], "masonry-rows-item-placement-auto-flow-next-001-ref.html": [ @@ -407196,24 +411782,6 @@ [] ] }, - "justify-content": { - "masonry-justify-content-001-ref.html": [ - "f7d9ccf48f1d9af15826fb12610f18e73d8e645f", - [] - ], - "masonry-justify-content-002-ref.html": [ - "6889af7eaccb0caae8acb8aac40a80d6700ae348", - [] - ], - "masonry-justify-content-003-ref.html": [ - "81d0fba41070bb5b6cba5a71f1bb33ca239d6f02", - [] - ], - "masonry-justify-content-004-ref.html": [ - "43af71fc01f9811cc2906389cf09834a33e6bc3a", - [] - ] - }, "masonry-not-inhibited-001-ref.html": [ "3e86b8a89b6d050e7bc4c4b5f38509c7aa7aabff", [] @@ -407240,7 +411808,7 @@ }, "track-sizing": { "masonry-track-sizing-check-grid-height-on-resize-ref.html": [ - "71968864924cafa3166a352d15e4d0d1b81383d1", + "53447e0dad88454672e0a70fbdbaaa6abc73055e", [] ], "masonry-track-sizing-explicit-block-ref.html": [ @@ -407248,11 +411816,11 @@ [] ], "masonry-track-sizing-overflow-left-side-ref.html": [ - "5a31517183244d714a18e48bec3e65d890a5434d", + "3e973b7fe712ed41c05a2f6929683c4de31d2a6f", [] ], "masonry-track-sizing-overflow-right-side-ref.html": [ - "51e657e2a4292fa97bd2617114509a6bd0ba48d7", + "eb84b2e6bd0406fdb9f4d5c9cbc891f81a042ca2", [] ], "masonry-track-sizing-span-row-ref.html": [ @@ -407262,6 +411830,10 @@ } } }, + "min-size-auto-overflow-clip-ref.html": [ + "64e6ff2d9994a74bea6fbf8be74de93239075006", + [] + ], "nested-grid-item-block-size-001-ref.html": [ "a037967e493fa5eba3914db3c8f38914ee1d8729", [] @@ -407397,7 +411969,7 @@ ] }, "stretch-grid-item-button-overflow-ref.html": [ - "900c794af10e750ce98b50dd5d15016d963f471e", + "a798dffe958bda179c300e0ddc570eb39799702b", [] ], "stretch-grid-item-checkbox-input-ref.html": [ @@ -407425,6 +411997,10 @@ "69e071c758b65724d49af23ecd7d3d77d1970e3c", [] ], + "alignment-in-subgridded-axes-002-ref.html": [ + "5e2f1cbac3213b127111b65a97ce3f40a5243697", + [] + ], "auto-track-sizing-001-ref.html": [ "81c6d184021cac8e7a0df0402a42a082c675e62a", [] @@ -407458,7 +412034,7 @@ [] ], "grid-gap-006-ref.html": [ - "d94181ddc4f966a7bb9dae769c016098d6c929a2", + "35af77634fe19222bde94c449cbbe1772594d6e6", [] ], "grid-gap-007-ref.html": [ @@ -407542,7 +412118,7 @@ [] ], "line-names-010-ref.html": [ - "9232f1dcf2a8b805a707c16f7f5976fb90a852f2", + "a4408517b4d8a14fb1621d2f46a33fcab3287775", [] ], "line-names-011-ref.html": [ @@ -407609,6 +412185,10 @@ "4cbb1540de1972dd6baaa0c56d2c18dcf10e1103", [] ], + "scrollbar-gutter-001-ref.html": [ + "0d00d380b66f73184d0b16a277b6d63e3d49b999", + [] + ], "subgrid-baseline-001-ref.html": [ "dd4b0dccf211d46336e41b3f225fce80629c86cd", [] @@ -407625,6 +412205,10 @@ "4240df1659e408bcb48607c6233c42a897873a5c", [] ], + "subgrid-button-ref.html": [ + "b6b5e6115c51bc5f96ababcfbfb48be252b01339", + [] + ], "subgrid-item-block-size-001-ref.html": [ "d264a3455a6c580976d2519ab4e0eb206b1164bf", [] @@ -407680,10 +412264,42 @@ } }, "css-highlight-api": { + "WEB_FEATURES.yml": [ + "0ce5201312974300d33d2c95171640f60b1bbc0e", + [] + ], + "highlight-image-notref.html": [ + "0f4e21fc3d679c197b2f51ce8ba96c3eec3addcf", + [] + ], "highlight-priority-painting-ref.html": [ "1865f1e104917ebeb3d6e9cb53de06977ea8623c", [] ], + "highlight-text-across-elements-ref.html": [ + "1c3e9110fcf963fa2283e419104c91621068da06", + [] + ], + "highlight-text-cascade-ref.html": [ + "ec3a9a5741aa746e18594c96abfe0f37f30bef0b", + [] + ], + "highlight-text-decorations-ref.html": [ + "8120ae34da208003f8797518662da5d3b8cad68c", + [] + ], + "highlight-text-dynamic-notref.html": [ + "0489cb6e8c9ea3e5832451c4fdfaeb07b5e01b1f", + [] + ], + "highlight-text-ref.html": [ + "227e950c04b721113ee456bbce5b654d0204d2d3", + [] + ], + "highlight-text-replace-ref.html": [ + "402f0ee622debc5b07a0107913ecb00d9b130b78", + [] + ], "painting": { "css-highlight-painting-underline-offset-001-ref.html": [ "3d01bccf55dd9c20e361551bc924d5c9353c503e", @@ -407693,6 +412309,26 @@ "5e9ef64579800a922d225ab9ca458555fe067dcc", [] ], + "custom-highlight-container-metrics-001-ref.html": [ + "92751144a267b7f7b041a5adf0bcdb54703f2f2b", + [] + ], + "custom-highlight-container-metrics-002-ref.html": [ + "98ccfa5b11c7dcb8c83beca3f863742792bb30af", + [] + ], + "custom-highlight-container-metrics-003-ref.html": [ + "d3d75333f8a09a61286f2981d999b01e3f486b85", + [] + ], + "custom-highlight-container-metrics-004-ref.html": [ + "98ccfa5b11c7dcb8c83beca3f863742792bb30af", + [] + ], + "custom-highlight-dynamic-container-metrics-001-ref.html": [ + "8c9732f1ddb934edcc3833adc69cf61f11bbedd2", + [] + ], "custom-highlight-font-metrics-001-ref.html": [ "76b7317caabe5bedf10a98bef5cade11a4f6458e", [] @@ -407713,6 +412349,14 @@ "bbfc952116f2f2c86009d8ce6d301d635d71f6e8", [] ], + "custom-highlight-logical-metrics-001-ref.html": [ + "09bc7fac5e5d5bfe067b4cc6f5c19d932be64acd", + [] + ], + "custom-highlight-logical-metrics-002-ref.html": [ + "eaed1580f9f76beccece89e9bcd3d489440b4e63", + [] + ], "custom-highlight-painting-001-ref.html": [ "b058789f6de04c017dec9a37d8955485dcd6b7e9", [] @@ -407733,6 +412377,18 @@ "8cb5b69d98c6a82e7385f413a57c604e409ccd88", [] ], + "custom-highlight-painting-019-ref.html": [ + "a8ec613fbca7b735245fb8b49e2830301eff4c7c", + [] + ], + "custom-highlight-painting-020-ref.html": [ + "92cf04c1800940b4261e1d7ef327855ce30dd732", + [] + ], + "custom-highlight-painting-021-ref.html": [ + "1ec68549b8973d7b33610890689b3532c03c6f47", + [] + ], "custom-highlight-painting-below-grammar-ref.html": [ "d660daf7c745efeb663e652d83a6e92c9d6e39d0", [] @@ -407793,6 +412449,10 @@ "9d3e3b00b08dd3242be7f5b180a5505aeb26354b", [] ], + "custom-highlight-painting-priority-text-decoration-001-ref.html": [ + "aa76cf08b46c2f1ab1a7ab2b5f4dbf5a1a11bbef", + [] + ], "custom-highlight-painting-staticrange-001-ref.html": [ "a89d86dc819c3235846a83a49b58755459098ace", [] @@ -407810,7 +412470,7 @@ [] ], "custom-highlight-painting-vertical-writing-mode-001-ref.html": [ - "b46c679c9f4d37f7a95369b9185598d07bc0a5ca", + "c2bf7ae7bd181bd7b1d0cbf202208cc58e206e9a", [] ], "invalidation": { @@ -407824,6 +412484,10 @@ "a4a1829be229acb4c0cf75cbb0e2885060741d3f", [] ], + "iframe-container.html": [ + "c89680e28c920683c23583dee63d8793557c4a80", + [] + ], "run-after-layout-and-paint.js": [ "75d3e279a4cd6916f769a68f2c7f246e8ad354dc", [] @@ -407836,6 +412500,16 @@ "8d3b9472b2c9a2ee88dc97f907f9d16eb4fa3755", [] ], + "WEB_FEATURES.yml": [ + "6f2806d64c0aaa5959ec35f40f63f1a73a301235", + [] + ], + "animation": { + "WEB_FEATURES.yml": [ + "ce2e2c31f99ddc63cd868ebea90fc65cbf23cfc4", + [] + ] + }, "color-stop-currentcolor-ref.html": [ "7686a3b16ed8b9ebf3f8ffcbecd4bdb5e1225bfe", [] @@ -407865,6 +412539,10 @@ [] ], "gradient": { + "color-scheme-dependent-color-stops-ref.html": [ + "28d57bc19c779250d792eafc2d5e4461baece0d5", + [] + ], "gradient-eval-001-ref.html": [ "8f3070fcbe40bf1f8c591de59c76da149cbeaddd", [] @@ -407905,10 +412583,22 @@ "89a1929e275bac96c2a2e845124e0bd9cecd3cfa", [] ], + "gradient-single-stop-longer-hue-hsl-ref.html": [ + "cf47c758348bfb8fee4215f1cf2f24687ef80ba9", + [] + ], + "gradient-single-stop-longer-hue-oklch-ref.html": [ + "c3f51781c008fa882ecff0eaf78ff07edc6e41e4", + [] + ], "oklab-gradient-ref.html": [ "ca2232e38096157847a2430e721f9eb73cf68185", [] ], + "repeating-gradient-hsl-and-oklch-ref.html": [ + "a5e1554be1406fb8fe6126eaaa7f1707995f18b5", + [] + ], "resources": { "oklab-gradient.png": [ "9e52fd9b84ba9f16cdfba6fa1df67f17521c2ff5", @@ -408060,6 +412750,10 @@ ] }, "support": { + "F-exif-chunk-early.png": [ + "24bd924e9e71eaaee22961c26e87de314d90f719", + [] + ], "F-exif-early.png": [ "6714cec8253723237cfbe95b319e0ae2162120e6", [] @@ -408254,6 +412948,10 @@ "21f9f2f29d730943954c946321273027f8389d77", [] ], + "object-fit-containsize-png-001-ref.tentative.html": [ + "0c7c533d31e60b8ebded7f1708bf302e2bd00308", + [] + ], "object-fit-cover-png-001-ref.html": [ "96a1ec64b216a9c31e51e63401fe0892732c4755", [] @@ -408657,6 +413355,10 @@ "08d03f0a537f8e54ee1edc2f6afcc0d366cd4f46", [] ], + "external-images.svg": [ + "8439561e160dd0a8919360c3d0d6896e90a972c8", + [] + ], "import-green.css": [ "537104e663364492c6ef388e4afce190e9c5bc58", [] @@ -408705,6 +413407,10 @@ "84141028020b7e8cdf2412acbca3c799ba50a534", [] ], + "scripted.svg": [ + "6936caad32255809d6013aa0112d1f22e93d8124", + [] + ], "small-border.png": [ "0e978c592223b1692a0b082434283e2cdfbce298", [] @@ -408788,6 +413494,14 @@ [] ] }, + "svg-images-are-ignored-ref.html": [ + "3c1864fea4176bbf2a4cabb9d9c321adeea58674", + [] + ], + "svg-script-is-ignored-ref.svg": [ + "2230d80393c05ddbd182b029ba6746f8a682fbd0", + [] + ], "tiled-conic-gradients-ref.html": [ "95a4122bc0d293a78988714e07d4a247c02f23dd", [] @@ -408889,6 +413603,10 @@ [] ], "baseline-source": { + "WEB_FEATURES.yml": [ + "f399a6dc6f73dccf050094c4b646cc0125ce4167", + [] + ], "baseline-source-inline-box-ref.html": [ "ef3077970a298a026ffaa2e0584ed5220ae10f59", [] @@ -409089,16 +413807,114 @@ "e9a2fc218b369825c991e3109986481a922e671f", [] ], - "text-box-trim-half-leading-inline-box-001-ref.html": [ - "54df108fb9c581638784b1b28cd120fc59fa6c4e", + "support": { + "MetricsTestFont.css": [ + "5b69d96e4acc7e759f78e95d988400a901d06096", + [] + ], + "README.md": [ + "e00b13c17dcab532a2075b87a97a3573d4d9c55e", + [] + ], + "cap-x-height.ttf": [ + "d1fc9e42850c9f482c80a9b84280fcbee130ca52", + [] + ], + "variant-class.js": [ + "d1ca547cfd79bfa1dc1a8f64f62e63099b9c6cce", + [] + ] + }, + "text-box-trim-atomic-inline-001-ref.html": [ + "8df342743460ad2b4c4372c17892844591192a7a", + [] + ], + "text-box-trim-block-in-inline-end-001-ref.html": [ + "6eff49558ecb7b64dfa4e991132e726a792c786e", + [] + ], + "text-box-trim-block-in-inline-start-001-ref.html": [ + "450744a61f7604d2c1cd94792b8a3b0daf490089", + [] + ], + "text-box-trim-dynamic-001-ref.html": [ + "5a759de72be9f21e8f7c641b4897b26889f94f45", + [] + ], + "text-box-trim-end-001-ref.html": [ + "fb31970c5cde2d10ffd12a6c232dbbe972e29496", + [] + ], + "text-box-trim-end-empty-line-001-ref.html": [ + "8f281b5c730d049c50a7d90e351fcbeb123532ac", + [] + ], + "text-box-trim-float-clear-br-001-ref.html": [ + "f928601d7534655c62f53f583599e7583a8db98f", + [] + ], + "text-box-trim-float-clear-br-002-ref.html": [ + "e97c45026c1138e42763a13964561600786653cd", + [] + ], + "text-box-trim-float-clear-br-003-ref.html": [ + "8c14770034a782f0f557a4b282d6155fbc47a7ce", + [] + ], + "text-box-trim-float-start-001-ref.html": [ + "9032be6178e3b2c1d5c44dae48ebd1122de9ba84", + [] + ], + "text-box-trim-half-leading-block-box-001-ref.html": [ + "4aaf3375abbdfcd9c79738d63285486011e2ffcc", [] ], - "text-box-trim-half-leading-inline-box-002-ref.html": [ - "0a615e6222cbe9c1cc656bc41b812619129eb2e5", + "text-box-trim-half-leading-block-box-002-ref.html": [ + "c6b6f0e16bd5e678e11846fba3e30fe13eb35385", [] ], - "text-box-trim-half-leading-inline-box-003-ref.html": [ - "bf0fb3283d353a06707542838a15938837e7a025", + "text-box-trim-half-leading-block-box-003-ref.html": [ + "176526e55b2586beb80693a48cabba0f5448f24a", + [] + ], + "text-box-trim-height-001-ref.html": [ + "7564a8c1b789e376c9b5f1bc79435b70d95a4da8", + [] + ], + "text-box-trim-height-002-ref.html": [ + "61378327c75323b74d5d6454ae14a2fbf2d8044f", + [] + ], + "text-box-trim-initial-letter-end-001-ref.html": [ + "9d12d38d572159cd1076c1bedd0c3bd60eef5487", + [] + ], + "text-box-trim-initial-letter-start-001-ref.html": [ + "7a3adc8b7e2082ab9c3fc3ef7abf2e4cb3996cc7", + [] + ], + "text-box-trim-line-clamp-001-ref.html": [ + "31b11cb6843a36361cbb95e96e9401d43b82763e", + [] + ], + "text-box-trim-multicol-001-ref.html": [ + "aa81e23a26a4900dde31b1943b2774e0449d7249", + [] + ], + "text-box-trim-ruby-start-001-ref.html": [ + "8abe7616ec4d2935fca8f37e3ab61e9b489597cc", + [] + ], + "text-box-trim-start-001-ref.html": [ + "a03255c46b61a7d963bbdfbda750fd252d9a234b", + [] + ], + "text-box-trim-tall-line-001-ref.html": [ + "dc0d31e2f60533e6880ef8ee3e21ec4425ed2926", + [] + ], + "text-box-trim-text-emphasis-001-ref.html": [ + "f34c29f491a5b072a4b1ef6b5abd3070adb1d240", [] ] } @@ -409266,6 +414082,10 @@ "05e60af1d8a558ec87a6c6f8acdeecdc0c7bb78d", [] ], + "WEB_FEATURES.yml": [ + "89ef4a2521b17e1b251f82964bbd380aa5067d9f", + [] + ], "add-inline-child-after-marker-001-ref.html": [ "0c1d2397d75c34f7238c65b8762d5d206c36bf73", [] @@ -409428,6 +414248,14 @@ "070c7047386818eb8b6d8b08faac8516b6e70018", [] ], + "counters-005-ref.html": [ + "509a097ef468844b54b76a8e9ab9c62d50f4e0be", + [] + ], + "counters-006-ref.html": [ + "8e21dca4cee41577555c6d54448e89656b9bb167", + [] + ], "counters-scope-001-ref.html": [ "e7c3abf51014e2f698c42a1de2830bff55da6461", [] @@ -409444,6 +414272,14 @@ "468739cfcb389638e9cc9880fcc31bd7022e12e6", [] ], + "details-open-ref.html": [ + "88903cb8bbe8287c7307d777414361c7e0e1b7fe", + [] + ], + "implicit-and-explicit-list-item-counters-ref.html": [ + "97cc7de15a377f2927524796831f19d94a48876a", + [] + ], "inline-block-list-marker-ref.html": [ "6deadbfc9b65c7f89d8c428e1da6c75f1adc3d82", [] @@ -409620,6 +414456,10 @@ "a10bc17899f9cfaa938d04d198598c4fc82fe3ca", [] ], + "pseudo-element-remove-update-ref.html": [ + "3dc156aa13f033b57c7383ce600d55f21681db7f", + [] + ], "resources": { "blue-20.png": [ "c464c75eeca3ead65c00e7c26150d97ad58da5c3", @@ -409690,6 +414530,16 @@ "7f92755b092845d3d550568e0572453801451f3d", [] ], + "WEB_FEATURES.yml": [ + "76ea5c208e91c63632413ea3f3e8bc3d4dee0fe8", + [] + ], + "animations": { + "WEB_FEATURES.yml": [ + "758ef35275eeacc96b6e584f672f86c4b170e0e1", + [] + ] + }, "clip": { "clip-filter-order-ref.html": [ "fe9511a8dfce2b4f597597871abccd03727f136f", @@ -409752,6 +414602,10 @@ }, "clip-path": { "animations": { + "clip-path-animation-cancel-ref.html": [ + "ac04bd53798188fb5fcc27ea87a6eae2ffb46a3b", + [] + ], "clip-path-animation-custom-timing-function-ref.html": [ "49732d361b3ff40f6232fa87423cf5a9e6530a55", [] @@ -409761,7 +414615,7 @@ [] ], "clip-path-animation-ellipse-ref.html": [ - "63b3174806f9751a6fcfebb3b81e508decd4ebbc", + "8fda2089cd051d29e83175c1c57ce8bbe5e8e1c3", [] ], "clip-path-animation-filter-ref.html": [ @@ -409773,11 +414627,11 @@ [] ], "clip-path-animation-fixed-position-rounding-error-ref.html": [ - "a069e4d3ae5bc82ea9547b01e7958b8f7eead645", + "e9f54f3ad3dd757070d63ecdc3c3ae4123d213e8", [] ], "clip-path-animation-font-size-ref.html": [ - "912a8e8464266e98588bc3a6faf6b60d589198d7", + "f4369b0f111ad591f020f1d6e2f675590e0357bb", [] ], "clip-path-animation-fragmented-ref.html": [ @@ -409792,6 +414646,10 @@ "6cd7e76774bdfada51ae9fc3058db5f65f5fb2f8", [] ], + "clip-path-animation-inherit-ref.html": [ + "5b1cf397294adfc5adfcd87461c5db56201bf95c", + [] + ], "clip-path-animation-missing-0-percent-ref.html": [ "200edcd03821ba2899e43fd560c475b23e7678f3", [] @@ -409809,11 +414667,11 @@ [] ], "clip-path-animation-path-ref.html": [ - "d53067f5634265344f78962fbab011e742b0dbf3", + "be3e970e462b3ed2a1884212321895ea72d1d3d9", [] ], "clip-path-animation-polygon-ref.html": [ - "28e11e966d58ad6ed074ff1a3e8b232f56df8213", + "7c18c5feca2b242d6484329ac0bae01beb458de7", [] ], "clip-path-animation-ref.html": [ @@ -409852,6 +414710,10 @@ "7e0d2a54266f3855dbc8e8e87167a06ea0cc323b", [] ], + "clip-path-transition-crashtest.html": [ + "103a0da2a60a7c00bb12eb941ebceec94f318d47", + [] + ], "clip-path-transition-ref.html": [ "af164c30f06808c3394cf3210ca13bc41792d53c", [] @@ -410011,7 +414873,7 @@ [] ], "clip-path-path-with-zoom-ref.html": [ - "ef91c619c40615f633c64d59bfe302fcfbd8c5fb", + "76b6e473f06b788830748991a056d5f627d17315", [] ], "clip-path-rectangle-border-ref.html": [ @@ -410055,11 +414917,11 @@ [] ], "clip-path-shape-003-ref.html": [ - "46e098c4eb6489fc44301d6bf9b243e836b2ca31", + "8d6173464c3c1db9aaa89c0dc1d96f165ccc0818", [] ], "clip-path-shape-004-ref.html": [ - "ec8f9410795138f7a3490d7a4169b5ebd5e37474", + "b74e6abdd9e7c02adf5392f02854ee61f05bc38f", [] ], "clip-path-square-001-ref.html": [ @@ -410261,6 +415123,10 @@ } }, "mask-image": { + "WEB_FEATURES.yml": [ + "b5bbd438dac187e92af375c0933ed9a27783a6a7", + [] + ], "mask-clip-1-ref.html": [ "3925bd4f1db4fa25b93e9e121afdf0940ae0bd4b", [] @@ -410317,6 +415183,10 @@ "5d82c5cf27a1ec69c5f646830ebbbf0f04c5264c", [] ], + "mask-mode-luminance-with-mask-size-ref.html": [ + "6c78328b941ec3644dc6b050149dcfd783812214", + [] + ], "mask-mode-ref.html": [ "0f7dbd571fe155a57ff2d15e5dfc50f0dacd61ed", [] @@ -410546,6 +415416,12 @@ ] } }, + "parsing": { + "WEB_FEATURES.yml": [ + "0837d0ddf902333b45942311cc585e6e385af634", + [] + ] + }, "resources": { "blue-20.png": [ "c464c75eeca3ead65c00e7c26150d97ad58da5c3", @@ -410561,6 +415437,12 @@ ] } }, + "css-masonry": { + "WEB_FEATURES.yml": [ + "30261400cebef7dec6e367919ed9f7c7421885a3", + [] + ] + }, "css-multicol": { "META.yml": [ "cc95000ec53ea8daef06251ad5a9f20c5b06a281", @@ -411647,21 +416529,21 @@ "supports-is-consistent-ref.html": [ "0eb8cd16a1688183fa52bc6bc9f2b4243123513d", [] + ], + "supports-rule-ref.html": [ + "1be71b225233ed934bc40b8051f4c9b2682118c8", + [] ] }, - "css-outline": { - "reference": { - "subpixel-outline-width-ref.tentative.html": [ - "28d84fabb77750d5e9dbad9515b1e85b4a6fadcb", - [] - ] - } - }, "css-overflow": { "META.yml": [ "b9ba7acd150e5022de5c5208cd7f5f7d4dde93c3", [] ], + "WEB_FEATURES.yml": [ + "6c270951f7932fc9eac70f910996e3a4f5a78150", + [] + ], "clip-001-ref.html": [ "9ccdbf93c615f6078b82add5362e6032e9efe583", [] @@ -411686,10 +416568,350 @@ "2dce244975220f63b60e7cac9938e1b74cebe6ed", [] ], + "document-element-overflow-hidden-scroll-ref.html": [ + "ebd2d860cec74ba0d535637934aca8dadf90571d", + [] + ], "incremental-scroll-ref.html": [ "131e54ec2913621bd0cd6e3adf8e22e03b129d8a", [] ], + "line-clamp": { + "reference": { + "line-clamp-010-ref.html": [ + "46ca731c5446db88ba4e5fc8a3d6b8b43c4fc056", + [] + ], + "line-clamp-011-ref.html": [ + "04297fff2b5538a8be020d780cba3d82aa30fa9e", + [] + ], + "line-clamp-012-ref.html": [ + "f412e0110d45ac2db2e8e55adfdab3ae9dce57df", + [] + ], + "line-clamp-013-ref.html": [ + "b2eb05e884d781ae9d5fdaa690e17be60607d97f", + [] + ], + "line-clamp-015-ref.html": [ + "1af45c1225c2df9ed258eb69c687f11c4be9a965", + [] + ], + "line-clamp-021-ref.html": [ + "d794c76e3c9653dd94b2bad73cdf2a4574db5f50", + [] + ], + "line-clamp-022-ref.html": [ + "7df05662f07259544398fc1ac6673c2ee5165956", + [] + ], + "line-clamp-023-ref.html": [ + "55ca1ca92be48310cbdc4839573fa8f67ca84c2a", + [] + ], + "line-clamp-026-ref.html": [ + "b6e816f997c21186153ddd340916889b7ba7c53d", + [] + ], + "line-clamp-027-ref.html": [ + "01ed862e0a27147bf6be4b2c88e81f897b6ce34a", + [] + ], + "line-clamp-028-ref.html": [ + "21ec61f5c77f2791c34b220b48ffd4b1f07e58f5", + [] + ], + "line-clamp-auto-002-ref.html": [ + "fe0a8dbd588a8a56c8ac0488713a061ef83474f9", + [] + ], + "line-clamp-auto-005-ref.html": [ + "01eea67a0da77dc7a99bcd0b8677abdd3a4033f5", + [] + ], + "line-clamp-auto-011-ref.html": [ + "5f7120ee39a2014f75f2f700ebedcc0b0e6e6275", + [] + ], + "line-clamp-auto-016-ref.html": [ + "4a5f3536cc62c33e1a30ed9fce9a21cecda341bc", + [] + ], + "line-clamp-auto-018-ref.html": [ + "4d24d766956879e47ad7b36e4074993324204b8d", + [] + ], + "line-clamp-auto-019-ref.html": [ + "5dd739a1dabadff72e9ec19236f46a7850f2d83f", + [] + ], + "line-clamp-auto-020-ref.html": [ + "ef111f1e4a88a88c3b7f679d29f5bae58ea9624e", + [] + ], + "line-clamp-auto-021-ref.html": [ + "9ecad287453435b3b64e50366013caab453f0dfa", + [] + ], + "line-clamp-auto-023-ref.html": [ + "adb4b6dc6edf2a401cd4016f394c74b9bf9b89cb", + [] + ], + "line-clamp-auto-025-ref.html": [ + "a76468d6d546e1e58a15a604a2ae476cf8dfec27", + [] + ], + "line-clamp-auto-026-ref.html": [ + "44d503a05220fdf89caf4722961fc478ae943350", + [] + ], + "line-clamp-auto-027-ref.html": [ + "fa0ade7a61d0729dc216fe92fc9d1f49bcd31991", + [] + ], + "line-clamp-auto-028-ref.html": [ + "b70c6be4ffc13b1ebfa7c2dee33775053b599e53", + [] + ], + "line-clamp-auto-029-ref.html": [ + "76cd5fb7d22c8baf043dc379cc5486884d215df6", + [] + ], + "line-clamp-auto-031-ref.html": [ + "2d3c9d0261b7eb369d99dbd842309f697e80bad8", + [] + ], + "line-clamp-auto-032-ref.html": [ + "3b32f988cd91c6c3acf65a3368788a44d6850eea", + [] + ], + "line-clamp-auto-034-ref.html": [ + "8fae3b278c124db00b8f79eb0cd0b91cb8752217", + [] + ], + "line-clamp-auto-with-ruby-001-ref.html": [ + "03d12b9c722c8c160830cc01997baa3ee4cf88c3", + [] + ], + "line-clamp-auto-with-ruby-003-ref.html": [ + "0b6a569dc8eb2b3faa3ccd3a1fb80a014b853f61", + [] + ], + "line-clamp-auto-with-ruby-005-ref.html": [ + "dca5f1b120cdb930680f2228156cb3a901d7da42", + [] + ], + "line-clamp-with-abspos-001-ref.html": [ + "d756162dde0c54bd52646597b01bbff8a80f5fd8", + [] + ], + "line-clamp-with-abspos-005-ref.html": [ + "3b1f9218e887a7e50745f0c5e540c099475a59df", + [] + ], + "line-clamp-with-abspos-006-ref.html": [ + "4b55c37a033ea4d4a9d97b5fdf8035a60aace4bd", + [] + ], + "line-clamp-with-abspos-007-ref.html": [ + "e3dcc696e39684b47e1785968f29ec9adf8f9c0b", + [] + ], + "line-clamp-with-abspos-008-ref.html": [ + "373b2755c1d617e1716afe8060c28b246d52c33e", + [] + ], + "line-clamp-with-abspos-010-ref.html": [ + "ecc2fcee1b5219b310ef15b28f0684b07d84baf6", + [] + ], + "line-clamp-with-abspos-011-ref.html": [ + "f08b0270e8d7aa8a389910319617528dac6a4240", + [] + ], + "line-clamp-with-floats-001-ref.html": [ + "bcd70aa9305f73a44c46542208f0ad664c92bfde", + [] + ], + "line-clamp-with-floats-005-ref.html": [ + "d20d6c53ddee3de2fe12ea1927eb3182a0f55201", + [] + ], + "line-clamp-with-floats-006-ref.html": [ + "9288c4e36f924c4ab80bb9ad368b87a3a2d01720", + [] + ], + "line-clamp-with-floats-007-ref.html": [ + "6d5390246b4d28365a4e8f238bd02f4fe6be9c21", + [] + ], + "line-clamp-with-floats-008-ref.html": [ + "50b3d53900e21d7bf031fd25d69c80f174bca7c2", + [] + ], + "line-clamp-with-floats-010-ref.html": [ + "12b8cdc441a64fb4e1a6249ee8aea640c66b82b5", + [] + ], + "webkit-line-clamp-001-ref.html": [ + "ef28e01dac0223c9a2768d3fd1415fb9ef2f1c6b", + [] + ], + "webkit-line-clamp-005-ref.html": [ + "c9a9ae5d7ffebd9f041186a8d79f49f827becd61", + [] + ], + "webkit-line-clamp-006-ref.html": [ + "3a17a6d5f3b47c511578b28ffd9fc35b5b61dd98", + [] + ], + "webkit-line-clamp-007-ref.html": [ + "1c9a728aafcee7e830c203f3abec2393bd58e104", + [] + ], + "webkit-line-clamp-008-ref.html": [ + "4ead437830f96be87f75c687c973e21d63021d99", + [] + ], + "webkit-line-clamp-009-ref.html": [ + "62e100d63346b1da7d80ca34dc2fdf4bcd1972ab", + [] + ], + "webkit-line-clamp-010-ref.html": [ + "63e9885e8b9ce3cac850987917ca301045d4128f", + [] + ], + "webkit-line-clamp-011-ref.html": [ + "fbcd8ca3115e70ce2244a4b22820ede745e3bc09", + [] + ], + "webkit-line-clamp-012-ref.html": [ + "d28c9388aea4c494d1773dd2e1ffcbb7a7712bb3", + [] + ], + "webkit-line-clamp-013-ref.html": [ + "ba14aefc7cc3b27318325c22ef35cb1da755193b", + [] + ], + "webkit-line-clamp-014-ref.html": [ + "c7346ab527935246f795e1f0181abd7c31cd4fb7", + [] + ], + "webkit-line-clamp-015-ref.html": [ + "d73bc7d7cb6c54ea7d6141b04f901ef345c44e14", + [] + ], + "webkit-line-clamp-016-ref.html": [ + "e54947e3956cbe0acc1cab1fc91eef8763775c04", + [] + ], + "webkit-line-clamp-017-ref.html": [ + "043e5f3d1c31ac0bc1e1db014769e7dedd3f1f68", + [] + ], + "webkit-line-clamp-018-ref.html": [ + "b95f7ce7662fac02eed3594f47ec42cca202cc26", + [] + ], + "webkit-line-clamp-019-ref.html": [ + "b95f7ce7662fac02eed3594f47ec42cca202cc26", + [] + ], + "webkit-line-clamp-020-ref.html": [ + "043e5f3d1c31ac0bc1e1db014769e7dedd3f1f68", + [] + ], + "webkit-line-clamp-021-ref.html": [ + "043e5f3d1c31ac0bc1e1db014769e7dedd3f1f68", + [] + ], + "webkit-line-clamp-022-ref.html": [ + "29d738589d19afef0d85a107cd803bdd05743116", + [] + ], + "webkit-line-clamp-023-ref.html": [ + "3127bb078b348f7604b421b28cad4dee13e8afb7", + [] + ], + "webkit-line-clamp-024-ref.html": [ + "d4820a1b487a031611b7010a3513fb3daf06d71f", + [] + ], + "webkit-line-clamp-025-ref.html": [ + "c33a6b5033890c8a27d5de58a801a80a3083b554", + [] + ], + "webkit-line-clamp-026-ref.html": [ + "e4c1b033499cbea1ba657009ae86d1f4366df3d8", + [] + ], + "webkit-line-clamp-027-ref.html": [ + "be27d6d276abb1c910c3c1c3dab00128e6c0c2c2", + [] + ], + "webkit-line-clamp-029-ref.html": [ + "0d18c2a7f55f4f071657ee3d3c4e610f7e8fb05b", + [] + ], + "webkit-line-clamp-030-ref.html": [ + "e88c8bffc02da9e187ba6f30834751e84b590940", + [] + ], + "webkit-line-clamp-031-ref.html": [ + "14f2fb1bb40f2885a304b0e9de8a866027e689c1", + [] + ], + "webkit-line-clamp-032-ref.html": [ + "8f5b1ef53eb72dd82f1211744a21c34dede17b46", + [] + ], + "webkit-line-clamp-035-ref.html": [ + "230218399e31f9dc79ba6aef2856a16be1ae98b4", + [] + ], + "webkit-line-clamp-036-ref.html": [ + "0de35e98ab353519664996fba8ab8ef6916a18d0", + [] + ], + "webkit-line-clamp-037-ref.html": [ + "2927716d76dbc8ebc8b98169c533301214a517aa", + [] + ], + "webkit-line-clamp-038-ref.html": [ + "bd8db762dd889c65d55a31e33ce9913a125fff3a", + [] + ], + "webkit-line-clamp-039-ref.html": [ + "fd8a76b2f8e67a901500dd0ae26074f2404518a0", + [] + ], + "webkit-line-clamp-040-ref.html": [ + "f55be86e5461dfc1d302d0649f2aa0d31a285b8b", + [] + ], + "webkit-line-clamp-block-in-inline-001-ref.html": [ + "79f2e409109d72a76e12374220bd423aba16f4eb", + [] + ], + "webkit-line-clamp-dynamic-001-ref.html": [ + "21458953df99e0be27d2143c182a5829438ede5d", + [] + ], + "webkit-line-clamp-with-line-height-ref.html": [ + "c2c8914161af668cd57ce7ebac15b2100d93be8b", + [] + ] + } + }, + "overflow-alignment-001-ref.html": [ + "5a89c88467eccda859bbec0c09d421afd2a61613", + [] + ], + "overflow-alignment-002-ref.html": [ + "8c2974347515641ab47d04ef63da9b4615302ef7", + [] + ], "overflow-auto-scrollbar-gutter-intrinsic-001-ref.html": [ "8c092bd0c876bc328919f4b39358110dd902c726", [] @@ -411870,6 +417092,12 @@ "a40bd5aacee3d21c5fd480194866bb338a8e3057", [] ], + "parsing": { + "WEB_FEATURES.yml": [ + "23f8c445d554853895235082290c46f5e8411c7e", + [] + ] + }, "reference": { "input-scrollable-region-001-ref.html": [ "d7125ee2ef3285d461b2172208e23d8d4cc27a64", @@ -411934,242 +417162,440 @@ "text-overflow-scroll-vertical-lr-rtl-001-ref.html": [ "fff3dec59cb494d98ee87660ded2b9ee05a5e198", [] - ], - "webkit-line-clamp-001-ref.html": [ - "ef28e01dac0223c9a2768d3fd1415fb9ef2f1c6b", - [] - ], - "webkit-line-clamp-005-ref.html": [ - "c9a9ae5d7ffebd9f041186a8d79f49f827becd61", - [] - ], - "webkit-line-clamp-006-ref.html": [ - "3a17a6d5f3b47c511578b28ffd9fc35b5b61dd98", - [] - ], - "webkit-line-clamp-007-ref.html": [ - "1c9a728aafcee7e830c203f3abec2393bd58e104", - [] - ], - "webkit-line-clamp-008-ref.html": [ - "4ead437830f96be87f75c687c973e21d63021d99", - [] - ], - "webkit-line-clamp-009-ref.html": [ - "62e100d63346b1da7d80ca34dc2fdf4bcd1972ab", - [] - ], - "webkit-line-clamp-010-ref.html": [ - "63e9885e8b9ce3cac850987917ca301045d4128f", - [] - ], - "webkit-line-clamp-011-ref.html": [ - "fbcd8ca3115e70ce2244a4b22820ede745e3bc09", - [] - ], - "webkit-line-clamp-012-ref.html": [ - "d28c9388aea4c494d1773dd2e1ffcbb7a7712bb3", - [] - ], - "webkit-line-clamp-013-ref.html": [ - "ba14aefc7cc3b27318325c22ef35cb1da755193b", - [] - ], - "webkit-line-clamp-014-ref.html": [ - "c7346ab527935246f795e1f0181abd7c31cd4fb7", - [] - ], - "webkit-line-clamp-015-ref.html": [ - "d73bc7d7cb6c54ea7d6141b04f901ef345c44e14", + ] + }, + "rounded-overflow-clip-visible-ref.html": [ + "3a25b794d8d4136c2a7c8c94e5d9eb80daceedc7", + [] + ], + "rounded-overflow-visible-clip-ref.html": [ + "a97633ed3bd7c094d06743534789226165ca8a05", + [] + ], + "scrollable-overflow-input-001-ref.html": [ + "151843a72c00616dfb7ad723be6b1d3435cde65b", + [] + ], + "scrollable-overflow-input-002-ref.html": [ + "782ffab9da1c1cb55b4488e7fc8f913dd18857f3", + [] + ], + "scrollbar-gutter-002-ref.html": [ + "ae51682c75920743d4ae69fffe8b566a3758c7a4", + [] + ], + "scrollbar-gutter-abspos-001-ref.html": [ + "29a2a9961527020629b144c190f9eaa879937926", + [] + ], + "scrollbar-gutter-dynamic-001-ref.html": [ + "5f2f7bff26420e949093a822d8995d9fcc3f1f51", + [] + ], + "scrollbar-gutter-dynamic-002-ref.html": [ + "b1db1a8cb719dad46703275cf66cc6b2c20708e8", + [] + ], + "scrollbar-gutter-dynamic-003-ref.html": [ + "259afc014ec4c5ece4af5bb62a0a2d2d44d867d7", + [] + ], + "scrollbar-gutter-dynamic-004-ref.html": [ + "edafd49e524cb8a3b77ccccf4f24dc09e6e96ca4", + [] + ], + "scrollbar-gutter-fixedpos-001-ref.html": [ + "939dfc807310e396f3dbf0a1d7dd7a20f7087bc0", + [] + ], + "scrollbar-gutter-fixedpos-002-ref.html": [ + "4019f3f2d3e12f6d7274372c0d691752b326e382", + [] + ], + "scrollbar-gutter-fixedpos-003-ref.html": [ + "72a6c087b31d90172a89cc45d99f88436d7dd6c8", + [] + ], + "scrollbar-gutter-fixedpos-004-ref.html": [ + "fe1b96fce8ac4faf2f67e40ca6fbbfd9dad4852e", + [] + ], + "scrollbar-gutter-rtl-002-ref.html": [ + "e6510a081353db996c4ead14ad6a167b90d48297", + [] + ], + "scrollbar-gutter-vertical-lr-002-ref.html": [ + "cb7c647da43c842e68c9ca8e9ca24cd9708324dd", + [] + ], + "scrollbar-gutter-vertical-rl-002-ref.html": [ + "7dbadf995ed89bc3032c4ca1b53e1cebecd6237e", + [] + ], + "scrollbars-chrome-bug-001-ref.html": [ + "1bf59f90e740ae119b87d96855ea0277a6f8afc9", + [] + ], + "select-size-overflow-001-ref.html": [ + "2dc9c219a0cdd6dd5e9ea6e92f6eb614a6f4b2c1", + [] + ], + "text-overflow-ellipsis-003-ref.html": [ + "42349bbead88538a3a6c49a75d5dc2069367d1f5", + [] + ], + "text-overflow-ellipsis-editing-input-ref.html": [ + "3902072bc58b7bf62290edafbce1b735288af716", + [] + ] + }, + "css-overscroll-behavior": { + "META.yml": [ + "8b83e50d1e465786f6466548b58d4df031a855f2", + [] + ] + }, + "css-page": { + "META.yml": [ + "2f9e29e2787e8c41d0a9ebe1df8342a6c52a01a8", + [] + ], + "background-image-only-for-print-ref.html": [ + "c3e5d8d1c5ed202868602e8fdea57225be448dbf", + [] + ], + "fixedpos-001-print-ref.html": [ + "3d66305db0e7497f76dd6aa5a42217eb0931a87a", + [] + ], + "fixedpos-002-print-ref.html": [ + "3d66305db0e7497f76dd6aa5a42217eb0931a87a", + [] + ], + "fixedpos-003-print-ref.html": [ + "3d66305db0e7497f76dd6aa5a42217eb0931a87a", + [] + ], + "fixedpos-004-print-ref.html": [ + "3e3473bcb8e41ce1c4ac6aaf0006b25622b24bc3", + [] + ], + "fixedpos-005-print-ref.html": [ + "e692ff8db3764e05601348acfc2d4ce8314f41b5", + [] + ], + "fixedpos-006-print-ref.html": [ + "b03e1d78d003f33d1ad7810bcacf9cf407b95acb", + [] + ], + "fixedpos-007-print-ref.html": [ + "f576c9377153c3e48ce58d8fcd5428da0d705b23", + [] + ], + "fixedpos-008-print-ref.html": [ + "6ed2528115ae3a5634df6a2968a71fcd81424471", + [] + ], + "fixedpos-009-print-ref.html": [ + "31a6a6724faec358e91a655f546b0c3ef3570be4", + [] + ], + "fixedpos-010-print-ref.html": [ + "90bd5e7fc31f5ef0c4e11a352cd4c309975c193c", + [] + ], + "fixedpos-with-abspos-with-link-print-ref.html": [ + "000c05350b54885c47ea74a7336e02ed857d55ea", + [] + ], + "fixedpos-with-iframe-print-ref.html": [ + "5c1714045083dfc22272b0522273e7a7235cde6f", + [] + ], + "fixedpos-with-link-with-inline-child-print-ref.html": [ + "f12d31acd9d077a24a4ba47bcdbb5b2a3029faf3", + [] + ], + "layers-001-print-ref.html": [ + "b2dae651d55cc82ae7363c69df416dc5abc9468e", + [] + ], + "layers-002-print-ref.html": [ + "b8b5fc1d152025a72bfc07f54bd1559b2129d389", + [] + ], + "layers-003-print-ref.html": [ + "70e43fb6f50a4f0f7f8943e35c6ad3019a9e8e75", + [] + ], + "layers-004-print-ref.html": [ + "a779b263c7d2d9a4be7109431798d86844694a51", + [] + ], + "margin-boxes": { + "alignment-001-print-ref.html": [ + "e91b2377db1ca232230e6c035a744db77b2e2e52", [] ], - "webkit-line-clamp-016-ref.html": [ - "e54947e3956cbe0acc1cab1fc91eef8763775c04", + "auto-margins-001-print-ref.html": [ + "70f4a41ab59830856ee7d6c5c8b0946a6b06d40a", [] ], - "webkit-line-clamp-017-ref.html": [ - "043e5f3d1c31ac0bc1e1db014769e7dedd3f1f68", + "auto-margins-002-print-ref.html": [ + "56adf2a5401944e58bab8382a14879bd1b655bc3", [] ], - "webkit-line-clamp-018-ref.html": [ - "b95f7ce7662fac02eed3594f47ec42cca202cc26", + "auto-margins-003-print-ref.html": [ + "252633b0581a6b2cd09244b0b000b7e7f7effdb8", [] ], - "webkit-line-clamp-019-ref.html": [ - "b95f7ce7662fac02eed3594f47ec42cca202cc26", + "background-001-print-ref.html": [ + "d43af0ca4bfef4f4ed8f24cec818741c4fd61c5c", [] ], - "webkit-line-clamp-020-ref.html": [ - "043e5f3d1c31ac0bc1e1db014769e7dedd3f1f68", + "content-001-print-ref.html": [ + "00c44928daa664661b5650443faf92fd2b7bc351", [] ], - "webkit-line-clamp-021-ref.html": [ - "043e5f3d1c31ac0bc1e1db014769e7dedd3f1f68", + "content-002-print-ref.html": [ + "a1452bc916183e4cf49cac7eab6b884bafd02be6", [] ], - "webkit-line-clamp-022-ref.html": [ - "29d738589d19afef0d85a107cd803bdd05743116", + "content-003-print-ref.html": [ + "ba45b88cd4d84e429c97796d5941fe999e0143fd", [] ], - "webkit-line-clamp-023-ref.html": [ - "3127bb078b348f7604b421b28cad4dee13e8afb7", + "content-004-print-ref.html": [ + "7159484f62c41a2f348646f861e43b96e2b1f2c4", [] ], - "webkit-line-clamp-024-ref.html": [ - "d4820a1b487a031611b7010a3513fb3daf06d71f", + "content-005-print-ref.html": [ + "b49a84cf050696fece39e001d512fb833beebf2e", [] ], - "webkit-line-clamp-025-ref.html": [ - "c33a6b5033890c8a27d5de58a801a80a3083b554", + "dimensions-001-print-ref.html": [ + "dca52cb8bc727c99bc941b24797255e89fbf1811", [] ], - "webkit-line-clamp-026-ref.html": [ - "e4c1b033499cbea1ba657009ae86d1f4366df3d8", + "dimensions-002-print-ref.html": [ + "83e144fb3363262de938737671522faef5ca6043", [] ], - "webkit-line-clamp-027-ref.html": [ - "be27d6d276abb1c910c3c1c3dab00128e6c0c2c2", + "dimensions-003-print-ref.html": [ + "c491cdde98ee56e98cfba9f15f91f1fbfe2f9952", [] ], - "webkit-line-clamp-029-ref.html": [ - "0d18c2a7f55f4f071657ee3d3c4e610f7e8fb05b", + "dimensions-004-print-ref.html": [ + "3f45190e330d2df06ad3b6b4928d0239bdb2ca5e", [] ], - "webkit-line-clamp-030-ref.html": [ - "e88c8bffc02da9e187ba6f30834751e84b590940", + "dimensions-005-print-ref.html": [ + "1749b1c71471fcceb9599b8e09105b08921ff090", [] ], - "webkit-line-clamp-031-ref.html": [ - "14f2fb1bb40f2885a304b0e9de8a866027e689c1", + "dimensions-006-print-ref.html": [ + "f6aa9e60f48b9949a4dabb5833b0590bef56fe81", [] ], - "webkit-line-clamp-032-ref.html": [ - "8f5b1ef53eb72dd82f1211744a21c34dede17b46", + "dimensions-007-print-ref.html": [ + "b91c086879a1967dfcd83c2f433c10cdd8824ad2", [] ], - "webkit-line-clamp-035-ref.html": [ - "230218399e31f9dc79ba6aef2856a16be1ae98b4", + "dimensions-008-print-ref.html": [ + "5bd141a28e1cb394beffd81e656d8eaaa7802908", [] ], - "webkit-line-clamp-036-ref.html": [ - "0de35e98ab353519664996fba8ab8ef6916a18d0", + "dimensions-009-print-ref.html": [ + "922d165efa1b4af7d2c86a4c074894f07eb0a16c", [] ], - "webkit-line-clamp-037-ref.html": [ - "2927716d76dbc8ebc8b98169c533301214a517aa", + "dimensions-010-print-ref.html": [ + "a4c0b4702d54007fbc036fd8f4a8e7ecd8196866", [] ], - "webkit-line-clamp-038-ref.html": [ - "bd8db762dd889c65d55a31e33ce9913a125fff3a", + "dimensions-011-print-ref.html": [ + "54983175e3db5052e46af701975393952853ff06", [] ], - "webkit-line-clamp-039-ref.html": [ - "fd8a76b2f8e67a901500dd0ae26074f2404518a0", + "dimensions-012-print-ref.html": [ + "e62880031a164230240d334ffa6e370f0ffeb562", [] ], - "webkit-line-clamp-040-ref.html": [ - "f55be86e5461dfc1d302d0649f2aa0d31a285b8b", + "dimensions-013-print-ref.html": [ + "a131b564fd62fd9f7935bbd371e0298c74e2f68c", [] ], - "webkit-line-clamp-block-in-inline-001-ref.html": [ - "79f2e409109d72a76e12374220bd423aba16f4eb", + "inapplicable-properties-print-ref.html": [ + "157cb8effa4d501dd3dab2c8535e8cc45f26b390", [] ], - "webkit-line-clamp-dynamic-001-ref.html": [ - "21458953df99e0be27d2143c182a5829438ede5d", + "overconstrained-001-print-ref.html": [ + "de6b55257ca2ef63cb612dff61a3a1165e2874c1", [] ], - "webkit-line-clamp-with-line-height-ref.html": [ - "c2c8914161af668cd57ce7ebac15b2100d93be8b", + "paint-order-001-print-ref.html": [ + "2677aee123cba64e023d9be967f71a8d4caa5c20", [] ] }, - "rounded-overflow-clip-visible-ref.html": [ - "3a25b794d8d4136c2a7c8c94e5d9eb80daceedc7", + "media-queries-001-print-ref.html": [ + "35af04dc3c45b06a092d11569227a9a7014c2068", [] ], - "rounded-overflow-visible-clip-ref.html": [ - "a97633ed3bd7c094d06743534789226165ca8a05", + "media-queries-003-print-ref.html": [ + "99642ca567459a8eb0f5b40e04805c073b31dd9d", [] ], - "scrollable-overflow-input-001-ref.html": [ - "151843a72c00616dfb7ad723be6b1d3435cde65b", + "monolithic-overflow-001-print-ref.html": [ + "9edc5d9ed0d97d40f734396ff54fe6fc69b0492b", [] ], - "scrollable-overflow-input-002-ref.html": [ - "782ffab9da1c1cb55b4488e7fc8f913dd18857f3", + "monolithic-overflow-002-print-ref.html": [ + "5478362b066fe462959f5610b92c4415afb74fc4", [] ], - "scrollbar-gutter-002-ref.html": [ - "ae51682c75920743d4ae69fffe8b566a3758c7a4", + "monolithic-overflow-012-print-ref.html": [ + "e47ca880f93196bd9c1a488ed883a46839744a1c", [] ], - "scrollbar-gutter-abspos-001-ref.html": [ - "29a2a9961527020629b144c190f9eaa879937926", + "monolithic-overflow-013-print-ref.html": [ + "e47ca880f93196bd9c1a488ed883a46839744a1c", [] ], - "scrollbar-gutter-dynamic-001-ref.html": [ - "5f2f7bff26420e949093a822d8995d9fcc3f1f51", + "monolithic-overflow-014-print-ref.html": [ + "a74e0d19a558a6c663b632ad88fb888ca42c707a", [] ], - "scrollbar-gutter-dynamic-002-ref.html": [ - "b1db1a8cb719dad46703275cf66cc6b2c20708e8", + "monolithic-overflow-015-print-ref.html": [ + "db44a3ee21e57cf4c0c11cf081a516ca150fcba8", [] ], - "scrollbar-gutter-dynamic-003-ref.html": [ - "259afc014ec4c5ece4af5bb62a0a2d2d44d867d7", + "monolithic-overflow-016-print-ref.html": [ + "a675fb966c56aa5db37731e382a54675dcb7cb20", [] ], - "scrollbar-gutter-rtl-002-ref.html": [ - "e6510a081353db996c4ead14ad6a167b90d48297", + "monolithic-overflow-017-print-ref.html": [ + "45f839787e03f286e1cdca0a887a48297ea03294", [] ], - "scrollbar-gutter-vertical-lr-002-ref.html": [ - "cb7c647da43c842e68c9ca8e9ca24cd9708324dd", + "monolithic-overflow-018-print-ref.html": [ + "cf31737d6c3f750524ad1c291281f6fcb777f786", [] ], - "scrollbar-gutter-vertical-rl-002-ref.html": [ - "7dbadf995ed89bc3032c4ca1b53e1cebecd6237e", + "monolithic-overflow-019-print-ref.html": [ + "f37740ae7e606b2f8acce89f4210bdd961c11edd", [] ], - "select-size-overflow-001-ref.html": [ - "2dc9c219a0cdd6dd5e9ea6e92f6eb614a6f4b2c1", + "monolithic-overflow-020-print-ref.html": [ + "528c4980de590bc48c3017b246052b561f170bbd", [] ], - "text-overflow-ellipsis-003-ref.html": [ - "42349bbead88538a3a6c49a75d5dc2069367d1f5", + "monolithic-overflow-021-print-ref.html": [ + "112b1ebdccf07881e49c9420cc0f214861126d30", [] ], - "text-overflow-ellipsis-editing-input-ref.html": [ - "3902072bc58b7bf62290edafbce1b735288af716", + "monolithic-overflow-022-print-ref.html": [ + "64572dd6392d79e6bda89e64f8e8f58e08898dc0", [] - ] - }, - "css-overscroll-behavior": { - "META.yml": [ - "8b83e50d1e465786f6466548b58d4df031a855f2", + ], + "monolithic-overflow-023-print-ref.html": [ + "bdc4eb1ab0e14cfe65cce3eaf080d0b46029bd9d", [] - ] - }, - "css-page": { - "META.yml": [ - "2f9e29e2787e8c41d0a9ebe1df8342a6c52a01a8", + ], + "monolithic-overflow-024-print-ref.html": [ + "fc964fde32d70e035633c519bb4fad0377f498e1", [] ], - "layers-001-print-ref.html": [ - "b2dae651d55cc82ae7363c69df416dc5abc9468e", + "monolithic-overflow-025-print-ref.html": [ + "edbb9ac011aa85d161e88f4beace4955cb1d23d2", [] ], - "layers-002-print-ref.html": [ - "b8b5fc1d152025a72bfc07f54bd1559b2129d389", + "monolithic-overflow-026-print-ref.html": [ + "b543a58248705b8615ed8b11a51485e4f58c4801", [] ], - "layers-003-print-ref.html": [ - "70e43fb6f50a4f0f7f8943e35c6ad3019a9e8e75", + "monolithic-overflow-027-print-ref.html": [ + "560f137bf5294b3317b89b7479f429cb82c9ecf0", [] ], - "layers-004-print-ref.html": [ - "a779b263c7d2d9a4be7109431798d86844694a51", + "monolithic-overflow-028-print-ref.html": [ + "560f137bf5294b3317b89b7479f429cb82c9ecf0", + [] + ], + "monolithic-overflow-029-print-ref.html": [ + "560f137bf5294b3317b89b7479f429cb82c9ecf0", + [] + ], + "monolithic-overflow-030-print-ref.html": [ + "d8468e3b14dc0346f178727336572f5122b0e4bf", + [] + ], + "monolithic-overflow-031-print-ref.html": [ + "c2d8b7ea5ff42b01399c39691a3a2c97b5001949", + [] + ], + "monolithic-overflow-032-print-ref.html": [ + "36724ac929d83e3f3286a971f56700acd96047b4", + [] + ], + "page-background-001-print-ref.html": [ + "8269582d04172ac593bea8026d74cc80128a91e1", + [] + ], + "page-background-002-print-ref.html": [ + "997a28c65acaf09babec8dd37ac9187af5d224e9", + [] + ], + "page-background-003-print-ref.html": [ + "93f3c7e95adc32a674f213cd273a887f76b57f20", + [] + ], + "page-background-image-print-ref.html": [ + "f38cc89838027f5f862cbd08459c1694f4a30e01", + [] + ], + "page-box-000-print-ref.html": [ + "d39bd738507490b5590afa7a4eb6cce9766b63bc", + [] + ], + "page-box-001-print-ref.html": [ + "d9ab323877f7144062ce908345d32e57900cc2d6", + [] + ], + "page-box-002-print-ref.html": [ + "e1ee4ab5d148662f6ea6af9f906caed7e821b207", + [] + ], + "page-box-003-print-ref.html": [ + "e1ee4ab5d148662f6ea6af9f906caed7e821b207", + [] + ], + "page-box-004-print-ref.html": [ + "ab2fda9afb6443e0b2da05813f41bfc0edc17f98", + [] + ], + "page-box-005-print-ref.html": [ + "69e0061271d76042128df8f03812e433b0d74036", + [] + ], + "page-box-006-print-ref.html": [ + "c5081a41c4803a204a30233850d7516f1851a79b", + [] + ], + "page-box-007-print-ref.html": [ + "9f5550f8f585a04ab48bc26ef834ef09ed85ce00", + [] + ], + "page-box-008-print-ref.html": [ + "91ed0cec3fac6fea39363a23058951f4408f3daf", + [] + ], + "page-box-009-print-ref.html": [ + "3c034171d3b70e62e0e2aebfff9d419d2cd51451", + [] + ], + "page-box-010-print-ref.html": [ + "e5e9a057dcb6191864a16be34fa9fd2749de66eb", [] ], "page-left-right-001-print-ref.html": [ @@ -412180,6 +417606,66 @@ "3480039046aeca2dee76a7d4bdd720ddbac82784", [] ], + "page-margin-001-print-ref.html": [ + "12ebd76dc91cc2fe9d8991a758085e29eab4d5ec", + [] + ], + "page-margin-002-print-ref.html": [ + "2b56504855863876c308673fa852b41952cc09df", + [] + ], + "page-margin-003-print-ref.html": [ + "52bf73609089087e0310c8a5d0453f88be9d3617", + [] + ], + "page-margin-004-print-ref.html": [ + "24549d4954228c1e48e230fcf4981eeadd4b5d9c", + [] + ], + "page-margin-005-print-ref.html": [ + "bd1829be383a7cbd7c6b134fc6efb6517520731f", + [] + ], + "page-margin-006-print-ref.html": [ + "fe7a2c66db21b005464b89a5436894c67b95ad58", + [] + ], + "page-margin-007-print-ref.html": [ + "20d16df19de9dc0ad95f5b17344cd21210983c18", + [] + ], + "page-margin-auto-and-non-zero-print-ref.html": [ + "5f9be531886c9aaa78df681bb494c50177073c02", + [] + ], + "page-margin-auto-negative-print-ref.tentative.html": [ + "9e816c12fb7ddcd94cdfaf1e910f6146e70c05c6", + [] + ], + "page-margin-auto-print-ref.html": [ + "d7fda4ab6d9919370898450f0e3ee79c65db1a6b", + [] + ], + "page-margin-negative-print-ref.tentative.html": [ + "9e816c12fb7ddcd94cdfaf1e910f6146e70c05c6", + [] + ], + "page-name-000-print-ref.html": [ + "69c5c37b5a3cc4ed47fab1f8105e5f2351e2d07b", + [] + ], + "page-name-001-ref.html": [ + "4e1a4999681faa1ba905fd8284326071c0ab571f", + [] + ], + "page-name-002-print-ref.html": [ + "17ecc93e57aee6910a524e3fa6b14ecc026f9b52", + [] + ], + "page-name-003-print-ref.html": [ + "52ea6bfffcbf187acdeeeacdf960896a2d695986", + [] + ], "page-name-abspos-001-print-ref.html": [ "dc61a550780bf76cab4d964041db37e187f41bb6", [] @@ -412192,6 +417678,10 @@ "d920fd974a8543ba72ff2d63876735502b3aa6fd", [] ], + "page-name-and-break-print-ref.html": [ + "e3f73e41e2ebee99ac6777862a0154bfe1ccd7f5", + [] + ], "page-name-canvas-001-print-ref.html": [ "ab232feb1cb9f39d67f8b0310c570ab2bf2acc17", [] @@ -412332,6 +417822,10 @@ "fefe86d8b798c7e3fa640d3324adde51ce45cd69", [] ], + "page-name-unnamed-trailing-001-print-ref.html": [ + "6cb29e1c7c602b316866e24e094f40d3d192a35c", + [] + ], "page-name-zero-height-001-print-ref.html": [ "e78cb65df988abff25061a58d96f2ce2525248f7", [] @@ -412340,6 +417834,14 @@ "caa7542dac9a8ceeccc0a3eb22377c5a85f56777", [] ], + "page-orientation-on-portrait-002-notref.html": [ + "503fd42d58475741251a8709740142e803d4f6cb", + [] + ], + "page-orientation-on-portrait-003-notref.html": [ + "f6f415df97d4f0c11e10cfacc985b35c8f7f8ad6", + [] + ], "page-orientation-portrait-ref.html": [ "c545c3163c7a713020465332888ca972cb47c45f", [] @@ -412356,10 +417858,106 @@ "76ccfed10a884ff7f2f8e75cb6b208381bf8bba8", [] ], + "page-size-001-print-ref.html": [ + "b016d8949fda42e134adc48f877e62d0e496be79", + [] + ], + "page-size-002-print-ref.html": [ + "78a164694365e5658edb47629868763092865c1b", + [] + ], + "page-size-003-print-ref.html": [ + "38ea1508781e6313e9102bf4c307f91b290df4c4", + [] + ], + "page-size-004-print-ref.html": [ + "0468a745b23855dade0883fd55d8a366e9a621a9", + [] + ], + "page-size-005-print-ref.html": [ + "c2e07daa295c7d0c3337506c4f7dbf817259bfaa", + [] + ], + "page-size-006-print-ref.html": [ + "7167da2ac2681d24dddcf991c3d1c541db2f6788", + [] + ], + "page-size-007-print-ref.html": [ + "9498e2c17b24f3b3f9308f9be6f87e2991d536f6", + [] + ], + "page-size-008-print-ref.html": [ + "f50ad3531e4be209c7858adc238c9d24cc767672", + [] + ], + "page-size-009-print-ref.html": [ + "86ffa278c9306e5a8ddcb8eeb02147dc01c7a266", + [] + ], + "page-size-010-print-ref.html": [ + "27cbe4435c21119102f33aa7fb0fc010600c5b04", + [] + ], + "page-size-011-print-ref.html": [ + "945f105ef470b0e78a92828dc54b651bce7abf7b", + [] + ], + "page-size-012-print-ref.html": [ + "e85e5f078508ca299255ea8270dd1519115019a1", + [] + ], + "page-size-013-print-ref.html": [ + "23c93e5c47a9c8cc7fe8545a97920c961d7d31a8", + [] + ], + "page-size-014-print-ref.html": [ + "23c93e5c47a9c8cc7fe8545a97920c961d7d31a8", + [] + ], + "page-visibility-hidden-001-print-ref.html": [ + "24d3806eb99421a98c7a189c8a0348b592c5fb0c", + [] + ], "pseudo-first-margin-print-ref.html": [ "a9c11c23f84d9d583b7f84e986088b7be58f7d2d", [] ], + "reference": { + "blank-print-ref.html": [ + "ad73420cdb97b50d1b7613a20e5f9d37885c619a", + [] + ], + "filled-green-100px-square-print-ref.html": [ + "d4834d1358a6434664996c635e7b8ee1e51f7628", + [] + ], + "monolithic-overflow-4-pages-print-ref.html": [ + "c115782d6ad862870235953e56474e7eae4902bc", + [] + ] + }, + "remote-origin-iframe-print-ref.html": [ + "f632519cd6e172bb4bc2c903db2b89bddb68273a", + [] + ], + "resources": { + "iframe-with-abspos.html": [ + "27de3aad5e05caa1898f744c9e6646a467e74e32", + [] + ], + "mq-frame-100px.html": [ + "ed823c09e89635da4933a941850265c2eb168e5d", + [] + ] + }, + "subpixel-page-size-001-print-ref.html": [ + "cf59f2be374bd6f41913a107b70d41a18cc0e225", + [] + ], + "subpixel-page-size-002-print-ref.html": [ + "4ed4bdb5ff3920e230c083538d062cbd47a24c8a", + [] + ], "support": { "1x1-green.png": [ "b98ca0ba0a03c580ac339e4a3653539cfa8edc71", @@ -412915,6 +418513,10 @@ ] }, "sticky": { + "WEB_FEATURES.yml": [ + "a32cc33400930dfcfadfe9929b39ef1d7c5bdc40", + [] + ], "position-sticky-change-top-ref.html": [ "8ccc1548ef6abcd82b04e242a747228e47cffd75", [] @@ -412991,6 +418593,14 @@ "2a29b435a7ee5e53b5294bac40314847aec903ca", [] ], + "position-sticky-padding-001-ref.html": [ + "efe584bc8854a2f3c30ad959a8583ebc6f985684", + [] + ], + "position-sticky-padding-002-ref.html": [ + "cc9d447d1c6c74d4f465f9359f3f7785182bb06e", + [] + ], "position-sticky-rendering-ref.html": [ "b4411c3bed42e864e12ac4c333625693cf1625a6", [] @@ -413110,6 +418720,14 @@ "758e769d7821fa55b82e339883f1f9c4d4f0d5e7", [] ], + "registered-property-computation-color-001-ref.html": [ + "651e943b154a96b6dbb5035e4307d78b9ab9c08f", + [] + ], + "registered-property-computation-color-003-ref.html": [ + "e030fdf37c68bd6cfd3b8efa1c361db880044646", + [] + ], "resources": { "utils.js": [ "a952a4feedc5523219eccd231c9bf1c1dc624755", @@ -413152,6 +418770,10 @@ "200d92cc590880be73f63d9e6e00594471700d46", [] ], + "WEB_FEATURES.yml": [ + "5dd44e39c8bc48241907d935ae3c3ef2fb1dbce5", + [] + ], "active-selection-051-ref.html": [ "77e2d2817f66adb707e506c46a1eed948a2e92e3", [] @@ -413164,14 +418786,6 @@ "c15156138e6a7e2e42af3621362911cbd69dda24", [] ], - "cascade-highlight-001-ref.html": [ - "25dbeadb2ee2dbf6d7f568eb6e15443715e77360", - [] - ], - "cascade-highlight-004-ref.html": [ - "e755283a32dc1332c29d61342edd6802d2be52fc", - [] - ], "file-selector-button-001-notref.html": [ "e137ba05103d71203dc09083fa71fbbed1b21617", [] @@ -413213,7 +418827,7 @@ [] ], "first-letter-hi-001-ref.html": [ - "d0decf8bf41d4516895f77ecf3462231d063f09e", + "0eaae755eb91fbb3983ff2caf9bbe4ac4f7bc9e1", [] ], "first-letter-hi-002-ref.html": [ @@ -413256,10 +418870,18 @@ "82c5074fd26aa2dc35c9c8fa77dd3bf1099c5f88", [] ], + "first-letter-width-2-ref.html": [ + "67fe00ca79030554f19be7100ccb505dc273e300", + [] + ], "first-letter-width-ref.html": [ "8ebb00b9dcc10f43df0efea20991af653f5cb691", [] ], + "first-letter-with-before-after-ref.html": [ + "89bab0829ab6c078e490fd17cf8e684fe23a5c11", + [] + ], "first-letter-with-quote-ref.html": [ "0eebf0a51f10c90c64736e61a1403379fb9ed725", [] @@ -413332,116 +418954,182 @@ "ecdb308f2f426af4f2763fabb30f7244f42fcf62", [] ], - "highlight-cascade-001-ref.html": [ - "a18690962fcd4e73d5832f76e7afb8ee681ae24e", - [] - ], - "highlight-cascade-002-ref.html": [ - "17629a6dbad7fb5700b35b8bd0ea5280dba69140", - [] - ], - "highlight-cascade-003-ref.html": [ - "256c28ba0c068630cf675698e019b656a6c56da7", + "highlight-cascade": { + "cascade-highlight-001-ref.html": [ + "2a2907b10a4ab04072ce5e03e2e50e4cdacc371d", + [] + ], + "cascade-highlight-004-ref.html": [ + "9b8507c4cc89dda1e80604e6e97fe9eaef814200", + [] + ], + "cascade-highlight-005-ref.html": [ + "d1e597e05b8434bbb9b769cc62841662df0481b1", + [] + ], + "highlight-cascade-001-ref.html": [ + "b96ffce5ab3245807c7328454dee48cdd289ee2a", + [] + ], + "highlight-cascade-003-ref.html": [ + "68964149baf0d6f1f173b7497d3c6623e125f5a4", + [] + ], + "highlight-cascade-004-ref.html": [ + "5845e936209920ccfe2af2e0cd0fe9bb2b1fa348", + [] + ], + "highlight-cascade-005-ref.html": [ + "f0ea3faa764f9aa05a71e33950402082cd44afe1", + [] + ], + "highlight-cascade-006-ref.xhtml": [ + "643dd793254ab9602d2d12189baf562a17de7aa8", + [] + ], + "highlight-cascade-008-ref.html": [ + "70b9d958b5fcb61973cde1955c9118348911307a", + [] + ], + "highlight-currentcolor-painting-properties-001-ref.html": [ + "d3a3d49797a0ed723efe8024b37d400202df6886", + [] + ], + "highlight-currentcolor-painting-properties-002-ref.html": [ + "6f9066cba8a4108f9285fc427812cb57ebdb6a66", + [] + ], + "highlight-currentcolor-painting-text-shadow-001-ref.html": [ + "1ab60db5c8ec47e2ae2765a57ecfccd7f7d14fc5", + [] + ], + "highlight-currentcolor-painting-text-shadow-002-ref.html": [ + "6452a34d0e7826d0795c782ba39d7cd50c206cf2", + [] + ], + "highlight-currentcolor-root-explicit-default-001-ref.html": [ + "70ce6b59a49a000dd30cd03f36910bad9f67a7a1", + [] + ], + "highlight-currentcolor-root-explicit-default-002-ref.html": [ + "b64b007c64b66c556efe33c865468e10b1b4a887", + [] + ], + "highlight-currentcolor-root-implicit-default-ref.html": [ + "67ecb8df640f72e1725e42a648f2c6e1f33490e2", + [] + ], + "highlight-paired-cascade-001-ref.html": [ + "102b07b4814b6092f0307b8374997cb8edbb25be", + [] + ], + "highlight-paired-cascade-002-ref.html": [ + "19d731af02c99248ce321b4a3ddd36ac6af5ac01", + [] + ], + "highlight-paired-cascade-003-ref.html": [ + "638ae00c6858d7971a74ffbbc1b12e80f90fd849", + [] + ], + "highlight-paired-cascade-004-notref.html": [ + "72490b1461d6d4008edec59dd53b12f686a14c2d", + [] + ], + "highlight-paired-cascade-005-ref.html": [ + "862d06e6f648b5b4feeb5ec3294b605af1322dda", + [] + ], + "highlight-paired-cascade-006-ref.html": [ + "638ae00c6858d7971a74ffbbc1b12e80f90fd849", + [] + ] + }, + "highlight-custom-properties-dynamic-001-ref.html": [ + "836874df056a8a934c38aeebd7ace9d404b312b1", [] ], - "highlight-cascade-004-ref.html": [ - "f9bf83f9c1d63b50b61b96a4edadc1241d3c640b", + "highlight-painting-001-ref.html": [ + "c5d8814a8252b0a8e4be1b43f635cd7b11f548fc", [] ], - "highlight-cascade-005-ref.html": [ - "20d2b0bdb3a1dc84e9d285e0b1d350dde45320f3", + "highlight-painting-002-ref.html": [ + "1582318382658117572ce66810338a3c2547608b", [] ], - "highlight-cascade-006-ref.xhtml": [ - "df0a56123e033dd4536bc0425353c82bd2d0156b", + "highlight-painting-003-ref.html": [ + "66bacc27de66e16c79991a6c085f2eccf617f3a4", [] ], - "highlight-cascade-008-ref.html": [ - "c87ddcf93c9ae7f0a63fe305e5155e3549fc9ee7", + "highlight-painting-004-ref1.html": [ + "9bfe1a5f47819cc1e0ca0a81249ee08aaba50910", [] ], - "highlight-currentcolor-painting-properties-001-ref.html": [ - "93e2002f4aa2bde2c0d1adbb13e0dfd2abf82421", + "highlight-painting-004-ref2.html": [ + "b9084ad543a4a621e738579a20ee7a699b1bdf02", [] ], - "highlight-currentcolor-painting-properties-002-ref.html": [ - "11ca501065e5567345ef6ac0541515d45ff20184", + "highlight-painting-004-ref3.html": [ + "732f6bfe0dbfe2be32bfa225e53c1da84fa8a98b", [] ], - "highlight-currentcolor-painting-text-shadow-001-ref.html": [ - "d6ee33cda749a55a89b28c5f253d2d956d8081e8", + "highlight-painting-currentcolor-001-ref.html": [ + "699f559c6aa3072bf3853801897305a4b89bcb26", [] ], - "highlight-currentcolor-painting-text-shadow-002-ref.html": [ - "fb2696a55a1da63de8bc7962ddf7d20a4f31a861", + "highlight-painting-currentcolor-001a-ref.html": [ + "114487e478f1409ec2d27fb4202740d0b3cb0248", [] ], - "highlight-currentcolor-root-explicit-default-001-ref.html": [ - "794796a88f6a7b1e19c2cf9f8336838722b998b4", + "highlight-painting-currentcolor-002-ref.html": [ + "35891efedd4e46109ffef48de52e0cc1f3d28ca0", [] ], - "highlight-currentcolor-root-explicit-default-002-ref.html": [ - "31759483174842e7dcc6d0fcb1cea8883f593c06", + "highlight-painting-currentcolor-002a-ref.html": [ + "c58b5f48e6f8bf83877317ce58f862f80261165e", [] ], - "highlight-currentcolor-root-implicit-default-ref.html": [ - "67ecb8df640f72e1725e42a648f2c6e1f33490e2", + "highlight-painting-currentcolor-002b-ref.html": [ + "6330c7b9717314691bc33bdefb15a3a0b59e11d0", [] ], - "highlight-painting-001-ref.html": [ - "c5d8814a8252b0a8e4be1b43f635cd7b11f548fc", + "highlight-painting-currentcolor-003-ref.html": [ + "f2d14a4cd635d4404f8a657f51a21c892289bdc5", [] ], - "highlight-painting-002-ref.html": [ - "1582318382658117572ce66810338a3c2547608b", + "highlight-painting-currentcolor-003a-ref.html": [ + "be16f519c0ff7fa085478499fcef956ed9658edb", [] ], - "highlight-painting-003-ref.html": [ - "66bacc27de66e16c79991a6c085f2eccf617f3a4", + "highlight-painting-currentcolor-003b-ref.html": [ + "cfdb46597272c3c73166f99e875ddf00d3d95879", [] ], - "highlight-painting-004-ref1.html": [ - "9bfe1a5f47819cc1e0ca0a81249ee08aaba50910", + "highlight-painting-currentcolor-004-ref.html": [ + "0963a7d831c6463cd4788024d97e95e23afb3258", [] ], - "highlight-painting-004-ref2.html": [ - "b9084ad543a4a621e738579a20ee7a699b1bdf02", + "highlight-painting-currentcolor-004a-ref.html": [ + "a29a035dc64b79fa7ece0bab9f85faa9204047f5", [] ], - "highlight-painting-004-ref3.html": [ - "732f6bfe0dbfe2be32bfa225e53c1da84fa8a98b", + "highlight-painting-currentcolor-004b-ref.html": [ + "0e0dee02c4cdfc2b40b7fbadde4034d063c8efdb", [] ], "highlight-painting-currentcolor-005-ref.html": [ "39d26e8387204840d89318ef917d5df0c4021df4", [] ], - "highlight-painting-soft-hyphens-001-ref.html": [ - "f1485ca9226683ac303facb5dadbd38b475c042e", - [] - ], - "highlight-paired-cascade-001-ref.html": [ - "14687acb841d2b85becead81a0c82b4e4b5b8e9d", - [] - ], - "highlight-paired-cascade-002-ref.html": [ - "48eb9911a104c7b74bbafaefbe19cd23c3ce5d7f", - [] - ], - "highlight-paired-cascade-003-ref.html": [ - "18885fdc898a4ccc260db6056f7c102ffd661c69", + "highlight-painting-shadows-horizontal-ref.html": [ + "4ff90afb388154da1b2f2ef62642f0480fa0e446", [] ], - "highlight-paired-cascade-004-notref.html": [ - "63472b67589c2b2bfd1c74d40b3dd0974e1a0e83", + "highlight-painting-shadows-vertical-ref.html": [ + "00a6f1c80885d61fdada7ea17f8376b63ec14090", [] ], - "highlight-paired-cascade-005-ref.html": [ - "0ac5c02b203bc0b84438e960cd5d015e47303982", - [] - ], - "highlight-paired-cascade-006-ref.html": [ - "18885fdc898a4ccc260db6056f7c102ffd661c69", + "highlight-painting-soft-hyphens-001-ref.html": [ + "f1485ca9226683ac303facb5dadbd38b475c042e", [] ], "highlight-styling-001-ref.html": [ @@ -413718,17 +419406,13 @@ [] ], "active-selection-031-ref.html": [ - "3bb7c329d46e0573a8d58e35d039fdb7826b9e45", + "a9581d40c72d3c0f5feff8b749a4e85a6b13d471", [] ], "active-selection-041-notref.html": [ "17d69f306d77411f2ef0a7dab682b119c5b59e50", [] ], - "cascade-highlight-005-ref.html": [ - "d1e597e05b8434bbb9b769cc62841662df0481b1", - [] - ], "first-letter-digraph-ref.html": [ "4eef817d7062a58066cf952c0c7f830f0fc87d37", [] @@ -413818,6 +419502,10 @@ "c93e8cb92450a3f61a9c25b810268a9589212b5b", [] ], + "selection-over-highlight-001-ref.html": [ + "f75017d5ec5d903bd484f0a6881e3ce1cd826c30", + [] + ], "selection-paint-image-notref.html": [ "ba1e97dffd8e3cbf1d113b8a68a099dd3fb36824", [] @@ -413874,7 +419562,7 @@ [] ], "selections.js": [ - "d0cd3409a7333ba6f22616767564f0327ab9db07", + "4396bfa326b1d55b0b0e1786ad345d9754de1a35", [] ] }, @@ -413898,6 +419586,14 @@ "bd94d694359b4bac1e226d3520af3090c30c7ebe", [] ], + "target-text-shadow-horizontal-ref.html": [ + "6189f844b5ecb06ffd1fae67aeec4a28a5d7cf9c", + [] + ], + "target-text-shadow-vertical-ref.html": [ + "cd9e17905371bad10e38afcf45b6153992018fb3", + [] + ], "target-text-text-decoration-001-ref.html": [ "0ee37b1e8aadfed3945bfecc6dbe77e783def5a1", [] @@ -413946,6 +419642,20 @@ "06c6eccd9a8821e487d62e43248b1984ffe7426d", [] ], + "break-within-bases": { + "basic-ref.html": [ + "32a294b581b01b85f83fbf8ab2b98d15049e9609", + [] + ], + "no-break-opportunity-at-end-ref.html": [ + "f69f8d9456f04e5af630a4c8327abcee0eabb940", + [] + ], + "nowrap-ref.html": [ + "c3bf6b9b383e786123f44436a957bd80a149d7c3", + [] + ] + }, "empty-ruby-base-container-ref.html": [ "e6119468c59af5581d9deeb6e20f60bb18f6aab6", [] @@ -413954,10 +419664,22 @@ "9b513c9adaed3cb7a5d00057a7642d0776cb6163", [] ], + "interlinear-block-margin-box-ref.html": [ + "c9839d94cf27547190a66c2de5f244385c159895", + [] + ], "nested-ruby-pairing-001-ref.html": [ "8c470232876d5a3d3b0c988f2cfef0936d142a10", [] ], + "pseudo-first-letter-ref.html": [ + "3834976b81367aa7a15bf65cb5c6351e843cdfc8", + [] + ], + "pseudo-first-line-ref.html": [ + "db20b5032757e178fa4ec3a5a650dfc1dadfb28c", + [] + ], "reference": { "improperly-contained-annotation-001-ref.html": [ "72a55541bcba241cdced59588e46118a40c8528c", @@ -413978,6 +419700,10 @@ "ruby-annotation-pairing-001-ref.html": [ "2a8f9a836fff9106e1430649cae3ad9a57aea241", [] + ], + "ruby-text-dynamic-style-ref.html": [ + "dd3ab2d445785b85fcec96236b26e4f32c15be41", + [] ] }, "root-ruby-ref.xhtml": [ @@ -413985,11 +419711,15 @@ [] ], "ruby-align-001-ref.html": [ - "eb368b3ae6141ecfa12d57c4c1ed06f388b82b53", + "4497858d8057ea463fcd50b84a112009935ff34e", [] ], "ruby-align-002-ref.html": [ - "e4dd3c8bbe80a8cbe81bae39a626509bf87206f0", + "b0d7ec4efe54400c6c6c4d074a3d7ddd73993769", + [] + ], + "ruby-align-space-around-ref.html": [ + "8eec06f10c38aee103a264d5748f28fdccc234b1", [] ], "ruby-autohide-001-ref.html": [ @@ -414065,7 +419795,7 @@ [] ], "ruby-dynamic-insertion-005-ref.html": [ - "03e5cabe55c7cfd55527a8a79190b8903915969f", + "79a19130ff8ec87a8a1b25982ce037b88ac72ac9", [] ], "ruby-dynamic-removal-001-ref.html": [ @@ -414077,7 +419807,7 @@ [] ], "ruby-dynamic-removal-003-ref.html": [ - "0067c014f5d6663f17b6ed0bcbf9cc75452e740c", + "113598eff2587c110db6f11c9b6a69773de83234", [] ], "ruby-float-handling-001-ref.html": [ @@ -414104,6 +419834,10 @@ "4b2d66e2e72e6c74ba3b81812e558b3b38429ea6", [] ], + "ruby-inlinize-recursive-simple-ref.html": [ + "afb67a5bc98fcff8f466d60abbeebea8a65f4375", + [] + ], "ruby-intra-level-whitespace-001-ref.html": [ "1d9fbb344fd335316c63bdf8530c4be081694df0", [] @@ -414177,7 +419911,7 @@ [] ], "ruby-no-transform-ref.html": [ - "56afd9366fe787670771a82874f1016335f1b7c6", + "1c075de18fab1951de3a809e2d85cd2f2d6c3827", [] ], "ruby-span-001-ref.html": [ @@ -414302,6 +420036,10 @@ "df776353a31f1cef3abe9bc9d195da9be5da2510", [] ], + "WEB_FEATURES.yml": [ + "d285b01e8687b5bf44c33e6dd0fe0ad49f115b7a", + [] + ], "no-red-ref.html": [ "061454fb67a67b9b5b1d62b2603731da3988a3d9", [] @@ -414332,6 +420070,36 @@ [] ] }, + "snap-after-relayout": { + "layout-follows-focused-targeted-block-iframe.html": [ + "4f4b4309fb70c4b144333fa6a077fbf1b9029233", + [] + ], + "multiple-aligned-targets": { + "positioned-target-iframe.html": [ + "65195af621adc4fb9ce78387c01247c322f89da8", + [] + ], + "prefer-targeted-element-iframe.html": [ + "35b0684b26febc6255702b0560a46cb816596725", + [] + ], + "prefer-targeted-element-main-frame-target.html": [ + "ae445d28618a4450195e1e944261e16fcc514c47", + [] + ], + "resources": { + "common.js": [ + "1fd88949b39b56d65e096e0822f0709232e2d8e5", + [] + ] + }, + "stash.py": [ + "a70672ecf008efb3d5f3a8f797fad29abeb0fe97", + [] + ] + } + }, "support": { "common.css": [ "f49c7cbacd5bd9084ab53fc2964e77ab52862e40", @@ -414362,11 +420130,11 @@ "css-scroll-snap-2": { "resources": { "common.js": [ - "1a2edab90bba958141c6e5a1b28fa3bd53408ddb", + "c4a06b02fad08d3af46e7feb52959a782de94b88", [] ], "user-scroll-common.js": [ - "6587aebd920ef5817267ebb906fc08406e5f0c78", + "d5982ae1653fa06036ddf6e5ddd4c3896025671a", [] ] }, @@ -414416,26 +420184,50 @@ "389cf34b716ea17620c6a1d750ac5406945bf9ba", [] ], + "scrollbar-color-006-mis-ref.html": [ + "2fc46863e67a4dc22b003b48bc157df776808783", + [] + ], "scrollbar-color-006-ref.html": [ "f1822b81844458c30e857599838cace6660ddbef", [] ], + "scrollbar-color-007-mis-ref.html": [ + "2fc46863e67a4dc22b003b48bc157df776808783", + [] + ], "scrollbar-color-007-ref.html": [ "f1822b81844458c30e857599838cace6660ddbef", [] ], + "scrollbar-color-008-mis-ref.html": [ + "2fc46863e67a4dc22b003b48bc157df776808783", + [] + ], "scrollbar-color-008-ref.html": [ "f1822b81844458c30e857599838cace6660ddbef", [] ], + "scrollbar-color-009-mis-ref.html": [ + "2b611afbe2157ce5fea6b6bc0bf6fc6e4a59d136", + [] + ], "scrollbar-color-009-ref.html": [ "890179a21c68bc7051c1db252fb7550468bb952e", [] ], + "scrollbar-color-010-mis-ref.html": [ + "2b611afbe2157ce5fea6b6bc0bf6fc6e4a59d136", + [] + ], "scrollbar-color-010-ref.html": [ "890179a21c68bc7051c1db252fb7550468bb952e", [] ], + "scrollbar-color-011-mis-ref.html": [ + "58626ef98200c61b0ded0de499907d7adaa4cdd5", + [] + ], "scrollbar-color-011-ref.html": [ "a4db731eb0ddc19c9b51e8b365def94e156f2db1", [] @@ -414444,34 +420236,66 @@ "1effaf39223c5f6f26c6fce3456767197be06df0", [] ], + "scrollbar-color-dynamic-1-mis-ref.html": [ + "a37205392cf64637fc02c14bde22367176d88f7c", + [] + ], "scrollbar-color-dynamic-1-ref.html": [ "b431edf4240257aee7df076805baf93a7d19d1ae", [] ], + "scrollbar-color-dynamic-2-mis-ref.html": [ + "58b50991c70ea307ea081751398d9a2d39c0efca", + [] + ], "scrollbar-color-dynamic-2-ref.html": [ "94e5841ef296680dc58ed6eead85db956972fe12", [] ], + "scrollbar-color-dynamic-3-mis-ref.html": [ + "8624c0526c4cbfd78c1a55c7ba6b823b5f3710b7", + [] + ], "scrollbar-color-dynamic-3-ref.html": [ "3551f3bbaa6114a9def8449b760e69a14f2355d3", [] ], + "scrollbar-color-dynamic-4-mis-ref.html": [ + "4cf26154b922fb27a7a236632113b7d55c523b3c", + [] + ], "scrollbar-color-dynamic-4-ref.html": [ "b10df541489aa0b19372ca8a60dfb136365c57d7", [] ], + "scrollbar-color-dynamic-5-mis-ref.html": [ + "a37205392cf64637fc02c14bde22367176d88f7c", + [] + ], "scrollbar-color-dynamic-5-ref.html": [ "667d5b3be36f0b4e634c124a65c05a9666d544ae", [] ], + "scrollbar-color-dynamic-6-mis-ref.html": [ + "ed0790acde3058ddfc24c3c15e3d6ef603b3e1f2", + [] + ], "scrollbar-color-dynamic-6-ref.html": [ "d4c6a169817e916b758e818121bcdc7628a9a9ce", [] ], + "scrollbar-color-dynamic-7-mis-ref.html": [ + "a37205392cf64637fc02c14bde22367176d88f7c", + [] + ], "scrollbar-color-dynamic-7-ref.html": [ "b431edf4240257aee7df076805baf93a7d19d1ae", [] ], + "scrollbar-color-dynamic-8-ref.html": [ + "badc99385247641412ffac88f12e320d6229e661", + [] + ], "scrollbar-color-scheme-dynamic-1-ref.html": [ "ec54bc08a721f2b6d4eff3a6422fdc816a4cbeae", [] @@ -414488,10 +420312,22 @@ "045619823547041d72b8b6349ac67945c7540bb6", [] ], + "scrollbar-gutter-scroll-into-view-ref.html": [ + "72cadd8eab58601e7500359de14eee579613e82b", + [] + ], + "scrollbar-width-paint-001-mis-ref.html": [ + "5f7d95bc6f567b2737dc9b810d1a9e7bd2a5a908", + [] + ], "scrollbar-width-paint-001-ref.html": [ "42295b1fb9d7d7ef8622c729265e344117c65cc2", [] ], + "scrollbar-width-paint-002-mis-ref.html": [ + "dd3a8179080cc28a5bd1d71332d0f835c750121e", + [] + ], "scrollbar-width-paint-002-ref.html": [ "001495767f503c2934983d83ce66bfc6b30a0edc", [] @@ -414500,6 +420336,10 @@ "b7acab4a8f12ed88806db7ff67995508c4566780", [] ], + "scrollbar-width-paint-004-mis-ref.html": [ + "f4d7f263adf2d6d0eb7322da083607bd58b0a986", + [] + ], "scrollbar-width-paint-004-ref.html": [ "b2b2d7f2841c6fdf0593c57cb556f6bd58666667", [] @@ -414508,12 +420348,12 @@ "e5c325b85423dda8d07b4a07ae0cd6f8199c9023", [] ], - "scrollbar-width-paint-006-ref.html": [ - "731430735347ef8ba4c69fc9ba7862bea02e2f54", + "scrollbar-width-paint-006-mis-ref.html": [ + "c3f156a4217c5fc0249fa12961f2e17f11f5e554", [] ], - "scrollbars-chrome-bug-001-ref.html": [ - "1bf59f90e740ae119b87d96855ea0277a6f8afc9", + "scrollbar-width-paint-006-ref.html": [ + "731430735347ef8ba4c69fc9ba7862bea02e2f54", [] ], "support": { @@ -414534,10 +420374,18 @@ "a5b2de4f00f3abd19c74b08b80a027d09a7abcca", [] ], + "viewport-scrollbar-body-mis-ref.html": [ + "f3ad07fe56cefc7c87e38c479d88accbccce00c0", + [] + ], "viewport-scrollbar-body-ref.html": [ "4e07903e2ca1e5d0378845c8cc4754dc82b1ebf8", [] ], + "viewport-scrollbar-mis-ref.html": [ + "05babbd2ddbcf7dbaf5d789966e348ab232f1020", + [] + ], "viewport-scrollbar-ref.html": [ "d6df3b49e56d6cfab633dcd5264c79811cfaf0f7", [] @@ -414564,6 +420412,10 @@ "11943c229a0ea76893039b1306bb38402c71f6ad", [] ], + "part-after-combinator-invalidation-ref.html": [ + "d6db0d0e4c4461a7f7f873f2f243d830b82f1afb", + [] + ], "part-nested-pseudo-ref.html": [ "8eee65a27045ae97d10ed22050126d94fa69ed9b", [] @@ -415395,10 +421247,18 @@ [] ], "aspect-ratio": { + "WEB_FEATURES.yml": [ + "65e2142a16b28a03211e4edc706b65828da46cd8", + [] + ], "fieldset-element-001-ref.html": [ "cc964da974077b062212a7cd4e388f1daa017ec9", [] ], + "fieldset-element-002-ref.html": [ + "2c7e7abd0f69738c49c57f42ffc5e073b87ee8b9", + [] + ], "floats-aspect-ratio-001-ref.html": [ "734522a16417a8efaaa0df5c92ff3d8ca9102f9d", [] @@ -415446,8 +421306,8 @@ "f7f6e67feee0079f21791cf050baffd87b67f8ab", [] ], - "2x2-green.ogv": [ - "29903c0a817352ea3d3ad6abf188e5aec7470173", + "2x2-green.webm": [ + "d1c021c03d7d3559e2f169d7e55d28c4e4b1b36f", [] ] } @@ -415533,6 +421393,10 @@ [] ], "contain-intrinsic-size": { + "WEB_FEATURES.yml": [ + "5fc7189215cd11a5f49504feba382008cf182e64", + [] + ], "contain-intrinsic-size-001-ref.html": [ "299930ac35a35a27cbfbe67ebee66c9facb7d2b9", [] @@ -415693,7 +421557,7 @@ [] ], "hori-block-size-small-or-larger-than-container-with-min-or-max-content-1-ref.html": [ - "263a0869aedbaceb06ebe81a53372c905e8acd9e", + "523d80324eeba02b7cc74bd8e37cc468a4ceab08", [] ], "hori-block-size-small-or-larger-than-container-with-min-or-max-content-2-ref.html": [ @@ -415879,7 +421743,7 @@ [] ], "vert-block-size-small-or-larger-than-container-with-min-or-max-content-1-ref.html": [ - "0a5de8da1461fe972a8e64f089feb9b70d226e55", + "e137920f131e621470888f88194d8df72fc7ff48", [] ], "vert-block-size-small-or-larger-than-container-with-min-or-max-content-2-ref.html": [ @@ -416250,6 +422114,18 @@ "ab9d83927458d5b9881b07bc7fd8a1d31e471b33", [] ], + "collapsed-border-partial-invalidation-001-ref.html": [ + "a3705965fe4470f25cb98c331f148b8b93fd22fc", + [] + ], + "collapsed-border-partial-invalidation-002-ref.html": [ + "d89389a6dc3bc2d86a17ea6f22857feaff6119fb", + [] + ], + "collapsed-border-partial-invalidation-003-ref.html": [ + "2b19a838143bdd1602cb252221f68bf2fc84ca70", + [] + ], "collapsed-border-positioned-tr-td-ref.html": [ "b3099017699bb83d78bf0492c9c451ccd1e034bf", [] @@ -416258,6 +422134,10 @@ "9294283d5256978d94f1d4731d8d1ea39e6cb6b1", [] ], + "collapsed-border-remove-row-group-ref.html": [ + "060f0651b691a7db6c8cb2817c09201e0f8280b6", + [] + ], "floats": { "floats-wrap-bfc-006b-ref.xht": [ "93cdd3e51cab23bd4f20fb1794ae7eeeb5ff21b1", @@ -416332,6 +422212,10 @@ [] ] }, + "remove-caption-from-anon-table-ref.html": [ + "41af5464c78fb9e6a806106c8f05d38639e88669", + [] + ], "row-group-margin-border-padding-ref.html": [ "aa3e68e6ab2830a817f8612e240888c2cc6e7a6a", [] @@ -416374,6 +422258,10 @@ "d4e3ec6a91c4124fa4f465b8912f720a8fec4c57", [] ], + "table-cell-inline-size-box-sizing-quirks-ref.html": [ + "4b97b4499bf157363ae89a60b2ff146dd6aad74c", + [] + ], "table-cell-overflow-auto-ref.html": [ "695ba5341ed93f55dd28f34a8f2e7133a23f454a", [] @@ -416382,6 +422270,10 @@ "7429cadf7d8fe23765223465d5b58a2dee75ae9c", [] ], + "table-cell-overflow-explicit-height-ref.html": [ + "cb64b1f6ce305abc491d946d1388b75709371047", + [] + ], "table_grid_size_col_colspan-ref.html": [ "160b9975ef0f23632a856c8f1c7e849bc2a63c50", [] @@ -416571,6 +422463,10 @@ } }, "hyphens": { + "WEB_FEATURES.yml": [ + "c8270e62c6030d5e7d7e86d7b7ec8448a31316b1", + [] + ], "hyphens-auto-control-ref.html": [ "7283d239d8bb337a291b0866f75119eef019e853", [] @@ -416796,6 +422692,10 @@ "63c751165f873060027c809cb3fc165b8974fa99", [] ], + "hyphens-vs-float-clearance-001-ref.html": [ + "1fc7b3d521089f26501a74f8130b0a93ceb91b78", + [] + ], "shy-styling-001-alt-ref.html": [ "c86cb5002867c899f54a59d25c0a0572e7658cd7", [] @@ -417639,6 +423539,14 @@ "letter-spacing-nesting-003-ref.xht": [ "996f2a1e30435038e1e02ff7b78bd361c06efc17", [] + ], + "letter-spacing-percent-001-ref.html": [ + "1025ecb67cda6ffbb108566279dbc9ba7311eb72", + [] + ], + "letter-spacing-trim-start-001-ref.html": [ + "d684934983024f8198cfeb3fb0648985de175d7e", + [] ] }, "support": { @@ -417874,6 +423782,10 @@ "fad3f46f1a872bf44477263c72cafb0fa0c8aa12", [] ], + "line-breaking-030-ref.html": [ + "628fff26e33038f9afeb39b82bbd6bbb86a471f8", + [] + ], "line-breaking-atomic-007-ref.html": [ "86bee401970cca02b14cca850899103a77c4e12d", [] @@ -418198,6 +424110,12 @@ ] } }, + "parsing": { + "WEB_FEATURES.yml": [ + "fa39887d52807e3c0753fc1f4b20dc6cbed864fd", + [] + ] + }, "shaping": { "reference": { "shaping-000-sanity-ref.html": [ @@ -418687,6 +424605,10 @@ "68c16429305391cd4d69f0051d7a31f822560d2c", [] ], + "text-align-justify-bidi-control-ref.html": [ + "c30c5a0178bfb95934fbb30c9c2b29ba3cfaae71", + [] + ], "text-align-last-010-ref.html": [ "2f26b42723d0e736ef8d01ddc72ec3cc5e69d088", [] @@ -418703,6 +424625,10 @@ "ded6defa8a07285acbeb67fb5445da7a7f0920c8", [] ], + "text-align-last-justify-br-ref.html": [ + "efe5481e824d235f5f175b042514ac9687d7329e", + [] + ], "text-align-last-justify-ref.html": [ "d07bed3f779f55d717f806b0c2b1889446a465da", [] @@ -418943,6 +424869,10 @@ ] }, "text-spacing-trim": { + "WEB_FEATURES.yml": [ + "329fa18e2a80a229f31c2a8598729f2f044a9656", + [] + ], "support": { "variant-class.js": [ "28cf85ff9f65b4b962250104080c9990382a28db", @@ -418965,6 +424895,10 @@ "acbf37f25060930a82e7c1381b226ff4fa4c80c0", [] ], + "text-spacing-trim-end-001-ref.html": [ + "57013882323048ccc8d651929fdb42f413953882", + [] + ], "text-spacing-trim-feature-001-ref.html": [ "86b61e064076ab4224a65021e31b5678a54e3ec0", [] @@ -418981,16 +424915,24 @@ "d33e3b62edd31029751ac32bcbdb6178df90d563", [] ], - "text-spacing-trim-space-first-wrap-001-ref.html": [ - "5295bdc34fff440fc3c75c6d1a1600390f601573", + "text-spacing-trim-span-001-ref.html": [ + "072fd1e917f1af3567a387b0e3dee4146dab05f1", [] ], - "text-spacing-trim-trim-all-001-ref.html": [ - "d541fcc5f810629f4eb8d0d97bc6f0b6db8adba3", + "text-spacing-trim-start-001-ref.html": [ + "60a255160f2753157b7b46c79ec6d71c8d15f444", [] ], - "text-spacing-trim-wrap-001-ref.html": [ - "b03890c59ca77ffcb4a20bc749c92221b234951e", + "text-spacing-trim-start-002-ref.html": [ + "fd4ca6d6913dcea4ea8b2d6c1b1cf6381a40773d", + [] + ], + "text-spacing-trim-subset-001-ref.html": [ + "10abd537c979c4455755561168c1d74113263675", + [] + ], + "text-spacing-trim-trim-all-001-ref.html": [ + "d541fcc5f810629f4eb8d0d97bc6f0b6db8adba3", [] ] }, @@ -419000,6 +424942,10 @@ ], "text-transform": { "math": { + "italic-mapping.js": [ + "ba17d3f6b608161239d9bf5ba41f45c949b82532", + [] + ], "text-transform-math-auto-001-ref.html": [ "d6418a346c81da1c1d21289549cb22625ea1081c", [] @@ -419178,6 +425124,10 @@ "e80ca4ed7bae07256ba664850a59e21a7f55dfeb", [] ], + "text-transform-uppercase-dynamic-ref.html": [ + "1fede4447df2ee48ab5b002ce5dc52be33b1e295", + [] + ], "text-transform-upperlower-001-ref.html": [ "1c5fa0a981a0b0ec3185bb27fd7f6565160a38ed", [] @@ -419397,6 +425347,10 @@ ] }, "white-space": { + "WEB_FEATURES.yml": [ + "89253912e8520ad5496e4a9c5da747f9d16bcf9d", + [] + ], "lone-cr-001-ref.html": [ "943daefee058239e51eef2a4c6b1b46471508696", [] @@ -419419,21 +425373,29 @@ [] ], "eol-spaces-bidi-001-ref.html": [ - "430706c55697597681c71202dd4cb18da8b5de37", + "2aa8f4a83c6b151bf0d2275774384e7c81b169b2", [] ], "eol-spaces-bidi-002-ref.html": [ - "30a4ffd303d55f6228b886aa658822975601967a", + "05b554639791447114ab206a5f85380652e8f0d8", [] ], "eol-spaces-bidi-003-ref.html": [ "57e23bdc1059ec0b93b33f9986ff6d9eb6051034", [] ], + "eol-spaces-bidi-004-ref.html": [ + "d845f2ac9542f57733b00051722a20216af08898", + [] + ], "eol-spaces-bidi-alt-003-ref.html": [ "6861ec61de66efd296faa67d0f544e8e8128a8e9", [] ], + "eol-spaces-bidi-alt-004-ref.html": [ + "4d068654a76d5f88199d9eebbce1d32a25779fe5", + [] + ], "full-width-leading-spaces-001-ref.html": [ "2b9cf1c3b27edbe44a1009366e47d245e4cb7a8b", [] @@ -419542,6 +425504,26 @@ "d8c1834d9572e33a8f4b5306871fb725dbd9ce5d", [] ], + "text-wrap-balance-003-ref.html": [ + "318480bb5028d95c6a1ec3a3dfcd7fd50c0b662d", + [] + ], + "text-wrap-balance-004-a-ref.html": [ + "96ed5f2fe53ab31ac6c045078917cc36921842fa", + [] + ], + "text-wrap-balance-004-b-ref.html": [ + "d1171917c866a1d664aa998ddffa1b5139b62682", + [] + ], + "text-wrap-balance-004-misref.html": [ + "d3574427b2d751abfec78d3c43e6b497aa966147", + [] + ], + "text-wrap-balance-004-ref.html": [ + "74d6b392f959d9e65bf6a8bfb6c1ca28953e2dc4", + [] + ], "text-wrap-balance-align-001-ref.html": [ "e522e3711c9d1a68f6a90d97cba248ecb4e47d32", [] @@ -419562,6 +425544,10 @@ "b28426f5754fefc12862c8cddf8643be7c866906", [] ], + "text-wrap-balance-float-006-ref.html": [ + "6e017371730706c390a0a813a149af1693589513", + [] + ], "text-wrap-balance-line-clamp-001-ref.html": [ "4e465be7ccf97dfe4e8523f92aa6aec4470acbe2", [] @@ -419570,10 +425556,22 @@ "64a1cf3d8d5f097b667bc3ae543afb9fdc4c8d04", [] ], + "text-wrap-balance-overflow-002-ref.html": [ + "6d490101855ddc615ea03b9994d89890e83bd3da", + [] + ], "text-wrap-balance-text-indent-001-ref.html": [ "401e35e2f1f8c534487782df003078b1a53b6e36", [] ], + "text-wrap-nowrap-001-mis-ref.html": [ + "ca73318ecf3bae78643e5a754da54e8c8dc313d2", + [] + ], + "text-wrap-nowrap-001-ref.html": [ + "bd5b231d83126b01720fd5d2d3c57f8d920acdf5", + [] + ], "textarea-pre-wrap-001-ref.html": [ "31070ea92815e4d3a3ece48ed69da03de02f671e", [] @@ -419667,7 +425665,7 @@ [] ], "trailing-space-rtl-001-ref.html": [ - "f3f25235911e7a317377a57d66d68318aaf2eaf6", + "25094d539d8609bf5c7bea575f41e5248bf91720", [] ], "white-space-applies-to-text-001-ref.html": [ @@ -420259,6 +426257,10 @@ "ref-filled-green-100px-square.xht": [ "05a13794482a94f6c10bd9d4c98704e63ef60331", [] + ], + "word-spacing-percent-001-ref.html": [ + "02bd2f64f45f1ea1e33a0e2f528414c7cb6c7b0c", + [] ] }, "support": { @@ -420334,7 +426336,7 @@ ] }, "text-decoration-thickness-ref.html": [ - "f0276959fbdf1304889b343a18ad0d4ed8de2a5b", + "d29edee1cf241ab994790c27732eb1ce93c322e5", [] ] }, @@ -420579,18 +426581,6 @@ "8955e8469aa6cd3d63a34e9376b3f6c135f01e85", [] ], - "text-decoration-underline-position-horizontal-ref.html": [ - "be9155bbcf82bec1011de42ed5054ca8d1da72de", - [] - ], - "text-decoration-underline-position-vertical-ja-ref.html": [ - "303655abdd2489884a6e0fd6ab08eef114fcbc5f", - [] - ], - "text-decoration-underline-position-vertical-ref.html": [ - "8c0bee6720355c6216ce6f11d27e2f1fb4d4b401", - [] - ], "text-decoration-underline-ref.html": [ "2370054a8fbd5cb8c00bfb95401129d01de38d00", [] @@ -420738,6 +426728,18 @@ "text-underline-position-from-font-variable-ref.html": [ "e9e5252194b66f348595b42ae58c0d2c823d422e", [] + ], + "text-underline-position-horizontal-ref.html": [ + "be9155bbcf82bec1011de42ed5054ca8d1da72de", + [] + ], + "text-underline-position-vertical-ja-ref.html": [ + "3f594c6c0fcd996ae8f48a7dfe2d6601a68a46ef", + [] + ], + "text-underline-position-vertical-ref.html": [ + "8c0bee6720355c6216ce6f11d27e2f1fb4d4b401", + [] ] }, "resources": { @@ -420826,6 +426828,18 @@ "b19d776410cd1ea443a912974bcfdf671a7269fc", [] ], + "text-emphasis-punctuation-1-ref.html": [ + "8d77455c4dbb64a8af342a102f7cedff74490186", + [] + ], + "text-emphasis-punctuation-2-ref.html": [ + "503e999788c55edf915b1e54ed8627fd22f39c41", + [] + ], + "text-emphasis-punctuation-3-ref.html": [ + "f73638a1ea612873a8683d8b02bb15b7ccb3ffcc", + [] + ], "text-emphasis-ruby-001-ref.html": [ "6b1d6bd2f0e11f74b0065f39ef4ad0a73a434755", [] @@ -420911,10 +426925,18 @@ "79c3d996cff4f212d9f9c8ec5818bece45734805", [] ], + "basic-opacity-near-zero-ref.html": [ + "6254e4e9fc7d2e2662158b9d12fe6a8bd0ae730b", + [] + ], "basic-opacity-ref.html": [ "11aa6d5176b8715280447fc107c6a2cf07f3df15", [] ], + "basic-opacity-zero-ref.html": [ + "6254e4e9fc7d2e2662158b9d12fe6a8bd0ae730b", + [] + ], "basic-ref.html": [ "26b07d2e290668d252f6088b22d9cc8bc5e1c88e", [] @@ -420979,6 +427001,22 @@ "8a962a41e923c50a6d891bc3f1b9c7bff3bbd180", [] ], + "svg-fill-none-ref.html": [ + "9167272178371bf554f83278eb0d256490a6ca34", + [] + ], + "svg-fill-opacity-ref.html": [ + "73c878b89dfa4b12d5a3dd985d0110c424265a1d", + [] + ], + "svg-stroke-dasharray-ref.html": [ + "63e45f4e11775c807abbb36f813ffc9604171ca9", + [] + ], + "svg-stroke-ref.html": [ + "d3905fbfbc96f87bf3d209b1d7c5955d70782e4a", + [] + ], "textindent-ref.html": [ "c3e3315e9b2795a5a5fb8a7e367bb133d6e442fe", [] @@ -421024,11 +427062,19 @@ "a6d5672c9dfe95c990c538f5596094eb2a9615bc", [] ], + "WEB_FEATURES.yml": [ + "d58c1119747958ef3fe20766b3a69db1aa6b80e1", + [] + ], "add-child-in-empty-layer-ref.html": [ "38ab96aaf35f60fcb1a36e4da7f78cca8d5036bc", [] ], "animation": { + "WEB_FEATURES.yml": [ + "9116c202c42c02bf586cd6a92e7c618b65d2e2f4", + [] + ], "canvas-webgl-translate-in-animation-ref.html": [ "6610c6f68bb78ba2045489b41bb0f858df0d6ca5", [] @@ -421055,10 +427101,14 @@ ], "support": { "transform-interpolation-reftests.js": [ - "d79cbedefe7d1f299ce4d9bef056bb7860bc2dcc", + "4070aec84abb3fed35d0187616d42a650b299d64", [] ] }, + "transform-box-ref.html": [ + "f041336b6c5a57732c3da91f44ac224271a3547c", + [] + ], "transform-interpolation-animated-ref.html": [ "0930a7469a87fc8f6515e9f6ff442b6f7988ed4c", [] @@ -421067,6 +427117,10 @@ "2fee6f7c1fc46593f450fac606a651a12403ff72", [] ], + "transform-non-invertible-discrete-interpolation-ref.html": [ + "8267b01d01fab8b92069aebb816f2b2847e776ac", + [] + ], "transform-percent-with-width-and-height-ref.html": [ "8025539309f04590fe103ddd6f35346febbd7a1c", [] @@ -421227,6 +427281,10 @@ [] ], "individual-transform": { + "WEB_FEATURES.yml": [ + "8fa77e513de722f44e607829f6e92272ea533736", + [] + ], "animation": { "individual-transform-combine-ref.html": [ "7c8eb206a9fb7fc9a4cf53f5282cfc1fb251d450", @@ -421274,6 +427332,12 @@ "fcead1ea7769eb137bd3780b94c383d53054ea72", [] ], + "parsing": { + "WEB_FEATURES.yml": [ + "1bf7e23a0b465c5eb50eb043c140032ee1524e4a", + [] + ] + }, "patternTransform": { "reference": { "svg-patternTransform-combination-ref.html": [ @@ -421789,6 +427853,14 @@ "d92c3705b6b9dd270d17c64fce9010a5ab1fe4f3", [] ], + "transform-iframe-002-contents.html": [ + "84f079c90bcb590e81ba39753edf723bcb123858", + [] + ], + "transform-iframe-scroll-position-contents.html": [ + "8efcdafc83cde63f89d56ea437a4852dd82cc206", + [] + ], "transform-lime-square.png": [ "8f939993332e1101b921615723ec6067f3bb90a3", [] @@ -421926,6 +427998,10 @@ "b674c88d82f8a806a8a1cd20040302766d825202", [] ], + "transform-iframe-scroll-position-ref.html": [ + "e4d5da75d7a762b6c346640b2c72339a52d350ab", + [] + ], "transform-image-ref.html": [ "301c0f94bb7806caad2444583f3642d49aa4c969", [] @@ -422476,10 +428552,24 @@ "f72f11dccae5e8b63de6148573723f86fbb4c708", [] ], + "WEB_FEATURES.yml": [ + "fd831030523d7df442c688fe0723defca6a8165b", + [] + ], "inherit-background-color-transition-ref.html": [ "b7a5824836e157f21649fabe12a701b860e04c9f", [] ], + "parsing": { + "WEB_FEATURES.yml": [ + "fd831030523d7df442c688fe0723defca6a8165b", + [] + ] + }, + "pseudo-element-transform-ref.html": [ + "05ea20b69c4b45bb4c9eb49ffa10a342ab97b7ac", + [] + ], "reference": { "transition-test-ref.html": [ "d9d91ec9da9e90feaf164632b22cb285f10a76ca", @@ -422558,7 +428648,7 @@ [] ], "helper.js": [ - "d5fa61b15eff12f48d0a76df51595b104579f757", + "a37aae918300d1136debbebbfbb75d46259e0bce", [] ], "import-green.css": [ @@ -422750,6 +428840,10 @@ "c5557e4cb4143fd9b3e42ddb87098d130860ae66", [] ], + "WEB_FEATURES.yml": [ + "003340211166f1539767ac3949b3153b0402142e", + [] + ], "accent-color-checkbox-checked-001-notref.html": [ "9f9d73177a9044b4562d0fceebe09152fd6ca7ed", [] @@ -422770,6 +428864,12 @@ "e9c3cfad7c0f12181f73d52ad6b56ea7da9d9b9d", [] ], + "animation": { + "WEB_FEATURES.yml": [ + "07cdf85b209f6e5a7e58837bc2df657eecb081b1", + [] + ] + }, "appearance-auto-input-non-widget-001-ref.html": [ "ffbf612615516e72befbd5b84b848e1e93de46aa", [] @@ -422910,6 +429010,12 @@ "e66e037ed020c5164a8f6adfe41e4e3ffcc3841b", [] ], + "parsing": { + "WEB_FEATURES.yml": [ + "b4ae339c2f3301bc1845c39923c05095d9e48499", + [] + ] + }, "pointer-events-no-scrollbars-001-ref.html": [ "096eb16229039740135314ef3b0a6ad1bd74c3d3", [] @@ -423015,6 +429121,10 @@ "62b0c41757dd1bb4e323c8a6753f82c30c98ce7a", [] ], + "subpixel-outline-width-ref.tentative.html": [ + "28d84fabb77750d5e9dbad9515b1e85b4a6fadcb", + [] + ], "text-overflow-001-ref.html": [ "9e9303106a82dea9433ec61fa9ec0df8950ae38f", [] @@ -423078,6 +429188,14 @@ "text-overflow-ellipsis-indent-001-ref.html": [ "660a7c4d52e7e2a763bfffc7582469896a5835b8", [] + ], + "transparent-accent-color-001-ref.html": [ + "91a9600e180cd9636b2ec3aa0ad63f79bbc334b5", + [] + ], + "transparent-accent-color-002-ref.html": [ + "db70dede9453312e8864d64ea5d8c29be1f63899", + [] ] }, "resize-change-margin-ref.html": [ @@ -424005,10 +430123,6 @@ "1b0e7b56a6b74b4c1636c80911741cbb565d0397", [] ], - "test.ogv": [ - "50d59dfb38b065d9250b7c0e43e0cba7eac82904", - [] - ], "test.webm": [ "3a601805d79fb557c6e29520305d7733ec124dd0", [] @@ -424066,6 +430180,10 @@ "a22882a9996b14afa942d3403fa1a873f526073a", [] ], + "WEB_FEATURES.yml": [ + "526bb67def54a02a8e268cd0393451a27c2c7989", + [] + ], "attr-notype-fallback-ref.html": [ "efb9b969f3a1ea041d48187b7a0477bef406814e", [] @@ -424142,6 +430260,18 @@ "a0f6add684a57f394f2dd97b163a3ca9fc61a1ef", [] ], + "calc-rounding-001-ref.html": [ + "476e337505b0e21292a84f3fb91472db864716c5", + [] + ], + "calc-rounding-002-ref.html": [ + "a2e9fd0d188940cd1f6b198480141cde59801b97", + [] + ], + "calc-rounding-003-ref.html": [ + "e80dd7b95c88255986e06f07cdd7b1edfee8e0fa", + [] + ], "calc-text-indent-1-ref.html": [ "71c0b48d6eee5eb7a09b440f934e24d1f912e680", [] @@ -424570,6 +430700,18 @@ "bc914522c7fcf556c69ba56d2d0ba792d7e92b89", [] ], + "viewport-units-scrollbars-auto-ltr-001-ref.html": [ + "a8cc95cdda1d35a2a0dda0365e90b0b4d4662788", + [] + ], + "viewport-units-scrollbars-scroll-blank-001-ref.html": [ + "f0718d0e8d28f562e93a27c357cf826ffeeb17df", + [] + ], + "viewport-units-scrollbars-scroll-ltr-001-ref.html": [ + "fe9a454525c215343acfc1eeb60f3750df57654e", + [] + ], "viewport-units-writing-mode-font-size-ref.html": [ "1e09173353f9e6de48db31d595c68dbe58bba52b", [] @@ -424697,11 +430839,11 @@ }, "css-view-transitions": { "3d-transform-incoming-ref.html": [ - "c690ee2b9af53301711e096aa708a619a74cc14a", + "18c47557c9bd1f0c533970e9106b13cd9e3cdb6a", [] ], "3d-transform-outgoing-ref.html": [ - "393943e396a0d0d7da7cdb73216e01d744e0d346", + "0e09cba92b155b8e3a6d531e0d8a463fa9f6890e", [] ], "WEB_FEATURES.yml": [ @@ -424725,7 +430867,7 @@ [] ], "block-with-overflowing-text-ref.html": [ - "8d9c430fcc7ff3cc44b62d444cdb2cbb80506f9b", + "ec5d871200087e7526ca78df5bf1d51a3e5c9572", [] ], "break-inside-avoid-child-ref.html": [ @@ -424748,76 +430890,88 @@ "c47b31e4d5a3a2121bf8191c1e612b5a5f2f1663", [] ], + "class-specificity-ref.html": [ + "5c882ada040ec700eda008e016d0a1827e31d368", + [] + ], + "clip-path-larger-than-border-box-on-child-of-named-element-ref.html": [ + "67d55eedf4872f828e2838c6f7c77d6d4d053b11", + [] + ], + "content-escapes-clip-with-abspos-child-ref.html": [ + "1e22d6f66d742b7a8c99b3ecb075356d2811b18b", + [] + ], "content-object-fit-fill-ref.html": [ - "b86e0a95a172bcc191f17d954b2cf6bd710a1fd1", + "10ef0d59319b3c32eaa304bd66879294a4ce2d45", [] ], "content-object-fit-none-ref.html": [ - "8bd63e9a88ed83da7c24dcdd6de24abb3dbca478", + "10338231b0171ec1280c54c49d6e0a369c6fb272", [] ], "content-smaller-than-box-size-ref.html": [ - "381a311cc4d76e93b04d11f4c0d5faa64bcf8f7f", + "19cd63d142758a0f5e6a30adb59ba4e8164c02e0", [] ], "content-visibility-auto-shared-element-ref.html": [ - "f4a34967ec066c67b5f8b486b7079411a9adb884", + "1fa42c5f383a94832a09c0efe27d1157276327fb", [] ], "content-with-child-with-transparent-background-ref.html": [ - "7b8c15b87f11993ae95529fe669bfb2a513ae833", + "250564b41c6e457b1b312e5ffbf23d17cda7f50b", [] ], "content-with-clip-ref.html": [ - "a322301686ff441dc203768db8881b813b227413", + "81fbabe3c533675b4e9d9467a1e3d5a70431a3c7", [] ], "content-with-clip-root-ref.html": [ - "f81a96370e84212417313078d795e58b6593beb3", + "deea590892917389ac373b707b2b44aa2b1c33dd", [] ], "content-with-inline-child-ref.html": [ - "4bb87f316f96070e8af0794db2d6b8dea2d743b2", + "fada94f14645dc38c67e2aadb7b15e4edbc68165", [] ], "content-with-object-view-box-ref.html": [ - "7aa2014397b5e0039f9eca40c16f904194fe8c4d", + "c1b316ea6b3eeed7a4db60a48195904020ab1141", [] ], "content-with-overflow-ref.html": [ - "a24e30ede964eddef1c996be734478150bfa919b", + "f6e7c4e6f44a45bf085fabb7520d34cb70883cc8", [] ], "content-with-overflow-zoomed-ref.html": [ - "a9d873957ac876d5a165de149febbb5b29cd3e0f", + "ae076d55787363d6690d5ec9947e7e8823feb56c", [] ], "content-with-transform-ref.html": [ - "568e040c1e221c4f92391e6466d71287931a1d60", + "8c2b65e63e78c202c77aee02c0797ef81c25881c", [] ], "content-with-transparent-background-ref.html": [ - "7349d131d7dfb0876eff9ccb65040675a6d2192a", + "5ec3d5c64c52e8225996092900462e7a83af6105", [] ], "css-tags-paint-order-ref.html": [ - "780d5fbd453e9fad21e59d4efb5f100df3dd3003", + "808195a557ddaddd9f38fa796b1ecdd2da3b1d2a", [] ], "css-tags-paint-order-with-entry-ref.html": [ - "e7f62c2346324fe36a2401225f78e244a57106d7", + "2c91853187d222b8ce995bebad85d54982504fa6", [] ], "css-tags-shared-element-ref.html": [ - "23fa74dd5e665f4b63322b13f24caf9be691c15b", + "c2c9a1dc5053e58a63f22980bde295fcbece7a70", [] ], "dialog-in-rtl-iframe-ref.html": [ - "44ed0947abcc467ad02c374238849f96c7df8ae0", + "fc6b4892a5a37dd323e7a0be4460b41fe6905849", [] ], "dialog-in-top-layer-during-transition-ref.html": [ - "41467678a31ab07b3ceb639ccf8ecee27761a45f", + "029b0e9f86f7043ff92d17071ceca7544649b985", [] ], "element-is-grouping-during-animation-ref.html": [ @@ -424829,7 +430983,7 @@ [] ], "element-with-overflow-ref.html": [ - "523c8616a6666ddfab4dcf3b02dced31523a92b5", + "698b32956b31634f8ddce8502633f91a6a4fc75d", [] ], "exit-transition-with-anonymous-layout-object-ref.html": [ @@ -424837,7 +430991,7 @@ [] ], "far-away-capture-ref.html": [ - "9e10b9b44e302a32f71c0fa7efac78eca9f0456a", + "5fadcc5f9c77c77dc03002bfe502ffb3553c0bb1", [] ], "fractional-box-ref.html": [ @@ -424853,7 +431007,7 @@ [] ], "fractional-translation-from-position-ref.html": [ - "0674b265ac92566737e4c0ab0e86e93c4313579e", + "9821593438ed3afe0afdfb0035ee375d790fa087", [] ], "fractional-translation-from-transform-ref.html": [ @@ -424869,23 +431023,47 @@ [] ], "hit-test-unpainted-element-ref.html": [ - "dce9f27d904d73fb3bc9925d0425ef5e484f516b", + "9d50894d1444973ceacbe4cb6003322e43e99191", [] ], "hit-test-unrelated-element-ref.html": [ - "bca532b22c6a777108fd7a1ea7b811a73f7cdb17", + "99cde99149e4945a4b0b8c5287dafc232ffcd807", + [] + ], + "iframe-and-main-frame-transition-new-main-new-iframe-ref.html": [ + "86bc2a4a36845d5b3d4b445a12f3ddb388163f8c", + [] + ], + "iframe-and-main-frame-transition-new-main-old-iframe-ref.html": [ + "baafea3656a9262dfeacf2527e29b47708ac6467", + [] + ], + "iframe-and-main-frame-transition-old-main-new-iframe-ref.html": [ + "7033cd9d21db5f2a15d64f57b3bf9d7524225804", + [] + ], + "iframe-and-main-frame-transition-old-main-old-iframe-ref.html": [ + "2824884c4fecae902aa722e5360a4b3431f15bbe", + [] + ], + "iframe-and-main-frame-transition-old-main-ref.html": [ + "9253bb5f21cf25b2bb269df3b6cee0a06e9994a5", + [] + ], + "iframe-and-main-frame-transition-with-name-on-iframe-ref.html": [ + "94bd3bdac373ad2e232001f127595aa7ef00b6b5", [] ], "iframe-new-has-scrollbar-ref.html": [ - "ea895e84848be70644dbb0b3b62b363d05d0319f", + "338f8a6f23e1708383e7717de5a8267227719ace", [] ], "iframe-old-has-scrollbar-ref.html": [ - "3bb9bdb88d27b10d7e421eaf32389380642b1d61", + "6d6556d51c49f68584a5b32d4d88b531ab57fa93", [] ], "iframe-transition-ref.html": [ - "49394f35f6c4f6c7d6c25e9f4fd61154a708904f", + "bf99b25f76b176520715a245ef3abf01258fdc5a", [] ], "inline-child-with-filter-ref.html": [ @@ -424893,7 +431071,11 @@ [] ], "inline-element-size-ref.html": [ - "177594c870ceb2fabcf309ba5a8ff7e7553ca7a5", + "ea791930e9bdf51a25125062b7da7cedafea1b95", + [] + ], + "inline-with-offset-from-containing-block-clipped-ref.html": [ + "2b6b56578c23a41c33484ddbd253859af3c02115", [] ], "inline-with-offset-from-containing-block-ref.html": [ @@ -424901,195 +431083,395 @@ [] ], "intrinsic-aspect-ratio-ref.html": [ - "4455ad6172ef93668ab239317a17e33e9b0cb35e", + "02d9cfeb8e6ac21efe244507d3971165c15b4668", [] ], "japanese-tag-ref.html": [ - "8c57dba6588244daa4d3ff8d5daa8a1204563df1", + "ac05756f050ed5afcc13f8e9e925978a558762d2", [] ], "massive-element-below-and-on-top-of-viewport-partially-onscreen-ref.html": [ - "507f9b8c0a14bc635d0f7399a08397d467f89261", + "e251196cbf8e2535e7df168e163c5de6fc0c9d46", [] ], "massive-element-below-viewport-offscreen-ref.html": [ - "05827eb196bef8f1d35aa489e73173a319946c17", + "ef26c46f0d9f685f2b3fd0b79d8913fe7f44cd90", [] ], "massive-element-below-viewport-partially-onscreen-ref.html": [ - "001c135f0a68ca6fbec1d5d90a04948d279cdd86", + "72861d37a09d408e16f183aacd2fe01ba5e31238", [] ], "massive-element-left-of-viewport-offscreen-ref.html": [ - "32e688bbdb6047e6d6e57f2b7bef93049d5a6638", + "3fb7a7a53038b7073f0f516e365fbf3533907d12", [] ], "massive-element-left-of-viewport-partially-onscreen-ref.html": [ - "8fa30505353ab092479bda263c04d54aa0e3f88e", + "aa15c1fb22ac25eb8be67ee3ca2324ba3cad3ddf", [] ], "massive-element-on-top-of-viewport-offscreen-ref.html": [ - "e8359077386bbc99bdf8cfd57b58446dd3e64838", + "697719507f8861253305d48167842114d31e1abf", [] ], "massive-element-on-top-of-viewport-partially-onscreen-ref.html": [ - "9c60e8bf1de309b17f27a4e42f2694f84ae531d3", + "31c9c4e1a6e03a62c0a3b72a6b76bc4c44300590", [] ], "massive-element-right-and-left-of-viewport-partially-onscreen-ref.html": [ - "3516741da0803b7ee0e8efc9049c92225a765b21", + "c7bdc7afee0a219a28a670b646c36bb850f99a53", [] ], "massive-element-right-of-viewport-offscreen-ref.html": [ - "f29d3ac6090c8f66740037c364d0829cfbf9a0da", + "ed554d4dfe0b2c4bb22d69ade801844f9507d268", [] ], "massive-element-right-of-viewport-partially-onscreen-ref.html": [ - "1df26bb375248b014906c54efb426f2cf4bf9035", + "5a50d7fabf8e7d6e1c3e350940838d084508db67", [] ], "modify-style-via-cssom-ref.html": [ - "dd93e0b498c3650812eb126fb6d7422a715a474f", + "503418c3dc647f141b63bdc601a137841942ed2e", [] ], "multiline-span-with-overflowing-text-and-box-decorations-ref.html": [ - "ca9efc52d6e412d2eb2ee3511b5f3845a36854b8", + "47edb8a3b030b44e783808182d2c79d53d994bd7", [] ], "named-element-with-fix-pos-child-ref.html": [ - "a161cd8fc9a6a78b4070eae00544de2f3ff7ca44", + "7d513e282df217e0299d39888ab02afb64b92717", [] ], + "names-are-tree-scoped-ref.html": [ + "62419b07ee148486917f96b7b1eb8ffdeae7c2ca", + [] + ], + "navigation": { + "at-rule-opt-in-auto-ref.html": [ + "be8cc501cf09a01105a8f0c89d8e47b91dd66c01", + [] + ], + "at-rule-opt-in-none-ref.html": [ + "59e3342daebb77a8e484add21626472c01b396ab", + [] + ], + "chromium-paint-holding-timeout-ref.html": [ + "90267e3a84a34157078d1ad890710ea8059a75da", + [] + ], + "navigation-auto-excludes-reload-ref.html": [ + "ed12194c3107880808952a165fe591c6e5fa490b", + [] + ], + "no-view-transition-with-cross-origin-redirect-ref.html": [ + "91f24f877bd679e62ecdb84017049ec2d13d9290", + [] + ], + "opt-in-removed-during-transition-ref.html": [ + "f2b0dbfd338ce0ff60b5d6e834c8c9942e55fbc7", + [] + ], + "pagereveal-finished-promise-ref.html": [ + "64aa26f6547f259a854e4766677d19205248c1b5", + [] + ], + "pagereveal-ready-promise-ref.html": [ + "0c1ed2765651a2173f85b61ed5876d9fb86bcc52", + [] + ], + "pagereveal-setup-transition-ref.html": [ + "cda9820d536796a4746292873248fb969f6f7e1f", + [] + ], + "pageswap-fired-before-old-state-capture-ref.html": [ + "bda333066a3f9a2192d2c507121ef472d1162412", + [] + ], + "prerender-removed-during-navigation-ref.html": [ + "cbcfd19d9505f4b69ae8c367e8a489a6ef729505", + [] + ], + "resources": { + "at-rule-opt-in-auto-with-types-mutable.html": [ + "ef4a540d0407540dfe57f46ef0cc31d6c0460049", + [] + ], + "at-rule-opt-in-auto-with-types.html": [ + "b30d3791d6e9e0306ebd24307a97d53886f48318", + [] + ], + "at-rule-opt-in-auto.html": [ + "e887d4b21075e82e936701408c2c652f009498af", + [] + ], + "at-rule-opt-in-none.html": [ + "bf5a73c73ee014ecf5777f77b9282d8f947f58af", + [] + ], + "chromium-paint-holding-timeout.html": [ + "3964199c54cd7230d517b2d676e1a4dbea9067b4", + [] + ], + "common.js": [ + "cbe023a3d9ed808dcab2bc9b3b1a769ca6ff68cc", + [] + ], + "opt-in-style.css": [ + "9aac2b4e85b4255236246fbfb89df8f17dc0f592", + [] + ], + "opt-out-style.css": [ + "f01d587ddadb28049f07ae8f40fa937c479a721b", + [] + ], + "outbound-before-render.html": [ + "0815c3b3d7604c6002323f504a129679723e5cce", + [] + ], + "render-blocking-stylesheet.py": [ + "15ae6aba6ff021eb8c463d3bb050ca5020a9fdef", + [] + ], + "root-and-nested-element-transition.html": [ + "c572ce9798bc52447afb5532a5f652d6443d1ceb", + [] + ], + "root-element-transition-iframe-inner-result.html": [ + "65f14843d9cd3ca15da328cbb854fbd5c7d4aec9", + [] + ], + "root-element-transition-iframe.html": [ + "7f008442f77ae2364b71f92b97b46a6f68ac8c3d", + [] + ], + "root-element-transition-no-opt-in.html": [ + "82d2bdc5597b6ac1a1287133b2a0ac4625aa6599", + [] + ], + "root-element-transition-opt-in-removed.html": [ + "83f5d76c163575a98ce99fb9a73da3f2c5429691", + [] + ], + "root-element-transition.html": [ + "af68ba0074243f836500193b3b58cfa4a131382a", + [] + ], + "transition-to-prerender.html": [ + "63f810a26368ab446b05c0562894b8e0590531ba", + [] + ] + }, + "root-and-nested-element-transition-ref.html": [ + "a0bb6180c4f8d95801605aa9eb1b570588f86e35", + [] + ], + "root-element-transition-iframe-ref.html": [ + "576689af320e98fa03bc15bfb7adfc4c7ee04a62", + [] + ], + "root-element-transition-iframe-with-startVT-on-main-ref.html": [ + "f350545c7f759516675831fe8565ce481a0bd5d8", + [] + ], + "root-element-transition-no-opt-in-ref.html": [ + "d38b8aa4cd7e3ae877b55b8b030131cc91926739", + [] + ], + "root-element-transition-ref.html": [ + "65f14843d9cd3ca15da328cbb854fbd5c7d4aec9", + [] + ], + "transition-to-prerender-ref.html": [ + "7df899fdca151dd273063323733c0c20fedb3bb3", + [] + ] + }, + "nested": { + "nested-ref-100.html": [ + "dde4f026c36a11a40aef594ccfdc89d6f573120b", + [] + ], + "nested-ref.html": [ + "d189a460c7cb5147b04367d4e56aac0ae751c6d5", + [] + ], + "resources": { + "compute-common.css": [ + "20337ccce5f3387e7e70e6fb219544369b74aa06", + [] + ], + "compute-test.js": [ + "b08b58287b0e8eb480e34f12ad38336009d55397", + [] + ] + } + }, "new-and-old-sizes-match-ref.html": [ - "b8c3b34c03a693c9f1e71a040a2176dd8dc5413d", + "79e89801391530b6fb074545a92db68493667f05", + [] + ], + "new-content-ancestor-clipped-2-ref.html": [ + "f37c9544be60183e8ae831c413330f34d4cfb757", + [] + ], + "new-content-ancestor-clipped-ref.html": [ + "caa99f280796f2ccae9b926f14f8355599f02add", [] ], "new-content-captures-clip-path-ref.html": [ - "1b28bbf29b2f4ada6718bffd8a091e34ee7a9993", + "a216bff8b049bac3ce549bf1f6c79392e0d851e5", [] ], "new-content-captures-different-size-ref.html": [ - "2a80cf556815b6480c14e6f1d2337c60d5f43883", + "62de5018a815736edd207e9c8698375f915eed33", [] ], "new-content-captures-opacity-ref.html": [ - "deea6d139bc106593089c9f620b9329b344ac441", + "615d414594c2422814ce043938c3fb7e6a8e2936", [] ], "new-content-captures-positioned-spans-ref.html": [ - "6d906fc6f1c7db141556d67ef097203a67925598", + "9d9cfa06bed76106dc14e60db82aee164b1d2824", [] ], "new-content-captures-root-ref.html": [ - "2f2e5e769406ffb2b5eb9909a59dc4bb6ebff6be", + "4b0cae3f8e742e26609fd5905d9e51a822631b11", [] ], "new-content-captures-spans-ref.html": [ - "b95233d71238233cbfe3ee59ae521164be893842", + "941ed432b26414ad5437a799d4deb2ea5e144061", + [] + ], + "new-content-changes-overflow-left-ref.html": [ + "e86e5197da9d365b931733d890052236f4275567", [] ], "new-content-changes-overflow-ref.html": [ - "5f75909e82acd7972bd6e68eb9ea4eb79e9eee1a", + "3f69ac695d972d9c9860c0e216f73421d0d9e628", [] ], "new-content-container-writing-modes-ref.html": [ - "34e36786f83ee680e8fdef4bfe15645d67587980", + "161e3876ac4379fd2e420e50ba4e20e9f63d4981", [] ], "new-content-element-writing-modes-ref.html": [ - "94280ae3affc4350e4100d6bd390fb860ffe1a5a", + "9ed3f5f681c4c86cb5397cc25d66f3dd8b68902f", + [] + ], + "new-content-flat-transform-ancestor-ref.html": [ + "8728d34ae49502881159ff16b7bdd497faca6283", [] ], "new-content-from-root-display-none-ref.html": [ - "e936a779c743ae8e0b5542ee064846ddb0749553", + "6c165d1b24415a791848788d2b3b2c08683f4902", [] ], "new-content-has-scrollbars-ref.html": [ - "eddd7330144b538455e5fa4a3609299dcb3c63c8", + "6ff0b8cbcf0b8f26295dd0f1cfab11f768ab512f", [] ], "new-content-is-empty-div-ref.html": [ - "c85028d3bd9f42c43d46a77c7c937b8cafde11b6", + "7492467a12077b3ba46a0f4992e50aebd5f048b3", [] ], "new-content-is-inline-ref.html": [ - "c75cfcc252ae25e2b5577243c3ed3662a4eba653", + "10098bec8efc7c4aeae58d039cb7fa32758081ec", [] ], "new-content-object-view-box-clip-path-ref.html": [ - "28e22b8ca2568a969545848281e18a0b4e8a6a99", + "1a17f0b8e06f1f4b877f9f0b59c96e1727d35acd", [] ], "new-content-object-view-box-clip-path-reference-ref.html": [ - "b1871141c2bac9511b104421789ffc5b66dd8e15", + "41b5c41db2ffef292e773879469e84ec76c3f67f", [] ], "new-content-object-view-box-overflow-clipped-ref.html": [ - "d6016c950e437f512571581ec916ac2b04d5c2e6", + "89d23319710d00a46f29da79b15976641a72e171", [] ], "new-content-object-view-box-overflow-ref.html": [ - "d6016c950e437f512571581ec916ac2b04d5c2e6", + "89d23319710d00a46f29da79b15976641a72e171", + [] + ], + "new-content-preserve-3d-ancestor-ref.html": [ + "c6c054c130be55d5886264979d0f2364901287ac", [] ], "new-content-scaling-ref.html": [ - "1ca35f5a425e2986a60d5a5489ecdd5adf274c30", + "729be2fcbf606723a4e3449bf3ffad97c8e6bf15", + [] + ], + "new-content-transform-position-fixed-ref.html": [ + "3c3a33d0b2ce23eeffc1dee733c12bf11e09cdb9", [] ], "new-element-on-start-ref.html": [ - "b3db1f2e190106b85543d920b1a35c644b76ca4e", + "8c096d1b10e42bdb9c7e5582affd225afdb6c9f1", [] ], "new-root-vertical-writing-mode-ref.html": [ - "f6b817d92bf89d6cd866b334dca605610979f90a", + "99ca705d00e3d6e9b1a5d26c1cf2477a2d8c9d7e", + [] + ], + "no-named-elements-ref.html": [ + "750fdf37303c4268c16993f3a813795365d518dd", + [] + ], + "no-painting-while-render-blocked-ref.html": [ + "8c7ab1bc5ffee13ff74e7bf33532145180b50e70", [] ], "no-root-capture-ref.html": [ - "98ac7c9de92d4db435cff824b6539ff693ca52f6", + "1fe68ad941e111f74aa5b71828c95050d6c33d44", + [] + ], + "no-white-flash-before-activation-ref.html": [ + "f661c07439839d6a8c003b1a33bf139013c2acec", [] ], "nothing-captured-ref.html": [ - "98ac7c9de92d4db435cff824b6539ff693ca52f6", + "1fe68ad941e111f74aa5b71828c95050d6c33d44", [] ], "object-view-box-ref.html": [ - "9ed1e503094cc4e283f5c6ae989ee36edbe3325c", + "744f77f81ecaf3873cefee3080c7846141055c05", [] ], "offscreen-element-modified-before-coming-onscreen-ref.html": [ - "171f999554057f72011e14db538437c81dbfd1a7", + "e1142fa5f65bd79e0205bf2bb23374dd24df07fe", [] ], "old-content-captures-clip-path-ref.html": [ - "0d9d498b6be0748cfaf919390fda399d507e12c1", + "2f02cf13d063a0ae6aa540bf27c6cc397f8f19c4", [] ], "old-content-captures-different-size-ref.html": [ - "4fbabd48f7c5696418d23516f2a95ec5af77ae53", + "52e9941416529a39a3e2bc3638b6ae5fa992f2af", [] ], "old-content-captures-opacity-ref.html": [ - "33f7f5b14aba8db3f22e1f735b5dcc494029c58c", + "fd48fb20e9d288388291b28beabb7b6e97ee6b99", [] ], "old-content-captures-root-ref.html": [ - "92bd70f6f4eb24096392289040d85aca2ae43742", + "ca4705f818461c3df509adaa295318fe36b86a80", [] ], "old-content-container-writing-modes-ref.html": [ - "be264399c86a6e9b182bb81e9f93431b6d7dbc56", + "b109c7c1ddeb128c2667847763ef71e77a7dd4a8", [] ], "old-content-element-writing-modes-ref.html": [ - "8c57dba6588244daa4d3ff8d5daa8a1204563df1", + "ac05756f050ed5afcc13f8e9e925978a558762d2", [] ], "old-content-has-scrollbars-ref.html": [ - "b349e80700d537185173b856020b454c24a9a52e", + "640777bf08d5b62bf11651063778ebcb6e0ec821", [] ], "old-content-is-empty-div-ref.html": [ - "b4b17ee780f0484e75d5eb51ce04fcd432a6cdb5", + "8144bfe43c44ff1fd557e9f81cb98fcbcc823147", [] ], "old-content-is-inline-ref.html": [ @@ -425097,47 +431479,67 @@ [] ], "old-content-object-view-box-clip-path-ref.html": [ - "28e22b8ca2568a969545848281e18a0b4e8a6a99", + "1a17f0b8e06f1f4b877f9f0b59c96e1727d35acd", [] ], "old-content-object-view-box-clip-path-reference-ref.html": [ - "b1871141c2bac9511b104421789ffc5b66dd8e15", + "41b5c41db2ffef292e773879469e84ec76c3f67f", [] ], "old-content-object-view-box-overflow-ref.html": [ - "d6016c950e437f512571581ec916ac2b04d5c2e6", + "89d23319710d00a46f29da79b15976641a72e171", [] ], "old-root-vertical-writing-mode-ref.html": [ - "bb4f2df0f8124d6f002a233c6af9872a74cc88eb", + "2927b468d08d452afc6a66267bf9786a6b00498e", + [] + ], + "paint-holding-in-iframe-ref.html": [ + "23852cf6a7cae7868ee19a52315be1f20c47ac84", + [] + ], + "pseudo-element-overflow-hidden-ref.html": [ + "02bcb5bb49c09ba151b10751ad31b9ebba91bdef", + [] + ], + "pseudo-element-preserve-3d-ref.html": [ + "1eefed24b3c0d10b2d073958a6da9963f793f53d", [] ], "pseudo-rendering-invalidation-ref.html": [ - "f622f94b5f5b07f26b500e8316e1f8c28b5eb900", + "6b3b493b6b243f1eca228151c67122db83eca951", + [] + ], + "pseudo-with-classes-ref.html": [ + "89b3a8a78efda6184ad62088c3b7595cc4f6d829", + [] + ], + "reset-state-after-scrolled-view-transition-ref.html": [ + "93cb9975d4c6889c383330048b5cf7c7d75e3b2e", [] ], "root-captured-as-different-tag-ref.html": [ - "92bd70f6f4eb24096392289040d85aca2ae43742", + "ca4705f818461c3df509adaa295318fe36b86a80", [] ], "root-scrollbar-with-fixed-background-ref.html": [ - "a4010b5f2f8c593f3389b838669e42d80c6fd1b1", + "bc2c5862bf534687e108600e70a8bc3d44dfed63", [] ], "root-style-change-during-animation-ref.html": [ - "c180c384f4e1dae61eef8b982420c79af39e65ab", + "33fbea00643c03e092f5412f6662a88672fa3f2c", [] ], "root-to-shared-animation-end-ref.html": [ - "24b50fa65e1b181881df71ae498ec931ad682103", + "d7d702e09a457a182e979fccc6d47e4142ba6df0", [] ], "root-to-shared-animation-incoming-ref.html": [ - "3075d2480ca426f78ff6528a350144c27d66a319", + "6044ba263618ff51dd198fd0c35b736a689b8172", [] ], "root-to-shared-animation-start-ref.html": [ - "d04ab3f76773f51c8991a4ffa14f79168efe53ff", + "8b777a2c8c476442de208fc797223824cb047701", [] ], "rotated-cat-off-top-edge-ref.html": [ @@ -425145,7 +431547,7 @@ [] ], "rtl-with-scrollbar-ref.html": [ - "c429136a2d21ec95f42ec75ef29ead03a5509166", + "dc9d6ae245c61d82f8515a94da8b60df9bc80b80", [] ], "scroller-child-abspos-ref.html": [ @@ -425169,23 +431571,27 @@ [] ], "set-universal-specificity-ref.html": [ - "4bf2164c7ae078cb48ea3eaf0881434e0f0945dd", + "cce8d5eec38f1889c8a4e793015ea15c778a6774", + [] + ], + "sibling-frames-transition-ref.html": [ + "437c730b9e9416e26995f929cef856c2386c57db", [] ], "snapshot-containing-block-absolute-ref.html": [ - "3d307ce3c7eaf0d7b218a5803ca2ea3603de0355", + "5f2e780c58f488d924b3043519c9711143de64e7", [] ], "snapshot-containing-block-includes-scrollbar-gutter-ref.html": [ - "8a74bd216450ef7ddf37f1819da7119e9eb48854", + "c219fb1edd4c24f29760aef7e18332f7362accf7", [] ], "snapshot-containing-block-static-ref.html": [ - "8ed60934cafe3970b4bd8e5ddcbc79818b10679b", + "0bff68efb23da1a7bf2189f8bcea4a936faeba94", [] ], "span-with-overflowing-text-and-box-decorations-ref.html": [ - "e0a75e730ffb134a797baa6847a14e59e8639fe7", + "b2479b60ad4d6e090bf80812ede8916a3a4ef5de", [] ], "span-with-overflowing-text-hidden-ref.html": [ @@ -425193,7 +431599,7 @@ [] ], "span-with-overflowing-text-ref.html": [ - "4ec4d4ccf856b2c786825bfe2c60fd35f6d804a6", + "ed8586811f842b2bb94ae19ea1439a4cda8a4ede", [] ], "support": { @@ -425222,8 +431628,12 @@ "e38cbb0ffeb8c0518bbfbede3b196e326014f78f", [] ], + "transformed-element-scroll-transform-ref.html": [ + "b6e89e28d5acabf6490adc5d5b6dc1e8d8985d6a", + [] + ], "transition-in-empty-iframe-ref.html": [ - "67476122859cd718e900e624b011984550517a6c", + "29e4c32e5b22b26d6d7036a45468f6424e36bdaf", [] ], "view-transition-name-is-backdrop-filter-root-ref.html": [ @@ -425235,15 +431645,27 @@ [] ], "view-transition-name-on-document-root-ref.html": [ - "cc0250bc59ea54d486ec6f93c744011b86bb5993", + "8b86e2a1611679e6141e3ebc74234921bb280db4", [] ], "view-transition-name-removed-mid-transition-ref.html": [ - "9ec14f60cdd04235e8689e34ebf522f72a344684", + "e86fa3f3e21e9a8df3a28ba9ca60332a4d1b6ab7", + [] + ], + "view-transition-types-matches-ref.html": [ + "7f697364c29f30dc18f0a94310a58fc43a409ea1", + [] + ], + "view-transition-types-one-green-square-ref.html": [ + "4e66b92bc49d10857323c2b1f39142f3f3eec008", + [] + ], + "view-transition-types-reserved-ref.html": [ + "774500481fe9c5108d7c54066ebf34b404a47072", [] ], "web-animations-api-ref.html": [ - "ab66e7d16df6acf73a4a4b88bd74a727876c966c", + "d71d6e1375e01a3decfc7e74c9f3165ce9c0af1a", [] ], "writing-mode-container-resize-ref.html": [ @@ -425251,6 +431673,134 @@ [] ] }, + "css-viewport": { + "META.yml": [ + "0c4122a8a54873c99c996df5cdb0e5035c9af56b", + [] + ], + "width-ref.html": [ + "b1b5e1156720cd0a63186ac25ce25731b046e4e9", + [] + ], + "zoom": { + "WEB_FEATURES.yml": [ + "7e5ac576a42213696b37d679d2e3c2c19f944b52", + [] + ], + "background-image-ref.html": [ + "6fe548f3435a61b3d34ecd1fa9be538224b3d28e", + [] + ], + "basic-ref.html": [ + "5de90caf7f0c72041334349b7c4b1044d373bc22", + [] + ], + "font-size-ref.html": [ + "30eaa4aeb9fcae4e42ca2061358bd976e9144eee", + [] + ], + "green-square-100px.html": [ + "6677176230e33cd39424ee3dc8bc9c0af321774c", + [] + ], + "line-height-ref.html": [ + "a34093cce754948504f9bb076926efb679537dcb", + [] + ], + "reference": { + "border-spacing-ref.html": [ + "c5b18cc3c37a9513456d594ba13e0618ebbb9f53", + [] + ], + "container-queries-ref.html": [ + "e9d93d39e72cb1a22206082fb73de6e4fa1f1430", + [] + ], + "iframe-zoom-nested-ref.html": [ + "fcdc16b1fb784f829bd1d964f04987737abfe02f", + [] + ], + "iframe-zoom-ref.html": [ + "f482d29ebf2900dad11ed87f40bff5edff270b19", + [] + ], + "letter-spacing-ref.html": [ + "59df4318320497bf6a9b32318f2c672e7eafd091", + [] + ], + "list-style-image-ref.html": [ + "c9f5f53b24dd194734448c147c347e48cad88ee2", + [] + ], + "stroke-ref.html": [ + "75742b1dc34e522a202bdedf7e4e66d472edc922", + [] + ], + "text-indent-ref.html": [ + "7ec1f57c7b46a930b05d26f222b0f2d1246a9ace", + [] + ], + "text-shadow-ref.html": [ + "8341822f61048dbeb37b09607f8c0e36b9f144b9", + [] + ], + "text-stroke-width-ref.html": [ + "1fb1b9c08861287ce2957869af953c756b6405d2", + [] + ], + "text-underline-offset-ref.html": [ + "a60d46a6e920c553fb78af398b0d2109942c50cd", + [] + ], + "word-spacing-ref.html": [ + "f2f59c36decb1235144846478ab3d6a3e4dae2da", + [] + ] + }, + "relative-units-from-parent-ref.html": [ + "4e7456ce71821e987231769c21f87b01aa6c2678", + [] + ], + "resources": { + "iframe_content.html": [ + "58c4d03a466e2bb045da142e354c565ec122b502", + [] + ], + "leaf.html": [ + "21e75b62768e660ad60a004b411d71821ddcb014", + [] + ], + "nested-iframe-no-zoom.html": [ + "60b1fd648155eb1188ceb4595f79bca14a45660d", + [] + ], + "nested-iframe-with-zoom.html": [ + "e7de64aafb769e106885ea2b4e01fb75331c3e68", + [] + ], + "nested-iframe.html": [ + "f48d230e13d7833ec204ec2382f5a2deb927da1b", + [] + ] + }, + "svg-path-ref.html": [ + "29f4d3bbff481991354be360948e92334f6043dd", + [] + ], + "svg-path-simple-ref.html": [ + "8443768cc74edb18bd75812a2b6383df2fb83594", + [] + ], + "svg-ref.html": [ + "10bf2decaa74ae0108c86d5b97ad0480f85bf307", + [] + ], + "svg-viewBox-ref.html": [ + "b58eb47a23c4a0531e6ec6f690cebbd2dfb46afc", + [] + ] + } + }, "css-will-change": { "META.yml": [ "8d265f24986c7af2b08a26741bbfa56f321bfbb3", @@ -427790,6 +434340,10 @@ "b45332345902c6197f02a8181f737e1e4ab7cc81", [] ], + "CSSStyleSheet-constructable-insertRule-base-uri-ref.html": [ + "2696593a45acdb27bf1cdeea26f95ccd491409dd", + [] + ], "HTMLLinkElement-disabled-alternate-ref.html": [ "5d87bfdaf5b0533f2ea7088a870ca45474d065f4", [] @@ -427798,6 +434352,10 @@ "3250801f64b5d6b4d430083bdc06c09aa0844370", [] ], + "WEB_FEATURES.yml": [ + "def314c45c7988cd00180f6687d6fc296ded7aad", + [] + ], "insertRule-from-script-ref.html": [ "2fa45526a66565f86832f843ec477fe76e496775", [] @@ -428028,6 +434586,10 @@ "a6644945910fc83ca079c93507b21117b91de9c3", [] ], + "WEB_FEATURES.yml": [ + "d5352fb4a11feeec4fc0390130ccbfe2fd51a632", + [] + ], "add-background-attachment-fixed-during-smooth-scroll-ref.html": [ "8bcbf4110267dca94150e28c61fdb1783b73df08", [] @@ -428060,6 +434622,10 @@ "matchMedia.js": [ "f8947e0472f489ca1a98a9e231b17e7d8ce6585e", [] + ], + "simultaneousScrollIntoViews.js": [ + "f3d02d2598d2624fc602e1a49b6afcbbb24017ed", + [] ] }, "scrollTop-display-change-ref.html": [ @@ -428074,6 +434640,10 @@ "c8a783980f8a36216f282f5873b9e161286ab3ac", [] ], + "smooth-scrollIntoView-with-smooth-fragment-scroll-iframe.html": [ + "26dbdd2053ae62efcb7710eecc8dc270119ffe00", + [] + ], "support": { "1x1-green.png": [ "b98ca0ba0a03c580ac339e4a3653539cfa8edc71", @@ -428168,7 +434738,7 @@ [] ], "scroll-behavior.js": [ - "0a0968e025bd8604c0765352d3a2e8b3cc1233aa", + "b22ebf8c21f7216507988bb85df4cf4e09ec7698", [] ], "square-purple.png": [ @@ -428280,6 +434850,32 @@ "930b762b01a1a75e5b5ab4fb18dedd5939618fe1", [] ], + "WEB_FEATURES.yml": [ + "a882be3079a80eb51af07f4fb00c5f915192354e", + [] + ], + "animation": { + "WEB_FEATURES.yml": [ + "cd7e6695d4de7ff1c83fa704e84ce272cbcc28c2", + [] + ] + }, + "backdrop-filter-backdrop-root-clip-path-ref.html": [ + "08a2ad4fc52f0bdad5d3cc54d489e8987bf912b0", + [] + ], + "backdrop-filter-backdrop-root-filter-ref.html": [ + "ffa4dfcf0e0e308f9910c8c501ede43e78b9b382", + [] + ], + "backdrop-filter-backdrop-root-opacity-ref.html": [ + "76d4854df6c149dd0b59ca900a8e89102a37666f", + [] + ], + "backdrop-filter-backdrop-root-ref.html": [ + "934e08acb9a01f59157653687a6daadd3d50c22c", + [] + ], "backdrop-filter-basic-background-color-ref.html": [ "4997007f0bf858986b8f0fbbe8348153cfee1dd6", [] @@ -428324,10 +434920,6 @@ "38a8c8b253a9302f230fe5d4b073eac0d9a38df6", [] ], - "backdrop-filter-isolation-ref.html": [ - "fc2bccc36c1143b194c09bed7a3ba566fcca46f6", - [] - ], "backdrop-filter-non-isolation-ref.html": [ "229d6b4faadad52ddae75b1ad92e5600e588df67", [] @@ -428392,6 +434984,10 @@ "82b907334fd71791cd2f6530e2e85169e29afa41", [] ], + "blur-text-ref.html": [ + "3f57da1f706696789525adf24c6a9519850cd9ea", + [] + ], "css-backdrop-filters-animation-blur-ref.html": [ "643d084cecde6353a993013eaba93455bd9bd899", [] @@ -428636,11 +435232,45 @@ "d281f2a852ed802161815b9c88ac82c5d60caace", [] ], + "parsing": { + "WEB_FEATURES.yml": [ + "cd7e6695d4de7ff1c83fa704e84ce272cbcc28c2", + [] + ] + }, "reference": { + "backdrop-filter-basic-blur-ref.html": [ + "20775bc22f3da482e0f14985d65ebffcbbd2ca12", + [] + ], + "backdrop-filter-boundary-ref.html": [ + "6cf03dde8c56c5c8e5b27623ea211ba8e6d2ad80", + [] + ], + "backdrop-filter-clip-rect-2-ref.html": [ + "f12e88515fe9d3d845599273054803b7f782dd5a", + [] + ], + "backdrop-filter-edge-clipping-2-ref.html": [ + "5d035cb195af99d415dcfdd42448875fc07f4dba", + [] + ], + "backdrop-filter-edge-mirror-ref.html": [ + "4c1dc985082d3fd18667da09f6ceb1f7e9bb5107", + [] + ], + "backdrop-filter-edge-pixels-2-ref.html": [ + "bb482e67ffae21bd339b9955c522f168c7830aeb", + [] + ], "backdrop-filter-plus-will-change-opacity-ref.html": [ "56c6243809bef53423ff18d4b70a8597795cacec", [] ], + "backdrop-filter-svg-blur-ref.html": [ + "f9bcb1c22d9006af5605d031fd545738d7f5f1bf", + [] + ], "backdrop-filter-svg-ref.html": [ "3d5853ac6698ee9dafba37a825f3dc4e2d07b64e", [] @@ -428851,6 +435481,10 @@ ] }, "resources": { + "backdrop-filter-backdrop-root.css": [ + "635e497cdfc8acaf8f254ba1d77b21246b0be89d", + [] + ], "reference.png": [ "68641b76771abf086dc213b353ac2088fffb931a", [] @@ -428930,7 +435564,7 @@ [] ], "hueRotate.svg": [ - "ed294041e156d0087cd551aa593846bb3ec136fa", + "0ddcb37d70dd68257078d10950f4e4f8680be267", [] ], "import-green.css": [ @@ -428973,6 +435607,10 @@ "84141028020b7e8cdf2412acbca3c799ba50a534", [] ], + "simulate-backdrop-blur.js": [ + "20f2cd55986f2ba7a57a8793a3fd2b18f6a301e0", + [] + ], "square-purple.png": [ "0f522d78728417b0f74b694e2e47cd41c00359d1", [] @@ -429082,6 +435720,14 @@ "f277097263e7acf6f2e7b40fa810231c61b00e63", [] ], + "WEB_FEATURES.yml": [ + "88f1510e1b4670cce079a4b48a62cd723693f095", + [] + ], + "prefers-color-scheme-svg-as-image-ref.html": [ + "012513ef9fafbd967b317f96c33492e049c6aeb7", + [] + ], "prefers-color-scheme-svg-image-normal-ref.html": [ "ef7fa1b366d3a6b9a5a578c542fb864238b55859", [] @@ -429154,6 +435800,10 @@ "20835b48397f136a30b82a62654d389cad326315", [] ], + "WEB_FEATURES.yml": [ + "0a436801cb7fe8709c444d00a70288866a3055da", + [] + ], "animation": { "reftests": { "offset-path-path-interpolation-ref.html": [ @@ -429346,6 +435996,10 @@ "1c742650915aa2b8c23f883a9f765cf58eb15077", [] ], + "offset-path-shape-shape-001-ref.html": [ + "b1737a27df59389b43cac4d7cb946ab952c50a24", + [] + ], "offset-path-shape-xywh-001-ref.html": [ "a7fd10c76e74720813bd2b74a378f1da76d84113", [] @@ -429404,50 +436058,6 @@ "305aa2fce2f490ef161c803558cc7a17bf7aa117", [] ], - "fixedpos-001-print-ref.html": [ - "3d66305db0e7497f76dd6aa5a42217eb0931a87a", - [] - ], - "fixedpos-002-print-ref.html": [ - "3d66305db0e7497f76dd6aa5a42217eb0931a87a", - [] - ], - "fixedpos-003-print-ref.html": [ - "3d66305db0e7497f76dd6aa5a42217eb0931a87a", - [] - ], - "fixedpos-004-print-ref.html": [ - "3e3473bcb8e41ce1c4ac6aaf0006b25622b24bc3", - [] - ], - "fixedpos-005-print-ref.html": [ - "e692ff8db3764e05601348acfc2d4ce8314f41b5", - [] - ], - "fixedpos-006-print-ref.html": [ - "b03e1d78d003f33d1ad7810bcacf9cf407b95acb", - [] - ], - "fixedpos-007-print-ref.html": [ - "f576c9377153c3e48ce58d8fcd5428da0d705b23", - [] - ], - "fixedpos-008-print-ref.html": [ - "6ed2528115ae3a5634df6a2968a71fcd81424471", - [] - ], - "fixedpos-with-abspos-with-link-print-ref.html": [ - "000c05350b54885c47ea74a7336e02ed857d55ea", - [] - ], - "fixedpos-with-iframe-print-ref.html": [ - "5c1714045083dfc22272b0522273e7a7235cde6f", - [] - ], - "fixedpos-with-link-with-inline-child-print-ref.html": [ - "f12d31acd9d077a24a4ba47bcdbb5b2a3029faf3", - [] - ], "fragmented-inline-block-002-print-ref.html": [ "dcfa3a1385628a90cb2d1be17e8bf6da09cde20e", [] @@ -429456,82 +436066,6 @@ "fb5255eddb1cdbdc1b9b610a7813b977d822b7b9", [] ], - "media-queries-001-print-ref.html": [ - "35af04dc3c45b06a092d11569227a9a7014c2068", - [] - ], - "media-queries-003-print-ref.html": [ - "99642ca567459a8eb0f5b40e04805c073b31dd9d", - [] - ], - "monolithic-overflow-001-print-ref.html": [ - "9edc5d9ed0d97d40f734396ff54fe6fc69b0492b", - [] - ], - "monolithic-overflow-002-print-ref.html": [ - "5478362b066fe462959f5610b92c4415afb74fc4", - [] - ], - "monolithic-overflow-012-print-ref.html": [ - "e47ca880f93196bd9c1a488ed883a46839744a1c", - [] - ], - "monolithic-overflow-013-print-ref.html": [ - "e47ca880f93196bd9c1a488ed883a46839744a1c", - [] - ], - "monolithic-overflow-014-print-ref.html": [ - "a74e0d19a558a6c663b632ad88fb888ca42c707a", - [] - ], - "monolithic-overflow-015-print-ref.html": [ - "db44a3ee21e57cf4c0c11cf081a516ca150fcba8", - [] - ], - "monolithic-overflow-016-print-ref.html": [ - "a675fb966c56aa5db37731e382a54675dcb7cb20", - [] - ], - "monolithic-overflow-017-print-ref.html": [ - "45f839787e03f286e1cdca0a887a48297ea03294", - [] - ], - "monolithic-overflow-018-print-ref.html": [ - "cf31737d6c3f750524ad1c291281f6fcb777f786", - [] - ], - "monolithic-overflow-019-print-ref.html": [ - "f37740ae7e606b2f8acce89f4210bdd961c11edd", - [] - ], - "monolithic-overflow-020-print-ref.html": [ - "528c4980de590bc48c3017b246052b561f170bbd", - [] - ], - "monolithic-overflow-021-print-ref.html": [ - "112b1ebdccf07881e49c9420cc0f214861126d30", - [] - ], - "monolithic-overflow-022-print-ref.html": [ - "64572dd6392d79e6bda89e64f8e8f58e08898dc0", - [] - ], - "monolithic-overflow-023-print-ref.html": [ - "bdc4eb1ab0e14cfe65cce3eaf080d0b46029bd9d", - [] - ], - "monolithic-overflow-024-print-ref.html": [ - "fc964fde32d70e035633c519bb4fad0377f498e1", - [] - ], - "monolithic-overflow-025-print-ref.html": [ - "edbb9ac011aa85d161e88f4beace4955cb1d23d2", - [] - ], - "monolithic-overflow-026-print-ref.html": [ - "b543a58248705b8615ed8b11a51485e4f58c4801", - [] - ], "negative-overflow-print-ref.html": [ "64786375f7e316b045c73c3d6e4b72e691a5fdc8", [] @@ -429540,94 +436074,6 @@ "1fc00e7e39cd7ed8766df397429c5fef675e244e", [] ], - "page-margin-001-print-ref.html": [ - "12ebd76dc91cc2fe9d8991a758085e29eab4d5ec", - [] - ], - "page-margin-002-print-ref.html": [ - "2b56504855863876c308673fa852b41952cc09df", - [] - ], - "page-margin-003-print-ref.html": [ - "52bf73609089087e0310c8a5d0453f88be9d3617", - [] - ], - "page-margin-004-print-ref.html": [ - "24549d4954228c1e48e230fcf4981eeadd4b5d9c", - [] - ], - "page-margin-005-print-ref.html": [ - "bd1829be383a7cbd7c6b134fc6efb6517520731f", - [] - ], - "page-margin-006-print-ref.html": [ - "fe7a2c66db21b005464b89a5436894c67b95ad58", - [] - ], - "page-name-001-print-ref.html": [ - "69c5c37b5a3cc4ed47fab1f8105e5f2351e2d07b", - [] - ], - "page-name-002-print-ref.html": [ - "17ecc93e57aee6910a524e3fa6b14ecc026f9b52", - [] - ], - "page-name-003-print-ref.html": [ - "52ea6bfffcbf187acdeeeacdf960896a2d695986", - [] - ], - "page-name-and-break-print-ref.html": [ - "e3f73e41e2ebee99ac6777862a0154bfe1ccd7f5", - [] - ], - "page-size-001-print-ref.html": [ - "b016d8949fda42e134adc48f877e62d0e496be79", - [] - ], - "page-size-002-print-ref.html": [ - "78a164694365e5658edb47629868763092865c1b", - [] - ], - "page-size-003-print-ref.html": [ - "38ea1508781e6313e9102bf4c307f91b290df4c4", - [] - ], - "page-size-004-print-ref.html": [ - "0468a745b23855dade0883fd55d8a366e9a621a9", - [] - ], - "page-size-005-print-ref.html": [ - "c2e07daa295c7d0c3337506c4f7dbf817259bfaa", - [] - ], - "page-size-006-print-ref.html": [ - "7167da2ac2681d24dddcf991c3d1c541db2f6788", - [] - ], - "page-size-007-print-ref.html": [ - "9498e2c17b24f3b3f9308f9be6f87e2991d536f6", - [] - ], - "page-size-008-print-ref.html": [ - "f50ad3531e4be209c7858adc238c9d24cc767672", - [] - ], - "page-size-009-print-ref.html": [ - "86ffa278c9306e5a8ddcb8eeb02147dc01c7a266", - [] - ], - "page-size-010-print-ref.html": [ - "27cbe4435c21119102f33aa7fb0fc010600c5b04", - [] - ], - "page-size-011-print-ref.html": [ - "945f105ef470b0e78a92828dc54b651bce7abf7b", - [] - ], - "page-visibility-hidden-001-print-ref.html": [ - "fd519c85525f1e65ea766e8e728843ade9ec062a", - [] - ], "paused-animations-print-ref.html": [ "c22ecd174585100fd5faae8402f5a6e141b8264e", [] @@ -429636,54 +436082,6 @@ "07107d1db7845f9d2186b558753818444d410318", [] ], - "reference": { - "blank-print-ref.html": [ - "ad73420cdb97b50d1b7613a20e5f9d37885c619a", - [] - ], - "filled-green-100px-square-print-ref.html": [ - "d4834d1358a6434664996c635e7b8ee1e51f7628", - [] - ], - "monolithic-overflow-4-pages-print-ref.html": [ - "c115782d6ad862870235953e56474e7eae4902bc", - [] - ] - }, - "remote-origin-iframe-print-ref.html": [ - "f632519cd6e172bb4bc2c903db2b89bddb68273a", - [] - ], - "resources": { - "iframe-with-abspos.html": [ - "27de3aad5e05caa1898f744c9e6646a467e74e32", - [] - ], - "mq-frame-100px.html": [ - "ed823c09e89635da4933a941850265c2eb168e5d", - [] - ] - }, - "subpixel-page-size-001-print-ref.html": [ - "cf59f2be374bd6f41913a107b70d41a18cc0e225", - [] - ], - "subpixel-page-size-002-print-ref.html": [ - "4ed4bdb5ff3920e230c083538d062cbd47a24c8a", - [] - ], - "transform-001-print-ref.html": [ - "45c3abf1810a55dc760058bf5fcc3064f3bac188", - [] - ], - "transform-002-print-ref.html": [ - "7204e1d65712ce4e4b8680184b976b8982b6a981", - [] - ], - "transform-003-print-ref.html": [ - "766c415a1be21e6ebf9022a0826a1e865688fcb8", - [] - ], "transition-in-media-print-ref.html": [ "2f25c06131e9372512e23ab9ff8428c594f74391", [] @@ -429780,6 +436178,10 @@ "8e506d671d4b1e741d3450bd66603edbb3de9f30", [] ], + "WEB_FEATURES.yml": [ + "ed4b7175a720ad86651345776d5a76eb2e7aa580", + [] + ], "attribute-selectors": { "attribute-case": { "resources": { @@ -429890,6 +436292,10 @@ "6ab36318796dfebc78b62b258e261282fc6c9b98", [] ], + "has-display-none-checked-ref.html": [ + "6e855f52caf235d3c8aa714aecb0818279b46809", + [] + ], "has-style-sharing-001-ref.html": [ "6013cb47d3f4ed5c490bca27ee017aba0cf1afeb", [] @@ -429918,6 +436324,38 @@ "0f26fb2987e0dbc25573f53c5c37d8676f7db8ec", [] ], + "has-style-sharing-pseudo-001-ref.html": [ + "c45db87fa321ffd68e0cec1f3c4c07d141f1b3c9", + [] + ], + "has-style-sharing-pseudo-002-ref.html": [ + "a8138c257265bfd0f7a66ddc7076133ac0307868", + [] + ], + "has-style-sharing-pseudo-003-ref.html": [ + "a9b8e248d69b49a8384279aee653eceaaf482715", + [] + ], + "has-style-sharing-pseudo-004-ref.html": [ + "0d97e1d1c2fbcfda33eeffac68597e62862daf3a", + [] + ], + "has-style-sharing-pseudo-005-ref.html": [ + "97c2bf2ade16862b795e4eb84a14934b59cb672a", + [] + ], + "has-style-sharing-pseudo-006-ref.html": [ + "d052141d8ede8c87993e0f02d1181d32b88a4cec", + [] + ], + "has-style-sharing-pseudo-007-ref.html": [ + "24f4502b786c071cacfa92702db5326918052cf6", + [] + ], + "has-style-sharing-pseudo-008-ref.html": [ + "ad293bab59eff620f595b4b1a3e471467082b8a3", + [] + ], "has-visited-ref.html": [ "3f54e2e3914f62a81c3199bbe3d8c0339b9c2ba8", [] @@ -429937,6 +436375,10 @@ ] }, "invalidation": { + "WEB_FEATURES.yml": [ + "33e80ad651e8a8fe9f51c48cd39fdd42a335a9a3", + [] + ], "any-link-attribute-removal-ref.html": [ "b5407429be803d9b774c4ca0108318fbd6e5134f", [] @@ -430058,6 +436500,12 @@ "c8243ac73199435f3a7dc0da0bd839fed9a77a14", [] ], + "media": { + "WEB_FEATURES.yml": [ + "4cd0fc2726292091a0f7f98f47934afc1578b60b", + [] + ] + }, "not-links-ref.html": [ "1b2515a5cd1ec257fa8ebda2041699f5d4d09230", [] @@ -430238,6 +436686,12 @@ ] } }, + "parsing": { + "WEB_FEATURES.yml": [ + "261019c003df1d48ce35e3edb41fbba270f2be0d", + [] + ] + }, "remove-hovered-element-ref.html": [ "9527a465ea64cb106704baf3e45647d97239ef5b", [] @@ -430310,6 +436764,10 @@ "703cc99bb863b7a1bb79dd6a7a218308892c66ca", [] ], + "user-invalid-form-submission-invalidation-ref.html": [ + "1d1933b827a7d9b37543c4a7f29241d40d9243bd", + [] + ], "visited-inheritance-ref.html": [ "64300b13f4291f416eac17f70ff62e2febf604fe", [] @@ -430393,7 +436851,7 @@ [] ], "color-testcommon.js": [ - "44ca0bbb33c9e9571415c14180372ca0b96780a6", + "060f251f0c1c1ff17e4093c6e9e98cb589cda301", [] ], "computed-testcommon.js": [ @@ -430429,7 +436887,7 @@ [] ], "interpolation-testcommon.js": [ - "115067465feed31358f6d417e0208e3663589113", + "211018ca053adfe4f03ad70bf31c060b8bfdb0b1", [] ], "numeric-testcommon.js": [ @@ -430578,22 +437036,6 @@ "e7775276038f307b7cdb0a75d19ee24f67619c2a", [] ] - }, - "zoom": { - "tentative": { - "background-image-ref.html": [ - "6fe548f3435a61b3d34ecd1fa9be538224b3d28e", - [] - ], - "basic-ref.html": [ - "5de90caf7f0c72041334349b7c4b1044d373bc22", - [] - ], - "green-square-100px.html": [ - "6677176230e33cd39424ee3dc8bc9c0af321774c", - [] - ] - } } }, "custom-elements": { @@ -430602,13 +437044,35 @@ [] ], "WEB_FEATURES.yml": [ - "37708a919e550d0138374fd2b25b34baddbbb0e5", + "e77a8695bdd8f4782ba02a1a039597d300965601", [] ], + "custom-element-registry": { + "WEB_FEATURES.yml": [ + "c8486615c1e03c1b70d9f22ddbfe2f95b617fd0a", + [] + ] + }, "form-associated": { "ElementInternals-reportValidity-bubble-notref.html": [ "dda233296569d8ec855855434a4947d8a847a2c6", [] + ], + "WEB_FEATURES.yml": [ + "e40f6e12ae43b8399cf2f67824609c9050460812", + [] + ] + }, + "htmlconstructor": { + "WEB_FEATURES.yml": [ + "6645507d4b305e5cb34b94cab17ddfc34fc01441", + [] + ] + }, + "parser": { + "WEB_FEATURES.yml": [ + "3f84f6e84060c61e59e596aaa2e84d2c1e10891e", + [] ] }, "pseudo-class-defined-print-ref.html": [ @@ -430616,6 +437080,16 @@ [] ], "reactions": { + "WEB_FEATURES.yml": [ + "fe4958dd49c703e6dd71cb9720aa70b36e49427c", + [] + ], + "customized-builtins": { + "WEB_FEATURES.yml": [ + "2349d9ad429becd3814f746a84c600ae204bcdbe", + [] + ] + }, "resources": { "reactions.js": [ "0e4b94e02a911f3841b46ee3b283547997f81658", @@ -430642,20 +437116,22 @@ ] }, "state": { - "tentative": { - "README.md": [ - "b11784bd07e689b16b316cefb7a9cb03ba8fc56c", - [] - ] - } + "META.yml": [ + "df335b339e1324d8c36939df30c8506efa6aae0a", + [] + ], + "README.md": [ + "4104881e0392bf7947f5ae710d577e9de6b45314", + [] + ] + }, + "upgrading": { + "WEB_FEATURES.yml": [ + "3c5cfdc2ea2d3c8167ecfe99eb5b2c3b005d6e53", + [] + ] } }, - "custom-state-pseudo-class": { - "META.yml": [ - "ee34d8b900423cdc4de0876f4909c528b835dad6", - [] - ] - }, "density-size-correction": { "density-corrected-image-svg-aspect-ratio-ref.html": [ "fa13136876c88b8e3b32d68c2c0155862151c51b", @@ -430752,6 +437228,10 @@ "META.yml": [ "57ba808a2e4b1f787988967817391d9ecc397418", [] + ], + "__dir__.ini": [ + "79ef6f271a7643bd2280c6e210a573cf84ff3526", + [] ] }, "device-memory": { @@ -430760,9 +437240,39 @@ [] ] }, + "device-posture": { + "META.yml": [ + "d4dc2c24e6b4c406d513c0426c0454b3e04a00b2", + [] + ], + "README.md": [ + "60559c1f72bdaccdc911b191857e621792034cf6", + [] + ], + "WEB_FEATURES.yml": [ + "7bafe10430041b2dfe1c5fab249a07d699e12823", + [] + ] + }, + "digital-credentials": { + "META.yml": [ + "fc8f6a62cda5062676e1fb27324739c17ac0f91e", + [] + ], + "support": { + "helper.js": [ + "8fff82745172154972dcda4c3c6cb98d4a5af5e1", + [] + ], + "iframe.html": [ + "74733d82ec6533cbd0c6da4af1e88af61413e868", + [] + ] + } + }, "direct-sockets": { "META.yml": [ - "85c05e8c834847aa6a1d5aa1f1faa8c60a7ea9ca", + "ace03410a2394cd404607607daa070ae5f00915f", [] ], "README.md": [ @@ -430770,11 +437280,15 @@ [] ], "disabled-by-permissions-policy.https.sub.html.headers": [ - "ba6f09f55b393880aadf79a41d9220313ed294c8", + "8ed57bbc951b7053545bcca83edc6b22c7f80f73", [] ], - "disabled-by-permissions-policy.js": [ - "a27d1ddf497a7fa0ccd8ecd40b94732a831da97c", + "tcp_socket.https.html.headers": [ + "b20aae031ea97f6302d5d3150a6c31d8aa289bcb", + [] + ], + "udp_socket.https.html.headers": [ + "b20aae031ea97f6302d5d3150a6c31d8aa289bcb", [] ] }, @@ -430809,7 +437323,7 @@ [] ], "pywebsocket3.rst": [ - "af768d6b354600b32ed1d01463bd1724520c1fc8", + "3f742958b3aab511873f8a6dc3be46fcd74a25a4", [] ] }, @@ -430900,7 +437414,7 @@ [] ], "requirements.txt": [ - "d8fb98888fd7139ff30f50cbbcbd0d042d89f91f", + "7affe5ec629cfb7c215cb7713145983aafd2616a", [] ], "reviewing-tests": { @@ -430921,7 +437435,7 @@ [] ], "reverting.md": [ - "d374f0558e3e3d539d47c3d5373986838ffdf6e1", + "a45b86a969cfebec875cac51fd2ca201a726f26c", [] ] }, @@ -430935,7 +437449,7 @@ [] ], "chrome.md": [ - "aca93ea2e590c6dbfe6f56618364fbb42cba636e", + "a3ccd95768fdbc160af99bc647f1023a3dbc5ddc", [] ], "chrome_android.md": [ @@ -430955,7 +437469,7 @@ [] ], "from-local-system.md": [ - "f40f8e5ece9b0bc677e49ad6bb269e118c0f1eed", + "0d524ea356ae707bb02dddd0aa82b0d02e210c53", [] ], "from-web.md": [ @@ -430993,7 +437507,7 @@ [] ], "assumptions.md": [ - "5afa41612120ff0feec19b01102e8cd8128c2652", + "9a7bf8b4e4f7328655927ede4efe7ffffe752366", [] ], "channels.md": [ @@ -431013,7 +437527,7 @@ [] ], "file-names.md": [ - "96296c4ff69934a77581a50c5cf7299feadbb838", + "5336bfb528cec59ea3ce1fe78540470980969d0c", [] ], "general-guidelines.md": [ @@ -431095,11 +437609,11 @@ [] ], "testdriver.md": [ - "73af3bb3c8dd72fc283cdc9440fbe05bd768d1d3", + "b1428b6af71f0210e554d4de7cc41a393a03451e", [] ], "testharness-api.md": [ - "56dc4a4417a21d322c859e543b4d509e45921e96", + "19b96b550b2f7fefe648bab121f90dcc714396ed", [] ], "testharness-tutorial.md": [ @@ -431107,7 +437621,7 @@ [] ], "testharness.md": [ - "e88d5741ca6aeef6952a8fd1357e558cd2ec7476", + "e426e37f22b7afe3fda3a37755f46fb651356b5b", [] ], "tools.md": [ @@ -431132,7 +437646,13 @@ "WEB_FEATURES.yml": [ "cf364db88ef847fae3df7ae1803d9ef7dd01f1c3", [] - ] + ], + "support": { + "focus-opener.js": [ + "679eef3b22e80cddaab0fa8866a786be6a081840", + [] + ] + } }, "document-policy": { "META.yml": [ @@ -431144,7 +437664,7 @@ [] ], "echo-policy-nested.html.headers": [ - "419a3c3dd16dcf7d6dfdcbcd86ad26314f9ac368", + "ab319fc4ceb1d583a04832d665efb36bc87628a2", [] ], "echo-policy.py": [ @@ -431152,188 +437672,18 @@ [] ], "experimental-features": { - "layout-animations-disabled-tentative.html.headers": [ - "745da550ee5162cffcdf3913a37efa6d355ca47e", - [] - ], - "layout-animations-disabled-violation-report-js-tentative.html.headers": [ - "745da550ee5162cffcdf3913a37efa6d355ca47e", - [] - ], - "layout-animations-disabled-violation-report-keyframes-tentative.html.headers": [ - "745da550ee5162cffcdf3913a37efa6d355ca47e", - [] - ], "resources": { - "animation-property-height.js": [ - "79316cb488fade6e877c690f90c74961ff944f52", - [] - ], - "async-script.js": [ - "3c0ee6d02343891b0234f31c0fb229929ae1b24b", - [] - ], "common.js": [ "639847abf36d636e537c081a6afd06a3a8fb7f9f", [] ], - "defer-script.js": [ - "8d248ee0d01402bf016255d82c2b59d337c33b45", - [] - ], - "document-policy-image.html": [ - "4e5b919bd112f044cc3ec9e57afe05ae20f22ece", - [] - ], - "document-write-allowed.html": [ - "633fa85e6acd6c5dd9cfcd1dfd9929abf15214f8", - [] - ], - "document-write-disallowed.html": [ - "633fa85e6acd6c5dd9cfcd1dfd9929abf15214f8", - [] - ], - "document-write-disallowed.html.headers": [ - "32846f724a4a4aa3067bd2908be52942e52affdd", - [] - ], - "image.jpg": [ - "430f5c514a86f110293636b513b396ac1ab5ed80", - [] - ], - "image.png": [ - "556fa72704084920c07066054bb57adc5a250b27", - [] - ], - "image.svg": [ - "73ca820915bbdccdf4fd2d3960c795f1cea8e181", - [] - ], - "parser-blocking-script.js": [ - "c61efee8a0a15801d474fd8b384de01e565e37ce", - [] - ], - "sync-script-test.js": [ - "65c1b21e6e8274dc06679a67c79a67dc1ba756c4", - [] - ], - "video.ogv": [ - "c9ee910fc667632b17420c1f0ad4f7ad2ac7446a", - [] - ] - }, - "sync-script.tentative.https.sub.html.headers": [ - "cfe200c27b007ebb8f470c9b19a59589e68500e3", - [] - ], - "unsized-media.tentative.https.sub.html.headers": [ - "cf59933e8dd61a728ada5644a71808c36e7b0876", - [] - ] - }, - "font-display": { - "override-to-optional.tentative-ref.html": [ - "78bca05b124963796fa3ad9a291e7723f9f33df6", - [] - ], - "override-to-optional.tentative.html.headers": [ - "01b8bbccd44d7f265c321227ba4052baac9471ec", - [] - ], - "report-only-auto.tentative.html.headers": [ - "1509127277798c1fae2c4acff201a1b8ee518d12", - [] - ], - "report-only-blank.tentative.html.headers": [ - "1509127277798c1fae2c4acff201a1b8ee518d12", - [] - ], - "report-only-block.tentative.html.headers": [ - "1509127277798c1fae2c4acff201a1b8ee518d12", - [] - ], - "report-only-fallback.tentative.html.headers": [ - "1509127277798c1fae2c4acff201a1b8ee518d12", - [] - ], - "report-only-optional.tentative.html.headers": [ - "1509127277798c1fae2c4acff201a1b8ee518d12", - [] - ], - "report-only-swap.tentative.html.headers": [ - "1509127277798c1fae2c4acff201a1b8ee518d12", - [] - ], - "reporting-auto.tentative.html.headers": [ - "273ca3564dfd7c3a5f1fa6368ef9a4c8fad529de", - [] - ], - "reporting-blank.tentative.html.headers": [ - "273ca3564dfd7c3a5f1fa6368ef9a4c8fad529de", - [] - ], - "reporting-block.tentative.html.headers": [ - "273ca3564dfd7c3a5f1fa6368ef9a4c8fad529de", - [] - ], - "reporting-fallback.tentative.html.headers": [ - "273ca3564dfd7c3a5f1fa6368ef9a4c8fad529de", - [] - ], - "reporting-optional.tentative.html.headers": [ - "273ca3564dfd7c3a5f1fa6368ef9a4c8fad529de", - [] - ], - "reporting-swap.tentative.html.headers": [ - "273ca3564dfd7c3a5f1fa6368ef9a4c8fad529de", - [] - ], - "resources": { - "font-display-reporting-helper.js": [ - "f3c8a22b7adc5e84c2183c3b8f5c49245169cc7c", + "video.webm": [ + "10a1ae5d07175452c9861c4eb59d7adae3df6773", [] ] } }, "reporting": { - "document-write-report-only-tentative.html.headers": [ - "924dac8e87b3d5639857dd45c759fed7f263ba5d", - [] - ], - "document-write-reporting-tentative.html.headers": [ - "6d05e969b5047b88f7145233549460fbc7e7f594", - [] - ], - "image.jpg": [ - "c059b96d97fc3701ce4325165b79948f69189135", - [] - ], - "lossy-images-max-bpp-reporting-onload-tentative.html.headers": [ - "cb28d40ec152667456889c5fdcfd93947218b461", - [] - ], - "lossy-images-max-bpp-reporting-tentative.html.headers": [ - "cb28d40ec152667456889c5fdcfd93947218b461", - [] - ], - "oversized-images-reporting-tentative.html.headers": [ - "10f5be1c33409e9c06304430ee5e8cbe45157ca1", - [] - ], - "oversized.jpg": [ - "497ed770bfb6fb367f2eeb1978225bc4d036055b", - [] - ], - "resources": { - "sync-script.js": [ - "10d582cb0ece3e4bab27a398e3e21a53d1432b88", - [] - ] - }, - "sync-script-reporting.html.headers": [ - "cfe200c27b007ebb8f470c9b19a59589e68500e3", - [] - ], "sync-xhr-report-only.html.headers": [ "8de201c750893f0f615ccf7fcba1600d1cf5f43f", [] @@ -431341,23 +437691,15 @@ "sync-xhr-reporting.html.headers": [ "ab319fc4ceb1d583a04832d665efb36bc87628a2", [] - ], - "unoptimized-image.jpg": [ - "599137a55d710fe6b8d3052c05c81915622ea0d0", - [] - ], - "unsized-media-reporting-tentative.html.headers": [ - "cf59933e8dd61a728ada5644a71808c36e7b0876", - [] ] }, "required-policy": { "document-policy.html.headers": [ - "20629ac15f53b45818e4357a33f544b7f523e466", + "ab319fc4ceb1d583a04832d665efb36bc87628a2", [] ], "required-document-policy.html.headers": [ - "ac1bf268b50a75411e6819abbadc8e493dd9a612", + "230ffe282a107537195993cf252f683ad1c97f52", [] ], "separate-document-policies.html.headers": [ @@ -431378,6 +437720,10 @@ [] ], "abort": { + "WEB_FEATURES.yml": [ + "d2fdc1555e28305b7eb0e6eec3f8726fdd7d3e13", + [] + ], "resources": { "abort-signal-any-tests.js": [ "66e4141eaccb08ee3efe3da8b6e83c82acdec942", @@ -431386,7 +437732,7 @@ } }, "common.js": [ - "70367b2efff769b3b34121958c0be682ea005820", + "97d7da542bc74d6a4c0b60eb84b529d0435908be", [] ], "constants.js": [ @@ -431441,8 +437787,12 @@ ] }, "scrolling": { + "WEB_FEATURES.yml": [ + "e4fba841b62ac948a7fef93e514b02169057d494", + [] + ], "scroll_support.js": [ - "e86ead5456442f6c34d8d4b190832e3d2580fe53", + "a708364df07cada66cc5ed672af3a328fae3ab9c", [] ], "scrollend-event-fires-to-iframe-inner-frame.html": [ @@ -431450,7 +437800,7 @@ [] ], "scrollend-user-scroll-common.js": [ - "5c278784d83916beda046e9c6b760429c3dc9804", + "1b63723388284352dd5e83533e996a826fa37d00", [] ] } @@ -431703,7 +438053,7 @@ [] ], "Document-createEvent.js": [ - "57e8e966f838ab4e023466ee43ab891945164e8a", + "0df5d3f6e1ff00012d7703ccfcd1ad54b35f8418", [] ], "Document-createProcessingInstruction.js": [ @@ -431770,6 +438120,16 @@ "544df60a991fa01ac7a9e58b3a7b87e90ab0a76d", [] ], + "moveBefore": { + "tentative": { + "resources": { + "moveBefore-iframe.html": [ + "7d9c498e8da29f6d23df33d49a2aab5b85e9f1e2", + [] + ] + } + } + }, "mutationobservers.js": [ "a95529ab39cdcbc19c627d1b1dc998ac426c5e9b", [] @@ -431808,7 +438168,7 @@ "parts": { "resources": { "domparts-utils.js": [ - "5deeec80a358a56e2c40c2b6e371591210504316", + "d1da9fb0785f8b9551eacaa83606c84febf80ccd", [] ] } @@ -431912,7 +438272,7 @@ [] ], "xml2html.xsl": [ - "07b967500ff66c232aaefae1b240940bffbed969", + "88b74a9620f8093dcd5ff2afa4d1604793f049d9", [] ] }, @@ -432061,7 +438421,7 @@ [] ], "delete.js": [ - "131c99b1d5af0fcef45c270ea76596bc31af12a0", + "c4d1225ef35bad1638afe112b2741582e3b5ac47", [] ], "fontname.js": [ @@ -432077,11 +438437,11 @@ [] ], "formatblock.js": [ - "bd559b3003686d79358b14e3d8389b18d3034d06", + "5cc040b1f13b10d56bd488b67ccb5745171e8c3e", [] ], "forwarddelete.js": [ - "ea590a4fbba137fa1b265f15effe5bd03a7f2225", + "a881fb6ccf4618c16c3ac782bd5de1d1fb5a7aa9", [] ], "hilitecolor.js": [ @@ -432117,7 +438477,7 @@ [] ], "insertparagraph.js": [ - "7a5fe7158b2c6db56da0b97bf759dba33680bfe6", + "0dace0105c3963cb93f9a83b03581dff117af39a", [] ], "inserttext.js": [ @@ -432185,9 +438545,15 @@ [] ] }, + "edit-context": { + "WEB_FEATURES.yml": [ + "284280066aac2ffc2319ffbcab5c0fbffbb5d962", + [] + ] + }, "include": { "editor-test-utils.js": [ - "24527d4a7931f7f41d34ec1150f82fe0867f6b3b", + "b180f3343fde2189ea6e122266cf329a2e2b6d98", [] ], "implementation.js": [ @@ -433303,7 +439669,7 @@ [] ], "events-session-closed-event.js": [ - "44f683eac854b1f0fea6a845c0ea841e84eb5c26", + "f3132f56c1124532bffcaba881c5eca9b71bdf99", [] ], "events.js": [ @@ -433375,7 +439741,7 @@ [] ], "playback-temporary-events.js": [ - "28f45222cfa1bb108cfc18dc9b4a37e4aaf5aaa0", + "d8dac4463df42bde9cc57745f822b95b5ef7d583", [] ], "playback-temporary-expired.js": [ @@ -433485,7 +439851,7 @@ [] ], "drm-messagehandler.js": [ - "5c5577c6d68942a9526cb9bd655942db80877990", + "b1565c12cb02e4a99caa9399f2d7714db22501f8", [] ], "testmediasource.js": [ @@ -433497,7 +439863,7 @@ [] ], "utils.js": [ - "79f8c7ea6d1b5c5c38131205c20499019ba7371c", + "78678d5c038d4c25a3c695838c93ac28c6f08746", [] ] } @@ -433573,7 +439939,7 @@ [] ], "event-timing-test-utils.js": [ - "859bc0f7bf501de2767bb5dc6db6f61fcaefa85e", + "8bf429974a02e8d970d0cb638ea605bace4d81c4", [] ], "slow-image.py": [ @@ -433814,7 +440180,7 @@ [] ], "feature-policy-frame-policy-timing-iframe-camera.https.sub.html": [ - "995ac2134e75013b7c8a4b8ddf20ebff48749229", + "0eaafcd5946f95ec29f0485c3d372b71eb774f36", [] ], "feature-policy-header-policy-allowed-for-all.https.sub.html.sub.headers": [ @@ -434010,6 +440376,320 @@ ] } }, + "fedcm": { + "META.yml": [ + "40b5b106f621aa5176d7a4292f0a26f85631aac8", + [] + ], + "fedcm-cross-origin-policy.https.html.sub.headers": [ + "32523a697886f7fb26ab4456e5b14cb19d8c1aae", + [] + ], + "fedcm-csp.https.html.sub.headers": [ + "c1e6fd6c4c281f22e7f92506ec72ca39b6293f23", + [] + ], + "fedcm-opaque-rp-origin.https.html.headers": [ + "9850d21f3c6fa83cd87c23f6b0f4150b64011918", + [] + ], + "support": { + "README.md": [ + "28a6d3453bda1d74b2c0f81f0a9ab23e71545503", + [] + ], + "acao-cors.py": [ + "57b6f1e32182865fc12eecc4226a0740e3d0535c", + [] + ], + "accounts.py": [ + "c0117862816ff4668b6dd9416633bee6eb9af227", + [] + ], + "accounts_check_same_site_strict.py": [ + "7bab26d3e9b8eafd0d9049bf7d6e952fb8249857", + [] + ], + "accounts_no_approved_clients.py": [ + "1820376034e5e1bcb23b23e840dba95b8db3472b", + [] + ], + "client_metadata.py": [ + "57390015bddc355729aaac35fdb768098d7e5d31", + [] + ], + "client_metadata.py.headers": [ + "7164e5f81827da39996b033972a508e5b371de11", + [] + ], + "client_metadata_clear_count.py": [ + "bbce7a45f75a8afaa87e4b5fe181ff902c2bcc9c", + [] + ], + "continue_on.py": [ + "5447ab96e4f23b905dad685c2233e3ba8b9a954b", + [] + ], + "disconnect.py": [ + "13131fa1f30217fe5d83b244410f740b14b1bda2", + [] + ], + "disconnect_failure.py": [ + "f880218b2f6156817aeb7ac16c0e1e42f3ed5103", + [] + ], + "error_with_code_and_url.py": [ + "609d49c76bc269053d9827766483057bf66a7234", + [] + ], + "fedcm": { + "disconnect-iframe.html": [ + "ae97011a53535b66ae619132ae91a2d763bc1dad", + [] + ], + "intercept_service_worker.js": [ + "b458c973be3083ef05c3dffda39944f6f4549d4b", + [] + ], + "pending-userinfo-iframe.html": [ + "da2cd26066abd87eaa04d5ade3845424d49de103", + [] + ], + "simple.html": [ + "d62419ce8a0ac12a85f5b8e595a874714b038b44", + [] + ], + "userinfo-iframe.html": [ + "64d5cb83a088db7dc8f3a9e7e2a65301eb0b64b1", + [] + ] + }, + "fedcm-helper.sub.js": [ + "767c044818eab85a07c8240611730a885122a858", + [] + ], + "fedcm-helper.sub.js.headers": [ + "cb762eff806849df46dc758ef7b98b63f27f54c9", + [] + ], + "fedcm-iframe-level2.html": [ + "7622d988ff2c129003f0e3251bb7a0be698d17d6", + [] + ], + "fedcm-iframe.html": [ + "085d6128976f9852f638fd5b0c17912db13ea011", + [] + ], + "fedcm-mock.js": [ + "271dd9cd944a2770f27b119331dc77d919ba9cf5", + [] + ], + "fedcm-mojojs-helper.js": [ + "40ab729b1f9555f751611e845fac6360d0cbdd30", + [] + ], + "fencedframe-mark-signedin.html": [ + "681fcd6787525632b0e5f1f24b2ca308d7fe6b82", + [] + ], + "iframe-mark-signedin.html": [ + "4ca0125cde2e4ec7a404ba360becf22a66eb3e40", + [] + ], + "keys.py": [ + "6b7d67e21e7eea7927a40ab094847b7224d49985", + [] + ], + "lfedcm-helpers.js": [ + "28a43d9328eaa59835e6c0ec282968237db2460e", + [] + ], + "lfedcm-identity.provider-create.sub.html": [ + "4b60c7866f03cde9bd047264112f48f60995a856", + [] + ], + "lfedcm-identity.provider-delete.sub.html": [ + "47ff664e7223a6bc8632517a96855f37c88f6487", + [] + ], + "login.html": [ + "78d241cda952bccdeff05653f0cc7311afa73710", + [] + ], + "manifest-not-in-list.json": [ + "00700666675413d378bba7c3f8bed12f2b9b4849", + [] + ], + "manifest-token-nocors.json": [ + "77ba1b4702bc03c324d1af007eacb9d24df62c3b", + [] + ], + "manifest.py": [ + "ed984a42387198f95b2510041e5f73758541e9d3", + [] + ], + "manifest_check_disclosure_shown_false.json": [ + "47ca63edc4fc96f4d563beba7e872ae5d47461c1", + [] + ], + "manifest_check_disclosure_shown_true.json": [ + "7d7004c3cffee4fdbdf824b28456fd20b617de8b", + [] + ], + "manifest_check_same_site_strict.json": [ + "d7304159834804c417f498acebc45f59e588dcbb", + [] + ], + "manifest_id_assertion_endpoint_returns_error.json": [ + "e098cc4511a1980392097d0a26c020db3243ae35", + [] + ], + "manifest_no_login_url.json": [ + "15a657c679df7b0dfb0be1058e7086b439781762", + [] + ], + "manifest_redirect_accounts.json": [ + "ed9b3c296928c9f177d06477fbd2793c341acf76", + [] + ], + "manifest_redirect_token.json": [ + "ba04e890770e925157826bd2f7fb8d7887ef71e5", + [] + ], + "manifest_token_with_http_error.json": [ + "691a1e8d3a63a3695ec1fd29267506363871af71", + [] + ], + "manifest_with_auto_selected_flag.json": [ + "591c927153b9a78695ded0663fed600cbae5bcb6", + [] + ], + "manifest_with_continue_on.json": [ + "d7673c7e1b13e692ef59c091c32bf520663d058f", + [] + ], + "manifest_with_cross_origin_disconnect.sub.json": [ + "77d27e33f26bbe466e678f17391850ab1bab4548", + [] + ], + "manifest_with_disconnect_failure.json": [ + "96035e7e8b34d982c86e6555b384126e043e03fa", + [] + ], + "manifest_with_no_accounts.json": [ + "0d38f26d350c5064c3cd174d4af2c822c9d2ff97", + [] + ], + "manifest_with_rp_mode.json": [ + "5692fd91905cf37b4e2c301f55c129c21c691e56", + [] + ], + "manifest_with_single_account.json": [ + "5f9b7a81b9a4f9cdb1506dffc922bd15627a1222", + [] + ], + "manifest_with_two_accounts.json": [ + "6310fb0a0becfbe03b7fec666aea406a587b0858", + [] + ], + "manifest_with_variable_accounts.json": [ + "9e4af250045757a3ce7b58bc7d0347ecd2794a40", + [] + ], + "mark_signedin": [ + "d9adcaa762909e0ddef54daa989848169ede25dc", + [] + ], + "mark_signedin.sub.headers": [ + "d560fade5a0e4237f751b0c90a87fc25f92aa14a", + [] + ], + "mark_signedout": [ + "d9adcaa762909e0ddef54daa989848169ede25dc", + [] + ], + "mark_signedout.sub.headers": [ + "69157b3a371e369df585331a2479144fee444f5c", + [] + ], + "no-cors.py": [ + "a5be59ccb69f5e7e8e5ddca990b4eea34b49e4bd", + [] + ], + "no_accounts.py": [ + "fad93088db5b9204c890fea871574c8b7d1ee4f8", + [] + ], + "request-params-check.py": [ + "08c28e32b7942d6db83f7b9c2e4664c9cf47987f", + [] + ], + "resolve.html": [ + "dbdc28c3247a386976e0711d08369dedc69ba4a9", + [] + ], + "select_manifest_in_root_manifest.py": [ + "4b3e7964f0fbb7a6031f30a6264407bb0759b82b", + [] + ], + "set_accounts_cookie.py": [ + "15adf11324ee6b7a0b03d402622e6dad82f677c5", + [] + ], + "set_cookie": [ + "2c3196058a9e5213628821daf3a6c28ee18bd0d1", + [] + ], + "set_cookie.headers": [ + "df223115a7fa546e682275e8bb9d9af624ea333a", + [] + ], + "single_account.py": [ + "000a23d925c8ce58e2b6d578badc3957cc8c9381", + [] + ], + "token.py": [ + "f4ad108d8d5159a1fc130b0a1dc6fc3bea229f32", + [] + ], + "token_check_disclosure_shown_false.py": [ + "d10f839f028aa08ae856d3bd41f031f57db0c26d", + [] + ], + "token_check_disclosure_shown_true.py": [ + "7c5e53c8e8f4979d2d3e5e81aca63f8d872387c2", + [] + ], + "token_check_same_site_strict.py": [ + "20bdc5948776263a39c85dbe38fae2846d90222d", + [] + ], + "token_with_account_id.py": [ + "de3a7662d1897398378d5bb834f2321037d504e3", + [] + ], + "token_with_auto_selected_flag.py": [ + "d59da115c1006d633cdacbaec2933320be7b83cc", + [] + ], + "token_with_http_error.py": [ + "ea14b6f528df490b24c10ba68875b9096febf0eb", + [] + ], + "token_with_rp_mode.py": [ + "a75d512025e967ec3fbd44b28423716b1757f1e9", + [] + ], + "two_accounts.py": [ + "b59d6a0965974b32371a55176b33b6d3c0def5b0", + [] + ], + "variable_accounts.py": [ + "73d694227117d2ad5379a984e0eb2690bb75fe2f", + [] + ] + } + }, "fenced-frame": { "README.md": [ "3dc65fbc050b0596a1b23f4341c5192c41115fe0", @@ -434020,15 +440700,15 @@ [] ], "default-enabled-features-allow-all.https.html.headers": [ - "d39cf98dd5c71f5777e73544886fccf9f664a01d", + "c3d2f1fcfb6b9ab435c06a6d201be37f67bf6d3f", [] ], "default-enabled-features-allow-none.https.html.headers": [ - "5d534499d74aa101116b8473b325a00d561466f1", + "2aa0b2f5ae26f82d55a1bf700968875bab057755", [] ], "default-enabled-features-allow-self.https.html.headers": [ - "8bfa33eb8a3965f96ea5ad38237f59cb058b2319", + "76ab816ec048067dca577e8b25b062bec60cfca5", [] ], "default-enabled-features-attribution-disabled.https.html.headers": [ @@ -434080,12 +440760,12 @@ "1b63235b7cdffe9ebb43bfac3a01d5220e1519fb", [] ], - "automatic-beacon-store.py": [ - "ba1b73201bcce6287c0a7d5489ff5968ca12ad99", + "automatic-beacon-helper.js": [ + "36c10c904edf84098755b4fc5d95eac0ab194aa4", [] ], "automatic-beacon-unfenced-page.html": [ - "4ce7e0d78a5b2252ba58eeb8d20fd1eb1917b0ae", + "c9561bec5505916107257c20019b22f0fe84fd99", [] ], "background-fetch-inner.https.html": [ @@ -434136,6 +440816,10 @@ "5bc3c9a1907a6d2bbfb8efe80008269132739e4d", [] ], + "beacon-store.py": [ + "e4a4048de93e9d598c7be4e8684c546960312519", + [] + ], "before-unload-inner.html": [ "6d23cf88a3ce4090f8131e11928b257fec00d527", [] @@ -434385,7 +441069,7 @@ [] ], "fledge-bidding-logic.py": [ - "c91b31fd02fb36976b6c9c71c0bbb1bf91394a92", + "9acab472031d7f4161135ea6a93d01734c40520c", [] ], "fledge-decision-logic.py": [ @@ -434672,14 +441356,6 @@ "6247f6d63211cd39dffca9fc507aefcdee586eba", [] ], - "resize-lock-inner-input.html": [ - "cb17789b45055c280ff3a5f6be515a39758e34cc", - [] - ], - "resize-lock-inner-input.html.headers": [ - "1b63235b7cdffe9ebb43bfac3a01d5220e1519fb", - [] - ], "resize-lock-inner.html": [ "fbaf436330f5e6fe466110d4e0b0795f95b9a618", [] @@ -434792,6 +441468,10 @@ "e344b45fd8cb6d1431ee3457c3acba76a8e62a40", [] ], + "shared-worker.js": [ + "ac59fe64980700c5cc1e86e8a50023a5f665dd19", + [] + ], "unique-cookie-partition-inner.https.html": [ "1cf3fc86808832cb53ccbad4122d2e226a908f93", [] @@ -434801,7 +441481,7 @@ [] ], "utils.js": [ - "cbea173f17a6ad89a9d5dea3e304cff534971edb", + "c4807c58aee02230e2d26950ed56c604a83e84ab", [] ], "web-bluetooth-inner.html": [ @@ -435015,10 +441695,6 @@ "7022e75c15ee5263f64bf5c2d86b19b72d2ab5f9", [] ], - "dummy_video.ogv": [ - "de99616ecebe6107c33156c1c5513ef007b4e63d", - [] - ], "dummy_video.webm": [ "c3d433a3e02e86eee1026b6620dc0c50498e61a4", [] @@ -435128,7 +441804,7 @@ [] ], "dump-authorization-header.py": [ - "a651aeb4e8b9238383af5ec8ecb5e3820e081881", + "0d82809f59d32a5f420f2bc83bf2a3d24cd79e98", [] ], "echo-content.h2.py": [ @@ -435143,6 +441819,10 @@ "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", [] ], + "huge-response.py": [ + "16a60078e53f5a9deba88283eecd2ce204467562", + [] + ], "infinite-slow-response.py": [ "a26cd8064c88531e6877d2561cd16df964eb7f6e", [] @@ -435152,7 +441832,7 @@ [] ], "keepalive-helper.js": [ - "f6f511631e5db53e7cf45ba844fa58120fc81fa4", + "1e75c060aea1d8251f3546429f73e613575e7966", [] ], "keepalive-iframe.html": [ @@ -435255,6 +441935,34 @@ ] } }, + "compression-dictionary": { + "resources": { + "clear-site-data.py": [ + "0db51bf797f7e7efb0d16671dcdaa4afe0129b71", + [] + ], + "compressed-data.py": [ + "bb9d7fe8466887a2233d760b18ac4e6af0b1e732", + [] + ], + "compression-dictionary-util.js": [ + "7d86f594a802c221077ce471393f6c9fabba7f2e", + [] + ], + "echo-headers.py": [ + "aabd99eb10143a0eafb976d48d502a572dfb6a7f", + [] + ], + "empty.html": [ + "0e76edd65b7baf5316fc9d0c4da59a3502e4c27a", + [] + ], + "register-dictionary.py": [ + "0bd57225ef1355360d6e16fb1243c8f1a465d6d9", + [] + ] + } + }, "connection-pool": { "resources": { "network-partition-about-blank-checker.html": [ @@ -435288,35 +441996,109 @@ } }, "content-encoding": { - "resources": { - "bad-gzip-body.py": [ - "a79b94ed041d0e0852e71bdd5cdba57897a1f198", - [] - ], - "big.text.gz": [ - "13441bc3998353922eb25ea5b8ef535321b49b6b", - [] - ], - "big.text.gz.headers": [ - "55d2345c23991825df21b3d5da777429dbec6791", - [] - ], - "foo.octetstream.gz": [ - "f3df4cb89b5d0b78bc76d0ce03ab0c205c5211fa", - [] - ], - "foo.octetstream.gz.headers": [ - "27d4f401f1b601446854810b65f5e130d561aa65", - [] - ], - "foo.text.gz": [ - "05a5cce07b514365d9c468f4a1763b8173cfecfc", - [] - ], - "foo.text.gz.headers": [ - "7def3ddc148d1c2457240a9741ed4a2b8b3a5927", - [] - ] + "br": { + "resources": { + "bad-br-body.py": [ + "0710e7ffdee96f56bda733607a616be6cd005390", + [] + ], + "big.text.br": [ + "b3a530d757de6b5453ddc38411d65522a9e372de", + [] + ], + "big.text.br.headers": [ + "aba00bd5d4a9d29e4838bbd3e92d9fc7e2e1a1d8", + [] + ], + "foo.octetstream.br": [ + "30cb2f7095e15aca510a4a8cbae00f5d35f0918b", + [] + ], + "foo.octetstream.br.headers": [ + "c0c19bc82affb5ef053b33f9077510e851eb13a1", + [] + ], + "foo.text.br": [ + "30cb2f7095e15aca510a4a8cbae00f5d35f0918b", + [] + ], + "foo.text.br.headers": [ + "8c03b823e09e9135244d15c9e82697c30f8da33a", + [] + ] + } + }, + "gzip": { + "resources": { + "bad-gzip-body.py": [ + "a79b94ed041d0e0852e71bdd5cdba57897a1f198", + [] + ], + "big.text.gz": [ + "13441bc3998353922eb25ea5b8ef535321b49b6b", + [] + ], + "big.text.gz.headers": [ + "55d2345c23991825df21b3d5da777429dbec6791", + [] + ], + "foo.octetstream.gz": [ + "f3df4cb89b5d0b78bc76d0ce03ab0c205c5211fa", + [] + ], + "foo.octetstream.gz.headers": [ + "27d4f401f1b601446854810b65f5e130d561aa65", + [] + ], + "foo.text.gz": [ + "05a5cce07b514365d9c468f4a1763b8173cfecfc", + [] + ], + "foo.text.gz.headers": [ + "7def3ddc148d1c2457240a9741ed4a2b8b3a5927", + [] + ] + } + }, + "zstd": { + "resources": { + "bad-zstd-body.py": [ + "496f26881dc9574f8e8f3fcc04c49fa4145c8a20", + [] + ], + "big.text.zst": [ + "30eda2443f338240772315f18ca29f607cc6e395", + [] + ], + "big.text.zst.headers": [ + "ea5b05cf2c2414de15dcc893e25d8b903c9439dc", + [] + ], + "big.window.zst": [ + "a1bca73228318c28640981bacaf56fcbd287070e", + [] + ], + "big.window.zst.headers": [ + "c5974e126a34d876cf69fe69573682ac97f0b977", + [] + ], + "foo.octetstream.zst": [ + "a73bbdd22458db57635bf88e97a4e47b4886e722", + [] + ], + "foo.octetstream.zst.headers": [ + "e397816f5455fb17e7500eb0950a4971249c609a", + [] + ], + "foo.text.zst": [ + "a73bbdd22458db57635bf88e97a4e47b4886e722", + [] + ], + "foo.text.zst.headers": [ + "c5974e126a34d876cf69fe69573682ac97f0b977", + [] + ] + } } }, "content-length": { @@ -435593,17 +442375,53 @@ [] ], "README.md": [ - "661e2b918438fabcdee9e160f79ba8dddb2877d4", + "d70ad217b1c6f3f5eb315e1ab4ac83939f47b7d5", [] ], + "permissions-policy": { + "README.md": [ + "a0a724a25e04da5f2e0e4aef74752c8a0732fcb0", + [] + ], + "deferred-fetch-allowed-by-permissions-policy.tentative.https.window.js.headers": [ + "cd356bd1a39146374ee372062e4ebb73c7826aa9", + [] + ], + "deferred-fetch-disabled-by-permissions-policy.tentative.https.window.js.headers": [ + "9c2b593ec80d3b3578242e7f5f052c53b5636717", + [] + ], + "resources": { + "helper.js": [ + "5cbb183acf1d7e295ff84d17706c681c634e9b2e", + [] + ], + "permissions-policy-deferred-fetch.html": [ + "f5ce3178db4b163205a8d442bc851d0f6c40921a", + [] + ] + } + }, "resources": { + "fetch-later-helper.js": [ + "566b3e0a1a4d0d57f857f5972fc99f2bb57e742b", + [] + ], "fetch-later.html": [ "b569e1a076ac210d87d01b51ded0a8943476eac0", [] ], + "get_beacon.py": [ + "32cb9a9ba30638bf0e5c7e54655ae87e7085978d", + [] + ], "header-referrer-helper.js": [ "374097614ae92646ab6260948abcc64cbdaf4d8d", [] + ], + "set_beacon.py": [ + "1c71f23e57849481b7deb204cb859ef25f6e4356", + [] ] } }, @@ -435680,6 +442498,10 @@ "34864d4a4b6bd911f496026ada7bdc41ba3a6905", [] ], + "WEB_FEATURES.yml": [ + "fb48eaa3112102a1037291b2be4a17f87df51e91", + [] + ], "report.https.sub.html.sub.headers": [ "1ec5df78f30183b07f2739f180354d87e4572c5b", [] @@ -435734,7 +442556,7 @@ [] ], "post-to-owner.py": [ - "256dd6e49dcca90d503b9b7c2a4d1cf04cb330d0", + "2d4896867bb8f4708fa041f7677d85ad7c77de38", [] ], "record-header.py": [ @@ -435776,7 +442598,7 @@ [] ], "fetch-metadata.conf.yml": [ - "b277bcb7b53d54c1cb6aac02096cc287b6438891", + "b96bd2fd7b4b81f6681ec84ffe41afe85576f1fd", [] ], "generate.py": [ @@ -435784,10 +442606,6 @@ [] ], "templates": { - "appcache-manifest.sub.https.html": [ - "0dfc084f2e3442038bc4eaf62a88f514053a6b97", - [] - ], "audioworklet.https.sub.html": [ "7be309c50685ec28d3f7541ce5568767e2ff0054", [] @@ -436115,6 +442933,10 @@ "5ee533e1820d737f6cbfb8cc4f5b7a134706c3fd", [] ], + "open-to-existing-window.html": [ + "6460024bc80c1709bf9d805f7f51413de0c251f2", + [] + ], "openee.html": [ "8f0a859cb3256c0535738f4e3c445c41532cf82b", [] @@ -436124,13 +442946,17 @@ [] ], "preflight.py": [ - "7ab9dffe1d9a7046e79a940dd78e53800bd73d01", + "44676632394a6973a7f77c661eb4824d9e1e411a", [] ], "service-worker-bridge.html": [ "816de535feaa83c224e76159d3defa571b1199fe", [] ], + "service-worker-fetch-all.js": [ + "78ac8d1576b49802fa1587c332ba8cad7a568daf", + [] + ], "service-worker.js": [ "bca71ad910cb189c2de6298b4ea59b5594aba637", [] @@ -436152,7 +442978,7 @@ [] ], "support.sub.js": [ - "69d8f50f18fe71e780eb1e61b92b4c136b717191", + "7d133b028894ef1f313de718800dd1dfda17741d", [] ], "worker-blob-fetcher.html": [ @@ -436224,11 +443050,19 @@ "security": { "dangling-markup": { "resources": { + "empty.html": [ + "0e76edd65b7baf5316fc9d0c4da59a3502e4c27a", + [] + ], "helper.js": [ "100bcba7b5184a12955c6c99ce21c483301ef446", [] ] - } + }, + "service-worker.js": [ + "99d5456a874f98fcf6b7fe489b2172cb90b28f86", + [] + ] }, "support": { "embedded-credential-window.sub.html": [ @@ -436297,20 +443131,28 @@ "fledge": { "tentative": { "TODO": [ - "8a416f17e5717c8a10a4af7a61c1cba5adc75ff8", + "8760e59d21f6f4e5a26de27395fe1b8a5151dac2", [] ], "resources": { + "additional-bids.py": [ + "721909a04583aa67edf6b893408e2f53f4498bb5", + [] + ], "bidding-logic.sub.py": [ - "707e37f36bb1423dfb168a88320e3be620249109", + "8c0539d43c83a72b57498b0ec5c4f16d2fb26599", [] ], "decision-logic.sub.py": [ - "78d459e3f9dac36241d8cf92c33fd031c7046af0", + "545c7e5e4f85be20eaab38c7ede42e7be926dfd0", [] ], "direct-from-seller-signals.py": [ - "e94b9c5b47c271559db9d458f7f5faa14312fd76", + "14f5ce156e770d0fa069789fa4f37edeea8c5bb7", + [] + ], + "ed25519.py": [ + "53e548ab8e6099118b49b293a8259360dc888ee7", [] ], "empty.html": [ @@ -436322,11 +443164,19 @@ [] ], "fledge-util.sub.js": [ - "e9513ecb855b52b104ebf0acead6e7274445d651", + "148613eef8d903352f84ef30012a5654d82a3fc6", [] ], "fledge_http_server_util.py": [ - "a5c9c9715aa1013450b9cb60958a55c605b27701", + "92733eedf43b8d5bf84470ffa10321c3cb56ae2e", + [] + ], + "incrementer.wasm": [ + "47afcdef2a2812acccecd0f203d30d3023593f3d", + [] + ], + "permissions.py": [ + "eed93c42756b75045dd38ccc4c085059d040bf66", [] ], "redirect-to-trusted-signals.py": [ @@ -436338,7 +443188,7 @@ [] ], "request-tracker.py": [ - "9fe20bf83ac0d83da8b26f71540151a92d10ca02", + "dea8427266f1245e297795a69538b3a4f0007af2", [] ], "set-cookie.asis": [ @@ -436346,19 +443196,31 @@ [] ], "subordinate-frame.sub.html": [ - "e696ac0983d7811dd2bffa8b4ded2f0d353941ee", + "ea1f0c44d6286a3188acab7a83d0c2411bc23f48", + [] + ], + "subordinate-frame.sub.html.headers": [ + "3e3bda1ec0676be2f9632fcd0cac9ea3391da4da", [] ], "trusted-bidding-signals.py": [ - "5ec487fcc904e876ebdf130b511f4c4780863395", + "5a89e3b602565170c5e5eb3427eea71c36579dbe", [] ], "trusted-scoring-signals.py": [ - "fc6ec79096c4708b347e0cfc277fa248bf8ba9c3", + "934d2e9129d04a511b44540a6d326eff4d2b75f3", + [] + ], + "update-url.py": [ + "7de89e0f8f7c6bb96cf962325af4e8d8eee1aaf6", + [] + ], + "wasm-helper.py": [ + "a945b4cd5fef0b163c19e302d8fceefc64ca9ffe", [] ], "worklet-helpers.js": [ - "dd3b9a7dd518a0dd2d6b1d9b63315f427562f35a", + "0bac1b99a968eb93daf5719b22dd6e27a26b13a9", [] ] } @@ -436458,6 +443320,10 @@ "f22fa98076fde127961c9b58fc5f76db55b21a42", [] ], + "cross-origin-ancestor-activeelement-after-child-lose-focus-helper.html": [ + "fe96614517207faf2381b947d713fa9bbc01b886", + [] + ], "focus-already-focused-iframe-deep-different-site-outer.sub.html": [ "aeafd9b5b30c375c07d5e2e0c9e3017f5a3e3b63", [] @@ -436514,6 +443380,10 @@ "c6799f0edb9a6be8a5223ba86c3051e043373b64", [] ], + "focus-event-after-switching-iframes-inner.html": [ + "33b26c15822b6be1e16cdab2b25f51231bf92ca7", + [] + ], "focus-restoration-in-different-site-iframes-inner-window.html": [ "a5c75f496bd788c1c6ae389f308d0f2902ef71e4", [] @@ -437029,6 +443899,20 @@ "33487cdbb4f2a88b2107c191cce051cb5a247e1f", [] ], + "hasubi-mono": { + "HasubiMono-Regular.woff2": [ + "ee8b598dd9630487cd58c2875025b96ede9e8754", + [] + ], + "LICENSE.txt": [ + "d952d62c065f3f35fb83a173496e90b21525aef3", + [] + ], + "README.md": [ + "20bd1ea7ad0a9183c0cd538d28f03dec37f37199", + [] + ] + }, "math": { "axisheight5000-verticalarrow14000.woff": [ "70f366a3d0b7ec891fc4041584a1ddea55b0bc42", @@ -437311,7 +444195,7 @@ [] ], "stretchy.woff": [ - "eb67181e1ea241ff03a2a5d6b98c93238cc011cf", + "ac7d908f6e2feec55346c4b41ad73f5727e0a3c2", [] ], "underover-accentbaseheight4000-overbarextraascender3000.woff": [ @@ -437397,12 +444281,20 @@ "8aa4c66254cf0e4595a51a083af347e357f4c991", [] ], + "NotoSansCJKjp-Regular-subset-halt-min.otf": [ + "1ec5a7dbea3c9ccd088b9ef15e5b67074c830686", + [] + ], "NotoSansCJKjp-Regular-subset-halt.otf": [ "a87f8985966b80e8bef6160b119d0eb010ec544e", [] ], "README.md": [ - "a14fa64b42a8532706d2c3244bfafbbc9a4f5552", + "c053ea83593eba3b234d22a3c0afc3bcadb75f33", + [] + ], + "subset.sh": [ + "c34840667624f7750d8c85b7c4f7b176d1f60581", [] ] }, @@ -437640,6 +444532,14 @@ "218858b24c1ff080016c82dbc0c4c16fb6e95a26", [] ], + "change-observer-scope-test.js": [ + "c11d2ff922463aa5f2ccc9bf2ded450b9015902e", + [] + ], + "collecting-file-system-observer.js": [ + "64bb671af1430d2ddf365387cfa6fc47042300e0", + [] + ], "message-target-dedicated-worker.js": [ "26ff23ef8ac65009c3c5efd4bdeda3970ae93910", [] @@ -437685,7 +444585,7 @@ [] ], "test-helpers.js": [ - "add3dba6455669854331a78b51a56fa9508b42e0", + "8f969c987dd523629576c7ca1542c2c6b6e2e676", [] ] }, @@ -437774,6 +444674,14 @@ "c5d08f305d0612376a3641798d0a6b3b909cf404", [] ], + "FileSystemObserver-writable-file-stream.js": [ + "6a3eb6b4ca94b2e79b5f8542b35319fdf129e3c0", + [] + ], + "FileSystemObserver.js": [ + "d1e1ce40dbc439a94e6153cca8d87fd84da1fac8", + [] + ], "FileSystemSyncAccessHandle-flush.js": [ "580da69cc95a0e1c4173c69b9503e2a4adca9add", [] @@ -437783,7 +444691,7 @@ [] ], "FileSystemWritableFileStream-write.js": [ - "0b12def74c965d689908b7aa689e209e02ee38fa", + "b0485035b9174ef2097f0a0a491aef501fc13a49", [] ], "FileSystemWritableFileStream.js": [ @@ -437822,7 +444730,7 @@ } }, "rendering": { - "backdrop-iframe-ref.html": [ + "backdrop-green-ref.html": [ "3126fe194261f7ce7f6039885e4ec73e7a997468", [] ], @@ -437855,20 +444763,16 @@ "916bc8074f1c4321d850cec54abcb3f388959938", [] ], - "README.md": [ - "250300b51ed406d5353b63c596295a48502481e7", - [] - ], "generic-sensor-feature-policy-test.sub.js": [ "9bc46ae9364be41fdb4dc2cf47d8a231b04f6081", [] ], "generic-sensor-iframe-tests.sub.js": [ - "8f13bd778e06e58c2c8417d58c2fcb1f7cda43ed", + "ed3415e66ec799da22277dcd3f81dbbfb956145b", [] ], "generic-sensor-tests.js": [ - "3b23fe89191f42f6a404d56fd50d8d9b84adeff1", + "b4ed22554a0ebf62bde1d13175f2681b1fa631db", [] ], "resources": { @@ -437882,7 +444786,7 @@ ] } }, - "geolocation-API": { + "geolocation": { "META.yml": [ "e3d6c4dff8eddcd9edfa0a56e4efb87cb08e8453", [] @@ -438063,6 +444967,10 @@ [] ], "resources": { + "disable_bfcache.js": [ + "dea70ef4bdf17c87a8e01d71d1faa592a93c0b65", + [] + ], "echo-worker.js": [ "3e3ecb52e9f13f83053e99e3871e950937ebce05", [] @@ -438072,15 +444980,15 @@ [] ], "executor-pushstate.html": [ - "dcf4a798d00de34672e5b5480e4df6f27f96fa2d", + "3dd8f341f1e3affb60814666be080a3477e8bd95", [] ], "executor.html": [ - "2d118bbe2b2b8019bad58cb184acbf697e63275e", + "c3af5f6ba810eaee5c069c4b0d7ec918831abc9d", [] ], "executor.js": [ - "67ce0681303da0860095797bebeabdaf58fefd78", + "5137616d858eb7d6bd4de38ed5e433dcb2e7a9b9", [] ], "helper.sub.js": [ @@ -438092,7 +445000,7 @@ [] ], "rc-helper.js": [ - "9ecdc91ff147ac785154ae2ab5991ea32f9dacb3", + "ad2119b7385684dff539d80b5f3a37aefae10816", [] ], "service-worker.js": [ @@ -438143,13 +445051,15 @@ [] ], "pagereveal": { - "tentative": { - "resources": { - "order-in-prerender-activation-popup.html": [ - "78989adc172997dd379ea6e7aee578be45702b79", - [] - ] - } + "resources": { + "iframe.html": [ + "a1c1c6233282b7d94aafe59ebf4ffe9b5f121f0c", + [] + ], + "order-in-prerender-activation-popup.html": [ + "78989adc172997dd379ea6e7aee578be45702b79", + [] + ] } }, "persisted-user-state-restoration": { @@ -438534,11 +445444,11 @@ [] ], "executor-window.js": [ - "54df6735c9eeb0f1128b898615c129a8da705d7f", + "fd74711029e65af71b729575562a504716ae741f", [] ], "executor-window.py": [ - "1a660100b9cca765464281fecf167b49a71b6f99", + "733d36b15edcdec6a957866942aad0d82ac6cc43", [] ], "executor-worker.js": [ @@ -438546,7 +445456,7 @@ [] ], "remote-context-helper.js": [ - "aa24b36e8ba11bb07885a28090087e64300d876e", + "aca83720254308ee660f649a6e6794531c451822", [] ] } @@ -438554,7 +445464,7 @@ "remote-context-helper-tests": { "resources": { "test-helper.js": [ - "71cd87e55391f6f9d3868f3b13f4922703fbcd58", + "a277ca24ace2d4fc331dc346b0bc35ddad7020a3", [] ], "test-script.js": [ @@ -439071,6 +445981,18 @@ [] ], "resources": { + "iframe-contents.sub.html": [ + "8ac0a264dbc1d2b2d9a45ad8e51e3bfbc064254d", + [] + ], + "iframe-postmessage-to-parent-parent.sub.html": [ + "25c4af19a3e2296cbbbcb31755e5f4ce0c3ea510", + [] + ], + "iframe-with-iframe.html": [ + "675f293ffa3b57f39807bcc6fb86e0f8a748b421", + [] + ], "post-your-origin.html": [ "a8a614c182b19cf38af90030a17ef20b1f8dfc09", [] @@ -439082,6 +446004,10 @@ "reload_post_1-1.py": [ "56397f07b44028a0f1e572484480d6fa522c5816", [] + ], + "replace-or-assign-call-on-iframe.html": [ + "bdad8334a5e65d556d35474c051bdb9e1bcad4e9", + [] ] }, "same_origin_frame.html": [ @@ -439654,6 +446580,14 @@ "6f44d8a83ecade23c4b02707c56981d25ed62811", [] ], + "close_noopener_beforeunload-1.html": [ + "fc114bc443e500819487efc92f9e1042c2dcfa60", + [] + ], + "close_noopener_beforeunload-2.html": [ + "4cce1e2e6f7dd058ed0129abb2a14e5f879aa340", + [] + ], "close_pagehide-1.html": [ "5631b539a6af1ffee4f77b265b03eed3255f364f", [] @@ -439895,86 +446829,6 @@ ] } }, - "post-message": { - "resources": { - "first-party-to-first-party-cross-partition-window.html": [ - "cdfa9d95caa64cd0bf7d5aec8da92630bef469f8", - [] - ], - "first-party-to-first-party-same-partition-window.html": [ - "4baf45d3c82a13a619c5fc0acfd4dc9a2a3834b0", - [] - ], - "first-party-to-third-party-cross-partition-cross-origin-iframe.https.html": [ - "eef594831aa3ae4e1c2afbaafdbe5b1054c3770a", - [] - ], - "first-party-to-third-party-cross-partition-cross-origin-window.sub.https.html": [ - "7edfbd93281ae014529a7f388ba88b58e04d5229", - [] - ], - "first-party-to-third-party-cross-partition-same-origin-iframe.html": [ - "eb17036c8cc347333e9397799153cf05f60362d5", - [] - ], - "first-party-to-third-party-cross-partition-same-origin-window.sub.html": [ - "f99b96c4667824e61c8f704783f819c4ea95b107", - [] - ], - "third-party-to-first-party-cross-partition-cross-origin-iframe.sub.html": [ - "348efb3f9c4acbe8d92fba3c313dbcc0670f9b2c", - [] - ], - "third-party-to-first-party-cross-partition-cross-origin-window.https.html": [ - "00459094941ea6b9ec28d81324ec566f80f1fff6", - [] - ], - "third-party-to-first-party-cross-partition-same-origin-iframe.sub.html": [ - "405b1053d33da9e4f21504308b51fc5c69ee34a5", - [] - ], - "third-party-to-first-party-cross-partition-same-origin-window.html": [ - "0ae51e3fc173ac7c7bbea2deea53eaf5a2adec7b", - [] - ], - "third-party-to-third-party-cross-partition-cross-origin-iframe-a.sub.html": [ - "a11f3640e83290f1cf1987895916e4c25803693f", - [] - ], - "third-party-to-third-party-cross-partition-cross-origin-iframe-b.https.html": [ - "f56e2b35d8b72ae9a72eb2bbc8b81ed5881eb6e8", - [] - ], - "third-party-to-third-party-cross-partition-cross-origin-window.sub.https.html": [ - "13072875879de7f6fa4bbd6331ffbfd3f478fe77", - [] - ], - "third-party-to-third-party-cross-partition-same-origin-iframe-a.sub.https.html": [ - "ec551bfdec9384e0316c5d6177140cfa29233e00", - [] - ], - "third-party-to-third-party-cross-partition-same-origin-iframe-b.https.html": [ - "fc15b1f12523311abdd6d33092609110388b1db6", - [] - ], - "third-party-to-third-party-cross-partition-same-origin-window.sub.https.html": [ - "f26f709db34e83796412c6e9128f7f6c4b10d894", - [] - ], - "third-party-to-third-party-same-partition-iframe-a.sub.html": [ - "339dc9f06eb791ca96abcf15d48ace15a137a01f", - [] - ], - "third-party-to-third-party-same-partition-iframe-b.html": [ - "daaf236bfca6a33363f5a50ca6cd038b1c15aefc", - [] - ], - "third-party-to-third-party-same-partition-window.sub.html": [ - "7cea58f235cf66dfa6c8d98b781593314ed06e2a", - [] - ] - } - }, "resources": { "browsing-context-window.html": [ "c1594f637ec50699ea4b341d35ea2a43e9d0f549", @@ -440451,6 +447305,10 @@ "2d.composite.uncovered.pattern.source-out.png": [ "eeedd0ff05889ffd4468bf19a2e8e9e0a094201c", [] + ], + "colr-glyph-composition-ref.html": [ + "b47795f2054ac62bf4969094b6ed44e368048ff9", + [] ] }, "fill-and-stroke-styles": { @@ -440618,22 +447476,10 @@ "2733836c998fa919d9f6880fd96a32026e82ca2c", [] ], - "2d.fillStyle.parse.hsl-clamp-1.png": [ - "2733836c998fa919d9f6880fd96a32026e82ca2c", - [] - ], - "2d.fillStyle.parse.hsl-clamp-2.png": [ + "2d.fillStyle.parse.hsl-clamp-negative-saturation.png": [ "88fd8279855266c96740bc935718b22db592198c", [] ], - "2d.fillStyle.parse.hsl-clamp-3.png": [ - "bf48767a881289c077718965163addae848790ac", - [] - ], - "2d.fillStyle.parse.hsl-clamp-4.png": [ - "d638d033868afd3aab0a7b26d5b2a0a2b95da010", - [] - ], "2d.fillStyle.parse.hsla-1.png": [ "2aa6265f066dac5123d5452032c3e88052f035f7", [] @@ -440642,28 +447488,16 @@ "2733836c998fa919d9f6880fd96a32026e82ca2c", [] ], - "2d.fillStyle.parse.hsla-clamp-1.png": [ + "2d.fillStyle.parse.hsla-clamp-alpha-1.png": [ "2733836c998fa919d9f6880fd96a32026e82ca2c", [] ], - "2d.fillStyle.parse.hsla-clamp-2.png": [ - "88fd8279855266c96740bc935718b22db592198c", - [] - ], - "2d.fillStyle.parse.hsla-clamp-3.png": [ - "bf48767a881289c077718965163addae848790ac", - [] - ], - "2d.fillStyle.parse.hsla-clamp-4.png": [ - "d638d033868afd3aab0a7b26d5b2a0a2b95da010", - [] - ], - "2d.fillStyle.parse.hsla-clamp-5.png": [ - "2733836c998fa919d9f6880fd96a32026e82ca2c", + "2d.fillStyle.parse.hsla-clamp-alpha-2.png": [ + "eeedd0ff05889ffd4468bf19a2e8e9e0a094201c", [] ], - "2d.fillStyle.parse.hsla-clamp-6.png": [ - "eeedd0ff05889ffd4468bf19a2e8e9e0a094201c", + "2d.fillStyle.parse.hsla-clamp-negative-saturation.png": [ + "88fd8279855266c96740bc935718b22db592198c", [] ], "2d.fillStyle.parse.html4.png": [ @@ -440788,28 +447622,60 @@ ] }, "filters": { + "2d.filter.canvasFilterObject.componentTransfer.discrete.tentative-expected.html": [ + "2b1c1c1c0768b40e50ccd7c030adff59913a4d5e", + [] + ], + "2d.filter.canvasFilterObject.componentTransfer.gamma.tentative-expected.html": [ + "5adc9f53e206b76fc9b729d86d2a85e52c65d67b", + [] + ], + "2d.filter.canvasFilterObject.componentTransfer.identity.tentative-expected.html": [ + "895d531206c9fe2e649dc841a95de675be60c32a", + [] + ], + "2d.filter.canvasFilterObject.componentTransfer.linear.tentative-expected.html": [ + "c4ad790d56ea891cd1f49c35f0d5e5fc4c903539", + [] + ], + "2d.filter.canvasFilterObject.componentTransfer.table.tentative-expected.html": [ + "29e250614c2f5db7d0920b8d86313b920ee4326a", + [] + ], "2d.filter.canvasFilterObject.dropShadow.tentative-expected.html": [ "86c5710132f348bd3e2332983d7211f4b3315cdb", [] ], - "2d.filter.canvasFilterObject.gaussianBlur.tentative.isotropic-expected.html": [ - "f9571f208ea843b11bc18dfe142c08a950571ff7", + "2d.filter.canvasFilterObject.gaussianBlur.tentative-expected.html": [ + "c1ca0ab46f8f086c8ca90c5018234108d8b4e707", + [] + ], + "2d.filter.layers.componentTransfer.discrete-expected.html": [ + "8419953b3d263ba60fde03e9048a4edb4554d536", + [] + ], + "2d.filter.layers.componentTransfer.gamma-expected.html": [ + "3e5d98089677d08e99356241463a30687320490a", + [] + ], + "2d.filter.layers.componentTransfer.identity-expected.html": [ + "9f1439f37b6e63c8ff6eb575bb1d65a9644c00f3", [] ], - "2d.filter.canvasFilterObject.gaussianBlur.tentative.mostly-x-expected.html": [ - "e76613271f3971ac267e13a6a36fe87036902a25", + "2d.filter.layers.componentTransfer.linear-expected.html": [ + "f922055ff26807e85e93bee9b9a8170c34ae7c5f", [] ], - "2d.filter.canvasFilterObject.gaussianBlur.tentative.mostly-y-expected.html": [ - "0f214fca9fdf37aba06dc20425c85d84c9bf2b19", + "2d.filter.layers.componentTransfer.table-expected.html": [ + "0f6736d87d4f4f504b928da817a5a2ec8344a19e", [] ], - "2d.filter.canvasFilterObject.gaussianBlur.tentative.x-only-expected.html": [ - "285a6417266212d28aec1515a9d7c5a339d47338", + "2d.filter.layers.dropShadow-expected.html": [ + "1719d99b4a7f4cea868b97b518caadde3bc18c26", [] ], - "2d.filter.canvasFilterObject.gaussianBlur.tentative.y-only-expected.html": [ - "d59945b5da6da751480b8d4361aa26670d69b3cc", + "2d.filter.layers.gaussianBlur-expected.html": [ + "f24e9d0dba50d365877a6cdaea6e903ddcbd939f", [] ] }, @@ -440842,6 +447708,14 @@ "1823f789839a973121269406f387ae8a66b6f8e1", [] ], + "2d.layer.clearRect.full-expected.html": [ + "5a47f8e11884e0905cd85c5f19bc6da1b303e04e", + [] + ], + "2d.layer.clearRect.partial-expected.html": [ + "ac75105cecbe93e46b60596346795f1817fd9a68", + [] + ], "2d.layer.clip-inside-and-outside-expected.html": [ "14e6d56245c0e0687cdaa050869175df1037d1c7", [] @@ -440870,104 +447744,52 @@ "60f78d80965fd0dec9ea11bc21d3652fc3d7bad1", [] ], - "2d.layer.global-filter-expected.html": [ - "88057fc354a4e593191a4b3d5c94cdfa7d466126", - [] - ], - "2d.layer.global-states.alpha-expected.html": [ - "0666e3098a79e1b54d2155f9af1b6c0f18978f7e", - [] - ], - "2d.layer.global-states.alpha.blending-expected.html": [ - "8a450275889487c7975f14b1b203170ed5d9a089", - [] - ], - "2d.layer.global-states.alpha.blending.shadow-expected.html": [ - "f7b633b35f6c02923f88b5bfb67c374e1cfaa3d8", - [] - ], - "2d.layer.global-states.alpha.composite-expected.html": [ - "951049e638c818182da1aa3ed3296a152dfb798f", - [] - ], - "2d.layer.global-states.alpha.composite.shadow-expected.html": [ - "0ae93871f522e3efbcec315f054327cad7c02268", + "2d.layer.ctm.filter-expected.html": [ + "5fc1ac9acd5ec1b6132fb57a0c34e74a835f3372", [] ], - "2d.layer.global-states.alpha.shadow-expected.html": [ - "6f764c500176564f313a10c90332311fbfe88900", + "2d.layer.ctm.resetTransform-expected.html": [ + "fd4c1746c755b631da3b92428139a7cb29f81083", [] ], - "2d.layer.global-states.blending-expected.html": [ - "33fdf46a28711a9c2a5fe88108fef23513a81f9b", + "2d.layer.ctm.setTransform-expected.html": [ + "45a3d095e13a87bb4b8827a13e580de14b2e09ad", [] ], - "2d.layer.global-states.blending.shadow-expected.html": [ - "6f969074f93c49d72be2c3289e8081dba2435b90", + "2d.layer.ctm.shadow-in-transformed-layer-expected.html": [ + "312ca19b4c24450160749386634aaef4794bb05b", [] ], - "2d.layer.global-states.composite-expected.html": [ - "ed7669c4cfabd17b7bf9e4302c4a65fdc4a7bb3a", + "2d.layer.drawImage-expected.html": [ + "26f6e752149102af7cd3bda76045092545712ba4", [] ], - "2d.layer.global-states.composite.shadow-expected.html": [ - "b687c27f4715dd77beb55a46f6466c41427ded65", + "2d.layer.flush-on-frame-presentation-expected.html": [ + "532c29576cff610107dec60f91ea8dd2231df888", [] ], - "2d.layer.global-states.filter.alpha-expected.html": [ - "f304700feb32ca8fdea1f0b2254dcd7f36735379", - [] - ], - "2d.layer.global-states.filter.alpha.blending-expected.html": [ - "7c91ce42293771932f84301de8d51d3c513c0d62", - [] - ], - "2d.layer.global-states.filter.alpha.blending.shadow-expected.html": [ - "62942ffeaecb91b1c0eb97eaa7c5c658167f0cf8", - [] - ], - "2d.layer.global-states.filter.alpha.composite-expected.html": [ - "8e0d98648ea721c720a678a161d0053d8d395cf8", - [] - ], - "2d.layer.global-states.filter.alpha.composite.shadow-expected.html": [ - "a64997254626c6551aff04f584bbf9db3ce34209", - [] - ], - "2d.layer.global-states.filter.alpha.shadow-expected.html": [ - "169baee29b986f3dc1600c81931a8ce86353eec7", - [] - ], - "2d.layer.global-states.filter.blending-expected.html": [ - "f81dcf72dc2e2d42e8bc7a1b26f72eed67972ae7", - [] - ], - "2d.layer.global-states.filter.blending.shadow-expected.html": [ - "91f3725f8ec0119eeabe3af58a3420405056194f", - [] - ], - "2d.layer.global-states.filter.composite-expected.html": [ - "97e85a1593b63c24fb7b708b5c28fdc3beb85a0f", + "2d.layer.global-filter-expected.html": [ + "88057fc354a4e593191a4b3d5c94cdfa7d466126", [] ], - "2d.layer.global-states.filter.composite.shadow-expected.html": [ - "4716bb2760f4ddc7d190585ebcb415af138dc2d4", + "2d.layer.global-states.filter.no-transform-expected.html": [ + "c57e256847846ac136679ad6455ed6b3b8f566a3", [] ], - "2d.layer.global-states.filter.no-global-states-expected.html": [ - "e56fe0b3602d05f394436482449ba3387e0e4ca4", + "2d.layer.global-states.filter.rotation-expected.html": [ + "650a40bb80c1409b6b8f6effaa10ad7baf8d45f2", [] ], - "2d.layer.global-states.filter.shadow-expected.html": [ - "13ba2dd4cde61db22806f2319ec5cbefac724bb8", + "2d.layer.global-states.no-transform-expected.html": [ + "ad6f64043f6a175b105db4313d46c64d18f417eb", [] ], - "2d.layer.global-states.no-global-states-expected.html": [ - "b91a2ae8b52c2570325c951df61003c3989aaf70", + "2d.layer.global-states.rotation-expected.html": [ + "376504488c392ea6f58f415da8f03faafafb41f2", [] ], - "2d.layer.global-states.shadow-expected.html": [ - "835e9d420ac3494fe603b077dbe5d4226e004a8a", + "2d.layer.globalCompositeOperation-expected.html": [ + "02a8915c0b530b779842e1b10e4e7663e1de8598", [] ], "2d.layer.nested-expected.html": [ @@ -440978,32 +447800,20 @@ "8b53e2dc7619126ffa3e5aa8cb3a24497c0b5383", [] ], - "2d.layer.opaque-canvas-expected.html": [ - "89c85de1e5cbad6bccef23a88e9de78de94293c4", - [] - ], - "2d.layer.render-opportunities.createImageBitmap-expected.html": [ - "de03ea6392a5db71e0cf80e4cc503882de9e98b0", - [] - ], - "2d.layer.render-opportunities.drawImage-expected.html": [ - "378f85636b8aec917ba57317a8a30ac0aee4cdc2", - [] - ], - "2d.layer.render-opportunities.getImageData-expected.html": [ - "919a75911e701d4fef5508a51f3c5966e3b7745f", + "2d.layer.non-invertible-matrix-expected.html": [ + "0d61a3e6091a8596535b6f8ed3acc6f28b8601fa", [] ], - "2d.layer.render-opportunities.requestAnimationFrame-expected.html": [ - "9ec5b605154b6285aee119ff77a8f857fda8fc4f", + "2d.layer.non-invertible-matrix.shadow-expected.html": [ + "0cb7e929272ba0e974492eeb4a64cf731efc77e0", [] ], - "2d.layer.render-opportunities.toBlob-expected.html": [ - "bc4cc28560d6e7840ac276a316d9a296eaa6c293", + "2d.layer.non-invertible-matrix.with-render-states-and-filter-expected.html": [ + "10bfc7a19b36ba1b3af4b47ec033caf85fc8c902", [] ], - "2d.layer.render-opportunities.toDataURL-expected.html": [ - "49309991cb52fc7073c0153fe34cbf0b9cd0243b", + "2d.layer.opaque-canvas-expected.html": [ + "89c85de1e5cbad6bccef23a88e9de78de94293c4", [] ], "2d.layer.reset-expected.html": [ @@ -441033,14 +447843,6 @@ "2d.layer.shadow-from-outside-canvas.short-distance-with-clipping-expected.html": [ "024fc8c9a4aafd32d125bb50a6a2a02f1879fa76", [] - ], - "2d.layer.unclosed-expected.html": [ - "625630f5e6b1d09adffc4fcbb151da2b1fbe0032", - [] - ], - "2d.layer.unclosed-nested-expected.html": [ - "5e90134a2505d39da1285122f2df86fe05c8f027", - [] ] }, "manual": { @@ -441187,6 +447989,14 @@ "caf6b53ce39f2fa61c43b35f6c91c6954e7350d6", [] ], + "svg-filter-lh-rlh-expected.html": [ + "d183f6940deb4399186770a4e97bb136e05f5f61", + [] + ], + "svg-filter.svg": [ + "a783a3eb15dbbab1395539e1d6597551c0bd62da", + [] + ], "tentative": { "canvas-filter-object-blur-expected.html": [ "ae8911b2de39e593c2ef262ed9cd5eaa70b5bf0c", @@ -441201,7 +448011,7 @@ [] ], "canvas-filter-object-turbulence-expected.html": [ - "ff0eebe2e043c77beb0a5ea98d465b091ec6b33e", + "ea5600b0062dab5e2d39e584df22996ab31788c1", [] ], "idl-conversions": { @@ -441288,6 +448098,16 @@ [] ] }, + "layers": { + "unclosed-layers-expected.html": [ + "873869ea726db8e72a1b6446eef386216bb7b169", + [] + ], + "unclosed-nested-layers-expected.html": [ + "8557441f7e2a9f788475f63c8cb936daaa2afb6d", + [] + ] + }, "line-styles": { "canvas_linestyles_linecap_001-ref.htm": [ "f85af9aab2e509416e5105323c82b7bb8da28277", @@ -441722,6 +448542,10 @@ ] }, "reset": { + "2d.reset.after-rasterization-expected.html": [ + "048c6fca015015fbb266c426b172160e69cc47c0", + [] + ], "2d.reset.render.drop_shadow-expected.html": [ "182f7e40cd088ce569d9ca41bdc351c486548ef8", [] @@ -441749,6 +448573,10 @@ "2d.reset.state.clip-expected.html": [ "974b37fab4ecf087a518b14306ade81b4f8c924f", [] + ], + "WEB_FEATURES.yml": [ + "0787db18f81684193cb22fbb6dcf2c9f83d6df94", + [] ] }, "shadows": { @@ -441810,6 +448638,14 @@ "fb3b5b830d345d2aa858e41673e08f99977baf08", [] ], + "2d.text.drawing.style.reset.fontKerning.none2-expected.html": [ + "5b64983325343a08b5fce7b1273952cbd2695911", + [] + ], + "2d.text.fontVariantCaps.after.reset.font-expected.html": [ + "049f9a82f440293b1a4c3db160e7b5f5d17050a3", + [] + ], "2d.text.fontVariantCaps1-expected.html": [ "e2cef0d77a64b17657bdfe99194930c5328cc3e8", [] @@ -441830,6 +448666,14 @@ "af9c736aea7f9b20f4fd09522a8aa2dd25a11ef1", [] ], + "2d.text.writingmode-expected.html": [ + "d7003a2a08ad583395e06b8f8f6674afe3728e7b", + [] + ], + "WEB_FEATURES.yml": [ + "1d9e4bab82191d72c374c7399e666bd6bfe42bc2", + [] + ], "reference": { "direction-default-ref.html": [ "cef6df259c4801e93e7ce8dd1692e6f3157d77bc", @@ -441878,28 +448722,60 @@ ] }, "filters": { + "2d.filter.canvasFilterObject.componentTransfer.discrete.tentative-expected.html": [ + "2b1c1c1c0768b40e50ccd7c030adff59913a4d5e", + [] + ], + "2d.filter.canvasFilterObject.componentTransfer.gamma.tentative-expected.html": [ + "5adc9f53e206b76fc9b729d86d2a85e52c65d67b", + [] + ], + "2d.filter.canvasFilterObject.componentTransfer.identity.tentative-expected.html": [ + "895d531206c9fe2e649dc841a95de675be60c32a", + [] + ], + "2d.filter.canvasFilterObject.componentTransfer.linear.tentative-expected.html": [ + "c4ad790d56ea891cd1f49c35f0d5e5fc4c903539", + [] + ], + "2d.filter.canvasFilterObject.componentTransfer.table.tentative-expected.html": [ + "29e250614c2f5db7d0920b8d86313b920ee4326a", + [] + ], "2d.filter.canvasFilterObject.dropShadow.tentative-expected.html": [ "86c5710132f348bd3e2332983d7211f4b3315cdb", [] ], - "2d.filter.canvasFilterObject.gaussianBlur.tentative.isotropic-expected.html": [ - "f9571f208ea843b11bc18dfe142c08a950571ff7", + "2d.filter.canvasFilterObject.gaussianBlur.tentative-expected.html": [ + "c1ca0ab46f8f086c8ca90c5018234108d8b4e707", [] ], - "2d.filter.canvasFilterObject.gaussianBlur.tentative.mostly-x-expected.html": [ - "e76613271f3971ac267e13a6a36fe87036902a25", + "2d.filter.layers.componentTransfer.discrete-expected.html": [ + "8419953b3d263ba60fde03e9048a4edb4554d536", [] ], - "2d.filter.canvasFilterObject.gaussianBlur.tentative.mostly-y-expected.html": [ - "0f214fca9fdf37aba06dc20425c85d84c9bf2b19", + "2d.filter.layers.componentTransfer.gamma-expected.html": [ + "3e5d98089677d08e99356241463a30687320490a", [] ], - "2d.filter.canvasFilterObject.gaussianBlur.tentative.x-only-expected.html": [ - "285a6417266212d28aec1515a9d7c5a339d47338", + "2d.filter.layers.componentTransfer.identity-expected.html": [ + "9f1439f37b6e63c8ff6eb575bb1d65a9644c00f3", [] ], - "2d.filter.canvasFilterObject.gaussianBlur.tentative.y-only-expected.html": [ - "d59945b5da6da751480b8d4361aa26670d69b3cc", + "2d.filter.layers.componentTransfer.linear-expected.html": [ + "f922055ff26807e85e93bee9b9a8170c34ae7c5f", + [] + ], + "2d.filter.layers.componentTransfer.table-expected.html": [ + "0f6736d87d4f4f504b928da817a5a2ec8344a19e", + [] + ], + "2d.filter.layers.dropShadow-expected.html": [ + "1719d99b4a7f4cea868b97b518caadde3bc18c26", + [] + ], + "2d.filter.layers.gaussianBlur-expected.html": [ + "f24e9d0dba50d365877a6cdaea6e903ddcbd939f", [] ] }, @@ -441932,6 +448808,14 @@ "1823f789839a973121269406f387ae8a66b6f8e1", [] ], + "2d.layer.clearRect.full-expected.html": [ + "5a47f8e11884e0905cd85c5f19bc6da1b303e04e", + [] + ], + "2d.layer.clearRect.partial-expected.html": [ + "ac75105cecbe93e46b60596346795f1817fd9a68", + [] + ], "2d.layer.clip-inside-and-outside-expected.html": [ "14e6d56245c0e0687cdaa050869175df1037d1c7", [] @@ -441960,104 +448844,48 @@ "60f78d80965fd0dec9ea11bc21d3652fc3d7bad1", [] ], - "2d.layer.global-filter-expected.html": [ - "88057fc354a4e593191a4b3d5c94cdfa7d466126", - [] - ], - "2d.layer.global-states.alpha-expected.html": [ - "0666e3098a79e1b54d2155f9af1b6c0f18978f7e", - [] - ], - "2d.layer.global-states.alpha.blending-expected.html": [ - "8a450275889487c7975f14b1b203170ed5d9a089", - [] - ], - "2d.layer.global-states.alpha.blending.shadow-expected.html": [ - "f7b633b35f6c02923f88b5bfb67c374e1cfaa3d8", - [] - ], - "2d.layer.global-states.alpha.composite-expected.html": [ - "951049e638c818182da1aa3ed3296a152dfb798f", - [] - ], - "2d.layer.global-states.alpha.composite.shadow-expected.html": [ - "0ae93871f522e3efbcec315f054327cad7c02268", - [] - ], - "2d.layer.global-states.alpha.shadow-expected.html": [ - "6f764c500176564f313a10c90332311fbfe88900", - [] - ], - "2d.layer.global-states.blending-expected.html": [ - "33fdf46a28711a9c2a5fe88108fef23513a81f9b", - [] - ], - "2d.layer.global-states.blending.shadow-expected.html": [ - "6f969074f93c49d72be2c3289e8081dba2435b90", - [] - ], - "2d.layer.global-states.composite-expected.html": [ - "ed7669c4cfabd17b7bf9e4302c4a65fdc4a7bb3a", - [] - ], - "2d.layer.global-states.composite.shadow-expected.html": [ - "b687c27f4715dd77beb55a46f6466c41427ded65", + "2d.layer.ctm.filter-expected.html": [ + "5fc1ac9acd5ec1b6132fb57a0c34e74a835f3372", [] ], - "2d.layer.global-states.filter.alpha-expected.html": [ - "f304700feb32ca8fdea1f0b2254dcd7f36735379", + "2d.layer.ctm.resetTransform-expected.html": [ + "fd4c1746c755b631da3b92428139a7cb29f81083", [] ], - "2d.layer.global-states.filter.alpha.blending-expected.html": [ - "7c91ce42293771932f84301de8d51d3c513c0d62", + "2d.layer.ctm.setTransform-expected.html": [ + "45a3d095e13a87bb4b8827a13e580de14b2e09ad", [] ], - "2d.layer.global-states.filter.alpha.blending.shadow-expected.html": [ - "62942ffeaecb91b1c0eb97eaa7c5c658167f0cf8", + "2d.layer.ctm.shadow-in-transformed-layer-expected.html": [ + "312ca19b4c24450160749386634aaef4794bb05b", [] ], - "2d.layer.global-states.filter.alpha.composite-expected.html": [ - "8e0d98648ea721c720a678a161d0053d8d395cf8", + "2d.layer.drawImage-expected.html": [ + "26f6e752149102af7cd3bda76045092545712ba4", [] ], - "2d.layer.global-states.filter.alpha.composite.shadow-expected.html": [ - "a64997254626c6551aff04f584bbf9db3ce34209", - [] - ], - "2d.layer.global-states.filter.alpha.shadow-expected.html": [ - "169baee29b986f3dc1600c81931a8ce86353eec7", - [] - ], - "2d.layer.global-states.filter.blending-expected.html": [ - "f81dcf72dc2e2d42e8bc7a1b26f72eed67972ae7", - [] - ], - "2d.layer.global-states.filter.blending.shadow-expected.html": [ - "91f3725f8ec0119eeabe3af58a3420405056194f", - [] - ], - "2d.layer.global-states.filter.composite-expected.html": [ - "97e85a1593b63c24fb7b708b5c28fdc3beb85a0f", + "2d.layer.global-filter-expected.html": [ + "88057fc354a4e593191a4b3d5c94cdfa7d466126", [] ], - "2d.layer.global-states.filter.composite.shadow-expected.html": [ - "4716bb2760f4ddc7d190585ebcb415af138dc2d4", + "2d.layer.global-states.filter.no-transform-expected.html": [ + "c57e256847846ac136679ad6455ed6b3b8f566a3", [] ], - "2d.layer.global-states.filter.no-global-states-expected.html": [ - "e56fe0b3602d05f394436482449ba3387e0e4ca4", + "2d.layer.global-states.filter.rotation-expected.html": [ + "650a40bb80c1409b6b8f6effaa10ad7baf8d45f2", [] ], - "2d.layer.global-states.filter.shadow-expected.html": [ - "13ba2dd4cde61db22806f2319ec5cbefac724bb8", + "2d.layer.global-states.no-transform-expected.html": [ + "ad6f64043f6a175b105db4313d46c64d18f417eb", [] ], - "2d.layer.global-states.no-global-states-expected.html": [ - "b91a2ae8b52c2570325c951df61003c3989aaf70", + "2d.layer.global-states.rotation-expected.html": [ + "376504488c392ea6f58f415da8f03faafafb41f2", [] ], - "2d.layer.global-states.shadow-expected.html": [ - "835e9d420ac3494fe603b077dbe5d4226e004a8a", + "2d.layer.globalCompositeOperation-expected.html": [ + "02a8915c0b530b779842e1b10e4e7663e1de8598", [] ], "2d.layer.nested-expected.html": [ @@ -442068,24 +448896,20 @@ "8b53e2dc7619126ffa3e5aa8cb3a24497c0b5383", [] ], - "2d.layer.opaque-canvas-expected.html": [ - "89c85de1e5cbad6bccef23a88e9de78de94293c4", - [] - ], - "2d.layer.render-opportunities.convertToBlob-expected.html": [ - "12b12519f16c7e908140ae920086aedcff5707e1", + "2d.layer.non-invertible-matrix-expected.html": [ + "0d61a3e6091a8596535b6f8ed3acc6f28b8601fa", [] ], - "2d.layer.render-opportunities.createImageBitmap-expected.html": [ - "de03ea6392a5db71e0cf80e4cc503882de9e98b0", + "2d.layer.non-invertible-matrix.shadow-expected.html": [ + "0cb7e929272ba0e974492eeb4a64cf731efc77e0", [] ], - "2d.layer.render-opportunities.drawImage-expected.html": [ - "378f85636b8aec917ba57317a8a30ac0aee4cdc2", + "2d.layer.non-invertible-matrix.with-render-states-and-filter-expected.html": [ + "10bfc7a19b36ba1b3af4b47ec033caf85fc8c902", [] ], - "2d.layer.render-opportunities.getImageData-expected.html": [ - "919a75911e701d4fef5508a51f3c5966e3b7745f", + "2d.layer.opaque-canvas-expected.html": [ + "89c85de1e5cbad6bccef23a88e9de78de94293c4", [] ], "2d.layer.reset-expected.html": [ @@ -442115,14 +448939,6 @@ "2d.layer.shadow-from-outside-canvas.short-distance-with-clipping-expected.html": [ "024fc8c9a4aafd32d125bb50a6a2a02f1879fa76", [] - ], - "2d.layer.unclosed-expected.html": [ - "625630f5e6b1d09adffc4fcbb151da2b1fbe0032", - [] - ], - "2d.layer.unclosed-nested-expected.html": [ - "5e90134a2505d39da1285122f2df86fe05c8f027", - [] ] }, "manual": { @@ -442131,6 +448947,16 @@ "cb2e2458030f53ddbe1d66bf3115284733c68519", [] ] + }, + "layers": { + "unclosed-layers-expected.html": [ + "873869ea726db8e72a1b6446eef386216bb7b169", + [] + ], + "unclosed-nested-layers-expected.html": [ + "8557441f7e2a9f788475f63c8cb936daaa2afb6d", + [] + ] } }, "path-objects": { @@ -442150,6 +448976,10 @@ ] }, "reset": { + "2d.reset.after-rasterization-expected.html": [ + "048c6fca015015fbb266c426b172160e69cc47c0", + [] + ], "2d.reset.render.drop_shadow-expected.html": [ "182f7e40cd088ce569d9ca41bdc351c486548ef8", [] @@ -442177,6 +449007,10 @@ "2d.reset.state.clip-expected.html": [ "974b37fab4ecf087a518b14306ade81b4f8c924f", [] + ], + "WEB_FEATURES.yml": [ + "0787db18f81684193cb22fbb6dcf2c9f83d6df94", + [] ] }, "shadows": { @@ -442238,6 +449072,14 @@ "fb3b5b830d345d2aa858e41673e08f99977baf08", [] ], + "2d.text.drawing.style.reset.fontKerning.none2-expected.html": [ + "5b64983325343a08b5fce7b1273952cbd2695911", + [] + ], + "2d.text.fontVariantCaps.after.reset.font-expected.html": [ + "049f9a82f440293b1a4c3db160e7b5f5d17050a3", + [] + ], "2d.text.fontVariantCaps1-expected.html": [ "e2cef0d77a64b17657bdfe99194930c5328cc3e8", [] @@ -442262,6 +449104,10 @@ "af9c736aea7f9b20f4fd09522a8aa2dd25a11ef1", [] ], + "WEB_FEATURES.yml": [ + "1d9e4bab82191d72c374c7399e666bd6bfe42bc2", + [] + ], "canvas.2d.fontStretch-ref.html": [ "00ecdccad3743db0d0a1ec99850f80ea7964d512", [] @@ -442316,7 +449162,7 @@ }, "tools": { "gentest.py": [ - "36cb7fe0f6cde15a9cf3fe6fe1b92d4d8b114afa", + "784005fc9a308812507e7cf4bb91fdf805054578", [] ], "gentest_union.py": [ @@ -442328,48 +449174,76 @@ [] ], "gentestutilsunion.py": [ - "cf141f2f07475edb4912b6846aa67468648a6a74", + "a453c6ff9243be3bbc229bc7c0e2beed75fb2225", [] ], "name2dir-canvas.yaml": [ - "1e0caff5b982da5ef914aaae6e376bf749ac412c", + "4081f674c6d3458dd08b06bcb0da55631fe749d2", [] ], "name2dir-offscreen.yaml": [ - "c52acb793ba717f02a37fe8692e95941b2f7bf34", + "6e4b3f42b2b3615a057fe61935560d826e773c64", [] ], "name2dir.yaml": [ - "ae69c153780ed2398466bfa12287462bf04c3bfa", + "a62fab3a04e68bfa30cd1dbefcef358504aebb43", [] ], "templates": { "reftest.html": [ - "4c9affbbbbf43535300a68cb22139fad5f2a1691", + "f68d4c4621696d73cd77906e5c265c0e5a90fdf2", [] ], "reftest_element.html": [ - "6684e9c615bdb74e0d4076a522d1c68912863ff2", + "8f403f84f2e5965bf024ee78846598d59800a1ad", + [] + ], + "reftest_element_grid.html": [ + "d1c90bd99356923abad2d215fcd61ad861ad3ad5", + [] + ], + "reftest_grid.html": [ + "9fd42b7aa599f8c840325eb64a849e34e4cee121", [] ], "reftest_offscreen.html": [ - "1d0d93dfa1619399b61483ad15ab128af4473fe4", + "2cd8e9750da910eeebb52e5a1d57a24058cf2901", + [] + ], + "reftest_offscreen_grid.html": [ + "d001260beaa5a5fbe02cfd757ab508bfb9c9c614", [] ], "reftest_worker.html": [ - "e636d3634bab9d7e61c7ced53f14bd727746d304", + "50aa29d00dd00681d33e0ff163d2e5b8c954a899", + [] + ], + "reftest_worker_grid.html": [ + "652dddffd89b3b1f98738dff7d8b347985b8a573", [] ], "testharness_element.html": [ - "56cde7936a944771ab5026de71191b45f529d559", + "c8de772ea64183c11d4e91949064937f05d15235", + [] + ], + "testharness_element_grid.html": [ + "50d75238923ca3cebd3b27e8d6e9f0b8fc7daff9", [] ], "testharness_offscreen.html": [ - "8ebbff77a6c13f18aca58c3be0859496cc49bb30", + "68147680e13318a2c3e646eb330863547280573b", + [] + ], + "testharness_offscreen_grid.html": [ + "31d86e705a09fcd0fbbdd78a92cd1ccebb943afb", [] ], "testharness_worker.js": [ - "f1f04e7bb6bcf370e0db53f08dd38899e72e55ab", + "570d479a0a6d6231885b2353c851b2b709b6054a", + [] + ], + "testharness_worker_grid.js": [ + "53c3b69cb669e077e4de85fdbd0cb25e60ed114b", [] ] }, @@ -442380,56 +449254,48 @@ "yaml": { "element": { "meta.yaml": [ - "5fd8b68498ac3fa8e8bc79d58738c503e3517193", - [] - ], - "the-canvas-element.yaml": [ - "1ecf8ccdbf17b9d54798d64680fbc04c7c0135ed", + "358333d96e0c5a9b26ad65b5fedcb2a3ce604858", [] ] }, "offscreen": { "meta.yaml": [ - "7b44fd9f2677fc63ce974a426025f6646cf9e3c8", - [] - ], - "the-offscreen-canvas.yaml": [ - "ccabe094b8a7f8a187feac5d93faf9ad8569ea82", + "9c1cfbfd0fc80c0eeed751f7dff3bdff64d0df43", [] ] } }, "yaml-new": { "color_space.yaml": [ - "39556caf0a4bd5c2fa64b888f4a4b0d08b300ace", + "56f6d01d308de00869b438e7fa6515161345354b", [] ], "compositing.yaml": [ - "bd7fae1d62911835a74cb3315b708bff89ff9562", + "6bd0aaad8a51bb6d5eb90163886f8439f041a0b0", [] ], "conformance_requirements.yaml": [ - "3483d115f4616260e627926e2f4cc1c18f15dcc0", + "a070c0a6ef99492c33cc3d01e70a55e7e3a7386f", [] ], "drawing-images-to-the-canvas.yaml": [ - "93c556288d7125988f3190c0ecd8e3ce2e71f3fe", + "7ebe9cca85ea7be514093c3238579852535320fe", [] ], "drawing-rectangles-to-the-canvas.yaml": [ - "408e932abe86b31ce3e8d88672e04abed12b74b2", + "cb7ae0d858f5ef958f708f2e2ed622e8fa09af17", [] ], "fill-and-stroke-styles.yaml": [ - "c992af6e7c14b14f89615aca17dc2e5694110dff", + "72d027a634e71aa84e24b34a6d483d91f594b6de", [] ], "filters.yaml": [ - "01c83a33e2c0b92fc46b69039f47a4a867f809b3", + "f83776e38886273851c735fc9762e226dc5a9dc4", [] ], "layers.yaml": [ - "d255a834f6c5534c066ce85cd8ca5d087a7de600", + "59030a69914b0c6556b9cbef50f07601414921ed", [] ], "line-styles.yaml": [ @@ -442437,31 +449303,31 @@ [] ], "path-objects.yaml": [ - "673c9085744279e8331afe53cb05f72777782425", + "874f7a25c3d8d386a006e3cded7874975ac6a60d", [] ], "pixel-manipulation.yaml": [ - "0643b047b173f1ea31b87af2c11496618a070380", + "6721f5ffde52ac54372d6e6dbb6f0511baf58a3f", [] ], "reset.yaml": [ - "086fb04e04ae34763294879f302086730afe7f69", - [] - ], - "scroll.yaml": [ - "dd088aa396f47e70a6e66b0b9c7d8ffca0fa0e1e", + "903f16b7cee4606e0bc5ee836b1850b902f12477", [] ], "shadows.yaml": [ - "953ab2c555d5ad9d46d52b6c74f09d344850982c", + "e42237dadbbab398419a761e5ebba217d7a94b7f", [] ], "text.yaml": [ - "ca945c2953c70899c3946146570dd49231cd07b5", + "5c6b9f8abc374e602fae8a7986fe9b66fa8d671d", [] ], "the-canvas-state.yaml": [ - "045208615436efec1596a2f14cb62f02fa8e470a", + "230e45f80a5901cae395ed1c4c848556e333073d", + [] + ], + "the-canvas.yaml": [ + "4153b8e2dfb748dcf57f64356d0e147979dac9c8", [] ], "transformations.yaml": [ @@ -442469,7 +449335,7 @@ [] ], "video.yaml": [ - "f9b48fb8daa2a247e9e22a18b5e891be3351bda9", + "ca8a1ab8161bef09e550a5f988d23b5ee1e72991", [] ] } @@ -442489,7 +449355,7 @@ }, "cross-origin-embedder-policy": { "META.yml": [ - "dc7010880b61d455c7ecdc43cbc2a4e00081bd19", + "066fcc2081b0968d58a527fcfa5e47a9c8d30aa0", [] ], "README.md": [ @@ -442827,7 +449693,7 @@ }, "cross-origin-opener-policy": { "META.yml": [ - "b9d578d22f005fd46b503da335202abae340c54c", + "69c67da45955f2a2e1ace86cbdc208c425f8f3b1", [] ], "README.md": [ @@ -443077,7 +449943,7 @@ }, "resources": { "reporting-common.js": [ - "70bb4897f5082d84bd26f618dd8212d8f17e0862", + "accb6faaec5bec26e4a3f648e1d3dba66d12ef27", [] ], "test-access-property.js": [ @@ -443119,6 +449985,10 @@ "f13e76869023ef5604ab7be083a37b6ff05b1b85", [] ], + "noopener-helper.js": [ + "1f9b07750715354fc91d5091970c5a00b1362146", + [] + ], "popup-test.js": [ "c2717bb13546b168374cb37ac5be12a0328dd51c", [] @@ -443225,7 +450095,63 @@ } } }, + "document-isolation-policy": { + "README.md": [ + "59f039ed3e0596e02c55673bc1ca97e82311f358", + [] + ], + "isolate-and-require-corp-load-from-cache-storage.tentative.https.html.headers": [ + "33ff090f6dadf3a4e84fb26982a68df3e3975f35", + [] + ], + "isolate-and-require-corp.tentative.https.html.headers": [ + "bcc6f0734d580474a8bd25f25d4662f175cdc39b", + [] + ], + "no-secure-context.tentative.html.headers": [ + "bcc6f0734d580474a8bd25f25d4662f175cdc39b", + [] + ], + "resources": { + "fetch-and-create-url.html": [ + "6b0f96221dc47c367a53ffac3b07276070f71892", + [] + ], + "nothing-cross-origin-corp.js": [ + "662e9364f99ef5ab103932aabd9c3d5aced0ac38", + [] + ], + "nothing-cross-origin-corp.js.headers": [ + "1b88136c01cbca187f68799b0a54169b34978ac7", + [] + ], + "nothing-no-corp.js": [ + "662e9364f99ef5ab103932aabd9c3d5aced0ac38", + [] + ], + "shared-worker-fetch.js.py": [ + "bf46cd291d4b955c35082e8f611b772d70267253", + [] + ], + "shared-worker.js": [ + "c5f2c3cc2c3b5fe88d59fb86ed112c2fa2964d69", + [] + ], + "sw-store-to-cache-storage.js": [ + "00b9e9395a7ec2171b3fee9d75f6ccb1d46ee60f", + [] + ], + "worker-support.js": [ + "349b4eb9117b1c397e656435c8c1adf85964baa8", + [] + ] + } + }, "dom": { + "WEB_FEATURES.yml": [ + "5c9e27d29745ca9046d04c1dea58af2f8b3fd801", + [] + ], "directionality": { "bdi-element-invalid-dir-ref.html": [ "88ccd4b9b53ee27a8450bd77ec794861fc01a708", @@ -443258,6 +450184,14 @@ "94e9a4f1908e4f4eb3216981a91c3c8174902fcb", [] ], + "cdata-iframe.xhtml": [ + "0c48cbef4fc323dd35ceae449f5494325fe4e1d3", + [] + ], + "dir-auto-dynamic-simple-ref.html": [ + "5a9a2f2484cef7a53fee96058ba7c61926b8a3c6", + [] + ], "dir-shadow-01-ref.html": [ "3462b908b3df0d5550e74fa2ea93e9b2ff959b9b", [] @@ -443419,11 +450353,15 @@ [] ], "dir-shadow-41-ref.html": [ - "b52e08df20e88ae91b6d38a6ff5a5e55d4b59ca3", + "79b844edbe513b49686bd720a6497b68e7cd25c7", + [] + ], + "dir-shadow-42-ref.html": [ + "8ea1100246005bc17400d6abc3ece2ee1dc5810a", [] ], "dir-shadow-utils.js": [ - "c7d89cf908286bf2ebad72abc59abe26949a209a", + "26fa30efe8f830f049d2c7c44a79b1dbcac35eaf", [] ], "dir_auto-EN-L-ref.html": [ @@ -443447,7 +450385,7 @@ [] ], "dir_auto-N-EN-ref.html": [ - "0d938b2e168beecdacecf479798079ac2a99c899", + "496d699d73c79cff07633af95c410e2c4ba0afa3", [] ], "dir_auto-N-L-ref.html": [ @@ -443795,10 +450733,14 @@ [] ], "reflection.js": [ - "a5f7b3fd0a08e60729192a62902a9e9f07805821", + "b2c3b30aae36b390a60c05b39901826ba71e0b1a", [] ], "render-blocking": { + "WEB_FEATURES.yml": [ + "36ab4f3010306b90fc1f47133087e94a3a0d445f", + [] + ], "support": { "dummy-1.js": [ "597772cf641d83b41f0e4238a1fa74a050f29d3c", @@ -443817,7 +450759,7 @@ [] ], "utils.js": [ - "9a890ab685c675ee5baca618ce5d85b367761760", + "944ef86d8ff71b46d431856fa2017119a61bf2a4", [] ] } @@ -444301,7 +451243,13 @@ "028.html": [ "ab5725ad00221196f48cd88d77803b472b53fcdc", [] - ] + ], + "support": { + "events.js": [ + "015cead3853c109f25ced64ba4e539fde4968a5d", + [] + ] + } }, "dropzone": { "001.xhtml": [ @@ -445886,10 +452834,6 @@ "d6aaa18ad76a540e019a5c6eb2b8a9868a785c51", [] ], - "dragdrop_support.js": [ - "f5a1d6417f313c08185131786d23906fde2aca6a", - [] - ], "fail.png": [ "b5933803338f770bdb1e6a7d433aeb640be85b08", [] @@ -447115,6 +454059,10 @@ } }, "the-hidden-attribute": { + "WEB_FEATURES.yml": [ + "73836a3bc66b79397258b73a94d577386f0ab81e", + [] + ], "hidden-1-ref.html": [ "7346ce919d210a740104ca5e82264bed8377c2d0", [] @@ -447503,7 +454451,7 @@ [] ], "resolve-url.js": [ - "74c4c2e9975d00c881add3b7d7e306bc6bbf502f", + "8422ea4b3c9788fb175f38522f4946ecaf7128ba", [] ], "resource.py": [ @@ -447529,6 +454477,10 @@ }, "interaction": { "focus": { + "WEB_FEATURES.yml": [ + "210e2d3f99aea03af1675a0ec7bd222a05ca0236", + [] + ], "document-level-focus-apis": { "support": { "popup.html": [ @@ -447560,6 +454512,10 @@ } }, "sequential-focus-navigation-and-the-tabindex-attribute": { + "WEB_FEATURES.yml": [ + "6d868044c9e8c31421a0ebc33b868974f5cf079c", + [] + ], "resources": { "frameset-using-page.html": [ "e3aedea246e6f38904a4835c99c530a4777f41a6", @@ -447665,6 +454621,30 @@ ] } }, + "meta": { + "resources": { + "gotRefreshed.html": [ + "c894269593d2851041f63c8dfc4dcaf3e4b4e1c0", + [] + ], + "refresh.99.html": [ + "ca4e3462772b32b9de9875e581260117f929445b", + [] + ], + "refresh1.99.html": [ + "76121cfd4046e9d95726b4bd7ecc938599d43b88", + [] + ], + "refresh1.html": [ + "14819dc3dbe742b5e7775f1abafb0f7c87226357", + [] + ], + "refresh1dotdot5dot.html": [ + "085b9e9ba71f0b0121b404f5bba1efb77e6abd03", + [] + ] + } + }, "obsolete": { "META.yml": [ "c1dd8dddf9eec3ab3fb58df01c549c251f3a3fdf", @@ -447686,6 +454666,12 @@ } }, "rendering": { + "bidi-rendering": { + "slot-no-isolate-001-ref.html": [ + "6675f0a16644c8f5cff7e1ba88953982031b37bc", + [] + ] + }, "bindings": { "the-button-element": { "button-type-menu-historical-ref.html": [ @@ -447722,6 +454708,10 @@ }, "non-replaced-elements": { "flow-content-0": { + "WEB_FEATURES.yml": [ + "831b257f72b1619f1f48dab7ed0324ddfa71717a", + [] + ], "div-align-ref.html": [ "da8e4d0dc1a866cb0539c8a8f2028fbd3ee1ebc5", [] @@ -448012,6 +455002,10 @@ "13b262a804ab781905b3e4d3483554d9dd95b4d8", [] ], + "fieldset-resize-ref.html": [ + "e77bb69d7fdd9152b1da7378bb3f451be0e215bc", + [] + ], "fieldset-shadow-dom.html": [ "3b46eb03c6c41bc616ebcc85bc6d635496e5eeed", [] @@ -448319,7 +455313,7 @@ }, "the-select-element": { "select-1-block-size-001-ref-2.html": [ - "385c2a75d427dde8ef0ba71cc777f298027423b9", + "52461231862cfc998ccdb7ce9423d54b59d9e17e", [] ], "select-1-block-size-ref.html": [ @@ -448330,6 +455324,10 @@ "26e5f33282192b10f56cd66fefeda2c1b9d9b389", [] ], + "select-button-min-height-001-ref.html": [ + "c35ad5fc420cd16baf2914d116f2e5a6e69fb96a", + [] + ], "select-empty-ref.html": [ "31ba23a5cf86f161b1204ea3f4c9fef4585af909", [] @@ -448374,7 +455372,7 @@ }, "support": { "test-ua-stylesheet.js": [ - "49757a36828476cc5fb4e0d7111607e54db54b0b", + "e23c9a672026ba91f10e89d9b02576fbd70b46cd", [] ] }, @@ -448385,8 +455383,8 @@ ] }, "the-details-element": { - "details-display-property-is-ignored-ref.html": [ - "6ebed6075de1e8cf62db7bee756b05d3e425e0ab", + "WEB_FEATURES.yml": [ + "b2a03da5103ec6c1b18064b2e979bf9e7d563ee1", [] ], "details-display-type-001-ref2.html": [ @@ -448405,6 +455403,10 @@ "baf242291b5ef22370d99f5ff8c0dd1b06c5842a", [] ], + "details-pseudo-elements-003-ref.html": [ + "e6c55cc141a3f27748df46c0bac2b191c6f61a4c", + [] + ], "details-revert-ref.html": [ "dc46b159012fd80c39b66e94935c210a11826487", [] @@ -448457,6 +455459,10 @@ ] }, "widgets": { + "WEB_FEATURES.yml": [ + "b4ae339c2f3301bc1845c39923c05095d9e48499", + [] + ], "appearance": { "appearance-animation-002-ref.html": [ "fab70234d2be44ea73de81456b3dff7aab44ad74", @@ -448476,6 +455482,18 @@ "243f0add0deb144ff4fc9d7c822c7b283aef9dba", [] ], + "block-in-inline-ref.html": [ + "57a06d7d836d44260dc019994b75e3983e365de1", + [] + ], + "button-dynamic-content-ref.html": [ + "732ee9185f630f444f8cdd70db8a1116067b513d", + [] + ], + "display-none-or-contents-ref.html": [ + "c20a3065e443ed09151be84d5f350a31fe0977c6", + [] + ], "inline-level-ref.html": [ "3784cc30dbee61cae594c92e59883c18142336ba", [] @@ -448533,6 +455551,14 @@ "5b2ea91fe5fa635c221adc8801605f3b14fb66c7", [] ], + "input-number-text-size-ref.html": [ + "6c831941f08516313cf542cd4665b0dc305afd50", + [] + ], + "input-password-background-suppresses-appearance-ref.html": [ + "33e0e6ac161007679a51f435951f579ab5dfaf09", + [] + ], "input-radio-disabled-checked-notref.html": [ "987e03cd92d7824e61cc75bbd723bd9583ab8fe1", [] @@ -448563,7 +455589,7 @@ }, "resources": { "common.js": [ - "4f9ec54dde884bacec55da02a8507676d1ca5081", + "fd4529e80aa45cf5aa260ac376f1289a3e2e93fe", [] ] }, @@ -448577,6 +455603,12 @@ } } }, + "select": { + "select-capitalize-sizing-ref.html": [ + "6371f213c100fc2185608793901996e5213ccd65", + [] + ] + }, "semantics": { "document-metadata": { "interactions-of-styling-and-scripting": { @@ -448647,6 +455679,10 @@ [] ], "resources": { + "302-no-Location-header-text-css.asis": [ + "ddf4898d3f0e4aa52335f9dfb0bd41d446ff92c7", + [] + ], "bad.css": [ "4e1fe36165c52792e3a3816962c36e6090f04f67", [] @@ -448679,6 +455715,22 @@ "796c55c42f6c305476d53d1ba9c4939cddb39f9e", [] ], + "stylesheet-bad-mime-type-empty.css": [ + "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", + [] + ], + "stylesheet-bad-mime-type-empty.css.headers": [ + "156209f9c81ff73b6aaf1a0734ef770ddf0a8e3e", + [] + ], + "stylesheet-bad-mime-type.css": [ + "e1b2552ffea7300e3ffba041dd3e5d3ab26c2c33", + [] + ], + "stylesheet-bad-mime-type.css.headers": [ + "156209f9c81ff73b6aaf1a0734ef770ddf0a8e3e", + [] + ], "stylesheet.css": [ "e1b2552ffea7300e3ffba041dd3e5d3ab26c2c33", [] @@ -448828,6 +455880,10 @@ } }, "media-elements": { + "WEB_FEATURES.yml": [ + "5730fe4715a896c4e93fd79b51da5a124cb9f03e", + [] + ], "autoplay-allowed-by-feature-policy.https.sub.html.headers": [ "08461fadc2888cbcdfcda533f2928f14a52ab44e", [] @@ -449250,46 +456306,6 @@ ] }, "the-canvas-element": { - "initial.colour.png": [ - "eeedd0ff05889ffd4468bf19a2e8e9e0a094201c", - [] - ], - "initial.reset.different.png": [ - "d83fdd55b154fddb0be785f1f163e30bbd9b6a3a", - [] - ], - "initial.reset.path.png": [ - "eeedd0ff05889ffd4468bf19a2e8e9e0a094201c", - [] - ], - "initial.reset.same.png": [ - "eeedd0ff05889ffd4468bf19a2e8e9e0a094201c", - [] - ], - "size.attributes.default.png": [ - "a72d047556a72dc83654077f88bd5ba271dc1a36", - [] - ], - "size.attributes.get.png": [ - "47830c83ea9dfbcfdf6ea7aad64bce33097c06f7", - [] - ], - "size.attributes.reflect.setcontent.png": [ - "47830c83ea9dfbcfdf6ea7aad64bce33097c06f7", - [] - ], - "size.attributes.reflect.setidl.png": [ - "47830c83ea9dfbcfdf6ea7aad64bce33097c06f7", - [] - ], - "size.attributes.removed.png": [ - "1ebf30d8aaaad5e9da7e1db964a548ea6fc75138", - [] - ], - "size.attributes.set.png": [ - "47830c83ea9dfbcfdf6ea7aad64bce33097c06f7", - [] - ], "size.attributes.style.png": [ "eeedd0ff05889ffd4468bf19a2e8e9e0a094201c", [] @@ -449334,6 +456350,10 @@ ] }, "the-iframe-element": { + "WEB_FEATURES.yml": [ + "a1ff481467e12dc791aff84c9d128d3bb3c7de8a", + [] + ], "change_child.html": [ "738ceee5293aaccd39e87d9f1fc0e0ba2a2f6b98", [] @@ -449399,8 +456419,8 @@ "bb625942f88c51d4eb6058586c96d574ec354e1d", [] ], - "sandbox-top-navigation-helper.js": [ - "7792c261309587a6434138dea98b80c74f411017", + "sandbox-top-navigation-helper.sub.js": [ + "bec8f6a64af5f44d020f0cfb8b0ec4938d6f7025", [] ], "subframe.html": [ @@ -449640,6 +456660,10 @@ "083aa90b4152f5294ce641309a1afa4db0a48cc3", [] ], + "WEB_FEATURES.yml": [ + "28d0ead2dbc3f9db5e7c2714cc72434b4bc367a2", + [] + ], "available-images-ref.html": [ "8061abae50899a2befe286723d8bd5c285b356ab", [] @@ -449832,6 +456856,18 @@ ] }, "the-object-element": { + "WEB_FEATURES.yml": [ + "d3411c2d8d2f45afdadc68967272102d2fdbbd4b", + [] + ], + "object-image-display-none-loading-for-print-ref.html": [ + "a6bf424400bf9eb72a1562cfee6345d028117de6", + [] + ], + "object-image-only-for-print-ref.html": [ + "c3e5d8d1c5ed202868602e8fdea57225be448dbf", + [] + ], "object-param-url-ref.html": [ "7eb9256b0f63af643eae5e7337cab7b8c5d9ffd9", [] @@ -449870,6 +456906,10 @@ [] ], "attributes-common-to-form-controls": { + "WEB_FEATURES.yml": [ + "457c9040053508f0a7d29ec4e1b94b53e3b1be04", + [] + ], "resources": { "dirname-iframe.html": [ "b5ed7e3d9a717746d9653c7d5f867f3acbf3e47f", @@ -449882,6 +456922,10 @@ } }, "constraints": { + "WEB_FEATURES.yml": [ + "93b4c5745fc7461b7e815a1d790243fb2ed4cb71", + [] + ], "support": { "validator.js": [ "aa43b3a2f6afd63b745bdb78fefc1b086628e5ef", @@ -449908,7 +456952,7 @@ [] ], "form-submission.py": [ - "f0c2d4cf61fed10f8854fc9b3d93d7099199a655", + "3f6079c5dc7fd912c9c7879a31dd2cd8daed4046", [] ], "form.html": [ @@ -449968,12 +457012,26 @@ ] }, "the-button-element": { + "WEB_FEATURES.yml": [ + "f5a2aeaf4f829af3560e13cede06368e9b03e931", + [] + ], "button-activate-frame.html": [ "37619d79123be6855744ab82d65f2e72fe56bf04", [] ] }, + "the-datalist-element": { + "input-text-focused-ref.html": [ + "df8ea576069cf84c3a01c996c618103bd9e91323", + [] + ] + }, "the-fieldset-element": { + "WEB_FEATURES.yml": [ + "912cb47c6d02d3ca01b930da37cd549afb69a5ee", + [] + ], "accessibility": { "README.md": [ "b238a023dc1344b9b35f0850bf75950e49edfdc7", @@ -449982,6 +457040,10 @@ } }, "the-form-element": { + "WEB_FEATURES.yml": [ + "04c20cb5ece542108f6c82693f6e144c55573f6b", + [] + ], "resources": { "form-no-action-with-base.html": [ "b3599a45e6aee71c086c17fcd6d0bedb72401ee9", @@ -450008,6 +457070,10 @@ } }, "the-input-element": { + "WEB_FEATURES.yml": [ + "4957615f2477552fb6075f1cc6e64915ecd743ce", + [] + ], "auto-direction-ref.html": [ "675ba509144515a44e06f39dd1ac727b4a2d2bc6", [] @@ -450101,7 +457167,25 @@ "meter-min-rendering-ref.html": [ "f253945968e49902d1f2c2d60d9d8cd230166c6b", [] - ] + ], + "reference": { + "meter-appearance-auto-even-less-good-value-rendering.html": [ + "854ec5d5e750d84b5fcf29e74be482e986e9cce2", + [] + ], + "meter-appearance-auto-optimum-value-rendering.html": [ + "4b0b819f95b6324cdf9114f34db95dc348da6388", + [] + ], + "meter-appearance-auto-rendering-ref.html": [ + "44e80ae81506a27b26899964165cfa6809fadec6", + [] + ], + "meter-appearance-auto-suboptimum-value-rendering-ref.html": [ + "bbffd4cf3aca01f67d5fc2c07360117fff04ad89", + [] + ] + } }, "the-option-element": { "dynamic-content-change-rendering-ref.html": [ @@ -450113,7 +457197,17 @@ [] ] }, + "the-output-element": { + "WEB_FEATURES.yml": [ + "2f7f8e8cc2d81246a26de7ab69184036883f6999", + [] + ] + }, "the-select-element": { + "WEB_FEATURES.yml": [ + "9695c9529424d612300127b3350254e15a05c27e", + [] + ], "reset-algorithm-rendering-ref.html": [ "acf192d1d55b7da110d04651093e3ebe0cd48214", [] @@ -450123,6 +457217,42 @@ "bba39898249d508b5e01741b3fb631a327d86858", [] ] + }, + "stylable-select": { + "closed-listbox-rendering-ref.html": [ + "d1a1f1bb61ff377679eac4c19efe0f8c4071a4ba", + [] + ], + "resources": { + "stylable-select-styles.css": [ + "0052b3863e2ef5de0048968e11312bba631f1264", + [] + ], + "stylable-select-utils.js": [ + "38e93459161422622e6e88ab39dbcbe55fb017e9", + [] + ] + }, + "select-child-button-and-datalist-ref.html": [ + "a27e662b1c4caba8633c807cb6051dd978415e02", + [] + ], + "select-icon-color-ref.html": [ + "575b42a200e382ba4d278638e2e45d762d30e7c6", + [] + ], + "select-open-invalidation-ref.html": [ + "fb609a7247e6413967c64c4017ade1970da184da", + [] + ], + "select-option-images-ref.html": [ + "814e01f8d8f8373ca776e679d37ba4e77619f984", + [] + ], + "select-size-multiple-new-content-ref.html": [ + "dccff7311d1c8c425ca4a199c5fb1e4ed6181a6e", + [] + ] } }, "the-selectlist-element": { @@ -450166,14 +457296,6 @@ "dda53db5bf859f4c5e00d578028d02236111b454", [] ], - "selectlist-option-arbitrary-content-displayed-ref.tentative.html": [ - "61b1c1a7108b93296022d24ca12348dd6d80384e", - [] - ], - "selectlist-option-arbitrary-content-not-displayed-ref.tentative.html": [ - "fa44198fff0a91dcab4ff722858a4f128e2960a1", - [] - ], "selectlist-option-label-rendering-ref.html": [ "1ab1d547228523e5f087d1faa55ebca35d5874dc", [] @@ -450226,6 +457348,10 @@ } }, "the-textarea-element": { + "WEB_FEATURES.yml": [ + "14479d4bb3d44a72130eb7008e93b7b379bab48f", + [] + ], "multiline-placeholder-ref.html": [ "0234ed64c9ad7155a42b254a5fe35a39535cbff8", [] @@ -450285,7 +457411,7 @@ [] ], "grouping-li-reftest-list-owner-menu-ref.html": [ - "2b1ea76656fdcacad2505c48d69f377a1a0e47d6", + "fce5538f5e01a2053edcde67fe48f24f48e1c7e3", [] ], "grouping-li-reftest-list-owner-mixed-ref.html": [ @@ -450376,6 +457502,10 @@ } }, "the-details-element": { + "WEB_FEATURES.yml": [ + "be3924a26adb1663caf3f964fe51d97e3fd695f2", + [] + ], "details-add-summary-ref.html": [ "14f2be232fb4aba0afb4542213331995fcb12575", [] @@ -450526,6 +457656,10 @@ "01eff8c4de5f1f5e6a951f177fd0e920ca289d4b", [] ], + "top-layer-remove-popover-attribute-ref.html": [ + "7aadaf51b72692f99f0e391d8c6a6be807e243c7", + [] + ], "top-layer-stacking-correct-order-remove-readd-ref.html": [ "392d1ca46ec175f841e06d5ca5e585a5a5743b9f", [] @@ -450547,7 +457681,7 @@ "invokers": { "resources": { "invoker-utils.js": [ - "317945502d4dcbb2f7ec298872a01becd9d47ddb", + "4261f9c0d32fa2911a3a8ce252246e55a655655f", [] ] } @@ -450646,6 +457780,32 @@ ] } }, + "permission-element": { + "bounded-css-properties-reftest-ref.html": [ + "c62ff5b24d66b2cc8499f7dfe891f307c7a186f3", + [] + ], + "bounded-sizes-reftest-ref.html": [ + "b186dd644581822f288d3c756d825203e2ed8330", + [] + ], + "display-css-property-reftest-ref.html": [ + "6a04c94c037ae5f6fe0d7fd4b2dcf7671eef7a4e", + [] + ], + "large-min-size-reftest-ref.html": [ + "0e97fe4f462be9c271fafbc9aa15525a11da0f9c", + [] + ], + "pseudo-elements-in-div-ref.html": [ + "38d0cc25a525ddd6d2d8253d1ef1e192d60c4866", + [] + ], + "pseudo-elements-ref.html": [ + "ca7ad2daa89a84d868d46c323a72714467604b50", + [] + ] + }, "popovers": { "WEB_FEATURES.yml": [ "e1b9f82de372b485f0bdc4f8b7ab56576048a4a5", @@ -450656,7 +457816,11 @@ [] ], "popover-anchor-display-ref.html": [ - "f701810da2d1b32d9506d9aa49a2827a2ba51055", + "646cf5c26639be186252f46ad44f2e49048d8f8f", + [] + ], + "popover-anchor-inset-rule-display-ref.html": [ + "1cd13d06935c0afa7d26f79d6a79ce239c0995ed", [] ], "popover-anchor-nested-display-ref.html": [ @@ -450713,11 +457877,15 @@ [] ], "popover-styles.css": [ - "df683c3c64f4de11c49c14b9dc53cc4165dff4a7", + "94b81609326d69ee69b33c8afdf234cb6cf45c0b", + [] + ], + "popover-top-layer-nesting.js": [ + "ace10b3f7bc47f32c04ad1435e1d2eb28f3ec3a0", [] ], "popover-utils.js": [ - "bfc1f89ec1003bfaeca1a7aea115140858a85717", + "96ac7e03f0e7fc6bdd3c44ef400b243dba8b735d", [] ] } @@ -450944,64 +458112,6 @@ ] } }, - "defer-script": { - "README.md": [ - "ac5c91c9a2eab22e4815cab7a7603359d2faceb4", - [] - ], - "resources": { - "async-script-1.js": [ - "267f324aa650154ff8fc787124132774b91e2259", - [] - ], - "defer-script-1.js": [ - "1a0524f4fbd271f9ffed2d8d37d75682620def47", - [] - ], - "defer-script-2.js": [ - "d644e37f182bb3211659f5a5543b44e16550e74f", - [] - ], - "document-open-write-close.js": [ - "80703d5c0ef1cebdaf9e5b91ff42d75e92c494a5", - [] - ], - "document-open-write.js": [ - "178c374df6999fce51a557701842a857cdae46f9", - [] - ], - "document-write-close.js": [ - "7cdde0d78ffa1ec13a6d47a12883b8f7ed957321", - [] - ], - "document-write-iframe.sub.html": [ - "e3022e3bf1f9a6a8e49337e57250b5e77416d63b", - [] - ], - "document-write.js": [ - "413a9bc6210f52b305356373f58623dd2e6e392e", - [] - ], - "helper.js": [ - "89c6d1e8282097b5258588f688ae9fd2cbd69ad7", - [] - ], - "sync-script-1.js": [ - "726b56346e8c32c79028540085e09806d3105527", - [] - ], - "sync-script-2.js": [ - "ba2edfbf270583ab62e32647fcd234f7b039ed83", - [] - ] - }, - "support": { - "async-script.html": [ - "d513bafe4f6db18b4d5685ceffa1c9ce03837350", - [] - ] - } - }, "defer.js": [ "c4449ca7c8a598e3712c8b24eb9e424775c19102", [] @@ -452320,6 +459430,10 @@ } }, "the-template-element": { + "WEB_FEATURES.yml": [ + "bd821885c7b7d4add4db186a9a94a14181cc3d38", + [] + ], "additions-to-the-css-user-agent-style-sheet": { "css-user-agent-style-sheet-test-001-ref.html": [ "55c8b2e30c9d5353d03a09c195098f70d7b76fd2", @@ -452436,6 +459550,10 @@ [] ], "pseudo-classes": { + "WEB_FEATURES.yml": [ + "c3855d6d7304aae66fa9b6e2f9c9bae206ff8773", + [] + ], "focus-iframe.html": [ "a269f1c671774b34885af42e233d5ca4a260f62a", [] @@ -452775,6 +459893,16 @@ "no-doctype-name-space.html": [ "f8391aa102e706f1afa4adfb32b09ebd0c06e04d", [] + ], + "svg-script-self-closing.js": [ + "6dd286e7bc01f28dfa9d1565d45c3429c2359689", + [] + ] + }, + "template": { + "WEB_FEATURES.yml": [ + "bd821885c7b7d4add4db186a9a94a14181cc3d38", + [] ] }, "template.js": [ @@ -453351,7 +460479,7 @@ }, "tools": { "generate.py": [ - "3457f94d70598ca4590aa27ec9929ebec61c0039", + "f0db885814b8997cd80ff34121132607d7e71c17", [] ] } @@ -453798,6 +460926,10 @@ "e50fcfc84ff1f564f6fafb4dfe267df4ffbfb971", [] ], + "WEB_FEATURES.yml": [ + "4104016b756353a2207a93c4955fcfd5e9e8c2e4", + [] + ], "resources": { "child-message-event-api.html": [ "a0001633c22d19e44c1f48ddeffa07dde1fbc436", @@ -454289,6 +461421,10 @@ } }, "structured-clone": { + "WEB_FEATURES.yml": [ + "423a469bf17283e0ec8d32d0e7debdc8eeb1fce2", + [] + ], "structured-clone-battery-of-tests-harness.js": [ "00a86fa74b9a968dabae400f57dd32ffb836aa2c", [] @@ -454413,6 +461549,10 @@ "ecbf633fd5e887d1c90aa5afbe571b0b8af9156f", [] ], + "WEB_FEATURES.yml": [ + "e794b88c3e5fb1a00b3c9934e286cf6bdc0d2ce8", + [] + ], "support": { "upload.txt": [ "e965047ad7c57865823c7d992b1d046ea66edf78", @@ -454527,6 +461667,10 @@ "a0bf1fec6e0cc5b803995d9d93d1de84a6e5253c", [] ], + "blank-highlight.png": [ + "6dbee091749fb6d70d62f3914d75cba432b55b5a", + [] + ], "blue-area.png": [ "570ae0f2bf763698e16a917565ee62a397bc2f54", [] @@ -454751,7 +461895,7 @@ ], "wpt-logo": { "wpt-logo-darkblue-bg.svg": [ - "49f374c00cd1358f446a436122941a0d40b90937", + "e101e9bea42a2be648649f6813afb7f92f093917", [] ], "wpt-logo-darkblue.svg": [ @@ -454759,11 +461903,11 @@ [] ], "wpt-logo-lightblue-bg.svg": [ - "2f61672df33f22674b260eb9a61a6c90ac746f4e", + "718327d281833386c1992a92a8e4e92d3fa55ce9", [] ], "wpt-logo-orange-bg.svg": [ - "fde2c15f1b22208bd3430ed36614030474f371b0", + "a3e4b0c5f9b6051182e4bc0268408a47cb25c1f1", [] ], "wpt-logo-white.svg": [ @@ -454791,6 +461935,10 @@ "dbcc70edabb911db5b8063e3d85506c4e5e0e79c", [] ], + "WEB_FEATURES.yml": [ + "dc3d7fdc2333cd7321a029e56abed919553ec3d1", + [] + ], "acquiring": { "README.md": [ "189d19021791bfe393ee96acd1f502784e2ae366", @@ -454960,6 +462108,12 @@ [] ] }, + "inert": { + "WEB_FEATURES.yml": [ + "074e33726c62121956e2d63027342c711147a1c4", + [] + ] + }, "infrastructure": { "META.yml": [ "64a240ccbe8116a06ec40fd03140e6bbee7a260f", @@ -455090,6 +462244,10 @@ "da4fe27e58959f7e3d6ba5ebbc7edd58a93dcf5c", [] ], + "user-prompt.html.ini": [ + "45ebf7acc33872a17d844d87dbb68039b862f843", + [] + ], "window-onload-test.html.ini": [ "e380f5e58150d941647df4fa5d0aab8a1b3c2247", [] @@ -455098,7 +462256,7 @@ "reftest": { "legacy": { "fuzzy-ref-2.html.ini": [ - "cdfd9736c54bdf645a776caaa93d497fe937a04e", + "e78d0b4315db33a0eec9c8a1d7879cb83dd43f4e", [] ], "reftest_and_fail_0-ref.html.ini": [ @@ -455110,24 +462268,20 @@ [] ], "reftest_fuzzy_chain_ini.html.ini": [ - "d3776e243e460f438bcaddd1169ccbcc937b6e33", + "6c8e46ceafd81554635139d8308b41b438e75369", [] ] }, - "reftest_fuzzy_1.html.ini": [ - "44f185357bc55366f4ac1825e16c91e356ffe2f6", - [] - ], "reftest_fuzzy_ini_full.html.ini": [ - "d682550d53eaeab5ff70cbabb09e1ff7a7bdb8d2", + "0ea76527da400b3c4e1c9dbe0ea9b8c837e3eeb9", [] ], "reftest_fuzzy_ini_ref_only.html.ini": [ - "4437fceff899b84e9f316cf6d0e6fb300dc503d7", + "8e321bdb90291dbc3427eb2741643c7e42cff8fc", [] ], "reftest_fuzzy_ini_short.html.ini": [ - "27e3290e6fbc90ba0b08816924924fe4bc0b8922", + "4a3cb610fac473594194f88714696b4cc7019c8f", [] ], "reftest_match_and_mismatch-0.html.ini": [ @@ -455296,20 +462450,20 @@ "e3b4bf3e4dca4eae1138c6be4f62105621765ae6", [] ], + "minimize_restore_popup.html.ini": [ + "6075b58d09cc51dc5069e446287246df76b1d5e8", + [] + ], "set_get_window_rect.html.ini": [ "a01f56c1953af25ab7128c8dda0b31bf7e54b347", [] ], "set_permission.https.html.ini": [ - "026e6823515d14e6069d5cb572e18a2a7413ffe4", - [] - ], - "test_win_open_with_interaction.html.ini": [ - "b1e77bd8e59cff54667270b01eb96cd19e7601e3", + "2a1487799ef26ded945342435ff5d68343a8f1f8", [] ], "virtual_authenticator.html.ini": [ - "b5683f8fa991a1760b40f37d01f082e4b5a49696", + "542c40507bdd8b3364a960188b556a05433173d2", [] ] }, @@ -455320,6 +462474,12 @@ ] }, "webdriver": { + "bidi": { + "subscription.html.ini": [ + "7c3127d167a740cde300cc36786532484e0c3d25", + [] + ] + }, "tests": { "test_load_file.py.ini": [ "7e6ef522c9b9544508654f63d12501560625608a", @@ -455409,14 +462569,16 @@ }, "testdriver": { "actions": { - "crossOriginChild.html": [ - "48e37e233e14f690e6464257a22f70528edf720d", - [] - ], "iframeChild.html": [ "a46c54a7b7b51fec65d335ad54fc8fb4ca4c2050", [] ], + "support": { + "actions.html": [ + "767368b3ab46847683b2260d6086e37939901bc5", + [] + ] + }, "touchEvents.js": [ "c1213b6693bd8a43da07e57c9c6bab11e0a64184", [] @@ -455465,10 +462627,6 @@ "get_named_cookie.sub.https.html.headers": [ "3dc39a56736614f1d864bda185f368e3adba7419", [] - ], - "interacted_window.html": [ - "708cb9a84b5a28e4a3e586b9f05264907c2efb9c", - [] ] }, "webdriver": { @@ -455514,11 +462672,11 @@ [] ], "CSP.idl": [ - "ac0a6ff5638eb0f64464d35cb11c7550a72d715f", + "d4a6377ebb30af39a7c3f470d4d2139179986285", [] ], "DOM-Parsing.idl": [ - "d0d84ab6972f02ae11f2e3a850749064d63fa299", + "af2626079364fa841ecd7092b9bb4f1dac832267", [] ], "EXT_blend_minmax.idl": [ @@ -455534,7 +462692,7 @@ [] ], "EXT_disjoint_timer_query.idl": [ - "cf0c8d9a286c281deeb9a83455aad869e76c677a", + "d2ed383c038e52b2290d02acc70240e58fdc28ce", [] ], "EXT_disjoint_timer_query_webgl2.idl": [ @@ -455574,11 +462732,11 @@ [] ], "FedCM.idl": [ - "9b18d951f83985bd3415d8aa2a1cf9636e1d981c", + "4070d50fcd7abb394e8e95d726d6ed4ba5d11431", [] ], "FileAPI.idl": [ - "aee0e65dcae267201bbe6ae8b8c90231795facf1", + "49219fce277f2387d0d7ed39cf87d95da497f0f6", [] ], "IndexedDB.idl": [ @@ -455590,7 +462748,7 @@ [] ], "META.yml": [ - "c1dd8dddf9eec3ab3fb58df01c549c251f3a3fdf", + "94e06fb1ce5df88c5210a7b431d3e8750201e639", [] ], "OES_draw_buffers_indexed.idl": [ @@ -455626,7 +462784,7 @@ [] ], "OES_vertex_array_object.idl": [ - "8aeb7459f3bd138ef932eed684ffc40361f5b0d4", + "e2252ad59d9c3be064346f4770f0bd68fb5ba11d", [] ], "OVR_multiview2.idl": [ @@ -455714,7 +462872,7 @@ [] ], "WebCryptoAPI.idl": [ - "0e68ea82f594430fdccff7db045a978905367419", + "ae85c1cfe4684fe778038f579223ee7a5606150c", [] ], "accelerometer.idl": [ @@ -455729,6 +462887,10 @@ "d8c5aa69a87293e6f40d5e471ff29f990d285c4c", [] ], + "anonymous-iframe.idl": [ + "11d19e320a804d41bfbc5d752085b761673a0df7", + [] + ], "attribution-reporting-api.idl": [ "ed4497b56ff5b7cafe3ae43ae1fcba1638f4b29c", [] @@ -455786,11 +462948,11 @@ [] ], "compression.idl": [ - "7525d7c9847b74a8e382e55ad9627b64dd4af161", + "defe4ba55cdfd4154e7472181391f52fe83fbb82", [] ], "compute-pressure.idl": [ - "3e35dc4ee2d04928c00477c14b8589fb67538433", + "77537feb1066ee61acaa7a751b2eb9b3aa299a21", [] ], "console.idl": [ @@ -455798,7 +462960,7 @@ [] ], "contact-picker.idl": [ - "0119d0e2ce658f02df30120083f7d1b6b203bdad", + "fc589fa06697ce6632bd1487ebb3e7ff48904dfc", [] ], "content-index.idl": [ @@ -455814,7 +462976,7 @@ [] ], "credential-management.idl": [ - "75e18319190a7976379b8b5ec5d153270c1fa8ad", + "94cf6a58614f4ba14b114fd844a4dc048c6493e8", [] ], "csp-embedded-enforcement.idl": [ @@ -455826,7 +462988,7 @@ [] ], "css-anchor-position.idl": [ - "5d3973eff3d3b23b6641857ba3d7f5305cf6c62c", + "890d9929086726c9f127f7fddc988d94afd18571", [] ], "css-animation-worklet.idl": [ @@ -455838,7 +463000,7 @@ [] ], "css-animations.idl": [ - "6620e0156dc85c040da7997d9d2e351147a47354", + "14a99980690963c4b6a81b36ba9d017bb07625d7", [] ], "css-cascade-6.idl": [ @@ -455853,12 +463015,12 @@ "6f5c6dfc096cbe04e30bb2fb38e7119fc45dc870", [] ], - "css-conditional.idl": [ - "d87f305fddf9e7c3f0151d51a595ae7140dce908", + "css-conditional-5.idl": [ + "b1919213ebcf4b4b65483ef878370de7ce817c65", [] ], - "css-contain-3.idl": [ - "0ecf3804954813ccae0065c91af93712ed31b5d4", + "css-conditional.idl": [ + "eace34c0f49fe42ee8149357d854a94fd4552fb1", [] ], "css-contain.idl": [ @@ -455870,11 +463032,11 @@ [] ], "css-font-loading.idl": [ - "100f1f7fed55b135e8b64a29fe671efe736e35bb", + "5e5f4252a40e26b7d6739d95fe9d8a9d99993cf6", [] ], "css-fonts.idl": [ - "070cbc58f5df950f4d856c71e490e8ad2340517d", + "678f31323b81856950e2e7001728c580fee614df", [] ], "css-highlight-api.idl": [ @@ -455893,10 +463055,18 @@ "72fbd9aa1ffb576802102a82bf97259e3bf60078", [] ], + "css-mixins.idl": [ + "49806ab54709b29efbad52ca1e1af4d53e00e733", + [] + ], "css-nav.idl": [ "03f039e4cb54f5f714bc252e7bfbd609ec769ed2", [] ], + "css-nesting.idl": [ + "1ad0404ecf97d5e026db0ef294dd62a98cd500ad", + [] + ], "css-paint-api.idl": [ "0924c535566779e4f20ee89360df3c334943022f", [] @@ -455906,7 +463076,7 @@ [] ], "css-properties-values-api.idl": [ - "eb7d7b027e72d9347c319c5d02770bf5e600b4e7", + "418e78375bec6b72104347c3aeb0cde49b46c747", [] ], "css-pseudo.idl": [ @@ -455917,6 +463087,10 @@ "113438f790e52ff4686f8471aa4b7f0e999d0724", [] ], + "css-scroll-snap-2.idl": [ + "bb42d60600f20c4af537bf0a4081fbc58948e68f", + [] + ], "css-shadow-parts.idl": [ "3759199fc14d66c4045915f1404f742fe7513590", [] @@ -455926,7 +463100,7 @@ [] ], "css-transitions.idl": [ - "0f00b2c014c1ceb370b917353dc18f9fd2013bea", + "d4ff45e486239c7b35afb0fae97d6c1c539c2416", [] ], "css-typed-om.idl": [ @@ -455934,7 +463108,7 @@ [] ], "css-view-transitions-2.idl": [ - "fe1f0e30e7d1fb471b6630dce4dc7fd6d04e846f", + "774cb655bda2c720eaa42cc0c8984cbf2c61cefd", [] ], "css-view-transitions.idl": [ @@ -455942,15 +463116,11 @@ [] ], "cssom-view.idl": [ - "4e531a26824965dc65f833533ab122ed98b94d8d", + "f922bc81486442108d566645b31c4dd24f257b5b", [] ], "cssom.idl": [ - "94cd1912b9123f1c30dcc82566005f101b19f840", - [] - ], - "custom-state-pseudo-class.idl": [ - "342f1ede0b030a85271a5db71b3773d1531aee48", + "7f9aefdb97ef7f73d07bed4fa6122bf6897c029c", [] ], "datacue.idl": [ @@ -455961,6 +463131,10 @@ "4cf76ba8114723a7ee030a81c86e1549c76b6760", [] ], + "device-attributes.idl": [ + "cf62523ad828668519ff0a572d09a4365696a03c", + [] + ], "device-memory.idl": [ "e8197e8497d2ec48e1507284b4f823de820204f7", [] @@ -455973,16 +463147,20 @@ "38cedac40cddc71ea754df7171d68018d1a0854b", [] ], + "digital-identities.idl": [ + "bbb0c938303dd345da01cc544c207b95c046760e", + [] + ], "document-picture-in-picture.idl": [ - "f54f437a9365a7f8540fb1bb1c42a3c9118cbf57", + "ed34b3c21607e6bc5398f96605a63d14a9a76c25", [] ], "dom.idl": [ - "929fa8d03b34dfe570968d824ad0b625ed558033", + "72d61f5cfd80ad446e4508b8e8bfe29c424d27c4", [] ], "edit-context.idl": [ - "eb3174e25f548314348a4414a014a1a0cbb62858", + "60ddbafe7585b390643d20b4811554005fdb4794", [] ], "element-capture.idl": [ @@ -455998,7 +463176,7 @@ [] ], "encrypted-media.idl": [ - "f5d5aa8d6c0c649fa64fd804ac9bac50a981610d", + "c034cd0bf0df011d129b4f34e6bc53070af7c543", [] ], "entries-api.idl": [ @@ -456014,11 +463192,11 @@ [] ], "fenced-frame.idl": [ - "0eed6a6b4ba46e0eb30b26cc78a4b9cc65fc544d", + "e15cbf11da271b8593d04e421a621560c25cc53e", [] ], "fetch.idl": [ - "5038aeba6cd4ccf6113af8dd5d8339f27c68dce2", + "965a82d13f5ffc9eb86cab7607111b476f6bc1cb", [] ], "fido.idl": [ @@ -456046,11 +463224,11 @@ [] ], "gamepad-extensions.idl": [ - "d7d750654fd9da6d0344face719975e4fe993889", + "81776a46ec9a139cebaadb9eba15ba9ddbed7728", [] ], "gamepad.idl": [ - "bbc62da3c445708fdc3ec8ae193d28b92e2cd405", + "d922d7b80b05dd490281b7e3be5530a05fdee076", [] ], "generic-sensor.idl": [ @@ -456062,7 +463240,7 @@ [] ], "geolocation.idl": [ - "4b971f097babf71b9ef1b5091d1a8777b4d717ea", + "062a38bebc571ae6783123d87d44d15bf6790316", [] ], "geometry.idl": [ @@ -456077,6 +463255,10 @@ "fd80669bfc27bf32607dd02d37732cda6a359638", [] ], + "handwriting-recognition.idl": [ + "2bac6b5d9cade408085b7bde4e6c31457546e2ae", + [] + ], "hr-time.idl": [ "835ee8a65c84c0b45ba3beb9b0367cd12dd98f35", [] @@ -456086,7 +463268,7 @@ [] ], "html.idl": [ - "b7501feea91d5d428061ec7a8acfc33402d2eb23", + "f7ad9ac2ddead5d86e53eb3655a15cc1c3e06b27", [] ], "idle-detection.idl": [ @@ -456113,8 +463295,12 @@ "6a2147b93e640109a1930cdc23279138c216c4ed", [] ], + "interest-invokers.tentative.idl": [ + "f89af4d73418bc14628a33349483e435275fa71f", + [] + ], "intersection-observer.idl": [ - "8502a11357faabd327d5659089198f0133a9db4c", + "eb7f18f5213364525f8ecd32e94c9a566df36a7c", [] ], "intervention-reporting.idl": [ @@ -456122,7 +463308,7 @@ [] ], "invokers.tentative.idl": [ - "62f7398b82735670809610de90ad2f91a9dde06e", + "4724d7deb08d0110df3a47b8d6542b719ceae9dd", [] ], "is-input-pending.idl": [ @@ -456153,8 +463339,12 @@ "10e2e1f012e92139a1f6cdfe3bf4f4d7e52474d1", [] ], + "long-animation-frames.idl": [ + "79a42ca8f0a5a853712062db8ef55a025f6476db", + [] + ], "longtasks.idl": [ - "064d1072d2d76bd3a80333788102d8f835b48a4e", + "3717469fd09ac2c7cba97585d5c4afee4d101b98", [] ], "magnetometer.idl": [ @@ -456182,7 +463372,7 @@ [] ], "media-source.idl": [ - "adaac2ca9b22475cf3148476da25c2f14b412e33", + "de153e615a48eaea9b5e108081c749b8bcbcb73e", [] ], "mediacapture-automation.idl": [ @@ -456202,11 +463392,11 @@ [] ], "mediacapture-streams.idl": [ - "373f0c328d93d5ca2699c68a523860f69debe1f9", + "f6c8e2b82da6b617a44ed5d5aec31720d7c54740", [] ], "mediacapture-transform.idl": [ - "5b2c8fa67a6b130d1fe99f962ff85c5cf7a7bc3d", + "1ce35452f0c2afc7762ca53b6d83199a638e5a91", [] ], "mediacapture-viewport.idl": [ @@ -456214,7 +463404,7 @@ [] ], "mediasession.idl": [ - "2cca3674a5eb5085bc097557dc3bef6a5b3522d9", + "00bfe6ad21649d719511537db4f4ee046f8086b1", [] ], "mediastream-recording.idl": [ @@ -456230,7 +463420,7 @@ [] ], "navigation-timing.idl": [ - "355950160e336d9c1331816f2b2f72cb5ff6e4c5", + "b381b486e1978fa771268d13694fabf5d9529378", [] ], "netinfo.idl": [ @@ -456241,8 +463431,12 @@ "4300b1710714e4c3f3df6dce4247d112d7c3ede8", [] ], + "observable.tentative.idl": [ + "3ccd486a202a981b6f88c8746fb3250ee4a29f16", + [] + ], "orientation-event.idl": [ - "965e833fd21966b587c253521c3188f9db611186", + "3683016d0346edee59f58ba10ddfe4423f53ed7a", [] ], "orientation-sensor.idl": [ @@ -456254,7 +463448,7 @@ [] ], "paint-timing.idl": [ - "052b74ef6c26dee833ac0980c79efc198a3f4d98", + "396f461e94c56e9ea36a0e7c71cb548e80e7971e", [] ], "parakeet.tentative.idl": [ @@ -456266,7 +463460,7 @@ [] ], "payment-request.idl": [ - "0a97d4d75c1c07000a3ea7c44b4e39d4698fcbec", + "50c12fe49c33d6dfeda13be2595f22334189fb7c", [] ], "performance-measure-memory.idl": [ @@ -456282,7 +463476,7 @@ [] ], "permissions-policy.idl": [ - "16945e3a9b7cded5610d9d2e2cb53acbb8d6b831", + "5878d8d150a6db19f9f060fe5c60c420eb8ed12b", [] ], "permissions-request.idl": [ @@ -456294,7 +463488,7 @@ [] ], "permissions.idl": [ - "fbcb674e5618af1e96b9044cbd0b29ef82d06c14", + "62c2e3ad76f0ebe99b46b3ea4aa6ec6451bdad31", [] ], "picture-in-picture.idl": [ @@ -456306,7 +463500,7 @@ [] ], "pointerlock.idl": [ - "0204bf53424826b04be7bce2c34e429332a527a9", + "afe19cc9ee69c518bc59bf56b17f245f800bf1d0", [] ], "portals.idl": [ @@ -456338,7 +463532,7 @@ [] ], "push-api.idl": [ - "f582788806c79223f9a7b935ce48c179ac247cd9", + "b16a730b7229d02bb8c06434b521815ae3440d78", [] ], "raw-camera-access.idl": [ @@ -456377,8 +463571,12 @@ "33fed05b75683891047785f7521b7a250086c645", [] ], + "saa-non-cookie-storage.idl": [ + "6cc0a7887be78013f74c80ed0b1ab83cc39647ef", + [] + ], "sanitizer-api.idl": [ - "117a55fdf77df66428146ac6b6bf5812ceec4f42", + "8f5c667973a359ed576c143b0a5aa639c0a89b94", [] ], "sanitizer-api.tentative.idl": [ @@ -456390,7 +463588,7 @@ [] ], "scheduling-apis.idl": [ - "1e84e79cd1503946088888d02a5da45d5af7c5fe", + "3c858a2db06ad3f7e47198aaa4935303116533fe", [] ], "screen-capture.idl": [ @@ -456422,7 +463620,7 @@ [] ], "serial.idl": [ - "e624c3c1a60f8d76d821c4a8628b6c1cdb9167db", + "37986b7ac2f29a2a42de78819e7da06fd58ad707", [] ], "server-timing.idl": [ @@ -456430,15 +463628,15 @@ [] ], "service-workers.idl": [ - "6d44d61debbef6f86a170855a791bb4b71179d51", + "87d48398f72b540b14544165ca7216a0090d79f6", [] ], "shape-detection-api.idl": [ - "4fc1f085ea2c24b73a9fa5f7d706d87fedf225a6", + "24d3b980854f57f3ce04d59d2595e5b66cdbb023", [] ], "shared-storage.idl": [ - "edbe2c2bcc3e913ff42575fe8ffef7e2425051d9", + "7f4976b7b207464d1e05a0deacf75ac7650bbf98", [] ], "speech-api.idl": [ @@ -456450,7 +463648,7 @@ [] ], "storage-buckets.idl": [ - "79f6c947d16a60d58c5b438476b6ba1c144ed6a9", + "581ba8e0bb3b3871a737988f4b7fb1abb784bef1", [] ], "storage.idl": [ @@ -456470,39 +463668,39 @@ [] ], "text-detection-api.idl": [ - "95b642749f73a63d62d5aa5320815aeb7091be4b", + "b6745b18754e8a73e48b2acef832665ed8a26147", [] ], "touch-events.idl": [ - "9844f08538194e673fb9e2a972aece97ad4559b3", + "19f55156a6e3a40c8a6c78a303754c1c8ace58de", [] ], "trust-token-api.idl": [ - "fb7f15b4b74a8c10ef510c4f087ee465f64b477c", + "9b74290da724b62fb91b3f5532b689cf70a10045", [] ], "trusted-types.idl": [ - "23562381294e59493880857584f6ac9200254ee2", + "b6008e187250fbce3ec0c0481b9de5b63a9c0cd1", [] ], "turtledove.idl": [ - "4700a98038c552c9eff400e5e1228f08c4243e02", + "314f2f07d9203b9226f77785f3a857f9bc56d061", [] ], "ua-client-hints.idl": [ - "6a40e1bdc4bae6dddcb649d7f146fb6aba74b516", + "5d44b0dd80a1997674daa7972a3ce3e5d8a7a04c", [] ], "uievents.idl": [ - "fef90d48410b343483493a6be6b734a7c972583e", + "0f9d3d3c1883f76bac8748d1e80e98fb0919eb0d", [] ], "url.idl": [ - "a5e4d1eb492e8248d74824bd53b3a2120e847fe5", + "cd18a66e31b3395eaaa3c68d1b731370316fe460", [] ], "urlpattern.idl": [ - "788486bb62731aa0d42c504c0a1b77f9a8d16f96", + "ca9fb979d229392f936600fd179b4660717c9f33", [] ], "user-timing.idl": [ @@ -456526,11 +463724,11 @@ [] ], "wai-aria.idl": [ - "3434bf7c2d345112448ab90edadb073cff02c32d", + "78083f03f91fd987b6e19da391e640bf9816d701", [] ], "wasm-js-api.idl": [ - "0d4384251df458a13e0c923c5412848039903da4", + "b4f723d050af7d9fb88f6f760d3237b74aaec41c", [] ], "wasm-web-api.idl": [ @@ -456538,7 +463736,7 @@ [] ], "web-animations-2.idl": [ - "f9f68a0d49a5ba71ade7e4a62546020d3adc22c5", + "4c3af535149ec218d0ed99c59dee90e14ec4d5ab", [] ], "web-animations.idl": [ @@ -456574,11 +463772,11 @@ [] ], "webaudio.idl": [ - "73dc35d260946aed4e24013d5882c5dbeb86423d", + "74aab7e2362ff736a77278e28a312e04c6caecf8", [] ], "webauthn.idl": [ - "e28355eb78d3829207848a76facfea170eb66998", + "c44df9b26a68be98248ef1ee24a71b276d9ab1b6", [] ], "webcodecs-aac-codec-registration.idl": [ @@ -456586,7 +463784,7 @@ [] ], "webcodecs-av1-codec-registration.idl": [ - "ab20879728db6ba619600ac82478162ea87a7e6e", + "00e4493d3c0a957fefbaeeeb95efeaa26afd871c", [] ], "webcodecs-avc-codec-registration.idl": [ @@ -456602,7 +463800,7 @@ [] ], "webcodecs-opus-codec-registration.idl": [ - "0d198a6bcdeabf63117166098cdabbbbf7772fa5", + "782a87b37d6dac84b3f4c277e4d559a9baaf9090", [] ], "webcodecs-vp9-codec-registration.idl": [ @@ -456610,7 +463808,7 @@ [] ], "webcodecs.idl": [ - "48d89d0b47783dbd59b1fe6a6d920909bd7d8551", + "52731257f1ff742d2c8d1108a2bc05e348f8a79a", [] ], "webcrypto-secure-curves.idl": [ @@ -456622,15 +463820,15 @@ [] ], "webgl1.idl": [ - "b61f031ab28248a73891a60640912acad5b7d0ac", + "c345b14272146a88d55146007c2883291a1b046a", [] ], "webgl2.idl": [ - "9cb639932e82fc45ab626ec00f8f28831c66eb13", + "92ff70b3f8655736b7d07b034422cb3136b59df9", [] ], "webgpu.idl": [ - "373d51dff13ee61b22cd36dd6dba132810ef621b", + "f575306efef8987644743466164a160209c34880", [] ], "webhid.idl": [ @@ -456638,19 +463836,19 @@ [] ], "webidl.idl": [ - "4d0dfaa106275fe94b5202d19c34c7bbcf9a10b5", + "f3db91096ac1be7558631ed9b7afd7a4dac6706e", [] ], "webmidi.idl": [ - "9bab8a5f9619a96f5956f39b1f3c9713a1f4c0e4", + "f4a1a29b2e194528ae2b984dc88b857c91d29506", [] ], "webnn.idl": [ - "2a9d0e639fbbad2668cf5a09b7ab387e3ecd99b7", + "ef29aaeefda3a54b8edcbd6f34c5c704a2e45b3f", [] ], "webrtc-encoded-transform.idl": [ - "3b169b066dc635fdd5c970ba4e938723f4561de8", + "0db2f2b9a81a9d9f6525ff60b533434f3fe5d3c7", [] ], "webrtc-ice.idl": [ @@ -456666,7 +463864,7 @@ [] ], "webrtc-stats.idl": [ - "8e65578b6ee1e3d566e052836be7d76f81d7230e", + "0b2e956a2078b52420a2f528beae1969fa2d1b38", [] ], "webrtc-svc.idl": [ @@ -456674,7 +463872,7 @@ [] ], "webrtc.idl": [ - "e571abb527f843a9b0f93e1e093a1989dce6938e", + "6bfbdb898c5e87b4a095a14a117e6f0d831d7ee8", [] ], "websockets.idl": [ @@ -456682,7 +463880,7 @@ [] ], "webtransport.idl": [ - "86178a4906b7a7951b34529d2d64648580af87c1", + "2136cad41e3fc001a082bfd63f263522f099396b", [] ], "webusb.idl": [ @@ -456702,7 +463900,7 @@ [] ], "webxr-depth-sensing.idl": [ - "c44f029436f11afe8fe91023c3eda20af3f5755b", + "b77b59c0ce67425d459428721c92d3f548f10048", [] ], "webxr-dom-overlays.idl": [ @@ -456718,7 +463916,7 @@ [] ], "webxr-hit-test.idl": [ - "fa4fb71c9decd64054669249353a16b3476aae56", + "d01bffe27037fe82157f05bec9689e5ca417bbee", [] ], "webxr-lighting-estimation.idl": [ @@ -456730,7 +463928,7 @@ [] ], "webxr.idl": [ - "3b7f8a55b7c63a1183d002baa3646064084932cc", + "8e02fbd38a03c77a70ce059278993c09815d54b6", [] ], "webxrlayers.idl": [ @@ -456755,6 +463953,10 @@ "31dddab561edd292a18e5b2cd4fb313a96af65b9", [] ], + "WEB_FEATURES.yml": [ + "1b6a42746fc63ada4e4687bf7dd1a934febb43ad", + [] + ], "observer-in-iframe.html": [ "e918bf1a4f0313a94cfb8b269658bb7e42cc8745", [] @@ -456808,6 +464010,12 @@ "295bbf047e6523313ce74f2e383ed769c0d5c81b", [] ] + }, + "v2": { + "WEB_FEATURES.yml": [ + "e57d67f64157dec36921261d6912cd46abd8dfc9", + [] + ] } }, "intervention-reporting": { @@ -456865,6 +464073,10 @@ "d012c7f9bac05cd71119949a26996ae83bc65c8e", [] ], + "WEB_FEATURES.yml": [ + "a81700e1fb0d38b51e7b3116446570249b530a24", + [] + ], "resources": { "3x3_jpeg_recompression.jxl": [ "deee4257ff6729cb754cdefc5a1319e20f6ac865", @@ -457121,7 +464333,7 @@ ] }, "lint.ignore": [ - "c82f8027f690cb7184fd41053d3e02f972dcc80e", + "62ad931cb83b0fb0681f02f92b24ffd895973663", [] ], "loading": { @@ -457180,11 +464392,11 @@ [] ], "early-hints-helpers.sub.js": [ - "faf6119cf1edd5454aaabd643ffe40d33c589463", + "e41832c8ea507b526f37dd6afbadda621bb0f0d2", [] ], "early-hints-test-loader.h2.py": [ - "bb987209c50f41f260cc7e5d43901c8777ee8779", + "263cd64a622ebc3e9514ba8a50df9751e6ca2c94", [] ], "empty-corp-absent.js": [ @@ -457275,6 +464487,10 @@ "2e90f76af143fce7f05eb77bb71f00e0d880ff88", [] ], + "preload-fetchpriority.html": [ + "38e56a9b67dc855c613a642fdf0e2286a6344a12", + [] + ], "preload-finished-before-final-response.h2.py": [ "d0b12408d9cff01352380cec5727145dbed6dded", [] @@ -457387,6 +464603,10 @@ "c73b604f6dcabb4b0c6247f53a524c05c6344194", [] ], + "long-pointerdown.html": [ + "34e8115086c1f65822b0d0795ace3e6d488b7fac", + [] + ], "promise-generates-loaf.js": [ "53369f722606e3fbc62b6c1f2568b90b67655e97", [] @@ -457400,7 +464620,7 @@ [] ], "utils.js": [ - "574af6d6b8c716ba066f49014adabe4b6e1a537a", + "b51ab891dcdb820dcb554236d36ac1c3476e556b", [] ] } @@ -457487,6 +464707,10 @@ "4511b3e7df8e2a169e52dd6b8bdea2b8b369b21f", [] ], + "WEB_FEATURES.yml": [ + "4d03bc3eb4d0e07e366bb03d9541013dfde5ed42", + [] + ], "crashtests": { "mozilla": { "347355-1.gif": [ @@ -457517,6 +464741,14 @@ "98208d6849f746c73f65555c4647f8c812951b22", [] ], + "direction-overall-002-ref.html": [ + "03ecf2994427c9e7c5f03ba6a71989081c9de478", + [] + ], + "direction-overall-003-ref.html": [ + "3ecbcd0a6f99e5e3d443da2e1b75e0fba5cf438a", + [] + ], "direction-overall-ref.html": [ "5ce6c5c42bb8068b895cdbe111644c339c4b9676", [] @@ -457555,6 +464787,10 @@ "f8db144cfe69ba23452da6aeffdd9c71d8696491", [] ], + "frac-created-dynamically-4-ref.html": [ + "a084a81f0bb4d0743a205dbb065dd9bce86c82c7", + [] + ], "frac-created-dynamically-ref.html": [ "e10405c572fcf04e0913e0d3bc3e144565330fea", [] @@ -457591,6 +464827,22 @@ "8014f0a895252f4d37527c381c7c2b933ca32ca9", [] ], + "frac-linethickness-005-ref.html": [ + "1c231455bf5c0079b37972db099e7117d2b05589", + [] + ], + "frac-linethickness-006-ref.html": [ + "1c231455bf5c0079b37972db099e7117d2b05589", + [] + ], + "frac-linethickness-007-ref.html": [ + "c5d73a9bba77f4623bb79fbf5a9c8a1014156d68", + [] + ], + "frac-linethickness-008-ref.html": [ + "0a6155e7859b64f4b1b4528422cbae18481a288c", + [] + ], "frac-mrow-001-ref.html": [ "e42cb96fe8383959bef2d778cfb29d0638f1de03", [] @@ -457639,6 +464891,22 @@ ] }, "mpadded": { + "mpadded-010-ref.html": [ + "84104dec03a644290a90f3e7ad93d5ad5b50c7d2", + [] + ], + "mpadded-011-ref.html": [ + "36122687e15ad5bce7b6af28d6f0b8e5417bc27c", + [] + ], + "mpadded-012-ref.html": [ + "12f65c46f7fb82f8dc40ab4884f425e6b668ad13", + [] + ], + "mpadded-013-ref.html": [ + "6ecda3e401cbeedbafc2bb2f3531053712562844", + [] + ], "mpadded-percentage-001-ref.html": [ "79d7df39d00e3a7ccc29d79cad6dc73252990f75", [] @@ -457660,6 +464928,26 @@ "mrow-painting-order-ref.html": [ "72694959a86f1917cbd3db13b7f1a8b71714b711", [] + ], + "semantics-001-ref.html": [ + "7d99e48c928d6c9d70c51e45bd01c280b972e76c", + [] + ], + "semantics-002-ref.html": [ + "8abdad93dea33dc5d678a225ff0094e3b3140564", + [] + ], + "semantics-003-ref.html": [ + "7b6e21a3eb85f236699ee4566a089126c033c87f", + [] + ], + "semantics-004-ref.html": [ + "855d887bbca7ee1d6d91b75a75709c7fe33f8e41", + [] + ], + "semantics-005-ref.html": [ + "cf722603e1debb82566e1c2f7a0cfb27e609f194", + [] ] }, "operators": { @@ -457755,6 +465043,14 @@ "b249fe43b591b70bed7e9f75962497db56ba119a", [] ], + "mo-invisibleoperators-2-ref.html": [ + "c13f9b1739ab4bce78cf03c8451ad8edb010ab58", + [] + ], + "mo-invisibleoperators-ref.html": [ + "2b7d9c6add50043aa0bf860213b8cb89383edc11", + [] + ], "mo-lspace-rspace-2-ref.html": [ "4ffe6cbc2360e0937c9ccca721710b75526b1874", [] @@ -457764,7 +465060,7 @@ [] ], "mo-lspace-rspace-4-ref.html": [ - "ab4c08dde1e5a4b6da0b66bd06909514c7ad3555", + "ff34496b9747db019a1a0ab7ed83ef234b1e0955", [] ], "mo-lspace-rspace-dynamic-ref.html": [ @@ -457784,7 +465080,7 @@ [] ], "mo-movablelimits-dynamic-ref.html": [ - "ee5bce2ca82066424da481e8b6ecebd80c4a2e19", + "cd1aafb4b71ca9026aaa8555e183a69c898a0692", [] ], "mo-movablelimits-from-in-flow-ref.html": [ @@ -457811,6 +465107,14 @@ "6b4ccc775c345dc19ade781409a65d85f6ddace9", [] ], + "munderover-accent-dynamic-001-ref.html": [ + "3bfb2a3d83920db5281fb7ea0988d0b69b8dca2c", + [] + ], + "munderover-accentunder-dynamic-001-ref.html": [ + "3c3d4abece0435b54579c867556592f7a78da418", + [] + ], "non-spacing-accent-1-ref.xhtml": [ "9c5a9145f86dd11b4bcb50f80992a2fedecabc7c", [] @@ -457905,6 +465209,18 @@ ] }, "scripts": { + "mmultiscript-001-ref.html": [ + "d814944f5317cfbb91107f4cd0441bbca2ae3e14", + [] + ], + "mmultiscript-002-ref.html": [ + "33f12d7cdfac270c43ba6731bfde3a9a24efd282", + [] + ], + "mmultiscript-003-ref.html": [ + "daac6b3346763b5c19292c7809c8b3c1bc86554b", + [] + ], "mover-accent-dynamic-change-ref.html": [ "a4f16aa07f969e43dee4be45c48f7252e5c109ca", [] @@ -457913,6 +465229,22 @@ "f8631539c02fff09b865c1d98ef56d68bb03d506", [] ], + "munder-mover-align-accent-false-ref.html": [ + "db72d0c5e2f005f512e1595f83032a621331a830", + [] + ], + "munder-mover-align-accent-true-ref.html": [ + "da1033563eb00807fc03442545add2adaac13b8b", + [] + ], + "munderover-align-accent-false-ref.html": [ + "c339149c25624326b8a9e3c01b2163bbbf506c87", + [] + ], + "munderover-align-accent-true-ref.html": [ + "aababcb17bb987ff2b71f033e21888809c03715a", + [] + ], "none-001-ref.html": [ "55add014151905f9e8be454ffc579f447effb9d8", [] @@ -457987,6 +465319,10 @@ "5a8b39e1898c4f8d5555ee11d5757965162780e7", [] ], + "space-3-ref.html": [ + "135a1475e237de6169c3bfabc83b33f3d762c9f6", + [] + ], "space-vertical-align.tentative-ref.html": [ "ed30edde96258d56f300b89889e019df392bb7a1", [] @@ -458095,6 +465431,22 @@ "111ea79e243a83880783b5ab46ae6d989ead1f32", [] ], + "first-line-first-letter-pseudo-elements-001-ref.html": [ + "5d4e6b7dca3d4a2bddf8ad9154d1f75af2c78006", + [] + ], + "first-line-first-letter-pseudo-elements-002-ref.html": [ + "d4c79c721838eb5a9a279afed5a73222e73e8ee6", + [] + ], + "first-line-first-letter-pseudo-elements-003-ref.html": [ + "825b397057d608bc1a745aa63bf5d658039b1cc6", + [] + ], + "first-line-first-letter-pseudo-elements-004-ref.html": [ + "60d34274899f12d8ad70e9526b7300581696dd5c", + [] + ], "floats": { "floating-inside-mathml-with-block-display-ref.html": [ "8f25c9db06551a8caa07c94bac1a120acf5d1b47", @@ -458207,6 +465559,22 @@ "padding-border-margin-003-ref.html": [ "275494ddd8c5cf0ae39b7402242aedc9b000a6b8", [] + ], + "padding-border-margin-004-ref.html": [ + "4da9af7ffc34487ee43971c1e592cfc7ef72531f", + [] + ], + "padding-border-margin-005-ref.html": [ + "c9a076a83231e6f718a7bf056721d8c487f7193a", + [] + ], + "padding-border-margin-006-ref.html": [ + "1c93b81b863c76cd2cddecfe45db99d3928661cd", + [] + ], + "padding-border-margin-007-ref.html": [ + "043300a4730f5bb8719e950426ca2038f18f1b24", + [] ] }, "presentational-hints-001-ref.html": [ @@ -458218,7 +465586,7 @@ [] ], "table-width-1-ref.xhtml": [ - "d76a350290d4eef7eee5122d36f7005b149f3c5c", + "7653cacb1c0b4f4b4b5d31f0b70f109293f5dd34", [] ], "table-width-2-ref.html": [ @@ -458297,11 +465665,11 @@ "272e8b33ca70c691e127c68344d595eb4c0762ea", [] ], - "href-click-1-ref.html": [ + "href-click-001.tentative-ref.html": [ "86952567c76f4b0f1c45ac8b03b34a93d0400163", [] ], - "href-click-2-ref.html": [ + "href-click-002.tentative-ref.html": [ "86952567c76f4b0f1c45ac8b03b34a93d0400163", [] ], @@ -458317,6 +465685,10 @@ "8362ed28e359dbffb39d2bbdc61c5703961e4e0f", [] ], + "link-color-001.tentative-ref.html": [ + "772fda7002f145dffe770055a72a25264fe4c913", + [] + ], "required-extensions-2-ref.html": [ "dcc5b2b7d337e769299df17a0eacafddc92665c6", [] @@ -458347,6 +465719,10 @@ "27a58b9ba00820c44f48ae6e90e682f2488c5748", [] ], + "mo-glyph-height-with-default-font-ref.html": [ + "5c295152ba0039dcd06c11074f471d652c7269a4", + [] + ], "use-typo-metrics-1-ref.html": [ "3f7f7640458639ab0b548489e04b63f98cdad40b", [] @@ -458359,7 +465735,7 @@ [] ], "box-comparison.js": [ - "b30ad279dfeba991a7e1f309b729d08e80638306", + "056d305da60a7b077e6280f4110b0ba616ebd6b0", [] ], "box-navigation.js": [ @@ -458378,12 +465754,16 @@ "f05d7278adbcd6cf34cc229e67aef6c74c880958", [] ], + "invalid-markup.js": [ + "451033ce07616183f43aaaa2fd7d94ef0e684647", + [] + ], "layout-comparison.js": [ "452b45006e4d032709d10b3232b8d73e4dc50e33", [] ], "mathml-fragments.js": [ - "7e2113e95bf549155c9b30a6ca60a365fc384768", + "b1a9cbf054e47b3723e86319bce2574d4ee6d05e", [] ], "operator-dictionary.js": [ @@ -458417,7 +465797,7 @@ [] ], "mathvariant-transforms.py": [ - "e4857d2a3e326fe981aa3ed2a5c3d0370ea0073b", + "dca85b55618c10c44e4f33f271b48dad2eecd7cf", [] ], "operator-dictionary.py": [ @@ -458453,7 +465833,7 @@ [] ], "stretchy.py": [ - "34530f5792b7e5ec27bd7ebfbd2299fd1a790302", + "33d4decd4f5fa7853a559142c57510f6be891192", [] ], "underover.py": [ @@ -458653,10 +466033,6 @@ "ef66d43b9eac025855118b2ff39881f4f25f94f9", [] ], - "A4.ogv": [ - "de99616ecebe6107c33156c1c5513ef007b4e63d", - [] - ], "A4.webm": [ "b4adbec02b54423c0ea758ee77e9b8cfc1ce8386", [] @@ -458669,10 +466045,6 @@ "5fbd6d97f31092cd08e48694995c29e3949f3ca7", [] ], - "counting.ogv": [ - "ce03c19e50e5ab7cfa18648ecce49f9084b13053", - [] - ], "counting.webm": [ "56d1f1c8acb2c59db5314893e5da57969a87d721", [] @@ -458693,10 +466065,6 @@ "a9d2b979d412dbd223df0768fac8d751a2c51808", [] ], - "green-at-15.ogv": [ - "50d59dfb38b065d9250b7c0e43e0cba7eac82904", - [] - ], "green-at-15.webm": [ "023a96bf645b4831ff082de14fd44456d0ae3ab8", [] @@ -458705,10 +466073,6 @@ "cf59777fb98fab2e46c385fa537b2afddfe138a6", [] ], - "movie_300.ogv": [ - "0f83996e5dcf31a32a801b6800315bd91642d29c", - [] - ], "movie_300.webm": [ "bb7edf20d483b198ff193d19f86764f96f1b9da7", [] @@ -458717,10 +466081,6 @@ "fb5dbca23808bee44003692cb0e139dd6a22e874", [] ], - "movie_5.ogv": [ - "e8990d1120abde99d59c24db2af46d5673b1a855", - [] - ], "movie_5.webm": [ "9ae12e84ea5874b4bdc858373a9857a242c8fc82", [] @@ -458773,18 +466133,10 @@ "d278c8ad8cd3effe0ca46bafec72d3f8f0b2c5c6", [] ], - "test.ogv": [ - "0c55f6c7226a2cd7b722100b2f0acf74922e88be", - [] - ], "test.webm": [ "5794667d09910c284c192a7506bf007a5d69391f", [] ], - "video.ogv": [ - "5cb5f8784811ff0e20dce16e0726c5dda4aab0f6", - [] - ], "video.webm": [ "0783123f4ef633220d520137333b77200920f946", [] @@ -459135,22 +466487,34 @@ } }, "mediacapture-insertable-streams": { - "MediaStreamTrackProcessor-worker.js": [ - "51eaef80a90a6e24fce8cad4fee03e05548e4517", - [] - ], - "dedicated-worker.js": [ - "0dbcc32d0b271f9772ee5664ba9f5fee35e95a41", - [] - ], - "service-worker.js": [ - "05a8b99ad8a95f347abb7190b753440629284594", + "META.yml": [ + "0b7ae4d8159b06d48159dba509cf050edb8c43ff", [] ], - "shared-worker.js": [ - "61ff67bcff03099cbf93fbb594e9b188d85a9f11", - [] - ] + "legacy": { + "MediaStreamTrackProcessor-worker.js": [ + "51eaef80a90a6e24fce8cad4fee03e05548e4517", + [] + ], + "dedicated-worker.js": [ + "0dbcc32d0b271f9772ee5664ba9f5fee35e95a41", + [] + ], + "service-worker.js": [ + "05a8b99ad8a95f347abb7190b753440629284594", + [] + ], + "shared-worker.js": [ + "61ff67bcff03099cbf93fbb594e9b188d85a9f11", + [] + ] + }, + "tentative": { + "MediaStreamTrackProcessor-worker.js": [ + "51eaef80a90a6e24fce8cad4fee03e05548e4517", + [] + ] + } }, "mediacapture-record": { "META.yml": [ @@ -459250,7 +466614,7 @@ }, "mimesniff": { "META.yml": [ - "fd41c87fad8ebd7d86c6f5d8be47eaa61953a777", + "739628b80458dd0b869a2a62165df7b60ebc3e81", [] ], "README.md": [ @@ -459320,6 +466684,18 @@ [] ] } + }, + "sniffing": { + "support": { + "atom.html": [ + "b343d6d6154219cfc911d0e31dc747f29ec0bec3", + [] + ], + "rss.html": [ + "d708b0d8ebdde748773a7f3a2518d61506830d3e", + [] + ] + } } }, "mixed-content": { @@ -459631,13 +467007,13 @@ "2fa1e0ac0663a65deae6602621521cc2844b93de", [] ], - "test.ogv": [ - "0f83996e5dcf31a32a801b6800315bd91642d29c", - [] - ], "test.wav": [ "85dc1ea9044e28eeeac6176bae61285c25ebf711", [] + ], + "test.webm": [ + "e3e4cb0baca82154700392c85a70fcb11560376c", + [] ] } } @@ -459978,7 +467354,15 @@ [] ], "getnotifications-sw.js": [ - "331913b99358922f7d9743a8dc49218bc93004c2", + "ad2c11c6d5fca8492bc7f52bceaa15011d602037", + [] + ], + "instance-checks.js": [ + "31ff0b870937d5452607f4b99ae72d7db7610fe2", + [] + ], + "instance-sw.js": [ + "f08b17e15f8407ea7bef6ce47a040af9fd8db3bb", [] ], "noop-sw.js": [ @@ -459987,7 +467371,11 @@ ], "resources": { "custom-data.js": [ - "b21d28a1bb390575f34206c87aae1f7fd8655fd7", + "49a5c60d811338cc898bc64b1cbe8b3e41c54ca8", + [] + ], + "helpers.js": [ + "6b418be03ed2d7c0697163b2758667172201289b", [] ], "icon.png": [ @@ -459997,6 +467385,10 @@ "shownotification-sw.js": [ "63a1569460d302bd72011675d4dabed7013b49d0", [] + ], + "shownotification-window-iframe.html": [ + "2a45e794656fcbe20d7dcd741b37bffcc9630851", + [] ] } }, @@ -460032,16 +467424,16 @@ }, "orientation-event": { "META.yml": [ - "88014849d067082afcb56964bc3446ba93350c1b", + "cd5fcdfeb19f8b91c5b179296ba2ca9b5dfe4539", [] ], - "README.md": [ - "14ea2f51173ccb61e02b0e5f2462dd152b11256e", + "WEB_FEATURES.yml": [ + "414dbe7478f078be42ac08999c2afcb97d0f0fdd", [] ], "resources": { "orientation-event-helpers.js": [ - "d9ee728d1efa49d58e24a79b49cb4443dafa7f25", + "dab876fc6a320bbf11e9bc85b28631850b094269", [] ] } @@ -460081,7 +467473,7 @@ ], "resources": { "sensor-data.js": [ - "d0b280fa6c4371e8f854554a9b1fa3bed3a0a3d6", + "a2886e7553bd0e59689a30bb0e5b5a68ed387d37", [] ] } @@ -460170,6 +467562,42 @@ [] ] }, + "partitioned-popins": { + "META.yml": [ + "b9d43340c8af62e294a2ecd89ccaa870f51405d9", + [] + ], + "resources": { + "get_cookies.py": [ + "78c3f0c2433400d1765eee3ffa14af4ead511ccd", + [] + ], + "partitioned-popins.cookies-iframe.html": [ + "43ef731278e0ceb83a41615b9783d2112dbe3c48", + [] + ], + "partitioned-popins.cookies-popin.py": [ + "db48e781b9419bd73f602286d78d06a81895b4fa", + [] + ], + "partitioned-popins.cookies-window.html": [ + "66880c3255d51299f64585f6cdd06f1a6128a246", + [] + ], + "partitioned-popins.localStorage-iframe.html": [ + "d2833c71852c42ccbe65b7173661b7cf16b455ec", + [] + ], + "partitioned-popins.localStorage-popin.html": [ + "87a6ab95fa26d92e870a8c886139850c7a2ae1af", + [] + ], + "partitioned-popins.localStorage-window.html": [ + "1d5106e05092f6d7230430bb0f081b0e56af5a51", + [] + ] + } + }, "payment-handler": { "META.yml": [ "eff7624d054f6fbc6feac2aa106d166587f0b3eb", @@ -460269,7 +467697,7 @@ ], "payment-response": { "helpers.js": [ - "1242ecb743c9a710e4597e2524a11bc24c2a3c6a", + "3e4f5cfd36f898c116717c1151806f966511a945", [] ] }, @@ -460292,26 +467720,6 @@ [] ] }, - "pending-beacon": { - "META.yml": [ - "04b88b5f72fccfe6b498c4fdd8c7b3e5212bce84", - [] - ], - "resources": { - "get_beacon.py": [ - "32cb9a9ba30638bf0e5c7e54655ae87e7085978d", - [] - ], - "pending_beacon-helper.js": [ - "e7b6ea5cb6ef33f49692db9b0ef1a0ee41a5e21d", - [] - ], - "set_beacon.py": [ - "1c71f23e57849481b7deb204cb859ef25f6e4356", - [] - ] - } - }, "performance-timeline": { "META.yml": [ "89fae1db0d9b7afd202737e34754b4e893298d49", @@ -460323,7 +467731,7 @@ ], "not-restored-reasons": { "test-helper.js": [ - "a172546512a0f2f28c986c36cbb06d1ba333af3b", + "ba9a4c0342fcb53ba39307e8a5ae2fefcd99f715", [] ] }, @@ -460340,6 +467748,10 @@ "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", [] ], + "going-back.html": [ + "f4a26669baa16304240a5c009fa969bdcb4726d2", + [] + ], "include-frames-helper.js": [ "a56489baaf4d06d0b46f659ae8be2d10ffc61238", [] @@ -460528,7 +467940,7 @@ [] ], "permissions-policy-frame-policy-timing-iframe-camera.https.sub.html": [ - "995ac2134e75013b7c8a4b8ddf20ebff48749229", + "0eaafcd5946f95ec29f0485c3d372b71eb774f36", [] ], "permissions-policy-header-policy-allowed-for-all.https.sub.html.sub.headers": [ @@ -460783,7 +468195,7 @@ [] ], "permissions-policy-geolocation.html": [ - "b858a52392b168fd42baf85631b7e18212b9e2e7", + "e32dde3845b415643f3cdd5cc193bbf5e6a02d67", [] ], "permissions-policy-idle-detection-worker.html": [ @@ -460807,7 +468219,7 @@ [] ], "permissions-policy-payment-extension.html": [ - "86f0ea3e48aaa87db94f81843dceb137d8732de6", + "bb9f86ef016404f170a931b9727181f315ccd86d", [] ], "permissions-policy-payment.html": [ @@ -460855,7 +468267,7 @@ [] ], "permissions-policy.js": [ - "32fb4cfd4a9535c9cf7d25a381d0159e09136837", + "d700cb086b362229e194cd2596f151bdf74d0039", [] ], "picture-in-picture.js": [ @@ -461101,6 +468513,10 @@ "e95425ac1949c1c6c6a2d6f3cfac4fbd044b6d2e", [] ], + "062.png": [ + "e50902adb9fe038676cd5f45eb6ecc9468dbb2b0", + [] + ], "blue-with-hole.png": [ "175c5ddfd82512fec68f79445db337a5d8f7399b", [] @@ -461131,11 +468547,51 @@ ] } }, + "cICP-wins-ref.html": [ + "de7629453d91d09551fdfcbe51c90cda494e6fcf", + [] + ], + "errors": { + "support": { + "invalid-unknown-ancillary-after-IDAT.png": [ + "e9c9e7ee02598ab11189049b455b39ce8b72db57", + [] + ], + "invalid-unknown-ancillary.png": [ + "21373a5a5aff91c2755cdc9a7f381da29658850c", + [] + ], + "no-invalid-chunks.png": [ + "6605d479854ba0d9e772b105f1b276b7c842a306", + [] + ] + }, + "unknown-ancillary-error-recovery-2-ref.html": [ + "cfa2cbb6f14cc95cb5930dab38fa3fb11bda49bd", + [] + ], + "unknown-ancillary-error-recovery-ref.html": [ + "cfa2cbb6f14cc95cb5930dab38fa3fb11bda49bd", + [] + ] + }, "support": { + "cICP-and-iCCP.png": [ + "71d88defc12b18b29d2c2dd4303e4bfb15d1a4c0", + [] + ], "cicp-display-p3.png": [ "8fa0ce2123c4f876a71b1ca80e04931614f3b87f", [] ], + "exif-orientation-bottom-right.png": [ + "261d5f4c120d5bec05faab969b6476aa6f512989", + [] + ], + "srgb_green.png": [ + "a978f32536c3be6121e947f0312deaaeb7860bfc", + [] + ], "trns-high-bits-set.png": [ "4e309a89a8a27a9f7afb6eee6a4a604a3ef7c249", [] @@ -461144,7 +468600,7 @@ }, "pointerevents": { "META.yml": [ - "1962feaf8af08b003e519fa525271e70451984d5", + "e6dbf9deecfb9478166316cbdfd451479b846152", [] ], "README.md": [ @@ -461156,7 +468612,7 @@ [] ], "pointerevent_support.js": [ - "f67038ead4cfac0d664ec3cedd04beb22b807d3b", + "f17a76e5f5e95d311d21e3c323008afc93a971c3", [] ], "pointerlock": { @@ -461180,10 +468636,6 @@ "9402b95cb173389aead0aacf0c3e5fc553f6c3ae", [] ], - "pointerevent_attributes_hoverable_pointers-iframe.html": [ - "5e55868282ce5ce549f1d32092839f05bd43aba7", - [] - ], "pointerevent_fractional_coordinates-iframe.html": [ "5245a3f2e16bf13967187231db515433217912aa", [] @@ -461210,6 +468662,10 @@ "META.yml": [ "bb639b4417ef4975e0f5a1649d010f6a7565e87c", [] + ], + "WEB_FEATURES.yml": [ + "61ab30b26b601cd836a9ec579e0b8d014ceb430f", + [] ] }, "preload": { @@ -461217,6 +468673,10 @@ "fd10e7d15abd6ed0f4e76581b225ca1e9a248c79", [] ], + "WEB_FEATURES.yml": [ + "3954338844f40d3b78ee47be61109e9433fda904", + [] + ], "avoid-prefetching-on-text-plain-inner.html": [ "518e2465418ad6aaecc5a6fb3957eeef38259240", [] @@ -461246,10 +468706,6 @@ [] ], "resources": { - "A4.ogv": [ - "de99616ecebe6107c33156c1c5513ef007b4e63d", - [] - ], "A4.ogv.sub.headers": [ "360e6686bfb65ed33d811d15e1ba7183a736d552", [] @@ -461511,6 +468967,14 @@ } }, "private-aggregation": { + "private-aggregation-permissions-policy-none.https.sub.html.headers": [ + "878191015163abd568cff4664c0b7dbe0b2239a6", + [] + ], + "private-aggregation-permissions-policy-self.https.sub.html.headers": [ + "c4f9fe899effc3d875997e61657c351c1821c09c", + [] + ], "resources": { "protected-audience-helper-module.js": [ "be4f01379e236938c255a366afca97bdc2e79675", @@ -461528,15 +468992,15 @@ "f5a8533d0f384391785f8f1af0fe29782296f081", [] ], + "shared-storage-helper-module.js.headers": [ + "cf3e03e24c7d68e3fb9f0be9102591c659a2b43c", + [] + ], "util.js": [ - "24e156446f140e460bf1dc701d37383cb754b0cf", + "64f638684ba3f348d640f005d45667bb30a94619", [] ] - }, - "shared-storage-permissions-policy-none.https.html.headers": [ - "878191015163abd568cff4664c0b7dbe0b2239a6", - [] - ] + } }, "proximity": { "META.yml": [ @@ -461548,7 +469012,17 @@ "META.yml": [ "4886e6a70da668e136d3149ee760c79aaf34be39", [] - ] + ], + "noop-sw.js": [ + "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", + [] + ], + "resources": { + "helpers.js": [ + "8395c638f3ee0170e44b35bac866729371db70c6", + [] + ] + } }, "quirks": { "META.yml": [ @@ -461563,6 +469037,10 @@ "68ceb2b8b16c73c419299ea36eed0bd0ca41113c", [] ], + "class-names-across-iframes-ref.html": [ + "47ff69d30b7ba3e492f6d2399abf936ee5eb3ff5", + [] + ], "dd-dl-firefox-001-ref.html": [ "46a4d7d156f6e99040cd500e241b56440e695796", [] @@ -463090,7 +470568,7 @@ [] ], "document-reporting-bypass-report-to.https.sub.html.sub.headers": [ - "b2a3d20f482151a27a545c8894805737a57ff035", + "bbdd968c04f79d7fa1d324283f19b764b8e8cd4f", [] ], "document-reporting-default-endpoint.https.sub.html.sub.headers": [ @@ -463098,11 +470576,11 @@ [] ], "document-reporting-named-endpoints.https.sub.html.sub.headers": [ - "2d5a308db27f7b2595114bf7e4fd8fa9612dfc0e", + "89b7b1afec5165368db7cf724516dfa02bf4c052", [] ], "document-reporting-override-endpoint.https.sub.html.sub.headers": [ - "46954f4d5cbc9a17a9bcbf91481e905748441edd", + "f9c9bf45c44b49f58072f1558141c6ba583ca0bf", [] ], "document-reporting-path-absolute.https.sub.html.sub.headers": [ @@ -463326,6 +470804,10 @@ "97de8662777de8fda9b679dfe550106bb2c1bbb6", [] ], + "child_script.js": [ + "8b137891791fe96927ad78e64b0aad7bded08bdc", + [] + ], "close.html": [ "02c275f37b66e8a0b434c6fa57b347994d523118", [] @@ -463586,6 +471068,10 @@ "260b5929a5bb781facbedf8306ba026c4d7fef96", [] ], + "parent_script.js": [ + "01ec0c5823de978533022730ebc8d7e966f75ab4", + [] + ], "preflight.py": [ "f0f6017b4729ec19fb90dd7f6dc7b7848301fb72", [] @@ -463739,15 +471225,7 @@ [] ], "fake-serial.js": [ - "29c8168fb59891ffe9292937c8f921dcf5c839a8", - [] - ], - "generic_sensor_mocks.js": [ - "baf57c7c85ae79ad82d289333c8c57623b4ede3c", - [] - ], - "generic_sensor_mocks.js.headers": [ - "6805c323df5a975231648b830e33ce183c3cbbd3", + "8614b4d64f993a6df17ac77f304b2b779e02fba2", [] ], "mock-barcodedetection.js": [ @@ -463766,10 +471244,6 @@ "8fa27bc56a1d828e96e4a4b6a7276c9f1afb6250", [] ], - "mock-direct-sockets.js": [ - "6d557f7a01530664d619c1568f1482bfd121e4b7", - [] - ], "mock-facedetection.js": [ "7ae658621ee9c34b9dc1091777ef4ccaff950a02", [] @@ -463791,7 +471265,7 @@ [] ], "mock-pressure-service.js": [ - "02d10f856ae458a055844cded2c83e205a732bb4", + "610d02a9164ce5aba99e0cd20e37321c054af252", [] ], "mock-pressure-service.js.headers": [ @@ -463815,7 +471289,7 @@ [] ], "web-bluetooth-test.js": [ - "ecea5e760c6b4d4f867adf5741a929cccf5447b9", + "67c3c4ee1b45330b381cbd16bce025399c99b93e", [] ], "web-bluetooth-test.js.headers": [ @@ -463847,7 +471321,7 @@ [] ], "webxr-test.js": [ - "aba3447982bd8523410494e81a48effab7927576", + "49938dc3ec1e7609b9bc18e10f10217e6f9c88c3", [] ], "webxr-test.js.headers": [ @@ -463855,16 +471329,12 @@ [] ] }, - "declarative-shadow-dom-polyfill.js": [ - "99a3e911eb633625c5f82365e41aa5ca5ef85de0", - [] - ], "idlharness-shadowrealm.js": [ "9484ca6f512ad0414d0969b3ec265114c95fd306", [] ], "idlharness.js": [ - "8f741b09b26bcb5ea63465419fd610fbca9e69b2", + "4cf19234af20eb48fb85fb919b96950b50edfd8b", [] ], "idlharness.js.headers": [ @@ -463885,7 +471355,7 @@ [] ], "conftest.py": [ - "7253cac9acf053720dd701e7d30d6b3633dfb9c8", + "723087d31841b831b598edcd2cf7bc7cf290f495", [] ], "harness.html": [ @@ -464162,7 +471632,7 @@ "unit": { "IdlArray": { "is_json_type.html": [ - "18e83a8e893d3a49046b34b35b2cbab8c4b4c145", + "caea20067fa633164bd48750aaea4f04d9bc28ec", [] ] }, @@ -464303,7 +471773,7 @@ } }, "tox.ini": [ - "12013a1a705fe561e021c7285c66d16185506e06", + "49603ef64bdbe4ef3e0ca35c928bcea3e1926e56", [] ], "wptserver.py": [ @@ -464340,7 +471810,7 @@ [] ], "testdriver.js": [ - "20140b2fc0a0b7c5bb32089b4e8283ffbb6e2a01", + "985dbb0e4030aaaeb9e912367262d8cee3de3806", [] ], "testdriver.js.headers": [ @@ -464348,7 +471818,7 @@ [] ], "testharness.js": [ - "bc7fb8961b9f46ae77033ddfa6b88c9fb465ac5a", + "7fd5336bf34ae9d173b277acf48db45390193e40", [] ], "testharness.js.headers": [ @@ -464356,7 +471826,7 @@ [] ], "testharnessreport.js": [ - "e5cb40fe0ef652be407d4c48b1c59391864cec7b", + "405a2d8b06f00fe8292e0e9d5b917e193cfd416c", [] ], "testharnessreport.js.headers": [ @@ -464393,10 +471863,6 @@ "7ac32665e19a0b6c48db80a2c063f3b3e37600ab", [] ], - "WEB_FEATURES.yml": [ - "428aeee63a2a8a03f720d24edb7d743aa7ceab2e", - [] - ], "support": { "testcases.sub.js": [ "7ce755ca060b951db57d41fdf0eccf4cf70eaa22", @@ -464434,7 +471900,7 @@ }, "screen-details": { "META.yml": [ - "abfee89ffbdd29ccd2741bbd3d4a314387025509", + "2e3284c67cc049ff02b17b1c2205a0ce729b3528", [] ] }, @@ -464468,7 +471934,7 @@ }, "screen-wake-lock": { "META.yml": [ - "b311993d82e15880bb991e993ffe6716be28ef23", + "78d6dfcbd49952e62960dec17884a68580188df7", [] ], "resources": { @@ -464499,6 +471965,10 @@ "c7f0e4903b5ad46b411f0f0741112af80661cfc7", [] ], + "WEB_FEATURES.yml": [ + "adf4bf2ac173e8bff0978fa19b24e535f4229c2e", + [] + ], "css": { "animation-fill-outside-range-ref.html": [ "998576b3a4f2257006232506ee32306bc716895c", @@ -464591,7 +472061,7 @@ [] ], "testcommon.js": [ - "97e81f494cc6f0d40b293ade0db8e65cc53424e6", + "88021409f1470535a3ff4fb35197ad9354074bcc", [] ] }, @@ -464611,12 +472081,16 @@ "118ab130dbd48b1b300e0552e47c2ad4b40e2158", [] ], + "WEB_FEATURES.yml": [ + "c63c4901422ac852d99e54ea3342e68012c77875", + [] + ], "client-redirect.html": [ "73858969e02e64e97f1cc50a84935eeeb9068dfe", [] ], "find-range-from-text-directive-target.html": [ - "dc02ebd87415581b82941bf57cb14871e86c52f9", + "c7ed1899e7c729cff5fc5734ffee9e49d9b78d37", [] ], "force-load-at-top-target.html": [ @@ -464689,8 +472163,28 @@ [] ] }, + "same-document-tests-force-load-at-top.html.headers": [ + "33dcdbb01ff6564e542ed621c667523a0ada4879", + [] + ], + "same-document-tests-no-force-load-at-top.html.headers": [ + "e500009f91c0201a2a397a4267a6764cdb1eae8a", + [] + ], + "same-document-tests.js": [ + "6531c8aec194dad6505bf7cc988be3299a1f1807", + [] + ], + "scroll-to-text-fragment-after-DOMContentLoaded-target.html": [ + "b7d517a7f6b2781f882d0f4804225354d8dd0ac8", + [] + ], + "scroll-to-text-fragment-scroll-to-center-target.html": [ + "dbadc4a51b925e92a1d29e710e9469011ecd902a", + [] + ], "scroll-to-text-fragment-target.html": [ - "b2be85132cb8f2f2c14c82bf1854c3130f375c96", + "3bf78f1600129f60cab68b433e58743766652bcf", [] ], "stash.js": [ @@ -464788,6 +472282,10 @@ [] ], "caret": { + "after-designMode-off-ref.html": [ + "fbb3c2467e8cfe4e37083609048f89f46029a66a", + [] + ], "collapse-pre-linestart-ref.html": [ "2b25941ded7e51d4a62cfc536f42de0aea58a50c", [] @@ -464805,6 +472303,40 @@ "d5d199068c5b0465f96ed643af8d7d20a889312e", [] ], + "shadow-dom": { + "cross-shadow-boundary-1-ref.html": [ + "9cc7affd67149e7b15c36498027af909da22e23a", + [] + ], + "cross-shadow-boundary-2-ref.html": [ + "c9e0068c518a052873d2a56ed6a7ac2a4bb45658", + [] + ], + "cross-shadow-boundary-3-ref.html": [ + "189ab35c41107789deb1ed77495b9fe6bd93ba19", + [] + ], + "cross-shadow-boundary-5-ref.html": [ + "2abfd911ecd6bae6ea738ce91a98f43d9e7233ee", + [] + ], + "cross-shadow-boundary-6-ref.html": [ + "b7441c7bbcae8dcd7a111dd02b967bbfaa80b25f", + [] + ], + "cross-shadow-boundary-img-ref.html": [ + "7f3b03ace681d732f8fa7bdd85dac00470eae1e0", + [] + ], + "cross-shadow-boundary-select-document-ref.html": [ + "0312000bc0132b4a0861808613ab9b151048acfe", + [] + ], + "cross-shadow-boundary-select-root-ref.html": [ + "fe74406acda98ad7e4f868a7ecf7f8be0d0bf197", + [] + ] + }, "test-iframe.html": [ "42b982324b4e37633be7bccb037cff8f534b5712", [] @@ -464816,7 +472348,7 @@ [] ], "README.md": [ - "7040cf0a9d000d25367033a9ec5a5ebbb4690398", + "019eebd06b72da28f3141bfa0e9f5e04754020d1", [] ], "getPorts": { @@ -464832,10 +472364,6 @@ ] }, "resources": { - "automation.js": [ - "e88fdb1a9d23dfd601d5e9e6e11b560be07d577e", - [] - ], "common.js": [ "5177f83a8655f57a7b04935a136cc00bdd1b2626", [] @@ -464871,6 +472399,10 @@ "f20b425fc5e69d41083c40b8a5d76d69efe510cf", [] ], + "WEB_FEATURES.yml": [ + "8b00e934ea6db38818cf098d9ea634facfca3f94", + [] + ], "resources": { "blue.png": [ "4498dd258a20b5ea070ae4a05aad77c62d5228a8", @@ -465659,10 +473191,18 @@ }, "service-worker": { "ServiceWorkerGlobalScope": { + "error-message-event-worker.js": [ + "525bc96e763e0c61b72a1099c1ee2a1f928f7b84", + [] + ], "isSecureContext.serviceworker.js": [ "5033594e34ba75fa2d69b8d44c0cc69e333d3569", [] ], + "message-event-ports-worker.js": [ + "78cd0d86c0107bc28ecf61bf0476ef741a3f44bd", + [] + ], "resources": { "close-worker.js": [ "41a8bc069af895cfd1560177e558fcca7dbfa334", @@ -465734,6 +473274,10 @@ ] } }, + "WEB_FEATURES.yml": [ + "9ddc5b400dc0e116b9c3c8a14203d3a475422c69", + [] + ], "multi-globals": { "current": { "current.https.html": [ @@ -466079,6 +473623,26 @@ "b51c4517509470ce5f2940b1ac64242d65885ec2", [] ], + "direct.css": [ + "c812213f5307cd446ed4a38bda7e25d9fb4ab85c", + [] + ], + "direct.html": [ + "e98d70207afaead718c0c358a8aba0bbbc14da5b", + [] + ], + "direct.js": [ + "ed6f0e5f980a69bc14048f29d331c258cb2f995b", + [] + ], + "direct.py": [ + "d30d41b44e27a8426e78ef01724f0ab903a12b7b", + [] + ], + "direct.txt": [ + "f3d9861c137b2ddfdeff1690c544f57328df7447", + [] + ], "echo-content.py": [ "70ae4b60254cf7971cdd92dc2b1e382ef1a6196b", [] @@ -466364,7 +473928,7 @@ [] ], "fetch-request-resources-iframe.https.html": [ - "86e9f4bb3598a5951920d13e1e002d78fe0aa21e", + "37fc491134d0f5324cb88be28acb567b547b68d6", [] ], "fetch-request-resources-worker.js": [ @@ -466551,6 +474115,10 @@ "56d196df040f9adb999c944329e6f1569ac876fd", [] ], + "imported-sw.js": [ + "04a894d77f87a432c4a14fc79819f3c7cd63e6d9", + [] + ], "indexeddb-worker.js": [ "9add47683884c04fc22c34337714fd2a356dcac7", [] @@ -466608,7 +474176,7 @@ [] ], "local-url-inherit-controller-frame.html": [ - "b1e554d2204d728bfec17fa24c3706bd9d66bdfe", + "3a5d9b51e7574de7e1a63ff47cfc62e32eff5550", [] ], "local-url-inherit-controller-worker.js": [ @@ -466843,6 +474411,24 @@ "4d882c617d8dc6b790a51b82f3edeb65e7f18d22", [] ], + "or-test": { + "direct1.text": [ + "f3d9861c137b2ddfdeff1690c544f57328df7447", + [] + ], + "direct1.text.headers": [ + "156209f9c81ff73b6aaf1a0734ef770ddf0a8e3e", + [] + ], + "direct2.text": [ + "f3d9861c137b2ddfdeff1690c544f57328df7447", + [] + ], + "direct2.text.headers": [ + "156209f9c81ff73b6aaf1a0734ef770ddf0a8e3e", + [] + ] + }, "other.html": [ "b9f3504387722c4583a0904cb7b7f7a4f9706b71", [] @@ -466967,6 +474553,10 @@ "7580b0b68a95e7429adec9e37e180a06b53ca15d", [] ], + "range-request-with-synth-head-worker.js": [ + "6b6395aecaef26feeb59e81b2283e7ff02f9e6ae", + [] + ], "redirect-worker.js": [ "82e21fc26fdb94236020df968eb9fa3b286d9e19", [] @@ -467059,6 +474649,10 @@ "b9c28f51f90a8fc95c687713d945f4a19b127a64", [] ], + "router-rules.js": [ + "fdc1c9e063787053a24be52829862c39bed6a883", + [] + ], "sample-worker-interceptor.js": [ "c06f8dd77b79d4c6c6e8b3a15048a79338d9b42f", [] @@ -467161,6 +474755,10 @@ "e570958701db47250cf6d87a16f4722a84e626b2", [] ], + "shadowrealm-promise-rejection-test-worker.js": [ + "5c9737a67aa2f085756edf632f087d5c599a0259", + [] + ], "silence.oga": [ "af591880436af43abb4cee59fde320081bcac7ed", [] @@ -467173,6 +474771,14 @@ "a17a9a3a12cefe883a5d4dee4d5a45bef120d050", [] ], + "simple-test-for-condition-main-resource.html": [ + "0c3e3e78707b14dcca98bf1a435a34f402b3dadd", + [] + ], + "simple.csv": [ + "ecbef786e73889df94e3ced833c18a15d3f73fa2", + [] + ], "simple.html": [ "0c3e3e78707b14dcca98bf1a435a34f402b3dadd", [] @@ -467201,6 +474807,26 @@ "fdf1e6cac04e1651f30d960897da8740a40c9138", [] ], + "static-router-helpers.sub.js": [ + "0ab1f1fae1dd234d4e9206a10ea70a13fa10ed99", + [] + ], + "static-router-no-fetch-handler-sw.js": [ + "1ba5fd7d463b7913fd13425bcf977e383c4795cd", + [] + ], + "static-router-race-network-and-fetch-handler-sw.js": [ + "468116eea80bcc65d1ec33fb6492e04d720a2d2f", + [] + ], + "static-router-sw.js": [ + "c0bd683f9182689b1c586f360beb74103939c9d2", + [] + ], + "static-router-sw.sub.js": [ + "04f9c5533a4890ef10f3cd3c1abed94dffcc424f", + [] + ], "subdir": { "blank.html": [ "a3c3a4689a62b45b1e429f6b7a94690e556a1259", @@ -467429,57 +475055,9 @@ "tentative": { "static-router": { "README.md": [ - "5429b61d40e4c65fcdecd9d24d71fa2876a8d353", + "33e508aba2c4d552379e2de831cf1a8018ef0a69", [] - ], - "resources": { - "direct.txt": [ - "f3d9861c137b2ddfdeff1690c544f57328df7447", - [] - ], - "or-test": { - "direct1.text": [ - "f3d9861c137b2ddfdeff1690c544f57328df7447", - [] - ], - "direct1.text.headers": [ - "156209f9c81ff73b6aaf1a0734ef770ddf0a8e3e", - [] - ], - "direct2.text": [ - "f3d9861c137b2ddfdeff1690c544f57328df7447", - [] - ], - "direct2.text.headers": [ - "156209f9c81ff73b6aaf1a0734ef770ddf0a8e3e", - [] - ] - }, - "router-rules.js": [ - "f8fe403298604c0b4bfc09202fa75053447d6081", - [] - ], - "simple-test-for-condition-main-resource.html": [ - "0c3e3e78707b14dcca98bf1a435a34f402b3dadd", - [] - ], - "simple.csv": [ - "ecbef786e73889df94e3ced833c18a15d3f73fa2", - [] - ], - "simple.html": [ - "0c3e3e78707b14dcca98bf1a435a34f402b3dadd", - [] - ], - "static-router-sw.js": [ - "1e02dbb56ded1924ba121c1719dd6084ffcba728", - [] - ], - "test-helpers.sub.js": [ - "64a7f7d24fd2d36dcc914bb321538f576267f010", - [] - ] - } + ] } } } @@ -467490,10 +475068,14 @@ [] ], "WEB_FEATURES.yml": [ - "171923c067225ac7334b8011e7deaf347538952a", + "dcb21f387167f46062bc66d2bf5d0f3fc8c58417", [] ], "declarative": { + "WEB_FEATURES.yml": [ + "4e31ed49627c40f145e87e867d5c0395a72783f3", + [] + ], "support": { "declarative-child-frame.html": [ "603c47743b807ecc00a483d328edcacb7ebb8d57", @@ -467520,7 +475102,7 @@ "focus-navigation": { "resources": { "focus-utils.js": [ - "f593267cc31f8d9060b48f95fd91c5629d5b29ee", + "4aadfe24cbc1aafff7f36293e755694d5a6c7a48", [] ], "shadow-dom.js": [ @@ -467543,6 +475125,14 @@ [] ] }, + "reference-target": { + "tentative": { + "README.md": [ + "5c43d245d8a9474f7af4e75ebce9a0a54543cfb0", + [] + ] + } + }, "resources": { "Document-prototype-currentScript-helper.js": [ "c25693cdb9ce5a030b106a3b061e3665f02c2d60", @@ -467816,6 +475406,14 @@ "a475ee4f96ebdba21095eae2ecf98e524d344d72", [] ], + "credentials-test-helper.py": [ + "575e504e64f7dceb46ba68445d8da47f91ac1ea5", + [] + ], + "cross-origin-worklet-in-sandboxed-frame-inner.https.sub.html": [ + "f5e41c84d55755ceb1a756911d4a4ddffcd227fc", + [] + ], "delete-key.https.html": [ "41595f3ee3868a1e7fa1f866bcc8936de16f5cbd", [] @@ -467873,7 +475471,7 @@ [] ], "select-url-permissions-policy-helper.html": [ - "b70d763ad457415dd7facc78a003e5a20a1d9c5d", + "896daa59828a485908b4a8bf826ec10b00a2ae2b", [] ], "sender0.html": [ @@ -467889,7 +475487,7 @@ [] ], "shared-storage-permissions-policy-helper.html": [ - "d87092aad1d2efedf5d4245884e28e159880b2df", + "dd1bf50cf42c0ad46d3544e679d8f8a3737acbbb", [] ], "shared-storage-writable-fetch-request-fallback-to-network-iframe.https.html": [ @@ -467900,14 +475498,26 @@ "d304669ea19186b4fde0b105c37725d7a628e8bd", [] ], + "shared-storage-writable-fetch-request-in-sandboxed-iframe-inner.https.sub.html": [ + "ef8b2459f3cc386473a38d9ff651925a5f7c4850", + [] + ], "shared-storage-writable-iframe-in-fenced-inner.https.sub.html": [ - "87dbe81a2b5294d8b7bc62dcc0e438d3f5ef830a", + "cd1ed285393de4623f16f24c5927bf9bd35c3f2a", [] ], "shared-storage-writable-iframe-in-fenced-inner.https.sub.html.headers": [ "1b63235b7cdffe9ebb43bfac3a01d5220e1519fb", [] ], + "shared-storage-writable-iframe-request-in-sandboxed-iframe-inner.https.sub.html": [ + "4d1b7ab198d7f0e85f3d3dcc8681264c2d05c56a", + [] + ], + "shared-storage-writable-img-request-in-sandboxed-iframe-inner.https.sub.html": [ + "8842a4689d823ab0b767eb14ec3f18a22deb2b19", + [] + ], "shared-storage-writable-pixel-write.png": [ "818c71d03f435db011069584cda25c1f66af1a85", [] @@ -467933,15 +475543,27 @@ [] ], "simple-module.js": [ - "968afed31b9a86904d2389a7ae5a34d4d7624595", + "11b650811dcc9cea02d541a72314ea84a335f3fb", + [] + ], + "simple-module.js.headers": [ + "cf3e03e24c7d68e3fb9f0be9102591c659a2b43c", + [] + ], + "simple-module2.js": [ + "dd5f31f36e8388dac13938dd8253fee4a76d094b", + [] + ], + "simple-module2.js.headers": [ + "cb762eff806849df46dc758ef7b98b63f27f54c9", [] ], "util.js": [ - "4a7fcc4590ff53e41695e9a6c11304e287eb3384", + "09eb45c591b42b3bbb969948362668daf902b3f0", [] ], "util.sub.js": [ - "f147209d6096375d9a5ccc5b1dc42a36d3be6bec", + "a5511a96800eaabb289c4e1e193e10e2ddb06f21", [] ], "verify-get-undefined-module.js": [ @@ -467960,8 +475582,12 @@ "1b63235b7cdffe9ebb43bfac3a01d5220e1519fb", [] ], + "verify-length-module.js": [ + "8ba10fbcb64fc40535f216454e64199ae49ffa67", + [] + ], "verify-shared-storage.https.html": [ - "52c79e7e85afc66782d7d6c144c1a6b55bfccada", + "cc4440df7d8e3aed92bbae2545bc2fe20cb3bcb6", [] ], "verify-storage-entries-module.js": [ @@ -468303,7 +475929,7 @@ [] ], "soft-navigation-helper.js": [ - "58ca9c22657b68c495f6c4662a1073352db6be32", + "d405adb4e7eb7690fe73f31db523d357a38734ee", [] ] } @@ -468314,6 +475940,18 @@ "README.txt": [ "60ac226f8cd4c8f82f0df9cf641cbe26ac39fed5", [] + ], + "hint-test-inputs.js": [ + "258fb8e857361cdbdf731f33a6bee8aa4a8bcb94", + [] + ], + "test-inputs.js": [ + "283ebaf596d72fa60d0c3ea9c065abb9e30a1672", + [] + ], + "test-utils.js": [ + "be9290fe50b4a766e8cc8269978dd406d5e44638", + [] ] }, "resources": { @@ -468330,7 +475968,7 @@ [] ], "cookies.py": [ - "3ba9cd9270b2c30b2d7911878338d624ecacc281", + "304f999570b22f432681f93c17db4d06d439ad5b", [] ], "executor.sub.html": [ @@ -468349,8 +475987,16 @@ "d912eff90a5b9cc7f726a2a9c9d5da7eb4103fa6", [] ], + "random_redirect.py": [ + "595096e0cace1237badd1137bbcee414c01e9c15", + [] + ], "ruleset.py": [ - "97de1cc1a015cac8cc17e71b74947303e11c6d89", + "5b6ac87aed5ea1ed41f7e79bf340a4259039e52a", + [] + ], + "slow-executor.py": [ + "379ab552b94d0effd2bb28da60a80e3233c09002", [] ], "sw.js": [ @@ -468358,7 +476004,7 @@ [] ], "utils.sub.js": [ - "73624c0c25b5d13f3ae116ed3589c1aea30c89c8", + "0ab3f1ac3419a4ac8653ddef199d82e238b333da", [] ] } @@ -468553,6 +476199,14 @@ "c14df771544e34d75d42118f306e164300e239c2", [] ], + "media-capabilities-decoding-info.https.html": [ + "5f1523701ea5621abed5f50ed9f5b8c3bb02f0e8", + [] + ], + "media-capabilities-encoding-info.https.html": [ + "539867824ce845a17d47daf02e085cd475fa878a", + [] + ], "media-device-info.https.html": [ "14d2ff78c99a3653db35546ffb08fe7741ee44be", [] @@ -468605,6 +476259,18 @@ "34a59f07ee1c88c6e17a19c17cc6141d5b2f2650", [] ], + "prerender-while-prerender-initiator.html": [ + "1764271581830ebc124d466658ff82d429c124d7", + [] + ], + "prerender-while-prerender-inner.html": [ + "60b6c64dedc12b014db1925fe3f853a916943fb3", + [] + ], + "prerender-while-prerender-outer.html": [ + "313c34667f42d21dd39adf31a0490318b70baa97", + [] + ], "prerendered-iframe.html": [ "dcdfb9b65b9dd4b7be8137d0a9fec03affa5d301", [] @@ -468638,7 +476304,7 @@ [] ], "request-picture-in-picture.html": [ - "9aea3d33d5cb39ad71732c7c8ed2e865277391c0", + "360cf3b200760a6980f9d0c66cd4846416d87ac1", [] ], "sandbox-iframe.html": [ @@ -468681,6 +476347,26 @@ "c1ca36dc2fa570f9f6eb57f4e9c17fe91a5f4af4", [] ], + "session-storage-carry-over-to-prerender-page.html": [ + "39df79c84762fd506b21132972fa7567a8977c2e", + [] + ], + "session-storage-isolated-while-prerendering.html": [ + "46170393deb4ad101bfb4185dcc72fd4558422c9", + [] + ], + "session-storage-no-leak-to-initiator-page.html": [ + "6c0ee4c4adbab917803a2e08377af3004f131430", + [] + ], + "session-storage-swap-after-activate.html": [ + "c5e443721491a7551aa33439f92996b9d6d5a954", + [] + ], + "session-storage-utils.js": [ + "06688e3bd4cf6e8d251ef694ffba40b8dab95248", + [] + ], "shared-worker.py": [ "48e5cd9c153eb5caf4c2b05cc4125b534f1ef93d", [] @@ -468694,7 +476380,7 @@ [] ], "utils.js": [ - "56ab603fdffb962062f75bace5f1cef45bf54f6b", + "c9486d7fa1dfe5ad2230958c57d6c5a2a924eada", [] ], "wake-lock.https.html": [ @@ -468779,6 +476465,10 @@ "2b7a03e245ab82310d4637d3a2a4e1dbe3df38db", [] ], + "WEB_FEATURES.yml": [ + "7a24460e1bfe11d5136571729eded320e2f8e97f", + [] + ], "webspeech.js": [ "f2f51b694c6f3e2e0edcb7c7bebb02ae6dd90249", [] @@ -468818,6 +476508,10 @@ [] ], "resources": { + "helpers.js": [ + "2dc5ab00dd16f181f85c4b0ab8f87934a932091d", + [] + ], "partitioned-estimate-usage-details-caches-helper-frame.html": [ "0679c1decf55835a0de37a9e64f12647da2a6c0a", [] @@ -468841,21 +476535,37 @@ "554bd31684ec096f0a3cf56a82dbfbc5556ddfa2", [] ], + "WEB_FEATURES.yml": [ + "a24e831c4aa8229d12f8fe9bdf8f3e1187f51db5", + [] + ], "helpers.js": [ - "1ca0e121c6afffbd0babb27045f17d972abe1f98", + "7a476805135df44ff141d3f59ac9c59e2966b3e8", [] ], "resources": { + "bless_cross_site_permissions.html": [ + "c3c5b6c0b073d0c0c15bfb6d78ef2335bd228034", + [] + ], "echo-cookie-header.py": [ "f1599e3a89919adfe0a0de60515ef1d44a898190", [] ], + "embedded_forwarder.js": [ + "c1e5e54443b4c09b6bbf7c1b12d929ccbf4a12e0", + [] + ], "embedded_responder.js": [ - "4a956c5f39459022f7c7c63c54ee98e7fdb8b8a0", + "c222c4dac0562ef6fda4f5a9b0855c358229492a", [] ], - "embedded_worker.js": [ - "f3a0fb257adf204431a2df4ade796c74c0643950", + "embedded_worker.py": [ + "0aa457657f1f571a5d9ac2d197e77801476b73ef", + [] + ], + "get_cookies.py": [ + "07e8c2dae3ceaa86766b2050784850a7f5ca23b8", [] ], "hasStorageAccess-ABA-iframe.https.html": [ @@ -468895,19 +476605,31 @@ [] ], "script-with-cookie-header.py": [ - "83129a55595e54225afd7e9161931d8e5f60f0c0", + "2237bba463547e890dc12bd4b11edbd7b539d9d7", [] ], "set-cookie-header.py": [ "e937ba2ca4eca2421ea0025c5a527d3bb6b574f4", [] ], + "set_cookies.py": [ + "fe182dd00cb6c3374e652072a16b7260039aab39", + [] + ], + "shared-worker-cookies.py": [ + "9307c4112c5fa0af31309d2a339ec0fc3814cc8c", + [] + ], + "shared-worker-relay.js": [ + "c94acefec999cef61e16d49fcfb529fe60e7b98f", + [] + ], "storage-access-beyond-cookies-iframe-iframe.html": [ - "993d87d0d3a346aa410d662bdfd43379185a2a46", + "44ac9cd8986067b611196836210511b07bbb2a61", [] ], "storage-access-beyond-cookies-iframe.sub.html": [ - "364e5d70e1ec95f06223afc4be6d0c165e6af0fb", + "7d43a06bc7eeb942c498f52856eb7e50b37b26b0", [] ] } @@ -469076,15 +476798,11 @@ "animations": { "support": { "animated-path-helpers.js": [ - "3f6fffb9078b74ea674951d1299e2a29ce1f93ac", + "8fd4492265c2eb8aa00fb173bd8d625f119adaac", [] ] } }, - "color-inherit-link-visited-ref.svg": [ - "3342e9347c319bacd632dd20399dca03f9fe69e9", - [] - ], "coordinate-systems": { "support": { "abspos-ref.html": [ @@ -469352,6 +477070,10 @@ "acfc7be517b3cc6783a372de4c67cc0d7a8b976e", [] ], + "svg-intrinsic-size-min-size-ref.html": [ + "f9ae2910d860e41dc0f489730ebabc44fc76315d", + [] + ], "svg-use-symbol-animateMotion-print-ref.html": [ "07e162c8a5182d7550640801d05c3ccc36718adc", [] @@ -469458,7 +477180,7 @@ ] }, "testcommon.js": [ - "7d87923f59bbc8e984a8cadcc9c8914a9f99fc8d", + "7177dd801f90a18c49c082fa97c6743901bac178", [] ] } @@ -469529,6 +477251,10 @@ "3739265b23d22e39f2e2acdc90d94c583b36f4f9", [] ], + "green-100x100.svg": [ + "120941444a4898197d6b6001f9908a6cd48b62ba", + [] + ], "marker-path-001-ref.svg": [ "202ac3420dc080f85c4a2cac5e13ccbea6d0235e", [] @@ -469585,10 +477311,42 @@ "446e8e3fca8ddc48707f8df678eec655e303086c", [] ], + "paint-context-003-ref.svg": [ + "69ba36f44821e9f41fc739ffbd54369326e1e65b", + [] + ], + "paint-context-004-ref.svg": [ + "25acb75ba00ec48e95515f7c803f52e1aaf9418b", + [] + ], + "paint-context-006-ref.svg": [ + "6aa42374c512b528868c55d0339eb4deedf09d69", + [] + ], + "paint-context-007-ref.svg": [ + "0328272c6aa0907e226cbbbc2008358bee43ef7b", + [] + ], + "paint-context-008-ref.svg": [ + "49d4f8947b003302a76888e6beea385a4019f404", + [] + ], "paint-order-001-ref.svg": [ "7822a80b942fee54a87106d7def13429454cc26e", [] ], + "paint-order-002-ref.svg": [ + "372e53e463bb6c36307d649166e688023b8fb7e8", + [] + ], + "paint-order-003-ref.svg": [ + "6abc0c76af85fe7c1d04623e021bae62326a3d9f", + [] + ], + "paintorder-text-decorations-ref.svg": [ + "c209d88a77c75417fa0f75e0332d0923abf9b4e3", + [] + ], "percentage-ref.svg": [ "610a3ddb2d21da119fb4a53f5f351dff0190880c", [] @@ -469685,6 +477443,14 @@ ] }, "property": { + "d-none-expected.svg": [ + "60195b1777f3ed2fd800380d02ba488e24ed5af5", + [] + ], + "d-none-ref.svg": [ + "60195b1777f3ed2fd800380d02ba488e24ed5af5", + [] + ], "marker-path-ref.svg": [ "8cd5c8ea486d09f743d5ee24e99a3e9dccc8e012", [] @@ -469780,6 +477546,16 @@ } }, "render": { + "order": { + "clip-path-filter-order-ref.svg": [ + "ea42d9eb02a5f23fadc062c41cfa513979764aef", + [] + ], + "z-index-ref.svg": [ + "ff7f9156682b6436ea8d0e4ab805b7c0f0d0fd5a", + [] + ] + }, "reftests": { "blending-001-ref.svg": [ "dcd39a8a1d5b2c76038a50506e661d3c5513a847", @@ -469815,18 +477591,6 @@ ] } }, - "rendering": { - "order": { - "clip-path-filter-order-ref.svg": [ - "ea42d9eb02a5f23fadc062c41cfa513979764aef", - [] - ], - "z-index-ref.svg": [ - "ff7f9156682b6436ea8d0e4ab805b7c0f0d0fd5a", - [] - ] - } - }, "scripted": { "script-style-attribute-csp-ref.html": [ "a7316213f13a57fa1c3ab5c058bc9d21f14d5055", @@ -469932,10 +477696,38 @@ "3f0c26c8feaf58e51ef387c972c2b772166d0fe8", [] ], + "html-resource-with-doctype-and-symbol.html": [ + "357528a6a99bff60d4dca3bd8d7ce261ad245ffd", + [] + ], + "html-resource-with-symbol-and-content-type-svg.html": [ + "59cdfb91c104b5cf9ed346802236c890523133c4", + [] + ], + "html-resource-with-symbol-and-content-type-svg.html.headers": [ + "070de35fbe96585b9cf1b7da4ce8e4ff08a8f3ba", + [] + ], + "html-resource-with-symbol.html": [ + "59cdfb91c104b5cf9ed346802236c890523133c4", + [] + ], + "non-svg-root-resource.xml": [ + "6012063ea5b03ce468b950d348bbb0265a249550", + [] + ], "red-rect.svg": [ "1ee578ab6adba89df340fa643a93f63368344421", [] ], + "sprites-stacked.svg": [ + "bebe1bd9198068da848ebadd46d90b19c62a53eb", + [] + ], + "sprites-target.svg": [ + "1eb11bfbfb4271442c83a99e81a8a44ad8c1d1da", + [] + ], "sprites.svg": [ "f73b8851913f402aa41adac40360b15acbad1119", [] @@ -469946,10 +477738,24 @@ "blank.svg": [ "9e560bdc5feddc1ae76e3950e89efc1c31dc9269", [] - ] + ], + "support": { + "use-external-reload-in-iframe-child.html": [ + "f027f5151fe9ebe2342ca6c152737f722eba2099", + [] + ], + "use-external-reload-in-iframe-resource.svg": [ + "8bc72975282e0034ccb46fac5baeac0d9cbf0fa5", + [] + ] + } } }, "styling": { + "color-inherit-link-visited-ref.svg": [ + "3342e9347c319bacd632dd20399dca03f9fe69e9", + [] + ], "invalidation": { "nth-child-of-class-ref.svg": [ "780bb9f3f68551d37dac298dfff7cf1ac55597ab", @@ -470003,10 +477809,18 @@ }, "text": { "reftests": { + "first-letter-ref.svg": [ + "66f5c6d68280e1dd016c64351446dc1965d84627", + [] + ], "gradient-after-reposition-ref.html": [ "3fe1224b9a0120e9691688fe36048ad0e6323a84", [] ], + "green-100x100.svg": [ + "120941444a4898197d6b6001f9908a6cd48b62ba", + [] + ], "lang-attribute-dynamic-ref.svg": [ "56eebb2f7e44edee0d249a59f23f2ad6e36ce228", [] @@ -470031,6 +477845,14 @@ "18c00ab332c73f5c033e37d4429872d07210ade4", [] ], + "text-bidi-controls-anchors-1-ref.svg": [ + "45c955b2b9fe8d5a5dd00ab1bf89eeb93d060d1f", + [] + ], + "text-bidi-controls-anchors-2-ref.svg": [ + "08862dc3e5ce99c1c8e39ce5111a1ddb12399a6c", + [] + ], "text-clipped-offscreen-move-onscreen-ref.html": [ "b03ac22aaa3155323ea1574e49241368ec1ad66c", [] @@ -470043,6 +477865,14 @@ "3d3968fa4923436e760dd80b05af292a615cffcb", [] ], + "text-font-face-load-image-ref.html": [ + "5a668b313e5eced93cc0358d84a75a56f5b76e8c", + [] + ], + "text-font-face-load-image-svg.svg": [ + "536938290f13d353367b2e98083940cd492766fe", + [] + ], "text-inline-size-001-ref.svg": [ "6abd211584ea3b500e409c0f0fa956182fe131e6", [] @@ -470135,6 +477965,10 @@ "1572149cf68bde8c0e8c032b28d37ae95c64652a", [] ], + "textpath-letter-spacing-01-ref.svg": [ + "9264c265f71526b9e9700f1c9f37d7ac37309529", + [] + ], "textpath-shape-001-ref.svg": [ "10827c85810cdf9dc7e70a665c289814d35ed219", [] @@ -470268,7 +478102,7 @@ [] ], "install_chrome.yml": [ - "7599321be24877788efd8aa970f318ff5c7d2f70", + "2dde99286cb84c088cb85e2ec96a55e14b00ee9e", [] ], "install_edge.yml": [ @@ -470276,7 +478110,7 @@ [] ], "install_firefox.yml": [ - "73af59766553f7ef5f4d4647d7a94f8b0977a8fd", + "d43e28b274f1cf44d75a742c1786b380906e3cdc", [] ], "install_fonts.yml": [ @@ -470349,7 +478183,7 @@ [] ], "jobs.py": [ - "44de9fe1ad078673e92385bd6e4bedba129c2485", + "fe8eaae069eb3c548cf22af0fa5e7e65063a1b2a", [] ], "macos_color_profile.py": [ @@ -470361,7 +478195,7 @@ [] ], "manifest_build.py": [ - "6d93a35258398ef98e8f74d107dbb0e0cf171216", + "15b8679f00942e25686833717c8882737edbe396", [] ], "regen_certs.py": [ @@ -470369,23 +478203,23 @@ [] ], "requirements_build.txt": [ - "e0443762c3c1721d3545ad7384544a54e71a8e55", + "e74e4e5302de95611631ab3193f8ae38f643f7dc", [] ], "requirements_macos_color_profile.txt": [ - "7505a98d9f3c27add68ed8e1fe17ceae2358e91f", + "cd3e785aa47963c00137c5c94d55c8f3cb692d8e", [] ], "requirements_tc.txt": [ - "ce121e561f4a1336ac80327019fadb3557afff9d", + "9bc3c840ab4a035ab39033fc241effb8f98fe79b", [] ], "run_tc.py": [ - "b91825497d4996f5b3599502f7bed65475d4130f", + "446afadac8886261a8cc32370e52ee524f03fd1a", [] ], "taskcluster-run.py": [ - "2917d8f3402e218ccf868485ebcb802e40001f25", + "fe9538e3168b01937092f466f23d53c2147836db", [] ], "tc": { @@ -470419,7 +478253,7 @@ ], "tasks": { "test.yml": [ - "79d510c671e2a65de6f675b1a117b37e2f8991f2", + "fffb146dacc792d9ac9da2caf557cb8ec3ebdec4", [] ] }, @@ -470455,7 +478289,7 @@ [] ], "test_valid.py": [ - "3a4ed62c3a160da48dd1362aa681846695b13bd6", + "dd8d732654252a190dee1f0e8f9e056ec62f76cd", [] ] } @@ -470471,7 +478305,7 @@ ] }, "update_built.py": [ - "8e0f18589de5cc7e31f2740085b46203b7a1e231", + "929b09f9fe42d3b4613895e21a6fc91800c6c6cb", [] ], "website_build.sh": [ @@ -470480,7 +478314,7 @@ ] }, "conftest.py": [ - "8d1f585b0d8c347518a5a68ceca2bbcc553808c9", + "56521819507c13277a6420be01b3111582a0e6aa", [] ], "docker": { @@ -470493,7 +478327,7 @@ [] ], "README.md": [ - "bc98d198612c9afdcbba991b120ba9dc473d29c7", + "9ec7a99cfff1620ac65c62f5c84cefcffe098b5a", [] ], "__init__.py": [ @@ -470505,11 +478339,11 @@ [] ], "frontend.py": [ - "f91e79fa78e493edb2dd87bdbaf1bc490d225836", + "05f4e0fc8db710bc00c242c32ee4db6fe4b43659", [] ], "requirements.txt": [ - "332fdbdeb1b12ee21595aeb21f1dade3f459115b", + "b275ccfd8f1505c29cd1f29fc161e3b50f9af358", [] ], "retry.py": [ @@ -470563,11 +478397,11 @@ [] ], "lint.py": [ - "cf164b6820f5351716705f96afe41cd2e9835c64", + "32bc7ece7b12f366fae0278fe4de06df43395583", [] ], "rules.py": [ - "471ca06a49a5b4c85daf0923e67355a4609e60ac", + "8dba7817a9e5633a48de61351df7976780ab3832", [] ], "tests": { @@ -470764,7 +478598,7 @@ } }, "test_file_lints.py": [ - "b48549c1313e806bc36bf9db8d136419e909fdea", + "e77048b31566887576d31c37d3d80833336131c2", [] ], "test_lint.py": [ @@ -470778,7 +478612,7 @@ } }, "localpaths.py": [ - "a027af852df329cbb1c881d1ba6c4682b71eeeed", + "ebd3c54e7758b04e6ae45c1c3d20c3c93ef95b4e", [] ], "manifest": { @@ -470805,7 +478639,7 @@ [] ], "item.py": [ - "86f7bd6020b4e44f21359566fb65f4fe9ae3d775", + "e25f7ca2c29adc3cd9165992117b37bece5fc312", [] ], "jsonlib.py": [ @@ -470825,11 +478659,11 @@ [] ], "requirements.txt": [ - "d7c173723ed5d2bdc5ffdb2e8ec7063c5a1e7f32", + "70ad0df0e958c2a8528d558ff974db6ba252ab05", [] ], "sourcefile.py": [ - "832968e63234096700625bd4d93a3db17123c1c4", + "3563fb9e5e90d673f9f024f2affbde38365246d6", [] ], "spec.py": [ @@ -470858,7 +478692,7 @@ [] ], "test_sourcefile.py": [ - "298e480c142c54bfabdc9d6de0ba3bfe695cc472", + "8a9d8c36ee1c624cec7c6ed7cc9e155b934285a3", [] ], "test_utils.py": [ @@ -470928,7 +478762,7 @@ [] ], "schema.py": [ - "4cfe154b2f5180594f47f206d7ed23b7b0de74c8", + "b6e64bcd4676dbddb88be107e048dd0d9e058229", [] ], "tests": { @@ -470937,7 +478771,7 @@ [] ], "test_schema.py": [ - "3534ad33983afdc57081a7a0983680738621fbd1", + "78c40b44bf6021aef18efd16297b6394de6581be", [] ] } @@ -470968,27 +478802,27 @@ } }, "mypy.ini": [ - "1e58e9625e6749838331c9f85ed1d8a651fc40a4", + "cc22a770b0428ea322416742074a32ae2f47bcf0", [] ], "pytest.ini": [ - "81666e01db9e5b653df94dd6293fdf715a503f4a", + "650d07caf3a67c75a08c438f19f3a1231596aff5", [] ], "requirements_flake8.txt": [ - "fc1f92a69f703bfe5e340c44e0c9022f45c97ae2", + "3f7f3121ca270d5fc43ad959d6e181017ce2f413", [] ], "requirements_mypy.txt": [ - "c3db2292af599ad62a749c6d7baa3fd75136e48e", + "3224251e3fda9bdf9bac7fd0a0cc35ba3f549be5", [] ], "requirements_pytest.txt": [ - "9034cda71908a5d6f2744b122b001d8a037459e0", + "757cee5037f5ff91145f7a2241fc3cd29198306c", [] ], "requirements_tests.txt": [ - "bd2cfe6c564bce893e89c0b8dc5ccdad50d22409", + "c43af1ba8baa21070ee27e4f88858d772c2f9bfe", [] ], "runner": { @@ -471055,7 +478889,7 @@ [] ], "serve.py": [ - "5ba20e04580f2c81a97788c3fceb72983e66e06c", + "a11e15db98db3f5f9e0980b39fdcffa5080d9737", [] ], "test_functional.py": [ @@ -471063,7 +478897,7 @@ [] ], "test_serve.py": [ - "e590b49870fbbb5cd160001a3de9f17da97f3440", + "9dcda584de2ea44898a7e6af76075e5931ea97fb", [] ], "wave.py": [ @@ -471143,78 +478977,98 @@ ] }, "attrs": { + ".git_archival.txt": [ + "8fb235d7045be0330d94bcb3abd2ac43badaa197", + [] + ], + ".gitattributes": [ + "ec8c33334fee0c7b5da22af531a3394e02f63023", + [] + ], ".github": { "CODE_OF_CONDUCT.md": [ "1d8ad1833e7e9925d16e89efe73a7c31ec1d5ca0", [] ], "CONTRIBUTING.md": [ - "bbdc20f19324257c85e92350873ee6cf8b77b612", + "a7e5b014d33886e399be1ec9f78cbb128bd3f3ab", [] ], "FUNDING.yml": [ - "ef4f21216256d669a066c26e5903ffb1f1098ce1", + "7c250da1e51bb232bc1587ff058da78cde64d5c5", [] ], "PULL_REQUEST_TEMPLATE.md": [ - "88f6415e96cfb8d1777bc4f59d1a64c494cfdf9e", + "e84b6c86ac84fdee3e563e2d092845373fd22b9a", [] ], "SECURITY.md": [ - "5e565ec19cdd19aaec044f13efaa7a8530eda4c9", + "1b8e14cf1efbe8995fec57659a14e6dc0d012546", + [] + ], + "dependabot.yml": [ + "fd898955fba0748b44d8c7afbb6284bde672dd20", [] ], "workflows": { - "main.yml": [ - "f38fd915096704927027bd722538f967c8baa726", + "build-docset.yml": [ + "ec0230d080c7932286e5842019d2b06e01f12847", + [] + ], + "ci.yml": [ + "ca816aa601cbeaa6fa1cb4766f279e3a4858bb7d", + [] + ], + "codeql-analysis.yml": [ + "f75fafa5be3438d4b3860f2654d6062784f9ff4d", + [] + ], + "pypi-package.yml": [ + "8495480c1bcb5fd0ae8b9303795199cae07ccfea", [] ] } }, ".gitignore": [ - "d054dc6267d937e13fab0000e1a89b79ff26b1dc", + "b58afd704e5eb108377201fd919117e9fa847a8e", [] ], ".pre-commit-config.yaml": [ - "a913b068f52ebd954a7d777f14836d5c87535d00", + "df18314431670c9e8926ff5b8f6ccd53a9e13b63", [] ], - ".readthedocs.yml": [ - "d335c40d56765c37c94c63ca1078e4d80f78f76a", + ".python-version-default": [ + "e4fba2183587225f216eeada4c78dfab6b2e65f5", [] ], - "AUTHORS.rst": [ - "f14ef6c60749458fcb60bfdee27efe4d957b4aeb", + ".readthedocs.yaml": [ + "53bc38f7ee3a10900df85ff491fe311fb49b2be0", [] ], - "CHANGELOG.rst": [ - "1d194add22ba2f09b2150725cef14e117a548be3", + "CHANGELOG.md": [ + "a768197ae1d815374c476f5d27cd6229107debab", [] ], - "LICENSE": [ - "7ae3df930976bd01d34041b1c7ceeb4b32aace8c", + "CITATION.cff": [ + "83718ad889d76d57bd2e54ecf08b512b0fae8e34", [] ], - "MANIFEST.in": [ - "3d68bf9c5d5a95827e6a4b36039c7fedd61c392a", + "LICENSE": [ + "2bd6453d255e19b973f19b128596a8b6dd65b2c3", [] ], - "README.rst": [ - "709bba83d7e037c062b3ff02e308961db4e0a864", + "README.md": [ + "6ef8c0204eaca07f455839563860984a8929d2b5", [] ], "changelog.d": { - ".gitignore": [ - "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", - [] - ], - "towncrier_template.rst": [ - "29ca74c4e8f25fda7e77f0e6c4173dcb905f2f4b", + "towncrier_template.md.jinja": [ + "d9ae7c10efc162f87dde182ffffe2d515201ddb5", [] ] }, "conftest.py": [ - "0d539a115c77d2ab9fdd01d90edc0faca7ae4a03", + "144e5f3e19f8fd05534ec4552ec53f7aa572256f", [] ], "docs": { @@ -471238,133 +479092,159 @@ "attrs_logo_white.svg": [ "daad798da0080bf91b3221dcd7fbf496e6206c61", [] - ] + ], + "custom.css": [ + "72083fee482321b1b3501a1c4edbfed3cae3d4e5", + [] + ], + "docset-icon.png": [ + "d9886f1f6f6bc39913ac3c054c5d0fc93a2b6115", + [] + ], + "docset-icon@2x.png": [ + "5551b42bd92cbdec895a6b857445d229cb099308", + [] + ], + "social card.afdesign": [ + "06fa6696059d132ae5635e4d6d2e3853faf4504c", + [] + ], + "social card.png": [ + "46af5dcfd691cea269c52cf4cbc99836eea1bed9", + [] + ], + "sponsors": { + "FilePreviews.svg": [ + "2fff3aa3aeaefe12fa4e9ac630e50d9ec55ada98", + [] + ], + "Tidelift.svg": [ + "8b4da42cb1572370d89c9158c1074d00662a02d4", + [] + ], + "Variomedia.svg": [ + "90e750d25745672498c3603b0d05e9c765d6bea8", + [] + ] + } }, - "api.rst": [ - "02aed52ad5dfeeed0a02598933697bcc221e6f53", - [] - ], - "changelog.rst": [ - "565b0521d0c2cdbfe493d19765b04d5c119fa7eb", + "api-attr.rst": [ + "1c1c3edb3fcd6a7c798111efc4a2bd66004c12e2", [] ], - "comparison.rst": [ - "760124ca3bc17982c1e9051ff4b07f21455428f8", + "api.rst": [ + "d55f2539ea5da9105f64da1657189f70744318e9", [] ], - "conf.py": [ - "0cc80be6a6857e9dbb9d58454ebbe4ade93549ff", + "changelog.md": [ + "3c8d4d8b3568275687fa3203f5add3ec7eec3be8", [] ], - "docutils.conf": [ - "db8ca82c747cede027c01b3e9375d06d3954149d", + "comparison.md": [ + "79786e9e19ff20988f015ce78aafccb09c1aefee", [] ], - "examples.rst": [ - "ba5343d4ad20ceeadfcf8df68864fe0a487694b0", + "conf.py": [ + "b92354a6fd47044c9791d7728b93d4b7509ebfb8", [] ], - "extending.rst": [ - "faf71afd913d8c51a79c793b8d2c4ff770efce69", + "examples.md": [ + "0f8301aa59700a171ab5ebb034fc27d063c8d8c8", [] ], - "glossary.rst": [ - "5fd01f4fb19e4ca13a70227ea490ee043a51f2b0", + "extending.md": [ + "c6cb5f574bc94673052f30d3e4a373616fed86f8", [] ], - "hashing.rst": [ - "30888f97bba4e4e9448cda83ca73031deb6fb04f", + "glossary.md": [ + "6b09a3ad4d12abdf727c097568f4a8a2577dc39c", [] ], - "how-does-it-work.rst": [ - "f899740542cd1f6fa745117435a83d5ee019cc3d", + "hashing.md": [ + "231d818af6a1c4d42e0adf6cb87becc1e1a88124", [] ], - "index.rst": [ - "ff65a6738c9c0b1a33410276139752a857a32cbd", + "how-does-it-work.md": [ + "7acc8121322b2ba3e425a0b5fce4676796ae6e61", [] ], - "init.rst": [ - "fb276ded8a2b28ccf3d01a44c5daff0ff8e1e5ee", + "index.md": [ + "ad92b5a398257f95079edfa70744a19fa5edc3f7", [] ], - "license.rst": [ - "a341a31eb98e2091157bd6e1b1285c9d67bc07e3", + "init.md": [ + "4aaa099957f1154a88da93a888f346a5c20989bf", [] ], - "names.rst": [ - "0fe953e6a53d3486fbc3dd3352afa4e5ba8d3c09", + "license.md": [ + "aced3448aa95e246200627ede18e49d42df6679f", [] ], - "overview.rst": [ - "b35f66f2ddc083b626c29b29b5497bac9f50d87d", + "names.md": [ + "c1e9107ba0b79c32602e22d6c67568155a36c9f5", [] ], - "python-2.rst": [ - "7ec9e5112c38fdb7f01b25b4671b437f4c33308c", + "overview.md": [ + "5824f70875de55dfdc2ca516a0b79787dfc3598e", [] ], - "types.rst": [ - "fbb90a7e930d1761e502be708c712d9906160e23", + "types.md": [ + "5ab7146f6e9bb26dbf2f6106973aaf20396d38b2", [] ], - "why.rst": [ - "2c0ca4cd66e147bbbd98aae51f26d6fc330e517f", + "why.md": [ + "eeba9db5857f0c4733d34c7425a479d8263058cd", [] ] }, - "mypy.ini": [ - "685c02599f52259e92aa66922af8935ec3219092", - [] - ], "pyproject.toml": [ - "52c0e49ec2e4db3c934916c72c9810287739354e", - [] - ], - "setup.py": [ - "00e7b012ae72a30ede9e1254d32485b628bdbb9e", + "1c72fc26d6ab769df1cb17450c109dfc440a9d25", [] ], "src": { "attr": { "__init__.py": [ - "f95c96dd5795b9c958adfebbd36ffad99cf23cc9", + "9226258a2d58777f1d5536c5695bbf1b4a635991", [] ], "__init__.pyi": [ - "c0a21265036a6f6ceb35eeff504e5d1189db6400", + "37a208732acf774ed369811d51f1393798f22148", [] ], "_cmp.py": [ - "6cffa4dbabda22d3f2921af3d66456006a382b32", + "a4a35e08fc9d9b078a11edc3236d7e27027cd28e", [] ], "_cmp.pyi": [ - "e71aaff7a19b7a60ae49738bd81348e80af53a13", + "f3dcdc1a754146303b28009cbff9ec9bf960e450", [] ], "_compat.py": [ - "dc0cb02b6435bb4cb90f1d9645150d32286379a5", + "46b05ca453773da7f2972f023c4a4f447b44e824", [] ], "_config.py": [ - "fc9be29d0081225dfa01fb6dcd7188d665e4b101", + "9c245b1461abd5dc5143f69bc74c75ae50fabdc5", [] ], "_funcs.py": [ - "4c90085a4013bf906a726597f52b206d4c842b22", + "a888991d98fdac72abb6e5ce8ac6d620a8f0e54b", [] ], "_make.py": [ - "d46f8a3e7a42338af1f6e8763b8df0c1b64e3d89", + "10b4eca779621c819060c4564379fa2c098c36d5", [] ], "_next_gen.py": [ - "068253688caf890fa997fa81bfed38cbeffd4c45", + "1fb9f259b53b851336c3135f06cfa377ab3240d7", + [] + ], + "_typing_compat.pyi": [ + "ca7b71e906a28f88726bbd342fdfe636af0281e7", [] ], "_version_info.py": [ - "cdaeec37a1ad988cafb7e202967f48829c9d85ba", + "51a1312f9759f21063caea779a62882d7f7c86ae", [] ], "_version_info.pyi": [ @@ -471372,15 +479252,15 @@ [] ], "converters.py": [ - "1fb6c05d7bb8893fcdd8ed81f2a708cbf21d98f6", + "2bf4c902a66faeeda4cbae89d75f063df99c5039", [] ], "converters.pyi": [ - "0f58088a37be31f413c0adf04af32feff584b740", + "5abb49f6d5a8c3447d0f223a308e2278ad027416", [] ], "exceptions.py": [ - "b2f1edc32a941b3f05c708af43f5a1b284b72fc9", + "3b7abb8154108aa1d0ae52fa9ee8e489f05b5563", [] ], "exceptions.pyi": [ @@ -471388,11 +479268,11 @@ [] ], "filters.py": [ - "a1978a87755ba454296a789161d044d2d51d10e0", + "a1e40c98db853aa375ab0b24559e0559f91e6152", [] ], "filters.pyi": [ - "993866865eab7ede46b6421c6f31c1e79c02fd6a", + "8a02fa0fc0631dde0b4501c8d1c168b467c0d1a9", [] ], "py.typed": [ @@ -471400,41 +479280,41 @@ [] ], "setters.py": [ - "b1cbb5d83e744dc1a2a3012f6ebe7d4f6d72c740", + "12ed6750df35b96e2ccde24a9752dca22929188d", [] ], "setters.pyi": [ - "3f5603c2b0cb7cd4afc3fc7ed53bbaed073f679f", + "72f7ce4761c343860d8b230dd50dcdeba10b03fb", [] ], "validators.py": [ - "0b0c8342f2528678c1ab84b027abb12175f59fc7", + "34d6b761d37857e876a7d0fd1970a758f8f71981", [] ], "validators.pyi": [ - "5e00b8543397f8c9c353d7b7129db3dda13af469", + "d194a75abcacfa434f2445e66ea25975236dffcf", [] ] }, "attrs": { "__init__.py": [ - "a704b8b56bc0ff8562c5fe7e283e09154129b264", + "0c2481561a93a912503754396782e987fcdd9629", [] ], "__init__.pyi": [ - "7426fa5ddbf2068403835061cdc3a5095c2c6dc3", + "9372cfea16e89790cb0f515b1d9d48d8f1897151", [] ], "converters.py": [ - "edfa8d3c16ac8642773651778012a3cd57005d9b", + "7821f6c02cca81277d1ecc87b6bdafad886d8b70", [] ], "exceptions.py": [ - "bd9efed202ab1cdf57a9e99cb4e094ef6f38d0c0", + "3323f9d2112c54b203763d45b455bd5abbe020f6", [] ], "filters.py": [ - "52959005b088f0e5116c8b6acdbcc5937bbaacc8", + "3080f48398e5ed8d3428ca3efeb7500633b0cb0f", [] ], "py.typed": [ @@ -471442,11 +479322,11 @@ [] ], "setters.py": [ - "9b50770804e4187f0c935ef17bddf2d9a61120ff", + "f3d73bb793dd49c138950961f41943bb26c57fde", [] ], "validators.py": [ - "ab2c9b3024714d3b1caeb2f0773a0274dfc10f01", + "037e124f29f32d37c1642d159bf828de44f7c349", [] ] } @@ -471457,116 +479337,128 @@ [] ], "attr_import_star.py": [ - "eaec321bac43548dc7d4f5afd58a7b380b326453", + "bdc5c091b7f49c43debc8f9db044c2961ebf1496", [] ], "dataclass_transform_example.py": [ - "49e09061a8a2e57dd1da7b255cca3a39baf17181", + "c65df14026da81d36326424f8373dbd89f255ff5", [] ], "strategies.py": [ - "99f9f48536b9e67d71927dd6f4415938652b532f", + "783058f837f6cdc98fbdd38402a0f3a6b8cfb776", [] ], "test_3rd_party.py": [ - "8866d7f6ef2646f05d01110a1ede3c493d9379c6", + "b2ce06c293bfbddc8dd2f6ce4323515963079dd5", + [] + ], + "test_abc.py": [ + "a70b317a3cee1ef00f48b6ab6890075d7f0acdff", [] ], "test_annotations.py": [ - "a201ebf7fa6892ac0f569c643839ea9ede5220f2", + "d27d9e3743fe93949ca6b699a40ff25397a78d06", [] ], "test_cmp.py": [ - "ec2c6874899b73499a039cb9eb05ef261ea62c8b", + "07bfc5234ade5103d8f0e34ca26516043ade9ff1", [] ], "test_compat.py": [ - "464b492f0fac0f70e1fd797346ee4b2bd2612f72", + "c8015b596e2b07d0f891f0ef8390c964d96ce800", [] ], "test_config.py": [ - "bbf67564064ddab4ef3feb5a2c028bfafb12d64a", + "6c78fd295b5382ebe4b9c11d832217f92e2e77da", [] ], "test_converters.py": [ - "d0fc723eb1b8e52e501e02dd88b2777d9e182bcb", + "7607e555066c7e460bf6bf566230895f68e41a8a", [] ], "test_dunders.py": [ - "186762eb0da6eb0d9cdeb2839aa8e54fa42ca296", + "d0d289d84c9f15ec1e166a1f7167c0c8cdd019ae", [] ], "test_filters.py": [ - "d1ec24dc6c2c0880c50734e3f89e3f5846a87715", + "6d237fdc3d13d6133079d19cdc117365e23f5b50", [] ], "test_funcs.py": [ - "4490ed815ae3ed39d5312d3514c78e502de6d8c3", + "044aaab2c94a8ee110a466399f368bc403b98af0", [] ], "test_functional.py": [ - "9b6a27e2f4d4ef19049bc7dac21048454869a638", + "341ee50a82ae67c2da89af202ed097be6471d688", [] ], "test_hooks.py": [ - "92fc2dcaab5f9cce1ab77e48fa5b30e601177f78", + "9c37a98cdc0193c0cdcb3ab76531ac8be42cbb52", [] ], "test_import.py": [ - "423124319c9b133b1dbf22c09554bb75e6dc5605", + "9e90a5c11e685e7b9c14d5f84bb645c6a4f473cd", [] ], "test_init_subclass.py": [ - "863e794377d871c0059a67b1838a142a86ab2bd5", + "cff4e948bcbe8e7cc8e6ddf545d57c7f6ef74fee", [] ], "test_make.py": [ - "729d3a71f0692249769549c24f5469a6526d7b65", + "19f7a4cd412c9acdfcb85c8709a8ffbd78025819", [] ], "test_mypy.yml": [ - "ca17b0a662a917e62eeb29bd0a1c385fc4278029", + "0d0757233b4cfa1ee2fd135fc1a20e53175cba90", [] ], "test_next_gen.py": [ - "8395f9c0286553f9286598ebb816b09f75e11ef5", + "7d053d2143911f50f689825eab6a41743b4b7f96", + [] + ], + "test_packaging.py": [ + "046ae4c39dd06086268f401886cd5aa87d2e47ea", [] ], "test_pattern_matching.py": [ - "590804a8a7ac4911da982af185e2fb01f72b9adc", + "3855d6a379c24b3a977a210d400282d6e829c57f", [] ], "test_pyright.py": [ - "c30dcc5cb1613d05ecb739d9ab41b4902b3d0a50", + "800d6099fab0fe3f944b4006ab741beee96faa0a", [] ], "test_setattr.py": [ - "aaedde5746489b1faa705a35fe2de787525613ff", + "c7b90daee68b91b4728452983b1aa9efbc3e5d0f", [] ], "test_slots.py": [ - "baf9a40ddb88dad5efe280d4f1a3676f2d623793", + "26365ab0d2bcd8299d5d4a67c0ff787aa7344045", + [] + ], + "test_utils.py": [ + "92c04a1b503f45188a754ed84135840bd543a01d", [] ], "test_validators.py": [ - "d7c6de8bad793d8dc883f4bad53ae309b92b1753", + "4327f825188d582171c38a255ec592c52386e7e3", [] ], "test_version_info.py": [ - "41f75f47a6d871ba29be2fe29b787add687c2b40", + "5bd101bcce7d31c2769f3219d06027e3cf287c3a", [] ], "typing_example.py": [ - "a85c768c104abc9c38b48b61dd9a7f66fe81d647", + "2124912c8d58e5113b6b1d6aac0f689b7e3b4d9b", [] ], "utils.py": [ - "a2fefbd6068b4fdeeefe679ddf67a9e8fce24fac", + "9e678f05f17c62d8618274794ec1d517ee91dea7", [] ] }, "tox.ini": [ - "ddcbc4dbbcd995017e5fb1b19c5aa7ca9d611873", + "54724faaafbf6c4e399623d29920604de8e11793", [] ] }, @@ -471636,6 +479528,102 @@ [] ] }, + "exceptiongroup": { + "CHANGES.rst": [ + "ea8cbea8f7b95c8d831d2fa1696d69eab1920c35", + [] + ], + "LICENSE": [ + "50d4fa5e68439ce837f6eef437b299c0dd7c8594", + [] + ], + "PKG-INFO": [ + "2e8819b83b6cb7494c851cb850805ecb54167ddb", + [] + ], + "README.rst": [ + "d34937d576e47d9eb6a446b45a6e98bc2c239c38", + [] + ], + "pyproject.toml": [ + "aa47cdcec4c1d36374443ca0d396150469cd81e9", + [] + ], + "src": { + "exceptiongroup": { + "__init__.py": [ + "d8e36b2e65d11e7f3b2c540c1b292a39a6cc219d", + [] + ], + "_catch.py": [ + "0246568bd05013ed797e0514181aa43bdc59c63e", + [] + ], + "_exceptions.py": [ + "a4a7acea822d43ba91183cff0b44f31313171d1a", + [] + ], + "_formatting.py": [ + "e3835e41450763ffd00cc4fcb957545b24742080", + [] + ], + "_suppress.py": [ + "11467eeda9b317cbf5d378beea30e31a51d35d1c", + [] + ], + "_version.py": [ + "9e1bb0b65ea2faa3b6aa76fcad28138eba39d21f", + [] + ], + "py.typed": [ + "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", + [] + ] + } + }, + "tests": { + "__init__.py": [ + "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", + [] + ], + "apport_excepthook.py": [ + "1e4a8f30deeac30ae534247ce59dfa6a4ee6c5fa", + [] + ], + "check_types.py": [ + "f7a102d5d8ab278e6bbb45fd9572d6ea41a723b2", + [] + ], + "conftest.py": [ + "aeca72d3b5e6f178a10d7913fb593b45b92fd342", + [] + ], + "test_apport_monkeypatching.py": [ + "998554fde690d23fe93e3f879d14b816323a7d25", + [] + ], + "test_catch.py": [ + "1da749e23c6ed9b75f6f1e2c2fb27ac1f3048207", + [] + ], + "test_catch_py311.py": [ + "2f12ac32a28361a36d7e8c1312e3b0fccb6ce494", + [] + ], + "test_exceptions.py": [ + "f77511ab61e277226c225bee1fc4bae395d1f339", + [] + ], + "test_formatting.py": [ + "f6b9bc2c455e53793d5c67c9abae74679cb6a524", + [] + ], + "test_suppress.py": [ + "289bb33c0e67fb99b149a306c9e32db8455cbb52", + [] + ] + } + }, "h2": { ".codecov.yml": [ "db2472009c60acc72ca2f6f065bb4b674dc66746", @@ -475290,23 +483278,31 @@ }, "pluggy": { ".github": { + "FUNDING.yml": [ + "b4d3edff1f6a6d4ee43d56565cf5983ef519c1ba", + [] + ], "workflows": { "main.yml": [ - "e1022ca96dd2fcd2b3a39ebad2b29eddbd7d2c1a", + "d8c0b181a7c4ae76a2d9b76716de06c97cc99de0", [] ] } }, ".gitignore": [ - "4580536c7ade74858b0564b36facee8dcd497940", + "1a33c625bbe425c3ac51361842c5bf4f73dff9d6", [] ], ".pre-commit-config.yaml": [ - "d919ffeb2f6459828a44326e0c350086143f68b4", + "0532a6f7bf6b762e7129df62ef2b807645fc62b4", + [] + ], + ".readthedocs.yml": [ + "d751431ea38734958332bac725cdc6fab2dc082d", [] ], "CHANGELOG.rst": [ - "13a388c435a8c32a953dfff628e12d033910d8ec", + "a597dc370a6aed2a068e369c6af2dac1fd9f228c", [] ], "LICENSE": [ @@ -475318,11 +483314,19 @@ [] ], "README.rst": [ - "3496617e1e8796b256cdfbf16e0e68b5d4d22a77", + "7a58c1b9c8d77275c3f7f23c3eb1f6740e8c4db5", [] ], "RELEASING.rst": [ - "ee0d1331e0a46cb220c4aa86ad138b9da41ec264", + "3d6ba16c16b41fc7b9a7a3f1ddd2637de3448d9c", + [] + ], + "SECURITY.md": [ + "6d3c7348e89c8b60c59eff5f55a0b00a48b7c426", + [] + ], + "TIDELIFT.rst": [ + "93af996b296146e4f68927a620e15af3d91127ee", [] ], "changelog": { @@ -475349,7 +483353,7 @@ } }, "api_reference.rst": [ - "d9552d44858ae4a4728a4581ca1b828741495f8a", + "b14d725d94cb669cd20d55ecfda5811cdaac8306", [] ], "changelog.rst": [ @@ -475357,22 +483361,22 @@ [] ], "conf.py": [ - "f8e70c88bf3de92aff111c1590b0ed4092df7cf6", + "e5151c5a45ced2406444cfb6623f92c76c4f8690", [] ], "examples": { "eggsample": { "eggsample": { "__init__.py": [ - "4dc4b36dec3ac5f3b4663afc18d5a539c0e4272e", + "b2d9d8301facc8583dcd503be8f7f2004b137cac", [] ], "hookspecs.py": [ - "48866b2491287bafef248711c1d0da5262d72353", + "4bab42281de961f2813fc5b8fa4b9007073e8c28", [] ], "host.py": [ - "ac1d33b4539922b0ac862bad0676c911a33e8893", + "d18278792362fe71f3a4aedf7b66140c3508c4db", [] ], "lib.py": [ @@ -475381,7 +483385,7 @@ ] }, "setup.py": [ - "8b3facb3b6718ddda2d8f1d7e2c3efefb8628b13", + "89e88ceca07c13167ad4b344c9f9c55dd172e0f5", [] ] }, @@ -475391,36 +483395,74 @@ [] ], "setup.py": [ - "f81a8eb4038792e22038b2696ef7d7986628c20b", + "557aa5c1f1358dd0075259345b4ef9b58a0f171c", [] ] }, "toy-example.py": [ - "6d2086f9ba3bda66d7c41f79c16c6ab0309183a7", + "c7d361bc4dbea3ba37ead2bbb370570335c7bfc2", [] ] }, "index.rst": [ - "eab08fcbbd61613c66c9cae0e19b5f5b03dec1cc", + "b98c4956ba2e6063637541367fc4b818912218c3", + [] + ], + "requirements.txt": [ + "7d0b87a35ece581898deb2090b290763353a4ffb", + [] + ] + }, + "downstream": { + ".gitignore": [ + "0dc1814e36923955989de1d0561a6f23e54c6e37", + [] + ], + "README.md": [ + "ff420e7d9d941607de40da5faa1b226ad5a928ba", + [] + ], + "conda.sh": [ + "685d08d41b5416e4d3bf9329eca035d052f4b5d3", + [] + ], + "datasette.sh": [ + "7d3c5586b44c0e166b4970d05de4eb2462ab30c4", + [] + ], + "devpi.sh": [ + "7ef09c8da07e0c5c33c17759e7c0dbf5ad5a7e3a", + [] + ], + "hatch.sh": [ + "933e0f637b7c9c0a9aa8ac4f7183eec5b2a0cb3b", + [] + ], + "pytest.sh": [ + "5afc5612f0a4a644922c9433cefb043320804743", + [] + ], + "tox.sh": [ + "79e12dfa2b1329a607e3f2dabe49eb7764ecc3bf", [] ] }, "pyproject.toml": [ - "15eba2689830e830115e09e3dd97541d41cd40df", + "e286825c4b463f916ed9a3eb0e57b9d47f748ccb", [] ], "scripts": { "release.py": [ - "e09b8c77b1163d82b4169104dc5f608731559849", + "879d35dfd4b70236b8f8b20d9d29907ea1bf90fa", [] ], - "upload-coverage.sh": [ - "ad3dd482814c50aa71eed98f07ff8339f5e6078b", + "towncrier-draft-to-file.py": [ + "a47caa8fa8db634de9a22cf0d0b1716650cc84da", [] ] }, "setup.cfg": [ - "7040bcb83bec5842505d2d7bed42565bee471a1b", + "1e34d361203660b1bc21c92583834c0b5511644d", [] ], "setup.py": [ @@ -475430,721 +483472,93 @@ "src": { "pluggy": { "__init__.py": [ - "979028f759f2f5e246d75a66f40d4e7b32fff018", + "36ce16806219d4bdf9c628a70ce581b9b5208c9e", [] ], "_callers.py": [ - "7a16f3bdd40f4e5188598cc3094bb0cffaa4e12a", + "d01f925cca20f98c93e141f5954295c59b2fba03", [] ], "_hooks.py": [ - "1e5fbb75958104f53ebed10d2996964cd71f94a4", + "362d791823ee675fbd7092edba74e393372837e4", [] ], "_manager.py": [ - "65f4e5084276c9eb594fbc48d4086149828bae79", + "9998dd815b53f1f643cf4eee38af342013e5ab8b", [] ], "_result.py": [ - "4c1f7f1f3c01c4bff353b06278879110c44e73da", + "f9a081c4f6881cb70633479f8f8fdf21e2cb6d91", [] ], "_tracing.py": [ - "82c016271e1eab7e5c81c4658178b4b2eb07a775", + "cd238ad7e5495759cad0723e9611340271d5c3fd", + [] + ], + "_warnings.py": [ + "6356c770c7d1f26ef4f90a4781b1386209f8169c", + [] + ], + "py.typed": [ + "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", [] ] } }, "testing": { "benchmark.py": [ - "b0d4b9536a0107d7ddd1705e55b4ba002b46a44b", + "d13e50aa465b11a7d32fc71ba00dc2a92d009fd3", [] ], "conftest.py": [ - "1fd4ecd5bdf4c0f0b631eeb0a042e140d10edf01", + "8842bd7264422696222d8be8be91a135d60d3f13", [] ], "test_details.py": [ - "0ceb3b3eb13947dbfe1fa1a9684f58866775d59b", + "9b68a0814f8a3e406d38f02cd43da85b78365df8", [] ], "test_helpers.py": [ - "465858c499cb721d931f90579d5a812cd9893951", + "4fe26a57bc50c41eb0e8f7d8e05cea21517088a5", [] ], "test_hookcaller.py": [ - "9eeaef8666652414fbac465c554d63449fd059da", + "3db76de2562fe8ad3095171601236fb891a9b0df", [] ], "test_invocations.py": [ - "323b9b21e8b6d05ab511e4885e2673a86e717d7d", + "833ec2b79cec81500da038b1e51aedd21342f7c7", [] ], "test_multicall.py": [ - "8ffb452f694ba9f2f2d1bb18975783f11464aeea", + "7d8d8f2881a421b868ab06f28752a742a43f1575", [] ], "test_pluginmanager.py": [ - "304a007a5894af39e7184802fd04ed94ecd4fcd5", + "c4ce08f3bc39a47389255217885e3ec2cf011d01", [] ], "test_tracer.py": [ - "992ec679149b5d26f68a2734cedbc6debdd9352e", - [] - ] - }, - "tox.ini": [ - "97b3eb77920920e8ff3af30b87310546c06e566f", - [] - ] - }, - "py": { - ".flake8": [ - "f9c71a7fbc4d04390b183812d0ebfbe9762c90ba", - [] - ], - ".gitattributes": [ - "1246879c4daac82abe554090e60e11fc2252f33b", - [] - ], - ".github": { - "workflows": { - "main.yml": [ - "564aa0c5315d34fa03e031bcb8614a46a7aa0e90", - [] - ] - } - }, - ".gitignore": [ - "fa936f1596d0191e0e9a8f83638368157b77792f", - [] - ], - "AUTHORS": [ - "9c5dda9ceb0ea03a6972d863f0dd05f7b09a3e3e", - [] - ], - "CHANGELOG.rst": [ - "47c6fdb7a1750cf5a690fa1185fb368be94a4fa1", - [] - ], - "LICENSE": [ - "31ecdfb1dbc54fb41999867884dad52a07eac2ca", - [] - ], - "MANIFEST.in": [ - "6d255b1a9e5b63504cdcd5ca4ba47f1f18681e57", - [] - ], - "README.rst": [ - "80800b2b7ae7525389131aa72419ec9b8e9cc431", - [] - ], - "RELEASING.rst": [ - "fb588e3ab742d06a9f9e0a49fbd5268c183fe41e", - [] - ], - "bench": { - "localpath.py": [ - "aad44f2e66913be04d85a8a44317e59e0517177e", - [] - ] - }, - "codecov.yml": [ - "a0a308588e20127cc7ad0ab58356b6b677391be1", - [] - ], - "conftest.py": [ - "5bff3fe02245ce0d01a8f0011cd0c5e1f411f01f", - [] - ], - "doc": { - "Makefile": [ - "0a0e89e01fe61e51f0c758b09267bc2052e41315", - [] - ], - "_templates": { - "layout.html": [ - "683863aa4603cea38afb9635778ead728220dd33", - [] - ] - }, - "announce": { - "release-0.9.0.txt": [ - "0710931354312054004ca4ff293de49f47c37b61", - [] - ], - "release-0.9.2.txt": [ - "8340dc44557b228e3cf6f826c2880f965096a03b", - [] - ], - "release-1.0.0.txt": [ - "aef25ec239b54ecd8050b4958638af27cea793c2", - [] - ], - "release-1.0.1.txt": [ - "0c9f8760bdbad4b5d0b1db69d664aee3bcbfe221", - [] - ], - "release-1.0.2.txt": [ - "235461953530439ba661a776bb6edc47778a8a66", - [] - ], - "release-1.1.0.txt": [ - "0441c3215eb11667d312bbdc2e7ba79e89119981", - [] - ], - "release-1.1.1.txt": [ - "83e6a1fd8d95853b6301c0f1c4560e3769fc5866", - [] - ], - "release-1.2.0.txt": [ - "4f6a561447633a751a63166c5d14960473ee0459", - [] - ], - "release-1.2.1.txt": [ - "5bf8ba22dc6990be77df56ab4c5ea8efd1b8bab4", - [] - ], - "release-1.3.0.txt": [ - "cf97db0367a8f8071d6738b3372aac06a2998b79", - [] - ], - "release-1.3.1.txt": [ - "471de408a100ee51eb5e63246d424f3b3d7749b8", - [] - ], - "release-1.3.2.txt": [ - "599dfbed755f7ddecfc2a4ae2dc376217cf31030", - [] - ], - "release-1.3.3.txt": [ - "c62cb85905379970a5755f54e8e32c4539a25b19", - [] - ], - "release-1.3.4.txt": [ - "c156c8bdb33c06969f40c1e8bcbe2e90dc956c44", - [] - ], - "release-1.4.0.txt": [ - "1c9fa75604a5cf889b7ea8b61078f9fcd027bc4a", - [] - ], - "release-1.4.1.txt": [ - "6ed72aa4183e83240475c1abe5e05f8f4e5c6540", - [] - ], - "releases.txt": [ - "309c29bac5de3a15546abc5562573549d9a9b020", - [] - ] - }, - "changelog.txt": [ - "0c9d0928e7ae3a6d158e6fc40c940856a9a92da6", - [] - ], - "code.txt": [ - "bdd8691da03e2e3a2f768d8a8877c7d4e410f382", - [] - ], - "conf.py": [ - "de4cbf8a46f1052f54713e2b51233351e13cd13a", - [] - ], - "download.html": [ - "5f4c466402d14ccaf6302aa48e3933a726c54a09", - [] - ], - "example": { - "genhtml.py": [ - "7a6d4934970872fc9f7da7e70569d14a2033279a", - [] - ], - "genhtmlcss.py": [ - "facca77b78b5139f2b6f3918ad75233f1faf9585", - [] - ], - "genxml.py": [ - "444a4ca52cc37cb8d379d5f738602c70728c8908", - [] - ] - }, - "faq.txt": [ - "6d374e1db9b3bc689bf85bcebcdd301934dab259", - [] - ], - "img": { - "pylib.png": [ - "2e10d438866861ebaf917cd412e01c9d0c72ae9a", - [] - ] - }, - "index.txt": [ - "c700b17e9877bef5b20365b5b42ef71862611cc1", - [] - ], - "install.txt": [ - "93c79e3b2d8f39261dc0602d85812fb28e5bb136", - [] - ], - "io.txt": [ - "c11308a6d2859dff898503ff5ab674b058e8ad11", - [] - ], - "links.inc": [ - "b61d01c696a1ea370a3d31b5713416356c359a41", - [] - ], - "log.txt": [ - "ca60fcac250542577507d6c7018e6fabbc8be117", - [] - ], - "misc.txt": [ - "4b453482757a106a6f3fa440b7d40f024ce46a39", - [] - ], - "path.txt": [ - "8f506d49232704ee6d67897a02d8a45efaa93221", - [] - ], - "style.css": [ - "95e3ef07b23b554ce4d89afe7a6e7dff47eb3e8e", - [] - ], - "xml.txt": [ - "1022de6e9126f81609c92eca97c58f04d62711e6", - [] - ] - }, - "py": { - "__init__.py": [ - "b892ce1a2a6b5a743a78fb95766c2f9868b4d70b", - [] - ], - "__init__.pyi": [ - "96859e310f4c8749b3e6bd250b338857b1047945", - [] - ], - "__metainfo.py": [ - "12581eb7afbc231e02476c125ccb9e289e6f3024", - [] - ], - "_builtin.py": [ - "ddc89fc7be6e4b9723e9dbf0b4ffbcb64320d610", - [] - ], - "_code": { - "__init__.py": [ - "f15acf85132113f090b1a53cdd0bac39af924d4d", - [] - ], - "_assertionnew.py": [ - "d03f29d870814283d3f2d537d91b8a527821ee1f", - [] - ], - "_assertionold.py": [ - "1bb70a875d059d664c6518701963864afad86593", - [] - ], - "_py2traceback.py": [ - "d65e27cb73077bbd33bc0fad0d20a89e443bef9e", - [] - ], - "assertion.py": [ - "ff1643799c9e015a8e351b89958ae3eb8111d668", - [] - ], - "code.py": [ - "dad796283fe64c89f5f99f2bc72adc4a7657d238", - [] - ], - "source.py": [ - "7fc7b23a96c32e603f1e678d5dad272e84a0e27d", - [] - ] - }, - "_error.py": [ - "a6375de9fa29b148e8883725f1fc385228b5c596", - [] - ], - "_io": { - "__init__.py": [ - "835f01f3ab9dcb656dce1e580f0d98d7b8abfe3a", - [] - ], - "capture.py": [ - "cacf2fa71a104bd3a4c25582bded149faa0c1a9f", - [] - ], - "saferepr.py": [ - "8518290efddecdc8524c642abbd5aba76dada44c", - [] - ], - "terminalwriter.py": [ - "442ca2395e0a15e8cddf2da9565d02b2c807faaf", - [] - ] - }, - "_log": { - "__init__.py": [ - "fad62e960d4fc0d5faf479467aaa0bbf57008a52", - [] - ], - "log.py": [ - "56969bcb58c3322248efc7de7a04fef96074fe65", - [] - ], - "warning.py": [ - "6ef20d98a2dc0e7be240c593e0303c501ecb7835", - [] - ] - }, - "_path": { - "__init__.py": [ - "51f3246f8070ff46342d3d9985fa384ac4e1d9f8", - [] - ], - "cacheutil.py": [ - "99225047502c6a7119caf136af06228235df9fd1", - [] - ], - "common.py": [ - "2364e5fef504a6b20000efc9b2d47bff1defef27", - [] - ], - "local.py": [ - "1385a0398742b72fead43bbc64faae4d315f31d4", - [] - ], - "svnurl.py": [ - "6589a71d09e33b946c0d7c90c5945cdfc9c8a7a0", - [] - ], - "svnwc.py": [ - "b5b9d8d544a25253dab87a4f9d1bc3752f38ba06", - [] - ] - }, - "_process": { - "__init__.py": [ - "86c714ad1aed3b1b511d90c1e1ce6cb22d662ec3", - [] - ], - "cmdexec.py": [ - "f83a2494029687038343de2900cc2ac7e19c8747", - [] - ], - "forkedfunc.py": [ - "1c285306884bf2f0310d8b4f94a4ae2f772fe04f", - [] - ], - "killproc.py": [ - "18e8310b5f6caaf884473ba11c4c4d3b6f78c7d3", - [] - ] - }, - "_std.py": [ - "66adb7b0239e290e9a32b5d7447dbf48262b7cd8", - [] - ], - "_vendored_packages": { - "__init__.py": [ - "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", - [] - ], - "apipkg": { - "__init__.py": [ - "350d8c4b07a1334202b72b897ba2bd466eb78534", - [] - ], - "version.py": [ - "c5b4e0e79fa23b21a985639c250793385b395515", - [] - ] - }, - "apipkg-2.0.0.dist-info": { - "INSTALLER": [ - "a1b589e38a32041e49332e5e81c2d363dc418d68", - [] - ], - "LICENSE": [ - "ff33b8f7ca0b1c05bb0bdc546aa760c8e78757be", - [] - ], - "METADATA": [ - "7eea770a02bdb9b84a8fed46f92652eb61e71277", - [] - ], - "RECORD": [ - "357b8b9c729f86703d61441ccc974931b0844e4e", - [] - ], - "REQUESTED": [ - "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", - [] - ], - "WHEEL": [ - "b733a60d379c60aef4921d7e42a113fdc28300dc", - [] - ], - "top_level.txt": [ - "e2221c8f9e9639243d2bce2e9230b49d413b4521", - [] - ] - }, - "iniconfig": { - "__init__.py": [ - "6ad9eaf868b073bb33aac5ee9814e4efe2e19da1", - [] - ], - "__init__.pyi": [ - "b6284bec3f65439b5020702cf09fac412d1e4917", - [] - ], - "py.typed": [ - "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", - [] - ] - }, - "iniconfig-1.1.1.dist-info": { - "INSTALLER": [ - "a1b589e38a32041e49332e5e81c2d363dc418d68", - [] - ], - "LICENSE": [ - "31ecdfb1dbc54fb41999867884dad52a07eac2ca", - [] - ], - "METADATA": [ - "c078a7532fbbb182a4f327c8aa58de8bbd04fa03", - [] - ], - "RECORD": [ - "168233330b65d1fc209b220f4b5e47421173b396", - [] - ], - "REQUESTED": [ - "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", - [] - ], - "WHEEL": [ - "6d38aa0601b31c7f4c47ff3016173426df4e1d53", - [] - ], - "top_level.txt": [ - "9dda53692d2f44a97392cae823f8163d55ad4549", - [] - ] - } - }, - "_xmlgen.py": [ - "1c83545884390b724079d4c0532963a2a054f9be", - [] - ], - "error.pyi": [ - "034eba609f19b52f0cedf3d061b4b0ad96168a33", - [] - ], - "iniconfig.pyi": [ - "b6284bec3f65439b5020702cf09fac412d1e4917", - [] - ], - "io.pyi": [ - "d377e2405d55b77ef406ddedcf0553b03389326c", - [] - ], - "path.pyi": [ - "1ddab9601ea43988162102407172f519c8cf1879", - [] - ], - "py.typed": [ - "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", + "5e538369446abc7f350f44cb4dad5bbbf335a4e3", [] ], - "test.py": [ - "aa5beb1789f057604d8f13433951ea092848c1f4", - [] - ], - "xml.pyi": [ - "9c44480a5f3df15abc27e21c9515af4d2b939165", - [] - ] - }, - "pyproject.toml": [ - "e386ea0b2718340978f4200de3a2da10140f870a", - [] - ], - "setup.cfg": [ - "5f25c2febfd94b62b56a225fa64aea342b93937f", - [] - ], - "setup.py": [ - "5948ef0047a55b43b752f553e424a33fe99aaf41", - [] - ], - "tasks": { - "__init__.py": [ - "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", - [] - ], - "vendoring.py": [ - "3c7d6015cfa75e6e02b24700420a0e38db9eb2c5", + "test_warnings.py": [ + "4f5454be24f55be4ba9c19fecb8c7e8bc5c5829f", [] ] }, - "testing": { - "code": { - "test_assertion.py": [ - "e2a7f90399845009e567e98da5fc698f814aa0d8", - [] - ], - "test_code.py": [ - "28ec628b00d43615ad6bd9f81c2fc9c203f0afb2", - [] - ], - "test_excinfo.py": [ - "c148ab8cfbd0b0e0358cae8c42558ac148c3edcf", - [] - ], - "test_source.py": [ - "ca9a42275cff29a7f370170e7107b25a224b8953", - [] - ] - }, - "conftest.py": [ - "0f956b3dd253d8b003fd1fbcf923a6826b8f234f", - [] - ], - "io_": { - "__init__.py": [ - "792d6005489ebee62cde02066f19c5521e620451", - [] - ], - "test_capture.py": [ - "b5fedd0abc629dc8060a76aef7b4bf9f6489ec1f", - [] - ], - "test_saferepr.py": [ - "97be1416fec6b467822f928129a7a2e26614d1c1", - [] - ], - "test_terminalwriter.py": [ - "44b4f1ddeecaa4239eda4dd435cd7c1d4eb11c93", - [] - ], - "test_terminalwriter_linewidth.py": [ - "e6d84fbf7a18be7271c2dcd8b0a48fcb05f1e300", - [] - ] - }, - "log": { - "__init__.py": [ - "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", - [] - ], - "test_log.py": [ - "5c706d9b6ad34dc7931c4c2eceb3b82cb395db9f", - [] - ], - "test_warning.py": [ - "36efec913a3bde0aea39efbef294a8b4e8045dd4", - [] - ] - }, - "path": { - "common.py": [ - "d69a1c39d099034638a37e36bf6262900c10ead8", - [] - ], - "conftest.py": [ - "84fb5c82694067fd162a58f2a06d44ffb63a6cd9", - [] - ], - "repotest.dump": [ - "c7819cad7a531a772fb5e32ba1fa9256a43314ac", - [] - ], - "svntestbase.py": [ - "8d94a9ca649cd3139c04e4adaecd26550436f9a2", - [] - ], - "test_cacheutil.py": [ - "c9fc07463a726a3138d2ebd033b50e14dc0cea32", - [] - ], - "test_local.py": [ - "1b9a7923f6539a80e9ec21d7e90e256eff96642d", - [] - ], - "test_svnauth.py": [ - "654f033224fbd43fe1d1602dfcab19d311201180", - [] - ], - "test_svnurl.py": [ - "15fbea5047da4f77fda9fb14e34d09eb7a6fab25", - [] - ], - "test_svnwc.py": [ - "c643d9983fb4db6ec3b0b85dd873268274bb24be", - [] - ] - }, - "process": { - "__init__.py": [ - "792d6005489ebee62cde02066f19c5521e620451", - [] - ], - "test_cmdexec.py": [ - "98463d906d151b0b8d375f5bbcdb2c0278335108", - [] - ], - "test_forkedfunc.py": [ - "ae0d9ab7e6d7494850b8117af192f0e8445311ed", - [] - ], - "test_killproc.py": [ - "b0d6e2f51531e0b6aa03b17687451a935bc1244f", - [] - ] - }, - "root": { - "__init__.py": [ - "792d6005489ebee62cde02066f19c5521e620451", - [] - ], - "test_builtin.py": [ - "287c60d552ae7fbf62b61d98b3c6389e9f330b59", - [] - ], - "test_error.py": [ - "7bfbef3bd4cdff6aef92c741e86b7b23fadae709", - [] - ], - "test_py_imports.py": [ - "31fe6ead810ce0cc4f93695ad6e716f8ea1daeb7", - [] - ], - "test_std.py": [ - "143556a0557f7d8dd11aebd8cbf4f5a675c168c2", - [] - ], - "test_xmlgen.py": [ - "fc0e82665f7ee9bfd894c90687b80c97dd6d72a5", - [] - ] - } - }, "tox.ini": [ - "f3203507fd9e366590373870b068148a1f9c6438", + "de464a078f10034d22300a32fd66ca9ebc1d7d73", [] ] }, "pytest": { - ".gitattributes": [ - "ec1c66dc1e91540ee991343be9aba518a991b5bf", + ".git-blame-ignore-revs": [ + "bce64a374beeee32b447aa7d33d16a78e3a6da3d", [] ], - ".gitblameignore": [ - "0cb298b024d3a5a611ce581460e788a6a63f6470", + ".gitattributes": [ + "ec1c66dc1e91540ee991343be9aba518a991b5bf", [] ], ".github": { @@ -476175,7 +483589,7 @@ [] ], "dependabot.yml": [ - "507789bf5a4cd5902358cfb5b4870f7c68382f76", + "294b13743e2d4eb3cf3596485a1801336cb0e192", [] ], "labels.toml": [ @@ -476183,34 +483597,46 @@ [] ], "workflows": { - "main.yml": [ - "42759ce853faf970fe0b5343e4f314a48c594f0e", + "backport.yml": [ + "38ce7260278cee33d56c63b7e457c548fc7433cb", + [] + ], + "deploy.yml": [ + "20a72270fde2ba4a5037cf35df9e882ec93d1bd0", [] ], "prepare-release-pr.yml": [ - "429834b3f2149030a329ba551cbed649d8ced08b", + "1bb23fab844706c9f1d92b90b521a477ec09452e", + [] + ], + "stale.yml": [ + "82f9a1f2579111951597c6b9a8c2b191f2addfc4", + [] + ], + "test.yml": [ + "09d37aaa2c868947f741d9bc97ac638c1379e3f9", [] ], "update-plugin-list.yml": [ - "193469072ffaab3aee483a93a1e3aa218bb302fc", + "6943e2076083c650cb83eefca0d8781af72a98e6", [] ] } }, ".gitignore": [ - "935da3b9a2effa9e582618ab2d2e59baa694b0da", + "9fccf93f7c3f32e37d4c687e49286a3dee2ba567", [] ], ".pre-commit-config.yaml": [ - "20cede3b7bbd54befe0edc33a26a29f4761be9da", + "a80edd28cdc751e8a8882588e0dfda0d1fe9a147", [] ], ".readthedocs.yml": [ - "bc44d38b4c7d73524c818efebab929611e46e5c9", + "266d4e07aead5fafdcdbddf96a748e118e18b8da", [] ], "AUTHORS": [ - "9413f9c2e749a8461efdf25d1f98466aa260c8db", + "54ed85fc73212650ddf6df77c4e5ff991a0c2664", [] ], "CHANGELOG.rst": [ @@ -476226,7 +483652,7 @@ [] ], "CONTRIBUTING.rst": [ - "24bca723c8bd340acc169ee9db7e3afc21a7c81e", + "d7da59c812dc87c7a7d5aad7fa0ab7bd0a4e706c", [] ], "LICENSE": [ @@ -476238,24 +483664,24 @@ [] ], "README.rst": [ - "14733765173f962a7f5274111df7ccc4581f8454", + "a81e082cdd7d65b9f6d1f1c36ac5d27bfe4fb032", [] ], "RELEASING.rst": [ - "25ce90d0f655addf46421c1423deb6f00b756720", + "08004a84c00a8a5faccf48d2f0a23ad90ec450c0", [] ], "TIDELIFT.rst": [ - "2fe25841c3a44a62c2a7ce835d5ebfbeaf3074b2", + "1ba246bd86846f71a65764f0c60d33f60798efd0", [] ], "bench": { "bench.py": [ - "c40fc8636c0c6570fab65f027e70aa0e295acdb5", + "437d3259d831251b76da053138bfc5014adcf2f2", [] ], "bench_argcomplete.py": [ - "335733df72b4314240436135a0cd893944488ec7", + "459a12f93141bd51bf939d5c167e0ea3243e443e", [] ], "empty.py": [ @@ -476267,11 +483693,11 @@ [] ], "skip.py": [ - "f0c9d1ddbeffbc421123816d4ebee4605a41eeb7", + "fd5c292d92c1b8f33bf9e01012f9bc078a6d4050", [] ], "unit_test.py": [ - "ad52069dbfdd2e65f42dfbc8e196351157df2c31", + "d3db111e1ae51e9cef150f9da268513f52dacdfc", [] ], "xunit.py": [ @@ -476281,7 +483707,7 @@ }, "changelog": { "README.rst": [ - "6d026f57ef3ed0cf3a5b51b4642aa58f40930b55", + "88956ef28d8b44d1537961ecac0e1065d28ea3a0", [] ], "_template.rst": [ @@ -476301,7 +483727,7 @@ ], "_templates": { "globaltoc.html": [ - "7c595e7ebf2a17556444f75eb9866361a740262d", + "09d970b64ed1fab682184957ed7edf9073ec43e3", [] ], "layout.html": [ @@ -476321,21 +483747,21 @@ [] ], "slim_searchbox.html": [ - "e98ad4ed905d3e5090988dafd5f1d036a2659fb2", + "f088ff8d31286776ed7ec90541b0916ce7501bbf", [] ] }, "adopt.rst": [ - "13d82bf011673d9f3e3028c91c48d906842c982f", + "b95a117debb8ff1d3255813f3f9ea9c0895d3948", [] ], "announce": { "index.rst": [ - "9505b0b9e46ebb5d766cbfc3d76d2652c9cf87c0", + "8a33f7fb57d1485f3e38dbc75bd161abcac1b5d0", [] ], "release-2.0.0.rst": [ - "ecb1a1db9889312788c64801cabc43b06f92c881", + "c2a9f6da4d59f5bcb2a67e73385c5cc7a8e3a4bf", [] ], "release-2.0.1.rst": [ @@ -476375,7 +483801,7 @@ [] ], "release-2.2.2.rst": [ - "22ef0bc7a166556eed69d85947da4aa68f927450", + "510b35ee1d029f99bd151725181a9ff73ef20114", [] ], "release-2.2.4.rst": [ @@ -476407,7 +483833,7 @@ [] ], "release-2.4.0.rst": [ - "138cc89576c214eb2f8105e6956824b46428035f", + "9b864329674b342643db6d2a057cdbcbcc513321", [] ], "release-2.4.1.rst": [ @@ -476419,7 +483845,7 @@ [] ], "release-2.5.0.rst": [ - "c6cdcdd8a830a3d6e9d5f85844d4f8f01019314c", + "fe64f1b8668afd8e8b61fe6154ed88943825b3f4", [] ], "release-2.5.1.rst": [ @@ -476431,7 +483857,7 @@ [] ], "release-2.6.0.rst": [ - "56fbd6cc1e4d9f4dfb6cfb4e30b6159a62a4231a", + "c00df585738b65380ce354d02998b1530cefcb20", [] ], "release-2.6.1.rst": [ @@ -476447,7 +483873,7 @@ [] ], "release-2.7.0.rst": [ - "2840178a07f7785c8e249e96440edcd00107b533", + "83cddb34157b71a1594834b0cd741425efd4a3ce", [] ], "release-2.7.1.rst": [ @@ -476914,25 +484340,125 @@ "5accfbad0d4b3fc091eba3665a9c2ee5e1fb88dd", [] ], + "release-7.1.0.rst": [ + "3361e1c8a328c86c3e0e3aaa77e4f2c1977ac0b2", + [] + ], + "release-7.1.1.rst": [ + "d271c4557a2182729d96cb9176d11f3dda9f5a8a", + [] + ], + "release-7.1.2.rst": [ + "ba33cdc694b5285b88699d6871af5e1d46221421", + [] + ], + "release-7.1.3.rst": [ + "4cb1b271704eff120f543ce44c9d2143bb55d62a", + [] + ], + "release-7.2.0.rst": [ + "eca84aeb669a9fa2a5b3ff7f7195c9633177fe67", + [] + ], + "release-7.2.1.rst": [ + "80ac7aff07f55234f0e33c80931734f9f43c5614", + [] + ], + "release-7.2.2.rst": [ + "b34a6ff5c1e91ec010bf602e8b7d9b75cbbf27ad", + [] + ], + "release-7.3.0.rst": [ + "33258dabadeb20dba9d72a47046e764a04bca486", + [] + ], + "release-7.3.1.rst": [ + "e920fa8af532e378013a0fa32fdbc1b6ce68bd1c", + [] + ], + "release-7.3.2.rst": [ + "b3b112f0d8e56f3198e41c0cf64734758d6cf63a", + [] + ], + "release-7.4.0.rst": [ + "5a0d18267d33899069e6f6609309aad1322d9dd2", + [] + ], + "release-7.4.1.rst": [ + "efadcf919e8a838c1b663cbe359147cae55b5f5e", + [] + ], + "release-7.4.2.rst": [ + "22191e7b4f95c9ad632f3e7da67e55864c3f28a8", + [] + ], + "release-7.4.3.rst": [ + "0f319c1e7f0d2fd52224237f63b1f2604f0aac43", + [] + ], + "release-7.4.4.rst": [ + "c9633678d2e2e10b7c151aea4c00dcc1c6e727cd", + [] + ], + "release-8.0.0.rst": [ + "00f54fd822504bdb531ef729a8883d28cff23d06", + [] + ], + "release-8.0.0rc1.rst": [ + "547c8cbc53baf0c88ef08a541614ef0d5884e20d", + [] + ], + "release-8.0.0rc2.rst": [ + "1a6444c5214a5ecfe2a656d3c01c4155258134ad", + [] + ], + "release-8.0.1.rst": [ + "7d828e55bd98e07ce8d01b04e16a7c40355487ca", + [] + ], + "release-8.0.2.rst": [ + "c42159c57cff7fcbc38d25b875bf22684f6c6d1c", + [] + ], + "release-8.1.0.rst": [ + "62cafdd78bb3649922213ef96607e98a5a1a4d03", + [] + ], + "release-8.1.1.rst": [ + "89b617b487dcf724d2b81f312b4f00c8bda376d7", + [] + ], + "release-8.1.2.rst": [ + "19e41e0f7c54b8fc2f7cbc09cae527b549ad705b", + [] + ], + "release-8.2.0.rst": [ + "2a63c8d87228689e0eb2909caca52ed4cc14f125", + [] + ], + "release-8.2.1.rst": [ + "4452edec110e5d62849cd2de0c0da70178c91d45", + [] + ], "sprint2016.rst": [ - "8e706589876710d40e76d76a7b62a26afb8a57cc", + "8d47a205c7168983ec86b8095a935f362aeebb67", [] ] }, "backwards-compatibility.rst": [ - "3a0ff126164619ee38339c14403b3cba68666207", + "e04e64a76f9a6d5f4f024390f3d7b2a2b8ea55ae", [] ], "builtin.rst": [ - "c7e7863b2188c865bc7b26e0831f949123533e8e", + "458253fabbb20ca0eb993e7f5b7df36c100c12df", [] ], "changelog.rst": [ - "1acdad366da6cefa643e951c48fe69f18e186d62", + "f69b9782bbc28827a6997eec246839b974cbf961", [] ], "conf.py": [ - "b316163532ac027473c03c8f78ec0226a1bddca9", + "32ecaa17435e766fd862945d1a56eb50d98586dd", [] ], "conftest.py": [ @@ -476944,7 +484470,7 @@ [] ], "contents.rst": [ - "049d44ba9d8a32489d73c363a83edb4363921e1d", + "181207203b2201c2371ed40649ec6f860aa5f81c", [] ], "contributing.rst": [ @@ -476952,7 +484478,7 @@ [] ], "deprecations.rst": [ - "0f19744adec31ddf366fe60ebc4389c93a9b2e94", + "a65ea3316632073202a6e82ca158a3a1c6259ee2", [] ], "development_guide.rst": [ @@ -476962,12 +484488,12 @@ "example": { "assertion": { "failure_demo.py": [ - "abb9bce5097a898387c7cc105a1b780e80f65db0", + "f7a9c279426865fac4c6861aa7cffb59ab3bb05f", [] ], "global_testmodule_config": { "conftest.py": [ - "7cdf18cdbc1316a812d6fe21f3b5d05527377c98", + "4aa7ec23bd1c98f2dca82361785b835ce49fd243", [] ], "test_hello_world.py": [ @@ -476976,7 +484502,7 @@ ] }, "test_failures.py": [ - "350518b43c76af35adc9fd56a403a7dbfd49671d", + "19d862f60b782208471498f3cd1f7a3d4101d5ae", [] ], "test_setup_flow_example.py": [ @@ -476985,11 +484511,43 @@ ] }, "attic.rst": [ - "2ea870062043591c0910cc50000016e76e1cbdbf", + "2b1f2766dce789ce59f31abd1c47b8ce5a32e688", [] ], "conftest.py": [ - "f905738c4f6c7ae5ef6d89b19feb1835d749e005", + "66e70f14dd713766a8f0476bb38f2f6520d40b19", + [] + ], + "customdirectory": { + "conftest.py": [ + "b2f68dba41a20e84038e1e6dd1b2b61cac18a500", + [] + ], + "pytest.ini": [ + "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", + [] + ], + "tests": { + "manifest.json": [ + "6ab6d0a522269fbe85a7a0fb9450a11b17ebc5ab", + [] + ], + "test_first.py": [ + "0a78de59945d3ab99f3659d9d1a554a973bb9d78", + [] + ], + "test_second.py": [ + "eed724a7d969fe6e95874d2b86d85e22419b2285", + [] + ], + "test_third.py": [ + "61cf59dc16c2a51e85e0c48c2bf570de4fdb49b3", + [] + ] + } + }, + "customdirectory.rst": [ + "1e4d7e370de299b6af6019d7d8473f2deafa04fe", [] ], "fixtures": { @@ -477030,7 +484588,7 @@ [] ], "test_fixtures_order_dependencies.py": [ - "b3512c2a64dbd4f79d446f4cc6c664acc20d7e4e", + "e76e3f93c622f3f8085bac318efa485b0acb2eb7", [] ], "test_fixtures_order_dependencies.svg": [ @@ -477063,15 +484621,15 @@ ] }, "index.rst": [ - "71e855534ff947dca1d86096e8786417f8bcb4c9", + "840819002d4c582b352bf9f9bff763c2d7e2eb1e", [] ], "markers.rst": [ - "3226c0871e0932568ffbc63c9a88ef29dbd3285b", + "c04d2a078ddbc375e5423f9277bb7b693257f656", [] ], "multipython.py": [ - "9005d31adddcd912ea0e1187c9d4234c8b97c04c", + "861ae9e528da3fe632825a28671bdf2021ac162f", [] ], "nonpython": { @@ -477080,7 +484638,7 @@ [] ], "conftest.py": [ - "bc39a1f6b204888e14e8ec66815f99793202ded8", + "e969e3e25187c80202bd52af5b78b258a8d7423e", [] ], "test_simple.yaml": [ @@ -477089,11 +484647,11 @@ ] }, "nonpython.rst": [ - "f79f15b4f79d3c0e250761ab3c082456919ddd73", + "aa463e2416bfd10d7f0f196b172477100ae9758f", [] ], "parametrize.rst": [ - "66d72f3cc0d430b2b575d72fdcb122ad12685099", + "03f6852e5c0f5f65ac6028bb81b75878b4cf37f5", [] ], "pythoncollection.py": [ @@ -477101,15 +484659,15 @@ [] ], "pythoncollection.rst": [ - "b9c2386ac51a63d64bf3d0143967dd5107696fe7", + "aa9d05d72275338db96d419eca6030cdde84d22f", [] ], "reportingdemo.rst": [ - "cab93143615592bc2bec86b363517c135e249da0", + "2c34cc2b00d3832e9e0a542f557ba7366af8fd18", [] ], "simple.rst": [ - "a70f34049928a22897801f400eab29506c0667d7", + "7064f61f0e23b5364e874f1056955190917dd200", [] ], "special.rst": [ @@ -477117,25 +484675,25 @@ [] ], "xfail_demo.py": [ - "01e6da1ad2ed20b633508c668df5805251de0f60", + "1040c89298d07b0fd2011f2e772ad8944ee70eca", [] ] }, "explanation": { "anatomy.rst": [ - "e86dd74251e841eaadc5f2515c65aa079b5044e4", + "93d3400dae2b3ee1cfc41a1bebb66286414273d6", [] ], "fixtures.rst": [ - "194e576493e5ae3f9bb49700365c0ffb076d9e7a", + "0bb3bf49fb09765a37c22fe17cc3c1c539343923", [] ], "flaky.rst": [ - "50121c7a761bde372b32bfe987283983fb6854d0", + "41cbe8479895b222c4d350cc571575d03b938e92", [] ], "goodpractices.rst": [ - "32a14991ae2a860fb26c0a7ae085b403f2433b0b", + "1390ba4e8fedb9bca0b1d899d8aa607db152df47", [] ], "index.rst": [ @@ -477143,12 +484701,12 @@ [] ], "pythonpath.rst": [ - "2330356b863cfbfa49b05f78c5da8980b115ead0", + "33eba86b57a509c4e4a932abd8b7ec63e739f1b1", [] ] }, "funcarg_compare.rst": [ - "3bf4527cfb526729d1a9a3184e297f15f534912d", + "8b900d30f2000183f0d07e028ef7300eb15c4550", [] ], "funcargs.rst": [ @@ -477156,11 +484714,11 @@ [] ], "getting-started.rst": [ - "5d13a768069e51169146d4625ee34d6b63c4bd73", + "94e0d80e656d1052ab87e01cf47c476dfb3bf5d1", [] ], "historical-notes.rst": [ - "29ebbd5d1995162b0a57e7d6f5c52ef4b9d302dd", + "5eb527c582ba05241c33fd9e01d4c7929c95966c", [] ], "history.rst": [ @@ -477169,47 +484727,47 @@ ], "how-to": { "assert.rst": [ - "cb70db6b8edf9d24f8d7283f3591b92985d987d3", + "7b027744695846a109a7ad9ad2f58c4b4a0bd88a", [] ], "bash-completion.rst": [ - "245dfd6d9a8f134bc72c6bed28acd04813aea63d", + "117ff7ec13b282775a6df26dc07e73426d8bc296", [] ], "cache.rst": [ - "e7994645dd30a3a81f6b6631379f9d522b10f0a2", + "40cd3f00dd662c9850f6fc9f1aaec7e6a56d82cd", [] ], "capture-stdout-stderr.rst": [ - "9ccea719b6477405168fc3a6155cb72ef29b453a", + "5e23f0c024e7e69e5b8740a4a57d400c9f6f9cab", [] ], "capture-warnings.rst": [ - "065c11e610cfb21c026b03384e3db55ca7ec1bb1", + "afabad5da1438cc70c46bc975de56a3956ed76b1", [] ], "doctest.rst": [ - "ce0b5a5f64960bb0c98a88f21a3ddc6155deefd6", + "c2a6cc8e9586b80116e5ddc165c23c07d1ba95a2", [] ], "existingtestsuite.rst": [ - "9909e7d113a9ed4cf6c6a8f3e9b325acf0723a91", + "1c37023c72a2537b413256e2cc5aaf3a8628d085", [] ], "failures.rst": [ - "ef87550915a189d7ab3b6de19a97232b07254ac8", + "b3d0c155b48fb26f7fb6178ded8e0f948c4f6c91", [] ], "fixtures.rst": [ - "0801387745505a9a08df4f919799eb07e1dc5cb8", + "6cc20c8c3e4cd3a7d824c4570fdb7b6c9ef9e3b5", [] ], "index.rst": [ - "6f52aaecdc3f8b8c32235e88f1899f2bc58c4d46", + "225f289651e0d318438d716e4b380173f3b83eb8", [] ], "logging.rst": [ - "2e8734fa6a3c51437a1f37d9dcfe66aac1ca5ceb", + "300e9f6e6c2418f782f0339d68a2c8c9aa2c2173", [] ], "mark.rst": [ @@ -477217,51 +484775,47 @@ [] ], "monkeypatch.rst": [ - "9c61233f7e5772ae2ac4af20048e7dc5cb59b8c8", - [] - ], - "nose.rst": [ - "4bf8b06c324c7ceac9f32a4838e4004d1bbc9ae6", + "a9504dcb32a8d55e4b330895dea2dfacda66affd", [] ], "output.rst": [ - "4b90988f49d403d7553f013a282a54f25cfe1bc2", + "7a4e32edc78046035b3225830444cb1696b26d19", [] ], "parametrize.rst": [ - "a0c9968428cb84024a34ae7797931cf8b1f2706c", + "b6466c491b4aecb3d3745d3648a5fee83403af55", [] ], "plugins.rst": [ - "cae737e96ed57925e96d97c2eeaef390e21fee95", + "7d5bcd85a3103cbe0b5ce463acd0574d53e9f791", [] ], "skipping.rst": [ - "e2f59c77ae8c019a96f2a25f301d57cdee96d429", + "09a19766f99f704a5685592beae64484f40c24a7", [] ], "tmp_path.rst": [ - "ebd74d42e903d62912aaa02f1436f3759030f4a0", + "3cc5152e992170944d3974d3c205ac6d86ba7e19", [] ], "unittest.rst": [ - "bff7511077808aee6526ebf2559be965e14b1532", + "508aebde01675d8a73e678945c7c269c47a69d85", [] ], "usage.rst": [ - "3522b258dce7fc3f435a26168ce52a4a62955a1a", + "fe46fad2db5d1b1cf43ef2484a8744b89cba5b11", [] ], "writing_hook_functions.rst": [ - "f615fced861de76c515ba89ecd9f41be949f6656", + "f4c00d04fdae9b52855b3bddd397c08af4b01ab2", [] ], "writing_plugins.rst": [ - "b2d2b6563d63ed191fa573235ab1847283d4e0c7", + "4bb6d1833339517922cb81074f3136f6377a0425", [] ], "xunit_setup.rst": [ - "5a97b2c85f13a38d3ca735786d19a8f4dc2e2c81", + "3de6681ff8fb83073c81fd8ad3e6dd0b5ba92932", [] ] }, @@ -477308,7 +484862,7 @@ ] }, "index.rst": [ - "d1b3d2e8a0816343d23fced44ab47212aaada905", + "83eb27b0a53f36e7a324d829cdf4a341ed277a6f", [] ], "license.rst": [ @@ -477316,7 +484870,7 @@ [] ], "naming20.rst": [ - "5a81df2698d2bd59274b36355098a64865e6b3ee", + "112130663843365e78e0c4ae7747a941c20de945", [] ], "proposals": { @@ -477325,10 +484879,6 @@ [] ] }, - "py27-py34-deprecation.rst": [ - "660b078e30ef39f650f27703281742f4a57b8e1c", - [] - ], "pytest.ini": [ "7604360561cc2ae94bc117140b449f76629276e1", [] @@ -477339,7 +484889,7 @@ ], "reference": { "customize.rst": [ - "fe10ca066b25ebfe77e76b1cf58b3fe40e2f90bd", + "cab1117266f1d70f4a17ccb9f971db809a3a51c7", [] ], "exit-codes.rst": [ @@ -477347,24 +484897,24 @@ [] ], "fixtures.rst": [ - "d25979ab95d39eaaac3efe15f956d9344e661070", + "dff93a035efd219295397ea823b513aab1d6c0e2", [] ], "index.rst": [ - "d9648400317afee1f5bd98d5c8ba92487906eabc", + "ee1b2e6214df1e4973e877f7442d8ad0bdc86807", [] ], "plugin_list.rst": [ - "ebf400913690a23bb5a6afdd938021fb258ec987", + "e1d1e3ec24ac1cb35e319fd262e46327662f6de3", [] ], "reference.rst": [ - "0d80c8068071d1029653d6948dfffb37e0b6b72f", + "4036b7d9912dc4927b06885ebfacfbefd8354e42", [] ] }, "requirements.txt": [ - "5b49cb7fccc0773435f8bed6ebe08d349163f375", + "974988c8cf4b5757d37329b6a0d52720a14af7e7", [] ], "sponsor.rst": [ @@ -477372,7 +484922,7 @@ [] ], "talks.rst": [ - "6843c82bab52a50c049b6d836c4bd9c59031d2ae", + "b9b153a792e4f9a95496940a500dee55fd2a91a1", [] ], "tidelift.rst": [ @@ -477387,27 +484937,25 @@ }, "extra": { "get_issues.py": [ - "4aaa3c3ec31c13554ed6cd0f8c78128c4f96dd7e", + "716233ccba178f9458fc8fd7838cac667a4af246", [] - ], - "setup-py.test": { - "setup.py": [ - "d0560ce1f5f4437e574aebc52ddf8b8a37b8605d", - [] - ] - } + ] }, "pyproject.toml": [ - "5d32b755c7445de44bc66a9de76dc817b53e2e82", + "01acfbf7660a56f14e4929d69db4faf63bd23eea", [] ], "scripts": { - "prepare-release-pr.py": [ - "7a80de7edaa2c69044021b91b889408412cf218a", + ".gitignore": [ + "50a75b629590997d2ae9887e3733dbbdbb29fc79", + [] + ], + "generate-gh-release-notes.py": [ + "4222702d5d400e3fd5ea842285fa4f0887bd7f69", [] ], - "publish-gh-release-notes.py": [ - "68cbd7adffd43aa99bcd473986d10f1c56684d9e", + "prepare-release-pr.py": [ + "7dabbd3b328e6178fd5b2efe09fafb1c347302ac", [] ], "release.major.rst": [ @@ -477427,47 +484975,39 @@ [] ], "release.py": [ - "19fef4284285a06b8d9284f4f5191140010cb359", + "bcbc4262d08518cc61f27efb9754d97da2a4bf93", [] ], "towncrier-draft-to-file.py": [ - "81507b40b75fd9fb95f956a1a5429c918e34be8d", + "f771295a01ff11a5d6344e0ddace43151a810a92", [] ], "update-plugin-list.py": [ - "c034c72420b02790173f569f6fa3d0dbec0b5d8c", + "6831fc984dd5ad952fc32c55892ebaae44defb30", [] ] }, - "setup.cfg": [ - "26a5d2e63e56657e73a498ebb5b2dd3cd85bc0c2", - [] - ], - "setup.py": [ - "7f1a1763ca9cebc7bc16576d353d3284ee5d3c7d", - [] - ], "src": { "_pytest": { "__init__.py": [ - "8a406c5c7512bb928f1909cf1f43461cb3efb64c", + "b694a5f244a2828166abc0f55b78a294b64be745", [] ], "_argcomplete.py": [ - "41d9d9407c773bf6a3c4eded476a49649fb80bb2", + "c24f925202a17098b497cdef7f563d93d1f35827", [] ], "_code": { "__init__.py": [ - "511d0dde661dfb97378f76f1d17cbc55e150ef80", + "b0a418e95555ef3e15dc3bc67db9460eb1a00315", [] ], "code.py": [ - "5b758a88480d5e80db59a91fbbb66e30d41ca6f2", + "ee6a5597c2ca8d32b6bdf7c761e14ba6748db985", [] ], "source.py": [ - "208cfb80037a807f81bbb70229c25990c42bb011", + "7fa577e03b34a502d24dfb23150c04c7be8d23b9", [] ] }, @@ -477476,159 +485016,173 @@ "db001e918cb30d25b0e12963cef2544f06bb929f", [] ], + "pprint.py": [ + "75e9a7123b5677e3069b184d9589f222c3714e32", + [] + ], "saferepr.py": [ - "e7ff5cab20368a536cc73eff3ae770bbf899a2b7", + "9f33fced6769a6b47c3a34a61bd1689349be7476", [] ], "terminalwriter.py": [ - "379035d858c92b405c02d13a2bd254ce131d2e5e", + "deb6ecc3c942b567cac1e7115d3426ad78da029b", [] ], "wcwidth.py": [ - "e5c7bf4d8683ccc3866a15ddbc53d8b092d5c05d", + "53803133519fbfbb36cf739181508aff55af4326", + [] + ] + }, + "_py": { + "__init__.py": [ + "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", + [] + ], + "error.py": [ + "ab3a4ed318eac0cab7af09312a5774dc622b0546", + [] + ], + "path.py": [ + "9b4ec68950de1be306782ba034713e72253d7373", [] ] }, "_version.py": [ - "5515abadad7d3102b64fb352af4ff49c92e979ea", + "1df004d997c6d7cd9982c1fca7a4cfe5a8beab1b", [] ], "assertion": { "__init__.py": [ - "480a26ad867181b4d6213e98403230515ba987a9", + "21dd4a4a4bbcc8d5affd3eaa436fbf0a3ac03c7e", [] ], "rewrite.py": [ - "88ac6cab368d117eb65a96de84b966c7f7310e20", + "1e722f2ba15125452b789ec4ec78e755d5cce427", [] ], "truncate.py": [ - "ce148dca095af339fbcf1180c2a892b8a5893e8a", + "4fdfd86a519f9bae070fa0504aec6edaa9065680", [] ], "util.py": [ - "19f1089c20aa1c469802cb4360f79855cb786f14", + "e49c42cfcf744b3a54e493b071863009883a8699", [] ] }, "cacheprovider.py": [ - "681d02b4093be72247d509d085088fd7550563d2", + "a9cbb77cbbb57d2e56828d3cd582a0ec8f3e9494", [] ], "capture.py": [ - "884f035e299e690f15b0b9bc0751e2a306ab9a9f", + "3f6a2510348dd3f1d77e6ff54c49f14fcb099c38", [] ], "compat.py": [ - "7703dee8c5ac952b781c878205e7f4ccfbcba9b7", + "614848e0dbaeb2cfc1356d3393b0d0992922d47f", [] ], "config": { "__init__.py": [ - "ebf6e1b950b80ee79c61463d6f25757d34ef27d8", + "3f46073ac4ad11691d4186a00c55ac775520ea14", [] ], "argparsing.py": [ - "b0bb3f168ff291a45af5ba7b613d21ecd74bfd80", + "9006351af7284d5fefdf30d6703bbf05de692d82", [] ], "compat.py": [ - "ba267d21505f75b10590831f5de0b9cc03fe784f", + "2856d85d19550422abb91ee35f11f461b5b315d7", [] ], "exceptions.py": [ - "4f1320e758d506763261c4bd8dc21453dda4b5ef", + "4031ea732f338ae88d3be522f501da55feb6e2ad", [] ], "findpaths.py": [ - "89ade5f23b91ce1818031a290b1d2f67093ffe96", + "9909376de0f8a8c543b153d3bf291a7fd3ce72d2", [] ] }, "debugging.py": [ - "452fb18ac34f01a96e9df004ad4810976e2c4642", + "6ed0c5c7aeebf6ad6e8aa1fbff02c9554c9c569f", [] ], "deprecated.py": [ - "5248927113ee3e0501de058706d49d30c4fe9a6f", + "10811d158aaeabb88de26166f3c88193b589c953", [] ], "doctest.py": [ - "0784f431b8ed917a20f4cd16fb1be1e8e38751ac", + "7fff99f37b5f92391f75837de5bb02a485176cd0", [] ], "faulthandler.py": [ - "aaee307ff2c6d7d78ea471ab56d806fd349ca853", + "083bcb837399c23a76eeb3cd19fd50440f457d82", [] ], "fixtures.py": [ - "fddff931c513de2b094fca4a027cda460e8dc8c7", + "7fd63f937c19316338fc130d74d36ad6c7cb7f55", [] ], "freeze_support.py": [ - "9f8ea231feddf4168064a1e7b03f36c9adac303e", + "e03a6d1753d816be41a6403ff49c6cc6b52d7e8f", [] ], "helpconfig.py": [ - "aca2cd391e427a6f0cfd7570efcc6d5dc520ae3c", + "37fbdf04d7e1ebb8db2293edbf7a93c4ef6abe52", [] ], "hookspec.py": [ - "79251315d8986f515488981cbea313e74cb383ef", + "9ec9b3b5e1041fad567099b61f431fca18d38209", [] ], "junitxml.py": [ - "4af5fbab0c081d5300c922a2cadf46eebea50c9b", + "13fc9277aeca7374913ac4667b50dc9dd797e328", [] ], "legacypath.py": [ - "37e8c24220e06c53e1994f471bee52a809d3c71c", + "d9de65b1a538631fb0ce9a673b5e3f7ea3f3b234", [] ], "logging.py": [ - "31ad830107610063d38e2cd5dd52d419ac81620d", + "af5e443ced19bc1056ab62029fdd22a2f6687b76", [] ], "main.py": [ - "fea8179ca7d4b80e24df680d2cec215e27910351", + "716d5cf783b38e04cfb7fe5df411ea774f6f2575", [] ], "mark": { "__init__.py": [ - "7e082f2e6e08b4c19bfacdbb30d121e22322f155", + "01d6e7165f2a26b2163626765ad68472356169e2", [] ], "expression.py": [ - "92220d7723aa420f5ec0cb71e602f50f277d798c", + "78b7fda696b57e4edcb6dc2c207802e453e9bf3b", [] ], "structures.py": [ - "0e42cd8de5f58be71804b02f1575e8126502607f", + "a6503bf1d46891eb5763e88db36544cb99ef4340", [] ] }, "monkeypatch.py": [ - "31f95a95ab2266eb955495bc828ff8d024ca594d", + "3f398df76b18041dd546209cdfb1a96577e29112", [] ], "nodes.py": [ - "e49c1b003e0347b60e2a25fdb007be4f812a039d", - [] - ], - "nose.py": [ - "b0699d22bd874a9bb0b1f2cbcac360778b2ea398", + "974d756a2bee88b5bb41dc57a34d2a575a05dadf", [] ], "outcomes.py": [ - "25206fe0e85f1436c0e999b7ca275a4d45c1c4d9", + "f953dabe03d2f341c0005482dca35620fb94a84e", [] ], "pastebin.py": [ - "385b3022cc0e978e656cfc22b3e1b4164a596aae", + "533d78c9a2a4e9f54f8b5a11845e2f3c12830766", [] ], "pathlib.py": [ - "b44753e1a415aa86db47c4c62fb9d3fc3fbcfd26", + "b11eea4e7ef7578cef7f248d1cb8f862607736df", [] ], "py.typed": [ @@ -477636,19 +485190,19 @@ [] ], "pytester.py": [ - "363a3727447bde04e6e09999b07cbd364db8fd5e", + "9ba8e6a8182544fda851e87ef444214506b61bb0", [] ], "pytester_assertions.py": [ - "657e4db5fc318da80a0247be45208c0d4ece38dd", + "d20c2bb599917a3da3aae49e9e5013cbffa56660", [] ], "python.py": [ - "0fd5702a5cc00af7c481854bf7a8027c2fd0cf94", + "41a2fe39af32a6e183395e9a8c60524a25ff4f72", [] ], "python_api.py": [ - "cb72fde1e1f75f54f3c57d92057d3dd30db868cf", + "7d89fdd809ee35c54f365a3fc5c88f6b8c3e6430", [] ], "python_path.py": [ @@ -477656,85 +485210,85 @@ [] ], "recwarn.py": [ - "175b571a80c4f85701c95b881cf98eabdafc7bef", + "63e7a4bd6dc98bdc0044d7c0d2d794c634dc4e1e", [] ], "reports.py": [ - "a68e68bc526f53307eff38fb9e1b33be0545b287", + "70f3212ce7bad14e1e48984ed7c2b31c84651285", [] ], "runner.py": [ - "e43dd2dc818263af055955654ec268202b289a5d", + "d15a682f979076cae29a98d02805755504618594", [] ], "scope.py": [ - "7a746fb9fa9e9c34cf8f697641ca3eef6f3d0224", + "2c6e23208f249dd4900b62567dfed64d45730fbe", [] ], "setuponly.py": [ - "531131ce7262f15c88ff77e4b50723e69e872f12", + "39ab28b466b9c857b64264f76c2903391f11ab6c", [] ], "setupplan.py": [ - "9ba81ccaf0a4f28be0da63bd5881f9cff14a4f1e", + "13c0df84ea1bfd366b405ca632068d8b268a2ccc", [] ], "skipping.py": [ - "ac7216f8385f96da01034ee34e21848329972335", + "188dcae3f1c3f2a78e0182ecc0ba1d458b41cabf", [] ], "stash.py": [ - "e61d75b95f7d93120abbf3266eb52cd1b78aae8e", + "a4b829fc6dd07dd70a64773c7e60640b40b30a4f", [] ], "stepwise.py": [ - "4d95a96b8727fd3a5d91f9497f7bc828efcb6e3a", + "92d3a297e0d3359b6719c59db5ccb1987b8cb323", [] ], "terminal.py": [ - "ccbd84d7d716403c92e43bd6c85c10f711d27def", + "724d5c54d2f160ade5e3333d7e5d704a445d9ee5", [] ], "threadexception.py": [ - "43341e739a0e40cffe3b490dff8e7f20485eb28e", + "09faf661b91eec5ac735fa5765151f6ad6464b1d", [] ], "timing.py": [ - "925163a585840adbc22d54f7fdd055f7d0b520b6", + "0541dc8e0a1b147e64898cd48cd210b96f098ed9", [] ], "tmpdir.py": [ - "f901fd5727c55615814035d78f52e5136c2e391b", + "72efed3e87a175b01354efb73937836697f49e6a", [] ], "unittest.py": [ - "0315168b0446441974bf05007b93e6549b16b786", + "8f1791bf744f15683b2748f20aa1d5c318a7ca8d", [] ], "unraisableexception.py": [ - "fcb5d8237c16e63dac3dff634759a055e4398686", + "f649267abf1076d3409c13ef2fc676b144be814e", [] ], "warning_types.py": [ - "2a97a31978982c5fce5930543d4339bbad86edde", + "a5884f295827f521607b0fa1be76f3a3e1363765", [] ], "warnings.py": [ - "c0c946cbde5c1f65b7c833b85718dbd1c033db6d", + "22590892f8d8ab5116650f9811e50cc936fb8524", [] ] }, + "py.py": [ + "d1c39d203a8e50ef0a22dec74a643268b5669967", + [] + ], "pytest": { "__init__.py": [ - "6050fd112481dab6ecedcb75307d7448e8ef1256", + "c6b6de827e960fa30eee23c400ed661dce4352a3", [] ], "__main__.py": [ - "b170152937b38cda35d4563241288eb3fc27edd0", - [] - ], - "collect.py": [ - "4b2b58180667e286a7c6c7eb1c3baec059561ca3", + "e4cb67d5dd52cd4e47a8bd8d4360c3aa8feb387a", [] ], "py.typed": [ @@ -477744,30 +485298,36 @@ } }, "testing": { + "_py": { + "test_local.py": [ + "1b5b344551c17c63be8d900f8d7c4db4e0fb04b2", + [] + ] + }, "acceptance_test.py": [ - "8b8d4a4a6ed45194fe39ff9a70ebb78281972bff", + "8f001bc240165fcefda3bde9f7abe6c629c8216a", [] ], "code": { "test_code.py": [ - "33809528a06b0b2ef19fa789d91df381257da0e0", + "57ab4cdfddb3dd9af40668948caaa0b2c7e4188b", [] ], "test_excinfo.py": [ - "61aa4406ad26e4e1e8d2f905a214c6bc0e926907", + "e95510f92d676e0f3dd0ed894c2c3c9f68a4ce92", [] ], "test_source.py": [ - "9f7be5e245813706144106e1755b0a2729d20b0c", + "a00259976c44314110352e2ecaec345d94d9f46b", [] ] }, "conftest.py": [ - "107aad86b25b645bc4fb228e3d890a86a635271d", + "b7e2d6111af7fcfbdddffdf0259b268481df47c9", [] ], "deprecated_test.py": [ - "9ac7fe1cacbc5ffffbe3fdc3787318f26a79f104", + "9e83a49d554996536773cc21d4fc3f042d4a3c08", [] ], "example_scripts": { @@ -477781,7 +485341,7 @@ ], "acceptance": { "fixture_mock_integration.py": [ - "5b00ac90e1beaf82b0293daebc44162ab358ce37", + "d802a7f872823c73df765f102237c7e175f7747e", [] ] }, @@ -477793,11 +485353,11 @@ ], "tests": { "__init__.py": [ - "9cd366295e766abed8511b332dcaaea38db7ea31", + "58c41942d1ca12a2d47986d411f505510d7128a8", [] ], "test_foo.py": [ - "8f2d73cfa4f2e3cad4386ec24874b9957e0299e2", + "d88c001c2cc2a3bfb38ffe52fe7f2a60c6bc9f6c", [] ] } @@ -477808,7 +485368,7 @@ [] ], "conftest.py": [ - "973ccc0c030032465d1d959627830a37ff0b944e", + "bba5db8b2fde59403355dfe91cb25ae3762b38df", [] ], "tests": { @@ -477817,7 +485377,7 @@ [] ], "test_basic.py": [ - "f174823854e763f4a425d19fbe28dfb928a16109", + "2809d0cc68956440deda09cdf42468ba150aad86", [] ] } @@ -477825,11 +485385,11 @@ "package_init_given_as_arg": { "pkg": { "__init__.py": [ - "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", + "58c41942d1ca12a2d47986d411f505510d7128a8", [] ], "test_foo.py": [ - "f174823854e763f4a425d19fbe28dfb928a16109", + "d88c001c2cc2a3bfb38ffe52fe7f2a60c6bc9f6c", [] ] } @@ -477846,7 +485406,7 @@ [] ], "test_foo.py": [ - "8f2d73cfa4f2e3cad4386ec24874b9957e0299e2", + "d88c001c2cc2a3bfb38ffe52fe7f2a60c6bc9f6c", [] ] } @@ -477857,10 +485417,38 @@ [] ], "conftest.py": [ - "8973e4252d3eaf08fab32ae100af456277392f3e", + "64bbeefac1dc04c5ef727931902f180012c2e8a4", [] ] }, + "customdirectory": { + "conftest.py": [ + "fe1c743a6860cfa9c4d4ad90effb4de86b37a4f8", + [] + ], + "pytest.ini": [ + "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", + [] + ], + "tests": { + "manifest.json": [ + "6ab6d0a522269fbe85a7a0fb9450a11b17ebc5ab", + [] + ], + "test_first.py": [ + "890ca3dea38aa03b37ba8415939cbcea1410bfdb", + [] + ], + "test_second.py": [ + "42108d5da846cc294f7d65e68a9c9e3be4002c91", + [] + ], + "test_third.py": [ + "ede0f3e60256cf24c87979fef044c7dec6a03604", + [] + ] + } + }, "dataclasses": { "test_compare_dataclasses.py": [ "d96c90a91bdd200a2c4f57c4e6546961cad47a13", @@ -477874,8 +485462,16 @@ "4737ef904e07aa8a88b0f3a7d2343f310121155f", [] ], + "test_compare_dataclasses_with_custom_eq.py": [ + "e026fe3d192e7ef78cb27b00e3a84da047696225", + [] + ], + "test_compare_initvar.py": [ + "d687fc22530455c3319e9428e7d7b931bb63485d", + [] + ], "test_compare_recursive_dataclasses.py": [ - "0945790f004201a514da57a064ef69c2b45de86d", + "801aa0a732ed13999549cf89e5da48060ceb8012", [] ], "test_compare_two_different_dataclasses.py": [ @@ -477886,11 +485482,11 @@ "doctest": { "main_py": { "__main__.py": [ - "e471d06d643b0febf822a7ba4083bf8416cd7205", + "c8a124f54160cf5e2b33bad537ba7fb656cda579", [] ], "test_normal_module.py": [ - "700cc9750cfab5c6ee94ce74a7968efa7ffebb61", + "26a4d90bc89c8c94cffa0e4d988a05076e491831", [] ] } @@ -477902,7 +485498,7 @@ [] ], "conftest.py": [ - "a7a5e9db80a34a63bea27558cd4e89d94250893c", + "fe1ae620aa63626e9ca80b86ef8bf4892a8fb726", [] ], "foo": { @@ -477911,7 +485507,7 @@ [] ], "test_foo.py": [ - "f174823854e763f4a425d19fbe28dfb928a16109", + "2809d0cc68956440deda09cdf42468ba150aad86", [] ] } @@ -477924,11 +485520,11 @@ [] ], "conftest.py": [ - "be5adbeb6e536ae8435b21ce07a954c59640ed89", + "3a5d3ac33fe2641aeef2e5c03fbdd7b0b19b7949", [] ], "test_in_sub1.py": [ - "df36da1369b3538c480cbe20dfa4da096bb0d80f", + "d0c4bdbdfd903ab10ed9ad9cf8483ca69bf1dffd", [] ] }, @@ -477938,17 +485534,17 @@ [] ], "conftest.py": [ - "00981c5dc12b2d8f848fbe368b3dc278ffdb1006", + "a1f3b2d58b91cbe5bb2d8b9630777895235894e6", [] ], "test_in_sub2.py": [ - "1c34f94acc478114b177c4f1e4daaf1402f8de8f", + "45e9744786a4b27983d592d4c7898c87642e839e", [] ] } }, "test_detect_recursive_dependency_error.py": [ - "d1efcbb338c27575fedd2e3b5b04a71bd0a10212", + "84e5256f070536c3e42e7f7f945bd59f6d7d3e47", [] ], "test_extend_fixture_conftest_conftest": { @@ -477957,7 +485553,7 @@ [] ], "conftest.py": [ - "5dfd2f779579c732f249d12b379fd7f97e5dc830", + "7f1769beb9b99267206d511cea49d0ca60284dd9", [] ], "pkg": { @@ -477966,11 +485562,11 @@ [] ], "conftest.py": [ - "4e22ce5a1373df2082dcfd35b6ea4370c5213fe7", + "ad26fdd8cdc624d7204413f3a2b1c9e055148fa9", [] ], "test_spam.py": [ - "0d891fbb503f8c819640151f2ba9f876cf7e2737", + "9ee74a471863cda1ffa55c08211b4af159b91db7", [] ] } @@ -477981,41 +485577,41 @@ [] ], "conftest.py": [ - "5dfd2f779579c732f249d12b379fd7f97e5dc830", + "7f1769beb9b99267206d511cea49d0ca60284dd9", [] ], "test_extend_fixture_conftest_module.py": [ - "46d1446f4702c88e86c0006f2a13675e22f12f36", + "fa688f0a844867ea12bd9985d00988cd996e1372", [] ] }, "test_extend_fixture_module_class.py": [ - "87a0c894111517cdff2110df363498912b04f33d", + "f78a57c322b9f16fee94a1e7472c7a2a05ac7616", [] ], "test_funcarg_basic.py": [ - "0661cb301fc12ab2fde5e7460f96e6c878c2dee1", + "12e0e3e91d47b31e2fdab6920a8ef9f353bb146f", [] ], "test_funcarg_lookup_classlevel.py": [ - "256b92a17ddfd372f1249ef78710684f63f82703", + "8b6e8697e06066f95a51e98e8f3b3042ba3999b9", [] ], "test_funcarg_lookup_modulelevel.py": [ - "e15dbd2ca45de7a89145102be7b6098fea8f6b5f", + "40587cf2bd1e29e261397af9db28a3661d7b183b", [] ], "test_funcarg_lookupfails.py": [ - "b775203231f88cc78733a54be52ff39dd7b898a6", + "0cc8446d8eec20394a2031248725d1c0ae1f86c3", [] ] }, "test_fixture_named_request.py": [ - "75514bf8b8c53e468a032c26b312b5db973646b5", + "a2ab7ee330d38cf2533f4190bdb2241a0b9c2245", [] ], "test_getfixturevalue_dynamic.py": [ - "055a1220b1c9293a00049ab395011872782db1ee", + "0f316f0e449840fb33b3e5998aa9e02aaed6db7f", [] ] }, @@ -478025,16 +485621,16 @@ [] ], "conftest.py": [ - "cb8f5d671ea8599f258a6029fa466af869954948", + "bde5c0711ace579929de67f49c952accf77b588b", [] ], "test_hello.py": [ - "56444d147480fdc344d70aa2087050cb69acd27b", + "dd18e1741f01e54860dbc7a56761ab5dfde7874e", [] ] }, "issue_519.py": [ - "e44367fca04687d38b1ae0f601b706ab7490ed9c", + "39766164490f0d47cff1646bd3513917eb8d3957", [] ], "junit-10.xsd": [ @@ -478052,7 +485648,7 @@ [] ], "test_marks_as_keywords.py": [ - "35a2c7b76289639ebccf00e8699861214a273f3c", + "d95ad0a83d9f37517888eab9cb5b2003d5243168", [] ] } @@ -478064,11 +485660,11 @@ [] ], "generate_folders.py": [ - "ff1eaf7d6bb87cf5dbe641dca6004e0ace6dd058", + "17085e50b54e8e83ec6326fb9bef6274cbc2d2e3", [] ], "template_test.py": [ - "064ade190a10c88c9779c3cff0ccca199db7138b", + "f50eb65525c8885c699af78e6795a73ace5cbcc5", [] ] } @@ -478079,52 +485675,52 @@ ], "tmpdir": { "tmp_path_fixture.py": [ - "8675eb2fa620d74bd723b2528ec303810850cdaf", + "4aa35faa0b6565479782f7ba51ab6bfad6d04f4f", [] ] }, "unittest": { "test_parametrized_fixture_error_message.py": [ - "d421ce927c944893a35d9631b77736f952954542", + "d66b66df5b73d5a391cac4881f423cd1e1d16e01", [] ], "test_setup_skip.py": [ - "93f79bb3b2e24cb5cf02fd98f45381a9e92a0da5", + "7550a0975769d1c58e8e0806132877f78f26dcdf", [] ], "test_setup_skip_class.py": [ - "4f251dcba17819a0876f612304f96c12ce3986e4", + "48f7e476f40ae39e173e0e3e66103291cf6fef23", [] ], "test_setup_skip_module.py": [ - "98befbe510fd3eff81251c761bc769131b7cae1e", + "eee4263d22be7f1f91d11ae8980e8bd3e86af61d", [] ], "test_unittest_asyncio.py": [ - "1cd2168604c495539376fc2f2031d97c7e729543", + "a82ddaebcc3c3884a8828ea75c4037f1f1a189ca", [] ], "test_unittest_asynctest.py": [ - "fb26617067c72f88416a25f56573a316c74f5871", + "e9b10171e8d2d70fb298b95efd2bed1a92628723", [] ], "test_unittest_plain_async.py": [ - "78dfece684ebb90594bf70168c1c1b6360fd6af9", + "2a4a66509a4cd886153f04849f813d86f5e238a0", [] ] }, "warnings": { "test_group_warnings_by_message.py": [ - "6985caa4407f39e1ad3d8381714b5408a8619fc8", + "be64a1ff2c8017e927b877ad70b264a8524ac6fc", [] ], "test_group_warnings_by_message_summary": { "test_1.py": [ - "b8c11cb71c983b99778dab720f9d47d4d04dda43", + "95fa795efe0476752026d8a3c5f54fcefac2e361", [] ], "test_2.py": [ - "636d04a5505acf1540b641bcb373537ac03966f3", + "5204fde8a85bd30cfb8270a7b22b519d1acd2321", [] ] } @@ -478142,11 +485738,11 @@ [] ], "create_executable.py": [ - "998df7b1ca727833356fff725850f33c97d48a8a", + "fbfda2e5d9448acb2248e4930037f91d274eb2c2", [] ], "runtests_script.py": [ - "591863016acea45dee428cd65d8016bc3809d9f8", + "ef63a2d15b9d3ec4cd0dcff7bf4602718e148021", [] ], "tests": { @@ -478155,32 +485751,36 @@ [] ], "test_trivial.py": [ - "08a55552abbf6252e8505ea9dffbdd32ece5b4c5", + "425f29a649c760f304eec9ea8eacc76731481e6d", [] ] }, "tox_run.py": [ - "678a69c858a2cd4094307acf90e6e996c9800ee3", + "7fd63cf1218f2a9d78219de2b3d10de09e21b2ad", [] ] }, "io": { + "test_pprint.py": [ + "15fe6611280d8e3addf0f60c370c1d782d3c777e", + [] + ], "test_saferepr.py": [ - "63d3af822b17ab9d241a50ec89ab2fcf9ec29de9", + "5d270f1756c594e144c9e06a9eebbd881feb394a", [] ], "test_terminalwriter.py": [ - "4866c94a55884398d462c59d062cafad748c7176", + "afa8d5cae871cfc50d1f967372b8cd4593e84d02", [] ], "test_wcwidth.py": [ - "7cc74df5d0791306f45e0e95b8225eb900ef6959", + "82503b8300c29051a6ed931c865ffdeeb4cc492c", [] ] }, "logging": { "test_fixture.py": [ - "bcb20de5805574bb098fb67c9936d544ea2586f2", + "c1cfff632afa1c7c59fb1150c77e75397a052f45", [] ], "test_formatter.py": [ @@ -478188,7 +485788,7 @@ [] ], "test_reporting.py": [ - "323ff7b2446a31ecc2e20e96be9cc77c5a238b54", + "7e592febf56fa49fd754b39fa4725fbb0ff51e98", [] ] }, @@ -478206,7 +485806,7 @@ [] ], "bdd_wallet.py": [ - "35927ea5875f11e727f17d9cea11c23a00e95f7d", + "2bdb15454241f4226806d366d490384624ad6c0a", [] ], "django_settings.py": [ @@ -478214,61 +485814,61 @@ [] ], "pytest.ini": [ - "b42b07d145aba3a906dfca2c18d85a2331f4335a", + "3bacdef62ab9426a9338c2c07688d073ec8931ca", [] ], "pytest_anyio_integration.py": [ - "65c2f59366344777da31251c45e81cfbc377dc65", + "383d7a0b5db3d64a4b267d072e125baf28a4f216", [] ], "pytest_asyncio_integration.py": [ - "5d2a3faccfcc7b3bd0ed6d9f5e292be9dcacf27f", + "b216c4beecd6cd871de21784584b5475669fa777", [] ], "pytest_mock_integration.py": [ - "740469d00fb97c517f36b460613698b6a8228fcd", + "5494c44270addb0a72cd71c17e6c40d72ac08867", [] ], "pytest_trio_integration.py": [ - "199f7850bc47c72fd8a678f9630088345cf43b97", + "60f48ec609b3e9b811d66349045f424ba26ca6e0", [] ], "pytest_twisted_integration.py": [ - "94748d036e5de5424dd81903a1d7697267d5abe4", + "0dbf5faeb8a19287e4a3a875313331bd7ca86ff2", [] ], "requirements.txt": [ - "90b253cc6d310a7a1e4f1411511a3aed86c3e23c", + "9e152f1191bbb0263996f9f844e2b43865cbd941", [] ], "simple_integration.py": [ - "20b2fc4b5bb7eb4e481183dec6d288524aefcddb", + "48089afcc7e959507dc47acf0340edf42f3cde32", [] ] }, "python": { "approx.py": [ - "0d411d8a6daadcffd7369af9965abbc221df3475", + "968e88285121ee17774c2695db20fd538a7f9808", [] ], "collect.py": [ - "ac3edd395ab83f401766a988a745648c3ef1fa2c", + "745550f0775a91414dfba8e2749a63d410893b9c", [] ], "fixtures.py": [ - "f29ca1dfa59049e4edac4bf980dfb1c6b5fdd4e9", + "741cf7dcf42cc729ab9405319ad9bb13e954c907", [] ], "integration.py": [ - "d138b726638ed9cee9b8a41272c9b404df7c8182", + "c20aaeed83995cde527c4f57feded89de4fb4797", [] ], "metafunc.py": [ - "fc0082eb6b98c07f66a5f280a5cd256ec1ecd3be", + "3d0058fa0a764c1370ffcd9cbf903bac411386cf", [] ], "raises.py": [ - "2d62e91091b128e5de0f97add1ca30a9ddf76b7b", + "929865e31a099ed1d836b66b8bd3802c7194e126", [] ], "show_fixtures_per_test.py": [ @@ -478277,159 +485877,155 @@ ] }, "test_argcomplete.py": [ - "8c10e230b0c8a233f580617fee286b4f676a7b6c", + "0c41c0286a460bdf608a0d445ec6affb894e0f11", [] ], "test_assertion.py": [ - "2516ff1629e82730a10774468d05a0ef04530166", + "ef4e36644d9da7017d8d4773cb96918296410e3f", [] ], "test_assertrewrite.py": [ - "4417eb4350fef5581b693d88842afad619b7ee91", + "ac93c57dbd74ae1c3a4d1883d09136cecd95c983", [] ], "test_cacheprovider.py": [ - "cc6d547dfb1b54c06414d4fbf486c65f64d5e01f", + "ea662e87f0788bcde42ab87b665a33039f604dfb", [] ], "test_capture.py": [ - "1bc1f2f8db2cdd0a0808b89b8990e4e941fd47ea", + "0521c3b6b04857f265cd9870a638e88531c1bce6", [] ], "test_collection.py": [ - "6a8a5c1cef11eb0e7a396c8c13b0cb26b5c267a8", + "7f0790693a521c5facfd762b7d71c2241a861a7c", [] ], "test_compat.py": [ - "37cf4a077d783716df0df93f6d71d0be3cc9db89", + "73ac1bad8586d370cc1d55a8210faa551b2d01ed", [] ], "test_config.py": [ - "8013966f07161c4e70f06de1a78564beaf68a2d7", + "0d097f71622b27b8a4f745333ac21f34c99f77e5", [] ], "test_conftest.py": [ - "64c1014a53347f41326b032df9ae5edc0fb66343", + "06438f082a9340fd0e179df11fd1a184d5200e84", [] ], "test_debugging.py": [ - "a822bb57f58673b08ead1160f00bca91ecce3710", + "7582dac67429a6d10bd71bbee97b3b73c504b1a2", [] ], "test_doctest.py": [ - "67b8ccdb7ecd23809195461e98c0ee36e2c1050a", + "a95dde9a6bfb72488c2d37933739b8d69f1292a8", [] ], "test_entry_points.py": [ - "5d003127363dd4e37f70dcdd40291f94319b2866", + "68e3a8a92e49b3314cba7d633d5a36a007aa325d", [] ], "test_error_diffs.py": [ - "1668e929ab413642e1bb0148b971f4a6cc5f364f", + "f290eb1679f81a43df10d86b30b0f449ea6e5778", [] ], "test_faulthandler.py": [ - "5b7911f21f833e74356357e9d23a9599483f914b", + "a3363de98169349bdd7ec286e5781cc053237891", [] ], "test_findpaths.py": [ - "3a2917261a255063b1c306e3b1a8c566e5b42325", + "260b9d07c9c44697c9403c8927a6ce2f0ebfc782", [] ], "test_helpconfig.py": [ - "44c2c9295bf3557510441c8233883c3901cc0d9e", + "4906ef5c8f02fa16dbc8880f85101feb56fec428", [] ], "test_junitxml.py": [ - "02531e81435cfec743090d1fdfc10c2b8529b518", + "86edfbbeb612ebbc7d931c992f1400d445600a78", [] ], "test_legacypath.py": [ - "8acafe98e7c4faaff76342d39d660f8e6a659ea1", + "ad4e22e46b4d499d26232d9015b70cdc84265e78", [] ], "test_link_resolve.py": [ - "60a86ada36e56821b99f329a4dbdd5fa91fb0ec6", + "0461cd75554cfa224ddd0adf9dd3ea35dddec84f", [] ], "test_main.py": [ - "2df51bb7bb9992061bcb9dd132c1cf0cefe4efe2", + "6294f66b360cdef366877888d310304fe6b9254c", [] ], "test_mark.py": [ - "da67d1ea7bcd6394f2e7504afab3c8fd3b5057c8", + "2896afa453211133fef2175f6e8af35c54bcfb2a", [] ], "test_mark_expression.py": [ - "f3643e7b4098d4f4b74b8a925ef93831be831022", + "07c89f90838257c2080fc33a6d646a619079a25f", [] ], "test_meta.py": [ - "9201bd21611207f20b41fd0a91af70bdc4f9ac94", + "40ed95d6b47a67dfbc0e30dc7c2eb64d97c2c790", [] ], "test_monkeypatch.py": [ - "95521818021050594a1949cad1f76584b2931671", + "12be774beca43bd300de30c3fbf11511b0e6a422", [] ], "test_nodes.py": [ - "df1439e1c49cccb22197537453cc265b698200ae", - [] - ], - "test_nose.py": [ - "1ded8854bb780a9ad7e5a41056b5d16afcb401c4", + "a3caf471f707544150606de152e08c72281b9d50", [] ], "test_parseopt.py": [ - "28529d04378324be9097dd274a66a244b178fb6d", + "e959dfd631bc6641584013dce48cf3ebe69fa5d1", [] ], "test_pastebin.py": [ - "b338519ae17b16c580932599ebf560c09543b34c", + "651a04da84aaefc78cf86dafd6a9f52c13ed8893", [] ], "test_pathlib.py": [ - "5eb153e847df4d2355d69855dcd9ce7fdf16d3d5", + "688d13f2f053ff8440397e7e15d914985f2bea9a", [] ], "test_pluginmanager.py": [ - "9fe23d177923075dbf113f85b1d246ee58f38982", + "99b003b66ed4b50884fed693c15f40eee2c9c43b", [] ], "test_pytester.py": [ - "049f8b22d81b3550f6a592813dc02088ede86e88", + "9c6081a56dbb9f93ecbb6b4dbf7651443fe7d129", [] ], "test_python_path.py": [ - "5ee0f55e36a335447fda42c1d4477a63c19b8b0d", + "73a8725680f6821a811e6550516ba39c4cb3caba", [] ], "test_recwarn.py": [ - "d3f218f1660adb7d529e0b2228706b0d7aefd8f7", + "27ee9aa72f073f309a11033764e19f5638c9e6c1", [] ], "test_reports.py": [ - "31b6cf1afc6aa02a34f7e3432c9267041f30842c", + "c6baeebc9dd376f6352c2ffd655ec637469f60a6", [] ], "test_runner.py": [ - "2e2c462d978962b3103ecbb1630ea209a722c4da", + "99c11a3d92c749dec3759e45dbe8baa1db226ea3", [] ], "test_runner_xunit.py": [ - "e077ac41e2c2e7b012835750c0e2c9d2bea96635", + "587c9eb9fefbc1f3dd3b721bd3eea7adf33b5c08", [] ], "test_scope.py": [ - "09ee1343a8068de8729b6be100ebf0f8a0e37d12", + "1727c2ee1bbb4c3ebc4975aea7889a705ce4fdfa", [] ], "test_session.py": [ - "3ca6d390383c0819bc38126be2ea863d5d2fbe9f", + "8624af478b140630700b0818fab4fc05f4f6f4b4", [] ], "test_setuponly.py": [ - "fe4bdc514eb6a735e6239309cf9c8f2775bcc131", + "8638f5a61403a693c8c9dd9078393a3c1abe1cf2", [] ], "test_setupplan.py": [ @@ -478437,52 +486033,52 @@ [] ], "test_skipping.py": [ - "3010943607c22d7987f6538b832632d501faf90f", + "a1511b26d1cca9df98b8498ee38ee82c930e9892", [] ], "test_stash.py": [ - "2c9df4832e443b17fda95533a47b9d4a6d7c48e8", + "e523c4e6f2b0833f88b74565237b7df0ae96e8cc", [] ], "test_stepwise.py": [ - "63d29d6241ff89f551ccd8b7c667701f6d6ec006", + "472afea66207a0b9e0cdeb0211d7b22490b57840", [] ], "test_terminal.py": [ - "23f597e33251f2f2b09531bef000ff5f657b5106", + "5ed0fee82e675cbba64fba58df7f4d121e1d37f2", [] ], "test_threadexception.py": [ - "5b7519f27d87a83dcd562f2f6ce7f53de5947a3d", + "99837b94e8a5f732b17a10661b8a631fd660fa19", [] ], "test_tmpdir.py": [ - "4f7c5384700d0b8f63ef4b70b18431cf5ae99e31", + "331ee7da6c7c1e88ba853eefc58d30d435631e1d", [] ], "test_unittest.py": [ - "1601086d5b20c3b788245901d51478a2c3e6790b", + "96223b22a2ea84ae327d19034078985c2393182c", [] ], "test_unraisableexception.py": [ - "f625833dceaca49c0026f0dd0691482891ac0264", + "1657cfe4a84eb61533780626ad2ee55504685347", [] ], "test_warning_types.py": [ - "b49cc68f9c6990fc0127a20c6e81e8346c5866c0", + "a50d278bde277d139d7e11a033e59bffd989a57b", [] ], "test_warnings.py": [ - "5663c46cead1844efca129e8865606680a464539", + "3ef0cd3b5469372e274de8eef68b55df82351f94", [] ], "typing_checks.py": [ - "0a6b5ad284104d37fb04bd9ae78cb5a26469a97d", + "4b146a25110032fbd7e1d4e3ea6db8aec9cad591", [] ] }, "tox.ini": [ - "b2f90008ce1219eca5c5f554b946cb7f5e3bb335", + "30d3e68defc4bba480688e3ee9bcee12e967d3f5", [] ] }, @@ -478727,57 +486323,37 @@ ] }, "pywebsocket3": { - ".gitignore": [ - "70f2867054198471182cc8619663a684d958f6ca", - [] - ], - ".travis.yml": [ - "2065a644dd6b60797128b09998f67b5135b1189e", - [] - ], - "CONTRIBUTING": [ - "f975be126fb4589c865994c59d613e3d41a7a966", - [] - ], "LICENSE": [ "c91bea9025428779e164459c2a120e1a07aa85c8", [] ], "MANIFEST.in": [ - "19256882c56feb72812c99c8a8379979e63e4a0c", + "116235d18f4614556ace2997c43a411ef2a4fb78", + [] + ], + "PKG-INFO": [ + "289dfa8649be1bffba782931f9bc3e511b32fc9e", [] ], "README.md": [ - "8684f2cc7ee36960ef3ba9a7dafeef8db591a6f7", + "b46b416735606968ce983cfa58c29ba223df0b2c", [] ], "example": { "abort_handshake_wsh.py": [ - "1b719ca89737105719c71c2a42eaff0d464478c7", + "1bad8c02f21b9e5c25e0bd3cb4edacb8726fa5ff", [] ], "abort_wsh.py": [ - "d4c240bf2c1cb0bd538ec37bf551c11256396b8c", - [] - ], - "arraybuffer_benchmark.html": [ - "869cd7e1ee653d59f04b802ff34c8d081317ca89", + "c0495c7107688d8957d8c4e8894d4c52a57f8edf", [] ], "bench_wsh.py": [ - "2df50e77db276cca1de472059a074071b81a93cc", - [] - ], - "benchmark.html": [ - "f1e5c97b3a71bcf9ebde7c4fcaf15375389b1c69", - [] - ], - "benchmark.js": [ - "2701472a4faac446b1c8bd2456f271e934db571c", + "9ea2f93159c9ce6e9d2da04df1b84f81003caecf", [] ], "benchmark_helper_wsh.py": [ - "fc175333354cc9c88562cf6fc81ef32609372986", + "9ea9f5642277bdddffbae871936aac46d7069e34", [] ], "cgi-bin": { @@ -478787,19 +486363,15 @@ ] }, "close_wsh.py": [ - "8f0005ffea9905d6c197c0f4dd593c06ff437d3a", - [] - ], - "console.html": [ - "ccd6d8f80676b9991e22dfc7ec85083411ddd0b3", + "2463bc7b31f0b4972f356f0a54d481925f2e92ea", [] ], "cookie_wsh.py": [ - "815209694e3ff2320f5683ee0596ae34428b15eb", + "1ca2c843863a2507f6d97822a49bfdaccb9d6a86", [] ], "echo_client.py": [ - "2ed60b3b592999aeaa3325a45eddacddbc2b66d3", + "5063f00a51f24cc1841afe3e91cc9b51b71ebb29", [] ], "echo_noext_wsh.py": [ @@ -478810,50 +486382,22 @@ "f7b3c6c5311bbb99f334f3357d801a2f42056008", [] ], - "handler_map.txt": [ - "21c4c09aa0091d8baf2908959905867842aeb865", - [] - ], "hsts_wsh.py": [ "e861946921af04594d62026b46f07758ddfe402a", [] ], "internal_error_wsh.py": [ - "04aa684283a603f5b33dda526301999b44792ddf", + "cbc0fd294e1d2166317aabe18382650bb569d08d", [] ], "origin_check_wsh.py": [ "e05767ab932fb582824aaf1a57d9249c304bd51e", [] - ], - "performance_test_iframe.html": [ - "c18b2c08f6a2254a1f9d76507902c1a6b5aee88a", - [] - ], - "performance_test_iframe.js": [ - "270409aa6eb5fd1a11ae2d5ba156bb8aac2fcaac", - [] - ], - "special_headers.cgi": [ - "703cb7401b787ac6e11c6746c6842e57d380956c", - [] - ], - "util.js": [ - "990160cb40c4c7800cd9e76300140b9bfe9f14d0", - [] - ], - "util_main.js": [ - "78add48731f88fe85eeea40e6e019cf17ccce3c8", - [] - ], - "util_worker.js": [ - "dd90449a90a7d782b97023e8d9d5a7aaee94a32f", - [] ] }, - "mod_pywebsocket": { + "pywebsocket3": { "__init__.py": [ - "28d5f5950f347531b9262c31b77d0c29d426e59d", + "8f4ade05828c345c3493a546f547eec12ad7f883", [] ], "_stream_exceptions.py": [ @@ -478861,74 +486405,96 @@ [] ], "common.py": [ - "9cb11f15cb2f582e6c29e698ee5fff2afde8a768", + "a3321e4c68c26a143fd39ec1085170059dc3d1a9", [] ], "dispatch.py": [ - "56cbb3c8a5f3f5e5e28206a405f50753a73aa2c4", + "fd35ceab297820b9b653925e26bc963393a22168", [] ], "extensions.py": [ - "314a949d4550ab6ff5500f5254387d2b35cae535", - [] - ], - "fast_masking.i": [ - "ddaad27f53c46be2a71c704c708fbb3f42f1a3d1", + "4b5b9e8fb27ddfd3d5676b1c2d7fdbfc25f1b857", [] ], "handshake": { "__init__.py": [ - "4bc1c67c578db3d0bda0e833370b0bd13fd1603f", + "275e447552e819d6edeb171a33ffbaeddc421182", [] ], "base.py": [ - "ffad0614d6bc42fdf75c2ee4885212304dcbcb90", + "561f7b650a2e5a86a01c503e974bc87160a05f78", [] ], "hybi.py": [ - "cf931db5a506efe3957bbff6bc3c3c99a56a1233", + "2e26532c3f7ebde5739bd786e5a3cf237e08af32", [] ] }, "http_header_util.py": [ - "21fde59af10c3b6e373fc2d64f19401c6ed7dc38", + "63e698bc16e0b33ca94f8a25f8697aa82b096c2d", [] ], "memorizingfile.py": [ - "d35396761847a6840464840b0e72ebc7ba150e41", + "4ee132fae610f1e8620972cd1bb135520782b0fc", [] ], "msgutil.py": [ - "f58ca78e14ad25e7a44d1ab262e7bd35ceaea5f2", + "dd6a6fc41001477b8098a4126348275f2a5ece75", [] ], "request_handler.py": [ - "5e9c875dc7daff9929a47d448afcb5aa5bad1b2c", + "e02e2ccf28f6e435f51ac83b7b68825938ebd420", [] ], "server_util.py": [ - "8f9e273e9770844b7cb44616ebf9825886bf44e6", + "3bf07f885bfb782dbd7b257210e13f0eeddd28de", [] ], "standalone.py": [ - "bd32158790f6c077e85f1e4925b620d5c03d8a6b", + "0c324c4221e90967510fb0ca556c3474f7bad3a5", [] ], "stream.py": [ - "82d1ea619c074f1183bc08ae55a8ce0bb7704106", + "dd41850dc46531e2766e2f748ae2efd8c855d221", [] ], "util.py": [ - "04006ecacd51950f9f211492ef52d057bb1aaaa1", + "9c25ab8315228b4fccc1e8bf771da33249dd9b56", [] ], "websocket_server.py": [ - "9f67c9f02d43cf330f29979420c13fce7c334ef7", + "dab2f079fff0ab869ea0142ab4c329aa174bb33f", + [] + ] + }, + "pywebsocket3.egg-info": { + "PKG-INFO": [ + "289dfa8649be1bffba782931f9bc3e511b32fc9e", + [] + ], + "SOURCES.txt": [ + "9a74c73196185b5878bdd1bf3158a429ced0d382", + [] + ], + "dependency_links.txt": [ + "8b137891791fe96927ad78e64b0aad7bded08bdc", + [] + ], + "requires.txt": [ + "ffe2fce498955b628014618b28c6bcf152466a4a", + [] + ], + "top_level.txt": [ + "db62422f0bd513ffdad9a89430f684af7056a4e0", [] ] }, + "setup.cfg": [ + "8bfd5a12f85b8fbb6c058cf67dd23da690835ea0", + [] + ], "setup.py": [ - "12c60d861790bc37f7a63df8c2e3fed471ea0ed0", + "ab9a24a3e762606c91ab9a8d626c30535f81c090", [] ], "test": { @@ -478936,92 +486502,70 @@ "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", [] ], - "cert": { - "cacert.pem": [ - "4dadae121bdd3adb744383cd3bf08c226f8554ba", - [] - ], - "cert.pem": [ - "25379a72b0dac5f41979c802c663df8b88dea829", - [] - ], - "client_cert.p12": [ - "14e139927982fa9823a57231af113499d6a5a8b0", - [] - ], - "key.pem": [ - "fae858318f29ba6b4623bd5fbc4a08ce73d90311", - [] - ] - }, "client_for_testing.py": [ - "a45e8f5cf2de5c02d7fd1ec6d578b687428f6818", + "6275676371839dcef0ed6aeaa2cab0eae091bd41", [] ], "mock.py": [ - "eeaef52ecf0197f7e57f346a71548252a3861e67", + "c460d9b7f0319e823d88ded1ace9071ee22dfeb6", [] ], "run_all.py": [ - "ea52223cea6d1458adc39dcd2f8b956c885fb419", + "569bdb4c07e81a03017a42390a48954cc0c13748", [] ], "set_sys_path.py": [ - "48d0e116a5843c1adfedb8cc4c5918c5c2003277", + "c35cb6f9721497afbe67c386ee15c6432dba8806", [] ], "test_dispatch.py": [ - "132dd92d76cef648e2516702e3530e918fb6f4b9", + "18a39d1af9df38bdd6ad3d6ea6c44c587c439daa", [] ], "test_endtoend.py": [ - "2789e4a57e2e6ede823f49f29ec0b09c21e2c0b3", + "9718c6a2b290282dec634802731541c1ba706ffe", [] ], "test_extensions.py": [ - "39a111888be9005bd7b684366aebfd1d914f4a32", + "008df24827383d3bd36d0c0fe0885439d4faaee3", [] ], "test_handshake.py": [ - "7f4acf56ff0642dc73e58a99c98f761f9c06e876", + "c8e25ab0994edb83313626fd385e6519746115af", [] ], "test_handshake_hybi.py": [ - "8c658221703460fd418236dfde2feea25ca9e742", + "ee63ed45b4950d9b9ba111bb23eacbc7479ffb71", [] ], "test_http_header_util.py": [ - "f8c8e7a981bb0a0323a087f57615db102d707c57", + "bd9b9bfc2e66a4597c222ae4fedaf89e54868519", [] ], "test_memorizingfile.py": [ - "f7288c510b89bb28931dff9a779183a4991756e6", + "47490859625707822a9f51b18bf9c1acf0d5948b", [] ], "test_mock.py": [ - "073873dde97df03f20df5ac9722f6ad65dd02eac", + "df5353bc5939d487c59c36f4898652d1c0594be1", [] ], "test_msgutil.py": [ - "1122c281b7874bfb3dc1a93f55c4ed3062107825", + "99aa200ba48432e2548c9d4eafa5fb20831ed8b8", [] ], "test_stream.py": [ - "153899d20533eb4cf0a9816c8b3b2bc8c50548bf", + "c165e84688359594bfd43dfa09693f14173a10f9", [] ], "test_util.py": [ - "bf4bd32bbac30c52d99997fecc7bbb83cf7516ad", + "24c4b5bfbdd6a0b2411c14f3a62699e5f8bb7309", [] ], "testdata": { - "README": [ - "c001aa5595cdd13407f5728ecd532a5d12263efa", - [] - ], "handlers": { "abort_by_user_wsh.py": [ - "63cb541bb7ec4044745798ab97ae7ccba57e04f7", + "a6e083184737642a08a1194d1fcbf355c6c0d080", [] ], "blank_wsh.py": [ @@ -479058,11 +486602,7 @@ [] ] } - }, - "hello.pl": [ - "882ef5a10065feb691af5f716b1e4996b397da65", - [] - ] + } } } }, @@ -479207,58 +486747,932 @@ } }, "websockets": { + ".github": { + "FUNDING.yml": [ + "c6c5426a5a6df9669b0cb291fe3aa8cd88887a94", + [] + ], + "ISSUE_TEMPLATE": { + "config.yml": [ + "3ba13e0cec6cbbfd462e9ebf529dd2093148cd69", + [] + ], + "issue.md": [ + "3cf4e3b77011e66618b9275f8367179709557c5a", + [] + ] + }, + "dependabot.yml": [ + "ad1e824b4a5bc06eee3b004379b7ccdd32fc2bc2", + [] + ], + "workflows": { + "tests.yml": [ + "470f5bc96063142a155a2d6c5830883011c3a20d", + [] + ], + "wheels.yml": [ + "707ef2c60d1db743169b15373b3b9163702133fc", + [] + ] + } + }, + ".gitignore": [ + "324e77069a9581927e71f48230c975de9765c05a", + [] + ], + ".readthedocs.yml": [ + "0369e0656548151a22b18ec614eeda592f00c5af", + [] + ], + "CODE_OF_CONDUCT.md": [ + "80f80d51b115134c79329b69f02c47e3906e0f59", + [] + ], "LICENSE": [ - "119b29ef35b9f8149cc383bc751ba4d10483010c", + "5d61ece22a75a759aed8e52af280eca28d35d6bf", [] ], "MANIFEST.in": [ "1c660b95b1464a9401ecd506323158ea2cb6bbfd", [] ], - "PKG-INFO": [ - "3b042a3f9f822cace1abce4264b479420920fb48", + "Makefile": [ + "cf3b533939418324edc420cb8112f64390d3965d", [] ], "README.rst": [ - "2b9a445ea5c9ff93c27ae2f3ee44a58b437b85e1", + "870b208baae0aaee0b1de417d355145426ccc708", [] ], - "setup.cfg": [ - "dc424fe1955179df2b9b9a382ab840869f7dc5e4", + "SECURITY.md": [ + "175b20c589ded2c7c824a4484de9b7cf4e9367ef", + [] + ], + "compliance": { + "README.rst": [ + "8570f9176d56b47b38852222e490bdc74bea8ead", + [] + ], + "fuzzingclient.json": [ + "202ff49a03a59ab707090ce56bba1ffcea1281cf", + [] + ], + "fuzzingserver.json": [ + "1bdb42723ef92c37a08871c5a9dc0ae943d15a0f", + [] + ], + "test_client.py": [ + "1ed4d711e925dea3cb515399f3ab5f76b270126f", + [] + ], + "test_server.py": [ + "92f895d92695ead26d16bea27b0e4dbbc1fb022e", + [] + ] + }, + "docs": { + "Makefile": [ + "0458706458855d9fa48dae9b3d0eca001ebe3c7c", + [] + ], + "_static": { + "favicon.ico": [ + "dd7df921e1e575ad6b8129d7768d055fbdecbd86", + [] + ], + "tidelift.png": [ + "2d1ed4a2c098577bbf34c012a2a8f309326a5a84", + [] + ], + "websockets.svg": [ + "84c3167583727707591d187ff475d68e900b9c19", + [] + ] + }, + "conf.py": [ + "9d61dc717369b49fc05801872e12ae5dd137a9c3", + [] + ], + "faq": { + "asyncio.rst": [ + "e77f50adddcdbb24da419bcee062b1627eb64d33", + [] + ], + "client.rst": [ + "c590ac107db3ad8c242181955c5c2543fc7cb9b9", + [] + ], + "common.rst": [ + "2c63c4f36f1152db6cc36d95209e62249e8aa6ee", + [] + ], + "index.rst": [ + "9d5b0d538ac773f22c8a2a13e3500633fef9f962", + [] + ], + "misc.rst": [ + "ee5ad23728e1497815736db236b136e460ed643f", + [] + ], + "server.rst": [ + "08b412d306b954c75b8d7cfd4478611ed63438d2", + [] + ] + }, + "howto": { + "autoreload.rst": [ + "fc736a59186c4ee680a22575bc7a28005a721f7d", + [] + ], + "cheatsheet.rst": [ + "95b551f6731ddaedd2b66e31e1735a67fbec4b08", + [] + ], + "django.rst": [ + "e3da0a878b83db0c6bf81f58b478a95b4f22fdb2", + [] + ], + "extensions.rst": [ + "3c8a7d72a64a8f11b95279caeeafd598150a0b85", + [] + ], + "fly.rst": [ + "ed001a2aeed9f3a34236b464341071cde4b2ad4d", + [] + ], + "haproxy.rst": [ + "fdaab04011c9d45be9be91a74f98d4456b27a389", + [] + ], + "heroku.rst": [ + "a97d2e7ce039375eaf346cfd196a80f530dd8aa9", + [] + ], + "index.rst": [ + "ddbe67d3ae20869a242ca639872c921a9eabd56a", + [] + ], + "kubernetes.rst": [ + "064a6ac4d58014436fcc3ae94d619c27695e0432", + [] + ], + "nginx.rst": [ + "30545fbc7d1ca23a9e09f03ac4bf023ca4f1abd9", + [] + ], + "patterns.rst": [ + "c6f325d21372f3903114ba93ed09ba568ad868f0", + [] + ], + "quickstart.rst": [ + "ab870952c17618ae1f0b9a0e23c1f80140712f81", + [] + ], + "render.rst": [ + "70bf8c376c4275e98734f424cb11f4b09ffe7517", + [] + ], + "sansio.rst": [ + "d41519ff09157d06896a5ed229824da28cf37fbd", + [] + ], + "supervisor.rst": [ + "5eefc7711b80a8bdd5865f6a3443a352d19e7b89", + [] + ] + }, + "index.rst": [ + "d9737db12a69b1471bb6969e3062fa4098fc0593", + [] + ], + "intro": { + "index.rst": [ + "095262a2073fff410d1885545e193a4f8ac4d7bc", + [] + ], + "tutorial1.rst": [ + "ff85003b58a0b11112f60b9b7dff72bddefb1289", + [] + ], + "tutorial2.rst": [ + "5ac4ae9dd5501b117c0105dfb5ccaaa8c8072f02", + [] + ], + "tutorial3.rst": [ + "6fdec113b2ad92bcfb0235566b8e873b5c83d94e", + [] + ] + }, + "make.bat": [ + "2119f51099bf37e4fdb6071dce9f451ea44c62dd", + [] + ], + "project": { + "changelog.rst": [ + "264e6e42d1c1c2c8b80ee09d1604e012a268b02d", + [] + ], + "contributing.rst": [ + "020ed7ad85cd1ee515d114d503c57ffa1e74fbd5", + [] + ], + "index.rst": [ + "459146345b0d8dc4f3edc807009b59aef8a2a721", + [] + ], + "license.rst": [ + "0a3b8703d568a951119da2630fb387fb9fb83854", + [] + ], + "tidelift.rst": [ + "42100fade9b2ab8abcfd6bb3876befca893affdf", + [] + ] + }, + "reference": { + "asyncio": { + "client.rst": [ + "5086015b7b9825d1d896cd3916afa2a98f917acb", + [] + ], + "common.rst": [ + "dc7a54ee1abc9434c72c5cc9bc5472a86eca49f1", + [] + ], + "server.rst": [ + "10631791626c9a39a5526d55dd392a0007b46a9a", + [] + ] + }, + "datastructures.rst": [ + "ec02d421015c8840753507a94255ca20e67170eb", + [] + ], + "exceptions.rst": [ + "907a650d204ba98b10a9377cff29c06d59dd1bfd", + [] + ], + "extensions.rst": [ + "a70f1b1e58a76c7a519d2bad21af6ec696be96ab", + [] + ], + "features.rst": [ + "98b3c0ddafcabbf3fc1de87a75cd5c614d9553c6", + [] + ], + "index.rst": [ + "0b80f087a1f4f82c434a4b76738f3dfcefe26940", + [] + ], + "sansio": { + "client.rst": [ + "09bafc74558dda5fef566c735a72f4856dc3700a", + [] + ], + "common.rst": [ + "cd1ef3c63a585203cfadab0a760372f32d7bc1b4", + [] + ], + "server.rst": [ + "d70df6277a4eba0629cc591ce4f712969a5ff03f", + [] + ] + }, + "sync": { + "client.rst": [ + "6cccd6ec486c47688bee0c1b86c689a55592e23d", + [] + ], + "common.rst": [ + "3dc6d4a50967299c09a120e01f43e4e198687e74", + [] + ], + "server.rst": [ + "35c112046acbb7b0a8e3af3022d76dd98aaec59a", + [] + ] + }, + "types.rst": [ + "9d3aa8310bc6c4c6db3b785f1a39166019e12b22", + [] + ] + }, + "requirements.txt": [ + "bcd1d711435f9fcfbd5fa0f2aa044abc18dd91bd", + [] + ], + "spelling_wordlist.txt": [ + "dfa7065e79e18270463d89c0baceb6cfcee1f3e2", + [] + ], + "topics": { + "authentication.rst": [ + "31bc8e6da8a14dc0ab931fb8df2991f89991b96d", + [] + ], + "authentication.svg": [ + "ad2ad0e442881b856ea26c8d3120084add1d898b", + [] + ], + "broadcast.rst": [ + "1acb372d4f3ae03ccaeb2acb5210f80b7ec43197", + [] + ], + "compression.rst": [ + "eaf99070db015b5064f14599b988a9e806d1c262", + [] + ], + "data-flow.svg": [ + "749d9d482d2f01563c0226f96042b03b3b3521c7", + [] + ], + "deployment.rst": [ + "2a1fe9a78503627997051c1ad78441e1e5b4e530", + [] + ], + "deployment.svg": [ + "fbacb18c4b7e33f624036eb5fe7ed16d59a4a6eb", + [] + ], + "design.rst": [ + "f164d29905ee7b982232464143141ea2e3145ae3", + [] + ], + "index.rst": [ + "120a3dd3277c9b048e98fdc22d9f9fd460b975c7", + [] + ], + "lifecycle.graffle": [ + "a8ab7ff09f52a41e3e8a8abc2e8a5503e481c44a", + [] + ], + "lifecycle.svg": [ + "0a9818d2930c50f638ade86a2f16fafd254a13dd", + [] + ], + "logging.rst": [ + "e7abd96ce502b49d0f878b9f23aa2e4e6b0cc32e", + [] + ], + "memory.rst": [ + "e44247a77c5fc96571addcc868b0de53c3b2fe35", + [] + ], + "performance.rst": [ + "45e23b2390a3cd427b7c6737059bdb5aad3f4442", + [] + ], + "protocol.graffle": [ + "df76f49607e5743b809e6f41787262932b6b0743", + [] + ], + "protocol.svg": [ + "51bfd982be7bac755c318376e79b6f7d3dfd91ee", + [] + ], + "security.rst": [ + "d3dec21bd103976e293325b287aeb1e244e9feb4", + [] + ], + "timeouts.rst": [ + "633fc1ab4314544e12d43440e059e0dbc7b422d3", + [] + ] + } + }, + "example": { + "deployment": { + "fly": { + "Procfile": [ + "2e35818f675d5a1a7b6a84e4561bec032180c1d6", + [] + ], + "app.py": [ + "4ca34d23bbedeffb6f8cde4eef6de99dea8327a9", + [] + ], + "fly.toml": [ + "5290072ed28c6b804295c6028e300e958d515fc2", + [] + ], + "requirements.txt": [ + "14774b465e97f655dbcaa60d97c8a9aa72e7d51b", + [] + ] + }, + "haproxy": { + "app.py": [ + "360479b8eb65558d34d9fe777b642500364ad4b2", + [] + ], + "haproxy.cfg": [ + "e63727d1c0e5b813e9cc8c43bab375e66289d28c", + [] + ], + "supervisord.conf": [ + "76a664d91b12dead5d4fc196a62095172986fc17", + [] + ] + }, + "heroku": { + "Procfile": [ + "2e35818f675d5a1a7b6a84e4561bec032180c1d6", + [] + ], + "app.py": [ + "d4ba3edb51110356a38dd74979b23680dda8411f", + [] + ], + "requirements.txt": [ + "14774b465e97f655dbcaa60d97c8a9aa72e7d51b", + [] + ] + }, + "kubernetes": { + "Dockerfile": [ + "83ed8722c0713451e97b6b33450bc6b10672dec1", + [] + ], + "app.py": [ + "a8bcef68813c93b2a89ed0d727e0887a9bcd4f40", + [] + ], + "benchmark.py": [ + "22ee4c5bd7b9d10f846cca2d41035fc3d8e112ca", + [] + ], + "deployment.yaml": [ + "ba58dd62bf4e7443025f31c916ecea56960f4142", + [] + ] + }, + "nginx": { + "app.py": [ + "24e60897562fa0eba0092f339d41a3d00fb63e47", + [] + ], + "nginx.conf": [ + "67aa0086d54f3dd0fd230b6ff6fb68bf502e9b09", + [] + ], + "supervisord.conf": [ + "76a664d91b12dead5d4fc196a62095172986fc17", + [] + ] + }, + "render": { + "app.py": [ + "4ca34d23bbedeffb6f8cde4eef6de99dea8327a9", + [] + ], + "requirements.txt": [ + "14774b465e97f655dbcaa60d97c8a9aa72e7d51b", + [] + ] + }, + "supervisor": { + "app.py": [ + "bf61983ef7b7a071a8e54b88a56271021c971f23", + [] + ], + "supervisord.conf": [ + "76a664d91b12dead5d4fc196a62095172986fc17", + [] + ] + } + }, + "django": { + "authentication.py": [ + "f6dad0f55ef01d8cf6715eaba0d8e8c894c54499", + [] + ], + "notifications.py": [ + "3a9ed10cf09665e071f4228003b2d2a0d3c3f565", + [] + ], + "signals.py": [ + "6dc827f72d70f1e63a542ecfc7764d43a8a7cd47", + [] + ] + }, + "echo.py": [ + "2e47e52d949bee9f4ae03447284962635f72de83", + [] + ], + "faq": { + "health_check_server.py": [ + "7b8bded772068d7e6a938efeb8142a43f963b078", + [] + ], + "shutdown_client.py": [ + "539dd0304a9c2b566cd67c38c595f39b261417fb", + [] + ], + "shutdown_server.py": [ + "1bcc9c90baa04078388102e07e323a6d10ae1847", + [] + ] + }, + "hello.py": [ + "a3ce0699ee4c6147e79b78dbfd0883931018ea16", + [] + ], + "legacy": { + "basic_auth_client.py": [ + "164732152f6d44a3d0994cf85f9aa7ba099223a9", + [] + ], + "basic_auth_server.py": [ + "d2efeb7e5303ba6c3ec5aa410381bed75e56adc9", + [] + ], + "unix_client.py": [ + "92615673032dcb6b3035e7d73b0525fd86a1d6e3", + [] + ], + "unix_server.py": [ + "335039c351ca6cd1d82353487760a628f615c5d2", + [] + ] + }, + "logging": { + "json_log_formatter.py": [ + "b8fc8d6dc930f1a114536f7e26c79e3bba7ab572", + [] + ] + }, + "quickstart": { + "client.py": [ + "8d588c2b0e44806824c49536be91648c9e2878d1", + [] + ], + "client_secure.py": [ + "f4b39f2b838b10fc533a191a2422093205cc4c5a", + [] + ], + "counter.css": [ + "e1f4b77148bc4503cbec34929e8234a7f263c66d", + [] + ], + "counter.html": [ + "2e3433bd215baaa31f5604fa5b3a49288f46e6e9", + [] + ], + "counter.js": [ + "37d892a28b447e243262757c225204a48d60286e", + [] + ], + "counter.py": [ + "566e12965edde520d9831149f691ea93bba7347d", + [] + ], + "localhost.pem": [ + "f9a30ba8f63933635bf71f75ad8a6ac31745fdae", + [] + ], + "server.py": [ + "31b18297298bd27c046155e6b3010751a4cd7037", + [] + ], + "server_secure.py": [ + "de41d30dc053c3cbbdf0b2a158763a9b201e04e7", + [] + ], + "show_time.html": [ + "b1c93b141d2e410a145cc7d5e010dd31db608ea2", + [] + ], + "show_time.js": [ + "26bed7ec9e79abb6ce8c899ce12be92df69094b8", + [] + ], + "show_time.py": [ + "a83078e8a9111dfc7f9da57cb1189d95231089f4", + [] + ], + "show_time_2.py": [ + "08e87f5931a44fc0d771a682be503a6df783b094", + [] + ] + }, + "tutorial": { + "start": { + "connect4.css": [ + "27f0baf6e457f41eea2da6094a368817d5c001d2", + [] + ], + "connect4.js": [ + "cb5eb9fa27b550210dee43ff3988fe5069a35dfe", + [] + ], + "connect4.py": [ + "0a61e7c7ee1d66f6edc2ae4ea4cf87bd8e3cef8a", + [] + ], + "favicon.ico": [ + "36e855029d705e72d44428bda6e8cb6d3dd317ed", + [] + ] + }, + "step1": { + "app.py": [ + "3b0fbd786859759665affa346430cc340ec93454", + [] + ], + "connect4.css": [ + "55a9977ca4005a94b5b833df6efb39ded822f61e", + [] + ], + "connect4.js": [ + "7c4ed2f3e0a84255c16ac03a98a08aec51850048", + [] + ], + "connect4.py": [ + "eab6b7dc0dfde0bdd1c11e04eebacc11567f27ff", + [] + ], + "favicon.ico": [ + "76da1c2fb1aaa723d31c769eee5a78768aa26aba", + [] + ], + "index.html": [ + "8e38e899222dc514daac37b47bc1bf8d0e5838cd", + [] + ], + "main.js": [ + "dd28f9a6a8bb682356d53f4c3f1d5ef4d1d56ba2", + [] + ] + }, + "step2": { + "app.py": [ + "2693d4304df50fb2dda5a8f62b1f55dc72ad67aa", + [] + ], + "connect4.css": [ + "55a9977ca4005a94b5b833df6efb39ded822f61e", + [] + ], + "connect4.js": [ + "7c4ed2f3e0a84255c16ac03a98a08aec51850048", + [] + ], + "connect4.py": [ + "eab6b7dc0dfde0bdd1c11e04eebacc11567f27ff", + [] + ], + "favicon.ico": [ + "76da1c2fb1aaa723d31c769eee5a78768aa26aba", + [] + ], + "index.html": [ + "1a16f72a257bbe20df55e67a6e9f72fe0df022ac", + [] + ], + "main.js": [ + "d38a0140acc72fcae606110d294df42ba7ce9585", + [] + ] + }, + "step3": { + "Procfile": [ + "2e35818f675d5a1a7b6a84e4561bec032180c1d6", + [] + ], + "app.py": [ + "c2ee020d201ca9919045ef32a7c6daf4e3b931ff", + [] + ], + "connect4.css": [ + "55a9977ca4005a94b5b833df6efb39ded822f61e", + [] + ], + "connect4.js": [ + "7c4ed2f3e0a84255c16ac03a98a08aec51850048", + [] + ], + "connect4.py": [ + "eab6b7dc0dfde0bdd1c11e04eebacc11567f27ff", + [] + ], + "favicon.ico": [ + "76da1c2fb1aaa723d31c769eee5a78768aa26aba", + [] + ], + "index.html": [ + "1a16f72a257bbe20df55e67a6e9f72fe0df022ac", + [] + ], + "main.js": [ + "3000fa2f78c4dc4a86ac34a61a3c90597168cb6a", + [] + ], + "requirements.txt": [ + "14774b465e97f655dbcaa60d97c8a9aa72e7d51b", + [] + ] + } + } + }, + "experiments": { + "authentication": { + "app.py": [ + "039e21174b169e04a7b970f958aca2b6f4545651", + [] + ], + "cookie.html": [ + "ca17358fd0d05c58696f4fd608c2eda192ec20e6", + [] + ], + "cookie.js": [ + "2cca34fcbb49cceccde7b7e3b33962e7f4455ff2", + [] + ], + "cookie_iframe.html": [ + "9f49ebb9a080e141eaa876afc10f3e4062ee4c74", + [] + ], + "cookie_iframe.js": [ + "2d2e692e8d252a1d296b1f3f862f69bdf340b863", + [] + ], + "favicon.ico": [ + "dd7df921e1e575ad6b8129d7768d055fbdecbd86", + [] + ], + "first_message.html": [ + "4dc511a1764f2ebd575a005797af81493daf28b0", + [] + ], + "first_message.js": [ + "1acf048bafb3fdbca5a588bb7b6c3d5a82cc184e", + [] + ], + "index.html": [ + "c37deef2707b9878b1ab22c4d22eb292ab67435a", + [] + ], + "query_param.html": [ + "27aa454a4017002e78d11f77788134b9842849cd", + [] + ], + "query_param.js": [ + "6a54d0b6caeb5288cf4248c1b4c7d299deee8a00", + [] + ], + "script.js": [ + "ec4e5e6709bfc5ff1d9697dbb1dac51481a140d6", + [] + ], + "style.css": [ + "6e3918ccae60e096d8ac491c653911f85abbce22", + [] + ], + "test.html": [ + "3883d6a39e67c2ebd3c7cc9d65abf55d8a516fb9", + [] + ], + "test.js": [ + "428830ff31de45f37db49933d8375574004db050", + [] + ], + "user_info.html": [ + "7b9c99c730116f012f4ec5217c7fef973a5182e7", + [] + ], + "user_info.js": [ + "1dab2ce4c1709a743d527ab1142c26a293053072", + [] + ] + }, + "broadcast": { + "clients.py": [ + "fe39dfe051ee28d109a16ef979dc4c5157426f3c", + [] + ], + "server.py": [ + "9c9907b7f9e4213593cc2ebd758523cb25937ef7", + [] + ] + }, + "compression": { + "benchmark.py": [ + "c5b13c8fa343d2dae8a96a796ed3237905eb9c54", + [] + ], + "client.py": [ + "3ee19ddc59ab4453e1ae044eac8eefc58c0021ff", + [] + ], + "server.py": [ + "8d1ee3cd7c0d27b663818907a03bbd9205af653c", + [] + ] + }, + "optimization": { + "parse_frames.py": [ + "e3acbe3c20129ac9e4184b9f5e0f7901d8eba245", + [] + ], + "parse_handshake.py": [ + "af5a4ecae2c03353ba3e855bcdb5d74b0101466c", + [] + ], + "streams.py": [ + "ca24a598345e68a8d8e8c87d068d936fdf48dcbb", + [] + ] + } + }, + "fuzzing": { + "fuzz_http11_request_parser.py": [ + "59e0cea0f4393082668833c7a488eb87576a732d", + [] + ], + "fuzz_http11_response_parser.py": [ + "6906720a49d3a83b92b3386ebe57aed2f2e488bb", + [] + ], + "fuzz_websocket_parser.py": [ + "1509a3549d7b810d0da558f6b29ee9bfa1c77921", + [] + ] + }, + "logo": { + "favicon.ico": [ + "36e855029d705e72d44428bda6e8cb6d3dd317ed", + [] + ], + "github-social-preview.html": [ + "7f2b45badb481e4ea2a1ecf8461597e5c95b7672", + [] + ], + "github-social-preview.png": [ + "59a51b6e33810bc0bc34b7d2ea6e47b0fd8be78b", + [] + ], + "horizontal.svg": [ + "ee872dc47869fd63c9f22c1e8dad3a74f64797d2", + [] + ], + "icon.html": [ + "6a71ec23bcfd99ac96b9bee491a530810b7c8151", + [] + ], + "icon.svg": [ + "cb760940aa1928e6df4112abebe7a1d16f1a2778", + [] + ], + "old.svg": [ + "a073139e3311d3bc4e2997e15542cf1f3ddfccdf", + [] + ], + "tidelift.png": [ + "317dc4d9852df72ba34e10a6f61d1838cbbd969e", + [] + ], + "vertical.svg": [ + "b07fb22387385d41d6e1050e603641ea1fe54e12", + [] + ] + }, + "pyproject.toml": [ + "f24616dd7ea14aba7f07a18b09bd1cf78f5e94e0", [] ], "setup.py": [ - "b2d07737d227a0e45dbe87f9696116f1a10ed342", + "ae0aaa65de7a4e5447d83b1d0f0f86562892a789", [] ], "src": { "websockets": { "__init__.py": [ - "ec34841247b1b310461f588dc42a3a8cd0020c54", + "fdb028f4c4f0bb882fe8bcba623c163f7fc41732", [] ], "__main__.py": [ - "c562d21b54473acb2c41767d745f5ee0740b82dc", + "f2ea5cf4e8fe949948b1b6872d8e596ef30102ea", [] ], "auth.py": [ - "afcb38cffe2f48657a71bb4df47a3c9480055411", + "b792e02f5ccc99837eda66b124d0a3df374d0577", [] ], "client.py": [ - "df8e53429abaf6f4e5fb71772de860fc8896d7d7", + "b2f622042df8d4b560488cbbe217b42c7f135e44", [] ], "connection.py": [ - "db8b5369935e171d9f619d3e6336ac2e671630d9", + "88bcda1aafe7e59b336fcb0ef2519a609d581e0f", [] ], "datastructures.py": [ - "36a2cbaf99cee07fb08fd484681f902498c6e0ad", + "a0a648463adb0baf0fd5569c877171a266989d13", [] ], "exceptions.py": [ - "0c4fc51851a596d7d974a17ad3a2b220ade6bbb2", + "f7169e3b178ae7009fc32bb19590635847d5c625", [] ], "extensions": { @@ -479267,16 +487681,16 @@ [] ], "base.py": [ - "0609676185785d8ab3546824e430b8b4d47d7d66", + "6c481a46cc74cf8eb6a2d2551919f9d42ed304d8", [] ], "permessage_deflate.py": [ - "e0de5e8f855051a834399614089bbe6abb6c12a2", + "b391837c66686678cd1213b4c2b0de278bedc96b", [] ] }, "frames.py": [ - "043b688b5227b9e6dbd90115b528edb2bb62376a", + "6b1befb2e035ce18e20ab34b5358a98e90b2dc6e", [] ], "headers.py": [ @@ -479284,11 +487698,11 @@ [] ], "http.py": [ - "b14fa94bdce765dd6d46def2f3d24d98e39d329c", + "9f86f6a1ffa6b229aefdf4c65453d2c3d37fd2f6", [] ], "http11.py": [ - "84048fa47b3dccf93bb30e49ad88c384cbc6d9d1", + "ec4e3b8b7d5b84c9db160dbb725b83e457ad4424", [] ], "imports.py": [ @@ -479300,61 +487714,99 @@ "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", [] ], + "async_timeout.py": [ + "8264094f5b224b62ce5a4d14d4b6401a8d173f82", + [] + ], "auth.py": [ - "8825c14ecf7bf9e23b42d2c64955ae7768478902", + "d3425836e18b21b0daefc62793a90e97e1e1a6a8", [] ], "client.py": [ - "fadc3efe87667759f024d162dd1340aa27011e6b", + "48622523ee1f8685e707f6c10fdf06eabb6b2ef0", [] ], "compatibility.py": [ - "df81de9dbcead50479ec645c4625cadca01f3efc", + "6bd01e70dee10be4a7a517598bd2f2b95adb30c3", [] ], "framing.py": [ - "c4de7eb28bc1964a5177ba67f00b0ec2ec64f054", + "b77b869e3faad0518d1434d94761a9a85cd28c64", [] ], "handshake.py": [ - "569937bb9a94da186a9b0ef75b0a163540954518", + "ad8faf04045e7184bbff40bf7c17cbc1cb788f0c", [] ], "http.py": [ - "cc2ef1f067d39cddfe3a701f4e2e604641bdb3d6", + "2ac7f7092d58c8caf2b7289dc3ce334f167327b1", [] ], "protocol.py": [ - "3f734fe7602a12d499e87b14c7620fbe0652c9fa", + "19cee0e652b0cf9f8528718bb778acde35b8818a", [] ], "server.py": [ - "3e51db1b71e14506aac6adf1d8f129145ecfeaf1", + "7c24dd74af3eab3f6d1077b38d44e6afcc59326d", [] ] }, + "protocol.py": [ + "765e6b9bb4b72ac8b7e3f81d5264f4bcc4aac843", + [] + ], "py.typed": [ "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", [] ], "server.py": [ - "5dad50b6a12a61c9219a7678d38e733225deeb49", + "191660553ffd2a546adceda4df23a9cfa65aa2a6", [] ], "speedups.c": [ "a195904198f40078b7e772baafce610838b31db1", [] ], + "speedups.pyi": [ + "821438a064e6ad32154eb6536c975f70d4c35d05", + [] + ], "streams.py": [ "f861d4bd25ecc5b5a4ac5ebc22a251712fb4e68e", [] ], + "sync": { + "__init__.py": [ + "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", + [] + ], + "client.py": [ + "087ff5f569a3705109b5bd92071f1422c920f8d5", + [] + ], + "connection.py": [ + "4a8879e3705a91013eb60ded201afef9af0a475d", + [] + ], + "messages.py": [ + "67a22313ca163da162cedabc29bc082a396727f7", + [] + ], + "server.py": [ + "14767968c97c7e203d1a7c6442cd390e9cd1f303", + [] + ], + "utils.py": [ + "471f32e19d4ebaf78938c18bd38792e253d2ac85", + [] + ] + }, "typing.py": [ - "e672ba0069e5b2c45c47994b4435313b6aea170f", + "cc3e3ec0d96f48f5918d755b454ffea86537aed1", [] ], "uri.py": [ - "fff0c380645ba6e25696ac45ef6dd59cc4d72f7f", + "385090f66ae36def8bca11e311803f2bec4ad558", [] ], "utils.py": [ @@ -479362,33 +487814,203 @@ [] ], "version.py": [ - "c30bfd68f31ab1be4ac213478cdd9cd6c0119b5b", + "d1c99458e2cf818d9104d9ecc58eccba2883fb8b", + [] + ] + } + }, + "tests": { + "__init__.py": [ + "dd78609f5ba12743a4f945799a22013e1d132e8a", + [] + ], + "extensions": { + "__init__.py": [ + "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", + [] + ], + "test_base.py": [ + "b18ffb6fb8638b235ebb8364e294ce370e572e14", + [] + ], + "test_permessage_deflate.py": [ + "0e698566fb99a06bfa63de388d1115b0c9f8c8fe", + [] + ], + "utils.py": [ + "24fb74b4e6ede2843df9dccd858e03f2e3c0d9c1", [] ] }, - "websockets.egg-info": { - "PKG-INFO": [ - "3b042a3f9f822cace1abce4264b479420920fb48", + "legacy": { + "__init__.py": [ + "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", + [] + ], + "test_auth.py": [ + "3754bcf3a5db7e8f397457465868dae78f7e2f3d", + [] + ], + "test_client_server.py": [ + "c49d91b707581a888ea5f11b3815420884b05e8e", + [] + ], + "test_framing.py": [ + "e1e4c891b03074ee67cc430d02accdd66986ddc5", [] ], - "SOURCES.txt": [ - "2a51106feebeea3637bfbbe4d830aadfb3ed2c20", + "test_handshake.py": [ + "661ae64fc47962d7a6d0428a23c193e7c73517df", [] ], - "dependency_links.txt": [ - "8b137891791fe96927ad78e64b0aad7bded08bdc", + "test_http.py": [ + "15d53e08d229cce6ef01076d14775e4158c89a2b", [] ], - "not-zip-safe": [ - "8b137891791fe96927ad78e64b0aad7bded08bdc", + "test_protocol.py": [ + "f2eb0fea03f790299175bb4e86f83f8cb7a44223", [] ], - "top_level.txt": [ - "5474af7431bb2a6c326a2627fb198ca3bfb9b439", + "utils.py": [ + "4a21dcaeb59679ee02fdb98ab7097c957dc80d66", [] ] - } - } + }, + "maxi_cov.py": [ + "2568dcf18bcace2f841ff144f1abee019e9abda1", + [] + ], + "protocol.py": [ + "4e843daab34f865b012ec41408c2804b6ddce9a5", + [] + ], + "sync": { + "__init__.py": [ + "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", + [] + ], + "client.py": [ + "683893e88c96c340d7837f1013a6c4ae2a90caa6", + [] + ], + "connection.py": [ + "89d4909ee1312cf520f7f617566f31f73462f992", + [] + ], + "server.py": [ + "a9a77438ca90df433d6563bf0c280f5ee332db15", + [] + ], + "test_client.py": [ + "c900f3b0fe6e07528dc3af80684fc82f2bd027e0", + [] + ], + "test_connection.py": [ + "63544d4add7c136f7ad8c4a3942f96f2eea51e89", + [] + ], + "test_messages.py": [ + "825eb879740c0d3774ffda7ddeb6987af04eba8f", + [] + ], + "test_server.py": [ + "f9db842468316a99efdf236f34c32e88ff1cd1c6", + [] + ], + "test_utils.py": [ + "2980a97b428f5f1d7fce99f37f13851358cc117a", + [] + ], + "utils.py": [ + "8903cd349923aa3049466cb60858f67121212376", + [] + ] + }, + "test_auth.py": [ + "28db931552190f99e3679ee94b7231a3c1020088", + [] + ], + "test_client.py": [ + "c83c87038f6ed921f00112b4e35cf4f96dd47d4d", + [] + ], + "test_connection.py": [ + "6592d67d0d4a5f1e8405ce28d389acca63717f10", + [] + ], + "test_datastructures.py": [ + "32b79817ae754f024a509f2f6d68c8e355b5b6c9", + [] + ], + "test_exceptions.py": [ + "1e6f58fad583a5dcdd91ddee2bd1bd82737cefe3", + [] + ], + "test_exports.py": [ + "67a1a6f994fb4ff5c1cb634aa72e3b83dce06da6", + [] + ], + "test_frames.py": [ + "e323b3b57c82371ce7c6064061b676d502d98714", + [] + ], + "test_headers.py": [ + "4ebd8b90cfefd004b70256c52c9744fa159efa8a", + [] + ], + "test_http.py": [ + "036bc14102b64d2eccb33810f79b4a419b3fb0aa", + [] + ], + "test_http11.py": [ + "d2e5e04627c2c45d33615849555e530bfe6de432", + [] + ], + "test_imports.py": [ + "b69ed931626e9858bd6ee4e0e8eccb0bdb60f31c", + [] + ], + "test_localhost.cnf": [ + "4069e39670c982bba4d221dd88ebd5910041c084", + [] + ], + "test_localhost.pem": [ + "8df63ec8f4b3aa3e0f0f274c317fec6bd16cd15b", + [] + ], + "test_protocol.py": [ + "a64172b539801f8215f27a62a8fffebabea5ef4b", + [] + ], + "test_server.py": [ + "b6f5e3568195e25b68258670c15570bd3f888aea", + [] + ], + "test_streams.py": [ + "fd7c66a0bdc95eac88148387db0573a5c90b4496", + [] + ], + "test_typing.py": [ + "202de840f359a890631d166912d3fcef1d7cc317", + [] + ], + "test_uri.py": [ + "8acc01c18716a27a33f9762fcea71d8260c2d5a0", + [] + ], + "test_utils.py": [ + "678fcfe798ec7c25c94680caa0995864b9c2f389", + [] + ], + "utils.py": [ + "2937a2f15e40a3b46c71d81949f8a81f11ac6d36", + [] + ] + }, + "tox.ini": [ + "939d8c0cd807d5273dab8340716648fd7d9cc977", + [] + ] }, "zipp": { ".flake8": [ @@ -479505,7 +488127,7 @@ [] ], "capture.py": [ - "75717d62c8a90874e24cd26c888bd15951167348", + "78da63be417f225d34f06a4e41b237dd848b8955", [] ], "commandline.py": [ @@ -479535,7 +488157,7 @@ [] ], "html.py": [ - "040de1ae5381b2f9151d84b0731804868dd87ee6", + "87fa4a638a7d89f6f7f42a3ee15fe8d5ad544df3", [] ], "main.js": [ @@ -479718,7 +488340,7 @@ } }, "tox.ini": [ - "a4b747ac4fa1ac03bf483b04363abe8fad8774eb", + "61442932f355281528c4373fcbb383b18feff190", [] ], "wave": { @@ -480127,7 +488749,7 @@ [] ], "requirements.txt": [ - "b2c151b8fe96a025ad3f6d659fb40ad4053f2b34", + "3bb476fd968b2d754dcadb34b5331db6bf8b7712", [] ], "resources": { @@ -480203,7 +488825,7 @@ ] }, "tox.ini": [ - "06bdfcd674383b7989ebf15345fd2d503516fd37", + "88c76096f459839acd996be9600396604aa8b6e8", [] ], "utils": { @@ -480431,6 +489053,42 @@ } } }, + "web_features": { + "MANIFEST_SCHEMA.json": [ + "9fe4b68eb4587a86e76c71423eb2a36d31a141e8", + [] + ], + "__init__.py": [ + "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", + [] + ], + "commands.json": [ + "9a54b1b00da6703f2f3929d13eda4b24d87c96d5", + [] + ], + "manifest.py": [ + "15ec5362b4e81bf815fdeb6353d9e8c878716dc5", + [] + ], + "tests": { + "__init__.py": [ + "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", + [] + ], + "test_manifest.py": [ + "b83829308a238bed10c7d47ac85375f97d8c9008", + [] + ], + "test_web_feature_map.py": [ + "609645f055668c0819d591865183c141d75cdb5d", + [] + ] + }, + "web_feature_map.py": [ + "481225206f3a5be99602073f50ac075561f566a9", + [] + ] + }, "webdriver": { ".gitignore": [ "e8413e0ee455adc5480098320d254fb9c5ced903", @@ -480455,16 +489113,16 @@ [] ], "client.py": [ - "a9637c9cfa4223ed18a673ef7b661b7be1a8d261", + "d4cc78588e9fd819e96e8f06a44f57775ccb3d6b", [] ], "error.py": [ - "7e411d3b83ba85b37f23d7c66de0071a7621cb6a", + "c77b2e41b3b9bddda3a9dfb6988297de24f69643", [] ], "modules": { "__init__.py": [ - "acbe117902e4647434e71d1de8da2d28f7675e1e", + "0a2ef500c42ce0d5d60b7b24ecc650e92d86a140", [] ], "_module.py": [ @@ -480472,32 +489130,44 @@ [] ], "browser.py": [ - "adb977995054975fa7775a921a20cdec5f746abd", + "8c5a29a53c87c6ba94e1a24d4279bcf19b0a5d7b", [] ], "browsing_context.py": [ - "fdb18ccbddf638fe99125b72b1c80bbf5d995463", + "7f3f7c50e59569cf9c9e36ef86899c306b6987eb", [] ], "input.py": [ - "b2703843b18192b3e6234732b11c8066b4871589", + "ee4f8136e9d694357400fd7a59e8032aa004079d", [] ], "network.py": [ - "073aa637c977fca55e3a4ef92cbb8032a59133a5", + "dc895d9834c4167e1f42c81b85fecdab2ef78b50", + [] + ], + "permissions.py": [ + "a081e060e94edbced1e68fdb91cd9eda57f23d7c", [] ], "script.py": [ - "f128b0d089c28bef46ce571a17e10d02b4fce8bd", + "01855766d8c1e6fe6cf042fe9605e2cf857c44c3", [] ], "session.py": [ - "fe1c0385105a13fda3087117779a1e8b83c8d07a", + "725aab1bec72fa68a2b516e035c857d4cc1f570c", + [] + ], + "storage.py": [ + "14e8fa9434c0b449cc6811976fac015d9a43e2ae", [] ] }, + "protocol.py": [ + "25c34b91bb23cea79e08694bdc04fe64c34bd2bf", + [] + ], "transport.py": [ - "d61ebaddea7b7e3cac008781a8dcf1dc8326700d", + "14b990f971d235db7a354677a7b9032dd2ff88a5", [] ], "undefined.py": [ @@ -480510,15 +489180,15 @@ [] ], "error.py": [ - "25e4b39ae694f3f252777a726fda0716b67d592f", + "b19693e2d25adfb1078e8db4b53a28ce6e7a545f", [] ], "protocol.py": [ - "d6c89af22be2eb72068f4e59ab0040e5cbce1fd2", + "5d07047d5c3ad908b70c6b3ee200d3c587c5f1c7", [] ], "transport.py": [ - "ca1ff74ef96767afa76c200b159671d99762cb84", + "31d4997589adbdacc2438b104c86d88bfb9e3282", [] ] } @@ -480542,7 +489212,7 @@ [] ], "capsule.py": [ - "74ca71ade9cce9702efd93ddc8b3e786d22563cb", + "fc8183a65f03a01a3127f342ce65120145d21d17", [] ], "handler.py": [ @@ -480569,11 +489239,11 @@ [] ], "android.py": [ - "3def5cede44a7d017618fcff677efa5cc04401d1", + "e1eef88b609603db5811f4a067cfe10ca483ea34", [] ], "browser.py": [ - "ba7413bae544667941b95f79863e7031d59004c1", + "932604397013bae93ce3d0ba58abc4d9424aa67d", [] ], "commands.json": [ @@ -480585,7 +489255,7 @@ [] ], "install.py": [ - "382c1e2eb80ef2c719b8e90922d47cd1a54781d1", + "1e6408b0be633c6c857577645558e927ecc112ab", [] ], "markdown.py": [ @@ -480593,19 +489263,19 @@ [] ], "paths": [ - "7e9ae837ecf40caebdd36f80f312fa637cef0254", + "5a1303362b368be0dce52433adb1528de515a510", [] ], "requirements.txt": [ - "2c24336eb3167f69afa069e02a2e44f55162039d", + "d80d9fc2a3a2b61bfeaee0004be49f7a69cf8f63", [] ], "requirements_android.txt": [ - "17672383cb895b74dc5679548ec1032e05dc8520", + "e8205caa70102c3a00f64a9bde680f5e95f94de4", [] ], "requirements_install.txt": [ - "55bed99f8c594a0cb290aba4df30bdadfdf324d7", + "f7df06548c9424a1039db27f9772845b217ef124", [] ], "revlist.py": [ @@ -480613,7 +489283,7 @@ [] ], "run.py": [ - "dcf721ef39f8382bda51155a10517e29eedfcb51", + "9c6acbc2a465235d0cf708076736defd6fd9017b", [] ], "testfiles.py": [ @@ -480680,7 +489350,7 @@ ] }, "test_browser.py": [ - "95094e376dbd3d83251999e9c92b8dbffbcae7e3", + "3a45dab16e27299cc7539570f3d54e6aa0d5537d", [] ], "test_install.py": [ @@ -480713,15 +489383,15 @@ ] }, "tox.ini": [ - "4068f708986c4d5453c6447125c2a305ef378165", + "b6e3dab2317d084f45357a777607e91e052443ca", [] ], "update.py": [ - "4dba7e69df8376e7e8566525ab083e6e0348a92f", + "06fe9bfbaddf48e14725045816ea8f596c2ff619", [] ], "utils.py": [ - "5899dc3f3a967ff7d4b8b3c9e5340428ba6a9de8", + "51bb3f55dc9dcb083c7bd769a6836c62aa560e15", [] ], "virtualenv.py": [ @@ -480760,7 +489430,7 @@ [] ], "expectation.rst": [ - "fea676565ba94a6eecba232270ad9931db137e67", + "76f088dd8fb0204998beae56ad5cc3a872e92e6e", [] ], "internals.rst": [ @@ -480769,35 +489439,27 @@ ] }, "requirements.txt": [ - "93c17bf3bff2dfeb73fc0f419926d893b0dc72f3", + "565055c6e3d5635f7b6b1556cab40556082442d2", [] ], "requirements_chromium.txt": [ "883b061589837d34d6a65c9b91a2f31fb7c81c01", [] ], - "requirements_edge.txt": [ - "30b14b692fd46979178ee266d0d017faed3b492b", - [] - ], "requirements_firefox.txt": [ - "3ba4731494acfef5fc9bd75ff3e76111575b2851", - [] - ], - "requirements_ie.txt": [ - "4ff0fedd321ab3a6083778af39eaf7fc84b0bd56", + "7ed450d33218d26f1680d9872c890466b7689774", [] ], "requirements_opera.txt": [ - "4ff0fedd321ab3a6083778af39eaf7fc84b0bd56", + "6c2425f337bf68153ca724cb5eaf4a6458e3de57", [] ], "requirements_safari.txt": [ - "bcce11aed804df16200876894a149e18c1714f51", + "0704b2dbf6837b034f9bb1e45b51b81e12757177", [] ], "requirements_sauce.txt": [ - "5538fb0672d3cc24b73cb54aeeed7505a07a8424", + "f6f1581d858b3de002c3972b854d0323acd95a7e", [] ], "setup.py": [ @@ -480805,7 +489467,7 @@ [] ], "tox.ini": [ - "2a3f2bdf10952a56d3d9129fae681726d70780ab", + "c380be1252749de5549a1e37ad2c817aba9ed161", [] ], "wptrunner": { @@ -480815,11 +489477,7 @@ ], "browsers": { "__init__.py": [ - "4d10457699d5abd9e1cb5e02a2b58e825be1b417", - [] - ], - "android_weblayer.py": [ - "db23b64793afb092aacdbd2b3a8da12b69587dee", + "aaf91a1dc86efc84eb77b8f83f194596ad9f0217", [] ], "android_webview.py": [ @@ -480827,11 +489485,11 @@ [] ], "base.py": [ - "180e3fb9592efda82956b5bae9edbc0f911e5855", + "fee8895ef3a060421d83ba0ccfffb0d3b53eac94", [] ], "chrome.py": [ - "be14b2928a314a5b8dfedf28ada87509d5f7b166", + "0848f1cbeed275fa6242b7410568438717e7cf6c", [] ], "chrome_android.py": [ @@ -480839,7 +489497,7 @@ [] ], "chrome_ios.py": [ - "85c98f29942a55bb8a8b65af6eaa7fc90205e780", + "e559a5d7573e0000a09776d12475879249ea25e3", [] ], "chrome_spki_certs.py": [ @@ -480850,20 +489508,8 @@ "13cb49aed21087dc9371c3c559c9143a49fc6936", [] ], - "content_shell.py": [ - "23f4e99da62291005bb94450cde7d5ce592288a0", - [] - ], "edge.py": [ - "5b49545a38a5003cb21490d609beb551715c2b0b", - [] - ], - "edge_webdriver.py": [ - "e985361e41283b68b1d2d79a755812b72746e99a", - [] - ], - "edgechromium.py": [ - "4f5bffa06c498e2b046789da21755915f6df9d8d", + "82597c9312a4ad655aa9cb9a223179e55d74975d", [] ], "epiphany.py": [ @@ -480871,15 +489517,15 @@ [] ], "firefox.py": [ - "0cb5ff5d1047b9beb400ea3ac773fbc747e9be2e", + "74a9e02dafe93e209e21d46a6245077e79bfccc6", [] ], "firefox_android.py": [ - "6ebe4a69054579e80dfefa06a0691b53f580ff27", + "526f83d595f23d6fb5c30381bf885670498b807f", [] ], - "ie.py": [ - "87b989c028b0edaabbb75e5f6361f7f7538e80a1", + "headless_shell.py": [ + "7fd11fecbe0e7022a047cd1f58cd4f220739e66f", [] ], "ladybird.py": [ @@ -480895,14 +489541,10 @@ [] ], "sauce.py": [ - "0f7651638dc8240402e2f0147b0fee0df42489df", + "465aac6e4970231022f5b8c255b4b43f75d2ff14", [] ], "sauce_setup": { - "edge-prerun.bat": [ - "1a3e6fee3094bcb512b5a1e058e1074e117b0477", - [] - ], "safari-prerun.sh": [ "39390e618fdc599e443e17b76470e989d93864e7", [] @@ -480913,7 +489555,7 @@ [] ], "servodriver.py": [ - "5195fa64422c276f9fb90529240aa0c37ad0aef8", + "2cb638be1569c91a963bf2cb3824f2c07788f8cc", [] ], "webkit.py": [ @@ -480925,7 +489567,7 @@ [] ], "wktr.py": [ - "8d429f357b33f1ddba519855745729a1941a85ae", + "d65f35ccb33c876138fd01bf3f19da3eea2e3cc1", [] ] }, @@ -480934,7 +489576,7 @@ [] ], "environment.py": [ - "e206e4275469813032fa306acc07c31ba64d9840", + "f8538b7da1d7f4177c8e45eb76724e8e5ca49db3", [] ], "executors": { @@ -480943,55 +489585,55 @@ [] ], "actions.py": [ - "6e671f4cfdd019f8564d48267d99ef1542a7a310", + "4bf8d735a1ded0f07400c0d6b18857d83e7b67db", [] ], - "base.py": [ - "7abb1660bae88841967e974c6934e4406bf5cee1", + "asyncactions.py": [ + "df8e874c0cdd0af502a1d6b7a6ec11a5ece55f6f", [] ], - "executorchrome.py": [ - "7a54eb097f9afbe719ba551894a461a3535bc77b", + "base.py": [ + "7d5ed5cabcae5a7291f26f008eccb83514bded72", [] ], - "executorcontentshell.py": [ - "5c4068c7acf5d8c06e3f10a034822dfd94c00803", + "executorchrome.py": [ + "d972a0eea5f3ff021c16d262764730b5400cf9ee", [] ], "executoredge.py": [ - "cbe5eadf9a608da0b8d767f26a4fca6b15eb4681", + "75a3313c55c3dff4f63104953204b6095949703d", [] ], "executormarionette.py": [ - "4ca15042cbb813f0ce207fac71fe01098759a9e9", + "fe1fed136309ba137b705dc68917864f9bf878a2", [] ], "executorselenium.py": [ - "128e64804646f93377346089180f9fd703b5d47f", + "cf5ac2a22f02c516ba1a7ef09609813375224e8f", [] ], "executorservo.py": [ - "3250c74ff4397d229e370a8c317b0e2a269dc9a8", + "9c938b6e75e27c61167294a941629928fa33db73", [] ], "executorservodriver.py": [ - "0a939c5251e2183f9e23120459cdead10ad855d1", + "5d7d55f30b551f59bc0b16aacc8641c0fc24e39c", [] ], "executorwebdriver.py": [ - "10b4e4def87aa80a1afafc0384e947415faea26d", + "3ecf04df9a10626dd90311006f5b986eb84c7286", [] ], "executorwktr.py": [ - "b240bca556a454ba785bf2452bb91589396010b1", + "3c02fa799e083b847bbcc0e6a59819da97096ee6", [] ], "process.py": [ - "4a2c01372e0bdfb06cdd9fefca50ed275e2974d0", + "b90e45d36780f0a89b0f8bc9ff2b29a221bdf839", [] ], "protocol.py": [ - "e44d1a766665fe5e6de682095367bd416ad297b3", + "a4ba76e6cd6eaa6dcce3acda4fdd18f8de731d5c", [] ], "pytestrunner": { @@ -481021,7 +489663,7 @@ [] ], "testharness_webdriver_resume.js": [ - "36d086c9747a56ca7122c899cfcb46d00dd60b15", + "4e7b63090eecde5dce354055836b88f5f2ac3f14", [] ], "window-loaded.js": [ @@ -481086,7 +489728,7 @@ [] ], "metadata.py": [ - "b9cb61eb07f3069df007c33cdcf24f48ae457da9", + "5d7ea2b011a42c37c15b609a3d27f15240c6894c", [] ], "mpcontext.py": [ @@ -481098,7 +489740,7 @@ [] ], "products.py": [ - "c81396f3dd313541cfd053f9183dc6a476abd3f2", + "9657bde5f5a82e03c213e25ef637b7793854c674", [] ], "stability.py": [ @@ -481106,7 +489748,7 @@ [] ], "testdriver-extra.js": [ - "74d5bae677cac843d26f755c9034c5ed3ba7fdd1", + "f7b9ae5fdbfc27c42b1f56ab1327bdcbc6cf8664", [] ], "testdriver-vendor.js": [ @@ -481117,12 +489759,8 @@ "1cc80a270e2c1e8f0bcb8dc4878a75d9ce01717a", [] ], - "testharnessreport-content-shell.js": [ - "1e24fdbcfbf05fee3d56d16dffef7bf35cb9874f", - [] - ], "testharnessreport-servo.js": [ - "4a27dc27ef6f26b4f359d5a013bce4a21af51738", + "d6616739e6ed63a79e8b2f5d8aee1d5b2ced7f49", [] ], "testharnessreport-servodriver.js": [ @@ -481138,11 +489776,11 @@ [] ], "testloader.py": [ - "aa266548d7ec4d06a06b99fe711641b3b2c1ec54", + "65f6b2b673a492ca1cd341190deb69dd843b8902", [] ], "testrunner.py": [ - "888731e4aeb9646ea1b0294568f04bb6354f7005", + "c5b12ee1d93a72b0e2a75ac800c298f29e4aa946", [] ], "tests": { @@ -481151,7 +489789,7 @@ [] ], "base.py": [ - "176eef6a42392ebb5db16674079379783cd59368", + "8e71aba812de83b1dccd4dfe58de2ca6d57e2ba4", [] ], "browsers": { @@ -481168,7 +489806,7 @@ [] ], "test_webkitgtk.py": [ - "b5fc5fce5fe42898bf833669f90a512bd12d5665", + "983ed162fd4a01d95615dc0b298f031dd6138f11", [] ] }, @@ -481231,7 +489869,7 @@ [] ], "metadata.py": [ - "48519900e7db5ad5f395ef03409b5c95fc9250af", + "f1ab74accfe93ecede4c5452c543e004f3050ae4", [] ], "state.py": [ @@ -481326,11 +489964,11 @@ } }, "wptrunner.py": [ - "d65369b380d561a02e312e9418941b8a99c71ab9", + "f390f29c0794f0e5dbd4ebedff6fe219d59e926f", [] ], "wpttest.py": [ - "6df1c4cf2cd250e07bfd29d8536e70d194944dfc", + "2e3fd974d4d43eed1efc0e0d46085b8c56ab4521", [] ] }, @@ -481403,7 +490041,7 @@ ] }, "setup.py": [ - "262395a9bee9ed8d53d69bac8765ff924fdb97de", + "36aa98f1d82579420294c69f0e61b79646fc6345", [] ], "tests": { @@ -481425,6 +490063,22 @@ "baecd2ac54f2dc048e344bfd67e0e66138807c6e", [] ], + "defaultpy": { + "default.py": [ + "c235aeb58a85b13ca5d3f8722f0b70b4473915a6", + [] + ], + "default.sub.py": [ + "32a10d8535a4c0773c356aab340d22784205632b", + [] + ] + }, + "defaultsubpy": { + "default.sub.py": [ + "c549100066af0e3f9e359da1bc84f0cb6288e028", + [] + ] + }, "document.txt": [ "611dccd84487e6429631bd7ae92268a58efdda6b", [] @@ -481441,6 +490095,10 @@ "277101697ff8cbe76af107826ad0fa243b75b048", [] ], + "foo.any.window-module.html": [ + "59646e6abdb6475f83eaf0b9bff71184d465a6ba", + [] + ], "foo.any.worker.html": [ "f77edd971a4ec0c5dfd48789a889f7d3c3b10a09", [] @@ -481581,7 +490239,7 @@ [] ], "test_handlers.py": [ - "623a0e5b6a834208a863a869aeca0936b198ef0e", + "91b05f4fe46edadc1929a4b159aea1f2cd2811df", [] ], "test_input_file.py": [ @@ -481589,7 +490247,7 @@ [] ], "test_pipes.py": [ - "beb124d1dbe19082cd52c6d7b8a772262e1963db", + "c11577acb5041fdde7deb82cdb2ed85cbca5adb8", [] ], "test_request.py": [ @@ -481601,7 +490259,7 @@ [] ], "test_server.py": [ - "939396ddee8375afe0912254f068169cf6c7ea78", + "39ef5889bea818d049a491b5786ad49fd9906c84", [] ], "test_stash.py": [ @@ -481626,7 +490284,7 @@ [] ], "test_stash.py": [ - "4157db5726d4f92c767c469b77f8105ed5f3c04d", + "7806dc1c9b2f0a452da1b03dae8113dc9c1c4920", [] ] }, @@ -481640,11 +490298,11 @@ [] ], "constants.py": [ - "584f2cc1c703ade9304d5f7088bd9095f9025d9d", + "292f0085dc2004076ba3200f5ec72b32a8e7b907", [] ], "handlers.py": [ - "6d79230a32410a486342ce1168dcb7ae6df188eb", + "62faf47d6456924cc99ef4d30a7216030f36eb71", [] ], "logger.py": [ @@ -481664,7 +490322,7 @@ [] ], "response.py": [ - "a6ece62dab1fb8cf0d167eda776f6f5212f53379", + "8d0e01bbddfacd146baacfc24df122db011baeba", [] ], "router.py": [ @@ -481676,7 +490334,7 @@ [] ], "server.py": [ - "815892d0b1b752b451b3003e530bb01dee514ea6", + "18638615425ca8830baa17ab996167179a1142b2", [] ], "sslutils": { @@ -481689,7 +490347,7 @@ [] ], "openssl.py": [ - "5a16097e374de50afc8a2539d5d2b965fb7f85f2", + "2a388671b62f32ccbfba6682e634a72feff99d53", [] ], "pregenerated.py": [ @@ -481702,7 +490360,7 @@ [] ], "utils.py": [ - "e711e40725bf2bf58f1741a622b0329d71a9f7b8", + "403c359d27fbe5e3cad8aff2a8d618beabd479d9", [] ], "wptserve.py": [ @@ -481710,7 +490368,7 @@ [] ], "ws_h2_handshake.py": [ - "af668dd558514a3e1fdb3ebdb60dd392314b589c", + "ab1ab958a03bba94030d61c085a448c00f08a25c", [] ] } @@ -481718,24 +490376,22 @@ }, "top-level-storage-access-api": { "README.md": [ - "e3636a221ecd07caaea91a68e677f4bd5f0bc1ee", + "e0e385f6e7581eb32b2e77a648b8a6cdb213b635", [] ], - "tentative": { - "resources": { - "permissions-iframe.https.html": [ - "c9907203322112ffb01a50b09541e891250c4f5e", - [] - ], - "requestStorageAccessFor-iframe.html": [ - "050196dfdb9e66d2309a8f2286cb0a67eb34121b", - [] - ], - "requestStorageAccessFor-iframe.https.html": [ - "14da63b033cbe3418af599939d3cf407485ccf8c", - [] - ] - } + "resources": { + "permissions-iframe.https.html": [ + "c9907203322112ffb01a50b09541e891250c4f5e", + [] + ], + "requestStorageAccessFor-iframe.html": [ + "050196dfdb9e66d2309a8f2286cb0a67eb34121b", + [] + ], + "requestStorageAccessFor-iframe.https.html": [ + "14da63b033cbe3418af599939d3cf407485ccf8c", + [] + ] } }, "touch-events": { @@ -481767,6 +490423,10 @@ "04061ac0f66a849b4dd2f71c8abef40f47240a96", [] ], + "WEB_FEATURES.yml": [ + "6ea31f1ef8d3838b3b9d84f6dac839b22083ee20", + [] + ], "default-policy-report-only.html.headers": [ "4c1ff15e167a9581839c64532078440689ca741c", [] @@ -481783,10 +490443,6 @@ "604e765da46d85fe8ab85d3097fe7c2cbe00a930", [] ], - "idlharness.tentative.window.js.html": [ - "07847fdb39ea21b3feeebc10501d3aa6bdf97881", - [] - ], "no-require-trusted-types-for-report-only.html.headers": [ "aa00fcc15a30ef1f8968be44abc1a9e934a31979", [] @@ -481795,6 +490451,12 @@ "c6412f8d472fcfd6022b0ae485f52b3d3dedd820", [] ], + "resources": { + "block-text-node-insertion.js": [ + "1b924aaf7f33f5d68d07a0490eef855cf7523634", + [] + ] + }, "support": { "HTMLScriptElement-internal-slot-support.html": [ "b9a0ceefae22a7becb4552e0aadc7e9bfc24cd24", @@ -481805,7 +490467,7 @@ [] ], "WorkerGlobalScope-eval.https.js": [ - "be0a4300e1a69b3a0f846ed2c8d31826e5ac739c", + "95ac1ff844b3e4e6f01a4abb3cf4846df514bf70", [] ], "WorkerGlobalScope-eval.https.js.headers": [ @@ -481825,11 +490487,11 @@ [] ], "helper.sub.js": [ - "2d1bd436bdf35f54474c8b53eb422d1948a7fa8c", + "1775cd985c24df970f00903a3c8d7f4705d77851", [] ], "navigation-report-only-support.html": [ - "5f7856fabb7bb16085ffaffffbf6d7553179e8f3", + "a16995ba903688327d5b58dc9d7c5457583ec758", [] ], "navigation-report-only-support.html.headers": [ @@ -481837,13 +490499,17 @@ [] ], "navigation-support.html": [ - "5e02e6d4bf5aff9fa4f0b4b897a35726ed24168b", + "c2c8a82f5145885f64e5ce99a9e8c6f039efa370", [] ], "navigation-support.html.headers": [ "604e765da46d85fe8ab85d3097fe7c2cbe00a930", [] ], + "resolve-spv.js": [ + "89e58b2a8b75e0200d145b028d032caa688f32cd", + [] + ], "set-inner-html.js": [ "45053d43e362e223e0ce5e6dffb4da09c0ce3f34", [] @@ -482220,6 +490886,22 @@ "1e306c0d0a042feb2b85ae3aa4244bf7e39a9e44", [] ] + }, + "textInput": { + "support": { + "basic.sub.js": [ + "55d2f0d1e64151ab5d13fceb8a2893bdf18a59ab", + [] + ], + "common.js": [ + "25c39da3e2b66da3e8fd15f88a4a1a47b1433ded", + [] + ], + "no-textInput.sub.js": [ + "332cbf08f2b3c8e3bc808ad5e0d32bc727e99422", + [] + ] + } } }, "upgrade-insecure-requests": { @@ -482472,11 +491154,15 @@ }, "url": { "META.yml": [ - "094b266b64b61b97966f2fa88d78dfdf5a00b573", + "415bd0f094c6b9f3348e0320e2644bf94f98fadd", [] ], "README.md": [ - "fa5e3b0dc72385a5a60125802d78c53e46e99058", + "50227bc4b330ef8790eb8d6a2b0af15c2e08123e", + [] + ], + "WEB_FEATURES.yml": [ + "4711efc1faf9a97d57c9a48bdff97b1f7951f6d0", [] ], "resources": { @@ -482485,11 +491171,11 @@ [] ], "a-element-origin.js": [ - "c1c24c8986b4aa6c1c214c3e5f480ace2abf885f", + "3e5e6cd0c76e43a5188277a26e279364ea02ed8d", [] ], "a-element.js": [ - "cff4160d32894231c5ea3d8316930564915a2c0e", + "4a925d9d0e6b2fee9643fe249226914612a1fb83", [] ], "percent-encoding.json": [ @@ -482501,15 +491187,19 @@ [] ], "setters_tests.json": [ - "82adf4cdce270b5b60a45a3845446be7faf14f64", + "3850606d660bbb54cfc52e4dd43e2d7577b3363e", [] ], "toascii.json": [ - "bca28b4a1e454a8c9ac74a94f6498fda1f6d75ba", + "d02c4c7e86654c5056abb6969d9c916a96eb1620", + [] + ], + "urltestdata-javascript-only.json": [ + "a3793c1f472f00b6be921d4d21f06529ff07e19a", [] ], "urltestdata.json": [ - "69767a20db90bf4d6b37fb6ade5cf2ea5d6686be", + "91fcca2c3c25570e9783afe8525778fa19d28891", [] ] }, @@ -482521,6 +491211,10 @@ } }, "urlpattern": { + "WEB_FEATURES.yml": [ + "cb82ba5cda2918be080e10ab8bbd4c145e05b790", + [] + ], "resources": { "urlpattern-compare-test-data.json": [ "0043ac08bca55418e61e3b054a5d78f648adfc9d", @@ -482578,6 +491272,10 @@ "README.md": [ "ab7a3530515861c91c4c012b93c2e0cf8e913def", [] + ], + "WEB_FEATURES.yml": [ + "f206d0be0b4d054917184b9a52492c095142d1fd", + [] ] }, "virtual-keyboard": { @@ -482599,6 +491297,10 @@ "5499f77335b0a2128f7395e73ee777f07a2346b4", [] ], + "WEB_FEATURES.yml": [ + "4eecec544c9907f91d7092e38f238170d0b1e1e9", + [] + ], "helper-resize-event-on-load-overflowing-page.html": [ "c036b16ec87bc7e562c4040ad1923c5a8b483cec", [] @@ -482631,7 +491333,7 @@ [] ], "aria-utils.js": [ - "a281bec1783466dc0286e1add5ef6a7d57b72c47", + "ec53464c18fda38a1e26281a226d7ed8bd653d48", [] ], "manual.css": [ @@ -483011,7 +491713,7 @@ [] ], "worker-source-phase.js": [ - "c7a4f0d437cbf0290aaccd69e80a68ed417c00b6", + "e1c2703899a50d1e31f73c2a0b76a27c5d6552ea", [] ], "worker.js": [ @@ -483068,7 +491770,7 @@ "animation-model": { "animation-types": { "property-list.js": [ - "39a92c7498df4902b5502602a796518143ad4d41", + "ee791e884c57a4b9bf95359da174c1f675c1b21d", [] ], "property-types.js": [ @@ -483094,6 +491796,12 @@ [] ] }, + "resources": { + "side-effects-common.js": [ + "2f6531d4fc4d518fd2c979939a5c20c4be65be2e", + [] + ] + }, "side-effects-of-animations-current-ref.html": [ "acc0465b074c2dddfeb1ac427d49a55e5dcecd64", [] @@ -483142,19 +491850,27 @@ ] }, "responsive": { + "neutral-keyframe-ref.html": [ + "3893330fb969bbf46257de4b7a984a9bf2996ebb", + [] + ], "resources": { "block.html": [ "82840559690b3bb18bec0588db9d9eeb95e098e5", [] ] }, + "responsive-test.js": [ + "feca53259cf4ba600675440d463d8a9b65c8e7c9", + [] + ], "toggle-animated-iframe-visibility-ref.html": [ "dab5bed7c81d2260766a78682f21be027f7c4575", [] ] }, "testcommon.js": [ - "a106cd9ac67464f16cb2a5c104e1dbf742bfc289", + "b431b213dbef47d27954a4622a17f9a6e7a6a126", [] ], "timing-model": { @@ -483611,6 +492327,10 @@ "84af41baa8224b8e1c807bdefe43366235102612", [] ], + "WEB_FEATURES.yml": [ + "dac5b1ba75296ea0788b0a29d7e1f4b78fe6b81f", + [] + ], "bfcache": { "helpers.js": [ "7997f982a8f748281c21e1be05c9c74407600fe2", @@ -483704,7 +492424,7 @@ }, "webaudio": { "META.yml": [ - "3bcd1cb8d379557fbe3cf0a99a6f34be4fa800fe", + "735f0ebd3916f1fe2acf006797603b0a60c47f23", [] ], "README.md": [ @@ -483848,18 +492568,6 @@ ] } }, - "the-audiodestinationnode-interface": { - ".gitkeep": [ - "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", - [] - ] - }, - "the-audiolistener-interface": { - ".gitkeep": [ - "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", - [] - ] - }, "the-audionode-interface": { ".gitkeep": [ "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", @@ -483880,12 +492588,6 @@ [] ] }, - "the-audioprocessingevent-interface": { - ".gitkeep": [ - "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", - [] - ] - }, "the-audioworklet-interface": { "audioworklet-postmessage-sharedarraybuffer.https.html.headers": [ "63b60e490f47f4db77d33d7a4ca2f5b9a4181de8", @@ -484117,6 +492819,10 @@ "a52d978f0eac073ea327e13eb6b8773f89d6091b", [] ], + "WEB_FEATURES.yml": [ + "8b273de80b54a1e320ec9ffdd29bdbaa92445430", + [] + ], "helpers.js": [ "5b30749bf377ca03aaa791b3a815033f9460cbda", [] @@ -484129,6 +492835,10 @@ "utils.js": [ "50c39605a1bc187d54afbedb4422ea6965dc5462", [] + ], + "webauthn-subframe.sub.html": [ + "c97255924e14e3242ed88b87abf74c69afb4fb8c", + [] ] } }, @@ -484290,7 +493000,7 @@ [] ], "video-encoder-utils.js": [ - "0838260d31bc8f90d2d294341f078bef544d29bd", + "916f995156e51d7fed083d9ab175cc44d974dc6b", [] ], "videoFrame-construction.crossOriginIsolated.https.any.js.headers": [ @@ -484342,31 +493052,49 @@ [] ], "__init__.py": [ - "cae2e2576d6ce4d13ffa200d846af34d76e51804", + "c42b5f3e501202b12c244d4db3a7010fbb9f1f55", [] ], - "browsing_context": { + "browser": { "__init__.py": [ - "e74de268093e1c39ae683dfe0eb08ad6ba2eceb3", + "e1327d55c90d78f8c0d530e5bac45b3142219d80", [] ], - "activate": { + "create_user_context": { "__init__.py": [ - "5d0b52a5ac4497fbf6bb2f2ab3037048f78a0643", + "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", [] ] }, - "capture_screenshot": { + "get_user_contexts": { "__init__.py": [ - "32d44104d510de8221d43d9c3262cc6b31ae2238", + "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", [] ] }, - "classic_interop": { + "remove_user_context": { "__init__.py": [ "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", [] ] + } + }, + "browsing_context": { + "__init__.py": [ + "606ac071ed7b1def5316d84a5c29ca00d7187da5", + [] + ], + "activate": { + "__init__.py": [ + "86f9ace3ee2d4618a2dcdf2fa3f5cae3c77e1702", + [] + ] + }, + "capture_screenshot": { + "__init__.py": [ + "32d44104d510de8221d43d9c3262cc6b31ae2238", + [] + ] }, "close": { "__init__.py": [ @@ -484434,6 +493162,12 @@ [] ] }, + "navigation_failed": { + "__init__.py": [ + "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", + [] + ] + }, "navigation_started": { "__init__.py": [ "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", @@ -484490,7 +493224,11 @@ }, "traverse_history": { "__init__.py": [ - "1227831549182075b71ed81d80161ff639b54f49", + "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", + [] + ], + "conftest.py": [ + "fcd7cdf1142fad3fee5e9866e3603ac666929959", [] ] }, @@ -484513,6 +493251,20 @@ [] ] }, + "external": { + "permissions": { + "__init__.py": [ + "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", + [] + ], + "set_permission": { + "__init__.py": [ + "b8f6358d61746af39d32612db6649f135e8d94c0", + [] + ] + } + } + }, "input": { "__init__.py": [ "809379d56dc3c28a3283c92561476d36e499c721", @@ -484533,8 +493285,24 @@ "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", [] ] + }, + "set_files": { + "__init__.py": [ + "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", + [] + ], + "conftest.py": [ + "f114ca701e5e9bf798c069e55252a20886f7e9a2", + [] + ] } }, + "integration": { + "__init__.py": [ + "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", + [] + ] + }, "log": { "__init__.py": [ "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", @@ -484549,7 +493317,7 @@ }, "network": { "__init__.py": [ - "c6b8e32885947ccf41b7bfa1b4621b1b529dd532", + "60a39741f833e65f22d733441390c7cad0b5d8dd", [] ], "add_intercept": { @@ -484577,7 +493345,7 @@ ] }, "conftest.py": [ - "184073a53ab5b68b623187bfcf5d30670e4fca48", + "6928334b7d989006cd97b4b2d52ef288634dbdc2", [] ], "continue_request": { @@ -484604,6 +493372,12 @@ [] ] }, + "fetch_error": { + "__init__.py": [ + "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", + [] + ] + }, "provide_response": { "__init__.py": [ "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", @@ -484628,6 +493402,16 @@ [] ] }, + "set_cache_behavior": { + "__init__.py": [ + "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", + [] + ], + "conftest.py": [ + "1f12c9fcb8435fd41d2c2e31678464220c26d94a", + [] + ] + }, "support": { "empty.html": [ "69e9da4114557b774cd78c3da64f24b49ccb03b6", @@ -484653,6 +493437,18 @@ "e45c9c2666d44e0327c1f9c239a74c508336053e", [] ], + "provide_response.css": [ + "3eaf736611d9d09e7d2e45778fa49949fb12567c", + [] + ], + "provide_response.html": [ + "b41e61ac2df48a35d604c3a285c5dfab9309ad18", + [] + ], + "provide_response.js": [ + "dca29b8346ec2128efb98b9750cc7826698d00e8", + [] + ], "redirect_http_equiv.html": [ "9b588c67ef8d610fcf8228b17c01044193d195bb", [] @@ -484660,12 +493456,20 @@ "redirected.html": [ "3732b218cff8de24ec7b313361715285822cfc3e", [] + ], + "serviceworker.html": [ + "a1f50e731b23d4c41827b6bcc49f8cd5b4e6e080", + [] + ], + "serviceworker.js": [ + "d58241a97edea5fa4f6b05816fa75b0f0aa0e2c1", + [] ] } }, "script": { "__init__.py": [ - "7feae91f27b9086c70783135c29300ff3b626498", + "4971737f8c1095acca1da0c2f37c3f46ccc098ea", [] ], "add_preload_script": { @@ -484680,12 +493484,6 @@ [] ] }, - "classic_interop": { - "__init__.py": [ - "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", - [] - ] - }, "conftest.py": [ "c3d39fcb9fda1e831a811e9b1725458240308f78", [] @@ -484762,6 +493560,36 @@ [] ] } + }, + "storage": { + "__init__.py": [ + "56ea539914328c6d4dafe3d202ad08017e26f717", + [] + ], + "delete_cookies": { + "__init__.py": [ + "4b73b0bcedf401f9af495d853e943501f81cce7e", + [] + ] + }, + "get_cookies": { + "__init__.py": [ + "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", + [] + ], + "support": { + "black_dot.png": [ + "613754cfaf74a7a2d86984231479d5671731f18a", + [] + ] + } + }, + "set_cookie": { + "__init__.py": [ + "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", + [] + ] + } } }, "classic": { @@ -484819,7 +493647,7 @@ }, "element_clear": { "__init__.py": [ - "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", + "c84215a636917ba4f27eb0d6c5674497f0636ed7", [] ] }, @@ -485029,7 +493857,7 @@ }, "is_element_enabled": { "__init__.py": [ - "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", + "9a6d884000ea8b377f54a38b529a51152d1044ba", [] ] }, @@ -485063,7 +493891,7 @@ [] ], "conftest.py": [ - "b6179aa90e726722239f68a1a3d7334ec8ec76c2", + "afb3b9ec8121536c72cf5860fda480f32647e07a", [] ], "support": { @@ -485072,7 +493900,7 @@ [] ], "create.py": [ - "a0d0ce37b57d396621729c2966748514039e84ad", + "ac8d0098dbe3cd1ffbdb24faac6b127a698c56d1", [] ] } @@ -485089,7 +493917,7 @@ [] ], "conftest.py": [ - "0694cce494f25df68c4def8aec170586adb0f7d4", + "bb134a4eb1b9424bcacdaffaaab56be5b4f18846", [] ], "support": { @@ -485208,9 +494036,15 @@ "fe9f5cd268240662d0d7a6753e58a7fbedecad4e", [] ], + "interop": { + "__init__.py": [ + "e69de29bb2d1d6434b8b29ae775ad8c2e48c5391", + [] + ] + }, "support": { "__init__.py": [ - "0535edd2142e39aad37cc1a0ca58dca1fa01164a", + "8b137891791fe96927ad78e64b0aad7bded08bdc", [] ], "asserts.py": [ @@ -485221,12 +494055,16 @@ "64ee18b6c157488766f5c9d24f8f9dff79ff4387", [] ], + "dom.py": [ + "f77fb4938729a44b75fec2ed3f8697b2f68de1ff", + [] + ], "fixtures.py": [ - "7468e8b251f8f6f6e203d2a314f9480e397940e2", + "a8f1f2959d4acb02776fc7cc2440fc00f408f50c", [] ], "fixtures_bidi.py": [ - "c073997215e7a6ab2ef142400db82c5fe367ffb2", + "9f3c31d3d57cfc0189481c48800512b4a780efc1", [] ], "fixtures_http.py": [ @@ -485234,14 +494072,26 @@ [] ], "helpers.py": [ - "0a8e1dc1a4f1d15873db3bc6663bcd1a64ebef40", + "0ca5bd28269a831ccdbcfdcbcb0eb748f308495f", [] ], "html": { + "beforeunload.html": [ + "d4332c28941c34dd0a05f43fd83c001fb5b20b54", + [] + ], + "default.html": [ + "c15d0a7eb759d94f08cfda2791e9c3e61c3756d3", + [] + ], "deleteframe.html": [ "fd757e6db0dce6b3cd787e81091763cc77983a30", [] ], + "files.html": [ + "be2479184463d9f851237b4112418079e9b76a88", + [] + ], "frames.html": [ "81c6f9b3833e083277235dfd0cdd1716dc926110", [] @@ -485271,7 +494121,7 @@ [] ], "test_actions_scroll.html": [ - "db5952ed74d2bc771933296f313797126c18291e", + "edeff342fe4d67d8af2272a516a618648485ff55", [] ] }, @@ -485281,11 +494131,11 @@ [] ], "authentication.py": [ - "2526a5a4c2ca5d1f45db4a93a9b911e4ec0d6236", + "acee2d18d67f084b22bcaaddd78995c30c1f4746", [] ], "cached.py": [ - "a43410f8856a861c8ad4633e40ea3ba298a5e31c", + "ce1dadefa148fe1e68ac162c42cb3845271579c4", [] ], "headers.py": [ @@ -485314,7 +494164,7 @@ [] ], "inline.py": [ - "ef1054c93d7045e83a5175c805fed47ecb977963", + "8364e0590ea3c04bf845087381b53f07dc5f1ec4", [] ], "keys.py": [ @@ -485326,7 +494176,7 @@ [] ], "sync.py": [ - "015ebd37a0966860a452a6f69420ba6787b4877e", + "4e92bcdf23e044de9d6ec00c2f90d39f9672e7e3", [] ] } @@ -485366,10 +494216,6 @@ [] ], "resources": { - "automation.js": [ - "f7477d1eccf816e507c401c26d9deaf360f33699", - [] - ], "common.js": [ "1d0904af837814ad0bd19a79a08a88faaa616164", [] @@ -485540,286 +494386,24 @@ "META.yml": [ "f39d4122887ba252516b12f98caaa08e84b3eb34", [] + ], + "WEB_FEATURES.yml": [ + "76ddf996a249fd3767422692564ff84d644599f2", + [] ] }, "webnn": { "META.yml": [ - "3f87fc8042d2b3de1bf13d64333ba08cdfdabb3b", + "6b22a19db920390ef34e86711fc399569db31e13", [] ], "resources": { - "test_data": { - "abs.json": [ - "c59054c3e500d90c0b9f4c919df2f421b0030e8d", - [] - ], - "add.json": [ - "0a12871cebab50b0e826674107ff503e6ede5347", - [] - ], - "arg_max.json": [ - "9af47a95894223eb39d4f73f81f5b9c9a4112bff", - [] - ], - "arg_min.json": [ - "dc0b5cdfd1a6bc822bce05f3ba014bb119f3e679", - [] - ], - "average_pool2d.json": [ - "802e0d764621707c0b00d6a05627d0c1eeba9233", - [] - ], - "batch_normalization.json": [ - "19f414bbfea80800c4caad2ceb7c5a83220b7a6e", - [] - ], - "ceil.json": [ - "6fa623977fcba14892717a387bb7f7e2cda7ef23", - [] - ], - "clamp.json": [ - "93ab5ca0c1cae95e77bab2405bc10901b4c769d1", - [] - ], - "concat.json": [ - "4230744e86faba47cc458aef147cee25c78d1afa", - [] - ], - "conv2d.json": [ - "850897df4e107c616ec3442563d4a73f642586a9", - [] - ], - "conv_transpose2d.json": [ - "980cc9f6629d5cd1f505d3f4acb0c0d3ad065f22", - [] - ], - "cos.json": [ - "4d992325509141a4e5959e84317567722624edc6", - [] - ], - "div.json": [ - "d72544e8ec4fcdf6b6da2a83829d59e1d9f8afb8", - [] - ], - "elu.json": [ - "68c0c80c59b0180b1b9e32cd4e920abd99996b52", - [] - ], - "equal.json": [ - "8350a25d594de6086c8c71e5142df6c92aaec799", - [] - ], - "erf.json": [ - "8a9ae6e68c1c4ab61e2d4c4838b014653c9049c9", - [] - ], - "exp.json": [ - "8a86edec3b8e5ed460ca8d00242d97e5f110a35f", - [] - ], - "expand.json": [ - "be56ca14890db4b002efa72b57d92111e6c6befd", - [] - ], - "floor.json": [ - "f2fa797d4162595fe86704cd2bc3b3719fa34ba0", - [] - ], - "gemm.json": [ - "3738e19f7c641020309de975b4474fd652fbcb35", - [] - ], - "greater.json": [ - "12e32d907289b5aae675bf3f514004619c433e58", - [] - ], - "greater_or_equal.json": [ - "93ae0b3a4bcc2fdbc53add54b11188f6bb3a27ba", - [] - ], - "hard_sigmoid.json": [ - "22fe7c6da0c2135ab663eec54d7bf3661c3d1e20", - [] - ], - "hard_swish.json": [ - "8d7812d21e23a1e9aef93dfd14bf2872d556550e", - [] - ], - "identity.json": [ - "444b39dc06c182b6cfc275daf1cb6edf1bc843db", - [] - ], - "leaky_relu.json": [ - "a95a9a0cfcee9bd549f2e1aed40429592b2049ba", - [] - ], - "lesser.json": [ - "64774d1621c23d8aa35674944bc514bd8276911b", - [] - ], - "lesser_or_equal.json": [ - "8daea5e13680db3f1b15e5a670582577ccfd5961", - [] - ], - "linear.json": [ - "ded1d2d7e3537492497453b29c8dbaded5c6a3f3", - [] - ], - "log.json": [ - "c48406e707554630e93b074eafc34d3c4cb5d07b", - [] - ], - "logical_not.json": [ - "5cb3208c786acaa434f0335088b1c572cf039f3b", - [] - ], - "matmul.json": [ - "6e0423a68d3e3a9c07ea3cd7a7bd83973ae34e46", - [] - ], - "max.json": [ - "27a258248fcbfc38195e85809a665f3c62dd0fd6", - [] - ], - "max_pool2d.json": [ - "cf426620e56a0cd568f724ac8f5635a636f70213", - [] - ], - "min.json": [ - "f5ea4779f409e86285ec0f5ab9f15f47a86976ec", - [] - ], - "mul.json": [ - "e6487cfc59114d83531c40bfa5911278d447687c", - [] - ], - "neg.json": [ - "8a1eea34f95f52f024fb8e3b8977e037040f7584", - [] - ], - "pad.json": [ - "ac4834d7f09cd3ed788a16de8162fc7cb8b02c19", - [] - ], - "pow.json": [ - "a097c21d9ef2005ae56856e1ae874a5bfa52608d", - [] - ], - "prelu.json": [ - "e45e12cd4b6c9f6db1eeb2243396edea641813f6", - [] - ], - "reciprocal.json": [ - "dce56e5f57d8c08d4a67933e24836e96de110064", - [] - ], - "reduce_l1.json": [ - "aa169299c7c9f3d84bbb62a8c3c7c7b3fb24516a", - [] - ], - "reduce_l2.json": [ - "73397cbb7a80fbc74aad146ff1223c6dbe0fbd1f", - [] - ], - "reduce_log_sum.json": [ - "2e1fee804fd48278937b73b5901b4c4f50c4a6f1", - [] - ], - "reduce_log_sum_exp.json": [ - "e5ebb2aba39741928c4a3d8f87a48a6e395ed392", - [] - ], - "reduce_max.json": [ - "4dd7098d03f4fd89a25124b0d3ffdb2d43405704", - [] - ], - "reduce_mean.json": [ - "db20b17a8357430bc9f04934b5b9469772a83a16", - [] - ], - "reduce_min.json": [ - "db6c0e22695a964291abd95912a35819cfaee113", - [] - ], - "reduce_product.json": [ - "60484300bca4c76e3ddebc7fbcfc49cefafe9be0", - [] - ], - "reduce_sum.json": [ - "6da78ae804a2e2c6662fa3c1f96897729811b730", - [] - ], - "reduce_sum_square.json": [ - "cf6bbb65d41cf9f32c201d36e1bc5a67706d4f33", - [] - ], - "relu.json": [ - "b4597891472edaf4721c2aea012773e16915b165", - [] - ], - "reshape.json": [ - "fbb93a8e03cc1130adb81d90e4e8d79462bb36a2", - [] - ], - "sigmoid.json": [ - "c233336321775622eaf458ba7bb9d237e90e6d12", - [] - ], - "sin.json": [ - "3cc4771a336fe2ac74c48b768271b45d62e3496a", - [] - ], - "slice.json": [ - "ed193dd6563340ff8bd7d11e8e00d743492905d4", - [] - ], - "softmax.json": [ - "52ea57c7632d0d27b1745ddd4e983c37becf9832", - [] - ], - "softplus.json": [ - "2b26e1439e30cd8c2f7bd504d9553ab6eb38138a", - [] - ], - "softsign.json": [ - "e3208b18ad49a64dbbeb6a939dc69d2ea5ab3c43", - [] - ], - "split.json": [ - "e4216003c02f7fa8174d2d2734217477ca975407", - [] - ], - "sqrt.json": [ - "be9666590bdbe817988f3f80360cc90e8b805ea4", - [] - ], - "squeeze.json": [ - "88890fe87029ad9b8a120d40af6f40ed818d725a", - [] - ], - "sub.json": [ - "4a3096313e1a45f41a8b426fc65ec9f0b47b89c6", - [] - ], - "tan.json": [ - "857e2b65059e0b4868b9cfe3987d5d4ae135dce7", - [] - ], - "tanh.json": [ - "9e13b62472a93d0261890b7cc07e41a7b4909ee6", - [] - ], - "transpose.json": [ - "03092031d9c407fe0df1009dc49b3aa138d3de38", - [] - ], - "where.json": [ - "ce3cda4bad3a079558c2e15a3272670cc01af0f2", - [] - ] - }, "utils.js": [ - "0e2687ec22bac4a4dea3dbe938f9fc386a0a6a4e", + "e4a1e898598e6190da25fbdfe53b483af844d08c", + [] + ], + "utils_validation.js": [ + "856eea6cb3fc16f1e9316e795d4ad8485d2871b3", [] ] } @@ -485838,11 +494422,11 @@ [] ], "RTCDTMFSender-helper.js": [ - "4316c3804a28f44d1f86af97c86e478570b2437a", + "23465603f4d77f0bf31f9fd39eb2e3dcabe21f1f", [] ], "RTCPeerConnection-helper.js": [ - "5d188328e80331748677d77832eb44c3018cc5ef", + "cd27b033d3b65020d31f9750e310b59aaa00a8ea", [] ], "RTCPeerConnection-perfect-negotiation-helper.js": [ @@ -485854,11 +494438,15 @@ [] ], "RTCRtpParameters-helper.js": [ - "dd8ae0cc06d28b29865e61c5365600cbed465f35", + "8a6d7f63529c7d6d78f5d17459c305f99c7bfe21", [] ], - "RTCStats-helper.js": [ - "29d4940a8ae80ea4acc9929bccd71de3b5b83b80", + "RTCRtpReceiver-jitterBufferTarget-stats-helper.js": [ + "31d80926d33b559fd31c5da4b0dea8d18e3ab34c", + [] + ], + "WEB_FEATURES.yml": [ + "117b04f81fe45dc7935177063c7177ac00e06fc0", [] ], "coverage": { @@ -485897,13 +494485,13 @@ [] ], "webrtc-test-helpers.sub.js": [ - "48882b30ccc263c6fb72e9e910d3dbe9f06d8141", + "8a46302668a2d6d443728122942bbef0cfe9a5f8", [] ] }, "simulcast": { "simulcast.js": [ - "1886531023d6a98c99c517a3ef0f4421714e92f1", + "e0b90d8ac37bff19aed1c208bc84e2b649861d38", [] ] }, @@ -485918,7 +494506,7 @@ [] ], "sdp.js": [ - "a7538a671e7c351328afb30bd621bd2dd17ba29a", + "d464ee168ee5d1b6351d60ee60f520c0b2bfb19d", [] ] } @@ -485948,35 +494536,33 @@ }, "webrtc-encoded-transform": { "META.yml": [ - "6365c8d16af94db42f2948a50c41c43bd296ca5f", + "8947732b6fbf4a1799b6d3a73e69d5e29e2f7daa", + [] + ], + "RTCRtpScriptTransform-bad-chunk-worker.js": [ + "cc9dee42ac98211bee90b51bd9dc129122d549fd", [] ], - "RTCPeerConnection-insertable-streams.js": [ - "0bf820acde48058711163708b05d02e89501546b", + "RTCRtpScriptTransform-encoded-transform-drop-frames-worker.js": [ + "617dd47f97d32f94a548cc4b1c1e65625a066c24", [] ], - "RTCPeerConnection-sender-worker-single-frame.js": [ - "c943dafe5b154314132124e1d563df2a00b2aaf7", + "RTCRtpScriptTransform-encoded-transform-no-write-worker.js": [ + "b98b857ad1c05f6b3b3ed9346d48f4f068799be4", [] ], - "RTCPeerConnection-worker-transform.js": [ - "36e3949e4d584019a0d921858cc75ee7f6bd25c1", + "RTCRtpScriptTransform-encoded-transform-worker.js": [ + "3faafd26673819ca0850f26d9793a056f8cc2d2f", + [] + ], + "RTCRtpScriptTransform-sender-worker-single-frame.js": [ + "06fa607635a68aa0e866cbb83b47dc0b0ddf6f86", [] ], "helper.js": [ "d4cec39ffce0f58b76da653c78dc384f22ffa43d", [] ], - "resources": { - "blank.html": [ - "a3c3a4689a62b45b1e429f6b7a94690e556a1259", - [] - ], - "serviceworker-failure.js": [ - "e7aa8e11be396cc32eda592ae9618391ad6fee40", - [] - ] - }, "routines.js": [ "0d3e2b9b286b5878204371891a6ec5b7ff5a867c", [] @@ -486012,7 +494598,31 @@ "sframe-transform-worker.js": [ "617cf0a38aa0859fa6ee8af01fdab5f94b5beb18", [] - ] + ], + "tentative": { + "RTCPeerConnection-insertable-streams.js": [ + "0bf820acde48058711163708b05d02e89501546b", + [] + ], + "RTCPeerConnection-sender-worker-single-frame.js": [ + "c943dafe5b154314132124e1d563df2a00b2aaf7", + [] + ], + "RTCPeerConnection-worker-transform.js": [ + "36e3949e4d584019a0d921858cc75ee7f6bd25c1", + [] + ], + "resources": { + "blank.html": [ + "a3c3a4689a62b45b1e429f6b7a94690e556a1259", + [] + ], + "serviceworker-failure.js": [ + "e7aa8e11be396cc32eda592ae9618391ad6fee40", + [] + ] + } + } }, "webrtc-extensions": { "META.yml": [ @@ -486064,7 +494674,7 @@ [] ], "README.md": [ - "2b693728948d898c9c3f81b7e1f2bc7959fa868f", + "4653f415470ea4c093f3fc9c5b31134086914be7", [] ] }, @@ -486074,7 +494684,7 @@ [] ], "svc-helper.js": [ - "e73ccfa750255ab633c10372f272465301293139", + "6a357f085bcd2b713ca9179a40d6bf80c49c69b4", [] ] }, @@ -486105,23 +494715,23 @@ }, "handlers": { "basic_auth_wsh.py": [ - "72e920a1d82c7ef78907d17810912128598b6ca2", + "84f42711b209005bd29f06e667c7520e190bc1da", [] ], "delayed-passive-close_wsh.py": [ - "7d55b88ecc6db7fd9d3fb7a9722e030d926c807d", + "5da09fd059edc7f522ded06d89a06d2235892e8b", [] ], "echo-cookie_wsh.py": [ - "98620b65524dfcf56914f45db0d2809ef5fd66b5", + "746eafd2cd8c06e976dcf0088662f0ebd49b4cca", [] ], "echo-query_v13_wsh.py": [ - "d670e6e66053f155e8fd6153bf91ddddee076d68", + "7fb4cfe593cd31b5e894ac20c0c5cca760ac44de", [] ], "echo-query_wsh.py": [ - "39219134952272f34518a2458a0bb5c902c7cd4a", + "88696175d239ea45d3166623c3221bc5b0649ee3", [] ], "echo_close_data_wsh.py": [ @@ -486133,15 +494743,15 @@ [] ], "echo_raw_wsh.py": [ - "e1fc26608ff6544f8d73c91697c911b2ca25178f", + "5b434cf26659ee67906003d76a1cd2d56cf71f12", [] ], "echo_wsh.py": [ - "7367b70af16769e8b2a9c070d628ea29bc5ecaa7", + "35a0a6f6ea2d4ae1d82ca8125de8e247c90711bc", [] ], "empty-message_wsh.py": [ - "0eb107f0b12b8b66ad7e35162d447b93ac7a3e91", + "f791ee1842e502c335c41f3df5df59ce257e4459", [] ], "handshake_no_extensions_wsh.py": [ @@ -486165,19 +494775,23 @@ [] ], "msg_channel_wsh.py": [ - "7a66646f2bcbc2860f6f3aff1bf74ba93cb1db9e", + "a45dd99164017f52673d33c50f1a97ab4db5f40b", [] ], "origin_wsh.py": [ - "ce5f3a7f6ae7a7f816471e869584ab2eb01632e5", + "b833db6381482fe335748b9eab6c21d8c8c5eb00", + [] + ], + "passive-close-abort_wsh.py": [ + "6f8a3d1bf17dd0af69741c54a27f24b2d9a09e23", [] ], "protocol_array_wsh.py": [ - "be24ee01fd9aabd0722b7a498289a26eeb532037", + "d8e1229cdb1a5090fea70688f1e2b67d1fa47eef", [] ], "protocol_wsh.py": [ - "10bdf33205b5b759264f038d8b3c7dcf25f47453", + "3a6aeb400bbbc61f717a0621558f6adc175645f6", [] ], "receive-backpressure_wsh.py": [ @@ -486189,7 +494803,11 @@ [] ], "referrer_wsh.py": [ - "9df652dc3cbf12f6364462839e340848dec8e08f", + "2d183d55869ed13e1ed0c41a114f8afffd8f5ec6", + [] + ], + "remote-close_wsh.py": [ + "c94870ad87cbcb62b4c99376cf0fdadb997c829f", [] ], "send-backpressure_wsh.py": [ @@ -486213,19 +494831,19 @@ [] ], "simple_handshake_wsh.py": [ - "ad466877fe045be36bfebdcfb30026f2245deae9", + "23893c95f1c9fe343a5c89aae24e01eb6aab3c9c", [] ], "sleep_10_v13_wsh.py": [ - "bdef2f2afdd63d9a655ece424b10dec08bbe6314", + "4faa42aa4524723406b8bbe6ce7b60e715ab6a20", [] ], "stash_responder_blocking_wsh.py": [ - "10ecdfe0da94cfdefed4b4516626c5bde48c1640", + "968156868ae69739b19f975ce408eab1c3e682c0", [] ], "stash_responder_wsh.py": [ - "d18ad3bc967e7d8fb19cecc916408b5d303594c1", + "b401997480fe2ef4eaff588e48f29ddde699f766", [] ], "wrong_accept_key_wsh.py": [ @@ -486465,6 +495083,10 @@ "server-connection-close.py": [ "9721c67170c832c9c0d6179c06744d31117289ae", [] + ], + "server-read-then-close.py": [ + "7f992e0dcca3ae62277cac0fa39355fce3e57be0", + [] ] }, "resources": { @@ -486569,12 +495191,12 @@ "ce12691caebf51e8c6726e19908add2ef861160e", [] ], - "WEB_FEATURES.yml": [ - "5b5544deec225d8e064d9dd8a1124e5622276632", - [] - ], "api": { "VTTCue": { + "WEB_FEATURES.yml": [ + "bb2aa7cddd6d6e0c02c0e8c6bbe15e68f089aee6", + [] + ], "categories.json": [ "eaa5ef17fc98ed74e0a3dd7f8c20365416aa10d4", [] @@ -486584,6 +495206,12 @@ [] ] }, + "VTTRegion": { + "WEB_FEATURES.yml": [ + "c80f6b830b62af98c197f1bfe38a8b47a844b457", + [] + ] + }, "categories.json": [ "7ce5b13f72e8cc49f45401d87d196d146dd63993", [] @@ -486632,6 +495260,12 @@ "48d7ab20bf8051e025f5370dcb95864998c6d68e", [] ] + }, + "tests": { + "WEB_FEATURES.yml": [ + "5b5544deec225d8e064d9dd8a1124e5622276632", + [] + ] } }, "file-parsing": { @@ -486639,6 +495273,10 @@ "4cff0af95209d9744311e497aad2dd76c4f4dd95", [] ], + "WEB_FEATURES.yml": [ + "32c42f69ed549960218a3ba78b3f8105c9aed4af", + [] + ], "categories.json": [ "e78106cee1ed0af79a1c4d0d48cb35a676caa4aa", [] @@ -486842,6 +495480,10 @@ ] }, "tests": { + "WEB_FEATURES.yml": [ + "b85b127d102118dfe52f85f4ff2e4c98cc74d021", + [] + ], "categories.json": [ "eac23f67ddf41f31272538915fb1ec04547b038b", [] @@ -487048,6 +495690,10 @@ "3f155dd0ade2fdfecfa2122faf1bef041f35ca39", [] ], + "WEB_FEATURES.yml": [ + "5b5544deec225d8e064d9dd8a1124e5622276632", + [] + ], "align_center-ref.html": [ "90f011dc576bb7a9b40226953cfcb63c759e1a91", [] @@ -487345,6 +495991,10 @@ [] ], "regions": { + "WEB_FEATURES.yml": [ + "c80f6b830b62af98c197f1bfe38a8b47a844b457", + [] + ], "basic-ref.html": [ "e73018cb9e219343bc8c3462f4f328bda1ac68de", [] @@ -487520,6 +496170,10 @@ ] }, "cue-region": { + "WEB_FEATURES.yml": [ + "c80f6b830b62af98c197f1bfe38a8b47a844b457", + [] + ], "font_properties-ref.html": [ "669342072a0c3a855f46391aab089ae63a15deff", [] @@ -487532,6 +496186,10 @@ } }, "cue-region_function": { + "WEB_FEATURES.yml": [ + "c80f6b830b62af98c197f1bfe38a8b47a844b457", + [] + ], "font_properties-ref.html": [ "6c027c28a23c926334e6cddf428a1bcbbd63b431", [] @@ -488601,7 +497259,7 @@ [] ], "webxr_test_constants_fake_depth.js": [ - "36890d398ded9915ee502b0d2f1ba2fcb388b60d", + "b350db3a27a11af9169c97068771bda496683fd7", [] ], "webxr_test_constants_fake_world.js": [ @@ -488609,7 +497267,7 @@ [] ], "webxr_util.js": [ - "625f76450e23dc509553a71b5a0157bccf91f8f6", + "824aee5700a15d518a113bbbcaab7bdf92d187e2", [] ] }, @@ -488629,7 +497287,7 @@ ], "resources": { "helpers.js": [ - "ee77fd8d30d713eb5e764db51c0edd1429e0f1e8", + "9a2b90549ba91e39be49ad4efe622fbe290c3a12", [] ] } @@ -488643,6 +497301,14 @@ "58ee7cca1ab3e9856e380eaccde042d5700c2603", [] ], + "Worker-creation-happens-in-parallel.https.html.headers": [ + "4b06ac7cc63e8af6f7d6a882b960184c9a4ea281", + [] + ], + "Worker-postMessage-happens-in-parallel.https.html.headers": [ + "4b06ac7cc63e8af6f7d6a882b960184c9a4ea281", + [] + ], "baseurl": { "beta": { "import.py": [ @@ -489114,6 +497780,10 @@ } }, "modules": { + "WEB_FEATURES.yml": [ + "ab73efc0d041258d2e778479391523c2960156e8", + [] + ], "dedicated-worker-options-credentials.html.headers": [ "8da851ab7363870014a32121a3cd87979aa2099d", [] @@ -489385,6 +498055,42 @@ "63b60e490f47f4db77d33d7a4ca2f5b9a4181de8", [] ], + "same-site-cookies": { + "resources": { + "get_cookies.py": [ + "61b138321d02f1507c18c48456f306c6cf5859db", + [] + ], + "get_cookies_redirect.py": [ + "0f3a647a2b88a9107c36cd8303b03cc062089f04", + [] + ], + "iframe-iframe.html": [ + "efd4f3a65468e8627b6369d2794f4e8196e22c4a", + [] + ], + "iframe.sub.html": [ + "c4724d01d2f5f02481f4047f2bb61955e81fb61d", + [] + ], + "set_cookies.py": [ + "c721cc51f72dc853f3396d097c8cb0fa4fde95f1", + [] + ], + "util.js": [ + "67d9ee5c06bfd23f4a0e1cf28089318866f8c071", + [] + ], + "worker.py": [ + "8440c2d70ea173ccc4b651eff460a5b282c3ca40", + [] + ], + "worker_redirect.py": [ + "633a3ae67efa2cf2ffe0d01ff7cde6bb8fb4b206", + [] + ] + } + }, "semantics": { "encodings": { "001.js": [ @@ -489570,10 +498276,26 @@ "f0b8efe46bd8c93e5c2af1e239139faae76a16be", [] ], + "Worker-creation-happens-in-parallel.js": [ + "1e68302a0fc40c592be4a95387bfc315bd79d261", + [] + ], + "Worker-creation-happens-in-parallel.js.headers": [ + "8249c49c340f5e13902ff91deeacd79c3f148c45", + [] + ], "Worker-messageport.js": [ "1e01b0a52b586b00cbbb28b2352959f7fa150e39", [] ], + "Worker-postMessage-happens-in-parallel.js": [ + "48b4c34fe3a6c55772802d23e570544af9314f68", + [] + ], + "Worker-postMessage-happens-in-parallel.js.headers": [ + "8249c49c340f5e13902ff91deeacd79c3f148c45", + [] + ], "Worker-run-forever-during-dynamic-import.js": [ "62840bd5b4ffad5e9b122a9971f271c1d9604abe", [] @@ -489647,7 +498369,7 @@ [] ], "WorkerNavigator.js": [ - "76834e16c7ad19f57cb9fd9329375ec092910b7c", + "4258384ac444758694f7f7cba78548a4c7fe6f09", [] ], "WorkerSendingPerformanceNow.js": [ @@ -489925,7 +498647,7 @@ } }, "wpt": [ - "e0abacd85daa2974b16264a5dd1ecd33cb142c68", + "5712156129ffd04ed104f3790cf4e96a5d0b7936", [] ], "wpt.py": [ @@ -490456,7 +499178,7 @@ "testharness": { "FileAPI": { "Blob-methods-from-detached-frame.html": [ - "37efd5ed2016b76f5d4047d6858225330871a20a", + "78f08e8270e2f65deff7949bb1ba0bf7b3ab1151", [ null, {} @@ -490464,7 +499186,7 @@ ], "BlobURL": { "cross-partition.tentative.https.html": [ - "c75ce07d054eb79d048373ff003a3f385a813596", + "11d9787b8873a8b77c81d80826009236336a88a3", [ null, { @@ -490530,6 +499252,39 @@ } ] ], + "Blob-bytes.any.js": [ + "5173b3715c8054ff724899c336fea5c3d221a0d2", + [ + "FileAPI/blob/Blob-bytes.any.html", + { + "script_metadata": [ + [ + "title", + "Blob bytes()" + ], + [ + "script", + "../support/Blob.js" + ] + ] + } + ], + [ + "FileAPI/blob/Blob-bytes.any.worker.html", + { + "script_metadata": [ + [ + "title", + "Blob bytes()" + ], + [ + "script", + "../support/Blob.js" + ] + ] + } + ] + ], "Blob-constructor-dom.window.js": [ "4fd4a43ec4bea7ad12ce6a0c95b7ea52f56637f0", [ @@ -490556,7 +499311,7 @@ ] ], "Blob-constructor.any.js": [ - "d16f760caeeb2d5410b3f751f86f5ad5f8ccf76d", + "57a85624340e56c933676615fa8994bbb8b6b0c9", [ "FileAPI/blob/Blob-constructor.any.html", { @@ -491515,7 +500270,7 @@ ] ], "back-forward-cache-open-connection.window.js": [ - "cee7287a0bbc1ca229ab7b6127f17b738bd0e6ab", + "d3355f2a733ee213f11c4368b1f027b97b19e37a", [ "IndexedDB/back-forward-cache-open-connection.window.html", { @@ -491554,7 +500309,7 @@ ] ], "back-forward-cache-open-transaction.window.js": [ - "50d3c1f0d121d75604deb12433b28525679aa64f", + "fca9cb2fb7895d4f363150af8bf64269023ba3ce", [ "IndexedDB/back-forward-cache-open-transaction.window.html", { @@ -491588,32 +500343,162 @@ } ] ], - "bigint_value.htm": [ - "acdeebb76f50ae4cbee33a4654af25c270004bcc", + "bindings-inject-keys-bypass.any.js": [ + "a32a7a6633883c122ae7774e74999e5d7844de49", [ - null, - {} - ] - ], - "bindings-inject-keys-bypass-setters.html": [ - "e67377fb77f9c5d7ab16104490d0cb2b1f64975e", + "IndexedDB/bindings-inject-keys-bypass.any.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "IndexedDB: ES bindings - Inject a key into a value - Keys bypass setters" + ], + [ + "script", + "resources/support-promises.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "bindings-inject-values-bypass-chain.html": [ - "73505edf1ddc64d716d2ffe0b434615513273a08", + "IndexedDB/bindings-inject-keys-bypass.any.serviceworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "IndexedDB: ES bindings - Inject a key into a value - Keys bypass setters" + ], + [ + "script", + "resources/support-promises.js" + ] + ] + } + ], [ - null, - {} + "IndexedDB/bindings-inject-keys-bypass.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "IndexedDB: ES bindings - Inject a key into a value - Keys bypass setters" + ], + [ + "script", + "resources/support-promises.js" + ] + ] + } + ], + [ + "IndexedDB/bindings-inject-keys-bypass.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "IndexedDB: ES bindings - Inject a key into a value - Keys bypass setters" + ], + [ + "script", + "resources/support-promises.js" + ] + ] + } ] ], - "bindings-inject-values-bypass-setters.html": [ - "6c4fb93bfd99abcf393b0a6c1319204510d9dcf3", + "bindings-inject-values-bypass.any.js": [ + "03d488480d7e44e905069947593d9c02a94e41ba", [ - null, - {} + "IndexedDB/bindings-inject-values-bypass.any.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "IndexedDB: ES bindings - Inject a key into a value - Values bypass chain and setters" + ], + [ + "script", + "resources/support-promises.js" + ] + ] + } + ], + [ + "IndexedDB/bindings-inject-values-bypass.any.serviceworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "IndexedDB: ES bindings - Inject a key into a value - Values bypass chain and setters" + ], + [ + "script", + "resources/support-promises.js" + ] + ] + } + ], + [ + "IndexedDB/bindings-inject-values-bypass.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "IndexedDB: ES bindings - Inject a key into a value - Values bypass chain and setters" + ], + [ + "script", + "resources/support-promises.js" + ] + ] + } + ], + [ + "IndexedDB/bindings-inject-values-bypass.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "IndexedDB: ES bindings - Inject a key into a value - Values bypass chain and setters" + ], + [ + "script", + "resources/support-promises.js" + ] + ] + } ] ], "blob-composite-blob-reads.any.js": [ @@ -491955,14 +500840,14 @@ ] ], "idb-binary-key-detached.htm": [ - "ac6fc2ef98021be045338302b08151bd13535575", + "a4ce3fbce00917b747c4dd40655cb2d6aa55c63d", [ null, {} ] ], "idb-binary-key-roundtrip.htm": [ - "de3889a71ca08f7a87d65ac1ddfc8ba74e8a2e14", + "d1bf4016f93ec1336b7bde8b9d8e8cbffa833f54", [ null, { @@ -492020,22 +500905,22 @@ } ] ], - "idb-partitioned-basic.tentative.sub.html": [ - "16bdacf6c6d9713c2765ee25b637deff869ede5f", + "idb-partitioned-basic.sub.html": [ + "de7953d83eeb35c5365f59911faa28b5afa05a5f", [ null, {} ] ], - "idb-partitioned-coverage.tentative.sub.html": [ - "ae0884cb527dee6ca174c2f4b717d455220237a9", + "idb-partitioned-coverage.sub.html": [ + "2ca3876ebe34be4e9089df1e3b133cdc69bcac9b", [ null, {} ] ], - "idb-partitioned-persistence.tentative.sub.html": [ - "65a0a085e22af1c462977c6f9559d71c01822dd1", + "idb-partitioned-persistence.sub.html": [ + "fce632ba773887e524bca1c7651b3bcc5ed9694c", [ null, {} @@ -492236,95 +501121,162 @@ {} ] ], - "idbcursor_advance_index.htm": [ - "4c0c0b697a30149b17a20705232040a9051f88ba", + "idbcursor_advance_index.any.js": [ + "c928bdabd5f589b3c9613721c44850ca39e25bf2", [ - null, - {} - ] - ], - "idbcursor_advance_index2.htm": [ - "04842f71c31410a282706b612c6160c4cd06649d", - [ - null, - {} - ] - ], - "idbcursor_advance_index3.htm": [ - "a797286e7c1a3be0a676e9f9102d8e0815e3a919", - [ - null, - {} - ] - ], - "idbcursor_advance_index5.htm": [ - "5e60aefd5a556412f295322f09d85bcab2c55c77", - [ - null, - {} - ] - ], - "idbcursor_advance_index6.htm": [ - "3a1168f57a5af9f9c209b755b97bb0ca1ce6cedd", - [ - null, - {} - ] - ], - "idbcursor_advance_index7.htm": [ - "f5ecc6144c234f056786a6f165c72979ecaf8ea2", - [ - null, - {} - ] - ], - "idbcursor_advance_index8.htm": [ - "1f9ff9c453ae393ad77b2c111c8208cc2e3d7926", + "IndexedDB/idbcursor_advance_index.any.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "IDBCursor.advance()" + ], + [ + "script", + "resources/support.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "idbcursor_advance_index9.htm": [ - "1756419c6d254f072e198b4cd96c46260314a751", + "IndexedDB/idbcursor_advance_index.any.serviceworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "IDBCursor.advance()" + ], + [ + "script", + "resources/support.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "idbcursor_advance_objectstore.htm": [ - "c9226c5667a61c0d852d0eaaf838a2d5ec1fcc92", + "IndexedDB/idbcursor_advance_index.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "IDBCursor.advance()" + ], + [ + "script", + "resources/support.js" + ] + ] + } + ], [ - null, - {} + "IndexedDB/idbcursor_advance_index.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "IDBCursor.advance()" + ], + [ + "script", + "resources/support.js" + ] + ] + } ] ], - "idbcursor_advance_objectstore2.htm": [ - "3d46f0c6755f5351a84c65a5cd4556a3d57e5fa6", + "idbcursor_advance_objectstore.any.js": [ + "5ce345e8b178221b86c8db5fbb51aa6727a86353", [ - null, - {} - ] - ], - "idbcursor_advance_objectstore3.htm": [ - "c91e4acaab55caa9f50e943b5bcf021f31daa203", + "IndexedDB/idbcursor_advance_objectstore.any.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "IDBCursor.advance()" + ], + [ + "script", + "resources/support.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "idbcursor_advance_objectstore4.htm": [ - "766a56daf41c27af9dc793c12aabc0148b0d4e4e", + "IndexedDB/idbcursor_advance_objectstore.any.serviceworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "IDBCursor.advance()" + ], + [ + "script", + "resources/support.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "idbcursor_advance_objectstore5.htm": [ - "2c6fa640aed149039e559de04c4a1ae14dc4448a", + "IndexedDB/idbcursor_advance_objectstore.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "IDBCursor.advance()" + ], + [ + "script", + "resources/support.js" + ] + ] + } + ], [ - null, - {} + "IndexedDB/idbcursor_advance_objectstore.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "IDBCursor.advance()" + ], + [ + "script", + "resources/support.js" + ] + ] + } ] ], "idbcursor_continue_delete_objectstore.htm": [ @@ -492334,60 +501286,83 @@ {} ] ], - "idbcursor_continue_index.htm": [ - "cfc0ae3fe9f9f909b3416f3226f36679402fe77d", - [ - null, - {} - ] - ], - "idbcursor_continue_index2.htm": [ - "56b9218fd199f9c5704891689e9e19c2e0b9a42e", - [ - null, - {} - ] - ], - "idbcursor_continue_index3.htm": [ - "b9f594540288054df9c9c7c76f4d1ce7a7f3a49b", - [ - null, - {} - ] - ], - "idbcursor_continue_index4.htm": [ - "f851b87ddf0bc880079fea4b24fa8ad48c38b5b7", - [ - null, - {} - ] - ], - "idbcursor_continue_index5.htm": [ - "3e70873bbbdbacce7264d6eecebccf84d9c7360b", + "idbcursor_continue_index.any.js": [ + "2ac55bce9cb109ea9ae78fa83e1fe5cd8a9b0c36", [ - null, - {} - ] - ], - "idbcursor_continue_index6.htm": [ - "1933bfcf990ba2e40605c51dd22d5ab5f8faaaab", + "IndexedDB/idbcursor_continue_index.any.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "IDBCursor.continue()" + ], + [ + "script", + "resources/support.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "idbcursor_continue_index7.htm": [ - "61bfe85b2749e8d21629a973e4015b18aace6201", + "IndexedDB/idbcursor_continue_index.any.serviceworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "IDBCursor.continue()" + ], + [ + "script", + "resources/support.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "idbcursor_continue_index8.htm": [ - "e4cbe7261f3957b3d3dd733a3fcd41e5a54d2d92", + "IndexedDB/idbcursor_continue_index.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "IDBCursor.continue()" + ], + [ + "script", + "resources/support.js" + ] + ] + } + ], [ - null, - {} + "IndexedDB/idbcursor_continue_index.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "IDBCursor.continue()" + ], + [ + "script", + "resources/support.js" + ] + ] + } ] ], "idbcursor_continue_invalid.htm": [ @@ -492397,116 +501372,241 @@ {} ] ], - "idbcursor_continue_objectstore.htm": [ - "f82aa99949d9e9ed47b50c05bfea994dbca2bbb0", - [ - null, - {} - ] - ], - "idbcursor_continue_objectstore2.htm": [ - "8b79c64615bc4dd8d0e0d2b30056e86a171ca5c1", - [ - null, - {} - ] - ], - "idbcursor_continue_objectstore3.htm": [ - "7d96d7fec9e4eeedbc7273ff9ac87370894da325", - [ - null, - {} - ] - ], - "idbcursor_continue_objectstore4.htm": [ - "5056a7364fdb568196ee0b7e488b3248397bc9cd", - [ - null, - {} - ] - ], - "idbcursor_continue_objectstore5.htm": [ - "a0c3663ab401913b00ea2dc14199af2b210df372", + "idbcursor_continue_objectstore.any.js": [ + "76e1c7afe79c966cec9cbbf8632dcda807f32ff6", [ - null, - {} - ] - ], - "idbcursor_continue_objectstore6.htm": [ - "7a2b50752ce1e8862c72b8d6246616a0f6e3c20f", + "IndexedDB/idbcursor_continue_objectstore.any.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "IDBCursor.continue() - object store" + ], + [ + "script", + "resources/support.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "idbcursor_delete_index.htm": [ - "6d1b4e35c97e655dad3ff51f7100f315ecc5f894", + "IndexedDB/idbcursor_continue_objectstore.any.serviceworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "IDBCursor.continue() - object store" + ], + [ + "script", + "resources/support.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "idbcursor_delete_index2.htm": [ - "054432d65dcfd555fecc64c2c2339d39d876fb1c", + "IndexedDB/idbcursor_continue_objectstore.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "IDBCursor.continue() - object store" + ], + [ + "script", + "resources/support.js" + ] + ] + } + ], [ - null, - {} + "IndexedDB/idbcursor_continue_objectstore.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "IDBCursor.continue() - object store" + ], + [ + "script", + "resources/support.js" + ] + ] + } ] ], - "idbcursor_delete_index3.htm": [ - "afe945e646277bc39f96b8a99be171bb5a6a361b", + "idbcursor_delete_index.any.js": [ + "a4d0614820a188ec50b7490d2d2b2a35f4c358ec", [ - null, - {} - ] - ], - "idbcursor_delete_index4.htm": [ - "8eb6915b885879be61c935b5cdda64ab9d55ea15", + "IndexedDB/idbcursor_delete_index.any.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "IDBCursor.delete() - index" + ], + [ + "script", + "resources/support.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "idbcursor_delete_index5.htm": [ - "76ce6d0e50e10dfe86bcabbb45c05cb9158ebfa5", + "IndexedDB/idbcursor_delete_index.any.serviceworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "IDBCursor.delete() - index" + ], + [ + "script", + "resources/support.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "idbcursor_delete_objectstore.htm": [ - "f79206295a6a7b01ed028c877a17d94ba6cbe0be", + "IndexedDB/idbcursor_delete_index.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "IDBCursor.delete() - index" + ], + [ + "script", + "resources/support.js" + ] + ] + } + ], [ - null, - {} + "IndexedDB/idbcursor_delete_index.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "IDBCursor.delete() - index" + ], + [ + "script", + "resources/support.js" + ] + ] + } ] ], - "idbcursor_delete_objectstore2.htm": [ - "ef3c1e57a250767f90f7301a1b0ca1332639dee2", + "idbcursor_delete_objectstore.any.js": [ + "0aad5dcfb7737808f3f00219f5fc5612d9e25e4d", [ - null, - {} - ] - ], - "idbcursor_delete_objectstore3.htm": [ - "4a4ea736c41077d5fc4ed1ab86c4e80be67d5fec", + "IndexedDB/idbcursor_delete_objectstore.any.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "IDBCursor.delete() - object store" + ], + [ + "script", + "resources/support.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "idbcursor_delete_objectstore4.htm": [ - "5ecdb4bf1790b8e7ec19548012b8f1e652948c4a", + "IndexedDB/idbcursor_delete_objectstore.any.serviceworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "IDBCursor.delete() - object store" + ], + [ + "script", + "resources/support.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "idbcursor_delete_objectstore5.htm": [ - "e17ade88f5769c7b1f810a16f8273cb36297cc9f", + "IndexedDB/idbcursor_delete_objectstore.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "IDBCursor.delete() - object store" + ], + [ + "script", + "resources/support.js" + ] + ] + } + ], [ - null, - {} + "IndexedDB/idbcursor_delete_objectstore.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "IDBCursor.delete() - object store" + ], + [ + "script", + "resources/support.js" + ] + ] + } ] ], "idbcursor_iterating.htm": [ @@ -492818,60 +501918,162 @@ {} ] ], - "idbdatabase_deleteObjectStore.htm": [ - "e3f6a775c56d9de04da6261d7b6e189cb1b2139d", + "idbdatabase_deleteObjectStore.any.js": [ + "5288891bd75fdb1d4e593910c55a234df9190db0", [ - null, - {} - ] - ], - "idbdatabase_deleteObjectStore3.htm": [ - "3ddbe8ec62b42f24f54445ae3b3cec25793ee3a4", + "IndexedDB/idbdatabase_deleteObjectStore.any.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "IDBDatabase.deleteObjectStore()" + ], + [ + "script", + "resources/support.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "idbdatabase_deleteObjectStore4-not_reused.htm": [ - "0a5e1b83cf1676149a1c547332264f682edf2572", + "IndexedDB/idbdatabase_deleteObjectStore.any.serviceworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "IDBDatabase.deleteObjectStore()" + ], + [ + "script", + "resources/support.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "idbdatabase_transaction.htm": [ - "8e8264f8eab9ab2f890e38cfe9c18b7a3f1b7428", + "IndexedDB/idbdatabase_deleteObjectStore.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "IDBDatabase.deleteObjectStore()" + ], + [ + "script", + "resources/support.js" + ] + ] + } + ], [ - null, - {} + "IndexedDB/idbdatabase_deleteObjectStore.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "IDBDatabase.deleteObjectStore()" + ], + [ + "script", + "resources/support.js" + ] + ] + } ] ], - "idbdatabase_transaction2.htm": [ - "37b11229194debd6f13cc645e8d0df64a51c14d8", + "idbdatabase_transaction.any.js": [ + "17859ec99e68f5191f56597014a74943bc28c86f", [ - null, - {} - ] - ], - "idbdatabase_transaction3.htm": [ - "1eea31f764a7736b9de8152e500e52545d85a1f2", + "IndexedDB/idbdatabase_transaction.any.html", + { + "script_metadata": [ + [ + "title", + "IDBDatabase.transaction()" + ], + [ + "global", + "window,worker" + ], + [ + "script", + "resources/support.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "idbdatabase_transaction4.htm": [ - "3a164c25f59ced647599d3cc33bdcd063b9edff9", + "IndexedDB/idbdatabase_transaction.any.serviceworker.html", + { + "script_metadata": [ + [ + "title", + "IDBDatabase.transaction()" + ], + [ + "global", + "window,worker" + ], + [ + "script", + "resources/support.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "idbdatabase_transaction5.htm": [ - "451939731faa24afe7a7a1d703b5d5eadbd54062", + "IndexedDB/idbdatabase_transaction.any.sharedworker.html", + { + "script_metadata": [ + [ + "title", + "IDBDatabase.transaction()" + ], + [ + "global", + "window,worker" + ], + [ + "script", + "resources/support.js" + ] + ] + } + ], [ - null, - {} + "IndexedDB/idbdatabase_transaction.any.worker.html", + { + "script_metadata": [ + [ + "title", + "IDBDatabase.transaction()" + ], + [ + "global", + "window,worker" + ], + [ + "script", + "resources/support.js" + ] + ] + } ] ], "idbfactory-databases-opaque-origin.html": [ @@ -492986,88 +502188,83 @@ {} ] ], - "idbfactory_open.htm": [ - "8e0b2412c9199c9d5542e2184774af04317b431b", - [ - null, - {} - ] - ], - "idbfactory_open10.htm": [ - "6340bd3cdf7a8df0d7c3643381719d38ae55711c", - [ - null, - {} - ] - ], - "idbfactory_open11.htm": [ - "d4012bea55bcf4ecc9e852f4cdd3cbbf2453d9eb", - [ - null, - {} - ] - ], - "idbfactory_open12.htm": [ - "ee713ef352073b6dc19346a931593c3e5e547233", - [ - null, - {} - ] - ], - "idbfactory_open2.htm": [ - "00ebbd3d0f0d2614a1281d3de03586a122ef327d", - [ - null, - {} - ] - ], - "idbfactory_open3.htm": [ - "19cd5c5254dd1b40d023c5f45f4a02c184f5dc3d", - [ - null, - {} - ] - ], - "idbfactory_open4.htm": [ - "6983ca0737f029f34dd19c0e0afbcdbf5ef5c0b8", - [ - null, - {} - ] - ], - "idbfactory_open5.htm": [ - "f6ddb17001a4bdeb99faf01bbbf6afcbdc6ab5e0", - [ - null, - {} - ] - ], - "idbfactory_open6.htm": [ - "2b2cb334e46875e9d7b2b56eeeab12fab0678011", + "idbfactory_open.any.js": [ + "edc5d3c8c6c0e9dabeaa814bc10acef0be9282d9", [ - null, - {} - ] - ], - "idbfactory_open7.htm": [ - "ccb3d0674893ce4b4066405c6761c160a47ade28", + "IndexedDB/idbfactory_open.any.html", + { + "script_metadata": [ + [ + "title", + "IDBFactory.open()" + ], + [ + "global", + "window,worker" + ], + [ + "script", + "resources/support.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "idbfactory_open8.htm": [ - "04c57df2ed43aa70d9cf54b6522630ed8cea3a36", + "IndexedDB/idbfactory_open.any.serviceworker.html", + { + "script_metadata": [ + [ + "title", + "IDBFactory.open()" + ], + [ + "global", + "window,worker" + ], + [ + "script", + "resources/support.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "idbfactory_open9.htm": [ - "36a9ef814cb121dd70da5bb265b3b6a6e15001c8", + "IndexedDB/idbfactory_open.any.sharedworker.html", + { + "script_metadata": [ + [ + "title", + "IDBFactory.open()" + ], + [ + "global", + "window,worker" + ], + [ + "script", + "resources/support.js" + ] + ] + } + ], [ - null, - {} + "IndexedDB/idbfactory_open.any.worker.html", + { + "script_metadata": [ + [ + "title", + "IDBFactory.open()" + ], + [ + "global", + "window,worker" + ], + [ + "script", + "resources/support.js" + ] + ] + } ] ], "idbindex-cross-realm-methods.html": [ @@ -493158,158 +502355,399 @@ {} ] ], - "idbindex_count.htm": [ - "5b45b5223bdaccd24a0974dfcb7ebc7f73a177ac", - [ - null, - {} - ] - ], - "idbindex_count2.htm": [ - "2a68770df91ceb777fb1bb2417649bec9cc7b1d2", - [ - null, - {} - ] - ], - "idbindex_count3.htm": [ - "a94e8985546101a374fbd79102294a418a626408", + "idbindex_count.any.js": [ + "25d743e422f93cf5f069e2d27252d9f6afa8e959", [ - null, - {} - ] - ], - "idbindex_count4.htm": [ - "ce19968bf16652484d3e3361580ee12ae44dd610", + "IndexedDB/idbindex_count.any.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "IDBIndex.count()" + ], + [ + "script", + "resources/support.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "idbindex_get.htm": [ - "861d7e54d1ebf54e4cd65bb68a6cb0324c25abd3", + "IndexedDB/idbindex_count.any.serviceworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "IDBIndex.count()" + ], + [ + "script", + "resources/support.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "idbindex_get2.htm": [ - "66d2fee5cb77110ad6afc077d51efd8e5163f90e", + "IndexedDB/idbindex_count.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "IDBIndex.count()" + ], + [ + "script", + "resources/support.js" + ] + ] + } + ], [ - null, - {} + "IndexedDB/idbindex_count.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "IDBIndex.count()" + ], + [ + "script", + "resources/support.js" + ] + ] + } ] ], - "idbindex_get3.htm": [ - "62a0a4f3baf34dee7d1f94beb5709c1fa2cf0d72", + "idbindex_get.any.js": [ + "0da228f73825e50c5a19cbf9b7504a946ae7b7df", [ - null, - {} - ] - ], - "idbindex_get4.htm": [ - "369c288071f05b7f5ff140ba20be074ca8171b86", + "IndexedDB/idbindex_get.any.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "IDBIndex.get()" + ], + [ + "script", + "resources/support.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "idbindex_get5.htm": [ - "9b0bfe4b35f55b341e9d260e83e403db4e9bb64f", + "IndexedDB/idbindex_get.any.serviceworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "IDBIndex.get()" + ], + [ + "script", + "resources/support.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "idbindex_get6.htm": [ - "ca51b8492fcac9617f3289ab5c5d1f24720cd02b", + "IndexedDB/idbindex_get.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "IDBIndex.get()" + ], + [ + "script", + "resources/support.js" + ] + ] + } + ], [ - null, - {} + "IndexedDB/idbindex_get.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "IDBIndex.get()" + ], + [ + "script", + "resources/support.js" + ] + ] + } ] ], - "idbindex_get7.htm": [ - "5e9511a0b1a532d7649bea3bc2edb7b36e53260f", + "idbindex_getAll.any.js": [ + "36b4c0239a524a3f5ae7f64629646f479239cc2f", [ - null, - {} - ] - ], - "idbindex_get8.htm": [ - "a2565419b98bca59003cccacb830896fcc4108c7", + "IndexedDB/idbindex_getAll.any.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "IndexedDB: Test IDBIndex.getAll" + ], + [ + "script", + "resources/support.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "idbindex_getAll.html": [ - "bd2a021386be57f857fb28de0c27afb966e5ed22", + "IndexedDB/idbindex_getAll.any.serviceworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "IndexedDB: Test IDBIndex.getAll" + ], + [ + "script", + "resources/support.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "idbindex_getAllKeys.html": [ - "5640bfdee7eed532a582f753a358c0879c37bff1", + "IndexedDB/idbindex_getAll.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "IndexedDB: Test IDBIndex.getAll" + ], + [ + "script", + "resources/support.js" + ] + ] + } + ], [ - null, - {} + "IndexedDB/idbindex_getAll.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "IndexedDB: Test IDBIndex.getAll" + ], + [ + "script", + "resources/support.js" + ] + ] + } ] ], - "idbindex_getKey.htm": [ - "101e8f06b7b0a326cc18b09afa897c6cad02fdf9", + "idbindex_getAllKeys.any.js": [ + "92f3cc126984b084617c14db5c4daceeaf38ac4a", [ - null, - {} - ] - ], - "idbindex_getKey2.htm": [ - "488368d7f4adaa7fa95b5a2d1a1f0ea2ce35c331", + "IndexedDB/idbindex_getAllKeys.any.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "IndexedDB: Test IDBIndex.getAllKeys." + ], + [ + "script", + "resources/support.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "idbindex_getKey3.htm": [ - "40ed76d17412e91c3a1aabd2911f6607285c856a", + "IndexedDB/idbindex_getAllKeys.any.serviceworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "IndexedDB: Test IDBIndex.getAllKeys." + ], + [ + "script", + "resources/support.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "idbindex_getKey4.htm": [ - "8c81a272ae8944501b0bf1d0caea71ffeb046f7e", + "IndexedDB/idbindex_getAllKeys.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "IndexedDB: Test IDBIndex.getAllKeys." + ], + [ + "script", + "resources/support.js" + ] + ] + } + ], [ - null, - {} + "IndexedDB/idbindex_getAllKeys.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "IndexedDB: Test IDBIndex.getAllKeys." + ], + [ + "script", + "resources/support.js" + ] + ] + } ] ], - "idbindex_getKey5.htm": [ - "315513139713d94004b65235f331ba4a04763b76", + "idbindex_getKey.any.js": [ + "677a70e7cb43e4ad2675a8f03413bd55d8e7aa58", [ - null, - {} - ] - ], - "idbindex_getKey6.htm": [ - "b71967d4fbde70eccf4a2b51591ed10866cdb163", + "IndexedDB/idbindex_getKey.any.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "IDBIndex.getKey()" + ], + [ + "script", + "resources/support.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "idbindex_getKey7.htm": [ - "6a64df311681021d314f2d048967618589ea284f", + "IndexedDB/idbindex_getKey.any.serviceworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "IDBIndex.getKey()" + ], + [ + "script", + "resources/support.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "idbindex_getKey8.htm": [ - "cf0affb2105b31dd238252e1e6b112334d98e6b8", + "IndexedDB/idbindex_getKey.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "IDBIndex.getKey()" + ], + [ + "script", + "resources/support.js" + ] + ] + } + ], [ - null, - {} + "IndexedDB/idbindex_getKey.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "IDBIndex.getKey()" + ], + [ + "script", + "resources/support.js" + ] + ] + } ] ], "idbindex_indexNames.htm": [ @@ -493373,32 +502811,83 @@ {} ] ], - "idbindex_openKeyCursor.htm": [ - "9436684c3d1050ed06a23837eed5397b3134ebbb", + "idbindex_openKeyCursor.any.js": [ + "9166ff386cb2896170a2af43e7174397972883fe", [ - null, - {} - ] - ], - "idbindex_openKeyCursor2.htm": [ - "ec97345a873109b1a4273214127765238877d1ec", + "IndexedDB/idbindex_openKeyCursor.any.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "IDBIndex.openKeyCursor()" + ], + [ + "script", + "resources/support.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "idbindex_openKeyCursor3.htm": [ - "c7416be38d230e9a7d79f49456ef42e04994a8cb", + "IndexedDB/idbindex_openKeyCursor.any.serviceworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "IDBIndex.openKeyCursor()" + ], + [ + "script", + "resources/support.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "idbindex_openKeyCursor4.htm": [ - "bcc1511c90c8a8611bb2023b1e995f774edc1f64", + "IndexedDB/idbindex_openKeyCursor.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "IDBIndex.openKeyCursor()" + ], + [ + "script", + "resources/support.js" + ] + ] + } + ], [ - null, - {} + "IndexedDB/idbindex_openKeyCursor.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "IDBIndex.openKeyCursor()" + ], + [ + "script", + "resources/support.js" + ] + ] + } ] ], "idbindex_reverse_cursor.any.js": [ @@ -493588,346 +503077,478 @@ {} ] ], - "idbobjectstore_add.htm": [ - "33ea0943886bf1164ddbcccd9b4a12ee290edec4", - [ - null, - {} - ] - ], - "idbobjectstore_add10.htm": [ - "d84004250de4d5ef674aa74cbf141a67fd9c7b45", - [ - null, - {} - ] - ], - "idbobjectstore_add11.htm": [ - "b1d9f71fd0650fe01d4860ee8f0742feea0b5769", + "idbobjectstore_add.any.js": [ + "dfc15294e82a66640c853c5ece5f3c4ff3486d8d", [ - null, - {} - ] - ], - "idbobjectstore_add12.htm": [ - "fc5a7bcebbea4bf9886baeb725b3470bd1deeac8", - [ - null, - {} - ] - ], - "idbobjectstore_add13.htm": [ - "ec82989b01aacb72be4fc1f8b97a4e9f0514049b", - [ - null, - {} - ] - ], - "idbobjectstore_add14.htm": [ - "10bf8a18ce417da86d30a89da15f1b050d82b271", - [ - null, - {} - ] - ], - "idbobjectstore_add15.htm": [ - "a6f897911b2ffada9af1cdc9f26c8124bf2c4642", - [ - null, - {} - ] - ], - "idbobjectstore_add16.htm": [ - "453082340fb8590c11dc9e78110c5c50201f8e54", - [ - null, - {} - ] - ], - "idbobjectstore_add2.htm": [ - "6f6e3eab27ceb902da97ae3e5fc15a485f0aebea", - [ - null, - {} - ] - ], - "idbobjectstore_add3.htm": [ - "9209e7505da2c7d897ccf881416646617dd96a80", - [ - null, - {} - ] - ], - "idbobjectstore_add4.htm": [ - "35d88fe3a2282c102040524b436ea4c8407feb7d", - [ - null, - {} - ] - ], - "idbobjectstore_add5.htm": [ - "0cb124ff4b5a01ae0367725a936fdcefe8f49bd1", - [ - null, - {} - ] - ], - "idbobjectstore_add6.htm": [ - "b6ff5a5a502c1c8e7e40e0f6feb14fd424682157", - [ - null, - {} - ] - ], - "idbobjectstore_add7.htm": [ - "cd63917c3fa9faf6ab6b56059d56c9e597da53e8", - [ - null, - {} - ] - ], - "idbobjectstore_add8.htm": [ - "c827adf6efc4facfccbc365cda50dc8c80d4f097", - [ - null, - {} - ] - ], - "idbobjectstore_add9.htm": [ - "27061afd9c228abf30aadac28d3837e06897977e", - [ - null, - {} - ] - ], - "idbobjectstore_clear.htm": [ - "51b6da72d7ee2e01d3295f84049a43ea832333ed", - [ - null, - {} - ] - ], - "idbobjectstore_clear2.htm": [ - "a4f15bde022be6f6c2a72b386c8ccbc7066f8211", - [ - null, - {} - ] - ], - "idbobjectstore_clear3.htm": [ - "2bb44ec31cb5827d70774237538189673f8b8183", - [ - null, - {} - ] - ], - "idbobjectstore_clear4.htm": [ - "f5e1cad563e1a8859a85719ca17a640dc007ee3e", - [ - null, - {} - ] - ], - "idbobjectstore_count.htm": [ - "6466d580416d3e3dcbe89a9db6825121995f33e4", - [ - null, - {} - ] - ], - "idbobjectstore_count2.htm": [ - "6152eaf76e3f536f008b466c921aead78c32e31c", - [ - null, - {} - ] - ], - "idbobjectstore_count3.htm": [ - "3d5fd17a2267948d5c7d647361bad35deb552b35", - [ - null, - {} - ] - ], - "idbobjectstore_count4.htm": [ - "c328a91e33c193850973661b24e0a1393199d8bd", - [ - null, - {} - ] - ], - "idbobjectstore_createIndex.htm": [ - "ebd6377e492a3844a0ca8bbac4f194fcae7ceb18", - [ - null, - {} - ] - ], - "idbobjectstore_createIndex10.htm": [ - "46678b1b6c7b66bb433423520b836c7dd40c454a", + "IndexedDB/idbobjectstore_add.any.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "IDBObjectStore.add()" + ], + [ + "script", + "resources/support.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "idbobjectstore_createIndex11.htm": [ - "e458977212ab3dbc2fa07b190b6fd3b1f37a721a", + "IndexedDB/idbobjectstore_add.any.serviceworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "IDBObjectStore.add()" + ], + [ + "script", + "resources/support.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "idbobjectstore_createIndex12.htm": [ - "a74ac6f5a1f97bf4d5a3bb070eeb5c2648c4c8ef", + "IndexedDB/idbobjectstore_add.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "IDBObjectStore.add()" + ], + [ + "script", + "resources/support.js" + ] + ] + } + ], [ - null, - {} + "IndexedDB/idbobjectstore_add.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "IDBObjectStore.add()" + ], + [ + "script", + "resources/support.js" + ] + ] + } ] ], - "idbobjectstore_createIndex13.htm": [ - "673a54fb00b663f29ee6751bab9895b8967620c3", + "idbobjectstore_clear.any.js": [ + "f384b6cfc8bfbd211152b6188fbb1c463162bf17", [ - null, - {} - ] - ], - "idbobjectstore_createIndex14-exception_order.htm": [ - "53aaec2a879183658670dbfb703e6d5afc70925c", + "IndexedDB/idbobjectstore_clear.any.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "IDBObjectStore.clear()" + ], + [ + "script", + "resources/support.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "idbobjectstore_createIndex15-autoincrement.htm": [ - "679b5d05aa1bf61062a3f9f00aadc59fb177221d", + "IndexedDB/idbobjectstore_clear.any.serviceworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "IDBObjectStore.clear()" + ], + [ + "script", + "resources/support.js" + ] + ] + } + ], [ - null, + "IndexedDB/idbobjectstore_clear.any.sharedworker.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "IDBObjectStore.clear()" + ], + [ + "script", + "resources/support.js" + ] + ] } - ] - ], - "idbobjectstore_createIndex2.htm": [ - "cac6c7996784d0b9da0f4d6d3dbed8dd8358433c", + ], [ - null, - {} + "IndexedDB/idbobjectstore_clear.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "IDBObjectStore.clear()" + ], + [ + "script", + "resources/support.js" + ] + ] + } ] ], - "idbobjectstore_createIndex3-usable-right-away.htm": [ - "510f17f173c9fd405f76755841e20f8c1f68e9c3", + "idbobjectstore_count.any.js": [ + "c28ba5caf8188a87858f8cf4741dc67f16eb95a7", [ - null, + "IndexedDB/idbobjectstore_count.any.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "IDBObjectStore.count()" + ], + [ + "script", + "resources/support.js" + ] + ] } - ] - ], - "idbobjectstore_createIndex4-deleteIndex-event_order.htm": [ - "bc5915f54a0587f810057f3513eb39fec8aea424", + ], [ - null, - {} - ] - ], - "idbobjectstore_createIndex5-emptykeypath.htm": [ - "b004a218ffba0870513323ddeccdcc6a174ff101", + "IndexedDB/idbobjectstore_count.any.serviceworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "IDBObjectStore.count()" + ], + [ + "script", + "resources/support.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "idbobjectstore_createIndex6-event_order.htm": [ - "db7398d3604ea00a43e403b879ad86a37460fc2d", + "IndexedDB/idbobjectstore_count.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "IDBObjectStore.count()" + ], + [ + "script", + "resources/support.js" + ] + ] + } + ], [ - null, - {} + "IndexedDB/idbobjectstore_count.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "IDBObjectStore.count()" + ], + [ + "script", + "resources/support.js" + ] + ] + } ] ], - "idbobjectstore_createIndex7-event_order.htm": [ - "9be4c563f437ef37c61d1e7c27cd82ba2e88451d", + "idbobjectstore_createIndex.any.js": [ + "79df5a77c870a3c0c3d2f57368ddb49a801679f3", [ - null, - {} - ] - ], - "idbobjectstore_createIndex8-valid_keys.htm": [ - "10c2b29c57d2b7787619f3bb2a244134f3a684d7", + "IndexedDB/idbobjectstore_createIndex.any.html", + { + "script_metadata": [ + [ + "title", + "IDBObjectStore.createIndex()" + ], + [ + "global", + "window,worker" + ], + [ + "script", + "resources/support.js" + ] + ] + } + ], [ - null, + "IndexedDB/idbobjectstore_createIndex.any.serviceworker.html", { - "timeout": "long" + "script_metadata": [ + [ + "title", + "IDBObjectStore.createIndex()" + ], + [ + "global", + "window,worker" + ], + [ + "script", + "resources/support.js" + ] + ] } - ] - ], - "idbobjectstore_createIndex9-emptyname.htm": [ - "3e1ef3c600bd5c169f6eb801263ff9e11882b3b9", + ], [ - null, - {} - ] - ], - "idbobjectstore_delete.htm": [ - "880309d01a09b0802f1a12c71e29eb9c9221a30e", + "IndexedDB/idbobjectstore_createIndex.any.sharedworker.html", + { + "script_metadata": [ + [ + "title", + "IDBObjectStore.createIndex()" + ], + [ + "global", + "window,worker" + ], + [ + "script", + "resources/support.js" + ] + ] + } + ], [ - null, - {} + "IndexedDB/idbobjectstore_createIndex.any.worker.html", + { + "script_metadata": [ + [ + "title", + "IDBObjectStore.createIndex()" + ], + [ + "global", + "window,worker" + ], + [ + "script", + "resources/support.js" + ] + ] + } ] ], - "idbobjectstore_delete2.htm": [ - "eb71169905791318549aca77de7806bde40d0cce", + "idbobjectstore_delete.any.js": [ + "0b731f391d0302079e304b10f67a762693f37d95", [ - null, - {} - ] - ], - "idbobjectstore_delete3.htm": [ - "1ea9dd9958202ececbf7bd95cce15d999b65f9d1", + "IndexedDB/idbobjectstore_delete.any.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "IDBObjectStore.delete()" + ], + [ + "script", + "resources/support.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "idbobjectstore_delete4.htm": [ - "9d074bff85cdc7770a6cd4ec6ad75ca5b50a7ded", + "IndexedDB/idbobjectstore_delete.any.serviceworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "IDBObjectStore.delete()" + ], + [ + "script", + "resources/support.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "idbobjectstore_delete5.htm": [ - "f7696e6efa151c73197a4a319c753df107a8ab77", + "IndexedDB/idbobjectstore_delete.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "IDBObjectStore.delete()" + ], + [ + "script", + "resources/support.js" + ] + ] + } + ], [ - null, - {} + "IndexedDB/idbobjectstore_delete.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "IDBObjectStore.delete()" + ], + [ + "script", + "resources/support.js" + ] + ] + } ] ], - "idbobjectstore_delete6.htm": [ - "70d8af32fe852b2887a431cc598906aad5e07424", + "idbobjectstore_deleteIndex.any.js": [ + "ed0246e0e79f5270981463b8e0c5fabe257a7dad", [ - null, - {} - ] - ], - "idbobjectstore_delete7.htm": [ - "a65885cc2b43bdb4e17e82bea06d9d439716ec07", + "IndexedDB/idbobjectstore_deleteIndex.any.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "IDBObjectStore.deleteIndex()" + ], + [ + "script", + "resources/support.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "idbobjectstore_deleteIndex.htm": [ - "f12af6fc53760bcca605926de3223bebf90faf17", + "IndexedDB/idbobjectstore_deleteIndex.any.serviceworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "IDBObjectStore.deleteIndex()" + ], + [ + "script", + "resources/support.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "idbobjectstore_deleted.htm": [ - "5ccc8fdb1b683896dd855aff38b60cbfa4b6f952", + "IndexedDB/idbobjectstore_deleteIndex.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "IDBObjectStore.deleteIndex()" + ], + [ + "script", + "resources/support.js" + ] + ] + } + ], [ - null, - {} + "IndexedDB/idbobjectstore_deleteIndex.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "IDBObjectStore.deleteIndex()" + ], + [ + "script", + "resources/support.js" + ] + ] + } ] ], "idbobjectstore_get.any.js": [ @@ -494162,7 +503783,7 @@ ] ], "idbobjectstore_getAll.any.js": [ - "db7098f71e80b214b25bf3f0d42563c937f29918", + "600d000788963a6d626db014a43a9c2ffc5e654c", [ "IndexedDB/idbobjectstore_getAll.any.html", { @@ -494321,116 +503942,83 @@ {} ] ], - "idbobjectstore_put.htm": [ - "e277ce54a2022a6fda5b64b5a10a7bef1f8e3b8a", - [ - null, - {} - ] - ], - "idbobjectstore_put10.htm": [ - "6882e8e4b5c5bc0404bff41816dee36580abf2a5", - [ - null, - {} - ] - ], - "idbobjectstore_put11.htm": [ - "a5ed2db357b56f1d690e61b8c2fda58020d2e8a6", + "idbobjectstore_put.any.js": [ + "89303291e9d6923b4c769f6eddb2360e60e171be", [ - null, - {} - ] - ], - "idbobjectstore_put12.htm": [ - "0693980277dd66d6d5e137bdc0ed5dcc2d8c1718", - [ - null, - {} - ] - ], - "idbobjectstore_put13.htm": [ - "8ae6561fc5c61765310d2cc12752ba77095076c5", - [ - null, - {} - ] - ], - "idbobjectstore_put14.htm": [ - "bc5647f4c11a87140f87d09582b10e2d353af376", - [ - null, - {} - ] - ], - "idbobjectstore_put15.htm": [ - "e7affaddd444f44b21119ca0c15cb7dcea90599e", - [ - null, - {} - ] - ], - "idbobjectstore_put16.htm": [ - "e298ba88493f322c611ad964f6804d46584d8239", - [ - null, - {} - ] - ], - "idbobjectstore_put2.htm": [ - "733e2cb1549fc66213ac1931e4ed483fe13a5f19", - [ - null, - {} - ] - ], - "idbobjectstore_put3.htm": [ - "b7792bdaf1d848a689ca9a18048a21e390b223c2", - [ - null, - {} - ] - ], - "idbobjectstore_put4.htm": [ - "4a59836eb6313ed6bd213049c98d0f241c2a1f2b", - [ - null, - {} - ] - ], - "idbobjectstore_put5.htm": [ - "6e945e27d2a1870ebbbc107be50d5ed60b8a3744", - [ - null, - {} - ] - ], - "idbobjectstore_put6.htm": [ - "f0b6f0b98dca08dc9f167f6776a6c58bc56149b6", - [ - null, - {} - ] - ], - "idbobjectstore_put7.htm": [ - "e41959f21102dc91eb257b4e717445905236ed2b", + "IndexedDB/idbobjectstore_put.any.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "IDBObjectStore.put()" + ], + [ + "script", + "resources/support.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "idbobjectstore_put8.htm": [ - "2bec639d322d675f35f223c0bd49ef83cd3cf63b", + "IndexedDB/idbobjectstore_put.any.serviceworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "IDBObjectStore.put()" + ], + [ + "script", + "resources/support.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "idbobjectstore_put9.htm": [ - "dff9415d691c4316f03787fd97076786bbdbbbe9", + "IndexedDB/idbobjectstore_put.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "IDBObjectStore.put()" + ], + [ + "script", + "resources/support.js" + ] + ] + } + ], [ - null, - {} + "IndexedDB/idbobjectstore_put.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "IDBObjectStore.put()" + ], + [ + "script", + "resources/support.js" + ] + ] + } ] ], "idbrequest-onupgradeneeded.htm": [ @@ -495137,7 +504725,7 @@ ] ], "ready-state-destroyed-execution-context.html": [ - "8194052391a7795b9310fd43cbef74571bfdd4cf", + "362d0ed8200086dc09cad0a369f02d224dc269e6", [ null, {} @@ -495169,7 +504757,7 @@ ] ], "serialize-sharedarraybuffer-throws.https.html": [ - "613ddfe99d81704defe853466107065011819a69", + "bff63fad8d13e25972fe04a6193b319317798355", [ null, {} @@ -495321,7 +504909,7 @@ ] ], "structured-clone.any.js": [ - "687b028e90c3dc1141bc4de7d454ab291b2ac944", + "0997abf2547b1268ce35f50f07c7d986d5b8f130", [ "IndexedDB/structured-clone.any.html?1-20", { @@ -495969,10 +505557,10 @@ {} ] ], - "transaction-relaxed-durability.tentative.any.js": [ + "transaction-relaxed-durability.any.js": [ "9197389a24425483912249634b8954bab2e1b5a6", [ - "IndexedDB/transaction-relaxed-durability.tentative.any.html", + "IndexedDB/transaction-relaxed-durability.any.html", { "script_metadata": [ [ @@ -495988,7 +505576,7 @@ } ], [ - "IndexedDB/transaction-relaxed-durability.tentative.any.worker.html", + "IndexedDB/transaction-relaxed-durability.any.worker.html", { "script_metadata": [ [ @@ -496221,47 +505809,137 @@ {} ] ], - "value.htm": [ - "32d7540ab37581d0abed91b8c2d635a2fe59f341", - [ - null, - {} - ] - ], - "value_recursive.htm": [ - "e02c908a3528aa0b443fc848efb04c35701d4b03", + "value.any.js": [ + "d4fa6f520ccca59887288aa1b4fd595506db5608", [ - null, - {} - ] - ], - "writer-starvation.htm": [ - "df9c5dc7577c4d5c3a89f4532ea91b24afe2a065", + "IndexedDB/value.any.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "IndexedDB: keys and values" + ], + [ + "script", + "resources/support.js" + ] + ] + } + ], [ - null, + "IndexedDB/value.any.serviceworker.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "IndexedDB: keys and values" + ], + [ + "script", + "resources/support.js" + ] + ] } - ] - ] - }, - "WebCryptoAPI": { - "algorithm-discards-context.https.window.js": [ - "e648bc2f230f0c6f0b84ae629d96853b3cb8cd58", + ], [ - "WebCryptoAPI/algorithm-discards-context.https.window.html", + "IndexedDB/value.any.sharedworker.html", { "script_metadata": [ + [ + "global", + "window,worker" + ], [ "title", - "WebCryptoAPI: Properties discard the context in algorithm normalization" + "IndexedDB: keys and values" + ], + [ + "script", + "resources/support.js" ] ] } - ] - ], - "derive_bits_keys": { - "cfrg_curves_bits.https.any.js": [ + ], + [ + "IndexedDB/value.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "IndexedDB: keys and values" + ], + [ + "script", + "resources/support.js" + ] + ] + } + ] + ], + "value_recursive.htm": [ + "e02c908a3528aa0b443fc848efb04c35701d4b03", + [ + null, + {} + ] + ], + "worker-termination-aborts-upgrade.window.js": [ + "e84ca2c2a644abe87f16aaa789eab40bb2c6fd64", + [ + "IndexedDB/worker-termination-aborts-upgrade.window.html", + { + "script_metadata": [ + [ + "title", + "Worker Termination Aborts a Pending Upgrade" + ], + [ + "script", + "resources/support-promises.js" + ] + ] + } + ] + ], + "writer-starvation.htm": [ + "df9c5dc7577c4d5c3a89f4532ea91b24afe2a065", + [ + null, + { + "timeout": "long" + } + ] + ] + }, + "WebCryptoAPI": { + "algorithm-discards-context.https.window.js": [ + "e648bc2f230f0c6f0b84ae629d96853b3cb8cd58", + [ + "WebCryptoAPI/algorithm-discards-context.https.window.html", + { + "script_metadata": [ + [ + "title", + "WebCryptoAPI: Properties discard the context in algorithm normalization" + ] + ] + } + ] + ], + "derive_bits_keys": { + "cfrg_curves_bits.https.any.js": [ "c1837591ee85d40d7ccf98b6ef56285369f0d7fd", [ "WebCryptoAPI/derive_bits_keys/cfrg_curves_bits.https.any.html", @@ -496343,6 +506021,55 @@ } ] ], + "derived_bits_length.https.any.js": [ + "0aee2e3c172d30ab177fe89a8d75f964a2c9b703", + [ + "WebCryptoAPI/derive_bits_keys/derived_bits_length.https.any.html", + { + "script_metadata": [ + [ + "title", + "WebCryptoAPI: deriveBits() tests for the 'length' parameter" + ], + [ + "script", + "derived_bits_length.js" + ], + [ + "script", + "derived_bits_length_vectors.js" + ], + [ + "script", + "derived_bits_length_testcases.js" + ] + ] + } + ], + [ + "WebCryptoAPI/derive_bits_keys/derived_bits_length.https.any.worker.html", + { + "script_metadata": [ + [ + "title", + "WebCryptoAPI: deriveBits() tests for the 'length' parameter" + ], + [ + "script", + "derived_bits_length.js" + ], + [ + "script", + "derived_bits_length_vectors.js" + ], + [ + "script", + "derived_bits_length_testcases.js" + ] + ] + } + ] + ], "ecdh_bits.https.any.js": [ "37e3eb4324200c85cb65ee9f077ea7433bff7783", [ @@ -503213,7 +512940,7 @@ ] }, "getRandomValues.any.js": [ - "1a3370ea13d2c0ab4c88c90926ea85ed48482c11", + "0437857f2faabc39c037d51b9f0d3ff39b9b7ddf", [ "WebCryptoAPI/getRandomValues.any.html", {} @@ -503303,6 +513030,51 @@ ] ], "import_export": { + "crashtests": { + "importKey-unsettled-promise.https.any.js": [ + "0ceeea390ebf97d65f22fa20a41e22b0eac68d68", + [ + "WebCryptoAPI/import_export/crashtests/importKey-unsettled-promise.https.any.html", + { + "script_metadata": [ + [ + "title", + "WebCryptoAPI: Assure promise returned by importKey is settled." + ], + [ + "timeout", + "long" + ], + [ + "script", + "/common/gc.js" + ] + ], + "timeout": "long" + } + ], + [ + "WebCryptoAPI/import_export/crashtests/importKey-unsettled-promise.https.any.worker.html", + { + "script_metadata": [ + [ + "title", + "WebCryptoAPI: Assure promise returned by importKey is settled." + ], + [ + "timeout", + "long" + ], + [ + "script", + "/common/gc.js" + ] + ], + "timeout": "long" + } + ] + ] + }, "ec_importKey.https.any.js": [ "a01bfbb0ef2e1881e83aaefe76f1ca39805c9304", [ @@ -504112,6 +513884,17 @@ ] ] }, + "accessibility": { + "svg-mouse-listener.html": [ + "e2ca983d00af8f969e1cafb300a1456cee1b8af6", + [ + null, + { + "testdriver": true + } + ] + ] + }, "accname": { "basic.html": [ "d84f4dc3b95a062b61e1cc4bd2554d744545f82d", @@ -504142,7 +513925,7 @@ ] ], "comp_host_language_label.html": [ - "b07566a56d4c7823a9f215aeb16d982b6af2e90e", + "d2057e4e855484af4a33abee7988534959afb00e", [ null, { @@ -504151,7 +513934,7 @@ ] ], "comp_label.html": [ - "8b569ba6fff7b0e89a7a9db4c33cea08445be3a2", + "373940c04d0c176a31b80fc7a3d350dd56ea4618", [ null, { @@ -504178,7 +513961,16 @@ ] ], "comp_name_from_content.html": [ - "deae6699c6e985761da84978bc87cb704ac80bdd", + "32a9a7b3c43b0f25fc09045c1a630a71c784b265", + [ + null, + { + "testdriver": true + } + ] + ], + "comp_name_from_content.tentative.html": [ + "d069652bba78b7e3c4379d218b375d42deccf860", [ null, { @@ -504187,7 +513979,7 @@ ] ], "comp_text_node.html": [ - "a31f9e02451f72b9bb697f4820e637d56e464e4e", + "f9cb8f1baf837e10b55ca16275e48e47c8b69406", [ null, { @@ -504196,7 +513988,7 @@ ] ], "comp_tooltip.html": [ - "deaabefd93accf622f98f3ec3f5def5cb9b3e0d6", + "c12f9c79fa0fef62d2f82a8a2053c828524a75e4", [ null, { @@ -504536,6 +514328,26 @@ ] }, "attribution-reporting": { + "aggregatable-debug": { + "simple-source-aggregatable-debug-report.sub.https.html": [ + "511c9e35b819e54b288906394733998514778282", + [ + null, + { + "timeout": "long" + } + ] + ], + "simple-trigger-aggregatable-debug-report.sub.https.html": [ + "e2a3bfa06b7031a2bcd4f9cf10cba078f023dd2d", + [ + null, + { + "timeout": "long" + } + ] + ] + }, "aggregatable-report-no-contributions.sub.https.html": [ "b42a61b7bd50a2934b0b7f479618d466047146bc", [ @@ -504545,8 +514357,76 @@ } ] ], + "header-parsing-error-debug-report.sub.https.html": [ + "fb674c9720e812efb0087a922e7c7a2cac2a8fe6", + [ + null, + { + "timeout": "long" + } + ] + ], + "referrer-policy.sub.https.html": [ + "5f5857e2c415f73bbe961e551175835acc02d0b3", + [ + "attribution-reporting/referrer-policy.sub.https.html?method=a", + { + "testdriver": true, + "timeout": "long" + } + ], + [ + "attribution-reporting/referrer-policy.sub.https.html?method=a&noreferrer", + { + "testdriver": true, + "timeout": "long" + } + ], + [ + "attribution-reporting/referrer-policy.sub.https.html?method=img", + { + "testdriver": true, + "timeout": "long" + } + ], + [ + "attribution-reporting/referrer-policy.sub.https.html?method=img&noreferrer", + { + "testdriver": true, + "timeout": "long" + } + ], + [ + "attribution-reporting/referrer-policy.sub.https.html?method=open", + { + "testdriver": true, + "timeout": "long" + } + ], + [ + "attribution-reporting/referrer-policy.sub.https.html?method=open&noreferrer", + { + "testdriver": true, + "timeout": "long" + } + ], + [ + "attribution-reporting/referrer-policy.sub.https.html?method=script", + { + "testdriver": true, + "timeout": "long" + } + ], + [ + "attribution-reporting/referrer-policy.sub.https.html?method=script&noreferrer", + { + "testdriver": true, + "timeout": "long" + } + ] + ], "request-format.sub.https.html": [ - "a9e36dd126771f12089367a2fabf0171a9ace7bf", + "5965f53299af7d5512b0024b1692591ef1ba77a1", [ "attribution-reporting/request-format.sub.https.html?method=a&expected-eligible=navigation-source", { @@ -504703,7 +514583,7 @@ ] ], "setSinkId-with-selectAudioOutput.https.html": [ - "dbe32e260695a24f686edb78fc3c158a3b8db31f", + "a78d91dd12f9d4e8bc744310251862efe81d70f8", [ null, { @@ -505091,14 +514971,14 @@ }, "badging": { "badge-error.https.html": [ - "3da5cf61e8332a22addccbb4ee664fb03a0c62e0", + "123cd6dc76448643b736ab42da061ed6e6e4031b", [ null, {} ] ], "badge-success.https.html": [ - "6a25962e7b978729c57bea2b563178ec3b434fb1", + "59a1f8c09448281ff44a33cbb48c21ba0b48c032", [ null, {} @@ -505148,7 +515028,7 @@ ] ], "non-fully-active.https.html": [ - "d870e52273c0a310df3c3ab3f97693d7070a6cb7", + "ab6ba2336f19f0afa48c88de5fe03b0a009ff8a2", [ null, {} @@ -505414,6 +515294,13 @@ {} ] ], + "header-origin-same-origin.html": [ + "7c1bb2ce9a5e8a01aea008d176a4d0a9ddd6322e", + [ + null, + {} + ] + ], "header-referrer-no-referrer-when-downgrade.https.html": [ "d09d4ea5606751edeb0e67a631250d24e8d3130c", [ @@ -513065,6 +522952,27 @@ {} ] ], + "sec-ch-width-auto-sizes-img.https.html": [ + "6c565de3ede77d61a94cde2136d15f43f90d52f1", + [ + null, + {} + ] + ], + "sec-ch-width-auto-sizes-picture.https.html": [ + "7ac22164629e2f784702ae6a69ce09a438672b81", + [ + null, + {} + ] + ], + "sec-ch-width.https.html": [ + "ec13ff96a08a103c43c616598e3d58c0d8736434", + [ + null, + {} + ] + ], "service-workers": { "intercept-request-critical.https.window.js": [ "079b9fd9ba07819c3c670588d25197a1e7527390", @@ -513200,7 +523108,7 @@ }, "clipboard-apis": { "async-custom-formats-write-fail.tentative.https.html": [ - "8b1b42ec78d64d1366b80b14f3181200cc22082d", + "305222a58ff34b89966e379f7a09cfc03143a28a", [ null, { @@ -513209,7 +523117,7 @@ ] ], "async-custom-formats-write-read-web-prefix.tentative.https.html": [ - "9a6e5da6fff1888045903d418c8191a17875586d", + "a5ee7c5bf0edd235e6d17395814b47d2011103b9", [ null, { @@ -513218,7 +523126,7 @@ ] ], "async-custom-formats-write-read-without-web-prefix.tentative.https.html": [ - "8b9d4de0a1f9e7b7a5ea4d254814c26fabcb8467", + "e20b66b55182ec6a478e832f507c1b5eeb830a80", [ null, { @@ -513227,7 +523135,7 @@ ] ], "async-custom-formats-write-read.tentative.https.html": [ - "a005f8c98f02f6e492b8e08baccd56257e6e4b39", + "d174df67498dd959c7cdc01b70e6b1ab64cd8f3a", [ null, { @@ -513236,7 +523144,7 @@ ] ], "async-html-script-removal.https.html": [ - "44c11add855137ed00634c4435e758fa8c548067", + "9ec9a3735642c781b1b373bb09f1b49d15dd7f9c", [ null, { @@ -513245,7 +523153,7 @@ ] ], "async-navigator-clipboard-basics.https.html": [ - "4a11d5ac66d84591208b4842fe58fa4a2b54190a", + "5d6f701bdb751641343feda37cea44f31ecaf338", [ null, { @@ -513254,7 +523162,7 @@ ] ], "async-navigator-clipboard-read-resource-load.https.html": [ - "d1e3019e7f939965f6814436752e92a44ecb1b25", + "25a90a2d082250daa0e1cf18a3285af52986d87f", [ null, { @@ -513263,7 +523171,7 @@ ] ], "async-navigator-clipboard-read-sanitize.https.html": [ - "cc1836753478b79972627b87bb3bca1e75c29459", + "4f8463cd7cc78c9a1508318e976a4249085d66aa", [ null, { @@ -513272,7 +523180,7 @@ ] ], "async-navigator-clipboard-write-multiple.tentative.https.sub.html": [ - "73cdd2f049e3ba1b0413476e49f0f98ef366c247", + "c310203503f3530b881b866b7fc2f8b8ade5b371", [ null, { @@ -513281,7 +523189,7 @@ ] ], "async-promise-write-blobs-read-blobs.https.html": [ - "12184c92e0777f5d10a63ad8e075e8422d5545a5", + "6b7989316002193a32b42c2eecfc6753aa6facfb", [ null, { @@ -513289,8 +523197,8 @@ } ] ], - "async-svg-script-removal.https.html": [ - "292d100b2fc7d2274a9e1bbf3dec85ed67f4fb32", + "async-svg-read-write.tentative.https.html": [ + "78c814a1f1a240609946aea0f5c40a4c5022c213", [ null, { @@ -513299,7 +523207,7 @@ ] ], "async-unsanitized-html-formats-write-read.tentative.https.html": [ - "46e335c804b74e09c917f68616a62cff584b1fae", + "848900830f136dd82abef9a564080a70b85f5f44", [ null, { @@ -513308,7 +523216,7 @@ ] ], "async-unsanitized-plaintext-formats-write-read.tentative.https.html": [ - "1c5638ca0a5faf806ed9d003b6c36f20bedcb263", + "dea91b41d7eb1a0360287367252a219a391ae5e2", [ null, { @@ -513317,7 +523225,7 @@ ] ], "async-unsanitized-standard-html-read-fail.tentative.https.html": [ - "e7ddbb0cdf6e29f98ff7eb86e16c1658c94b54f8", + "f0884d6c20cbe33caf86ddd5789c264a609c07a1", [ null, { @@ -513326,7 +523234,7 @@ ] ], "async-write-blobs-read-blobs.https.html": [ - "8bec558b2b2de8a38c0f9620942a5307c8158665", + "d89640d58a034b40c7ba445f6e5cf7663606daf6", [ null, { @@ -513335,7 +523243,7 @@ ] ], "async-write-html-read-html.https.html": [ - "ec1817c027bbc19304cfbd01034b4fbd2b54454c", + "2573916bd6af251ee0f8272441128209f8ad1738", [ null, { @@ -513344,7 +523252,7 @@ ] ], "async-write-image-read-image.https.html": [ - "e10b69d824c20394ab151fc6ce1bd7c6260e76e9", + "a8aa7d457cbaf1adf360b8794997dfa00ec15270", [ null, { @@ -513352,24 +523260,22 @@ } ] ], - "async-write-svg-read-svg.https.html": [ - "42f6c547b2979947c437a9b515f7ade9f1faf138", + "clipboard-events-synthetic.html": [ + "878682975266a3154756361a4e5d87c47482e393", [ null, - { - "testdriver": true - } + {} ] ], - "clipboard-events-synthetic.html": [ - "878682975266a3154756361a4e5d87c47482e393", + "clipboard-item.https.html": [ + "78acd1104a96bc78942fa93427bccdaf68f2ba9f", [ null, {} ] ], - "clipboard-item.https.html": [ - "b50a1c97d746168fd4166726ead0964faa03aa39", + "dataTransfer-clearData.html": [ + "6db7fa44e23ffde9585bc46682cedf5954159b46", [ null, {} @@ -513384,7 +523290,7 @@ ] ], "read-on-detaching-iframe.https.html": [ - "8e8e015aa05173bb5df162401fcb84dc0ff3a386", + "827c17a9e32f62b98ccb278b8a79f124cb6e5cb4", [ null, { @@ -513393,7 +523299,7 @@ ] ], "write-on-detaching-iframe.https.html": [ - "c6913d9e9f6446b1546f3cf6eba4203d07abcd35", + "b3836799df822d703c151f57d87663a733c85a81", [ null, { @@ -513402,7 +523308,7 @@ ] ], "write-read-on-detached-iframe.https.html": [ - "b21e6b20bc0d9940d35994e2867d415102fe8b76", + "155f9d004aee2a9540a0acab819d6c7964f776df", [ null, { @@ -513411,7 +523317,7 @@ ] ], "writeText-readText-on-detached-iframe.https.html": [ - "24fa586fc7709b72ef651b22f680ea290018c265", + "8c6448d5cc9e4c49cd87b897c74d1340149237b3", [ null, { @@ -513434,7 +523340,7 @@ "feature-policy": { "clipboard-read": { "clipboard-read-disabled-by-feature-policy.tentative.https.sub.html": [ - "7af2b8944e8b41a48f33e15c163fa4fe7b7a676b", + "16a17b5158d0b47e40cb36df80cef8915875b806", [ null, { @@ -513443,7 +523349,7 @@ ] ], "clipboard-read-enabled-by-feature-policy-attribute-cross-origin-tentative.https.sub.html": [ - "367d033d0f6afa1c2a9c6a0048444e012118656d", + "2998e058b3d09f143c1f390618a325685fdc8481", [ null, { @@ -513461,7 +523367,7 @@ ] ], "clipboard-read-enabled-by-feature-policy-cross-origin-tentative.https.sub.html": [ - "c371ea3b41cb2e648202f1aaf76b542fa0f033f8", + "88c8d845b26e45466fa4ee028a9777d3367d5f1e", [ null, { @@ -513470,7 +523376,7 @@ ] ], "clipboard-read-enabled-by-feature-policy.tentative.https.sub.html": [ - "552183cc67d461a61541d803ade89ebc729778a4", + "e392def5e9076a30399238213e474f95e66cf903", [ null, { @@ -513479,7 +523385,7 @@ ] ], "clipboard-read-enabled-on-self-origin-by-feature-policy.tentative.https.sub.html": [ - "17dc3628a7722047f07997d0a8544a9599f75bf3", + "e9df891d4bd51d88ebaaf1abea093f510b702cb3", [ null, { @@ -513490,7 +523396,7 @@ }, "clipboard-write": { "clipboard-write-disabled-by-feature-policy.tentative.https.sub.html": [ - "5d19d8dd6f26211db48206fbae5cb4a7f2506341", + "297d074a7d725d6c34d6f46c945968fab4599dd5", [ null, { @@ -513499,7 +523405,7 @@ ] ], "clipboard-write-enabled-by-feature-policy-attribute-cross-origin-tentative.https.sub.html": [ - "e669c8fec4910dc8f3f7a038b69f0b17e671c94a", + "45bba1b8d35ec21a3120465edd29cdce222abaf2", [ null, { @@ -513517,7 +523423,7 @@ ] ], "clipboard-write-enabled-by-feature-policy-cross-origin-tentative.https.sub.html": [ - "6e7029cc789a63e0603b596739ca6eac36bbdc88", + "8f64fdbe02ebd1e2f8d4565899edb913a7f56ca4", [ null, { @@ -513526,7 +523432,7 @@ ] ], "clipboard-write-enabled-by-feature-policy.tentative.https.sub.html": [ - "ca97994c617d0ee751672be28eaaf30b59283a66", + "701759b61c935d095dc04343ab4bb9d8d359ef24", [ null, { @@ -513535,7 +523441,7 @@ ] ], "clipboard-write-enabled-on-self-origin-by-feature-policy.tentative.https.sub.html": [ - "5615a68ac55af819759d1bbd214ac940289ceb39", + "b976a17a7cbff604129d25437b83386e54602b0d", [ null, { @@ -513570,7 +523476,7 @@ ], "permissions": { "readText-denied.https.html": [ - "010f4ba21b95332c3fabb59c2861b634e1ea48ee", + "379b0ff18b8b554fb8286feebe42344a46e02dfa", [ null, { @@ -513579,7 +523485,7 @@ ] ], "readText-granted.https.html": [ - "e912bd64a83148baaaaffa1214ccc0ba37fa3e44", + "0b2d7034df34fff509821eb7dc265bd87e1aac41", [ null, { @@ -513588,7 +523494,7 @@ ] ], "writeText-denied.https.html": [ - "5fbcab411748e25170c06da87d8ff7930cfa6b7d", + "3d6b4397a04233bba017573f59e97ca9d97dd571", [ null, { @@ -513597,7 +523503,7 @@ ] ], "writeText-granted.https.html": [ - "ff347b7adda0727a07e9e76df9adb482eae746bd", + "c0307811dcc4ca39916057b77dbe7bc1e8588ffb", [ null, { @@ -513608,7 +523514,7 @@ }, "text-write-read": { "async-write-read.https.html": [ - "c46e5d43171314132ab0be20a93a1f50e9b25b64", + "516783edaedf854955f51e084ce6ddb3e480c06d", [ null, { @@ -513617,7 +523523,7 @@ ] ], "async-write-readText.https.html": [ - "66969b1777b251ebc7413e59453c9857a0f7b5b7", + "ab7b619ac99ed4f393b2d430bd7674e32bbde1e6", [ null, { @@ -513626,7 +523532,7 @@ ] ], "async-writeText-read.https.html": [ - "ddf563269a422a578fc4c7206810790c9f090e30", + "40f26d4786a6b7ae49502df2575c58fb600a6467", [ null, { @@ -513635,7 +523541,7 @@ ] ], "async-writeText-readText.https.html": [ - "0defdf7a709535020f24c674796d8a9b9bf0dd4b", + "647a00e050b5c0e2495dc0f6b0149205bd920e3b", [ null, { @@ -513647,7 +523553,7 @@ }, "close-watcher": { "abortsignal.html": [ - "9229b37cf665d0db49d1a0b42349f00f5a2edcec", + "ec360f483d43a1ae5e02ec17d5c8b750a9211734", [ null, { @@ -513656,7 +523562,7 @@ ] ], "basic.html": [ - "9951e54031c794d19bb3a7742e99c063dda89bb8", + "79a91e127ef6846427d63ff0c21fe42dcb9611de", [ null, { @@ -513664,24 +523570,53 @@ } ] ], - "closewatcher-dialog-popover.html": [ - "50d5cb7a4ca9425838f07d1ec916bb60e704b23a", - [ - null, - { - "testdriver": true - } - ] - ], - "esc-key.html": [ - "16fcce691730c686c4191318b819ba9b93756f04", - [ - null, - { - "testdriver": true - } + "esc-key": { + "keydown.html": [ + "cb0ddf0638f7ae682731f8cc190909a6ad9bf530", + [ + null, + { + "testdriver": true + } + ] + ], + "keypress.html": [ + "c3bfcc0c3305cfd75f8f6de0572954967af20d24", + [ + null, + { + "testdriver": true + } + ] + ], + "keyup.html": [ + "7c75ef7969caffcde9cb74258a6d038a73281a70", + [ + null, + { + "testdriver": true + } + ] + ], + "not-user-activation.html": [ + "a8d5d22fcf8ee3431c5a78ae19ad7f179e225140", + [ + null, + { + "testdriver": true + } + ] + ], + "synthetic-keyboard-event.html": [ + "37b5507ac4af9d4fd4f765c79cfec8020f433637", + [ + null, + { + "testdriver": true + } + ] ] - ], + }, "event-properties.html": [ "6a3dbebad7912b0cde34233ae7546fc8d8aac06c", [ @@ -513699,7 +523634,7 @@ ] ], "inside-event-listeners.html": [ - "ac037fc147fa888f4e4bdf923c64076ba04c2922", + "47f431e25036748f2e5106549660f8c9bb8cf483", [ null, { @@ -513707,57 +523642,410 @@ } ] ], - "popover-closewatcher-multiple-plus-free.html": [ - "4913b1454ef80fb246983fa100998b2810bf17c6", - [ - null, - { - "testdriver": true - } - ] - ], - "popover-closewatcher.html": [ - "b40ea2ec7c56a4ba3a79b7fd9cfe44eb0a4ffef5", - [ - null, - { - "testdriver": true - } - ] - ], - "user-activation-CloseWatcher.html": [ - "70435993f54cddf6d2d68b5b0ffd7a81642c4f4f", - [ - null, - { - "testdriver": true - } - ] - ], - "user-activation-multiple-plus-free.html": [ - "a94b47904a10a9116b69fbc87b8cd78f09d602d2", - [ - null, - { - "testdriver": true - } - ] - ], - "user-activation-shared.html": [ - "77e748532a3309f16f2cd1203119b4a92ce24262", - [ - "close-watcher/user-activation-shared.html?CloseWatcher", - { - "testdriver": true - } + "user-activation": { + "n-activate-preventDefault.html": [ + "f413448718e9d1dcd05e37af780c341d7f923833", + [ + "close-watcher/user-activation/n-activate-preventDefault.html?CloseWatcher", + { + "testdriver": true + } + ], + [ + "close-watcher/user-activation/n-activate-preventDefault.html?dialog", + { + "testdriver": true + } + ] ], - [ - "close-watcher/user-activation-shared.html?dialog", - { - "testdriver": true - } + "n-activate.html": [ + "d8253ba7656bb1ca69fe6c3e652007527eaa09ad", + [ + "close-watcher/user-activation/n-activate.html?CloseWatcher", + { + "testdriver": true + } + ], + [ + "close-watcher/user-activation/n-activate.html?dialog", + { + "testdriver": true + } + ] + ], + "n-closerequest-n.html": [ + "54ccdd1abe2cac3d0ea60103f00007b4cfe36d15", + [ + "close-watcher/user-activation/n-closerequest-n.html?CloseWatcher", + { + "testdriver": true + } + ], + [ + "close-watcher/user-activation/n-closerequest-n.html?dialog", + { + "testdriver": true + } + ] + ], + "n-destroy-n.html": [ + "e0a94f490e887174d2822d16e9dd3bff02efcd1a", + [ + "close-watcher/user-activation/n-destroy-n.html?CloseWatcher", + { + "testdriver": true + } + ], + [ + "close-watcher/user-activation/n-destroy-n.html?dialog", + { + "testdriver": true + } + ] + ], + "n.html": [ + "af8f972ee61f482f9c56fd14471468dbc8d06829", + [ + "close-watcher/user-activation/n.html?CloseWatcher", + { + "testdriver": true + } + ], + [ + "close-watcher/user-activation/n.html?dialog", + { + "testdriver": true + } + ] + ], + "nn-CloseWatcher.html": [ + "016745dfbb41fde8361addfe9be5aa0348270c8e", + [ + null, + { + "testdriver": true + } + ] + ], + "nn-activate-CloseWatcher.html": [ + "45718e51a88cbafbd53ccf8e596c2dbaef532f42", + [ + null, + { + "testdriver": true + } + ] + ], + "nn-activate-dialog.html": [ + "eaffb4d9a7bdb461cc52288d2649004a2b0ac3a7", + [ + null, + { + "testdriver": true + } + ] + ], + "nn-dialog.html": [ + "0d086a525ef3c1c1d958a6889ba8ccb838e7eaad", + [ + null, + { + "testdriver": true + } + ] + ], + "nnn-CloseWatcher-dialog-popover.html": [ + "38dd6073121db403b4b18ff7d500c841309cf23f", + [ + null, + { + "testdriver": true + } + ] + ], + "nnn-CloseWatcher.html": [ + "5d2f07e6173d79ec7e2c8df5fe470d7cd05dfb01", + [ + null, + { + "testdriver": true + } + ] + ], + "nnn-dialog.html": [ + "f1c071dbb3ec16f600fa68838b105a03c3493613", + [ + null, + { + "testdriver": true + } + ] + ], + "nnn-popovers.html": [ + "ed5d15598fcdd1f24880f133fcd0dc6d852f8add", + [ + null, + { + "testdriver": true + } + ] + ], + "ny-activate-preventDefault.html": [ + "7cd1c2e5080a61a8a6a7e19ef716f14883acd89a", + [ + "close-watcher/user-activation/ny-activate-preventDefault.html?CloseWatcher", + { + "testdriver": true + } + ], + [ + "close-watcher/user-activation/ny-activate-preventDefault.html?dialog", + { + "testdriver": true + } + ] + ], + "ny.html": [ + "49f50a123e9d448ab2bbc4d9728490945c85d1da", + [ + "close-watcher/user-activation/ny.html?CloseWatcher", + { + "testdriver": true + } + ], + [ + "close-watcher/user-activation/ny.html?dialog", + { + "testdriver": true + } + ] + ], + "nyn-popovers.html": [ + "b6df610ae03160db9b8fad37ef1b046dff624ef8", + [ + null, + { + "testdriver": true + } + ] + ], + "nyn.html": [ + "b227d566d4c5d51c5517ed712f37fafaf8fbb11b", + [ + "close-watcher/user-activation/nyn.html?CloseWatcher", + { + "testdriver": true + } + ], + [ + "close-watcher/user-activation/nyn.html?dialog", + { + "testdriver": true + } + ] + ], + "nynn-destroy.html": [ + "fb04109994dc247e406fc5f3246f1a5dcbb80529", + [ + "close-watcher/user-activation/nynn-destroy.html?CloseWatcher", + { + "testdriver": true + } + ], + [ + "close-watcher/user-activation/nynn-destroy.html?dialog", + { + "testdriver": true + } + ] + ], + "nynn.html": [ + "ed9203db665ca56b2924d1456b815219f467c8fb", + [ + "close-watcher/user-activation/nynn.html?CloseWatcher", + { + "testdriver": true + } + ], + [ + "close-watcher/user-activation/nynn.html?dialog", + { + "testdriver": true + } + ] + ], + "nyyn-CloseWatcher.html": [ + "4f60ef3c4baf524791abf750775b33cf1cbc0fee", + [ + null, + { + "testdriver": true + } + ] + ], + "nyyn-dialog.html": [ + "44926fd5c3e13a188df8c3c37c0a26af3ce67561", + [ + null, + { + "testdriver": true + } + ] + ], + "nyyyn-CloseWatcher.html": [ + "e2565a82a309cbc987e5927a74267880fbca5c28", + [ + null, + { + "testdriver": true + } + ] + ], + "nyyyn-dialog.html": [ + "86361124d302f265bcc8aa9912f99c95973c7a2d", + [ + null, + { + "testdriver": true + } + ] + ], + "y.html": [ + "78c432de3888eed80fcaf1cdd3d3c03e1a2b3257", + [ + "close-watcher/user-activation/y.html?CloseWatcher", + { + "testdriver": true + } + ], + [ + "close-watcher/user-activation/y.html?dialog", + { + "testdriver": true + } + ] + ], + "yn-activate.html": [ + "d62b4df425098ab21b9ffbe622bb34660d856874", + [ + "close-watcher/user-activation/yn-activate.html?CloseWatcher", + { + "testdriver": true + } + ], + [ + "close-watcher/user-activation/yn-activate.html?dialog", + { + "testdriver": true + } + ] + ], + "yn.html": [ + "578f43de25e0547afc50c2091d795a16da1d6be2", + [ + "close-watcher/user-activation/yn.html?CloseWatcher", + { + "testdriver": true + } + ], + [ + "close-watcher/user-activation/yn.html?dialog", + { + "testdriver": true + } + ] + ], + "ynn-CloseWatcher.html": [ + "50b5a8131d11b385ad5a81b5a5f3757ebf5061b5", + [ + null, + { + "testdriver": true + } + ] + ], + "ynn-dialog.html": [ + "c10e94dc7350ea70e1f06f2bf9d1fa348c6f7f76", + [ + null, + { + "testdriver": true + } + ] + ], + "yy.html": [ + "9c0f21be22f2235223b7d005882a2bc21e0a6f5d", + [ + "close-watcher/user-activation/yy.html?CloseWatcher", + { + "testdriver": true + } + ], + [ + "close-watcher/user-activation/yy.html?dialog", + { + "testdriver": true + } + ] + ], + "yyn.html": [ + "2f753774446dc815974de7e29c401c8bc570813a", + [ + "close-watcher/user-activation/yyn.html?CloseWatcher", + { + "testdriver": true + } + ], + [ + "close-watcher/user-activation/yyn.html?dialog", + { + "testdriver": true + } + ] + ], + "yyy-CloseWatcher-dialog-popover.html": [ + "8650fb3b7c489b4554d010accf154b279a15feb5", + [ + null, + { + "testdriver": true + } + ] + ], + "yyy-activate-CloseWatcher-dialog-popover.html": [ + "a58dd0751bb988670f05757489964266f55f4890", + [ + null, + { + "testdriver": true + } + ] + ], + "yyy-popovers.html": [ + "6f1b739465513605eb2e9667344cae8bacb96cda", + [ + null, + { + "testdriver": true + } + ] + ], + "yyy.html": [ + "eaf8944bcec8c188f2db5fd70aadafe72883e81c", + [ + "close-watcher/user-activation/yyy.html?CloseWatcher", + { + "testdriver": true + } + ], + [ + "close-watcher/user-activation/yyy.html?dialog", + { + "testdriver": true + } + ] ] - ] + } }, "compat": { "css-style-declaration-alias-enumeration.html": [ @@ -514531,7 +524819,7 @@ ] ], "decompression-buffersource.tentative.any.js": [ - "e81fc566779800f324034eb338957cf1b2f24106", + "f4316ba1fc876ec4c332690a66cf224681ce37be", [ "compression/decompression-buffersource.tentative.any.html", { @@ -514981,10 +525269,10 @@ ] }, "compute-pressure": { - "compute_pressure_basic.tentative.https.any.js": [ - "28322ced729af6d919698dabbcb85db2926c387b", + "compute_pressure_basic.https.any.js": [ + "15d572bd8eed7dd7a88f4064433b7ac85176fba2", [ - "compute-pressure/compute_pressure_basic.tentative.https.any.html", + "compute-pressure/compute_pressure_basic.https.any.html", { "script_metadata": [ [ @@ -515008,7 +525296,7 @@ } ], [ - "compute-pressure/compute_pressure_basic.tentative.https.any.sharedworker.html", + "compute-pressure/compute_pressure_basic.https.any.sharedworker.html", { "script_metadata": [ [ @@ -515032,7 +525320,7 @@ } ], [ - "compute-pressure/compute_pressure_basic.tentative.https.any.worker.html", + "compute-pressure/compute_pressure_basic.https.any.worker.html", { "script_metadata": [ [ @@ -515056,17 +525344,17 @@ } ] ], - "compute_pressure_detached_iframe.tentative.https.html": [ - "5511a147048d610125a0d0d485367b88e4e5a70e", + "compute_pressure_detached_iframe.https.html": [ + "6123521248cb7f6d6368bf916c1004f6a84dd5db", [ null, {} ] ], - "compute_pressure_disconnect.tentative.https.any.js": [ - "1d188fad8b8e1cd2123e320d99943c408be55fcd", + "compute_pressure_disconnect.https.any.js": [ + "f8bc3fb357811a35201b30f86361846452b15faf", [ - "compute-pressure/compute_pressure_disconnect.tentative.https.any.html", + "compute-pressure/compute_pressure_disconnect.https.any.html", { "script_metadata": [ [ @@ -515085,7 +525373,7 @@ } ], [ - "compute-pressure/compute_pressure_disconnect.tentative.https.any.sharedworker.html", + "compute-pressure/compute_pressure_disconnect.https.any.sharedworker.html", { "script_metadata": [ [ @@ -515104,7 +525392,7 @@ } ], [ - "compute-pressure/compute_pressure_disconnect.tentative.https.any.worker.html", + "compute-pressure/compute_pressure_disconnect.https.any.worker.html", { "script_metadata": [ [ @@ -515123,10 +525411,10 @@ } ] ], - "compute_pressure_disconnect_idempotent.tentative.https.any.js": [ - "74d37bd6e5cc75ce317380b42df63b1bdf1352e4", + "compute_pressure_disconnect_idempotent.https.any.js": [ + "3c9a6688a42fb8e3e4decbee393e51a52554b6f5", [ - "compute-pressure/compute_pressure_disconnect_idempotent.tentative.https.any.html", + "compute-pressure/compute_pressure_disconnect_idempotent.https.any.html", { "script_metadata": [ [ @@ -515145,7 +525433,7 @@ } ], [ - "compute-pressure/compute_pressure_disconnect_idempotent.tentative.https.any.sharedworker.html", + "compute-pressure/compute_pressure_disconnect_idempotent.https.any.sharedworker.html", { "script_metadata": [ [ @@ -515164,7 +525452,7 @@ } ], [ - "compute-pressure/compute_pressure_disconnect_idempotent.tentative.https.any.worker.html", + "compute-pressure/compute_pressure_disconnect_idempotent.https.any.worker.html", { "script_metadata": [ [ @@ -515183,10 +525471,10 @@ } ] ], - "compute_pressure_disconnect_immediately.tentative.https.any.js": [ - "9b545fbe1c33bc47017ffaa73ec77234a1f58f6e", + "compute_pressure_disconnect_immediately.https.any.js": [ + "86963e242aba383ff5c687549f23bbdf58d3a237", [ - "compute-pressure/compute_pressure_disconnect_immediately.tentative.https.any.html", + "compute-pressure/compute_pressure_disconnect_immediately.https.any.html", { "script_metadata": [ [ @@ -515205,7 +525493,7 @@ } ], [ - "compute-pressure/compute_pressure_disconnect_immediately.tentative.https.any.sharedworker.html", + "compute-pressure/compute_pressure_disconnect_immediately.https.any.sharedworker.html", { "script_metadata": [ [ @@ -515224,7 +525512,7 @@ } ], [ - "compute-pressure/compute_pressure_disconnect_immediately.tentative.https.any.worker.html", + "compute-pressure/compute_pressure_disconnect_immediately.https.any.worker.html", { "script_metadata": [ [ @@ -515243,10 +525531,10 @@ } ] ], - "compute_pressure_duplicate_updates.tentative.https.any.js": [ - "dde92932dd14e7d8d2b65fcd49c947db8dda5fff", + "compute_pressure_duplicate_updates.https.any.js": [ + "609fb5ad7083f3cce6e10d8c0b461ffb01e853be", [ - "compute-pressure/compute_pressure_duplicate_updates.tentative.https.any.html", + "compute-pressure/compute_pressure_duplicate_updates.https.any.html", { "script_metadata": [ [ @@ -515265,7 +525553,7 @@ } ], [ - "compute-pressure/compute_pressure_duplicate_updates.tentative.https.any.sharedworker.html", + "compute-pressure/compute_pressure_duplicate_updates.https.any.sharedworker.html", { "script_metadata": [ [ @@ -515284,7 +525572,7 @@ } ], [ - "compute-pressure/compute_pressure_duplicate_updates.tentative.https.any.worker.html", + "compute-pressure/compute_pressure_duplicate_updates.https.any.worker.html", { "script_metadata": [ [ @@ -515303,10 +525591,46 @@ } ] ], - "compute_pressure_multiple.tentative.https.any.js": [ - "c8cef5beca0cba5b26ba897d16f90b08caa1c40d", + "compute_pressure_known_sources.https.any.js": [ + "5db3053ce9a042f4b26d6c7fc3e89a4c5a170125", [ - "compute-pressure/compute_pressure_multiple.tentative.https.any.html", + "compute-pressure/compute_pressure_known_sources.https.any.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,sharedworker" + ] + ] + } + ], + [ + "compute-pressure/compute_pressure_known_sources.https.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,sharedworker" + ] + ] + } + ], + [ + "compute-pressure/compute_pressure_known_sources.https.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,sharedworker" + ] + ] + } + ] + ], + "compute_pressure_multiple.https.any.js": [ + "8c50cc4b3df27e99e7fcb445d59609aa41d54fc9", + [ + "compute-pressure/compute_pressure_multiple.https.any.html", { "script_metadata": [ [ @@ -515325,7 +525649,7 @@ } ], [ - "compute-pressure/compute_pressure_multiple.tentative.https.any.sharedworker.html", + "compute-pressure/compute_pressure_multiple.https.any.sharedworker.html", { "script_metadata": [ [ @@ -515344,7 +525668,7 @@ } ], [ - "compute-pressure/compute_pressure_multiple.tentative.https.any.worker.html", + "compute-pressure/compute_pressure_multiple.https.any.worker.html", { "script_metadata": [ [ @@ -515363,10 +525687,10 @@ } ] ], - "compute_pressure_observe_idempotent.tentative.https.any.js": [ - "5dc3804b2f7ea21f5e189351ea0194f30d6f536d", + "compute_pressure_observe_idempotent.https.any.js": [ + "9fcbb49814b6c0aac163c31d35d76b473d87a274", [ - "compute-pressure/compute_pressure_observe_idempotent.tentative.https.any.html", + "compute-pressure/compute_pressure_observe_idempotent.https.any.html", { "script_metadata": [ [ @@ -515385,7 +525709,7 @@ } ], [ - "compute-pressure/compute_pressure_observe_idempotent.tentative.https.any.sharedworker.html", + "compute-pressure/compute_pressure_observe_idempotent.https.any.sharedworker.html", { "script_metadata": [ [ @@ -515404,7 +525728,7 @@ } ], [ - "compute-pressure/compute_pressure_observe_idempotent.tentative.https.any.worker.html", + "compute-pressure/compute_pressure_observe_idempotent.https.any.worker.html", { "script_metadata": [ [ @@ -515423,10 +525747,10 @@ } ] ], - "compute_pressure_observe_unobserve_failure.tentative.https.any.js": [ + "compute_pressure_observe_unobserve_failure.https.any.js": [ "8eafeb356d815728719b61aee9e9ee704b79bdad", [ - "compute-pressure/compute_pressure_observe_unobserve_failure.tentative.https.any.html", + "compute-pressure/compute_pressure_observe_unobserve_failure.https.any.html", { "script_metadata": [ [ @@ -515437,7 +525761,7 @@ } ], [ - "compute-pressure/compute_pressure_observe_unobserve_failure.tentative.https.any.sharedworker.html", + "compute-pressure/compute_pressure_observe_unobserve_failure.https.any.sharedworker.html", { "script_metadata": [ [ @@ -515448,7 +525772,7 @@ } ], [ - "compute-pressure/compute_pressure_observe_unobserve_failure.tentative.https.any.worker.html", + "compute-pressure/compute_pressure_observe_unobserve_failure.https.any.worker.html", { "script_metadata": [ [ @@ -515459,12 +525783,20 @@ } ] ], - "compute_pressure_options.tentative.https.any.js": [ - "69999819d962fbf1841d87a817aed1ac23767f17", + "compute_pressure_options.https.any.js": [ + "ecf3c29dbf031d4014c8b7896bdf8f305596db27", [ - "compute-pressure/compute_pressure_options.tentative.https.any.html", + "compute-pressure/compute_pressure_options.https.any.html", { "script_metadata": [ + [ + "script", + "/resources/test-only-api.js" + ], + [ + "script", + "resources/pressure-helpers.js" + ], [ "global", "window,dedicatedworker,sharedworker" @@ -515473,9 +525805,17 @@ } ], [ - "compute-pressure/compute_pressure_options.tentative.https.any.sharedworker.html", + "compute-pressure/compute_pressure_options.https.any.sharedworker.html", { "script_metadata": [ + [ + "script", + "/resources/test-only-api.js" + ], + [ + "script", + "resources/pressure-helpers.js" + ], [ "global", "window,dedicatedworker,sharedworker" @@ -515484,9 +525824,17 @@ } ], [ - "compute-pressure/compute_pressure_options.tentative.https.any.worker.html", + "compute-pressure/compute_pressure_options.https.any.worker.html", { "script_metadata": [ + [ + "script", + "/resources/test-only-api.js" + ], + [ + "script", + "resources/pressure-helpers.js" + ], [ "global", "window,dedicatedworker,sharedworker" @@ -515495,10 +525843,10 @@ } ] ], - "compute_pressure_rate_obfuscation_mitigation_not_triggered.tentative.https.window.js": [ - "9fd549d2db9ba69a26071cfe33e0857a8d8aef82", + "compute_pressure_rate_obfuscation_mitigation_not_triggered.https.window.js": [ + "f3e966de24183f729918ca5a96add3941df1a40e", [ - "compute-pressure/compute_pressure_rate_obfuscation_mitigation_not_triggered.tentative.https.window.html", + "compute-pressure/compute_pressure_rate_obfuscation_mitigation_not_triggered.https.window.html", { "script_metadata": [ [ @@ -515522,10 +525870,10 @@ } ] ], - "compute_pressure_rate_obfuscation_mitigation_triggered.tentative.https.window.js": [ - "0ae20fdee6eb02090f3bc48d4b38af558103330e", + "compute_pressure_rate_obfuscation_mitigation_triggered.https.window.js": [ + "b481cf6c87d87d0853468ebd7b3e257cd66ae5e3", [ - "compute-pressure/compute_pressure_rate_obfuscation_mitigation_triggered.tentative.https.window.html", + "compute-pressure/compute_pressure_rate_obfuscation_mitigation_triggered.https.window.html", { "script_metadata": [ [ @@ -515549,12 +525897,20 @@ } ] ], - "compute_pressure_supported_sources.tentative.https.any.js": [ - "63f2666cca69c9ed69b1449fb5c336854d11967d", + "compute_pressure_take_records.https.any.js": [ + "55660b228be22453c3d48a907d8501e3d9a55c00", [ - "compute-pressure/compute_pressure_supported_sources.tentative.https.any.html", + "compute-pressure/compute_pressure_take_records.https.any.html", { "script_metadata": [ + [ + "script", + "/resources/test-only-api.js" + ], + [ + "script", + "resources/pressure-helpers.js" + ], [ "global", "window,dedicatedworker,sharedworker" @@ -515563,9 +525919,17 @@ } ], [ - "compute-pressure/compute_pressure_supported_sources.tentative.https.any.sharedworker.html", + "compute-pressure/compute_pressure_take_records.https.any.sharedworker.html", { "script_metadata": [ + [ + "script", + "/resources/test-only-api.js" + ], + [ + "script", + "resources/pressure-helpers.js" + ], [ "global", "window,dedicatedworker,sharedworker" @@ -515574,9 +525938,17 @@ } ], [ - "compute-pressure/compute_pressure_supported_sources.tentative.https.any.worker.html", + "compute-pressure/compute_pressure_take_records.https.any.worker.html", { "script_metadata": [ + [ + "script", + "/resources/test-only-api.js" + ], + [ + "script", + "resources/pressure-helpers.js" + ], [ "global", "window,dedicatedworker,sharedworker" @@ -515585,10 +525957,10 @@ } ] ], - "compute_pressure_take_records.tentative.https.any.js": [ - "d93c9b5c886f9d57def646c052f5ea1cce627ea5", + "compute_pressure_timestamp.https.any.js": [ + "18db1dac461dd175bf7ee67ff96e6084a61964ad", [ - "compute-pressure/compute_pressure_take_records.tentative.https.any.html", + "compute-pressure/compute_pressure_timestamp.https.any.html", { "script_metadata": [ [ @@ -515607,7 +525979,7 @@ } ], [ - "compute-pressure/compute_pressure_take_records.tentative.https.any.sharedworker.html", + "compute-pressure/compute_pressure_timestamp.https.any.sharedworker.html", { "script_metadata": [ [ @@ -515626,7 +525998,7 @@ } ], [ - "compute-pressure/compute_pressure_take_records.tentative.https.any.worker.html", + "compute-pressure/compute_pressure_timestamp.https.any.worker.html", { "script_metadata": [ [ @@ -515645,10 +526017,10 @@ } ] ], - "compute_pressure_timestamp.tentative.https.any.js": [ - "f283caa6baebbe531b1fdddb2add2b761b7ad083", + "compute_pressure_update_toJSON.https.any.js": [ + "7f726698d61dd30afe588f4b477de5dc6bdbe407", [ - "compute-pressure/compute_pressure_timestamp.tentative.https.any.html", + "compute-pressure/compute_pressure_update_toJSON.https.any.html", { "script_metadata": [ [ @@ -515667,7 +526039,7 @@ } ], [ - "compute-pressure/compute_pressure_timestamp.tentative.https.any.sharedworker.html", + "compute-pressure/compute_pressure_update_toJSON.https.any.sharedworker.html", { "script_metadata": [ [ @@ -515686,7 +526058,7 @@ } ], [ - "compute-pressure/compute_pressure_timestamp.tentative.https.any.worker.html", + "compute-pressure/compute_pressure_update_toJSON.https.any.worker.html", { "script_metadata": [ [ @@ -515705,19 +526077,19 @@ } ] ], - "compute_pressure_update_toJSON.tentative.https.any.js": [ - "0024d6975490619d1824b75814c5719c63120bcf", + "idlharness.https.any.js": [ + "6cd7e87b5b3ba363ae3d4f48fb25a4360b38f395", [ - "compute-pressure/compute_pressure_update_toJSON.tentative.https.any.html", + "compute-pressure/idlharness.https.any.html", { "script_metadata": [ [ "script", - "/resources/test-only-api.js" + "/resources/WebIDLParser.js" ], [ "script", - "resources/pressure-helpers.js" + "/resources/idlharness.js" ], [ "global", @@ -515727,16 +526099,16 @@ } ], [ - "compute-pressure/compute_pressure_update_toJSON.tentative.https.any.sharedworker.html", + "compute-pressure/idlharness.https.any.sharedworker.html", { "script_metadata": [ [ "script", - "/resources/test-only-api.js" + "/resources/WebIDLParser.js" ], [ "script", - "resources/pressure-helpers.js" + "/resources/idlharness.js" ], [ "global", @@ -515746,16 +526118,16 @@ } ], [ - "compute-pressure/compute_pressure_update_toJSON.tentative.https.any.worker.html", + "compute-pressure/idlharness.https.any.worker.html", { "script_metadata": [ [ "script", - "/resources/test-only-api.js" + "/resources/WebIDLParser.js" ], [ "script", - "resources/pressure-helpers.js" + "/resources/idlharness.js" ], [ "global", @@ -515765,19 +526137,19 @@ } ] ], - "idlharness.https.any.js": [ - "e8289962324eee31d2046d4586d16352989da9fa", + "observe_return_type.https.any.js": [ + "b24878ab394d236db4babb395e5703682b28c95d", [ - "compute-pressure/idlharness.https.any.html", + "compute-pressure/observe_return_type.https.any.html", { "script_metadata": [ [ "script", - "/resources/WebIDLParser.js" + "/resources/test-only-api.js" ], [ "script", - "/resources/idlharness.js" + "resources/pressure-helpers.js" ], [ "global", @@ -515787,16 +526159,16 @@ } ], [ - "compute-pressure/idlharness.https.any.sharedworker.html", + "compute-pressure/observe_return_type.https.any.sharedworker.html", { "script_metadata": [ [ "script", - "/resources/WebIDLParser.js" + "/resources/test-only-api.js" ], [ "script", - "/resources/idlharness.js" + "resources/pressure-helpers.js" ], [ "global", @@ -515806,16 +526178,16 @@ } ], [ - "compute-pressure/idlharness.https.any.worker.html", + "compute-pressure/observe_return_type.https.any.worker.html", { "script_metadata": [ [ "script", - "/resources/WebIDLParser.js" + "/resources/test-only-api.js" ], [ "script", - "/resources/idlharness.js" + "resources/pressure-helpers.js" ], [ "global", @@ -515925,6 +526297,78 @@ {} ] ], + "console-log-large-array.any.js": [ + "e5cb92d9d36d4ae43416be7ccba2551249d43a88", + [ + "console/console-log-large-array.any.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,shadowrealm" + ] + ] + } + ], + [ + "console/console-log-large-array.any.shadowrealm.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,shadowrealm" + ] + ] + } + ], + [ + "console/console-log-large-array.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,shadowrealm" + ] + ] + } + ] + ], + "console-log-symbol.any.js": [ + "a2facb6c64e86428383260735ed2df3e88c2c809", + [ + "console/console-log-symbol.any.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,shadowrealm" + ] + ] + } + ], + [ + "console/console-log-symbol.any.shadowrealm.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,shadowrealm" + ] + ] + } + ], + [ + "console/console-log-symbol.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,shadowrealm" + ] + ] + } + ] + ], "console-namespace-object-class-string.any.js": [ "d3ff7f7d07636154080f4d24106e1a6703c37dc4", [ @@ -516823,7 +527267,7 @@ ] ], "frame-ancestors-nested-cross-in-cross-self-block.html": [ - "85b7f0efdc82d15a6fcca24c56cb3075bb377301", + "eb7cbef86652c1a19a764ac4efc5128efee58054", [ null, {} @@ -516858,7 +527302,7 @@ ] ], "frame-ancestors-nested-cross-in-same-self-block.html": [ - "da973397114103c3c9139533d38f0798fe15d4fb", + "8f9d94e7d61a280832752715b6f640e892066df6", [ null, {} @@ -516902,7 +527346,7 @@ ] ], "frame-ancestors-nested-same-in-cross-self-block.html": [ - "bae5992e860943ef3e0d7c08d5522c31256e344c", + "f9d32eb3ed32d5efd2a5163d1fb3f91c64139d05", [ null, {} @@ -516937,7 +527381,7 @@ ] ], "frame-ancestors-nested-same-in-same-self-allow.html": [ - "747c5636967eaac84bdce58c9ffe740af8d681ad", + "a4271dfd9215f847aa2fc9012f8fc8d603d9a8b3", [ null, {} @@ -516979,7 +527423,7 @@ ] ], "frame-ancestors-sandbox-same-origin-self.html": [ - "4a2a19698d3ce4a907ff2b67defbf3a814681d19", + "825f9a8ae3d740f95fbff14cf6260349b03eb917", [ null, {} @@ -519508,7 +529952,14 @@ }, "generic": { "304-response-should-update-csp.sub.html": [ - "b16eadaedc07ca9dbc60310d850d49ded370d22a", + "a882dc289144c176df555c14c83802e018b45250", + [ + null, + {} + ] + ], + "case-insensitive-scheme.sub.html": [ + "7225cd359f2ea0605ce77829853e0333e3e79bc6", [ null, {} @@ -519535,7 +529986,7 @@ {} ] ], - "eval-typecheck-callout-order.tentative.html": [ + "eval-typecheck-callout-order.html": [ "0be7cf29a284d5f2471c7ada0b5cd643b6f0fb6a", [ null, @@ -519662,6 +530113,60 @@ null, {} ] + ], + "src-trailing-dot.sub.any.js": [ + "f2b45a6957c6c41bb8e1a8924db01ca6db4cd3ad", + [ + "content-security-policy/generic/src-trailing-dot.sub.any.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ] + ] + } + ], + [ + "content-security-policy/generic/src-trailing-dot.sub.any.serviceworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ] + ] + } + ], + [ + "content-security-policy/generic/src-trailing-dot.sub.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ] + ] + } + ], + [ + "content-security-policy/generic/src-trailing-dot.sub.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ] + ] + } + ] + ], + "wildcard-host-part.sub.window.js": [ + "d210cc6670f66ce5b1c2c5b6534638a8cdb6997d", + [ + "content-security-policy/generic/wildcard-host-part.sub.window.html", + {} + ] ] }, "img-src": { @@ -519700,6 +530205,13 @@ {} ] ], + "img-src-none-blocks-data-uri.html": [ + "8b9032afcefbbde533edf094a87a5cd9039a24fe", + [ + null, + {} + ] + ], "img-src-none-blocks.html": [ "5a05970f6006c2977db2f4e828d79c5d6369e114", [ @@ -519729,7 +530241,7 @@ ] ], "report-blocked-data-uri.sub.html": [ - "d7405cd25570a48145760be3a859a27393afac69", + "c12ebbf568a5f849c1549df1d9cdffd975dcc901", [ null, {} @@ -519780,10 +530292,12 @@ ] ], "history-iframe.sub.html": [ - "412b3ac3464d44822d21af142f3702b3eae7505f", + "1f6960531ebab658df4ed02093cae67f9b9ac963", [ null, - {} + { + "timeout": "long" + } ] ], "history.sub.html": [ @@ -519966,14 +530480,14 @@ }, "media-src": { "media-src-7_1.html": [ - "8fd094e95537d7325484df5836bf27a759c2c8ba", + "9cf142185a64032867399f314fba3eb511172874", [ null, {} ] ], "media-src-7_1_2.sub.html": [ - "8312defb2e18ffc525bbf3c0ebbf71bcb6309004", + "579668c83ee94253528f9825948c6e6e5b297356", [ null, {} @@ -519987,35 +530501,35 @@ ] ], "media-src-7_2_2.sub.html": [ - "ce6b8add3c8324512ff74c07c0bc76e963c427db", + "e1627b138c91015332bff5d7100f9503454ee182", [ null, {} ] ], "media-src-7_3.sub.html": [ - "46489e2668f4d5987dfc793c7962517c00d09ad9", + "2acae07b7eddf12920cfcf7718febd4cf19cacb1", [ null, {} ] ], "media-src-7_3_2.sub.html": [ - "431a58608ab7f6aca02723b0e81e7d86bf34c92d", + "cb3558e6c2a3b3bf031c6e77041c47247d4fef43", [ null, {} ] ], "media-src-blocked.sub.html": [ - "b2b57dec64e4bd8414e58e66f32059f3222c0774", + "16c36dfb2047592e728ce8276e1ee6368d7d0007", [ null, {} ] ], "media-src-redir-bug.sub.html": [ - "a0708bf5ed3c17cb9b1ffd262b11ea5fc4ac8576", + "ac8c167d5fe1eed0ba508524d6780c27a856b963", [ null, {} @@ -520554,6 +531068,15 @@ } ] ], + "report-frame-ancestors-no-parent-cookies.sub.html": [ + "b500811c070da02b0a7a5519481c1c5af5a49ddf", + [ + null, + { + "timeout": "long" + } + ] + ], "report-frame-ancestors-with-x-frame-options.sub.html": [ "0c58a5efd54ceda6ad5f906b02862976c40f65cd", [ @@ -520627,7 +531150,7 @@ ] ], "report-same-origin-with-cookies.html": [ - "aa2ec6bd9d4e31dc704da8a7ac2bf65c1ed0baac", + "1fde8d0ffd1c2e54bdeda3e6a1d1e167e9caa52e", [ null, {} @@ -520977,7 +531500,7 @@ ] ], "nonce-enforce-blocked.html": [ - "25343a5d4dc470aca2294cdaec28457e864204d5", + "71dcd49afe42570194f8c67b49917ce648ea917c", [ null, {} @@ -521138,7 +531661,7 @@ ] ], "script-src-strict_dynamic_hashes.html": [ - "e4ce1e59446b1e1ed4ad3aa43c46a46d6ce333d1", + "02c5c9642b6b123643f44ab3d76f907618379bde", [ null, {} @@ -521355,7 +531878,7 @@ ] ], "worker-data-set-timeout.sub.html": [ - "ac4b608b08c4ed3867f587847cc699a91cedc5c4", + "0904320b93219e44c8b54a9abea441c089d8c8a2", [ null, {} @@ -521478,7 +532001,7 @@ ] ], "constructor-required-fields.html": [ - "1a090d8e2c46057c950e0087efaf27cce0d11fb0", + "1f30e38b0c254d7a9015ca9472e900e5abea39e7", [ null, {} @@ -521552,7 +532075,7 @@ ] ], "securitypolicyviolation-block-cross-origin-image-from-script.sub.html": [ - "37499db4b5c2c603a60fabd139b56a4d6b8ad86c", + "d35b8a4dd14985d0bdb3dd2f4abeef8920a5e621", [ null, {} @@ -521566,7 +532089,7 @@ ] ], "securitypolicyviolation-block-image-from-script.sub.html": [ - "b75d3804a89d3490701d78c288baea842ea02baa", + "9f501d414da38912528457f24fc6fea0eb1f813c", [ null, {} @@ -523646,10 +534169,10 @@ } ] ], - "idlharness.tentative.https.any.js": [ + "idlharness.https.any.js": [ "6312f3c4ba3a1525df8955a5a7b7ddab4485a90a", [ - "cookie-store/idlharness.tentative.https.any.html", + "cookie-store/idlharness.https.any.html", { "script_metadata": [ [ @@ -523677,7 +534200,7 @@ } ], [ - "cookie-store/idlharness.tentative.https.any.serviceworker.html", + "cookie-store/idlharness.https.any.serviceworker.html", { "script_metadata": [ [ @@ -523705,7 +534228,7 @@ } ], [ - "cookie-store/idlharness.tentative.https.any.sharedworker.html", + "cookie-store/idlharness.https.any.sharedworker.html", { "script_metadata": [ [ @@ -523733,7 +534256,7 @@ } ], [ - "cookie-store/idlharness.tentative.https.any.worker.html", + "cookie-store/idlharness.https.any.worker.html", { "script_metadata": [ [ @@ -523949,7 +534472,7 @@ ] ], "secure.https.html": [ - "9308899694375520f93f5a85a696d09d6940b0d8", + "4557cd248fb207b01f65d3630f6c0e3d5a66eaa3", [ null, { @@ -524447,8 +534970,18 @@ ] }, "third-party-cookies": { + "third-party-cookie-heuristics.tentative.https.html": [ + "32e7ab6d9ab344250d67b889ff08873ae3991c7b", + [ + null, + { + "testdriver": true, + "timeout": "long" + } + ] + ], "third-party-cookies.tentative.https.html": [ - "184649ff5bcf365b70b5d2e95af4926e5ac3dd78", + "018849c82791b1702a9a938bc119b737de99e59d", [ null, { @@ -524722,414 +535255,20 @@ {} ] ], - "credentialscontainer-prevent-silent-access.https.html": [ - "5a83e556a738594d47b12b54521806648ed26262", - [ - null, - {} - ] - ], - "fedcm-abort.https.html": [ - "0f03bff832f800c9ce69de69003c88bbbd471fca", - [ - null, - { - "testdriver": true - } - ] - ], - "fedcm-after-abort.https.html": [ - "3c2f981e82fab32d20303367289180c20e8eb71f", - [ - null, - { - "testdriver": true - } - ] - ], - "fedcm-auto-reauthn-without-approved-clients.https.html": [ - "fb93cb632db09dfd3332ac6008f1f40253361ea6", - [ - null, - { - "testdriver": true - } - ] - ], - "fedcm-auto-selected-flag.https.html": [ - "d06aba73bc1de9a9b6e238695587c1ff47480de3", - [ - null, - { - "testdriver": true - } - ] - ], - "fedcm-basic.https.html": [ - "3d20f4cfb74d5a356b920d224415f622a67d446f", - [ - null, - { - "testdriver": true - } - ] - ], - "fedcm-client-metadata-not-cached.https.html": [ - "b802369256ab44c793f8c6c340660954de54d078", - [ - null, - { - "testdriver": true - } - ] - ], - "fedcm-context.https.html": [ - "bc1f96eafa03c7af9477708e7b1da38058dd4e6b", - [ - null, - { - "testdriver": true - } - ] - ], - "fedcm-cross-origin-policy.https.html": [ - "1e3b4c71a839b5f02f19fe68639cd95c0f32c8fc", - [ - null, - { - "testdriver": true - } - ] - ], - "fedcm-csp.https.html": [ - "59257414383b89d032813b3b732e5079d477af24", + "credentialscontainer-get-basics.https.html": [ + "c1030b48f954655833636971bcfb5d919f10133e", [ null, {} ] ], - "fedcm-disconnect-errors.https.html": [ - "dbf42c4083bbb2601de44eca4877eea7ed0b9df1", - [ - null, - { - "testdriver": true - } - ] - ], - "fedcm-disconnect-iframe.sub.https.html": [ - "3d31be60b18b095889354ef4c916221633ad7ad3", - [ - null, - { - "testdriver": true - } - ] - ], - "fedcm-disconnect.sub.https.html": [ - "300144fa72a086f630da0a3aeb69c22e4e53bd92", - [ - null, - { - "testdriver": true - } - ] - ], - "fedcm-domainhint.https.html": [ - "3e07491d48d2f62dd56447176b4d4a6c4a64312a", - [ - null, - { - "testdriver": true - } - ] - ], - "fedcm-endpoint-redirects.https.html": [ - "224868c906cbc26abab6b98f74f11c24dd9a2204", - [ - null, - { - "testdriver": true - } - ] - ], - "fedcm-error-basic.https.html": [ - "49d6ea50df3881eec5032381c400c0f1ffa413dd", - [ - null, - { - "testdriver": true - } - ] - ], - "fedcm-iframe.https.html": [ - "dc0c17dea695e632988c773df32a7c0e20d24d91", + "credentialscontainer-prevent-silent-access.https.html": [ + "5a83e556a738594d47b12b54521806648ed26262", [ null, {} ] ], - "fedcm-login-status": { - "confirm-idp-login.https.html": [ - "0f8df72b615b5fadb9e17decd69c670652d06d21", - [ - null, - { - "testdriver": true - } - ] - ], - "cross-origin-status.https.html": [ - "09a4aa31c6b2ba0680ec6b14d0e661dd93abb69b", - [ - null, - { - "testdriver": true - } - ] - ], - "logged-out.https.html": [ - "09750ff0968a76b47815a0c299d1bb3bc535733f", - [ - null, - { - "testdriver": true - } - ] - ] - }, - "fedcm-loginhint.https.html": [ - "edae955a7617561b28c7ce9d897c83af722ba357", - [ - null, - { - "testdriver": true - } - ] - ], - "fedcm-manifest-not-in-list.https.html": [ - "8d85d9eb36783af221d030b95e73b397ba1a1b10", - [ - null, - { - "testdriver": true - } - ] - ], - "fedcm-multi-idp": { - "abort-multiple-gets-through-first-idp.https.html": [ - "ed7c1300bd1b95cd3f7d233e7a0ee638829f2990", - [ - null, - {} - ] - ], - "abort-multiple-gets-through-second-idp.https.html": [ - "dfe8969932b8a88ba9f52284c99a0fb1e4628a71", - [ - null, - {} - ] - ], - "get-before-and-after-onload.https.html": [ - "12e0eb4d813eed1cd358ad072ed1c48ed7e78f36", - [ - null, - { - "testdriver": true - } - ] - ], - "get-before-and-during-onload.https.html": [ - "3e2f134f201aa2d1f6a4461cd4b15f737b8d065b", - [ - null, - { - "testdriver": true - } - ] - ], - "get-before-onload-and-during-dom-content-loaded.https.html": [ - "95495948b77379e0650db2216d6f4b5c2b19915e", - [ - null, - { - "testdriver": true - } - ] - ], - "multiple-gets-after-abort.https.html": [ - "899302fb221e94a8df562616fd559a2325f8a15d", - [ - null, - { - "testdriver": true - } - ] - ], - "multiple-gets-after-onload.https.html": [ - "1b5d744e8f60fffdc44d720d7b0a6233f181b531", - [ - null, - { - "testdriver": true - } - ] - ], - "multiple-gets-before-onload.https.html": [ - "8c98bf53b0c579a860d05c6229dcd1bbc0429e16", - [ - null, - { - "testdriver": true - } - ] - ], - "multiple-gets-during-onload.https.html": [ - "bcf70a31c74deacb9a661d03db5a951777b31b08", - [ - null, - { - "testdriver": true - } - ] - ], - "single-get-after-onload.https.html": [ - "de6a7c5371cc839a41c89318e5f8b0ad00b107e0", - [ - null, - { - "testdriver": true - } - ] - ], - "single-get-before-onload.https.html": [ - "0ac9b0e920245cfa81810f024190554d2248511f", - [ - null, - { - "testdriver": true - } - ] - ], - "single-get-during-onload.https.html": [ - "832565744d4629aac869805fef10d135c82a9479", - [ - null, - { - "testdriver": true - } - ] - ] - }, - "fedcm-no-login-url.https.html": [ - "94592d2dbfbfb9f308f4aa97a198816119a36502", - [ - null, - { - "testdriver": true - } - ] - ], - "fedcm-nonce-is-optional.https.html": [ - "dafd6c9e983053b50c12b56ce2ef483c61006c77", - [ - null, - { - "testdriver": true - } - ] - ], - "fedcm-not-observed-by-service-worker.https.html": [ - "072d66966566c939bfa5ba64db1d62e7247dab81", - [ - null, - { - "testdriver": true - } - ] - ], - "fedcm-pending-call-rejected.https.html": [ - "feb3f903d87a32380a2f4e2ef074bf706be6a8d6", - [ - null, - { - "testdriver": true - } - ] - ], - "fedcm-pending-disconnect.https.html": [ - "1b60acc10880ddf359aeeb5974f2f93e82df641c", - [ - null, - { - "testdriver": true - } - ] - ], - "fedcm-pending-userinfo.https.html": [ - "0ecae3e80a4bb9f3fbe27ff32284a5f503a099b1", - [ - null, - { - "testdriver": true - } - ] - ], - "fedcm-reject-invalid-responses.https.html": [ - "f450d568249ec7d7f2ef6f1229d5781344cfb5c5", - [ - null, - { - "testdriver": true - } - ] - ], - "fedcm-returning-account-auto-reauthn.https.html": [ - "c9fe10a485fbe2dee7508f6d69801f67ca2c6208", - [ - null, - { - "testdriver": true - } - ] - ], - "fedcm-store.https.html": [ - "d1e6ef464c4f3eb8e2d4118d1a5e2dc498410e05", - [ - null, - { - "testdriver": true - } - ] - ], - "fedcm-token-returned-with-http-error.https.html": [ - "2337829add9f283983c78d9617941c18e74acb46", - [ - null, - { - "testdriver": true - } - ] - ], - "fedcm-too-many-disconnect-calls.https.html": [ - "cb5dfa615f34bc7de4ecdd9ab4c4a11b3ce0eb2d", - [ - null, - { - "testdriver": true - } - ] - ], - "fedcm-userinfo.https.html": [ - "d460d82845282f00e0164590c552bcd73ca15255", - [ - null, - { - "testdriver": true - } - ] - ], "federatedcredential-framed-get.sub.https.html": [ "7883c8ebf23ea3c4214db585aba32d391d824a52", [ @@ -525160,6 +535299,15 @@ } ] ], + "non-fully-active.https.html": [ + "508b4325d78b6565f4e0b9b79420b9523a327d83", + [ + null, + { + "testdriver": true + } + ] + ], "otpcredential-get-basics.https.html": [ "3907f85450fe4642720b2c8ec374f7f689bfbdd1", [ @@ -525246,7 +535394,7 @@ ] ], "float-no-interpolation.html": [ - "eb06dfefc687e1bacac4c66793cb5253a0c8371c", + "92befefda1e6bbc566d44bc19fc092ca883440fd", [ null, {} @@ -525608,6 +535756,15 @@ ] ] }, + "syntax": { + "colors-007.html": [ + "37c36e59b62ffde437ad8c1e5d5b59a685846bd1", + [ + null, + {} + ] + ] + }, "tables": { "border-collapse-no-interpolation.html": [ "800cc68d0c33d0dc5bd2a8bb2101aeb5c49d3136", @@ -526248,6 +536405,139 @@ null, {} ] + ], + "justify-self-block-in-inline.html": [ + "3a326016bc15914958600156c3a72b5bb77e41b8", + [ + null, + {} + ] + ], + "justify-self-htb-ltr-htb.html": [ + "6a285d84203bb72803e5400a4456bffb778b6045", + [ + null, + {} + ] + ], + "justify-self-htb-ltr-vlr.html": [ + "b77e7e900136381b2d5594e63567ac94a5223e07", + [ + null, + {} + ] + ], + "justify-self-htb-ltr-vrl.html": [ + "e8404b3e658ed86914968370f33c2f5ac377577b", + [ + null, + {} + ] + ], + "justify-self-htb-rtl-htb.html": [ + "2c7c46b4f40514ea9563253b98942b263b419133", + [ + null, + {} + ] + ], + "justify-self-htb-rtl-vlr.html": [ + "cedc61e9bd94cdc82ea431e237a1ac1d6229beee", + [ + null, + {} + ] + ], + "justify-self-htb-rtl-vrl.html": [ + "7da8c4170e8332c21b92697f3916acca35bfb62f", + [ + null, + {} + ] + ], + "justify-self-vlr-ltr-htb.html": [ + "be5716b19a2315cbfeb4c27a613af4c98d544c45", + [ + null, + {} + ] + ], + "justify-self-vlr-ltr-vlr.html": [ + "69e96ba4e90dc8697f88c989faecb28a679ddba8", + [ + null, + {} + ] + ], + "justify-self-vlr-ltr-vrl.html": [ + "9c02b0f11303b7b6989d6312af11d9cf463ddabf", + [ + null, + {} + ] + ], + "justify-self-vlr-rtl-htb.html": [ + "fcd1a8124a27d35f764d061c08e48510bcbda0d0", + [ + null, + {} + ] + ], + "justify-self-vlr-rtl-vlr.html": [ + "480107d2f84aa8d938c4d62e89d24aed4732fc8f", + [ + null, + {} + ] + ], + "justify-self-vlr-rtl-vrl.html": [ + "ecd7bc958b4c68b6f7b5367c0fc7c5e1c475ec99", + [ + null, + {} + ] + ], + "justify-self-vrl-ltr-htb.html": [ + "167c813a54c1e2695d24514c31dfa7d05949458f", + [ + null, + {} + ] + ], + "justify-self-vrl-ltr-vlr.html": [ + "cc303dda455f0025630bc67d1add472ec062ab47", + [ + null, + {} + ] + ], + "justify-self-vrl-ltr-vrl.html": [ + "4ffc861a2879f8d89035dcaf0cb4cdbf935916d1", + [ + null, + {} + ] + ], + "justify-self-vrl-rtl-htb.html": [ + "276b3bb1fd4ba785c2f62059468399675f4ec77e", + [ + null, + {} + ] + ], + "justify-self-vrl-rtl-vlr.html": [ + "9f923772a56d4fae5553068e3dca8a57bc02d50e", + [ + null, + {} + ] + ], + "justify-self-vrl-rtl-vrl.html": [ + "7131bc30db9c1ebbe5f3a9a30a1a95eb8491e22e", + [ + null, + {} + ] ] }, "content-distribution": { @@ -526570,6 +536860,13 @@ {} ] ], + "gap-parsing-002.html": [ + "f84abccf3cf79602000cf2256021c27e387a8349", + [ + null, + {} + ] + ], "grid-column-gap-parsing-001.html": [ "baec0641cdaef532e12a1ba2511991cb86ffa14b", [ @@ -526736,7 +537033,7 @@ ] ], "gap-shorthand.html": [ - "52397fb744b990c3b9227f4f7a68a9004223007e", + "6095104fa3b31c53a1d6c6c551aa2073e413bfc7", [ null, {} @@ -526749,6 +537046,76 @@ {} ] ], + "grid-column-gap-computed.html": [ + "ae43a2a3f5fa8c9a8ef823e2a60681c1edfc5522", + [ + null, + {} + ] + ], + "grid-column-gap-invalid.html": [ + "a43f05dbe1b54c1dafa68a0d8e3390292774644d", + [ + null, + {} + ] + ], + "grid-column-gap-valid.html": [ + "b96e36e43439fad339095253dd4812b548cd25b9", + [ + null, + {} + ] + ], + "grid-gap-computed.html": [ + "eee24ad653b805d147210deb49e97cb1fc0b9cf9", + [ + null, + {} + ] + ], + "grid-gap-invalid.html": [ + "7536b091d8c00c38d2700cedcd96690d2e853300", + [ + null, + {} + ] + ], + "grid-gap-shorthand.html": [ + "61ded441763d217ea98c23f94cf1f48c6a28bcf4", + [ + null, + {} + ] + ], + "grid-gap-valid.html": [ + "c70b9205fd4e0883fe9ebfab8020ccbbf6c6f738", + [ + null, + {} + ] + ], + "grid-row-gap-computed.html": [ + "d108cb2737bed27f7d31a009ef8b44e998533f1e", + [ + null, + {} + ] + ], + "grid-row-gap-invalid.html": [ + "39d0835a48f6f903e9a484e67c7cf5d5dc7609fb", + [ + null, + {} + ] + ], + "grid-row-gap-valid.html": [ + "fe12376395128f8130c64b03e2ebc4147b85c4fd", + [ + null, + {} + ] + ], "justify-content-computed.html": [ "b04d2db1429c385d57b9d6b232282d7924d6589b", [ @@ -527034,6 +537401,34 @@ } }, "css-anchor-position": { + "anchor-animation-dynamic-default.html": [ + "d1837a6c336725ddd675c43c8da6a19376e68d74", + [ + null, + {} + ] + ], + "anchor-animation-dynamic-name.html": [ + "60d8dd59aeb0254489f18400aae907c1d5f4ecf8", + [ + null, + {} + ] + ], + "anchor-animation-iacvt.html": [ + "7341d2fbe24b3d8e13fe58fe2de3b11c3c847052", + [ + null, + {} + ] + ], + "anchor-animation.html": [ + "f3a4eba7ba3802fe8cbbcd5bf5675906f35bed10", + [ + null, + {} + ] + ], "anchor-center-001.html": [ "f8583e68c00183023b88690c79cfc1d3524ab00d", [ @@ -527041,15 +537436,43 @@ {} ] ], - "anchor-default-003.html": [ - "00c20324344d0d888aace7f5414ba7e5354af786", + "anchor-center-htb-htb.html": [ + "20abb2ed096c934bb47447d64d5b717012f8ef47", [ null, {} ] ], - "anchor-default-basics.html": [ - "783cb539cc39bc68040b74fc9ac28c1bf2be38df", + "anchor-center-htb-vrl.html": [ + "099d9cd15b43ae33024fc1fb659563bb5141baa2", + [ + null, + {} + ] + ], + "anchor-center-offset-change.html": [ + "fa383154da6f7c8a52a61f76333dedda7c309ef4", + [ + null, + {} + ] + ], + "anchor-center-vrl-htb.html": [ + "3e4f485cec3d730ecbadb695fc214269f2e101ea", + [ + null, + {} + ] + ], + "anchor-center-vrl-vrl.html": [ + "fe40c731419c42ff286e24d653082220358cf137", + [ + null, + {} + ] + ], + "anchor-fallback-invalidation.html": [ + "a066c2da5581803685b5fddc41c631fa61e0474a", [ null, {} @@ -527063,14 +537486,35 @@ ] ], "anchor-getComputedStyle-002.html": [ - "ae697fcc7498917e165b471ae169068880ef46e0", + "a3e00d50485a35fd4227d034a88b744be5734b5c", [ null, {} ] ], "anchor-getComputedStyle-003.html": [ - "f9fca976544f1aaac8d84e9acd918c7538b7e86d", + "d23558aef5bdc742af1b2a61f9a94dd36b86d640", + [ + null, + {} + ] + ], + "anchor-inherited.html": [ + "0f84311d6d784fdb33fd2c6642a838deefb60830", + [ + null, + {} + ] + ], + "anchor-inside-outside.html": [ + "aefd586ff5027b2fe4063be51e82db877e9e8966", + [ + null, + {} + ] + ], + "anchor-invalid-fallback.html": [ + "15ccada17949518aede5eef33e51cf988c643218", [ null, {} @@ -527133,7 +537577,7 @@ ] ], "anchor-name-inline-001.html": [ - "dba3472f5b1a2146a66eaf4c3d2429add3151321", + "d65936ad8620566633f891190058f6842b6c8a82", [ null, {} @@ -527147,7 +537591,7 @@ ] ], "anchor-name-multicol-002.html": [ - "73b7b566206707ac4cb3447cc732bf0026044761", + "4f84f173984a620fe6e1b1baef011747e294ba20", [ null, {} @@ -527167,13 +537611,6 @@ {} ] ], - "anchor-non-oof-inherit.html": [ - "75f98a1ebfe0e6b61008e2152bea88228829af08", - [ - null, - {} - ] - ], "anchor-parse-invalid.html": [ "de4b0ffac45ec09914bac7bbfd43fabf8b083989", [ @@ -527182,7 +537619,7 @@ ] ], "anchor-parse-valid.html": [ - "46907753888506ff14e607bcb06420b629fbad4c", + "f3069649dd50d0a67a8a4ecd42f905e186f99cb5", [ null, {} @@ -527216,34 +537653,6 @@ {} ] ], - "anchor-position-auto-001.html": [ - "b5e19522b00d8327e2eb1da96a2714ff2c62c60b", - [ - null, - {} - ] - ], - "anchor-position-auto-002.html": [ - "1c86fe2e4678f5fc7600d16f6580b24b60117330", - [ - null, - {} - ] - ], - "anchor-position-auto-003.html": [ - "33ef58b2af4692f071596aa005f4e72954d6c04f", - [ - null, - {} - ] - ], - "anchor-position-auto-004.html": [ - "befd5fcff068d7af8d9b9a1a658eddfb3008b55d", - [ - null, - {} - ] - ], "anchor-position-borders-001.html": [ "1e2ecbc909cee0f9f301481c12ab6a8fc9b4ff0c", [ @@ -527364,7 +537773,7 @@ ] ], "anchor-position-multicol-colspan-001.html": [ - "f90ee5c3a262968d6126ac7ef7353bfb713891a2", + "2938500ca49d48d9e6fd90486e08eeb1669a2df5", [ null, {} @@ -527426,127 +537835,162 @@ {} ] ], + "anchor-scope-basic.html": [ + "147aef8c764863ae2bc305aa92a8e71ef0852be8", + [ + null, + {} + ] + ], + "anchor-scope-dynamic.html": [ + "33a25cfce6bb932eb4e9426467059d48aed381c1", + [ + null, + {} + ] + ], + "anchor-scope-shadow.tentative.html": [ + "375f4ca6f65865e222c51357b3ef0aa9dd21bc87", + [ + null, + {} + ] + ], "anchor-scroll-002.html": [ - "8ef6f500a1f2fbc562def420ac79ca9939d50f03", + "49a38c0e69eb830fa70283b28baf62e00997ba32", [ null, {} ] ], "anchor-scroll-003.html": [ - "c1b31c0becf286b0b155578f29c6b7e9a6cd9e1e", + "4f5b0dbba5588b60be82d2f437e349fdebb07331", [ null, {} ] ], "anchor-scroll-004.html": [ - "d08279118d9e9ca848fd9fb9e6e56fc77ade42ff", + "e21507acb64bfbd94802b5188cadc9e0f2fce890", [ null, {} ] ], "anchor-scroll-005.html": [ - "a9a7d24d2b9ccd9af9a9771f66c7a3da433a1efa", + "bab19249cedda55b3e020c679f43ca472bcc707b", [ null, {} ] ], "anchor-scroll-006.html": [ - "2ffd026b55296f105e37141646f12d999cd56d5b", + "9c8a8c0ac2fe3cdb8942cbe08dc6a97591a5dc30", [ null, {} ] ], "anchor-scroll-007.html": [ - "ec519106190c7cebe095a2dc4396cfe94486fb61", + "7e288d713f6b6f71e765398c894a966b4a0ed212", [ null, {} ] ], - "anchor-scroll-fallback-position-001.html": [ - "04518e5019349f74a2435f6c80318b2481f8fa15", + "anchor-scroll-js-expose.html": [ + "968ce5ab68306af76e18d253b2d4524993410b3c", [ null, {} ] ], - "anchor-scroll-fallback-position-002.html": [ - "f30c35d390da9384d9a7deb7a7079ff8dc84a399", + "anchor-scroll-position-try-001.html": [ + "6341d34f29d531e9901f1fcade31d21ccab04e25", [ null, {} ] ], - "anchor-scroll-fallback-position-003.html": [ - "60bc9b919af0cf027d760af66f567a55556e1161", + "anchor-scroll-position-try-002.html": [ + "777a6a76cd5109e8389fd2d480850b3d0df54f0f", [ null, {} ] ], - "anchor-scroll-fallback-position-004.html": [ - "99e4f9c30d1dd626773276c5e6af206641487d5f", + "anchor-scroll-position-try-003.html": [ + "55b09e879971959e42cf6f05563041c71ff28653", [ null, {} ] ], - "anchor-scroll-fallback-position-005.html": [ - "0adfe0834d850c000cbe0692446ec70d33036de1", + "anchor-scroll-position-try-004.html": [ + "9fd3803800b1613d33b34b8daa17463a9f340db4", [ null, {} ] ], - "anchor-scroll-fallback-position-006.html": [ - "b4a1a24de69f7d3163226707de6f5ce35b1163ff", + "anchor-scroll-position-try-005.html": [ + "2d37c0b622d6df4fa1fae0e253ca60a8fcf1d7a6", [ null, {} ] ], - "anchor-scroll-fallback-position-007.html": [ - "baa283ba94454071c682f3ae66bb3a1b45060dae", + "anchor-scroll-position-try-006.html": [ + "632b5762c0e8a82f430903370836accdf0eecd06", [ null, {} ] ], - "anchor-scroll-fallback-position-008.html": [ - "ae625d5823982ed9f24ca80fb599f1f7332c0977", + "anchor-scroll-position-try-007.html": [ + "7b3941be76a2335f2aa10a38fb73d51be1c65ed9", [ null, {} ] ], - "anchor-scroll-fallback-position-009.html": [ - "b355d476e6b7f6a323e7cdc69bc3a4a0a926256a", + "anchor-scroll-position-try-008.html": [ + "4447714a122383a3ad1dcbbf136602f6014154b7", [ null, {} ] ], - "anchor-scroll-fallback-position-010.html": [ - "a0dd599b3b66effef00d28774783793a92349115", + "anchor-scroll-position-try-009.html": [ + "3da8ad9c63356139792444dd3fc6abaf8c1647dd", [ null, {} ] ], - "anchor-scroll-fallback-position-011.html": [ - "98fa4b5f86cd5239ea77f527d6cf6453ca0373a1", + "anchor-scroll-position-try-010.html": [ + "3ea49d913be83d46beb1cbadced0e376857aff9e", [ null, {} ] ], - "anchor-scroll-js-expose.html": [ - "1ef44d03c2202dfc053f27c0e12e2a397634267e", + "anchor-scroll-position-try-011.html": [ + "4cf7fcdd60b8b0ac72075e69e0a9c5a6560d5d91", + [ + null, + {} + ] + ], + "anchor-scroll-position-try-013.html": [ + "2edad12be7256e3ef55df10ab865b58f8c678650", + [ + null, + {} + ] + ], + "anchor-scroll-position-try-014.html": [ + "6d1019ee4aef7ba451f925685692f7a23a101877", [ null, {} @@ -527559,6 +538003,13 @@ {} ] ], + "anchor-size-animation.html": [ + "52e53021c27ffbbef52f538ac4d8915199543433", + [ + null, + {} + ] + ], "anchor-size-minmax-001.html": [ "364b3eb24f19dea2666d986c95fc1f4f77128d7a", [ @@ -527615,36 +538066,85 @@ {} ] ], - "at-fallback-position-allowed-declarations.html": [ - "cca222ac6d78031e31f161839d9a3a65164202f3", + "anchor-transition-attr.html": [ + "50f1154532e63b0cb527e4499c701b584eb04dda", + [ + null, + {} + ] + ], + "anchor-transition-default.html": [ + "1bee0cbbe4cd469ec28f77eb18ee0b9b4c6dcc43", + [ + null, + {} + ] + ], + "anchor-transition-eval.html": [ + "cf65742b2dc4e762118b51a5a07592c0cf912c73", + [ + null, + {} + ] + ], + "anchor-transition-focus.html": [ + "4533fa80e4dd28480306013968c574950a15288e", [ null, {} ] ], - "at-fallback-position-parse.html": [ - "942d9a2984595bfec8b86d01fc0d6332bef496ea", + "anchor-transition-name.html": [ + "ea7b403e6120ee31796e5f6e1c8e1cc3f9cb9514", [ null, {} ] ], - "at-position-fallback-cssom.html": [ - "df295bf2d0adc79d7792775d29e8373a88609112", + "anchor-typed-om.html": [ + "d4fec49dd3d9e1169ab198106cff3211b1198b51", [ null, {} ] ], - "at-position-fallback-invalidation-shadow-dom.html": [ - "162bfe940d4644dffa6ddbd0ddec8a22741a2eb9", + "at-position-try-allowed-declarations.html": [ + "3d2a70390a4ab0e3a0d7e3c9418fb6fdef5f7fdc", [ null, {} ] ], - "at-position-fallback-invalidation.html": [ - "68a0874931245741b7b35e2c517367f8733bc764", + "at-position-try-cssom.html": [ + "126b9fa81a76d48a3a915d0ae4e03f27c161bc76", + [ + null, + {} + ] + ], + "at-position-try-invalidation-shadow-dom.html": [ + "18b6d4731ece42b6c3d942ea5366477c61d61ce1", + [ + null, + {} + ] + ], + "at-position-try-invalidation.html": [ + "62cd7e1c6096e1bb3053abc597a1c2aed728ff09", + [ + null, + {} + ] + ], + "at-position-try-parse.html": [ + "27f5c8687b29fc8ee4e174b439c8b0ea8f71c020", + [ + null, + {} + ] + ], + "base-style-invalidation.html": [ + "e4e12785790391e595b300b670939b9f0547665b", [ null, {} @@ -527657,176 +538157,458 @@ {} ] ], - "inset-area-basic.html": [ - "dcb2c153308d80a35c5ac01345665b636297262f", + "last-successful-basic.html": [ + "953ad80fcfc10078350b5771b8cd7c377fe91e96", + [ + null, + {} + ] + ], + "last-successful-change-fallbacks.html": [ + "d9aed01a90b08d3c6f63f8056aa4029855de5c63", + [ + null, + {} + ] + ], + "last-successful-change-try-rule.html": [ + "f7caf2f08ee1d8b6bf66d867c835bffd3faf9464", + [ + null, + {} + ] + ], + "last-successful-intermediate-ignored.html": [ + "33f42e7be8f1b0a9a5c694cf00a78dd8a88719e1", + [ + null, + {} + ] + ], + "parsing": { + "anchor-scope-computed.html": [ + "d595537a720341b9285ad5d3a0abc85de972f94b", + [ + null, + {} + ] + ], + "anchor-scope-parsing.html": [ + "bc24c78722b172e0c1eacbfc61a4609a0b18f9a7", + [ + null, + {} + ] + ], + "position-try-computed.html": [ + "2a5cf605c0abbf341c5c411d6e9a0cea3eed3ed1", + [ + null, + {} + ] + ], + "position-try-fallbacks-computed.html": [ + "ed189016c1d567e371932f3cddae43731f580593", + [ + null, + {} + ] + ], + "position-try-fallbacks-parsing.html": [ + "4c64b77ca2718a7fc3ecffdcfc8ba8e5979303ef", + [ + null, + {} + ] + ], + "position-try-order-computed.html": [ + "aebec00aef918060987b7cc028d903b2e960f169", + [ + null, + {} + ] + ], + "position-try-order-parsing.html": [ + "4b3b34287f1f3892f5f158b1702106dfcdc5d2cb", + [ + null, + {} + ] + ], + "position-try-parsing.html": [ + "ef0ede045a47cc6c2d6403e25dc8c28a015ba247", + [ + null, + {} + ] + ], + "position-visibility-computed.tentative.html": [ + "8a8ba88706b4b46d1f46e48009f7d18c5af3c448", + [ + null, + {} + ] + ], + "position-visibility-parsing.tentative.html": [ + "942ec7175459b7039717175396931be71043ba53", + [ + null, + {} + ] + ] + }, + "popover-anchor-backdrop-transition.html": [ + "60c222363de2889817f4da74c768c1b0bc0ac0ff", [ null, {} ] ], - "inset-area-computed-insets.tentative.html": [ - "4e35dd883a4d5453295196703360d780a2c8a340", + "position-anchor-003.html": [ + "6117027e22029cdef83e9c01190af1fbb90c75ac", [ null, {} ] ], - "inset-area-computed.html": [ - "46e29fda3909888d91459b16030082873bc5fd6a", + "position-anchor-basics.html": [ + "8039903c39a571480fc9117331dfa01b0ee6354a", [ null, {} ] ], - "inset-area-interpolation.html": [ - "29fe76ca5c5d8b292f9f025b30de8906ce205780", + "position-area-align-justify-wm-dir.html": [ + "25b53d44f788b3b2412a84b07cd394cfa89462e8", [ null, {} ] ], - "inset-area-parsing.html": [ - "1ee88b00e6d9d3286bb86da710226fdcb30f9c78", + "position-area-align-justify.html": [ + "e0bce2c82683243ecff838f71a56e805bd1fac7e", [ null, {} ] ], - "inset-area-wm-dir.html": [ - "3acec2b10d6c0f36b275279d83233344dd7ada9d", + "position-area-anchor-outside.html": [ + "d8fb5dbc98fa90513e339487b6e8284ca2db92bc", [ null, {} ] ], - "position-fallback-001.html": [ - "d28c71ec6813000296012a4fcab8787dbb3e8f5d", + "position-area-anchor-partially-outside.html": [ + "e23cea474787b1f613a87fdddf306aec40fb93b1", [ null, {} ] ], - "position-fallback-002.html": [ - "ea6ff11479a8c482c49820ec7fb40b33d732676d", + "position-area-basic.html": [ + "6cbaf8e50145b19a3e761f91abb7adcdb30d400d", [ null, {} ] ], - "position-fallback-003.html": [ - "531dc303d657ae72738e1f6593627e9367dcd071", + "position-area-computed-insets.html": [ + "2d7907fd92d240c3c26b380bdfe1a4fa6d1ce8a2", [ null, {} ] ], - "position-fallback-004.html": [ - "e4dbd718664fca1d5aa1276b32a8c6e94f907c3a", + "position-area-computed.html": [ + "0acc853eb9048cab3d5c2a5e10082ffa489abe59", [ null, {} ] ], - "position-fallback-basics.html": [ - "bfeb921de1bab4b194f0bb07b46bc7208c5e2166", + "position-area-in-grid.html": [ + "85dd4f483060168ed3d312c044a38915705fcd7e", [ null, {} ] ], - "position-fallback-bounds-001.html": [ - "7735115e592dca0168cc3ac41e6762534de9bfa9", + "position-area-in-position-try.html": [ + "1812c3892ea1b805eb6b9092c04aa8328ad156a5", [ null, {} ] ], - "position-fallback-bounds-002.html": [ - "7bd71216e7df9625d9901083151d1f1408de301f", + "position-area-interpolation.html": [ + "b0e696ec25507af5102d32ece575710cf14a01f0", [ null, {} ] ], - "position-fallback-bounds-003.html": [ - "0e0e243a16e8637160738e0a2a17c1c37e017f0a", + "position-area-parsing.html": [ + "9eefd256f41e0aa50dffd73febf71b037d3834cf", [ null, {} ] ], - "position-fallback-bounds-004.html": [ - "ff982ea93e49f666a254ea6704332c576c7842bc", + "position-area-value.html": [ + "dfe753427e6abc6ad844b67b180c2b46ff0d3611", [ null, {} ] ], - "position-fallback-bounds-005.html": [ - "deb546a1e2eca11f9928cdbbf85299cc0bdce29c", + "position-area-with-insets.html": [ + "6f6cf438ac17657961831dfa04a66fe65a5da27a", [ null, {} ] ], - "position-fallback-bounds-006.html": [ - "5a19c59f3104aaa556186e7dfa93d237bf46ad79", + "position-area-wm-dir.html": [ + "1ca0668067ca06833ff592d4d64d003b3befae19", [ null, {} ] ], - "position-fallback-bounds-basics.html": [ - "3b8b67bd978f3361512222f75cd71f08143007b1", + "position-try-001.html": [ + "739e09f6a7b8b5ba5a2de8c17fc30618ba36bd13", [ null, {} ] ], - "position-fallback-cascade-layer-reorder.html": [ - "ec1a64205c55788b021040b278ce1e51c2cbfc5e", + "position-try-002.html": [ + "a97f9ecbab00df8bc423271dc8f1aa6d845f3ce4", [ null, {} ] ], - "position-fallback-container-query.html": [ - "b4ef806206e6b20490ba6846dd8be5509ca40d05", + "position-try-003.html": [ + "a0d4c1393838985fc05b3449c8227cf5046aab72", [ null, {} ] ], - "position-fallback-custom-property.html": [ - "edb7efc7ed6884a52f6b3a3b7ba8a06833d1c349", + "position-try-004.html": [ + "ded0efb4e6520303b0dfbbb0eb708a8d25ec3b26", [ null, {} ] ], - "position-fallback-dynamic.html": [ - "f6d82104276121aa86b81daed6337339ebc24ac0", + "position-try-backdrop.html": [ + "93b1b81ecc4bc41d921fb7927a2ec4b32a46e8f5", [ null, {} ] ], - "position-fallback-grid-001.html": [ - "abe80bf51ef38adc7cd56a99797408da6433e1bb", + "position-try-cascade-layer-reorder.html": [ + "dc707e11ca86b4e6ddefd2ae9fc73cc07fe2ca13", [ null, {} ] ], - "position-fallback-pseudo-element.html": [ - "e2f95b9a24ae963e459ca6c92a3d366ff1631509", + "position-try-cascade.html": [ + "bec0aa1bf4102951968492d5ea34fbb34f854f48", [ null, {} ] ], - "position-fallback-tree-scoped.html": [ - "1d65b966d8fddd9aaead85046173dfa4b4c3e683", + "position-try-container-query.html": [ + "e5acc8b98543c320c47f7a3987b9838520c7fd2f", + [ + null, + {} + ] + ], + "position-try-custom-property.html": [ + "aee288bce41d793477e9e3cf1c157c72869fda3f", + [ + null, + {} + ] + ], + "position-try-dynamic.html": [ + "016b8023e6fba8d52fa0112ddf8f19f18b570cd2", + [ + null, + {} + ] + ], + "position-try-fallbacks-limit.html": [ + "1b1e76e12c8621e30bedb7737f6104c8316864fe", + [ + null, + {} + ] + ], + "position-try-grid-001.html": [ + "08b88fd59f2b5bbf61106b4b5c88e285c691e0c6", + [ + null, + {} + ] + ], + "position-try-initial-transition.html": [ + "163e2dc3b6d509ed757da87bb4728be7e7f645e0", + [ + null, + {} + ] + ], + "position-try-order-basic.html": [ + "c7705a71bbb5fe0a8833604a2edc8bcf43639636", + [ + null, + {} + ] + ], + "position-try-order-position-area.html": [ + "3b7a3475c759d0910b770e89c9df6adf0ac0e62a", + [ + null, + {} + ] + ], + "position-try-position-anchor.html": [ + "d26dfd9f2b57e144d0e0bc9e0d903b1e12a15e8e", + [ + null, + {} + ] + ], + "position-try-pseudo-element.html": [ + "23c572a4104169daa4574835ec76cf284a3e8c55", + [ + null, + {} + ] + ], + "position-try-transition-basic.html": [ + "eb4222090bd1584d31cc15f59f4a6bff9808c0e7", + [ + null, + {} + ] + ], + "position-try-transition-flip.html": [ + "e8e692a7295b9c9c3900764952058c8745da673e", + [ + null, + {} + ] + ], + "position-try-tree-scoped.html": [ + "b1cec4e4ef2d7b19b5696b315d7da753b099a90c", + [ + null, + {} + ] + ], + "position-try-typed-om.html": [ + "56e0aaf4e7765fa0404d4074d6f864f320b785fd", + [ + null, + {} + ] + ], + "property-interpolations.html": [ + "4dc6c71ab2c25c17a03ccda5c02e7781b707279c", + [ + null, + {} + ] + ], + "pseudo-element-anchor-dynamic.html": [ + "9e4fa9828ef5c63fa945cf61c702cc95d00a2e27", + [ + null, + {} + ] + ], + "pseudo-element-anchor.html": [ + "a107a0ec17695cdb8f614ed173b3162cb40b6b43", + [ + null, + {} + ] + ], + "try-tactic-alignment.html": [ + "b39a92983717e40a37d6092583cbc95ce7b967f5", + [ + null, + {} + ] + ], + "try-tactic-anchor.html": [ + "a40ed9fc36dc8b8bece51d8395c2cc41f54c3226", + [ + null, + {} + ] + ], + "try-tactic-back-to-base.html": [ + "96c2ee86950326a4ac250f680fae670dab2a2832", + [ + null, + {} + ] + ], + "try-tactic-base.html": [ + "c0a7ed739c87be9fb33c24e81d31b5f37647f38e", + [ + null, + {} + ] + ], + "try-tactic-basic.html": [ + "36077b33f493807cfc2470795ac4f9c8e376e182", + [ + null, + {} + ] + ], + "try-tactic-margin.html": [ + "7e0b25652c743fe2f6607202a7cab985ecf8d681", + [ + null, + {} + ] + ], + "try-tactic-percentage.html": [ + "41b5926e2cdb3c0014bd3dfa11e2fdcc1c121c08", + [ + null, + {} + ] + ], + "try-tactic-position-area.html": [ + "e050dbccef2b5679229c8df8ba02535e989ed23e", + [ + null, + {} + ] + ], + "try-tactic-sizing.html": [ + "1a55ccf8011fffbfa0a83922c651313e6c3261fa", + [ + null, + {} + ] + ], + "try-tactic-wm.html": [ + "8dcf98f893979c0511d3bbf6675df16b331a62c9", [ null, {} @@ -527969,6 +538751,13 @@ {} ] ], + "animate-with-color-mix.html": [ + "0b6d9bb4ab3ae911e7291e1da5e2259c0afbd0fc", + [ + null, + {} + ] + ], "animation-base-response-001.html": [ "c6731e179823584577f42a649f6f3665611a522a", [ @@ -528004,13 +538793,6 @@ {} ] ], - "animation-canceled-by-parent-details-element-being-closed.html": [ - "3f6521fccfd9ffd4dd52de4afbe43933d5feca32", - [ - null, - {} - ] - ], "animation-change-underlying-value-changed-in-flight.html": [ "444ea7378533da40fd6243d7c165785325374cdb", [ @@ -528153,8 +538935,36 @@ {} ] ], + "display-none-dont-cancel-pseudo.tentative.html": [ + "bed4ec2b80dfb29bcc9498d763cea12ee1faea28", + [ + null, + {} + ] + ], "display-none-dont-cancel.tentative.html": [ - "6ae115803b820ffdb51169c38769ee51f5062652", + "12394ffb599c402cfc9843cbcec12833e1d0a13a", + [ + null, + {} + ] + ], + "display-none-prevents-starting-in-subtree.html": [ + "d5d48b2a1849c3173d35db7b62ea36a207972308", + [ + null, + {} + ] + ], + "display-none-to-display-block-dont-cancel.tentative.html": [ + "45958a1ee240f740a9d01411c7df75896d76176c", + [ + null, + {} + ] + ], + "empty-pseudo-class-with-animation.html": [ + "d8dba1ab5bdae3b752004ae7112d680582cd010f", [ null, {} @@ -528256,27 +539066,6 @@ {} ] ], - "animation-delay-end-computed.tentative.html": [ - "77f96706383df2fb9a25478b5b35807b67bedf2d", - [ - null, - {} - ] - ], - "animation-delay-end-invalid.tentative.html": [ - "7cabd4e8e54d96d7c3b36fc9473022cf530f664d", - [ - null, - {} - ] - ], - "animation-delay-end-valid.tentative.html": [ - "162c781bb010066bfb17e87f64932180abb472c8", - [ - null, - {} - ] - ], "animation-delay-invalid.html": [ "1569497bb6a45225cb7f1f3c404512202d9da6e9", [ @@ -528284,41 +539073,6 @@ {} ] ], - "animation-delay-shorthand-computed.html": [ - "0a1eb96041c81ac14969d39a77013f8157495e5f", - [ - null, - {} - ] - ], - "animation-delay-shorthand.html": [ - "5c74a4d8e432ca41d02e5ec44330518f5162f457", - [ - null, - {} - ] - ], - "animation-delay-start-computed.tentative.html": [ - "bfb89d0267f5ad9a5ef7cb01e8ad6dc4b536a2fc", - [ - null, - {} - ] - ], - "animation-delay-start-invalid.tentative.html": [ - "bff31f3789a4fd9e8ff8be99e1af61882d46af62", - [ - null, - {} - ] - ], - "animation-delay-start-valid.tentative.html": [ - "f52286444edb71cdeb24bc57f8de8d566113730a", - [ - null, - {} - ] - ], "animation-delay-valid.html": [ "5ff0416cc64241f81025f39af20d186042d49a30", [ @@ -528581,6 +539335,19 @@ {} ] ], + "stability": { + "animation-event-destroy-renderer.html": [ + "3540d5c5ecbd16529010deb2d6f2f7f85edbc7da", + [ + "css/css-animations/stability/animation-event-destroy-renderer.html?animationiteration", + {} + ], + [ + "css/css-animations/stability/animation-event-destroy-renderer.html?animationstart", + {} + ] + ] + }, "style-animation-parsing.html": [ "792fda33ed8b0bacf355e62066ec05d54cc5c729", [ @@ -528594,6 +539361,13 @@ null, {} ] + ], + "transition-ready-time-offscreen.html": [ + "cc3151b40bac3d046876827e5413bbf643bde0c7", + [ + null, + {} + ] ] }, "css-backgrounds": { @@ -528605,6 +539379,13 @@ {} ] ], + "background-color-transition-colormix.html": [ + "3c7fd634c689d95247fad817780aadf2eaa2b8c8", + [ + null, + {} + ] + ], "background-image-interpolation.html": [ "feda6afebed310fc62aa53c28aceb417e6e81258", [ @@ -528788,7 +539569,7 @@ ] ], "box-shadow-interpolation.html": [ - "f0b7ec083ed8ab49659789854ca51bfdbea5c33e", + "be8f9d3572752b5d6c3f78798b7928c6470495e5", [ null, {} @@ -528894,7 +539675,7 @@ ] ], "inheritance.sub.html": [ - "01bb8422991ee48da525087d5462c380c5eb8b84", + "8af2dada5217ccf1b59620ab400afba052ff460f", [ null, {} @@ -528972,7 +539753,7 @@ ] ], "background-image-computed.sub.html": [ - "cf3c065d4954773dc9c97d588bc100b52850af4a", + "707cf33061b25f94e79d6aa502de0288399cb021", [ null, {} @@ -528986,7 +539767,7 @@ ] ], "background-image-valid.html": [ - "da08a638853471a40001219b6daaf913ddc4230d", + "dcffc3dde52fc019e77861d04d765d9a9e572df5", [ null, {} @@ -529422,13 +540203,360 @@ } }, "css-borders": { + "border-image-width-interpolation-math-functions.html": [ + "4286a11c69751835826d5cba46c314775fa8a3dc", + [ + null, + {} + ] + ], "border-width-rounding.tentative.html": [ "04c4ddf40bd7452ee5a135e4c1b4c2a7667fc1cd", [ null, {} ] - ] + ], + "tentative": { + "parsing": { + "border-block-end-radius-computed.html": [ + "fd096fa17c7de36d62661c67949f7e21479e7bcc", + [ + null, + {} + ] + ], + "border-block-end-radius-invalid.html": [ + "a9554bd9249858de75c85f59c7cdd5db2e1b13e5", + [ + null, + {} + ] + ], + "border-block-end-radius-valid.html": [ + "2989b349a1ad8fbde761b3d6fc7baba27f41d385", + [ + null, + {} + ] + ], + "border-block-start-radius-computed.html": [ + "292ae1b6dc278d526b02aa0c61018bfa58cb2010", + [ + null, + {} + ] + ], + "border-block-start-radius-invalid.html": [ + "0a9a8a9bb77704bf9ae29766bfbf407fc3ed3988", + [ + null, + {} + ] + ], + "border-block-start-radius-valid.html": [ + "8c9f0e0bd11b355db4a4665403e108ce9006a49b", + [ + null, + {} + ] + ], + "border-bottom-radius-computed.html": [ + "a83286a91008078d98323b750b69b60fec025557", + [ + null, + {} + ] + ], + "border-bottom-radius-invalid.html": [ + "bbf7555cdcfe4abf68a6b1be5e4b2fbe849fe74e", + [ + null, + {} + ] + ], + "border-bottom-radius-valid.html": [ + "fe3502beff5ffa6accdd87d2ea6c2e34bfb73b3e", + [ + null, + {} + ] + ], + "border-clip-computed.html": [ + "37f20490bd6c4095c53a9a60545049c479e592a9", + [ + null, + {} + ] + ], + "border-clip-invalid.html": [ + "8f6dff3f080c57ce8d816cf1a46665d64494eb64", + [ + null, + {} + ] + ], + "border-clip-valid.html": [ + "819d800b42b36539654448f7feb6a8b3c855f79c", + [ + null, + {} + ] + ], + "border-inline-end-radius-computed.html": [ + "58f78efa6d2eb1af12ec42300cc2fdd6522b466d", + [ + null, + {} + ] + ], + "border-inline-end-radius-invalid.html": [ + "3ee5ccde33c929f248d228c28a70bca47c25c8a7", + [ + null, + {} + ] + ], + "border-inline-end-radius-valid.html": [ + "72c8ad8c281fa956a2cb3916648728a6777471e6", + [ + null, + {} + ] + ], + "border-inline-start-radius-computed.html": [ + "f08c0b0bfd7b23614b83be85c9ed646139a2910b", + [ + null, + {} + ] + ], + "border-inline-start-radius-invalid.html": [ + "eaf404cf025c80434909aaf02732d2f68bdd3e92", + [ + null, + {} + ] + ], + "border-inline-start-radius-valid.html": [ + "1100664247e8b191576e70ca248ab3b0fc70a987", + [ + null, + {} + ] + ], + "border-left-radius-computed.html": [ + "2db20255758f4ad7f00e2297558fad52ce832fb0", + [ + null, + {} + ] + ], + "border-left-radius-invalid.html": [ + "43002f7900203fe36ef29b48c3d40b29d73765a8", + [ + null, + {} + ] + ], + "border-left-radius-valid.html": [ + "401eff5729e219847c88d0f5553f07593abaeef9", + [ + null, + {} + ] + ], + "border-right-radius-computed.html": [ + "b058938afc4416c4c145166d19a0ab4a19aafc30", + [ + null, + {} + ] + ], + "border-right-radius-invalid.html": [ + "f89f098376ee45e24f4c2c2562a9c352317e3f46", + [ + null, + {} + ] + ], + "border-right-radius-valid.html": [ + "dc2f5987176159ff6f7f69fb0edc04acbd488a0a", + [ + null, + {} + ] + ], + "border-top-radius-computed.html": [ + "e0dcc8ae4eab21260ecfbf892a1e05a065b8a18f", + [ + null, + {} + ] + ], + "border-top-radius-invalid.html": [ + "67b0fc8087eeb01064d5119a8678dce607fdd6d1", + [ + null, + {} + ] + ], + "border-top-radius-valid.html": [ + "8dbb9a4bb9606c98608d8400bf1c4467ee9fed49", + [ + null, + {} + ] + ], + "box-shadow-blur-computed.html": [ + "1c61f9a8e528355ae584304154623729e2d6d817", + [ + null, + {} + ] + ], + "box-shadow-blur-invalid.html": [ + "20b2a50446007a2067a0c6f11b3e1bff2b17492c", + [ + null, + {} + ] + ], + "box-shadow-blur-valid.html": [ + "10d65ebbf0af2234cd4a30379678916051195af1", + [ + null, + {} + ] + ], + "box-shadow-color-computed.html": [ + "53f0daffb738b4efdc5561641541d156b89b1b6b", + [ + null, + {} + ] + ], + "box-shadow-color-invalid.html": [ + "7d92386de21f88311d9eaf3d2f032994235afbc7", + [ + null, + {} + ] + ], + "box-shadow-color-valid.html": [ + "c278a7d1cc8caf4dec9c7e5db15838a03078ccd8", + [ + null, + {} + ] + ], + "box-shadow-offset-computed.html": [ + "8ed7d7bc9e0cd09421840e4e77c3847aceae065c", + [ + null, + {} + ] + ], + "box-shadow-offset-invalid.html": [ + "dd1c0f33749c8cea715246b7892795d2b5181976", + [ + null, + {} + ] + ], + "box-shadow-offset-valid.html": [ + "bfbe21f08955ae2740a9a3bae7e9123f61ef69d7", + [ + null, + {} + ] + ], + "box-shadow-position-computed.html": [ + "9818199b58c48ebcc6267b40f18531ba2ffda378", + [ + null, + {} + ] + ], + "box-shadow-position-invalid.html": [ + "9738dd610767a6bb536fb13ce80d4a2c33f28f36", + [ + null, + {} + ] + ], + "box-shadow-position-valid.html": [ + "0d9b56fb01ae24144e53de12833a5d62c5995372", + [ + null, + {} + ] + ], + "box-shadow-spread-computed.html": [ + "e7f39d55656f62fb905c4640942d8fa1e68e5056", + [ + null, + {} + ] + ], + "box-shadow-spread-invalid.html": [ + "205fd924b97740e8a473e01ae24a108ff6ca4872", + [ + null, + {} + ] + ], + "box-shadow-spread-valid.html": [ + "a368d136945852f1251b7a1ae3d2daeb925a842e", + [ + null, + {} + ] + ], + "corner-shape-computed.html": [ + "c238ddfb96971e7dfa227cb0a2ba9985ff0552c0", + [ + null, + {} + ] + ], + "corner-shape-invalid.html": [ + "51f8e05700a04aaa774f789816b78be49652d59a", + [ + null, + {} + ] + ], + "corner-shape-valid.html": [ + "62ee2630aced6f88381aacdd12f87c68e7a46008", + [ + null, + {} + ] + ], + "corners-computed.html": [ + "6605f9eeb0cccf9f5882278ac123470e546cd168", + [ + null, + {} + ] + ], + "corners-invalid.html": [ + "1a762a757250e050bd437f341a786d45a21cee71", + [ + null, + {} + ] + ], + "corners-valid.html": [ + "5b1ae7afb3f9fd50e9d7474d6632ddf600749c92", + [ + null, + {} + ] + ] + } + } }, "css-box": { "animation": { @@ -529518,6 +540646,62 @@ ] ], "margin-trim": { + "block-container-block-end-last-child-with-border.html": [ + "42893cdc01b7893b180368d6aac648cbf792e0c8", + [ + null, + {} + ] + ], + "block-container-block-end-nested-last-child-with-border.html": [ + "3bff1829b16e811425539d81198122b011fb3ae4", + [ + null, + {} + ] + ], + "block-container-block-end-self-collapsing-children-nested-at-bottom.html": [ + "1cb9995e94849964815e6e7a135ba5e1f5af3d44", + [ + null, + {} + ] + ], + "block-container-block-end-self-collapsing-children-nested-margin-trim.html": [ + "997e20350d3d23a0b52a691d06520f3bb1f7a084", + [ + null, + {} + ] + ], + "block-container-block-end-self-collapsing-children-offsets-nested-multiple-times.html": [ + "9ca3c3b28afb04948be57fca5421c25ee16af7d0", + [ + null, + {} + ] + ], + "block-container-block-end-self-collapsing-children-offsets-nested-once.html": [ + "97a15b3a841b81b24972ee0e1ff6cdec7c49e4ee", + [ + null, + {} + ] + ], + "block-container-block-end-self-collapsing-children-offsets-vert-lr.html": [ + "0b378b39eec61007474f1443a3b5a21fec034399", + [ + null, + {} + ] + ], + "block-container-block-end-self-collapsing-children-offsets.html": [ + "67c0a3e22838cb2025adf74b32114e0786c4dc6f", + [ + null, + {} + ] + ], "computed-margin-values": { "block-container-block-end-nested-child.html": [ "8a3b03c2e502c1f92ba43ac49ae0f4a304f60538", @@ -529722,6 +540906,27 @@ {} ] ], + "grid-block-start.html": [ + "c08d905ca29d8191c842c6e75f5971625420415c", + [ + null, + {} + ] + ], + "grid-inline-end-columns-added-to-end.html": [ + "9c88c2981598f316a3b19be88b5bc99c10c76725", + [ + null, + {} + ] + ], + "grid-inline-end-items-in-last-column-trimmed.html": [ + "58c05216ae041a1bfb5b6e304a9b7b940ddb71e9", + [ + null, + {} + ] + ], "grid-inline-start-item-negative-span.html": [ "80b97e9cd0d10526c713e58887733e51bad62ffb", [ @@ -530045,6 +541250,13 @@ {} ] ], + "page-break-important.html": [ + "778e579ab72e8996518e9de4494f0fcdd22407ab", + [ + null, + {} + ] + ], "page-break-legacy-shorthands.html": [ "7eaa18f5435e87362e85bc0963c512cdf3904c9a", [ @@ -530181,7 +541393,7 @@ ] }, "relpos-inline-hit-testing.html": [ - "ca0c961ca22b3ac7fac7f25f21085ceb220dfddc", + "aa7cd5ad97c7ab1614fe445ecb8a5f37165feffb", [ null, {} @@ -530278,7 +541490,7 @@ }, "css-cascade": { "all-prop-initial-xml.html": [ - "c58a816a57700c6aad02c082a1c86110785ea293", + "730ccac25f329e90f7c08f04244f11b1bfe27f9f", [ null, {} @@ -530320,7 +541532,7 @@ ] ], "all-prop-revert-layer.html": [ - "868267b285580466c8725f088f01cc3367f22b8b", + "3a1d621d1748ce32663a9eb91fad0162e35eedb7", [ null, {} @@ -530362,7 +541574,14 @@ ] ], "at-scope-parsing.html": [ - "88e28fe4ff7444f7268cb82cb1625c9a04451c9b", + "e984c1dcc29e1fe1fe199b16f6eafdb5403d1a2b", + [ + null, + {} + ] + ], + "at-scope-relative-syntax.html": [ + "8b0e41ab13e1fff6e1ce3a563845553e2d0ca831", [ null, {} @@ -530630,7 +541849,7 @@ ] ], "scope-container.html": [ - "3e976088e2c3b38d17ad57f33e9f219719144839", + "ce7207b42eb076e592c61f046332a6dfdfecfe7c", [ null, {} @@ -530651,7 +541870,7 @@ ] ], "scope-evaluation.html": [ - "f181048115deb9acefe7da9a8a4e8c93f37b6825", + "a70d2a59b7f54212b5e267182aac7dd5acdd1658", [ null, {} @@ -530676,14 +541895,14 @@ ] ], "scope-implicit-external.html": [ - "d1ac738b778da33fa0359646a0ef876b339d5a64", + "aee0b23856d4aad360d5ac660130dde0472a5c67", [ null, {} ] ], "scope-implicit.html": [ - "9add25fc9abd2b3ba88157d06fca550ed29796dc", + "a1c6d1c62640236ba8fbddfa11933e4f4c374557", [ null, {} @@ -530725,21 +541944,21 @@ ] ], "scope-proximity.html": [ - "c133a71e9a804b52c8d2556b1a8d1f26b3962636", + "0d62aa303aa75749b2c958ae04c1b41756bedcaf", [ null, {} ] ], "scope-shadow.tentative.html": [ - "28fed27cee8a2292a26722d1bc3613b86b7fe7f6", + "83a468bd07b535a3a35d08723d3fcda864fb5fca", [ null, {} ] ], "scope-specificity.html": [ - "0f48c605a852b2b2a40c093a45305bcd21b6c7b4", + "fa103ff3742fb341e80bf28b4a753d5a52918ddc", [ null, {} @@ -530752,6 +541971,20 @@ {} ] ], + "scope-style-sharing-001.html": [ + "2c1122a811d0229d9ee6a45f8c9b6012d959523d", + [ + null, + {} + ] + ], + "scope-style-sharing-002.html": [ + "f47ddd4299f9c70e419442e45d60a49db14888b2", + [ + null, + {} + ] + ], "scope-supports.html": [ "9be41de0e90c17fba3698f69836db9d750023abf", [ @@ -530826,6 +542059,13 @@ {} ] ], + "light-dark-currentcolor-in-color.html": [ + "7a95ea0b8ffc00c93f3776e57145ffa67aad3f3c", + [ + null, + {} + ] + ], "nested-color-mix-with-currentcolor.html": [ "2f24d62b547fb24200fa659d27a9e55777303aa5", [ @@ -530834,13 +542074,6 @@ ] ], "parsing": { - "color-computed-color-contrast-function.html": [ - "74be5ced3748dcaa9b86d99938390cd7de122de0", - [ - null, - {} - ] - ], "color-computed-color-function.html": [ "cafa79a1e10b145b4c8836b3057e416e928765df", [ @@ -530849,7 +542082,7 @@ ] ], "color-computed-color-mix-function.html": [ - "f0e2f6cce02889715b63efe3d7d11871b548a700", + "88cb20e6ebad405f6c5220d785a36147dddf0517", [ null, {} @@ -530891,7 +542124,7 @@ ] ], "color-computed-relative-color.html": [ - "deb1159da45192823ad6402faa79d7703e9ed64a", + "4997d6585d831f12341269e87f6a673e6376748b", [ null, {} @@ -530911,22 +542144,22 @@ {} ] ], - "color-invalid-color-contrast-function.html": [ - "1ac97926917e49c74a259fcaf9194f527c536472", + "color-invalid-color-function.html": [ + "e02fb44fcb0aed9dc732c098068554ada5f5a91c", [ null, {} ] ], - "color-invalid-color-function.html": [ - "5a39d42c2d41842b0e043639217d3f6f90f4fbf3", + "color-invalid-color-layers-function.html": [ + "2f8879c4eade3ee89f593318444ed38bd0498a3b", [ null, {} ] ], "color-invalid-color-mix-function.html": [ - "40299644bff386c9a22134c24de4a7da2c829574", + "2f815f814007e6035dd2616e152722ad5343bda3", [ null, {} @@ -530968,14 +542201,14 @@ ] ], "color-invalid-relative-color.html": [ - "9746d6ed20c94dc6ca379e9db9cc9a7aba07a3dc", + "c6f1370abdc945cca111d02704aca1ccd51516b5", [ null, {} ] ], "color-invalid-rgb.html": [ - "90dd082f2ae9a2024e411669bbbe68a82868fa2f", + "08d4c6735aeabc81bfcf4d1c1f28c3f28540bc42", [ null, {} @@ -530995,29 +542228,29 @@ {} ] ], - "color-valid-color-contrast-function.html": [ - "bdb8f0f588805797c1589802043d761560f4cdb8", + "color-valid-color-function.html": [ + "2a7750539ca6e8efbcc6724adf79c11180faef83", [ null, {} ] ], - "color-valid-color-function.html": [ - "2a7750539ca6e8efbcc6724adf79c11180faef83", + "color-valid-color-layers-function.html": [ + "3d579983d43774491c046723f6f60289f172e254", [ null, {} ] ], "color-valid-color-mix-function.html": [ - "f11ecc8e4722b974c25a144edc64591b3b178852", + "1f7c7728ab5b48d30b02e48fb9f318f9b5c5b8ba", [ null, {} ] ], "color-valid-hsl.html": [ - "7ab1274176fd9fbbaed10d1644d18c2eb05b41e3", + "b3a9d7944e82c1aae5d733e3bf1d48779dae0396", [ null, {} @@ -531038,7 +542271,7 @@ ] ], "color-valid-relative-color.html": [ - "543c2486c013d977095181a3f8e6ec478c69826d", + "f7ee41410ea91eda290bd6ede019695de38d73c4", [ null, {} @@ -531102,14 +542335,14 @@ ] ], "system-color-consistency.html": [ - "4eb9d8110055a60cdce54515f306d061b6986fb7", + "0d23d84ad25f0287c90a927703f2cbd2ae0fe0d9", [ null, {} ] ], "system-color-support.html": [ - "a17ab6ab6eeea76f29e0015aab1600115e613331", + "8c278f51193884ae8b81e2aa3f2d3948b22703c8", [ null, {} @@ -531179,6 +542412,13 @@ {} ] ], + "color-scheme-iframe-dynamic.html": [ + "46d05d63cb75ffd03f9f6f08b23743184e73d2ab", + [ + null, + {} + ] + ], "color-scheme-root-background.html": [ "c5766c7f99f9d22510da537fcb8b9035d356f2d4", [ @@ -531204,918 +542444,981 @@ {} ] ], - "idlharness.html": [ - "63cf750933737d3a221ccb48d2a667c110dd0bf9", - [ - null, - {} - ] - ], - "js": { - "001.html": [ - "bafb840d3120852a40529b5e0d8b704918cbbb2a", - [ - null, - {} - ] - ], - "CSS-supports-CSSStyleDeclaration.html": [ - "daec039e406d51bfe67587ed096a74d20bbeeee7", - [ - null, - {} - ] - ], - "CSS-supports-L3.html": [ - "f94933422a31d8db9bf3c84c7fd1717887519796", - [ - null, - {} - ] - ], - "CSS-supports-L4.html": [ - "2250e2be749465f57482ffe21167fe626e493391", - [ - null, - {} - ] - ], - "CSS-supports-L5.html": [ - "b87d6e8fdfcbc1d773b2df3fbb63abd138230e7b", - [ - null, - {} - ] - ], - "CSS-supports-selector-detecting-invalid-in-logical-combinations.html": [ - "3adcd7ae2e62bd76130b3ecf2b903e1401b23c77", - [ - null, - {} - ] - ], - "conditional-CSSGroupingRule.html": [ - "bde92d7091bd0ace1320acb5d0d8f56c33def22e", - [ - null, - {} - ] - ], - "supports-conditionText.html": [ - "ea74077dfd0070edd9e8ae4f2ab092bf369ce268", - [ - null, - {} - ] - ] - } - }, - "css-contain": { - "contain-chrome-thcrash-001.html": [ - "c7c03bca106c84678ac06e52c506198af0948228", - [ - null, - {} - ] - ], - "contain-flexbox-outline.html": [ - "39cf81688e0a294d542cf18a72ec1e808d7bc546", - [ - null, - {} - ] - ], - "contain-inline-size-replaced.html": [ - "71c9fd77117c5441bf18fc52d21b0476507f8122", - [ - null, - {} - ] - ], - "contain-paint-049.html": [ - "49cdc9beca09c9dbf66607342ba8936c6a817225", - [ - null, - {} - ] - ], - "contain-size-grid-003.html": [ - "44b736b1d6b62ec5c4fc0e6fb3314095df6a27f4", - [ - null, - {} - ] - ], - "contain-size-grid-004.html": [ - "c333c03298c7049292913f3e21de52eb0564c8d2", - [ - null, - {} - ] - ], - "contain-size-grid-006.html": [ - "7bfbac1c6c7fb0bc0f97957a402981193dbd1585", - [ - null, - {} - ] - ], - "contain-size-multicol-as-flex-item.html": [ - "19aa12262f9a7dc35f3682b1f7baa3c12949a906", - [ - null, - {} - ] - ], "container-queries": { "animation-container-size.html": [ - "fefb721cbc9a49296e76fb6194a6702b5211816d", + "e620335c358544c57ba58fd87e8cdd5d242c616e", [ null, {} ] ], "animation-container-type-dynamic.html": [ - "835e8e1be1db29cf31895f0eac2ac3ba0a500026", + "473c914d8a534ae3ddd76d956075bc5bdf0ef5f8", [ null, {} ] ], "animation-nested-animation.html": [ - "7f1ae854ae8e0ccaf68efb4a87397b0fe05af7ce", + "b956fed2b4c2895a74f8d68de99632a7edecbd81", [ null, {} ] ], "animation-nested-transition.html": [ - "934f995a9791366e59bbd1e1a510e7058d84d1a5", + "ca8808664efcf8d00ac0d9af3a2ec90cf0f7a779", [ null, {} ] ], "aspect-ratio-feature-evaluation.html": [ - "843f34732b6c81696487c33ff497d8d48066ef13", + "9b68e8679d08eb440b3c1adc1fa11cf1cf8db6c4", [ null, {} ] ], "at-container-parsing.html": [ - "b0196b5e5a124cbc41f13e754f0963108b407d4a", + "b8872e89a45d28ce5313fea06b594ca9ac4df4c0", [ null, {} ] ], "at-container-serialization.html": [ - "141062a8d4711c69e49b368a9ba88ecee2edaf4b", + "7e6e3e9945245013c2a7d795b3ead5d2ab13e4fc", [ null, {} ] ], "at-container-style-parsing.html": [ - "36fda2e36630d2330e84da0edc571983f9d07790", + "3ee22be9f5bca2acce53a68a217c7a958c3a48d8", [ null, {} ] ], "at-container-style-serialization.html": [ - "a4fb25378cbe36812dbb744b0d7c6aaf9c1a33c2", + "a30acef9ac21acadf3bddd7099709ffa032a43dc", [ null, {} ] ], "auto-scrollbars.html": [ - "44074ed2133eda9e5296b375ef5f688cb4d9122f", + "96f082f38aa5595d63e72f4d1954c4e9140156bf", [ null, {} ] ], "backdrop-invalidation.html": [ - "6a59a2f8941e15980df8f2fa5b5f9d7bb32bd2fb", + "6f7d52cc386f0a0b963f2b92b4fdc182433d9909", [ null, {} ] ], "calc-evaluation.html": [ - "71a5e23764ed33acbdb3ab4dd21c575b9c39c694", + "60fd59e9cd436000d83127efa1469d60dcd0a6a5", [ null, {} ] ], "canvas-as-container-005.html": [ - "9132592434c53ae28894cbd00dd02c7e5d402d39", + "3068ce708e68e8392cd2f2a7d9e35eaf7f5242db", [ null, {} ] ], "canvas-as-container-006.html": [ - "02dbce62753961e6bb3d9a1472c2cb80626c548c", + "0fbb6f6d8332bfde3a0aec8f12198c9c650c4179", [ null, {} ] ], "column-spanner-in-container.html": [ - "d494e28504fb6be56fb79b53f68507071f39ce72", + "0f0b5f7850fd0664441e4a75e6e5d75a91514e0f", [ null, {} ] ], "conditional-container-status.html": [ - "e9762f93239ac674897827aff1bd6eb5727abdab", + "d0dfb97e9cb0bd32324c9ea180afa7938124de0c", [ null, {} ] ], "container-computed.html": [ - "2be304481bac32928a602fadb083222d993a02fe", + "fa56ab77402869eb44c8bb393ba2f11310498861", [ null, {} ] ], "container-for-shadow-dom.html": [ - "d1a0c3b5689b9804cb1a9a1d320786d522af9023", + "d79b3a9d554426754ceb6af98f6ca9e774b2e92d", [ null, {} ] ], "container-inheritance.html": [ - "b333b691fd78789af20d15b235cf1a88c0e91f5c", + "9fc8cadc3e4a06ce1cc7360ad7bac5fbcce5c01a", [ null, {} ] ], "container-inner-at-rules.html": [ - "ac1800292984023262d5af86d96993139f671736", + "4f0d6e02589bf1a31fd4f1b5c0a7ba9c2ae373c7", [ null, {} ] ], "container-inside-multicol-with-table.html": [ - "8688159da3c3c332167c5fb1578ee12dc8dee0c3", + "1046d57ef250fe74166c1ca6a7c4d56bcb07975c", [ null, {} ] ], "container-longhand-animation-type.html": [ - "aded2a3ec8bae1203e458667bf6ff1f616aca91a", + "efc9a817d94756242486a974afc50c8e4c75538b", [ null, {} ] ], "container-name-computed.html": [ - "f58d54744e46d329b308c50b8232ef09bdc7ba80", + "abd2ebe086067772ab861eab37795a10bfbdce6a", [ null, {} ] ], "container-name-invalidation.html": [ - "aad225def9d0436de8be61e7c0dcbcfc681c0973", + "e918f182e2cfcea9792bded8fe5b5e6bb9b0f2fa", [ null, {} ] ], "container-name-parsing.html": [ - "4f385cca5245cd63e531d1ddf26c84cf31b7b2a6", + "895b73ee66e598ed3e226890d7fd64ca5c67a86e", [ null, {} ] ], "container-name-tree-scoped.html": [ - "e66f51d035d4305c3a2bede02702b4bab7ce24a3", + "de633282e88b627b42f93f3fa90c020cf83f0bea", [ null, {} ] ], "container-nested.html": [ - "3ad35bd2be802f10417bfd4fbcb5ab7a983d20bf", + "dfe30ac0ae17d91f3a5e71f168acb19404918090", [ null, {} ] ], "container-parsing.html": [ - "87b3bdd48cd30cd591cfaccc5cfda34302a05145", + "ab04102b569cf44fb307f68fb12d2ee61b2c7e9c", + [ + null, + {} + ] + ], + "container-selection-unknown-features.html": [ + "5c2c67caaf1569fd4d9e739ff3a25cfc2bb9e65a", [ null, {} ] ], "container-selection.html": [ - "cef20f85a2fdf60a08b2ad9ff4cc8e3ea30be6aa", + "d262da9ddfd7d9cc10e2378527c9f44f9a33169e", [ null, {} ] ], "container-size-invalidation-after-load.html": [ - "cf5687aa39dfa7794422059ae72d5cf9e61d2cad", + "2d66b0990fd48a7ad95755307a061a798627bb60", [ null, {} ] ], "container-size-invalidation.html": [ - "ab26971749877a46ede83ca9411eadc2b35edcfa", + "14433c9c3cf012474551ff53f6fcabe2a14ec4a0", [ null, {} ] ], "container-size-nested-invalidation.html": [ - "a549f6d84820f89c0df151d20dde385d41bf1ce6", + "c13c80ed3852e478a0d9db66d1f9892a45cbacb5", [ null, {} ] ], "container-size-shadow-invalidation.html": [ - "35773b3006a9f67251857a197e501687a60c643d", + "4d2300701ae01fb857fead2e083478bbc29bee78", [ null, {} ] ], "container-type-computed.html": [ - "0b5e033a0f302e904414447e2a7eb9be8eadfb39", + "60d5ab5a05a468c1c72eee3139681cd9de923fe2", [ null, {} ] ], "container-type-containment.html": [ - "66500a6a71c12087fc02cc292cabdf50314962a7", + "ba97b385d6c5672fb6193d49438acb77065d6d9c", [ null, {} ] ], "container-type-invalidation.html": [ - "90e0b4acd1d38ed9cd01d4dcd024eba77fc5e482", + "e4f02028a74c8d71ab36d4b78cf0cf8a0ad843fd", [ null, {} ] ], "container-type-layout-invalidation.html": [ - "3103de81f7989de283be355b47b3a137c12dd3b4", + "27c7b8a012debb1969d47e0d0c2c253b00298684", [ null, {} ] ], "container-type-parsing.html": [ - "5805a927b327eefc1a687db3cdbb8c27c306fb04", + "1e106852c5bd85e4f5887cef42befcb1925700c9", [ null, {} ] ], "container-units-animation.html": [ - "cf1b9a8f345ebfeb1217237f078e5e4e55f96250", + "79e59dc2a186fb3dc207547df9add7d327a357d5", [ null, {} ] ], "container-units-basic.html": [ - "166a003a29b2eb1bc0c017815a36cdcb1361c2aa", + "84f55d550eac0b5810d103d4b59c37a9080c0fb3", [ null, {} ] ], "container-units-computational-independence.html": [ - "694b665c793c820f5f80aa2c19ff4be146f72a08", + "94d786dfe51b18f5405a821f3dcb4378010b61ed", [ null, {} ] ], "container-units-content-box.html": [ - "89a76e868ce5750f9739c4713da65701c9498277", + "0fc18b3175f9c2a83900df80c16b821843919599", [ null, {} ] ], "container-units-in-at-container-dynamic.html": [ - "c1f929241ca7018f636bfabf7072c1bfa549db6a", + "978d5a60051fdb8fd5c749fb25b8a212c648c6f0", [ null, {} ] ], "container-units-in-at-container-fallback.html": [ - "3784499c387cc3f56356918064470461f039eada", + "fe7af8e38ea2366f31bbf044e2f73912b030cf65", [ null, {} ] ], "container-units-in-at-container.html": [ - "9ddca55ec15226dadba851a1b780cc258be7806d", + "9faf62ffc0c2efa07f26b2617e8d18514e7504b0", [ null, {} ] ], "container-units-ineligible-container.html": [ - "8882d4a38ba030e694e22d96d32ce2ecb2301b40", + "61565de6e2899940017797db87df3118c806e15e", [ null, {} ] ], "container-units-invalidation.html": [ - "abb766cd0c77b033e4aace48cf499897c3fd2347", + "602f6b69dc20401e831998a8a08c831658d0a24b", [ null, {} ] ], "container-units-media-queries.html": [ - "7b76f654e5cec341d9ee364878d9692b8a04e34d", + "b46e0cb715a9c269fd69b1668e26afd7296b3447", [ null, {} ] ], "container-units-selection.html": [ - "16a44cd176618d0ed21e6cb8921fd286234441fb", + "66ab3e245803db542ae51cd1ba968b8b51f83605", [ null, {} ] ], "container-units-shadow.html": [ - "c7fd0500f258158b744d66b569d33718f29bd6c9", + "3c672ad54265c0ddfe01e55b4af6062e7a761f86", [ null, {} ] ], "container-units-small-viewport-fallback.html": [ - "6c8851681fb62fc133a2635796e38c367e866dcb", + "d1c95d33b8f124739f5da29e8c51ff305690a0d8", [ null, {} ] ], "container-units-svglength.html": [ - "8bb227c0498941222275c024b2707fd089639624", + "e39c21e34616fd2abcdf903f3c9aa6465a5dac43", [ null, {} ] ], "container-units-typed-om.html": [ - "6da3306fdfa3e88dde176d43c81813c3959a0306", + "4ebb3518ac21373f28c1d1fc9a66644fec2ac565", [ null, {} ] ], "counters-flex-circular.html": [ - "d60049e26c7b9d5dd45748a79a2e1c90afc8ed72", + "04af2e2dc06ce2dd44f1fa78204ef7f5f66a5bb8", [ null, {} ] ], "custom-property-style-queries.html": [ - "29b5004af06641dd8cda85ce943f2ad5002b37a6", + "96a80904521ae3e92c43c87c4f05098d7e2376fd", [ null, {} ] ], "custom-property-style-query-change.html": [ - "6669ede31dae0f95f2f03a29023516e7aaee303a", + "ac15092b4cd11443b521e9857eaff01235a7dab3", [ null, {} ] ], "deep-nested-inline-size-containers.html": [ - "00bc8b0a6b2deae05e980a6c8cd7ddbab286906f", + "40012b41f2188cd18ffeb9fe8b09cbbe5a87d0dc", [ null, {} ] ], "display-contents-dynamic-style-queries.html": [ - "782cf566552423193669f9f0da034f802d265067", + "466992f628fd29a98a6cf65a04872bb9408d9b13", [ null, {} ] ], "display-contents.html": [ - "d96a46d06a85f024f0fce9d43e34dec6e271ea76", + "3dd50caff3899c1c6f92b3a05eba6669db7adcef", [ null, {} ] ], "display-none.html": [ - "8d07ec09ddea2387d2350c6908780cd1c51696a4", + "4949cbbb7152cda5e278924ebe86ff73a52a3439", [ null, {} ] ], "font-relative-calc-dynamic.html": [ - "54f01d45a396ca1320905e84abf70fac238b03ea", + "927dda9ffa111156ba7de53a1ea27c7ca2210c3d", [ null, {} ] ], "font-relative-units-dynamic.html": [ - "9dfaceeed6b41c7f0366ac6288809efb9a3e1e52", + "60c668a71c7d8768a8bf0baa1b0694d46a247d4f", [ null, {} ] ], "font-relative-units.html": [ - "ba4a60dda21962a8956180b601984942c3dc94ff", + "38d1902825506e32d11ad16e805ce6304005336a", [ null, {} ] ], "fragmented-container-001.html": [ - "886f179054cd0511d261da1d03cf59b704110e50", + "f5f4d7de7bdb922cca0c48a30334859caa23bdf0", [ null, {} ] ], "get-animations.html": [ - "dca41c6adad8355411999e56982806168d671ad0", + "228f52ecf58361e93b486fb1295cfaffc00fe127", [ null, {} ] ], "grid-container.html": [ - "60278e09c69f3fb5718e75ebaebcf04da1e146de", + "c7002f696f6e630c81271c6b4bf04f4dc33580ec", [ null, {} ] ], "grid-item-container.html": [ - "f1c66efc26d9f96db833c17900852b1ffeb69991", + "f097c18b2ae6d2be3cee9b76b04b74eb4a6fae38", [ null, {} ] ], "idlharness.html": [ - "ac1a677bb94d045d9aa6ce8b49bb85cbff51cc92", + "177531d0d06600b6afd1bc1e38743c1d4737fb83", [ null, {} ] ], "iframe-in-container-invalidation.html": [ - "f43d1ce7899cd78362b73bd048373b18e3f7229c", + "4c904d2d4b40d6bef3640e034cef4d1cf985376a", [ null, {} ] ], "iframe-invalidation.html": [ - "51f2be9cfa3375af7ace46c9490612bf9daa5382", + "c68fd4b16a9ffe95831524842f6f0005f75f4af9", [ null, {} ] ], "ineligible-containment.html": [ - "36ce68d864336337771a926c2a9eaebed5399eb9", + "1e1cace51e7b80ccc2511ff92243ccc0fefa51dc", [ null, {} ] ], "inheritance-from-container.html": [ - "97dfff2fd02fe6e825f3d547caeb88fefef2d0ca", + "4b815d68aa39c15b9eeb0bc50131701153caac8e", [ null, {} ] ], "inline-size-and-min-width.html": [ - "8ddcbc614cae184b65295ab722ce392df4491f5d", + "91e8c48a93aae0066878be545696cfc4ae0e924e", [ null, {} ] ], "inline-size-containment-vertical-rl.html": [ - "38c88f2df79748747e11a41f35808bae3d55e82e", + "44fa62c79352c9afe756e2686580fe73bcc9379e", [ null, {} ] ], "inline-size-containment.html": [ - "d519322bd2719c72b17a1b81e0649103b2b60078", + "154a0a47ce13287298f8e784818a79f450a8a132", [ null, {} ] ], "layout-dependent-focus.html": [ - "a16370ac566d7044efb03f0466889a89dda49c4c", + "3e28f4a1da16299a8e05cbc3700b3041d925a9e1", [ null, {} ] ], "multicol-container-001.html": [ - "3032170ac61bee9d4322d1992ab8a27af668c48e", + "9785b6b0c624d6c94a9fe557e6395a1610c75f99", [ null, {} ] ], "nested-query-containers.html": [ - "83cc3c2fecdae002a54988a31f098b592928e4ab", + "348e3d1529e294c06ad91126af628711ff2edbb7", [ null, {} ] ], "nested-size-style-container-invalidation.html": [ - "8d04bf589a2e03e2f89b69c69f0d5d3a38a2872f", + "87256703884c388f882a6c5a0098339af525c5c5", [ null, {} ] ], "never-match-container.html": [ - "9d5ff6d2272c809cd2b95aeedb3b86896c469e37", + "5acded7cc5a085f4aa822e64109872dc91711afa", + [ + null, + {} + ] + ], + "no-layout-containment-scroll.html": [ + "57a912bcea0acf6f59fd77e5d865ab419c36ebb3", [ null, {} ] ], "orthogonal-wm-container-query.html": [ - "1ad52bf499c46f1826614a93038f96920b345bd8", + "630226500effd84819a696939c2133ccbbea763b", [ null, {} ] ], "percentage-padding-orthogonal.html": [ - "0c419d18a9da2c2765667c1d2b81d7f4dc514112", + "dac71be0bca6e2e86be48a28b1c8863763e57a23", [ null, {} ] ], "pseudo-elements-001.html": [ - "0baef0bfc2b55a3e8fda67084796355d41712929", + "e147da5d9e85858a9b4ecc69f65a028d8e0b042b", [ null, {} ] ], "pseudo-elements-003.html": [ - "2d7647f7104f4f6d5317342d3d5c6f453ff89462", + "d7bec8a6e185b1f602600bbf10c4a1c20cf271a7", [ null, {} ] ], "pseudo-elements-004.html": [ - "db199f220505dc4e55c5a3bbcce1903e4d22ece9", + "6c0babfae23160f3901c51e4a1b4b4e6a41583df", [ null, {} ] ], "pseudo-elements-005.html": [ - "575b66d6f838dd45733de842e3828eb1773f6c86", + "163349adc862bd7bf2c6a5064541eb7e19c66e4c", [ null, {} ] ], "pseudo-elements-006.html": [ - "65aee97f75893635b64ee33c4b78c5e31cfb3027", + "39c00d70dc235b7baddd25e5587e844400cc231a", [ null, {} ] ], "pseudo-elements-007.html": [ - "951f4226f4968b93cb498160a11e984819e4d7bb", + "575cb73af6515b01c39498e91a5db10a6f802551", [ null, {} ] ], "pseudo-elements-008.html": [ - "1d722a46b659ec8d11dc1ace9bf19d6e65be3f33", + "dfa07922368d5caa89b7b2568c5bc26e0147b508", + [ + null, + {} + ] + ], + "pseudo-elements-013.html": [ + "e41fc7611a4e30351910ebfd7908c0b9e0648552", [ null, {} ] ], "query-content-box.html": [ - "5f6cc9fdbe0719fe673d6d24cf6601823e63883d", + "5b83944d2f81deebb3c685cc7c87dd2fd03f17d7", [ null, {} ] ], "query-evaluation-style.html": [ - "4262f8bb0c2015e9da32bf8c96432563cb129c18", + "75876dd1ac354986fe7cba18ceebb99f510cafd5", [ null, {} ] ], "query-evaluation.html": [ - "5b301f2d1d94097f51e4f21bf90a7a99531a9dda", + "d5c77c3a7e4a7c403dc058c36763d941069ef049", [ null, {} ] ], "reattach-container-with-dirty-child.html": [ - "680d9caa84aed511f2e3a961e687a8b28a7c9e92", + "914155a660239a10f47fc6f11011c559903f2725", + [ + null, + {} + ] + ], + "registered-color-style-queries.html": [ + "fd663d2c2d839aa84a175c0c077aa20f85a00766", [ null, {} ] ], "sibling-layout-dependency.html": [ - "5e30a998d23b03dd73f1ff290876243bd2eb9417", + "eb3df2ba410d34b62686351fc6834287fbd73baa", [ null, {} ] ], "size-container-no-principal-box.html": [ - "4bff0681ab603e07f8bf1f2cad10a51c2bcb2832", + "730bb1d7361ae449d7c129a318d89cd6f9c6adb4", [ null, {} ] ], "size-feature-evaluation.html": [ - "600a266fce25efe508c8902847bdad6fe7c69ce1", + "282233dec9d00786295324bbea99e33db8c77eb8", [ null, {} ] ], "style-change-in-container.html": [ - "ed4baa7e8b619f77782466e3c0db1fbe4274091c", + "abbb1266e6994fafe20cb8183e2cddbeefa82b84", [ null, {} ] ], "style-container-for-shadow-dom.html": [ - "b8bea097504713207f7e77bf8eba5ea6e80735a2", + "22ab9b9c3e802c346eebb92b65b76dcce307d064", [ null, {} ] ], "style-container-invalidation-inheritance.html": [ - "b7aef69d3e1b2a32cc64bf754a0c3fb8fe2cd08a", + "9d2ab5611017f8519327d244d8287a3a61b8206b", [ null, {} ] ], "style-not-sharing-float.html": [ - "7c76bb32bf2a5db0352ea6fcdaaae4c6247a06db", + "c36339491134b487d30dca332fe3aba1e794e3db", [ null, {} ] ], "style-query-with-unknown-width.html": [ - "8b05d6c11200c94670a304cf4b490e6f590f6244", + "52f250c2d0d942db2d1e2e7eeae0b89f593cc744", [ null, {} ] ], "svg-foreignobject-child-container.html": [ - "898fc22c2ba038a07b0907517d3e5e1cb421500a", + "8dc98a6321c1a3a8fe71936a09d092acc2666f52", [ null, {} ] ], "svg-root-size-container.html": [ - "70ce40c0bcefc595a7afedadf945ac6c8b19b2fc", + "ccdcf557d513e7c3f7ebc4b4200fc03626c0c755", [ null, {} ] ], "top-layer-dialog-container.html": [ - "5627a6cea0d3c57bfa31ccd778147c5738a88b21", + "40a611bc918f687d3cb45947fec6491393664e35", [ null, {} ] ], "top-layer-dialog.html": [ - "9d18b1862d1256af52b4f354a4750f8c92ede42b", + "255b42acff67bf1459c874718a886cef761d76b1", [ null, {} ] ], "top-layer-nested-dialog.html": [ - "1a6d573f24fff779b63d4eff4781141b57f6f52b", + "a988efe02f68f624918f138fe264b7b83cd321c1", [ null, {} ] ], "transition-scrollbars.html": [ - "60d82d26b4a850a41fc5c8eee39dfad60bbbe1a4", + "9d3f3a1c6c69ccab09c33492af49eb68fc7d2304", [ null, {} ] ], "transition-style-change-event-002.html": [ - "dc9297004d7c04ee86d2013272dc5c53b09c4b43", + "f5b32c6fa0e282c4de823f1173d49779ca8d2744", [ null, {} ] ], "transition-style-change-event.html": [ - "4cc1772979d2ff3c0a0628426ac7a109a5306497", + "8940284f99091612c50ecf20cac6324f0faaac85", [ null, {} ] ], "unsupported-axis.html": [ - "308de2f4245937e8bc014e703395e08f37abd64b", + "80bbf9776dfe486045275de068b0a4281ea5ffeb", [ null, {} ] ], "viewport-units-dynamic.html": [ - "2339533deeeb76f81d444e3ef178e4cd0c3a47c4", + "10f65efc0aeefa9a56c88b6820c85142987a70e2", [ null, {} ] ], "viewport-units.html": [ - "9b8bb42c434a5752485a267c8ae2136efc9367cd", + "498a9c7eb2d31e3f15a49b3c16b0decdd246f144", [ null, {} ] ] }, + "idlharness.html": [ + "63cf750933737d3a221ccb48d2a667c110dd0bf9", + [ + null, + {} + ] + ], + "js": { + "001.html": [ + "bafb840d3120852a40529b5e0d8b704918cbbb2a", + [ + null, + {} + ] + ], + "CSS-supports-CSSStyleDeclaration.html": [ + "daec039e406d51bfe67587ed096a74d20bbeeee7", + [ + null, + {} + ] + ], + "CSS-supports-L3.html": [ + "f94933422a31d8db9bf3c84c7fd1717887519796", + [ + null, + {} + ] + ], + "CSS-supports-L4.html": [ + "2250e2be749465f57482ffe21167fe626e493391", + [ + null, + {} + ] + ], + "CSS-supports-L5.html": [ + "b87d6e8fdfcbc1d773b2df3fbb63abd138230e7b", + [ + null, + {} + ] + ], + "CSS-supports-selector-detecting-invalid-in-logical-combinations.html": [ + "3adcd7ae2e62bd76130b3ecf2b903e1401b23c77", + [ + null, + {} + ] + ], + "conditional-CSSGroupingRule.html": [ + "bde92d7091bd0ace1320acb5d0d8f56c33def22e", + [ + null, + {} + ] + ], + "supports-conditionText.html": [ + "ea74077dfd0070edd9e8ae4f2ab092bf369ce268", + [ + null, + {} + ] + ] + } + }, + "css-contain": { + "contain-chrome-thcrash-001.html": [ + "586c89428a1f3f63e324246420b1ac760ab2ee9c", + [ + null, + {} + ] + ], + "contain-flexbox-outline.html": [ + "39cf81688e0a294d542cf18a72ec1e808d7bc546", + [ + null, + {} + ] + ], + "contain-inline-size-replaced.html": [ + "71c9fd77117c5441bf18fc52d21b0476507f8122", + [ + null, + {} + ] + ], + "contain-layout-dynamic-001.html": [ + "428d2b9d4d9c4866891288f6caef1f7962cb0d80", + [ + null, + {} + ] + ], + "contain-paint-049.html": [ + "49cdc9beca09c9dbf66607342ba8936c6a817225", + [ + null, + {} + ] + ], + "contain-paint-dynamic-001.html": [ + "899b5643c1a00358ee4b908b0e1ba813f4407783", + [ + null, + {} + ] + ], + "contain-size-dynamic-001.html": [ + "f670d301c563e9317a0558a66609159c65b474eb", + [ + null, + {} + ] + ], + "contain-size-grid-003.html": [ + "44b736b1d6b62ec5c4fc0e6fb3314095df6a27f4", + [ + null, + {} + ] + ], + "contain-size-grid-004.html": [ + "c333c03298c7049292913f3e21de52eb0564c8d2", + [ + null, + {} + ] + ], + "contain-size-grid-006.html": [ + "7bfbac1c6c7fb0bc0f97957a402981193dbd1585", + [ + null, + {} + ] + ], + "contain-size-multicol-as-flex-item.html": [ + "19aa12262f9a7dc35f3682b1f7baa3c12949a906", + [ + null, + {} + ] + ], + "contain-style-dynamic-001.html": [ + "dfd4032ac55729bff8b781a86ad17a2d1168ac02", + [ + null, + {} + ] + ], + "container-type-important.html": [ + "e95a50998403a0683403e42d81db46b16c769a03", + [ + null, + {} + ] + ], "content-visibility": { "animation-display-lock.html": [ - "0a03768fc358dfc8169f1c91e6ac4935ea5cd6cb", + "279ffd002ed21a90b2525978e9c0b328375b69a1", [ null, {} @@ -532364,6 +543667,55 @@ {} ] ], + "content-visibility-anchor-positioning-001.html": [ + "f0b52e8ebd6680721e5ff700888ff48c28b380a3", + [ + null, + {} + ] + ], + "content-visibility-anchor-positioning-002.html": [ + "9bbe05fd8535155c10ee5f1fbedd2b9234e3f18c", + [ + null, + {} + ] + ], + "content-visibility-anchor-positioning-003.html": [ + "85b218600a31a1af41b097a8ba2f205678693a35", + [ + null, + {} + ] + ], + "content-visibility-anchor-positioning-004.html": [ + "730c46b0244259f918aff76d087d2b418c861e07", + [ + null, + {} + ] + ], + "content-visibility-anchor-positioning-005.html": [ + "ed46e3c6869df3308ad196f8cbd8d3691ab2bd44", + [ + null, + {} + ] + ], + "content-visibility-anchor-positioning-006.html": [ + "7c777680a0e5028848e7b10a82b44418f342d899", + [ + null, + {} + ] + ], + "content-visibility-anchor-positioning-007.html": [ + "69e7f6f53e6bf072655e3c6336f885c39bcaeab7", + [ + null, + {} + ] + ], "content-visibility-animation-in-auto-subtree.html": [ "690b49255fe772ec1df5390a7b540292e1c0cbe1", [ @@ -532407,14 +543759,14 @@ ] ], "content-visibility-auto-state-changed-removed.html": [ - "ae1c946fa311166d49ee51c90cbe7d0c4b478253", + "5724aa1649c5c00e5d4c4f92f990f4b13b93532b", [ null, {} ] ], "content-visibility-auto-state-changed.html": [ - "65b501de1bfc22c1ff0488f8b570586ee70ff701", + "6a14470c0f4b1d66bacd6316803fba01a6ba6d20", [ null, { @@ -532461,6 +543813,34 @@ {} ] ], + "content-visibility-layout-containment-001.html": [ + "852e064a5e33be71538508f098787f331d68cd35", + [ + null, + {} + ] + ], + "content-visibility-layout-paint-containment-001.html": [ + "788139e17eb04e036c562cd3e55298cdc8da5c30", + [ + null, + {} + ] + ], + "content-visibility-size-containment-001.html": [ + "3b4a7c55a43e8ca4c6caea6e66b6e936a6c52f00", + [ + null, + {} + ] + ], + "content-visibility-style-containment-001.html": [ + "d976d89b73362713695f0321adaea8b8b8f21cda", + [ + null, + {} + ] + ], "content-visibility-svg-path.html": [ "a91f5817fdd9e2eb1993d727183921126e61e605", [ @@ -532490,7 +543870,7 @@ ] ], "content-visibility-vs-scrollIntoView-003.html": [ - "93b085a5318c0cc2fcaf44fbb1fe3f50485b6319", + "9fc9c5ff32f87c65270981761d27dbe988c50aa3", [ null, {} @@ -532504,14 +543884,28 @@ ] ], "content-visibility-with-popover-top-layer-006.html": [ - "fbe8b9fbb777b2fdd632ddc0f17e69fbfed06bd7", + "36989f79d1d0c06ff1e2bcb52b787ea0fd7e3e8d", [ null, {} ] ], "content-visibility-with-top-layer-006.html": [ - "36a79532a9a73bf13a675ac2b81537e5512b158f", + "79a7993e263e8b65ca55a4dfd68be150c31216bf", + [ + null, + {} + ] + ], + "content-visibility-with-top-layer-007.html": [ + "028f818133b89cadd67b6098188fe6a8de0d00da", + [ + null, + {} + ] + ], + "content-visibility-with-top-layer-008.html": [ + "2911ef778391373a45619bdbb896ced4509d4f4c", [ null, {} @@ -532624,7 +544018,7 @@ ], "parsing": { "content-computed.html": [ - "60044e89e7eeb12fa173c62ab296c7aeaa53c227", + "61c1ec563532503dc4deb07342c5d2c991b5aa95", [ null, {} @@ -532638,7 +544032,7 @@ ] ], "content-valid.html": [ - "5c7558610745466c0bacc100f92cd3d8cca36a60", + "60d03a4d4c3412f15607721dae5d04dbdbf2c682", [ null, {} @@ -532758,6 +544152,17 @@ ] }, "css-display": { + "accessibility": { + "display-contents-role-and-label.html": [ + "d7f337c557a655c100f54d4d945ae8b2c0a2c96b", + [ + null, + { + "testdriver": true + } + ] + ] + }, "animations": { "display-interpolation.html": [ "6bf3dcc5a4bdd212906abcd213a47ea58944d7ae", @@ -532788,6 +544193,13 @@ {} ] ], + "display-contents-focusable-001.html": [ + "3f64718587326b378b5bfa153af9678fca9bce67", + [ + null, + {} + ] + ], "display-contents-parsing-001.html": [ "085d12b103645c60ee4e72b0ffef9a3418cdded2", [ @@ -532865,6 +544277,17 @@ {} ] ], + "focus": { + "display-contents-focus.html": [ + "8f1e2c5c9017c199df2eb45ae1d2f3e7daa69c14", + [ + null, + { + "testdriver": true + } + ] + ] + }, "inheritance.html": [ "bfd072651cb6ec82cca7d9be5b6768afbc39fca0", [ @@ -532888,12 +544311,53 @@ ] ], "display-valid.html": [ - "c011c2a30ca26dab4c97c9278a845efb47d69970", + "c4bdc93cdaa72047a6ca09c939dbee29bbbc852f", [ null, {} ] - ] + ], + "tentative": { + "display-computed.html": [ + "50c8f0a53884ea47f096918c2b39860c9ec6f5b1", + [ + null, + {} + ] + ], + "display-valid.html": [ + "0bfdbc671d2f72cbc87398fc50d976a21ddca770", + [ + null, + {} + ] + ] + } + }, + "reading-flow": { + "tentative": { + "reading-flow-computed.html": [ + "65ef90f5a50b792b1da4eef61352109b17fd4968", + [ + null, + {} + ] + ], + "reading-flow-invalid.html": [ + "1d489b795640d4a9ebbb5bf113ef014e96dd565a", + [ + null, + {} + ] + ], + "reading-flow-valid.html": [ + "3d650c53063db6baa455d6a42d7604fdd63c6830", + [ + null, + {} + ] + ] + } }, "textarea-display.html": [ "44634e3c3bdb7187f14c24b922d098ee273f995d", @@ -532911,15 +544375,15 @@ {} ] ], - "linear-timing-functions-output.tentative.html": [ - "82ea4690529504afc34a9b2be964c6801c0d78f2", + "linear-timing-functions-output.html": [ + "ef157e2e28520da48b16f91409b0679e3366260a", [ null, {} ] ], - "linear-timing-functions-syntax.tentative.html": [ - "99b680d0bde07bbaa1824d7fcd13e78e0dc172f0", + "linear-timing-functions-syntax.html": [ + "2d1baea4ebb311cd9710469189926b5a95beab47", [ null, {} @@ -533086,7 +544550,14 @@ {} ] ] - } + }, + "webkit-text-stroke-computed.html": [ + "0dadfe402a58bf7c480910fe5a2ce6bf427f186f", + [ + null, + {} + ] + ] }, "css-flexbox": { "abspos": { @@ -533421,7 +544892,7 @@ ] ], "align-content-wrap-003.html": [ - "3e07338745b0aaaf9315eed7159f5db2ff0f4e7f", + "e46fca8187ff32496436388e8f106a615bce38ad", [ null, {} @@ -534821,14 +546292,14 @@ ], "intrinsic-size": { "col-wrap-004.html": [ - "00cfa520690374562242cbca8fa19c0e1ca44520", + "83b119e3f16ff6612047dae0cbdb439028704025", [ null, {} ] ], "col-wrap-005.html": [ - "a753619c62f51b85fa0b51f0cb058bec589707c5", + "15ca5a57ec49e68d2f1e071b3d387a28b8d052e6", [ null, {} @@ -534948,7 +546419,7 @@ ] ], "negative-overflow-002.html": [ - "171095d2b553a6c907c4c2f1d1c72d54ec41633f", + "7c8d6337b9012b2a7edf32ceb9888da4616f366b", [ null, {} @@ -535117,7 +546588,7 @@ ] ], "flex-shorthand.html": [ - "1d74df808341baa42914dec0c19359847e7188c9", + "d22957983b13b7a01875edbb56538785764f3c1a", [ null, {} @@ -535696,6 +547167,13 @@ {} ] ], + "font-size-adjust-interpolation-math-functions.html": [ + "493b690f636fc90dd9f66ff25731f739a943d129", + [ + null, + {} + ] + ], "font-size-relative-across-calc-ff-bug-001.html": [ "167de8888725ca55090ac80cda43cddb299b7c7d", [ @@ -535703,6 +547181,13 @@ {} ] ], + "font-stretch-interpolation-math-functions.html": [ + "74c42587f5ef9586a443ebbcce72ac5ec97a3523", + [ + null, + {} + ] + ], "font-style-angle.html": [ "baf69be5c1310f6f88b2e2b5c9de1a312d95311c", [ @@ -535811,6 +547296,13 @@ {} ] ], + "font-face-size-adjust.html": [ + "01a551d350d860588acc7a8b27cd4174f3d96362", + [ + null, + {} + ] + ], "font-face-src-format.html": [ "7a5bb5b97ec3e3d2bb1b4894865bca2086522f2c", [ @@ -535973,14 +547465,14 @@ ] ], "font-palette-values-invalid.html": [ - "2056055f3412d5d63cfc079b082dded04cb653a1", + "a3a0a88ba68c8fcc1f8b00054d7b12bc08d4b7af", [ null, {} ] ], "font-palette-values-valid.html": [ - "3c0c0626f5871b4fce1ca9ceec4c01491a83faa5", + "328e9a7dbf116f11a372ef72bd436c19b917d23c", [ null, {} @@ -536393,6 +547885,13 @@ {} ] ], + "variable-in-font-variation-settings.html": [ + "53e9968e49ea77bdfdb33092a74ece8df31d1f40", + [ + null, + {} + ] + ], "variations": { "at-font-face-descriptors.html": [ "1935422d7c29df467a1c44bb4327e8fd79772508", @@ -537725,28 +549224,28 @@ ] ], "grid-column-axis-self-baseline-synthesized-001.html": [ - "0d3a556f40c0cbdb107bc646d84314916e3f42be", + "e378b36d38847083cd21934591e75e43ab375955", [ null, {} ] ], "grid-column-axis-self-baseline-synthesized-002.html": [ - "c20489e9a8b68fe05939357c9aaf75492e5dc49d", + "49f983bb0117bb68af55f63717e26841d27ac89c", [ null, {} ] ], "grid-column-axis-self-baseline-synthesized-003.html": [ - "10a9adb9ff2d385c2b0f054e94e5cb59139c5f96", + "de17f70feb8218836b13c0ea6b5940d1a6afb601", [ null, {} ] ], "grid-column-axis-self-baseline-synthesized-004.html": [ - "8c6d7abe4edcd88d690c9f4748478078ea07d800", + "b48e112fa6a815ea276e084715072ee177b1268b", [ null, {} @@ -537927,6 +549426,20 @@ {} ] ], + "grid-item-aspect-ratio-justify-self-001.html": [ + "5104c2837b720b74781c8b70d6cd863130f4bb4a", + [ + null, + {} + ] + ], + "grid-item-aspect-ratio-justify-self-002.html": [ + "9f40289775dbefbeec7ab64add0082986b48717c", + [ + null, + {} + ] + ], "grid-item-auto-margins-alignment-vertical-lr.html": [ "e11398907ec3468214172d0ce5de80d430e1b1af", [ @@ -537977,7 +549490,7 @@ ] ], "grid-place-content-001.html": [ - "49bb63928be72401c588eb1816f5a1ce1d0aade3", + "cc1fe75799c8a61810d110a83c739832e2771840", [ null, {} @@ -538117,28 +549630,28 @@ ] ], "grid-row-axis-self-baseline-synthesized-001.html": [ - "c9e630cbac40c153048d2d671cedf9c1d26ae1e4", + "43a57a200697f2063632a1ae207e87806022fb4d", [ null, {} ] ], "grid-row-axis-self-baseline-synthesized-002.html": [ - "e96f8da6e724b0e47b11265463cb795c4d875308", + "b1058a2aea262134a4ebdf287814510fb1997674", [ null, {} ] ], "grid-row-axis-self-baseline-synthesized-003.html": [ - "19a4f5193bfb12917a7454d65b9fd5ad35e6bca7", + "79c056f46fc6b694661bd69aca0dc2d3b92c4dd3", [ null, {} ] ], "grid-row-axis-self-baseline-synthesized-004.html": [ - "f3f70790c9811fea794a1cb892405a434073acec", + "8780377605543a446f69ae6454c71e9971f9cd37", [ null, {} @@ -539129,6 +550642,13 @@ ] ] }, + "grid-important.html": [ + "42896ed200d787a09255f28d31ec0a2238586304", + [ + null, + {} + ] + ], "grid-items": { "grid-automatic-minimum-intrinsic-aspect-ratio-001.html": [ "7d472716fb79238207b5910550eed51137861f0f", @@ -539406,7 +550926,7 @@ ] ], "grid-container-ignores-first-letter-001.html": [ - "8e322fe38e1136a27c49264fb4e0dfac4ed6675d", + "db466b82cd8113832e689643666a009fb6547851", [ null, {} @@ -539504,6 +551024,13 @@ ] ] }, + "grid-tracks-fractional-fr.html": [ + "6600cef65c5f8b5502499c8856f614792f293460", + [ + null, + {} + ] + ], "grid-tracks-stretched-with-different-flex-factors-sum.html": [ "f2c1d5e95a2df428432f30fc651b4bf06ae15322", [ @@ -539646,7 +551173,7 @@ ] ], "grid-fit-content-percentage.html": [ - "ab55502487328d11ac153440fec4963e6e70709c", + "892dbe40b46867b5f5c0b9b628e70decc9cdaedd", [ null, {} @@ -539733,7 +551260,7 @@ "masonry": { "tentative": { "masonry-grid-template-columns-computed-withcontent.html": [ - "b36efb664dadc62a2f7f2ffaf1e834c195f13acc", + "0ee2ee78c06c997c5292b336df127c6594349285", [ null, {} @@ -539741,7 +551268,7 @@ ], "parsing": { "masonry-parsing.html": [ - "e3245095fadb760ea5414af7997abc5f296aff1a", + "2204c06f72b8bd15c9662def13c3d89fb64048b4", [ null, {} @@ -539906,7 +551433,7 @@ ] ], "grid-shorthand-serialization.html": [ - "7751fd883b2938dcbaf85e7a66e2c24a1b620579", + "29bab75f617eb53642a3ec29b0689c6b8cbfbcf0", [ null, {} @@ -539996,6 +551523,13 @@ {} ] ], + "grid-template-important.html": [ + "c9b9bd83f5e2a24a7f49912c4b85c37e1fdd7188", + [ + null, + {} + ] + ], "grid-template-node-not-connected.html": [ "89bee03a11bcae62448a088889398ba32e6f25bb", [ @@ -540154,6 +551688,13 @@ {} ] ], + "placement-invalidation-001.html": [ + "954880e9965e96e66da4493155842aa215358400", + [ + null, + {} + ] + ], "subgrid-baseline-005.html": [ "455439f79808db13751b7960982f0e5285d8daa2", [ @@ -540270,7 +551811,7 @@ ] ], "HighlightRegistry-maplike-tampered-Map-prototype.html": [ - "3b38bd8f162ed108853abd1752c1e9f93841bcf2", + "367ebfa8e0ed4d285898252cc51a38d01dfe40a2", [ null, {} @@ -540311,6 +551852,13 @@ {} ] ], + "historical.window.js": [ + "9b735f855dc5b1704d10a5b4916c42b13eec0ed3", + [ + "css/css-highlight-api/historical.window.html", + {} + ] + ], "idlharness.window.js": [ "7e9f3c44047cc533a4a0d9af1f7839b7e75741c9", [ @@ -540339,6 +551887,13 @@ {} ] ], + "image-slice-interpolation-math-functions-tentative.html": [ + "6d1e2a3bc93722d4e73a738e144ddc8363d72ec0", + [ + null, + {} + ] + ], "object-position-interpolation.html": [ "13a1b177c8ac837844567fa95f243a4dd03ed208", [ @@ -540355,7 +551910,7 @@ ] }, "cross-fade-computed-value.html": [ - "efb3b58d611bbd60ce4483ea4ef56901e4a98685", + "dbecb4a6545b6449a3926bd4907ec39e627de52f", [ null, {} @@ -540370,7 +551925,7 @@ ], "gradient": { "color-stops-parsing.html": [ - "a8baa63a6765a4c6052752eb638156f0688b12f2", + "1b83ea3b153c3696cc118a107c2008000f6e0aee", [ null, {} @@ -540863,8 +552418,87 @@ ] }, "text-box-trim": { - "text-box-trim-valid.html": [ - "61622774f6f33054ad97e74dde0b020619eb1d02", + "parsing": { + "inheritance.html": [ + "4cfb7f4164305f1ec2e64fd449cdf417f0164d8d", + [ + null, + {} + ] + ], + "text-box-computed.html": [ + "406a1639f789500c1b5ef854d499cf9c50fa34bb", + [ + null, + {} + ] + ], + "text-box-edge-computed.html": [ + "b5b6f0c5cf737d0bdc3fc7b1b8ced1ec2a759f62", + [ + null, + {} + ] + ], + "text-box-edge-invalid.html": [ + "0c1e2d19a3b7cb416a9b32a4aa336564cc2e39f6", + [ + null, + {} + ] + ], + "text-box-edge-valid.html": [ + "27917c02922a2ad171f6edf740482d04d52b7599", + [ + null, + {} + ] + ], + "text-box-invalid.html": [ + "b874c3148fe260620cb5610f5eeee42272fa98fe", + [ + null, + {} + ] + ], + "text-box-shorthand.html": [ + "46c05163c3b131feff6a2a76368a9955f08c62c5", + [ + null, + {} + ] + ], + "text-box-trim-computed.html": [ + "dbc30fede26003ffe25665b7885ebff07712371e", + [ + null, + {} + ] + ], + "text-box-trim-invalid.html": [ + "d0bc05459eea8f8907540c84f2e0f37484127339", + [ + null, + {} + ] + ], + "text-box-trim-valid.html": [ + "0f93b3f36de8d97cad897309c470717dba189d9f", + [ + null, + {} + ] + ], + "text-box-valid.html": [ + "67894ca71f94967e6c235df54441adfd0e4dd4f2", + [ + null, + {} + ] + ] + }, + "text-box-trim-om-001.html": [ + "4184dcb638883a948b91b5800e32a2bc0bb6272e", [ null, {} @@ -540935,6 +552569,13 @@ ] ] }, + "counter-important.html": [ + "345de9c6833ebce3e61b9d3ca5db4dbf6e4c5861", + [ + null, + {} + ] + ], "css-lists-no-interpolation.html": [ "a0e1005ef0bf3b1ff2690ee6a9fe2d3fd902e8ce", [ @@ -541199,6 +552840,20 @@ {} ] ], + "margin-block-interpolation.html": [ + "be4b6fdd8e0b8bd24d1545ffb3fa4651227bdbfa", + [ + null, + {} + ] + ], + "margin-inline-interpolation.html": [ + "86408ea6e94271efc7aa7e2c05b99538ba7d1b81", + [ + null, + {} + ] + ], "padding-block-interpolation.html": [ "881c36e323d6e7b390856193e166b09ff6366b73", [ @@ -541766,7 +553421,7 @@ ] ], "clip-path-interpolation-shape.html": [ - "ad3e2a0bdbb549c0cded96cc1da4d8be533bb5cf", + "638e133c26bf007c1b642a989f36430e26bf4dd3", [ null, {} @@ -541779,6 +553434,62 @@ {} ] ], + "mask-border-outset-composition.html": [ + "ce4b76bd135f44fbab03a980d965dbef43211104", + [ + null, + {} + ] + ], + "mask-border-outset-interpolation.html": [ + "863166e1fb897838decb7f3ed2d15826d641198b", + [ + null, + {} + ] + ], + "mask-border-slice-composition.html": [ + "3a195e655d55f6ec2555411f36391f3a0e343946", + [ + null, + {} + ] + ], + "mask-border-slice-interpolation-stability.html": [ + "68cee911ca3fab726018b0976169aaa622580537", + [ + null, + {} + ] + ], + "mask-border-slice-interpolation.html": [ + "1a3f4a2063d154e0452d1e8c4a80683183531180", + [ + null, + {} + ] + ], + "mask-border-source-interpolation.html": [ + "799e9cfd7578b55d244698fca84676dfd2a73aca", + [ + null, + {} + ] + ], + "mask-border-width-composition.html": [ + "6489ff9084129ed17d184ed6f52d87cfeb5a0ada", + [ + null, + {} + ] + ], + "mask-border-width-interpolation.html": [ + "18b3f37bc63ca65eaae93596714576eb1e8b226a", + [ + null, + {} + ] + ], "mask-image-interpolation.html": [ "ac6b266992d5eafffa8a1195abe8aae0403819b2", [ @@ -541802,8 +553513,17 @@ ] }, "clip-path": { + "animations": { + "clip-path-interpolation-discrete.html": [ + "9c14372006722f313f6c434c93982c836a76bae5", + [ + null, + {} + ] + ] + }, "clip-path-path-with-zoom-hittest.html": [ - "30ceefcbc03980564136ad29b6fd1a8f9a318d38", + "ff85e8ff80d44c69be1a00b6b7f4f8b93ccb0c73", [ null, {} @@ -541907,7 +553627,7 @@ ] ], "clip-path-invalid.html": [ - "40020d91d4b3118641c74f0d6d773a9a4e494322", + "e9a84e8e9cdd1a56e7eea84e54b1c2fa12a01641", [ null, {} @@ -541977,7 +553697,7 @@ ] ], "mask-computed.html": [ - "28fc38defae2e5ea7b4bffab2a8755535921fa9d", + "586683dd5de9780cc77ab7e58128b3584ec7a8d0", [ null, {} @@ -542055,6 +553775,47 @@ ] } }, + "css-masonry": { + "tentative": { + "parsing": { + "masonry-template-tracks-invalid.html": [ + "df690851b1456a9b41be1b82295c7c8ea0c25a57", + [ + null, + {} + ] + ], + "masonry-template-tracks-valid.html": [ + "7397760e7beee1e2ee5d152268242139244549b9", + [ + null, + {} + ] + ], + "masonry-track-computed.html": [ + "a2d6e54dcce53415b17fa47ae8adbda80bef16de", + [ + null, + {} + ] + ], + "masonry-track-invalid.html": [ + "589b837ce685723a4a42763a6ad08f66580463d0", + [ + null, + {} + ] + ], + "masonry-track-valid.html": [ + "edf94c285f374a2c4e293f25f65f33f1a7f51162", + [ + null, + {} + ] + ] + } + } + }, "css-multicol": { "animation": { "column-count-interpolation.html": [ @@ -542639,7 +554400,7 @@ ] ], "parsing.html": [ - "f29eff9730788fc264355734e30ece9838d96225", + "a97716ff9d5a4d59b7090992bc9dc11268c36aff", [ null, {} @@ -542660,16 +554421,14 @@ ] ] }, - "css-outline": { - "outline-width-rounding.tentative.html": [ - "8a4a724bbe5b95989de2398385c6d3139043fe7f", + "css-overflow": { + "auto-scrollbar-inline-children.html": [ + "149cf942fe625af24de8623baab3e68fed581738", [ null, {} ] - ] - }, - "css-overflow": { + ], "inheritance.html": [ "ffc6b2f881965883e74d53b49c2495b141724a06", [ @@ -542754,6 +554513,13 @@ {} ] ], + "overflow-outside-padding.html": [ + "792f7b87351bfcbda7baecc67ea6dedc2b05f3a5", + [ + null, + {} + ] + ], "overflow-padding.html": [ "2d6efc391a48781096cd2263575523c52bd4085e", [ @@ -542775,13 +554541,6 @@ {} ] ], - "overfow-outside-padding.html": [ - "792f7b87351bfcbda7baecc67ea6dedc2b05f3a5", - [ - null, - {} - ] - ], "parsing": { "block-ellipsis-invalid.html": [ "2b9c059a45d0e315a350e0c09fd7cd86be72c61e", @@ -542949,6 +554708,24 @@ {} ] ], + "scroll-with-ancestor-border-radius.html": [ + "9192c613e9eb54bfc0ad774dcd429b18528c3b58", + [ + null, + { + "testdriver": true + } + ] + ], + "scroll-with-border-radius.html": [ + "88bb0f1fa88f7a9baaefcfcf9ab6c08a83836f95", + [ + null, + { + "testdriver": true + } + ] + ], "scrollable-overflow-float.html": [ "f75c0a66cfffdfe9872c6e472966ee3cf639eae6", [ @@ -543130,6 +554907,15 @@ null, {} ] + ], + "scroller-covered-by-empty-svg.html": [ + "f877b6b281d980093e26af4e4199da2e9a855fe1", + [ + null, + { + "testdriver": true + } + ] ] }, "css-overscroll-behavior": { @@ -543190,6 +554976,43 @@ } }, "css-page": { + "cssom": { + "margin-001.html": [ + "29c38b2f98e854f79b385349e3bf05c64c25e20a", + [ + null, + {} + ] + ], + "margin-002.html": [ + "45308947a6ed8f723039af066b5b73df9888c112", + [ + null, + {} + ] + ], + "margin-003.html": [ + "8b0ba4825ffe0faa000431fbd60b14412c4fe19c", + [ + null, + {} + ] + ], + "page-001.html": [ + "2f6b4dde0500cf7ef40b2187708539523472d33a", + [ + null, + {} + ] + ], + "page-002.html": [ + "0060d295b4a4f0949ac2d4ed0bb699b891007630", + [ + null, + {} + ] + ] + }, "inheritance.html": [ "565287bce50fa46fdc17cf438ff9eeb2862106a7", [ @@ -543241,7 +555064,7 @@ ], "parsing": { "margin-rules-001.html": [ - "b73d1bc56fcd7ec66ed5944f4be79eaa63491d19", + "c4270fe606aa575b32b03c0645f634367de99af7", [ null, {} @@ -543282,6 +555105,13 @@ {} ] ], + "page-rules-001.html": [ + "cac396e237f57d305e807fcaed46cfaf3ac69ddc", + [ + null, + {} + ] + ], "page-valid.html": [ "a4c31f5766ab89373511cc336e64d0de29224167", [ @@ -543289,15 +555119,15 @@ {} ] ], - "size-001.html": [ - "885a7b85306f3f5d0737e62e400225d9f35a2bb6", + "size-invalid.html": [ + "238d10ee4a18e90778dd90135578719538012e93", [ null, {} ] ], - "size-invalid.html": [ - "6e7c4a222df82e7ebb989831c373d556905a5bc2", + "size-valid.html": [ + "1e0911655369ae8923c46761749c4eef654ac72b", [ null, {} @@ -543365,7 +555195,7 @@ ] ], "position-interpolation.html": [ - "a4ad50240a40674afe76b4c76a08feb9c4e27b12", + "1a9e7f055b83e7858a86704561f7fbc6ff39f29c", [ null, {} @@ -543408,7 +555238,7 @@ ] ], "backdrop-tree-abiding-slotted.html": [ - "55db27a80e02f8305aea31ec5a45d7c45c3ceb38", + "057b484e2629e1617c44e8bf24555f9d22b9f564", [ null, {} @@ -543446,7 +555276,7 @@ ] ], "overlay-transition-property.html": [ - "a667f26ea6a42a2dde565d4eeb7f28cb98aacbc1", + "dddb0c89e168af524a8c37f89be2b8471be7cfda", [ null, {} @@ -543819,6 +555649,13 @@ {} ] ], + "position-sticky-dynamic-ancestor-001.html": [ + "e3f3debcc34411d6ae251eab957e4a45a056ac97", + [ + null, + {} + ] + ], "positon-absolute-scrollable-overflow-001.html": [ "67e24a247570cdc56033d509e0fb7cbddda17591", [ @@ -544462,10 +556299,24 @@ null, {} ] + ], + "registered-neutral-keyframe.html": [ + "ac3ad0c2c2d76e19c6b4e794290006bdf0ac426e", + [ + null, + {} + ] + ], + "registered-var-to-registered-animating.html": [ + "477e30b47bea4813d47418d5b5d44a0799551d5a", + [ + null, + {} + ] ] }, "at-property-animation.html": [ - "233b63239fc3b4a9b8d07cb24e8e4d405ad7c6ca", + "44361a0566b22e1ebced29105ab0bb785bbd7f44", [ null, {} @@ -544479,7 +556330,7 @@ ] ], "at-property-shadow.html": [ - "db282d10b0ec19f1b561f1435d36255edddb8967", + "69f4f4c10753ba2ff536c0b237ecd6db357626b2", [ null, {} @@ -544514,7 +556365,7 @@ ] ], "at-property.html": [ - "950d9b02d7b7d336262ec82a36a85c32635d47e3", + "56a1956f56dd552779db4e3ad0d41078f4e6c80f", [ null, {} @@ -544570,7 +556421,7 @@ ] ], "register-property-syntax-parsing.html": [ - "664ccabd33c3a1ac62b5dbad83b8ed8640053bc8", + "537a921efc7e7dde149622337314f4ad4a3151c7", [ null, {} @@ -544598,7 +556449,7 @@ ] ], "registered-property-computation.html": [ - "f4c718b139baffda6bb7d20254bdca7c37265a56", + "8ca9d4499abc11be534cc41f6ea663181adc8978", [ null, {} @@ -544647,7 +556498,7 @@ ] ], "unit-cycles.html": [ - "9454c95ac303cf0c2c7a0984c7b2297d549edcf2", + "744b0f9e4bd580573cd0f38366158a71320d3f93", [ null, {} @@ -544660,6 +556511,13 @@ {} ] ], + "var-reference-registered-properties-002.html": [ + "9a6c78fc45b09b7a65e93e229090f5ffc4feaa34", + [ + null, + {} + ] + ], "var-reference-registered-properties-cycles.html": [ "91792ef51db097ed626839537b40814c12b98cef", [ @@ -544711,62 +556569,71 @@ {} ] ], - "highlight-cascade-007.html": [ - "de0322d91037848f821af8b3db194016069b5238", - [ - null, - {} - ] - ], - "highlight-cascade-009.html": [ - "acc48c7c3642cd267bf6e33c475d5b59c6d58fed", - [ - null, - {} - ] - ], - "highlight-currentcolor-computed-inheritance.html": [ - "d67ae828818aab04a61d7e55cbdfb23222277f93", - [ - null, - {} - ] - ], - "highlight-currentcolor-computed-visited.html": [ - "207cb7b7dd1301672d550f63b2b91827bd57c6f1", - [ - null, - {} - ] - ], - "highlight-currentcolor-computed.html": [ - "97c31809dfc76cd3fdbd051e66fd7ec162f3708e", - [ - null, - {} - ] - ], - "highlight-pseudos-computed.html": [ - "f0d848e19c959293b8f0e03aee627914d3a9236c", - [ - null, - {} - ] - ], - "highlight-pseudos-inheritance-computed-001.html": [ - "84c4045a54c76f88e8ab59e8be4a0e601a580f2f", - [ - null, - {} - ] - ], - "highlight-pseudos-visited-computed-001.html": [ - "a2b18effccdcf78576da26003ea58985325f999b", - [ - null, - {} + "highlight-cascade": { + "highlight-cascade-007.html": [ + "df79d8dff51ae23a75a7a4ef593f673ea596f36d", + [ + null, + {} + ] + ], + "highlight-cascade-009.html": [ + "e95de9a78156c51ddd001b8a5b9a1dac3517da83", + [ + null, + {} + ] + ], + "highlight-currentcolor-computed-inheritance.html": [ + "d67ae828818aab04a61d7e55cbdfb23222277f93", + [ + null, + {} + ] + ], + "highlight-currentcolor-computed-visited.html": [ + "207cb7b7dd1301672d550f63b2b91827bd57c6f1", + [ + null, + {} + ] + ], + "highlight-currentcolor-computed.html": [ + "97c31809dfc76cd3fdbd051e66fd7ec162f3708e", + [ + null, + {} + ] + ], + "highlight-pseudos-computed-001.tentative.html": [ + "752af0b29f33652abd6e11601beccd8f25516725", + [ + null, + {} + ] + ], + "highlight-pseudos-computed.html": [ + "4a274e1bbd8506b7803f621f3f947c24be3780e3", + [ + null, + {} + ] + ], + "highlight-pseudos-inheritance-computed-001.html": [ + "84c4045a54c76f88e8ab59e8be4a0e601a580f2f", + [ + null, + {} + ] + ], + "highlight-pseudos-visited-computed-001.html": [ + "a2b18effccdcf78576da26003ea58985325f999b", + [ + null, + {} + ] ] - ], + }, "idlharness.html": [ "514d31f6b39ef066df52c113e68232119cb6927d", [ @@ -544842,6 +556709,13 @@ ] ], "parsing": { + "highlight-pseudos-001.tentative.html": [ + "312135ccf4da13cb7486d22cbb42a567286af53d", + [ + null, + {} + ] + ], "highlight-pseudos.html": [ "aa3c4e20aa2d15b267cddfb76163d8edf9ff03c8", [ @@ -544850,14 +556724,14 @@ ] ], "marker-supported-properties-in-animation.html": [ - "e581a786367ac13a90f95cb043b95c629babd9ab", + "11811bae127d0836f904d0f982164665fd7b07a2", [ null, {} ] ], "marker-supported-properties.html": [ - "700d04aa83a10c9d38c30d4695f2a14be27297a9", + "203c0a640774e40bf497a6531f2b08e8362ab2f0", [ null, {} @@ -544978,7 +556852,7 @@ ] ], "line-spacing.html": [ - "9d3c6f23e7df297804470f048955e546feab67e7", + "4854e984c442c06028f929e63e1a5b25839efcf6", [ null, {} @@ -545028,6 +556902,13 @@ ] ] }, + "position-relative.html": [ + "e3da0013101983e28cc2f1e59aa15a2e03a563db", + [ + null, + {} + ] + ], "rt-display-blockified.html": [ "b2b7989fddc2f18add83fd342aa75c44261d0b07", [ @@ -545058,6 +556939,69 @@ {} ] ], + "font-face-001.html": [ + "4496786449f7fa63f7c437ea2ae43cf7df3b7525", + [ + null, + {} + ] + ], + "font-face-002.html": [ + "3a20d0b808892db1f4dea21936bcd50e11f3df8f", + [ + null, + {} + ] + ], + "font-face-003.html": [ + "4e8d8ff482d49e0ccfaf441f0d70829a3261269a", + [ + null, + {} + ] + ], + "font-face-004.html": [ + "f68e70994fc2af078e92fa221374cd72da133f2e", + [ + null, + {} + ] + ], + "font-face-005.html": [ + "de102f253e60f3fc2e62e68a3fa3c574a56b5d7c", + [ + null, + {} + ] + ], + "font-face-006.html": [ + "e72d4ec2aa72a84d3394cea05295da8de7e9b1ad", + [ + null, + {} + ] + ], + "font-face-007.html": [ + "c644a5498673b5bea3a013cae049f3db49f6ae25", + [ + null, + {} + ] + ], + "font-face-008.html": [ + "52c7869f9f8d48a3a093d20f74dd7e66805f6373", + [ + null, + {} + ] + ], + "font-face-009.html": [ + "4e08162dcdbacb5f92a9c998e91e29d35f07d539", + [ + null, + {} + ] + ], "host-context-parsing.html": [ "56055ece63733e8c58c6add661566572356d67aa", [ @@ -545094,14 +557038,14 @@ ] ], "keyframes-001.html": [ - "b0a95ac6865674462c5d4fc28c46d249e84498d9", + "56f0f32dcf901ec53b6465e756f25b466e4f2f7f", [ null, {} ] ], "keyframes-002.html": [ - "b80b250460be2941b96454a26be4b8bf859702ab", + "347adcb0f525e95b27e09d9101e53adc76595875", [ null, {} @@ -545263,6 +557207,13 @@ {} ] ], + "adjustment-followed-by-scrollBy.html": [ + "9dd6165905561712725f0ed29757f5acafd69acd", + [ + null, + {} + ] + ], "adjustments-in-scroll-event-handler.tentative.html": [ "84fd79cbcb91e2e906bfabca59941e42ea5db2d3", [ @@ -545629,6 +557580,13 @@ {} ] ], + "shadow-dom-subscroller.html": [ + "bbae72df7153f67a3fb99567d912f1da9a0857cd", + [ + null, + {} + ] + ], "start-edge-in-block-layout-direction.html": [ "043844d05646a0955f21a24f65e7467dd9df632e", [ @@ -545657,12 +557615,19 @@ {} ] ], - "zero-scroll-offset.html": [ + "zero-scroll-offset-001.html": [ "b8f5aa2ccc52d8236cbd1feadd0ff6f18f3ccef3", [ null, {} ] + ], + "zero-scroll-offset-002.html": [ + "b1da4560c6d828f2b110b4881a5e3854cdef1b3e", + [ + null, + {} + ] ] }, "css-scroll-snap": { @@ -545937,6 +557902,15 @@ {} ] ], + "scroll-margin-editable.html": [ + "713502820d6d189b43c568afd3fcaa41a8f2eda0", + [ + null, + { + "testdriver": true + } + ] + ], "scroll-margin-visibility-check.html": [ "b41ccb36fd37b460b378f1f323241b84863b119f", [ @@ -546060,6 +558034,13 @@ } ] ], + "smooth-anchor-scroll-in-snap-container.html": [ + "c01420b2ee4a00aa2ec143a68b30fb3c0ddb465b", + [ + null, + {} + ] + ], "snap-after-relayout": { "adding-only-snap-area.html": [ "53141707bb307dd13f13aee6d78ec67dffaa6576", @@ -546110,6 +558091,13 @@ {} ] ], + "layout-follows-focused-targeted-block.html": [ + "57dd52bceae223696e2bf955f057c63a7c1251e3", + [ + null, + {} + ] + ], "move-current-target.html": [ "ccadc884c5ba23f90b4b7d273e5aaf355cf648d1", [ @@ -546117,6 +558105,98 @@ {} ] ], + "multiple-aligned-targets": { + "common-to-both-axes-supercedes-first-in-tree-order.html": [ + "d9989316e40d18d13b69c74bcabead8551b469fe", + [ + null, + { + "testdriver": true + } + ] + ], + "nested-supercedes-common-to-both-axes.html": [ + "15743026bc3ea726e573d5a6311f87f8a68e8cab", + [ + null, + { + "testdriver": true + } + ] + ], + "prefer-common-to-both-axes.html": [ + "a44c8d7c48a593f03b6f18100d5524065a919951", + [ + null, + { + "testdriver": true + } + ] + ], + "prefer-first-in-tree-order.html": [ + "f4b32e10c72b618268e18b63e0e50cc310a9c4f0", + [ + null, + { + "testdriver": true + } + ] + ], + "prefer-focused-element.html": [ + "9acf0e905cb05ad72fb1185b472798364a96b42d", + [ + null, + { + "testdriver": true + } + ] + ], + "prefer-focused-nested-containers.html": [ + "4330022b27ad52d79280e5aa0120110f466cff53", + [ + null, + { + "testdriver": true + } + ] + ], + "prefer-inner-target.html": [ + "3cabbc7945f9f819f8eef892b5743affaa49a7da", + [ + null, + { + "testdriver": true + } + ] + ], + "prefer-targeted-element-main-frame.html": [ + "ff81dc78c5508bec5eaba2cbbea378eecc5d532f", + [ + null, + { + "testdriver": true + } + ] + ], + "prefer-targeted-element-positioned.html": [ + "3a2b1a90892436f1a074f89d06c633b40330ed50", + [ + null, + { + "testdriver": true + } + ] + ], + "prefer-targeted-element.html": [ + "ceb9bd2ee06139720a085b0a932e1a779454546d", + [ + null, + { + "testdriver": true + } + ] + ] + }, "not-resnap-outside-proximity-threshold.html": [ "b2c5720efb851a60786bbd2cfeb4ae02b9c787b3", [ @@ -546169,6 +558249,15 @@ } ] ], + "snap-fling-in-large-area.html": [ + "4797ddbd9a25c8475786bbe9cf5552f7e47ad879", + [ + null, + { + "testdriver": true + } + ] + ], "snap-inline-block.html": [ "9606023e167444ec85ea60ea9c21670533463db0", [ @@ -546220,6 +558309,13 @@ {} ] ], + "snap-to-visible-areas-both-pseudo.html": [ + "6bc6d13b3bbf3f0e375df929b2185b74c2fd0136", + [ + null, + {} + ] + ], "snap-to-visible-areas-both.html": [ "cde329bcc38da15bbf225f7f6dfc0cc34103a221", [ @@ -546275,6 +558371,20 @@ null, {} ] + ], + "unreachable-snap-positions-003.html": [ + "d23b45c3bce482e2bd78b21b0b6d5278aa79c493", + [ + null, + {} + ] + ], + "unreachable-snap-positions-004.html": [ + "408f09777f4dfdf342db453af56c2a8668cf2996", + [ + null, + {} + ] ] }, "css-scroll-snap-2": { @@ -546527,44 +558637,37 @@ ] ] }, - "snapchanged": { - "snapchanged-after-layout-change.tentative.html": [ - "293400edda2305d360c10d6b5a9d720a70ae1ef2", - [ - null, - {} - ] - ], - "snapchanged-ensures-dom-order.html": [ - "10bc73b622c34396c39c5940ca1b2046d49b7630", + "scrollsnapchange": { + "scrollsnapchange-after-layout-change.tentative.html": [ + "7f4ec2ff281f3529e4e8bf1198a5658981e82bc5", [ null, {} ] ], - "snapchanged-on-interrupted-scroll.tentative.html": [ - "a1d5259451e970c8a0c9418aa3f8629b7c95f4df", + "scrollsnapchange-on-interrupted-scroll.tentative.html": [ + "9d0ddd0426b3f5aa2d4a51c073c0a7496213082b", [ null, {} ] ], - "snapchanged-on-programmatic-root-scroll.tentative.html": [ - "2e33c3c970f6595a614473aab4606df60e40e89c", + "scrollsnapchange-on-programmatic-root-scroll.tentative.html": [ + "940dc2c1d11366208601894a65e18da5a104b39e", [ null, {} ] ], - "snapchanged-on-programmatic-scroll.tentative.html": [ - "6082e0901309dd9ea023c49ea90f3f377f0038b7", + "scrollsnapchange-on-programmatic-scroll.tentative.html": [ + "03d14c66c7c4463b5e1433440278dcc116e23d03", [ null, {} ] ], - "snapchanged-on-user-root-scroll.tentative.html": [ - "5405d778bf0f5ad500087343fff834c666669f45", + "scrollsnapchange-on-user-root-scroll.tentative.html": [ + "8aff17b6573fa42f0caf492fbf7f23dcfaee9eed", [ null, { @@ -546572,8 +558675,8 @@ } ] ], - "snapchanged-on-user-scroll.tentative.html": [ - "4f362007225f92b5a99414f1117cc78f3272afd3", + "scrollsnapchange-on-user-scroll.tentative.html": [ + "c3f1b82612bf684e8d19a43e8a5cbe92798d4302", [ null, { @@ -546581,24 +558684,33 @@ } ] ], - "snapchanged-same-targets-after-layout-changed.html": [ - "4d16bd80a3a270a6b008df2c45640b7d31494987", + "scrollsnapchange-same-targets-after-layout-changed.html": [ + "dddad7ecb8783361d697eb3eccf18a6d4aabd983", [ null, {} ] ], - "snapchanged-with-proximity-strictness.tentative.html": [ - "cb55054e6f834e0b989139d869037a2286e9274f", + "scrollsnapchange-scrolling-non-snapping-axis.tentative.html": [ + "32393fe780bc9e4824e9bc7d6f4f846950b706c7", + [ + null, + { + "testdriver": true + } + ] + ], + "scrollsnapchange-with-proximity-strictness.tentative.html": [ + "9c2e3dfbe895d59202d68f43f3aac249a9a05c72", [ null, {} ] ] }, - "snapchanging": { - "snapchanging-after-layout-change.tentative.html": [ - "5474b7ddce2416ef3075dd103b52a41814eb6b24", + "scrollsnapchanging": { + "scrollsnapchanging-after-layout-change.tentative.html": [ + "b131abe59882325f0fce58a5718c82b56b34e085", [ null, { @@ -546606,8 +558718,8 @@ } ] ], - "snapchanging-on-programmatic-root-scroll.tentative.html": [ - "d031811c17e8e28e04cc20b3ce5c5711ab83d755", + "scrollsnapchanging-on-programmatic-root-scroll.tentative.html": [ + "110805f9f2ec59e63329db8ef707ca370f636cb8", [ null, { @@ -546615,8 +558727,8 @@ } ] ], - "snapchanging-on-programmatic-scroll.tentative.html": [ - "5a0de1deb329297f011768cf0c13c28fc8a1aab6", + "scrollsnapchanging-on-programmatic-scroll.tentative.html": [ + "41f23d255738bc30dff87a02e44f86215be8de65", [ null, { @@ -546624,8 +558736,8 @@ } ] ], - "snapchanging-on-user-root-scroll.tentative.html": [ - "29d0239e2d692d4369f849a820c5c85adce6e47f", + "scrollsnapchanging-on-user-root-scroll.tentative.html": [ + "50d628ba08aaf51ae9092eaeadfcf1178fed1dbb", [ null, { @@ -546633,8 +558745,8 @@ } ] ], - "snapchanging-on-user-scroll.tentative.html": [ - "2c1f9742b622050d07367b5b6f3ddffe60a9381c", + "scrollsnapchanging-on-user-scroll.tentative.html": [ + "ca756bd041baf1b172c37a177be5c1d621fe30a2", [ null, { @@ -546642,16 +558754,25 @@ } ] ] - } - }, - "css-scrollbars": { - "auto-scrollbar-inline-children.html": [ - "149cf942fe625af24de8623baab3e68fed581738", + }, + "snap-events-with-pseudo-target.tentative.html": [ + "6b44d83d37f55fac4d1e3b924575ed0643b990d6", [ null, - {} + { + "testdriver": true + } ] ], + "snapevents-at-document-bubble-to-window.html": [ + "a7251061cd6fd1926ce51787e433c58b4330683b", + [ + null, + {} + ] + ] + }, + "css-scrollbars": { "inheritance.html": [ "1a630786b490e4f872a36bd66f8dfaa763f968f9", [ @@ -546660,35 +558781,35 @@ ] ], "scrollbar-color-001.html": [ - "c056990934466f1804ca096ec7b8f3f5b8162646", + "eff86675312418620dd584eebaaf13f5ed094dfd", [ null, {} ] ], "scrollbar-color-002.html": [ - "70bfa5586d98abe9aaa882e868d221f3812eda5b", + "1dfc63d68e36c7153bb54c76c7151a770f02d271", [ null, {} ] ], "scrollbar-color-003.html": [ - "3fb42bedeafc4e0a98760d686935c5b9efd086fb", + "1dc3c64f79a8a3221aa10c86174c1d70beeb6431", [ null, {} ] ], "scrollbar-color-004.html": [ - "5932cc5d4e1be0b9fb1d6f390e0e3bd2c27d51a4", + "cff00c634f72ee509050c24557cb3d1faa89e24a", [ null, {} ] ], "scrollbar-color-005.html": [ - "52d0027fba6e942fd1452402967e9fd09b5b8211", + "d8ddc43c1c8823990e5386d931f551cf8be71567", [ null, {} @@ -546765,49 +558886,49 @@ ] ], "scrollbar-width-010.html": [ - "ea117030673bd022cb4e2d73795bb7586c90571c", + "3c28dff498c6e34af897189b17e7bcb959362d92", [ null, {} ] ], "scrollbar-width-011.html": [ - "a5f60dc28b0cf9d09953b714e56bab8cbf7f8b67", + "e9c22c83a9a4fcb6f0c6e47702cd0bc04835c0f3", [ null, {} ] ], "scrollbar-width-012.html": [ - "a685d6c05b8f941d3962ae349d350846e0e4f5ae", + "eefd5538b84b1a7a427c85a2eab126c031e08332", [ null, {} ] ], "scrollbar-width-013.html": [ - "f6460a4797a6cb377dd7df03340d734813604a25", + "4a8a9182e54b8e224c43be833d306cad6295615e", [ null, {} ] ], "scrollbar-width-014.html": [ - "b3702015d520be60f0a9b4e2782c205fd487c8ef", + "b8ca3cbb94953b546311a4fcbd55224bf8c0c16e", [ null, {} ] ], "scrollbar-width-015.html": [ - "88a6af27bad259aceb69c3e1667097c70adece5b", + "7fc1ae120abab96be54bd0615a31e0ad8341674a", [ null, {} ] ], "scrollbar-width-016.html": [ - "7d64131743f18ab744246e034de8d540688178a7", + "29b4e47628e7f85e47771aa0d26dfb929aed0d43", [ null, {} @@ -546885,6 +559006,20 @@ {} ] ], + "grouping-with-checked.html": [ + "e7620b6f932b8d145dea9917784d35018f373491", + [ + null, + {} + ] + ], + "grouping-with-disabled.html": [ + "8e479e66911b708190937ce36a846b904cdb4f79", + [ + null, + {} + ] + ], "host-part-001.html": [ "9004141534f134d85590df3372f83838668a72e7", [ @@ -546970,7 +559105,7 @@ ] ], "invalidation-part-pseudo.html": [ - "fca4a964dce5c5c61b8f4fed4ef25510a9099298", + "66df33a4b7019768d29ea64fda7265d63d9436fc", [ null, { @@ -547186,22 +559321,157 @@ {} ] ], - "shape-outside-invalid.html": [ - "5fe89a605ec2d720b648cff54f8ec812399776d0", + "shape-outside-valid-position.html": [ + "07b82ddda6472d04d8fc53a9803e83f8214723dd", + [ + null, + {} + ] + ] + }, + "shape-functions": { + "circle-function-computed.html": [ + "cdfbbb5aa0357d04b23ae0e493f32638a2e76baf", [ null, {} ] ], - "shape-outside-valid-position.html": [ - "07b82ddda6472d04d8fc53a9803e83f8214723dd", + "circle-function-invalid.html": [ + "56ca23d23a52b98e95f10754a65f60e288d54e93", + [ + null, + {} + ] + ], + "circle-function-valid.html": [ + "417e397de9ec689a67e69524243fd56ce3844606", + [ + null, + {} + ] + ], + "ellipse-function-computed.html": [ + "2f574f5a8b1ccab799626e6b11dbd8c52a8b9143", + [ + null, + {} + ] + ], + "ellipse-function-invalid.html": [ + "d17034439bf2a505b1bef655c49aa20becb9cebe", + [ + null, + {} + ] + ], + "ellipse-function-valid.html": [ + "7d82996068f65fc281a7593d47dddbdbe1415f17", + [ + null, + {} + ] + ], + "inset-function-computed.html": [ + "4712c591cc24e840bfd9d48bbd57fbf57455a459", + [ + null, + {} + ] + ], + "inset-function-invalid.html": [ + "fb1fd998e3c9f5ecde18266e9ffa73044c2b3e74", + [ + null, + {} + ] + ], + "inset-function-valid.html": [ + "25fc426d2c8665e54240b3afbd6a249c51cee10b", + [ + null, + {} + ] + ], + "path-function-computed.html": [ + "e6ed3734ce4f5375af592ef0653c8fe8a380f07b", + [ + null, + {} + ] + ], + "path-function-invalid.html": [ + "8b9bbcfa1270035332a3cc98e4fa1b0eac4858bf", + [ + null, + {} + ] + ], + "path-function-valid.html": [ + "4a576a0de2565e8ca7f1c19994263b8ffff1d4e9", + [ + null, + {} + ] + ], + "polygon-function-computed.html": [ + "beb9714e652e632d1f51953cd041f88ea62ce2dd", + [ + null, + {} + ] + ], + "polygon-function-invalid.html": [ + "c37fd9e748c58501cbb4a791fb0ddb3734a08daf", + [ + null, + {} + ] + ], + "polygon-function-valid.html": [ + "45b0c1eda1c8809c21068608973ff51aff9f62cf", + [ + null, + {} + ] + ], + "rect-function-computed.html": [ + "bf43cdce68d5a682565885e6c52a51f4553dfbef", + [ + null, + {} + ] + ], + "rect-function-invalid.html": [ + "528502b904da5102053c0806a61d7b296bd5b70d", + [ + null, + {} + ] + ], + "rect-function-valid.html": [ + "6489f4e82adaf452824e54f772eb160bb190353b", + [ + null, + {} + ] + ], + "xywh-function-computed.html": [ + "117e7a40cfeb4405ef508afab1d8e9cc11d9165f", + [ + null, + {} + ] + ], + "xywh-function-invalid.html": [ + "b2b1677fb344cada03582e0588e4f019ea15ece4", [ null, {} ] ], - "shape-outside-valid.html": [ - "e5587c6b233a0c94568447777e95533ecbb50b29", + "xywh-function-valid.html": [ + "bfb5a9cae3d8a3034558bc402abc2009d38334d7", [ null, {} @@ -547914,14 +560184,14 @@ ] ], "height-composition.html": [ - "094e247dcf22d9bd665b244993b6239265ee73bb", + "3bab6c3bd2ada8436ba53551cbd63f26f9aa6eb3", [ null, {} ] ], "height-interpolation.html": [ - "10ceed5b2cc0d5511b8020aeaced36be39834c3a", + "75e0977fa1164ae25c0c675523ab00599516712a", [ null, {} @@ -547935,70 +560205,70 @@ ] ], "max-height-composition.html": [ - "fb5b241d00865fe68c198a9fee88d932a8977f7e", + "b3cecaee3b80a276858293645207e29997a62bbc", [ null, {} ] ], "max-height-interpolation.html": [ - "c4cab0e1cf4534d3705801f3159b6b8724977b66", + "f2af3629bc6d15fc919f2e9eebdb29ab110fd29d", [ null, {} ] ], "max-width-composition.html": [ - "8b6d8b704c8771491419db0aa2a3c783a1dea2b3", + "a5c85d44e002d63dba05085fdf833205f194994d", [ null, {} ] ], "max-width-interpolation.html": [ - "111199baa7ed89c6023d43b56313413cc5aeeeeb", + "4d1614db6d2ad31f9653942ec8183309b7d15fa1", [ null, {} ] ], "min-height-composition.html": [ - "1e92b0ec2fd664e7b3dd6dc1cd8310c7b9526e7c", + "8914f17a47aed2e125252a6ec139e381fe14f1ae", [ null, {} ] ], "min-height-interpolation.html": [ - "6fd5b4e2f5366f6b18678f60b982e82905558e51", + "33f3fd1d7f068e41c24fd3b9454fdd3b5a186c40", [ null, {} ] ], "min-width-composition.html": [ - "e8bd41030bbd8a273f7e7c45f5f445d706d044eb", + "b873d2b21ec45813a49c92ee5c6b9ad09ad83220", [ null, {} ] ], "min-width-interpolation.html": [ - "d11fb3d5cb139f870d1eb40618bf547176f109b1", + "e9edf0c6ecd1bc5388bc5691701d289ed8ceccfa", [ null, {} ] ], "width-composition.html": [ - "bfe45cb31471d0c8623dbb9e84000bc1208bb76f", + "e9bbe83724ee5e7c7f33c4ceb450c43e6445414c", [ null, {} ] ], "width-interpolation.html": [ - "d165c994b5de6fe1561498aa04c075196357f5f6", + "b229b5bc5e2ba6cc76e73f39b75c1fea9d646f28", [ null, {} @@ -548006,6 +560276,20 @@ ] }, "aspect-ratio": { + "box-sizing-dimensions.html": [ + "126c3e30583edc1fb61ed5dab62187e64b597500", + [ + null, + {} + ] + ], + "box-sizing-squashed.html": [ + "542dabe1b5c11784257018b6352151d9940f59bf", + [ + null, + {} + ] + ], "fractional-aspect-ratio.html": [ "7186f35f8a2e62d6bae515ab0453c2af5041c23b", [ @@ -548139,7 +560423,7 @@ ] ], "auto-006.html": [ - "422b730c2e862af4ee5f89313580d2854db7a864", + "ff1c30135ae245cd78bcfba6d8961d06bec76eb7", [ null, {} @@ -548272,7 +560556,7 @@ ] ], "contain-intrinsic-size-033.html": [ - "f98a48a0a973f942a24341713ab6f89b678ca616", + "c40b9cdc8e5cdc36378047ace49fadc80cec6f17", [ null, {} @@ -548743,7 +561027,7 @@ ] ], "custom-property-rule-ambiguity.html": [ - "50728bc94c258397f57312fbe8f837bf68b354ca", + "04f908acde2e72fba295d9bc1592ab026a1aef68", [ null, {} @@ -548805,6 +561089,13 @@ {} ] ], + "serialize-escape-identifiers.html": [ + "90476d6eca0ac6ccfa0e9644272afc6b79a50d07", + [ + null, + {} + ] + ], "trailing-braces.html": [ "ac2e8e61b9942d96493269b18f7dc2d0860ff3aa", [ @@ -548992,21 +561283,21 @@ ] ], "colspan-001.html": [ - "e6cb440366cf0cecb94d0198315a909327c70a34", + "112055218011bec6c7ec2cbb890d294eaebea7a0", [ null, {} ] ], "colspan-002.html": [ - "144cbef4850f52c19163a793ff6b1f8f6b9b77a1", + "16db9eb8bad8986e6b40b570477b3f9bd83f85da", [ null, {} ] ], "colspan-003.html": [ - "58e02b92878269b6fbe79fdc6684fb969d1ec0dc", + "70e1b218f0510b2dd45a8fb09de76925305ca5d2", [ null, {} @@ -549262,7 +561553,7 @@ ] }, "percent-height-overflow-auto-in-restricted-block-size-cell.html": [ - "f532308484383dbbe086f7af9d90d0579b83608a", + "f5421c7365335b0c51b66674c3e28d1c9c2566c4", [ null, {} @@ -549289,6 +561580,13 @@ {} ] ], + "table-cell-scroll-height.html": [ + "6ebaf7ad6a321eb43314fe328de3b82c9f465196", + [ + null, + {} + ] + ], "table-cell-writing-mode-computed.html": [ "28e9db2d7627908ba71df06209a044590c047eba", [ @@ -549416,6 +561714,13 @@ {} ] ], + "table-rows-with-zero-columns.html": [ + "da9e0098a7a1e6657887539448c5e1b2c1f14b5b", + [ + null, + {} + ] + ], "table-width-redistribution-fixed-padding.html": [ "097ddacfc3139105f0d80689e0c03ac722a00aeb", [ @@ -551212,12 +563517,21 @@ } }, "inheritance.html": [ - "2043afe999db7be2b519aeeb9ec03cc75241e4e2", + "f41a5edcaf594a87149fc9f875453c3b87f1805c", [ null, {} ] ], + "letter-spacing": { + "letter-spacing-trim-start-002.html": [ + "438cf40018cbf88d4aa3b8ccaa163d9ef87b5b75", + [ + null, + {} + ] + ] + }, "line-breaking": { "line-breaking-020.html": [ "7c8d0f119edb5ef768b37a5a41b8df9bb9e59600", @@ -551233,6 +563547,13 @@ {} ] ], + "line-breaking-029.html": [ + "c390d2272d743a790543ef6d21b3a867b4af4895", + [ + null, + {} + ] + ], "line-breaking-atomic-nowrap-001.html": [ "1e3b9edb1dc1331660c1300d2c5a8fd103b6b115", [ @@ -551357,21 +563678,21 @@ ] ], "letter-spacing-computed.html": [ - "45417d1b4a83c3e0cbb6fcead8a38cd19900e64a", + "a7ef1390c1229ce4c11e0a8cb9cc63911bc61564", [ null, {} ] ], "letter-spacing-invalid.html": [ - "e9ad4e56a5bb71188535bdbf4fee96e8918c4dcc", + "e32b98c6d776ad4b3d5c57f2123229d0e1314601", [ null, {} ] ], "letter-spacing-valid.html": [ - "740d1fc39884de8adcf0b29aacd34ff6c4ff2cb3", + "f20fa21de1c67d12a02f42dfbcf2d1030f8bdbf9", [ null, {} @@ -551581,42 +563902,42 @@ ] ], "text-spacing-computed.html": [ - "84d267c46550adaae78cdce0263ef0822eb2861b", + "845cf075a9b91cd1ebf59a3723db0c41714e7afc", [ null, {} ] ], "text-spacing-invalid.html": [ - "5b83dfbf50223974f46db16921b87759fc764ab5", + "99cac86fb8f0888455987e9665dad3dca4ec3f9d", [ null, {} ] ], "text-spacing-trim-computed.html": [ - "163a740103c0ef06b295b591b5d73a2a3309d686", + "e76d8564fe5aab951a8e95c1f1402531e112521d", [ null, {} ] ], "text-spacing-trim-invalid.html": [ - "9f835352b286d6d4adce131ba69a90ae8adfd01d", + "ca10d4ea13d8dcec9cbbc9a4ab1cf91d52994cce", [ null, {} ] ], "text-spacing-trim-valid.html": [ - "a83a099480d2b3de6347859377544d482d54c205", + "9bd0ff071f6bac29d7941862b26848d1636dc4ef", [ null, {} ] ], "text-spacing-valid.html": [ - "994ea01fae61b7b95d5c3570d19cd80c78caef35", + "d0cb332d2d905263904207a3a45b94db30fede34", [ null, {} @@ -551644,7 +563965,7 @@ ] ], "text-wrap-computed.html": [ - "772f0abf4d975c04c582a1e36ac9b587a24e954b", + "aa9c3c57053db6132704e05adcf1e76f417095aa", [ null, {} @@ -551678,8 +563999,15 @@ {} ] ], + "text-wrap-pretty.html": [ + "425d1b9c971239cb24e6916bcb6afcfa3b50ff70", + [ + null, + {} + ] + ], "text-wrap-style-computed.html": [ - "0a4a22d9c5f7c1b4e7e3b7caa3774b32a69f31b6", + "14c9f03cf9142656649a471a9ec129007a2af50c", [ null, {} @@ -551693,14 +564021,14 @@ ] ], "text-wrap-style-valid.html": [ - "b3ca09ef2c638bd178af31cc57dcd84003b8976e", + "f826bdd2f04d9e56bd47f466a5e0e81043fb9d43", [ null, {} ] ], "text-wrap-valid.html": [ - "a2eed8c429fa1d593ad3883f1d82ff0395d8aa49", + "95a855338e01dacd13b8164bc27420e339bac259", [ null, {} @@ -551805,21 +564133,21 @@ ] ], "word-spacing-computed.html": [ - "192dec6f7a71e32dcb5658716150e725b4dfe4bb", + "7c3f989525cc5c04ad2feb778bc8ff45254e6698", [ null, {} ] ], "word-spacing-invalid.html": [ - "3a1c4ca487c43256e2bb04dfae89f623be95783d", + "ae8e121b9d8e9a6c499ee3d408496d1c0f74f8ed", [ null, {} ] ], "word-spacing-valid.html": [ - "217b2488f53128b8475ce4a3f4ca2aa84570b743", + "640f697f7089ff50dca814e8fd952ccfbdea3091", [ null, {} @@ -551993,6 +564321,24 @@ ] ] }, + "text-transform": { + "math": { + "text-transform-math-auto-003.html": [ + "eff01b08902fe7be675431cdb9322488b11ac578", + [ + null, + {} + ] + ] + }, + "text-transform-upperlower-107.html": [ + "791edd14c0e144a945b4766a338725bca13da6bd", + [ + null, + {} + ] + ] + }, "white-space": { "append-whitespace-only-node-crash-001.html": [ "b32555b18876898beb1b3b7b4559268d64ae9c1c", @@ -552127,6 +564473,20 @@ {} ] ], + "text-wrap-balance-right-to-left.html": [ + "b9d50684d1128f1f8775c9d3fe81bdd4443ced83", + [ + null, + {} + ] + ], + "text-wrap-balance-top-to-bottom.html": [ + "0c0f6b55caaa9b06efca1607ecdcbc38b3d36799", + [ + null, + {} + ] + ], "trailing-space-before-br-001.html": [ "fcc2bdfa43633783151aaa8c0f65458d13e764f1", [ @@ -552181,7 +564541,7 @@ }, "word-spacing": { "word-spacing-computed-001.html": [ - "84d1fcf1e5a8031844de2d7f0027b0aa50b28c86", + "fac211af66c09315869408af86927fdf7e95daf8", [ null, {} @@ -552560,6 +564920,13 @@ {} ] ], + "rotate-interpolation-math-functions-tentative.html": [ + "eccb554fd8ab6d147935853b6d9e5f37c261cf7b", + [ + null, + {} + ] + ], "rotate-interpolation.html": [ "17fb7e499c66d14bb770a82895790a4a6977a674", [ @@ -552569,6 +564936,13 @@ } ] ], + "scale-animation-math-functions-tentative.html": [ + "2ad177469a434ab62aa9c411dce0b475b9f949c4", + [ + null, + {} + ] + ], "scale-composition.html": [ "107aa0b273f83e97a906bbc59037ee29336a90e9", [ @@ -552636,6 +565010,13 @@ {} ] ], + "transform-interpolation-007.html": [ + "61ee76185706f0360e66f310c5f052bf47e1166c", + [ + null, + {} + ] + ], "transform-interpolation-computed-value.html": [ "4a836f3ca1cf4ba584c3e583dea962691f0c3a5b", [ @@ -552664,6 +565045,13 @@ {} ] ], + "transform-non-invertible-no-transition.html": [ + "bbb5181a1bd45034a7ab6a9531bc0e21d3a6a604", + [ + null, + {} + ] + ], "transform-origin-interpolation.html": [ "02b8b59b0b92cb37c4cce43a06ff1e9eff2b41e4", [ @@ -552972,6 +565360,13 @@ {} ] ], + "transform-important.html": [ + "246c9ec5c4e4f2b9d28e3d9c3b3fab168acda35e", + [ + null, + {} + ] + ], "transform-origin-014.html": [ "c350166430e649e502e17b53cf32ac498c6b8543", [ @@ -553000,6 +565395,13 @@ {} ] ], + "transform-with-sign-function.html": [ + "96ba054fbef3f097b2720b8dea785dbf70be5e27", + [ + null, + {} + ] + ], "transform_translate.html": [ "8428832455492c96a86802f350e887d408b4f3a1", [ @@ -553087,7 +565489,7 @@ ] ], "CSSTransition-effect.tentative.html": [ - "b58c93d2e69fec8422bb2198807452ef2f36a86e", + "0952a7cd8f135aa774723a04c0f0cde970fcf895", [ null, {} @@ -553100,6 +565502,13 @@ {} ] ], + "CSSTransition-not-canceling.tentative.html": [ + "4198e665a30df5281b96e8314d988d7df27dcdba", + [ + null, + {} + ] + ], "CSSTransition-ready.tentative.html": [ "92aaa490591b9eb3e2db55438d955a9811cd7904", [ @@ -553163,14 +565572,14 @@ {} ] ], - "all-with-discrete.tentative.html": [ - "c3642eeed8919e867ec66677f814969c7671e4b8", - [ - null, - {} - ] - ], "animations": { + "animate-with-color-mix.html": [ + "3e630a7a2b1e190e3529de8b98ce239ecbda3f89", + [ + null, + {} + ] + ], "change-duration-during-transition.html": [ "cf03f2e1207988fbdb8df6e884422b43f9acc012", [ @@ -553214,7 +565623,7 @@ ] ], "transition-timing-function.html": [ - "0184b29a796140f423f72097f57875a629598c6b", + "6dc42f55292fee20a35b04d0732f724ac09b0ce8", [ null, {} @@ -553425,6 +565834,13 @@ ] ], "parsing": { + "starting-style-parsing.html": [ + "bd147a630a685499cc89edcde714998af850796c", + [ + null, + {} + ] + ], "transition-behavior.html": [ "6e4729f9dba2bfe6eff05af07a218598b479cc66", [ @@ -553433,7 +565849,7 @@ ] ], "transition-computed.html": [ - "51ec1baa8ab1a3b91c2c591bf4b7f3cebaaeb0cb", + "ccd7f7e583f602d0472eb73953ec6ee06714f54f", [ null, {} @@ -553538,7 +565954,7 @@ ] ], "transition-valid.html": [ - "ff9f5f782fdbb8176afa668ef051dc9b7af95e5c", + "ea4802f65c16b2a30e47bd1ed6318d8fcd290b09", [ null, {} @@ -553625,6 +566041,13 @@ {} ] ], + "shadow-root-insertion.html": [ + "47fc665aa398458fe5df9cab4883284c9652387a", + [ + null, + {} + ] + ], "starting-of-transitions-001.html": [ "f80d8134366f861a7220acc348c69c4715de821e", [ @@ -553632,8 +566055,15 @@ {} ] ], + "starting-style-adjustment.html": [ + "addc795e721e0f3a5a705a5038f2744239318f50", + [ + null, + {} + ] + ], "starting-style-cascade.html": [ - "263e47217425c82c81f74748aae9b4e5002cc546", + "921ba6b20047e66470db62b31231dc2c163775f8", [ null, {} @@ -553654,7 +566084,7 @@ ] ], "starting-style-rule-none.html": [ - "fd6879b5ee4238b87d4fd05135f562082ac2e7fa", + "91e4fe353409b94a5889b944b4796d98ccd816a5", [ null, {} @@ -553668,7 +566098,7 @@ ] ], "starting-style-size-container.html": [ - "92ad6e61251ebf75be037e090bed2730bc1ac785", + "946ab92e1477c98d57848a7f7e69f53add8f2285", [ null, {} @@ -553716,6 +566146,13 @@ {} ] ], + "transition-behavior.html": [ + "fa24509a37386126f0a1de5098dad2d9056a2814", + [ + null, + {} + ] + ], "transition-delay-001.html": [ "8fa5f5825aad03ae69df79c038d792683c9d70a0", [ @@ -553795,6 +566232,13 @@ {} ] ], + "transitions-retarget.html": [ + "ee4c54a0b19f39a888b1e157ec2127084cf35500", + [ + null, + {} + ] + ], "zero-duration-multiple-transition.html": [ "7b85702092a988aaced7070198252dda1891e40d", [ @@ -553862,6 +566306,13 @@ } ] ], + "parse-calc-expressions.html": [ + "df8ac6b511a259b6f11f45756f7a5a4b7979b13c", + [ + null, + {} + ] + ], "set-var-reference-thcrash.html": [ "c6bc3cc2a39703fcaee050c459fa3182b5454cd5", [ @@ -553987,7 +566438,7 @@ ] ], "cssUnparsedValue.html": [ - "6fc2e0284c15af2549011543e6550101ed4ff135", + "c87553dd917b124fbe42d82d5d4b13d4499749b9", [ null, {} @@ -554622,15 +567073,8 @@ {} ] ], - "animation-delay-end.tentative.html": [ - "79b9f946174eaf5dcbd39556f7010d6d74ea96c9", - [ - null, - {} - ] - ], - "animation-delay-start.tentative.html": [ - "2fba4d8e514471d540c17a384ab6803a4142155a", + "anchor-scope.html": [ + "1d37b26054cbb0adaf836f8545938cb6cd934eed", [ null, {} @@ -555463,7 +567907,7 @@ ] ], "letter-spacing.html": [ - "9d313c13955a385920a60fc8e836bf8b296c6e95", + "ab78031b2186c0ebc9ed0917a29df2fa4732cf45", [ null, {} @@ -556559,6 +569003,13 @@ {} ] ], + "outline-width-rounding.tentative.html": [ + "8a4a724bbe5b95989de2398385c6d3139043fe7f", + [ + null, + {} + ] + ], "parsing": { "box-sizing-computed.html": [ "9b7f1d1c4237c5a3d7236fe992c327a2247a7a81", @@ -556581,6 +569032,13 @@ {} ] ], + "canonical-order-outline-sub-properties-001.html": [ + "aeb98ffa425434a00bab2020799d59b350fcded8", + [ + null, + {} + ] + ], "caret-color-computed.html": [ "0428c783f5b0b0efc664d18529f8cae22acf72e2", [ @@ -556757,7 +569215,7 @@ ] ], "resize-invalid.html": [ - "7f9698f7aadd91cb4f44e44ad01a6a7c79f519ee", + "c6c19ebceac73d4086b1d12c75bfdd7862d8769d", [ null, {} @@ -556822,6 +569280,15 @@ } ] ], + "text-overflow-017.html": [ + "7f61a57620c126c9ee99c7a2d41b567d84506bf1", + [ + null, + { + "testdriver": true + } + ] + ], "text-overflow-023.html": [ "b9c21ed8f22e5380773a6ebdf620913be7aa77e1", [ @@ -556956,6 +569423,27 @@ ] ] }, + "attr-all-types.html": [ + "9418ed0865d1d04b638ea9c6011355295410c955", + [ + null, + {} + ] + ], + "attr-invalidation.html": [ + "a48556e5ff7273772e1b037114f0112a8773b6a0", + [ + null, + {} + ] + ], + "attr-pseudo-elem-invalidation.html": [ + "1ef912bf75d2ed811e4676754a794dc6f2564f31", + [ + null, + {} + ] + ], "calc-angle-values.html": [ "699af7a5cdcb3b4cfa106f53eb416a15427f0a91", [ @@ -557062,7 +569550,7 @@ ] ], "calc-letter-spacing.html": [ - "444785ba14c21faefe56c22de0c23766ddb26c95", + "4db3b012208452c799244640e09e4677c983122e", [ null, {} @@ -557103,13 +569591,6 @@ {} ] ], - "calc-rounding-001.html": [ - "dfd03a695305e0721154bf26f68a5912216d9862", - [ - null, - {} - ] - ], "calc-rounds-to-integer.html": [ "80589785c36e14d0859b3f4a5555f7e9d47ac963", [ @@ -557131,6 +569612,210 @@ {} ] ], + "calc-size": { + "animation": { + "calc-size-height-interpolation.html": [ + "2126bd8faed1c263c0d3d4132f2c61664bf4fbb3", + [ + null, + { + "timeout": "long" + } + ] + ], + "calc-size-interpolation-expansion.html": [ + "354d108f1daa5a020aa4499933bf1d965dd6573b", + [ + null, + {} + ] + ], + "calc-size-width-interpolation.html": [ + "c08198bd4a5f0f677156c18ef9e238f4c49bff1b", + [ + null, + { + "timeout": "long" + } + ] + ], + "interpolate-size-height-composition.html": [ + "22f62b8edac28fe1a6219926839c87660c3248ad", + [ + null, + {} + ] + ], + "interpolate-size-height-interpolation.html": [ + "1eeb7b9c8a0237072fe379ea36afa5fc5385d8b2", + [ + null, + {} + ] + ], + "interpolate-size-interpolation.html": [ + "ef2034ba4802b886dbac278ea0b6b5a616a68404", + [ + null, + {} + ] + ], + "interpolate-size-logical-properties-interpolation.html": [ + "5105f751bd6cf7049f2d4ce50c8a54bd780eaf5f", + [ + null, + {} + ] + ], + "interpolate-size-max-height-composition.html": [ + "e356fb60746d4dae08dcf234dc843ecf07f4a11c", + [ + null, + {} + ] + ], + "interpolate-size-max-height-interpolation.html": [ + "89a99a2c0ce2d2e2c58b70b3c709b277c50199ef", + [ + null, + {} + ] + ], + "interpolate-size-max-width-composition.html": [ + "1e540eaee64a679a7d9d74d39a5b68a88531b6e5", + [ + null, + {} + ] + ], + "interpolate-size-max-width-interpolation.html": [ + "dc9c92533e9db9d09eac5ae223aa69363d3bd17a", + [ + null, + {} + ] + ], + "interpolate-size-min-height-composition.html": [ + "520ec75aaf8e4efa5bac81645913ee66dc034314", + [ + null, + {} + ] + ], + "interpolate-size-min-height-interpolation.html": [ + "d86f5b56854534d4d542b87fa28d6a989ad9218c", + [ + null, + {} + ] + ], + "interpolate-size-min-width-composition.html": [ + "4f9e91394a556a679b7ae369e1cdb350a1eb0315", + [ + null, + {} + ] + ], + "interpolate-size-min-width-interpolation.html": [ + "be44eb31bab68742be49201f4d781c359328cdb0", + [ + null, + {} + ] + ], + "interpolate-size-which-value.html": [ + "960173a8bb43ba6d568f519dd565df09e64d02ab", + [ + null, + {} + ] + ], + "interpolate-size-width-composition.html": [ + "a84e0bec3d517a382067c98f3d234d6ecb078fcc", + [ + null, + {} + ] + ], + "interpolate-size-width-interpolation.html": [ + "6ce8e10eed20ce57e83a47e3ba5903c27d723b93", + [ + null, + {} + ] + ] + }, + "calc-size-flex-basis-on-column.html": [ + "1d2ba5804b9c0f7204e962620f5b8920a303b8f7", + [ + null, + {} + ] + ], + "calc-size-flex-basis-on-row.html": [ + "23231f213ed8359ec288a7885f0c887f4bd439d3", + [ + null, + {} + ] + ], + "calc-size-height-box-sizing.html": [ + "93eebfc9bd7f24cae4383a5e3df3f46b20c89a8b", + [ + null, + {} + ] + ], + "calc-size-height.html": [ + "540280c872a6c99063a14bed87d8208677e54382", + [ + null, + {} + ] + ], + "calc-size-parsing.html": [ + "6db2635e5ef7a841c84ba1ccf379bddb12192da7", + [ + null, + {} + ] + ], + "calc-size-typed-om.html": [ + "8f9600e26a9c2a06e4c6ccf81fe3c040598e0905", + [ + null, + {} + ] + ], + "calc-size-width-box-sizing.html": [ + "7c6a3db6af6dfe38c8f846c4fe014f7562a2c3e8", + [ + null, + {} + ] + ], + "calc-size-width.html": [ + "96b2719c5d18fa6b0f96d9de196b77a045e8d8d5", + [ + null, + {} + ] + ], + "interpolate-size-computed.html": [ + "ca7fd706cb96e3f79d967d07516cbc1230a5007f", + [ + null, + {} + ] + ], + "interpolate-size-parsing.html": [ + "04c8cff8f360983e7897698556cbd08916fe1ae4", + [ + null, + {} + ] + ] + }, "calc-time-values.html": [ "60bcdcba594d8300091120100dfe8d878f8ff708", [ @@ -557201,6 +569886,27 @@ {} ] ], + "container-progress-computed.tentative.html": [ + "5c8d12f9cd492a530ea171af3434515b2f2a83ac", + [ + null, + {} + ] + ], + "container-progress-invalid.tentative.html": [ + "a78fd3442629a59971b0154ea29bd4d1e57cc17d", + [ + null, + {} + ] + ], + "container-progress-serialize.tentative.html": [ + "181054c65335905113111fa5a363863c1652984d", + [ + null, + {} + ] + ], "dynamic-viewport-units-rule-cache.html": [ "8afb3c51ed32ffd11656c17d6a7334475f6405f7", [ @@ -557306,6 +570012,20 @@ {} ] ], + "integer_interpolation_round_half_towards_positive_infinity_order.html": [ + "60c439ebcf4cb5e6e7a412326b4333a163a6bd60", + [ + null, + {} + ] + ], + "integer_interpolation_round_half_towards_positive_infinity_z_index.html": [ + "c9b042ccb8f2d08e04dca56df9715b4081c4d19d", + [ + null, + {} + ] + ], "lh-rlh-on-root-001.html": [ "f26981669910af31bcc4fead14394b6baeffaac7", [ @@ -557341,6 +570061,27 @@ {} ] ], + "media-progress-computed.tentative.html": [ + "b2b9c6662a5cbf10c595310f1578c6a46409b06c", + [ + null, + {} + ] + ], + "media-progress-invalid.tentative.html": [ + "10d40bcbfbb7603a5cd8d0d99bf0d955d797c549", + [ + null, + {} + ] + ], + "media-progress-serialize.tentative.html": [ + "354dda25b79be729b9577b5976392005804aa99f", + [ + null, + {} + ] + ], "minmax-angle-computed.html": [ "4d44f38748cb999f8afba27bfd4bb4b8183b0a6b", [ @@ -557377,7 +570118,7 @@ ] ], "minmax-length-invalid.html": [ - "1405c3198128530939d9778642aaab2920bb6e60", + "7b8ca88cd26fb2910ca2e2e04cf5c1629d6b9f89", [ null, {} @@ -557447,7 +570188,7 @@ ] ], "minmax-percentage-serialize.html": [ - "65ab9fad961feb87d82955c30659321423a04e3a", + "0452818ae09d7959429205d2ece8702b0027f98e", [ null, {} @@ -557475,7 +570216,7 @@ ] ], "progress-computed.tentative.html": [ - "2ef09996d55a758f17cf33987c21ca9f26e36e7f", + "938b05f11c3f16c12790b52ccb83f309f7d0c0cd", [ null, {} @@ -557489,7 +570230,7 @@ ] ], "progress-serialize.tentative.html": [ - "6ea12f2b7561e3422aeb5434abc859d78a9a0498", + "d2090cb7f8dc667c9452cf0238bf42b810cd9c88", [ null, {} @@ -557545,7 +570286,7 @@ ] ], "round-function.html": [ - "29ec60ea44585b87386d0cc5b6e4df2b5b1230a2", + "338ecaed9044d9dc270557bc15c97b4531b74ace", [ null, {} @@ -557559,7 +570300,7 @@ ] ], "round-mod-rem-invalid.html": [ - "01268091908f8366472ae5a6bfea040859e663c8", + "5e22012743e7346a6486ec5953ad3eb3bbc32e5f", [ null, {} @@ -557658,6 +570399,13 @@ ] ] }, + "various-values-important.html": [ + "2dc34bf446f1cfdcdd3118573b7182315dc16756", + [ + null, + {} + ] + ], "viewport-relative-lengths-scaled-viewport.html": [ "dba2af8fa07b07d2ab7c6ca9f657b6e170cd9a41", [ @@ -557752,7 +570500,7 @@ ] ], "revert-in-fallback.html": [ - "ae99e5192fd2587332c23b6a0ff604956a845e17", + "956965ab7abb1dc67713ad90ce6b5bff1284e14d", [ null, {} @@ -557849,6 +570597,13 @@ {} ] ], + "variable-css-wide-keywords.html": [ + "4666729da514e23824cb9697befa4a975df2b093", + [ + null, + {} + ] + ], "variable-cssText.html": [ "15a3ad83c16131e419c2a7ad2bc58d8c6849053d", [ @@ -558052,6 +570807,13 @@ {} ] ], + "variables-animation-math-functions.html": [ + "13bcf5a14ccbcb4d491e808ffc9330e5e279ec9b", + [ + null, + {} + ] + ], "variables-substitute-guaranteed-invalid.html": [ "4abfe28d1f21b2891599543b3972b26fbd15b77e", [ @@ -558076,14 +570838,14 @@ ] ], "duplicate-tag-rejects-start.html": [ - "6c99d6426c04f553dea129f0c0f978aba1c33c24", + "5c605fefbb3cc13538e4161bcb0f989a89a30e26", [ null, {} ] ], "event-pseudo-name.html": [ - "bccf64915d029ac5077414c2299b14c7ce88b99e", + "d77c8173456d6190c8d663656fa7b94958100b91", [ null, {} @@ -558096,15 +570858,22 @@ {} ] ], + "hit-test-pseudo-element-element-from-point.html": [ + "9bc1f5751fc61dd69e7fc7805d113fdac64c848f", + [ + null, + {} + ] + ], "hit-test-unpainted-element-from-point.html": [ - "7c9ed911cb7776fd553265146816dfbbf5f18952", + "c950cc126e016f1c80321b0ffd2790ce5b149ee3", [ null, {} ] ], "input-targets-root-while-render-blocked.html": [ - "dbeb39da5468b56130413c2e29a134e5e67887fe", + "b26f8a45d6c7827e96669f8e56ccffa9a73cc51b", [ null, { @@ -558119,15 +570888,268 @@ {} ] ], + "navigation": { + "at-rule-cssom.html": [ + "6f8beb16731bec0dd1e4f90a9829cc8571cd84a2", + [ + null, + {} + ] + ], + "at-rule-in-layer-cascade-external-stylesheet.html": [ + "53c6135a566cb256079d480bb9b4b1f7a0be3ea4", + [ + null, + {} + ] + ], + "at-rule-in-layer-cascade.html": [ + "a38ca48e8c41426c73801173d1a9516b2a1caeff", + [ + null, + {} + ] + ], + "at-rule-in-layer.html": [ + "63ec4c3e25d24abd5e0e5e24cfd612487ae2c4c3", + [ + null, + {} + ] + ], + "at-rule-in-matching-media.html": [ + "77f2e05c340320fcc1a16c0135b0c85ef8157c91", + [ + null, + {} + ] + ], + "at-rule-in-non-matching-media.html": [ + "ac9dbde37e183ac5f559b2a2af6434add43786f9", + [ + null, + {} + ] + ], + "at-rule-in-shadow-dom.html": [ + "7edd8e0749f7c77f1257423c5838ae0bcb0b263b", + [ + null, + {} + ] + ], + "at-rule-multiple-rules.html": [ + "5a84d46da1884016bdf40022473a732e94d7a423", + [ + null, + {} + ] + ], + "at-rule-opt-in-change-with-script.html": [ + "12452f67634e42746871a74701c87dfeef165048", + [ + null, + {} + ] + ], + "hide-before-reveal.html": [ + "7cdbcb46280bd352c72f7ce9aa3802fae5e319e2", + [ + null, + { + "testdriver": true, + "timeout": "long" + } + ] + ], + "mismatched-snapshot-containing-block-size-skips.html": [ + "d18a40c9b6e38522f004394ac52494f58be4673d", + [ + null, + { + "testdriver": true + } + ] + ], + "old_vt_promises_bfcache.html": [ + "18397abbec7b2f5129d54b376b3b812f68ec4c53", + [ + null, + {} + ] + ], + "pagereveal-ctor.html": [ + "a840b29f3179c2e50c3899066707f69e61f9638b", + [ + null, + {} + ] + ], + "pagereveal-microtask-sequence.html": [ + "205f4d1ddcfb71d60788af58c77e6b12957336c3", + [ + null, + {} + ] + ], + "pagereveal-no-view-transition-new-opt-out.html": [ + "a8b314b751f57b7d237779b5cbf90c8cca66ab3f", + [ + null, + {} + ] + ], + "pagereveal-no-view-transition.html": [ + "a6ae95f9be12f158a3b5ce9b708d6e9b013f13a7", + [ + null, + {} + ] + ], + "pagereveal-updatecallbackdone-promise.html": [ + "3d259e66a2051dca2498f4ed4099c61d9f0dfb1c", + [ + null, + {} + ] + ], + "pagereveal-with-view-transition.html": [ + "3f21d56ed688bee743b13d7bdd7679f851f16485", + [ + null, + {} + ] + ], + "pageswap-ctor.html": [ + "3e4e9b6466156f5ffc6497e6b3145df5dd361c1f", + [ + null, + {} + ] + ], + "pageswap-in-hidden-doc-should-skip-transition.html": [ + "5be3b6cb27ce915eea1711caa93d4adee4e4f35b", + [ + null, + { + "testdriver": true + } + ] + ], + "pageswap-long-delay.html": [ + "e6ef6d80dc26b81dd7f99b0cb40c7e7c59bf3608", + [ + null, + {} + ] + ], + "pageswap-push-from-click.html": [ + "16e04c89bfe380e3c51b52dbd8e27db3316127f0", + [ + null, + { + "testdriver": true + } + ] + ], + "pageswap-push-navigation.html": [ + "50a43e70d90eb04251ab1017113b69f6120116db", + [ + null, + {} + ] + ], + "pageswap-push-with-redirect.html": [ + "d9d252f83ce7116754a65ee272c698b0e3c41b15", + [ + null, + {} + ] + ], + "pageswap-replace-navigation.html": [ + "18f63454fdf8ce59244ac6ff40563ba1461295a1", + [ + null, + {} + ] + ], + "pageswap-skip-transition.html": [ + "bfeee7827a31cb4ca0b78d4c43ccbf53f1d698cc", + [ + null, + {} + ] + ], + "pageswap-traverse-navigation-no-bfcache.https.html": [ + "9137dc4d1cd18da10ff2ac4c74e1e007d7fdfc04", + [ + null, + {} + ] + ], + "skip-outbound-vt-before-reveal.html": [ + "2fcac44d2494b6f25af528f8042f5de3fc5f4755", + [ + null, + { + "timeout": "long" + } + ] + ], + "with-types": { + "at-rule-with-types-parsing.html": [ + "431a0ec9f4de5888b498b850de6c2adfdcdea97a", + [ + null, + {} + ] + ], + "navigation-supersedes-types-same-rule.html": [ + "23dc9d4ca983d708a68279af1aadd107b2d6aed8", + [ + null, + {} + ] + ], + "navigation-supersedes-types-when-after.html": [ + "1fd28d97a6ee45010d19216b8f71bd9dd5017b43", + [ + null, + {} + ] + ], + "types-in-pagereveal-and-pageswap.html": [ + "2c12fece3c0990cf4991341b0dd0c75c927f7727", + [ + null, + {} + ] + ] + }, + "zero-named-elements.html": [ + "e6061de2a8b01584308a535a991f11927460e79c", + [ + null, + {} + ] + ] + }, "no-crash-set-exception.html": [ - "e1596cf76e58ca82df683c27587c683529b40f84", + "bc0d764a590aaed95d2e6afe487f2477385a9c94", + [ + null, + {} + ] + ], + "no-crash-view-transition-in-massive-iframe.html": [ + "ae9113cb1f9aae7a5119d350532822e46f914a2a", [ null, {} ] ], "no-css-animation-while-render-blocked.html": [ - "ae9cfda9bb079da8ea298a43b939b286c93ad3c4", + "85af434a143c8b6315a516879286d98f4ea630cb", [ null, { @@ -558136,7 +571158,7 @@ ] ], "no-raf-while-render-blocked.html": [ - "52058b7a04b8317d4266aaffa766738aa9611f5c", + "a86fd14536229767b510d53741e86fd89e901828", [ null, { @@ -558145,64 +571167,113 @@ ] ], "only-child-group.html": [ - "05275a344882732bebdc4cc28db2dc947f238e69", + "551e8816116c9b54f35dc2afbff57eb5460251f5", [ null, {} ] ], "only-child-image-pair.html": [ - "288d496346e3b55585dbb8cffaff826c2f9c2351", + "d84b74f0ab38c3aebd8db18de5c504f0ff5d0f29", [ null, {} ] ], "only-child-new.html": [ - "9f365282194c3992304d3b2aa2e59cc202ee3e61", + "7bc8a447ce56e96c7237a8f0b2ddf7a2a04af745", [ null, {} ] ], "only-child-no-transition.html": [ - "7dc2bf12176d9d45dc6af80017617206f4d6dbee", + "9152253dff3fac342ce031d0d8323c04a360ca14", [ null, {} ] ], "only-child-old.html": [ - "7a55af7397ddad2cf1e54aea1df49a5a998ec173", + "4d57121aa16f25d60b04a37ecbb44bbb53b0ce59", [ null, {} ] ], "only-child-on-root-element-with-view-transition.html": [ - "8b81c35ff6c15c589ee1c4f95f96a21c21149ae4", + "eaecbfe8523951d361e7395bccc48e7625c4dece", [ null, {} ] ], "only-child-view-transition.html": [ - "2089e9225ec9b0e515c1404c5a7c7b38424db2b5", + "02683423c0f9399fbd062124f1d841763bbee803", [ null, {} ] ], "parsing": { + "pseudo-elements-invalid-with-classes.html": [ + "66443c5cd7aac7163da29dfaaf2d60a9b5b1ae68", + [ + null, + {} + ] + ], "pseudo-elements-invalid.html": [ - "5a2624d09da7733eebcb1371fb9511dabe27b1c8", + "e13df89fe329ad79bc5dd985b902583229986b1c", + [ + null, + {} + ] + ], + "pseudo-elements-valid-with-classes.html": [ + "8ddf2e28d6095aa79f097a2fb68b7d10848c9d1e", [ null, {} ] ], "pseudo-elements-valid.html": [ - "1a0e5b82d35e7bdd7bb1b753d42106c9d46b9c30", + "1d5ccd1442c20ce5457e1145a8d1b8c8a10727d6", + [ + null, + {} + ] + ], + "view-transition-class-computed.html": [ + "74151c46da9936207af6a93ecbc9bef072fd3fa2", + [ + null, + {} + ] + ], + "view-transition-class-invalid.html": [ + "9d41589bf2290026575e814e48ce7eea33c3864a", + [ + null, + {} + ] + ], + "view-transition-class-valid.html": [ + "480f40ca161b9fb56ec405d54f6d5d81af8b9d25", + [ + null, + {} + ] + ], + "view-transition-group-invalid.tentative.html": [ + "a371a94665eb835b750293dca11e85aab7eb4366", + [ + null, + {} + ] + ], + "view-transition-group-valid.tentative.html": [ + "d1d21a60997070cc0ead0a583e46b5c7a5a27b47", [ null, {} @@ -558216,7 +571287,7 @@ ] ], "view-transition-name-invalid.html": [ - "0151991436c824225d518ea23ce5f4860bfca8f0", + "00cd411d6ad726690cca6a53caf0c9d2d70ca072", [ null, {} @@ -558244,22 +571315,29 @@ {} ] ], + "pseudo-element-animations.html": [ + "a7c3247479d01f4044b9033726282037c1b4bc9f", + [ + null, + {} + ] + ], "pseudo-get-computed-style.html": [ - "2481a713133b7e1bf47cedf0b4966a51dd777d78", + "3e971885c398eab3d3a95b6ae16d4704b02ff23f", [ null, {} ] ], "ready_resolves_after_dom_before_raf.html": [ - "adf3dc6c161515e8ef0b8476137afc26ea594c16", + "043d01c93263158014cd7086e031b7bea6c10626", [ null, {} ] ], "style-inheritance.html": [ - "d0cef9be63fae040163a4220fd569c952dc9e2ad", + "ed4705c56d7cc80ed1261b7ed685d7310b659dfd", [ null, {} @@ -558272,6 +571350,16 @@ {} ] ], + "transition-in-hidden-page.html": [ + "f23d30f96c59047d763083d7a77f14ff0636b42c", + [ + null, + { + "testdriver": true, + "timeout": "long" + } + ] + ], "transition-skipped-after-animation-started.html": [ "56c477a55f6e6e4dfc73ca40077dc0938ee6a1d7", [ @@ -558293,6 +571381,15 @@ {} ] ], + "update-callback-timeout.html": [ + "9e96e97e117a4f39755d506e8190d40c9a5a1276", + [ + null, + { + "timeout": "long" + } + ] + ], "view-transition-name-on-removed-element.html": [ "36beb308283a9a61a2289193b136fa7bed7f09d7", [ @@ -558300,6 +571397,20 @@ {} ] ], + "view-transition-types-mutable-no-document-element-crashtest.html": [ + "f1940c398695989d6cc569ffb25a03a83be1d064", + [ + null, + {} + ] + ], + "view-transition-types-mutable.html": [ + "86c77d615abf19471bc980f5cf6cf3fb7f9a97c4", + [ + null, + {} + ] + ], "web-animation-pseudo-incorrect-name.html": [ "e8d14f1bb08161169f436634fe9c4937759ed991", [ @@ -558307,8 +571418,17 @@ {} ] ], + "window-resize-aborts-transition-before-ready.html": [ + "28abd8452d86733d4d34ef63965144967660b85b", + [ + null, + { + "testdriver": true + } + ] + ], "window-resize-aborts-transition.html": [ - "e2424cad8c7b2839aea19ddebc4c4a2e5bcc2d7c", + "fd83562316f51d2bdf70d088a7e4e9f46519cc58", [ null, { @@ -558317,6 +571437,47 @@ ] ] }, + "css-viewport": { + "computedStyle-zoom.html": [ + "bd53ce535ceb416456e0b6237ba8b81d5542e4a8", + [ + null, + {} + ] + ], + "zoom": { + "parsing": { + "zoom-computed.html": [ + "41fb1b24ae54ae87a7e25a08fd135103a5e40837", + [ + null, + {} + ] + ], + "zoom-valid.html": [ + "3f36508b8be55d91ce08631779025e9b7e8e0507", + [ + null, + {} + ] + ] + }, + "relative-units.html": [ + "8cfa27c93ad6726c58ced9a9836e7daadd0e5aea", + [ + null, + {} + ] + ], + "scroll-top-test-with-zoom.html": [ + "9656fe120e8ec39a7570950b4b1ad39d6c2fb16b", + [ + null, + {} + ] + ] + } + }, "css-will-change": { "inheritance.html": [ "6b4ed2aa544f6f9dd4b7e77b71f1850390a5159a", @@ -558431,11 +571592,12 @@ ] ], "select-multiple-options-visual-order.html": [ - "359c09279ed856087e4967ed44521dce7fd63c5c", + "e9454d0e705f6cd2cf538851d88c202e7f691652", [ null, { - "testdriver": true + "testdriver": true, + "timeout": "long" } ] ], @@ -558830,7 +571992,7 @@ ] ], "unicode-bidi-parsing-001.html": [ - "2672873f81984cff9d54466cc6a1a855ad9646e9", + "4c9558c11aa3cf6c8db4bb09d387da148df92838", [ null, {} @@ -558923,7 +572085,7 @@ ] ], "CSSContainerRule.tentative.html": [ - "4e01c0b47003a413c0853ba96011d10962ad00a5", + "4258aeb8ff81d326c403d600c2d99c5a9236be74", [ null, {} @@ -559013,8 +572175,8 @@ {} ] ], - "CSSStyleSheet-constructable-baseURL.tentative.html": [ - "8997a59e9c18238b661c5b3592bdfd86e266b754", + "CSSStyleSheet-constructable-baseURL.html": [ + "d0f0f828b03ead6083ca8e3aad6a9070bd2a1f97", [ null, {} @@ -559048,6 +572210,13 @@ {} ] ], + "CSSStyleSheet-constructable-invalidation.html": [ + "f63abaa80c4a20d7b37916d05a1be37ef87bdefa", + [ + null, + {} + ] + ], "CSSStyleSheet-constructable-replace-cssRules.html": [ "adb1b5f70988a33a6535e9c27c9c86dffdb99aaf", [ @@ -559188,6 +572357,13 @@ {} ] ], + "adoptedstylesheets-modify-array-and-sheet.html": [ + "dab1da3737f4aec439b7ee418f919ac4db83148f", + [ + null, + {} + ] + ], "adoptedstylesheets-observablearray.html": [ "783a0541633d3f2b5fdfae90c364ffa8350be561", [ @@ -559405,6 +572581,13 @@ {} ] ], + "cssstyledeclaration-csstext-setter.window.js": [ + "4474358ed0f74d3a48c34ba2753aa7fd18efafc7", + [ + "css/cssom/cssstyledeclaration-csstext-setter.window.html", + {} + ] + ], "cssstyledeclaration-csstext.html": [ "686684e614f6f9ab0956fde06ca556654538930c", [ @@ -559706,6 +572889,13 @@ {} ] ], + "getComputedStyle-pseudo-with-argument.html": [ + "bc23ad180bb009c88cb2cc9222e79f8bd863f5e1", + [ + null, + {} + ] + ], "getComputedStyle-pseudo.html": [ "c07347a1973cf2fa9105907bbdd0015081bed417", [ @@ -559813,6 +573003,13 @@ {} ] ], + "link-element-stylesheet-title.html": [ + "bca6a3082e96b06925370a5400fb53e1be3df00b", + [ + null, + {} + ] + ], "medialist-interfaces-001.html": [ "f436177fb8ec210d878418883d7876f64d1c45df", [ @@ -559849,7 +573046,7 @@ ] ], "page-descriptors.html": [ - "5cf0a6a703d7e63af280d45f2847e2d6042264bb", + "e77b0df8de7ede435c82febad108407fb52b2540", [ null, {} @@ -560053,6 +573250,13 @@ {} ] ], + "Element-currentCSSZoom.html": [ + "2f477e8e2d178615103d3b7954d4dd166e68914f", + [ + null, + {} + ] + ], "GetBoundingRect.html": [ "7286bd09882e783e2a3c8647b5d6111dcfe0b36a", [ @@ -560158,6 +573362,13 @@ {} ] ], + "client-props-zoom.html": [ + "fc5b07abb5152bd94f9094308dce85a361ce96c8", + [ + null, + {} + ] + ], "cssom-getBoundingClientRect-001.html": [ "7d96540adfe95205a770c232473e0c1268e609e2", [ @@ -560466,6 +573677,13 @@ {} ] ], + "getBoundingClientRect-zoom.html": [ + "18f44de534fd5b9987606c0dbde4fb55d2ba6c2f", + [ + null, + {} + ] + ], "getClientRects-br-htb-ltr.html": [ "e952d61b677164c3b5d49799c80063174120307f", [ @@ -560522,6 +573740,13 @@ {} ] ], + "getClientRects-zoom.html": [ + "93d42aee87b5c401fe53e2b9ec389e8930277dbd", + [ + null, + {} + ] + ], "historical.html": [ "bf82eac1157aea5fa256861ef04f8da15e6ae89e", [ @@ -560545,6 +573770,13 @@ } ] ], + "image-x-y-zoom.html": [ + "4717dcbd9d4c66a1558d02538f5134c520b2935f", + [ + null, + {} + ] + ], "inheritance.html": [ "8c381e7119c9408f4d11ee77c0d7f8065dd08464", [ @@ -560611,7 +573843,7 @@ ] ], "offsetTop-offsetLeft-with-zoom.html": [ - "2d74a9f116bc68b141969dbda8cf18c744a6a779", + "b0f11ea02e545e63b01882c0f71ad7ae451d8a1a", [ null, {} @@ -560645,6 +573877,13 @@ {} ] ], + "offsetTopLeft-table-caption.html": [ + "9ee5619e20c920b1be02d184741ccac8e8c59ee3", + [ + null, + {} + ] + ], "offsetTopLeft-trailing-space-inline.html": [ "3e50b78b9a264edb3f8bff3a7d71bfe6ed6060fa", [ @@ -560710,6 +573949,13 @@ {} ] ], + "range-bounding-client-rect-with-nested-text.html": [ + "78ca5421df0b8e7bd3f83087c27ce5f0b57f7b4c", + [ + null, + {} + ] + ], "resize-event-on-initial-layout.html": [ "dc2f04bcced73dffc16d0c439ea029469da2017d", [ @@ -560851,6 +574097,13 @@ {} ] ], + "scroll-zoom.html": [ + "85808887fd348ff11a5e3b6b34e3982a271384df", + [ + null, + {} + ] + ], "scrollIntoView-align-scrollport-covering-child.html": [ "b8ea73cc1fbd2b39fcd4b91a4b4edcf7f0e4730d", [ @@ -560893,6 +574146,20 @@ {} ] ], + "scrollIntoView-multiple-nested.html": [ + "630cd21b6137c2150bb6a3363c4654b885f5e20a", + [ + null, + {} + ] + ], + "scrollIntoView-multiple.html": [ + "e6ddd1818f2ab861017c25b112725b448c2b1c09", + [ + null, + {} + ] + ], "scrollIntoView-scrollMargin.html": [ "930702aa8792506df50120feaca86d3f76bc1a02", [ @@ -560943,7 +574210,7 @@ ] ], "scrollIntoView-smooth.html": [ - "ddfa31076c2bff7711ed493dbaec0943fd03ff87", + "324e51d7388a04fdc3b53e26542284e4aa6a6792", [ null, {} @@ -560998,6 +574265,20 @@ {} ] ], + "scrollWidthHeight-negative-margin-001.html": [ + "057854d98e7e66fadce236edac44ec099a05a8af", + [ + null, + {} + ] + ], + "scrollWidthHeight-negative-margin-002.html": [ + "cd5964f5c1aa421f63921d8e414c6ed18fef546d", + [ + null, + {} + ] + ], "scrollWidthHeight.xht": [ "18930517670c20e2a68b5d6f20a320b60c9eaf83", [ @@ -561033,6 +574314,20 @@ {} ] ], + "scrollintoview-containingblock-chain.html": [ + "fd66bfadce14e23f857000adef1639ac738f187f", + [ + null, + {} + ] + ], + "scrollintoview-zero-height-item.html": [ + "0973dadb35e0306ca14de7cf5db0fc4b8426bf70", + [ + null, + {} + ] + ], "scrollintoview.html": [ "7a7ecfafccbe679a96e06f3fa934cf6d19e2c760", [ @@ -561040,6 +574335,43 @@ {} ] ], + "smooth-scroll-in-load-event.html": [ + "e515b067102a938d3310487d89ef214bdfebb0ee", + [ + null, + {} + ] + ], + "smooth-scroll-nonstop.html": [ + "7ba6e690f9072671db98a442239b5fff1fa92e8f", + [ + null, + {} + ] + ], + "smooth-scrollIntoView-with-smooth-fragment-scroll.html": [ + "72ecdf15e5511532944aa24d05c84f37ce04a6ce", + [ + null, + {} + ] + ], + "smooth-scrollIntoView-with-unrelated-gesture-scroll.html": [ + "f42fcb298570ccc6d56d63657982cabeb874b559", + [ + null, + { + "testdriver": true + } + ] + ], + "subpixel-sizes-and-offsets.tentative.html": [ + "d198b9dde60c8cac16241c412d3e55f772166010", + [ + null, + {} + ] + ], "table-border-collapse-client-width-height.html": [ "a7a1a435b2279ccb07136ed295dcc25b38c2c87c", [ @@ -561127,6 +574459,17 @@ ] ] }, + "fill-stroke": { + "animation": { + "stroke-color-interpolation.html": [ + "e519e6b8a53635301b5823b1483dad8fe3fc4cb9", + [ + null, + {} + ] + ] + } + }, "filter-effects": { "animation": { "backdrop-filter-interpolation-001.html": [ @@ -561193,6 +574536,13 @@ ] ] }, + "backdrop-filter-important.html": [ + "357e84bcbdaae684e4e373439ee7ef1279c5318f", + [ + null, + {} + ] + ], "idlharness.any.js": [ "5df3aaf4b28842d05f4d038ba2ec0b18f828b6fc", [ @@ -561443,6 +574793,13 @@ {} ] ], + "DOMMatrix-invertSelf.html": [ + "b9b8066d1d190e121ec80fef393efeac843b1866", + [ + null, + {} + ] + ], "DOMMatrix-newobject.html": [ "33604e3c6718f05583ad544f6659d0060fe7d79d", [ @@ -561612,7 +574969,7 @@ ] ], "display-mode.html": [ - "e6633de856c5f438e47ebe1d05b1593753948fbf", + "4ade16799f9db32f502df643f33094e5a2552e70", [ null, {} @@ -561859,6 +575216,20 @@ {} ] ], + "offset-path-interpolation-007.html": [ + "6629f285d1855d7a0e3aba3241ffd0f8da818c42", + [ + null, + {} + ] + ], + "offset-path-interpolation-008.html": [ + "30d789f4eb84daf9e4400c82558d1db3c479cf51", + [ + null, + {} + ] + ], "offset-position-composition.html": [ "0ee517a73a8e9e673a83a0f81bbdea98d6a3d808", [ @@ -561880,8 +575251,22 @@ {} ] ], + "offset-rotate-interpolation-math-functions.html": [ + "c6be0a55d713c91eae9f9c6b20dd0f23dbc28ab3", + [ + null, + {} + ] + ], "offset-rotate-interpolation.html": [ - "55845108ebf5f3c42a8b0532121199136160d695", + "10c337244f5f5d393d5a7f55387114efbcf3209b", + [ + null, + {} + ] + ], + "ray-angle-interpolation-math-functions.html": [ + "162adbc095e24f97ca846c3872993e6417f62faf", [ null, {} @@ -561980,6 +575365,20 @@ {} ] ], + "offset-path-shape-computed.html": [ + "8904eaf16a2771e5a42f5ff9b2d4a5623fe6066b", + [ + null, + {} + ] + ], + "offset-path-shape-parsing.html": [ + "6ca288b660e4a322f7585feba86a776674fa9732", + [ + null, + {} + ] + ], "offset-position-computed.html": [ "ebb8023e6c512f8f4cb305906c5b85a254b86895", [ @@ -562079,7 +575478,7 @@ ] ], "dir-pseudo-on-input-element.html": [ - "25f7a080d7e2e639485a58185a7a715303a3b745", + "b1427bf42d6636b42314427a37db724597b24f4a", [ null, {} @@ -562385,6 +575784,15 @@ } ] ], + "focus-visible-028.html": [ + "a8b704838bb2b9540edc70f30b548448f5afc852", + [ + null, + { + "testdriver": true + } + ] + ], "focus-visible-script-focus-001.html": [ "df6d9158b7cf3e829343834f1c5a499a15016434", [ @@ -563077,7 +576485,7 @@ ] ], "has-sibling-insertion-removal.html": [ - "3c05a0f495a6d30a99165a59c1018563be029581", + "0655b230524ddb5e43bd0e3390ba887e0e55708f", [ null, {} @@ -563104,6 +576512,24 @@ {} ] ], + "has-with-nesting-parent-containing-complex.html": [ + "4ed611146b80ed5e5aef720f345b5394fa4d4fbb", + [ + null, + { + "testdriver": true + } + ] + ], + "has-with-nesting-parent-containing-hover.html": [ + "8082980e6261ab4bd9407e0a1e0a807a215f4731", + [ + null, + { + "testdriver": true + } + ] + ], "has-with-not.html": [ "b67ec5e3b7d05cee54666c079d197d2232609dad", [ @@ -563188,6 +576614,13 @@ {} ] ], + "is-where-pseudo-containing-hard-pseudo.html": [ + "416aacca8c0d0085f0e574852ed6f0cc4cdc9ca0", + [ + null, + {} + ] + ], "is.html": [ "8490f096976340bc970ed2c6156fb60f433768e9", [ @@ -563271,6 +576704,13 @@ {} ] ], + "nth-child-whole-subtree.html": [ + "36442a0e36f51a0aea7b9178964e99ae9b0dd361", + [ + null, + {} + ] + ], "part-dir.html": [ "6672d267be3dfd97430a5f5eb63bac2c0e1a48d9", [ @@ -563499,6 +576939,13 @@ {} ] ], + "nth-last-child-invalid.html": [ + "ae768b8698e35f74bf34b310993381834dda3c9f", + [ + null, + {} + ] + ], "nth-of-type-namespace.html": [ "f5d81a5df3ac1380749a075cb5588897d6816c58", [ @@ -563520,7 +576967,23 @@ {} ] ], + "open-closed-pseudo.html": [ + "9301fd2f41624ceae62378547fc735f71ff72d95", + [ + null, + { + "testdriver": true + } + ] + ], "parsing": { + "invalid-pseudos.html": [ + "a4be206b2586b82c5b9a1cc3f59b023820a56d14", + [ + null, + {} + ] + ], "parse-anplusb.html": [ "b7cfd293515b67d5aa66bfe7b62262e1b64c0942", [ @@ -563613,7 +577076,7 @@ ] ], "parse-part.html": [ - "f0bec6fbc9b9ace2b7489ed4b655711f43abd470", + "fa1856ad2a9ff3bddeb73ba673c548f31b36bba7", [ null, {} @@ -563707,7 +577170,16 @@ ] ], "user-invalid.html": [ - "12a3b83862c014efffc46ea41ea804b2cfd6d7ed", + "c57e764831290886de7651735bda731ed4819e35", + [ + null, + { + "testdriver": true + } + ] + ], + "user-valid-user-invalid-multifield-inputs.tentative.html": [ + "d6358ea2691173da800ceb275a13406638291741", [ null, { @@ -563716,7 +577188,7 @@ ] ], "user-valid.html": [ - "009286f0eb52aceaeea62d8f8e8acd741ab96555", + "402003ba5e63266071a9c3aa474f017ddb131049", [ null, { @@ -563747,26 +577219,6 @@ {} ] ] - }, - "zoom": { - "tentative": { - "parsing": { - "zoom-computed.html": [ - "3737901490926148d157c69a4627bf890f7f5974", - [ - null, - {} - ] - ], - "zoom-valid.html": [ - "3db16e0748b679e29611784296f2ce1d9ec3aab3", - [ - null, - {} - ] - ] - } - } } }, "custom-elements": { @@ -563777,7 +577229,7 @@ {} ] ], - "CustomElementRegistry-getName.tentative.html": [ + "CustomElementRegistry-getName.html": [ "9bd43d51080a838d0377f2eda15e09e71fafa5d5", [ null, @@ -563827,12 +577279,21 @@ ] ], "ElementInternals-accessibility.html": [ - "8a8f1c9aea08466dbf5182159c307a6e79e7cbb3", + "3b04f257dea0ffef43775be018adcc624819b96a", [ null, {} ] ], + "ElementInternals-role.html": [ + "193cd77644c5137839b3f15ed060f37688c66bf5", + [ + null, + { + "testdriver": true + } + ] + ], "HTMLElement-attachInternals.html": [ "43ea55a67e08ce1c3086775f0df89f464e505e03", [ @@ -563840,7 +577301,7 @@ {} ] ], - "HTMLElement-constructor-customized-bulitins.html": [ + "HTMLElement-constructor-customized-builtins.html": [ "9244dfe4adc6f1facab71e770641c1f1fdda9d52", [ null, @@ -563954,6 +577415,13 @@ {} ] ], + "element-internals-aria-element-reflection.html": [ + "76905a93bd05f34ee9bf52d2544e1cdd7ef84097", + [ + null, + {} + ] + ], "element-internals-shadowroot.html": [ "7ec089624471605bb090b357bde3c493efbe9e89", [ @@ -564042,7 +577510,7 @@ ] ], "form-associated-callback.html": [ - "7feec50fef89103326e404efc2287767ee0981fb", + "329c4d75931896e7e6a2a8e4499b6ff67fc22cab", [ null, {} @@ -564070,7 +577538,7 @@ ] ], "label-delegatesFocus.html": [ - "74d31363c98b42333d5841a4dc6e5d14aa58c6b9", + "6f854faeb66b274e08986823480cc5d5ab1569d7", [ null, { @@ -564253,7 +577721,7 @@ ] ], "AriaMixin-string-attributes.html": [ - "f71bf2daa9be9a74f4353db31547b419c07d6d12", + "c058084ab28ce7d3688517578f5367a1287c235c", [ null, {} @@ -564520,7 +577988,7 @@ ] ], "HTMLMediaElement.html": [ - "58e002c52ca2fe03e2a209ef611f52ab66f8e847", + "dd830b77679880b5019dc1e9caa6dd57ea398298", [ null, {} @@ -564590,7 +578058,7 @@ ] ], "HTMLSourceElement.html": [ - "f7d567ebcb9485b1d7d57bfa7afdd59b96ef2695", + "8168fd1c2e7175ca51db5a54b9cb9c1f72d1ee06", [ null, {} @@ -564663,7 +578131,7 @@ ] ], "ShadowRoot-innerHTML-upgrade.tentative.html": [ - "e21c9dd03326d68976bffc99483d04edd1bb8145", + "11cecb1533b53839570387ff5d0c5e9e9df69f56", [ null, {} @@ -564699,22 +578167,54 @@ ] }, "state": { - "tentative": { - "ElementInternals-states.html": [ - "016a2bcc438d573444d5af24aaadbebc4ee43526", - [ - null, - {} - ] - ], - "state-pseudo-class.html": [ - "5ef526eb12c727128a9f5cf7f7ecc1dd4798cc40", - [ - null, - {} - ] + "ElementInternals-states.html": [ + "1521a8098a36f0c0339fc1e7dceac12d149de385", + [ + null, + {} ] - } + ], + "custom-state-set-strong-ref.html": [ + "da25943ffa233f313f6a65a6b3755cac6bbbcafb", + [ + null, + { + "timeout": "long" + } + ] + ], + "state-css-selector-nth-of.html": [ + "c7b7183ccb4368ac20e65877f5671058174169a9", + [ + null, + {} + ] + ], + "state-css-selector-shadow-dom.html": [ + "9d86b5d26035476ac3392be4940b397c51f5f0a7", + [ + null, + { + "timeout": "long" + } + ] + ], + "state-css-selector.html": [ + "8ead8d7809642773cae6086b53d4fc73257dae20", + [ + null, + { + "timeout": "long" + } + ] + ], + "state-pseudo-class.html": [ + "4e2ee0b7790548e0aea57db6602fa970310146ee", + [ + null, + {} + ] + ] }, "throw-on-dynamic-markup-insertion-counter-construct-xml-parser.xhtml": [ "c2913a1312e05beb8f198832a0030a84568157c7", @@ -564773,6 +578273,13 @@ {} ] ], + "upgrade-custom-element-error-event.html": [ + "4803443644e6a443f76ec888060b3465270b8d00", + [ + null, + {} + ] + ], "upgrading-enqueue-reactions.html": [ "8238eee624afee25f19356b4de244713b5047038", [ @@ -564796,53 +578303,6 @@ ] ] }, - "custom-state-pseudo-class": { - "custom-state-set-strong-ref.tentative.html": [ - "8b31f83c7b0aba6d8dcbc4b64e59a73f9d2576d2", - [ - null, - { - "timeout": "long" - } - ] - ], - "idlharness.window.js": [ - "d5d40c54616745c6110078d34c591d6d07a92fb2", - [ - "custom-state-pseudo-class/idlharness.window.html", - { - "script_metadata": [ - [ - "script", - "/resources/WebIDLParser.js" - ], - [ - "script", - "/resources/idlharness.js" - ] - ] - } - ] - ], - "state-css-selector-shadow-dom.tentative.html": [ - "62bc9cf9484ddb856f6ca64466338c41226f832b", - [ - null, - { - "timeout": "long" - } - ] - ], - "state-css-selector.tentative.html": [ - "dd08442e5eb462582d625c98859173b81d78b421", - [ - null, - { - "timeout": "long" - } - ] - ] - }, "delegated-ink": { "delete-presentation-area.html": [ "2408c7eeaf568858a0f6ead7094ec6f05ebd76f3", @@ -564993,9 +578453,72 @@ ] ] }, - "direct-sockets": { - "disabled-by-permissions-policy.https.sub.html": [ - "f2f6e50be0fd2274b7c3b7e453d7661b6dd99daa", + "device-posture": { + "device-posture-change-event.https.html": [ + "eb2fc2d96f81eddceb14810d79d793dd44ddff7d", + [ + null, + { + "testdriver": true + } + ] + ], + "device-posture-clear.https.html": [ + "319cd7266af066a9e7762b44e92ba695ef06410c", + [ + null, + { + "testdriver": true + } + ] + ], + "device-posture-event-listener.https.html": [ + "f4e21c89ccd8876cb102539f88d706353cfe50f3", + [ + null, + { + "testdriver": true + } + ] + ], + "device-posture-media-queries.https.html": [ + "e4dbd2e7d81d3c3fc088283adc6b884ed4109018", + [ + null, + { + "testdriver": true + } + ] + ], + "idlharness.https.window.js": [ + "74ebd11af97835a9973186ff9a61131550bf54c3", + [ + "device-posture/idlharness.https.window.html", + { + "script_metadata": [ + [ + "script", + "/resources/WebIDLParser.js" + ], + [ + "script", + "/resources/idlharness.js" + ] + ] + } + ] + ] + }, + "digital-credentials": { + "digital-credentials-static-methods.tentative.https.html": [ + "5e00861124fd1755f90f4107824c4f3aae3bf5b0", + [ + null, + {} + ] + ], + "identity-get.tentative.https.html": [ + "15597ed594a2409dbdcf6a10fee21d145833fa76", [ null, { @@ -565003,8 +578526,33 @@ } ] ], - "open-securecontext.http.html": [ - "c3a2a42a25bf186534b3addbc19cdae96ed7f956", + "non-fully-active.https.html": [ + "82b87b63d7dea3c7ed9bbd4003f5b58ad07d5831", + [ + null, + { + "testdriver": true + } + ] + ] + }, + "direct-sockets": { + "disabled-by-permissions-policy.https.sub.html": [ + "cc2f58b76a6bdf533057e3d6f45ddac8c91b7b6b", + [ + null, + {} + ] + ], + "tcp_socket.https.html": [ + "10d21ce42b9e6821512d24ba179819a541e9f6dc", + [ + null, + {} + ] + ], + "udp_socket.https.html": [ + "c95d41e2bdec79f5c2fffd7efe49376597c742f0", [ null, {} @@ -565030,6 +578578,15 @@ } ] ], + "display-mode.https.html": [ + "4888535357683d637030712c53ef9050bbf8cd65", + [ + null, + { + "testdriver": true + } + ] + ], "enter-event.https.html": [ "1cac0ff22d79bbd98450b59d8fd8cffdb72ec141", [ @@ -565039,6 +578596,15 @@ } ] ], + "focus-opener.https.html": [ + "880e9d915efbc6db6f0cd1a9412070d871d4db86", + [ + null, + { + "testdriver": true + } + ] + ], "iframe-document-pip.https.html": [ "b978a2d4e6ca2b28db67b9c3f0bed7e9cf4492b5", [ @@ -565057,6 +578623,24 @@ } ] ], + "propagate-user-activation-from-opener.https.html": [ + "7d8b55be774c30eb63b183ff37574f39e85f403c", + [ + null, + { + "testdriver": true + } + ] + ], + "propagate-user-activation-to-opener.https.html": [ + "1f25328a0a90184701c7f95eda5664ab6deba296", + [ + null, + { + "testdriver": true + } + ] + ], "requires-secure-context.html": [ "494bc2ae758582ad7934399af77d92401b24ff86", [ @@ -565100,188 +578684,7 @@ ] }, "document-policy": { - "experimental-features": { - "document-write.tentative.html": [ - "551703c6f56b74856e2b7b465760fc57c2fe95dc", - [ - null, - {} - ] - ], - "layout-animations-disabled-tentative.html": [ - "fd32ace78e21de9bf8a36a8ae57df9a09f47e360", - [ - null, - { - "timeout": "long" - } - ] - ], - "layout-animations-disabled-violation-report-js-tentative.html": [ - "ee7c295156f26733358d62a4046a097450a6b8e2", - [ - null, - {} - ] - ], - "layout-animations-disabled-violation-report-keyframes-tentative.html": [ - "cd9210cc1382ee1f6dc892783bd275c1de7ab669", - [ - null, - {} - ] - ], - "layout-animations-enabled-tentative.html": [ - "19e405496eef72d176d007c93f7262e6a12b3806", - [ - null, - {} - ] - ], - "sync-script.tentative.https.sub.html": [ - "a199a4ed3f9a80c723ebf67551893429d15e86a9", - [ - null, - {} - ] - ], - "unsized-media.tentative.https.sub.html": [ - "d7bb72524902cbd519d892b8206569d7607a120b", - [ - null, - {} - ] - ] - }, - "font-display": { - "report-only-auto.tentative.html": [ - "9eea350de43d3f590db2e7e67f97f3d80fe73507", - [ - null, - {} - ] - ], - "report-only-blank.tentative.html": [ - "628dbccb4dd1577fe8e6c91ee1e3812b142e88bc", - [ - null, - {} - ] - ], - "report-only-block.tentative.html": [ - "a38369531763e1d486237f91edc09eb05867bdb6", - [ - null, - {} - ] - ], - "report-only-fallback.tentative.html": [ - "a03015e47dd7067c0c9449dbb47d6fb4408450c6", - [ - null, - {} - ] - ], - "report-only-optional.tentative.html": [ - "2a4673f15337b24a63bc11a0429fdf603e8f0238", - [ - null, - {} - ] - ], - "report-only-swap.tentative.html": [ - "ad1f437f8cc84d458a9c9dce01eddc8eea617cb8", - [ - null, - {} - ] - ], - "reporting-auto.tentative.html": [ - "01857dd90e3d12217e8c443487b974eb3617b0e8", - [ - null, - {} - ] - ], - "reporting-blank.tentative.html": [ - "6521ae131ad2f5533f252dc3d18bf4768a1dd22a", - [ - null, - {} - ] - ], - "reporting-block.tentative.html": [ - "60403c67a4bee59fadceb8a22413c7ba03ecd6d7", - [ - null, - {} - ] - ], - "reporting-fallback.tentative.html": [ - "a03015e47dd7067c0c9449dbb47d6fb4408450c6", - [ - null, - {} - ] - ], - "reporting-optional.tentative.html": [ - "2a4673f15337b24a63bc11a0429fdf603e8f0238", - [ - null, - {} - ] - ], - "reporting-swap.tentative.html": [ - "53d823f178c2ba6e13eb6f4c53d3b2ce8b875c05", - [ - null, - {} - ] - ] - }, "reporting": { - "document-write-report-only-tentative.html": [ - "bf17807f4a98e8bcbb227de51d69a640b5386c28", - [ - null, - {} - ] - ], - "document-write-reporting-tentative.html": [ - "65a584ce19d9c9acffd3c1cbfd05f0fac754a35a", - [ - null, - {} - ] - ], - "lossy-images-max-bpp-reporting-onload-tentative.html": [ - "85e1349a19f7b8569a78f601952b850cd839bd52", - [ - null, - {} - ] - ], - "lossy-images-max-bpp-reporting-tentative.html": [ - "b6876f4880f4b985cde0e6871f95b03adb0ebde4", - [ - null, - {} - ] - ], - "oversized-images-reporting-tentative.html": [ - "bef7db27a7ad821a5aa57164d407558b669c494f", - [ - null, - {} - ] - ], - "sync-script-reporting.html": [ - "45e1b8fc3c80315b8910c7f882da0358e73002fa", - [ - null, - {} - ] - ], "sync-xhr-report-only.html": [ "a68cf713eebe2fc9d4f4fed04e33a485bfaf6718", [ @@ -565295,39 +578698,32 @@ null, {} ] - ], - "unsized-media-reporting-tentative.html": [ - "47a36436464e031e18f710330106694b7fa0c182", - [ - null, - {} - ] ] }, "required-policy": { "document-policy.html": [ - "aaa8d6920018efd0b3871cc46f201887fdaeec37", + "4beaf3f2164aaa75c05f9d2dfa2e2ace811e7ecf", [ null, {} ] ], "no-document-policy.html": [ - "8a3624440f3358381e3e51f9850dfc9285c4487f", + "00a721e8150db5d43f9d8c9b610c6c3aea84f42b", [ null, {} ] ], "required-document-policy-nested.html": [ - "33de2533a25517943a4ad7c2594d8fe03d1df485", + "0adba51c1999a283943df4f5756f2881255556c8", [ null, {} ] ], "required-document-policy.html": [ - "1058e3582abd836958ecc9d075fc18f76a77f95c", + "f710e6c8f2a28e678a5aa4346004e6cecf83faf5", [ null, {} @@ -565780,6 +579176,13 @@ {} ] ], + "Event-dispatch-throwing-multiple-globals.html": [ + "a56fdf6af865812e387fc36c4fba94e6118b335a", + [ + null, + {} + ] + ], "Event-dispatch-throwing.html": [ "7d1c0d94a0845b5351c50f5255bcff381cee17a6", [ @@ -565996,7 +579399,7 @@ ] ], "EventTarget-constructible.any.js": [ - "b0e7614e625b3de018eb76c90148c7710b6c807f", + "4125d23f0c965066c91d95c9ba83ac711fdabbc3", [ "dom/events/EventTarget-constructible.any.html", {} @@ -566095,7 +579498,7 @@ ] ], "event-global.html": [ - "3e8d25ecb5dd9d8be41315e01a7f43a89d40edb2", + "f70606fb65496a689515f0e01719a86a98c8b371", [ null, {} @@ -566516,6 +579919,15 @@ {} ] ], + "pointer-event-document-move.html": [ + "91e7c36860572a7ab80409c524fc9d17fdc962b2", + [ + null, + { + "testdriver": true + } + ] + ], "preventDefault-during-activation-behavior.html": [ "928740313471656ccb64ca771e72b2b7c199e27f", [ @@ -566584,7 +579996,7 @@ ] ], "overscroll-event-fired-to-scrolled-element.html": [ - "cfc782a809a7e73a9d0a84d938caac6a704d784d", + "be4176df59d6a1d59d90beee839bc5ca6a72f1c5", [ null, { @@ -566629,17 +580041,109 @@ ] ], "scrollend-event-fired-for-programmatic-scroll.html": [ - "c6569e0bebbd9f8bc0fe91415acdbbae482b82dd", + "449aea053512442d063f46355bf48c53686291da", [ - null, + "dom/events/scrolling/scrollend-event-fired-for-programmatic-scroll.html?include=root-scrollBy-auto", { - "testdriver": true, - "timeout": "long" + "testdriver": true + } + ], + [ + "dom/events/scrolling/scrollend-event-fired-for-programmatic-scroll.html?include=root-scrollBy-smooth", + { + "testdriver": true + } + ], + [ + "dom/events/scrolling/scrollend-event-fired-for-programmatic-scroll.html?include=root-scrollTo-auto", + { + "testdriver": true + } + ], + [ + "dom/events/scrolling/scrollend-event-fired-for-programmatic-scroll.html?include=root-scrollTo-smooth", + { + "testdriver": true + } + ], + [ + "dom/events/scrolling/scrollend-event-fired-for-programmatic-scroll.html?include=subframe-scrollBy-auto", + { + "testdriver": true + } + ], + [ + "dom/events/scrolling/scrollend-event-fired-for-programmatic-scroll.html?include=subframe-scrollBy-smooth", + { + "testdriver": true + } + ], + [ + "dom/events/scrolling/scrollend-event-fired-for-programmatic-scroll.html?include=subframe-scrollTo-auto", + { + "testdriver": true + } + ], + [ + "dom/events/scrolling/scrollend-event-fired-for-programmatic-scroll.html?include=subframe-scrollTo-smooth", + { + "testdriver": true + } + ] + ], + "scrollend-event-fired-for-scroll-attr-change.html": [ + "c96db1c749e9da8f448184722d4e7611619097c7", + [ + "dom/events/scrolling/scrollend-event-fired-for-scroll-attr-change.html?include=root-scrollLeft-auto", + { + "testdriver": true + } + ], + [ + "dom/events/scrolling/scrollend-event-fired-for-scroll-attr-change.html?include=root-scrollLeft-smooth", + { + "testdriver": true + } + ], + [ + "dom/events/scrolling/scrollend-event-fired-for-scroll-attr-change.html?include=root-scrollTop-auto", + { + "testdriver": true + } + ], + [ + "dom/events/scrolling/scrollend-event-fired-for-scroll-attr-change.html?include=root-scrollTop-smooth", + { + "testdriver": true + } + ], + [ + "dom/events/scrolling/scrollend-event-fired-for-scroll-attr-change.html?include=subframe-scrollLeft-auto", + { + "testdriver": true + } + ], + [ + "dom/events/scrolling/scrollend-event-fired-for-scroll-attr-change.html?include=subframe-scrollLeft-smooth", + { + "testdriver": true + } + ], + [ + "dom/events/scrolling/scrollend-event-fired-for-scroll-attr-change.html?include=subframe-scrollTop-auto", + { + "testdriver": true + } + ], + [ + "dom/events/scrolling/scrollend-event-fired-for-scroll-attr-change.html?include=subframe-scrollTop-smooth", + { + "testdriver": true } ] ], "scrollend-event-fired-for-scrollIntoView.html": [ - "8782b1dfee623741dd2830d538684ecffe767f18", + "40aa77f4764b6c4301b8aba7221e1e42e768505d", [ null, { @@ -566667,7 +580171,16 @@ ] ], "scrollend-event-fired-to-window.html": [ - "faacf7e572cf1aa0e3fedfb0cdd5c10344e14dff", + "d2fd6f4d3158a5efa40b9621a057ee0bc26f71ab", + [ + null, + { + "testdriver": true + } + ] + ], + "scrollend-event-fires-on-visual-viewport.html": [ + "99a281480ff11f3e71220ba1be7bea8b93623156", [ null, { @@ -566676,7 +580189,7 @@ ] ], "scrollend-event-fires-to-iframe-window.html": [ - "4e53158087018884a82e5086ca6bdaf2d12661be", + "9cd3b421fe9036be62dbf9718521a04a5fed9498", [ null, { @@ -566712,7 +580225,7 @@ ] ], "scrollend-event-not-fired-on-no-scroll.html": [ - "eaa345aee9252602483158e6440ef63fbb515ec9", + "870e15546f54d26c9a6e44d35303cd16ee4f96d7", [ null, { @@ -566720,12 +580233,106 @@ } ] ], + "scrollend-fires-to-text-input.html": [ + "edc75d9121776e1be660112e1257402ddd1ab5d4", + [ + null, + {} + ] + ], "scrollend-with-snap-on-fractional-offset.html": [ "d1f50304add2ac1f1c3fb69a197150951b2e6a0a", [ null, {} ] + ], + "wheel-event-transactions-basic.html": [ + "1b9df69ec77f883685166ef7963b0c8a1911fd73", + [ + "dom/events/scrolling/wheel-event-transactions-basic.html?include=scroll-over-scrollable-child", + { + "testdriver": true + } + ], + [ + "dom/events/scrolling/wheel-event-transactions-basic.html?include=target-basic", + { + "testdriver": true + } + ], + [ + "dom/events/scrolling/wheel-event-transactions-basic.html?include=transaction-not-bound-to-scroll-frame", + { + "testdriver": true + } + ] + ], + "wheel-event-transactions-multiple-action-chains.html": [ + "3b46b2f99a9c994864e53b9ea0d5fa9cbc9921a4", + [ + null, + { + "testdriver": true + } + ] + ], + "wheel-event-transactions-target-display-change.html": [ + "6ca3c78b74cefe8b82735d32d9aee2688f10f208", + [ + "dom/events/scrolling/wheel-event-transactions-target-display-change.html?include=contents", + { + "testdriver": true + } + ], + [ + "dom/events/scrolling/wheel-event-transactions-target-display-change.html?include=none", + { + "testdriver": true + } + ] + ], + "wheel-event-transactions-target-elements.html": [ + "0109b7b6b18b92404868b20c89cc69d8ee142985", + [ + null, + { + "testdriver": true + } + ] + ], + "wheel-event-transactions-target-move.html": [ + "a739d1cd5479ad5c414ff7bb2169911678bea8e1", + [ + null, + { + "testdriver": true + } + ] + ], + "wheel-event-transactions-target-removal.html": [ + "f81efd22e22b92d732a785146b8d37de44f744b4", + [ + null, + { + "testdriver": true + } + ] + ], + "wheel-event-transactions-target-resize.html": [ + "eb7431fca475db37f0ff217f37c132f5b1c251f2", + [ + "dom/events/scrolling/wheel-event-transactions-target-resize.html?include=passive-false", + { + "testdriver": true + } + ], + [ + "dom/events/scrolling/wheel-event-transactions-target-resize.html?include=passive-true", + { + "testdriver": true + } + ] ] }, "shadow-relatedTarget.html": [ @@ -568108,7 +581715,7 @@ ] ], "Node-properties.html": [ - "10f92e7d7e857f71a4edde1f8e5e5811fe55e21a", + "5fc2c65a8fe718266fba727314729352f3d694cf", [ null, {} @@ -568627,6 +582234,291 @@ {} ] ], + "insertion-removing-steps": { + "Node-append-form-and-script-from-fragment.tentative.html": [ + "10351d1645dda6aadf39cfb071f420ea5515870a", + [ + null, + {} + ] + ], + "Node-append-meta-referrer-and-script-from-fragment.tentative.html": [ + "e80e3b45b61d993f6ae1a5e7e916c2decb663a59", + [ + null, + {} + ] + ], + "Node-appendChild-script-and-button-from-div.tentative.html": [ + "91f09ae50056661a9aa8553ca75fd6a5dc1482fb", + [ + null, + {} + ] + ], + "Node-appendChild-script-and-custom-from-fragment.tentative.html": [ + "23a050f37e748583bb3090d9cb0b22f90d4abd51", + [ + null, + {} + ] + ], + "Node-appendChild-script-and-default-style-meta-from-fragment.tentative.html": [ + "fa4a987751dd02abbc541474f992024c31ed07d5", + [ + null, + {} + ] + ], + "Node-appendChild-script-and-div-from-fragment.tentative.html": [ + "b154c1bf4fbf99b5b9ab94ceca7d496604309181", + [ + null, + {} + ] + ], + "Node-appendChild-script-and-iframe.tentative.html": [ + "68b288f24d8aaf1384495f63db57a1892d2bcbf8", + [ + null, + {} + ] + ], + "Node-appendChild-script-and-source-from-fragment.tentative.html": [ + "7f93ac43bd81b2b1579e970dcf5c4bf25141f2ca", + [ + null, + {} + ] + ], + "Node-appendChild-script-and-style.tentative.html": [ + "d3365f8a5ee9545a04a134983100570c6fdb0567", + [ + null, + {} + ] + ], + "Node-appendChild-script-in-script.tentative.html": [ + "39c439332366816dc8b6b7dce3873648dde26a6c", + [ + null, + {} + ] + ], + "Node-appendChild-script-with-mutation-observer-takeRecords.html": [ + "33598e640821086bb4ade5a381f161cf7a3aebe9", + [ + null, + {} + ] + ], + "Node-appendChild-text-and-script-in-style.tentative.html": [ + "850af680a0d2cfa1e25ef9f12fe42a8863f83221", + [ + null, + {} + ] + ], + "Node-appendChild-text-in-script.tentative.html": [ + "4d6543695cf1ef7f3a76efb9fb80a375328c4c0f", + [ + null, + {} + ] + ], + "Node-appendChild-three-scripts-from-fragment.tentative.html": [ + "a7b7405b64b794dc6981d2ce7977d7c27e7deb74", + [ + null, + {} + ] + ], + "Node-appendChild-three-scripts.tentative.html": [ + "6ffa35515e765b0a34f4a7656bd2ea55badf44aa", + [ + null, + {} + ] + ], + "blur-event.window.js": [ + "fdca02dcdab50b8ac570b74a242d5f167d65ee09", + [ + "dom/nodes/insertion-removing-steps/blur-event.window.html", + {} + ] + ], + "insertion-removing-steps-iframe.window.js": [ + "60c2bec0c8aa213b1bfa1d75c99ca1745cb9871c", + [ + "dom/nodes/insertion-removing-steps/insertion-removing-steps-iframe.window.html", + {} + ] + ], + "insertion-removing-steps-script.window.js": [ + "a1be3e1dd3e79a75d4f2218c2ad1e0fbabe62849", + [ + "dom/nodes/insertion-removing-steps/insertion-removing-steps-script.window.html", + {} + ] + ], + "script-does-not-run-on-child-removal.window.js": [ + "ed5bfbaa60116c4994ab7602d022d53154365716", + [ + "dom/nodes/insertion-removing-steps/script-does-not-run-on-child-removal.window.html", + {} + ] + ] + }, + "moveBefore": { + "tentative": { + "Node-moveBefore.html": [ + "8a1db6f93bcf80404298fafb8db5c8c6bd552db1", + [ + null, + {} + ] + ], + "continue-css-animation-left.html": [ + "8c7f73e3c933ce6f6a9749281707c62e0a090d7d", + [ + null, + {} + ] + ], + "continue-css-animation-transform.html": [ + "e7a285893aa0e4a538ec29af944f1d0761d93f0a", + [ + null, + {} + ] + ], + "continue-css-transition-left-pseudo.html": [ + "fa51b168879f4ef12f7521a9a4e1a1492d340815", + [ + null, + {} + ] + ], + "continue-css-transition-left.html": [ + "2b8e04b26e469b38bb8d7c3750be9b54025f3060", + [ + null, + {} + ] + ], + "continue-css-transition-transform-pseudo.html": [ + "d02c72561c1101ce9474cc60b9295e46c9e499df", + [ + null, + {} + ] + ], + "continue-css-transition-transform.html": [ + "f09edca144978948e490eeccbc5a0cb915c8ab58", + [ + null, + {} + ] + ], + "css-animation-commit-styles.html": [ + "86bb7c33e4261ec04740824775249fdd7cbdc9b2", + [ + null, + {} + ] + ], + "css-transition-cross-document.html": [ + "f3c8fafbfa8c5b002ba309e3333a57536473d266", + [ + null, + {} + ] + ], + "css-transition-cross-shadow.html": [ + "145f40ba50469364ca11ea23963ad97070b4f39a", + [ + null, + {} + ] + ], + "css-transition-to-disconnected-document.html": [ + "537edfe9b617029c7a5780a84fd40078eea0748b", + [ + null, + {} + ] + ], + "css-transition-trigger.html": [ + "0cb5608a695e000dc54b9fa2f73c49fc16ebcd98", + [ + null, + {} + ] + ], + "focus-preserve.html": [ + "a00e8b77880697a51d4418fc15637b1dcef6914b", + [ + null, + {} + ] + ], + "fullscreen-preserve.html": [ + "810eeac9af90f80e18ed149e875b3656f81b3a1d", + [ + null, + { + "testdriver": true + } + ] + ], + "iframe-document-preserve.window.js": [ + "4f9fa7540f69067549872615d92a05ed783f18f3", + [ + "dom/nodes/moveBefore/tentative/iframe-document-preserve.window.html", + { + "script_metadata": [ + [ + "script", + "/common/get-host-info.sub.js" + ] + ] + } + ] + ], + "moveBefore-shadow-inside.html": [ + "239b08ee95b76d9626001756c59cf9ac9e9da634", + [ + null, + {} + ] + ], + "pointer-events.html": [ + "a5d34fe40051d934a0b2792b8b7a3c9132cdf5c5", + [ + null, + { + "testdriver": true + } + ] + ], + "popover-preserve.html": [ + "5487bd4aec51e37eb0fb54e3e63d8a510b0f923c", + [ + null, + {} + ] + ], + "selection-preserve.html": [ + "04b81c9a0563894c68ad498b49352e7de9e01049", + [ + null, + { + "testdriver": true + } + ] + ] + } + }, "prepend-on-Document.html": [ "1d6d43a46392650796cbcaae413f7ad630633a57", [ @@ -568672,8 +582564,15 @@ }, "observable": { "tentative": { + "idlharness.html": [ + "9a3842c4e67f76140957ed69ab89227eff0e76f7", + [ + null, + {} + ] + ], "observable-constructor.any.js": [ - "2f3f6a0be5a35e74df525fd46cc4e909b01d59a7", + "109ed284db0445163bd4979172f4cb523855eb66", [ "dom/observable/tentative/observable-constructor.any.html", {} @@ -568684,14 +582583,25 @@ ] ], "observable-constructor.window.js": [ - "d2b597c819054f2b4c186d24f1e908bf5d46d2a2", + "878fc456c102873b0985fbfb9b34a98ce9ed6438", [ "dom/observable/tentative/observable-constructor.window.html", {} ] ], + "observable-drop.any.js": [ + "4b15fedfd33b36090929dd6704285fc3fc6d90ed", + [ + "dom/observable/tentative/observable-drop.any.html", + {} + ], + [ + "dom/observable/tentative/observable-drop.any.worker.html", + {} + ] + ], "observable-event-target.any.js": [ - "0f7ace2acc0794a96dae575f33a23a47cb287d8b", + "9f5d5541a039c4dce5ebdebc8b9b17c3a130c61f", [ "dom/observable/tentative/observable-event-target.any.html", {} @@ -568700,33 +582610,219 @@ "dom/observable/tentative/observable-event-target.any.worker.html", {} ] + ], + "observable-event-target.window.js": [ + "fa3ae1d3b020e1f626e130fb62dbd9ff820c526e", + [ + "dom/observable/tentative/observable-event-target.window.html", + {} + ] + ], + "observable-every.any.js": [ + "74a344b8f78559ad9d23247a4d2dc87cf095320d", + [ + "dom/observable/tentative/observable-every.any.html", + {} + ], + [ + "dom/observable/tentative/observable-every.any.worker.html", + {} + ] + ], + "observable-filter.any.js": [ + "0a2aa36658499f30ee35d03f28536f122387d93c", + [ + "dom/observable/tentative/observable-filter.any.html", + {} + ], + [ + "dom/observable/tentative/observable-filter.any.worker.html", + {} + ] + ], + "observable-find.any.js": [ + "0e09060fc5ac199f976f952b50e048546627b850", + [ + "dom/observable/tentative/observable-find.any.html", + {} + ], + [ + "dom/observable/tentative/observable-find.any.worker.html", + {} + ] + ], + "observable-first.any.js": [ + "d4738d7478b1eac573dd8a604bd5c033e0193030", + [ + "dom/observable/tentative/observable-first.any.html", + {} + ], + [ + "dom/observable/tentative/observable-first.any.worker.html", + {} + ] + ], + "observable-flatMap.any.js": [ + "7cbfa6cb604393f5e716cb75fcab5a581983a11e", + [ + "dom/observable/tentative/observable-flatMap.any.html", + {} + ], + [ + "dom/observable/tentative/observable-flatMap.any.worker.html", + {} + ] + ], + "observable-forEach.any.js": [ + "d0948b295e8d11018b0a83a2148e7e182c891606", + [ + "dom/observable/tentative/observable-forEach.any.html", + {} + ], + [ + "dom/observable/tentative/observable-forEach.any.worker.html", + {} + ] + ], + "observable-forEach.window.js": [ + "71c2e1730393807c7cb4ca2e55ef7099d9afa837", + [ + "dom/observable/tentative/observable-forEach.window.html", + {} + ] + ], + "observable-from.any.js": [ + "900362d8c3aceef35596815999caae5eb6123bf9", + [ + "dom/observable/tentative/observable-from.any.html", + {} + ], + [ + "dom/observable/tentative/observable-from.any.worker.html", + {} + ] + ], + "observable-inspect.any.js": [ + "2b67dd9f3d3a830028643cc1bce4e881b687fc16", + [ + "dom/observable/tentative/observable-inspect.any.html", + {} + ], + [ + "dom/observable/tentative/observable-inspect.any.worker.html", + {} + ] + ], + "observable-last.any.js": [ + "064a781cada985de1e2f5eeae41898cbff1aad5b", + [ + "dom/observable/tentative/observable-last.any.html", + {} + ], + [ + "dom/observable/tentative/observable-last.any.worker.html", + {} + ] + ], + "observable-map.any.js": [ + "a61c818bc16539f57e246126daaed64e0537638b", + [ + "dom/observable/tentative/observable-map.any.html", + {} + ], + [ + "dom/observable/tentative/observable-map.any.worker.html", + {} + ] + ], + "observable-map.window.js": [ + "06bf2e26b544184ba0df858fbfb0ff3adf9daa85", + [ + "dom/observable/tentative/observable-map.window.html", + {} + ] + ], + "observable-some.any.js": [ + "b692610df329c601d38b3407eac1b242b62f9b05", + [ + "dom/observable/tentative/observable-some.any.html", + {} + ], + [ + "dom/observable/tentative/observable-some.any.worker.html", + {} + ] + ], + "observable-switchMap.any.js": [ + "577ce2b748cd0c668a1d305d92462f47c8a894e7", + [ + "dom/observable/tentative/observable-switchMap.any.html", + {} + ], + [ + "dom/observable/tentative/observable-switchMap.any.worker.html", + {} + ] + ], + "observable-take.any.js": [ + "8350d0214ccc9d686cb4f8238e42e624aa158734", + [ + "dom/observable/tentative/observable-take.any.html", + {} + ], + [ + "dom/observable/tentative/observable-take.any.worker.html", + {} + ] + ], + "observable-takeUntil.any.js": [ + "f2e99b8cbec88eeda799e46d695e888143f9cbf6", + [ + "dom/observable/tentative/observable-takeUntil.any.html", + {} + ], + [ + "dom/observable/tentative/observable-takeUntil.any.worker.html", + {} + ] + ], + "observable-takeUntil.window.js": [ + "e4906d5f165c103c564a1b4900ddeb338faea95e", + [ + "dom/observable/tentative/observable-takeUntil.window.html", + {} + ] + ], + "observable-toArray.any.js": [ + "582bc67453ecbe03d39759f17d661485f5b688d3", + [ + "dom/observable/tentative/observable-toArray.any.html", + {} + ], + [ + "dom/observable/tentative/observable-toArray.any.worker.html", + {} + ] ] } }, "parts": { "basic-dom-part-declarative-brace-syntax-innerhtml.tentative.html": [ - "58db5cd04ff3d6b211f0f84552203fa03aa61404", + "932c0a392a36a5c61ae9da72a99855549e7bc882", [ null, {} ] ], "basic-dom-part-declarative-brace-syntax.tentative.html": [ - "001ac24a445d890ec47fbf9d81cb11ec10b2ffe4", - [ - null, - {} - ] - ], - "basic-dom-part-declarative-pi-syntax.tentative.html": [ - "f6460353949a9c4984dccacc36e54c05bad17f53", + "70fc471bc61204f8dadf1370654f35f121f2348f", [ null, {} ] ], "basic-dom-part-objects.tentative.html": [ - "d7834fe69b0118eac16a372dd7b9c14cdd57e575", + "f2199362c4d734b24d3f5edc4a2a0c8aec5ea32f", [ null, {} @@ -568779,7 +582875,7 @@ ] ], "Range-cloneContents.html": [ - "6064151f62d44307a081e735f1d688c4cafae718", + "92d8c0f9d2e9a4259aa097b1cd8bad98bfea7d15", [ null, { @@ -568856,7 +582952,7 @@ ] ], "Range-deleteContents.html": [ - "40dc400125075e5f0422faa56705266a0c2652b7", + "6f695ae7bf9bbfc834b3a4d986996da4332296bc", [ null, { @@ -568882,6 +582978,17 @@ } ] ], + "Range-in-shadow-after-the-shadow-removed.html": [ + "54ea8aabeab7337e15fd51bfb121b7a73066d6b1", + [ + "dom/ranges/Range-in-shadow-after-the-shadow-removed.html?mode=closed", + {} + ], + [ + "dom/ranges/Range-in-shadow-after-the-shadow-removed.html?mode=open", + {} + ] + ], "Range-insertNode.html": [ "b0a9d43f982dd621738d019cd881b02f02cd4a36", [ @@ -569048,7 +583155,7 @@ ] ], "Range-surroundContents.html": [ - "c9d47fcbad0dee917be90468a9e844d6c51c4b78", + "a656db0049145685f1a94c7836ce03512819464a", [ null, { @@ -569439,6 +583546,34 @@ {} ] ], + "evaluator-cross-realm.tentative.html": [ + "5bc1128658c4f5a89574f9ad9a2030562ea4fbec", + [ + null, + {} + ] + ], + "evaluator-different-document.tentative.html": [ + "8092eef46245ee18f2095033320a844ac78e69c4", + [ + null, + {} + ] + ], + "expression-cross-realm.tentative.html": [ + "f75a949e730eb0fb43956d75fd900cbf99f97b07", + [ + null, + {} + ] + ], + "expression-different-document.tentative.html": [ + "6e35d8b02670b1129ee52575fdf1d7e48f6880b8", + [ + null, + {} + ] + ], "fn-concat.html": [ "fe160966aa7983191e81ffa65f5955c86afe7bb9", [ @@ -569454,7 +583589,7 @@ ] ], "fn-lang.html": [ - "c7c102945d070a4ea65cae0e30ea6ec64bb82c95", + "1fbd0a2ee4d419275c6d78f54e3425135cf838a1", [ null, {} @@ -569585,7 +583720,7 @@ "dpub-aam": { "role": { "roles.html": [ - "b9840976e1f001d182540cadfbe88c3c7c4d0403", + "62e33b95fa786e007371e1de29a25a260a79206d", [ null, { @@ -569614,7 +583749,7 @@ "editing": { "edit-context": { "edit-context-basics.tentative.html": [ - "0ed345806136b9c31d1c4f0d6b304b67419d7646", + "0011270c812fdd2ccea80699f0729ef2f7fc214e", [ null, {} @@ -569639,7 +583774,7 @@ ] ], "edit-context-input.tentative.html": [ - "3285453cc2c55be4ec2eb6bf303d8a834197da8a", + "45fd1613faccb8b34f55f1a2783e9db35596d2d1", [ null, { @@ -569749,6 +583884,15 @@ } ] ], + "delete-in-inline-editing-host-under-shadow-root.html": [ + "c1a825a6452f31305d8677bccfb2804ba92dfd0d", + [ + null, + { + "testdriver": true + } + ] + ], "delete-in-last-definition-list-item-when-parent-list-is-editing-host.html": [ "e068f9bcd22a654a4eeed4c59c920c9cc353c70e", [ @@ -569797,6 +583941,74 @@ } ] ], + "delete-in-shadow-hosted-in-body.html": [ + "4b02719ea0246b2ca9a7a1f7dd15326b591a3eab", + [ + null, + { + "testdriver": true + } + ] + ], + "delete-without-unwrapping-first-line-of-child-block.html": [ + "99f8f058888d00428d6225af609e0565451d87c8", + [ + "editing/other/delete-without-unwrapping-first-line-of-child-block.html?method=BackspaceKey&lineBreak=br", + { + "testdriver": true, + "timeout": "long" + } + ], + [ + "editing/other/delete-without-unwrapping-first-line-of-child-block.html?method=BackspaceKey&lineBreak=preformat", + { + "testdriver": true, + "timeout": "long" + } + ], + [ + "editing/other/delete-without-unwrapping-first-line-of-child-block.html?method=DeleteKey&lineBreak=br", + { + "testdriver": true, + "timeout": "long" + } + ], + [ + "editing/other/delete-without-unwrapping-first-line-of-child-block.html?method=DeleteKey&lineBreak=preformat", + { + "testdriver": true, + "timeout": "long" + } + ], + [ + "editing/other/delete-without-unwrapping-first-line-of-child-block.html?method=deleteCommand&lineBreak=br", + { + "testdriver": true, + "timeout": "long" + } + ], + [ + "editing/other/delete-without-unwrapping-first-line-of-child-block.html?method=deleteCommand&lineBreak=preformat", + { + "testdriver": true, + "timeout": "long" + } + ], + [ + "editing/other/delete-without-unwrapping-first-line-of-child-block.html?method=forwardDeleteCommand&lineBreak=br", + { + "testdriver": true, + "timeout": "long" + } + ], + [ + "editing/other/delete-without-unwrapping-first-line-of-child-block.html?method=forwardDeleteCommand&lineBreak=preformat", + { + "testdriver": true, + "timeout": "long" + } + ] + ], "delete.html": [ "b9bd1437e3721f1353a9df6bde155f2f2b8ae95a", [ @@ -569953,6 +584165,15 @@ {} ] ], + "fire-selection-change-on-deleting-empty-element.html": [ + "747700530669127fa47bef6e01bf9543bd4fe9f3", + [ + null, + { + "testdriver": true + } + ] + ], "formatblock-preserving-selection.tentative.html": [ "d10e80b4ea67aed4a0884c04c337d4f52eacc622", [ @@ -570082,6 +584303,13 @@ } ] ], + "html-text-copy-paste-of-anchor-with-href-in-content-editable.html": [ + "5724b59ada4bb34fe416cb0031643e1fd4973667", + [ + null, + {} + ] + ], "indent-preserving-selection.tentative.html": [ "b3fae41faf06b4b1a62ead587bdbbd9c253cded1", [ @@ -571070,6 +585298,13 @@ {} ] ], + "inserttext-at-end-of-block-when-br-always-block.html": [ + "922b8bd1c86230c1284fc0f14ce2031ab345c1ee", + [ + null, + {} + ] + ], "join-different-white-space-style-left-line-and-right-paragraph.html": [ "48fa581115228567660771aa126f133f444159bc", [ @@ -572542,6 +586777,33 @@ {} ] ], + "merge-span-with-style-after-backspace-having-contenteditable.html": [ + "d375a909744cc67cf19facdb761291d4604c01b5", + [ + null, + { + "testdriver": true + } + ] + ], + "merge-span-with-style-after-forwarddelete-having-contenteditable.html": [ + "723951cca672911e03ee24cf6c50b407b6e49d6e", + [ + null, + { + "testdriver": true + } + ] + ], + "merge-span-with-style-after-pressing-enter-followed-by-backspace-in-contenteditable-div.html": [ + "6a8e8c8d832395089807db7047ea6ad54c78f6ae", + [ + null, + { + "testdriver": true + } + ] + ], "move-inserted-node-from-DOMNodeInserted-during-exec-command-insertHTML.html": [ "41e012a62e9617f372f85d0a0cedefe8ad42fbd6", [ @@ -572549,6 +586811,15 @@ {} ] ], + "no-beforeinput-when-no-selection.html": [ + "098a95863a606393502d4e2fc517fcb8ad144d35", + [ + null, + { + "testdriver": true + } + ] + ], "non-html-document.html": [ "ffd2e6f59464c56fac6694856978192ed03a199c", [ @@ -572573,6 +586844,20 @@ } ] ], + "paste-in-list-with-inline-style.tentative.html": [ + "97710e805dd635f586cd2fafe6a443bd663122f4", + [ + null, + {} + ] + ], + "plain-text-copy-paste-of-paragraph-ending-with-non-layed-out-content.html": [ + "4b053e37706c2ed0e044caf5166f1f07fe59fa7e", + [ + null, + {} + ] + ], "recursive-exec-command-calls.tentative.html": [ "60a3b03099f358cf88e8e10c67347d9322cc9124", [ @@ -572625,6 +586910,15 @@ {} ] ], + "selection-change-not-fired-if-selection-set-to-root.html": [ + "39e8b46e69b2c469b4b5d4ed40314bd67a2b3524", + [ + null, + { + "testdriver": true + } + ] + ], "setting-value-of-textcontrol-immediately-after-hidden.html": [ "f8a867f0782ae6d0066326aa58aec431a46e67db", [ @@ -573051,7 +587345,7 @@ ] ], "formatblock.html": [ - "f15f2c03dacd22e4aa999db055736bdab728fa06", + "03b5a6512737b5dafc944aa837386e05bac5e03d", [ "editing/run/formatblock.html?1-1000", { @@ -573077,7 +587371,13 @@ } ], [ - "editing/run/formatblock.html?4001-last", + "editing/run/formatblock.html?4001-5000", + { + "timeout": "long" + } + ], + [ + "editing/run/formatblock.html?5001-last", { "timeout": "long" } @@ -573213,7 +587513,7 @@ ] ], "insertparagraph.html": [ - "56b5335ea7eb53715b0840286681c2687bb0dd76", + "ef67bcfe8ba046f34e577199e7aa678a37610014", [ "editing/run/insertparagraph.html?1-1000", { @@ -573251,7 +587551,13 @@ } ], [ - "editing/run/insertparagraph.html?6001-last", + "editing/run/insertparagraph.html?6001-7000", + { + "timeout": "long" + } + ], + [ + "editing/run/insertparagraph.html?7001-last", { "timeout": "long" } @@ -573622,7 +587928,7 @@ ] ], "undo-redo.html": [ - "391349eeef464c2324025f120a9876515bb5ca7d", + "0cb20754d7188065f37eccd91761d76cae68db38", [ null, { @@ -574449,7 +588755,7 @@ ] ], "encodeInto.any.js": [ - "69d7089006ec38cde3d2911fd67f03c5c5a7f69a", + "9ea36d23d08cca0d1c380015d415de2abec95f2a", [ "encoding/encodeInto.any.html", { @@ -582266,7 +596572,7 @@ ] ], "sharedarraybuffer.https.html": [ - "2496edacb89ee8854e2996c3a24b18b33de4fd12", + "2cda3e5fb1cf98b0500f8cd67101dc8894f056a0", [ null, {} @@ -586073,6 +600379,15 @@ ] }, "event-timing": { + "TapToStopFling.html": [ + "df309d6584c744a608080b8a5be6243160531d53", + [ + null, + { + "testdriver": true + } + ] + ], "auxclick.html": [ "b88328e2aa36715e8165c6eb277be49f7d189655", [ @@ -586083,7 +600398,7 @@ ] ], "buffered-and-duration-threshold.html": [ - "4a7a63f59afccf79e14fce3d543078938e7c6dab", + "5f8d27c034570112f67fa84d69a42b01d6b960d7", [ null, { @@ -586101,7 +600416,7 @@ ] ], "click-timing.html": [ - "24bad0aedca88c029e0fb1b4be7cb54d65cd7ba2", + "f2b6922f5e585069932d6d2e71a9f1f9bed7ce65", [ null, { @@ -586128,7 +600443,7 @@ ] ], "crossiframe.html": [ - "df4d94f09aef1d569be608546941d1e6b7c874ae", + "c307028c41392919fd7cfe32cbb6ca350c6480b8", [ null, { @@ -586210,8 +600525,17 @@ } ] ], + "first-input-interactionid-key.html": [ + "1991fe2cb884aac0de39ceba9e6e9120cfd37c3d", + [ + null, + { + "testdriver": true + } + ] + ], "first-input-interactionid-tap.html": [ - "f5e080eb1652e55870b6ae32ae55870f450a01ad", + "17d9a5e9812b8cfc196a11e0a9fa9246cc3d531f", [ null, { @@ -586370,6 +600694,52 @@ } ] ], + "interactionid-keyboard-event-simulated-click-button-space.html": [ + "d3ab5437f8e533a32fad8d327e5e1dd58d210574", + [ + null, + { + "testdriver": true + } + ] + ], + "interactionid-keyboard-event-simulated-click-checkbox-space.html": [ + "3dd8e21e784d7d8970e2fdfba4d4e146ce32f968", + [ + null, + { + "testdriver": true + } + ] + ], + "interactionid-keyboard-event-simulated-click-link-enter.html": [ + "6945d2ff771976ea1a17ba66f427e51d840268d5", + [ + null, + { + "testdriver": true + } + ] + ], + "interactionid-keypress.html": [ + "a6f200996714f473056a69e849837fffb1792dca", + [ + null, + { + "testdriver": true, + "timeout": "long" + } + ] + ], + "interactionid-orphan-pointerup.html": [ + "9c4a0ecf584e83f3efa531c19be82aecfaa42917", + [ + null, + { + "testdriver": true + } + ] + ], "interactionid-press-key-as-input.html": [ "b1e725b5c6f76d9eb3d413e679bfdeb331d1b0b2", [ @@ -586444,6 +600814,15 @@ } ] ], + "modal-dialog-interrupt-paint.html": [ + "011311a03a37df4e33e6b3a67d9c07ea2776843c", + [ + null, + { + "testdriver": true + } + ] + ], "mousedown.html": [ "35a07faeb1bcaaadb0ca606f8948004b45a115ae", [ @@ -586592,7 +600971,7 @@ ] ], "shadow-dom-null-target.html": [ - "89587312c89ba20578538a37ed30ee3904a5058b", + "0872e4e8faf0c6583005d42be055d5e66198b78f", [ null, { @@ -587064,21 +601443,10 @@ } ] ], - "eventsource-request-cancellation.any.window.js": [ + "eventsource-request-cancellation.window.js": [ "1cee9b742ea284f415d375bbdc19d8262ccdd3c6", [ - "eventsource/eventsource-request-cancellation.window.any.html", - { - "script_metadata": [ - [ - "title", - "EventSource: request cancellation" - ] - ] - } - ], - [ - "eventsource/eventsource-request-cancellation.window.any.worker.html", + "eventsource/eventsource-request-cancellation.window.html", { "script_metadata": [ [ @@ -587703,21 +602071,10 @@ } ] ], - "request-credentials.any.window.js": [ + "request-credentials.window.js": [ "d7c554aa4a2c48520c064e33a305e7058683eb6d", [ - "eventsource/request-credentials.window.any.html", - { - "script_metadata": [ - [ - "title", - "EventSource: credentials" - ] - ] - } - ], - [ - "eventsource/request-credentials.window.any.worker.html", + "eventsource/request-credentials.window.html", { "script_metadata": [ [ @@ -587728,21 +602085,10 @@ } ] ], - "request-redirect.any.window.js": [ + "request-redirect.window.js": [ "3788dd8450256c166d838b0e013135f7690e24ed", [ - "eventsource/request-redirect.window.any.html", - { - "script_metadata": [ - [ - "title", - "EventSource: redirect" - ] - ] - } - ], - [ - "eventsource/request-redirect.window.any.worker.html", + "eventsource/request-redirect.window.html", { "script_metadata": [ [ @@ -587916,7 +602262,7 @@ ] ], "feature-policy-frame-policy-timing.https.sub.html": [ - "c78d16132bc6ab1dc787fef4901f215d1377272d", + "79e42b30cc4cd886079bcb349ae1ea5389b20cdb", [ null, {} @@ -588215,6 +602561,522 @@ ] } }, + "fedcm": { + "fedcm-abort.https.html": [ + "0f03bff832f800c9ce69de69003c88bbbd471fca", + [ + null, + { + "testdriver": true + } + ] + ], + "fedcm-after-abort.https.html": [ + "3c2f981e82fab32d20303367289180c20e8eb71f", + [ + null, + { + "testdriver": true + } + ] + ], + "fedcm-authz": { + "fedcm-continue-on-disallowed.https.html": [ + "fcda3a3dd591c694d341f5a04fa42ce667ea1ad6", + [ + null, + { + "testdriver": true + } + ] + ], + "fedcm-continue-on-with-account.https.html": [ + "5bd8ef34fe83e53c03894fcc48134f5aea01a286", + [ + null, + { + "testdriver": true + } + ] + ], + "fedcm-continue-on.https.html": [ + "c7da5384af43effd31d67b4e6f2ee3643a3f9bbe", + [ + null, + { + "testdriver": true + } + ] + ], + "fedcm-disclosure-text-shown.https.html": [ + "513ef258e18a685e33c7f976c8a16cd2cd594b74", + [ + null, + { + "testdriver": true + } + ] + ], + "fedcm-userinfo-after-resolve.https.html": [ + "e1244df1c8ee01b407053c1cb1a3c3e9e5a09512", + [ + null, + { + "testdriver": true + } + ] + ], + "resolve-after-preventsilentaccess.https.html": [ + "7223a722fe2fb4e533acb3e4777a53669fdb1d5c", + [ + null, + { + "testdriver": true + } + ] + ] + }, + "fedcm-auto-reauthn-without-approved-clients.https.html": [ + "fb93cb632db09dfd3332ac6008f1f40253361ea6", + [ + null, + { + "testdriver": true + } + ] + ], + "fedcm-auto-selected-flag.https.html": [ + "d06aba73bc1de9a9b6e238695587c1ff47480de3", + [ + null, + { + "testdriver": true + } + ] + ], + "fedcm-basic.https.html": [ + "3d20f4cfb74d5a356b920d224415f622a67d446f", + [ + null, + { + "testdriver": true + } + ] + ], + "fedcm-button-and-other-account": { + "fedcm-button-mode-auto-selected-flag.tentative.https.html": [ + "786c63ca5e4ece5c4ea77ca4b60234741baf5c1a", + [ + null, + { + "testdriver": true + } + ] + ], + "fedcm-button-mode-basics.tentative.https.html": [ + "918f72432107e6dcb1b8825bc48501e434252323", + [ + null, + { + "testdriver": true + } + ] + ], + "fedcm-button-mode-priority.tentative.https.html": [ + "b71e84db47e458f42931cfcbcc6e0100cd1d40d3", + [ + null, + { + "testdriver": true + } + ] + ], + "fedcm-use-other-account-button-flow.tentative.https.html": [ + "7a3f266b24b937fae03c9886184ada6e8b27c960", + [ + null, + { + "testdriver": true + } + ] + ], + "fedcm-use-other-account.tentative.https.html": [ + "66311740124a2dd6aff0c8f90aff68f289724cd6", + [ + null, + { + "testdriver": true + } + ] + ] + }, + "fedcm-client-metadata-not-cached.https.html": [ + "79171bf6343287fa42c0aaa1c53a2d4e69899425", + [ + null, + { + "testdriver": true + } + ] + ], + "fedcm-context.https.html": [ + "f235437b789aee4dff2ecb639cd85f9c16f663a9", + [ + null, + { + "testdriver": true + } + ] + ], + "fedcm-cross-origin-policy.https.html": [ + "1e3b4c71a839b5f02f19fe68639cd95c0f32c8fc", + [ + null, + { + "testdriver": true + } + ] + ], + "fedcm-csp.https.html": [ + "c9a2456e4d082c6c77942d76dc0fee039015161b", + [ + null, + { + "testdriver": true + } + ] + ], + "fedcm-disconnect-errors.https.html": [ + "4d5fb0a457c7acd0d5c23818f4623826324f7336", + [ + null, + { + "testdriver": true + } + ] + ], + "fedcm-disconnect-iframe.sub.https.html": [ + "1587ef5f8be1d4ba75074b82cd758824669fd93a", + [ + null, + { + "testdriver": true + } + ] + ], + "fedcm-disconnect.sub.https.html": [ + "2ea2d4a2599751cad941552964c700ced2f1b7cc", + [ + null, + { + "testdriver": true + } + ] + ], + "fedcm-domainhint.https.html": [ + "20b4569a05e67d47a2aba9913bd330ceef98aef4", + [ + null, + { + "testdriver": true + } + ] + ], + "fedcm-endpoint-redirects.https.html": [ + "71dbce03267e86e00fd90e1b69abf186b0fdd3a3", + [ + null, + { + "testdriver": true + } + ] + ], + "fedcm-error-basic.https.html": [ + "8a2d39cabaaa37a95f050cc84af2fe2c786ec825", + [ + null, + { + "testdriver": true + } + ] + ], + "fedcm-identity-assertion-nocors.https.html": [ + "79da95d50061d5274811b067a5e1be116edb680b", + [ + null, + { + "testdriver": true + } + ] + ], + "fedcm-iframe.https.html": [ + "2c63a9973b2908a35508ffafaa576bd74cb781a0", + [ + null, + { + "testdriver": true + } + ] + ], + "fedcm-login-status": { + "confirm-idp-login.https.html": [ + "0f8df72b615b5fadb9e17decd69c670652d06d21", + [ + null, + { + "testdriver": true + } + ] + ], + "cross-origin-status.https.html": [ + "dc0ff948904d7319ed7aef67734055054139630a", + [ + null, + { + "testdriver": true + } + ] + ], + "logged-out.https.html": [ + "51c7c1a710b5e3d9cca1783d031350a5e98b6d4a", + [ + null, + { + "testdriver": true + } + ] + ] + }, + "fedcm-login-status-unknown.https.html": [ + "d542524c884790fe6a957ffa789d8336284df252", + [ + null, + { + "testdriver": true + } + ] + ], + "fedcm-loginhint.https.html": [ + "fe35007a87dc06a9062e6a81fcd6558f102782b7", + [ + null, + { + "testdriver": true + } + ] + ], + "fedcm-manifest-not-in-list.https.html": [ + "087af384b153afb5204cb0f3dc575bed57055335", + [ + null, + { + "testdriver": true + } + ] + ], + "fedcm-multi-idp": { + "fedcm-multi-idp-abort.https.html": [ + "712a7b6a3494cbff372410f2517d8d9b14c5d49e", + [ + null, + { + "testdriver": true + } + ] + ], + "fedcm-multi-idp-basic.https.html": [ + "d855e0ad8dcf4eb86ce4bf3016337540bfafd45c", + [ + null, + { + "testdriver": true + } + ] + ], + "fedcm-multi-idp-context.https.html": [ + "1bc3eb1f56295fef925c0d4bf0ea2aab46ed53ab", + [ + null, + { + "testdriver": true + } + ] + ], + "fedcm-multi-idp-mediation-optional.https.html": [ + "1a819efb314fa12eb0087a85682953f6a1705b29", + [ + null, + { + "testdriver": true + } + ] + ], + "fedcm-multi-idp-mediation-silent.https.html": [ + "d47d4898c7d72b1acde2e5486902ce5bdf966c93", + [ + null, + { + "testdriver": true + } + ] + ] + }, + "fedcm-no-login-url.https.html": [ + "94592d2dbfbfb9f308f4aa97a198816119a36502", + [ + null, + { + "testdriver": true + } + ] + ], + "fedcm-nonce-is-optional.https.html": [ + "dafd6c9e983053b50c12b56ce2ef483c61006c77", + [ + null, + { + "testdriver": true + } + ] + ], + "fedcm-not-observed-by-service-worker.https.html": [ + "a6537add10612c26ccb36e6b118a98c2b04d1b6b", + [ + null, + { + "testdriver": true + } + ] + ], + "fedcm-opaque-rp-origin.https.html": [ + "228646e0fee4387261ff8e30db38cdf3cbefcaa9", + [ + null, + { + "testdriver": true + } + ] + ], + "fedcm-pending-call-rejected.https.html": [ + "bb9f885a8a1b9b4ad231774f6936fc99c701b255", + [ + null, + { + "testdriver": true + } + ] + ], + "fedcm-pending-disconnect.https.html": [ + "1b60acc10880ddf359aeeb5974f2f93e82df641c", + [ + null, + { + "testdriver": true + } + ] + ], + "fedcm-pending-userinfo.https.html": [ + "5d3ffe221dabb23fd422b49d09d82dd5b6b74e8f", + [ + null, + { + "testdriver": true + } + ] + ], + "fedcm-register": { + "fedcm-no-registered-idps.https.html": [ + "7be2d397e6871961b347e89ca5aebc050a60c7ae", + [ + null, + { + "testdriver": true + } + ] + ] + }, + "fedcm-reject-invalid-responses.https.html": [ + "f450d568249ec7d7f2ef6f1229d5781344cfb5c5", + [ + null, + { + "testdriver": true + } + ] + ], + "fedcm-returning-account-auto-reauthn.https.html": [ + "c9fe10a485fbe2dee7508f6d69801f67ca2c6208", + [ + null, + { + "testdriver": true + } + ] + ], + "fedcm-same-site-none.https.html": [ + "e4a9e3c41463411e158aa4eb0f92d958dcade4a2", + [ + null, + { + "testdriver": true + } + ] + ], + "fedcm-store.https.html": [ + "d1e6ef464c4f3eb8e2d4118d1a5e2dc498410e05", + [ + null, + { + "testdriver": true + } + ] + ], + "fedcm-token-returned-with-http-error.https.html": [ + "7c7687f00f344dd42639a8be3590545a93adf882", + [ + null, + { + "testdriver": true + } + ] + ], + "fedcm-too-many-disconnect-calls.https.html": [ + "eb87c2377a916b68e1ebf189a0de7d8af1c191df", + [ + null, + { + "testdriver": true + } + ] + ], + "fedcm-userinfo.https.html": [ + "ea0db0b69f9a5cc6459e2259f3c5272876b72b9e", + [ + null, + { + "testdriver": true + } + ] + ], + "lfedcm-identity.create-store-collect.tentative.sub.https.html": [ + "9cc7278d375e38d6c176192174d9becfbce459c6", + [ + null, + { + "testdriver": true + } + ] + ], + "lfedcm-identity.discovery.tentative.sub.https.html": [ + "2d5e8e8db476e226722da1f5b041165e9b560e3e", + [ + null, + { + "testdriver": true + } + ] + ] + }, "fenced-frame": { "add-fencedframe-to-detached-iframe.https.html": [ "37c0cd6cba832d73183b7c898d7c4319b47e111d", @@ -588223,8 +603085,19 @@ {} ] ], + "allow-attribute-src.https.html": [ + "1cf53a1db3c904afcc8141f9106f6834ad6918f1", + [ + "fenced-frame/allow-attribute-src.https.html?type=fencedframe", + {} + ], + [ + "fenced-frame/allow-attribute-src.https.html?type=iframe", + {} + ] + ], "ancestor-throttle.https.html": [ - "9b6dfb0d3051e3bd17c3886008ef3f2b085549b7", + "679bb7881327ccda0abfb1d28e22b60a378c72d4", [ null, { @@ -588249,7 +603122,7 @@ ] ], "automatic-beacon-anchor-click-handler.https.html": [ - "c3161fd5c315a652a8f83285c89f6c8c19851a91", + "7488e2f3004573127b4002ee9574b5d5ae73ebdc", [ null, { @@ -588258,7 +603131,7 @@ ] ], "automatic-beacon-click-handler.https.html": [ - "0fe3fbb93356da7e70f5f63f4565829a99c11e1f", + "fa6690c0a92bf2d929cff74de28069586e113039", [ null, { @@ -588267,7 +603140,7 @@ ] ], "automatic-beacon-component-ad.https.html": [ - "132b1234df1b0d36568cd1d9e1298f7244132f5b", + "55711c4f08b5332efd1e88a3daa3dae07e46932f", [ null, { @@ -588276,7 +603149,7 @@ ] ], "automatic-beacon-cross-origin-false.https.html": [ - "ccd8634973425aa7fee7e189fcf37335c3a37bb3", + "93c937ab2f3f254b632db2499d0cee0a0e1731bd", [ null, { @@ -588285,7 +603158,7 @@ ] ], "automatic-beacon-cross-origin-navigation.https.html": [ - "5a191174cfee6868f238864ddb6736c13a6acaf9", + "7e974ad63e4423ba9195df631f0430cfa7f6bcc0", [ null, { @@ -588294,7 +603167,7 @@ ] ], "automatic-beacon-cross-origin-no-data.https.html": [ - "1b5710035d91df6d9ce85c1d8f490eeea2474611", + "16b1d0ac26460f0f246c1098f28d313977823b3f", [ null, { @@ -588303,7 +603176,7 @@ ] ], "automatic-beacon-cross-origin-no-opt-in.https.html": [ - "6d43a73bc7c7e3bbe1f3bafc425160b788724fc7", + "6f1ebee449846e234a6cd8e66508871e30a1bc72", [ null, { @@ -588312,7 +603185,7 @@ ] ], "automatic-beacon-no-destination.https.html": [ - "c3fa3d657fa31da0774751ef37f5a690d0abbd35", + "8456b316bef2bf38d6b3b34a52ccc10c3f2a931e", [ null, { @@ -588321,7 +603194,7 @@ ] ], "automatic-beacon-no-opt-in.https.html": [ - "5a815a81389fb93e657bb6f429442303d6e29448", + "cedfff1a944cdb7cf1b885f86b37c5cc84dce088", [ null, { @@ -588330,7 +603203,7 @@ ] ], "automatic-beacon-shared-storage.https.html": [ - "093e55bca908285f8c5651e0798085b43c5e9a84", + "56ca40b9e928cadfe3bece598b7b719036b745e7", [ null, { @@ -588339,7 +603212,7 @@ ] ], "automatic-beacon-two-events-clear.https.html": [ - "f59fda5fca9b22eb9ef9e31955a436d1b6e13ae5", + "3533cf58c00aa98e2cda4c0ff8e708e35cfd1e6e", [ null, { @@ -588348,7 +603221,7 @@ ] ], "automatic-beacon-two-events-persist.https.html": [ - "4da4f89e6e5c175f78dcc28c9de21db257f59d2d", + "a0c872d16c8e0d5972986633d8f19badb8dd3f77", [ null, { @@ -588357,7 +603230,7 @@ ] ], "automatic-beacon-unfenced-top.https.html": [ - "945e80921d8e1d7f4496a91fde695e7eae7b59fe", + "0a595c52607214b5e7e06dcd82221ccabde2b335", [ null, { @@ -588366,7 +603239,7 @@ ] ], "automatic-beacon-use-ancestor-data.https.html": [ - "39df6f5c73f405d0e927fc9e24450cea806560d2", + "c5169d4a47ad6cd53fcdb3a96f35d8f30b19e4a3", [ null, { @@ -588412,7 +603285,7 @@ ] ], "can-load-api.https.html": [ - "f9996dd5e9a7628b1ec61abe80bc47db3a632f52", + "3b47c87ac0abc4e0c20e777043361b2cb586183a", [ null, {} @@ -588519,20 +603392,43 @@ {} ] ], + "csp-allowed-transparent.https.html": [ + "66259b3a1c12d30681d96f7550420691c4d91384", + [ + null, + {} + ] + ], "csp-allowed.https.html": [ - "8c002bc8a9d03955d8ac7ff021fd1b326a16ad18", + "4b2fadd59e4b8566fcb1f864b611773b5db01a48", [ null, {} ] ], - "csp-blocked.https.html": [ - "3826fdd7f42e325e04152a194c98780f576252b3", + "csp-ancestors.https.sub.html": [ + "da6c73b9dbecabaf6fbecfbfff74719d39983dcc", [ null, {} ] ], + "csp-blocked-transparent.https.html": [ + "16a3d94fce3b70c81844352d3bcba428e61cf8b9", + [ + null, + {} + ] + ], + "csp-blocked.https.html": [ + "197c62493780fe04314be4045dfcd15aeb552195", + [ + null, + { + "timeout": "long" + } + ] + ], "csp-fenced-frame-src-allowed.https.html": [ "cf603c29a690ff41d9f84aa8a2bc4164b7f792cd", [ @@ -588561,13 +603457,6 @@ {} ] ], - "csp-transparent-url.https.html": [ - "c1c815d49e44f6bb3723be935201f91b5cfbbf47", - [ - null, - {} - ] - ], "csp.https.html": [ "6daa6a96e83b05648207cf587133eaa4b7448214", [ @@ -588590,28 +603479,35 @@ ] ], "default-enabled-features-allow-all.https.html": [ - "00044a4c85664956e3ce2ab10856390b3315cdd9", + "5d38d7a71050541d7717d0893e91857735529830", [ null, {} ] ], "default-enabled-features-allow-none.https.html": [ - "d44cb5bca77d59d194bba1116003b137cb594307", + "1c7d0579eb8e9f659c84a30e01953bcf660016ba", [ null, {} ] ], "default-enabled-features-allow-self.https.html": [ - "c212a6f44c307cbc0b91dd21fdadcdd162e35acd", + "3724a4795eead17be1c2448fed5e68a2b6267fac", + [ + null, + {} + ] + ], + "default-enabled-features-allow-unspecified.https.html": [ + "69e9a157cf70cceb232a818bb30f9d62fe111a2b", [ null, {} ] ], "default-enabled-features-attribute-allow.https.html": [ - "3c3831f0157de1235bead0c2c6f69170b1dc26da", + "d1e857cf29302c9d8b24a56579e6b465b3df9c60", [ null, {} @@ -588653,7 +603549,7 @@ ] ], "deprecated-config-apis.https.html": [ - "11cd247f23dc79a35025c21d96f000d216f93d1a", + "e746336f472b02a91cc144da18fe7f6f8b76083f", [ null, {} @@ -588714,7 +603610,7 @@ ] ], "document-activeelement.https.html": [ - "3ac1fd866fc58c7bc957054976cf70baa92eacf6", + "4f5bbb67655fe1d87bff78f6830e3ac12d8ce750", [ null, { @@ -588800,6 +603696,76 @@ {} ] ], + "fence-report-event-cross-origin-content-initiated.https.html": [ + "bdd5d4c26103c34388ef18f951bd407a1a932176", + [ + null, + {} + ] + ], + "fence-report-event-cross-origin-nested-urn-iframe.https.html": [ + "ea4a4c1fd82e8343f37fefe2139c382afaff87dc", + [ + null, + {} + ] + ], + "fence-report-event-cross-origin-nested.https.html": [ + "8b8070efed1e42647dbed452718cfc3daa93841a", + [ + null, + {} + ] + ], + "fence-report-event-cross-origin-no-embedder-opt-in.https.html": [ + "422224ce2d40a2973f0c3f090997a30a025cf1a4", + [ + null, + {} + ] + ], + "fence-report-event-cross-origin-no-subframe-opt-in.https.html": [ + "229226d60f29056c61fcd603d27b521347e5b5ba", + [ + null, + {} + ] + ], + "fence-report-event-cross-origin-urn-iframe-content-initiated.https.html": [ + "e4971dcc97f216fcdad394ca9d83dcd7d3d14ad6", + [ + null, + {} + ] + ], + "fence-report-event-cross-origin-urn-iframe-no-embedder-opt-in.https.html": [ + "6795af2f42eafa2991b035d657be51d7b3f902ca", + [ + null, + {} + ] + ], + "fence-report-event-cross-origin-urn-iframe-no-subframe-opt-in.https.html": [ + "1a701e250951ed6a3b041bcead9682d663a2b8c3", + [ + null, + {} + ] + ], + "fence-report-event-cross-origin-urn-iframe.https.html": [ + "d62a46d5109c801063836c7807acaf7d4b146488", + [ + null, + {} + ] + ], + "fence-report-event-cross-origin.sub.https.html": [ + "a54143cdb1444cba633ed18e677a9b5d805f3462", + [ + null, + {} + ] + ], "fence-report-event-destination-url.https.html": [ "6c0bdd82dcd0c74e5d455f1a7c3443bdd0ac0b7b", [ @@ -588807,6 +603773,13 @@ {} ] ], + "fence-report-event-sub-fencedframe.https.html": [ + "b3516acf4bd4524e6caa11f9f43a0a97891d8082", + [ + null, + {} + ] + ], "fence-report-event.https.html": [ "ce217c7763a33b50b87bdf7d67750ad4d46b4e2b", [ @@ -588864,7 +603837,7 @@ ] ], "get-nested-configs.https.html": [ - "da77f94a76302ac540b3d4f10ba3d9702da4703f", + "2876e52d148833b097f68aff50a3916faed2d773", [ null, {} @@ -589043,7 +604016,7 @@ ] ], "navigator-keyboard-layout-map.https.html": [ - "03fbc062e14057fb6e04096ef3692e2ac319d525", + "28cdbc848e22918ba273ea8b2e757d52f2d7a6f3", [ null, {} @@ -589095,6 +604068,74 @@ } ] ], + "notify-event-iframe.https.html": [ + "1f8e1b8a322d3a8c2b63d2083c7d13c0b1f09491", + [ + null, + { + "testdriver": true, + "timeout": "long" + } + ] + ], + "notify-event-invalid.https.html": [ + "7695f49e0b606eb938bc6e32d5cdb9070b740b0f", + [ + null, + { + "testdriver": true, + "timeout": "long" + } + ] + ], + "notify-event-nested-fenced-frames.https.html": [ + "d435cbc009d51ed958fd537009663e1ada289575", + [ + null, + { + "testdriver": true + } + ] + ], + "notify-event-prevent-caching.https.html": [ + "a3824aa411052c9e182a9ca4f5543a3e3d8a6e6e", + [ + null, + { + "testdriver": true, + "timeout": "long" + } + ] + ], + "notify-event-success.https.html": [ + "76ed9abbfa05cabdd6540363d0af4dfcc72900c5", + [ + null, + { + "testdriver": true + } + ] + ], + "notify-event-top-level-navigation.https.html": [ + "da3435dc607b08b2ebbd6e5af64172d12db19165", + [ + null, + { + "testdriver": true, + "timeout": "long" + } + ] + ], + "notify-event-transient-user-activation.https.html": [ + "04be865fe5bce4d9cf640f240da8c852f817f39b", + [ + null, + { + "testdriver": true, + "timeout": "long" + } + ] + ], "opaque-ad-sizes-exact-size.https.html": [ "b23d3ab0d7165d3b6aefccdfa7ba53971262717e", [ @@ -589113,6 +604154,13 @@ } ] ], + "parse-from-string-sandboxed-iframe.https.html": [ + "01eae33ab02c88e0cb9d31561a9c1279a7b2a1b2", + [ + null, + {} + ] + ], "payment-handler.https.html": [ "36e5e50726ea285438a7ce5f965bcc7ad474d820", [ @@ -589214,14 +604262,28 @@ ] ], "report-event-reserved-event.https.html": [ - "0a541bb0c5c8f3e19c609b7e2411c89fea103764", + "6baa3cedeab9a39ffc2f29176df104e52f36e66a", + [ + null, + {} + ] + ], + "report-event-sandboxed-iframe.https.html": [ + "7298f39e6945255de783362396fc89f9754b6ef0", + [ + null, + {} + ] + ], + "report-event.https.html": [ + "af9da69d29c941a594fc713f80254120ce464031", [ null, {} ] ], "resize-lock-input.https.html": [ - "261c9a737eff4b85723214b7f4735b8fe9423a65", + "c72075ac250440df3616c48c6bc85dd3d0ad5f51", [ null, { @@ -589387,7 +604449,16 @@ ] ], "setting-null-config-navigates-to-about-blank.https.html": [ - "2595fd64c922b1e16220628fe1fa87fdf7c74f5f", + "c8322dab1996ccabc5ee980fd63bc52c57df9d05", + [ + null, + { + "timeout": "long" + } + ] + ], + "shared-workers.https.html": [ + "0e08d6857fe24ee85b93cea9450d6df779650677", [ null, {} @@ -589484,6 +604555,13 @@ {} ] ], + "webrtc-peer-connection.https.html": [ + "fdb42be46f821007d62330c863a693b7815dd53b", + [ + null, + {} + ] + ], "window-close.https.html": [ "b581a0324c594890198c85126bc9905e79574673", [ @@ -589505,6 +604583,15 @@ {} ] ], + "window-open-user-activation.https.html": [ + "d0387a87e29f6f1b4c63c8ef85023085e2f55371", + [ + null, + { + "timeout": "long" + } + ] + ], "window-outer-dimensions.https.html": [ "c6a64ef193ae7e17f83030fe2659eb435fe0fdf0", [ @@ -589601,7 +604688,7 @@ ] ], "general.any.js": [ - "3727bb42afe49ba8b52b8f8b5ac7856028c2828c", + "139f08947b15aca34fd1909e74504d929837755b", [ "fetch/api/abort/general.any.html", { @@ -589790,7 +604877,7 @@ ] ], "serviceworker-intercepted.https.html": [ - "ed9bc973e80d17e152d0dc895c0fe6db78452061", + "1867e205bb6ee16a998425ea17c9ead712a4c5ae", [ null, {} @@ -590331,7 +605418,7 @@ ] ], "keepalive.any.js": [ - "899d41d676a4286cba49743cf06368545507194c", + "55225e00aa061309102757a24e3d0729e81aac05", [ "fetch/api/basic/keepalive.any.html", { @@ -590341,16 +605428,12 @@ "window" ], [ - "title", - "Fetch API: keepalive handling" - ], - [ - "script", - "/resources/testharness.js" + "timeout", + "long" ], [ - "script", - "/resources/testharnessreport.js" + "title", + "Fetch API: keepalive handling" ], [ "script", @@ -590364,7 +605447,8 @@ "script", "../resources/keepalive-helper.js" ] - ] + ], + "timeout": "long" } ] ], @@ -590671,7 +605755,7 @@ ] ], "request-headers.any.js": [ - "ac54256e4c6a6377414d3a24dbe1fe34c8bb664d", + "f6a7fe1494bb61d6d7c7e52be070954828ed9e52", [ "fetch/api/basic/request-headers.any.html", { @@ -590867,7 +605951,7 @@ ] ], "request-upload.any.js": [ - "9168aa11541f1c64b3a3ff901ee255253aa283fd", + "0c4813bb5317d4b5a711acf29ae54d16a584a88e", [ "fetch/api/basic/request-upload.any.html", { @@ -590962,7 +606046,7 @@ ] ], "request-upload.h2.any.js": [ - "eedc2bf6a769d0ba84171eeecac659ba5ea2b501", + "68122278ccd2b1009de7697f3a092308d5695ce1", [ "fetch/api/basic/request-upload.h2.any.html", { @@ -591562,7 +606646,7 @@ }, "body": { "formdata.any.js": [ - "e25035923c1f9e93042889a914f0253a01eb4a15", + "6733fa0ed70afe5b20935c6b5cd3050ca28787b7", [ "fetch/api/body/formdata.any.html", {} @@ -591743,7 +606827,7 @@ ] ], "cors-keepalive.any.js": [ - "08229f9cfc762e94c9140eaaa08d0b155c4a8e5e", + "f54bf4f9b602f62cb0b982c7a3b41b8702b69e26", [ "fetch/api/cors/cors-keepalive.any.html", { @@ -591760,14 +606844,6 @@ "title", "Fetch API: keepalive handling" ], - [ - "script", - "/resources/testharness.js" - ], - [ - "script", - "/resources/testharnessreport.js" - ], [ "script", "/common/utils.js" @@ -592488,6 +607564,55 @@ ] ] }, + "crashtests": { + "huge-fetch.any.js": [ + "1b09925d855f3f514f922782e474dcb5a596a37a", + [ + "fetch/api/crashtests/huge-fetch.any.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ] + ] + } + ], + [ + "fetch/api/crashtests/huge-fetch.any.serviceworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ] + ] + } + ], + [ + "fetch/api/crashtests/huge-fetch.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ] + ] + } + ], + [ + "fetch/api/crashtests/huge-fetch.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ] + ] + } + ] + ] + }, "credentials": { "authentication-basic.any.js": [ "31ccc3869775fe0be5b5e403fdc3304054b399a5", @@ -592537,7 +607662,7 @@ ] ], "authentication-redirection.any.js": [ - "16656b5435a18bfd5a04f3aac4709d2361276335", + "5a15507437808f24f627da53432994ea5792325e", [ "fetch/api/credentials/authentication-redirection.any.html", { @@ -593792,7 +608917,7 @@ ] ], "redirect-keepalive.any.js": [ - "beda8bb8e780d555e47b53514520ccfd8ce18df9", + "c9ac13f3dbb27d67af3c55ca2adc82628c71bc80", [ "fetch/api/redirect/redirect-keepalive.any.html", { @@ -593802,16 +608927,12 @@ "window" ], [ - "title", - "Fetch API: keepalive handling" - ], - [ - "script", - "/resources/testharness.js" + "timeout", + "long" ], [ - "script", - "/resources/testharnessreport.js" + "title", + "Fetch API: keepalive handling" ], [ "script", @@ -593825,12 +608946,13 @@ "script", "../resources/keepalive-helper.js" ] - ] + ], + "timeout": "long" } ] ], "redirect-keepalive.https.any.js": [ - "6765ecac6d75914f2fd8b216e1deba6439e74171", + "54e4bc31fa1bd0c770ce0ece37035fcae24274e0", [ "fetch/api/redirect/redirect-keepalive.https.any.html", { @@ -593843,14 +608965,6 @@ "title", "Fetch API: keepalive handling" ], - [ - "script", - "/resources/testharness.js" - ], - [ - "script", - "/resources/testharnessreport.js" - ], [ "script", "/common/utils.js" @@ -594123,7 +609237,7 @@ ] ], "redirect-referrer-override.any.js": [ - "56e55d79e141fd90124c2d5ea4cef419ee8a9cbd", + "337f8dd06983e144389512ecd594bb04def869de", [ "fetch/api/redirect/redirect-referrer-override.any.html", { @@ -594571,7 +609685,7 @@ ] }, "request-bad-port.any.js": [ - "b0684d4be0f83fd52d67bae373b37dfc3df7714d", + "915063bab56a19fd09d02a450fbf9b15774437c3", [ "fetch/api/request/request-bad-port.any.html", { @@ -595394,8 +610508,19 @@ {} ] ], + "request-constructor-init-body-override.any.js": [ + "27bb991871a8a183436ab14613147aba6fc8c231", + [ + "fetch/api/request/request-constructor-init-body-override.any.html", + {} + ], + [ + "fetch/api/request/request-constructor-init-body-override.any.worker.html", + {} + ] + ], "request-consume-empty.any.js": [ - "034a86041a74f58c4d0310ef809f6170b09dbb05", + "0bf9672a7950570d8bee99fdec4307429b5ae786", [ "fetch/api/request/request-consume-empty.any.html", { @@ -595458,7 +610583,7 @@ ] ], "request-consume.any.js": [ - "aff5d65244a15e9fb7cbded180bcdb55ef65be2b", + "b4cbe7457d20a9f46f6e4ca8cba92b92db49b465", [ "fetch/api/request/request-consume.any.html", { @@ -596124,6 +611249,38 @@ ] ] }, + "response-arraybuffer-realm.window.js": [ + "19a5dfa5ff6e5d4cb2951919a6f4ba086e5056da", + [ + "fetch/api/response/response-arraybuffer-realm.window.html", + { + "script_metadata": [ + [ + "title", + "realm of Response arrayBuffer()" + ] + ] + } + ] + ], + "response-blob-realm.any.js": [ + "1cc51fc71b6529e5defc0738a6580f78024a8d06", + [ + "fetch/api/response/response-blob-realm.any.html", + { + "script_metadata": [ + [ + "global", + "window" + ], + [ + "title", + "realm of Response bytes()" + ] + ] + } + ] + ], "response-body-read-task-handling.html": [ "64b0755666168d7cac9808fe1593a01889a19bff", [ @@ -596218,7 +611375,7 @@ ] ], "response-clone.any.js": [ - "f5cda75149e2638a5faff7473c306db1de822b82", + "c0c844948db00bf38eddb6a1f33e834258f6e416", [ "fetch/api/response/response-clone.any.html", { @@ -596297,7 +611454,7 @@ ] ], "response-consume-empty.any.js": [ - "0fa85ecbcb2d7b9093307b189c392aa9c528d9c7", + "a5df356258658957137d09ef38da6d71fd7ed488", [ "fetch/api/response/response-consume-empty.any.html", { @@ -596446,7 +611603,7 @@ ] ], "response-error-from-stream.any.js": [ - "118eb7d5cb398c1a27aefb2e8c2358a851c3bfaf", + "33cad40e757bdeec058620f05272faa1fe39706d", [ "fetch/api/response/response-error-from-stream.any.html", { @@ -597024,7 +612181,7 @@ ] ], "response-stream-bad-chunk.any.js": [ - "d3d92e16772d10a8c91ee42d4c6bcaf0d4cc4fa0", + "8e83cd190873a904a366b8eb6cdcc44229f742c0", [ "fetch/api/response/response-stream-bad-chunk.any.html", { @@ -597656,159 +612813,526 @@ ] } }, - "connection-pool": { - "network-partition-key.html": [ - "60a784cd84ed92bbcd34aae050289a2676ed45bf", + "compression-dictionary": { + "dictionary-clear-site-data-cache.tentative.https.html": [ + "c8bcf7fdf1299519e51f84568b984310706710f2", [ null, { "timeout": "long" } ] - ] - }, - "content-encoding": { - "bad-gzip-body.any.js": [ - "17bc1261a3f5c36a9797c5a171990c522cfe7598", + ], + "dictionary-clear-site-data-cookies.tentative.https.html": [ + "aa1673e88c80922553ff59cb2114d35d6ff37942", [ - "fetch/content-encoding/bad-gzip-body.any.html", + null, { - "script_metadata": [ - [ - "global", - "window,worker" - ] - ] + "timeout": "long" } - ], + ] + ], + "dictionary-clear-site-data-storage.tentative.https.html": [ + "22747eb65657e53a4900769fa77d9f35c70093a7", [ - "fetch/content-encoding/bad-gzip-body.any.serviceworker.html", + null, { - "script_metadata": [ - [ - "global", - "window,worker" - ] - ] + "timeout": "long" } - ], + ] + ], + "dictionary-decompression.tentative.https.html": [ + "33aeb4466bae82e70757f6f86e83602b103bdb50", [ - "fetch/content-encoding/bad-gzip-body.any.sharedworker.html", + null, { - "script_metadata": [ - [ - "global", - "window,worker" - ] - ] + "timeout": "long" } - ], + ] + ], + "dictionary-fetch-with-link-element.tentative.https.html": [ + "d465ceb3d85357c80fd92edf61328e88fb9acf0b", [ - "fetch/content-encoding/bad-gzip-body.any.worker.html", + null, { - "script_metadata": [ - [ - "global", - "window,worker" - ] - ] + "timeout": "long" } ] ], - "big-gzip-body.https.any.js": [ - "b5d62c98045c053001552e657ce258850447d69a", + "dictionary-fetch-with-link-header.tentative.https.html": [ + "007067d71ad43a5b05eb25f53badd080bd85f4e1", [ - "fetch/content-encoding/big-gzip-body.https.any.html", + null, { - "script_metadata": [ - [ - "global", - "window,worker" - ] - ] + "timeout": "long" } - ], + ] + ], + "dictionary-registration.tentative.https.html": [ + "f0782aff3bd3e640e62463f2aa8154f993b73d35", [ - "fetch/content-encoding/big-gzip-body.https.any.serviceworker.html", + null, { - "script_metadata": [ - [ - "global", - "window,worker" - ] - ] + "timeout": "long" } - ], + ] + ] + }, + "connection-pool": { + "network-partition-key.html": [ + "60a784cd84ed92bbcd34aae050289a2676ed45bf", [ - "fetch/content-encoding/big-gzip-body.https.any.sharedworker.html", + null, { - "script_metadata": [ - [ - "global", - "window,worker" - ] - ] + "timeout": "long" } + ] + ] + }, + "content-encoding": { + "br": { + "bad-br-body.https.any.js": [ + "43ea90a336cd04df56b4f29f57182d2860481938", + [ + "fetch/content-encoding/br/bad-br-body.https.any.html", + { + "script_metadata": [ + [ + "global", + "window" + ] + ] + } + ] ], - [ - "fetch/content-encoding/big-gzip-body.https.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,worker" + "big-br-body.https.any.js": [ + "1427dd730264f4f6cfc202226ea7be6843a495e0", + [ + "fetch/content-encoding/br/big-br-body.https.any.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ] ] - ] - } + } + ], + [ + "fetch/content-encoding/br/big-br-body.https.any.serviceworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ] + ] + } + ], + [ + "fetch/content-encoding/br/big-br-body.https.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ] + ] + } + ], + [ + "fetch/content-encoding/br/big-br-body.https.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ] + ] + } + ] + ], + "br-body.https.any.js": [ + "2c2dbb5d293220d59d4becc02bce670b6082d231", + [ + "fetch/content-encoding/br/br-body.https.any.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ] + ] + } + ], + [ + "fetch/content-encoding/br/br-body.https.any.serviceworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ] + ] + } + ], + [ + "fetch/content-encoding/br/br-body.https.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ] + ] + } + ], + [ + "fetch/content-encoding/br/br-body.https.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ] + ] + } + ] ] - ], - "gzip-body.any.js": [ - "37758b7d91775fad80cc8297470a4ba18f8928b8", - [ - "fetch/content-encoding/gzip-body.any.html", - { - "script_metadata": [ - [ - "global", - "window,worker" + }, + "gzip": { + "bad-gzip-body.any.js": [ + "17bc1261a3f5c36a9797c5a171990c522cfe7598", + [ + "fetch/content-encoding/gzip/bad-gzip-body.any.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ] ] - ] - } + } + ], + [ + "fetch/content-encoding/gzip/bad-gzip-body.any.serviceworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ] + ] + } + ], + [ + "fetch/content-encoding/gzip/bad-gzip-body.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ] + ] + } + ], + [ + "fetch/content-encoding/gzip/bad-gzip-body.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ] + ] + } + ] ], - [ - "fetch/content-encoding/gzip-body.any.serviceworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker" + "big-gzip-body.https.any.js": [ + "b5d62c98045c053001552e657ce258850447d69a", + [ + "fetch/content-encoding/gzip/big-gzip-body.https.any.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ] ] - ] - } + } + ], + [ + "fetch/content-encoding/gzip/big-gzip-body.https.any.serviceworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ] + ] + } + ], + [ + "fetch/content-encoding/gzip/big-gzip-body.https.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ] + ] + } + ], + [ + "fetch/content-encoding/gzip/big-gzip-body.https.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ] + ] + } + ] ], - [ - "fetch/content-encoding/gzip-body.any.sharedworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker" + "gzip-body.any.js": [ + "37758b7d91775fad80cc8297470a4ba18f8928b8", + [ + "fetch/content-encoding/gzip/gzip-body.any.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ] ] - ] - } + } + ], + [ + "fetch/content-encoding/gzip/gzip-body.any.serviceworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ] + ] + } + ], + [ + "fetch/content-encoding/gzip/gzip-body.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ] + ] + } + ], + [ + "fetch/content-encoding/gzip/gzip-body.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ] + ] + } + ] + ] + }, + "zstd": { + "bad-zstd-body.https.any.js": [ + "3f32e4dfba786511d845c3e913e59b818d0f292b", + [ + "fetch/content-encoding/zstd/bad-zstd-body.https.any.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ] + ] + } + ], + [ + "fetch/content-encoding/zstd/bad-zstd-body.https.any.serviceworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ] + ] + } + ], + [ + "fetch/content-encoding/zstd/bad-zstd-body.https.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ] + ] + } + ], + [ + "fetch/content-encoding/zstd/bad-zstd-body.https.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ] + ] + } + ] ], - [ - "fetch/content-encoding/gzip-body.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,worker" + "big-window-zstd-body.tentative.https.any.js": [ + "c1dc9449567b68a884a3c81f37a5efbec6d2fef0", + [ + "fetch/content-encoding/zstd/big-window-zstd-body.tentative.https.any.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ] ] - ] - } + } + ], + [ + "fetch/content-encoding/zstd/big-window-zstd-body.tentative.https.any.serviceworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ] + ] + } + ], + [ + "fetch/content-encoding/zstd/big-window-zstd-body.tentative.https.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ] + ] + } + ], + [ + "fetch/content-encoding/zstd/big-window-zstd-body.tentative.https.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ] + ] + } + ] + ], + "big-zstd-body.https.any.js": [ + "6835f6e425520e3abdd7fe671920cd4be29d3c36", + [ + "fetch/content-encoding/zstd/big-zstd-body.https.any.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ] + ] + } + ], + [ + "fetch/content-encoding/zstd/big-zstd-body.https.any.serviceworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ] + ] + } + ], + [ + "fetch/content-encoding/zstd/big-zstd-body.https.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ] + ] + } + ], + [ + "fetch/content-encoding/zstd/big-zstd-body.https.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ] + ] + } + ] + ], + "zstd-body.https.any.js": [ + "869238574322e0b3ddec073ad0b1f66135b563be", + [ + "fetch/content-encoding/zstd/zstd-body.https.any.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ] + ] + } + ], + [ + "fetch/content-encoding/zstd/zstd-body.https.any.serviceworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ] + ] + } + ], + [ + "fetch/content-encoding/zstd/zstd-body.https.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ] + ] + } + ], + [ + "fetch/content-encoding/zstd/zstd-body.https.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ] + ] + } + ] ] - ] + } }, "content-length": { "api-and-duplicate-headers.any.js": [ @@ -598338,19 +613862,11 @@ }, "fetch-later": { "activate-after.tentative.https.window.js": [ - "08750dd3fe4762644f09c52be6b5f827c8db127e", + "e62da0508a0dfb7e46e57179534ac9895ee23b93", [ "fetch/fetch-later/activate-after.tentative.https.window.html", { "script_metadata": [ - [ - "script", - "/resources/testharness.js" - ], - [ - "script", - "/resources/testharnessreport.js" - ], [ "script", "/common/dispatcher/dispatcher.js" @@ -598373,28 +613889,17 @@ ], [ "script", - "/pending-beacon/resources/pending_beacon-helper.js" + "/fetch/fetch-later/resources/fetch-later-helper.js" ] ] } ] ], "basic.tentative.https.window.js": [ - "bf92716681ef0fbaf386c487909283a9c750096e", + "37f72ab89e5bebfc8dae8b14fae5ff2488374647", [ "fetch/fetch-later/basic.tentative.https.window.html", - { - "script_metadata": [ - [ - "script", - "/resources/testharness.js" - ], - [ - "script", - "/resources/testharnessreport.js" - ] - ] - } + {} ] ], "basic.tentative.https.worker.js": [ @@ -598463,19 +613968,11 @@ ] }, "iframe.tentative.https.window.js": [ - "62505bc81d99e6f6b6c3b93b33f7c8963e0ffe17", + "4f2610863604f0a235524a80f7988212355e5ab9", [ "fetch/fetch-later/iframe.tentative.https.window.html", { "script_metadata": [ - [ - "script", - "/resources/testharness.js" - ], - [ - "script", - "/resources/testharnessreport.js" - ], [ "script", "/common/utils.js" @@ -598486,26 +613983,18 @@ ], [ "script", - "/pending-beacon/resources/pending_beacon-helper.js" + "/fetch/fetch-later/resources/fetch-later-helper.js" ] ] } ] ], "new-window.tentative.https.window.js": [ - "37b38d7f1dc075535ac9ab9beeee8809e956f8f0", + "27922f462665b550e1c5520112051178ef45782b", [ "fetch/fetch-later/new-window.tentative.https.window.html", { "script_metadata": [ - [ - "script", - "/resources/testharness.js" - ], - [ - "script", - "/resources/testharnessreport.js" - ], [ "script", "/common/utils.js" @@ -598516,48 +614005,72 @@ ], [ "script", - "/pending-beacon/resources/pending_beacon-helper.js" + "/fetch/fetch-later/resources/fetch-later-helper.js" ] ] } ] ], "non-secure.window.js": [ - "2f2c3ea8d34b9dfaf8bbc6b12acc304a4beb791d", + "c13932e353c96665b098d29dd6fa8bfcb26b7d93", [ "fetch/fetch-later/non-secure.window.html", - { - "script_metadata": [ - [ - "script", - "/resources/testharness.js" - ], - [ - "script", - "/resources/testharnessreport.js" - ] - ] - } + {} ] ], - "policies": { - "csp-allowed.tentative.https.window.js": [ - "5aa759c2346bd76b6ecc5c04dc5094b7a48297fa", + "permissions-policy": { + "deferred-fetch-allowed-by-permissions-policy-attribute-redirect.tentative.https.window.js": [ + "2f168f06508a4c20a59f96e5a1231084e5e71bf8", [ - "fetch/fetch-later/policies/csp-allowed.tentative.https.window.html", + "fetch/fetch-later/permissions-policy/deferred-fetch-allowed-by-permissions-policy-attribute-redirect.tentative.https.window.html", { "script_metadata": [ [ "title", - "FetchLater: allowed by CSP" + "Permissions Policy \"deferred-fetch\" is allowed to redirect by allow attribute" + ], + [ + "script", + "/permissions-policy/resources/permissions-policy.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "/common/get-host-info.sub.js" ], [ "script", - "/resources/testharness.js" + "/fetch/fetch-later/resources/fetch-later-helper.js" + ], + [ + "script", + "/fetch/fetch-later/permissions-policy/resources/helper.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } + ] + ], + "deferred-fetch-allowed-by-permissions-policy-attribute.tentative.https.window.js": [ + "c881609b4f16b4da439092c45ca3331d36378076", + [ + "fetch/fetch-later/permissions-policy/deferred-fetch-allowed-by-permissions-policy-attribute.tentative.https.window.html", + { + "script_metadata": [ + [ + "title", + "Permissions Policy \"deferred-fetch\" is allowed by allow attribute" ], [ "script", - "/resources/testharnessreport.js" + "/permissions-policy/resources/permissions-policy.js" ], [ "script", @@ -598569,29 +614082,73 @@ ], [ "script", - "/pending-beacon/resources/pending_beacon-helper.js" + "/fetch/fetch-later/resources/fetch-later-helper.js" + ], + [ + "script", + "/fetch/fetch-later/permissions-policy/resources/helper.js" + ], + [ + "timeout", + "long" ] - ] + ], + "timeout": "long" } ] ], - "csp-blocked.tentative.https.window.js": [ - "88490950d3a4ec8b10e6430aacdf74116cb1e680", + "deferred-fetch-allowed-by-permissions-policy.tentative.https.window.js": [ + "b65013d177f10d4fc258e2cde032398964e508c9", [ - "fetch/fetch-later/policies/csp-blocked.tentative.https.window.html", + "fetch/fetch-later/permissions-policy/deferred-fetch-allowed-by-permissions-policy.tentative.https.window.html", { "script_metadata": [ [ "title", - "FetchLater: blocked by CSP" + "Permissions Policy \"deferred-fetch\" is allowed" + ], + [ + "script", + "/permissions-policy/resources/permissions-policy.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "/common/get-host-info.sub.js" + ], + [ + "script", + "/fetch/fetch-later/resources/fetch-later-helper.js" ], [ "script", - "/resources/testharness.js" + "/fetch/fetch-later/permissions-policy/resources/helper.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } + ] + ], + "deferred-fetch-default-permissions-policy.tentative.https.window.js": [ + "51b7e51844939f154755915cdcba613913c097e0", + [ + "fetch/fetch-later/permissions-policy/deferred-fetch-default-permissions-policy.tentative.https.window.html", + { + "script_metadata": [ + [ + "title", + "Permissions Policy \"deferred-fetch\" default behavior" ], [ "script", - "/resources/testharnessreport.js" + "/permissions-policy/resources/permissions-policy.js" ], [ "script", @@ -598603,29 +614160,137 @@ ], [ "script", - "/pending-beacon/resources/pending_beacon-helper.js" + "/fetch/fetch-later/resources/fetch-later-helper.js" + ], + [ + "script", + "/fetch/fetch-later/permissions-policy/resources/helper.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } + ] + ], + "deferred-fetch-disabled-by-permissions-policy.tentative.https.window.js": [ + "283f703a283bea7d9577e0788eceafb04345f857", + [ + "fetch/fetch-later/permissions-policy/deferred-fetch-disabled-by-permissions-policy.tentative.https.window.html", + { + "script_metadata": [ + [ + "title", + "Permissions Policy \"deferred-fetch\" is disabled" + ], + [ + "script", + "/permissions-policy/resources/permissions-policy.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "/common/get-host-info.sub.js" + ], + [ + "script", + "/fetch/fetch-later/resources/fetch-later-helper.js" + ], + [ + "script", + "/fetch/fetch-later/permissions-policy/resources/helper.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } + ] + ], + "deferred-fetch-supported-by-permissions-policy.tentative.window.js": [ + "e89f1edb8567092bcf6146d772a93789e2dbc9f8", + [ + "fetch/fetch-later/permissions-policy/deferred-fetch-supported-by-permissions-policy.tentative.window.html", + { + "script_metadata": [ + [ + "title", + "The feature list should advertise deferred-fetch" + ] + ] + } + ] + ] + }, + "policies": { + "csp-allowed.tentative.https.window.js": [ + "32a3e106a0c55195473689f3522636b5e3ce6953", + [ + "fetch/fetch-later/policies/csp-allowed.tentative.https.window.html", + { + "script_metadata": [ + [ + "title", + "FetchLater: allowed by CSP" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "/common/get-host-info.sub.js" + ], + [ + "script", + "/fetch/fetch-later/resources/fetch-later-helper.js" ] ] } ] ], - "csp-redirect-to-blocked.tentative.https.window.js": [ - "db6b4234b97e1058bb0d884ed0589d43be9174f0", + "csp-blocked.tentative.https.window.js": [ + "ca9d881e8cdd19afe2d7b8506ed8d8dbc527ac29", [ - "fetch/fetch-later/policies/csp-redirect-to-blocked.tentative.https.window.html", + "fetch/fetch-later/policies/csp-blocked.tentative.https.window.html", { "script_metadata": [ [ "title", - "FetchLater: redirect blocked by CSP" + "FetchLater: blocked by CSP" + ], + [ + "script", + "/common/utils.js" ], [ "script", - "/resources/testharness.js" + "/common/get-host-info.sub.js" ], [ "script", - "/resources/testharnessreport.js" + "/fetch/fetch-later/resources/fetch-later-helper.js" + ] + ] + } + ] + ], + "csp-redirect-to-blocked.tentative.https.window.js": [ + "584f476b456e02b440a054f080d0b7638b5e7e42", + [ + "fetch/fetch-later/policies/csp-redirect-to-blocked.tentative.https.window.html", + { + "script_metadata": [ + [ + "title", + "FetchLater: redirect blocked by CSP" ], [ "script", @@ -598637,7 +614302,7 @@ ], [ "script", - "/pending-beacon/resources/pending_beacon-helper.js" + "/fetch/fetch-later/resources/fetch-later-helper.js" ], [ "timeout", @@ -598650,18 +614315,44 @@ ] }, "quota.tentative.https.window.js": [ - "4fc5979374c0e214f44d28982c7f22b86454d22f", + "9d0ae4287dfb7990aa8d54973edfbeebf355e058", [ "fetch/fetch-later/quota.tentative.https.window.html", { "script_metadata": [ [ "script", - "/resources/testharness.js" + "/common/get-host-info.sub.js" ], [ "script", - "/resources/testharnessreport.js" + "/common/utils.js" + ], + [ + "script", + "/fetch/fetch-later/resources/fetch-later-helper.js" + ] + ] + } + ] + ], + "send-on-deactivate-with-background-sync.tentative.https.window.js": [ + "881bdd23f9371ac684b4aa58c2be23ac402cf4fe", + [ + "fetch/fetch-later/send-on-deactivate-with-background-sync.tentative.https.window.html", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ], + [ + "script", + "/common/dispatcher/dispatcher.js" ], [ "script", @@ -598673,26 +614364,31 @@ ], [ "script", - "/pending-beacon/resources/pending_beacon-helper.js" + "/html/browsers/browsing-the-web/remote-context-helper/resources/remote-context-helper.js" + ], + [ + "script", + "/html/browsers/browsing-the-web/back-forward-cache/resources/rc-helper.js" + ], + [ + "script", + "/fetch/fetch-later/resources/fetch-later-helper.js" + ], + [ + "timeout", + "long" ] - ] + ], + "timeout": "long" } ] ], "send-on-deactivate.tentative.https.window.js": [ - "94877e8321a768f76844466b722bc0a54f5d0b76", + "3bcf07483add874c42e6c26cc4343905fcddc596", [ "fetch/fetch-later/send-on-deactivate.tentative.https.window.html", { "script_metadata": [ - [ - "script", - "/resources/testharness.js" - ], - [ - "script", - "/resources/testharnessreport.js" - ], [ "script", "/common/dispatcher/dispatcher.js" @@ -598715,7 +614411,7 @@ ], [ "script", - "/pending-beacon/resources/pending_beacon-helper.js" + "/fetch/fetch-later/resources/fetch-later-helper.js" ] ] } @@ -598723,52 +614419,36 @@ ], "send-on-discard": { "not-send-after-abort.tentative.https.window.js": [ - "c49e0bde87b803ee9b31a6410310511f40b6ac1c", + "6ddafd78131695c41ddfde1ee33bd6136afecbfe", [ "fetch/fetch-later/send-on-discard/not-send-after-abort.tentative.https.window.html", { "script_metadata": [ - [ - "script", - "/resources/testharness.js" - ], - [ - "script", - "/resources/testharnessreport.js" - ], [ "script", "/common/utils.js" ], [ "script", - "/pending-beacon/resources/pending_beacon-helper.js" + "/fetch/fetch-later/resources/fetch-later-helper.js" ] ] } ] ], "send-multiple-with-activate-after.tentative.https.window.js": [ - "03078b2b51647cecaee424edf8b4fefaed65540c", + "0bbe94c39f01ef811e967c686d2071ad5c5c00bf", [ "fetch/fetch-later/send-on-discard/send-multiple-with-activate-after.tentative.https.window.html", { "script_metadata": [ - [ - "script", - "/resources/testharness.js" - ], - [ - "script", - "/resources/testharnessreport.js" - ], [ "script", "/common/utils.js" ], [ "script", - "/pending-beacon/resources/pending_beacon-helper.js" + "/fetch/fetch-later/resources/fetch-later-helper.js" ], [ "timeout", @@ -598780,26 +614460,18 @@ ] ], "send-multiple.tentative.https.window.js": [ - "25ce98d446eaba4b9e0f7d834f647da49d229d37", + "05bb2dc1149d2b491dc3a9206bd0c402e0281a5d", [ "fetch/fetch-later/send-on-discard/send-multiple.tentative.https.window.html", { "script_metadata": [ - [ - "script", - "/resources/testharness.js" - ], - [ - "script", - "/resources/testharnessreport.js" - ], [ "script", "/common/utils.js" ], [ "script", - "/pending-beacon/resources/pending_beacon-helper.js" + "/fetch/fetch-later/resources/fetch-later-helper.js" ], [ "timeout", @@ -598821,10 +614493,17 @@ ] ], "resources-with-0x00-in-header.window.js": [ - "37a61c12b561b260725f8da61b8478c5d9b713af", + "b617911105acb45f5881f1988b52162702f31841", [ "fetch/h1-parsing/resources-with-0x00-in-header.window.html", - {} + { + "script_metadata": [ + [ + "script", + "/common/get-host-info.sub.js" + ] + ] + } ] ], "status-code.window.js": [ @@ -600420,13 +616099,6 @@ ] ], "generated": { - "appcache-manifest.https.sub.html": [ - "cf322fd34bc9abfc9d0b96e8eb9308441c2eeb13", - [ - null, - {} - ] - ], "audioworklet.https.sub.html": [ "64fb7607e26a17969e10ce0308ed8f9bff60cb70", [ @@ -600891,7 +616563,7 @@ ] ], "worker-dedicated-constructor.sub.html": [ - "69ac7682a5c5ffc6699a51b5589a42ac2c08bedd", + "65b1837c6363a249bf0f249eed726432cd1bcca6", [ null, {} @@ -601798,7 +617470,7 @@ ] ], "fetch.tentative.https.window.js": [ - "dbc4f23f677c716ba439c508c42ee33f4b1b3233", + "606443dc14ddf9730654f58a0ddf577b0678195c", [ "fetch/private-network-access/fetch.tentative.https.window.html?include=baseline", { @@ -602341,8 +618013,44 @@ } ] ], + "service-worker-fetch-document-treat-as-public.tentative.https.window.js": [ + "6fc29ce4725b15b4d773c641e8fa93756e2399a5", + [ + "fetch/private-network-access/service-worker-fetch-document-treat-as-public.tentative.https.window.html", + { + "script_metadata": [ + [ + "script", + "/common/utils.js" + ], + [ + "script", + "resources/support.sub.js" + ] + ] + } + ] + ], + "service-worker-fetch-document.tentative.https.window.js": [ + "ec380555a809b38543bb0f74fb59a8d546e785ef", + [ + "fetch/private-network-access/service-worker-fetch-document.tentative.https.window.html", + { + "script_metadata": [ + [ + "script", + "/common/utils.js" + ], + [ + "script", + "resources/support.sub.js" + ] + ] + } + ] + ], "service-worker-fetch.tentative.https.window.js": [ - "cb6d1f79b01f7c3fc7ba13884bd675bfd01d74a2", + "5fc5800ba042345789ffe0a78c77c9502d6acd44", [ "fetch/private-network-access/service-worker-fetch.tentative.https.window.html?1-8", { @@ -602570,6 +618278,212 @@ } ] ], + "window-open-existing.tentative.https.window.js": [ + "6a2a624fc8032d03b626109ee7f825f7acf5874c", + [ + "fetch/private-network-access/window-open-existing.tentative.https.window.html?include=from-local", + { + "script_metadata": [ + [ + "script", + "/common/subset-tests-by-key.js" + ], + [ + "script", + "/common/dispatcher/dispatcher.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "resources/support.sub.js" + ], + [ + "timeout", + "long" + ], + [ + "variant", + "?include=from-local" + ], + [ + "variant", + "?include=from-private" + ], + [ + "variant", + "?include=from-public" + ], + [ + "variant", + "?include=from-treat-as-public" + ] + ], + "timeout": "long" + } + ], + [ + "fetch/private-network-access/window-open-existing.tentative.https.window.html?include=from-private", + { + "script_metadata": [ + [ + "script", + "/common/subset-tests-by-key.js" + ], + [ + "script", + "/common/dispatcher/dispatcher.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "resources/support.sub.js" + ], + [ + "timeout", + "long" + ], + [ + "variant", + "?include=from-local" + ], + [ + "variant", + "?include=from-private" + ], + [ + "variant", + "?include=from-public" + ], + [ + "variant", + "?include=from-treat-as-public" + ] + ], + "timeout": "long" + } + ], + [ + "fetch/private-network-access/window-open-existing.tentative.https.window.html?include=from-public", + { + "script_metadata": [ + [ + "script", + "/common/subset-tests-by-key.js" + ], + [ + "script", + "/common/dispatcher/dispatcher.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "resources/support.sub.js" + ], + [ + "timeout", + "long" + ], + [ + "variant", + "?include=from-local" + ], + [ + "variant", + "?include=from-private" + ], + [ + "variant", + "?include=from-public" + ], + [ + "variant", + "?include=from-treat-as-public" + ] + ], + "timeout": "long" + } + ], + [ + "fetch/private-network-access/window-open-existing.tentative.https.window.html?include=from-treat-as-public", + { + "script_metadata": [ + [ + "script", + "/common/subset-tests-by-key.js" + ], + [ + "script", + "/common/dispatcher/dispatcher.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "resources/support.sub.js" + ], + [ + "timeout", + "long" + ], + [ + "variant", + "?include=from-local" + ], + [ + "variant", + "?include=from-private" + ], + [ + "variant", + "?include=from-public" + ], + [ + "variant", + "?include=from-treat-as-public" + ] + ], + "timeout": "long" + } + ] + ], + "window-open-existing.tentative.window.js": [ + "5a6cd4c5cfd20c931a37c4f98524a4a59c0d07c9", + [ + "fetch/private-network-access/window-open-existing.tentative.window.html", + { + "script_metadata": [ + [ + "script", + "/common/dispatcher/dispatcher.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "resources/support.sub.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } + ] + ], "window-open.tentative.https.window.js": [ "6793d1f3b4d9218975c7b08e165a729c00960df9", [ @@ -603250,6 +619164,15 @@ ] ], "dangling-markup": { + "dangling-markup-mitigation-allowed-apis.tentative.https.html": [ + "428decfc583d8268ae36bc1ddf832d21c30ea6a6", + [ + null, + { + "timeout": "long" + } + ] + ], "dangling-markup-mitigation-data-url.tentative.sub.html": [ "f27735daa1dd650726525d72a48b91d58d62535b", [ @@ -603264,6 +619187,15 @@ {} ] ], + "dangling-markup-mitigation.tentative.https.html": [ + "3f038cbb7be452757196838539a7bf95e4f6e945", + [ + null, + { + "timeout": "long" + } + ] + ], "media.html": [ "2649edcf32008566c8d05352d42057fdedd4fa39", [ @@ -603419,6 +619351,69 @@ } }, "file-system-access": { + "getDirectory.https.any.js": [ + "bace6860b85cfbb170b4b87982de20af86d86f3b", + [ + "file-system-access/getDirectory.https.any.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "resources/test-helpers.js" + ] + ] + } + ], + [ + "file-system-access/getDirectory.https.any.serviceworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "resources/test-helpers.js" + ] + ] + } + ], + [ + "file-system-access/getDirectory.https.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "resources/test-helpers.js" + ] + ] + } + ], + [ + "file-system-access/getDirectory.https.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "resources/test-helpers.js" + ] + ] + } + ] + ], "idlharness.https.any.js": [ "ca3e92061a2a5a09f04c9548d9163bba8f39521d", [ @@ -603554,8 +619549,43 @@ } ] ], + "additional-bids.https.window.js": [ + "965f9a60c7e6630b00be480f20e95ecf21e610a5", + [ + "fledge/tentative/additional-bids.https.window.html?1-last", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "resources/fledge-util.sub.js" + ], + [ + "script", + "/common/subset-tests.js" + ], + [ + "timeout", + "long" + ], + [ + "variant", + "?1-last" + ] + ], + "timeout": "long" + } + ] + ], "auction-config-passed-to-worklets.https.window.js": [ - "c78a27bb87a67cae52c411beb6990796afd95f42", + "7780957739e435825f186500f56a6e102e9c2c32", [ "fledge/tentative/auction-config-passed-to-worklets.https.window.html?1-5", { @@ -603594,7 +619624,11 @@ ], [ "variant", - "?16-last" + "?16-20" + ], + [ + "variant", + "?21-last" ] ], "timeout": "long" @@ -603638,14 +619672,18 @@ ], [ "variant", - "?16-last" + "?16-20" + ], + [ + "variant", + "?21-last" ] ], "timeout": "long" } ], [ - "fledge/tentative/auction-config-passed-to-worklets.https.window.html?16-last", + "fledge/tentative/auction-config-passed-to-worklets.https.window.html?16-20", { "script_metadata": [ [ @@ -603682,7 +619720,59 @@ ], [ "variant", - "?16-last" + "?16-20" + ], + [ + "variant", + "?21-last" + ] + ], + "timeout": "long" + } + ], + [ + "fledge/tentative/auction-config-passed-to-worklets.https.window.html?21-last", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "resources/fledge-util.sub.js" + ], + [ + "script", + "/common/subset-tests.js" + ], + [ + "timeout", + "long" + ], + [ + "variant", + "?1-5" + ], + [ + "variant", + "?6-10" + ], + [ + "variant", + "?11-15" + ], + [ + "variant", + "?16-20" + ], + [ + "variant", + "?21-last" ] ], "timeout": "long" @@ -603726,7 +619816,11 @@ ], [ "variant", - "?16-last" + "?16-20" + ], + [ + "variant", + "?21-last" ] ], "timeout": "long" @@ -603734,7 +619828,7 @@ ] ], "auction-config.https.window.js": [ - "3b5814b5d4aa5139684a52a1e62d3c45293f495f", + "4efef29344d90a8ab3a8a8bd13beaa86f438260c", [ "fledge/tentative/auction-config.https.window.html?1-5", { @@ -603789,7 +619883,27 @@ ], [ "variant", - "?36-last" + "?36-40" + ], + [ + "variant", + "?40-45" + ], + [ + "variant", + "?46-50" + ], + [ + "variant", + "?51-55" + ], + [ + "variant", + "?56-60" + ], + [ + "variant", + "?61-last" ] ], "timeout": "long" @@ -603849,7 +619963,27 @@ ], [ "variant", - "?36-last" + "?36-40" + ], + [ + "variant", + "?40-45" + ], + [ + "variant", + "?46-50" + ], + [ + "variant", + "?51-55" + ], + [ + "variant", + "?56-60" + ], + [ + "variant", + "?61-last" ] ], "timeout": "long" @@ -603909,7 +620043,27 @@ ], [ "variant", - "?36-last" + "?36-40" + ], + [ + "variant", + "?40-45" + ], + [ + "variant", + "?46-50" + ], + [ + "variant", + "?51-55" + ], + [ + "variant", + "?56-60" + ], + [ + "variant", + "?61-last" ] ], "timeout": "long" @@ -603969,7 +620123,27 @@ ], [ "variant", - "?36-last" + "?36-40" + ], + [ + "variant", + "?40-45" + ], + [ + "variant", + "?46-50" + ], + [ + "variant", + "?51-55" + ], + [ + "variant", + "?56-60" + ], + [ + "variant", + "?61-last" ] ], "timeout": "long" @@ -604029,7 +620203,27 @@ ], [ "variant", - "?36-last" + "?36-40" + ], + [ + "variant", + "?40-45" + ], + [ + "variant", + "?46-50" + ], + [ + "variant", + "?51-55" + ], + [ + "variant", + "?56-60" + ], + [ + "variant", + "?61-last" ] ], "timeout": "long" @@ -604089,14 +620283,34 @@ ], [ "variant", - "?36-last" + "?36-40" + ], + [ + "variant", + "?40-45" + ], + [ + "variant", + "?46-50" + ], + [ + "variant", + "?51-55" + ], + [ + "variant", + "?56-60" + ], + [ + "variant", + "?61-last" ] ], "timeout": "long" } ], [ - "fledge/tentative/auction-config.https.window.html?36-last", + "fledge/tentative/auction-config.https.window.html?36-40", { "script_metadata": [ [ @@ -604149,14 +620363,34 @@ ], [ "variant", - "?36-last" + "?36-40" + ], + [ + "variant", + "?40-45" + ], + [ + "variant", + "?46-50" + ], + [ + "variant", + "?51-55" + ], + [ + "variant", + "?56-60" + ], + [ + "variant", + "?61-last" ] ], "timeout": "long" } ], [ - "fledge/tentative/auction-config.https.window.html?6-10", + "fledge/tentative/auction-config.https.window.html?40-45", { "script_metadata": [ [ @@ -604209,17 +620443,34 @@ ], [ "variant", - "?36-last" + "?36-40" + ], + [ + "variant", + "?40-45" + ], + [ + "variant", + "?46-50" + ], + [ + "variant", + "?51-55" + ], + [ + "variant", + "?56-60" + ], + [ + "variant", + "?61-last" ] ], "timeout": "long" } - ] - ], - "clear-origin-joined-ad-interest-groups.https.window.js": [ - "7d6e715ac45d979b541cfb50f2044ef34178df26", + ], [ - "fledge/tentative/clear-origin-joined-ad-interest-groups.https.window.html?1-4", + "fledge/tentative/auction-config.https.window.html?46-50", { "script_metadata": [ [ @@ -604244,70 +620495,62 @@ ], [ "variant", - "?1-4" + "?1-5" ], [ "variant", - "?5-8" + "?6-10" ], [ "variant", - "?9-12" + "?11-15" ], [ "variant", - "?13-last" - ] - ], - "timeout": "long" - } - ], - [ - "fledge/tentative/clear-origin-joined-ad-interest-groups.https.window.html?13-last", - { - "script_metadata": [ + "?16-20" + ], [ - "script", - "/resources/testdriver.js" + "variant", + "?21-25" ], [ - "script", - "/common/utils.js" + "variant", + "?26-30" ], [ - "script", - "resources/fledge-util.sub.js" + "variant", + "?31-35" ], [ - "script", - "/common/subset-tests.js" + "variant", + "?36-40" ], [ - "timeout", - "long" + "variant", + "?40-45" ], [ "variant", - "?1-4" + "?46-50" ], [ "variant", - "?5-8" + "?51-55" ], [ "variant", - "?9-12" + "?56-60" ], [ "variant", - "?13-last" + "?61-last" ] ], "timeout": "long" } ], [ - "fledge/tentative/clear-origin-joined-ad-interest-groups.https.window.html?5-8", + "fledge/tentative/auction-config.https.window.html?51-55", { "script_metadata": [ [ @@ -604332,73 +620575,62 @@ ], [ "variant", - "?1-4" + "?1-5" ], [ "variant", - "?5-8" + "?6-10" ], [ "variant", - "?9-12" + "?11-15" ], [ "variant", - "?13-last" - ] - ], - "timeout": "long" - } - ], - [ - "fledge/tentative/clear-origin-joined-ad-interest-groups.https.window.html?9-12", - { - "script_metadata": [ + "?16-20" + ], [ - "script", - "/resources/testdriver.js" + "variant", + "?21-25" ], [ - "script", - "/common/utils.js" + "variant", + "?26-30" ], [ - "script", - "resources/fledge-util.sub.js" + "variant", + "?31-35" ], [ - "script", - "/common/subset-tests.js" + "variant", + "?36-40" ], [ - "timeout", - "long" + "variant", + "?40-45" ], [ "variant", - "?1-4" + "?46-50" ], [ "variant", - "?5-8" + "?51-55" ], [ "variant", - "?9-12" + "?56-60" ], [ "variant", - "?13-last" + "?61-last" ] ], "timeout": "long" } - ] - ], - "component-ads.https.window.js": [ - "719a645beb692c5e5e407f3daf61323d5ae0a264", + ], [ - "fledge/tentative/component-ads.https.window.html?1-5", + "fledge/tentative/auction-config.https.window.html?56-60", { "script_metadata": [ [ @@ -604411,11 +620643,11 @@ ], [ "script", - "/common/subset-tests.js" + "resources/fledge-util.sub.js" ], [ "script", - "resources/fledge-util.sub.js" + "/common/subset-tests.js" ], [ "timeout", @@ -604435,58 +620667,50 @@ ], [ "variant", - "?16-last" - ] - ], - "timeout": "long" - } - ], - [ - "fledge/tentative/component-ads.https.window.html?11-15", - { - "script_metadata": [ + "?16-20" + ], [ - "script", - "/resources/testdriver.js" + "variant", + "?21-25" ], [ - "script", - "/common/utils.js" + "variant", + "?26-30" ], [ - "script", - "/common/subset-tests.js" + "variant", + "?31-35" ], [ - "script", - "resources/fledge-util.sub.js" + "variant", + "?36-40" ], [ - "timeout", - "long" + "variant", + "?40-45" ], [ "variant", - "?1-5" + "?46-50" ], [ "variant", - "?6-10" + "?51-55" ], [ "variant", - "?11-15" + "?56-60" ], [ "variant", - "?16-last" + "?61-last" ] ], "timeout": "long" } ], [ - "fledge/tentative/component-ads.https.window.html?16-last", + "fledge/tentative/auction-config.https.window.html?6-10", { "script_metadata": [ [ @@ -604499,11 +620723,11 @@ ], [ "script", - "/common/subset-tests.js" + "resources/fledge-util.sub.js" ], [ "script", - "resources/fledge-util.sub.js" + "/common/subset-tests.js" ], [ "timeout", @@ -604523,61 +620747,50 @@ ], [ "variant", - "?16-last" - ] - ], - "timeout": "long" - } - ], - [ - "fledge/tentative/component-ads.https.window.html?6-10", - { - "script_metadata": [ + "?16-20" + ], [ - "script", - "/resources/testdriver.js" + "variant", + "?21-25" ], [ - "script", - "/common/utils.js" + "variant", + "?26-30" ], [ - "script", - "/common/subset-tests.js" + "variant", + "?31-35" ], [ - "script", - "resources/fledge-util.sub.js" + "variant", + "?36-40" ], [ - "timeout", - "long" + "variant", + "?40-45" ], [ "variant", - "?1-5" + "?46-50" ], [ "variant", - "?6-10" + "?51-55" ], [ "variant", - "?11-15" + "?56-60" ], [ "variant", - "?16-last" + "?61-last" ] ], "timeout": "long" } - ] - ], - "component-auction.https.window.js": [ - "83980541f39798fab385a28af528ca616698ea08", + ], [ - "fledge/tentative/component-auction.https.window.html?1-5", + "fledge/tentative/auction-config.https.window.html?61-last", { "script_metadata": [ [ @@ -604590,11 +620803,11 @@ ], [ "script", - "/common/subset-tests.js" + "resources/fledge-util.sub.js" ], [ "script", - "resources/fledge-util.sub.js" + "/common/subset-tests.js" ], [ "timeout", @@ -604610,54 +620823,57 @@ ], [ "variant", - "?11-last" - ] - ], - "timeout": "long" - } - ], - [ - "fledge/tentative/component-auction.https.window.html?11-last", - { - "script_metadata": [ + "?11-15" + ], [ - "script", - "/resources/testdriver.js" + "variant", + "?16-20" ], [ - "script", - "/common/utils.js" + "variant", + "?21-25" ], [ - "script", - "/common/subset-tests.js" + "variant", + "?26-30" ], [ - "script", - "resources/fledge-util.sub.js" + "variant", + "?31-35" ], [ - "timeout", - "long" + "variant", + "?36-40" ], [ "variant", - "?1-5" + "?40-45" ], [ "variant", - "?6-10" + "?46-50" ], [ "variant", - "?11-last" + "?51-55" + ], + [ + "variant", + "?56-60" + ], + [ + "variant", + "?61-last" ] ], "timeout": "long" } - ], + ] + ], + "clear-origin-joined-ad-interest-groups.https.window.js": [ + "7d6e715ac45d979b541cfb50f2044ef34178df26", [ - "fledge/tentative/component-auction.https.window.html?6-10", + "fledge/tentative/clear-origin-joined-ad-interest-groups.https.window.html?1-4", { "script_metadata": [ [ @@ -604670,11 +620886,11 @@ ], [ "script", - "/common/subset-tests.js" + "resources/fledge-util.sub.js" ], [ "script", - "resources/fledge-util.sub.js" + "/common/subset-tests.js" ], [ "timeout", @@ -604682,25 +620898,26 @@ ], [ "variant", - "?1-5" + "?1-4" ], [ "variant", - "?6-10" + "?5-8" ], [ "variant", - "?11-last" + "?9-12" + ], + [ + "variant", + "?13-last" ] ], "timeout": "long" } - ] - ], - "cross-origin.https.window.js": [ - "788558e5cf364d2a3cc6b611d843ade2628821ff", + ], [ - "fledge/tentative/cross-origin.https.window.html?1-4", + "fledge/tentative/clear-origin-joined-ad-interest-groups.https.window.html?13-last", { "script_metadata": [ [ @@ -604713,11 +620930,11 @@ ], [ "script", - "/common/subset-tests.js" + "resources/fledge-util.sub.js" ], [ "script", - "resources/fledge-util.sub.js" + "/common/subset-tests.js" ], [ "timeout", @@ -604744,7 +620961,7 @@ } ], [ - "fledge/tentative/cross-origin.https.window.html?13-last", + "fledge/tentative/clear-origin-joined-ad-interest-groups.https.window.html?5-8", { "script_metadata": [ [ @@ -604757,11 +620974,11 @@ ], [ "script", - "/common/subset-tests.js" + "resources/fledge-util.sub.js" ], [ "script", - "resources/fledge-util.sub.js" + "/common/subset-tests.js" ], [ "timeout", @@ -604788,7 +621005,7 @@ } ], [ - "fledge/tentative/cross-origin.https.window.html?5-8", + "fledge/tentative/clear-origin-joined-ad-interest-groups.https.window.html?9-12", { "script_metadata": [ [ @@ -604801,11 +621018,11 @@ ], [ "script", - "/common/subset-tests.js" + "resources/fledge-util.sub.js" ], [ "script", - "resources/fledge-util.sub.js" + "/common/subset-tests.js" ], [ "timeout", @@ -604830,9 +621047,12 @@ ], "timeout": "long" } - ], + ] + ], + "component-ads.https.window.js": [ + "8493025429ed83b49f5117f0b3f237e03ccf64a5", [ - "fledge/tentative/cross-origin.https.window.html?9-12", + "fledge/tentative/component-ads.https.window.html?1-5", { "script_metadata": [ [ @@ -604857,29 +621077,26 @@ ], [ "variant", - "?1-4" + "?1-5" ], [ "variant", - "?5-8" + "?6-10" ], [ "variant", - "?9-12" + "?11-15" ], [ "variant", - "?13-last" + "?16-last" ] ], "timeout": "long" } - ] - ], - "currency.https.window.js": [ - "9a33d12148a0681da4a7d1f5e781b2248f64a361", + ], [ - "fledge/tentative/currency.https.window.html?1-4", + "fledge/tentative/component-ads.https.window.html?11-15", { "script_metadata": [ [ @@ -604892,11 +621109,11 @@ ], [ "script", - "resources/fledge-util.sub.js" + "/common/subset-tests.js" ], [ "script", - "/common/subset-tests.js" + "resources/fledge-util.sub.js" ], [ "timeout", @@ -604904,46 +621121,70 @@ ], [ "variant", - "?1-4" + "?1-5" ], [ "variant", - "?5-8" + "?6-10" ], [ "variant", - "?9-12" + "?11-15" ], [ "variant", - "?13-16" + "?16-last" + ] + ], + "timeout": "long" + } + ], + [ + "fledge/tentative/component-ads.https.window.html?16-last", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" ], [ - "variant", - "?17-20" + "script", + "/common/utils.js" + ], + [ + "script", + "/common/subset-tests.js" + ], + [ + "script", + "resources/fledge-util.sub.js" + ], + [ + "timeout", + "long" ], [ "variant", - "?21-24" + "?1-5" ], [ "variant", - "?25-28" + "?6-10" ], [ "variant", - "?29-32" + "?11-15" ], [ "variant", - "?33-last" + "?16-last" ] ], "timeout": "long" } ], [ - "fledge/tentative/currency.https.window.html?13-16", + "fledge/tentative/component-ads.https.window.html?6-10", { "script_metadata": [ [ @@ -604956,11 +621197,11 @@ ], [ "script", - "resources/fledge-util.sub.js" + "/common/subset-tests.js" ], [ "script", - "/common/subset-tests.js" + "resources/fledge-util.sub.js" ], [ "timeout", @@ -604968,46 +621209,73 @@ ], [ "variant", - "?1-4" + "?1-5" ], [ "variant", - "?5-8" + "?6-10" ], [ "variant", - "?9-12" + "?11-15" ], [ "variant", - "?13-16" + "?16-last" + ] + ], + "timeout": "long" + } + ] + ], + "component-auction.https.window.js": [ + "bf804e68579937f8192ba6bf377e0ed6fdedf501", + [ + "fledge/tentative/component-auction.https.window.html?1-5", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" ], [ - "variant", - "?17-20" + "script", + "/common/utils.js" + ], + [ + "script", + "/common/subset-tests.js" + ], + [ + "script", + "resources/fledge-util.sub.js" + ], + [ + "timeout", + "long" ], [ "variant", - "?21-24" + "?1-5" ], [ "variant", - "?25-28" + "?6-10" ], [ "variant", - "?29-32" + "?11-15" ], [ "variant", - "?33-last" + "?16-last" ] ], "timeout": "long" } ], [ - "fledge/tentative/currency.https.window.html?17-20", + "fledge/tentative/component-auction.https.window.html?11-15", { "script_metadata": [ [ @@ -605020,11 +621288,11 @@ ], [ "script", - "resources/fledge-util.sub.js" + "/common/subset-tests.js" ], [ "script", - "/common/subset-tests.js" + "resources/fledge-util.sub.js" ], [ "timeout", @@ -605032,46 +621300,70 @@ ], [ "variant", - "?1-4" + "?1-5" ], [ "variant", - "?5-8" + "?6-10" ], [ "variant", - "?9-12" + "?11-15" ], [ "variant", - "?13-16" + "?16-last" + ] + ], + "timeout": "long" + } + ], + [ + "fledge/tentative/component-auction.https.window.html?16-last", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" ], [ - "variant", - "?17-20" + "script", + "/common/utils.js" + ], + [ + "script", + "/common/subset-tests.js" + ], + [ + "script", + "resources/fledge-util.sub.js" + ], + [ + "timeout", + "long" ], [ "variant", - "?21-24" + "?1-5" ], [ "variant", - "?25-28" + "?6-10" ], [ "variant", - "?29-32" + "?11-15" ], [ "variant", - "?33-last" + "?16-last" ] ], "timeout": "long" } ], [ - "fledge/tentative/currency.https.window.html?21-24", + "fledge/tentative/component-auction.https.window.html?6-10", { "script_metadata": [ [ @@ -605084,11 +621376,11 @@ ], [ "script", - "resources/fledge-util.sub.js" + "/common/subset-tests.js" ], [ "script", - "/common/subset-tests.js" + "resources/fledge-util.sub.js" ], [ "timeout", @@ -605096,46 +621388,73 @@ ], [ "variant", - "?1-4" + "?1-5" ], [ "variant", - "?5-8" + "?6-10" ], [ "variant", - "?9-12" + "?11-15" ], [ "variant", - "?13-16" + "?16-last" + ] + ], + "timeout": "long" + } + ] + ], + "cross-origin.https.window.js": [ + "eed74c522f2a8f25c1a695a16ee2e9a7ffa14da0", + [ + "fledge/tentative/cross-origin.https.window.html?1-4", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" ], [ - "variant", - "?17-20" + "script", + "/common/utils.js" + ], + [ + "script", + "/common/subset-tests.js" + ], + [ + "script", + "resources/fledge-util.sub.js" + ], + [ + "timeout", + "long" ], [ "variant", - "?21-24" + "?1-4" ], [ "variant", - "?25-28" + "?5-8" ], [ "variant", - "?29-32" + "?9-12" ], [ "variant", - "?33-last" + "?13-last" ] ], "timeout": "long" } ], [ - "fledge/tentative/currency.https.window.html?25-28", + "fledge/tentative/cross-origin.https.window.html?13-last", { "script_metadata": [ [ @@ -605148,11 +621467,11 @@ ], [ "script", - "resources/fledge-util.sub.js" + "/common/subset-tests.js" ], [ "script", - "/common/subset-tests.js" + "resources/fledge-util.sub.js" ], [ "timeout", @@ -605172,34 +621491,14 @@ ], [ "variant", - "?13-16" - ], - [ - "variant", - "?17-20" - ], - [ - "variant", - "?21-24" - ], - [ - "variant", - "?25-28" - ], - [ - "variant", - "?29-32" - ], - [ - "variant", - "?33-last" + "?13-last" ] ], "timeout": "long" } ], [ - "fledge/tentative/currency.https.window.html?29-32", + "fledge/tentative/cross-origin.https.window.html?5-8", { "script_metadata": [ [ @@ -605212,11 +621511,11 @@ ], [ "script", - "resources/fledge-util.sub.js" + "/common/subset-tests.js" ], [ "script", - "/common/subset-tests.js" + "resources/fledge-util.sub.js" ], [ "timeout", @@ -605236,34 +621535,61 @@ ], [ "variant", - "?13-16" + "?13-last" + ] + ], + "timeout": "long" + } + ], + [ + "fledge/tentative/cross-origin.https.window.html?9-12", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" ], [ - "variant", - "?17-20" + "script", + "/common/utils.js" + ], + [ + "script", + "/common/subset-tests.js" + ], + [ + "script", + "resources/fledge-util.sub.js" + ], + [ + "timeout", + "long" ], [ "variant", - "?21-24" + "?1-4" ], [ "variant", - "?25-28" + "?5-8" ], [ "variant", - "?29-32" + "?9-12" ], [ "variant", - "?33-last" + "?13-last" ] ], "timeout": "long" } - ], + ] + ], + "currency.https.window.js": [ + "99943cecbf962db6b732297abc328bb4198fc932", [ - "fledge/tentative/currency.https.window.html?33-last", + "fledge/tentative/currency.https.window.html?1-4", { "script_metadata": [ [ @@ -605327,7 +621653,7 @@ } ], [ - "fledge/tentative/currency.https.window.html?5-8", + "fledge/tentative/currency.https.window.html?13-16", { "script_metadata": [ [ @@ -605391,7 +621717,7 @@ } ], [ - "fledge/tentative/currency.https.window.html?9-12", + "fledge/tentative/currency.https.window.html?17-20", { "script_metadata": [ [ @@ -605453,12 +621779,9 @@ ], "timeout": "long" } - ] - ], - "direct-from-seller-signals.https.window.js": [ - "0ae1efd8d3780efe9ff1a0886e6f79d4c17c2558", + ], [ - "fledge/tentative/direct-from-seller-signals.https.window.html?1-5", + "fledge/tentative/currency.https.window.html?21-24", { "script_metadata": [ [ @@ -605483,30 +621806,46 @@ ], [ "variant", - "?1-5" + "?1-4" ], [ "variant", - "?6-10" + "?5-8" ], [ "variant", - "?11-15" + "?9-12" ], [ "variant", - "?16-20" + "?13-16" ], [ "variant", - "?21-last" + "?17-20" + ], + [ + "variant", + "?21-24" + ], + [ + "variant", + "?25-28" + ], + [ + "variant", + "?29-32" + ], + [ + "variant", + "?33-last" ] ], "timeout": "long" } ], [ - "fledge/tentative/direct-from-seller-signals.https.window.html?11-15", + "fledge/tentative/currency.https.window.html?25-28", { "script_metadata": [ [ @@ -605531,30 +621870,46 @@ ], [ "variant", - "?1-5" + "?1-4" ], [ "variant", - "?6-10" + "?5-8" ], [ "variant", - "?11-15" + "?9-12" ], [ "variant", - "?16-20" + "?13-16" ], [ "variant", - "?21-last" + "?17-20" + ], + [ + "variant", + "?21-24" + ], + [ + "variant", + "?25-28" + ], + [ + "variant", + "?29-32" + ], + [ + "variant", + "?33-last" ] ], "timeout": "long" } ], [ - "fledge/tentative/direct-from-seller-signals.https.window.html?16-20", + "fledge/tentative/currency.https.window.html?29-32", { "script_metadata": [ [ @@ -605579,30 +621934,46 @@ ], [ "variant", - "?1-5" + "?1-4" ], [ "variant", - "?6-10" + "?5-8" ], [ "variant", - "?11-15" + "?9-12" ], [ "variant", - "?16-20" + "?13-16" ], [ "variant", - "?21-last" + "?17-20" + ], + [ + "variant", + "?21-24" + ], + [ + "variant", + "?25-28" + ], + [ + "variant", + "?29-32" + ], + [ + "variant", + "?33-last" ] ], "timeout": "long" } ], [ - "fledge/tentative/direct-from-seller-signals.https.window.html?21-last", + "fledge/tentative/currency.https.window.html?33-last", { "script_metadata": [ [ @@ -605627,30 +621998,46 @@ ], [ "variant", - "?1-5" + "?1-4" ], [ "variant", - "?6-10" + "?5-8" ], [ "variant", - "?11-15" + "?9-12" ], [ "variant", - "?16-20" + "?13-16" ], [ "variant", - "?21-last" + "?17-20" + ], + [ + "variant", + "?21-24" + ], + [ + "variant", + "?25-28" + ], + [ + "variant", + "?29-32" + ], + [ + "variant", + "?33-last" ] ], "timeout": "long" } ], [ - "fledge/tentative/direct-from-seller-signals.https.window.html?6-10", + "fledge/tentative/currency.https.window.html?5-8", { "script_metadata": [ [ @@ -605675,81 +622062,46 @@ ], [ "variant", - "?1-5" + "?1-4" ], [ "variant", - "?6-10" + "?5-8" ], [ "variant", - "?11-15" + "?9-12" ], [ "variant", - "?16-20" + "?13-16" ], [ "variant", - "?21-last" - ] - ], - "timeout": "long" - } - ] - ], - "fetch-ad-auction-headers-insecure-context.tentative.http.html": [ - "d3bdb8017579414aee39ad672519ff029f9d0827", - [ - null, - {} - ] - ], - "fetch-ad-auction-headers.tentative.https.html": [ - "7b2a2c2ba4a2f037874a0647180a4eb7e06e772d", - [ - null, - {} - ] - ], - "generate-bid-recency.https.window.js": [ - "07da463a2dc50178a39a9ab5d8461a62d3152827", - [ - "fledge/tentative/generate-bid-recency.https.window.html", - { - "script_metadata": [ + "?17-20" + ], [ - "script", - "/resources/testdriver.js" + "variant", + "?21-24" ], [ - "script", - "/common/utils.js" + "variant", + "?25-28" ], [ - "script", - "resources/fledge-util.sub.js" + "variant", + "?29-32" ], [ - "timeout", - "long" + "variant", + "?33-last" ] ], "timeout": "long" } - ] - ], - "insecure-context.window.js": [ - "9016277b73139d050e3d688c3f21cb40048464e2", - [ - "fledge/tentative/insecure-context.window.html", - {} - ] - ], - "interest-group-passed-to-generate-bid.https.window.js": [ - "cf46855a3d1d879a2a1d64c7252ef7aaf8d7786f", + ], [ - "fledge/tentative/interest-group-passed-to-generate-bid.https.window.html?1-5", + "fledge/tentative/currency.https.window.html?9-12", { "script_metadata": [ [ @@ -605774,26 +622126,49 @@ ], [ "variant", - "?1-5" + "?1-4" ], [ "variant", - "?6-10" + "?5-8" ], [ "variant", - "?11-15" + "?9-12" ], [ "variant", - "?16-last" + "?13-16" + ], + [ + "variant", + "?17-20" + ], + [ + "variant", + "?21-24" + ], + [ + "variant", + "?25-28" + ], + [ + "variant", + "?29-32" + ], + [ + "variant", + "?33-last" ] ], "timeout": "long" } - ], + ] + ], + "deprecated-render-url-replacements.https.window.js": [ + "4f8bc1cc7f0f5cd12b78a8cb05f787841b63f120", [ - "fledge/tentative/interest-group-passed-to-generate-bid.https.window.html?11-15", + "fledge/tentative/deprecated-render-url-replacements.https.window.html?1-5", { "script_metadata": [ [ @@ -605837,7 +622212,7 @@ } ], [ - "fledge/tentative/interest-group-passed-to-generate-bid.https.window.html?16-last", + "fledge/tentative/deprecated-render-url-replacements.https.window.html?11-15", { "script_metadata": [ [ @@ -605881,7 +622256,7 @@ } ], [ - "fledge/tentative/interest-group-passed-to-generate-bid.https.window.html?6-10", + "fledge/tentative/deprecated-render-url-replacements.https.window.html?16-last", { "script_metadata": [ [ @@ -605923,12 +622298,9 @@ ], "timeout": "long" } - ] - ], - "join-leave-ad-interest-group-in-fenced-frame.https.window.js": [ - "e6836ab2f45a873a3d5bd3de9f74c92424782bec", + ], [ - "fledge/tentative/join-leave-ad-interest-group-in-fenced-frame.https.window.html?1-4", + "fledge/tentative/deprecated-render-url-replacements.https.window.html?6-10", { "script_metadata": [ [ @@ -605953,22 +622325,29 @@ ], [ "variant", - "?1-4" + "?1-5" ], [ "variant", - "?5-8" + "?6-10" ], [ "variant", - "?9-last" + "?11-15" + ], + [ + "variant", + "?16-last" ] ], "timeout": "long" } - ], + ] + ], + "direct-from-seller-signals.https.window.js": [ + "d0c0e550c4232bd4dad1661b0b418084111a48a6", [ - "fledge/tentative/join-leave-ad-interest-group-in-fenced-frame.https.window.html?5-8", + "fledge/tentative/direct-from-seller-signals.https.window.html?1-4", { "script_metadata": [ [ @@ -606001,57 +622380,34 @@ ], [ "variant", - "?9-last" - ] - ], - "timeout": "long" - } - ], - [ - "fledge/tentative/join-leave-ad-interest-group-in-fenced-frame.https.window.html?9-last", - { - "script_metadata": [ - [ - "script", - "/resources/testdriver.js" - ], - [ - "script", - "/common/utils.js" - ], - [ - "script", - "resources/fledge-util.sub.js" + "?9-12" ], [ - "script", - "/common/subset-tests.js" + "variant", + "?13-16" ], [ - "timeout", - "long" + "variant", + "?17-20" ], [ "variant", - "?1-4" + "?21-24" ], [ "variant", - "?5-8" + "?25-28" ], [ "variant", - "?9-last" + "?29-last" ] ], "timeout": "long" } - ] - ], - "join-leave-ad-interest-group.https.window.js": [ - "c3c97d60c614424262590027d415132ff8d8e756", + ], [ - "fledge/tentative/join-leave-ad-interest-group.https.window.html?1-10", + "fledge/tentative/direct-from-seller-signals.https.window.html?13-16", { "script_metadata": [ [ @@ -606076,46 +622432,42 @@ ], [ "variant", - "?1-10" - ], - [ - "variant", - "?11-20" + "?1-4" ], [ "variant", - "?21-30" + "?5-8" ], [ "variant", - "?31-40" + "?9-12" ], [ "variant", - "?41-50" + "?13-16" ], [ "variant", - "?51-60" + "?17-20" ], [ "variant", - "?61-70" + "?21-24" ], [ "variant", - "?71-80" + "?25-28" ], [ "variant", - "?81-last" + "?29-last" ] ], "timeout": "long" } ], [ - "fledge/tentative/join-leave-ad-interest-group.https.window.html?11-20", + "fledge/tentative/direct-from-seller-signals.https.window.html?17-20", { "script_metadata": [ [ @@ -606140,46 +622492,42 @@ ], [ "variant", - "?1-10" - ], - [ - "variant", - "?11-20" + "?1-4" ], [ "variant", - "?21-30" + "?5-8" ], [ "variant", - "?31-40" + "?9-12" ], [ "variant", - "?41-50" + "?13-16" ], [ "variant", - "?51-60" + "?17-20" ], [ "variant", - "?61-70" + "?21-24" ], [ "variant", - "?71-80" + "?25-28" ], [ "variant", - "?81-last" + "?29-last" ] ], "timeout": "long" } ], [ - "fledge/tentative/join-leave-ad-interest-group.https.window.html?21-30", + "fledge/tentative/direct-from-seller-signals.https.window.html?21-24", { "script_metadata": [ [ @@ -606204,46 +622552,42 @@ ], [ "variant", - "?1-10" - ], - [ - "variant", - "?11-20" + "?1-4" ], [ "variant", - "?21-30" + "?5-8" ], [ "variant", - "?31-40" + "?9-12" ], [ "variant", - "?41-50" + "?13-16" ], [ "variant", - "?51-60" + "?17-20" ], [ "variant", - "?61-70" + "?21-24" ], [ "variant", - "?71-80" + "?25-28" ], [ "variant", - "?81-last" + "?29-last" ] ], "timeout": "long" } ], [ - "fledge/tentative/join-leave-ad-interest-group.https.window.html?31-40", + "fledge/tentative/direct-from-seller-signals.https.window.html?25-28", { "script_metadata": [ [ @@ -606268,46 +622612,42 @@ ], [ "variant", - "?1-10" - ], - [ - "variant", - "?11-20" + "?1-4" ], [ "variant", - "?21-30" + "?5-8" ], [ "variant", - "?31-40" + "?9-12" ], [ "variant", - "?41-50" + "?13-16" ], [ "variant", - "?51-60" + "?17-20" ], [ "variant", - "?61-70" + "?21-24" ], [ "variant", - "?71-80" + "?25-28" ], [ "variant", - "?81-last" + "?29-last" ] ], "timeout": "long" } ], [ - "fledge/tentative/join-leave-ad-interest-group.https.window.html?41-50", + "fledge/tentative/direct-from-seller-signals.https.window.html?29-last", { "script_metadata": [ [ @@ -606332,46 +622672,42 @@ ], [ "variant", - "?1-10" - ], - [ - "variant", - "?11-20" + "?1-4" ], [ "variant", - "?21-30" + "?5-8" ], [ "variant", - "?31-40" + "?9-12" ], [ "variant", - "?41-50" + "?13-16" ], [ "variant", - "?51-60" + "?17-20" ], [ "variant", - "?61-70" + "?21-24" ], [ "variant", - "?71-80" + "?25-28" ], [ "variant", - "?81-last" + "?29-last" ] ], "timeout": "long" } ], [ - "fledge/tentative/join-leave-ad-interest-group.https.window.html?51-60", + "fledge/tentative/direct-from-seller-signals.https.window.html?5-8", { "script_metadata": [ [ @@ -606396,46 +622732,42 @@ ], [ "variant", - "?1-10" - ], - [ - "variant", - "?11-20" + "?1-4" ], [ "variant", - "?21-30" + "?5-8" ], [ "variant", - "?31-40" + "?9-12" ], [ "variant", - "?41-50" + "?13-16" ], [ "variant", - "?51-60" + "?17-20" ], [ "variant", - "?61-70" + "?21-24" ], [ "variant", - "?71-80" + "?25-28" ], [ "variant", - "?81-last" + "?29-last" ] ], "timeout": "long" } ], [ - "fledge/tentative/join-leave-ad-interest-group.https.window.html?61-70", + "fledge/tentative/direct-from-seller-signals.https.window.html?9-12", { "script_metadata": [ [ @@ -606460,46 +622792,59 @@ ], [ "variant", - "?1-10" - ], - [ - "variant", - "?11-20" + "?1-4" ], [ "variant", - "?21-30" + "?5-8" ], [ "variant", - "?31-40" + "?9-12" ], [ "variant", - "?41-50" + "?13-16" ], [ "variant", - "?51-60" + "?17-20" ], [ "variant", - "?61-70" + "?21-24" ], [ "variant", - "?71-80" + "?25-28" ], [ "variant", - "?81-last" + "?29-last" ] ], "timeout": "long" } - ], + ] + ], + "fetch-ad-auction-headers-insecure-context.tentative.http.html": [ + "d3bdb8017579414aee39ad672519ff029f9d0827", [ - "fledge/tentative/join-leave-ad-interest-group.https.window.html?71-80", + null, + {} + ] + ], + "fetch-ad-auction-headers.tentative.https.html": [ + "7b2a2c2ba4a2f037874a0647180a4eb7e06e772d", + [ + null, + {} + ] + ], + "generate-bid-browser-signals.https.window.js": [ + "c7078ae08ad3331a326b2d195f56691247f4b872", + [ + "fledge/tentative/generate-bid-browser-signals.https.window.html?1-4", { "script_metadata": [ [ @@ -606524,46 +622869,42 @@ ], [ "variant", - "?1-10" - ], - [ - "variant", - "?11-20" + "?1-4" ], [ "variant", - "?21-30" + "?5-8" ], [ "variant", - "?31-40" + "?9-12" ], [ "variant", - "?41-50" + "?13-16" ], [ "variant", - "?51-60" + "?17-20" ], [ "variant", - "?61-70" + "?21-24" ], [ "variant", - "?71-80" + "?25-28" ], [ "variant", - "?81-last" + "?29-last" ] ], "timeout": "long" } ], [ - "fledge/tentative/join-leave-ad-interest-group.https.window.html?81-last", + "fledge/tentative/generate-bid-browser-signals.https.window.html?13-16", { "script_metadata": [ [ @@ -606588,49 +622929,42 @@ ], [ "variant", - "?1-10" - ], - [ - "variant", - "?11-20" + "?1-4" ], [ "variant", - "?21-30" + "?5-8" ], [ "variant", - "?31-40" + "?9-12" ], [ "variant", - "?41-50" + "?13-16" ], [ "variant", - "?51-60" + "?17-20" ], [ "variant", - "?61-70" + "?21-24" ], [ "variant", - "?71-80" + "?25-28" ], [ "variant", - "?81-last" + "?29-last" ] ], "timeout": "long" } - ] - ], - "kanon-status-below-threshold.https.window.js": [ - "4eac4a8e917b17a7e6d43b60261e5abdecad76e5", + ], [ - "fledge/tentative/kanon-status-below-threshold.https.window.html", + "fledge/tentative/generate-bid-browser-signals.https.window.html?17-20", { "script_metadata": [ [ @@ -606648,85 +622982,49 @@ [ "script", "/common/subset-tests.js" - ] - ] - } - ] - ], - "kanon-status-not-calculated.https.window.js": [ - "a3ac19bd85e5f2abcedba9c973177bcf602d4cb2", - [ - "fledge/tentative/kanon-status-not-calculated.https.window.html", - { - "script_metadata": [ - [ - "script", - "/resources/testdriver.js" - ], - [ - "script", - "/common/utils.js" - ], - [ - "script", - "resources/fledge-util.sub.js" ], [ - "script", - "/common/subset-tests.js" - ] - ] - } - ] - ], - "network.https.window.js": [ - "fe287767c8d051328b82e7501a64f0ad86cc0505", - [ - "fledge/tentative/network.https.window.html?1-5", - { - "script_metadata": [ - [ - "script", - "/resources/testdriver.js" + "timeout", + "long" ], [ - "script", - "/resources/testdriver-vendor.js" + "variant", + "?1-4" ], [ - "script", - "/common/subset-tests.js" + "variant", + "?5-8" ], [ - "script", - "/common/utils.js" + "variant", + "?9-12" ], [ - "script", - "resources/fledge-util.sub.js" + "variant", + "?13-16" ], [ - "timeout", - "long" + "variant", + "?17-20" ], [ "variant", - "?1-5" + "?21-24" ], [ "variant", - "?6-10" + "?25-28" ], [ "variant", - "?11-last" + "?29-last" ] ], "timeout": "long" } ], [ - "fledge/tentative/network.https.window.html?11-last", + "fledge/tentative/generate-bid-browser-signals.https.window.html?21-24", { "script_metadata": [ [ @@ -606735,19 +623033,15 @@ ], [ "script", - "/resources/testdriver-vendor.js" - ], - [ - "script", - "/common/subset-tests.js" + "/common/utils.js" ], [ "script", - "/common/utils.js" + "resources/fledge-util.sub.js" ], [ "script", - "resources/fledge-util.sub.js" + "/common/subset-tests.js" ], [ "timeout", @@ -606755,69 +623049,42 @@ ], [ "variant", - "?1-5" + "?1-4" ], [ "variant", - "?6-10" + "?5-8" ], [ "variant", - "?11-last" - ] - ], - "timeout": "long" - } - ], - [ - "fledge/tentative/network.https.window.html?6-10", - { - "script_metadata": [ - [ - "script", - "/resources/testdriver.js" - ], - [ - "script", - "/resources/testdriver-vendor.js" - ], - [ - "script", - "/common/subset-tests.js" - ], - [ - "script", - "/common/utils.js" + "?9-12" ], [ - "script", - "resources/fledge-util.sub.js" + "variant", + "?13-16" ], [ - "timeout", - "long" + "variant", + "?17-20" ], [ "variant", - "?1-5" + "?21-24" ], [ "variant", - "?6-10" + "?25-28" ], [ "variant", - "?11-last" + "?29-last" ] ], "timeout": "long" } - ] - ], - "no-winner.https.window.js": [ - "f252aece5bff52572395a64255f945f0030a6c72", + ], [ - "fledge/tentative/no-winner.https.window.html?1-5", + "fledge/tentative/generate-bid-browser-signals.https.window.html?25-28", { "script_metadata": [ [ @@ -606842,42 +623109,42 @@ ], [ "variant", - "?1-5" + "?1-4" ], [ "variant", - "?6-10" + "?5-8" ], [ "variant", - "?11-15" + "?9-12" ], [ "variant", - "?16-20" + "?13-16" ], [ "variant", - "?21-25" + "?17-20" ], [ "variant", - "?26-30" + "?21-24" ], [ "variant", - "?31-35" + "?25-28" ], [ "variant", - "?36-last" + "?29-last" ] ], "timeout": "long" } ], [ - "fledge/tentative/no-winner.https.window.html?11-15", + "fledge/tentative/generate-bid-browser-signals.https.window.html?29-last", { "script_metadata": [ [ @@ -606902,42 +623169,42 @@ ], [ "variant", - "?1-5" + "?1-4" ], [ "variant", - "?6-10" + "?5-8" ], [ "variant", - "?11-15" + "?9-12" ], [ "variant", - "?16-20" + "?13-16" ], [ "variant", - "?21-25" + "?17-20" ], [ "variant", - "?26-30" + "?21-24" ], [ "variant", - "?31-35" + "?25-28" ], [ "variant", - "?36-last" + "?29-last" ] ], "timeout": "long" } ], [ - "fledge/tentative/no-winner.https.window.html?16-20", + "fledge/tentative/generate-bid-browser-signals.https.window.html?5-8", { "script_metadata": [ [ @@ -606962,42 +623229,42 @@ ], [ "variant", - "?1-5" + "?1-4" ], [ "variant", - "?6-10" + "?5-8" ], [ "variant", - "?11-15" + "?9-12" ], [ "variant", - "?16-20" + "?13-16" ], [ "variant", - "?21-25" + "?17-20" ], [ "variant", - "?26-30" + "?21-24" ], [ "variant", - "?31-35" + "?25-28" ], [ "variant", - "?36-last" + "?29-last" ] ], "timeout": "long" } ], [ - "fledge/tentative/no-winner.https.window.html?21-25", + "fledge/tentative/generate-bid-browser-signals.https.window.html?9-12", { "script_metadata": [ [ @@ -607022,42 +623289,45 @@ ], [ "variant", - "?1-5" + "?1-4" ], [ "variant", - "?6-10" + "?5-8" ], [ "variant", - "?11-15" + "?9-12" ], [ "variant", - "?16-20" + "?13-16" ], [ "variant", - "?21-25" + "?17-20" ], [ "variant", - "?26-30" + "?21-24" ], [ "variant", - "?31-35" + "?25-28" ], [ "variant", - "?36-last" + "?29-last" ] ], "timeout": "long" } - ], + ] + ], + "get-interest-group-auction-data.https.window.js": [ + "29f58ebe9b1fd61e64ece49387114f9916f60ff6", [ - "fledge/tentative/no-winner.https.window.html?26-30", + "fledge/tentative/get-interest-group-auction-data.https.window.html?1-4", { "script_metadata": [ [ @@ -607082,42 +623352,24 @@ ], [ "variant", - "?1-5" - ], - [ - "variant", - "?6-10" - ], - [ - "variant", - "?11-15" - ], - [ - "variant", - "?16-20" - ], - [ - "variant", - "?21-25" - ], - [ - "variant", - "?26-30" - ], - [ - "variant", - "?31-35" - ], - [ - "variant", - "?36-last" + "?1-4" ] ], "timeout": "long" } - ], + ] + ], + "insecure-context.window.js": [ + "9016277b73139d050e3d688c3f21cb40048464e2", [ - "fledge/tentative/no-winner.https.window.html?31-35", + "fledge/tentative/insecure-context.window.html", + {} + ] + ], + "interest-group-passed-to-generate-bid.https.window.js": [ + "2fb346bbe3ba14f0f7577de0111aba270cc87955", + [ + "fledge/tentative/interest-group-passed-to-generate-bid.https.window.html?1-5", { "script_metadata": [ [ @@ -607170,74 +623422,50 @@ ], [ "variant", - "?36-last" - ] - ], - "timeout": "long" - } - ], - [ - "fledge/tentative/no-winner.https.window.html?36-last", - { - "script_metadata": [ - [ - "script", - "/resources/testdriver.js" - ], - [ - "script", - "/common/utils.js" - ], - [ - "script", - "resources/fledge-util.sub.js" - ], - [ - "script", - "/common/subset-tests.js" + "?36-40" ], [ - "timeout", - "long" + "variant", + "?41-45" ], [ "variant", - "?1-5" + "?46-50" ], [ "variant", - "?6-10" + "?51-55" ], [ "variant", - "?11-15" + "?56-60" ], [ "variant", - "?16-20" + "?61-65" ], [ "variant", - "?21-25" + "?66-70" ], [ "variant", - "?26-30" + "?71-75" ], [ "variant", - "?31-35" + "?76-80" ], [ "variant", - "?36-last" + "?81-85" ] ], "timeout": "long" } ], [ - "fledge/tentative/no-winner.https.window.html?6-10", + "fledge/tentative/interest-group-passed-to-generate-bid.https.window.html?11-15", { "script_metadata": [ [ @@ -607290,57 +623518,50 @@ ], [ "variant", - "?36-last" - ] - ], - "timeout": "long" - } - ] - ], - "register-ad-beacon.https.window.js": [ - "19fab2ac1b1b825e51a65d5200b64a60eb8a611c", - [ - "fledge/tentative/register-ad-beacon.https.window.html?1-5", - { - "script_metadata": [ + "?36-40" + ], [ - "script", - "/resources/testdriver.js" + "variant", + "?41-45" ], [ - "script", - "/common/utils.js" + "variant", + "?46-50" ], [ - "script", - "resources/fledge-util.sub.js" + "variant", + "?51-55" ], [ - "script", - "/common/subset-tests.js" + "variant", + "?56-60" ], [ - "timeout", - "long" + "variant", + "?61-65" ], [ "variant", - "?1-5" + "?66-70" ], [ "variant", - "?6-10" + "?71-75" ], [ "variant", - "?11-last" + "?76-80" + ], + [ + "variant", + "?81-85" ] ], "timeout": "long" } ], [ - "fledge/tentative/register-ad-beacon.https.window.html?11-last", + "fledge/tentative/interest-group-passed-to-generate-bid.https.window.html?16-20", { "script_metadata": [ [ @@ -607373,101 +623594,70 @@ ], [ "variant", - "?11-last" - ] - ], - "timeout": "long" - } - ], - [ - "fledge/tentative/register-ad-beacon.https.window.html?6-10", - { - "script_metadata": [ - [ - "script", - "/resources/testdriver.js" - ], - [ - "script", - "/common/utils.js" + "?11-15" ], [ - "script", - "resources/fledge-util.sub.js" + "variant", + "?16-20" ], [ - "script", - "/common/subset-tests.js" + "variant", + "?21-25" ], [ - "timeout", - "long" + "variant", + "?26-30" ], [ "variant", - "?1-5" + "?31-35" ], [ "variant", - "?6-10" + "?36-40" ], [ "variant", - "?11-last" - ] - ], - "timeout": "long" - } - ] - ], - "reporting-arguments.https.window.js": [ - "f26a969328ff0ccbd5a8b867147c36ea93e53c96", - [ - "fledge/tentative/reporting-arguments.https.window.html?1-5", - { - "script_metadata": [ - [ - "script", - "/resources/testdriver.js" + "?41-45" ], [ - "script", - "/common/utils.js" + "variant", + "?46-50" ], [ - "script", - "resources/fledge-util.sub.js" + "variant", + "?51-55" ], [ - "script", - "/common/subset-tests.js" + "variant", + "?56-60" ], [ - "timeout", - "long" + "variant", + "?61-65" ], [ "variant", - "?1-5" + "?66-70" ], [ "variant", - "?6-10" + "?71-75" ], [ "variant", - "?11-15" + "?76-80" ], [ "variant", - "?16-last" + "?81-85" ] ], "timeout": "long" } ], [ - "fledge/tentative/reporting-arguments.https.window.html?11-15", + "fledge/tentative/interest-group-passed-to-generate-bid.https.window.html?21-25", { "script_metadata": [ [ @@ -607504,58 +623694,66 @@ ], [ "variant", - "?16-last" - ] - ], - "timeout": "long" - } - ], - [ - "fledge/tentative/reporting-arguments.https.window.html?16-last", - { - "script_metadata": [ + "?16-20" + ], [ - "script", - "/resources/testdriver.js" + "variant", + "?21-25" ], [ - "script", - "/common/utils.js" + "variant", + "?26-30" ], [ - "script", - "resources/fledge-util.sub.js" + "variant", + "?31-35" ], [ - "script", - "/common/subset-tests.js" + "variant", + "?36-40" ], [ - "timeout", - "long" + "variant", + "?41-45" ], [ "variant", - "?1-5" + "?46-50" ], [ "variant", - "?6-10" + "?51-55" ], [ "variant", - "?11-15" + "?56-60" ], [ "variant", - "?16-last" + "?61-65" + ], + [ + "variant", + "?66-70" + ], + [ + "variant", + "?71-75" + ], + [ + "variant", + "?76-80" + ], + [ + "variant", + "?81-85" ] ], "timeout": "long" } ], [ - "fledge/tentative/reporting-arguments.https.window.html?6-10", + "fledge/tentative/interest-group-passed-to-generate-bid.https.window.html?26-30", { "script_metadata": [ [ @@ -607592,119 +623790,66 @@ ], [ "variant", - "?16-last" - ] - ], - "timeout": "long" - } - ] - ], - "round-a-value.https.window.js": [ - "5bccd4ab078fee069404096ef868e4a15ebbaa57", - [ - "fledge/tentative/round-a-value.https.window.html", - { - "script_metadata": [ - [ - "script", - "/resources/testdriver.js" - ], - [ - "script", - "/common/utils.js" - ], - [ - "script", - "resources/fledge-util.sub.js" + "?16-20" ], [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ] - ], - "send-report-to.https.window.js": [ - "65a2520420675184032ffde2d1823e91928606c3", - [ - "fledge/tentative/send-report-to.https.window.html?1-5", - { - "script_metadata": [ - [ - "script", - "/resources/testdriver.js" + "variant", + "?21-25" ], [ - "script", - "/common/utils.js" + "variant", + "?26-30" ], [ - "script", - "resources/fledge-util.sub.js" + "variant", + "?31-35" ], [ - "script", - "/common/subset-tests.js" + "variant", + "?36-40" ], [ - "timeout", - "long" + "variant", + "?41-45" ], [ "variant", - "?1-5" + "?46-50" ], [ "variant", - "?6-last" - ] - ], - "timeout": "long" - } - ], - [ - "fledge/tentative/send-report-to.https.window.html?6-last", - { - "script_metadata": [ - [ - "script", - "/resources/testdriver.js" + "?51-55" ], [ - "script", - "/common/utils.js" + "variant", + "?56-60" ], [ - "script", - "resources/fledge-util.sub.js" + "variant", + "?61-65" ], [ - "script", - "/common/subset-tests.js" + "variant", + "?66-70" ], [ - "timeout", - "long" + "variant", + "?71-75" ], [ "variant", - "?1-5" + "?76-80" ], [ "variant", - "?6-last" + "?81-85" ] ], "timeout": "long" } - ] - ], - "tie.https.window.js": [ - "48d6e95e5c473f89093227e17cf0c549b783c87b", + ], [ - "fledge/tentative/tie.https.window.html", + "fledge/tentative/interest-group-passed-to-generate-bid.https.window.html?31-35", { "script_metadata": [ [ @@ -607719,37 +623864,10 @@ "script", "resources/fledge-util.sub.js" ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ] - ], - "trusted-bidding-signals.https.window.js": [ - "9799af6ac1fbe1a3f7db8ce4230137d272cc8307", - [ - "fledge/tentative/trusted-bidding-signals.https.window.html?1-5", - { - "script_metadata": [ - [ - "script", - "/resources/testdriver.js" - ], - [ - "script", - "/common/utils.js" - ], [ "script", "/common/subset-tests.js" ], - [ - "script", - "resources/fledge-util.sub.js" - ], [ "timeout", "long" @@ -607808,14 +623926,26 @@ ], [ "variant", - "?66-last" + "?66-70" + ], + [ + "variant", + "?71-75" + ], + [ + "variant", + "?76-80" + ], + [ + "variant", + "?81-85" ] ], "timeout": "long" } ], [ - "fledge/tentative/trusted-bidding-signals.https.window.html?11-15", + "fledge/tentative/interest-group-passed-to-generate-bid.https.window.html?36-40", { "script_metadata": [ [ @@ -607828,11 +623958,11 @@ ], [ "script", - "/common/subset-tests.js" + "resources/fledge-util.sub.js" ], [ "script", - "resources/fledge-util.sub.js" + "/common/subset-tests.js" ], [ "timeout", @@ -607892,14 +624022,26 @@ ], [ "variant", - "?66-last" + "?66-70" + ], + [ + "variant", + "?71-75" + ], + [ + "variant", + "?76-80" + ], + [ + "variant", + "?81-85" ] ], "timeout": "long" } ], [ - "fledge/tentative/trusted-bidding-signals.https.window.html?16-20", + "fledge/tentative/interest-group-passed-to-generate-bid.https.window.html?41-45", { "script_metadata": [ [ @@ -607912,11 +624054,11 @@ ], [ "script", - "/common/subset-tests.js" + "resources/fledge-util.sub.js" ], [ "script", - "resources/fledge-util.sub.js" + "/common/subset-tests.js" ], [ "timeout", @@ -607976,14 +624118,26 @@ ], [ "variant", - "?66-last" + "?66-70" + ], + [ + "variant", + "?71-75" + ], + [ + "variant", + "?76-80" + ], + [ + "variant", + "?81-85" ] ], "timeout": "long" } ], [ - "fledge/tentative/trusted-bidding-signals.https.window.html?21-25", + "fledge/tentative/interest-group-passed-to-generate-bid.https.window.html?46-50", { "script_metadata": [ [ @@ -607996,11 +624150,11 @@ ], [ "script", - "/common/subset-tests.js" + "resources/fledge-util.sub.js" ], [ "script", - "resources/fledge-util.sub.js" + "/common/subset-tests.js" ], [ "timeout", @@ -608060,14 +624214,26 @@ ], [ "variant", - "?66-last" + "?66-70" + ], + [ + "variant", + "?71-75" + ], + [ + "variant", + "?76-80" + ], + [ + "variant", + "?81-85" ] ], "timeout": "long" } ], [ - "fledge/tentative/trusted-bidding-signals.https.window.html?26-30", + "fledge/tentative/interest-group-passed-to-generate-bid.https.window.html?51-55", { "script_metadata": [ [ @@ -608080,11 +624246,11 @@ ], [ "script", - "/common/subset-tests.js" + "resources/fledge-util.sub.js" ], [ "script", - "resources/fledge-util.sub.js" + "/common/subset-tests.js" ], [ "timeout", @@ -608144,14 +624310,26 @@ ], [ "variant", - "?66-last" + "?66-70" + ], + [ + "variant", + "?71-75" + ], + [ + "variant", + "?76-80" + ], + [ + "variant", + "?81-85" ] ], "timeout": "long" } ], [ - "fledge/tentative/trusted-bidding-signals.https.window.html?31-35", + "fledge/tentative/interest-group-passed-to-generate-bid.https.window.html?56-60", { "script_metadata": [ [ @@ -608164,11 +624342,11 @@ ], [ "script", - "/common/subset-tests.js" + "resources/fledge-util.sub.js" ], [ "script", - "resources/fledge-util.sub.js" + "/common/subset-tests.js" ], [ "timeout", @@ -608228,14 +624406,26 @@ ], [ "variant", - "?66-last" + "?66-70" + ], + [ + "variant", + "?71-75" + ], + [ + "variant", + "?76-80" + ], + [ + "variant", + "?81-85" ] ], "timeout": "long" } ], [ - "fledge/tentative/trusted-bidding-signals.https.window.html?36-40", + "fledge/tentative/interest-group-passed-to-generate-bid.https.window.html?6-10", { "script_metadata": [ [ @@ -608248,11 +624438,11 @@ ], [ "script", - "/common/subset-tests.js" + "resources/fledge-util.sub.js" ], [ "script", - "resources/fledge-util.sub.js" + "/common/subset-tests.js" ], [ "timeout", @@ -608312,14 +624502,26 @@ ], [ "variant", - "?66-last" + "?66-70" + ], + [ + "variant", + "?71-75" + ], + [ + "variant", + "?76-80" + ], + [ + "variant", + "?81-85" ] ], "timeout": "long" } ], [ - "fledge/tentative/trusted-bidding-signals.https.window.html?41-45", + "fledge/tentative/interest-group-passed-to-generate-bid.https.window.html?61-65", { "script_metadata": [ [ @@ -608332,11 +624534,11 @@ ], [ "script", - "/common/subset-tests.js" + "resources/fledge-util.sub.js" ], [ "script", - "resources/fledge-util.sub.js" + "/common/subset-tests.js" ], [ "timeout", @@ -608396,14 +624598,26 @@ ], [ "variant", - "?66-last" + "?66-70" + ], + [ + "variant", + "?71-75" + ], + [ + "variant", + "?76-80" + ], + [ + "variant", + "?81-85" ] ], "timeout": "long" } ], [ - "fledge/tentative/trusted-bidding-signals.https.window.html?46-50", + "fledge/tentative/interest-group-passed-to-generate-bid.https.window.html?66-70", { "script_metadata": [ [ @@ -608416,11 +624630,11 @@ ], [ "script", - "/common/subset-tests.js" + "resources/fledge-util.sub.js" ], [ "script", - "resources/fledge-util.sub.js" + "/common/subset-tests.js" ], [ "timeout", @@ -608480,14 +624694,26 @@ ], [ "variant", - "?66-last" + "?66-70" + ], + [ + "variant", + "?71-75" + ], + [ + "variant", + "?76-80" + ], + [ + "variant", + "?81-85" ] ], "timeout": "long" } ], [ - "fledge/tentative/trusted-bidding-signals.https.window.html?51-55", + "fledge/tentative/interest-group-passed-to-generate-bid.https.window.html?71-75", { "script_metadata": [ [ @@ -608500,11 +624726,11 @@ ], [ "script", - "/common/subset-tests.js" + "resources/fledge-util.sub.js" ], [ "script", - "resources/fledge-util.sub.js" + "/common/subset-tests.js" ], [ "timeout", @@ -608564,14 +624790,26 @@ ], [ "variant", - "?66-last" + "?66-70" + ], + [ + "variant", + "?71-75" + ], + [ + "variant", + "?76-80" + ], + [ + "variant", + "?81-85" ] ], "timeout": "long" } ], [ - "fledge/tentative/trusted-bidding-signals.https.window.html?56-60", + "fledge/tentative/interest-group-passed-to-generate-bid.https.window.html?76-80", { "script_metadata": [ [ @@ -608584,11 +624822,11 @@ ], [ "script", - "/common/subset-tests.js" + "resources/fledge-util.sub.js" ], [ "script", - "resources/fledge-util.sub.js" + "/common/subset-tests.js" ], [ "timeout", @@ -608648,14 +624886,26 @@ ], [ "variant", - "?66-last" + "?66-70" + ], + [ + "variant", + "?71-75" + ], + [ + "variant", + "?76-80" + ], + [ + "variant", + "?81-85" ] ], "timeout": "long" } ], [ - "fledge/tentative/trusted-bidding-signals.https.window.html?6-10", + "fledge/tentative/interest-group-passed-to-generate-bid.https.window.html?81-85", { "script_metadata": [ [ @@ -608668,11 +624918,11 @@ ], [ "script", - "/common/subset-tests.js" + "resources/fledge-util.sub.js" ], [ "script", - "resources/fledge-util.sub.js" + "/common/subset-tests.js" ], [ "timeout", @@ -608732,14 +624982,29 @@ ], [ "variant", - "?66-last" + "?66-70" + ], + [ + "variant", + "?71-75" + ], + [ + "variant", + "?76-80" + ], + [ + "variant", + "?81-85" ] ], "timeout": "long" } - ], + ] + ], + "interest-group-update.https.window.js": [ + "59b3736b096fc7b70ece2b417edf99fb77f1b1fc", [ - "fledge/tentative/trusted-bidding-signals.https.window.html?61-65", + "fledge/tentative/interest-group-update.https.window.html?1-4", { "script_metadata": [ [ @@ -608752,11 +625017,11 @@ ], [ "script", - "/common/subset-tests.js" + "resources/fledge-util.sub.js" ], [ "script", - "resources/fledge-util.sub.js" + "/common/subset-tests.js" ], [ "timeout", @@ -608764,66 +625029,78 @@ ], [ "variant", - "?1-5" + "?1-4" ], [ "variant", - "?6-10" + "?5-9" ], [ "variant", - "?11-15" + "?10-14" ], [ "variant", - "?16-20" + "?15-19" ], [ "variant", - "?21-25" + "?20-last" + ] + ], + "timeout": "long" + } + ], + [ + "fledge/tentative/interest-group-update.https.window.html?10-14", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" ], [ - "variant", - "?26-30" + "script", + "/common/utils.js" ], [ - "variant", - "?31-35" + "script", + "resources/fledge-util.sub.js" ], [ - "variant", - "?36-40" + "script", + "/common/subset-tests.js" ], [ - "variant", - "?41-45" + "timeout", + "long" ], [ "variant", - "?46-50" + "?1-4" ], [ "variant", - "?51-55" + "?5-9" ], [ "variant", - "?56-60" + "?10-14" ], [ "variant", - "?61-65" + "?15-19" ], [ "variant", - "?66-last" + "?20-last" ] ], "timeout": "long" } ], [ - "fledge/tentative/trusted-bidding-signals.https.window.html?66-last", + "fledge/tentative/interest-group-update.https.window.html?15-19", { "script_metadata": [ [ @@ -608836,11 +625113,11 @@ ], [ "script", - "/common/subset-tests.js" + "resources/fledge-util.sub.js" ], [ "script", - "resources/fledge-util.sub.js" + "/common/subset-tests.js" ], [ "timeout", @@ -608848,69 +625125,78 @@ ], [ "variant", - "?1-5" + "?1-4" ], [ "variant", - "?6-10" + "?5-9" ], [ "variant", - "?11-15" + "?10-14" ], [ "variant", - "?16-20" + "?15-19" ], [ "variant", - "?21-25" + "?20-last" + ] + ], + "timeout": "long" + } + ], + [ + "fledge/tentative/interest-group-update.https.window.html?20-last", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" ], [ - "variant", - "?26-30" + "script", + "/common/utils.js" ], [ - "variant", - "?31-35" + "script", + "resources/fledge-util.sub.js" ], [ - "variant", - "?36-40" + "script", + "/common/subset-tests.js" ], [ - "variant", - "?41-45" + "timeout", + "long" ], [ "variant", - "?46-50" + "?1-4" ], [ "variant", - "?51-55" + "?5-9" ], [ "variant", - "?56-60" + "?10-14" ], [ "variant", - "?61-65" + "?15-19" ], [ "variant", - "?66-last" + "?20-last" ] ], "timeout": "long" } - ] - ], - "trusted-scoring-signals.https.window.js": [ - "67ae3577e4f1f0a3fbad8450924c11b32f10689f", + ], [ - "fledge/tentative/trusted-scoring-signals.https.window.html?1-5", + "fledge/tentative/interest-group-update.https.window.html?5-9", { "script_metadata": [ [ @@ -608935,46 +625221,73 @@ ], [ "variant", - "?1-5" + "?1-4" ], [ "variant", - "?6-10" + "?5-9" ], [ "variant", - "?11-15" + "?10-14" ], [ "variant", - "?16-20" + "?15-19" ], [ "variant", - "?21-25" + "?20-last" + ] + ], + "timeout": "long" + } + ] + ], + "join-leave-ad-interest-group-in-fenced-frame.https.window.js": [ + "e6836ab2f45a873a3d5bd3de9f74c92424782bec", + [ + "fledge/tentative/join-leave-ad-interest-group-in-fenced-frame.https.window.html?1-4", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" ], [ - "variant", - "?26-30" + "script", + "/common/utils.js" + ], + [ + "script", + "resources/fledge-util.sub.js" + ], + [ + "script", + "/common/subset-tests.js" + ], + [ + "timeout", + "long" ], [ "variant", - "?31-35" + "?1-4" ], [ "variant", - "?36-40" + "?5-8" ], [ "variant", - "?41-last" + "?9-last" ] ], "timeout": "long" } ], [ - "fledge/tentative/trusted-scoring-signals.https.window.html?11-15", + "fledge/tentative/join-leave-ad-interest-group-in-fenced-frame.https.window.html?5-8", { "script_metadata": [ [ @@ -608999,46 +625312,891 @@ ], [ "variant", - "?1-5" + "?1-4" ], [ "variant", - "?6-10" + "?5-8" ], [ "variant", - "?11-15" + "?9-last" + ] + ], + "timeout": "long" + } + ], + [ + "fledge/tentative/join-leave-ad-interest-group-in-fenced-frame.https.window.html?9-last", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" ], [ - "variant", - "?16-20" + "script", + "/common/utils.js" ], [ - "variant", - "?21-25" + "script", + "resources/fledge-util.sub.js" ], [ - "variant", - "?26-30" + "script", + "/common/subset-tests.js" + ], + [ + "timeout", + "long" ], [ "variant", - "?31-35" + "?1-4" ], [ "variant", - "?36-40" + "?5-8" ], [ "variant", - "?41-last" + "?9-last" ] ], "timeout": "long" } - ], + ] + ], + "join-leave-ad-interest-group.https.window.js": [ + "02148ef36b76b80178ee99775c4ae1dea534c01b", [ - "fledge/tentative/trusted-scoring-signals.https.window.html?16-20", + "fledge/tentative/join-leave-ad-interest-group.https.window.html?1-10", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "resources/fledge-util.sub.js" + ], + [ + "script", + "/common/subset-tests.js" + ], + [ + "timeout", + "long" + ], + [ + "variant", + "?1-10" + ], + [ + "variant", + "?11-20" + ], + [ + "variant", + "?21-30" + ], + [ + "variant", + "?31-40" + ], + [ + "variant", + "?41-50" + ], + [ + "variant", + "?51-60" + ], + [ + "variant", + "?61-70" + ], + [ + "variant", + "?71-80" + ], + [ + "variant", + "?81-last" + ] + ], + "timeout": "long" + } + ], + [ + "fledge/tentative/join-leave-ad-interest-group.https.window.html?11-20", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "resources/fledge-util.sub.js" + ], + [ + "script", + "/common/subset-tests.js" + ], + [ + "timeout", + "long" + ], + [ + "variant", + "?1-10" + ], + [ + "variant", + "?11-20" + ], + [ + "variant", + "?21-30" + ], + [ + "variant", + "?31-40" + ], + [ + "variant", + "?41-50" + ], + [ + "variant", + "?51-60" + ], + [ + "variant", + "?61-70" + ], + [ + "variant", + "?71-80" + ], + [ + "variant", + "?81-last" + ] + ], + "timeout": "long" + } + ], + [ + "fledge/tentative/join-leave-ad-interest-group.https.window.html?21-30", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "resources/fledge-util.sub.js" + ], + [ + "script", + "/common/subset-tests.js" + ], + [ + "timeout", + "long" + ], + [ + "variant", + "?1-10" + ], + [ + "variant", + "?11-20" + ], + [ + "variant", + "?21-30" + ], + [ + "variant", + "?31-40" + ], + [ + "variant", + "?41-50" + ], + [ + "variant", + "?51-60" + ], + [ + "variant", + "?61-70" + ], + [ + "variant", + "?71-80" + ], + [ + "variant", + "?81-last" + ] + ], + "timeout": "long" + } + ], + [ + "fledge/tentative/join-leave-ad-interest-group.https.window.html?31-40", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "resources/fledge-util.sub.js" + ], + [ + "script", + "/common/subset-tests.js" + ], + [ + "timeout", + "long" + ], + [ + "variant", + "?1-10" + ], + [ + "variant", + "?11-20" + ], + [ + "variant", + "?21-30" + ], + [ + "variant", + "?31-40" + ], + [ + "variant", + "?41-50" + ], + [ + "variant", + "?51-60" + ], + [ + "variant", + "?61-70" + ], + [ + "variant", + "?71-80" + ], + [ + "variant", + "?81-last" + ] + ], + "timeout": "long" + } + ], + [ + "fledge/tentative/join-leave-ad-interest-group.https.window.html?41-50", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "resources/fledge-util.sub.js" + ], + [ + "script", + "/common/subset-tests.js" + ], + [ + "timeout", + "long" + ], + [ + "variant", + "?1-10" + ], + [ + "variant", + "?11-20" + ], + [ + "variant", + "?21-30" + ], + [ + "variant", + "?31-40" + ], + [ + "variant", + "?41-50" + ], + [ + "variant", + "?51-60" + ], + [ + "variant", + "?61-70" + ], + [ + "variant", + "?71-80" + ], + [ + "variant", + "?81-last" + ] + ], + "timeout": "long" + } + ], + [ + "fledge/tentative/join-leave-ad-interest-group.https.window.html?51-60", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "resources/fledge-util.sub.js" + ], + [ + "script", + "/common/subset-tests.js" + ], + [ + "timeout", + "long" + ], + [ + "variant", + "?1-10" + ], + [ + "variant", + "?11-20" + ], + [ + "variant", + "?21-30" + ], + [ + "variant", + "?31-40" + ], + [ + "variant", + "?41-50" + ], + [ + "variant", + "?51-60" + ], + [ + "variant", + "?61-70" + ], + [ + "variant", + "?71-80" + ], + [ + "variant", + "?81-last" + ] + ], + "timeout": "long" + } + ], + [ + "fledge/tentative/join-leave-ad-interest-group.https.window.html?61-70", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "resources/fledge-util.sub.js" + ], + [ + "script", + "/common/subset-tests.js" + ], + [ + "timeout", + "long" + ], + [ + "variant", + "?1-10" + ], + [ + "variant", + "?11-20" + ], + [ + "variant", + "?21-30" + ], + [ + "variant", + "?31-40" + ], + [ + "variant", + "?41-50" + ], + [ + "variant", + "?51-60" + ], + [ + "variant", + "?61-70" + ], + [ + "variant", + "?71-80" + ], + [ + "variant", + "?81-last" + ] + ], + "timeout": "long" + } + ], + [ + "fledge/tentative/join-leave-ad-interest-group.https.window.html?71-80", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "resources/fledge-util.sub.js" + ], + [ + "script", + "/common/subset-tests.js" + ], + [ + "timeout", + "long" + ], + [ + "variant", + "?1-10" + ], + [ + "variant", + "?11-20" + ], + [ + "variant", + "?21-30" + ], + [ + "variant", + "?31-40" + ], + [ + "variant", + "?41-50" + ], + [ + "variant", + "?51-60" + ], + [ + "variant", + "?61-70" + ], + [ + "variant", + "?71-80" + ], + [ + "variant", + "?81-last" + ] + ], + "timeout": "long" + } + ], + [ + "fledge/tentative/join-leave-ad-interest-group.https.window.html?81-last", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "resources/fledge-util.sub.js" + ], + [ + "script", + "/common/subset-tests.js" + ], + [ + "timeout", + "long" + ], + [ + "variant", + "?1-10" + ], + [ + "variant", + "?11-20" + ], + [ + "variant", + "?21-30" + ], + [ + "variant", + "?31-40" + ], + [ + "variant", + "?41-50" + ], + [ + "variant", + "?51-60" + ], + [ + "variant", + "?61-70" + ], + [ + "variant", + "?71-80" + ], + [ + "variant", + "?81-last" + ] + ], + "timeout": "long" + } + ] + ], + "kanon-status-below-threshold.https.window.js": [ + "787283d687ff55e5a2b448764370416bfa90285e", + [ + "fledge/tentative/kanon-status-below-threshold.https.window.html", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "resources/fledge-util.sub.js" + ], + [ + "script", + "/common/subset-tests.js" + ] + ] + } + ] + ], + "kanon-status-not-calculated.https.window.js": [ + "4a750cd3529df529c63f0fa1cf4d083abeacc542", + [ + "fledge/tentative/kanon-status-not-calculated.https.window.html", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "resources/fledge-util.sub.js" + ], + [ + "script", + "/common/subset-tests.js" + ] + ] + } + ] + ], + "network.https.window.js": [ + "0b41662155a67ba5e14c383d7f7075f9d808cecf", + [ + "fledge/tentative/network.https.window.html?1-5", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ], + [ + "script", + "/common/subset-tests.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "resources/fledge-util.sub.js" + ], + [ + "timeout", + "long" + ], + [ + "variant", + "?1-5" + ], + [ + "variant", + "?6-10" + ], + [ + "variant", + "?11-15" + ], + [ + "variant", + "?16-last" + ] + ], + "timeout": "long" + } + ], + [ + "fledge/tentative/network.https.window.html?11-15", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ], + [ + "script", + "/common/subset-tests.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "resources/fledge-util.sub.js" + ], + [ + "timeout", + "long" + ], + [ + "variant", + "?1-5" + ], + [ + "variant", + "?6-10" + ], + [ + "variant", + "?11-15" + ], + [ + "variant", + "?16-last" + ] + ], + "timeout": "long" + } + ], + [ + "fledge/tentative/network.https.window.html?16-last", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ], + [ + "script", + "/common/subset-tests.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "resources/fledge-util.sub.js" + ], + [ + "timeout", + "long" + ], + [ + "variant", + "?1-5" + ], + [ + "variant", + "?6-10" + ], + [ + "variant", + "?11-15" + ], + [ + "variant", + "?16-last" + ] + ], + "timeout": "long" + } + ], + [ + "fledge/tentative/network.https.window.html?6-10", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ], + [ + "script", + "/common/subset-tests.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "resources/fledge-util.sub.js" + ], + [ + "timeout", + "long" + ], + [ + "variant", + "?1-5" + ], + [ + "variant", + "?6-10" + ], + [ + "variant", + "?11-15" + ], + [ + "variant", + "?16-last" + ] + ], + "timeout": "long" + } + ] + ], + "no-winner.https.window.js": [ + "6e02139c810c4eec7b4e0e721ede858cde56b1c0", + [ + "fledge/tentative/no-winner.https.window.html?1-5", { "script_metadata": [ [ @@ -609095,14 +626253,18 @@ ], [ "variant", - "?41-last" + "?41-45" + ], + [ + "variant", + "?46-last" ] ], "timeout": "long" } ], [ - "fledge/tentative/trusted-scoring-signals.https.window.html?21-25", + "fledge/tentative/no-winner.https.window.html?11-15", { "script_metadata": [ [ @@ -609159,14 +626321,18 @@ ], [ "variant", - "?41-last" + "?41-45" + ], + [ + "variant", + "?46-last" ] ], "timeout": "long" } ], [ - "fledge/tentative/trusted-scoring-signals.https.window.html?26-30", + "fledge/tentative/no-winner.https.window.html?16-20", { "script_metadata": [ [ @@ -609223,14 +626389,18 @@ ], [ "variant", - "?41-last" + "?41-45" + ], + [ + "variant", + "?46-last" ] ], "timeout": "long" } ], [ - "fledge/tentative/trusted-scoring-signals.https.window.html?31-35", + "fledge/tentative/no-winner.https.window.html?21-25", { "script_metadata": [ [ @@ -609287,14 +626457,18 @@ ], [ "variant", - "?41-last" + "?41-45" + ], + [ + "variant", + "?46-last" ] ], "timeout": "long" } ], [ - "fledge/tentative/trusted-scoring-signals.https.window.html?36-40", + "fledge/tentative/no-winner.https.window.html?26-30", { "script_metadata": [ [ @@ -609351,14 +626525,18 @@ ], [ "variant", - "?41-last" + "?41-45" + ], + [ + "variant", + "?46-last" ] ], "timeout": "long" } ], [ - "fledge/tentative/trusted-scoring-signals.https.window.html?41-last", + "fledge/tentative/no-winner.https.window.html?31-35", { "script_metadata": [ [ @@ -609415,14 +626593,18 @@ ], [ "variant", - "?41-last" + "?41-45" + ], + [ + "variant", + "?46-last" ] ], "timeout": "long" } ], [ - "fledge/tentative/trusted-scoring-signals.https.window.html?6-10", + "fledge/tentative/no-winner.https.window.html?36-40", { "script_metadata": [ [ @@ -609479,622 +626661,3598 @@ ], [ "variant", - "?41-last" + "?41-45" + ], + [ + "variant", + "?46-last" ] ], "timeout": "long" } - ] - ] - } - }, - "focus": { - "activeelement-after-calling-window-focus.sub.html": [ - "34579fb2a6301bacdc5e069e214d833f59564c59", - [ - null, - { - "timeout": "long" - } - ] - ], - "activeelement-after-focusing-different-site-iframe-contentwindow.html": [ - "b16280acbd7a85abb183d6c23c7508f6ce2fe17f", - [ - null, - {} - ] - ], - "activeelement-after-focusing-different-site-iframe-then-immediately-focusing-back.html": [ - "b2385705bc66717c5c0faf7a3dfd8de54e32813c", - [ - null, - {} - ] - ], - "activeelement-after-focusing-different-site-iframe.html": [ - "b974252555aebad45c2be1855b5dfdedc0d38618", - [ - null, - {} - ] - ], - "activeelement-after-focusing-same-site-iframe-contentwindow.html": [ - "b4a14e721f8df6eab6a6a4ca3988a32718c673fa", - [ - null, - {} - ] - ], - "activeelement-after-focusing-same-site-iframe.html": [ - "55918ebf07f06a91074c1ea0e9b450626d698585", - [ - null, - {} - ] - ], - "activeelement-after-immediately-focusing-different-site-iframe-contentwindow.html": [ - "8c3a9d119576aaca24209f938b989fb920329648", - [ - null, - {} - ] - ], - "activeelement-after-immediately-focusing-different-site-iframe.html": [ - "67bf733bc1e63362bea444a2009da8fb9c0c6aa4", - [ - null, - {} - ] - ], - "activeelement-after-immediately-focusing-same-site-iframe-contentwindow.html": [ - "2f6a8ac853c029cb6e6ea74fa20e084717b0e406", - [ - null, - {} - ] - ], - "activeelement-after-immediately-focusing-same-site-iframe.html": [ - "a035af072d3074ec960d63f12c678a6abafbf54f", - [ - null, - {} - ] - ], - "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-centers-element.html": [ - "49b9d52b8511bf92797ae36923d09f76170e3112", - [ - null, - {} - ] - ], - "focus-event-after-focusing-iframes.html": [ - "f2aa2233e560eb6e73b20fe753386ef74ac282e7", - [ - null, - {} - ] - ], - "focus-event-after-iframe-gets-focus.html": [ - "bb2e8954209ee99ad0a683f0ab9d57fd2d878f73", - [ - null, - {} - ] - ], - "focus-restoration-in-different-site-iframes-window.html": [ - "61e604b3c77010866e54507211b6c57d84bc781a", - [ - null, - {} - ] - ], - "focus-restoration-in-different-site-iframes.html": [ - "3861347fe630e972e16941785d322cd6a5e0c425", - [ - null, - {} - ] - ], - "focus-restoration-in-same-site-iframes-window.html": [ - "46be5eb600146f1e882c2e7e9c8bddd6e752d264", - [ - null, - {} - ] - ], - "hasfocus-different-site.html": [ - "4495778c81b5c3396be8fbca741ab74f06a6d799", - [ - null, - {} - ] - ], - "hasfocus-same-site.html": [ - "71a2e0f4edaadaabea922b2e571e511e93bc8221", - [ - null, - {} - ] - ], - "iframe-activeelement-after-focusing-out-iframes.html": [ - "832b2675e2543813bc130295ceac976ff49c9128", - [ - null, - {} - ] - ], - "iframe-contentwindow-focus-with-different-site-intermediate-frame.html": [ - "2fdc8e843a1c4de8d613689afeb31d4a451ea976", - [ - null, - {} - ] - ], - "iframe-contentwindow-focus-with-same-as-top-intermediate-frame.html": [ - "cb9239f44d893e0f27342bd7300d40f54f49c892", - [ - null, - {} - ] - ], - "iframe-focus-with-different-site-intermediate-frame.html": [ - "fd3aab70579ef04bb9df6d95413a307e55e07643", - [ - null, - {} - ] - ], - "iframe-focus-with-same-as-top-intermediate-frame.html": [ - "b4763f9e2fae085eab5d8c0bddc89ecefd5f4cbf", - [ - null, - {} - ] - ], - "iframe-focuses-parent-different-site.html": [ - "8a0b5ecca012309974cd4069fd2ec3eafdd15ea7", - [ - null, - {} - ] - ], - "iframe-focuses-parent-same-site.html": [ - "f130410e2a1b4cbc1e3d96fb14cbca7f5be2e8ea", - [ - null, - {} - ] - ], - "scroll-matches-focus.html": [ - "46a58fdf974f53129b62dc1d05f965f02631417b", - [ - null, - {} - ] - ] - }, - "font-access": { - "font_access_basic.tentative.https.window.js": [ - "4e714dcf5c972cea9223cff638a428ace69f717a", - [ - "font-access/font_access_basic.tentative.https.window.html", - { - "script_metadata": [ - [ - "script", - "/resources/testdriver.js" - ], - [ - "script", - "/resources/testdriver-vendor.js" - ], - [ - "script", - "resources/font-asserts.js" - ], - [ - "script", - "resources/font-data.js" - ], - [ - "script", - "resources/font-test-utils.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ] - ], - "font_access_blob.tentative.https.window.js": [ - "16691d0ab55ebb0097f30310b8ca109e551ff1e2", - [ - "font-access/font_access_blob.tentative.https.window.html", - { - "script_metadata": [ - [ - "script", - "/resources/testdriver.js" - ], - [ - "script", - "/resources/testdriver-vendor.js" - ], - [ - "script", - "resources/font-asserts.js" - ], - [ - "script", - "resources/font-data.js" - ], - [ - "script", - "resources/font-test-utils.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ] - ], - "font_access_detached_iframe.tentative.https.window.js": [ - "ca8171aec037ed0dd317ce49045612b3e5cee11d", - [ - "font-access/font_access_detached_iframe.tentative.https.window.html", - { - "script_metadata": [ - [ - "script", - "/resources/testdriver.js" - ], - [ - "script", - "/resources/testdriver-vendor.js" - ], - [ - "script", - "resources/font-test-utils.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ] - ], - "font_access_permission.tentative.https.window.js": [ - "fbd0d1d885b7faebaafbbaf2ee4ca011145aeda1", - [ - "font-access/font_access_permission.tentative.https.window.html", - { - "script_metadata": [ - [ - "script", - "/resources/testdriver.js" - ], - [ - "script", - "/resources/testdriver-vendor.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ] - ], - "font_access_query_select.tentative.https.window.js": [ - "df89ea7938bc571d0501a79ce660b784aa2cdab9", - [ - "font-access/font_access_query_select.tentative.https.window.html", - { - "script_metadata": [ - [ - "script", - "/resources/testdriver.js" + ], + [ + "fledge/tentative/no-winner.https.window.html?41-45", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "resources/fledge-util.sub.js" + ], + [ + "script", + "/common/subset-tests.js" + ], + [ + "timeout", + "long" + ], + [ + "variant", + "?1-5" + ], + [ + "variant", + "?6-10" + ], + [ + "variant", + "?11-15" + ], + [ + "variant", + "?16-20" + ], + [ + "variant", + "?21-25" + ], + [ + "variant", + "?26-30" + ], + [ + "variant", + "?31-35" + ], + [ + "variant", + "?36-40" + ], + [ + "variant", + "?41-45" + ], + [ + "variant", + "?46-last" + ] ], - [ - "script", - "/resources/testdriver-vendor.js" + "timeout": "long" + } + ], + [ + "fledge/tentative/no-winner.https.window.html?46-last", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "resources/fledge-util.sub.js" + ], + [ + "script", + "/common/subset-tests.js" + ], + [ + "timeout", + "long" + ], + [ + "variant", + "?1-5" + ], + [ + "variant", + "?6-10" + ], + [ + "variant", + "?11-15" + ], + [ + "variant", + "?16-20" + ], + [ + "variant", + "?21-25" + ], + [ + "variant", + "?26-30" + ], + [ + "variant", + "?31-35" + ], + [ + "variant", + "?36-40" + ], + [ + "variant", + "?41-45" + ], + [ + "variant", + "?46-last" + ] ], - [ - "script", - "resources/font-asserts.js" + "timeout": "long" + } + ], + [ + "fledge/tentative/no-winner.https.window.html?6-10", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "resources/fledge-util.sub.js" + ], + [ + "script", + "/common/subset-tests.js" + ], + [ + "timeout", + "long" + ], + [ + "variant", + "?1-5" + ], + [ + "variant", + "?6-10" + ], + [ + "variant", + "?11-15" + ], + [ + "variant", + "?16-20" + ], + [ + "variant", + "?21-25" + ], + [ + "variant", + "?26-30" + ], + [ + "variant", + "?31-35" + ], + [ + "variant", + "?36-40" + ], + [ + "variant", + "?41-45" + ], + [ + "variant", + "?46-last" + ] ], - [ - "script", - "resources/font-data.js" + "timeout": "long" + } + ] + ], + "register-ad-beacon.https.window.js": [ + "3643e4466277144a389b08d3f029f294aa0a4480", + [ + "fledge/tentative/register-ad-beacon.https.window.html?1-5", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "resources/fledge-util.sub.js" + ], + [ + "script", + "/common/subset-tests.js" + ], + [ + "timeout", + "long" + ], + [ + "variant", + "?1-5" + ], + [ + "variant", + "?6-10" + ], + [ + "variant", + "?11-last" + ] ], - [ - "script", - "resources/font-test-utils.js" + "timeout": "long" + } + ], + [ + "fledge/tentative/register-ad-beacon.https.window.html?11-last", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "resources/fledge-util.sub.js" + ], + [ + "script", + "/common/subset-tests.js" + ], + [ + "timeout", + "long" + ], + [ + "variant", + "?1-5" + ], + [ + "variant", + "?6-10" + ], + [ + "variant", + "?11-last" + ] ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ] - ], - "font_access_sorted.tentative.https.window.js": [ - "4391c9270cc6dff709e248167c9c91a498f90c65", - [ - "font-access/font_access_sorted.tentative.https.window.html", - { - "script_metadata": [ - [ - "script", - "/resources/testdriver.js" + "timeout": "long" + } + ], + [ + "fledge/tentative/register-ad-beacon.https.window.html?6-10", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "resources/fledge-util.sub.js" + ], + [ + "script", + "/common/subset-tests.js" + ], + [ + "timeout", + "long" + ], + [ + "variant", + "?1-5" + ], + [ + "variant", + "?6-10" + ], + [ + "variant", + "?11-last" + ] ], - [ - "script", - "/resources/testdriver-vendor.js" + "timeout": "long" + } + ] + ], + "reporting-arguments.https.window.js": [ + "db6ef2d35a5fff6b2ab405c78b5200427b9c8717", + [ + "fledge/tentative/reporting-arguments.https.window.html?1-5", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "resources/fledge-util.sub.js" + ], + [ + "script", + "/common/subset-tests.js" + ], + [ + "timeout", + "long" + ], + [ + "variant", + "?1-5" + ], + [ + "variant", + "?6-10" + ], + [ + "variant", + "?11-15" + ], + [ + "variant", + "?16-last" + ] ], - [ - "script", - "resources/font-asserts.js" + "timeout": "long" + } + ], + [ + "fledge/tentative/reporting-arguments.https.window.html?11-15", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "resources/fledge-util.sub.js" + ], + [ + "script", + "/common/subset-tests.js" + ], + [ + "timeout", + "long" + ], + [ + "variant", + "?1-5" + ], + [ + "variant", + "?6-10" + ], + [ + "variant", + "?11-15" + ], + [ + "variant", + "?16-last" + ] ], - [ - "script", - "resources/font-test-utils.js" + "timeout": "long" + } + ], + [ + "fledge/tentative/reporting-arguments.https.window.html?16-last", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "resources/fledge-util.sub.js" + ], + [ + "script", + "/common/subset-tests.js" + ], + [ + "timeout", + "long" + ], + [ + "variant", + "?1-5" + ], + [ + "variant", + "?6-10" + ], + [ + "variant", + "?11-15" + ], + [ + "variant", + "?16-last" + ] ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ] - ], - "permissions-policy": { - "local-fonts-allowed-by-permissions-policy-attribute-redirect-on-load.https.sub.html": [ - "d829cc4a3b23a06eb464226d53cb40905006887e", + "timeout": "long" + } + ], [ - null, + "fledge/tentative/reporting-arguments.https.window.html?6-10", { - "testdriver": true + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "resources/fledge-util.sub.js" + ], + [ + "script", + "/common/subset-tests.js" + ], + [ + "timeout", + "long" + ], + [ + "variant", + "?1-5" + ], + [ + "variant", + "?6-10" + ], + [ + "variant", + "?11-15" + ], + [ + "variant", + "?16-last" + ] + ], + "timeout": "long" } ] ], - "local-fonts-allowed-by-permissions-policy-attribute.https.sub.html": [ - "ba802606a1fc931d9c721d03df1199b05c69e32d", + "round-a-value.https.window.js": [ + "90523e2256c3a5582ef188d41ab0adcc107ffd93", [ - null, + "fledge/tentative/round-a-value.https.window.html", { - "testdriver": true + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "resources/fledge-util.sub.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" } ] ], - "local-fonts-allowed-by-permissions-policy.https.sub.html": [ - "4f63b6e01390d37663bbe48d1b7c9087c8797858", + "score-ad-browser-signals.https.window.js": [ + "f20412cfc7857279ff7aabfbfd68d825be5d8051", [ - null, + "fledge/tentative/score-ad-browser-signals.https.window.html", { - "testdriver": true, + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "resources/fledge-util.sub.js" + ], + [ + "script", + "/common/subset-tests.js" + ], + [ + "timeout", + "long" + ] + ], "timeout": "long" } ] ], - "local-fonts-default-permissions-policy.https.sub.html": [ - "c0cfdc070d295887f6bb3a551ffb3634049912c2", + "send-report-to.https.window.js": [ + "e3cf0a95f17c171444d79a2b0f16d0fe1f1acbd4", [ - null, + "fledge/tentative/send-report-to.https.window.html?1-5", { - "testdriver": true, + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "resources/fledge-util.sub.js" + ], + [ + "script", + "/common/subset-tests.js" + ], + [ + "timeout", + "long" + ], + [ + "variant", + "?1-5" + ], + [ + "variant", + "?6-last" + ] + ], "timeout": "long" } - ] - ], - "local-fonts-disabled-by-permissions-policy.https.sub.html": [ - "c9912c6dc3b7d73311d9b71586b198df7cc8b1fe", + ], [ - null, + "fledge/tentative/send-report-to.https.window.html?6-last", { - "testdriver": true, + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "resources/fledge-util.sub.js" + ], + [ + "script", + "/common/subset-tests.js" + ], + [ + "timeout", + "long" + ], + [ + "variant", + "?1-5" + ], + [ + "variant", + "?6-last" + ] + ], "timeout": "long" } ] ], - "local-fonts-supported-by-permissions-policy.html": [ - "671c0fa5392b566a076d1f1b3f8ffa986c0dacd8", + "tie.https.window.js": [ + "c87d10f2016fa94d6a1e722fa9dfe1d3bb5c4def", [ - null, - {} - ] - ] - } - }, - "forced-colors-mode": { - "forced-colors-mode-03.html": [ - "9e28c4fdb13211e108fe0c81c0f3957041695c81", - [ - null, - {} - ] - ], - "forced-colors-mode-09.html": [ - "16ca8a46104d06153b3e9bbd920d3187b0a7fa00", - [ - null, - {} - ] - ], - "forced-colors-mode-10.html": [ - "765013d9134cd0d901108d14c05610229ae0441a", - [ - null, - {} - ] - ], - "forced-colors-mode-11.html": [ - "5fa8ba4524adba8b6acde49efa3377131597bb76", - [ - null, - {} - ] - ], - "forced-colors-mode-20.html": [ - "b0cf9e2b49245d3a0298d0b06b89bc7a23428dc5", - [ - null, - {} - ] - ], - "forced-colors-mode-21.html": [ - "975bfc6d09f49c220baded3f7e09607bd2f9a828", - [ - null, - {} - ] - ], - "forced-colors-mode-27.html": [ - "5a42f947adcac841cc00be7a233ea2fbd94828c8", - [ - null, - {} - ] - ], - "forced-colors-mode-40.html": [ - "481492d72e917a5b235b1aa55818519232ef32c1", - [ - null, - {} - ] - ], - "forced-colors-mode-41.html": [ - "7b616c963d5909fb3688ae4bc692d165df950421", - [ - null, - {} - ] - ], - "forced-colors-mode-50.html": [ - "42957248b4efd08eb8a3c25d24610090859cb20c", - [ - null, - {} - ] - ], - "forced-colors-mode-51.html": [ - "02577144323136277dd71fa86115855024dd20d7", - [ - null, - {} - ] - ], - "forced-colors-mode-54.html": [ - "0a770f78f30938af974b0a0203fb951d754bfa08", - [ - null, - {} - ] - ] - }, - "fs": { - "FileSystemBaseHandle-IndexedDB.https.any.js": [ - "9e67fe88028210eba24cbc18ddcd40027acca492", - [ - "fs/FileSystemBaseHandle-IndexedDB.https.any.html", - { - "script_metadata": [ - [ - "script", - "resources/test-helpers.js" - ], - [ - "script", - "resources/sandboxed-fs-test-helpers.js" - ], - [ - "script", - "resources/messaging-helpers.js" - ], - [ - "script", - "resources/messaging-serialize-helpers.js" - ], - [ - "script", - "/IndexedDB/resources/support-promises.js" + "fledge/tentative/tie.https.window.html", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "resources/fledge-util.sub.js" + ], + [ + "timeout", + "long" + ] ], - [ - "script", - "script-tests/FileSystemBaseHandle-IndexedDB.js" - ] - ] - } + "timeout": "long" + } + ] ], - [ - "fs/FileSystemBaseHandle-IndexedDB.https.any.worker.html", - { - "script_metadata": [ - [ - "script", - "resources/test-helpers.js" - ], - [ - "script", - "resources/sandboxed-fs-test-helpers.js" - ], - [ - "script", - "resources/messaging-helpers.js" - ], - [ - "script", - "resources/messaging-serialize-helpers.js" - ], - [ - "script", - "/IndexedDB/resources/support-promises.js" - ], - [ - "script", - "script-tests/FileSystemBaseHandle-IndexedDB.js" - ] + "trusted-bidding-signals.https.window.js": [ + "205c6895a06b3235ef3d448d16fad85743d14e31", + [ + "fledge/tentative/trusted-bidding-signals.https.window.html?1-5", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "/common/subset-tests.js" + ], + [ + "script", + "resources/fledge-util.sub.js" + ], + [ + "timeout", + "long" + ], + [ + "variant", + "?1-5" + ], + [ + "variant", + "?6-10" + ], + [ + "variant", + "?11-15" + ], + [ + "variant", + "?16-20" + ], + [ + "variant", + "?21-25" + ], + [ + "variant", + "?26-30" + ], + [ + "variant", + "?31-35" + ], + [ + "variant", + "?36-40" + ], + [ + "variant", + "?41-45" + ], + [ + "variant", + "?46-50" + ], + [ + "variant", + "?51-55" + ], + [ + "variant", + "?56-60" + ], + [ + "variant", + "?61-65" + ], + [ + "variant", + "?66-70" + ], + [ + "variant", + "?71-75" + ], + [ + "variant", + "?76-last" + ] + ], + "timeout": "long" + } + ], + [ + "fledge/tentative/trusted-bidding-signals.https.window.html?11-15", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "/common/subset-tests.js" + ], + [ + "script", + "resources/fledge-util.sub.js" + ], + [ + "timeout", + "long" + ], + [ + "variant", + "?1-5" + ], + [ + "variant", + "?6-10" + ], + [ + "variant", + "?11-15" + ], + [ + "variant", + "?16-20" + ], + [ + "variant", + "?21-25" + ], + [ + "variant", + "?26-30" + ], + [ + "variant", + "?31-35" + ], + [ + "variant", + "?36-40" + ], + [ + "variant", + "?41-45" + ], + [ + "variant", + "?46-50" + ], + [ + "variant", + "?51-55" + ], + [ + "variant", + "?56-60" + ], + [ + "variant", + "?61-65" + ], + [ + "variant", + "?66-70" + ], + [ + "variant", + "?71-75" + ], + [ + "variant", + "?76-last" + ] + ], + "timeout": "long" + } + ], + [ + "fledge/tentative/trusted-bidding-signals.https.window.html?16-20", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "/common/subset-tests.js" + ], + [ + "script", + "resources/fledge-util.sub.js" + ], + [ + "timeout", + "long" + ], + [ + "variant", + "?1-5" + ], + [ + "variant", + "?6-10" + ], + [ + "variant", + "?11-15" + ], + [ + "variant", + "?16-20" + ], + [ + "variant", + "?21-25" + ], + [ + "variant", + "?26-30" + ], + [ + "variant", + "?31-35" + ], + [ + "variant", + "?36-40" + ], + [ + "variant", + "?41-45" + ], + [ + "variant", + "?46-50" + ], + [ + "variant", + "?51-55" + ], + [ + "variant", + "?56-60" + ], + [ + "variant", + "?61-65" + ], + [ + "variant", + "?66-70" + ], + [ + "variant", + "?71-75" + ], + [ + "variant", + "?76-last" + ] + ], + "timeout": "long" + } + ], + [ + "fledge/tentative/trusted-bidding-signals.https.window.html?21-25", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "/common/subset-tests.js" + ], + [ + "script", + "resources/fledge-util.sub.js" + ], + [ + "timeout", + "long" + ], + [ + "variant", + "?1-5" + ], + [ + "variant", + "?6-10" + ], + [ + "variant", + "?11-15" + ], + [ + "variant", + "?16-20" + ], + [ + "variant", + "?21-25" + ], + [ + "variant", + "?26-30" + ], + [ + "variant", + "?31-35" + ], + [ + "variant", + "?36-40" + ], + [ + "variant", + "?41-45" + ], + [ + "variant", + "?46-50" + ], + [ + "variant", + "?51-55" + ], + [ + "variant", + "?56-60" + ], + [ + "variant", + "?61-65" + ], + [ + "variant", + "?66-70" + ], + [ + "variant", + "?71-75" + ], + [ + "variant", + "?76-last" + ] + ], + "timeout": "long" + } + ], + [ + "fledge/tentative/trusted-bidding-signals.https.window.html?26-30", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "/common/subset-tests.js" + ], + [ + "script", + "resources/fledge-util.sub.js" + ], + [ + "timeout", + "long" + ], + [ + "variant", + "?1-5" + ], + [ + "variant", + "?6-10" + ], + [ + "variant", + "?11-15" + ], + [ + "variant", + "?16-20" + ], + [ + "variant", + "?21-25" + ], + [ + "variant", + "?26-30" + ], + [ + "variant", + "?31-35" + ], + [ + "variant", + "?36-40" + ], + [ + "variant", + "?41-45" + ], + [ + "variant", + "?46-50" + ], + [ + "variant", + "?51-55" + ], + [ + "variant", + "?56-60" + ], + [ + "variant", + "?61-65" + ], + [ + "variant", + "?66-70" + ], + [ + "variant", + "?71-75" + ], + [ + "variant", + "?76-last" + ] + ], + "timeout": "long" + } + ], + [ + "fledge/tentative/trusted-bidding-signals.https.window.html?31-35", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "/common/subset-tests.js" + ], + [ + "script", + "resources/fledge-util.sub.js" + ], + [ + "timeout", + "long" + ], + [ + "variant", + "?1-5" + ], + [ + "variant", + "?6-10" + ], + [ + "variant", + "?11-15" + ], + [ + "variant", + "?16-20" + ], + [ + "variant", + "?21-25" + ], + [ + "variant", + "?26-30" + ], + [ + "variant", + "?31-35" + ], + [ + "variant", + "?36-40" + ], + [ + "variant", + "?41-45" + ], + [ + "variant", + "?46-50" + ], + [ + "variant", + "?51-55" + ], + [ + "variant", + "?56-60" + ], + [ + "variant", + "?61-65" + ], + [ + "variant", + "?66-70" + ], + [ + "variant", + "?71-75" + ], + [ + "variant", + "?76-last" + ] + ], + "timeout": "long" + } + ], + [ + "fledge/tentative/trusted-bidding-signals.https.window.html?36-40", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "/common/subset-tests.js" + ], + [ + "script", + "resources/fledge-util.sub.js" + ], + [ + "timeout", + "long" + ], + [ + "variant", + "?1-5" + ], + [ + "variant", + "?6-10" + ], + [ + "variant", + "?11-15" + ], + [ + "variant", + "?16-20" + ], + [ + "variant", + "?21-25" + ], + [ + "variant", + "?26-30" + ], + [ + "variant", + "?31-35" + ], + [ + "variant", + "?36-40" + ], + [ + "variant", + "?41-45" + ], + [ + "variant", + "?46-50" + ], + [ + "variant", + "?51-55" + ], + [ + "variant", + "?56-60" + ], + [ + "variant", + "?61-65" + ], + [ + "variant", + "?66-70" + ], + [ + "variant", + "?71-75" + ], + [ + "variant", + "?76-last" + ] + ], + "timeout": "long" + } + ], + [ + "fledge/tentative/trusted-bidding-signals.https.window.html?41-45", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "/common/subset-tests.js" + ], + [ + "script", + "resources/fledge-util.sub.js" + ], + [ + "timeout", + "long" + ], + [ + "variant", + "?1-5" + ], + [ + "variant", + "?6-10" + ], + [ + "variant", + "?11-15" + ], + [ + "variant", + "?16-20" + ], + [ + "variant", + "?21-25" + ], + [ + "variant", + "?26-30" + ], + [ + "variant", + "?31-35" + ], + [ + "variant", + "?36-40" + ], + [ + "variant", + "?41-45" + ], + [ + "variant", + "?46-50" + ], + [ + "variant", + "?51-55" + ], + [ + "variant", + "?56-60" + ], + [ + "variant", + "?61-65" + ], + [ + "variant", + "?66-70" + ], + [ + "variant", + "?71-75" + ], + [ + "variant", + "?76-last" + ] + ], + "timeout": "long" + } + ], + [ + "fledge/tentative/trusted-bidding-signals.https.window.html?46-50", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "/common/subset-tests.js" + ], + [ + "script", + "resources/fledge-util.sub.js" + ], + [ + "timeout", + "long" + ], + [ + "variant", + "?1-5" + ], + [ + "variant", + "?6-10" + ], + [ + "variant", + "?11-15" + ], + [ + "variant", + "?16-20" + ], + [ + "variant", + "?21-25" + ], + [ + "variant", + "?26-30" + ], + [ + "variant", + "?31-35" + ], + [ + "variant", + "?36-40" + ], + [ + "variant", + "?41-45" + ], + [ + "variant", + "?46-50" + ], + [ + "variant", + "?51-55" + ], + [ + "variant", + "?56-60" + ], + [ + "variant", + "?61-65" + ], + [ + "variant", + "?66-70" + ], + [ + "variant", + "?71-75" + ], + [ + "variant", + "?76-last" + ] + ], + "timeout": "long" + } + ], + [ + "fledge/tentative/trusted-bidding-signals.https.window.html?51-55", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "/common/subset-tests.js" + ], + [ + "script", + "resources/fledge-util.sub.js" + ], + [ + "timeout", + "long" + ], + [ + "variant", + "?1-5" + ], + [ + "variant", + "?6-10" + ], + [ + "variant", + "?11-15" + ], + [ + "variant", + "?16-20" + ], + [ + "variant", + "?21-25" + ], + [ + "variant", + "?26-30" + ], + [ + "variant", + "?31-35" + ], + [ + "variant", + "?36-40" + ], + [ + "variant", + "?41-45" + ], + [ + "variant", + "?46-50" + ], + [ + "variant", + "?51-55" + ], + [ + "variant", + "?56-60" + ], + [ + "variant", + "?61-65" + ], + [ + "variant", + "?66-70" + ], + [ + "variant", + "?71-75" + ], + [ + "variant", + "?76-last" + ] + ], + "timeout": "long" + } + ], + [ + "fledge/tentative/trusted-bidding-signals.https.window.html?56-60", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "/common/subset-tests.js" + ], + [ + "script", + "resources/fledge-util.sub.js" + ], + [ + "timeout", + "long" + ], + [ + "variant", + "?1-5" + ], + [ + "variant", + "?6-10" + ], + [ + "variant", + "?11-15" + ], + [ + "variant", + "?16-20" + ], + [ + "variant", + "?21-25" + ], + [ + "variant", + "?26-30" + ], + [ + "variant", + "?31-35" + ], + [ + "variant", + "?36-40" + ], + [ + "variant", + "?41-45" + ], + [ + "variant", + "?46-50" + ], + [ + "variant", + "?51-55" + ], + [ + "variant", + "?56-60" + ], + [ + "variant", + "?61-65" + ], + [ + "variant", + "?66-70" + ], + [ + "variant", + "?71-75" + ], + [ + "variant", + "?76-last" + ] + ], + "timeout": "long" + } + ], + [ + "fledge/tentative/trusted-bidding-signals.https.window.html?6-10", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "/common/subset-tests.js" + ], + [ + "script", + "resources/fledge-util.sub.js" + ], + [ + "timeout", + "long" + ], + [ + "variant", + "?1-5" + ], + [ + "variant", + "?6-10" + ], + [ + "variant", + "?11-15" + ], + [ + "variant", + "?16-20" + ], + [ + "variant", + "?21-25" + ], + [ + "variant", + "?26-30" + ], + [ + "variant", + "?31-35" + ], + [ + "variant", + "?36-40" + ], + [ + "variant", + "?41-45" + ], + [ + "variant", + "?46-50" + ], + [ + "variant", + "?51-55" + ], + [ + "variant", + "?56-60" + ], + [ + "variant", + "?61-65" + ], + [ + "variant", + "?66-70" + ], + [ + "variant", + "?71-75" + ], + [ + "variant", + "?76-last" + ] + ], + "timeout": "long" + } + ], + [ + "fledge/tentative/trusted-bidding-signals.https.window.html?61-65", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "/common/subset-tests.js" + ], + [ + "script", + "resources/fledge-util.sub.js" + ], + [ + "timeout", + "long" + ], + [ + "variant", + "?1-5" + ], + [ + "variant", + "?6-10" + ], + [ + "variant", + "?11-15" + ], + [ + "variant", + "?16-20" + ], + [ + "variant", + "?21-25" + ], + [ + "variant", + "?26-30" + ], + [ + "variant", + "?31-35" + ], + [ + "variant", + "?36-40" + ], + [ + "variant", + "?41-45" + ], + [ + "variant", + "?46-50" + ], + [ + "variant", + "?51-55" + ], + [ + "variant", + "?56-60" + ], + [ + "variant", + "?61-65" + ], + [ + "variant", + "?66-70" + ], + [ + "variant", + "?71-75" + ], + [ + "variant", + "?76-last" + ] + ], + "timeout": "long" + } + ], + [ + "fledge/tentative/trusted-bidding-signals.https.window.html?66-70", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "/common/subset-tests.js" + ], + [ + "script", + "resources/fledge-util.sub.js" + ], + [ + "timeout", + "long" + ], + [ + "variant", + "?1-5" + ], + [ + "variant", + "?6-10" + ], + [ + "variant", + "?11-15" + ], + [ + "variant", + "?16-20" + ], + [ + "variant", + "?21-25" + ], + [ + "variant", + "?26-30" + ], + [ + "variant", + "?31-35" + ], + [ + "variant", + "?36-40" + ], + [ + "variant", + "?41-45" + ], + [ + "variant", + "?46-50" + ], + [ + "variant", + "?51-55" + ], + [ + "variant", + "?56-60" + ], + [ + "variant", + "?61-65" + ], + [ + "variant", + "?66-70" + ], + [ + "variant", + "?71-75" + ], + [ + "variant", + "?76-last" + ] + ], + "timeout": "long" + } + ], + [ + "fledge/tentative/trusted-bidding-signals.https.window.html?71-75", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "/common/subset-tests.js" + ], + [ + "script", + "resources/fledge-util.sub.js" + ], + [ + "timeout", + "long" + ], + [ + "variant", + "?1-5" + ], + [ + "variant", + "?6-10" + ], + [ + "variant", + "?11-15" + ], + [ + "variant", + "?16-20" + ], + [ + "variant", + "?21-25" + ], + [ + "variant", + "?26-30" + ], + [ + "variant", + "?31-35" + ], + [ + "variant", + "?36-40" + ], + [ + "variant", + "?41-45" + ], + [ + "variant", + "?46-50" + ], + [ + "variant", + "?51-55" + ], + [ + "variant", + "?56-60" + ], + [ + "variant", + "?61-65" + ], + [ + "variant", + "?66-70" + ], + [ + "variant", + "?71-75" + ], + [ + "variant", + "?76-last" + ] + ], + "timeout": "long" + } + ], + [ + "fledge/tentative/trusted-bidding-signals.https.window.html?76-last", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "/common/subset-tests.js" + ], + [ + "script", + "resources/fledge-util.sub.js" + ], + [ + "timeout", + "long" + ], + [ + "variant", + "?1-5" + ], + [ + "variant", + "?6-10" + ], + [ + "variant", + "?11-15" + ], + [ + "variant", + "?16-20" + ], + [ + "variant", + "?21-25" + ], + [ + "variant", + "?26-30" + ], + [ + "variant", + "?31-35" + ], + [ + "variant", + "?36-40" + ], + [ + "variant", + "?41-45" + ], + [ + "variant", + "?46-50" + ], + [ + "variant", + "?51-55" + ], + [ + "variant", + "?56-60" + ], + [ + "variant", + "?61-65" + ], + [ + "variant", + "?66-70" + ], + [ + "variant", + "?71-75" + ], + [ + "variant", + "?76-last" + ] + ], + "timeout": "long" + } + ] + ], + "trusted-scoring-signals.https.window.js": [ + "46570da3e41a26dac8d7fb3e2007d8a7df87b51c", + [ + "fledge/tentative/trusted-scoring-signals.https.window.html?1-5", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "resources/fledge-util.sub.js" + ], + [ + "script", + "/common/subset-tests.js" + ], + [ + "timeout", + "long" + ], + [ + "variant", + "?1-5" + ], + [ + "variant", + "?6-10" + ], + [ + "variant", + "?11-15" + ], + [ + "variant", + "?16-20" + ], + [ + "variant", + "?21-25" + ], + [ + "variant", + "?26-30" + ], + [ + "variant", + "?31-35" + ], + [ + "variant", + "?36-40" + ], + [ + "variant", + "?41-45" + ], + [ + "variant", + "?45-50" + ], + [ + "variant", + "?50-last" + ] + ], + "timeout": "long" + } + ], + [ + "fledge/tentative/trusted-scoring-signals.https.window.html?11-15", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "resources/fledge-util.sub.js" + ], + [ + "script", + "/common/subset-tests.js" + ], + [ + "timeout", + "long" + ], + [ + "variant", + "?1-5" + ], + [ + "variant", + "?6-10" + ], + [ + "variant", + "?11-15" + ], + [ + "variant", + "?16-20" + ], + [ + "variant", + "?21-25" + ], + [ + "variant", + "?26-30" + ], + [ + "variant", + "?31-35" + ], + [ + "variant", + "?36-40" + ], + [ + "variant", + "?41-45" + ], + [ + "variant", + "?45-50" + ], + [ + "variant", + "?50-last" + ] + ], + "timeout": "long" + } + ], + [ + "fledge/tentative/trusted-scoring-signals.https.window.html?16-20", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "resources/fledge-util.sub.js" + ], + [ + "script", + "/common/subset-tests.js" + ], + [ + "timeout", + "long" + ], + [ + "variant", + "?1-5" + ], + [ + "variant", + "?6-10" + ], + [ + "variant", + "?11-15" + ], + [ + "variant", + "?16-20" + ], + [ + "variant", + "?21-25" + ], + [ + "variant", + "?26-30" + ], + [ + "variant", + "?31-35" + ], + [ + "variant", + "?36-40" + ], + [ + "variant", + "?41-45" + ], + [ + "variant", + "?45-50" + ], + [ + "variant", + "?50-last" + ] + ], + "timeout": "long" + } + ], + [ + "fledge/tentative/trusted-scoring-signals.https.window.html?21-25", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "resources/fledge-util.sub.js" + ], + [ + "script", + "/common/subset-tests.js" + ], + [ + "timeout", + "long" + ], + [ + "variant", + "?1-5" + ], + [ + "variant", + "?6-10" + ], + [ + "variant", + "?11-15" + ], + [ + "variant", + "?16-20" + ], + [ + "variant", + "?21-25" + ], + [ + "variant", + "?26-30" + ], + [ + "variant", + "?31-35" + ], + [ + "variant", + "?36-40" + ], + [ + "variant", + "?41-45" + ], + [ + "variant", + "?45-50" + ], + [ + "variant", + "?50-last" + ] + ], + "timeout": "long" + } + ], + [ + "fledge/tentative/trusted-scoring-signals.https.window.html?26-30", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "resources/fledge-util.sub.js" + ], + [ + "script", + "/common/subset-tests.js" + ], + [ + "timeout", + "long" + ], + [ + "variant", + "?1-5" + ], + [ + "variant", + "?6-10" + ], + [ + "variant", + "?11-15" + ], + [ + "variant", + "?16-20" + ], + [ + "variant", + "?21-25" + ], + [ + "variant", + "?26-30" + ], + [ + "variant", + "?31-35" + ], + [ + "variant", + "?36-40" + ], + [ + "variant", + "?41-45" + ], + [ + "variant", + "?45-50" + ], + [ + "variant", + "?50-last" + ] + ], + "timeout": "long" + } + ], + [ + "fledge/tentative/trusted-scoring-signals.https.window.html?31-35", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "resources/fledge-util.sub.js" + ], + [ + "script", + "/common/subset-tests.js" + ], + [ + "timeout", + "long" + ], + [ + "variant", + "?1-5" + ], + [ + "variant", + "?6-10" + ], + [ + "variant", + "?11-15" + ], + [ + "variant", + "?16-20" + ], + [ + "variant", + "?21-25" + ], + [ + "variant", + "?26-30" + ], + [ + "variant", + "?31-35" + ], + [ + "variant", + "?36-40" + ], + [ + "variant", + "?41-45" + ], + [ + "variant", + "?45-50" + ], + [ + "variant", + "?50-last" + ] + ], + "timeout": "long" + } + ], + [ + "fledge/tentative/trusted-scoring-signals.https.window.html?36-40", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "resources/fledge-util.sub.js" + ], + [ + "script", + "/common/subset-tests.js" + ], + [ + "timeout", + "long" + ], + [ + "variant", + "?1-5" + ], + [ + "variant", + "?6-10" + ], + [ + "variant", + "?11-15" + ], + [ + "variant", + "?16-20" + ], + [ + "variant", + "?21-25" + ], + [ + "variant", + "?26-30" + ], + [ + "variant", + "?31-35" + ], + [ + "variant", + "?36-40" + ], + [ + "variant", + "?41-45" + ], + [ + "variant", + "?45-50" + ], + [ + "variant", + "?50-last" + ] + ], + "timeout": "long" + } + ], + [ + "fledge/tentative/trusted-scoring-signals.https.window.html?41-45", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "resources/fledge-util.sub.js" + ], + [ + "script", + "/common/subset-tests.js" + ], + [ + "timeout", + "long" + ], + [ + "variant", + "?1-5" + ], + [ + "variant", + "?6-10" + ], + [ + "variant", + "?11-15" + ], + [ + "variant", + "?16-20" + ], + [ + "variant", + "?21-25" + ], + [ + "variant", + "?26-30" + ], + [ + "variant", + "?31-35" + ], + [ + "variant", + "?36-40" + ], + [ + "variant", + "?41-45" + ], + [ + "variant", + "?45-50" + ], + [ + "variant", + "?50-last" + ] + ], + "timeout": "long" + } + ], + [ + "fledge/tentative/trusted-scoring-signals.https.window.html?45-50", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "resources/fledge-util.sub.js" + ], + [ + "script", + "/common/subset-tests.js" + ], + [ + "timeout", + "long" + ], + [ + "variant", + "?1-5" + ], + [ + "variant", + "?6-10" + ], + [ + "variant", + "?11-15" + ], + [ + "variant", + "?16-20" + ], + [ + "variant", + "?21-25" + ], + [ + "variant", + "?26-30" + ], + [ + "variant", + "?31-35" + ], + [ + "variant", + "?36-40" + ], + [ + "variant", + "?41-45" + ], + [ + "variant", + "?45-50" + ], + [ + "variant", + "?50-last" + ] + ], + "timeout": "long" + } + ], + [ + "fledge/tentative/trusted-scoring-signals.https.window.html?50-last", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "resources/fledge-util.sub.js" + ], + [ + "script", + "/common/subset-tests.js" + ], + [ + "timeout", + "long" + ], + [ + "variant", + "?1-5" + ], + [ + "variant", + "?6-10" + ], + [ + "variant", + "?11-15" + ], + [ + "variant", + "?16-20" + ], + [ + "variant", + "?21-25" + ], + [ + "variant", + "?26-30" + ], + [ + "variant", + "?31-35" + ], + [ + "variant", + "?36-40" + ], + [ + "variant", + "?41-45" + ], + [ + "variant", + "?45-50" + ], + [ + "variant", + "?50-last" + ] + ], + "timeout": "long" + } + ], + [ + "fledge/tentative/trusted-scoring-signals.https.window.html?6-10", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "resources/fledge-util.sub.js" + ], + [ + "script", + "/common/subset-tests.js" + ], + [ + "timeout", + "long" + ], + [ + "variant", + "?1-5" + ], + [ + "variant", + "?6-10" + ], + [ + "variant", + "?11-15" + ], + [ + "variant", + "?16-20" + ], + [ + "variant", + "?21-25" + ], + [ + "variant", + "?26-30" + ], + [ + "variant", + "?31-35" + ], + [ + "variant", + "?36-40" + ], + [ + "variant", + "?41-45" + ], + [ + "variant", + "?45-50" + ], + [ + "variant", + "?50-last" + ] + ], + "timeout": "long" + } + ] + ] + } + }, + "focus": { + "activeelement-after-calling-window-focus.sub.html": [ + "34579fb2a6301bacdc5e069e214d833f59564c59", + [ + null, + { + "timeout": "long" + } + ] + ], + "activeelement-after-focusing-different-site-iframe-contentwindow.html": [ + "b16280acbd7a85abb183d6c23c7508f6ce2fe17f", + [ + null, + {} + ] + ], + "activeelement-after-focusing-different-site-iframe-then-immediately-focusing-back.html": [ + "b2385705bc66717c5c0faf7a3dfd8de54e32813c", + [ + null, + {} + ] + ], + "activeelement-after-focusing-different-site-iframe.html": [ + "b974252555aebad45c2be1855b5dfdedc0d38618", + [ + null, + {} + ] + ], + "activeelement-after-focusing-same-site-iframe-contentwindow.html": [ + "b4a14e721f8df6eab6a6a4ca3988a32718c673fa", + [ + null, + {} + ] + ], + "activeelement-after-focusing-same-site-iframe.html": [ + "55918ebf07f06a91074c1ea0e9b450626d698585", + [ + null, + {} + ] + ], + "activeelement-after-immediately-focusing-different-site-iframe-contentwindow.html": [ + "8c3a9d119576aaca24209f938b989fb920329648", + [ + null, + {} + ] + ], + "activeelement-after-immediately-focusing-different-site-iframe.html": [ + "67bf733bc1e63362bea444a2009da8fb9c0c6aa4", + [ + null, + {} + ] + ], + "activeelement-after-immediately-focusing-same-site-iframe-contentwindow.html": [ + "2f6a8ac853c029cb6e6ea74fa20e084717b0e406", + [ + null, + {} + ] + ], + "activeelement-after-immediately-focusing-same-site-iframe.html": [ + "a035af072d3074ec960d63f12c678a6abafbf54f", + [ + null, + {} + ] + ], + "activeelement-after-nested-loses-focus.html": [ + "fbbec9b9cd55d49122ae4c1030cce9376705c143", + [ + null, + { + "testdriver": true + } + ] + ], + "ancestor-activeelement-after-child-lose-focus.html": [ + "38f31d64ae7d7d0b3a36ed9e49a1570eaffd5f34", + [ + null, + { + "testdriver": true + } + ] + ], + "cross-origin-ancestor-activeelement-after-child-lose-focus.sub.html": [ + "1b84b43f1c487b708405e41ed96565b487d8708b", + [ + null, + { + "testdriver": true + } + ] + ], + "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-centers-element.html": [ + "49b9d52b8511bf92797ae36923d09f76170e3112", + [ + null, + {} + ] + ], + "focus-event-after-focusing-iframes.html": [ + "f2aa2233e560eb6e73b20fe753386ef74ac282e7", + [ + null, + {} + ] + ], + "focus-event-after-iframe-gets-focus.html": [ + "bb2e8954209ee99ad0a683f0ab9d57fd2d878f73", + [ + null, + {} + ] + ], + "focus-event-after-switching-iframes.sub.html": [ + "297fd0756fd6ced200352c59de2fd0abbf78b1b7", + [ + null, + { + "testdriver": true + } + ] + ], + "focus-restoration-in-different-site-iframes-window.html": [ + "61e604b3c77010866e54507211b6c57d84bc781a", + [ + null, + {} + ] + ], + "focus-restoration-in-different-site-iframes.html": [ + "3861347fe630e972e16941785d322cd6a5e0c425", + [ + null, + {} + ] + ], + "focus-restoration-in-same-site-iframes-window.html": [ + "46be5eb600146f1e882c2e7e9c8bddd6e752d264", + [ + null, + {} + ] + ], + "hasfocus-different-site.html": [ + "4495778c81b5c3396be8fbca741ab74f06a6d799", + [ + null, + {} + ] + ], + "hasfocus-same-site.html": [ + "71a2e0f4edaadaabea922b2e571e511e93bc8221", + [ + null, + {} + ] + ], + "iframe-activeelement-after-focusing-out-iframes.html": [ + "832b2675e2543813bc130295ceac976ff49c9128", + [ + null, + {} + ] + ], + "iframe-contentwindow-focus-with-different-site-intermediate-frame.html": [ + "2fdc8e843a1c4de8d613689afeb31d4a451ea976", + [ + null, + {} + ] + ], + "iframe-contentwindow-focus-with-same-as-top-intermediate-frame.html": [ + "cb9239f44d893e0f27342bd7300d40f54f49c892", + [ + null, + {} + ] + ], + "iframe-focus-with-different-site-intermediate-frame.html": [ + "fd3aab70579ef04bb9df6d95413a307e55e07643", + [ + null, + {} + ] + ], + "iframe-focus-with-same-as-top-intermediate-frame.html": [ + "b4763f9e2fae085eab5d8c0bddc89ecefd5f4cbf", + [ + null, + {} + ] + ], + "iframe-focuses-parent-different-site.html": [ + "8a0b5ecca012309974cd4069fd2ec3eafdd15ea7", + [ + null, + {} + ] + ], + "iframe-focuses-parent-same-site.html": [ + "f130410e2a1b4cbc1e3d96fb14cbca7f5be2e8ea", + [ + null, + {} + ] + ], + "scroll-matches-focus.html": [ + "46a58fdf974f53129b62dc1d05f965f02631417b", + [ + null, + {} + ] + ] + }, + "font-access": { + "font_access_basic.tentative.https.window.js": [ + "4e714dcf5c972cea9223cff638a428ace69f717a", + [ + "font-access/font_access_basic.tentative.https.window.html", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ], + [ + "script", + "resources/font-asserts.js" + ], + [ + "script", + "resources/font-data.js" + ], + [ + "script", + "resources/font-test-utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } + ] + ], + "font_access_blob.tentative.https.window.js": [ + "16691d0ab55ebb0097f30310b8ca109e551ff1e2", + [ + "font-access/font_access_blob.tentative.https.window.html", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ], + [ + "script", + "resources/font-asserts.js" + ], + [ + "script", + "resources/font-data.js" + ], + [ + "script", + "resources/font-test-utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } + ] + ], + "font_access_detached_iframe.tentative.https.window.js": [ + "ca8171aec037ed0dd317ce49045612b3e5cee11d", + [ + "font-access/font_access_detached_iframe.tentative.https.window.html", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ], + [ + "script", + "resources/font-test-utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } + ] + ], + "font_access_permission.tentative.https.window.js": [ + "fbd0d1d885b7faebaafbbaf2ee4ca011145aeda1", + [ + "font-access/font_access_permission.tentative.https.window.html", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } + ] + ], + "font_access_query_select.tentative.https.window.js": [ + "df89ea7938bc571d0501a79ce660b784aa2cdab9", + [ + "font-access/font_access_query_select.tentative.https.window.html", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ], + [ + "script", + "resources/font-asserts.js" + ], + [ + "script", + "resources/font-data.js" + ], + [ + "script", + "resources/font-test-utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } + ] + ], + "font_access_sorted.tentative.https.window.js": [ + "4391c9270cc6dff709e248167c9c91a498f90c65", + [ + "font-access/font_access_sorted.tentative.https.window.html", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ], + [ + "script", + "resources/font-asserts.js" + ], + [ + "script", + "resources/font-test-utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } + ] + ], + "permissions-policy": { + "local-fonts-allowed-by-permissions-policy-attribute-redirect-on-load.https.sub.html": [ + "d829cc4a3b23a06eb464226d53cb40905006887e", + [ + null, + { + "testdriver": true + } + ] + ], + "local-fonts-allowed-by-permissions-policy-attribute.https.sub.html": [ + "ba802606a1fc931d9c721d03df1199b05c69e32d", + [ + null, + { + "testdriver": true + } + ] + ], + "local-fonts-allowed-by-permissions-policy.https.sub.html": [ + "4f63b6e01390d37663bbe48d1b7c9087c8797858", + [ + null, + { + "testdriver": true, + "timeout": "long" + } + ] + ], + "local-fonts-default-permissions-policy.https.sub.html": [ + "c0cfdc070d295887f6bb3a551ffb3634049912c2", + [ + null, + { + "testdriver": true, + "timeout": "long" + } + ] + ], + "local-fonts-disabled-by-permissions-policy.https.sub.html": [ + "c9912c6dc3b7d73311d9b71586b198df7cc8b1fe", + [ + null, + { + "testdriver": true, + "timeout": "long" + } + ] + ], + "local-fonts-supported-by-permissions-policy.html": [ + "671c0fa5392b566a076d1f1b3f8ffa986c0dacd8", + [ + null, + {} + ] + ] + } + }, + "forced-colors-mode": { + "forced-colors-mode-03.html": [ + "9e28c4fdb13211e108fe0c81c0f3957041695c81", + [ + null, + {} + ] + ], + "forced-colors-mode-09.html": [ + "16ca8a46104d06153b3e9bbd920d3187b0a7fa00", + [ + null, + {} + ] + ], + "forced-colors-mode-10.html": [ + "765013d9134cd0d901108d14c05610229ae0441a", + [ + null, + {} + ] + ], + "forced-colors-mode-11.html": [ + "5fa8ba4524adba8b6acde49efa3377131597bb76", + [ + null, + {} + ] + ], + "forced-colors-mode-20.html": [ + "b0cf9e2b49245d3a0298d0b06b89bc7a23428dc5", + [ + null, + {} + ] + ], + "forced-colors-mode-21.html": [ + "975bfc6d09f49c220baded3f7e09607bd2f9a828", + [ + null, + {} + ] + ], + "forced-colors-mode-27.html": [ + "5a42f947adcac841cc00be7a233ea2fbd94828c8", + [ + null, + {} + ] + ], + "forced-colors-mode-40.html": [ + "481492d72e917a5b235b1aa55818519232ef32c1", + [ + null, + {} + ] + ], + "forced-colors-mode-41.html": [ + "7b616c963d5909fb3688ae4bc692d165df950421", + [ + null, + {} + ] + ], + "forced-colors-mode-50.html": [ + "42957248b4efd08eb8a3c25d24610090859cb20c", + [ + null, + {} + ] + ], + "forced-colors-mode-51.html": [ + "02577144323136277dd71fa86115855024dd20d7", + [ + null, + {} + ] + ], + "forced-colors-mode-54.html": [ + "0a770f78f30938af974b0a0203fb951d754bfa08", + [ + null, + {} + ] + ] + }, + "fs": { + "FileSystemBaseHandle-IndexedDB.https.any.js": [ + "9e67fe88028210eba24cbc18ddcd40027acca492", + [ + "fs/FileSystemBaseHandle-IndexedDB.https.any.html", + { + "script_metadata": [ + [ + "script", + "resources/test-helpers.js" + ], + [ + "script", + "resources/sandboxed-fs-test-helpers.js" + ], + [ + "script", + "resources/messaging-helpers.js" + ], + [ + "script", + "resources/messaging-serialize-helpers.js" + ], + [ + "script", + "/IndexedDB/resources/support-promises.js" + ], + [ + "script", + "script-tests/FileSystemBaseHandle-IndexedDB.js" + ] + ] + } + ], + [ + "fs/FileSystemBaseHandle-IndexedDB.https.any.worker.html", + { + "script_metadata": [ + [ + "script", + "resources/test-helpers.js" + ], + [ + "script", + "resources/sandboxed-fs-test-helpers.js" + ], + [ + "script", + "resources/messaging-helpers.js" + ], + [ + "script", + "resources/messaging-serialize-helpers.js" + ], + [ + "script", + "/IndexedDB/resources/support-promises.js" + ], + [ + "script", + "script-tests/FileSystemBaseHandle-IndexedDB.js" + ] ] } ] @@ -611019,6 +631177,207 @@ {} ] ], + "FileSystemObserver-sync-access-handle.https.tentative.worker.js": [ + "e21a3dd39040558056bd09afd5465c22569d99bc", + [ + "fs/FileSystemObserver-sync-access-handle.https.tentative.worker.html", + {} + ] + ], + "FileSystemObserver-unsupported-global.https.tentative.any.js": [ + "adafe7d9dc067b658c6acd4fb0d98418b4f7874c", + [ + "fs/FileSystemObserver-unsupported-global.https.tentative.any.serviceworker.html", + { + "script_metadata": [ + [ + "global", + "serviceworker" + ] + ] + } + ] + ], + "FileSystemObserver-writable-file-stream.https.tentative.any.js": [ + "9c030fb54716777d3ba73c9f4a18da41f39514c6", + [ + "fs/FileSystemObserver-writable-file-stream.https.tentative.any.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,sharedworker" + ], + [ + "script", + "resources/sandboxed-fs-test-helpers.js" + ], + [ + "script", + "resources/test-helpers.js" + ], + [ + "script", + "resources/collecting-file-system-observer.js" + ], + [ + "script", + "script-tests/FileSystemObserver-writable-file-stream.js" + ] + ] + } + ], + [ + "fs/FileSystemObserver-writable-file-stream.https.tentative.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,sharedworker" + ], + [ + "script", + "resources/sandboxed-fs-test-helpers.js" + ], + [ + "script", + "resources/test-helpers.js" + ], + [ + "script", + "resources/collecting-file-system-observer.js" + ], + [ + "script", + "script-tests/FileSystemObserver-writable-file-stream.js" + ] + ] + } + ], + [ + "fs/FileSystemObserver-writable-file-stream.https.tentative.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,sharedworker" + ], + [ + "script", + "resources/sandboxed-fs-test-helpers.js" + ], + [ + "script", + "resources/test-helpers.js" + ], + [ + "script", + "resources/collecting-file-system-observer.js" + ], + [ + "script", + "script-tests/FileSystemObserver-writable-file-stream.js" + ] + ] + } + ] + ], + "FileSystemObserver.https.tentative.any.js": [ + "992e73246ccc630a8c55586f4e0d27e82eed1bce", + [ + "fs/FileSystemObserver.https.tentative.any.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,sharedworker" + ], + [ + "script", + "resources/sandboxed-fs-test-helpers.js" + ], + [ + "script", + "resources/test-helpers.js" + ], + [ + "script", + "resources/collecting-file-system-observer.js" + ], + [ + "script", + "resources/change-observer-scope-test.js" + ], + [ + "script", + "script-tests/FileSystemObserver.js" + ] + ] + } + ], + [ + "fs/FileSystemObserver.https.tentative.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,sharedworker" + ], + [ + "script", + "resources/sandboxed-fs-test-helpers.js" + ], + [ + "script", + "resources/test-helpers.js" + ], + [ + "script", + "resources/collecting-file-system-observer.js" + ], + [ + "script", + "resources/change-observer-scope-test.js" + ], + [ + "script", + "script-tests/FileSystemObserver.js" + ] + ] + } + ], + [ + "fs/FileSystemObserver.https.tentative.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,sharedworker" + ], + [ + "script", + "resources/sandboxed-fs-test-helpers.js" + ], + [ + "script", + "resources/test-helpers.js" + ], + [ + "script", + "resources/collecting-file-system-observer.js" + ], + [ + "script", + "resources/change-observer-scope-test.js" + ], + [ + "script", + "script-tests/FileSystemObserver.js" + ] + ] + } + ] + ], "FileSystemSyncAccessHandle-close.https.worker.js": [ "1c6aaf38a32a8341085ff83580dc874c3624c29a", [ @@ -611659,6 +632018,15 @@ } ] ], + "element-request-fullscreen-without-user-activation.tentative.https.html": [ + "4315ba2118730072641fd24a96c354e556130841", + [ + null, + { + "testdriver": true + } + ] + ], "element-request-fullscreen.html": [ "fd9f249551551a9c5e800ee346eddc4182699dbd", [ @@ -611693,6 +632061,15 @@ {} ] ], + "permission.tentative.https.html": [ + "34758660b77a97783e07bfa73258e46edace020c", + [ + null, + { + "testdriver": true + } + ] + ], "promises-reject.html": [ "4385b1646d65128d053c8dcded532997c8ed0557", [ @@ -611897,13 +632274,6 @@ {} ] ], - "gamepad-secure-context.html": [ - "28641220fd88ba35b524dac9b544b4bc4794de3a", - [ - null, - {} - ] - ], "gamepad-supported-by-feature-policy.html": [ "a688a380a7783277061a0b759e5b7e3501299170", [ @@ -611934,10 +632304,10 @@ } ] ], - "idlharness.https.window.js": [ + "idlharness.window.js": [ "b15bf1f0aef3860ed836482ff7f83dfb2dbe4053", [ - "gamepad/idlharness.https.window.html", + "gamepad/idlharness.window.html", { "script_metadata": [ [ @@ -611957,7 +632327,7 @@ } ] ], - "not-fully-active.https.html": [ + "not-fully-active.html": [ "500afef3d2deb29c087de0bb708904ace81798c5", [ null, @@ -612001,9 +632371,9 @@ ] ] }, - "geolocation-API": { + "geolocation": { "PositionOptions.https.html": [ - "6b36d66d7358cccd6fe5143a1504a17db4170af4", + "73d84738bd91ef4aee541df0f0f5da0b63a15482", [ null, { @@ -612019,7 +632389,7 @@ ] ], "disabled-by-permissions-policy.https.sub.html": [ - "6bd3e3500bc505375d7b5f7877f3ff272057a332", + "ec34a4998da7c76437981c42ecc688ef6b5374ac", [ null, { @@ -612028,21 +632398,21 @@ ] ], "enabled-by-permission-policy-attribute-redirect-on-load.https.sub.html": [ - "864fb5e76139ed9e6158c08278dca0790f126c7b", + "d25afa52bb7146b30f70792737f247879dd68690", [ null, {} ] ], "enabled-by-permission-policy-attribute.https.sub.html": [ - "018409b82902672f66894b03a711bb708cad262c", + "50b8475b81086f374810f8bff69e1acb39b073ac", [ null, {} ] ], "enabled-by-permissions-policy.https.sub.html": [ - "007f79ab9c4256fbebae51f54d34144843020982", + "332e4cea16b22f94fab3c4e9b390fd4e119e04dd", [ null, { @@ -612051,7 +632421,7 @@ ] ], "enabled-on-self-origin-by-permissions-policy.https.sub.html": [ - "d879c1c5432bb884af89f0f9fc24e328f8a3eae5", + "5940888b3562a01ede345b39d5da1fecde79d954", [ null, { @@ -612087,7 +632457,7 @@ "idlharness.https.window.js": [ "eadd6b7a4fbce9a286821bb9ad4243292fb6458a", [ - "geolocation-API/idlharness.https.window.html", + "geolocation/idlharness.https.window.html", { "script_metadata": [ [ @@ -612111,7 +632481,7 @@ ] ], "non-fully-active.https.html": [ - "13853c0ef860a6d099172c91db960b720760662a", + "20fcdae12a04469ed1204f95667508815cbbcde6", [ null, { @@ -612127,12 +632497,30 @@ ] ], "permission.https.html": [ - "4062843349d77263fad2d8e12c6558f5d715ac04", + "aa46caf32c3470cb5bc65ef22d9ef1e41bdbbfcc", [ null, {} ] ], + "tojson.https.window.js": [ + "b3f8500b1a81beeda1f2b7407fcccc21666fd9fb", + [ + "geolocation/tojson.https.window.html", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ] + ] + } + ] + ], "watchPosition_TypeError.https.html": [ "4ae7a8903716dd792337de245fd85b313456611a", [ @@ -612515,7 +632903,7 @@ ] ], "raf-coarsened-time.https.html": [ - "e649d91c16311e289f179c5adf2970c4ac8bc22f", + "182c707dc3b783c755bc12ec53bc54a1fd2cead8", [ null, {} @@ -614736,31 +635124,148 @@ ] ], "pagereveal": { - "tentative": { - "order-in-bfcache-restore.html": [ - "f453c80a2aee8c2cff5bca12f361a6a7b7683be8", - [ - null, - { - "timeout": "long" - } - ] - ], - "order-in-new-document-navigation.html": [ - "d2c44511d3a3a175ceb09298302baec088ddbf76", - [ - null, - {} - ] - ], - "order-in-prerender-activation.html": [ - "b281b2b08810d59c32fe332cb869151946de8c96", - [ - null, - {} - ] + "order-in-bfcache-restore-iframe.html": [ + "f98cb61ad32bd9df42aefe6291f0c27902f4f2ad", + [ + null, + { + "timeout": "long" + } ] - } + ], + "order-in-bfcache-restore.html": [ + "f453c80a2aee8c2cff5bca12f361a6a7b7683be8", + [ + null, + { + "timeout": "long" + } + ] + ], + "order-in-new-document-navigation-iframe.html": [ + "b982025bc78cfc2ec72f2c3de9eae80da0ba646a", + [ + null, + {} + ] + ], + "order-in-new-document-navigation.html": [ + "d2c44511d3a3a175ceb09298302baec088ddbf76", + [ + null, + {} + ] + ], + "order-in-prerender-activation.html": [ + "b281b2b08810d59c32fe332cb869151946de8c96", + [ + null, + {} + ] + ] + }, + "pageswap": { + "pageswap-cross-origin.sub.html": [ + "4b68c32378fc7edbc88c6d95def9788b61aeb4ee", + [ + null, + { + "testdriver": true + } + ] + ], + "pageswap-iframe.html": [ + "05ca1a942886a841852a6afdc9fba460eae950fd", + [ + null, + { + "testdriver": true + } + ] + ], + "pageswap-initial-navigation.html": [ + "5483b9394d4e4b5762966a80e19158955805d353", + [ + null, + { + "testdriver": true + } + ] + ], + "pageswap-push-from-click.html": [ + "936158cd4737845bc3d2bdda2edacd25abee54b9", + [ + null, + { + "testdriver": true + } + ] + ], + "pageswap-push-navigation-hidden-document.html": [ + "0a699232f071efeb16a82194a2564ef76204e8c7", + [ + null, + { + "testdriver": true + } + ] + ], + "pageswap-push-navigation.html": [ + "4542d7cae26456f61d94978f02b20392b43cba45", + [ + null, + {} + ] + ], + "pageswap-push-with-cross-origin-redirect.sub.html": [ + "8ecf920b510a99d24f05048cd35f8c7e2b9e6f97", + [ + null, + {} + ] + ], + "pageswap-push-with-redirect.html": [ + "8252fff84d6de401ea577fc22f218aa358f1e67d", + [ + null, + {} + ] + ], + "pageswap-reload-navigation.html": [ + "f7539ebc4784280ce5b500e539d6250f1793a52e", + [ + null, + {} + ] + ], + "pageswap-replace-navigation.html": [ + "f6b3f7408cc39a3e77c220263fac70c8163f9c0b", + [ + null, + {} + ] + ], + "pageswap-replace-with-cross-origin-redirect.sub.html": [ + "c6ced62057f48ae4a37430553de14c58dfa35ff8", + [ + null, + {} + ] + ], + "pageswap-traverse-navigation-cross-origin-redirect-no-bfcache.https.sub.html": [ + "55438307212ead6fb2c941bbfabc3d898ce98680", + [ + null, + {} + ] + ], + "pageswap-traverse-navigation-no-bfcache.https.html": [ + "9e8c0e100ebed2b874556acebf00a1d09045de04", + [ + null, + {} + ] + ] }, "persisted-user-state-restoration": { "resume-timer-on-history-back.html": [ @@ -616060,7 +636565,7 @@ }, "read-media": { "cross-origin-video.html": [ - "5f3e95cce40e2a00611583d7623cad8a4a3eeb27", + "a3badfcb5ea4f45408068fc56d863d2bc15e2bdd", [ null, {} @@ -616098,6 +636603,74 @@ ] }, "remote-context-helper-tests": { + "addEmbed.window.js": [ + "c389410d5d323bcd45e4e9206c4b310d880d5309", + [ + "html/browsers/browsing-the-web/remote-context-helper-tests/addEmbed.window.html", + { + "script_metadata": [ + [ + "title", + "RemoteContextWrapper addEmbed" + ], + [ + "script", + "/common/dispatcher/dispatcher.js" + ], + [ + "script", + "/common/get-host-info.sub.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "/html/browsers/browsing-the-web/remote-context-helper/resources/remote-context-helper.js" + ], + [ + "script", + "./resources/test-helper.js" + ] + ] + } + ] + ], + "addFrame.window.js": [ + "4c3c2eebe171685c44796842fe70efb0aa9df8b9", + [ + "html/browsers/browsing-the-web/remote-context-helper-tests/addFrame.window.html", + { + "script_metadata": [ + [ + "title", + "RemoteContextWrapper addFrame" + ], + [ + "script", + "/common/dispatcher/dispatcher.js" + ], + [ + "script", + "/common/get-host-info.sub.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "/html/browsers/browsing-the-web/remote-context-helper/resources/remote-context-helper.js" + ], + [ + "script", + "./resources/test-helper.js" + ] + ] + } + ] + ], "addHTML.window.js": [ "0c093cc462572f985a5b080e67d4f8232c9aef9d", [ @@ -616132,15 +636705,83 @@ } ] ], - "addIframe-srcdoc-startOn.window.js": [ - "2ef047c212b12684dacb54c3e5caae9fdf0bcfda", + "addIframe-srcdoc-startOn.window.js": [ + "2ef047c212b12684dacb54c3e5caae9fdf0bcfda", + [ + "html/browsers/browsing-the-web/remote-context-helper-tests/addIframe-srcdoc-startOn.window.html", + { + "script_metadata": [ + [ + "title", + "RemoteContextWrapper addIframe with srcdoc and startOn" + ], + [ + "script", + "/common/dispatcher/dispatcher.js" + ], + [ + "script", + "/common/get-host-info.sub.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "/html/browsers/browsing-the-web/remote-context-helper/resources/remote-context-helper.js" + ], + [ + "script", + "./resources/test-helper.js" + ] + ] + } + ] + ], + "addIframe-srcdoc.window.js": [ + "054bdcf787665763f26f44ae5e9444eb1a259f4a", + [ + "html/browsers/browsing-the-web/remote-context-helper-tests/addIframe-srcdoc.window.html", + { + "script_metadata": [ + [ + "title", + "RemoteContextWrapper addIframe with srcdoc" + ], + [ + "script", + "/common/dispatcher/dispatcher.js" + ], + [ + "script", + "/common/get-host-info.sub.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "/html/browsers/browsing-the-web/remote-context-helper/resources/remote-context-helper.js" + ], + [ + "script", + "./resources/test-helper.js" + ] + ] + } + ] + ], + "addIframe-urlType.window.js": [ + "2b333f37594d76911d342a4fda0ad26bb21e732f", [ - "html/browsers/browsing-the-web/remote-context-helper-tests/addIframe-srcdoc-startOn.window.html", + "html/browsers/browsing-the-web/remote-context-helper-tests/addIframe-urlType.window.html?urlType=blank", { "script_metadata": [ [ "title", - "RemoteContextWrapper addIframe with srcdoc and startOn" + "RemoteContextWrapper addIframe" ], [ "script", @@ -616161,20 +636802,127 @@ [ "script", "./resources/test-helper.js" + ], + [ + "variant", + "?urlType=origin" + ], + [ + "variant", + "?urlType=data" + ], + [ + "variant", + "?urlType=blob" + ], + [ + "variant", + "?urlType=blank" ] ] } - ] - ], - "addIframe-srcdoc.window.js": [ - "1a959cbaf05095a3682ea7ba99a8f618415d4090", + ], [ - "html/browsers/browsing-the-web/remote-context-helper-tests/addIframe-srcdoc.window.html", + "html/browsers/browsing-the-web/remote-context-helper-tests/addIframe-urlType.window.html?urlType=blob", { "script_metadata": [ [ "title", - "RemoteContextWrapper addIframe with srcdoc" + "RemoteContextWrapper addIframe" + ], + [ + "script", + "/common/dispatcher/dispatcher.js" + ], + [ + "script", + "/common/get-host-info.sub.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "/html/browsers/browsing-the-web/remote-context-helper/resources/remote-context-helper.js" + ], + [ + "script", + "./resources/test-helper.js" + ], + [ + "variant", + "?urlType=origin" + ], + [ + "variant", + "?urlType=data" + ], + [ + "variant", + "?urlType=blob" + ], + [ + "variant", + "?urlType=blank" + ] + ] + } + ], + [ + "html/browsers/browsing-the-web/remote-context-helper-tests/addIframe-urlType.window.html?urlType=data", + { + "script_metadata": [ + [ + "title", + "RemoteContextWrapper addIframe" + ], + [ + "script", + "/common/dispatcher/dispatcher.js" + ], + [ + "script", + "/common/get-host-info.sub.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "/html/browsers/browsing-the-web/remote-context-helper/resources/remote-context-helper.js" + ], + [ + "script", + "./resources/test-helper.js" + ], + [ + "variant", + "?urlType=origin" + ], + [ + "variant", + "?urlType=data" + ], + [ + "variant", + "?urlType=blob" + ], + [ + "variant", + "?urlType=blank" + ] + ] + } + ], + [ + "html/browsers/browsing-the-web/remote-context-helper-tests/addIframe-urlType.window.html?urlType=origin", + { + "script_metadata": [ + [ + "title", + "RemoteContextWrapper addIframe" ], [ "script", @@ -616195,6 +636943,22 @@ [ "script", "./resources/test-helper.js" + ], + [ + "variant", + "?urlType=origin" + ], + [ + "variant", + "?urlType=data" + ], + [ + "variant", + "?urlType=blob" + ], + [ + "variant", + "?urlType=blank" ] ] } @@ -616234,6 +636998,40 @@ } ] ], + "addObject.window.js": [ + "1d83d9a463d581b936d613f1e31bd0e5194dafec", + [ + "html/browsers/browsing-the-web/remote-context-helper-tests/addObject.window.html", + { + "script_metadata": [ + [ + "title", + "RemoteContextWrapper addObject" + ], + [ + "script", + "/common/dispatcher/dispatcher.js" + ], + [ + "script", + "/common/get-host-info.sub.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "/html/browsers/browsing-the-web/remote-context-helper/resources/remote-context-helper.js" + ], + [ + "script", + "./resources/test-helper.js" + ] + ] + } + ] + ], "addScripts.window.js": [ "01cf06c65d52ec6d6208dce339dcf6cf07e89680", [ @@ -616472,8 +637270,174 @@ } ] ], + "addWindow-urlType-data.window.js": [ + "edcff5843c0587e7bb26891d5111119f96bf2aaf", + [ + "html/browsers/browsing-the-web/remote-context-helper-tests/addWindow-urlType-data.window.html", + { + "script_metadata": [ + [ + "title", + "RemoteContextHelper addWindow with extra config" + ], + [ + "script", + "/common/dispatcher/dispatcher.js" + ], + [ + "script", + "/common/get-host-info.sub.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "/html/browsers/browsing-the-web/remote-context-helper/resources/remote-context-helper.js" + ], + [ + "script", + "./resources/test-helper.js" + ] + ] + } + ] + ], + "addWindow-urlType.window.js": [ + "66a725769be83168ec5daad40b74d10bfa3af2e3", + [ + "html/browsers/browsing-the-web/remote-context-helper-tests/addWindow-urlType.window.html?urlType=blank", + { + "script_metadata": [ + [ + "title", + "RemoteContextHelper addWindow with urlType" + ], + [ + "script", + "/common/dispatcher/dispatcher.js" + ], + [ + "script", + "/common/get-host-info.sub.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "/html/browsers/browsing-the-web/remote-context-helper/resources/remote-context-helper.js" + ], + [ + "script", + "./resources/test-helper.js" + ], + [ + "variant", + "?urlType=origin" + ], + [ + "variant", + "?urlType=blob" + ], + [ + "variant", + "?urlType=blank" + ] + ] + } + ], + [ + "html/browsers/browsing-the-web/remote-context-helper-tests/addWindow-urlType.window.html?urlType=blob", + { + "script_metadata": [ + [ + "title", + "RemoteContextHelper addWindow with urlType" + ], + [ + "script", + "/common/dispatcher/dispatcher.js" + ], + [ + "script", + "/common/get-host-info.sub.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "/html/browsers/browsing-the-web/remote-context-helper/resources/remote-context-helper.js" + ], + [ + "script", + "./resources/test-helper.js" + ], + [ + "variant", + "?urlType=origin" + ], + [ + "variant", + "?urlType=blob" + ], + [ + "variant", + "?urlType=blank" + ] + ] + } + ], + [ + "html/browsers/browsing-the-web/remote-context-helper-tests/addWindow-urlType.window.html?urlType=origin", + { + "script_metadata": [ + [ + "title", + "RemoteContextHelper addWindow with urlType" + ], + [ + "script", + "/common/dispatcher/dispatcher.js" + ], + [ + "script", + "/common/get-host-info.sub.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "/html/browsers/browsing-the-web/remote-context-helper/resources/remote-context-helper.js" + ], + [ + "script", + "./resources/test-helper.js" + ], + [ + "variant", + "?urlType=origin" + ], + [ + "variant", + "?urlType=blob" + ], + [ + "variant", + "?urlType=blank" + ] + ] + } + ] + ], "addWorker.window.js": [ - "d4ba8b031270e241abbb792367eb8511b4444546", + "3778ad3e5235273951f216de1534afc180c26e6f", [ "html/browsers/browsing-the-web/remote-context-helper-tests/addWorker.window.html", { @@ -616506,6 +637470,40 @@ } ] ], + "addWorkerNull.window.js": [ + "460b60d6021a0e767488432e59e156f805411ff0", + [ + "html/browsers/browsing-the-web/remote-context-helper-tests/addWorkerNull.window.html", + { + "script_metadata": [ + [ + "title", + "RemoteContextWrapper addWorker no global variable" + ], + [ + "script", + "/common/dispatcher/dispatcher.js" + ], + [ + "script", + "/common/get-host-info.sub.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "/html/browsers/browsing-the-web/remote-context-helper/resources/remote-context-helper.js" + ], + [ + "script", + "./resources/test-helper.js" + ] + ] + } + ] + ], "constructor.window.js": [ "dcbb3dabbc1d345e6eaa424a2f167e29b4f05ac0", [ @@ -616844,6 +637842,13 @@ } ] ], + "scroll-position-inline-nearest.html": [ + "4aab0aa5e5a1e4a3eea82282be2344586a9a6d02", + [ + null, + {} + ] + ], "scroll-position-vertical-lr.html": [ "57d99440e114968e7dcd1b61ebf2d18c7bca987b", [ @@ -616891,6 +637896,13 @@ "timeout": "long" } ] + ], + "target-pseudo-after-reinsertion.html": [ + "3e46c28104ca1864b97422c8c671d033e4f38602", + [ + null, + {} + ] ] }, "unloading-documents": { @@ -617699,6 +638711,27 @@ {} ] ], + "assign-replace-from-iframe.html": [ + "a0cd9f25ef9def35917f1817eb841cf811652c5e", + [ + null, + {} + ] + ], + "assign-replace-from-top-to-nested-iframe.html": [ + "eb6e4960dc2c8ebce37a1f32e3b4237224b50dd3", + [ + null, + {} + ] + ], + "assign-with-nested-iframe.html": [ + "e043623c08292cb284c77790ad4e67752828abda", + [ + null, + {} + ] + ], "assign_after_load.html": [ "00dc931d4e7204ef302c7ab8d7340ec19feee61d", [ @@ -617993,6 +639026,13 @@ {} ] ], + "replace-with-nested-iframe.html": [ + "e6620bd29c7537af74b4b8e55e1c5aafb319ca50", + [ + null, + {} + ] + ], "same-hash.html": [ "430a57662ac34e5150b44b210fdc44cf158e2c3f", [ @@ -619603,7 +640643,7 @@ ] ], "window-open-blank-from-different-initiator.html": [ - "91817c3db440d76a0793f8feae7bc877659b123d", + "3e227b456f6c14b32a3051c6a12ba5d1ccf9e8c3", [ null, { @@ -619851,6 +640891,13 @@ {} ] ], + "close_noopener_beforeunload.html": [ + "6862a70b8c1489a1d6ab8450cc01772d753fbe4d", + [ + null, + {} + ] + ], "close_pagehide.html": [ "4d726437c235d16a03dda3ae277026e0b71298ae", [ @@ -620116,10 +641163,12 @@ ] ], "window-indexed-properties-delete-no-cache.html": [ - "22262943aadd775424645d79b0dfb2429f837e61", + "c3b49d50ffa7936a50f0b337527b3c0036b35678", [ null, - {} + { + "timeout": "long" + } ] ], "window-indexed-properties-strict.html": [ @@ -620612,71 +641661,6 @@ {} ] ], - "post-message": { - "first-party-to-first-party-cross-partition.sub.html": [ - "f91d9403ea0ce424f92960ded05254c32e995430", - [ - null, - {} - ] - ], - "first-party-to-first-party-same-partition.html": [ - "6fc915298bba3ef28ce991bf7dab69d74adc9199", - [ - null, - {} - ] - ], - "first-party-to-third-party-cross-partition-cross-origin.sub.html": [ - "de776f83818be66d195e026a8d12986135a9c9ff", - [ - null, - {} - ] - ], - "first-party-to-third-party-cross-partition-same-origin.sub.html": [ - "490b647fa4ac7e4e7b409336aa2f25ef0fec6c1a", - [ - null, - {} - ] - ], - "third-party-to-first-party-cross-partition-cross-origin.sub.html": [ - "2618e966de6f403f7e0fdb156304695a63bf9748", - [ - null, - {} - ] - ], - "third-party-to-first-party-cross-partition-same-origin.sub.html": [ - "735b4588411fe6bf5c670f9a0273388580104300", - [ - null, - {} - ] - ], - "third-party-to-third-party-cross-partition-cross-origin.sub.html": [ - "1083071f7d2a21cca5dcb9b31621370a3c830bf4", - [ - null, - {} - ] - ], - "third-party-to-third-party-cross-partition-same-origin.sub.html": [ - "9caf6c11e48f5dd8faef5f840f13cff0bf14659f", - [ - null, - {} - ] - ], - "third-party-to-third-party-same-partition.sub.html": [ - "c90a05526846505b7bc73be1862f6652b7a8e02d", - [ - null, - {} - ] - ] - }, "targeting-cross-origin-nested-browsing-contexts.html": [ "44d4fbad6b79a0dcbb7080c0b8caa529bc53426d", [ @@ -620732,14 +641716,14 @@ ] ], "2d.canvas.context.extraargs.cache.html": [ - "f4db40815dcc518a75f1568ab1cfc21ba0cf9db5", + "236f17e6d57b4d6d96a8c6c4dd414e2cb335a4d2", [ null, {} ] ], "2d.canvas.context.extraargs.create.html": [ - "6ae7f787c6adeceabc3dfe37a981cf07eb46de2e", + "b0b00ddd78ea6deb6b53283fe9ec5f4b734fe0a1", [ null, {} @@ -620753,7 +641737,7 @@ ] ], "2d.canvas.context.prototype.html": [ - "5d5edc6864bc994a0b60a1fb80535598857fad40", + "18a37a185dd907ed69907003b343124c0b6031ec", [ null, {} @@ -620803,6 +641787,13 @@ ] }, "canvas-host": { + "2d.canvas.host.initial.color.html": [ + "795804a4d21cc5b9c8e88f6f86625bfa2bbfdf36", + [ + null, + {} + ] + ], "2d.canvas.host.initial.reset.2dstate.html": [ "e1940011989c98b352a690f5218d349b56697747", [ @@ -620810,15 +641801,85 @@ {} ] ], + "2d.canvas.host.initial.reset.clip.html": [ + "86da296dc01510e48d96a0f0ff9d9cab5fa09444", + [ + null, + {} + ] + ], + "2d.canvas.host.initial.reset.different.html": [ + "b95527083b0fbc4dedd728ca3b87a57fed2d7bdb", + [ + null, + {} + ] + ], + "2d.canvas.host.initial.reset.gradient.html": [ + "de0f19c13c119d0c86dec66f06030c27c9456f83", + [ + null, + {} + ] + ], + "2d.canvas.host.initial.reset.path.html": [ + "6eda186dcbc606c70b39d60bfe26282d488334bf", + [ + null, + {} + ] + ], + "2d.canvas.host.initial.reset.pattern.html": [ + "3cb45257a0fef51030ef6427751ed9ee308f4c9b", + [ + null, + {} + ] + ], + "2d.canvas.host.initial.reset.same.html": [ + "6e2d912af58c5764ec952376804b16a8f59036b0", + [ + null, + {} + ] + ], + "2d.canvas.host.initial.reset.transform.html": [ + "d285785ed2fb6525b2ff751af5db5f5c0e561b28", + [ + null, + {} + ] + ], "2d.canvas.host.readonly.html": [ - "cbbf32f2e2bd77ab112d6f80b6d2d578a9da0fc0", + "44d922933448701fe715e36c35a82b0e4c4395f4", [ null, {} ] ], "2d.canvas.host.reference.html": [ - "6a4bdb65b082180b4af66d1cbe38f85446f0a894", + "f7166f99d6c2a429e8a4f8cc6ef54f376bb0053e", + [ + null, + {} + ] + ], + "2d.canvas.host.size.attributes.default.html": [ + "c34b085a9b9d78366e02d3de42205ad5d6ec92b6", + [ + null, + {} + ] + ], + "2d.canvas.host.size.attributes.idl.html": [ + "38332cc575c34512c447feeaafaeaf76667c64c1", + [ + null, + {} + ] + ], + "2d.canvas.host.size.attributes.idl.set.zero.html": [ + "e142ec684a484824bb9ff1cae8b7fabcb3fd2bd8", [ null, {} @@ -620929,6 +641990,34 @@ {} ] ], + "2d.canvas.host.size.attributes.reflect.setcontent.html": [ + "2e2abaef2a763da673386810bb9b361a78c9a847", + [ + null, + {} + ] + ], + "2d.canvas.host.size.attributes.reflect.setidl.html": [ + "d017070a39e4bf97bdf402b13690d6418c4c93c4", + [ + null, + {} + ] + ], + "2d.canvas.host.size.attributes.reflect.setidlzero.html": [ + "d7747e1f188674da95c04e4841520e5ec075b61e", + [ + null, + {} + ] + ], + "2d.canvas.host.size.attributes.removed.html": [ + "15cf17cbeadb0e8e63aec3eabb2e71c5485c0061", + [ + null, + {} + ] + ], "2d.canvas.host.size.attributes.setAttribute.decimal.html": [ "b6c2130bf0afec9b139d6b670c9ea2403d1e89ab", [ @@ -621033,6 +642122,34 @@ null, {} ] + ], + "2d.canvas.host.size.invalid.attributes.idl.html": [ + "8711657f13c2a2ac15649fb645a456f989923c4b", + [ + null, + {} + ] + ], + "2d.canvas.host.size.large.html": [ + "039949cfd01369a0fae66e18dac045d037ffb5a6", + [ + null, + {} + ] + ], + "2d.canvas.host.type.delete.html": [ + "90f5c4ce9036f3bbf24d3234d46dd49d687e8f04", + [ + null, + {} + ] + ], + "2d.canvas.host.type.name.html": [ + "c0f93876c32ad813325d5640cd05036f1f544e3f", + [ + null, + {} + ] ] }, "compositing": { @@ -621845,6 +642962,13 @@ {} ] ], + "2d.drawImage.detachedcanvas.html": [ + "e301537330ea08534b70e4488d9aaaaef0029eda", + [ + null, + {} + ] + ], "2d.drawImage.floatsource.html": [ "3e100c257fed3fa8f2e218d394a9db6a113f3dd6", [ @@ -622626,29 +643750,8 @@ {} ] ], - "2d.fillStyle.parse.hsl-clamp-1.html": [ - "59d66c383c90d6a4c01ca327dd316aa4efae5608", - [ - null, - {} - ] - ], - "2d.fillStyle.parse.hsl-clamp-2.html": [ - "1a1939e47af3373d083a99f2d406df360c86fe8a", - [ - null, - {} - ] - ], - "2d.fillStyle.parse.hsl-clamp-3.html": [ - "56f3a0a8b540b6873f0eaeee4059b0fc71ee2025", - [ - null, - {} - ] - ], - "2d.fillStyle.parse.hsl-clamp-4.html": [ - "af9d11e678c7c5a0582c64627e62ad2e8af753ab", + "2d.fillStyle.parse.hsl-clamp-negative-saturation.html": [ + "65440c6228e67dff9a7572096ed532f0ea05644f", [ null, {} @@ -622668,43 +643771,22 @@ {} ] ], - "2d.fillStyle.parse.hsla-clamp-1.html": [ - "2acac26e1a97cdaf49a99ee795be7ff437d89977", - [ - null, - {} - ] - ], - "2d.fillStyle.parse.hsla-clamp-2.html": [ - "0f32fb5474a517c6f527d5cd217b0085d4829bb4", - [ - null, - {} - ] - ], - "2d.fillStyle.parse.hsla-clamp-3.html": [ - "4bc134aec5ceba79cc4991cdac16ba2a4c71c624", - [ - null, - {} - ] - ], - "2d.fillStyle.parse.hsla-clamp-4.html": [ - "f8b2382755a7c51d33f34798328389aa9776a03e", + "2d.fillStyle.parse.hsla-clamp-alpha-1.html": [ + "e5dc98d4e3a90e698407cee2954e6de004e8b58b", [ null, {} ] ], - "2d.fillStyle.parse.hsla-clamp-5.html": [ - "9c5e2258b9e5a108daa2729969d4621262f4a778", + "2d.fillStyle.parse.hsla-clamp-alpha-2.html": [ + "26139a562ee57d63eca44d3c5348e05569f75fbe", [ null, {} ] ], - "2d.fillStyle.parse.hsla-clamp-6.html": [ - "153515eeddacbeaf784415ea9a20260795cbec54", + "2d.fillStyle.parse.hsla-clamp-negative-saturation.html": [ + "2d9b9d3bdf9aec50271993fca60c5ffe25b813a7", [ null, {} @@ -623207,6 +644289,13 @@ {} ] ], + "2d.gradient.colormix.html": [ + "f0dff89ae9d4a6e5e38ca594b5a5ff3f15c8fbfe", + [ + null, + {} + ] + ], "2d.gradient.conic.invalid.inputs.html": [ "1a4cde4146f8a5e8cf314f1a88dd4639f7206e7d", [ @@ -624008,77 +645097,77 @@ }, "filters": { "2d.filter.canvasFilterObject.blur.exceptions.tentative.html": [ - "42fb1ee8f84ff038c9b67f681d05a6a7323b88b3", + "dc9479286765c4ba0bb9711c4355c682888c8f6e", [ null, {} ] ], "2d.filter.canvasFilterObject.colorMatrix.tentative.html": [ - "b2f6a6ac97ef2109c9af632be71975b54a8391bd", + "56cf1bf0b1c6619d14cf01ef767b4ef3c13648d8", [ null, {} ] ], - "2d.filter.canvasFilterObject.componentTransfer.discrete.tentative.html": [ - "b392b189f21ef09e1a27f293b71ef9031469ab70", + "2d.filter.canvasFilterObject.convolveMatrix.exceptions.tentative.html": [ + "a28854105703450afe35065eea809992800c4c08", [ null, {} ] ], - "2d.filter.canvasFilterObject.componentTransfer.gamma.tentative.html": [ - "e5bff7e44dfc5afa69788ce7577e154d55be2557", + "2d.filter.canvasFilterObject.dropShadow.exceptions.tentative.html": [ + "8fc6377f83704ad57bfad0225be6687cec77f598", [ null, {} ] ], - "2d.filter.canvasFilterObject.componentTransfer.identity.tentative.html": [ - "ecd3830be3e2e0bf8c9aa7192d4d3c79d0b3082d", + "2d.filter.canvasFilterObject.tentative.html": [ + "c40e718d7229d64f4f0edb6a53267c0e01b7330a", [ null, {} ] ], - "2d.filter.canvasFilterObject.componentTransfer.linear.tentative.html": [ - "8708887f6a511699e8d1132c1e78c754fb5b7ec4", + "2d.filter.canvasFilterObject.turbulence.inputTypes.tentative.html": [ + "b85add4b664fe8b814fd710ed97823746052ed1d", [ null, {} ] ], - "2d.filter.canvasFilterObject.componentTransfer.table.tentative.html": [ - "4b296d9fd7d513d96b6f6f63045cebcf057697bc", + "2d.filter.layers.blur.exceptions.html": [ + "7176a7d0a488bb99c57a81c5510c43d682f5d69c", [ null, {} ] ], - "2d.filter.canvasFilterObject.convolveMatrix.exceptions.tentative.html": [ - "b80600c14175f48e1e871f1fc5893cb0755a4228", + "2d.filter.layers.colorMatrix.html": [ + "ef0ae0f949b8f460802c02e33cbb7e74195d854d", [ null, {} ] ], - "2d.filter.canvasFilterObject.dropShadow.exceptions.tentative.html": [ - "8c07a72b2b3ff6675d49c0313e653d2a655401c7", + "2d.filter.layers.convolveMatrix.exceptions.html": [ + "ae45cb865c552efd6527ed580faaa91ff501c6bb", [ null, {} ] ], - "2d.filter.canvasFilterObject.tentative.html": [ - "c40e718d7229d64f4f0edb6a53267c0e01b7330a", + "2d.filter.layers.dropShadow.exceptions.html": [ + "0c3b6a8ce9f3a04d67511301c7e2aa9d94262716", [ null, {} ] ], - "2d.filter.canvasFilterObject.turbulence.inputTypes.tentative.html": [ - "c24cfd23981e89809fac0717ce267247a5ca5f14", + "2d.filter.layers.turbulence.inputTypes.html": [ + "26dceaae1659f2ae70f6c2718125cbed54690025", [ null, {} @@ -624094,70 +645183,84 @@ }, "layers": { "2d.layer.beginLayer-options.html": [ - "658d7e0991702211b5b7ca344609c9f374530f16", + "573d3000557258cb823df0737673f35cacbb1e91", + [ + null, + {} + ] + ], + "2d.layer.ctm.getTransform.html": [ + "d669b3c522c7a3cb9827d57f95ebead4fbd550fa", [ null, {} ] ], "2d.layer.exceptions-are-no-op.html": [ - "7ab2080fca382babacd8908b1b5ebbddb9f2c2ad", + "facffd74e9cf095b3650df1d80b9747cafdf8c82", [ null, {} ] ], "2d.layer.invalid-calls.beginLayer-reset-endLayer.html": [ - "74e05e1e48e7901aa0e2383eb66af0a7e14def3e", + "1544bbcb82d1ef21d991064249289889971456a7", [ null, {} ] ], "2d.layer.invalid-calls.beginLayer-restore.html": [ - "1979cb6c73a1097d4351ca80331d68f9ce853cfd", + "3d33fbf7fb6880985bddf159af7e6a7f64b08501", [ null, {} ] ], "2d.layer.invalid-calls.beginLayer-save-endLayer.html": [ - "c635ac75b99d8de628fa5d4fad4e04e286b99479", + "e48f806f320f4a173f5b30c130dac40765052810", [ null, {} ] ], "2d.layer.invalid-calls.endLayer.html": [ - "c39a352d65fa5f5d41d550f199a8d859aec6cdb8", + "2950de37bc06bc0ee63896552da841f46e4cba14", [ null, {} ] ], "2d.layer.invalid-calls.save-beginLayer-restore.html": [ - "e2d4d5658904ccf8650309b7e9c27a57f1512cf7", + "ff21610074fb4f79e39aba84bbac61d0c9832ec6", [ null, {} ] ], "2d.layer.invalid-calls.save-endLayer.html": [ - "f4308e1191dddebd530f12b759b72c84c27ebabf", + "5c6da4b5bcc17db30dfa2fa8bc260c94bfd7ca60", [ null, {} ] ], "2d.layer.layer-rendering-state-reset-in-layer.html": [ - "9283fd39b7d265860c0e1eafffcefc46783c4a87", + "5d755cfc498552a4543a6e3b843fd9929cdd74d6", + [ + null, + {} + ] + ], + "2d.layer.malformed-operations-with-promises.html": [ + "e3af9a32a364146267c73114ab3b7c5c260fabe4", [ null, {} ] ], - "2d.layer.putImageData.html": [ - "1e4d3331d8f0f7cbdcbe2ac0f045d0882fbcfc00", + "2d.layer.malformed-operations.html": [ + "d27e1bf6ebaf02dc596786bdd05bbe7dff0d23c6", [ null, {} @@ -625737,8 +646840,8 @@ {} ] ], - "2d.path.roundrect.1.radius.dompoint.single argument.html": [ - "96e933870babaff3f080e04084a9220f58ffc495", + "2d.path.roundrect.1.radius.dompoint.single.argument.html": [ + "d5ab502c9edfcbd3a701805f789de9e46a11de98", [ null, {} @@ -626911,36 +648014,6 @@ ] ] }, - "scroll": { - "2d.scrollPathIntoView.basic.html": [ - "e4cf8ea9ad2add2d46cd2b7750853486f675d416", - [ - null, - {} - ] - ], - "2d.scrollPathIntoView.path.html": [ - "ee1f833aaf38daf9e8776b30932ff8331edc2421", - [ - null, - {} - ] - ], - "2d.scrollPathIntoView.verticalLR.html": [ - "9d09980b6f0a35930a3c593ea1292b16ea9d5969", - [ - null, - {} - ] - ], - "2d.scrollPathIntoView.verticalRL.html": [ - "8193106f8e8b7d0063cf364c0b7def61774e2662", - [ - null, - {} - ] - ] - }, "shadows": { "2d.shadow.alpha.1.html": [ "8888ae68856d37dad31b0138b59a8115039645bf", @@ -627638,7 +648711,7 @@ ] ], "2d.text.drawing.style.fontStretch.settings.html": [ - "b19eced89171199dcfb57f1d5aea4b8f7e83c427", + "bbb5757083dd70e7d158d8da6e8a40aa90713b23", [ null, {} @@ -627700,6 +648773,20 @@ {} ] ], + "2d.text.drawing.style.reset.TextRendering.html": [ + "b66a30ed3ffcea3d636b00e4ca5f3beb898878a5", + [ + null, + {} + ] + ], + "2d.text.drawing.style.reset.fontKerning.none.html": [ + "eab7c2ce34730f3cef81d8a48a7a9a3ec509c985", + [ + null, + {} + ] + ], "2d.text.drawing.style.textRendering.settings.html": [ "dee856842ae8e764ddf454e77749c098e8d8ce6d", [ @@ -627819,15 +648906,29 @@ {} ] ], - "2d.text.measure.advances.html": [ - "84f04dd677f836bc1b747497071248ac811c1005", + "2d.text.measure.baselines.html": [ + "9d947eb361879bdc55306d2b9313fcf221769016", + [ + null, + {} + ] + ], + "2d.text.measure.caret-position-edge-cases.tentative.html": [ + "b1d4b87397388cf298d75ae1634e5e2838c829af", [ null, {} ] ], - "2d.text.measure.baselines.html": [ - "9d947eb361879bdc55306d2b9313fcf221769016", + "2d.text.measure.caret-position-edges.tentative.html": [ + "3a772bfd6cd5e15243ae45d39e82024ecf83f967", + [ + null, + {} + ] + ], + "2d.text.measure.caret-position.tentative.html": [ + "53c91264d7c678e63e8f24fa833c57610ee222a5", [ null, {} @@ -627882,6 +648983,48 @@ {} ] ], + "2d.text.measure.getActualBoundingBox-exceptions.tentative.html": [ + "e60d1e337d3a8cd3e56bc8004097e2b9ffdfddff", + [ + null, + {} + ] + ], + "2d.text.measure.getActualBoundingBox-full-text.tentative.html": [ + "510bce84f2861f281e931881a7da87cd70473740", + [ + null, + {} + ] + ], + "2d.text.measure.getActualBoundingBox.tentative.html": [ + "6f3b66a355beb8676b680cd4a06f349d0e29f3d1", + [ + null, + {} + ] + ], + "2d.text.measure.selection-rects-baselines.tentative.html": [ + "4c6f82889835d89f73e4c65f2e7f82c1b5240994", + [ + null, + {} + ] + ], + "2d.text.measure.selection-rects-exceptions.tentative.html": [ + "565834280e5673121a9e3ec8566fd1e8542d9e9c", + [ + null, + {} + ] + ], + "2d.text.measure.selection-rects.tentative.html": [ + "9de40eb61f2ac54eb4833d886baa8f236327d104", + [ + null, + {} + ] + ], "2d.text.measure.width.basic.html": [ "36dc468b4e90585b616e684d3a3667c24ab94752", [ @@ -628312,6 +649455,24 @@ ] } }, + "historical.any.js": [ + "a68b1dcabc80cc09e961d3c558770157ea3c4c52", + [ + "html/canvas/historical.any.html", + {} + ], + [ + "html/canvas/historical.any.worker.html", + {} + ] + ], + "historical.window.js": [ + "dde72541cfa9171ae3cfb105f75aee249625c54b", + [ + "html/canvas/historical.window.html", + {} + ] + ], "offscreen": { "2d.conformance.requirements.basics.html": [ "a89ec10f9b5ff8816962e42b119dc03785d1b203", @@ -628385,47 +649546,75 @@ ] ], "2d.canvas.context.exists.html": [ - "41b5cfee311334cdb35e5721b88f4bc93a11e427", + "21f35515a53708c512f8e4983a14b0752d04aa3d", [ null, {} ] ], "2d.canvas.context.exists.worker.js": [ - "77a43530a04636635cca71221f577df7a56e5337", + "f56aff7e12963f772297ceab8f4207dc8e6ba839", [ "html/canvas/offscreen/canvas-context/2d.canvas.context.exists.worker.html", {} ] ], "2d.canvas.context.extraargs.cache.html": [ - "2bcf34490ea9ca75d49191ccdf7188eb8797d5f5", + "42f29e4fe90263460fc07e45419fd149ca959d7c", [ null, {} ] ], "2d.canvas.context.extraargs.cache.worker.js": [ - "14284a0a7d7c1c5931f0ff82ad6e02ca1274d7b9", + "f508d5262e0608a2cbe64dd894aa47e4d438e83a", [ "html/canvas/offscreen/canvas-context/2d.canvas.context.extraargs.cache.worker.html", {} ] ], "2d.canvas.context.extraargs.create.html": [ - "029122355c9c8ccaff5e48fc50da707ff5baf236", + "199f5b82edf3c4fc55c1b5b54fa091d06d1b6f1f", [ null, {} ] ], "2d.canvas.context.extraargs.create.worker.js": [ - "b4208edba8cffa2ffdb249b80189aae88573582c", + "d1bfbcc683cfcaf4223aac69a78c7296c187aaeb", [ "html/canvas/offscreen/canvas-context/2d.canvas.context.extraargs.create.worker.html", {} ] ], + "2d.canvas.context.invalid.args.html": [ + "ce71d4cf30f4d2742d41ccff028b70bcac47f104", + [ + null, + {} + ] + ], + "2d.canvas.context.invalid.args.worker.js": [ + "faea21714d56f0d9843a21eb364eece9c50afd5b", + [ + "html/canvas/offscreen/canvas-context/2d.canvas.context.invalid.args.worker.html", + {} + ] + ], + "2d.canvas.context.prototype.html": [ + "17e5f08946417a83047dd2415eefdc50f1ca4279", + [ + null, + {} + ] + ], + "2d.canvas.context.prototype.worker.js": [ + "dd41239d00c37c73f4833e7bcd5d28f5340bda34", + [ + "html/canvas/offscreen/canvas-context/2d.canvas.context.prototype.worker.html", + {} + ] + ], "2d.canvas.context.shared.html": [ "cb9501747eec2c5fde1a63eae5546a64154b1179", [ @@ -628440,73 +649629,73 @@ {} ] ], - "2d.canvas.context.unique.html": [ - "66e4a049baad4b090ca18664782f5197d842ebce", + "2d.canvas.context.type.exists.html": [ + "96b35d86fa1f8dfbbe71e717d0e2e6f6f7aa24de", [ null, {} ] ], - "2d.canvas.context.unique.worker.js": [ - "275e45fde64266a3b8d7474f93e8af615eec1ed9", + "2d.canvas.context.type.exists.worker.js": [ + "239c3e902eacb61428c776e95d9f13c287ea0244", [ - "html/canvas/offscreen/canvas-context/2d.canvas.context.unique.worker.html", + "html/canvas/offscreen/canvas-context/2d.canvas.context.type.exists.worker.html", {} ] ], - "2d.canvas.context.unrecognised.badname.html": [ - "4313f408437e360a08c5d5264b87a46036b2a9ca", + "2d.canvas.context.type.extend.html": [ + "a3f720c7462f79948e2286daf8d45eb8c39b703a", [ null, {} ] ], - "2d.canvas.context.unrecognised.badname.worker.js": [ - "dd16f2fbe1108751f07d1d7a0d05064ffc849995", + "2d.canvas.context.type.extend.worker.js": [ + "9832c5ca77f0559a93e67d122d1f3fc779d0a8ec", [ - "html/canvas/offscreen/canvas-context/2d.canvas.context.unrecognised.badname.worker.html", + "html/canvas/offscreen/canvas-context/2d.canvas.context.type.extend.worker.html", {} ] ], - "2d.canvas.context.unrecognised.badsuffix.html": [ - "c00afa686edd563972620ec5717f252cc57dd347", + "2d.canvas.context.type.prototype.html": [ + "d08193c0def5f8ce82795dacd24e3cfb77385801", [ null, {} ] ], - "2d.canvas.context.unrecognised.badsuffix.worker.js": [ - "5e684c92c72acd87b4c84d48ec6778dbd3553a62", + "2d.canvas.context.type.prototype.worker.js": [ + "459975d32d2c7be264ee1b70206d9ac452ee37fd", [ - "html/canvas/offscreen/canvas-context/2d.canvas.context.unrecognised.badsuffix.worker.html", + "html/canvas/offscreen/canvas-context/2d.canvas.context.type.prototype.worker.html", {} ] ], - "2d.canvas.context.unrecognised.nullsuffix.html": [ - "0ce3d4195e0d19cd882e2019ec1455e83d01613f", + "2d.canvas.context.type.replace.html": [ + "69b22412fa5f628e4bd562bbde99a7484e89b190", [ null, {} ] ], - "2d.canvas.context.unrecognised.nullsuffix.worker.js": [ - "2886010fb644a69ea5e3c96050560a450cb500f2", + "2d.canvas.context.type.replace.worker.js": [ + "e6793d1bf56d94fd4cb1aaecfe059d3b5f19e4bb", [ - "html/canvas/offscreen/canvas-context/2d.canvas.context.unrecognised.nullsuffix.worker.html", + "html/canvas/offscreen/canvas-context/2d.canvas.context.type.replace.worker.html", {} ] ], - "2d.canvas.context.unrecognised.unicode.html": [ - "316123675ad75e31a85c0286760d374c7f316e90", + "2d.canvas.context.unique.html": [ + "828817bfbf444c69d45264d02fdfb2e261e23810", [ null, {} ] ], - "2d.canvas.context.unrecognised.unicode.worker.js": [ - "46e562dd486835e28b41c6215273ebc8f8d4c21e", + "2d.canvas.context.unique.worker.js": [ + "90687bfd07e6fff5936132b2f255f3dbfbc260c4", [ - "html/canvas/offscreen/canvas-context/2d.canvas.context.unrecognised.unicode.worker.html", + "html/canvas/offscreen/canvas-context/2d.canvas.context.unique.worker.html", {} ] ], @@ -628538,14 +649727,14 @@ ] ], "2d.canvas.host.initial.reset.2dstate.html": [ - "36230dab7735685ef0c4714aff07f42a3edd995e", + "f6aaf9c9bbbcf9105578b8da81694a3aa63b1308", [ null, {} ] ], "2d.canvas.host.initial.reset.2dstate.worker.js": [ - "df0bd9f63cb6e2df735b7d321f16e86c4adbe7b0", + "fe0db573c6df6712640cb26f3a8e425270c8423d", [ "html/canvas/offscreen/canvas-host/2d.canvas.host.initial.reset.2dstate.worker.html", {} @@ -628650,14 +649839,14 @@ ] ], "2d.canvas.host.readonly.html": [ - "0e7e10cd242adf6d09ea41e0ca6df4f39d3182a9", + "93262a6cc87c709610e579274506728f0b5d93ce", [ null, {} ] ], "2d.canvas.host.readonly.worker.js": [ - "bbe50dcf61f461ceb3d7e1887d0c4049bf3292ae", + "5baef1b374057326c91b25030a88756cf3119728", [ "html/canvas/offscreen/canvas-host/2d.canvas.host.readonly.worker.html", {} @@ -628692,7 +649881,7 @@ ] ], "2d.canvas.host.size.attributes.idl.html": [ - "7030103524caeb33d53d717624de77515924bfa1", + "b8ce99afdfd7203ad215d1638225d1e7d2fe5eb7", [ null, {} @@ -628713,7 +649902,7 @@ ] ], "2d.canvas.host.size.attributes.idl.worker.js": [ - "a00201f18cc59687e75881b3763e1869b14c8ee8", + "42002e8355fd5f53a64b66ec60b8370d92059552", [ "html/canvas/offscreen/canvas-host/2d.canvas.host.size.attributes.idl.worker.html", {} @@ -628957,6 +650146,20 @@ {} ] ], + "2d.canvas.host.size.invalid.attributes.idl.html": [ + "2194de929c52b218085976552206e5e7b682ea00", + [ + null, + {} + ] + ], + "2d.canvas.host.size.invalid.attributes.idl.worker.js": [ + "8adb7a514c542bbf3acf19be4c0922bc4d46fb4a", + [ + "html/canvas/offscreen/canvas-host/2d.canvas.host.size.invalid.attributes.idl.worker.html", + {} + ] + ], "2d.canvas.host.size.large.html": [ "b220f8f2edea11803098283367b624f97ec56869", [ @@ -628970,6 +650173,34 @@ "html/canvas/offscreen/canvas-host/2d.canvas.host.size.large.worker.html", {} ] + ], + "2d.canvas.host.type.delete.html": [ + "1d2a733ada7eab058e16b20795e945a11dc9db43", + [ + null, + {} + ] + ], + "2d.canvas.host.type.delete.worker.js": [ + "409e12cd0d0d090dbef46a221e7ba96d06b17029", + [ + "html/canvas/offscreen/canvas-host/2d.canvas.host.type.delete.worker.html", + {} + ] + ], + "2d.canvas.host.type.name.html": [ + "5f48c09eaace8064a10e0ef5349824c2f5ebda73", + [ + null, + {} + ] + ], + "2d.canvas.host.type.name.worker.js": [ + "ea50e4f7f0c4266db762be78fbeda58095c71c1e", + [ + "html/canvas/offscreen/canvas-host/2d.canvas.host.type.name.worker.html", + {} + ] ] }, "compositing": { @@ -629387,7 +650618,7 @@ ] ], "2d.composite.globalAlpha.image.worker.js": [ - "20953417ccf2c624121fe73b4a4e7307d0f59700", + "1a181a1cc1a176b458334f5aa4a4489d8674181a", [ "html/canvas/offscreen/compositing/2d.composite.globalAlpha.image.worker.html", {} @@ -629401,7 +650632,7 @@ ] ], "2d.composite.globalAlpha.imagepattern.worker.js": [ - "c6ab163b65b0c236e400c2233b1c76c211a9c812", + "cb8f1413a2d95baded7079dbbba8f0c9951c2da3", [ "html/canvas/offscreen/compositing/2d.composite.globalAlpha.imagepattern.worker.html", {} @@ -630395,7 +651626,7 @@ ] ], "2d.drawImage.3arg.worker.js": [ - "b2f860bc606884f9e8870a7a5107ee4cfc4312dd", + "e91416b03690e793add3dbd718290aa7527358d8", [ "html/canvas/offscreen/drawing-images-to-the-canvas/2d.drawImage.3arg.worker.html", {} @@ -630409,7 +651640,7 @@ ] ], "2d.drawImage.5arg.worker.js": [ - "f725acf0118af0766afbb43871f48a610dc822a5", + "a852f59e550655e7e576891b6754982a4a358d1c", [ "html/canvas/offscreen/drawing-images-to-the-canvas/2d.drawImage.5arg.worker.html", {} @@ -630423,7 +651654,7 @@ ] ], "2d.drawImage.9arg.basic.worker.js": [ - "b2d6f7d860d57331a60ef34208eb22479f79390b", + "ca5b6c223cb971b31ce780993881bd0f6faad652", [ "html/canvas/offscreen/drawing-images-to-the-canvas/2d.drawImage.9arg.basic.worker.html", {} @@ -630437,7 +651668,7 @@ ] ], "2d.drawImage.9arg.destpos.worker.js": [ - "380d526f9b4ff6a1571ad073bac1cf6096a5a9f5", + "aff6c21108f81fe37befdd8d5d98238d63454bb4", [ "html/canvas/offscreen/drawing-images-to-the-canvas/2d.drawImage.9arg.destpos.worker.html", {} @@ -630451,7 +651682,7 @@ ] ], "2d.drawImage.9arg.destsize.worker.js": [ - "76e3e8baaf1c9d03a38bb93cd567c308bc7b1e3d", + "a3c14535c53a6ad92ed574c8214e4679009a5450", [ "html/canvas/offscreen/drawing-images-to-the-canvas/2d.drawImage.9arg.destsize.worker.html", {} @@ -630465,7 +651696,7 @@ ] ], "2d.drawImage.9arg.sourcepos.worker.js": [ - "d3525435fa17c3f27abdf0a92f27fdfae8c1cc11", + "0c060f70084719acbfc8fa225626b7860f240e6f", [ "html/canvas/offscreen/drawing-images-to-the-canvas/2d.drawImage.9arg.sourcepos.worker.html", {} @@ -630479,7 +651710,7 @@ ] ], "2d.drawImage.9arg.sourcesize.worker.js": [ - "aa15efb705921e804c6f31eda6717ce9f5ba8d5a", + "7d7f064b268cfd0c9a414da6df39e6d465085ebb", [ "html/canvas/offscreen/drawing-images-to-the-canvas/2d.drawImage.9arg.sourcesize.worker.html", {} @@ -630493,7 +651724,7 @@ ] ], "2d.drawImage.alpha.worker.js": [ - "958a2431b6d9823b2ac0a31e848d178d13f2bdf1", + "6854a06d9fa8b62938d0fa3818a49d7ee81121a9", [ "html/canvas/offscreen/drawing-images-to-the-canvas/2d.drawImage.alpha.worker.html", {} @@ -630507,7 +651738,7 @@ ] ], "2d.drawImage.broken.worker.js": [ - "dc695b5459e0ed0a3866365777fcc083d95e404f", + "1b2b0f83eda41c95661db86d53fc359b150797f6", [ "html/canvas/offscreen/drawing-images-to-the-canvas/2d.drawImage.broken.worker.html", {} @@ -630535,7 +651766,7 @@ ] ], "2d.drawImage.clip.worker.js": [ - "fea2a7bac70adc7f2b638f887acc884d6c20a916", + "ce4231c2ac9ea40dbcfb0cf647494aaac842868f", [ "html/canvas/offscreen/drawing-images-to-the-canvas/2d.drawImage.clip.worker.html", {} @@ -630549,7 +651780,7 @@ ] ], "2d.drawImage.composite.worker.js": [ - "0b17673b6896585e67fd72cc6003faa768269ccf", + "e9d0d9c77a01acfa192a1381671780a6606ae166", [ "html/canvas/offscreen/drawing-images-to-the-canvas/2d.drawImage.composite.worker.html", {} @@ -630563,7 +651794,7 @@ ] ], "2d.drawImage.floatsource.worker.js": [ - "1efc17d04d068d568e4e0d31609b43161b40d5a8", + "18ecb11aacbe4810ddd7c4c09d7dc40e48baf933", [ "html/canvas/offscreen/drawing-images-to-the-canvas/2d.drawImage.floatsource.worker.html", {} @@ -630577,7 +651808,7 @@ ] ], "2d.drawImage.negativedest.worker.js": [ - "ce5cf5efadc021f78024440abbd52544d119c4da", + "36c4b274724bc7bfbf31c25f71a039b267066c55", [ "html/canvas/offscreen/drawing-images-to-the-canvas/2d.drawImage.negativedest.worker.html", {} @@ -630591,7 +651822,7 @@ ] ], "2d.drawImage.negativedir.worker.js": [ - "c82b9ba1becfcd246b4ea67c15f59fa94c79ba84", + "f774deef61c842349834ebbe2667a717da19d175", [ "html/canvas/offscreen/drawing-images-to-the-canvas/2d.drawImage.negativedir.worker.html", {} @@ -630605,7 +651836,7 @@ ] ], "2d.drawImage.negativesource.worker.js": [ - "f92d15774d78c92c7f7d6d324c338b08b4790b0d", + "804a09f699e13384c159fe650e9b1064458f7f31", [ "html/canvas/offscreen/drawing-images-to-the-canvas/2d.drawImage.negativesource.worker.html", {} @@ -630619,7 +651850,7 @@ ] ], "2d.drawImage.nonfinite.worker.js": [ - "a56f09e0b2dd96f0db81473edd0ae44c2da76784", + "e9ca406fd249018be5a7ba274cb266fb79fafa96", [ "html/canvas/offscreen/drawing-images-to-the-canvas/2d.drawImage.nonfinite.worker.html", {} @@ -630633,7 +651864,7 @@ ] ], "2d.drawImage.nowrap.worker.js": [ - "47a77834c05065fd079b21b3b60a59fd15add75f", + "5728d424d3ef7929799f6988205bd3ce7cec77f0", [ "html/canvas/offscreen/drawing-images-to-the-canvas/2d.drawImage.nowrap.worker.html", {} @@ -630661,7 +651892,7 @@ ] ], "2d.drawImage.path.worker.js": [ - "3259ff02580062d18baa3ccdeaff09bdcf0b2074", + "b18d021074e41f275f7ff1111414e2f50aca09e1", [ "html/canvas/offscreen/drawing-images-to-the-canvas/2d.drawImage.path.worker.html", {} @@ -630710,7 +651941,7 @@ ] ], "2d.drawImage.transform.worker.js": [ - "4a4cd07be9555944c7d5c6b1e59abe26c8be2e3e", + "1ba832155ce09dbb0e46a36f251364791b7e80ec", [ "html/canvas/offscreen/drawing-images-to-the-canvas/2d.drawImage.transform.worker.html", {} @@ -630759,7 +651990,7 @@ ] ], "2d.drawImage.zerosource.worker.js": [ - "a80bfff5621c28b14a3d307a8bf33e40f8de8443", + "61b70b0c475ce19572cf42f24d5140e3026bc787", [ "html/canvas/offscreen/drawing-images-to-the-canvas/2d.drawImage.zerosource.worker.html", {} @@ -631959,6 +653190,20 @@ {} ] ], + "2d.fillStyle.parse.hsl-clamp-negative-saturation.html": [ + "69277677b96c28a23249f932e5054ec56059dcd8", + [ + null, + {} + ] + ], + "2d.fillStyle.parse.hsl-clamp-negative-saturation.worker.js": [ + "7f1e91ddb7b81e42ff0e0d7a74e53f8c777f41b5", + [ + "html/canvas/offscreen/fill-and-stroke-styles/2d.fillStyle.parse.hsl-clamp-negative-saturation.worker.html", + {} + ] + ], "2d.fillStyle.parse.hsla-1.html": [ "67a65da730e9c7c66dec30eef1bf23a28fa2e6ce", [ @@ -632071,6 +653316,48 @@ {} ] ], + "2d.fillStyle.parse.hsla-clamp-alpha-1.html": [ + "5d73d34c9c64b40348dcca200359b6f6cb9ccd4d", + [ + null, + {} + ] + ], + "2d.fillStyle.parse.hsla-clamp-alpha-1.worker.js": [ + "7acb76d80b83aa01f59903006d8b6f557f30d582", + [ + "html/canvas/offscreen/fill-and-stroke-styles/2d.fillStyle.parse.hsla-clamp-alpha-1.worker.html", + {} + ] + ], + "2d.fillStyle.parse.hsla-clamp-alpha-2.html": [ + "eaf7a6af89cf0cb04641cd29c99740d3d00f7930", + [ + null, + {} + ] + ], + "2d.fillStyle.parse.hsla-clamp-alpha-2.worker.js": [ + "540b3ea15f08e6dfb2b956cf9ad05a447d687d27", + [ + "html/canvas/offscreen/fill-and-stroke-styles/2d.fillStyle.parse.hsla-clamp-alpha-2.worker.html", + {} + ] + ], + "2d.fillStyle.parse.hsla-clamp-negative-saturation.html": [ + "04749fb4a79bbd2cf1bb54ccec985ee77aa3d301", + [ + null, + {} + ] + ], + "2d.fillStyle.parse.hsla-clamp-negative-saturation.worker.js": [ + "f5fe6d4296dca10d062b76b5d3ba2f9d2af387f0", + [ + "html/canvas/offscreen/fill-and-stroke-styles/2d.fillStyle.parse.hsla-clamp-negative-saturation.worker.html", + {} + ] + ], "2d.fillStyle.parse.html4.html": [ "fc1c1af18b4938f6375fe9e5c16f814bd6cc346a", [ @@ -633829,7 +655116,7 @@ ] ], "2d.pattern.basic.image.worker.js": [ - "14cfcbc9939e7a365131e549489cfae828f4b3b5", + "cc2dc301cadeee5867a92d07ac5dce1288078ddb", [ "html/canvas/offscreen/fill-and-stroke-styles/2d.pattern.basic.image.worker.html", {} @@ -633857,7 +655144,7 @@ ] ], "2d.pattern.basic.type.worker.js": [ - "56a8a7d23cd4713810dfaebe3bce94d1071cc9f0", + "382214a49e4ec317d1a5016ca4cbcc82d3eb30ad", [ "html/canvas/offscreen/fill-and-stroke-styles/2d.pattern.basic.type.worker.html", {} @@ -633885,7 +655172,7 @@ ] ], "2d.pattern.crosscanvas.worker.js": [ - "d9004fc028bca07f8e38e7de68d5e548cf0c50fd", + "ff2acc6851cb922d106f0120a74eebd612480981", [ "html/canvas/offscreen/fill-and-stroke-styles/2d.pattern.crosscanvas.worker.html", {} @@ -633969,7 +655256,7 @@ ] ], "2d.pattern.paint.norepeat.basic.worker.js": [ - "9ac4e1605c7c03388fe29fc23530b6c9c854d54a", + "a093e61d25a0d907258dedeb8788c06063756024", [ "html/canvas/offscreen/fill-and-stroke-styles/2d.pattern.paint.norepeat.basic.worker.html", {} @@ -633983,7 +655270,7 @@ ] ], "2d.pattern.paint.norepeat.coord1.worker.js": [ - "6c4a1409b7d4fc3360f62919ef5e9d47937a2668", + "3b4365d6e79ff6b8e84e0a32efd770c940a26b01", [ "html/canvas/offscreen/fill-and-stroke-styles/2d.pattern.paint.norepeat.coord1.worker.html", {} @@ -633997,7 +655284,7 @@ ] ], "2d.pattern.paint.norepeat.coord2.worker.js": [ - "d2fdd86022a318bed3776f49e80b61fd301afb5a", + "3314efdd3a63abed21bed4cfbcca1fcff8c633b7", [ "html/canvas/offscreen/fill-and-stroke-styles/2d.pattern.paint.norepeat.coord2.worker.html", {} @@ -634011,7 +655298,7 @@ ] ], "2d.pattern.paint.norepeat.coord3.worker.js": [ - "584a5d6cfdd48a7675e514bcc9f2309578e85fbd", + "6120bd0549c6ade8bddfc51dd47e76bf0b64ec11", [ "html/canvas/offscreen/fill-and-stroke-styles/2d.pattern.paint.norepeat.coord3.worker.html", {} @@ -634025,7 +655312,7 @@ ] ], "2d.pattern.paint.norepeat.outside.worker.js": [ - "0b5fef95ce0e7d2ae12897d4ea2b697df4bc3ce6", + "b029f90a372c09019d58913199e474abe2929dc7", [ "html/canvas/offscreen/fill-and-stroke-styles/2d.pattern.paint.norepeat.outside.worker.html", {} @@ -634053,7 +655340,7 @@ ] ], "2d.pattern.paint.orientation.image.worker.js": [ - "b303b2d813b7b540ab6e9f7ad72aa0d0a1234ba9", + "b3e61d53e935496d7dda2de818b4cc33ae5ba77a", [ "html/canvas/offscreen/fill-and-stroke-styles/2d.pattern.paint.orientation.image.worker.html", {} @@ -634067,7 +655354,7 @@ ] ], "2d.pattern.paint.repeat.basic.worker.js": [ - "37f4c04228c2214698446c88a9676cbb834ea1b0", + "872acb1c2065659e9b2d4348c30f2d7662e98132", [ "html/canvas/offscreen/fill-and-stroke-styles/2d.pattern.paint.repeat.basic.worker.html", {} @@ -634081,7 +655368,7 @@ ] ], "2d.pattern.paint.repeat.coord1.worker.js": [ - "efbd1c58469bd780dbe89aa495852712892d36a8", + "009b072b22d224e76804288e942bb0e27de10f8e", [ "html/canvas/offscreen/fill-and-stroke-styles/2d.pattern.paint.repeat.coord1.worker.html", {} @@ -634095,7 +655382,7 @@ ] ], "2d.pattern.paint.repeat.coord2.worker.js": [ - "db707ecb0a656fd783d43aca1227075415f46541", + "21e33490038a732598e6b0d02f01f74187547741", [ "html/canvas/offscreen/fill-and-stroke-styles/2d.pattern.paint.repeat.coord2.worker.html", {} @@ -634109,7 +655396,7 @@ ] ], "2d.pattern.paint.repeat.coord3.worker.js": [ - "e58cddccfeb2f0873cf64a0cffa25495fcdf59cc", + "39c6037ad01a8de186b02fb68b0ddbbc541676ec", [ "html/canvas/offscreen/fill-and-stroke-styles/2d.pattern.paint.repeat.coord3.worker.html", {} @@ -634123,7 +655410,7 @@ ] ], "2d.pattern.paint.repeat.outside.worker.js": [ - "4a173af0b40a5eab5531d8037855441cb7bb1e06", + "2b4739fbb4ba037161ec47e79329e28016282ca3", [ "html/canvas/offscreen/fill-and-stroke-styles/2d.pattern.paint.repeat.outside.worker.html", {} @@ -634137,7 +655424,7 @@ ] ], "2d.pattern.paint.repeatx.basic.worker.js": [ - "e776f7a008a959b895ea3a4342095ba16adddebf", + "0b93221e07872f0fb2427f7ff7f6fb6a530bc7cb", [ "html/canvas/offscreen/fill-and-stroke-styles/2d.pattern.paint.repeatx.basic.worker.html", {} @@ -634151,7 +655438,7 @@ ] ], "2d.pattern.paint.repeatx.coord1.worker.js": [ - "57c2102cc834952d05feed42d985fcc26b2376e6", + "9dec7cea47bc7060a591a2fc452e21c661de86bf", [ "html/canvas/offscreen/fill-and-stroke-styles/2d.pattern.paint.repeatx.coord1.worker.html", {} @@ -634165,7 +655452,7 @@ ] ], "2d.pattern.paint.repeatx.outside.worker.js": [ - "e40f6aa20751a95d7ca5304a4aea3a3740e98a44", + "65cfe4e5edbc28119268f213d0177566c52987a3", [ "html/canvas/offscreen/fill-and-stroke-styles/2d.pattern.paint.repeatx.outside.worker.html", {} @@ -634179,7 +655466,7 @@ ] ], "2d.pattern.paint.repeaty.basic.worker.js": [ - "6a53b5dc4d2027e3933c12c7d341578deda13937", + "ee717dcabc46aeb1a7686a9dadd06b324cabcb2d", [ "html/canvas/offscreen/fill-and-stroke-styles/2d.pattern.paint.repeaty.basic.worker.html", {} @@ -634193,7 +655480,7 @@ ] ], "2d.pattern.paint.repeaty.coord1.worker.js": [ - "d59abb6e0751a37ef9a9e0b464055455b1012859", + "e35777a8db288e43970e2581e18b8ab9548a0ef5", [ "html/canvas/offscreen/fill-and-stroke-styles/2d.pattern.paint.repeaty.coord1.worker.html", {} @@ -634207,7 +655494,7 @@ ] ], "2d.pattern.paint.repeaty.outside.worker.js": [ - "c4feba10ca228136279d0220033531575af72ae3", + "531ff55637af0841326cf68ff3c130da01910bbe", [ "html/canvas/offscreen/fill-and-stroke-styles/2d.pattern.paint.repeaty.outside.worker.html", {} @@ -634235,7 +655522,7 @@ ] ], "2d.pattern.repeat.empty.worker.js": [ - "5aefc0dab3e74814754653b941ce9cab660b51c2", + "c2ed94a4bbba3cc43e1b863aeb3d261094597fbb", [ "html/canvas/offscreen/fill-and-stroke-styles/2d.pattern.repeat.empty.worker.html", {} @@ -634377,156 +655664,156 @@ }, "filters": { "2d.filter.canvasFilterObject.blur.exceptions.tentative.html": [ - "d8f14529c5306cccc5dd4806186e935edb2c4a2a", + "e7461eacdbd2c9f56ec9454b02edbbb7f5d5c1a4", [ null, {} ] ], "2d.filter.canvasFilterObject.blur.exceptions.tentative.worker.js": [ - "9b3fb3c04cd5a98f0d4f6b5b27035ba72bd98c39", + "1c271689688b67dfb5ac8ec09ed99666f192f46d", [ "html/canvas/offscreen/filters/2d.filter.canvasFilterObject.blur.exceptions.tentative.worker.html", {} ] ], "2d.filter.canvasFilterObject.colorMatrix.tentative.html": [ - "242094d9f9fb8cc500bed216f9ed9d72ef53b66d", + "0370c1387bc5714b02d42fc529bb706c4e7007e2", [ null, {} ] ], "2d.filter.canvasFilterObject.colorMatrix.tentative.worker.js": [ - "d214e1d836e0e4dbb1ebeb572a56853c2c0c2cfd", + "62e4582efdadb1a9bc9b0d9f44120366c0bf6c24", [ "html/canvas/offscreen/filters/2d.filter.canvasFilterObject.colorMatrix.tentative.worker.html", {} ] ], - "2d.filter.canvasFilterObject.componentTransfer.discrete.tentative.html": [ - "ff1de6bc9cf648c47f0f5d45a62fb7030dca0b65", + "2d.filter.canvasFilterObject.convolveMatrix.exceptions.tentative.html": [ + "08f8860e99882873786ac3aa7dd846b9bb27ffa7", [ null, {} ] ], - "2d.filter.canvasFilterObject.componentTransfer.discrete.tentative.worker.js": [ - "0e68f4899fe7167e28a9804a1aa3c20d034247a8", + "2d.filter.canvasFilterObject.convolveMatrix.exceptions.tentative.worker.js": [ + "105ed67a758ee611069a28562955ef69680e3470", [ - "html/canvas/offscreen/filters/2d.filter.canvasFilterObject.componentTransfer.discrete.tentative.worker.html", + "html/canvas/offscreen/filters/2d.filter.canvasFilterObject.convolveMatrix.exceptions.tentative.worker.html", {} ] ], - "2d.filter.canvasFilterObject.componentTransfer.gamma.tentative.html": [ - "64c30fc4177e4388b6d5323be1ef0a520b6f1c5f", + "2d.filter.canvasFilterObject.dropShadow.exceptions.tentative.html": [ + "4a4ce5a59a923b3997dde8fa7d328789bc21e096", [ null, {} ] ], - "2d.filter.canvasFilterObject.componentTransfer.gamma.tentative.worker.js": [ - "d59bc699df90ed04d8cf6fa23fc86ce3a399813c", + "2d.filter.canvasFilterObject.dropShadow.exceptions.tentative.worker.js": [ + "b51af5757cdd11caf82d730c6a72c94c09a9054b", [ - "html/canvas/offscreen/filters/2d.filter.canvasFilterObject.componentTransfer.gamma.tentative.worker.html", + "html/canvas/offscreen/filters/2d.filter.canvasFilterObject.dropShadow.exceptions.tentative.worker.html", {} ] ], - "2d.filter.canvasFilterObject.componentTransfer.identity.tentative.html": [ - "e0d628952e0f01af9c0db1082ec2fee1854e6d86", + "2d.filter.canvasFilterObject.tentative.html": [ + "fb99ef7d1ff8013e7ebfd4146ed0688f9ed2277c", [ null, {} ] ], - "2d.filter.canvasFilterObject.componentTransfer.identity.tentative.worker.js": [ - "1b714b58ff741ca5f025c1863d61722092470edd", + "2d.filter.canvasFilterObject.tentative.worker.js": [ + "db95e0b006c414019f3cc687a359e0b833b6ed75", [ - "html/canvas/offscreen/filters/2d.filter.canvasFilterObject.componentTransfer.identity.tentative.worker.html", + "html/canvas/offscreen/filters/2d.filter.canvasFilterObject.tentative.worker.html", {} ] ], - "2d.filter.canvasFilterObject.componentTransfer.linear.tentative.html": [ - "adbe557fd96dccfe4e8260ef0a51e745eea7f5c9", + "2d.filter.canvasFilterObject.turbulence.inputTypes.tentative.html": [ + "8ad2a5ccfb04ebde5ca9b8c74a803a7b2613187f", [ null, {} ] ], - "2d.filter.canvasFilterObject.componentTransfer.linear.tentative.worker.js": [ - "fb2e01876fcb270908f80b5e6844308a7fa2dcc0", + "2d.filter.canvasFilterObject.turbulence.inputTypes.tentative.worker.js": [ + "16199cb0ecf390d99494c14f456c8bac396c9647", [ - "html/canvas/offscreen/filters/2d.filter.canvasFilterObject.componentTransfer.linear.tentative.worker.html", + "html/canvas/offscreen/filters/2d.filter.canvasFilterObject.turbulence.inputTypes.tentative.worker.html", {} ] ], - "2d.filter.canvasFilterObject.componentTransfer.table.tentative.html": [ - "47048b68a149d83916023974af2ea45381a8363a", + "2d.filter.layers.blur.exceptions.html": [ + "36dd856456c52944ab1edc0017c5344a4fd7fe04", [ null, {} ] ], - "2d.filter.canvasFilterObject.componentTransfer.table.tentative.worker.js": [ - "0799e73a583d20709c630470f6d226b455a29a6e", + "2d.filter.layers.blur.exceptions.worker.js": [ + "a053b8113c4ef8d1e510f41356ee014ed42a33ff", [ - "html/canvas/offscreen/filters/2d.filter.canvasFilterObject.componentTransfer.table.tentative.worker.html", + "html/canvas/offscreen/filters/2d.filter.layers.blur.exceptions.worker.html", {} ] ], - "2d.filter.canvasFilterObject.convolveMatrix.exceptions.tentative.html": [ - "301d11f888cbe584604a9e99c7cbbcd7124d8547", + "2d.filter.layers.colorMatrix.html": [ + "9e12acbbe0bb53521e7ddb7267c0a308bdba07b2", [ null, {} ] ], - "2d.filter.canvasFilterObject.convolveMatrix.exceptions.tentative.worker.js": [ - "b4ce4d76b24e733495907f9bc0ac9e0a5ae0b6bb", + "2d.filter.layers.colorMatrix.worker.js": [ + "12cdff3868881decae30b3e2d7249b237320ca4b", [ - "html/canvas/offscreen/filters/2d.filter.canvasFilterObject.convolveMatrix.exceptions.tentative.worker.html", + "html/canvas/offscreen/filters/2d.filter.layers.colorMatrix.worker.html", {} ] ], - "2d.filter.canvasFilterObject.dropShadow.exceptions.tentative.html": [ - "3e55e97e54f8bb7124611ef2c2ece6094dc77800", + "2d.filter.layers.convolveMatrix.exceptions.html": [ + "798822f1042bad113dff0ee44c73ac9c3a4c69a8", [ null, {} ] ], - "2d.filter.canvasFilterObject.dropShadow.exceptions.tentative.worker.js": [ - "bd18524f28b7e6880d83c74df2a1fc487ed5bce9", + "2d.filter.layers.convolveMatrix.exceptions.worker.js": [ + "fa3be89ba2f1a3ee9e665913f3297d38dbe95a82", [ - "html/canvas/offscreen/filters/2d.filter.canvasFilterObject.dropShadow.exceptions.tentative.worker.html", + "html/canvas/offscreen/filters/2d.filter.layers.convolveMatrix.exceptions.worker.html", {} ] ], - "2d.filter.canvasFilterObject.tentative.html": [ - "fb99ef7d1ff8013e7ebfd4146ed0688f9ed2277c", + "2d.filter.layers.dropShadow.exceptions.html": [ + "45d81a6f2b0b0dee9128c3eaeafe48608ef440ef", [ null, {} ] ], - "2d.filter.canvasFilterObject.tentative.worker.js": [ - "db95e0b006c414019f3cc687a359e0b833b6ed75", + "2d.filter.layers.dropShadow.exceptions.worker.js": [ + "65fc751215477a96b8324ca006192aa6ad8b699b", [ - "html/canvas/offscreen/filters/2d.filter.canvasFilterObject.tentative.worker.html", + "html/canvas/offscreen/filters/2d.filter.layers.dropShadow.exceptions.worker.html", {} ] ], - "2d.filter.canvasFilterObject.turbulence.inputTypes.tentative.html": [ - "040c62a96bbb633dc6bf1602461f08a33fe9ec1a", + "2d.filter.layers.turbulence.inputTypes.html": [ + "27f7748c8472436a968935c6f81187754ddd309f", [ null, {} ] ], - "2d.filter.canvasFilterObject.turbulence.inputTypes.tentative.worker.js": [ - "1a950a9207b9c3080d69bc7a191d3ebfb4d664e1", + "2d.filter.layers.turbulence.inputTypes.worker.js": [ + "3728566c9972833ba5d9a6ecb7d13bbcdb735bf4", [ - "html/canvas/offscreen/filters/2d.filter.canvasFilterObject.turbulence.inputTypes.tentative.worker.html", + "html/canvas/offscreen/filters/2d.filter.layers.turbulence.inputTypes.worker.html", {} ] ], @@ -634547,156 +655834,170 @@ }, "layers": { "2d.layer.beginLayer-options.html": [ - "4fb042a1d89b82685629ca83a81b7f2d2a3ce4ed", + "354a03a134d31abf575e5eb03d3d62ce59468152", [ null, {} ] ], "2d.layer.beginLayer-options.worker.js": [ - "cafbc83f3e2fd74826f5d734c1a99f1423f11944", + "492ac3fcea187bdca39a26caaa7bd5d1ae0df1b9", [ "html/canvas/offscreen/layers/2d.layer.beginLayer-options.worker.html", {} ] ], + "2d.layer.ctm.getTransform.html": [ + "919de40d2e579de25a6357e3874f01e5de15f026", + [ + null, + {} + ] + ], + "2d.layer.ctm.getTransform.worker.js": [ + "2d6e6ef8a2a45610082695d60972951df5b3735c", + [ + "html/canvas/offscreen/layers/2d.layer.ctm.getTransform.worker.html", + {} + ] + ], "2d.layer.exceptions-are-no-op.html": [ - "a047c539cfbda487598412027f441f0794c44c07", + "29b316b256472ffc5c8338fd95a438868d0327a1", [ null, {} ] ], "2d.layer.exceptions-are-no-op.worker.js": [ - "bd1e3760847d1577cd76faf39e4d177195c3af63", + "6e253b26d55284e0fa2f16ad4ab0ca9a91cc1a92", [ "html/canvas/offscreen/layers/2d.layer.exceptions-are-no-op.worker.html", {} ] ], "2d.layer.invalid-calls.beginLayer-reset-endLayer.html": [ - "c0b11aa6115b1526ebac823caace5bd489481223", + "e588e48b5f651a0abba2da77e48e7994afc91874", [ null, {} ] ], "2d.layer.invalid-calls.beginLayer-reset-endLayer.worker.js": [ - "1c147d6f349b0c6dbbd01322129ce8055899619f", + "cab1b9d92d8b8ce60ce6082a1f661fd1b875cfea", [ "html/canvas/offscreen/layers/2d.layer.invalid-calls.beginLayer-reset-endLayer.worker.html", {} ] ], "2d.layer.invalid-calls.beginLayer-restore.html": [ - "022532b329d4d657fb6c5eb56584989df1b077fe", + "30a981f75ac382835a6343372fdd6d3f1e3254ea", [ null, {} ] ], "2d.layer.invalid-calls.beginLayer-restore.worker.js": [ - "1aa86635e65cdecdc27766f5e4f60125bf938cf5", + "287f8eb004f9d1df9bb9d3e0810edddc457409db", [ "html/canvas/offscreen/layers/2d.layer.invalid-calls.beginLayer-restore.worker.html", {} ] ], "2d.layer.invalid-calls.beginLayer-save-endLayer.html": [ - "26dd0eee4bcfe01501b351248eed170f83e082a3", + "04992b115ec315fb5a48bdd2f89f2309f88b6cb2", [ null, {} ] ], "2d.layer.invalid-calls.beginLayer-save-endLayer.worker.js": [ - "613921c67c2c0304ddf150b195a298e756b199ff", + "402bf5e0fd7532077e8d29c1b12049218d737d9d", [ "html/canvas/offscreen/layers/2d.layer.invalid-calls.beginLayer-save-endLayer.worker.html", {} ] ], "2d.layer.invalid-calls.endLayer.html": [ - "440249980ad890359a9b857d3fb9408410d9cde5", + "5b7f8a851e11a84daf8ad0b6e5ad3ad434460d8b", [ null, {} ] ], "2d.layer.invalid-calls.endLayer.worker.js": [ - "b2ba231b9c7d13788029242d9c2a52cd72679cc4", + "2229aa9628e005f0ff9b636dce8d7dac42cb6271", [ "html/canvas/offscreen/layers/2d.layer.invalid-calls.endLayer.worker.html", {} ] ], "2d.layer.invalid-calls.save-beginLayer-restore.html": [ - "c2b09961acfa44a59f9f47559fd2566a4b12d585", + "2a6c9b1ccbf60c6e99f54905818fd31d3ee035aa", [ null, {} ] ], "2d.layer.invalid-calls.save-beginLayer-restore.worker.js": [ - "d155379fcb38acfa06d1cd09011343e9960d89b4", + "711280a6de4b806a25a2f98c59d1570a08bc26e2", [ "html/canvas/offscreen/layers/2d.layer.invalid-calls.save-beginLayer-restore.worker.html", {} ] ], "2d.layer.invalid-calls.save-endLayer.html": [ - "01b62d1e859d9f0bf1b98239f29ce88a21f60702", + "32ca1346636fa198b1807fa1f44600fc1db2c7e0", [ null, {} ] ], "2d.layer.invalid-calls.save-endLayer.worker.js": [ - "353c1b00cdc61bcdf3977a4f029eed1c2860edd4", + "af3667e50a2f1e1e147676d756f5e108bee8df4a", [ "html/canvas/offscreen/layers/2d.layer.invalid-calls.save-endLayer.worker.html", {} ] ], "2d.layer.layer-rendering-state-reset-in-layer.html": [ - "867553b45e0f4587eb1f3395c5a0b8236ae71615", + "cebdfd5f27ee86f59a55d6f2092641c9d275a89f", [ null, {} ] ], "2d.layer.layer-rendering-state-reset-in-layer.worker.js": [ - "5c2bb73e8f8423aa0a3971ec6a1b8bfe60fdf2ba", + "a566cccf14bc89eaae903df97ab69b46c4806197", [ "html/canvas/offscreen/layers/2d.layer.layer-rendering-state-reset-in-layer.worker.html", {} ] ], - "2d.layer.putImageData.html": [ - "b46b80c1f46e39b5078b0440a360fbcc7c93822b", + "2d.layer.malformed-operations-with-promises.html": [ + "6641d9d4170c2d0bbfa7a8956b9103b329f3a692", [ null, {} ] ], - "2d.layer.putImageData.worker.js": [ - "dd4b3576f66e7803534d657cc23e0fd11ceb40db", + "2d.layer.malformed-operations-with-promises.worker.js": [ + "693901b648bd91c4aed63e5acc2a9b52e284f047", [ - "html/canvas/offscreen/layers/2d.layer.putImageData.worker.html", + "html/canvas/offscreen/layers/2d.layer.malformed-operations-with-promises.worker.html", {} ] ], - "2d.layer.transferToImageBitmap.html": [ - "5e5d6d16c6b11d2ee5b05797ad72aca21656da96", + "2d.layer.malformed-operations.html": [ + "c3a92553646b77ad81e5bc20edb13a023b7e4c2b", [ null, {} ] ], - "2d.layer.transferToImageBitmap.worker.js": [ - "073a3e84a486ac7ae6d95090cbce67661dbf7a7b", + "2d.layer.malformed-operations.worker.js": [ + "5851fcfbc613f00f60d5065566c8d5b49be4973e", [ - "html/canvas/offscreen/layers/2d.layer.transferToImageBitmap.worker.html", + "html/canvas/offscreen/layers/2d.layer.malformed-operations.worker.html", {} ] ], @@ -637212,17 +658513,17 @@ {} ] ], - "2d.path.roundrect.1.radius.dompoint.single argument.html": [ - "4ea78c32d12bec16a76b08666b6fdf742f9253c7", + "2d.path.roundrect.1.radius.dompoint.single.argument.html": [ + "ba137c9194845b1827042f1aae71a5cd5e38f57c", [ null, {} ] ], - "2d.path.roundrect.1.radius.dompoint.single argument.worker.js": [ - "b93d88e89cdc16751d4afab322e383c22b2b83ca", + "2d.path.roundrect.1.radius.dompoint.single.argument.worker.js": [ + "35e9259fd6604e3c58c1970704d601782853abed", [ - "html/canvas/offscreen/path-objects/2d.path.roundrect.1.radius.dompoint.single argument.worker.html", + "html/canvas/offscreen/path-objects/2d.path.roundrect.1.radius.dompoint.single.argument.worker.html", {} ] ], @@ -639865,7 +661166,7 @@ ] ], "2d.shadow.image.alpha.worker.js": [ - "827bd2ce65285f5075473a4a8f9b826f0e4c0ffc", + "dee89275641c43bf8420aff5e61e7b9c65ca62e2", [ "html/canvas/offscreen/shadows/2d.shadow.image.alpha.worker.html", {} @@ -639879,7 +661180,7 @@ ] ], "2d.shadow.image.basic.worker.js": [ - "2d02232c6836d550785a87499a808eea355fe6e3", + "7aa17da784e124caa5fcabb836c440a3b640ee3f", [ "html/canvas/offscreen/shadows/2d.shadow.image.basic.worker.html", {} @@ -639893,7 +661194,7 @@ ] ], "2d.shadow.image.scale.worker.js": [ - "2c10381f98aa43636a50f973d05238a008695bb8", + "3c1cf872ec25ca5894ffd3ea2efc2d4d15fda205", [ "html/canvas/offscreen/shadows/2d.shadow.image.scale.worker.html", {} @@ -639907,7 +661208,7 @@ ] ], "2d.shadow.image.section.worker.js": [ - "94affdfb6abdd5fb1ee75a676b879b4d7c4f4671", + "c357a3a3aba3f1651c28b3cc7333ed0858c0b018", [ "html/canvas/offscreen/shadows/2d.shadow.image.section.worker.html", {} @@ -639921,7 +661222,7 @@ ] ], "2d.shadow.image.transparent.1.worker.js": [ - "c5421d70426241e0275536bf6071cd9d7392e71f", + "5440944e9315dfc7330acb42ddeaee1e25554783", [ "html/canvas/offscreen/shadows/2d.shadow.image.transparent.1.worker.html", {} @@ -639935,7 +661236,7 @@ ] ], "2d.shadow.image.transparent.2.worker.js": [ - "071c584fa84bb1800f59b1a7c3118a628016398e", + "0554c03750412594a6fbebc680bcca0deba8e6fc", [ "html/canvas/offscreen/shadows/2d.shadow.image.transparent.2.worker.html", {} @@ -640019,7 +661320,7 @@ ] ], "2d.shadow.pattern.alpha.worker.js": [ - "41a826a158f4a4ccb9ac4005f2209d3a59ccabb1", + "9d5e5b07a9d1ee6aff02a1533b2dcce96be7ad66", [ "html/canvas/offscreen/shadows/2d.shadow.pattern.alpha.worker.html", {} @@ -640033,7 +661334,7 @@ ] ], "2d.shadow.pattern.basic.worker.js": [ - "7a8f7e84796a9d72fa463ec337efd8834da418b6", + "d2db2427c5ce92ea279058cc54352a55a141f3b1", [ "html/canvas/offscreen/shadows/2d.shadow.pattern.basic.worker.html", {} @@ -640047,7 +661348,7 @@ ] ], "2d.shadow.pattern.transparent.1.worker.js": [ - "8414db6d08ca1126edfc02d780bbf8e325b1f103", + "af079851e621604f96b8710471a7f3ecd35b59a5", [ "html/canvas/offscreen/shadows/2d.shadow.pattern.transparent.1.worker.html", {} @@ -640061,7 +661362,7 @@ ] ], "2d.shadow.pattern.transparent.2.worker.js": [ - "726a42d6cd4e845c8266b3c6ebea5defc40a0cf4", + "1cf4f3ee36b1a709f1771bbd8bd8bf88c13326ab", [ "html/canvas/offscreen/shadows/2d.shadow.pattern.transparent.2.worker.html", {} @@ -640273,7 +661574,7 @@ ] ], "2d.text.draw.align.center.worker.js": [ - "44f093cdac24cc03a0ae89ceaa9fc6c4eb4e8c03", + "c11c8437e246a823467af31d7d51024c1de8ee4b", [ "html/canvas/offscreen/text/2d.text.draw.align.center.worker.html", {} @@ -640287,7 +661588,7 @@ ] ], "2d.text.draw.align.end.ltr.worker.js": [ - "4bd0f5a31476cf8f916bf1f149a924d42a88600a", + "f5c576947002a98e783075fa9190b3292dd09930", [ "html/canvas/offscreen/text/2d.text.draw.align.end.ltr.worker.html", {} @@ -640301,7 +661602,7 @@ ] ], "2d.text.draw.align.end.rtl.worker.js": [ - "b3e62d85380676013421fe5224ca8bb6c37148a8", + "90e21f41dc2a286bc73bf1469716714d4be13d10", [ "html/canvas/offscreen/text/2d.text.draw.align.end.rtl.worker.html", {} @@ -640315,7 +661616,7 @@ ] ], "2d.text.draw.align.left.worker.js": [ - "c7dc0bed42bd2568281eaae882fca5ee59318217", + "0f92969632206881234d204aeea6134b6714097a", [ "html/canvas/offscreen/text/2d.text.draw.align.left.worker.html", {} @@ -640329,7 +661630,7 @@ ] ], "2d.text.draw.align.right.worker.js": [ - "58fe85e0b76bf04f81bf423558f646d7235aa293", + "594192812a07cb68b4f3ba836da288caf0dea8e0", [ "html/canvas/offscreen/text/2d.text.draw.align.right.worker.html", {} @@ -640343,7 +661644,7 @@ ] ], "2d.text.draw.align.start.ltr.worker.js": [ - "c0793d9af6fcbf30d4ee14fc794a89027300f248", + "32e6fc0f20f53092c4e447c81029d470743136e3", [ "html/canvas/offscreen/text/2d.text.draw.align.start.ltr.worker.html", {} @@ -640357,7 +661658,7 @@ ] ], "2d.text.draw.align.start.rtl.worker.js": [ - "ed706c287a17fe90d1175c52d89e184adf13f9b3", + "67a196daf75d780cfb9768eb9752197d3a81446c", [ "html/canvas/offscreen/text/2d.text.draw.align.start.rtl.worker.html", {} @@ -640371,7 +661672,7 @@ ] ], "2d.text.draw.baseline.alphabetic.worker.js": [ - "a98a5863d92ed6ebf634e78c424749b3a2aba0a1", + "a0ab72915fdfe1640241944283ee7dcc1d4707c2", [ "html/canvas/offscreen/text/2d.text.draw.baseline.alphabetic.worker.html", {} @@ -640385,7 +661686,7 @@ ] ], "2d.text.draw.baseline.bottom.worker.js": [ - "30f60c574b92218df3cf89e5c030ed918ca2ae7c", + "e1713888341ca95fd9b378bdaac9624692a4a34b", [ "html/canvas/offscreen/text/2d.text.draw.baseline.bottom.worker.html", {} @@ -640399,7 +661700,7 @@ ] ], "2d.text.draw.baseline.hanging.worker.js": [ - "638506a2792c345b67fe378b072b5df2dc2985d4", + "906fdbbf27eccf31b55d35314c330b23de08618c", [ "html/canvas/offscreen/text/2d.text.draw.baseline.hanging.worker.html", {} @@ -640413,7 +661714,7 @@ ] ], "2d.text.draw.baseline.ideographic.worker.js": [ - "7c682fb5f145180d44aa995204495c750d68d359", + "76ac1d9da2f7269c9e3f5a23ed90349a9782cea0", [ "html/canvas/offscreen/text/2d.text.draw.baseline.ideographic.worker.html", {} @@ -640427,7 +661728,7 @@ ] ], "2d.text.draw.baseline.middle.worker.js": [ - "c373ab6c7293c6a38ddacf3f91fd3c314f9a2658", + "c288ab4c866f02aa28b8bbde1adf810a018c0f17", [ "html/canvas/offscreen/text/2d.text.draw.baseline.middle.worker.html", {} @@ -640441,7 +661742,7 @@ ] ], "2d.text.draw.baseline.top.worker.js": [ - "effc4418c34df245474b2b38b4ee68881af9412e", + "e7d0b167c025a41bf530e61ead9ceb7ed5f2205c", [ "html/canvas/offscreen/text/2d.text.draw.baseline.top.worker.html", {} @@ -640469,7 +661770,7 @@ ] ], "2d.text.draw.fill.maxWidth.bound.worker.js": [ - "adcb45faaae178c52897a5e2261082a4135987f2", + "a314870f1152fe6a979132b926cc497f1fded1cf", [ "html/canvas/offscreen/text/2d.text.draw.fill.maxWidth.bound.worker.html", {} @@ -640483,7 +661784,7 @@ ] ], "2d.text.draw.fill.maxWidth.fontface.worker.js": [ - "8df519b7d1c473cadeb3577a1cf03c5971721f6a", + "e225e703519003215860c9746cf941ae66b4c54d", [ "html/canvas/offscreen/text/2d.text.draw.fill.maxWidth.fontface.worker.html", {} @@ -640560,7 +661861,7 @@ ] ], "2d.text.draw.fontface.notinpage.worker.js": [ - "628cb395069c5ca0080c1f44c4e7d24dea13b144", + "c35c82d71f0b3bde1f5948291cb255f2b753549d", [ "html/canvas/offscreen/text/2d.text.draw.fontface.notinpage.worker.html", {} @@ -640574,14 +661875,14 @@ ] ], "2d.text.draw.fontface.repeat.worker.js": [ - "7567c095580e17e9607583563f54d02e7ca19bea", + "fb1f7980a6cca6de73830ad1c814f2b505e53319", [ "html/canvas/offscreen/text/2d.text.draw.fontface.repeat.worker.html", {} ] ], "2d.text.draw.fontface.worker.js": [ - "02257f0a06e48bddc0233f122a6a58c199205e39", + "a09a0f88d7e11f7c8449f35d74f5fbe4ceae0f6d", [ "html/canvas/offscreen/text/2d.text.draw.fontface.worker.html", {} @@ -640595,7 +661896,7 @@ ] ], "2d.text.draw.space.basic.worker.js": [ - "ef09925c551d62f5e1ff56c17ecad06b45aba06d", + "96bd4159c71f82f7909b4b645dcbaa652e341c79", [ "html/canvas/offscreen/text/2d.text.draw.space.basic.worker.html", {} @@ -640609,7 +661910,7 @@ ] ], "2d.text.draw.space.collapse.end.worker.js": [ - "9a9afa1e74516b10aeca97392ea26d03fcd6175d", + "e9cd9dc82927975830ea046d693503febe4cd25f", [ "html/canvas/offscreen/text/2d.text.draw.space.collapse.end.worker.html", {} @@ -640623,7 +661924,7 @@ ] ], "2d.text.draw.space.collapse.nonspace.worker.js": [ - "a12c2f9a48447991395f142cf94b1c1b04ffe0a0", + "a37094e28c8dbb3b2852f5dfc5d839cd896ca13a", [ "html/canvas/offscreen/text/2d.text.draw.space.collapse.nonspace.worker.html", {} @@ -640637,7 +661938,7 @@ ] ], "2d.text.draw.space.collapse.other.worker.js": [ - "bbf9e684be7dd11ab8f1781b54423352aa2fe5a5", + "1f090cb42628b38bfcdcfabcb0d41f0369d103bc", [ "html/canvas/offscreen/text/2d.text.draw.space.collapse.other.worker.html", {} @@ -640651,7 +661952,7 @@ ] ], "2d.text.draw.space.collapse.space.worker.js": [ - "e5ab7b67f4a4e878b1110f3860299f1068859b55", + "02551b7de719186cfa73d229043e247a30bb7057", [ "html/canvas/offscreen/text/2d.text.draw.space.collapse.space.worker.html", {} @@ -640665,7 +661966,7 @@ ] ], "2d.text.draw.space.collapse.start.worker.js": [ - "20fec7801f821bcce9dbf9640ed7a2b6e836b7cf", + "bd6e523283f6ff322f3ff6fcfa066ea6435dc046", [ "html/canvas/offscreen/text/2d.text.draw.space.collapse.start.worker.html", {} @@ -640742,14 +662043,14 @@ ] ], "2d.text.drawing.style.fontStretch.settings.html": [ - "95405a18a5682c2eb954b37d150a0f0c54f31af4", + "8ea464fca97d227e7dc9dc85d588abc9262b7155", [ null, {} ] ], "2d.text.drawing.style.fontStretch.settings.worker.js": [ - "ff10a742b5843ced57142d1678010082625a940f", + "43eca790fe0dc0cd22087ed75e316bc1234d1fba", [ "html/canvas/offscreen/text/2d.text.drawing.style.fontStretch.settings.worker.html", {} @@ -640867,6 +662168,34 @@ {} ] ], + "2d.text.drawing.style.reset.TextRendering.html": [ + "60acc11d7b11fadfa11ac4750ac42d1072ca7a06", + [ + null, + {} + ] + ], + "2d.text.drawing.style.reset.TextRendering.worker.js": [ + "01c8f9fdc46e7441bf645e7d0d4de8a6fa1ba589", + [ + "html/canvas/offscreen/text/2d.text.drawing.style.reset.TextRendering.worker.html", + {} + ] + ], + "2d.text.drawing.style.reset.fontKerning.none.html": [ + "35b98f448111a1682df7e595ca006790903911ee", + [ + null, + {} + ] + ], + "2d.text.drawing.style.reset.fontKerning.none.worker.js": [ + "8abac3c3a1120a1996177544febf6b82091af956", + [ + "html/canvas/offscreen/text/2d.text.drawing.style.reset.fontKerning.none.worker.html", + {} + ] + ], "2d.text.drawing.style.textRendering.settings.html": [ "52b34deaab91bc90888dd6e36cb7cc09f305bbcb", [ @@ -641071,37 +662400,58 @@ ] ], "2d.text.measure.actualBoundingBox.worker.js": [ - "c3d18ff8786d188fc95ad80d46acbda264d35eb4", + "aaec2e7e8e0a4d76ac8ca0859830ddb9e39f1674", [ "html/canvas/offscreen/text/2d.text.measure.actualBoundingBox.worker.html", {} ] ], - "2d.text.measure.advances.html": [ - "2eec005cb84c42e2d9ccc7ada883a3aba0afb8f3", + "2d.text.measure.baselines.html": [ + "9d0cc1268d5314a7a4e06de3c60421ea7ea1795c", [ null, {} ] ], - "2d.text.measure.advances.worker.js": [ - "4b02f06f2dd5c9335848af2ea1a7cb004e786088", + "2d.text.measure.baselines.worker.js": [ + "6e7b064ac84c1b85ccb1abcc43001687ac1efb87", [ - "html/canvas/offscreen/text/2d.text.measure.advances.worker.html", + "html/canvas/offscreen/text/2d.text.measure.baselines.worker.html", {} ] ], - "2d.text.measure.baselines.html": [ - "9d0cc1268d5314a7a4e06de3c60421ea7ea1795c", + "2d.text.measure.caret-position-edge-cases.tentative.html": [ + "21139126fa9f7f22e7494c84ec3c95e28bc0e50c", [ null, {} ] ], - "2d.text.measure.baselines.worker.js": [ - "ddb48f4fe02ee5de8c13fb65452b540f1287657f", + "2d.text.measure.caret-position-edge-cases.tentative.worker.js": [ + "835392228363b63c175f6d9e17bd247bbe67dffe", [ - "html/canvas/offscreen/text/2d.text.measure.baselines.worker.html", + "html/canvas/offscreen/text/2d.text.measure.caret-position-edge-cases.tentative.worker.html", + {} + ] + ], + "2d.text.measure.caret-position-edges.tentative.html": [ + "29f47bf50908584c8dc1c3a5fe9334ec698fb354", + [ + null, + {} + ] + ], + "2d.text.measure.caret-position-edges.tentative.worker.js": [ + "2cef8432d2a2eb6fa9057d6a593cc7e2f0a2ae3f", + [ + "html/canvas/offscreen/text/2d.text.measure.caret-position-edges.tentative.worker.html", + {} + ] + ], + "2d.text.measure.caret-position.tentative.html": [ + "53faccd652aace13ab028ba371e7b6bf2769a88f", + [ + null, {} ] ], @@ -641113,7 +662463,7 @@ ] ], "2d.text.measure.emHeights-low-ascent.worker.js": [ - "09ee7873092aa05d7cb3dd84642580f2facde0d7", + "cbcb5ec0045366bb23626908da7c77be9efcba85", [ "html/canvas/offscreen/text/2d.text.measure.emHeights-low-ascent.worker.html", {} @@ -641127,7 +662477,7 @@ ] ], "2d.text.measure.emHeights-zero-descent.worker.js": [ - "a2f09782c98fca68f6fcc0a2e4cac2736a9d3813", + "4b62bd5665210bc413ba2411291fcf9dec3ccefc", [ "html/canvas/offscreen/text/2d.text.measure.emHeights-zero-descent.worker.html", {} @@ -641141,7 +662491,7 @@ ] ], "2d.text.measure.emHeights.worker.js": [ - "0385d3d737daa6304a14d27b1e26a93c629ee057", + "163394ff1b21cccab8abfdf0cecb8bb9f239664c", [ "html/canvas/offscreen/text/2d.text.measure.emHeights.worker.html", {} @@ -641155,7 +662505,7 @@ ] ], "2d.text.measure.fontBoundingBox-reduced-ascent.worker.js": [ - "dea67ff8f6722ed08f2916a18c2e71bb42e2fd73", + "6ea01b14963d04b2f9be8f9e6b4690fca7500790", [ "html/canvas/offscreen/text/2d.text.measure.fontBoundingBox-reduced-ascent.worker.html", {} @@ -641169,7 +662519,7 @@ ] ], "2d.text.measure.fontBoundingBox-zero-descent.worker.js": [ - "99a886d015cf236eae1d40ea2d54530f25550c83", + "c8175eec3cefe274837cbc7b54bb6d4c2a449a57", [ "html/canvas/offscreen/text/2d.text.measure.fontBoundingBox-zero-descent.worker.html", {} @@ -641183,7 +662533,7 @@ ] ], "2d.text.measure.fontBoundingBox.ahem.worker.js": [ - "255bcd108aac7f3590ae641604741324bbf7a080", + "080a4d45b823ba350c4e8d20f5f99ccea6b20b98", [ "html/canvas/offscreen/text/2d.text.measure.fontBoundingBox.ahem.worker.html", {} @@ -641197,12 +662547,89 @@ ] ], "2d.text.measure.fontBoundingBox.worker.js": [ - "b2cde04c0dadfde2397249cf76c1a0966d5ce6b8", + "5c28b8f68890ba619d1bccec16b275ffb2e4e810", [ "html/canvas/offscreen/text/2d.text.measure.fontBoundingBox.worker.html", {} ] ], + "2d.text.measure.getActualBoundingBox-exceptions.tentative.html": [ + "551f2c1d916fba8636c8c812567fea0a93f4d311", + [ + null, + {} + ] + ], + "2d.text.measure.getActualBoundingBox-exceptions.tentative.worker.js": [ + "5b5b7c76b04b7df26e7170d20025862bc966cc06", + [ + "html/canvas/offscreen/text/2d.text.measure.getActualBoundingBox-exceptions.tentative.worker.html", + {} + ] + ], + "2d.text.measure.getActualBoundingBox-full-text.tentative.html": [ + "44b107e086d1798fa87ff033647603149455dffe", + [ + null, + {} + ] + ], + "2d.text.measure.getActualBoundingBox-full-text.tentative.worker.js": [ + "54a4cb41154e36f81e4c2f77662b265e0a4fd7cf", + [ + "html/canvas/offscreen/text/2d.text.measure.getActualBoundingBox-full-text.tentative.worker.html", + {} + ] + ], + "2d.text.measure.getActualBoundingBox.tentative.html": [ + "e6a2b0702055e82bc4c8226279d8af89e60e6bc4", + [ + null, + {} + ] + ], + "2d.text.measure.getActualBoundingBox.tentative.worker.js": [ + "9530d1776588e726f9600b5a022ffc06516b8b30", + [ + "html/canvas/offscreen/text/2d.text.measure.getActualBoundingBox.tentative.worker.html", + {} + ] + ], + "2d.text.measure.selection-rects-baselines.tentative.html": [ + "23220d4a4469720844fd5671b58e6ea087029247", + [ + null, + {} + ] + ], + "2d.text.measure.selection-rects-baselines.tentative.worker.js": [ + "6d275c042ebff500c07ff4de8d701444abbb62ea", + [ + "html/canvas/offscreen/text/2d.text.measure.selection-rects-baselines.tentative.worker.html", + {} + ] + ], + "2d.text.measure.selection-rects-exceptions.tentative.html": [ + "518fbc654aa4c4c84aa6086b57bce75391100d42", + [ + null, + {} + ] + ], + "2d.text.measure.selection-rects-exceptions.tentative.worker.js": [ + "a3fefb3b2535b647ea8c7aeaf7e36704e1d60cc8", + [ + "html/canvas/offscreen/text/2d.text.measure.selection-rects-exceptions.tentative.worker.html", + {} + ] + ], + "2d.text.measure.selection-rects.tentative.html": [ + "6c0261e15341569c0ed05f6ef0bd35efec1995c0", + [ + null, + {} + ] + ], "2d.text.measure.width.basic.html": [ "fea19040833cbf381d5c3cbf77f8fea791603bed", [ @@ -641211,7 +662638,7 @@ ] ], "2d.text.measure.width.basic.worker.js": [ - "866ad8b3c5c096d1226c8d443c1b29b270d30a85", + "f653f20f8e6550bab302f3805065001cf40a22a5", [ "html/canvas/offscreen/text/2d.text.measure.width.basic.worker.html", {} @@ -641225,7 +662652,7 @@ ] ], "2d.text.measure.width.empty.worker.js": [ - "6fb89c5ba73aa957ef429452969cad8fb67f2b91", + "932b82e129dde7ee2774325bb0c627f33f588133", [ "html/canvas/offscreen/text/2d.text.measure.width.empty.worker.html", {} @@ -641239,7 +662666,7 @@ ] ], "2d.text.measure.width.space.worker.js": [ - "d832feec5fc0fa9621a35d2d33a0bc864edc7ed0", + "3f0e6d65dade8d8197283afd12c232cdd81ddfd8", [ "html/canvas/offscreen/text/2d.text.measure.width.space.worker.html", {} @@ -643498,13 +664925,13 @@ ] ], "websocket.https.window.js": [ - "7d0dd95d84b7a9e16bf3e27e9d23627f4d3adffa", + "2fe8d02879b8617295c7ddd6f7ca6e58b3eae476", [ "html/cross-origin-embedder-policy/credentialless/websocket.https.window.html", { "script_metadata": [ [ - "TIMEOUT", + "timeout", "long" ], [ @@ -643523,7 +664950,8 @@ "script", "./resources/common.js" ] - ] + ], + "timeout": "long" } ] ] @@ -645292,6 +666720,17 @@ } ] ] + }, + "tentative": { + "access-to-noopener-page-from-no-coop-ro.https.html": [ + "5e407de34822baea56fb889099683aef49a73cd0", + [ + null, + { + "timeout": "long" + } + ] + ] } }, "resource-popup.https.html": [ @@ -645302,6 +666741,26 @@ ] ], "tentative": { + "noopener": { + "coop-noopener-allow-popups-restrict-properties.https.html": [ + "3058011c08870cf6650a68bd27a855f01d51b8b3", + [ + null, + { + "timeout": "long" + } + ] + ], + "coop-noopener-allow-popups.https.html": [ + "0daf3278476c11d99694c06535289b2d0a92cdf6", + [ + null, + { + "timeout": "long" + } + ] + ] + }, "restrict-properties": { "access-reporting-closed.https.html": [ "1c315b35d7fa81188aabf59c1c3196a5d5d2a2ea", @@ -645640,9 +667099,41 @@ } } }, + "document-isolation-policy": { + "isolate-and-require-corp-load-from-cache-storage.tentative.https.html": [ + "c78835328b27f2d364f9b67c00cea0be480ee992", + [ + null, + {} + ] + ], + "isolate-and-require-corp.tentative.https.html": [ + "df4bd47f28e4ea4d0db0fcc141045dd889f07e3a", + [ + null, + { + "timeout": "long" + } + ] + ], + "no-secure-context.tentative.html": [ + "a00183738e3736057bd9b35929c2b644b5a66eeb", + [ + null, + {} + ] + ], + "shared-workers.tentative.https.html": [ + "d0a186f45e7865c9f585112601f934b1861c5471", + [ + null, + {} + ] + ] + }, "dom": { "aria-attribute-reflection.html": [ - "8970938ac92162ecaeb0608d8bc42905fb2818f7", + "d2e5b03f853baa85ee53224953e3995ec3743a80", [ null, {} @@ -645656,7 +667147,7 @@ ] ], "aria-element-reflection.html": [ - "8d4d4b8f6a652ac79fae69a03aef50772098b5a5", + "e04610171b5ae20d827d6370c2005c6366d99698", [ null, {} @@ -646033,7 +667524,7 @@ ] ], "document-cookie.html": [ - "2af65effeb291f829334d77a4072a41033f4e4a9", + "5310fd8e8a36285dd1e9ae3d46042ec227eefa51", [ null, {} @@ -646082,6 +667573,13 @@ ] }, "global-attributes": { + "cdata-dir_auto.html": [ + "91231f7e6c6e6a7cc11856ac6177dd77dfd0fba5", + [ + null, + {} + ] + ], "classlist-nonstring.html": [ "044f5e8b1b29e409e35f8d8fe5a9bec54914fc96", [ @@ -646153,7 +667651,7 @@ ] ], "dir-assorted.window.js": [ - "038b3f78d4d373286da051a6240493d0dce12112", + "3bd63e2ae0518ff95c7e2ff3483bc683d2940c65", [ "html/dom/elements/global-attributes/dir-assorted.window.html", {} @@ -646167,10 +667665,17 @@ ] ], "dir-auto-dynamic-changes.window.js": [ - "a0cf4aae7bad32420b0eb72dbf5c8310d2cce9d4", + "d57d8664dfaff8c867c322c5fb4516bcbf6c3a0d", [ "html/dom/elements/global-attributes/dir-auto-dynamic-changes.window.html", - {} + { + "script_metadata": [ + [ + "script", + "dir-shadow-utils.js" + ] + ] + } ] ], "dir-auto-form-associated.window.js": [ @@ -646188,7 +667693,7 @@ ] ], "dir-slots-directionality.html": [ - "db783fc55ca3493e75d10f3e8f6d400e5187e531", + "c0a11ba9a90949b5046339a956bf8f14d934395e", [ null, {} @@ -646258,7 +667763,21 @@ ] ], "the-anchor-attribute-003.tentative.html": [ - "fe4657aabb33e63f58d7b623d1fd27d55e38b7c6", + "e8c12c784f53d086e42c16eb8ed5f9572354c25a", + [ + null, + {} + ] + ], + "the-anchor-attribute-004.tentative.html": [ + "388e7177662159488b4070c3493aab93fc2ac36f", + [ + null, + {} + ] + ], + "the-anchor-attribute-xml.tentative.html": [ + "6e06052988729721dd1c9e9f86c7705d187868f2", [ null, {} @@ -646460,7 +667979,7 @@ } }, "historical.html": [ - "396e57a39118d7a766db29bc520f78aab0c90dd1", + "2563810492804fa6d25183207cd0bbb429a1700f", [ null, {} @@ -646481,7 +668000,7 @@ ] ], "idlharness.https.html": [ - "7d693d3c0a273ff2df256850baaeeb9203e54ba2", + "357a4fbe0bec05d9955aaccb00ef29c2bd3a7e69", [ "html/dom/idlharness.https.html?exclude=(Document|Window|HTML.*)", { @@ -646606,197 +668125,267 @@ {} ] ], - "element-render-blocking-001.tentative.html": [ - "9624b41a194946794fc17c71f66fb4cc2ec6abe1", + "element-render-blocking-001.html": [ + "36567f9d54adea41a703b23adac438e160f397cf", + [ + null, + {} + ] + ], + "element-render-blocking-002.html": [ + "3c907597f7ac35b84e29ccd37627499c347f511a", + [ + null, + {} + ] + ], + "element-render-blocking-003.html": [ + "2858798a35f58e1152b7047c35359878d1820ecc", + [ + null, + {} + ] + ], + "element-render-blocking-004.html": [ + "f45f5587204674691349f298f9367204233aa235", + [ + null, + {} + ] + ], + "element-render-blocking-005.html": [ + "098a3c57676cc88788a23efa0818e00b9a8e6344", + [ + null, + {} + ] + ], + "element-render-blocking-006.html": [ + "223e42109e5c65985e0aec2b0c24ef8f1d810d15", + [ + null, + {} + ] + ], + "element-render-blocking-007.html": [ + "9aa0aeea79834833ff0151227723c1a6c17e06e2", + [ + null, + {} + ] + ], + "element-render-blocking-008.html": [ + "e671dda19c43b44d3f065b8de0e68f7326e88aba", + [ + null, + {} + ] + ], + "element-render-blocking-009.html": [ + "8498816ea5c435cce0ea3d597b7f0b381d73d7f6", + [ + null, + {} + ] + ], + "element-render-blocking-010.html": [ + "ef6f709012e4bd4bb222b8cc74317abdbc40768f", [ null, {} ] ], - "element-render-blocking-002.tentative.html": [ - "ab0fd511156bc9edb89fe9350d87a000616f2438", + "element-render-blocking-011.html": [ + "dee82d8c5950c16360d2ff799393a50bed1f7a95", [ null, {} ] ], - "element-render-blocking-003.tentative.html": [ - "eb3a347a6ebbb7b05a5e3bb7905c9098bf755c51", + "element-render-blocking-012.html": [ + "4110e54c5f20420d8da783d21e43d2f9961aed5a", [ null, {} ] ], - "element-render-blocking-004.tentative.html": [ - "2c50f2d362a54c8252f92222a71025301222aa9f", + "element-render-blocking-013.html": [ + "ecd97be86a6633daf0d03f86f231de295abee459", [ null, {} ] ], - "element-render-blocking-005.tentative.html": [ - "04cdab467deff3f8880855592cd5724d064b3371", + "element-render-blocking-014.html": [ + "ea8948de42dec015384aa2bd7a13edb283b6d522", [ null, {} ] ], - "element-render-blocking-006.tentative.html": [ - "1c9da255a622503c2f2bb74fc98876938bce19e1", + "element-render-blocking-015.html": [ + "a775ee417403ab3fef3635194ff1d62b4c335266", [ null, {} ] ], - "element-render-blocking-007.tentative.html": [ - "df8f9ae3d1258194088f4b8cbadbf2eee9b85500", + "element-render-blocking-016.html": [ + "8968c5dacd329537b9d7c1d0d0ce38786077f583", [ null, {} ] ], - "element-render-blocking-008.tentative.html": [ - "c2458a0bab31244de67c707d32b2669a5aaa746a", + "element-render-blocking-017.html": [ + "2d3b5747216f50902714bff725cddf50ec7556c0", [ null, {} ] ], - "element-render-blocking-009.tentative.html": [ - "d765ac8a5d3c9b742fa9b24d3401d6c1ff098a08", + "element-render-blocking-018.html": [ + "76e6394b5b16586de768ad553c671b8594d0635e", [ null, {} ] ], - "element-render-blocking-010.tentative.html": [ - "7ef6a1baf35b460791ac54b8891dc3e019aaee85", + "element-render-blocking-019.html": [ + "80a7019edc4beb272ef65d7cd1d28f88fb18a813", [ null, {} ] ], - "element-render-blocking-011.tentative.html": [ - "31df9b068c01b5a149941f24d619898f6b926301", + "element-render-blocking-020.html": [ + "10019c943f402c91c0ca07efefe462d5bc6ece48", [ null, {} ] ], - "element-render-blocking-012.tentative.html": [ - "8f2594d25903a60911f89d7eb6a39968ca2e9d82", + "element-render-blocking-021.html": [ + "1ca2114689a6cdbc961c9eecd1fa4e328117d431", [ null, {} ] ], - "element-render-blocking-013.tentative.html": [ - "9d65bd96b73189f4fafbbcd59261261e0f154fb9", + "element-render-blocking-022.html": [ + "5dfbcac30a4c065a888f5ea804ba306758d83e6c", [ null, {} ] ], - "element-render-blocking-014.tentative.html": [ - "d042b96b64370c1ad08cd235729a2c0e6abb597e", + "element-render-blocking-023.html": [ + "8fe8b6a8c8e30f05250c2ca569f5b4d938bed71c", [ null, {} ] ], - "element-render-blocking-015.tentative.html": [ - "f7ac0b1015d79635d83fced00cbcb8c7c5e6400b", + "element-render-blocking-024.html": [ + "19e4020fb769bb59053a6a64cc1c499583044c73", [ null, {} ] ], - "element-render-blocking-016.tentative.html": [ - "d32a0468e79b4109607d920ec72279ae0af0e0d6", + "element-render-blocking-025.html": [ + "689ae69f452d421b66554c8e547ca95f5f269af9", [ null, {} ] ], - "element-render-blocking-017.tentative.html": [ - "d3a6046cbb37f90b3bf5721f1799f8df313d06c7", + "element-render-blocking-026.html": [ + "6abfc43b8b237b3f8f0f6474d36fcce1c3aaac52", [ null, {} ] ], - "element-render-blocking-018.tentative.html": [ - "0d7402201accb05ce81636be43057128cfaf976b", + "element-render-blocking-027.html": [ + "56f88e0fc2b773f74afb86e306f42a1aa39d9c1b", [ null, {} ] ], - "element-render-blocking-019.tentative.html": [ - "fea9e3a2b21821722eb956beac19acfb44721034", + "element-render-blocking-028.html": [ + "a64d542c4ac7ef97a2e3427dabe485519da97518", [ null, {} ] ], - "element-render-blocking-020.tentative.html": [ - "7fc0fe19bbae57d15b5a8bbc27cfb6400661114b", + "element-render-blocking-029.html": [ + "44dff3cb8429d901b65f5991d3696abb31ff6831", [ null, {} ] ], - "element-render-blocking-021.tentative.html": [ - "29430349f04689578cc7e5f90ba86ef77626bde5", + "element-render-blocking-030.html": [ + "307c2d303d045d090c180ae22476b1419b91d9bc", [ null, {} ] ], - "element-render-blocking-022.tentative.html": [ - "6548c9ec4df21169af9c97dfa30acf49acb1c95a", + "element-render-blocking-031.html": [ + "2098483a0600c642f32403fff97be2bb4fed4572", [ null, {} ] ], - "element-render-blocking-023.tentative.html": [ - "c3661bcaa6a9c3b2e6fc64dc937c73688041a43d", + "element-render-blocking-032.html": [ + "307c2d303d045d090c180ae22476b1419b91d9bc", [ null, {} ] ], - "element-render-blocking-024.tentative.html": [ - "c98022cfeabef10171061432168274eb81324834", + "element-render-blocking-033.html": [ + "59d41c08c0a677e0e462c53e47e76635cb3bf9b1", [ null, {} ] ], - "element-render-blocking-025.tentative.html": [ - "29868b92cbc76a7f9b6da3e645e02c0701f5e31b", + "element-render-blocking-034.html": [ + "a505de48756a9fbf1b947e6e01be8020f9d2be23", [ null, {} ] ], - "element-render-blocking-026.tentative.html": [ - "dc23211b8b00d2011592dd529bd554670456acc5", + "element-render-blocking-035.html": [ + "050244c7a690cdc840505bf73173464e0aef69c9", [ null, {} ] ], - "element-render-blocking-027.tentative.html": [ - "5b8a5eb24d5e973a25ca8fbf594f85f006ba7a06", + "element-render-blocking-036.html": [ + "83637b3a08b859b0fa46b3bfdab6edc8df86c7bb", [ null, {} ] ], - "element-render-blocking-028.tentative.html": [ - "57ba3d602602d59f55bdaa34d18eeb06254e826a", + "element-render-blocking-037.html": [ + "5fe469a2fdd3b6231a84cd842c1bea877f42bb14", + [ + null, + {} + ] + ], + "element-render-blocking-038.html": [ + "c7fabe7f320c4af2cbdb4089916796a9eb333874", [ null, {} @@ -646816,6 +668405,13 @@ {} ] ], + "parser-inserted-async-inline-module-with-import.html": [ + "50a2add27704289efde6d7568089c483f4b6e1af", + [ + null, + {} + ] + ], "parser-inserted-async-script.html": [ "4b2216dfcb16594f026500f0402677945a641d9a", [ @@ -646830,6 +668426,13 @@ {} ] ], + "parser-inserted-inline-module-with-import.html": [ + "af2ac46aaf5cf1e58a05632e306f6a1e5163393f", + [ + null, + {} + ] + ], "parser-inserted-module-script.html": [ "2bca88e73c4c597c3cb5a301f7adae3ff7599db4", [ @@ -646893,6 +668496,13 @@ {} ] ], + "script-inserted-inline-module-with-import.html": [ + "576c0b321a1f0e4da55d0951fe9ab773ee53f9be", + [ + null, + {} + ] + ], "script-inserted-module-script.html": [ "73f0d3cdf4f2223530dcaf4e48fbf0f5034410cd", [ @@ -646941,7 +668551,7 @@ ] ], "usvstring-reflection.https.html": [ - "775cb49281eb4565a5b2109e5e94e4cc9834f500", + "d8d830dc59714555811fc9e49dbece35d084a8ab", [ null, {} @@ -647336,6 +668946,15 @@ {} ] ] + }, + "writing-suggestions": { + "writingsuggestions.html": [ + "664659d90ab37cf8692c3cd780e1313df034ad86", + [ + null, + {} + ] + ] } }, "focus": { @@ -647782,7 +669401,7 @@ ] ], "window-simple-success.https.html": [ - "c9b41d0a0d1c65e4c78c66df4d029dea27e7e76b", + "5be96d37a41e6c1fee3a6154aa82dce65b004b4f", [ null, {} @@ -648730,7 +670349,7 @@ ], "horizontal": { "ascends-to-parent-focusgroup.html": [ - "00ef3db90c58be5985e477a2610df2f62e45b241", + "e77fc866411b28b9c8fd48cadd0a4bb0d9130d54", [ null, { @@ -648739,7 +670358,7 @@ ] ], "does-not-ascend-out-of-non-extending-focusgroup.html": [ - "b00958719d5a2d9ef32b93188347b6f7a65b08c1", + "f30e40783f9697bcc4c50ec736ac4287e833791d", [ null, { @@ -648748,7 +670367,7 @@ ] ], "does-not-move-when-axis-not-supported.html": [ - "e671a2584434289e8188f4615e49ec1fac991b88", + "2b116c701257532aaf524e6ce63ad2100c7dfed0", [ null, { @@ -648757,7 +670376,7 @@ ] ], "does-not-wrap-in-orthogonal-axis.html": [ - "de09fa813c60fff3fa3db341522f1a6a46e03cb1", + "2c95bc24841ffd5311a00c5dc89d278303487503", [ null, { @@ -648766,7 +670385,7 @@ ] ], "moves-when-only-current-axis-supported.html": [ - "12f793486699b5ba7aad0939c250b0a4c9eae059", + "a61aabe949b383de478b0315e7be305c8f9795ff", [ null, { @@ -648775,7 +670394,7 @@ ] ], "skips-focusgroup-that-extends-in-orthogonal-axis-complex-case.html": [ - "2fadddac272afe2dd78a95c25ac41ba3623a7898", + "917c8cce0d325457a979b6b07909a43daffddeaa", [ null, { @@ -648784,7 +670403,7 @@ ] ], "skips-focusgroup-that-extends-in-orthogonal-axis.html": [ - "44dace84614cdfd266b6b57a113cd3c73a1d9aea", + "8c6c7b2a3efadc2bdcc42de1a17f0cb0a4b08d18", [ null, { @@ -648793,7 +670412,7 @@ ] ], "wraps-in-axis.html": [ - "956d3f640635fb819ff4073b30171c6d6281df43", + "5be26b93a1a7f5084b77f5d5a0e50657e1e81df7", [ null, { @@ -648858,7 +670477,7 @@ ], "vertical": { "ascends-to-parent-focusgroup.html": [ - "b95f2c527bca50a197c25b1b05f52a8ac3150f67", + "2f9e3016237a65f15ffcdde6b052234797157d69", [ null, { @@ -648867,7 +670486,7 @@ ] ], "does-not-ascend-out-of-non-extending-focusgroup.html": [ - "08dc46660335471445c520a67be67555bdda4b06", + "407db648facd06354ac9c86ce68ca72adc7e04e9", [ null, { @@ -648876,7 +670495,7 @@ ] ], "does-not-move-when-axis-not-supported.html": [ - "0cf6ad3be23ec477b0786bc64d2833401426885e", + "c9a6ec5ddee1bd34edf8c58d03d6c70eaa1c9f70", [ null, { @@ -648885,7 +670504,7 @@ ] ], "does-not-wrap-in-orthogonal-axis.html": [ - "0ec4f0224761b4323c862196fc168aa4ca53507d", + "9bb5cc1c885032610c8e0de61812ccabe6052176", [ null, { @@ -648894,7 +670513,7 @@ ] ], "moves-when-only-current-axis-supported.html": [ - "ad46be76b29e945f583f740860b27e1e6667e4e1", + "efe3b458f59a3062ade0c1f61254bb525c31d003", [ null, { @@ -648903,7 +670522,7 @@ ] ], "skips-focusgroup-that-extends-in-orthogonal-axis-complex-case.html": [ - "86ea79122cf140fb61d6fd45b1a50bbf0e5faac9", + "5b66b5b00ea9c16a80ff18b293d9ddc0f47d803b", [ null, { @@ -648912,7 +670531,7 @@ ] ], "skips-focusgroup-that-extends-in-orthogonal-axis.html": [ - "960b8604b0d29896e3446fe61c9c21bcd8135a47", + "b4ff4fab5648e092abb66d83af2f2681f193abbc", [ null, { @@ -648921,7 +670540,7 @@ ] ], "wraps-in-axis.html": [ - "fdccee9742f417bde2d37f5256075bf12fdde1ef", + "afded47311726b3afd8a79daf809c51f9f2249bf", [ null, { @@ -649024,7 +670643,7 @@ ], "horizontal": { "descends-in-horizontal-inner-focusgroup.html": [ - "3d0d7f0fa5d31239d4e609052cddcddee7584d24", + "f46d07f41d57e5069c9c8caaa46b7bbe8faeb040", [ null, { @@ -649033,7 +670652,7 @@ ] ], "does-not-move-when-axis-not-supported.html": [ - "ebf7238c543baa530811a8a654d16594c13ab541", + "dd2442f4a6b852a0516f3e3ab7ede11345aecc49", [ null, { @@ -649042,7 +670661,7 @@ ] ], "does-not-wrap-even-when-other-axis-supported.html": [ - "19535e1df9229fd628c8b94cba2fda4078ea3b40", + "a9e8deeba01ee36ff3aec8ffcb361437be39e1cc", [ null, { @@ -649051,7 +670670,7 @@ ] ], "moves-when-only-current-axis-supported.html": [ - "9ae9892c1dabbb5696ac5d6a58064f23539b214d", + "3757c831a79ca4f029a423c0b8d11ca730b85a7d", [ null, { @@ -649060,7 +670679,7 @@ ] ], "skips-focusgroup-that-extends-in-orthogonal-axis.html": [ - "05f8268895892e19628c3c0283813a5d503211a6", + "ef3611e7237e1b61714d2de20836d01d96e671eb", [ null, { @@ -649069,7 +670688,7 @@ ] ], "wraps-and-skips-orthogonal-inner-focusgroup.html": [ - "af79ca24c6289ae953b800389af924ed1389000f", + "c17253a8623ff5fab2b43fcefe316bfa83809bd6", [ null, { @@ -649078,7 +670697,7 @@ ] ], "wraps-in-appropriate-focusgroup.html": [ - "80290c991856ca3294ce3a39633c441fbe592f06", + "3ff2a1f5335de328c211c363a2e933d0407e3bcc", [ null, { @@ -649087,7 +670706,7 @@ ] ], "wraps-in-inner-focusgroup.html": [ - "ab33842340b35a5833893e6ba0f5cc0b4d0531f6", + "8a8a4c8c22bf56fb17a97b36862b971db469a766", [ null, { @@ -649143,7 +670762,7 @@ ], "vertical": { "descends-in-vertical-inner-focusgroup.html": [ - "4f6f8e945973c8655bd7e1ebdb2d242f0188fd4a", + "9c1e68b5a383c5c5e3028f57b6fc5d926249c82b", [ null, { @@ -649152,7 +670771,7 @@ ] ], "does-not-move-when-axis-not-supported.html": [ - "794f079418d48736672b9f122f5a0b28dd6c8cf0", + "bd20319a8c3a5facfd542185b2d3a4d0a8dc3c1c", [ null, { @@ -649161,7 +670780,7 @@ ] ], "does-not-wrap-even-when-other-axis-supported.html": [ - "f7b697e5c024236ec509498da15dfc7d380a1213", + "0b2028548a9997ecc9a2ee1db05014fe23a282fc", [ null, { @@ -649170,7 +670789,7 @@ ] ], "moves-when-only-current-axis-supported.html": [ - "b5b97cca674a42918ea06f9799af662202d15411", + "d5eb894de3fe36af53e176e6021dce0245c05207", [ null, { @@ -649179,7 +670798,7 @@ ] ], "skips-focusgroup-that-extends-in-orthogonal-axis.html": [ - "4fe753126bff3d494afb17f52dc7a84c8b8db81b", + "419ee8dc47c9da136c667a6d9f4f268398ad898a", [ null, { @@ -649188,7 +670807,7 @@ ] ], "wraps-and-skips-orthogonal-inner-focusgroup.html": [ - "64a4b76ebf8605f72bddccd0d138eb2a22669daa", + "d4623401e0075dc57fca53233c6398189bfb8a2c", [ null, { @@ -649197,7 +670816,7 @@ ] ], "wraps-in-appropriate-focusgroup.html": [ - "fa9c72b0bdf46b107eaff3b32bd78dffafbadc81", + "c387cc22f4a613447a4c958a1ebc4fefa3572d0d", [ null, { @@ -649206,7 +670825,7 @@ ] ], "wraps-in-inner-focusgroup.html": [ - "8fd44ba0f1d6ec86b2321f9fa56f293329fd0b6c", + "d34b71c32b23bc3d5e9b78654c136a5f64ec5767", [ null, { @@ -649558,6 +671177,13 @@ ] ], "the-autofocus-attribute": { + "autofocus-area.html": [ + "e1ff72eb61ebf4b5924daeca7897582779783a82", + [ + null, + {} + ] + ], "autofocus-dialog.html": [ "08a0913f42ff91f62af9b19e8c9a3959b63caffa", [ @@ -649778,6 +671404,15 @@ ] } }, + "meta": { + "refresh-time.html": [ + "7aef1266a2bdc3fdae0a83d814bd32a2f0e816cb", + [ + null, + {} + ] + ] + }, "obsolete": { "requirements-for-implementations": { "other-elements-attributes-and-apis": { @@ -649853,6 +671488,13 @@ {} ] ], + "marquee-overflow.html": [ + "44b149952cdc97f5e4e09dbdda210966c83b2430", + [ + null, + {} + ] + ], "marquee-scrollamount.html": [ "808361a99f3aee138359e1fe1ee250a31dbe22f6", [ @@ -649871,6 +671513,22 @@ } }, "rendering": { + "bidi-rendering": { + "slot-direction.window.js": [ + "673f6c0b0fc3ad830adf16787ba4edad3b6f81e9", + [ + "html/rendering/bidi-rendering/slot-direction.window.html", + {} + ] + ], + "unicode-bidi-ua-rules.html": [ + "00f4c9631736b1395d02cf1e19264c52c34aee97", + [ + null, + {} + ] + ] + }, "dimension-attributes.html": [ "1d94205e0b1ee6eab918ab7f32af7634ff5a0bf9", [ @@ -649904,7 +671562,7 @@ ] ], "search-styles-iso-8859-8.html": [ - "194456622740b374ad5f35faf3de5d424714bffd", + "343e97f50476781be3710e1cb8a5ec229009cd0d", [ null, {} @@ -649916,6 +671574,22 @@ null, {} ] + ], + "slot-element-focusable.tentative.html": [ + "b6d2449e890b31a9fc50712422c0dbca5e3e33a0", + [ + null, + {} + ] + ], + "slot-element-tabbable.tentative.html": [ + "22c2324d020d1274d2cd85bce5d2bcb1a0e836bb", + [ + null, + { + "testdriver": true + } + ] ] }, "form-controls": { @@ -649934,7 +671608,7 @@ ] ], "resets.html": [ - "20d6a565b46964aa1e606391e03d334e80a9b537", + "1a17aeac2d993e6e192145579b3d4c45045b4ae0", [ null, {} @@ -650006,8 +671680,15 @@ } }, "sections-and-headings": { + "headings-styles-no-h1-in-section.tentative.html": [ + "61610c2fd6c8ce6df5efdaf0f48fffd4662bd9b8", + [ + null, + {} + ] + ], "headings-styles.html": [ - "63e6a83e883d7dbbf600165746fc61b016ae6053", + "be531adfcf5b261de59b03cbf3a49cd526309530", [ null, {} @@ -650578,6 +672259,13 @@ {} ] ], + "no-help-cursor-on-links-wrapped-in-svg.historical.html": [ + "da6ffe15bbef59838922335fa03fcd017d6ff000", + [ + null, + {} + ] + ], "no-help-cursor-on-links.historical.html": [ "82aa08d2150572477365fdf53b5d3e9605d4210a", [ @@ -650597,7 +672285,14 @@ ] ], "details-blockification.html": [ - "960074854d8a4a2cc3a9c99f56e5d74e930e693b", + "2bd5aaf2e6259b52748776e077d3dfd5dbbf455b", + [ + null, + {} + ] + ], + "details-display.html": [ + "27573bcdc695f057b754c5264342b8390801fee2", [ null, {} @@ -650665,36 +672360,36 @@ ] ] }, - "field-sizing-input-number.tentative.html": [ + "field-sizing-input-number.html": [ "859d35197b05ee31f350d157604308f5309ad372", [ null, {} ] ], - "field-sizing-input-text.tentative.html": [ + "field-sizing-input-text.html": [ "f421ad602c9391debca69ef282e8014271d7a4ec", [ null, {} ] ], - "field-sizing-select.tentative.html": [ + "field-sizing-select.html": [ "d55898105e8f6884dc61bddf8b8dcf91cf62c3c0", [ null, {} ] ], - "field-sizing-textarea.tentative.html": [ - "f8d90dc659b119133cce6f651e7331d83c35fd3c", + "field-sizing-textarea.html": [ + "114d60c72d02329c8572d1308e86c5dc37bd55c5", [ null, {} ] ], "input-checkbox-switch.tentative.window.js": [ - "7e5095a3378155a0ae352942a759778ebccff060", + "84198eda100adde2642ba16295cbc093f5d89693", [ "html/rendering/widgets/input-checkbox-switch.tentative.window.html", {} @@ -650709,6 +672404,13 @@ } ] ], + "input-text-size.html": [ + "fa69f9977317b83118cc11845897706cb9bbc834", + [ + null, + {} + ] + ], "select-wrap-no-spill.optional.html": [ "84aa5602ac1c8cdfb8f7d6e88f4270f72a4422c3", [ @@ -650716,6 +672418,27 @@ {} ] ], + "textarea-cols-rows.html": [ + "6ad24a2eb8b399dacbc20b988932df7ba895db35", + [ + null, + {} + ] + ], + "textarea-scrollbar-sizing-001.html": [ + "e15d2cf84d69856d6b012bdfaebf6589235bbaac", + [ + null, + {} + ] + ], + "textarea-scrollbar-sizing-002.html": [ + "c4f35a08969430e543378b81613be136d9f68d98", + [ + null, + {} + ] + ], "the-select-element": { "select-as-listbox-default-styles.tentative.html": [ "3e9b001f99589f0a223074aa8083c1617a2faa05", @@ -650797,7 +672520,7 @@ ] ], "event-propagate-disabled.tentative.html": [ - "e3dcd43a17ab2a4bd2b3807f699236d080b95f52", + "2be6dc72fe7261f7987b8babbc1628ed6e936423", [ null, { @@ -651055,6 +672778,20 @@ {} ] ], + "stylesheet-bad-mime-type.html": [ + "08176d6cd253124851de87194b308259edfa07e4", + [ + null, + {} + ] + ], + "stylesheet-non-OK-status.html": [ + "28ac55ff1a408309e1fe6fdf0662bee701f13068", + [ + null, + {} + ] + ], "stylesheet-not-removed-until-next-stylesheet-loads.html": [ "ab8ee727f2a27467430b38c4f9ce52f117dda75d", [ @@ -652400,7 +674137,7 @@ ], "mime-types": { "canPlayType.html": [ - "56edf25aa8fb93c66fbbad5bbfb2e9652e7297d0", + "855f02d3b19ec691fdb8060ef58871e877d7da77", [ null, {} @@ -652429,6 +674166,13 @@ ] ], "offsets-into-the-media-resource": { + "currentTime-move-within-document.html": [ + "22b579d720963f79cf13ef17e25c69141182cf31", + [ + null, + {} + ] + ], "currentTime.html": [ "e9b65899412a1db28eeafc3721aabee9e0aa3af9", [ @@ -652526,7 +674270,7 @@ ] ], "preserves-pitch.html": [ - "d0f4d77a32b23f97e5ef00aaee4bc691683ea79b", + "ba76f51d47192f3248fe1f618e85f85ccc7cb0bf", [ null, { @@ -653037,7 +674781,7 @@ ] ], "track-cue-inline.html": [ - "3b4c3542a92ec0b42a5353ba1cbef8d6cdc9f886", + "1a8aabcaff1d56d5b0ddb1ba185de55164dd3f9e", [ null, {} @@ -653698,7 +675442,7 @@ ] ], "canvas-descendants-focusability-003.tentative.html": [ - "98d60cfe9898447d41625c34c3ff4bcd1cec3788", + "cd42d1e6b7aac0050cbbfaafa88cfbe73284400f", [ null, {} @@ -653802,62 +675546,6 @@ {} ] ], - "initial.colour.html": [ - "166732a57b32df8997b387b11caf2771c840998b", - [ - null, - {} - ] - ], - "initial.reset.clip.html": [ - "ebf52bfa764a3431f11edea22ca485c6398aafb0", - [ - null, - {} - ] - ], - "initial.reset.different.html": [ - "d55dd250c091a2a550d44ba6fc6dc791c2a13241", - [ - null, - {} - ] - ], - "initial.reset.gradient.html": [ - "31b56ec8e9ba41510c282116e156d9091626aaff", - [ - null, - {} - ] - ], - "initial.reset.path.html": [ - "3525377d2db6b376ce53730fb920d4a811a00db4", - [ - null, - {} - ] - ], - "initial.reset.pattern.html": [ - "28f8306d96d3996488dae532e5e16aa7622c1327", - [ - null, - {} - ] - ], - "initial.reset.same.html": [ - "1a0872ba2c05bdef16e0cb1e4a4ae4469496fcb5", - [ - null, - {} - ] - ], - "initial.reset.transform.html": [ - "36284ba4984108b589014b136aa8e3c88c23357e", - [ - null, - {} - ] - ], "security.dataURI.html": [ "93b560e82c472eaf8f9018c865d6eefd4d03db92", [ @@ -654012,55 +675700,6 @@ {} ] ], - "size.attributes.default.html": [ - "ecf35285a1b8e665919f94d1b98b3c4f50eee41f", - [ - null, - {} - ] - ], - "size.attributes.idl.html": [ - "1594a1c5e59c7b0ab2d607577292ce641f366432", - [ - null, - {} - ] - ], - "size.attributes.idl.set.zero.html": [ - "c09d5cb278a7d917ad6b38c055aa5eee82725267", - [ - null, - {} - ] - ], - "size.attributes.reflect.setcontent.html": [ - "a25c4b784a29b16708d6a8959151b1982dc8c7d3", - [ - null, - {} - ] - ], - "size.attributes.reflect.setidl.html": [ - "e228276da70a587a77aca253e1df17e91218ee1c", - [ - null, - {} - ] - ], - "size.attributes.reflect.setidlzero.html": [ - "65df3f9f94e9ec98b640e8d74d5c24a3ebffda79", - [ - null, - {} - ] - ], - "size.attributes.removed.html": [ - "c96cba7b1758fcc607ba8bcc6e082d61a94db83b", - [ - null, - {} - ] - ], "size.attributes.style.html": [ "aeb5c7ecb2ec1a71f83a8b68c2dd3298992d1ff8", [ @@ -654243,47 +675882,12 @@ {} ] ], - "type.delete.html": [ - "7fd54b30d5319c7c28c6dfa0f533f16f2b240ae9", - [ - null, - {} - ] - ], "type.exists.html": [ "26f59a1614384b69b43964c5ce586d1e347eb342", [ null, {} ] - ], - "type.extend.html": [ - "e17209f455a768c49433b6b18074cda92b435833", - [ - null, - {} - ] - ], - "type.name.html": [ - "fdf1d1d39885c41e6389fc8fbfdd87024301a73c", - [ - null, - {} - ] - ], - "type.prototype.html": [ - "f47f755388fb46bcac920809d5e1faac5db6b8cf", - [ - null, - {} - ] - ], - "type.replace.html": [ - "e67fe7c4a26303197bb2d596778d8db8aae873b8", - [ - null, - {} - ] ] }, "the-embed-element": { @@ -654480,6 +676084,13 @@ {} ] ], + "iframe-loading-lazy-adopt-lazy-iframe-from-script-disabled-document.html": [ + "724e8c1708d9dfc717b0287566f97cbaf0d07493", + [ + null, + {} + ] + ], "iframe-loading-lazy-base-url-2.html": [ "8782f3d315e47b2937f3e09154f63f1f7eb0cfbf", [ @@ -654501,6 +676112,20 @@ {} ] ], + "iframe-loading-lazy-history-pushState.html": [ + "09af8b3693f0d7da84f62ebee1ae43356801d04b", + [ + null, + {} + ] + ], + "iframe-loading-lazy-history-replaceState.html": [ + "ac9117a46cecb52ffa3e08827330eaf6314067e4", + [ + null, + {} + ] + ], "iframe-loading-lazy-in-script-disabled-iframe.html": [ "4f191cd7842675d763079911fe9f8b80bd447506", [ @@ -654508,6 +676133,69 @@ {} ] ], + "iframe-loading-lazy-in-scroller-far.html": [ + "eeb05b7b98ec1bf96a2912f8b174edc0dad53cb9", + [ + null, + {} + ] + ], + "iframe-loading-lazy-in-scroller-horizontal-far.html": [ + "f058b46fbd9fa80288eb4d09b0e1ed54afa5c4c6", + [ + null, + {} + ] + ], + "iframe-loading-lazy-in-scroller-horizontal.html": [ + "80ba0829a9a5465030507b10908f1ddc924a4662", + [ + null, + {} + ] + ], + "iframe-loading-lazy-in-scroller-nested-2.html": [ + "9eec621c891e8357818a9646e3822c19618a95a0", + [ + null, + {} + ] + ], + "iframe-loading-lazy-in-scroller-nested-3.html": [ + "aa02bb415161340f7264cbada530b848fac8bc84", + [ + null, + {} + ] + ], + "iframe-loading-lazy-in-scroller-nested-4.html": [ + "e15d891fb5b5d86bc787e84838b31f9a61f3f948", + [ + null, + {} + ] + ], + "iframe-loading-lazy-in-scroller-nested-5.html": [ + "b36265024d55366a315905e43a8403ca46cd60ef", + [ + null, + {} + ] + ], + "iframe-loading-lazy-in-scroller-nested.html": [ + "50b5e7ee0adc6a38aa2145a48a2bf345543ced43", + [ + null, + {} + ] + ], + "iframe-loading-lazy-in-scroller.html": [ + "631710e740de48dc925d3a778662c17b39061c3b", + [ + null, + {} + ] + ], "iframe-loading-lazy-load-event.html": [ "bf98bf7585cf608e6ebb46d025663e22bce8324c", [ @@ -654529,6 +676217,69 @@ {} ] ], + "iframe-loading-lazy-nav-form-submit.html": [ + "7f94d6021fafcd95d03d35544f3249609360bd2c", + [ + null, + {} + ] + ], + "iframe-loading-lazy-nav-link-click-fragment.html": [ + "c81a01833a2a8103601829da6660fc1536c77d7b", + [ + null, + {} + ] + ], + "iframe-loading-lazy-nav-link-click.html": [ + "d8d85b62a4bd624c23f9046128289b2234689321", + [ + null, + {} + ] + ], + "iframe-loading-lazy-nav-location-assign.html": [ + "88ec129fbc0da941bd5c64d81a65c494cbde8e17", + [ + null, + {} + ] + ], + "iframe-loading-lazy-nav-location-replace-set-src.html": [ + "e2f0c6dceb9348c80ffb7dc55251cc62edb7309c", + [ + null, + {} + ] + ], + "iframe-loading-lazy-nav-location-replace.html": [ + "9d3c4fbc1320cabe9fc2ff239a83e2ccad3624be", + [ + null, + {} + ] + ], + "iframe-loading-lazy-nav-meta-refresh.optional.html": [ + "0cc7e11041505519a14ba978c4e94c6e97f32df5", + [ + null, + {} + ] + ], + "iframe-loading-lazy-nav-navigation-navigate.html": [ + "1010c540b7fd59521278ece38b34f9e572e4e4a6", + [ + null, + {} + ] + ], + "iframe-loading-lazy-nav-window-open.html": [ + "579c079ce7025a2b20bfe928df69fb47816d6eb4", + [ + null, + {} + ] + ], "iframe-loading-lazy-referrerpolicy-change.sub.html": [ "68734d5708da40b7e5e533cb2ddee41c8a3d719f", [ @@ -654536,6 +676287,20 @@ {} ] ], + "iframe-loading-lazy-reload-location-reload.html": [ + "a670de1f5c5f815ecbe11cc30026a2db8490435a", + [ + null, + {} + ] + ], + "iframe-loading-lazy-reload-navigation-reload.html": [ + "aefd6c472b5ae888e0786de8e26e8d9ad5111adb", + [ + null, + {} + ] + ], "iframe-loading-lazy-to-eager.html": [ "371601a8c3a167e91804945fefe6db3154483cd2", [ @@ -654853,10 +676618,774 @@ {} ] ], - "sandbox-top-navigation-child-special-cases.tentative.sub.window.js": [ - "a9ea9e472323876d0fd21811450b76897071e40c", + "sandbox-top-navigation-child-cross-origin-delivered.tentative.sub.window.js": [ + "8074314557559387f23bde880fb1a298272b033a", + [ + "html/semantics/embedded-content/the-iframe-element/sandbox-top-navigation-child-cross-origin-delivered.tentative.sub.window.html", + { + "script_metadata": [ + [ + "title", + "Top-level navigation tests with cross origin & user activated child frames" + ], + [ + "script", + "/common/dispatcher/dispatcher.js" + ], + [ + "script", + "/common/get-host-info.sub.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ], + [ + "script", + "/html/browsers/browsing-the-web/remote-context-helper/resources/remote-context-helper.js" + ], + [ + "script", + "./resources/sandbox-top-navigation-helper.sub.js" + ] + ] + } + ] + ], + "sandbox-top-navigation-child-cross-origin-frame.tentative.sub.window.js": [ + "a2191b352aad0d241b84ea2f0526c7b5abdc1082", + [ + "html/semantics/embedded-content/the-iframe-element/sandbox-top-navigation-child-cross-origin-frame.tentative.sub.window.html", + { + "script_metadata": [ + [ + "title", + "Top-level navigation tests with cross origin & user activated child frames" + ], + [ + "script", + "/common/dispatcher/dispatcher.js" + ], + [ + "script", + "/common/get-host-info.sub.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ], + [ + "script", + "/html/browsers/browsing-the-web/remote-context-helper/resources/remote-context-helper.js" + ], + [ + "script", + "./resources/sandbox-top-navigation-helper.sub.js" + ] + ] + } + ] + ], + "sandbox-top-navigation-child-delivered-both.tentative.sub.window.js": [ + "540cc338c9394111888d99f4ae341d200e265089", + [ + "html/semantics/embedded-content/the-iframe-element/sandbox-top-navigation-child-delivered-both.tentative.sub.window.html", + { + "script_metadata": [ + [ + "title", + "Top-level navigation tests with child frames" + ], + [ + "script", + "/common/dispatcher/dispatcher.js" + ], + [ + "script", + "/common/get-host-info.sub.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ], + [ + "script", + "/html/browsers/browsing-the-web/remote-context-helper/resources/remote-context-helper.js" + ], + [ + "script", + "./resources/sandbox-top-navigation-helper.sub.js" + ] + ] + } + ] + ], + "sandbox-top-navigation-child-delivered.tentative.sub.window.js": [ + "c020513012092799071aaf6580949ddb6bc1c865", + [ + "html/semantics/embedded-content/the-iframe-element/sandbox-top-navigation-child-delivered.tentative.sub.window.html", + { + "script_metadata": [ + [ + "title", + "Top-level navigation tests with child frames" + ], + [ + "script", + "/common/dispatcher/dispatcher.js" + ], + [ + "script", + "/common/get-host-info.sub.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ], + [ + "script", + "/html/browsers/browsing-the-web/remote-context-helper/resources/remote-context-helper.js" + ], + [ + "script", + "./resources/sandbox-top-navigation-helper.sub.js" + ] + ] + } + ] + ], + "sandbox-top-navigation-child-frame-both.tentative.sub.window.js": [ + "ff7d2eb5847102473f6455a8cfaf7c5e3264235a", + [ + "html/semantics/embedded-content/the-iframe-element/sandbox-top-navigation-child-frame-both.tentative.sub.window.html", + { + "script_metadata": [ + [ + "title", + "Top-level navigation tests with child frames" + ], + [ + "script", + "/common/dispatcher/dispatcher.js" + ], + [ + "script", + "/common/get-host-info.sub.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ], + [ + "script", + "/html/browsers/browsing-the-web/remote-context-helper/resources/remote-context-helper.js" + ], + [ + "script", + "./resources/sandbox-top-navigation-helper.sub.js" + ] + ] + } + ] + ], + "sandbox-top-navigation-child-frame.tentative.sub.window.js": [ + "35abc554b6144ebcdbcb3bc7ce73a8be37d2fc55", + [ + "html/semantics/embedded-content/the-iframe-element/sandbox-top-navigation-child-frame.tentative.sub.window.html", + { + "script_metadata": [ + [ + "title", + "Top-level navigation tests with child frames" + ], + [ + "script", + "/common/dispatcher/dispatcher.js" + ], + [ + "script", + "/common/get-host-info.sub.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ], + [ + "script", + "/html/browsers/browsing-the-web/remote-context-helper/resources/remote-context-helper.js" + ], + [ + "script", + "./resources/sandbox-top-navigation-helper.sub.js" + ] + ] + } + ] + ], + "sandbox-top-navigation-child-unsandboxed.tentative.sub.window.js": [ + "c2d78b6dd54b802d71642b7147c12180cd10c9f9", + [ + "html/semantics/embedded-content/the-iframe-element/sandbox-top-navigation-child-unsandboxed.tentative.sub.window.html", + { + "script_metadata": [ + [ + "title", + "Top-level navigation tests with child frames" + ], + [ + "script", + "/common/dispatcher/dispatcher.js" + ], + [ + "script", + "/common/get-host-info.sub.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ], + [ + "script", + "/html/browsers/browsing-the-web/remote-context-helper/resources/remote-context-helper.js" + ], + [ + "script", + "./resources/sandbox-top-navigation-helper.sub.js" + ] + ] + } + ] + ], + "sandbox-top-navigation-cross-origin-escalate.tentative.sub.window.js": [ + "c394699d85dc0729392aeffcda648d8d5eeb002f", + [ + "html/semantics/embedded-content/the-iframe-element/sandbox-top-navigation-cross-origin-escalate.tentative.sub.window.html", + { + "script_metadata": [ + [ + "title", + "Top-level navigation tests with frames that try to give themselves top-nav permission" + ], + [ + "script", + "/common/dispatcher/dispatcher.js" + ], + [ + "script", + "/common/get-host-info.sub.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ], + [ + "script", + "/html/browsers/browsing-the-web/remote-context-helper/resources/remote-context-helper.js" + ], + [ + "script", + "./resources/sandbox-top-navigation-helper.sub.js" + ] + ] + } + ] + ], + "sandbox-top-navigation-cross-site.tentative.sub.window.js": [ + "cacc5bd983e159fe711871d6a9ead8ea8de65e8c", + [ + "html/semantics/embedded-content/the-iframe-element/sandbox-top-navigation-cross-site.tentative.sub.window.html", + { + "script_metadata": [ + [ + "title", + "Top-level navigation tests with cross origin & user activated child frames" + ], + [ + "script", + "/common/dispatcher/dispatcher.js" + ], + [ + "script", + "/common/get-host-info.sub.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-actions.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ], + [ + "script", + "/html/browsers/browsing-the-web/remote-context-helper/resources/remote-context-helper.js" + ], + [ + "script", + "./resources/sandbox-top-navigation-helper.sub.js" + ] + ] + } + ] + ], + "sandbox-top-navigation-grandchild-allow-same-origin.tentative.sub.window.js": [ + "2be6cd66a7d23f1c360a2296385b4793df33ee97", + [ + "html/semantics/embedded-content/the-iframe-element/sandbox-top-navigation-grandchild-allow-same-origin.tentative.sub.window.html", + { + "script_metadata": [ + [ + "title", + "Top-level navigation tests with frames that try to give themselves top-nav permission" + ], + [ + "script", + "/common/dispatcher/dispatcher.js" + ], + [ + "script", + "/common/get-host-info.sub.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ], + [ + "script", + "/html/browsers/browsing-the-web/remote-context-helper/resources/remote-context-helper.js" + ], + [ + "script", + "./resources/sandbox-top-navigation-helper.sub.js" + ] + ] + } + ] + ], + "sandbox-top-navigation-grandchild-frame-allow-top.tentative.sub.window.js": [ + "43ca5eb404fb601f72ded2c615ccef04fdb12c0f", + [ + "html/semantics/embedded-content/the-iframe-element/sandbox-top-navigation-grandchild-frame-allow-top.tentative.sub.window.html", + { + "script_metadata": [ + [ + "title", + "Top-level navigation tests with frames that try to give themselves top-nav permission" + ], + [ + "script", + "/common/dispatcher/dispatcher.js" + ], + [ + "script", + "/common/get-host-info.sub.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ], + [ + "script", + "/html/browsers/browsing-the-web/remote-context-helper/resources/remote-context-helper.js" + ], + [ + "script", + "./resources/sandbox-top-navigation-helper.sub.js" + ] + ] + } + ] + ], + "sandbox-top-navigation-grandchild-sandboxed-cross-origin-parent.tentative.sub.window.js": [ + "8833ad42bbebd886e71b771cfbd2d9769c755772", + [ + "html/semantics/embedded-content/the-iframe-element/sandbox-top-navigation-grandchild-sandboxed-cross-origin-parent.tentative.sub.window.html", + { + "script_metadata": [ + [ + "title", + "Top-level navigation tests with grandchild frames" + ], + [ + "script", + "/common/dispatcher/dispatcher.js" + ], + [ + "script", + "/common/get-host-info.sub.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ], + [ + "script", + "/html/browsers/browsing-the-web/remote-context-helper/resources/remote-context-helper.js" + ], + [ + "script", + "./resources/sandbox-top-navigation-helper.sub.js" + ] + ] + } + ] + ], + "sandbox-top-navigation-grandchild-sandboxed-escalate.tentative.sub.window.js": [ + "448925144aa1136a1d417ce7589e03d730d71022", + [ + "html/semantics/embedded-content/the-iframe-element/sandbox-top-navigation-grandchild-sandboxed-escalate.tentative.sub.window.html", + { + "script_metadata": [ + [ + "title", + "Top-level navigation tests with frames that try to give themselves top-nav permission" + ], + [ + "script", + "/common/dispatcher/dispatcher.js" + ], + [ + "script", + "/common/get-host-info.sub.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ], + [ + "script", + "/html/browsers/browsing-the-web/remote-context-helper/resources/remote-context-helper.js" + ], + [ + "script", + "./resources/sandbox-top-navigation-helper.sub.js" + ] + ] + } + ] + ], + "sandbox-top-navigation-grandchild-sandboxed.tentative.sub.window.js": [ + "a4b43a7b1f1033411d763b19c3327fa50e0960b8", + [ + "html/semantics/embedded-content/the-iframe-element/sandbox-top-navigation-grandchild-sandboxed.tentative.sub.window.html", + { + "script_metadata": [ + [ + "title", + "Top-level navigation tests with grandchild frames" + ], + [ + "script", + "/common/dispatcher/dispatcher.js" + ], + [ + "script", + "/common/get-host-info.sub.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ], + [ + "script", + "/html/browsers/browsing-the-web/remote-context-helper/resources/remote-context-helper.js" + ], + [ + "script", + "./resources/sandbox-top-navigation-helper.sub.js" + ] + ] + } + ] + ], + "sandbox-top-navigation-grandchild-unsandboxed-cross-origin-parent.tentative.sub.window.js": [ + "5abbb9c30c812fc74bfe07da2a475309e8352ba8", + [ + "html/semantics/embedded-content/the-iframe-element/sandbox-top-navigation-grandchild-unsandboxed-cross-origin-parent.tentative.sub.window.html", + { + "script_metadata": [ + [ + "title", + "Top-level navigation tests with grandchild frames" + ], + [ + "script", + "/common/dispatcher/dispatcher.js" + ], + [ + "script", + "/common/get-host-info.sub.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ], + [ + "script", + "/html/browsers/browsing-the-web/remote-context-helper/resources/remote-context-helper.js" + ], + [ + "script", + "./resources/sandbox-top-navigation-helper.sub.js" + ] + ] + } + ] + ], + "sandbox-top-navigation-grandchild-unsandboxed-inherit.tentative.sub.window.js": [ + "a31c56b935399f6e68bb6c2aa002d76a24e3b5fb", + [ + "html/semantics/embedded-content/the-iframe-element/sandbox-top-navigation-grandchild-unsandboxed-inherit.tentative.sub.window.html", + { + "script_metadata": [ + [ + "title", + "Top-level navigation tests with frames that try to give themselves top-nav permission" + ], + [ + "script", + "/common/dispatcher/dispatcher.js" + ], + [ + "script", + "/common/get-host-info.sub.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ], + [ + "script", + "/html/browsers/browsing-the-web/remote-context-helper/resources/remote-context-helper.js" + ], + [ + "script", + "./resources/sandbox-top-navigation-helper.sub.js" + ] + ] + } + ] + ], + "sandbox-top-navigation-grandchild-unsandboxed.tentative.sub.window.js": [ + "7fe80dfa1b294b07056fba4203b121b1e980eade", + [ + "html/semantics/embedded-content/the-iframe-element/sandbox-top-navigation-grandchild-unsandboxed.tentative.sub.window.html", + { + "script_metadata": [ + [ + "title", + "Top-level navigation tests with grandchild frames" + ], + [ + "script", + "/common/dispatcher/dispatcher.js" + ], + [ + "script", + "/common/get-host-info.sub.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ], + [ + "script", + "/html/browsers/browsing-the-web/remote-context-helper/resources/remote-context-helper.js" + ], + [ + "script", + "./resources/sandbox-top-navigation-helper.sub.js" + ] + ] + } + ] + ], + "sandbox-top-navigation-same-site-no-activation.tentative.sub.window.js": [ + "03350e76e24074b323201ac3f81390e4a50a9eba", + [ + "html/semantics/embedded-content/the-iframe-element/sandbox-top-navigation-same-site-no-activation.tentative.sub.window.html", + { + "script_metadata": [ + [ + "title", + "Top-level navigation tests with cross origin & user activated child frames" + ], + [ + "script", + "/common/dispatcher/dispatcher.js" + ], + [ + "script", + "/common/get-host-info.sub.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-actions.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ], + [ + "script", + "/html/browsers/browsing-the-web/remote-context-helper/resources/remote-context-helper.js" + ], + [ + "script", + "./resources/sandbox-top-navigation-helper.sub.js" + ] + ] + } + ] + ], + "sandbox-top-navigation-same-site.tentative.sub.window.js": [ + "0ee6b8edcc49908d0881e6191106be5051af0666", [ - "html/semantics/embedded-content/the-iframe-element/sandbox-top-navigation-child-special-cases.tentative.sub.window.html", + "html/semantics/embedded-content/the-iframe-element/sandbox-top-navigation-same-site.tentative.sub.window.html", { "script_metadata": [ [ @@ -654881,87 +677410,33 @@ ], [ "script", - "/resources/testdriver-vendor.js" - ], - [ - "script", - "/resources/testharness.js" - ], - [ - "script", - "/resources/testharnessreport.js" - ], - [ - "script", - "/html/browsers/browsing-the-web/remote-context-helper/resources/remote-context-helper.js" - ], - [ - "script", - "./resources/sandbox-top-navigation-helper.js" - ] - ] - } - ] - ], - "sandbox-top-navigation-child.tentative.sub.window.js": [ - "58133456970a79cb684beb45408fc7da1b5b811d", - [ - "html/semantics/embedded-content/the-iframe-element/sandbox-top-navigation-child.tentative.sub.window.html", - { - "script_metadata": [ - [ - "title", - "Top-level navigation tests with child frames" - ], - [ - "script", - "/common/dispatcher/dispatcher.js" - ], - [ - "script", - "/common/get-host-info.sub.js" - ], - [ - "script", - "/common/utils.js" - ], - [ - "script", - "/resources/testdriver.js" + "/resources/testdriver-actions.js" ], [ "script", "/resources/testdriver-vendor.js" ], - [ - "script", - "/resources/testharness.js" - ], - [ - "script", - "/resources/testharnessreport.js" - ], [ "script", "/html/browsers/browsing-the-web/remote-context-helper/resources/remote-context-helper.js" ], [ "script", - "./resources/sandbox-top-navigation-helper.js" + "./resources/sandbox-top-navigation-helper.sub.js" ] ] } ] ], - "sandbox-top-navigation-escalate-privileges.tentative.sub.window.js": [ - "999f056f334db02ddd6e326648e96f542de61ca9", + "sandbox-top-navigation-user-activation-no-sticky.tentative.sub.window.js": [ + "c62155ce30d302d9c11e17e7992bff44364681b4", [ - "html/semantics/embedded-content/the-iframe-element/sandbox-top-navigation-escalate-privileges.tentative.sub.window.html", + "html/semantics/embedded-content/the-iframe-element/sandbox-top-navigation-user-activation-no-sticky.tentative.sub.window.html", { "script_metadata": [ [ "title", - "Top-level navigation tests with frames that try to give themselves top-nav permission" + "Top-level navigation tests with cross origin & user activated child frames" ], [ "script", @@ -654981,15 +677456,11 @@ ], [ "script", - "/resources/testdriver-vendor.js" + "/resources/testdriver-actions.js" ], [ "script", - "/resources/testharness.js" - ], - [ - "script", - "/resources/testharnessreport.js" + "/resources/testdriver-vendor.js" ], [ "script", @@ -654997,21 +677468,21 @@ ], [ "script", - "./resources/sandbox-top-navigation-helper.js" + "./resources/sandbox-top-navigation-helper.sub.js" ] ] } ] ], - "sandbox-top-navigation-grandchild.tentative.sub.window.js": [ - "519efc94e516d5938b8329ca6591133ed6fb5fef", + "sandbox-top-navigation-user-activation-sticky.tentative.sub.window.js": [ + "e62fbdfb220420cab2040ea1014254a3e852a278", [ - "html/semantics/embedded-content/the-iframe-element/sandbox-top-navigation-grandchild.tentative.sub.window.html", + "html/semantics/embedded-content/the-iframe-element/sandbox-top-navigation-user-activation-sticky.tentative.sub.window.html", { "script_metadata": [ [ "title", - "Top-level navigation tests with grandchild frames" + "Top-level navigation tests with cross origin & user activated child frames" ], [ "script", @@ -655031,15 +677502,11 @@ ], [ "script", - "/resources/testdriver-vendor.js" - ], - [ - "script", - "/resources/testharness.js" + "/resources/testdriver-actions.js" ], [ "script", - "/resources/testharnessreport.js" + "/resources/testdriver-vendor.js" ], [ "script", @@ -655047,7 +677514,7 @@ ], [ "script", - "./resources/sandbox-top-navigation-helper.js" + "./resources/sandbox-top-navigation-helper.sub.js" ] ] } @@ -655356,7 +677823,7 @@ ] ], "image-decode-path-changes.html": [ - "4b878c1bae2af4e104b6073832990ec8a84982b7", + "72e27af296c17e9d898ba31132d0db22c72defb8", [ null, { @@ -655392,7 +677859,7 @@ ] ], "image-decode-with-quick-attach.html": [ - "be680da619e8dd75f57d454268a528eba7d0d6c2", + "2f2608bbc0d4ddecf4773f4665bca9265ce748b8", [ null, { @@ -655438,6 +677905,13 @@ {} ] ], + "empty-src-no-current-request.html": [ + "443da20bd6d008ddc163d6203a0581bd0ff9dc51", + [ + null, + {} + ] + ], "environment-changes": { "viewport-change.html": [ "f6ae65708c661c5ff1a957c3a8606d75a44827fb", @@ -655932,6 +678406,13 @@ ] ], "update-the-image-data": { + "current-request-microtask-002.html": [ + "636f5328b7b2a036f972b117abfa2e878d25df15", + [ + null, + {} + ] + ], "current-request-microtask.html": [ "125b37eadb4b793425814bf30052e3e5fb0b3f68", [ @@ -655945,6 +678426,13 @@ null, {} ] + ], + "not-broken-while-load-task-scheduled.html": [ + "82b860a4700cbbf3c4ed78e2eb5abd6896c4f709", + [ + null, + {} + ] ] }, "update-the-source-set.html": [ @@ -656014,6 +678502,22 @@ {} ] ], + "object-image-click.sub.html": [ + "ba8f1ecd9d7df356a3cf2e3624a4001fdf878356", + [ + null, + { + "testdriver": true + } + ] + ], + "object-image-display-none-loading.html": [ + "de95aef4363f0f23c40653820659183319f6a70c", + [ + null, + {} + ] + ], "object-in-display-none-load-event.html": [ "c8369365af0bb241ff66db733bf75440781996b9", [ @@ -656036,7 +678540,7 @@ ] ], "usemap-casing.html": [ - "114a472fb61947c42e2bc891ee325f421b7eabf4", + "9431c73fe741b77d6d60ffe3c82627034b50f4cd", [ null, {} @@ -656152,10 +678656,12 @@ ] ], "form-validation-reportValidity.html": [ - "c68e21c9d5f7eed6fc3d048c68817fcc6975da36", + "5f0393f9275358b1699c562e1fa42153377617bb", [ null, - {} + { + "timeout": "long" + } ] ], "form-validation-validate.html": [ @@ -656221,6 +678727,15 @@ {} ] ], + "form-validation-validity-textarea-defaultValue.html": [ + "55276116adea957ea082242071c4d47808b4bf7d", + [ + null, + { + "testdriver": true + } + ] + ], "form-validation-validity-tooLong.html": [ "aa787d471d2c50cd1102ddade71d628a33f4f23e", [ @@ -656387,7 +678902,7 @@ ] ], "constructing-form-data-set.html": [ - "c27270ea30bb8922516a082d204f7a348cc38aba", + "f891bac55afd6907201e0ef0a1d51ad3c92faf80", [ null, {} @@ -656571,7 +679086,7 @@ ] ], "submit-entity-body.html": [ - "be9c5f0696eda41b652c9653fee1a70a2304e8f5", + "4467d497f111bbef5bde1d7cc7f82789de32300b", [ null, { @@ -656721,6 +679236,13 @@ ] ] }, + "setCustomValidity-normalize-newlines.html": [ + "3eb8c17e8f5bed20bae6530879bb78b5deee4b8e", + [ + null, + {} + ] + ], "textfieldselection": { "defaultSelection.html": [ "be965bf5cf8eb5053a0650c96d28ed4571ac1495", @@ -657148,6 +679670,13 @@ {} ] ], + "form-indexed-element-shadow.html": [ + "a108ce8a93fcc75bc9144b6409c083943fcb93f3", + [ + null, + {} + ] + ], "form-indexed-element.html": [ "5ea96d3d1b21ac6d143b01ec325261a5255c1e8a", [ @@ -657203,6 +679732,15 @@ {} ] ], + "change-to-empty-value.html": [ + "fd1eeb458469d76801dabdeae45f3faa3c200b07", + [ + null, + { + "testdriver": true + } + ] + ], "checkable-active-onblur-with-click.html": [ "2d5d0086221517719d75c8bff32d019ca9398d58", [ @@ -657267,6 +679805,16 @@ {} ] ], + "click-user-gesture.html": [ + "c6fe7345f2028cff1113a828c4ac330d1c076f9c", + [ + null, + { + "testdriver": true, + "timeout": "long" + } + ] + ], "clone.html": [ "0f7e053baad5bacdd7de424f96989cc43de721d8", [ @@ -657441,6 +679989,13 @@ {} ] ], + "input-stepdown-02.html": [ + "db71d110092849c90f2f96a5ea476b5476dc8913", + [ + null, + {} + ] + ], "input-stepdown-weekmonth.html": [ "c50f67fce53cac40390ff24f4a15d22b3daf4a55", [ @@ -657814,7 +680369,7 @@ ] ], "show-picker-disabled-readonly.html": [ - "8fdffc158f45143bfdc554e4be41f2bd8354ef04", + "a5aae6590386014152d03ac459f1e6a66d232405", [ null, { @@ -657823,7 +680378,7 @@ ] ], "show-picker-user-gesture.html": [ - "6b94b4f0f00ea71c4e5a0740e315fe4c2fbbf896", + "8113a2f32cd13b0f605d8bafb897191d4b7e0117", [ null, { @@ -657932,6 +680487,16 @@ {} ] ], + "control-active-with-multiple-clicks.html": [ + "a14249ee8162d4e779be7bf1c4932e7a1efecb5e", + [ + null, + { + "testdriver": true, + "timeout": "long" + } + ] + ], "forward-focus-to-associated-element.html": [ "86e3f652af0fb2b21d65d79da0c81a3e1daefdaa", [ @@ -658004,7 +680569,7 @@ }, "the-optgroup-element": { "optgroup-removal.window.js": [ - "4e4c2df77e317c68f9858d7f8692f27380688d10", + "ea23e8d724ae49b89c408f29c4dfb82c22d3b104", [ "html/semantics/forms/the-optgroup-element/optgroup-removal.window.html", {} @@ -658274,14 +680839,14 @@ } ] ], - "show-picker-cross-origin-iframe.tentative.html": [ + "show-picker-cross-origin-iframe.html": [ "3f710b39c60beb205ac131929849442fac2cf430", [ null, {} ] ], - "show-picker-disabled.tentative.html": [ + "show-picker-disabled.html": [ "f20bc2cf61b2544892740bf7c37fe617e1ca25ef", [ null, @@ -658290,7 +680855,7 @@ } ] ], - "show-picker-multiple.tentative.html": [ + "show-picker-multiple.html": [ "c38e98ee4e95aa4ae0cc9603ca55c9970faf3b1b", [ null, @@ -658300,7 +680865,7 @@ } ] ], - "show-picker-size.tentative.html": [ + "show-picker-size.html": [ "b9b10c42a9126d21fbf31c704b83d001edc5b7a4", [ null, @@ -658310,8 +680875,8 @@ } ] ], - "show-picker-user-gesture.tentative.html": [ - "e917fe2a612d937e3c1ae429633f0d6ec415ac28", + "show-picker-user-gesture.html": [ + "7a9d88cb1c33eea8410f5bfb33aef0c457bfeb88", [ null, { @@ -658319,7 +680884,119 @@ "timeout": "long" } ] - ] + ], + "stylable-select": { + "nested-options.tenative.html": [ + "7e89a5ad428f69b04d21d1ba7dbd56a8d06ff988", + [ + null, + { + "testdriver": true + } + ] + ], + "option-computed-style.tentative.html": [ + "14650f3f320ae6f1974558ef63f47298a67801b3", + [ + null, + {} + ] + ], + "select-accessibility-minimum-target-size.tentative.html": [ + "364efd1554219493a5b9262c18a12317b9571037", + [ + null, + { + "testdriver": true + } + ] + ], + "select-datalist-options-idl.tentative.html": [ + "1a6274662a2c24150dcec48fc8ada566bf29f304", + [ + null, + {} + ] + ], + "select-datalist-popover-behavior.tentative.html": [ + "2853a09bad4f9220807ff334e35de33af8a9f267", + [ + null, + { + "testdriver": true + } + ] + ], + "select-disabled.tentative.html": [ + "60530b417d59bd0891f820e76b31d1992cbecc3d", + [ + null, + { + "testdriver": true + } + ] + ], + "select-fallback-datalist-animations.tentative.html": [ + "2fd4f99cd184aee6ed25b6ab4471860a57fd420f", + [ + null, + { + "testdriver": true + } + ] + ], + "select-keyboard-behavior.tentative.html": [ + "54dba61af4c1a8cc46d971d0c4adac21a758966c", + [ + null, + { + "testdriver": true, + "timeout": "long" + } + ] + ], + "select-mouse-behavior.tentative.html": [ + "b5d5c3fd1bb2c3fc381dea505ca01ca51b2bdaff", + [ + null, + { + "testdriver": true + } + ] + ], + "select-option-hover-styles.tentative.html": [ + "4361229b8f15dfcdfbe4ae71824d42f67eceb174", + [ + null, + { + "testdriver": true + } + ] + ], + "select-parsing.tentative.html": [ + "5aa4638f0be81919e01d53ea4bae5b0c1ba60cc5", + [ + null, + {} + ] + ], + "selectedoption.tentative.html": [ + "ad006a8b38e038fedb3ee612f9944365cdbf17e3", + [ + null, + { + "testdriver": true + } + ] + ], + "selectedoptionelement-attr.tentative.html": [ + "63b4af3abc8bf7b40c68295fe3d0ff6139c2229a", + [ + null, + {} + ] + ] + } }, "the-selectlist-element": { "selectlist-ask-for-reset.html": [ @@ -658381,13 +681058,6 @@ } ] ], - "selectlist-form-state-restore.tentative.html": [ - "f98494a950719ef94d8b91f525659cb68682d813", - [ - null, - {} - ] - ], "selectlist-form-submission.tentative.html": [ "4b5e4970287b4df5bfd0c516f0e116fe68ddd77d", [ @@ -658447,15 +681117,6 @@ } ] ], - "selectlist-parts-structure.tentative.html": [ - "104ae841f7165685a7dcc26c90473dd5bf95e3ae", - [ - null, - { - "testdriver": true - } - ] - ], "selectlist-popover-position-with-zoom.tentative.html": [ "692eed7caae18f46d9ed606fd1890c65e4bc0cb1", [ @@ -658474,15 +681135,6 @@ } ] ], - "selectlist-popover.tentative.html": [ - "a26d0266496d01294e667fc9007d277fa46ba3b3", - [ - null, - { - "testdriver": true - } - ] - ], "selectlist-pseudo-light-dismiss-invalidation.tentative.html": [ "bda5842a37c4bdd8484a39ec0b10b6ed63384816", [ @@ -658570,6 +681222,15 @@ ] }, "the-textarea-element": { + "change-to-empty-value.html": [ + "b3aa7b416d057c2e4f683637722a84ddf979c9be", + [ + null, + { + "testdriver": true + } + ] + ], "cloning-steps.html": [ "7a85bd26a1f273519a51f534acad13fdc05996c3", [ @@ -658827,7 +681488,7 @@ ] ], "name-attribute.html": [ - "2685546e9b00cf39f25fbb790c3543028274b598", + "19d62de66f472b641a4bd6b8d66024078d934e51", [ null, {} @@ -658866,7 +681527,7 @@ ] ], "child-sequential-focus.html": [ - "bc787202cf53522188238b9bc7db6537a7533100", + "84853fc216965037e5c84f1ed5e1c169654ebb79", [ null, {} @@ -658946,7 +681607,7 @@ ] ], "dialog-canceling.html": [ - "e368bde6fb30fb59cf5d254c07070c9b177fa892", + "db757861e79f6c108e1b95aa9267ae2be765135c", [ null, { @@ -658968,6 +681629,15 @@ {} ] ], + "dialog-close-via-attribute.tentative.html": [ + "5c2e70f87a6101c0ed32dac3fbec8a9d7df0f13f", + [ + null, + { + "testdriver": true + } + ] + ], "dialog-close.html": [ "9029612b2418df3be8f41a23f4aba9cedd39d569", [ @@ -658983,7 +681653,7 @@ ] ], "dialog-focus-previous-outside.html": [ - "82f201f11aab6dbb614520e8031216611978122e", + "43a17676ed18b961c232c3ff17a35d4ca096836c", [ null, {} @@ -659080,7 +681750,7 @@ ] ], "dialog-open.html": [ - "e1f4c6ab82a17b8e013fe066b99338beabf3d544", + "bcd6ebebc19a8008b40ebda6eb04fc0f754e0fa7", [ null, {} @@ -659108,7 +681778,7 @@ ] ], "dialog-showModal.html": [ - "5edff18614225d07ca737511c23f04a2ff389583", + "47612e759eaa4996f56366cbbd333ba676a08824", [ null, {} @@ -659343,6 +682013,15 @@ } ] ], + "interactive-content.html": [ + "94869dc9b69b86d3a3eab1b756caafe3f6cbc438", + [ + null, + { + "testdriver": true + } + ] + ], "summary-untrusted-key-event.html": [ "21b66d52e7b828dd91d1ca2a15dcc6da90f9c05d", [ @@ -659361,21 +682040,91 @@ ], "invokers": { "idlharness.tentative.html": [ - "b215f65813a98f6af851c614174e35e6eea04fc6", + "e52ab063f841ff866ebaf01023a4b3e989ee9191", [ null, {} ] ], + "interestelement-interface.tentative.html": [ + "8b1e37569559a4c0ce11b2c925ec24c0364a5b1f", + [ + null, + {} + ] + ], + "interestevent-dispatch-shadow.tentative.html": [ + "d96907ec84a439334f601d5002264a1f828a4160", + [ + null, + { + "testdriver": true + } + ] + ], + "interestevent-interface.tentative.html": [ + "ed7d82f1fb7df87ad802d3571ab13819e080be6d", + [ + null, + { + "testdriver": true + } + ] + ], + "interesttarget-anchor-event-dispatch.tentative.html": [ + "b5a481ae08fc9324a2c52cf0d6c395a82f4ded7d", + [ + null, + { + "testdriver": true + } + ] + ], + "interesttarget-area-event-dispatch.tentative.html": [ + "358acbb73ac3d607a1cd4563747d0e67fea602c6", + [ + null, + { + "testdriver": true + } + ] + ], + "interesttarget-button-event-dispatch.tentative.html": [ + "69126dbe14b01c6328337a0b6f04b779413244f4", + [ + null, + { + "testdriver": true + } + ] + ], + "interesttarget-on-popover-behavior.tentative.html": [ + "b930fc645dd413e40ab6c6f8e0288527ee27e749", + [ + null, + { + "testdriver": true + } + ] + ], + "interesttarget-svg-a-event-dispatch.tentative.html": [ + "7fb4b1c19d681901c9ab2ec72397970a9c5b5d1c", + [ + null, + { + "testdriver": true + } + ] + ], "invokeelement-interface.tentative.html": [ - "b003daf20d4be5b9eac15b930d10ae2b859ec505", + "6821adf71fee0c0e84376d8c02f34d5556177c06", [ null, {} ] ], "invokeevent-dispatch-shadow.tentative.html": [ - "84337d57239b8696796c7073874316e917cd1c6c", + "fb2a113994f76270248ee106e2edd3c4727c9d1d", [ null, { @@ -659384,7 +682133,7 @@ ] ], "invokeevent-interface.tentative.html": [ - "82910b3d4418de12453d7ebbee762e3eb9724141", + "500c05f88a106a85f0aa43f24afe78b6ebfcc89a", [ null, { @@ -659393,34 +682142,87 @@ ] ], "invoketarget-button-event-dispatch.tentative.html": [ - "8d80cb445488124047f432652ca83a0d2a9995d3", + "c5dfe14f90b7f214299c4b41f12bd0dbc6f0537f", [ null, { - "testdriver": true + "testdriver": true, + "timeout": "long" } ] ], "invoketarget-fullscreen-behavior.tentative.html": [ - "b72020283e16de71ac573e7a1a9c9dd4962064c3", + "1210b8637deef9140ff27c20ca99e434358c8f93", [ null, { - "testdriver": true + "testdriver": true, + "timeout": "long" } ] ], "invoketarget-on-audio-behavior.tentative.html": [ - "f3abeae165aa267114e1acb523ddc5bb0a2bd1a1", + "309a91e2842dd17fee69746e949e91634feaf0fa", [ null, { - "testdriver": true + "testdriver": true, + "timeout": "long" + } + ] + ], + "invoketarget-on-audio-invalid-behavior.tentative.html": [ + "3e18478a52f31db16fb096fb0745017beab70815", + [ + null, + { + "testdriver": true, + "timeout": "long" } ] ], "invoketarget-on-details-behavior.tentative.html": [ - "c6735e261124452a7d623fc9b2cdf697cdee0780", + "4c4998cf9d860d4be9e325ff08631ff7dad314eb", + [ + null, + { + "testdriver": true, + "timeout": "long" + } + ] + ], + "invoketarget-on-details-invalid-behavior.tentative.html": [ + "3a4e86e9f2c901254942bba5d4ea302389151a0a", + [ + null, + { + "testdriver": true, + "timeout": "long" + } + ] + ], + "invoketarget-on-dialog-behavior.tentative.html": [ + "9cf1e530b3d17690039c8cb05e4ff878ef48b4a5", + [ + null, + { + "testdriver": true, + "timeout": "long" + } + ] + ], + "invoketarget-on-dialog-invalid-behavior.tentative.html": [ + "8ea5066dd7449f084202f26c8bb2442fff5617f5", + [ + null, + { + "testdriver": true, + "timeout": "long" + } + ] + ], + "invoketarget-on-input-number.tentative.html": [ + "643423131eba0a20147557626c2f32ff0d7ffda7", [ null, { @@ -659429,20 +682231,32 @@ ] ], "invoketarget-on-popover-behavior.tentative.html": [ - "03eba222855307009c4691a27002c6d2d13414cf", + "c974b6ff108b4ce08becd41a840bb3bc17022cfb", [ null, { - "testdriver": true + "testdriver": true, + "timeout": "long" + } + ] + ], + "invoketarget-on-popover-invalid-behavior.tentative.html": [ + "31442261f37de3b86c70cd5bed825322b88a1677", + [ + null, + { + "testdriver": true, + "timeout": "long" } ] ], "invoketarget-on-video-behavior.tentative.html": [ - "5bbcd83e72ef31a967f43833715906ef07c948c8", + "e395281ee31fd84db8885444c9ee04cdb118660b", [ null, { - "testdriver": true + "testdriver": true, + "timeout": "long" } ] ] @@ -659665,15 +682479,66 @@ } }, "permission-element": { - "no-end-tag-no-contents.html": [ - "5fcce1421b6cd2abed01ab95c381aa7d29708e98", + "bounded-css-properties.tentative.html": [ + "c0f0fe34542f4b6e7742a99f725985e14aa1e876", [ null, {} ] + ], + "bounded-sizes.tentative.html": [ + "357e4fe961aaf63653e9ecf7c59075ec647516b4", + [ + null, + {} + ] + ], + "display-css-property.tentative.html": [ + "7aa22ef4a2bee44968b4a960d49a789778c2868e", + [ + null, + {} + ] + ], + "invalid-css-properties.tentative.html": [ + "334280c83bdf9919626ddaf64adc522f2ca51f8d", + [ + null, + {} + ] + ], + "negative-offset-and-margin.tentative.html": [ + "7d6be1a3bc8a8e863af37e85497cecddb3ef6507", + [ + null, + {} + ] + ], + "no-end-tag-no-contents.tentative.html": [ + "bea3d7102caf7dc97122dee600373899e1ca414e", + [ + null, + {} + ] + ], + "no-focus.tentative.html": [ + "6e81a20962c26051aa0f1f6f9d458eb7d24fc88e", + [ + null, + { + "testdriver": true + } + ] ] }, "popovers": { + "button-type-reset-popovertarget.tentative.html": [ + "975eab0d66eabd7216c51a999d87a0cd145898b4", + [ + null, + {} + ] + ], "hide-other-popover-side-effects.html": [ "7cc95a95e907df3fc9eee30f45a4a46f38fc90dd", [ @@ -659681,6 +682546,15 @@ {} ] ], + "label-in-invoker.html": [ + "bf8ab9710dce07085b930b1a48a656a565703f3c", + [ + null, + { + "testdriver": true + } + ] + ], "light-dismiss-event-ordering.html": [ "be39050ac6bab9f149a30032f20f086378974b38", [ @@ -659691,7 +682565,7 @@ ] ], "popover-anchor-display-none.tentative.html": [ - "55a11fafdb5901ad2f409595107d1d8c587d4979", + "8db022b1262f84ff6e570d13ce0bf14fbcdd5d68", [ null, {} @@ -659721,7 +682595,7 @@ ] ], "popover-anchor-transition.tentative.tentative.html": [ - "ae2a3a8e4159c63fe9213a96969ec7dc24d90325", + "f6220f3c769b9224f0cd49d3491ae8f847e2ddcb", [ null, {} @@ -659738,7 +682612,7 @@ ] ], "popover-attribute-basic.html": [ - "13108949cb3c5e97f79245578e4af0871dfbf738", + "f13a05288c3e03acf219810022f623ba27793998", [ null, { @@ -659794,11 +682668,12 @@ ] ], "popover-focus-2.html": [ - "892e5fd68f77c5ea9524a1f72c2c9d6f125910cf", + "552c8d8206b7b682f422bc8a5e2017f66983d198", [ null, { - "testdriver": true + "testdriver": true, + "timeout": "long" } ] ], @@ -659812,7 +682687,7 @@ ] ], "popover-focus.html": [ - "230492022c045f20a4dad4dcb8a779930371429f", + "25a6c2da536355fb1ddffc4587b18acff3421c0a", [ null, { @@ -659821,6 +682696,15 @@ } ] ], + "popover-hover-crash-hang.tentative.html": [ + "60309398db0011227a89f4485f147d253358439f", + [ + null, + { + "testdriver": true + } + ] + ], "popover-hover-hide-hide.tentative.html": [ "57ca5723de562cc97b886e1410119596eefee313", [ @@ -659891,7 +682775,7 @@ ] ], "popover-light-dismiss-flat-tree-nested.html": [ - "68473174eda10590931dd17d7689bf914f09147e", + "ef3b35aea408e9c59f6d371ca83576268c34141c", [ null, { @@ -659900,7 +682784,7 @@ ] ], "popover-light-dismiss-flat-tree.html": [ - "26c8d7af4c1c18fc1cd0e1a5663dcd815537bc11", + "65008e28ef86e77021e4f8b7b02bf280ff0ff29d", [ null, { @@ -659908,6 +682792,16 @@ } ] ], + "popover-light-dismiss-hint.tentative.html": [ + "f07363115fba687ef97308fe515abf1c373497ab", + [ + null, + { + "testdriver": true, + "timeout": "long" + } + ] + ], "popover-light-dismiss-on-scroll.html": [ "382addadef1e046db9c1814c7e5104727525b616", [ @@ -659915,7 +682809,16 @@ {} ] ], - "popover-light-dismiss-with-anchor.tentative.tentative.html": [ + "popover-light-dismiss-scroll-within.html": [ + "053ea03ab3b990a8e857e1a8a21bba13cc46263a", + [ + null, + { + "testdriver": true + } + ] + ], + "popover-light-dismiss-with-anchor.tentative.html": [ "c4e545c4fb97133cf6ad74ed73e2ade827c3721b", [ null, @@ -659926,7 +682829,7 @@ ] ], "popover-light-dismiss.html": [ - "4a57276bce3cbb1c6bcb287d268af38e4ee19752", + "78b86745137d33f4938992724a5cdb94747b6fa8", [ null, { @@ -659951,6 +682854,22 @@ } ] ], + "popover-open-in-beforetoggle.html": [ + "1e22b73c686edbb5a879510c1b9e681fafbcb7b5", + [ + null, + { + "testdriver": true + } + ] + ], + "popover-open-overflow-display-2.html": [ + "f2388b7642e49f90bcc3ad79e51db40e1001c5f0", + [ + null, + {} + ] + ], "popover-overlay.html": [ "a607844aee4f59e2a8b96528bbfa380688a1bb34", [ @@ -659972,15 +682891,22 @@ {} ] ], + "popover-shadow-dom-anchor.tentative.html": [ + "7c87d2d0392828d05d27d7943ae1a4ce68cc3028", + [ + null, + {} + ] + ], "popover-shadow-dom.html": [ - "87293f1e3d56c22674e848eb2e926f1364ce9198", + "18ac500270c89096f2f6bf6192ab0fa2ea923855", [ null, {} ] ], "popover-shadowhost-focus.html": [ - "d5899d21bb00f9202d19f216a2623570b88be3a0", + "91ee547d4e3c4a0172512fbf993d83c82b26ac92", [ null, {} @@ -660035,8 +682961,35 @@ } ] ], + "popover-top-layer-nesting-anchor.tentative.html": [ + "4520ab05770404bb5e2a8492157dc502af6a1dd1", + [ + null, + { + "testdriver": true + } + ] + ], + "popover-top-layer-nesting-hints.tentative.html": [ + "4ec1f49bda9fbd2f61a1e0bc7a719de1143699e8", + [ + null, + { + "testdriver": true + } + ] + ], + "popover-top-layer-nesting.html": [ + "a0b3b60b72b55431ee86897fbe8970507950d905", + [ + null, + { + "testdriver": true + } + ] + ], "popover-types-with-hints.tentative.html": [ - "7a73efb50fc8e54926ffb4eb78c79f75413b1273", + "07f0e26fce71b922385d804e5ce5d56ac3af95b3", [ null, {} @@ -660049,6 +683002,13 @@ {} ] ], + "popovertarget-reflection.html": [ + "b4f99631abdad99748e716be15a4cc0d05931da6", + [ + null, + {} + ] + ], "togglePopover.html": [ "388617fccc1081c4edcf9ac607ef82e007592119", [ @@ -660236,7 +683196,7 @@ ] ], "integrity.html": [ - "1dd0dad470a319d1fe11e74e997441a7b6e6d0d8", + "7ee6452bccda9ed4a8fbc3ec72edd5fa8f4be87e", [ null, {} @@ -660378,47 +683338,6 @@ {} ] ], - "defer-script": { - "async-script-2.html": [ - "f7377d847adc04163e50c6a51294363b5a45de35", - [ - null, - {} - ] - ], - "async-script.html": [ - "90f657679f922b92f8ac3737b44660e1562defb6", - [ - "html/semantics/scripting-1/the-script-element/defer-script/async-script.html?default", - {} - ], - [ - "html/semantics/scripting-1/the-script-element/defer-script/async-script.html?reload", - {} - ] - ], - "defer-script-xml.xhtml": [ - "9d02ff39f517c8c5c68c94e3e56fe8e44f88ffd8", - [ - null, - {} - ] - ], - "defer-script.html": [ - "62c3a74014f080f056ae636cd38669a488f212ff", - [ - null, - {} - ] - ], - "document-write.html": [ - "63e251bae5c0a0274481c196c0a942e88e8a3f2d", - [ - null, - {} - ] - ] - }, "emptyish-script-elements.html": [ "37f4a87c95ea21fdadee85575ad24e7fed9fba55", [ @@ -661823,7 +684742,7 @@ ] ], "integrity.html": [ - "68a794b973359132e8e803bd75f115ffb872d3b5", + "0aa92d9fdcbc7625a54572f5c257313074afbe2c", [ null, {} @@ -661923,7 +684842,7 @@ ] ], "parse-error.html": [ - "68d3ef0a9ad3e6d033579c948faf5a8c2b23beb6", + "88fb23a00d963b97e789deb5750e8a6ad62b533a", [ null, {} @@ -662177,7 +685096,7 @@ ] ], "parse-error.html": [ - "68d3ef0a9ad3e6d033579c948faf5a8c2b23beb6", + "9d0e3284fec6e69476162c67f2aec81d2f5a3577", [ null, {} @@ -662578,21 +685497,21 @@ ] ], "choice-of-error-1.html": [ - "50933da2c1d56c1427edaea838bcb477b05951ca", + "3645279d61c942520fe50353f13d30bb83332da9", [ null, {} ] ], "choice-of-error-2.html": [ - "51adb09d11ada5391f93d931e990e9242afaa3ed", + "d40aaba8dfd423c4e1f2c3acb1a75c80215a4ccb", [ null, {} ] ], "choice-of-error-3.html": [ - "bc52119bfe4877bb7c779218fcbf14baf35954dd", + "2d74af864bac98ffaf3d18a75e0ba6deacadad84", [ null, {} @@ -662808,7 +685727,7 @@ ], "microtasks": { "basic.any.js": [ - "82cb3b215dbad2ce945e636e12e992054a30849f", + "4876e82b0db83cfce35ccbe552f9dd6f23a30c3a", [ "html/semantics/scripting-1/the-script-element/module/dynamic-import/microtasks/basic.any.html", { @@ -663069,21 +685988,21 @@ ] ], "error-type-1.html": [ - "2480a60d6d42a2f6e630c3c20a827621aeb3a256", + "0484b614ab0f50d35873b40b1c3b34f6088b639d", [ null, {} ] ], "error-type-2.html": [ - "673bf28ca2057b375b563b0b0eb53c553919157b", + "7303a838a5ee26cb0c3d8b1c6f8beacf73438b06", [ null, {} ] ], "error-type-3.html": [ - "8a16266f4cdf700b381c9e7dc1c0dbc39eee8377", + "f80f74cbe45f978c47b42df3934c9f9a38680737", [ null, {} @@ -663097,28 +686016,28 @@ ] ], "evaluation-error-1.html": [ - "3f2bb35f4e273e0a14e3f010d629761177e22a06", + "b12d178fb59604589765c95880f50acbfad38a21", [ null, {} ] ], "evaluation-error-2.html": [ - "4f2b3c5a745cd8d7bf907778d7bacefacd1effa1", + "a890ca64578c19d4b01d29534189cfb94bb4990b", [ null, {} ] ], "evaluation-error-3.html": [ - "9bfb5df2cf0eab603cdf8798f9b2d2660dfdebd2", + "4062bc8a3a3c3cd3252ba629a6c6ec43b78d0012", [ null, {} ] ], "evaluation-error-4.html": [ - "0b4b7d16622c452abcf4d70d40790c6bb437065c", + "256aea508e5c46781eba8452cd8d374ca0ec1b8f", [ null, {} @@ -663308,6 +686227,13 @@ } ] ], + "inline-async-inserted-execorder.html": [ + "0f51fd318b42233a113c16a2cb649f2880328c1e", + [ + null, + {} + ] + ], "inline-async-onload.html": [ "314abc98dc71cc42b81e6ba19086e65186665133", [ @@ -664136,6 +687062,13 @@ {} ] ], + "remove-src-attr-prepare-a-script.html": [ + "7caacb5917c921bac9083a41277e3dcd03075df8", + [ + null, + {} + ] + ], "script-charset-01.html": [ "c5ac0d0a62a048a55d091935cb6ea733e52a5b82", [ @@ -664690,7 +687623,7 @@ ] ], "readwrite-readonly.html": [ - "fb8a5b9ad70e0e0ffcc402c8ff662fbcda9da00b", + "ad579ccc0eaf382d359b791ceac47edf2f66740d", [ null, {} @@ -666529,14 +689462,14 @@ ] ], "unclosed-svg-script.html": [ - "e4048615072a828299f9222f94b9a01dcb2df4e8", + "ce7b89cb10e8382242a6fb75b2a5ba679e477809", [ null, {} ] ], "zero.html": [ - "9ff793ae7c6fb6504a64e7f4285b30b68972d0fe", + "28e4f5310b3999bc6abc1486d1900e98d927e1b7", [ null, {} @@ -669207,6 +692140,13 @@ null, {} ] + ], + "update-the-rendering-resize-autofocus.html": [ + "0df005f7a6c9e99fd7a64c0613c7e0c37728ce71", + [ + null, + {} + ] ] }, "events": { @@ -669287,7 +692227,7 @@ {} ] ], - "event-handler-onmove.html": [ + "event-handler-onmove-01.tentative.html": [ "e4454a20a15fa2ae20d4caf1574f0b97be7dbc45", [ null, @@ -669296,6 +692236,15 @@ } ] ], + "event-handler-onmove-02.tentative.html": [ + "a751f39d3091f96e85114d28798b83229bf22959", + [ + null, + { + "testdriver": true + } + ] + ], "event-handler-onresize.html": [ "0e44e7272f02513c6de0c5aecc96f09005ad7396", [ @@ -670043,7 +692992,7 @@ {} ] ], - "navigator-window-controls-overlay.html": [ + "navigator-window-controls-overlay.tentative.html": [ "9cff8d316340cdb29edb48405bf5441ab72a4cf1", [ null, @@ -670061,8 +693010,8 @@ {} ] ], - "navigator_user_agent.https.html": [ - "10b3dd22497aeda1cbd28e3ae53e67819d8ecde8", + "navigator_user_agent.https.tentative.html": [ + "3fbe3eaa62bd7e42b0c2cae0a6242bf319bf70fa", [ null, {} @@ -670377,7 +693326,16 @@ ] ], "roles-contextual.html": [ - "98ad07cd95f2566963c55e1fa7360f30c48ca0be", + "4edcc12e8f269c47f951b3c77027fcb733544bad", + [ + null, + { + "testdriver": true + } + ] + ], + "roles-contextual.tentative.html": [ + "0f918b24c700c31f399a015d7e0219c3e112640a", [ null, { @@ -670408,7 +693366,16 @@ ] ], "roles-generic.html": [ - "e6ff46b0662529fbb778e9bd47e0ba8d11733103", + "e64d88e3d010f1e1335d16e9f7dcaac0120dae22", + [ + null, + { + "testdriver": true + } + ] + ], + "roles-generic.tentative.html": [ + "09a39d2e635c5cfbb35a0a9786fbc139477dbd88", [ null, { @@ -670417,7 +693384,7 @@ ] ], "roles.html": [ - "7cfb2852c23ad89c415dbaf9b9c915314c34dc04", + "387acc260ddd694ef182b707aa9dbdb9f389e6d0", [ null, { @@ -670426,7 +693393,7 @@ ] ], "roles.tentative.html": [ - "a3eb850497eaeb2cf3f52da3ad20ab37d1e53735", + "3920f2cba9e339ac2a15d9ebe92c1615d7e59c92", [ null, { @@ -670435,7 +693402,7 @@ ] ], "table-roles.html": [ - "a81caa3d3f0f77ff76185be7e351c7ef76f2fe58", + "8f5033ea8115cb8382783f04ee928b01b3538fbd", [ null, { @@ -670937,6 +693904,13 @@ } ] ], + "dynamic-integrity.html": [ + "e4ac7b431b583d3d209c69c71ca2114cb02b0c2e", + [ + null, + {} + ] + ], "http-url-like-specifiers.sub.html": [ "ba5182354cbcdda4386eea7730701a45460c443c", [ @@ -670976,6 +693950,27 @@ ] ] }, + "no-referencing-script-integrity-valid.html": [ + "136fe23fdbc1f4bb00d80fbf3ccb0fed5b4c49bd", + [ + null, + {} + ] + ], + "no-referencing-script-integrity.html": [ + "32d902a5e3dda8bd04f5d63fe205331e63feb9cc", + [ + null, + {} + ] + ], + "nonimport-integrity.html": [ + "460ff10ff6f7d9be47b2b5302f4745a732787df8", + [ + null, + {} + ] + ], "not-as-classic-script.html": [ "5f97394e4408bc8db5624e5d0c6f1b2fa1b028dd", [ @@ -670989,6 +693984,13 @@ null, {} ] + ], + "static-integrity.html": [ + "c9aa68e774143b81ebdeb22a28031e175c37e32c", + [ + null, + {} + ] ] }, "inert": { @@ -671006,6 +694008,20 @@ {} ] ], + "inert-and-find-flat-tree.html": [ + "951497e2c0914a4587a2ffea7e92b3a289fa41bd", + [ + null, + {} + ] + ], + "inert-and-find.html": [ + "87555b0097e9ac98e2edaec0f0a07dd253e2a6e3", + [ + null, + {} + ] + ], "inert-canvas-fallback-content.html": [ "f22549b50377f17b3e03cb6c26c996122b7c8e2b", [ @@ -671028,7 +694044,7 @@ ] ], "inert-iframe-hittest.html": [ - "8d7facf17230d70350adf4cd54a32151e30fc11b", + "d6c3551e996e4ae727096f1bef82b5706fd5bc97", [ null, { @@ -671132,6 +694148,15 @@ } ] ], + "inert-with-fullscreen-element.html": [ + "e5ea4138a3a68438cfaa0916268857535b61e583", + [ + null, + { + "testdriver": true + } + ] + ], "inert-with-modal-dialog-001.html": [ "aa0c29c7339c437cab4e8e65adce41f6b4b3e669", [ @@ -671145,6 +694170,13 @@ null, {} ] + ], + "inert-with-modal-dialog-003.html": [ + "2984aa43628d65f62ed27a10ed1af466ba2e9f8d", + [ + null, + {} + ] ] }, "infrastructure": { @@ -671223,7 +694255,7 @@ ] ], "test_serialize.html": [ - "88a9ce5221dcf90ad7c064b6e135ba5e1b37da4f", + "59226db6e72b731cf0973a3c2c0fd75d950aefc3", [ null, {} @@ -671287,6 +694319,33 @@ {} ] ], + "user-prompt.html": [ + "adac0bc909b6ac7da1f1d6b4fd7d75190c4b45c4", + [ + "infrastructure/expected-fail/user-prompt.html?type=alert", + {} + ], + [ + "infrastructure/expected-fail/user-prompt.html?type=alert&wait", + {} + ], + [ + "infrastructure/expected-fail/user-prompt.html?type=confirm", + {} + ], + [ + "infrastructure/expected-fail/user-prompt.html?type=confirm&wait", + {} + ], + [ + "infrastructure/expected-fail/user-prompt.html?type=prompt", + {} + ], + [ + "infrastructure/expected-fail/user-prompt.html?type=prompt&wait", + {} + ] + ], "window-onload-test.html": [ "b0514bce045aa8c864209ec8cc929646bb4e30b9", [ @@ -671776,7 +694835,7 @@ ] ], "crossOrigin.sub.html": [ - "38b3610af655a10f580c7f1fdb4621e4354deb82", + "3f6f3a77f3a67a1c5f96b9117363582bda66f3cf", [ null, { @@ -671920,6 +694979,15 @@ } ] ], + "popup.html": [ + "62140d63814fe3f0c9a78415412e3e0393929f3c", + [ + null, + { + "testdriver": true + } + ] + ], "textEditCommands.html": [ "0bc533ecb035288d3094832b5641a538cd97c983", [ @@ -672083,6 +695151,15 @@ } ] ], + "minimize_restore_popup.html": [ + "99245083b5990341358ff461a039ad45dab0abee", + [ + null, + { + "testdriver": true + } + ] + ], "send_keys.html": [ "71ca4405f48dae89c820775a10f1d000866380d8", [ @@ -672110,13 +695187,6 @@ } ] ], - "test_win_open_with_interaction.html": [ - "055b17ab19ec08b3fb8e43ec743eff8c1325962a", - [ - null, - {} - ] - ], "virtual_authenticator.html": [ "04c14719d41f2b8143ab348269d35b3f90cbc457", [ @@ -672135,6 +695205,19 @@ {} ] ] + }, + "webdriver": { + "bidi": { + "subscription.html": [ + "056c2e5f77fb9593c0e8c9d9a09c5afc853856d9", + [ + null, + { + "testdriver": true + } + ] + ] + } } }, "input-device-capabilities": { @@ -672163,6 +695246,13 @@ ] }, "input-events": { + "contenteditable-insertfrompaste-type-inputevent-data.html": [ + "ab4cce7da302af708cf2c1c9862e8cc87b662cea", + [ + null, + {} + ] + ], "idlharness.window.js": [ "3a9a34837e88971c625aadfa378dd1386be8a7cd", [ @@ -672181,6 +695271,33 @@ } ] ], + "input-events-arrow-key-on-number-input-delete-document.html": [ + "20dad0da40a1cb431bd454645f7b480d0827517b", + [ + null, + { + "testdriver": true + } + ] + ], + "input-events-arrow-key-on-number-input-prevent-default.html": [ + "cc3984fe64dcbc926b1b317a3c6cbf0e77d2611b", + [ + null, + { + "testdriver": true + } + ] + ], + "input-events-arrow-key-on-number-input.html": [ + "75c594c2cbe517dd8f5df50f2fb723ee7acd207f", + [ + null, + { + "testdriver": true + } + ] + ], "input-events-cut-paste.html": [ "f2ca5a0a654f270d33d8662f4e8b25369cd98df7", [ @@ -672208,7 +695325,7 @@ ] ], "input-events-get-target-ranges-deleting-in-list-items.tentative.html": [ - "7c225cd051d59743ab45f7674a0e945fbc6a33ae", + "3572d227f00e7a607d9333e316adae1fca26587c", [ "input-events/input-events-get-target-ranges-deleting-in-list-items.tentative.html?Backspace,ol", { @@ -672333,8 +695450,35 @@ } ] ], + "input-events-spin-button-click-on-number-input-delete-document.html": [ + "1b179952ca446ea2e4c803d85a899c89c16ac486", + [ + null, + { + "testdriver": true + } + ] + ], + "input-events-spin-button-click-on-number-input-prevent-default.html": [ + "558000940c987e6d1c30d0899244e7ae26ae00b5", + [ + null, + { + "testdriver": true + } + ] + ], + "input-events-spin-button-click-on-number-input.html": [ + "e86be1798e475b425f2cd170599fb43541950a68", + [ + null, + { + "testdriver": true + } + ] + ], "input-events-typing.html": [ - "a894beea9bd381313b999e45abe0b4b8f61c804b", + "8a083dc9669dfc30fd7caa300515b5a04bc42073", [ null, { @@ -672350,6 +695494,13 @@ "testdriver": true } ] + ], + "textarea-insertfrompaste-type-inputevent-data.html": [ + "277e598238446fa7c5f66361fe9b86df28b9ee59", + [ + null, + {} + ] ] }, "installedapp": { @@ -672404,7 +695555,7 @@ ] ], "callback-cross-realm-report-exception.html": [ - "0bec720485dc6d570a252760db4397e78c300b65", + "7fa979167436b934ee04eb852d37706ed742ea13", [ null, {} @@ -672480,7 +695631,7 @@ {} ] ], - "explicit-root-different-document.tentative.html": [ + "explicit-root-different-document.html": [ "15c5e620d5beaadfaa0600049a9492be367d12b8", [ null, @@ -672624,7 +695775,7 @@ {} ] ], - "not-in-containing-block-chain.tentative.html": [ + "not-in-containing-block-chain.html": [ "4490d0b631ec2e9e95f8d63e1b51df28180d7e99", [ null, @@ -672778,6 +695929,13 @@ {} ] ], + "scroll-margin-iframe.html": [ + "1d63c65169b56f56161160feb833a1bbb4c68673", + [ + null, + {} + ] + ], "scroll-margin-nested-2.html": [ "32cfd1ba93639704fdb4f614e64da1b5ff93f371", [ @@ -672863,7 +696021,7 @@ ] ], "svg-container-element.html": [ - "e2b6ab5cb0787b681647624eb696100dc6ccf2f2", + "1c27acee514a3e197c21d2cea1a022fe3e294769", [ null, {} @@ -672967,6 +696125,13 @@ {} ] ], + "transform-animation.html": [ + "f27fac40940807b6566ea44de751a455ab794ae5", + [ + null, + {} + ] + ], "unclipped-root.html": [ "a59105e33e76bd37f55c9f2e00333881b7583f6c", [ @@ -672989,6 +696154,13 @@ {} ] ], + "box-reflect.html": [ + "41e072a587c9502c6ced30e80921ef6538a562c0", + [ + null, + {} + ] + ], "box-shadow.html": [ "765fa8b2d5e0846a498b04cd4c3bb0e52945f860", [ @@ -673095,6 +696267,13 @@ ] ] }, + "visibility-hidden.html": [ + "588a42e6ab82eeb5090905926018999b7c67db10", + [ + null, + {} + ] + ], "zero-area-element-hidden.html": [ "be57ac698314d1e2a93e0584065f2c90811418d8", [ @@ -674003,6 +697182,36 @@ ] ] }, + "language_detection": { + "canDetect.tentative.window.js": [ + "a69d1787fb802d78fde4a693ab094e956682b195", + [ + "language_detection/canDetect.tentative.window.html", + { + "script_metadata": [ + [ + "title", + "canDetect" + ] + ] + } + ] + ], + "detect-en.tentative.window.js": [ + "b4494d460d951eabcab4603d171db302dc0ec92d", + [ + "language_detection/detect-en.tentative.window.html", + { + "script_metadata": [ + [ + "title", + "Detect english" + ] + ] + } + ] + ] + }, "largest-contentful-paint": { "animated": { "observe-animated-image-gif.tentative.html": [ @@ -674055,6 +697264,13 @@ ] ] }, + "background-image-set-image.html": [ + "4dbb97c7f5eb918ef33ffa8f6a8bba1de779cc54", + [ + null, + {} + ] + ], "broken-image-icon.html": [ "be27e34e6ac9274276b26f239e7f69a168d2e849", [ @@ -674388,6 +697604,13 @@ {} ] ], + "resized-image-not-reconsidered.html": [ + "6e195b89f9ef5dfbfc126e3fe7170d00dc93376f", + [ + null, + {} + ] + ], "same-origin-redirects.html": [ "b5cf9da2d120d4e03852954057fc7171fad9901f", [ @@ -674416,6 +697639,27 @@ {} ] ], + "transparent-text-with-shadow.html": [ + "8231ed9ff115ca88fe59a0a3e4ebd3d14a678b70", + [ + null, + {} + ] + ], + "transparent-text-with-text-stroke.html": [ + "2c81ff8aad70d71e92340dcd9d5a1001533a7bd2", + [ + null, + {} + ] + ], + "transparent-text.html": [ + "9eb978ab5cd8316cc1ae4f116a96a2271a2e9c96", + [ + null, + {} + ] + ], "update-on-style-change.tentative.html": [ "dd34e61b0f6ffb9072608060a62f693e982cd5c1", [ @@ -675512,6 +698756,24 @@ } ] ], + "preload-fetchpriority.h2.window.js": [ + "480e70f1d9f29a6b00798859c584aba8bc6fc923", + [ + "loading/early-hints/preload-fetchpriority.h2.window.html", + { + "script_metadata": [ + [ + "script", + "/common/utils.js" + ], + [ + "script", + "resources/early-hints-helpers.sub.js" + ] + ] + } + ] + ], "preload-finished-before-final-response.h2.window.js": [ "c63239be1f59426b35760c26ef47453c9248c59b", [ @@ -675815,49 +699077,49 @@ ] ] }, - "preloader-css-import-no-quote.tentative.html": [ + "preloader-css-import-no-quote.html": [ "6b982ea2ce22595aa427e65f9ae204baf3ef9fc6", [ null, {} ] ], - "preloader-css-import-no-semicolon.tentative.html": [ + "preloader-css-import-no-semicolon.html": [ "ab81c82192a4c2d028d8a24476b312978b7be323", [ null, {} ] ], - "preloader-css-import-no-space.tentative.html": [ + "preloader-css-import-no-space.html": [ "9e83bebe573e572e86b71022fe635a340a66afcf", [ null, {} ] ], - "preloader-css-import-single-quote.tentative.html": [ + "preloader-css-import-single-quote.html": [ "83c6415765eb16647dcd1aee3ab9c5020d132098", [ null, {} ] ], - "preloader-css-import.tentative.html": [ + "preloader-css-import.html": [ "6e84e139832e8c83bf93896167774837ab02e22d", [ null, {} ] ], - "preloader-link-media.tentative.html": [ + "preloader-link-media.html": [ "93fc7d969fd75141189b4ce8499a270819520074", [ null, {} ] ], - "preloader-template.tentative.html": [ + "preloader-template.html": [ "e816309184844a6d46a20e1152c9efca80fe6f0b", [ null, @@ -675895,7 +699157,7 @@ ] ], "loaf-event-blocking-duration.html": [ - "daa5f64c39e3aa186b0ff26cb74847fa26dcfe10", + "ed31244a1d6dc1e186e89e11453e620aadf124f4", [ null, { @@ -675914,7 +699176,7 @@ ] ], "loaf-first-ui-event.html": [ - "807c9cfe017444bda4e67b0bef645c21bf5fc538", + "7e32010189023859a5a078e2faf88a0a329cd743", [ null, { @@ -675960,7 +699222,7 @@ ] ], "loaf-pause-duration.html": [ - "6894164fbfdf866edab63d8d0421ebc153180999", + "a4181239d47327557c7a1b56fa896ed1cc2d3ceb", [ null, { @@ -675968,6 +699230,26 @@ } ] ], + "loaf-pointer-without-render-iframe.html": [ + "1fb106403a10b0ca0c7f25ae19fd04a19000b710", + [ + null, + { + "testdriver": true, + "timeout": "long" + } + ] + ], + "loaf-pointer-without-render.html": [ + "f05cb218ba691ad4695af633b900dbbfe980f244", + [ + null, + { + "testdriver": true, + "timeout": "long" + } + ] + ], "loaf-popup.html": [ "3f9758953e96f8e7151bef1d11d05d62e1b59172", [ @@ -675987,7 +699269,7 @@ ] ], "loaf-script-block.html": [ - "1bfad63c82e1b0193c445fcb389c85641343b9a7", + "759b31f9a1a991830ae0ce9a0296483ccb3bb555", [ null, { @@ -675996,7 +699278,7 @@ ] ], "loaf-script-nested-callback.html": [ - "c1eb4adc89c21e2662f850f6b9811dca0728faac", + "8d1304fc802921b203996b5c6e7ada2ea85681ac", [ null, { @@ -676005,7 +699287,7 @@ ] ], "loaf-script-window-attribution.html": [ - "9602cdadd4b3b0e2c08f3ffe81b814042a6807a6", + "0b8f45bed02b2c88d0679410709dd37696724658", [ null, { @@ -676014,7 +699296,7 @@ ] ], "loaf-source-location-redirect.html": [ - "ba2478e6224501fbc9488365783e47e014914bda", + "6a2068523c3993c168c3a457a8de3faef18cd50b", [ null, { @@ -676023,7 +699305,7 @@ ] ], "loaf-source-location.html": [ - "41979105e5801eb18dc64eb22332d35ac1ef96c0", + "51e85656443b9d4325ac7f073611b162289507b8", [ null, { @@ -676032,7 +699314,7 @@ ] ], "loaf-stream-source-location.html": [ - "3b6b2b31608a915a28eff99f97114b678e341124", + "0fd30859d738dec410b9b8d20c0c9ba8c2f61294", [ null, { @@ -676075,7 +699357,7 @@ ] ], "loaf-ui-event-render-start.html": [ - "f8bcf340a422ad418d8ef457bc0ccc8d6609f057", + "01d50d47e98ab33fce9b0e3596216bef3d184cbd", [ null, { @@ -676500,6 +699782,13 @@ null, {} ] + ], + "mpadded-rendering-from-in-flow.html": [ + "3275b774f796a45a872d9362b4c552e76a4afe3f", + [ + null, + {} + ] ] }, "mrow": { @@ -676525,7 +699814,7 @@ ] ], "legacy-mstyle-attributes.html": [ - "2463c404765fe92e5925a38cba8f9c7fe0dec7d0", + "0b14ac5334b7dff99205f935b9f042a218111093", [ null, {} @@ -676545,8 +699834,15 @@ {} ] ], - "mrow-fallback.html": [ - "3f9d466148c66877e9fe4104f00d2963cbec0380", + "mrow-fallback-001.html": [ + "2675696b94ee6ba30a490fe800991fed1d007173", + [ + null, + {} + ] + ], + "mrow-fallback-002.html": [ + "8b181b95f336cc73e15cf14ffa58e7ffd230f803", [ null, {} @@ -676574,7 +699870,7 @@ ] ], "stretch-along-block-axis-001.html": [ - "31385f5388017078047481a3235c51a04e835dc8", + "477fa27ebe77f1dec3f708bc99c65e2829c1059a", [ null, {} @@ -676618,7 +699914,7 @@ ] ], "mo-axis-height-1.html": [ - "6de6284188772e9309437f43e2dbfdc0e8dd96f0", + "10ea4dcffc51c7b0f76a990709fa8141a80faf35", [ null, {} @@ -676632,7 +699928,14 @@ ] ], "mo-minsize-maxsize-001.html": [ - "3e7e5c9bcc8c94a13953db0e71e01d37efab7d9a", + "c07f64327a33e7eed8be81dfde82678b8d2bf256", + [ + null, + {} + ] + ], + "mo-no-vertical-adjustment-for-basic-binary-operators.html": [ + "a318a71ce5ed1a51fe36b4c81c0111a39dff29d5", [ null, {} @@ -676646,7 +699949,7 @@ ] ], "mo-stretch-properties-dynamic-001.html": [ - "5d447aa1d28cde8eb846c1047b201eb9b0a16088", + "1cb3c90bcb952840292cb6417328260951ea949b", [ null, {} @@ -676928,6 +700231,34 @@ "timeout": "long" } ] + ], + "size-and-position-of-stretchy-fences-with-default-font-001.html": [ + "a5eb267c617375727c5e4e754ae9beb343a6a3cf", + [ + null, + {} + ] + ], + "stretchy-largeop-with-default-font-1.html": [ + "9f37cddc398a3f9fc1e8c11cc806bb38a530971a", + [ + null, + {} + ] + ], + "stretchy-largeop-with-default-font-2.html": [ + "83f160a54ebd36090bb2aaa1ea91ee6c9d4d20dc", + [ + null, + {} + ] + ], + "stretchy-largeop-with-default-font-3.html": [ + "d588b9d4e074da3c17e2973bdcdd588167a9386f", + [ + null, + {} + ] ] }, "radicals": { @@ -676961,6 +700292,13 @@ {} ] ], + "scripts-rendering-from-in-flow.html": [ + "84099cad0906f74372ab67be73342c9ff6554cc0", + [ + null, + {} + ] + ], "subsup-1.html": [ "1117e1008e2fee7a896613de156a77c2f2081154", [ @@ -677161,6 +700499,15 @@ {} ] ] + }, + "tokens": { + "tokens-rendering-from-in-flow.html": [ + "e0435113be3da79b3c2cf8264c93e35678eb525c", + [ + null, + {} + ] + ] } }, "relations": { @@ -677260,6 +700607,13 @@ {} ] ], + "mathvariant-auto-selection.html": [ + "f915c44e4978f801ff530617fcfcc3a37ad100fa", + [ + null, + {} + ] + ], "multi-column-layout.html": [ "88db5047e941da6f2cf62f1b80476477a6d25827", [ @@ -677301,7 +700655,7 @@ ] ], "border-002.html": [ - "bfb7f76adc855477d822952509ee6be3a4e0054b", + "8d834256f2235e9cd517b0bffcc5564283d174f0", [ null, {} @@ -677315,14 +700669,14 @@ ] ], "margin-002.html": [ - "b560ed125c6cace793f50dbe5fc8906b18cd2b71", + "c43771b3a077a29f74b43022a379cdcc9da38ad4", [ null, {} ] ], "margin-003.html": [ - "3b6b2a38db818d27ec750fb1df153874cf0b8808", + "45235adcc40b98ecef5de3ab9f3d3499b5043828", [ null, {} @@ -677336,7 +700690,7 @@ ] ], "padding-002.html": [ - "89d3bdc7efe42db534df4aa290be33e2416c11fa", + "c0fb95dc52600bfecdf8b227a17abee84c9f4913", [ null, {} @@ -677365,7 +700719,7 @@ ] ], "width-height-004.html": [ - "7133573b04d82664d7c0885c0bca9bc7c745d50f", + "10ece249ca0b51d4b63c865703ee43b7f95eda30", [ null, {} @@ -677445,7 +700799,7 @@ {} ] ], - "href-click-3.html": [ + "href-click-003.tentative.html": [ "f6f1ada6d737e2530c1379bab64a82ec3a8d3a2e", [ null, @@ -677484,14 +700838,14 @@ } ] ], - "tabindex-001.html": [ + "tabindex-001.tentative.html": [ "3aaf0d955a3af60e4408299a06d23aa55bf98a9c", [ null, {} ] ], - "tabindex-002.html": [ + "tabindex-002.tentative.html": [ "d2144e3d01ae8cfcae2627a6a1528484c7c23cb4", [ null, @@ -677501,6 +700855,13 @@ } ] ], + "tabindex-focus-001.tentative.html": [ + "2ea0390eabd7ee3cb7e486be98618485e5051879", + [ + null, + {} + ] + ], "unique-identifier-2.html": [ "d4e69df324a6cf78c1dd5c0a2e216c0703cc1ed2", [ @@ -678684,7 +702045,14 @@ }, "mediacapture-extensions": { "GUM-backgroundBlur.https.html": [ - "605a4e0831914834ac4a5587bbdb7e87cde74e59", + "4fba3692f6a61030ed537e2ff6bd49e8901d2bab", + [ + null, + {} + ] + ], + "GUM-eyeGazeCorrection.https.html": [ + "3235b166d843eaf94296d22c4c6597f8733ba453", [ null, {} @@ -678697,8 +702065,18 @@ {} ] ], + "MediaStreamTrack-audio-stats.https.html": [ + "83a2376911d495541c5beaed75561afae10f7185", + [ + null, + { + "testdriver": true, + "timeout": "long" + } + ] + ], "MediaStreamTrack-video-stats.https.html": [ - "f1b6a2074a4468fca704a8e53a92f25bc13d3200", + "374a22c7caf347e628f9053b032d65a6ffc56fab", [ null, { @@ -678977,84 +702355,182 @@ ] }, "mediacapture-insertable-streams": { - "MediaStreamTrackGenerator-audio.https.html": [ - "c2f0bfc011f594bb8351f9bbec7e6db18166c5b9", + "MediaStreamTrackProcessor-backpressure.worker.js": [ + "9e03e650e0d7ecda53498632a8a1cff700c33bb7", [ - null, + "mediacapture-insertable-streams/MediaStreamTrackProcessor-backpressure.worker.html", { - "testdriver": true + "script_metadata": [ + [ + "title", + "MediaStreamTrackProcessor backpressure tests." + ] + ] } ] ], - "MediaStreamTrackGenerator-in-service-worker.https.html": [ - "389a30d0d940e12bda9f520886d2dbed68532bd0", - [ - null, - {} - ] - ], - "MediaStreamTrackGenerator-in-shared-worker.https.html": [ - "deecfccad16f5df61028b9fc65e0e65e5f825e64", + "MediaStreamTrackProcessor-maxBufferSize.worker.js": [ + "3c64e590c44728b75a68c852ee9967a3da36ceef", [ - null, - {} + "mediacapture-insertable-streams/MediaStreamTrackProcessor-maxBufferSize.worker.html", + { + "script_metadata": [ + [ + "title", + "MediaStreamTrackProcessor maxBufferSize" + ] + ] + } ] ], - "MediaStreamTrackGenerator-in-worker.https.html": [ - "e0a8f2fc2792e2f0d0ca2b45735ae2d7a207e779", + "MediaStreamTrackProcessor-with-window-tracks.https.html": [ + "7d6b2c243a53de3f90c7718a298052450447af87", [ null, - {} + { + "testdriver": true + } ] ], - "MediaStreamTrackGenerator-pipes-data-in-worker.https.html": [ - "61a6f038c4b6c480053f39990bdcce1543dc9c76", + "MediaStreamTrackProcessor.worker.js": [ + "000078c1d3d974ddd36636cc61ab888e01cf0cf8", [ - null, - {} + "mediacapture-insertable-streams/MediaStreamTrackProcessor.worker.html", + { + "script_metadata": [ + [ + "title", + "MediaStreamTrackProcessor tests." + ] + ] + } ] ], - "MediaStreamTrackGenerator-video.https.html": [ - "a6f73f009c6d754d5f355e6492eb1623ab12591f", + "VideoTrackGenerator-with-window-tracks.https.html": [ + "36fc4135e23443c404c8255fbae1132effa9100d", [ null, {} ] ], - "MediaStreamTrackProcessor-audio.https.html": [ - "449b4833a2ad0cab8f5a6c2da1d0f703cdc48b53", + "VideoTrackGenerator.worker.js": [ + "37caf1a37f254a6d0a0f0f10c6884ebc044e0fb4", [ - null, + "mediacapture-insertable-streams/VideoTrackGenerator.worker.html", { - "testdriver": true + "script_metadata": [ + [ + "title", + "VideoTrackGenerator tests." + ] + ] } ] ], - "MediaStreamTrackProcessor-backpressure.https.html": [ - "7b4f88e944fb277d2673f6a477cd0431b808939e", + "idlharness.any.js": [ + "594753cc1abcfd48947aa9418d6702d658a0458b", [ - null, + "mediacapture-insertable-streams/idlharness.any.worker.html", { - "testdriver": true + "script_metadata": [ + [ + "global", + "dedicatedworker" + ], + [ + "script", + "/resources/WebIDLParser.js" + ], + [ + "script", + "/resources/idlharness.js" + ] + ] } ] ], - "MediaStreamTrackProcessor-video.https.html": [ - "4182505ada8eff37404f8317da3a6ee64336208b", - [ - null, - { - "testdriver": true - } + "legacy": { + "MediaStreamTrackGenerator-audio.https.html": [ + "83a4f21b4ac49f339a6694cec2ce893aa3844f6c", + [ + null, + { + "testdriver": true + } + ] + ], + "MediaStreamTrackGenerator-in-service-worker.https.html": [ + "389a30d0d940e12bda9f520886d2dbed68532bd0", + [ + null, + {} + ] + ], + "MediaStreamTrackGenerator-in-shared-worker.https.html": [ + "deecfccad16f5df61028b9fc65e0e65e5f825e64", + [ + null, + {} + ] + ], + "MediaStreamTrackGenerator-in-worker.https.html": [ + "e0a8f2fc2792e2f0d0ca2b45735ae2d7a207e779", + [ + null, + {} + ] + ], + "MediaStreamTrackGenerator-pipes-data-in-worker.https.html": [ + "61a6f038c4b6c480053f39990bdcce1543dc9c76", + [ + null, + {} + ] + ], + "MediaStreamTrackGenerator-video.https.html": [ + "a6f73f009c6d754d5f355e6492eb1623ab12591f", + [ + null, + {} + ] + ], + "MediaStreamTrackProcessor-backpressure.https.html": [ + "7b4f88e944fb277d2673f6a477cd0431b808939e", + [ + null, + { + "testdriver": true + } + ] + ], + "MediaStreamTrackProcessor-video.https.html": [ + "9f6043ee482f84bbbe0a57569e15f2fa1f2cadb1", + [ + null, + { + "testdriver": true + } + ] ] - ], - "VideoTrackGenerator.https.html": [ - "2c81c7604ab4362e5f2eeb018ece5f0147818dba", - [ - null, - {} + }, + "tentative": { + "MediaStreamTrackProcessor-audio.https.html": [ + "7ab7f2a5251438c78b6c1201b637af5794b5b873", + [ + null, + { + "testdriver": true + } + ] + ], + "VideoTrackGenerator.https.html": [ + "855ebb764a7bb1bae377dd1b1df55e5337b2a771", + [ + null, + {} + ] ] - ] + } }, "mediacapture-record": { "BlobEvent-constructor.html": [ @@ -679074,9 +702550,65 @@ ] ], "MediaRecorder-canvas-media-source.https.html": [ - "187015f42e64b911ac32145324a48f8b9d6763e2", + "c2758914ac1692f2b313cf0abcc38ce364b89f9d", [ - null, + "mediacapture-record/MediaRecorder-canvas-media-source.https.html?mimeType=''", + { + "testdriver": true, + "timeout": "long" + } + ], + [ + "mediacapture-record/MediaRecorder-canvas-media-source.https.html?mimeType=video/mp4", + { + "testdriver": true, + "timeout": "long" + } + ], + [ + "mediacapture-record/MediaRecorder-canvas-media-source.https.html?mimeType=video/mp4;codecs=av01,mp4a.40.2", + { + "testdriver": true, + "timeout": "long" + } + ], + [ + "mediacapture-record/MediaRecorder-canvas-media-source.https.html?mimeType=video/mp4;codecs=av01,opus", + { + "testdriver": true, + "timeout": "long" + } + ], + [ + "mediacapture-record/MediaRecorder-canvas-media-source.https.html?mimeType=video/mp4;codecs=avc1,mp4a.40.2", + { + "testdriver": true, + "timeout": "long" + } + ], + [ + "mediacapture-record/MediaRecorder-canvas-media-source.https.html?mimeType=video/mp4;codecs=vp9,opus", + { + "testdriver": true, + "timeout": "long" + } + ], + [ + "mediacapture-record/MediaRecorder-canvas-media-source.https.html?mimeType=video/webm;codecs=av1,opus", + { + "testdriver": true, + "timeout": "long" + } + ], + [ + "mediacapture-record/MediaRecorder-canvas-media-source.https.html?mimeType=video/webm;codecs=vp8,opus", + { + "testdriver": true, + "timeout": "long" + } + ], + [ + "mediacapture-record/MediaRecorder-canvas-media-source.https.html?mimeType=video/webm;codecs=vp9,opus", { "testdriver": true, "timeout": "long" @@ -679123,24 +702655,136 @@ ] ], "MediaRecorder-events-and-exceptions.html": [ - "0a377991ba0f875fe47975f30a193af60baf5092", + "a8d596e522e1a17fb8b1eb37340fcf1f85ed4c6e", [ - null, - {} + "mediacapture-record/MediaRecorder-events-and-exceptions.html?mimeType=''", + { + "timeout": "long" + } + ], + [ + "mediacapture-record/MediaRecorder-events-and-exceptions.html?mimeType=video/mp4", + { + "timeout": "long" + } + ], + [ + "mediacapture-record/MediaRecorder-events-and-exceptions.html?mimeType=video/mp4;codecs=av01,mp4a.40.2", + { + "timeout": "long" + } + ], + [ + "mediacapture-record/MediaRecorder-events-and-exceptions.html?mimeType=video/mp4;codecs=av01,opus", + { + "timeout": "long" + } + ], + [ + "mediacapture-record/MediaRecorder-events-and-exceptions.html?mimeType=video/mp4;codecs=avc1,mp4a.40.2", + { + "timeout": "long" + } + ], + [ + "mediacapture-record/MediaRecorder-events-and-exceptions.html?mimeType=video/mp4;codecs=vp9,opus", + { + "timeout": "long" + } + ], + [ + "mediacapture-record/MediaRecorder-events-and-exceptions.html?mimeType=video/webm;codecs=av1,opus", + { + "timeout": "long" + } + ], + [ + "mediacapture-record/MediaRecorder-events-and-exceptions.html?mimeType=video/webm;codecs=vp8,opus", + { + "timeout": "long" + } + ], + [ + "mediacapture-record/MediaRecorder-events-and-exceptions.html?mimeType=video/webm;codecs=vp9,opus", + { + "timeout": "long" + } ] ], "MediaRecorder-mimetype.html": [ - "994792790a20ef9fd44eb8a3336f5829965cb76d", + "57baa1346f172ec766256969b17f8e44197d856f", [ null, {} ] ], "MediaRecorder-pause-resume.html": [ - "84efe52e06b7788d71bc44fbec7c9963216f2734", + "ce5a880ebf059ea5104aaf16715c93b71232a5c1", [ - null, - {} + "mediacapture-record/MediaRecorder-pause-resume.html?mimeType=''", + { + "timeout": "long" + } + ], + [ + "mediacapture-record/MediaRecorder-pause-resume.html?mimeType=video/mp4", + { + "timeout": "long" + } + ], + [ + "mediacapture-record/MediaRecorder-pause-resume.html?mimeType=video/mp4;codecs=av01,mp4a.40.2", + { + "timeout": "long" + } + ], + [ + "mediacapture-record/MediaRecorder-pause-resume.html?mimeType=video/mp4;codecs=av01,opus", + { + "timeout": "long" + } + ], + [ + "mediacapture-record/MediaRecorder-pause-resume.html?mimeType=video/mp4;codecs=avc1,mp4a.40.2", + { + "timeout": "long" + } + ], + [ + "mediacapture-record/MediaRecorder-pause-resume.html?mimeType=video/mp4;codecs=avc1,opus", + { + "timeout": "long" + } + ], + [ + "mediacapture-record/MediaRecorder-pause-resume.html?mimeType=video/mp4;codecs=vp9,mp4a.40.2", + { + "timeout": "long" + } + ], + [ + "mediacapture-record/MediaRecorder-pause-resume.html?mimeType=video/mp4;codecs=vp9,opus", + { + "timeout": "long" + } + ], + [ + "mediacapture-record/MediaRecorder-pause-resume.html?mimeType=video/webm;codecs=av1,opus", + { + "timeout": "long" + } + ], + [ + "mediacapture-record/MediaRecorder-pause-resume.html?mimeType=video/webm;codecs=vp8,opus", + { + "timeout": "long" + } + ], + [ + "mediacapture-record/MediaRecorder-pause-resume.html?mimeType=video/webm;codecs=vp9,opus", + { + "timeout": "long" + } ] ], "MediaRecorder-peerconnection-no-sink.https.html": [ @@ -679154,9 +702798,107 @@ ] ], "MediaRecorder-peerconnection.https.html": [ - "9d74ab59388c66102767795bece4b32285e2b11f", + "8c90ffb94ffe49124ec4f505813dbe5d575045bd", [ - null, + "mediacapture-record/MediaRecorder-peerconnection.https.html?kinds=audio&mimeType=''", + { + "testdriver": true, + "timeout": "long" + } + ], + [ + "mediacapture-record/MediaRecorder-peerconnection.https.html?kinds=audio&mimeType=audio/mp4;codecs=opus", + { + "testdriver": true, + "timeout": "long" + } + ], + [ + "mediacapture-record/MediaRecorder-peerconnection.https.html?kinds=audio&mimeType=audio/webm;codecs=opus", + { + "testdriver": true, + "timeout": "long" + } + ], + [ + "mediacapture-record/MediaRecorder-peerconnection.https.html?kinds=video&mimeType=''", + { + "testdriver": true, + "timeout": "long" + } + ], + [ + "mediacapture-record/MediaRecorder-peerconnection.https.html?kinds=video&mimeType=video/mp4;codecs=vp9", + { + "testdriver": true, + "timeout": "long" + } + ], + [ + "mediacapture-record/MediaRecorder-peerconnection.https.html?kinds=video&mimeType=video/webm;codecs=vp8", + { + "testdriver": true, + "timeout": "long" + } + ], + [ + "mediacapture-record/MediaRecorder-peerconnection.https.html?kinds=video&mimeType=video/webm;codecs=vp9", + { + "testdriver": true, + "timeout": "long" + } + ], + [ + "mediacapture-record/MediaRecorder-peerconnection.https.html?kinds=video,audio&mimeType=''", + { + "testdriver": true, + "timeout": "long" + } + ], + [ + "mediacapture-record/MediaRecorder-peerconnection.https.html?kinds=video,audio&mimeType=video/mp4", + { + "testdriver": true, + "timeout": "long" + } + ], + [ + "mediacapture-record/MediaRecorder-peerconnection.https.html?kinds=video,audio&mimeType=video/mp4;codecs=av01,mp4a.40.2", + { + "testdriver": true, + "timeout": "long" + } + ], + [ + "mediacapture-record/MediaRecorder-peerconnection.https.html?kinds=video,audio&mimeType=video/mp4;codecs=av01,opus", + { + "testdriver": true, + "timeout": "long" + } + ], + [ + "mediacapture-record/MediaRecorder-peerconnection.https.html?kinds=video,audio&mimeType=video/mp4;codecs=avc1,mp4a.40.2", + { + "testdriver": true, + "timeout": "long" + } + ], + [ + "mediacapture-record/MediaRecorder-peerconnection.https.html?kinds=video,audio&mimeType=video/mp4;codecs=vp9,opus", + { + "testdriver": true, + "timeout": "long" + } + ], + [ + "mediacapture-record/MediaRecorder-peerconnection.https.html?kinds=video,audio&mimeType=video/webm;codecs=vp8,opus", + { + "testdriver": true, + "timeout": "long" + } + ], + [ + "mediacapture-record/MediaRecorder-peerconnection.https.html?kinds=video,audio&mimeType=video/webm;codecs=vp9,opus", { "testdriver": true, "timeout": "long" @@ -679164,16 +702906,48 @@ ] ], "MediaRecorder-start.html": [ - "ef2fe69719eb9d82b61e94529bf7fb2e5204d13b", + "4e3c252e8d1c31b82c466b79a26ba38804dc0831", [ null, {} ] ], "MediaRecorder-stop.html": [ - "2b49a4cb6c4796e8645dd2d49e97702c9761da44", + "e6694631441840191c2b3807b6718f7e80947888", [ - null, + "mediacapture-record/MediaRecorder-stop.html?mimeType=''", + {} + ], + [ + "mediacapture-record/MediaRecorder-stop.html?mimeType=video/mp4", + {} + ], + [ + "mediacapture-record/MediaRecorder-stop.html?mimeType=video/mp4;codecs=av01,mp4a.40.2", + {} + ], + [ + "mediacapture-record/MediaRecorder-stop.html?mimeType=video/mp4;codecs=av01,opus", + {} + ], + [ + "mediacapture-record/MediaRecorder-stop.html?mimeType=video/mp4;codecs=avc1,mp4a.40.2", + {} + ], + [ + "mediacapture-record/MediaRecorder-stop.html?mimeType=video/mp4;codecs=vp9,opus", + {} + ], + [ + "mediacapture-record/MediaRecorder-stop.html?mimeType=video/webm;codecs=av1,opus", + {} + ], + [ + "mediacapture-record/MediaRecorder-stop.html?mimeType=video/webm;codecs=vp8,opus", + {} + ], + [ + "mediacapture-record/MediaRecorder-stop.html?mimeType=video/webm;codecs=vp9,opus", {} ] ], @@ -679224,6 +702998,24 @@ ] }, "mediacapture-streams": { + "BrowserCaptureMediaStreamTrack-cropTo.https.html": [ + "f84029433f696e4612fbdfade505e79b6eaeddf9", + [ + null, + { + "testdriver": true + } + ] + ], + "BrowserCaptureMediaStreamTrack-restrictTo.https.html": [ + "4b0da740bdf72a94b639c60f3732ce7b51e28792", + [ + null, + { + "testdriver": true + } + ] + ], "GUM-api.https.html": [ "148317017692e935a936eb007ed90fd9ceb29825", [ @@ -679266,7 +703058,7 @@ ] ], "GUM-non-applicable-constraint.https.html": [ - "3e9481bfa445cfb77556bfe4b63c74faeb9298b8", + "e9fd6665dcface83218869a0a0fd1284c12f924f", [ null, { @@ -679283,6 +703075,15 @@ } ] ], + "GUM-permissions-query.https.html": [ + "877b901705dc37f7c9ab5c295e886619b395d015", + [ + null, + { + "testdriver": true + } + ] + ], "GUM-required-constraint-with-ideal-value.https.html": [ "7f234c5c7448e940c85079fd552a008d4431ef12", [ @@ -679377,7 +703178,7 @@ ] ], "MediaDevices-getSupportedConstraints.https.html": [ - "453184a16919a63ea72068538bca4f7c038957cf", + "7d374b5336ea5c12d1bf6c6d65c1766ebd2b9347", [ null, {} @@ -679544,7 +703345,7 @@ ] ], "MediaStreamTrack-getCapabilities.https.html": [ - "b67a8d51561a3d2c33047780014d890c1c2682a4", + "7d600c0e1b97c905cbeb172d0aae0a33ed961c9e", [ null, { @@ -679553,7 +703354,7 @@ ] ], "MediaStreamTrack-getSettings.https.html": [ - "1bda4c748ac5a0c0711cc231710c18ed5afa7c25", + "3bae50c346dd3c83d15f37eca598b58838250c46", [ null, { @@ -679631,7 +703432,7 @@ ] ], "historical.https.html": [ - "84326cec0a61adafc27a2f07846b820a983d8d61", + "402bc9e957a53948811d33ef46a275626cede08a", [ null, {} @@ -679697,7 +703498,7 @@ ] ], "mediametadata.html": [ - "f87e71d969004ee575300fb2f914c8d122dddf48", + "8dcf7dc25c6fa460c94d7c91387e826d7464d980", [ null, {} @@ -679822,6 +703623,15 @@ } ] ] + }, + "sniffing": { + "html.window.js": [ + "3fef45bb4779561a92eaf432646c7344630a7b2b", + [ + "mimesniff/sniffing/html.window.html", + {} + ] + ] } }, "mixed-content": { @@ -681363,14 +705173,14 @@ ] ], "mixed-content-cors.https.sub.html": [ - "eb7b443df39bbca15767df3ad474a4375d5ab429", + "44dfa801537cac97a83aee40f5af5c60366a1fdc", [ null, {} ] ], "video-upgrade.https.sub.html": [ - "ea2d07309c06af5d56e5553ed7a3f9a9a80bca8f", + "d9ad3dda392f4c62b48d8be1f88c447860b5db9a", [ null, {} @@ -681924,7 +705734,7 @@ ] ], "event-constructor.html": [ - "863681ced730d1c3f441a6f8b21db7b890301d25", + "89ac934020eec9c7771b2fbd608a95e730b5d093", [ null, {} @@ -682001,7 +705811,7 @@ ] ], "intercept-history-pushState.html": [ - "aad08b742ef4aa8d4b7ad9e33ee9d611d447b262", + "4586b134f081e4dc690972dd42483f86571661c9", [ null, {} @@ -682071,14 +705881,14 @@ ] ], "navigate-anchor-cross-origin.html": [ - "62e5adb20ae88c33c3f76b527d98502d38db3a52", + "a69b78196ff288fb251a1393436e4714d7925701", [ null, {} ] ], "navigate-anchor-download-userInitiated.html": [ - "69181425292e758ac5bdccaec51b95f3670ecb71", + "17109a2ae82049bba0afbec4df059fe43150164d", [ null, { @@ -682087,28 +705897,28 @@ ] ], "navigate-anchor-download.html": [ - "d04245ec253ce0b9f56afa9fbc598730924ba40e", + "fbeeb69b9563f7246079242a31063e584e3e420a", [ null, {} ] ], "navigate-anchor-fragment.html": [ - "6443ccecd1d702cc1210857bd9c7013721d88fa6", + "69400c3d2f31f8df45dfef9062904035800c4ac5", [ null, {} ] ], "navigate-anchor-same-origin-cross-document.html": [ - "5a6dce7ec8bcc9b349494ff151428d219ee7bfc0", + "084993540a18dc90da1cd747de05fdcef6cc093a", [ null, {} ] ], "navigate-anchor-userInitiated.html": [ - "bb76e7a3fbe65121452fb39218f89c567bafac48", + "686d7ad6ee393e6ca5cc65193e35f7bdf8fda416", [ null, { @@ -682117,7 +705927,7 @@ ] ], "navigate-anchor-with-target.html": [ - "e4b897d82f3ddc62e64f9a7489969425338b29f9", + "de74239b3bee8b3cc0e7e27c899e8b620245d925", [ null, {} @@ -682138,35 +705948,35 @@ ] ], "navigate-destination-getState-back-forward.html": [ - "869fc1648157b25f296c69f8163a441a0101277b", + "b206981821b5441534f2c19b3f8076308ec3e0bf", [ null, {} ] ], "navigate-destination-getState-navigate.html": [ - "d19a16851453a0ea5f9b7ac72ea2bb9e70e98199", + "1e622f99117c192a0081cdf92e2d2b9605fa182c", [ null, {} ] ], "navigate-destination-getState-reload.html": [ - "ac6528ce7ef261ac087105f54d52d0ef381cb231", + "be33b8120da70a1269efeb6cef3beb2c8a9922a6", [ null, {} ] ], "navigate-form-get.html": [ - "7a71a1c3050a0cceca5ca0e9415a830ae8210356", + "59661a1caf77a5da1672bf0fb4ace357e970292a", [ null, {} ] ], "navigate-form-reload.html": [ - "217169053722c2b4c4ecdbaed4b9a8e263fbb97a", + "cdd3ade4ff2c54e889183a852bc4d42611e8e19f", [ null, {} @@ -682180,14 +705990,14 @@ ] ], "navigate-form-traverse.html": [ - "b9665c805665956fe57bf6640cb292be71f447f3", + "72b8dc36acb3a7d64f91cc59a261b971d0836312", [ null, {} ] ], "navigate-form-userInitiated.html": [ - "246e028a0dbf241f1667c380a0255396d13b1553", + "079f546771ff669f48c69bb8ead2932ceeb24324", [ null, { @@ -682196,28 +706006,28 @@ ] ], "navigate-form-with-target.html": [ - "4b1a8ce9d3a975f839f0af2a91e0a600a8ea827e", + "07418366a7644104ac31db6ef0bb881a7b499cd4", [ null, {} ] ], "navigate-form.html": [ - "653ef3b8eba65a79f631ac392c9cdf8b0ec77d9b", + "8cea889bec185a26797b8df559682a78cfe9b14b", [ null, {} ] ], "navigate-history-back-after-fragment.html": [ - "9da4ddcd50779229c550452987ce153671a4e093", + "4529fe25ac3b4f84410dad36a09a7dd5f0f4c036", [ null, {} ] ], "navigate-history-back-after-pushState.html": [ - "fdee41a312191455e0f7babdad75d281b6fc6755", + "06c3b89bbcf4141de35e8d65d002b798f3fea651", [ null, {} @@ -682231,7 +706041,7 @@ ] ], "navigate-history-back-cross-document.html": [ - "29c626a522145f5a26b050e9e97aeff4d213cad8", + "a34b20a5e539fae8437d112025e56b5924d182a8", [ null, {} @@ -682245,77 +706055,77 @@ ] ], "navigate-history-go-0.html": [ - "5508928e198dd9a4d88fe6ac3b50a99286c2e825", + "cd716bfafb1b4cc425ee0a387f590cc773340cd7", [ null, {} ] ], "navigate-history-pushState.html": [ - "5079b21078178175df99bdb1875889b9328fed34", + "f89288b6edf4685c24b974b34f2ae778efe7bb6c", [ null, {} ] ], "navigate-history-replaceState.html": [ - "444116a6324c361b6876f3370bbcf4f579c7f0f4", + "d18feb2bc1debbde82708d3442c46d387ca2394a", [ null, {} ] ], "navigate-iframe-location.html": [ - "1bd79188231b6ff973fe9e741f9d554be252bd72", + "c00a6e010db8e21cd5a01ec5972300792add9033", [ null, {} ] ], "navigate-location.html": [ - "a0ed4dc0aac5886cee3496a4aac007eaddaee46e", + "b1ce204a626a5ada1410426fcdbfd56e4337d628", [ null, {} ] ], "navigate-meta-refresh.html": [ - "d4d5b1c8e13927eaa3bbda1d973cc1413421c753", + "f64484c3055cbb2d761dd1a5cdc858f61d28d75d", [ null, {} ] ], "navigate-navigation-back-cross-document.html": [ - "084051539b8db3f50edb4e3037c9dd8882a6bbe6", + "de87fbbb800d1681c9d1b7ed925085dbac2ad7ba", [ null, {} ] ], "navigate-navigation-back-same-document-in-iframe.html": [ - "42c694e2905d73eb7ba92dc7a96c3c3152febf8e", + "3d810d2f1de5a8e2a3054465844a2edec7783901", [ null, {} ] ], "navigate-navigation-back-same-document.html": [ - "b08bbfcbf11430e3e5f6131e91fb8b90ea82a891", + "0f2faff7d7b06238d106b5f54210ab60d29c0cca", [ null, {} ] ], "navigate-navigation-navigate.html": [ - "c56af1b40df8fd0720f0114f687ef78fed88a074", + "5dd1892cc001a77ca24b530ca7c7bd8e017860d9", [ null, {} ] ], "navigate-svg-anchor-fragment.html": [ - "c6d210cccb1335983ba3df95788e1f7e7caa3dc8", + "647496fd5c6980e8a977317a40c5e7e0424573c5", [ null, {} @@ -682329,21 +706139,21 @@ ] ], "navigate-to-srcdoc.html": [ - "ea5c3f92168500ed6966dd1211447eb0bbcc7280", + "bb598d8b90292904fe669c6dd2414faa8460b586", [ null, {} ] ], "navigate-window-open-self.html": [ - "4e569b6d548f165cd7939b5e51d7da19957b0f69", + "1ef65ed82ba23a297e1a84eda5a200319e4db105", [ null, {} ] ], "navigate-window-open.html": [ - "42828308d7709e717402e126f7aebbf1d6e0896c", + "13cdefb5d3b559ec92a92d689d499727d02fac24", [ null, {} @@ -682929,6 +706739,21 @@ {} ] ], + "navigate-relative-url-utf8.html": [ + "22c723fd3bc28e316856b2eb034edce0e3d49afc", + [ + "navigation-api/navigation-methods/navigate-relative-url-utf8.html?encoding=utf8", + {} + ], + [ + "navigation-api/navigation-methods/navigate-relative-url-utf8.html?encoding=windows-1252", + {} + ], + [ + "navigation-api/navigation-methods/navigate-relative-url-utf8.html?encoding=x-cp1251", + {} + ] + ], "navigate-relative-url.html": [ "cc95d5e003826b0a309b647107a30d0054a01285", [ @@ -684889,6 +708714,32 @@ } ] ], + "fetch-url-resolve.https.window.js": [ + "4d2e9940cb8684be8aec056b393f2449b43e950c", + [ + "notifications/fetch-url-resolve.https.window.html", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ], + [ + "script", + "/service-workers/service-worker/resources/test-helpers.sub.js" + ], + [ + "script", + "resources/helpers.js" + ] + ] + } + ] + ], "getnotifications-across-processes.https.window.js": [ "ad0ecf27efd6b9856a4936386c2b303f6fc6df9b", [ @@ -684923,7 +708774,7 @@ ] ], "idlharness.https.any.js": [ - "e3afe2c21968b70b0a28208efdccffb93e048b8b", + "0f11638e592811dde251b40a5fa67be7e754ec08", [ "notifications/idlharness.https.any.html", { @@ -685001,18 +708852,47 @@ } ] ], - "instance.https.html": [ - "5ccc6cd1e3a8ea01161469fefdba562ab8eea84d", + "instance.https.window.js": [ + "ba7c103048fef2111875aafb8c82eb763073c661", [ - null, - {} + "notifications/instance.https.window.html", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ], + [ + "script", + "/service-workers/service-worker/resources/test-helpers.sub.js" + ], + [ + "script", + "resources/helpers.js" + ], + [ + "script", + "resources/custom-data.js" + ], + [ + "script", + "instance-checks.js" + ] + ] + } ] ], "lang.https.html": [ - "be1795c8c9e22ec87f501ce531cb7ee38f167a76", + "e01fc109af909a10c4c7fa65ac6a3acfcb0d768d", [ null, - {} + { + "testdriver": true + } ] ], "permission.html": [ @@ -685029,8 +708909,61 @@ {} ] ], + "registration-association.https.window.js": [ + "61be5f62cd7b565ff8659cfe672df3e380763f44", + [ + "notifications/registration-association.https.window.html", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ], + [ + "script", + "resources/helpers.js" + ] + ] + } + ] + ], + "shownotification-window.https.html": [ + "b21a5621df75d540379fe24d82734de521b0f82a", + [ + null, + { + "testdriver": true + } + ] + ], + "shownotification-without-permission.https.window.js": [ + "b09c0460fbd5ba19ef03a4c29d72c9d86eb1e9d0", + [ + "notifications/shownotification-without-permission.https.window.html", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ], + [ + "script", + "resources/helpers.js" + ] + ] + } + ] + ], "shownotification.https.window.js": [ - "4def327181560d4da76772a717660f8beb9df839", + "3875f5fdb48b4aeaf6992787be1785553d8cb843", [ "notifications/shownotification.https.window.html", { @@ -685043,6 +708976,10 @@ "script", "/resources/testdriver-vendor.js" ], + [ + "script", + "resources/helpers.js" + ], [ "script", "resources/custom-data.js" @@ -685050,6 +708987,13 @@ ] } ] + ], + "tag.https.html": [ + "99c61a71514cb055d036b21d9d7c11f1adc4e551", + [ + null, + {} + ] ] }, "old-tests": { @@ -685171,7 +709115,7 @@ }, "orientation-event": { "device-orientation-events-of-detached-documents.https.html": [ - "c7ad5ecaefe31d713e03a26a609bc7fcd9d4051a", + "f05be6d0d205db65f6acb13249402db7749dba20", [ null, { @@ -685180,7 +709124,7 @@ ] ], "device-orientation-events-unavailable-on-insecure-origins.html": [ - "571a388f64495e61b8f0eb846e03b226ce007d9f", + "6d2eee402f7e0650ade6ede2d08504cbcc52c207", [ null, { @@ -685213,7 +709157,7 @@ ], "motion": { "add-during-dispatch.https.html": [ - "3a895b9d0969ab1c8a77509ab29d2bd8071d372e", + "262715ce556515f0f2cec924281de8d7a0efbd2a", [ null, { @@ -685222,7 +709166,7 @@ ] ], "add-listener-from-callback.https.html": [ - "0803d7cc9bfa8951cbce39dad8c2b63ed713956b", + "1f8cca86b23d41c09ebd472688f7b17e4c5e1344", [ null, { @@ -685238,7 +709182,7 @@ ] ], "multiple-event-listeners.https.html": [ - "3b13d632ac8a3e4d240b8b4844054f0e9e84193c", + "f94c9d136eb310f1bf51d8d2677e374996ed538e", [ null, { @@ -685247,7 +709191,7 @@ ] ], "null-values.https.html": [ - "b6a2a1622fe003d6ea02d5ca4620bb95499f4157", + "f875afcd64dbae3b91208938cf35a5ffcf3f046a", [ null, { @@ -685263,7 +709207,7 @@ ] ], "page-visibility.https.html": [ - "ea67131151f1ed27b621558d413ce6656c022821", + "2925af93315275d878c6fb01551eb8aeb581f6e0", [ null, { @@ -685288,11 +709232,20 @@ ] } ] + ], + "rounding.https.html": [ + "846da79dfb545434290043b36bbf0c3fb447cf42", + [ + null, + { + "testdriver": true + } + ] ] }, "orientation": { "absolute-fallback.https.html": [ - "610b1b3c5643246ce8fcf004ddcb2e113aa8c761", + "27a430728e88a160063792b37c1a144a156ff63f", [ null, { @@ -685301,7 +709254,7 @@ ] ], "add-listener-from-callback.https.html": [ - "8f8cfa29c4f948cc926829a48d0d89516dbb26e5", + "7f664ab40070487bd9c433572deefdb919aa25e5", [ null, { @@ -685310,7 +709263,7 @@ ] ], "basic-operation-absolute.https.html": [ - "61fd218781df1b8f6103d1c63d7ab8027db42026", + "bebd69b952f5bad8534e167fe06c35f8841b1c60", [ null, { @@ -685319,7 +709272,7 @@ ] ], "basic-operation.https.html": [ - "45fe38006ea2bd68a472b2f1ea3cb4a1a0db7c71", + "c4d26e3744e39388ab8679fd0cf5ee9de68bb5e9", [ null, { @@ -685335,7 +709288,7 @@ ] ], "multiple-event-listeners.https.html": [ - "473b7f88284bb7ac9670e22aa1da079763c322ca", + "a32f9f3a1f68ecf61e99c6dabf486d21a4f80941", [ null, { @@ -685344,7 +709297,7 @@ ] ], "no-synchronous-events.https.html": [ - "e5d7621123ff5b7558ceb45df0a67b263775e1c9", + "97dccfbc31a1e9624fcb735102e58696b9fd6cd3", [ null, { @@ -685353,7 +709306,7 @@ ] ], "null-values.https.html": [ - "f9e4aa642052cb3d3d30605c0d97c073510cc555", + "9505e009542076ef39dc827da46176f7df7558df", [ null, { @@ -685369,7 +709322,7 @@ ] ], "page-visibility.https.html": [ - "37ca3681c9198a04b6d238d96bf2d15657961e21", + "bcb4beeb8ee5da418ba098634d6b7d13743455b6", [ null, { @@ -685395,8 +709348,17 @@ } ] ], + "rounding.https.html": [ + "89bfa1d53c3571064a5f802c787602ee73c60986", + [ + null, + { + "testdriver": true + } + ] + ], "updates.https.html": [ - "c84588d5985d4a327ce164826fd915bf54a52a8b", + "fe1811535b3b473336dbf90f65279511a6c93284", [ null, { @@ -686089,6 +710051,44 @@ ] ] }, + "partitioned-popins": { + "partitioned-popins.cookies.tentative.sub.https.window.js": [ + "d98e08a73969610e9eb3fbd878b2624c42520593", + [ + "partitioned-popins/partitioned-popins.cookies.tentative.sub.https.window.html", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ] + ] + } + ] + ], + "partitioned-popins.localStorage.tentative.sub.https.window.js": [ + "d8444604c9eb1d52da7111a33c9b009641b3d534", + [ + "partitioned-popins/partitioned-popins.localStorage.tentative.sub.https.window.html", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ] + ] + } + ] + ] + }, "payment-handler": { "can-make-payment-event-constructor.https.html": [ "6892f01aa95c805b04446e1eb0a867bb060761be", @@ -686343,7 +710343,7 @@ ] ], "updatewith-method.https.html": [ - "9a60fe7a4c0a6090f829f934331ef692429fd4e3", + "fffd3b3ec544c907a4354ffec2dd46505b8d4cf5", [ null, {} @@ -686367,7 +710367,7 @@ ] ], "historical.https.html": [ - "aa183a58cdb9fcaf206b826677524336a86ffbab", + "3e881d0122b4131944504215da33045cd92aab67", [ null, {} @@ -686426,15 +710426,24 @@ } ] ], + "payment-request-constructor-thcrash.https.html": [ + "b6003070851459a5c72218951fe47251cfec9dc6", + [ + null, + { + "timeout": "long" + } + ] + ], "payment-request-constructor.https.sub.html": [ - "c1ecc225838b3b663c40cef417ba081d9a2805ef", + "9b0ad06454f9330ba4115bff2990647b47adbd2d", [ null, {} ] ], "payment-request-ctor-currency-code-checks.https.sub.html": [ - "c608608c7ebdeaeeb2b223eb7d216b4708a2c00f", + "b4ca2a0c40b39b3c922343a9a74341b69a338459", [ null, {} @@ -686495,6 +710504,41 @@ {} ] ], + "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": [ "d3385b5468b8fc6cfd954df4e77c5959f8ceb32f", [ @@ -686532,7 +710576,7 @@ ] ], "show-method-optional-promise-rejects.https.html": [ - "4a41f28fc9be1612ec06a71b9fce641b1dfd688d", + "3b42965503922d88213409dc814300c05b3a672f", [ null, { @@ -686541,220 +710585,6 @@ ] ] }, - "pending-beacon": { - "pending_beacon-basic.tentative.https.window.js": [ - "c63ae4e39d8ee5bbec64140dee7fa2acd24ddead", - [ - "pending-beacon/pending_beacon-basic.tentative.https.window.html", - { - "script_metadata": [ - [ - "script", - "./resources/pending_beacon-helper.js" - ] - ] - } - ] - ], - "pending_beacon-basic.window.js": [ - "01b37547f7995f520e5d9582d0556d0b18b7cb22", - [ - "pending-beacon/pending_beacon-basic.window.html", - { - "script_metadata": [ - [ - "script", - "/resources/testharness.js" - ], - [ - "script", - "/resources/testharnessreport.js" - ] - ] - } - ] - ], - "pending_beacon-deactivate.tentative.https.window.js": [ - "74c0852adc322a7194ab0bc3aca83a358572d462", - [ - "pending-beacon/pending_beacon-deactivate.tentative.https.window.html", - { - "script_metadata": [ - [ - "script", - "./resources/pending_beacon-helper.js" - ] - ] - } - ] - ], - "pending_beacon-sendnow.tentative.https.window.js": [ - "00baccd0c1ab42c0dfa08def5f23ad6ba21eed9b", - [ - "pending-beacon/pending_beacon-sendnow.tentative.https.window.html", - { - "script_metadata": [ - [ - "script", - "/common/utils.js" - ], - [ - "script", - "./resources/pending_beacon-helper.js" - ] - ] - } - ] - ], - "pending_beacon-sendondiscard.tentative.https.window.js": [ - "55704388b7c6fe070bb9de3e7c44e165f2b434ea", - [ - "pending-beacon/pending_beacon-sendondiscard.tentative.https.window.html", - { - "script_metadata": [ - [ - "script", - "/resources/testharness.js" - ], - [ - "script", - "/resources/testharnessreport.js" - ], - [ - "script", - "/common/utils.js" - ], - [ - "script", - "./resources/pending_beacon-helper.js" - ] - ] - } - ] - ], - "pending_beacon-sendonhidden.tentative.https.window.js": [ - "8d7ff24e3f87d150cd7bdd5e5d2139aaa1128680", - [ - "pending-beacon/pending_beacon-sendonhidden.tentative.https.window.html", - { - "script_metadata": [ - [ - "script", - "/resources/testharness.js" - ], - [ - "script", - "/resources/testharnessreport.js" - ], - [ - "script", - "/common/dispatcher/dispatcher.js" - ], - [ - "script", - "/common/get-host-info.sub.js" - ], - [ - "script", - "/common/utils.js" - ], - [ - "script", - "/html/browsers/browsing-the-web/remote-context-helper/resources/remote-context-helper.js" - ], - [ - "script", - "/html/browsers/browsing-the-web/back-forward-cache/resources/rc-helper.js" - ], - [ - "script", - "./resources/pending_beacon-helper.js" - ] - ] - } - ] - ], - "pending_get_beacon-cors.tentative.https.window.js": [ - "10bb3a0bed7f4888aaab7c7f6551f4a9a447c60e", - [ - "pending-beacon/pending_get_beacon-cors.tentative.https.window.html", - { - "script_metadata": [ - [ - "script", - "/common/get-host-info.sub.js" - ], - [ - "script", - "/common/utils.js" - ], - [ - "script", - "./resources/pending_beacon-helper.js" - ] - ] - } - ] - ], - "pending_get_beacon-send.tentative.https.window.js": [ - "8c6e826af5b578b5893babb5e0ee90e37b37cc09", - [ - "pending-beacon/pending_get_beacon-send.tentative.https.window.html", - { - "script_metadata": [ - [ - "script", - "/common/utils.js" - ], - [ - "script", - "./resources/pending_beacon-helper.js" - ] - ] - } - ] - ], - "pending_post_beacon-cors.tentative.https.window.js": [ - "01511d22c1b7bc58cfd86ca3725b0514f292d058", - [ - "pending-beacon/pending_post_beacon-cors.tentative.https.window.html", - { - "script_metadata": [ - [ - "script", - "/common/get-host-info.sub.js" - ], - [ - "script", - "/common/utils.js" - ], - [ - "script", - "./resources/pending_beacon-helper.js" - ] - ] - } - ] - ], - "pending_post_beacon-sendwithdata.tentative.https.window.js": [ - "77e91479e8b990b2b8240dc3fd6853e4d25ab980", - [ - "pending-beacon/pending_post_beacon-sendwithdata.tentative.https.window.html", - { - "script_metadata": [ - [ - "script", - "/common/utils.js" - ], - [ - "script", - "./resources/pending_beacon-helper.js" - ] - ] - } - ] - ] - }, "performance-timeline": { "back-forward-cache-restoration.tentative.html": [ "c673e09cb461e094d5616b7a43154fe2cffb12bd", @@ -686994,8 +710824,31 @@ ] ], "not-restored-reasons": { + "abort-block-bfcache.window.js": [ + "e5dbb0f43c8dd3d447e7bfe455d4ae1ad7ae8e91", + [ + "performance-timeline/not-restored-reasons/abort-block-bfcache.window.html", + { + "script_metadata": [ + [ + "title", + "Aborting a parser should block bfcache" + ], + [ + "script", + "./test-helper.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } + ] + ], "performance-navigation-timing-attributes.tentative.window.js": [ - "2fabf45f351d983a1001d4e1ed6970e818c0c2b6", + "44495fa981b75209dbc869511b1c5561cd223722", [ "performance-timeline/not-restored-reasons/performance-navigation-timing-attributes.tentative.window.html", { @@ -687028,10 +710881,100 @@ "script", "/html/browsers/browsing-the-web/remote-context-helper/resources/remote-context-helper.js" ], - [ - "script", - "/websockets/constants.sub.js" - ], + [ + "script", + "/websockets/constants.sub.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } + ] + ], + "performance-navigation-timing-bfcache-reasons-stay.tentative.window.js": [ + "28dbc38575a3b26924ccf2e6bf452cbb100c041d", + [ + "performance-timeline/not-restored-reasons/performance-navigation-timing-bfcache-reasons-stay.tentative.window.html", + { + "script_metadata": [ + [ + "title", + "RemoteContextHelper navigation using BFCache" + ], + [ + "script", + "./test-helper.js" + ], + [ + "script", + "/common/dispatcher/dispatcher.js" + ], + [ + "script", + "/common/get-host-info.sub.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "/html/browsers/browsing-the-web/back-forward-cache/resources/rc-helper.js" + ], + [ + "script", + "/html/browsers/browsing-the-web/remote-context-helper/resources/remote-context-helper.js" + ], + [ + "script", + "/websockets/constants.sub.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } + ] + ], + "performance-navigation-timing-bfcache.tentative.window.js": [ + "bfb685451c36d6d42ee80cac2414950d4b9c6ae7", + [ + "performance-timeline/not-restored-reasons/performance-navigation-timing-bfcache.tentative.window.html", + { + "script_metadata": [ + [ + "title", + "RemoteContextHelper navigation using BFCache" + ], + [ + "script", + "./test-helper.js" + ], + [ + "script", + "/common/dispatcher/dispatcher.js" + ], + [ + "script", + "/common/get-host-info.sub.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "/html/browsers/browsing-the-web/back-forward-cache/resources/rc-helper.js" + ], + [ + "script", + "/html/browsers/browsing-the-web/remote-context-helper/resources/remote-context-helper.js" + ], [ "timeout", "long" @@ -687041,10 +710984,10 @@ } ] ], - "performance-navigation-timing-bfcache-reasons-stay.tentative.window.js": [ - "897a9900268076826b9c07d2b0051bb2c7404b0e", + "performance-navigation-timing-cross-origin-bfcache.tentative.window.js": [ + "2a313fe7b14334c4c04a387539d148ab7b0c25c8", [ - "performance-timeline/not-restored-reasons/performance-navigation-timing-bfcache-reasons-stay.tentative.window.html", + "performance-timeline/not-restored-reasons/performance-navigation-timing-cross-origin-bfcache.tentative.window.html", { "script_metadata": [ [ @@ -687088,15 +711031,15 @@ } ] ], - "performance-navigation-timing-bfcache.tentative.window.js": [ - "bfb685451c36d6d42ee80cac2414950d4b9c6ae7", + "performance-navigation-timing-fetch.tentative.window.js": [ + "c8f53a660fa9a144b21be7d009c4107d005d058c", [ - "performance-timeline/not-restored-reasons/performance-navigation-timing-bfcache.tentative.window.html", + "performance-timeline/not-restored-reasons/performance-navigation-timing-fetch.tentative.window.html", { "script_metadata": [ [ "title", - "RemoteContextHelper navigation using BFCache" + "Ensure that ongoing fetch upon entering bfcache blocks bfcache and recorded." ], [ "script", @@ -687131,10 +711074,10 @@ } ] ], - "performance-navigation-timing-cross-origin-bfcache.tentative.window.js": [ - "42769cf458b77020e8d0fb0218b19f109cf59663", + "performance-navigation-timing-iframes-without-attributes.tentative.window.js": [ + "cda0ac43944742fd3e0d06e9f69a5e0214d985a9", [ - "performance-timeline/not-restored-reasons/performance-navigation-timing-cross-origin-bfcache.tentative.window.html", + "performance-timeline/not-restored-reasons/performance-navigation-timing-iframes-without-attributes.tentative.window.html", { "script_metadata": [ [ @@ -687178,49 +711121,6 @@ } ] ], - "performance-navigation-timing-fetch.tentative.window.js": [ - "5cd35c7ba362e1a1b844fab38fe72e4991005192", - [ - "performance-timeline/not-restored-reasons/performance-navigation-timing-fetch.tentative.window.html", - { - "script_metadata": [ - [ - "title", - "Ensure that ongoing fetch upon entering bfcache blocks bfcache and recorded." - ], - [ - "script", - "./test-helper.js" - ], - [ - "script", - "/common/dispatcher/dispatcher.js" - ], - [ - "script", - "/common/get-host-info.sub.js" - ], - [ - "script", - "/common/utils.js" - ], - [ - "script", - "/html/browsers/browsing-the-web/back-forward-cache/resources/rc-helper.js" - ], - [ - "script", - "/html/browsers/browsing-the-web/remote-context-helper/resources/remote-context-helper.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ] - ], "performance-navigation-timing-lock.https.tentative.window.js": [ "46d8752f20d9674f64999c2693ae60855f07dc9b", [ @@ -687265,7 +711165,7 @@ ] ], "performance-navigation-timing-navigation-failure.tentative.window.js": [ - "4022e6e59f1c010207051697d0bf098143bfc309", + "faa7649bc33c3f481f205ba4c6b54ef3e9fd000f", [ "performance-timeline/not-restored-reasons/performance-navigation-timing-navigation-failure.tentative.window.html", { @@ -687312,7 +711212,7 @@ ] ], "performance-navigation-timing-not-bfcached.tentative.window.js": [ - "0dc1519d1bb1c05026029f5ff644738f74fcd744", + "1cf1d55d90f78abca7d8c55ffb1aacb8e13f2fa5", [ "performance-timeline/not-restored-reasons/performance-navigation-timing-not-bfcached.tentative.window.html", { @@ -687406,7 +711306,7 @@ ] ], "performance-navigation-timing-reload.tentative.window.js": [ - "58584390cd3dc5a2400e62c65df1cf5ce99fa6c6", + "1a8972778d287c51c73a0d9db9cc61c0160c4034", [ "performance-timeline/not-restored-reasons/performance-navigation-timing-reload.tentative.window.html", { @@ -687453,7 +711353,7 @@ ] ], "performance-navigation-timing-same-origin-bfcache.tentative.window.js": [ - "44b44a865c0e5aa7dfd5320f5407b1e74748ab97", + "89d66b070ed8c4fe89fde91a8e6aeb6135854b75", [ "performance-timeline/not-restored-reasons/performance-navigation-timing-same-origin-bfcache.tentative.window.html", { @@ -687500,7 +711400,7 @@ ] ], "performance-navigation-timing-same-origin-replace.tentative.window.js": [ - "c833db751390fbf43a73f49870c74377691c4b54", + "1162bfaf7600fdacfc3e0f7da147bc320d038a9d", [ "performance-timeline/not-restored-reasons/performance-navigation-timing-same-origin-replace.tentative.window.html", { @@ -688024,7 +711924,7 @@ }, "permissions": { "all-permissions.html": [ - "9ad014bc6e2c9785ce05bbeb364f286e07d168e3", + "76d45279b7ce5255593e4c568e816ad705fc4e97", [ null, {} @@ -688237,8 +712137,218 @@ } ] ], + "unload-allowed-embed.tentative.window.js": [ + "5bd745db1dec5e615b30606cca9767192d2cc251", + [ + "permissions-policy/experimental-features/unload-allowed-embed.tentative.window.html", + { + "script_metadata": [ + [ + "title", + "'unload' Policy : allowed in frames when allowed in main frame." + ], + [ + "script", + "/common/dispatcher/dispatcher.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "/html/browsers/browsing-the-web/remote-context-helper/resources/remote-context-helper.js" + ], + [ + "script", + "./resources/unload-helper.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } + ] + ], + "unload-allowed-frameset.tentative.window.js": [ + "fe4f55dbc75b5091be66fadce0d5a968c160d880", + [ + "permissions-policy/experimental-features/unload-allowed-frameset.tentative.window.html", + { + "script_metadata": [ + [ + "title", + "'unload' Policy : allowed in frames when allowed in main frame." + ], + [ + "script", + "/common/dispatcher/dispatcher.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "/html/browsers/browsing-the-web/remote-context-helper/resources/remote-context-helper.js" + ], + [ + "script", + "./resources/unload-helper.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } + ] + ], + "unload-allowed-object.tentative.window.js": [ + "376bb4cb1d06633a77df7b4c8248162455e3979b", + [ + "permissions-policy/experimental-features/unload-allowed-object.tentative.window.html", + { + "script_metadata": [ + [ + "title", + "'unload' Policy : allowed in frames when allowed in main frame." + ], + [ + "script", + "/common/dispatcher/dispatcher.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "/html/browsers/browsing-the-web/remote-context-helper/resources/remote-context-helper.js" + ], + [ + "script", + "./resources/unload-helper.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } + ] + ], + "unload-disallowed-embed.tentative.window.js": [ + "cfdb29bc51a15e2a05cc247a5f210ab80118dc90", + [ + "permissions-policy/experimental-features/unload-disallowed-embed.tentative.window.html", + { + "script_metadata": [ + [ + "title", + "'unload' Policy : disallowed in frames when disallowed in main frame." + ], + [ + "script", + "/common/dispatcher/dispatcher.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "/html/browsers/browsing-the-web/remote-context-helper/resources/remote-context-helper.js" + ], + [ + "script", + "./resources/unload-helper.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } + ] + ], + "unload-disallowed-frameset.tentative.window.js": [ + "e64c32a21a042fca693cb960c3e3957f61768230", + [ + "permissions-policy/experimental-features/unload-disallowed-frameset.tentative.window.html", + { + "script_metadata": [ + [ + "title", + "'unload' Policy : disallowed in frames when disallowed in main frame." + ], + [ + "script", + "/common/dispatcher/dispatcher.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "/html/browsers/browsing-the-web/remote-context-helper/resources/remote-context-helper.js" + ], + [ + "script", + "./resources/unload-helper.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } + ] + ], + "unload-disallowed-object.tentative.window.js": [ + "33c23239e6d6fd3f7f578295da93adcdd07d9941", + [ + "permissions-policy/experimental-features/unload-disallowed-object.tentative.window.html", + { + "script_metadata": [ + [ + "title", + "'unload' Policy : disallowed in frames when disallowed in main frame." + ], + [ + "script", + "/common/dispatcher/dispatcher.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "/html/browsers/browsing-the-web/remote-context-helper/resources/remote-context-helper.js" + ], + [ + "script", + "./resources/unload-helper.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } + ] + ], "unload-disallowed-subframe.tentative.window.js": [ - "b2fb19ae1295d5750c656834f37a2e7ab64b9f50", + "4d8ddbcd16e46aa09463bdcb38c2c40539279398", [ "permissions-policy/experimental-features/unload-disallowed-subframe.tentative.window.html", { @@ -688339,42 +712449,42 @@ ] ], "payment-allowed-by-permissions-policy-attribute-redirect-on-load.https.sub.html": [ - "b95deed7cef5ae9a82286543e6c1911c7bdaea4f", + "57ae4fbee45f99803ac186cd04c5e07f48ecc8fe", [ null, {} ] ], "payment-allowed-by-permissions-policy-attribute.https.sub.html": [ - "779e9d666c0a9f966c0e7ca4ee388c58a130eb21", + "3a7e11b03c7519e8e1468de741aeb10ef91a30bf", [ null, {} ] ], "payment-allowed-by-permissions-policy.https.sub.html": [ - "456626c350feaefdc92c227952bb95a62573a94b", + "38f681593d1ef6062dbca403dbcedc08b5522db6", [ null, {} ] ], "payment-default-permissions-policy.https.sub.html": [ - "da5fe80f66f0c27b8bac966ca72a27a96fb15a96", + "92a0f7e14f26f11218e53ec66fe77c6f56b65bf3", [ null, {} ] ], "payment-disabled-by-permissions-policy.https.sub.html": [ - "cc358a1c0f6623a1ddcfa5d6e2d86b8290e2d7b2", + "ca86e4450ec91fe9ee2641f3e2c1ca97a3301710", [ null, {} ] ], "payment-extension-allowed-by-permissions-policy-attribute.https.sub.html": [ - "ef36bf97f10496ca8dac24d5172957ecfb9883a6", + "ba6d033257fafc559fd8bea531ad5aa6e8938e36", [ null, {} @@ -688433,7 +712543,7 @@ ] ], "permissions-policy-frame-policy-timing.https.sub.html": [ - "5b2a4888631b62ccbea2843383debca911ef2dab", + "f3b3c9cbf88c8a412caac28afa01baa60fb1cfbb", [ null, {} @@ -689141,6 +713251,13 @@ {} ] ], + "exif-chunk.html": [ + "1cb0e2755e21703fde9a87648c4a843b5b65815a", + [ + null, + {} + ] + ], "trns-chunk.html": [ "3a24753382b20b4a1d5803ee64c730427dd62c54", [ @@ -689292,6 +713409,15 @@ "testdriver": true } ] + ], + "pointerevent_touch_target_after_pointerdown_target_removed.tentative.html": [ + "124133d25ccd199441847fe4f86509e745c6e79a", + [ + null, + { + "testdriver": true + } + ] ] }, "idlharness.https.window.js": [ @@ -689356,8 +713482,89 @@ ] ] }, + "persistentDeviceId": { + "get-persistendeviceid-from-pointer-event.tentative.html": [ + "294f36b5d3db1a0fd2648bbc30ae89d9edcec98e", + [ + null, + { + "testdriver": true + } + ] + ], + "pointer-event-has-persistentdeviceid-from-pointer-event-init.tentative.html": [ + "c3fc4270f6177c94ccd191a29d86b77a220f3577", + [ + null, + {} + ] + ] + }, + "pointer-events-none-skip-scroll-in-iframe.html": [ + "bf5c53566dfc3bca30c2bf36fb2d6b424ecdcaaf", + [ + null, + { + "testdriver": true + } + ] + ], + "pointer-events-none-skip-scroll-scrollbar.html": [ + "f3dc4d6c7b9194bba6c56ed8ad07950da3c261f6", + [ + null, + { + "testdriver": true + } + ] + ], + "pointer-events-none-skip-scroll-will-change-in-iframe.html": [ + "e05bb915fba8aabc19be4253dfe6a73b479dd90b", + [ + null, + { + "testdriver": true + } + ] + ], + "pointer-events-none-skip-scroll-will-change-scrollbar.html": [ + "3acf1527b7160c0da3ad8a9ff6974c7a74625faf", + [ + null, + { + "testdriver": true + } + ] + ], + "pointer-events-none-skip-scroll-will-change.html": [ + "1fc3a2fdd05824b60c4e21567d30b896f3f7fe24", + [ + null, + { + "testdriver": true + } + ] + ], + "pointer-events-none-skip-scroll.html": [ + "e69eaaf61b5ecfe2381ada2df4363dbe255d42e8", + [ + null, + { + "testdriver": true + } + ] + ], + "pointerevent-boundary-event-target-when-hover-generates-content-under-pointer.html": [ + "3cbed96c8675d01bfa9bf6a2c8f45dc099dbf8c1", + [ + null, + { + "testdriver": true + } + ] + ], "pointerevent_after_target_appended.html": [ - "5d73702aca8744888dc7f80614ccf19a11a755c8", + "a5cb82088e85a548159a8c0ab7700700fa10b4cd", [ "pointerevents/pointerevent_after_target_appended.html?mouse", { @@ -689399,7 +713606,7 @@ ] ], "pointerevent_after_target_removed.html": [ - "f1970e72efdc7260f47586830208e91281e55ffa", + "97a1a83fc874a780f63651d1d52589d2d0dbe22e", [ "pointerevents/pointerevent_after_target_removed.html?mouse", { @@ -689419,6 +713626,15 @@ } ] ], + "pointerevent_after_target_removed_from_slot.html": [ + "35955f86893826a9f6cac159f64c69914afb1b84", + [ + "pointerevents/pointerevent_after_target_removed_from_slot.html?mouse", + { + "testdriver": true + } + ] + ], "pointerevent_after_target_removed_interleaved.tentative.html": [ "ec6ffce9268e1636f5b878fd16361d2273212cb8", [ @@ -689440,40 +713656,64 @@ } ] ], - "pointerevent_attributes_hoverable_pointers.html": [ - "c8443d99ff31c2650aa10bbb079df72e4d866a71", + "pointerevent_attributes.html": [ + "13fb30f61e969b95c4c7193e5c8050c68ea0c040", [ - "pointerevents/pointerevent_attributes_hoverable_pointers.html?mouse", + "pointerevents/pointerevent_attributes.html?mouse", { "testdriver": true } ], [ - "pointerevents/pointerevent_attributes_hoverable_pointers.html?pen", + "pointerevents/pointerevent_attributes.html?mouse-nonstandard", { "testdriver": true } - ] - ], - "pointerevent_attributes_hoverable_rightbutton.html": [ - "9a449ed753dc28a449c757719db13d2f01764dfc", + ], [ - "pointerevents/pointerevent_attributes_hoverable_rightbutton.html?mouse", + "pointerevents/pointerevent_attributes.html?mouse-right", { "testdriver": true } ], [ - "pointerevents/pointerevent_attributes_hoverable_rightbutton.html?pen", + "pointerevents/pointerevent_attributes.html?mouse-right-nonstandard", { "testdriver": true } - ] - ], - "pointerevent_attributes_nohover_pointers.html": [ - "d501ae0afd45612f5bad13d08cdd7cb2646a38d9", + ], [ - null, + "pointerevents/pointerevent_attributes.html?pen", + { + "testdriver": true + } + ], + [ + "pointerevents/pointerevent_attributes.html?pen-nonstandard", + { + "testdriver": true + } + ], + [ + "pointerevents/pointerevent_attributes.html?pen-right", + { + "testdriver": true + } + ], + [ + "pointerevents/pointerevent_attributes.html?pen-right-nonstandard", + { + "testdriver": true + } + ], + [ + "pointerevents/pointerevent_attributes.html?touch", + { + "testdriver": true + } + ], + [ + "pointerevents/pointerevent_attributes.html?touch-nonstandard", { "testdriver": true } @@ -689560,6 +713800,15 @@ } ] ], + "pointerevent_capture_mouse_and_release_and_capture_again.html": [ + "d060338116c415b4aaf88aec07c5443b87e205da", + [ + null, + { + "testdriver": true + } + ] + ], "pointerevent_capture_suppressing_mouse.html": [ "0d7756335d1d9e7a5baf0a2f213963124d9850ef", [ @@ -689569,6 +713818,15 @@ } ] ], + "pointerevent_capture_touch_and_release_at_got_capture.html": [ + "095b67010d45db909e318207abe2bc1ca92f976f", + [ + null, + { + "testdriver": true + } + ] + ], "pointerevent_change-touch-action-onpointerdown_touch.html": [ "40dbbed72f437172bab73fde62ee487b6150b10d", [ @@ -689579,16 +713837,22 @@ ] ], "pointerevent_click_during_capture.html": [ - "e7448c7a8bdc6915e833236df6b9458929646b9d", + "d1791445572a9baca217c988d3e53e0bc913c2cc", [ - null, + "pointerevents/pointerevent_click_during_capture.html?mouse-auxclick", + { + "testdriver": true + } + ], + [ + "pointerevents/pointerevent_click_during_capture.html?mouse-click", { "testdriver": true } ] ], "pointerevent_click_is_a_pointerevent.html": [ - "ceaae68db213b248afef4a80991721c2c12e30c3", + "9087a42436e0c82f519a2427999f4b5a7edf502f", [ "pointerevents/pointerevent_click_is_a_pointerevent.html?mouse", { @@ -689791,7 +714055,7 @@ ] ], "pointerevent_mouse_capture_change_hover.html": [ - "ef824dafd963bc97f59283d833d0e0cb4fe97fc8", + "eb4600093872368185ac8f7133a6c1c8dcd9430c", [ null, { @@ -689848,6 +714112,24 @@ } ] ], + "pointerevent_pointer_boundary_events_after_reappending_last_over_target.html": [ + "644bbb3229f57a136df03b3e91f12fc8a889b6c9", + [ + null, + { + "testdriver": true + } + ] + ], + "pointerevent_pointer_boundary_events_after_removing_last_over_element.html": [ + "bf2a405f727d899e92af92ea4ff38d1dcfb21289", + [ + null, + { + "testdriver": true + } + ] + ], "pointerevent_pointercancel_touch.html": [ "687b6a3f32c3de068b795cb29688f057f7d0a8e1", [ @@ -689959,8 +714241,8 @@ } ] ], - "pointerevent_pointermove_isprimary_same_as_pointerdown.html": [ - "3073076a49fde1d926548a2d076176b50fc8ecc6", + "pointerevent_pointermove_after_pointerup_target_removed.html": [ + "7ece87237c6f4309983a4fb010982a43e71e3ba9", [ null, { @@ -689968,6 +714250,21 @@ } ] ], + "pointerevent_pointermove_isprimary_same_as_pointerdown.html": [ + "c8a10e8bb86415003f05646731beda01295d9a11", + [ + "pointerevents/pointerevent_pointermove_isprimary_same_as_pointerdown.html?mouse", + { + "testdriver": true + } + ], + [ + "pointerevents/pointerevent_pointermove_isprimary_same_as_pointerdown.html?touch", + { + "testdriver": true + } + ] + ], "pointerevent_pointermove_on_chorded_mouse_button.html": [ "b5c1803f3d5af31420cd1a14d8e0185505cc5969", [ @@ -690015,7 +714312,7 @@ ] ], "pointerevent_pointerrawupdate.html": [ - "bd24daf6171ad765a37a92ffcb3acce0ded25e0f", + "eb405d26c330cd150dce3100f7a38af43c80b44d", [ null, { @@ -690249,6 +714546,27 @@ {} ] ], + "pointerevent_to_slotted_target.html": [ + "cea318f20d492548cf66aafe856176ecd2e07142", + [ + "pointerevents/pointerevent_to_slotted_target.html?mouse", + { + "testdriver": true + } + ], + [ + "pointerevents/pointerevent_to_slotted_target.html?pen", + { + "testdriver": true + } + ], + [ + "pointerevents/pointerevent_to_slotted_target.html?touch", + { + "testdriver": true + } + ] + ], "pointerevent_touch-action-auto-css_touch.html": [ "c486d77c1119128d7ad87c5c83aea43ebfe379e7", [ @@ -690591,6 +714909,15 @@ } ] ], + "pointerup_button_value_matches_corresponding_pointerdown.html": [ + "1fb13f37d40f7aae9d5afa042f41fb517b8f3879", + [ + null, + { + "testdriver": true + } + ] + ], "predicted_events_attributes.html": [ "7049447eca1eed53fce2258142895def36701e73", [ @@ -690868,7 +715195,7 @@ ] ], "preconnect-onerror-event.html": [ - "4ce583d4db8502d626c5c563c078b36fa08a768d", + "b2997fed2536f724310b183a141d21d10c501edf", [ null, { @@ -690901,7 +715228,7 @@ ] ], "prefetch-document.html": [ - "bdb12bd58a036a1f7429e362acb078f0d2f75d4b", + "9f9810be46cc43ddcfacae40e1f53f4ac45af7e5", [ null, {} @@ -691111,6 +715438,87 @@ null, {} ] + ], + "supported-as-values.html": [ + "34abf8041078798b8bacef5b998c23a4c017f617", + [ + "preload/supported-as-values.html?as=audio&expected=0", + { + "timeout": "long" + } + ], + [ + "preload/supported-as-values.html?as=fetch&expected=1", + { + "timeout": "long" + } + ], + [ + "preload/supported-as-values.html?as=font&expected=1", + { + "timeout": "long" + } + ], + [ + "preload/supported-as-values.html?as=garbagefoobar&expected=0", + { + "timeout": "long" + } + ], + [ + "preload/supported-as-values.html?as=iframe&expected=0", + { + "timeout": "long" + } + ], + [ + "preload/supported-as-values.html?as=image&expected=1", + { + "timeout": "long" + } + ], + [ + "preload/supported-as-values.html?as=json&expected=0", + { + "timeout": "long" + } + ], + [ + "preload/supported-as-values.html?as=object&expected=0", + { + "timeout": "long" + } + ], + [ + "preload/supported-as-values.html?as=script&expected=1", + { + "timeout": "long" + } + ], + [ + "preload/supported-as-values.html?as=style&expected=1", + { + "timeout": "long" + } + ], + [ + "preload/supported-as-values.html?as=track&expected=1", + { + "timeout": "long" + } + ], + [ + "preload/supported-as-values.html?as=video&expected=0", + { + "timeout": "long" + } + ], + [ + "preload/supported-as-values.html?as=worklet&expected=0", + { + "timeout": "long" + } + ] ] }, "presentation-api": { @@ -691213,8 +715621,29 @@ } }, "private-aggregation": { - "protected-audience-surface-failure.https.html": [ - "b512afc25dbe99441a0c57638e7b11e2e0681f36", + "private-aggregation-permissions-policy-default.https.sub.html": [ + "3deb607705152249d3072d932b2f50adcad311a8", + [ + null, + {} + ] + ], + "private-aggregation-permissions-policy-none.https.sub.html": [ + "92fd2d5f360958b8ba2821250c3b42e80806a433", + [ + null, + {} + ] + ], + "private-aggregation-permissions-policy-self.https.sub.html": [ + "56b98356548e332f71b67f2f7ad76885efce803b", + [ + null, + {} + ] + ], + "protected-audience-auction-report-buyers-debug-mode-surface.https.html": [ + "ddc2b6a3723071d7b0f21b0f17757a1f1c59e1c8", [ null, { @@ -691222,8 +715651,8 @@ } ] ], - "protected-audience-surface-success.https.html": [ - "1d890321098cf5aa22a12a7035b71298496b19d2", + "protected-audience-surface-failure.https.html": [ + "b512afc25dbe99441a0c57638e7b11e2e0681f36", [ null, { @@ -691231,11 +715660,13 @@ } ] ], - "shared-storage-permissions-policy-none.https.html": [ - "3593ed71ea6b1e755c8c5e71492eb46699496922", + "protected-audience-surface-success.https.html": [ + "1d890321098cf5aa22a12a7035b71298496b19d2", [ null, - {} + { + "timeout": "long" + } ] ], "shared-storage-surface-context-id.https.html": [ @@ -691259,6 +715690,13 @@ {} ] ], + "shared-storage-surface-filtering-id.https.html": [ + "53ed3a109bc1a025446072e1399f1859053c3d68", + [ + null, + {} + ] + ], "shared-storage-surface-success-2.https.html": [ "8203fd11eaa325c9c4e4bf294676287a4e86453b", [ @@ -691457,6 +715895,28 @@ null, {} ] + ], + "subscribe-with-faulty-applicationServerKey.https.window.js": [ + "7d600803e4329da981f8f4be1a017a5e711e8698", + [ + "push-api/subscribe-with-faulty-applicationServerKey.https.window.html", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ], + [ + "script", + "resources/helpers.js" + ] + ] + } + ] ] }, "quirks": { @@ -697379,7 +721839,1849 @@ ] ], "xhr.http.html": [ - "20d3eb1ff827a4b3916b756529ded620418fbe32", + "20d3eb1ff827a4b3916b756529ded620418fbe32", + [ + null, + { + "timeout": "long" + } + ] + ] + }, + "origin": { + "a-tag.http.html": [ + "5f24860f1752ea9482158111f839085315e21081", + [ + null, + { + "timeout": "long" + } + ] + ], + "fetch.http.html": [ + "75e1bac179008804ae1b309a65cd7c4a850583be", + [ + null, + { + "timeout": "long" + } + ] + ], + "iframe-tag.http.html": [ + "8e40188f6c96725f23f92ccf410c59c489e957ea", + [ + null, + { + "timeout": "long" + } + ] + ], + "img-tag.http.html": [ + "21013c61e48edb361662cd0231005c255edf4a71", + [ + null, + { + "timeout": "long" + } + ] + ], + "script-tag.http.html": [ + "3e542dbb59a79efd10d6a95c8c82a0488cbab1f6", + [ + null, + { + "timeout": "long" + } + ] + ], + "sharedworker-classic.http.html": [ + "d10a631c99cbcc13a2d1296fcc6b1e4f0843a8cd", + [ + null, + { + "timeout": "long" + } + ] + ], + "sharedworker-module.http.html": [ + "5bd7631966481dbc4b146802f3d8ea219756cf88", + [ + null, + { + "timeout": "long" + } + ] + ], + "worker-classic.http.html": [ + "3a901d4df9a4740e14c7c36c57eeb88366764c66", + [ + null, + { + "timeout": "long" + } + ] + ], + "worker-module.http.html": [ + "35cbe42e1cc004573b59212f3d7c6fb68eaedbf2", + [ + null, + { + "timeout": "long" + } + ] + ], + "xhr.http.html": [ + "0e691f80797f333946fa11e43a7aee8c13f72292", + [ + null, + { + "timeout": "long" + } + ] + ] + }, + "origin-when-cross-origin": { + "a-tag.http.html": [ + "6ed5f3bb75a70f3c50d561e2754be668e759b3dd", + [ + null, + { + "timeout": "long" + } + ] + ], + "fetch.http.html": [ + "6ce6800ed1b9b115568b2b82d8441dc8a155bc8e", + [ + null, + { + "timeout": "long" + } + ] + ], + "iframe-tag.http.html": [ + "6a0c5286868a995f734ccf858dad0fb9ecfbee8b", + [ + null, + { + "timeout": "long" + } + ] + ], + "img-tag.http.html": [ + "aed278716d11050df1124381db7bb6bac6fc5d16", + [ + null, + { + "timeout": "long" + } + ] + ], + "script-tag.http.html": [ + "74212a61fb82e4185af401cc1ae19bbee2f12180", + [ + null, + { + "timeout": "long" + } + ] + ], + "sharedworker-classic.http.html": [ + "de1c533bfc83394acb6b52de86b23da31429d462", + [ + null, + { + "timeout": "long" + } + ] + ], + "sharedworker-module.http.html": [ + "c088ac04d7f3359b4146dd8e73c1227871e6f4c3", + [ + null, + { + "timeout": "long" + } + ] + ], + "worker-classic.http.html": [ + "8433c4d9df9afdf0992b5e879346edd24c2ee910", + [ + null, + { + "timeout": "long" + } + ] + ], + "worker-module.http.html": [ + "bc0657d31ca8fbcb5e2262b707d2661f860356ee", + [ + null, + { + "timeout": "long" + } + ] + ], + "xhr.http.html": [ + "a54c8dec65e665c588931ca7795bd998754ecf47", + [ + null, + { + "timeout": "long" + } + ] + ] + }, + "same-origin": { + "a-tag.http.html": [ + "4722bc8f9224f2583a7f71d4bc2469f3d5f70196", + [ + null, + { + "timeout": "long" + } + ] + ], + "fetch.http.html": [ + "ca88a138c07d2844e91d8252fd66a0a51e9690ba", + [ + null, + { + "timeout": "long" + } + ] + ], + "iframe-tag.http.html": [ + "a95cfde13a64ba8363c3dbfaebcda5788aa47cf4", + [ + null, + { + "timeout": "long" + } + ] + ], + "img-tag.http.html": [ + "81c06823b6ad3f3a3759daddb4339bd11129d68c", + [ + null, + { + "timeout": "long" + } + ] + ], + "script-tag.http.html": [ + "450ebffcc0207582248118759293bf4d9c42dbf4", + [ + null, + { + "timeout": "long" + } + ] + ], + "sharedworker-classic.http.html": [ + "de1c533bfc83394acb6b52de86b23da31429d462", + [ + null, + { + "timeout": "long" + } + ] + ], + "sharedworker-module.http.html": [ + "c088ac04d7f3359b4146dd8e73c1227871e6f4c3", + [ + null, + { + "timeout": "long" + } + ] + ], + "worker-classic.http.html": [ + "8433c4d9df9afdf0992b5e879346edd24c2ee910", + [ + null, + { + "timeout": "long" + } + ] + ], + "worker-module.http.html": [ + "bc0657d31ca8fbcb5e2262b707d2661f860356ee", + [ + null, + { + "timeout": "long" + } + ] + ], + "xhr.http.html": [ + "9069ca99241fbb96169425a3ca09c50501b4d949", + [ + null, + { + "timeout": "long" + } + ] + ] + }, + "strict-origin": { + "a-tag.http.html": [ + "5f24860f1752ea9482158111f839085315e21081", + [ + null, + { + "timeout": "long" + } + ] + ], + "fetch.http.html": [ + "75e1bac179008804ae1b309a65cd7c4a850583be", + [ + null, + { + "timeout": "long" + } + ] + ], + "iframe-tag.http.html": [ + "8e40188f6c96725f23f92ccf410c59c489e957ea", + [ + null, + { + "timeout": "long" + } + ] + ], + "img-tag.http.html": [ + "21013c61e48edb361662cd0231005c255edf4a71", + [ + null, + { + "timeout": "long" + } + ] + ], + "script-tag.http.html": [ + "3e542dbb59a79efd10d6a95c8c82a0488cbab1f6", + [ + null, + { + "timeout": "long" + } + ] + ], + "sharedworker-classic.http.html": [ + "d10a631c99cbcc13a2d1296fcc6b1e4f0843a8cd", + [ + null, + { + "timeout": "long" + } + ] + ], + "sharedworker-module.http.html": [ + "5bd7631966481dbc4b146802f3d8ea219756cf88", + [ + null, + { + "timeout": "long" + } + ] + ], + "worker-classic.http.html": [ + "3a901d4df9a4740e14c7c36c57eeb88366764c66", + [ + null, + { + "timeout": "long" + } + ] + ], + "worker-module.http.html": [ + "35cbe42e1cc004573b59212f3d7c6fb68eaedbf2", + [ + null, + { + "timeout": "long" + } + ] + ], + "xhr.http.html": [ + "0e691f80797f333946fa11e43a7aee8c13f72292", + [ + null, + { + "timeout": "long" + } + ] + ] + }, + "strict-origin-when-cross-origin": { + "a-tag.http.html": [ + "6ed5f3bb75a70f3c50d561e2754be668e759b3dd", + [ + null, + { + "timeout": "long" + } + ] + ], + "fetch.http.html": [ + "6ce6800ed1b9b115568b2b82d8441dc8a155bc8e", + [ + null, + { + "timeout": "long" + } + ] + ], + "iframe-tag.http.html": [ + "6a0c5286868a995f734ccf858dad0fb9ecfbee8b", + [ + null, + { + "timeout": "long" + } + ] + ], + "img-tag.http.html": [ + "aed278716d11050df1124381db7bb6bac6fc5d16", + [ + null, + { + "timeout": "long" + } + ] + ], + "script-tag.http.html": [ + "74212a61fb82e4185af401cc1ae19bbee2f12180", + [ + null, + { + "timeout": "long" + } + ] + ], + "sharedworker-classic.http.html": [ + "de1c533bfc83394acb6b52de86b23da31429d462", + [ + null, + { + "timeout": "long" + } + ] + ], + "sharedworker-module.http.html": [ + "c088ac04d7f3359b4146dd8e73c1227871e6f4c3", + [ + null, + { + "timeout": "long" + } + ] + ], + "worker-classic.http.html": [ + "8433c4d9df9afdf0992b5e879346edd24c2ee910", + [ + null, + { + "timeout": "long" + } + ] + ], + "worker-module.http.html": [ + "bc0657d31ca8fbcb5e2262b707d2661f860356ee", + [ + null, + { + "timeout": "long" + } + ] + ], + "xhr.http.html": [ + "a54c8dec65e665c588931ca7795bd998754ecf47", + [ + null, + { + "timeout": "long" + } + ] + ] + }, + "unsafe-url": { + "a-tag.http.html": [ + "c00ba92de5c6e36984862ad0b5a182ff98dc3d0e", + [ + null, + { + "timeout": "long" + } + ] + ], + "fetch.http.html": [ + "ed3bc61f01861c675907bbda28afc1e2e0aee24c", + [ + null, + { + "timeout": "long" + } + ] + ], + "iframe-tag.http.html": [ + "a4fb7d8629b47146ed541ab93d3f2cb7761eaee1", + [ + null, + { + "timeout": "long" + } + ] + ], + "img-tag.http.html": [ + "948089af7e88852d479077fc6cac2ca6aa60f763", + [ + null, + { + "timeout": "long" + } + ] + ], + "script-tag.http.html": [ + "5d152c996afe5a398e751d2c69867a393df120ef", + [ + null, + { + "timeout": "long" + } + ] + ], + "sharedworker-classic.http.html": [ + "de1c533bfc83394acb6b52de86b23da31429d462", + [ + null, + { + "timeout": "long" + } + ] + ], + "sharedworker-module.http.html": [ + "c088ac04d7f3359b4146dd8e73c1227871e6f4c3", + [ + null, + { + "timeout": "long" + } + ] + ], + "worker-classic.http.html": [ + "8433c4d9df9afdf0992b5e879346edd24c2ee910", + [ + null, + { + "timeout": "long" + } + ] + ], + "worker-module.http.html": [ + "bc0657d31ca8fbcb5e2262b707d2661f860356ee", + [ + null, + { + "timeout": "long" + } + ] + ], + "xhr.http.html": [ + "20d3eb1ff827a4b3916b756529ded620418fbe32", + [ + null, + { + "timeout": "long" + } + ] + ] + }, + "unset": { + "a-tag.http.html": [ + "6ed5f3bb75a70f3c50d561e2754be668e759b3dd", + [ + null, + { + "timeout": "long" + } + ] + ], + "fetch.http.html": [ + "6ce6800ed1b9b115568b2b82d8441dc8a155bc8e", + [ + null, + { + "timeout": "long" + } + ] + ], + "iframe-tag.http.html": [ + "6a0c5286868a995f734ccf858dad0fb9ecfbee8b", + [ + null, + { + "timeout": "long" + } + ] + ], + "img-tag.http.html": [ + "aed278716d11050df1124381db7bb6bac6fc5d16", + [ + null, + { + "timeout": "long" + } + ] + ], + "script-tag.http.html": [ + "74212a61fb82e4185af401cc1ae19bbee2f12180", + [ + null, + { + "timeout": "long" + } + ] + ], + "sharedworker-classic.http.html": [ + "de1c533bfc83394acb6b52de86b23da31429d462", + [ + null, + { + "timeout": "long" + } + ] + ], + "sharedworker-module.http.html": [ + "c088ac04d7f3359b4146dd8e73c1227871e6f4c3", + [ + null, + { + "timeout": "long" + } + ] + ], + "worker-classic.http.html": [ + "8433c4d9df9afdf0992b5e879346edd24c2ee910", + [ + null, + { + "timeout": "long" + } + ] + ], + "worker-module.http.html": [ + "bc0657d31ca8fbcb5e2262b707d2661f860356ee", + [ + null, + { + "timeout": "long" + } + ] + ], + "xhr.http.html": [ + "a54c8dec65e665c588931ca7795bd998754ecf47", + [ + null, + { + "timeout": "long" + } + ] + ] + } + }, + "srcdoc-inherit.meta": { + "always": { + "a-tag.http.html": [ + "820d4cf0ec94f8ce79e5866076ae3211d0a667ad", + [ + null, + { + "timeout": "long" + } + ] + ], + "fetch.http.html": [ + "1fcc0e5006fd11e343d67ea20eff8107bccea7bc", + [ + null, + { + "timeout": "long" + } + ] + ], + "iframe-tag.http.html": [ + "7f28cc13daa0257414a8b08e9fe857135f2cb03b", + [ + null, + { + "timeout": "long" + } + ] + ], + "img-tag.http.html": [ + "eb2d519ce5d0740feb52ff940355862581916090", + [ + null, + { + "timeout": "long" + } + ] + ], + "script-tag.http.html": [ + "1167cfd12545b3c2c8d8c235a7e3ab4163871ac5", + [ + null, + { + "timeout": "long" + } + ] + ], + "sharedworker-classic.http.html": [ + "67972ef771e972ff3853b444b1bcafe0aaaf8240", + [ + null, + { + "timeout": "long" + } + ] + ], + "sharedworker-module.http.html": [ + "ee76c6c1229ad9a5a4d82799ae8c0fb75786a00b", + [ + null, + { + "timeout": "long" + } + ] + ], + "worker-classic.http.html": [ + "fe9c6561ba98d6c03d75d09fe01a4571a7d94ec0", + [ + null, + { + "timeout": "long" + } + ] + ], + "worker-module.http.html": [ + "f834ecc6ae638d593b09d983f56bc1633d934650", + [ + null, + { + "timeout": "long" + } + ] + ], + "xhr.http.html": [ + "e6bf9e04f99971575479de673dd39878db08483d", + [ + null, + { + "timeout": "long" + } + ] + ] + }, + "default": { + "a-tag.http.html": [ + "e74fad3b638637afbc31605df55186efbd4148a1", + [ + null, + { + "timeout": "long" + } + ] + ], + "fetch.http.html": [ + "e71aabe8d628eeadb2ecfa83af5b9f0b19f17c60", + [ + null, + { + "timeout": "long" + } + ] + ], + "iframe-tag.http.html": [ + "99cf044f15052315adb3766b90f9dc64daf6f17d", + [ + null, + { + "timeout": "long" + } + ] + ], + "img-tag.http.html": [ + "0075dd051c38856beb2f16b1841a7ffc42856ddf", + [ + null, + { + "timeout": "long" + } + ] + ], + "script-tag.http.html": [ + "e0cdcf4ff9cf015612f01d0fda23ad1baa25ed8e", + [ + null, + { + "timeout": "long" + } + ] + ], + "sharedworker-classic.http.html": [ + "3351a49e1c95ff8c4150076ea6f6b0169059fbb6", + [ + null, + { + "timeout": "long" + } + ] + ], + "sharedworker-module.http.html": [ + "b8d5044bc73476845e92329fe23787b05d8ba062", + [ + null, + { + "timeout": "long" + } + ] + ], + "worker-classic.http.html": [ + "5e3ffcaf235f5e2ee4ac4a2f28f5da93ffcd72a0", + [ + null, + { + "timeout": "long" + } + ] + ], + "worker-module.http.html": [ + "1b5a55cdb2b7c52287db7cada9852bce0b9f5ed9", + [ + null, + { + "timeout": "long" + } + ] + ], + "xhr.http.html": [ + "0cdbf28b423b2191be9e380b4f2e4151215e761c", + [ + null, + { + "timeout": "long" + } + ] + ] + }, + "never": { + "a-tag.http.html": [ + "7555f25db89523159beb49bf17effc2b8dafe7f8", + [ + null, + { + "timeout": "long" + } + ] + ], + "fetch.http.html": [ + "29a849cbbdce5c17e846b7c24ce62b0ed39b4b5f", + [ + null, + { + "timeout": "long" + } + ] + ], + "iframe-tag.http.html": [ + "d6a0c4f31ca41fa00a4f606486ba75186fa3c8f5", + [ + null, + { + "timeout": "long" + } + ] + ], + "img-tag.http.html": [ + "b6eef755663fb9c2d2fb5b4dc41caf6cac0c03b1", + [ + null, + { + "timeout": "long" + } + ] + ], + "script-tag.http.html": [ + "b9be802312b66e7c7446e7783bfd907736267e4f", + [ + null, + { + "timeout": "long" + } + ] + ], + "sharedworker-classic.http.html": [ + "1ccc8b7a15309396010903711ebecf19f9746b7b", + [ + null, + { + "timeout": "long" + } + ] + ], + "sharedworker-module.http.html": [ + "fd201609c843409545c5d9c87a969ca84366c704", + [ + null, + { + "timeout": "long" + } + ] + ], + "worker-classic.http.html": [ + "55357061f76202b3af707b25e4018cecd27ccd3d", + [ + null, + { + "timeout": "long" + } + ] + ], + "worker-module.http.html": [ + "bf397f451fc8dc43456e114190945346007ac9f9", + [ + null, + { + "timeout": "long" + } + ] + ], + "xhr.http.html": [ + "2ef0d4738c694cf9006a51f19c46f793e75bf1b1", + [ + null, + { + "timeout": "long" + } + ] + ] + }, + "no-referrer": { + "a-tag.http.html": [ + "36beb5760f365b0ca778012ced1cab5a62ef6cc2", + [ + null, + { + "timeout": "long" + } + ] + ], + "fetch.http.html": [ + "ed6e1c7e0cd19514cd5d2147f6459f1b2df93427", + [ + null, + { + "timeout": "long" + } + ] + ], + "iframe-tag.http.html": [ + "edd06e5c027422cfc8138425014652fae7c35110", + [ + null, + { + "timeout": "long" + } + ] + ], + "img-tag.http.html": [ + "9395c9307329353e24bc1cae60c587ff018e8acf", + [ + null, + { + "timeout": "long" + } + ] + ], + "script-tag.http.html": [ + "0d253b26ea76c83db1526b448b78df5e257b88bc", + [ + null, + { + "timeout": "long" + } + ] + ], + "sharedworker-classic.http.html": [ + "106c33c0af720e04b5a91d1a5c35bbc4a7c61b67", + [ + null, + { + "timeout": "long" + } + ] + ], + "sharedworker-module.http.html": [ + "b14eecdd68291c0c4188428af4fd117c9571d83d", + [ + null, + { + "timeout": "long" + } + ] + ], + "worker-classic.http.html": [ + "e939ffff9894fc6018959644cbfa12abe2167744", + [ + null, + { + "timeout": "long" + } + ] + ], + "worker-module.http.html": [ + "fb3fba8ef663ccb2216de9c4711a22370b64e6cc", + [ + null, + { + "timeout": "long" + } + ] + ], + "xhr.http.html": [ + "b8a8134149fddfb7905534494798aea034643022", + [ + null, + { + "timeout": "long" + } + ] + ] + }, + "no-referrer-when-downgrade": { + "a-tag.http.html": [ + "f99b8ab03903517154be84d6d7ceb4522b9ad77d", + [ + null, + { + "timeout": "long" + } + ] + ], + "fetch.http.html": [ + "b0843010b787a621fd62d768b8e1c61436417fdd", + [ + null, + { + "timeout": "long" + } + ] + ], + "iframe-tag.http.html": [ + "70b6f86033191598f393800bec9635cab4d72a5b", + [ + null, + { + "timeout": "long" + } + ] + ], + "img-tag.http.html": [ + "5d74b8662e55f97d9027bc244458da181e72dcc2", + [ + null, + { + "timeout": "long" + } + ] + ], + "script-tag.http.html": [ + "9ad1c791693919da38accbda6ebaaa534f4cd89b", + [ + null, + { + "timeout": "long" + } + ] + ], + "sharedworker-classic.http.html": [ + "3942d10b630c608c2b4621789b0afbdae665c2ee", + [ + null, + { + "timeout": "long" + } + ] + ], + "sharedworker-module.http.html": [ + "b97f3311f81e4933ab06ccca55dee7353cdf482f", + [ + null, + { + "timeout": "long" + } + ] + ], + "worker-classic.http.html": [ + "0cd0c64765e3925a2dd20e464bffd69b11e945df", + [ + null, + { + "timeout": "long" + } + ] + ], + "worker-module.http.html": [ + "e163e858d02f533f049d90f73a6f76eb7d43ac4e", + [ + null, + { + "timeout": "long" + } + ] + ], + "xhr.http.html": [ + "70aee4ec28b381caa02db20a0a860f2913d04457", + [ + null, + { + "timeout": "long" + } + ] + ] + }, + "origin": { + "a-tag.http.html": [ + "53d4decc35b27a17b214fa38a7fec8aa8957b8bf", + [ + null, + { + "timeout": "long" + } + ] + ], + "fetch.http.html": [ + "2bb4704f451c3a45acc1a8d575a73d794ad53851", + [ + null, + { + "timeout": "long" + } + ] + ], + "iframe-tag.http.html": [ + "97d69ffe1c0d4fff66317bf91788a8c1324daf97", + [ + null, + { + "timeout": "long" + } + ] + ], + "img-tag.http.html": [ + "ba49c9c8ddffb5ad25247ced884e30b409d969c7", + [ + null, + { + "timeout": "long" + } + ] + ], + "script-tag.http.html": [ + "d1eb996cc65c7113236a4da9b90e7551e82495dc", + [ + null, + { + "timeout": "long" + } + ] + ], + "sharedworker-classic.http.html": [ + "972f0c050760e6ac3cbdc577595ce30a51ff4254", + [ + null, + { + "timeout": "long" + } + ] + ], + "sharedworker-module.http.html": [ + "1cbe83cc0a03fd00628d6a8b614b8cc2ef8974f1", + [ + null, + { + "timeout": "long" + } + ] + ], + "worker-classic.http.html": [ + "d90cdc4fbe7d6ba0e55afd33de4b92967b690690", + [ + null, + { + "timeout": "long" + } + ] + ], + "worker-module.http.html": [ + "eb55830303db2ec49edf4c1999eb796d33ac22e1", + [ + null, + { + "timeout": "long" + } + ] + ], + "xhr.http.html": [ + "3e743c30e3318b2268e527f290779350ab7b3814", + [ + null, + { + "timeout": "long" + } + ] + ] + }, + "origin-when-cross-origin": { + "a-tag.http.html": [ + "44879f5d1fc2a3204809373f7b68614cca07ce80", + [ + null, + { + "timeout": "long" + } + ] + ], + "fetch.http.html": [ + "014222203244162aae9484aa841cf8cfbfe43eba", + [ + null, + { + "timeout": "long" + } + ] + ], + "iframe-tag.http.html": [ + "cc80c5b686cb6d28bb22aed04c0da56a286df173", + [ + null, + { + "timeout": "long" + } + ] + ], + "img-tag.http.html": [ + "5aae8d81060aae32aa2e6e3bbbaaa7bab2edfdb9", + [ + null, + { + "timeout": "long" + } + ] + ], + "script-tag.http.html": [ + "0cbe39c632cf08d2d06e90121ce5c9a7403e1532", + [ + null, + { + "timeout": "long" + } + ] + ], + "sharedworker-classic.http.html": [ + "6e5f40d54249df8f79c465157704f8609e7745bd", + [ + null, + { + "timeout": "long" + } + ] + ], + "sharedworker-module.http.html": [ + "bc8914ff1b7aba68abc1e91accf1948ea2be66bc", + [ + null, + { + "timeout": "long" + } + ] + ], + "worker-classic.http.html": [ + "ebbde3683becdc3cdd9769f5dfdfb1e575f5b18e", + [ + null, + { + "timeout": "long" + } + ] + ], + "worker-module.http.html": [ + "55eb25bc24fe28f15b8ce6c78e5ba1e72609cf65", + [ + null, + { + "timeout": "long" + } + ] + ], + "xhr.http.html": [ + "d5ecdddf67e4c22d438e71490a4e0736015541c2", + [ + null, + { + "timeout": "long" + } + ] + ] + }, + "origin-when-crossorigin": { + "a-tag.http.html": [ + "71b8965db0233d060e1fdb06472e23ffe58614c0", + [ + null, + { + "timeout": "long" + } + ] + ], + "fetch.http.html": [ + "c1baef7000cd6e1fee4f00571cbc45d209973e46", + [ + null, + { + "timeout": "long" + } + ] + ], + "iframe-tag.http.html": [ + "7a76a2723d59c0c3b82f2df8a68aa2fe60ee9bc0", + [ + null, + { + "timeout": "long" + } + ] + ], + "img-tag.http.html": [ + "689b775fa832d1c8138d8a0834560e3c3db791a4", + [ + null, + { + "timeout": "long" + } + ] + ], + "script-tag.http.html": [ + "a8a9b08e9a8904440c31f8d163046ccd49335ba4", + [ + null, + { + "timeout": "long" + } + ] + ], + "sharedworker-classic.http.html": [ + "def1c2792259742af893db25838cca4982f791af", + [ + null, + { + "timeout": "long" + } + ] + ], + "sharedworker-module.http.html": [ + "d647061a270461f57b97cf17fef8ea0290469017", + [ + null, + { + "timeout": "long" + } + ] + ], + "worker-classic.http.html": [ + "413a7923d58135fc8dd5eeff916b26cf37678edd", + [ + null, + { + "timeout": "long" + } + ] + ], + "worker-module.http.html": [ + "710457c5f0eb995a25a8ad67117e409ef4ee78fe", + [ + null, + { + "timeout": "long" + } + ] + ], + "xhr.http.html": [ + "b8b6e257bec3b3c5f0a5528d8e3ae0eaebdfa32c", + [ + null, + { + "timeout": "long" + } + ] + ] + }, + "same-origin": { + "a-tag.http.html": [ + "121fb003b4b359d05390e18788e03b639ab91682", + [ + null, + { + "timeout": "long" + } + ] + ], + "fetch.http.html": [ + "9ae62490b427a146261ab2f911d5c567b38f879a", + [ + null, + { + "timeout": "long" + } + ] + ], + "iframe-tag.http.html": [ + "d197af252e83510ddb1f9338ee4df03ce2b81ce4", + [ + null, + { + "timeout": "long" + } + ] + ], + "img-tag.http.html": [ + "5745f609da29e712c07f0395f0d24ae88e1a1d17", + [ + null, + { + "timeout": "long" + } + ] + ], + "script-tag.http.html": [ + "b60fb20b58c7ca1517d35fe740ec3a709b1ed957", + [ + null, + { + "timeout": "long" + } + ] + ], + "sharedworker-classic.http.html": [ + "ef7ecf365293ec65eb16e98875cc45a7a55f7664", + [ + null, + { + "timeout": "long" + } + ] + ], + "sharedworker-module.http.html": [ + "001be4af9705fd705c71db0779dbbce0da58b5b7", + [ + null, + { + "timeout": "long" + } + ] + ], + "worker-classic.http.html": [ + "58c04ab190584d06826fe359ae9eb66eb7e11cb8", + [ + null, + { + "timeout": "long" + } + ] + ], + "worker-module.http.html": [ + "32ed0a93dcde4cbe0c636efc3739b7c33c0838ab", + [ + null, + { + "timeout": "long" + } + ] + ], + "xhr.http.html": [ + "924d350cb5d46614b8e48462b0d2bcdaa3e35b15", + [ + null, + { + "timeout": "long" + } + ] + ] + }, + "strict-origin": { + "a-tag.http.html": [ + "2c14a70c2746b18a243bcbccc69756314f1d5cb6", + [ + null, + { + "timeout": "long" + } + ] + ], + "fetch.http.html": [ + "342365da7fa52988158c873d39a7402edaf7971d", + [ + null, + { + "timeout": "long" + } + ] + ], + "iframe-tag.http.html": [ + "be4d7494f5d40e7a38c2732f5bd4e453689e7c96", + [ + null, + { + "timeout": "long" + } + ] + ], + "img-tag.http.html": [ + "94e983555215dc0dc0ad8a4987f0e6808e7bb9a1", + [ + null, + { + "timeout": "long" + } + ] + ], + "script-tag.http.html": [ + "4b67d45c7b1055999487a1a4d54c8dd91a51782d", + [ + null, + { + "timeout": "long" + } + ] + ], + "sharedworker-classic.http.html": [ + "f77d2607ffc5d61c63b155c5356f017adea2199b", + [ + null, + { + "timeout": "long" + } + ] + ], + "sharedworker-module.http.html": [ + "e73467fa7afbedda788908bd281a8881370a46a4", + [ + null, + { + "timeout": "long" + } + ] + ], + "worker-classic.http.html": [ + "9bcc3ab645a3fc543221163da9bea4e77e04e8eb", + [ + null, + { + "timeout": "long" + } + ] + ], + "worker-module.http.html": [ + "72e2b97e3b9007e92981a195c7bc3b6a32393953", + [ + null, + { + "timeout": "long" + } + ] + ], + "xhr.http.html": [ + "793fe211db1729db4281d7ddd6a17329c4b347ca", + [ + null, + { + "timeout": "long" + } + ] + ] + }, + "strict-origin-when-cross-origin": { + "a-tag.http.html": [ + "c0daad593b18c0eb3bf4ab27cad6441238949d4f", + [ + null, + { + "timeout": "long" + } + ] + ], + "fetch.http.html": [ + "35d7ea426b07106b6b69b346d51498ad9de7a9c9", + [ + null, + { + "timeout": "long" + } + ] + ], + "iframe-tag.http.html": [ + "a7ee5d9e24d9218fdaa566bd45ba25ea3d233079", + [ + null, + { + "timeout": "long" + } + ] + ], + "img-tag.http.html": [ + "c76973736131fc334c2ee39dd91b029f8b464bda", + [ + null, + { + "timeout": "long" + } + ] + ], + "script-tag.http.html": [ + "76174d3c217698fd8245b8210f46e384e5eb1b59", + [ + null, + { + "timeout": "long" + } + ] + ], + "sharedworker-classic.http.html": [ + "8288d864544660639fc4d4e6c8fa58d253f84852", + [ + null, + { + "timeout": "long" + } + ] + ], + "sharedworker-module.http.html": [ + "57477ebed0e383afe009f9c8e0a50ff0d14d043d", + [ + null, + { + "timeout": "long" + } + ] + ], + "worker-classic.http.html": [ + "62330f80d023a01f961813dfb6f6f1d7b5b19ffa", + [ + null, + { + "timeout": "long" + } + ] + ], + "worker-module.http.html": [ + "6d3f1993657a07f36954afc0b6db766e54560d61", + [ + null, + { + "timeout": "long" + } + ] + ], + "xhr.http.html": [ + "a6829c2b3da724c76619bc0d1a0937c85873ffd3", + [ + null, + { + "timeout": "long" + } + ] + ] + }, + "unsafe-url": { + "a-tag.http.html": [ + "3815612c67b481bf6cebee741a925f1aae259dc6", + [ + null, + { + "timeout": "long" + } + ] + ], + "fetch.http.html": [ + "aee1cef03d2cd2bce2d0739e2d23f92262501c4c", + [ + null, + { + "timeout": "long" + } + ] + ], + "iframe-tag.http.html": [ + "f978f5348553d4bb6194c76dab79636b919389a9", + [ + null, + { + "timeout": "long" + } + ] + ], + "img-tag.http.html": [ + "df369004aca1bb0a8117c3aeb4e44cf80ae930b9", + [ + null, + { + "timeout": "long" + } + ] + ], + "script-tag.http.html": [ + "62b04cd422aca23447bfa5968409235e249475a1", + [ + null, + { + "timeout": "long" + } + ] + ], + "sharedworker-classic.http.html": [ + "4403317863581cc5f457d38bd94d8dd219837ecb", + [ + null, + { + "timeout": "long" + } + ] + ], + "sharedworker-module.http.html": [ + "c6b1d19175dd1c790f9c2631cdcfc2124e082929", + [ + null, + { + "timeout": "long" + } + ] + ], + "worker-classic.http.html": [ + "9a10d868f1e934539ac183fa7bdd67d76016b84b", + [ + null, + { + "timeout": "long" + } + ] + ], + "worker-module.http.html": [ + "8625bc2be3de23b40ccd5f14b0b5460426e3c96c", + [ + null, + { + "timeout": "long" + } + ] + ], + "xhr.http.html": [ + "b5e6906ca41009651f55f660dcfdf369a258fb3e", + [ + null, + { + "timeout": "long" + } + ] + ] + }, + "unset": { + "a-tag.http.html": [ + "6ed5f3bb75a70f3c50d561e2754be668e759b3dd", + [ + null, + { + "timeout": "long" + } + ] + ], + "fetch.http.html": [ + "6ce6800ed1b9b115568b2b82d8441dc8a155bc8e", + [ + null, + { + "timeout": "long" + } + ] + ], + "iframe-tag.http.html": [ + "6a0c5286868a995f734ccf858dad0fb9ecfbee8b", + [ + null, + { + "timeout": "long" + } + ] + ], + "img-tag.http.html": [ + "aed278716d11050df1124381db7bb6bac6fc5d16", + [ + null, + { + "timeout": "long" + } + ] + ], + "script-tag.http.html": [ + "74212a61fb82e4185af401cc1ae19bbee2f12180", + [ + null, + { + "timeout": "long" + } + ] + ], + "sharedworker-classic.http.html": [ + "de1c533bfc83394acb6b52de86b23da31429d462", + [ + null, + { + "timeout": "long" + } + ] + ], + "sharedworker-module.http.html": [ + "c088ac04d7f3359b4146dd8e73c1227871e6f4c3", + [ + null, + { + "timeout": "long" + } + ] + ], + "worker-classic.http.html": [ + "8433c4d9df9afdf0992b5e879346edd24c2ee910", + [ + null, + { + "timeout": "long" + } + ] + ], + "worker-module.http.html": [ + "bc0657d31ca8fbcb5e2262b707d2661f860356ee", + [ + null, + { + "timeout": "long" + } + ] + ], + "xhr.http.html": [ + "a54c8dec65e665c588931ca7795bd998754ecf47", [ null, { @@ -697387,10 +723689,12 @@ } ] ] - }, - "origin": { + } + }, + "srcdoc.meta": { + "always": { "a-tag.http.html": [ - "5f24860f1752ea9482158111f839085315e21081", + "389e3ecba19129e14bc172bb8dd2e2334c046aa6", [ null, { @@ -697399,7 +723703,7 @@ ] ], "fetch.http.html": [ - "75e1bac179008804ae1b309a65cd7c4a850583be", + "2352a0432884a5e1782d18179262656a411ab9dd", [ null, { @@ -697408,7 +723712,7 @@ ] ], "iframe-tag.http.html": [ - "8e40188f6c96725f23f92ccf410c59c489e957ea", + "c7db0ab2d750fc7005863bbb9d1e6fa4eacef135", [ null, { @@ -697417,7 +723721,7 @@ ] ], "img-tag.http.html": [ - "21013c61e48edb361662cd0231005c255edf4a71", + "504f37265582cc0f477d7bf2aae7162aff12c350", [ null, { @@ -697426,7 +723730,7 @@ ] ], "script-tag.http.html": [ - "3e542dbb59a79efd10d6a95c8c82a0488cbab1f6", + "5380552ea29f53852bb2e027da85a3ffd972c1bb", [ null, { @@ -697435,7 +723739,7 @@ ] ], "sharedworker-classic.http.html": [ - "d10a631c99cbcc13a2d1296fcc6b1e4f0843a8cd", + "78e8e125f75f4c735f54e23b3d9c0a8a0b3cc81b", [ null, { @@ -697444,7 +723748,7 @@ ] ], "sharedworker-module.http.html": [ - "5bd7631966481dbc4b146802f3d8ea219756cf88", + "c817b75c556183715edc35657a537854ca0de84e", [ null, { @@ -697453,7 +723757,7 @@ ] ], "worker-classic.http.html": [ - "3a901d4df9a4740e14c7c36c57eeb88366764c66", + "32ef8f4d4ca0e03b1d51a386b0945280cb101a4a", [ null, { @@ -697462,7 +723766,7 @@ ] ], "worker-module.http.html": [ - "35cbe42e1cc004573b59212f3d7c6fb68eaedbf2", + "79edc13536fd03d6e56a531eec54a6804a607788", [ null, { @@ -697471,7 +723775,7 @@ ] ], "xhr.http.html": [ - "0e691f80797f333946fa11e43a7aee8c13f72292", + "441a1112a083ab4f816c54749e46c2cc82d1b8ee", [ null, { @@ -697480,9 +723784,9 @@ ] ] }, - "origin-when-cross-origin": { + "default": { "a-tag.http.html": [ - "6ed5f3bb75a70f3c50d561e2754be668e759b3dd", + "19afee22424e2e81aa4e0d6254345f9a914b60bb", [ null, { @@ -697491,7 +723795,7 @@ ] ], "fetch.http.html": [ - "6ce6800ed1b9b115568b2b82d8441dc8a155bc8e", + "0c2181a8562bd8a96eac7ff851c9860c4506a059", [ null, { @@ -697500,7 +723804,7 @@ ] ], "iframe-tag.http.html": [ - "6a0c5286868a995f734ccf858dad0fb9ecfbee8b", + "26b0e4a658ae099332ef3d7eec2906469a5257d2", [ null, { @@ -697509,7 +723813,7 @@ ] ], "img-tag.http.html": [ - "aed278716d11050df1124381db7bb6bac6fc5d16", + "2abc493c05994b297fe1a0feef1ac586cc6787c6", [ null, { @@ -697518,7 +723822,7 @@ ] ], "script-tag.http.html": [ - "74212a61fb82e4185af401cc1ae19bbee2f12180", + "145f663261f9fb9866d77c8b87267bdcd0b0b84a", [ null, { @@ -697527,7 +723831,7 @@ ] ], "sharedworker-classic.http.html": [ - "de1c533bfc83394acb6b52de86b23da31429d462", + "5604a6fce3dde9c28dee5f240d930833c26e1e22", [ null, { @@ -697536,7 +723840,7 @@ ] ], "sharedworker-module.http.html": [ - "c088ac04d7f3359b4146dd8e73c1227871e6f4c3", + "a9a56210541a93c71bb20ef51f1928e7cffecca4", [ null, { @@ -697545,7 +723849,7 @@ ] ], "worker-classic.http.html": [ - "8433c4d9df9afdf0992b5e879346edd24c2ee910", + "08ed5a397b2fbc8dff65fab1f7e90e7dce598e63", [ null, { @@ -697554,7 +723858,7 @@ ] ], "worker-module.http.html": [ - "bc0657d31ca8fbcb5e2262b707d2661f860356ee", + "ab2aeae082eeea0d0bf2d72b514ea87cec376a58", [ null, { @@ -697563,7 +723867,7 @@ ] ], "xhr.http.html": [ - "a54c8dec65e665c588931ca7795bd998754ecf47", + "5ec19a8698e125ff58b76fcdac1cca3fdfefe17f", [ null, { @@ -697572,9 +723876,9 @@ ] ] }, - "same-origin": { + "never": { "a-tag.http.html": [ - "4722bc8f9224f2583a7f71d4bc2469f3d5f70196", + "b8cdba4dbe98c3004bac126639336c89089b56e9", [ null, { @@ -697583,7 +723887,7 @@ ] ], "fetch.http.html": [ - "ca88a138c07d2844e91d8252fd66a0a51e9690ba", + "96e65d42a2f86f6515ecd8ca683f195cf3703ecf", [ null, { @@ -697592,7 +723896,7 @@ ] ], "iframe-tag.http.html": [ - "a95cfde13a64ba8363c3dbfaebcda5788aa47cf4", + "ce657629a81ad01602d32d8e69b88f7427516950", [ null, { @@ -697601,7 +723905,7 @@ ] ], "img-tag.http.html": [ - "81c06823b6ad3f3a3759daddb4339bd11129d68c", + "2fc2cfd0e71d18eb6a585b75af3a6bef8b0fc158", [ null, { @@ -697610,7 +723914,7 @@ ] ], "script-tag.http.html": [ - "450ebffcc0207582248118759293bf4d9c42dbf4", + "f4c437a29bafa0500c083d2e81efc50c77050c59", [ null, { @@ -697619,7 +723923,7 @@ ] ], "sharedworker-classic.http.html": [ - "de1c533bfc83394acb6b52de86b23da31429d462", + "8e7eeec0d0d98a32cff17d7209834dd041bfef76", [ null, { @@ -697628,7 +723932,7 @@ ] ], "sharedworker-module.http.html": [ - "c088ac04d7f3359b4146dd8e73c1227871e6f4c3", + "89305f679b4ef8ef3fff4e74ec245ad7c31a2e6d", [ null, { @@ -697637,7 +723941,7 @@ ] ], "worker-classic.http.html": [ - "8433c4d9df9afdf0992b5e879346edd24c2ee910", + "7ac7de7d8a48c73a736487474148f122d01e83c2", [ null, { @@ -697646,7 +723950,7 @@ ] ], "worker-module.http.html": [ - "bc0657d31ca8fbcb5e2262b707d2661f860356ee", + "9b3c0cd6694483a3ab2bbe760885499d78bab43d", [ null, { @@ -697655,7 +723959,7 @@ ] ], "xhr.http.html": [ - "9069ca99241fbb96169425a3ca09c50501b4d949", + "35aafae708e1c301f38ecc83f036f5f3afd9ccc0", [ null, { @@ -697664,9 +723968,9 @@ ] ] }, - "strict-origin": { + "no-referrer": { "a-tag.http.html": [ - "5f24860f1752ea9482158111f839085315e21081", + "36341adda3934cc6479892abec0386fa22b6e009", [ null, { @@ -697675,7 +723979,7 @@ ] ], "fetch.http.html": [ - "75e1bac179008804ae1b309a65cd7c4a850583be", + "25451f4dde48cdb67d9f672ee1ed2d78a40aebe8", [ null, { @@ -697684,7 +723988,7 @@ ] ], "iframe-tag.http.html": [ - "8e40188f6c96725f23f92ccf410c59c489e957ea", + "c61d37eaf47591bc4139595daf669b70471ddfd2", [ null, { @@ -697693,7 +723997,7 @@ ] ], "img-tag.http.html": [ - "21013c61e48edb361662cd0231005c255edf4a71", + "11da083b28a5b6694693f4868d4b000593147c1b", [ null, { @@ -697702,7 +724006,7 @@ ] ], "script-tag.http.html": [ - "3e542dbb59a79efd10d6a95c8c82a0488cbab1f6", + "2212cb9a0cfe5bcdc478c33738bda8567d2a8c41", [ null, { @@ -697711,7 +724015,7 @@ ] ], "sharedworker-classic.http.html": [ - "d10a631c99cbcc13a2d1296fcc6b1e4f0843a8cd", + "8a740cf7b03e5f84dbcc8aa64b37f637ba2c19f8", [ null, { @@ -697720,7 +724024,7 @@ ] ], "sharedworker-module.http.html": [ - "5bd7631966481dbc4b146802f3d8ea219756cf88", + "b09570e831a1f4b20b9e85563aebc66f2fdf7e9f", [ null, { @@ -697729,7 +724033,7 @@ ] ], "worker-classic.http.html": [ - "3a901d4df9a4740e14c7c36c57eeb88366764c66", + "4c2dafd3b127bd5a251961ff4565139c8b7a5a34", [ null, { @@ -697738,7 +724042,7 @@ ] ], "worker-module.http.html": [ - "35cbe42e1cc004573b59212f3d7c6fb68eaedbf2", + "140ea2da6fb59be09decde81a0a15820e35c55dc", [ null, { @@ -697747,7 +724051,7 @@ ] ], "xhr.http.html": [ - "0e691f80797f333946fa11e43a7aee8c13f72292", + "1bbb9c5c75fd5535d032d8eaa27e79d11d8ef5aa", [ null, { @@ -697756,9 +724060,9 @@ ] ] }, - "strict-origin-when-cross-origin": { + "no-referrer-when-downgrade": { "a-tag.http.html": [ - "6ed5f3bb75a70f3c50d561e2754be668e759b3dd", + "221717fd510c6a2d4d2f94cb9cac830921824a10", [ null, { @@ -697767,7 +724071,7 @@ ] ], "fetch.http.html": [ - "6ce6800ed1b9b115568b2b82d8441dc8a155bc8e", + "bacd1b78760c7d9c44cb46b9a6f2f66d4ea8b456", [ null, { @@ -697776,7 +724080,7 @@ ] ], "iframe-tag.http.html": [ - "6a0c5286868a995f734ccf858dad0fb9ecfbee8b", + "c9932cc82f612d15d3151810d911aa4555ee83ac", [ null, { @@ -697785,7 +724089,7 @@ ] ], "img-tag.http.html": [ - "aed278716d11050df1124381db7bb6bac6fc5d16", + "e67ff90d542d844b78e87539c4107071cdde3219", [ null, { @@ -697794,7 +724098,7 @@ ] ], "script-tag.http.html": [ - "74212a61fb82e4185af401cc1ae19bbee2f12180", + "d54ad3eadf41060c2789ff9bdd9f40071816f942", [ null, { @@ -697803,7 +724107,7 @@ ] ], "sharedworker-classic.http.html": [ - "de1c533bfc83394acb6b52de86b23da31429d462", + "28926c71a5f7c4f3fbff060c53a0535c22c697a9", [ null, { @@ -697812,7 +724116,7 @@ ] ], "sharedworker-module.http.html": [ - "c088ac04d7f3359b4146dd8e73c1227871e6f4c3", + "ab6f539a516bf318ca43fd9520971c133cb0fff6", [ null, { @@ -697821,7 +724125,7 @@ ] ], "worker-classic.http.html": [ - "8433c4d9df9afdf0992b5e879346edd24c2ee910", + "8585ad3ea9bb49d64acefe2aa4630510291b3643", [ null, { @@ -697830,7 +724134,7 @@ ] ], "worker-module.http.html": [ - "bc0657d31ca8fbcb5e2262b707d2661f860356ee", + "2e7c9f55db28ae3f9e882c3bc2870d6c27ecfa8b", [ null, { @@ -697839,7 +724143,7 @@ ] ], "xhr.http.html": [ - "a54c8dec65e665c588931ca7795bd998754ecf47", + "839ddcd54fde0e3ad80666fd3a69da4b7ba8f46c", [ null, { @@ -697848,9 +724152,9 @@ ] ] }, - "unsafe-url": { + "origin": { "a-tag.http.html": [ - "c00ba92de5c6e36984862ad0b5a182ff98dc3d0e", + "fa1c52d316bd0d8381e54619f23885b61006048e", [ null, { @@ -697859,7 +724163,7 @@ ] ], "fetch.http.html": [ - "ed3bc61f01861c675907bbda28afc1e2e0aee24c", + "76f74a45ed9bb08aa360bc236b40fa2d3a73a841", [ null, { @@ -697868,7 +724172,7 @@ ] ], "iframe-tag.http.html": [ - "a4fb7d8629b47146ed541ab93d3f2cb7761eaee1", + "ac0d2d4b5a3f520296835b4d9a53e9a6e0e5566e", [ null, { @@ -697877,7 +724181,7 @@ ] ], "img-tag.http.html": [ - "948089af7e88852d479077fc6cac2ca6aa60f763", + "ffb9942b436df09d48c991c669c69a2887cd5f00", [ null, { @@ -697886,7 +724190,7 @@ ] ], "script-tag.http.html": [ - "5d152c996afe5a398e751d2c69867a393df120ef", + "6ecc61936ec14c314667f8899eee9c7fec7b3000", [ null, { @@ -697895,7 +724199,7 @@ ] ], "sharedworker-classic.http.html": [ - "de1c533bfc83394acb6b52de86b23da31429d462", + "aef03a07589a3469bec443bd18babf6aec9e2d51", [ null, { @@ -697904,7 +724208,7 @@ ] ], "sharedworker-module.http.html": [ - "c088ac04d7f3359b4146dd8e73c1227871e6f4c3", + "d75fc7ba6bfb057b03c6e349d9d6489ba5771531", [ null, { @@ -697913,7 +724217,7 @@ ] ], "worker-classic.http.html": [ - "8433c4d9df9afdf0992b5e879346edd24c2ee910", + "9536f2d30782d72e91a0edfdf38aaf3b2c112b74", [ null, { @@ -697922,7 +724226,7 @@ ] ], "worker-module.http.html": [ - "bc0657d31ca8fbcb5e2262b707d2661f860356ee", + "51bf5ca950bad32f1328363df64c059f16bbf973", [ null, { @@ -697931,7 +724235,7 @@ ] ], "xhr.http.html": [ - "20d3eb1ff827a4b3916b756529ded620418fbe32", + "956e6529aa1d8e3e23c334b80c9cbd100d7b3899", [ null, { @@ -697940,9 +724244,9 @@ ] ] }, - "unset": { + "origin-when-cross-origin": { "a-tag.http.html": [ - "6ed5f3bb75a70f3c50d561e2754be668e759b3dd", + "55edcd9de872c9e1ba7659fd1a87c17c76f1ef5d", [ null, { @@ -697951,7 +724255,7 @@ ] ], "fetch.http.html": [ - "6ce6800ed1b9b115568b2b82d8441dc8a155bc8e", + "d84f175f91f69e5d5e639a736f14cfcb6ff10d28", [ null, { @@ -697960,7 +724264,7 @@ ] ], "iframe-tag.http.html": [ - "6a0c5286868a995f734ccf858dad0fb9ecfbee8b", + "4ca1c6a989ae883f2f6d21497262a8f47f44aacc", [ null, { @@ -697969,7 +724273,7 @@ ] ], "img-tag.http.html": [ - "aed278716d11050df1124381db7bb6bac6fc5d16", + "844c4ae4b29ab8ffb481345e511d3fe379eb641a", [ null, { @@ -697978,7 +724282,7 @@ ] ], "script-tag.http.html": [ - "74212a61fb82e4185af401cc1ae19bbee2f12180", + "51bf97a69fb7cac387dbd06aa9f64cd7b7df584e", [ null, { @@ -697987,7 +724291,7 @@ ] ], "sharedworker-classic.http.html": [ - "de1c533bfc83394acb6b52de86b23da31429d462", + "13c6acdcf1651540858e8552a22fefcb0d84f0fd", [ null, { @@ -697996,7 +724300,7 @@ ] ], "sharedworker-module.http.html": [ - "c088ac04d7f3359b4146dd8e73c1227871e6f4c3", + "fdd5278b6bf16462ae2a365b6ac742f711adf37a", [ null, { @@ -698005,7 +724309,7 @@ ] ], "worker-classic.http.html": [ - "8433c4d9df9afdf0992b5e879346edd24c2ee910", + "a76af7cc30144e750548845c83f525ceee9ccbe2", [ null, { @@ -698014,7 +724318,7 @@ ] ], "worker-module.http.html": [ - "bc0657d31ca8fbcb5e2262b707d2661f860356ee", + "068d2cbc939500dd89c4a2190807e7f4a3ffa730", [ null, { @@ -698023,7 +724327,7 @@ ] ], "xhr.http.html": [ - "a54c8dec65e665c588931ca7795bd998754ecf47", + "f30c2049497f1cc06c8d4623d8ecd6e3d5b496c7", [ null, { @@ -698031,12 +724335,10 @@ } ] ] - } - }, - "srcdoc-inherit.meta": { - "always": { + }, + "origin-when-crossorigin": { "a-tag.http.html": [ - "820d4cf0ec94f8ce79e5866076ae3211d0a667ad", + "c264ee5ff47ebb2750976b30b57aac96a47d5301", [ null, { @@ -698045,7 +724347,7 @@ ] ], "fetch.http.html": [ - "1fcc0e5006fd11e343d67ea20eff8107bccea7bc", + "4c243cf5384b0331289dad294ada87d288547bcb", [ null, { @@ -698054,7 +724356,7 @@ ] ], "iframe-tag.http.html": [ - "7f28cc13daa0257414a8b08e9fe857135f2cb03b", + "36133bbfa8b00aa513e88c8485d4ff7d8330f190", [ null, { @@ -698063,7 +724365,7 @@ ] ], "img-tag.http.html": [ - "eb2d519ce5d0740feb52ff940355862581916090", + "5fd23123a7fd071817013d3df3aa1e9e635d7363", [ null, { @@ -698072,7 +724374,7 @@ ] ], "script-tag.http.html": [ - "1167cfd12545b3c2c8d8c235a7e3ab4163871ac5", + "3be6fef86153195a7b1186eeda056dfe8fb9e9ca", [ null, { @@ -698081,7 +724383,7 @@ ] ], "sharedworker-classic.http.html": [ - "67972ef771e972ff3853b444b1bcafe0aaaf8240", + "c4644eefc4154ee72aa1e23ab47d40900ea02b94", [ null, { @@ -698090,7 +724392,7 @@ ] ], "sharedworker-module.http.html": [ - "ee76c6c1229ad9a5a4d82799ae8c0fb75786a00b", + "4b56d2ed149e41b2f82b6b77573a5f46dff57698", [ null, { @@ -698099,7 +724401,7 @@ ] ], "worker-classic.http.html": [ - "fe9c6561ba98d6c03d75d09fe01a4571a7d94ec0", + "b6db4e2ab7530d0f5de0db53b82a40545c771bd8", [ null, { @@ -698108,7 +724410,7 @@ ] ], "worker-module.http.html": [ - "f834ecc6ae638d593b09d983f56bc1633d934650", + "ab6e4e7cb51ee795e766ef5e0994feef1dc8278f", [ null, { @@ -698117,7 +724419,7 @@ ] ], "xhr.http.html": [ - "e6bf9e04f99971575479de673dd39878db08483d", + "133191427110bf1b5a4894ac8906eacb245119ec", [ null, { @@ -698126,9 +724428,9 @@ ] ] }, - "default": { + "same-origin": { "a-tag.http.html": [ - "e74fad3b638637afbc31605df55186efbd4148a1", + "f0fc5349fe00094a7c78a4e151fe3858eba902fe", [ null, { @@ -698137,7 +724439,7 @@ ] ], "fetch.http.html": [ - "e71aabe8d628eeadb2ecfa83af5b9f0b19f17c60", + "332e19f9ed7c16d1f341430bff6331ac653586a3", [ null, { @@ -698146,7 +724448,7 @@ ] ], "iframe-tag.http.html": [ - "99cf044f15052315adb3766b90f9dc64daf6f17d", + "656f25018c902324d2db8ce719ed14808e225bae", [ null, { @@ -698155,7 +724457,7 @@ ] ], "img-tag.http.html": [ - "0075dd051c38856beb2f16b1841a7ffc42856ddf", + "acc8899eea75d32823d031dd02da23a9650d8240", [ null, { @@ -698164,7 +724466,7 @@ ] ], "script-tag.http.html": [ - "e0cdcf4ff9cf015612f01d0fda23ad1baa25ed8e", + "de1ca87708ea17257e3b10cc846e1562aef196dc", [ null, { @@ -698173,7 +724475,7 @@ ] ], "sharedworker-classic.http.html": [ - "3351a49e1c95ff8c4150076ea6f6b0169059fbb6", + "23deb789aaf503594b0ae14ae515544faf113918", [ null, { @@ -698182,7 +724484,7 @@ ] ], "sharedworker-module.http.html": [ - "b8d5044bc73476845e92329fe23787b05d8ba062", + "9f43c4f05b32daafd6a303dd5e56ed92cfc59d49", [ null, { @@ -698191,7 +724493,7 @@ ] ], "worker-classic.http.html": [ - "5e3ffcaf235f5e2ee4ac4a2f28f5da93ffcd72a0", + "f67a5bc4c48e4f66bf415a710a99717e7d30df0d", [ null, { @@ -698200,7 +724502,7 @@ ] ], "worker-module.http.html": [ - "1b5a55cdb2b7c52287db7cada9852bce0b9f5ed9", + "0c37eaf6c6ee6c1c8bdf6603080b253224ba4e1c", [ null, { @@ -698209,7 +724511,7 @@ ] ], "xhr.http.html": [ - "0cdbf28b423b2191be9e380b4f2e4151215e761c", + "ff82bc85ebf1601c5814bc8c73518ab6bb9a86ba", [ null, { @@ -698218,9 +724520,9 @@ ] ] }, - "never": { + "strict-origin": { "a-tag.http.html": [ - "7555f25db89523159beb49bf17effc2b8dafe7f8", + "66a0fa808050890e4965df3aaabd4165cfd66d40", [ null, { @@ -698229,7 +724531,7 @@ ] ], "fetch.http.html": [ - "29a849cbbdce5c17e846b7c24ce62b0ed39b4b5f", + "502f76d3651e44963cf59149845aabd0b2ee629d", [ null, { @@ -698238,7 +724540,7 @@ ] ], "iframe-tag.http.html": [ - "d6a0c4f31ca41fa00a4f606486ba75186fa3c8f5", + "bff0a0d8f08f208c91aa72c39bcfa5e82714c0f9", [ null, { @@ -698247,7 +724549,7 @@ ] ], "img-tag.http.html": [ - "b6eef755663fb9c2d2fb5b4dc41caf6cac0c03b1", + "3fee5820256c0f2952f4834531d868681fe79056", [ null, { @@ -698256,7 +724558,7 @@ ] ], "script-tag.http.html": [ - "b9be802312b66e7c7446e7783bfd907736267e4f", + "2ef902cf34d998d8b668b8d26892db9e6863c1dc", [ null, { @@ -698265,7 +724567,7 @@ ] ], "sharedworker-classic.http.html": [ - "1ccc8b7a15309396010903711ebecf19f9746b7b", + "31316408593208fcaa8cb1040187e7fd9042c6f9", [ null, { @@ -698274,7 +724576,7 @@ ] ], "sharedworker-module.http.html": [ - "fd201609c843409545c5d9c87a969ca84366c704", + "8bf2c63bcc375e8bd3e8fa8ac0b2a25dcde7e89b", [ null, { @@ -698283,7 +724585,7 @@ ] ], "worker-classic.http.html": [ - "55357061f76202b3af707b25e4018cecd27ccd3d", + "9b32ab6983ae5a626bef0ebff4935d16f030fc77", [ null, { @@ -698292,7 +724594,7 @@ ] ], "worker-module.http.html": [ - "bf397f451fc8dc43456e114190945346007ac9f9", + "0645126e624a67413af541172f6b73da55489182", [ null, { @@ -698301,7 +724603,7 @@ ] ], "xhr.http.html": [ - "2ef0d4738c694cf9006a51f19c46f793e75bf1b1", + "0734df429b4a441e916f2f561f8f82f32989dd43", [ null, { @@ -698310,9 +724612,9 @@ ] ] }, - "no-referrer": { + "strict-origin-when-cross-origin": { "a-tag.http.html": [ - "36beb5760f365b0ca778012ced1cab5a62ef6cc2", + "d3a807c97a04714c3b42b2dc933db37638f99046", [ null, { @@ -698321,7 +724623,7 @@ ] ], "fetch.http.html": [ - "ed6e1c7e0cd19514cd5d2147f6459f1b2df93427", + "0e866479cc754411ba35233f53590e0d80a08e03", [ null, { @@ -698330,7 +724632,7 @@ ] ], "iframe-tag.http.html": [ - "edd06e5c027422cfc8138425014652fae7c35110", + "0f9000679df0df5d3031b89ec16a5fb0cbb62eb2", [ null, { @@ -698339,7 +724641,7 @@ ] ], "img-tag.http.html": [ - "9395c9307329353e24bc1cae60c587ff018e8acf", + "7bbb7f38b38210fce01b0786fcaf35e3ae701151", [ null, { @@ -698348,7 +724650,7 @@ ] ], "script-tag.http.html": [ - "0d253b26ea76c83db1526b448b78df5e257b88bc", + "efeef07ca5862c7c24c172c0fd7ff18a50a437c2", [ null, { @@ -698357,7 +724659,7 @@ ] ], "sharedworker-classic.http.html": [ - "106c33c0af720e04b5a91d1a5c35bbc4a7c61b67", + "64f9fcb3a626455f3b15290a5dbccab9eeb63f36", [ null, { @@ -698366,7 +724668,7 @@ ] ], "sharedworker-module.http.html": [ - "b14eecdd68291c0c4188428af4fd117c9571d83d", + "23751de3e83a1295d2a5c0c651ffa360af997e7d", [ null, { @@ -698375,7 +724677,7 @@ ] ], "worker-classic.http.html": [ - "e939ffff9894fc6018959644cbfa12abe2167744", + "6489b91daf4b86941fe91d211db3519e50abd5c7", [ null, { @@ -698384,7 +724686,7 @@ ] ], "worker-module.http.html": [ - "fb3fba8ef663ccb2216de9c4711a22370b64e6cc", + "1a8b22a9535e6ed5b3495acf2db07c578f20e274", [ null, { @@ -698393,7 +724695,7 @@ ] ], "xhr.http.html": [ - "b8a8134149fddfb7905534494798aea034643022", + "f960bd54559cb727e370b426ce0d3814dc4e9945", [ null, { @@ -698402,9 +724704,9 @@ ] ] }, - "no-referrer-when-downgrade": { + "unsafe-url": { "a-tag.http.html": [ - "f99b8ab03903517154be84d6d7ceb4522b9ad77d", + "ca36059a24a6a00b3a74eea491c46bf114d9d3c1", [ null, { @@ -698413,7 +724715,7 @@ ] ], "fetch.http.html": [ - "b0843010b787a621fd62d768b8e1c61436417fdd", + "401163abef6259ad1f3cdd579c231dd6a48d3f28", [ null, { @@ -698422,7 +724724,7 @@ ] ], "iframe-tag.http.html": [ - "70b6f86033191598f393800bec9635cab4d72a5b", + "403a67545acf23fd47b5165a13acee9b793c8b47", [ null, { @@ -698431,7 +724733,7 @@ ] ], "img-tag.http.html": [ - "5d74b8662e55f97d9027bc244458da181e72dcc2", + "f06a89ddea6f01c9b124fb92cbbc79554ed8a53b", [ null, { @@ -698440,7 +724742,7 @@ ] ], "script-tag.http.html": [ - "9ad1c791693919da38accbda6ebaaa534f4cd89b", + "fba1aa8bcc3b8f6f0902745567a2d0dff5eb475f", [ null, { @@ -698449,7 +724751,7 @@ ] ], "sharedworker-classic.http.html": [ - "3942d10b630c608c2b4621789b0afbdae665c2ee", + "3ba6d7450d2ede9089de1716b674fa1152e47d09", [ null, { @@ -698458,7 +724760,7 @@ ] ], "sharedworker-module.http.html": [ - "b97f3311f81e4933ab06ccca55dee7353cdf482f", + "c535aa1e16596d50910bc960c9f9e6144a662cf9", [ null, { @@ -698467,7 +724769,7 @@ ] ], "worker-classic.http.html": [ - "0cd0c64765e3925a2dd20e464bffd69b11e945df", + "ee2e2a7c6bec681191778cabf1e86214a089381e", [ null, { @@ -698476,7 +724778,7 @@ ] ], "worker-module.http.html": [ - "e163e858d02f533f049d90f73a6f76eb7d43ac4e", + "782cadd666624b7bcb0133323f9a147dc796caf5", [ null, { @@ -698485,7 +724787,7 @@ ] ], "xhr.http.html": [ - "70aee4ec28b381caa02db20a0a860f2913d04457", + "199ced3e5e37514abad80bc4bbd719926450e71d", [ null, { @@ -698493,10 +724795,12 @@ } ] ] - }, - "origin": { + } + }, + "top.http-rp": { + "no-referrer": { "a-tag.http.html": [ - "53d4decc35b27a17b214fa38a7fec8aa8957b8bf", + "29adaac66b741de97c5caa966193b87eb6e0332d", [ null, { @@ -698505,7 +724809,7 @@ ] ], "fetch.http.html": [ - "2bb4704f451c3a45acc1a8d575a73d794ad53851", + "d6ac45a7284e50f8613ae42418188d34946707dc", [ null, { @@ -698514,7 +724818,7 @@ ] ], "iframe-tag.http.html": [ - "97d69ffe1c0d4fff66317bf91788a8c1324daf97", + "d39830b579499cb0d29ed872edef335a863c17e7", [ null, { @@ -698523,7 +724827,16 @@ ] ], "img-tag.http.html": [ - "ba49c9c8ddffb5ad25247ced884e30b409d969c7", + "566c3252ecd190e9aa72d9bc135a9e9285d3fb9f", + [ + null, + { + "timeout": "long" + } + ] + ], + "script-tag-dynamic-import.http.html": [ + "25db2c01155b959af158b21fa2a91defbc860e76", [ null, { @@ -698532,7 +724845,7 @@ ] ], "script-tag.http.html": [ - "d1eb996cc65c7113236a4da9b90e7551e82495dc", + "63e54ba482aeb4cacbfb5affcbf903375160dac0", [ null, { @@ -698541,7 +724854,7 @@ ] ], "sharedworker-classic.http.html": [ - "972f0c050760e6ac3cbdc577595ce30a51ff4254", + "25bbdd1a08d9c2e798938985bb773b2d18d22de3", [ null, { @@ -698550,7 +724863,7 @@ ] ], "sharedworker-module.http.html": [ - "1cbe83cc0a03fd00628d6a8b614b8cc2ef8974f1", + "5845fa807de92a2314a01db396437ada5c60eea9", [ null, { @@ -698559,7 +724872,7 @@ ] ], "worker-classic.http.html": [ - "d90cdc4fbe7d6ba0e55afd33de4b92967b690690", + "7297e57a6458743be21455020020addee3de90f0", [ null, { @@ -698568,7 +724881,7 @@ ] ], "worker-module.http.html": [ - "eb55830303db2ec49edf4c1999eb796d33ac22e1", + "03fb43a1a17d1981678c6aa5c2d807d9f153b663", [ null, { @@ -698577,7 +724890,7 @@ ] ], "xhr.http.html": [ - "3e743c30e3318b2268e527f290779350ab7b3814", + "f80b28b5cbc21bb78378deecb255e400c06a1694", [ null, { @@ -698586,9 +724899,9 @@ ] ] }, - "origin-when-cross-origin": { + "no-referrer-when-downgrade": { "a-tag.http.html": [ - "44879f5d1fc2a3204809373f7b68614cca07ce80", + "67702eb9257a75acb3d597f1389a952e4798b17b", [ null, { @@ -698597,7 +724910,7 @@ ] ], "fetch.http.html": [ - "014222203244162aae9484aa841cf8cfbfe43eba", + "5c2ed3836d14eb8cae305036ed791c8950125c04", [ null, { @@ -698606,7 +724919,7 @@ ] ], "iframe-tag.http.html": [ - "cc80c5b686cb6d28bb22aed04c0da56a286df173", + "26d595fcc6b4311cc36d51b93969d5fa6d7b7f21", [ null, { @@ -698615,7 +724928,16 @@ ] ], "img-tag.http.html": [ - "5aae8d81060aae32aa2e6e3bbbaaa7bab2edfdb9", + "0827ebde9c31f4e101cd611ef7a0376aaac8732f", + [ + null, + { + "timeout": "long" + } + ] + ], + "script-tag-dynamic-import.http.html": [ + "4009fe6a61f95e12761a491450700582a8b5c9ca", [ null, { @@ -698624,7 +724946,7 @@ ] ], "script-tag.http.html": [ - "0cbe39c632cf08d2d06e90121ce5c9a7403e1532", + "c5cad6a0433af93db1321accab35a1c0e1fbd847", [ null, { @@ -698633,7 +724955,7 @@ ] ], "sharedworker-classic.http.html": [ - "6e5f40d54249df8f79c465157704f8609e7745bd", + "1bc6f04b8cc73debbc4f14696c74a3169c57fa60", [ null, { @@ -698642,7 +724964,7 @@ ] ], "sharedworker-module.http.html": [ - "bc8914ff1b7aba68abc1e91accf1948ea2be66bc", + "a24ee872ad7db6918870560a814f9ef970994910", [ null, { @@ -698651,7 +724973,7 @@ ] ], "worker-classic.http.html": [ - "ebbde3683becdc3cdd9769f5dfdfb1e575f5b18e", + "7e6e8f3c5f61bf8f596ca02d8d068a49736cfe19", [ null, { @@ -698660,7 +724982,7 @@ ] ], "worker-module.http.html": [ - "55eb25bc24fe28f15b8ce6c78e5ba1e72609cf65", + "ae453ee0f00ea7897d9ea837d31157c453963796", [ null, { @@ -698669,7 +724991,7 @@ ] ], "xhr.http.html": [ - "d5ecdddf67e4c22d438e71490a4e0736015541c2", + "b3380b89ba3477605a5fa18ea0d4715fe83eebdc", [ null, { @@ -698678,9 +725000,9 @@ ] ] }, - "origin-when-crossorigin": { + "origin": { "a-tag.http.html": [ - "71b8965db0233d060e1fdb06472e23ffe58614c0", + "496521351a1f19336145e7db1392930fca7b1e31", [ null, { @@ -698689,7 +725011,7 @@ ] ], "fetch.http.html": [ - "c1baef7000cd6e1fee4f00571cbc45d209973e46", + "b4d01617390870ea78225f6953c81fb868acafc4", [ null, { @@ -698698,7 +725020,7 @@ ] ], "iframe-tag.http.html": [ - "7a76a2723d59c0c3b82f2df8a68aa2fe60ee9bc0", + "e2eb629831fa0e0905162e5a1d5ca3849032788f", [ null, { @@ -698707,7 +725029,16 @@ ] ], "img-tag.http.html": [ - "689b775fa832d1c8138d8a0834560e3c3db791a4", + "f0c99d563a3bf0fd190846fb3aa64f02cba3c202", + [ + null, + { + "timeout": "long" + } + ] + ], + "script-tag-dynamic-import.http.html": [ + "4e754dcebcd82565720b126b3b9349d7779870f8", [ null, { @@ -698716,7 +725047,7 @@ ] ], "script-tag.http.html": [ - "a8a9b08e9a8904440c31f8d163046ccd49335ba4", + "f41884b6847b0fb1ca7934100d2c84ed6db88ccf", [ null, { @@ -698725,7 +725056,7 @@ ] ], "sharedworker-classic.http.html": [ - "def1c2792259742af893db25838cca4982f791af", + "24eeee8188063457cd558bbaf5ac8e6b1076190d", [ null, { @@ -698734,7 +725065,7 @@ ] ], "sharedworker-module.http.html": [ - "d647061a270461f57b97cf17fef8ea0290469017", + "ff1170a108e1a356a2215add5140f3eb1729e146", [ null, { @@ -698743,7 +725074,7 @@ ] ], "worker-classic.http.html": [ - "413a7923d58135fc8dd5eeff916b26cf37678edd", + "4e9a4c49112d598c1087c9198d016e09114cfdc7", [ null, { @@ -698752,7 +725083,7 @@ ] ], "worker-module.http.html": [ - "710457c5f0eb995a25a8ad67117e409ef4ee78fe", + "57ce11f6f94b83d98c02e271986aef602b8a8750", [ null, { @@ -698761,7 +725092,7 @@ ] ], "xhr.http.html": [ - "b8b6e257bec3b3c5f0a5528d8e3ae0eaebdfa32c", + "e1d6b7a798f3f3d47a411fdaa29ff052bbd9431d", [ null, { @@ -698770,9 +725101,9 @@ ] ] }, - "same-origin": { + "origin-when-cross-origin": { "a-tag.http.html": [ - "121fb003b4b359d05390e18788e03b639ab91682", + "72e159c72e529aa32cc230f40ca467797a5b05be", [ null, { @@ -698781,7 +725112,7 @@ ] ], "fetch.http.html": [ - "9ae62490b427a146261ab2f911d5c567b38f879a", + "1dfb592eebbf2e835eec5ef90657b4dea4a9a6ea", [ null, { @@ -698790,7 +725121,7 @@ ] ], "iframe-tag.http.html": [ - "d197af252e83510ddb1f9338ee4df03ce2b81ce4", + "557d6a532357dd12f993cbcec7a476c25079432e", [ null, { @@ -698799,7 +725130,16 @@ ] ], "img-tag.http.html": [ - "5745f609da29e712c07f0395f0d24ae88e1a1d17", + "3987df15184e3eb6b9595f9f718c8c40bd2c949b", + [ + null, + { + "timeout": "long" + } + ] + ], + "script-tag-dynamic-import.http.html": [ + "6444480eb9c167abbb9b6e86e9a862963b8fa7ee", [ null, { @@ -698808,7 +725148,7 @@ ] ], "script-tag.http.html": [ - "b60fb20b58c7ca1517d35fe740ec3a709b1ed957", + "788c8d04f2b5d90b55fa9077723e8ba66ccd53d0", [ null, { @@ -698817,7 +725157,7 @@ ] ], "sharedworker-classic.http.html": [ - "ef7ecf365293ec65eb16e98875cc45a7a55f7664", + "1bc6f04b8cc73debbc4f14696c74a3169c57fa60", [ null, { @@ -698826,7 +725166,7 @@ ] ], "sharedworker-module.http.html": [ - "001be4af9705fd705c71db0779dbbce0da58b5b7", + "a24ee872ad7db6918870560a814f9ef970994910", [ null, { @@ -698835,7 +725175,7 @@ ] ], "worker-classic.http.html": [ - "58c04ab190584d06826fe359ae9eb66eb7e11cb8", + "7e6e8f3c5f61bf8f596ca02d8d068a49736cfe19", [ null, { @@ -698844,7 +725184,7 @@ ] ], "worker-module.http.html": [ - "32ed0a93dcde4cbe0c636efc3739b7c33c0838ab", + "ae453ee0f00ea7897d9ea837d31157c453963796", [ null, { @@ -698853,7 +725193,7 @@ ] ], "xhr.http.html": [ - "924d350cb5d46614b8e48462b0d2bcdaa3e35b15", + "866577c3366b9f6d809b66c138672ac73690beda", [ null, { @@ -698862,9 +725202,9 @@ ] ] }, - "strict-origin": { + "same-origin": { "a-tag.http.html": [ - "2c14a70c2746b18a243bcbccc69756314f1d5cb6", + "563e63e4a03729d6930a69f040b406a15693e427", [ null, { @@ -698873,7 +725213,7 @@ ] ], "fetch.http.html": [ - "342365da7fa52988158c873d39a7402edaf7971d", + "bc673974f3e491930d5f1af8597b3af42e0b590b", [ null, { @@ -698882,7 +725222,7 @@ ] ], "iframe-tag.http.html": [ - "be4d7494f5d40e7a38c2732f5bd4e453689e7c96", + "50e3b2e755b3fd38a48c6d9bbef3a34bd8783c21", [ null, { @@ -698891,7 +725231,16 @@ ] ], "img-tag.http.html": [ - "94e983555215dc0dc0ad8a4987f0e6808e7bb9a1", + "2f106e6e89310214026268e76265d4072a11c2ff", + [ + null, + { + "timeout": "long" + } + ] + ], + "script-tag-dynamic-import.http.html": [ + "4db1827eb325a809aa84bae37cb0f727a789b0d4", [ null, { @@ -698900,7 +725249,7 @@ ] ], "script-tag.http.html": [ - "4b67d45c7b1055999487a1a4d54c8dd91a51782d", + "edb8136c04521b615c9045cf346c7ce143502b4c", [ null, { @@ -698909,7 +725258,7 @@ ] ], "sharedworker-classic.http.html": [ - "f77d2607ffc5d61c63b155c5356f017adea2199b", + "1bc6f04b8cc73debbc4f14696c74a3169c57fa60", [ null, { @@ -698918,7 +725267,7 @@ ] ], "sharedworker-module.http.html": [ - "e73467fa7afbedda788908bd281a8881370a46a4", + "a24ee872ad7db6918870560a814f9ef970994910", [ null, { @@ -698927,7 +725276,7 @@ ] ], "worker-classic.http.html": [ - "9bcc3ab645a3fc543221163da9bea4e77e04e8eb", + "7e6e8f3c5f61bf8f596ca02d8d068a49736cfe19", [ null, { @@ -698936,7 +725285,7 @@ ] ], "worker-module.http.html": [ - "72e2b97e3b9007e92981a195c7bc3b6a32393953", + "ae453ee0f00ea7897d9ea837d31157c453963796", [ null, { @@ -698945,7 +725294,7 @@ ] ], "xhr.http.html": [ - "793fe211db1729db4281d7ddd6a17329c4b347ca", + "b28d7e378bda9fd5452296869225feb388409cf8", [ null, { @@ -698954,9 +725303,9 @@ ] ] }, - "strict-origin-when-cross-origin": { + "strict-origin": { "a-tag.http.html": [ - "c0daad593b18c0eb3bf4ab27cad6441238949d4f", + "496521351a1f19336145e7db1392930fca7b1e31", [ null, { @@ -698965,7 +725314,7 @@ ] ], "fetch.http.html": [ - "35d7ea426b07106b6b69b346d51498ad9de7a9c9", + "b4d01617390870ea78225f6953c81fb868acafc4", [ null, { @@ -698974,7 +725323,7 @@ ] ], "iframe-tag.http.html": [ - "a7ee5d9e24d9218fdaa566bd45ba25ea3d233079", + "e2eb629831fa0e0905162e5a1d5ca3849032788f", [ null, { @@ -698983,7 +725332,16 @@ ] ], "img-tag.http.html": [ - "c76973736131fc334c2ee39dd91b029f8b464bda", + "f0c99d563a3bf0fd190846fb3aa64f02cba3c202", + [ + null, + { + "timeout": "long" + } + ] + ], + "script-tag-dynamic-import.http.html": [ + "4e754dcebcd82565720b126b3b9349d7779870f8", [ null, { @@ -698992,7 +725350,7 @@ ] ], "script-tag.http.html": [ - "76174d3c217698fd8245b8210f46e384e5eb1b59", + "f41884b6847b0fb1ca7934100d2c84ed6db88ccf", [ null, { @@ -699001,7 +725359,7 @@ ] ], "sharedworker-classic.http.html": [ - "8288d864544660639fc4d4e6c8fa58d253f84852", + "24eeee8188063457cd558bbaf5ac8e6b1076190d", [ null, { @@ -699010,7 +725368,7 @@ ] ], "sharedworker-module.http.html": [ - "57477ebed0e383afe009f9c8e0a50ff0d14d043d", + "ff1170a108e1a356a2215add5140f3eb1729e146", [ null, { @@ -699019,7 +725377,7 @@ ] ], "worker-classic.http.html": [ - "62330f80d023a01f961813dfb6f6f1d7b5b19ffa", + "4e9a4c49112d598c1087c9198d016e09114cfdc7", [ null, { @@ -699028,7 +725386,7 @@ ] ], "worker-module.http.html": [ - "6d3f1993657a07f36954afc0b6db766e54560d61", + "57ce11f6f94b83d98c02e271986aef602b8a8750", [ null, { @@ -699037,7 +725395,7 @@ ] ], "xhr.http.html": [ - "a6829c2b3da724c76619bc0d1a0937c85873ffd3", + "e1d6b7a798f3f3d47a411fdaa29ff052bbd9431d", [ null, { @@ -699046,9 +725404,9 @@ ] ] }, - "unsafe-url": { + "strict-origin-when-cross-origin": { "a-tag.http.html": [ - "3815612c67b481bf6cebee741a925f1aae259dc6", + "72e159c72e529aa32cc230f40ca467797a5b05be", [ null, { @@ -699057,7 +725415,7 @@ ] ], "fetch.http.html": [ - "aee1cef03d2cd2bce2d0739e2d23f92262501c4c", + "1dfb592eebbf2e835eec5ef90657b4dea4a9a6ea", [ null, { @@ -699066,7 +725424,7 @@ ] ], "iframe-tag.http.html": [ - "f978f5348553d4bb6194c76dab79636b919389a9", + "557d6a532357dd12f993cbcec7a476c25079432e", [ null, { @@ -699075,7 +725433,16 @@ ] ], "img-tag.http.html": [ - "df369004aca1bb0a8117c3aeb4e44cf80ae930b9", + "3987df15184e3eb6b9595f9f718c8c40bd2c949b", + [ + null, + { + "timeout": "long" + } + ] + ], + "script-tag-dynamic-import.http.html": [ + "6444480eb9c167abbb9b6e86e9a862963b8fa7ee", [ null, { @@ -699084,7 +725451,7 @@ ] ], "script-tag.http.html": [ - "62b04cd422aca23447bfa5968409235e249475a1", + "788c8d04f2b5d90b55fa9077723e8ba66ccd53d0", [ null, { @@ -699093,7 +725460,7 @@ ] ], "sharedworker-classic.http.html": [ - "4403317863581cc5f457d38bd94d8dd219837ecb", + "1bc6f04b8cc73debbc4f14696c74a3169c57fa60", [ null, { @@ -699102,7 +725469,7 @@ ] ], "sharedworker-module.http.html": [ - "c6b1d19175dd1c790f9c2631cdcfc2124e082929", + "a24ee872ad7db6918870560a814f9ef970994910", [ null, { @@ -699111,7 +725478,7 @@ ] ], "worker-classic.http.html": [ - "9a10d868f1e934539ac183fa7bdd67d76016b84b", + "7e6e8f3c5f61bf8f596ca02d8d068a49736cfe19", [ null, { @@ -699120,7 +725487,7 @@ ] ], "worker-module.http.html": [ - "8625bc2be3de23b40ccd5f14b0b5460426e3c96c", + "ae453ee0f00ea7897d9ea837d31157c453963796", [ null, { @@ -699129,7 +725496,7 @@ ] ], "xhr.http.html": [ - "b5e6906ca41009651f55f660dcfdf369a258fb3e", + "866577c3366b9f6d809b66c138672ac73690beda", [ null, { @@ -699138,9 +725505,9 @@ ] ] }, - "unset": { + "unsafe-url": { "a-tag.http.html": [ - "6ed5f3bb75a70f3c50d561e2754be668e759b3dd", + "67702eb9257a75acb3d597f1389a952e4798b17b", [ null, { @@ -699149,7 +725516,7 @@ ] ], "fetch.http.html": [ - "6ce6800ed1b9b115568b2b82d8441dc8a155bc8e", + "5c2ed3836d14eb8cae305036ed791c8950125c04", [ null, { @@ -699158,7 +725525,7 @@ ] ], "iframe-tag.http.html": [ - "6a0c5286868a995f734ccf858dad0fb9ecfbee8b", + "26d595fcc6b4311cc36d51b93969d5fa6d7b7f21", [ null, { @@ -699167,7 +725534,16 @@ ] ], "img-tag.http.html": [ - "aed278716d11050df1124381db7bb6bac6fc5d16", + "0827ebde9c31f4e101cd611ef7a0376aaac8732f", + [ + null, + { + "timeout": "long" + } + ] + ], + "script-tag-dynamic-import.http.html": [ + "4009fe6a61f95e12761a491450700582a8b5c9ca", [ null, { @@ -699176,7 +725552,7 @@ ] ], "script-tag.http.html": [ - "74212a61fb82e4185af401cc1ae19bbee2f12180", + "c5cad6a0433af93db1321accab35a1c0e1fbd847", [ null, { @@ -699185,7 +725561,7 @@ ] ], "sharedworker-classic.http.html": [ - "de1c533bfc83394acb6b52de86b23da31429d462", + "1bc6f04b8cc73debbc4f14696c74a3169c57fa60", [ null, { @@ -699194,7 +725570,7 @@ ] ], "sharedworker-module.http.html": [ - "c088ac04d7f3359b4146dd8e73c1227871e6f4c3", + "a24ee872ad7db6918870560a814f9ef970994910", [ null, { @@ -699203,7 +725579,7 @@ ] ], "worker-classic.http.html": [ - "8433c4d9df9afdf0992b5e879346edd24c2ee910", + "7e6e8f3c5f61bf8f596ca02d8d068a49736cfe19", [ null, { @@ -699212,7 +725588,7 @@ ] ], "worker-module.http.html": [ - "bc0657d31ca8fbcb5e2262b707d2661f860356ee", + "ae453ee0f00ea7897d9ea837d31157c453963796", [ null, { @@ -699221,7 +725597,7 @@ ] ], "xhr.http.html": [ - "a54c8dec65e665c588931ca7795bd998754ecf47", + "b3380b89ba3477605a5fa18ea0d4715fe83eebdc", [ null, { @@ -699229,12 +725605,10 @@ } ] ] - } - }, - "srcdoc.meta": { - "always": { + }, + "unset": { "a-tag.http.html": [ - "389e3ecba19129e14bc172bb8dd2e2334c046aa6", + "72e159c72e529aa32cc230f40ca467797a5b05be", [ null, { @@ -699243,7 +725617,7 @@ ] ], "fetch.http.html": [ - "2352a0432884a5e1782d18179262656a411ab9dd", + "1dfb592eebbf2e835eec5ef90657b4dea4a9a6ea", [ null, { @@ -699252,7 +725626,7 @@ ] ], "iframe-tag.http.html": [ - "c7db0ab2d750fc7005863bbb9d1e6fa4eacef135", + "557d6a532357dd12f993cbcec7a476c25079432e", [ null, { @@ -699261,7 +725635,16 @@ ] ], "img-tag.http.html": [ - "504f37265582cc0f477d7bf2aae7162aff12c350", + "3987df15184e3eb6b9595f9f718c8c40bd2c949b", + [ + null, + { + "timeout": "long" + } + ] + ], + "script-tag-dynamic-import.http.html": [ + "6444480eb9c167abbb9b6e86e9a862963b8fa7ee", [ null, { @@ -699270,7 +725653,7 @@ ] ], "script-tag.http.html": [ - "5380552ea29f53852bb2e027da85a3ffd972c1bb", + "788c8d04f2b5d90b55fa9077723e8ba66ccd53d0", [ null, { @@ -699279,7 +725662,7 @@ ] ], "sharedworker-classic.http.html": [ - "78e8e125f75f4c735f54e23b3d9c0a8a0b3cc81b", + "1bc6f04b8cc73debbc4f14696c74a3169c57fa60", [ null, { @@ -699288,7 +725671,7 @@ ] ], "sharedworker-module.http.html": [ - "c817b75c556183715edc35657a537854ca0de84e", + "a24ee872ad7db6918870560a814f9ef970994910", [ null, { @@ -699297,7 +725680,7 @@ ] ], "worker-classic.http.html": [ - "32ef8f4d4ca0e03b1d51a386b0945280cb101a4a", + "7e6e8f3c5f61bf8f596ca02d8d068a49736cfe19", [ null, { @@ -699306,7 +725689,7 @@ ] ], "worker-module.http.html": [ - "79edc13536fd03d6e56a531eec54a6804a607788", + "ae453ee0f00ea7897d9ea837d31157c453963796", [ null, { @@ -699315,7 +725698,7 @@ ] ], "xhr.http.html": [ - "441a1112a083ab4f816c54749e46c2cc82d1b8ee", + "866577c3366b9f6d809b66c138672ac73690beda", [ null, { @@ -699323,10 +725706,12 @@ } ] ] - }, - "default": { + } + }, + "top.meta": { + "always": { "a-tag.http.html": [ - "19afee22424e2e81aa4e0d6254345f9a914b60bb", + "574b17a7cdd9a6e7b0d68dd51e04beaa30c6c035", [ null, { @@ -699335,7 +725720,7 @@ ] ], "fetch.http.html": [ - "0c2181a8562bd8a96eac7ff851c9860c4506a059", + "7554f25fc1dbcb93f6ae55262efef9d0b622afa9", [ null, { @@ -699344,7 +725729,7 @@ ] ], "iframe-tag.http.html": [ - "26b0e4a658ae099332ef3d7eec2906469a5257d2", + "0461b5642736a4373714ccf4266e8329fd0e6e3e", [ null, { @@ -699353,7 +725738,16 @@ ] ], "img-tag.http.html": [ - "2abc493c05994b297fe1a0feef1ac586cc6787c6", + "e211a9cc871959ff2f35e09cddd786fc43a889a4", + [ + null, + { + "timeout": "long" + } + ] + ], + "script-tag-dynamic-import.http.html": [ + "fb77c5b7797f2400301912a4bbaa660c34195ebf", [ null, { @@ -699362,7 +725756,7 @@ ] ], "script-tag.http.html": [ - "145f663261f9fb9866d77c8b87267bdcd0b0b84a", + "d9de64e1d77e5b969d4441039fd6ada4ccd7500b", [ null, { @@ -699371,7 +725765,7 @@ ] ], "sharedworker-classic.http.html": [ - "5604a6fce3dde9c28dee5f240d930833c26e1e22", + "45c5bc545612b71a4e625117a15e6706bf98aa2f", [ null, { @@ -699380,7 +725774,7 @@ ] ], "sharedworker-module.http.html": [ - "a9a56210541a93c71bb20ef51f1928e7cffecca4", + "22950273afd8627897c771cd7bb5c17bf9150d73", [ null, { @@ -699389,7 +725783,7 @@ ] ], "worker-classic.http.html": [ - "08ed5a397b2fbc8dff65fab1f7e90e7dce598e63", + "ac59c72ddba927e39890dca3b60297fae44c393d", [ null, { @@ -699398,7 +725792,7 @@ ] ], "worker-module.http.html": [ - "ab2aeae082eeea0d0bf2d72b514ea87cec376a58", + "1a7d3aa9f984f52461d33fbdfa88eaa98c2ca943", [ null, { @@ -699407,7 +725801,7 @@ ] ], "xhr.http.html": [ - "5ec19a8698e125ff58b76fcdac1cca3fdfefe17f", + "db12bea102f77a4137e1b8d7dd9d46ab1e95019e", [ null, { @@ -699416,9 +725810,9 @@ ] ] }, - "never": { + "default": { "a-tag.http.html": [ - "b8cdba4dbe98c3004bac126639336c89089b56e9", + "21b191652bb1a22f9a9bc66063695e2b1227251d", [ null, { @@ -699427,7 +725821,7 @@ ] ], "fetch.http.html": [ - "96e65d42a2f86f6515ecd8ca683f195cf3703ecf", + "d772f9fb8bfd2fe3bc2e548ca59755948d0ecf94", [ null, { @@ -699436,7 +725830,7 @@ ] ], "iframe-tag.http.html": [ - "ce657629a81ad01602d32d8e69b88f7427516950", + "b71966f54ca89b1b4b687a6e3cbb39fa80ba8cd3", [ null, { @@ -699445,7 +725839,16 @@ ] ], "img-tag.http.html": [ - "2fc2cfd0e71d18eb6a585b75af3a6bef8b0fc158", + "937aaf515c90379ff65e08d6c36fb31d8d7dfd6e", + [ + null, + { + "timeout": "long" + } + ] + ], + "script-tag-dynamic-import.http.html": [ + "b2372322d1871339049e61a76460841d0a95c516", [ null, { @@ -699454,7 +725857,7 @@ ] ], "script-tag.http.html": [ - "f4c437a29bafa0500c083d2e81efc50c77050c59", + "2795b8a9abd994f0f36f8ab1dc3a02bdfc799a43", [ null, { @@ -699463,7 +725866,7 @@ ] ], "sharedworker-classic.http.html": [ - "8e7eeec0d0d98a32cff17d7209834dd041bfef76", + "a5dec50421bd1f2c6111da792342d7f246fe929e", [ null, { @@ -699472,7 +725875,7 @@ ] ], "sharedworker-module.http.html": [ - "89305f679b4ef8ef3fff4e74ec245ad7c31a2e6d", + "8dcac3557f36e07b14269d34f73abf09bb6fb0b8", [ null, { @@ -699481,7 +725884,7 @@ ] ], "worker-classic.http.html": [ - "7ac7de7d8a48c73a736487474148f122d01e83c2", + "10752b889f9cdf414bf60a0286d9bdb7b2cb5650", [ null, { @@ -699490,7 +725893,7 @@ ] ], "worker-module.http.html": [ - "9b3c0cd6694483a3ab2bbe760885499d78bab43d", + "b908f84497dde0c0913be26dd365c1f3ff70dc81", [ null, { @@ -699499,7 +725902,7 @@ ] ], "xhr.http.html": [ - "35aafae708e1c301f38ecc83f036f5f3afd9ccc0", + "0dd95ca5844aa887411433c01a37cd7be27aa128", [ null, { @@ -699508,9 +725911,9 @@ ] ] }, - "no-referrer": { + "never": { "a-tag.http.html": [ - "36341adda3934cc6479892abec0386fa22b6e009", + "f15738fa3eb993661948ee53d9c637832fe3614e", [ null, { @@ -699519,7 +725922,7 @@ ] ], "fetch.http.html": [ - "25451f4dde48cdb67d9f672ee1ed2d78a40aebe8", + "fc15d5f7f3b751b9bfdab24b918739b1e5382a71", [ null, { @@ -699528,7 +725931,7 @@ ] ], "iframe-tag.http.html": [ - "c61d37eaf47591bc4139595daf669b70471ddfd2", + "2932078a7be53f218728ec288e8f8df17be3cbdb", [ null, { @@ -699537,7 +725940,16 @@ ] ], "img-tag.http.html": [ - "11da083b28a5b6694693f4868d4b000593147c1b", + "6a69539224aecbd8786593d4e160bf44cfc74cea", + [ + null, + { + "timeout": "long" + } + ] + ], + "script-tag-dynamic-import.http.html": [ + "1b33d88ee797110a5542af91b6a0238ed1544fc0", [ null, { @@ -699546,7 +725958,7 @@ ] ], "script-tag.http.html": [ - "2212cb9a0cfe5bcdc478c33738bda8567d2a8c41", + "b30b9c8e2889b9cf97c3e2fedffb11e280b78a7d", [ null, { @@ -699555,7 +725967,7 @@ ] ], "sharedworker-classic.http.html": [ - "8a740cf7b03e5f84dbcc8aa64b37f637ba2c19f8", + "38f9a5f051bc5e0e9d657233d5e0f0ec425ae62f", [ null, { @@ -699564,7 +725976,7 @@ ] ], "sharedworker-module.http.html": [ - "b09570e831a1f4b20b9e85563aebc66f2fdf7e9f", + "55e8cec205ad25a9213ab7c712b280993337a07e", [ null, { @@ -699573,7 +725985,7 @@ ] ], "worker-classic.http.html": [ - "4c2dafd3b127bd5a251961ff4565139c8b7a5a34", + "bfcc6f6ab286feb2f4658f2c4b7924ca0c426a13", [ null, { @@ -699582,7 +725994,7 @@ ] ], "worker-module.http.html": [ - "140ea2da6fb59be09decde81a0a15820e35c55dc", + "57330eaa0200e0f9752e24a3662257f18a0a6ff5", [ null, { @@ -699591,7 +726003,7 @@ ] ], "xhr.http.html": [ - "1bbb9c5c75fd5535d032d8eaa27e79d11d8ef5aa", + "98ea3ff25a38f79ba8e1cc2239b46b69ed4b7fc5", [ null, { @@ -699600,9 +726012,9 @@ ] ] }, - "no-referrer-when-downgrade": { + "no-referrer": { "a-tag.http.html": [ - "221717fd510c6a2d4d2f94cb9cac830921824a10", + "3760f51c6d3efde7717ac8311d7ae8808e2eeea9", [ null, { @@ -699611,7 +726023,7 @@ ] ], "fetch.http.html": [ - "bacd1b78760c7d9c44cb46b9a6f2f66d4ea8b456", + "046e853074e22df1f4e719e95944b8352dcc81ea", [ null, { @@ -699620,7 +726032,7 @@ ] ], "iframe-tag.http.html": [ - "c9932cc82f612d15d3151810d911aa4555ee83ac", + "3954e67fffb0aff5092047dd83a7a6fec15fea7b", [ null, { @@ -699629,7 +726041,16 @@ ] ], "img-tag.http.html": [ - "e67ff90d542d844b78e87539c4107071cdde3219", + "e3720a2df7e387c7ddb5724fd175783490f72add", + [ + null, + { + "timeout": "long" + } + ] + ], + "script-tag-dynamic-import.http.html": [ + "5eaba98c26ac6cc053143d996d8eb2f97f7dac4a", [ null, { @@ -699638,7 +726059,7 @@ ] ], "script-tag.http.html": [ - "d54ad3eadf41060c2789ff9bdd9f40071816f942", + "0bb90ddc53891b8045f1f3979f1eaade157a12ee", [ null, { @@ -699647,7 +726068,7 @@ ] ], "sharedworker-classic.http.html": [ - "28926c71a5f7c4f3fbff060c53a0535c22c697a9", + "b0a58ec0711b37fa7fdf0c6a2c22de894cf1026f", [ null, { @@ -699656,7 +726077,7 @@ ] ], "sharedworker-module.http.html": [ - "ab6f539a516bf318ca43fd9520971c133cb0fff6", + "0de18a801ebe9b6521776959dff3c877efce13d5", [ null, { @@ -699665,7 +726086,7 @@ ] ], "worker-classic.http.html": [ - "8585ad3ea9bb49d64acefe2aa4630510291b3643", + "61ef7547b3260a92e6ada13bcb9ed6ba440d37af", [ null, { @@ -699674,7 +726095,7 @@ ] ], "worker-module.http.html": [ - "2e7c9f55db28ae3f9e882c3bc2870d6c27ecfa8b", + "b90c47fb4a9a7588f218af28fcbd021a26956172", [ null, { @@ -699683,7 +726104,7 @@ ] ], "xhr.http.html": [ - "839ddcd54fde0e3ad80666fd3a69da4b7ba8f46c", + "365ae53ee9efa66323bd32a60d083627196f198c", [ null, { @@ -699692,9 +726113,9 @@ ] ] }, - "origin": { + "no-referrer-when-downgrade": { "a-tag.http.html": [ - "fa1c52d316bd0d8381e54619f23885b61006048e", + "053832d237da6e2ad04a9be037789d4b68c928fd", [ null, { @@ -699703,7 +726124,7 @@ ] ], "fetch.http.html": [ - "76f74a45ed9bb08aa360bc236b40fa2d3a73a841", + "fbff2ccc7dce0fac2cb2ba1fecc52f3ee40d3eba", [ null, { @@ -699712,7 +726133,7 @@ ] ], "iframe-tag.http.html": [ - "ac0d2d4b5a3f520296835b4d9a53e9a6e0e5566e", + "94de097619e65500fd1b1ddc14b214407fc681d4", [ null, { @@ -699721,7 +726142,16 @@ ] ], "img-tag.http.html": [ - "ffb9942b436df09d48c991c669c69a2887cd5f00", + "87ed2485e47fc94441c1426a28518a33b691384d", + [ + null, + { + "timeout": "long" + } + ] + ], + "script-tag-dynamic-import.http.html": [ + "5b00e927c498a754d3c271b83e7f29250f44b82f", [ null, { @@ -699730,7 +726160,7 @@ ] ], "script-tag.http.html": [ - "6ecc61936ec14c314667f8899eee9c7fec7b3000", + "b32b60eee9626eeff3a609e81c913acda77224e7", [ null, { @@ -699739,7 +726169,7 @@ ] ], "sharedworker-classic.http.html": [ - "aef03a07589a3469bec443bd18babf6aec9e2d51", + "c72386a4e6a0d5dd8ae6b415314b21f2ca951983", [ null, { @@ -699748,7 +726178,7 @@ ] ], "sharedworker-module.http.html": [ - "d75fc7ba6bfb057b03c6e349d9d6489ba5771531", + "1fb406cc8764b51569fb80b0a1dc48cfbdcfbe06", [ null, { @@ -699757,7 +726187,7 @@ ] ], "worker-classic.http.html": [ - "9536f2d30782d72e91a0edfdf38aaf3b2c112b74", + "56acecdca830488b513ab119b1849f59788be253", [ null, { @@ -699766,7 +726196,7 @@ ] ], "worker-module.http.html": [ - "51bf5ca950bad32f1328363df64c059f16bbf973", + "5ee0a331cc2eac668193043a84a6fbedeb815359", [ null, { @@ -699775,7 +726205,7 @@ ] ], "xhr.http.html": [ - "956e6529aa1d8e3e23c334b80c9cbd100d7b3899", + "ba439701ab41ccfb5dd41562ea2a0b0250580cc2", [ null, { @@ -699784,9 +726214,9 @@ ] ] }, - "origin-when-cross-origin": { + "origin": { "a-tag.http.html": [ - "55edcd9de872c9e1ba7659fd1a87c17c76f1ef5d", + "9eed6b4cc568078e9330300a30c3f4b9c89c25fc", [ null, { @@ -699795,7 +726225,7 @@ ] ], "fetch.http.html": [ - "d84f175f91f69e5d5e639a736f14cfcb6ff10d28", + "9e0eb9df863c12f0794d3f631294c513d7ed3b68", [ null, { @@ -699804,7 +726234,7 @@ ] ], "iframe-tag.http.html": [ - "4ca1c6a989ae883f2f6d21497262a8f47f44aacc", + "b2de0586e5c38a1bb2f3e8c8d659574e2990ccc2", [ null, { @@ -699813,7 +726243,16 @@ ] ], "img-tag.http.html": [ - "844c4ae4b29ab8ffb481345e511d3fe379eb641a", + "0be153073e4377ab13888371aed60b822955010f", + [ + null, + { + "timeout": "long" + } + ] + ], + "script-tag-dynamic-import.http.html": [ + "9f7dd3db604541b1da286efdb1a394a4e357e756", [ null, { @@ -699822,7 +726261,7 @@ ] ], "script-tag.http.html": [ - "51bf97a69fb7cac387dbd06aa9f64cd7b7df584e", + "1dd703daa8de27de1bdf962975e07593a338a5d8", [ null, { @@ -699831,7 +726270,7 @@ ] ], "sharedworker-classic.http.html": [ - "13c6acdcf1651540858e8552a22fefcb0d84f0fd", + "f05f62a46b1e24eecc3b0538623def86cef4ebd5", [ null, { @@ -699840,7 +726279,7 @@ ] ], "sharedworker-module.http.html": [ - "fdd5278b6bf16462ae2a365b6ac742f711adf37a", + "1d2334f2b726806052029b3a457752e912b91c1e", [ null, { @@ -699849,7 +726288,7 @@ ] ], "worker-classic.http.html": [ - "a76af7cc30144e750548845c83f525ceee9ccbe2", + "f7de83ce5861fc60d275881cee3447df857e6a0c", [ null, { @@ -699858,7 +726297,7 @@ ] ], "worker-module.http.html": [ - "068d2cbc939500dd89c4a2190807e7f4a3ffa730", + "f5d00f8139f6dc0a04f2b8341f1dea000a8c4a35", [ null, { @@ -699867,7 +726306,7 @@ ] ], "xhr.http.html": [ - "f30c2049497f1cc06c8d4623d8ecd6e3d5b496c7", + "ce3c63264f2f1463014e932007014483cafe7494", [ null, { @@ -699876,9 +726315,9 @@ ] ] }, - "origin-when-crossorigin": { + "origin-when-cross-origin": { "a-tag.http.html": [ - "c264ee5ff47ebb2750976b30b57aac96a47d5301", + "c90fbac8471f9a653b29d20ad3751c8fbcca1f8b", [ null, { @@ -699887,7 +726326,7 @@ ] ], "fetch.http.html": [ - "4c243cf5384b0331289dad294ada87d288547bcb", + "026d1127cf79926e0c09b361bc8af290bf1c4f89", [ null, { @@ -699896,7 +726335,7 @@ ] ], "iframe-tag.http.html": [ - "36133bbfa8b00aa513e88c8485d4ff7d8330f190", + "ac41652006d109f35840b5b9aa79f7e6144e998b", [ null, { @@ -699905,7 +726344,16 @@ ] ], "img-tag.http.html": [ - "5fd23123a7fd071817013d3df3aa1e9e635d7363", + "c359cedf9dd7a79ae87ff71bbcd8ea53ba2053c5", + [ + null, + { + "timeout": "long" + } + ] + ], + "script-tag-dynamic-import.http.html": [ + "8bb6d6eba2d03e1d5046d5f229741f9e8b229a5d", [ null, { @@ -699914,7 +726362,7 @@ ] ], "script-tag.http.html": [ - "3be6fef86153195a7b1186eeda056dfe8fb9e9ca", + "e85254c9c29c203f6eafa385952b5004a9958359", [ null, { @@ -699923,7 +726371,7 @@ ] ], "sharedworker-classic.http.html": [ - "c4644eefc4154ee72aa1e23ab47d40900ea02b94", + "164e5a5d6f8963051d027069b69fcd46f46bfee9", [ null, { @@ -699932,7 +726380,7 @@ ] ], "sharedworker-module.http.html": [ - "4b56d2ed149e41b2f82b6b77573a5f46dff57698", + "213e4a57639bd3352a796b47d459c1bb86fc0cd3", [ null, { @@ -699941,7 +726389,7 @@ ] ], "worker-classic.http.html": [ - "b6db4e2ab7530d0f5de0db53b82a40545c771bd8", + "f63136bb9f403944cabf7a6d058b358e94688e4c", [ null, { @@ -699950,7 +726398,7 @@ ] ], "worker-module.http.html": [ - "ab6e4e7cb51ee795e766ef5e0994feef1dc8278f", + "0a14c4ba7b46252f5f4b936671b996d35868b689", [ null, { @@ -699959,7 +726407,7 @@ ] ], "xhr.http.html": [ - "133191427110bf1b5a4894ac8906eacb245119ec", + "38f8569c46126f2fce757fb0de4faeb0a86155ab", [ null, { @@ -699968,9 +726416,9 @@ ] ] }, - "same-origin": { + "origin-when-crossorigin": { "a-tag.http.html": [ - "f0fc5349fe00094a7c78a4e151fe3858eba902fe", + "270bc100e65b1d7f1fae6fa4711248ea76fe53ac", [ null, { @@ -699979,7 +726427,7 @@ ] ], "fetch.http.html": [ - "332e19f9ed7c16d1f341430bff6331ac653586a3", + "074d6ff4543d57828da5fc2371928bd56cbed0a3", [ null, { @@ -699988,7 +726436,7 @@ ] ], "iframe-tag.http.html": [ - "656f25018c902324d2db8ce719ed14808e225bae", + "9b2be1b36db3ad6ee13fc5dd2ea1dac677d7dfff", [ null, { @@ -699997,7 +726445,16 @@ ] ], "img-tag.http.html": [ - "acc8899eea75d32823d031dd02da23a9650d8240", + "23f029e018125051429e832b6ea386da579b0634", + [ + null, + { + "timeout": "long" + } + ] + ], + "script-tag-dynamic-import.http.html": [ + "d752465085686c8d2b33d30174e773feb4337931", [ null, { @@ -700006,7 +726463,7 @@ ] ], "script-tag.http.html": [ - "de1ca87708ea17257e3b10cc846e1562aef196dc", + "de679acf6743b73b96ac83e77992360ebeed55ea", [ null, { @@ -700015,7 +726472,7 @@ ] ], "sharedworker-classic.http.html": [ - "23deb789aaf503594b0ae14ae515544faf113918", + "ccc463ff5c026e9bd6a36ab955be26dd0e7c2093", [ null, { @@ -700024,7 +726481,7 @@ ] ], "sharedworker-module.http.html": [ - "9f43c4f05b32daafd6a303dd5e56ed92cfc59d49", + "29fd0f2ef347688114e97921bfae8ce9147b72e6", [ null, { @@ -700033,7 +726490,7 @@ ] ], "worker-classic.http.html": [ - "f67a5bc4c48e4f66bf415a710a99717e7d30df0d", + "dd99c2a6083160764c6bcdd5c791611a85d194f2", [ null, { @@ -700042,7 +726499,7 @@ ] ], "worker-module.http.html": [ - "0c37eaf6c6ee6c1c8bdf6603080b253224ba4e1c", + "dd3800f59e256c4b7fcc03d7aeb2ee5eecfd1f7c", [ null, { @@ -700051,7 +726508,7 @@ ] ], "xhr.http.html": [ - "ff82bc85ebf1601c5814bc8c73518ab6bb9a86ba", + "d639073154a3b614986c0d962e0912841b1f7c6e", [ null, { @@ -700060,9 +726517,9 @@ ] ] }, - "strict-origin": { + "same-origin": { "a-tag.http.html": [ - "66a0fa808050890e4965df3aaabd4165cfd66d40", + "e527be69a2fd13abf2573a22e63f917f831b36b9", [ null, { @@ -700071,7 +726528,7 @@ ] ], "fetch.http.html": [ - "502f76d3651e44963cf59149845aabd0b2ee629d", + "c9edccb7b0b38f9ce24e73e733484e83f272f0f3", [ null, { @@ -700080,7 +726537,7 @@ ] ], "iframe-tag.http.html": [ - "bff0a0d8f08f208c91aa72c39bcfa5e82714c0f9", + "cffe9aaf42a7330565d425565426cd88a7c8ac3b", [ null, { @@ -700089,7 +726546,16 @@ ] ], "img-tag.http.html": [ - "3fee5820256c0f2952f4834531d868681fe79056", + "169b379a3066a58ff81832bb0291b892b4372c5d", + [ + null, + { + "timeout": "long" + } + ] + ], + "script-tag-dynamic-import.http.html": [ + "e12b8cb5a9d5612fb17eaec7121c13883dce0e66", [ null, { @@ -700098,7 +726564,7 @@ ] ], "script-tag.http.html": [ - "2ef902cf34d998d8b668b8d26892db9e6863c1dc", + "f85b8d09ee7d33325441e9f8c343d6ef57abd63a", [ null, { @@ -700107,7 +726573,7 @@ ] ], "sharedworker-classic.http.html": [ - "31316408593208fcaa8cb1040187e7fd9042c6f9", + "dc152cf203bc15d36e4bcf1807d30fde8979e694", [ null, { @@ -700116,7 +726582,7 @@ ] ], "sharedworker-module.http.html": [ - "8bf2c63bcc375e8bd3e8fa8ac0b2a25dcde7e89b", + "4af9a84e38f9ab2683bcfc0f065f3da0d4c4791d", [ null, { @@ -700125,7 +726591,7 @@ ] ], "worker-classic.http.html": [ - "9b32ab6983ae5a626bef0ebff4935d16f030fc77", + "238e044777cc37fa5063ce9d59850fff7150f17d", [ null, { @@ -700134,7 +726600,7 @@ ] ], "worker-module.http.html": [ - "0645126e624a67413af541172f6b73da55489182", + "e12a18771c04b8b4a1aed7e3c1b29a7b149297a9", [ null, { @@ -700143,7 +726609,7 @@ ] ], "xhr.http.html": [ - "0734df429b4a441e916f2f561f8f82f32989dd43", + "f806606e39a4c6f3a9822169e3c76e4229ac296d", [ null, { @@ -700152,9 +726618,9 @@ ] ] }, - "strict-origin-when-cross-origin": { + "strict-origin": { "a-tag.http.html": [ - "d3a807c97a04714c3b42b2dc933db37638f99046", + "a0d7b82ff0fe83b918dc7753a18ab2cee91972e5", [ null, { @@ -700163,7 +726629,7 @@ ] ], "fetch.http.html": [ - "0e866479cc754411ba35233f53590e0d80a08e03", + "e4a723a02863c2ab625a7494587f892dce5d23ca", [ null, { @@ -700172,7 +726638,7 @@ ] ], "iframe-tag.http.html": [ - "0f9000679df0df5d3031b89ec16a5fb0cbb62eb2", + "a9a3f08183dfa4e2d6839e99703f4fbb36bb84ae", [ null, { @@ -700181,7 +726647,16 @@ ] ], "img-tag.http.html": [ - "7bbb7f38b38210fce01b0786fcaf35e3ae701151", + "61caa7b5deb5c81137a9848e2be1d1cf3e82b945", + [ + null, + { + "timeout": "long" + } + ] + ], + "script-tag-dynamic-import.http.html": [ + "107b99e6be2f49e182bad572f174ca165269f5cf", [ null, { @@ -700190,7 +726665,7 @@ ] ], "script-tag.http.html": [ - "efeef07ca5862c7c24c172c0fd7ff18a50a437c2", + "f8502d76ec48c99af07e2d0ac1200a8667919863", [ null, { @@ -700199,7 +726674,7 @@ ] ], "sharedworker-classic.http.html": [ - "64f9fcb3a626455f3b15290a5dbccab9eeb63f36", + "65734aa6ddcf8d624e7433408c0afa9fec0925ec", [ null, { @@ -700208,7 +726683,7 @@ ] ], "sharedworker-module.http.html": [ - "23751de3e83a1295d2a5c0c651ffa360af997e7d", + "6950b050074f397167a26470f72ed8ba43be4129", [ null, { @@ -700217,7 +726692,7 @@ ] ], "worker-classic.http.html": [ - "6489b91daf4b86941fe91d211db3519e50abd5c7", + "5a80852cc1f47a4ca41caef32ca0c9032fb6ae24", [ null, { @@ -700226,7 +726701,7 @@ ] ], "worker-module.http.html": [ - "1a8b22a9535e6ed5b3495acf2db07c578f20e274", + "64cdd508330281cf4af76ddc9941bdd790858c68", [ null, { @@ -700235,7 +726710,7 @@ ] ], "xhr.http.html": [ - "f960bd54559cb727e370b426ce0d3814dc4e9945", + "08fe4b8add017f7a3491bbf913cdb2ca7eab3205", [ null, { @@ -700244,9 +726719,9 @@ ] ] }, - "unsafe-url": { + "strict-origin-when-cross-origin": { "a-tag.http.html": [ - "ca36059a24a6a00b3a74eea491c46bf114d9d3c1", + "c90830faece9be944ac795fb6fe787338e36a8f0", [ null, { @@ -700255,7 +726730,7 @@ ] ], "fetch.http.html": [ - "401163abef6259ad1f3cdd579c231dd6a48d3f28", + "76475a2a487830e05d5ccb0666b88d39e5f8365c", [ null, { @@ -700264,7 +726739,7 @@ ] ], "iframe-tag.http.html": [ - "403a67545acf23fd47b5165a13acee9b793c8b47", + "261b31cea303331cfd623a57bc82c03a76095b5c", [ null, { @@ -700273,7 +726748,16 @@ ] ], "img-tag.http.html": [ - "f06a89ddea6f01c9b124fb92cbbc79554ed8a53b", + "f84e23faa9feab0d27b33001b9e70b743cea8166", + [ + null, + { + "timeout": "long" + } + ] + ], + "script-tag-dynamic-import.http.html": [ + "2a3f6d0b0506b21ec6e72dfe4ff03ae76870e071", [ null, { @@ -700282,7 +726766,7 @@ ] ], "script-tag.http.html": [ - "fba1aa8bcc3b8f6f0902745567a2d0dff5eb475f", + "692ccd81562927c289b108fce7c40196dc35b4ea", [ null, { @@ -700291,7 +726775,7 @@ ] ], "sharedworker-classic.http.html": [ - "3ba6d7450d2ede9089de1716b674fa1152e47d09", + "dbaa8dad709f672aff95144849938f2a93a360b6", [ null, { @@ -700300,7 +726784,7 @@ ] ], "sharedworker-module.http.html": [ - "c535aa1e16596d50910bc960c9f9e6144a662cf9", + "dca75da7bcdb70be64102293d19f5d8ba816d154", [ null, { @@ -700309,7 +726793,7 @@ ] ], "worker-classic.http.html": [ - "ee2e2a7c6bec681191778cabf1e86214a089381e", + "fe4cb622a097deb627f154eddb868dd79b4313c5", [ null, { @@ -700318,7 +726802,7 @@ ] ], "worker-module.http.html": [ - "782cadd666624b7bcb0133323f9a147dc796caf5", + "03b322428235b0f050e93a7f3ab5d56fcc088cca", [ null, { @@ -700327,7 +726811,7 @@ ] ], "xhr.http.html": [ - "199ced3e5e37514abad80bc4bbd719926450e71d", + "38136d1dfa1886a3f60a82c88f452101ac8b7302", [ null, { @@ -700335,12 +726819,10 @@ } ] ] - } - }, - "top.http-rp": { - "no-referrer": { + }, + "unsafe-url": { "a-tag.http.html": [ - "29adaac66b741de97c5caa966193b87eb6e0332d", + "f25dfbc5fd9332b08035b0b91d050b5b732233da", [ null, { @@ -700349,7 +726831,7 @@ ] ], "fetch.http.html": [ - "d6ac45a7284e50f8613ae42418188d34946707dc", + "46eb2b9d87916b84ef65a759e208858ad85554f1", [ null, { @@ -700358,7 +726840,7 @@ ] ], "iframe-tag.http.html": [ - "d39830b579499cb0d29ed872edef335a863c17e7", + "f84dba4815066cfbd4a8d30db34eef2f54b2070b", [ null, { @@ -700367,7 +726849,7 @@ ] ], "img-tag.http.html": [ - "566c3252ecd190e9aa72d9bc135a9e9285d3fb9f", + "8f8b278cff6c76ce3833c56c6f0662e72017ddc1", [ null, { @@ -700376,7 +726858,7 @@ ] ], "script-tag-dynamic-import.http.html": [ - "25db2c01155b959af158b21fa2a91defbc860e76", + "3e50fdaffcbc94ebfd78301586e97ed38957a907", [ null, { @@ -700385,7 +726867,7 @@ ] ], "script-tag.http.html": [ - "63e54ba482aeb4cacbfb5affcbf903375160dac0", + "b99cb1a63631df004c68eb27d999bedc9d51a861", [ null, { @@ -700394,7 +726876,7 @@ ] ], "sharedworker-classic.http.html": [ - "25bbdd1a08d9c2e798938985bb773b2d18d22de3", + "24db9fcc6a7d82f4e2b82fbae9c7cbc48314c517", [ null, { @@ -700403,7 +726885,7 @@ ] ], "sharedworker-module.http.html": [ - "5845fa807de92a2314a01db396437ada5c60eea9", + "21fa9491715d82b870dd8fb4373dd4c5f6c7ac94", [ null, { @@ -700412,7 +726894,7 @@ ] ], "worker-classic.http.html": [ - "7297e57a6458743be21455020020addee3de90f0", + "0d76a82ae5bd2c6b3f43c2a0bff3e4bad6d6ff0c", [ null, { @@ -700421,7 +726903,7 @@ ] ], "worker-module.http.html": [ - "03fb43a1a17d1981678c6aa5c2d807d9f153b663", + "2725051576f2ad8f4f22081e07105bc5182a366a", [ null, { @@ -700430,7 +726912,7 @@ ] ], "xhr.http.html": [ - "f80b28b5cbc21bb78378deecb255e400c06a1694", + "b77d9ed3dff8b6cb6180248edbd31937ae0bdfcb", [ null, { @@ -700439,9 +726921,9 @@ ] ] }, - "no-referrer-when-downgrade": { + "unset": { "a-tag.http.html": [ - "67702eb9257a75acb3d597f1389a952e4798b17b", + "72e159c72e529aa32cc230f40ca467797a5b05be", [ null, { @@ -700450,7 +726932,7 @@ ] ], "fetch.http.html": [ - "5c2ed3836d14eb8cae305036ed791c8950125c04", + "1dfb592eebbf2e835eec5ef90657b4dea4a9a6ea", [ null, { @@ -700459,7 +726941,7 @@ ] ], "iframe-tag.http.html": [ - "26d595fcc6b4311cc36d51b93969d5fa6d7b7f21", + "557d6a532357dd12f993cbcec7a476c25079432e", [ null, { @@ -700468,7 +726950,7 @@ ] ], "img-tag.http.html": [ - "0827ebde9c31f4e101cd611ef7a0376aaac8732f", + "3987df15184e3eb6b9595f9f718c8c40bd2c949b", [ null, { @@ -700477,7 +726959,7 @@ ] ], "script-tag-dynamic-import.http.html": [ - "4009fe6a61f95e12761a491450700582a8b5c9ca", + "6444480eb9c167abbb9b6e86e9a862963b8fa7ee", [ null, { @@ -700486,7 +726968,7 @@ ] ], "script-tag.http.html": [ - "c5cad6a0433af93db1321accab35a1c0e1fbd847", + "788c8d04f2b5d90b55fa9077723e8ba66ccd53d0", [ null, { @@ -700522,72 +727004,7 @@ ] ], "worker-module.http.html": [ - "ae453ee0f00ea7897d9ea837d31157c453963796", - [ - null, - { - "timeout": "long" - } - ] - ], - "xhr.http.html": [ - "b3380b89ba3477605a5fa18ea0d4715fe83eebdc", - [ - null, - { - "timeout": "long" - } - ] - ] - }, - "origin": { - "a-tag.http.html": [ - "496521351a1f19336145e7db1392930fca7b1e31", - [ - null, - { - "timeout": "long" - } - ] - ], - "fetch.http.html": [ - "b4d01617390870ea78225f6953c81fb868acafc4", - [ - null, - { - "timeout": "long" - } - ] - ], - "iframe-tag.http.html": [ - "e2eb629831fa0e0905162e5a1d5ca3849032788f", - [ - null, - { - "timeout": "long" - } - ] - ], - "img-tag.http.html": [ - "f0c99d563a3bf0fd190846fb3aa64f02cba3c202", - [ - null, - { - "timeout": "long" - } - ] - ], - "script-tag-dynamic-import.http.html": [ - "4e754dcebcd82565720b126b3b9349d7779870f8", - [ - null, - { - "timeout": "long" - } - ] - ], - "script-tag.http.html": [ - "f41884b6847b0fb1ca7934100d2c84ed6db88ccf", + "ae453ee0f00ea7897d9ea837d31157c453963796", [ null, { @@ -700595,17 +727012,21 @@ } ] ], - "sharedworker-classic.http.html": [ - "24eeee8188063457cd558bbaf5ac8e6b1076190d", + "xhr.http.html": [ + "866577c3366b9f6d809b66c138672ac73690beda", [ null, { "timeout": "long" } ] - ], - "sharedworker-module.http.html": [ - "ff1170a108e1a356a2215add5140f3eb1729e146", + ] + } + }, + "worker-classic.http-rp": { + "no-referrer": { + "fetch.http.html": [ + "7fd76e63435ab0b233610c5818e00b225757062b", [ null, { @@ -700614,7 +727035,7 @@ ] ], "worker-classic.http.html": [ - "4e9a4c49112d598c1087c9198d016e09114cfdc7", + "5bec21542b2a4df664754d72b2a333ab242006b8", [ null, { @@ -700623,7 +727044,7 @@ ] ], "worker-module.http.html": [ - "57ce11f6f94b83d98c02e271986aef602b8a8750", + "ce37d95eb32f349e5c28e981b7ef0868c8c69a70", [ null, { @@ -700632,7 +727053,7 @@ ] ], "xhr.http.html": [ - "e1d6b7a798f3f3d47a411fdaa29ff052bbd9431d", + "c86c9717eb46d0d156de2f1e2cd89655d3ee9093", [ null, { @@ -700641,9 +727062,9 @@ ] ] }, - "origin-when-cross-origin": { - "a-tag.http.html": [ - "72e159c72e529aa32cc230f40ca467797a5b05be", + "no-referrer-when-downgrade": { + "fetch.http.html": [ + "dac3a683221957a131072ef91ab53c22c512fc57", [ null, { @@ -700651,8 +727072,8 @@ } ] ], - "fetch.http.html": [ - "1dfb592eebbf2e835eec5ef90657b4dea4a9a6ea", + "worker-classic.http.html": [ + "18ba58d76ef8c2e5f9532fa783231833899f87d7", [ null, { @@ -700660,8 +727081,8 @@ } ] ], - "iframe-tag.http.html": [ - "557d6a532357dd12f993cbcec7a476c25079432e", + "worker-module.http.html": [ + "7f1553557246bcc9aec4492b77806c41f442ca3f", [ null, { @@ -700669,17 +727090,19 @@ } ] ], - "img-tag.http.html": [ - "3987df15184e3eb6b9595f9f718c8c40bd2c949b", + "xhr.http.html": [ + "d3952c294412b2a3d93a243a062abcd0de6dcc6d", [ null, { "timeout": "long" } ] - ], - "script-tag-dynamic-import.http.html": [ - "6444480eb9c167abbb9b6e86e9a862963b8fa7ee", + ] + }, + "origin": { + "fetch.http.html": [ + "6cdc0b41d8cd79f544e13f1f64e24c207e89c561", [ null, { @@ -700687,8 +727110,8 @@ } ] ], - "script-tag.http.html": [ - "788c8d04f2b5d90b55fa9077723e8ba66ccd53d0", + "worker-classic.http.html": [ + "d4e7d5d815cb01a3d2f9ab85691e34c02cbbd5b7", [ null, { @@ -700696,8 +727119,8 @@ } ] ], - "sharedworker-classic.http.html": [ - "1bc6f04b8cc73debbc4f14696c74a3169c57fa60", + "worker-module.http.html": [ + "aa988d50a7a55e0f08e6b456160b9f170df606bf", [ null, { @@ -700705,8 +727128,19 @@ } ] ], - "sharedworker-module.http.html": [ - "a24ee872ad7db6918870560a814f9ef970994910", + "xhr.http.html": [ + "ccbf11195637f03d5973c26ded5be2021802cc51", + [ + null, + { + "timeout": "long" + } + ] + ] + }, + "origin-when-cross-origin": { + "fetch.http.html": [ + "fd5c1c40b4c146c2ff2665bf6b9ad22d726c6c93", [ null, { @@ -700715,7 +727149,7 @@ ] ], "worker-classic.http.html": [ - "7e6e8f3c5f61bf8f596ca02d8d068a49736cfe19", + "0faa7b5885a2ad13817cbae9843bdbce9dd02f0a", [ null, { @@ -700724,7 +727158,7 @@ ] ], "worker-module.http.html": [ - "ae453ee0f00ea7897d9ea837d31157c453963796", + "186c854ae996efdf753b41bbd133746dcdd414c9", [ null, { @@ -700733,7 +727167,7 @@ ] ], "xhr.http.html": [ - "866577c3366b9f6d809b66c138672ac73690beda", + "1074f48768273b699478a0bc8a0517477337f7b2", [ null, { @@ -700743,8 +727177,8 @@ ] }, "same-origin": { - "a-tag.http.html": [ - "563e63e4a03729d6930a69f040b406a15693e427", + "fetch.http.html": [ + "a1bc897efcfe5087b66d22eba8c774cc0ddae362", [ null, { @@ -700752,8 +727186,8 @@ } ] ], - "fetch.http.html": [ - "bc673974f3e491930d5f1af8597b3af42e0b590b", + "worker-classic.http.html": [ + "520c0b65c067fb81a96014ec0814e30784b48dfe", [ null, { @@ -700761,8 +727195,8 @@ } ] ], - "iframe-tag.http.html": [ - "50e3b2e755b3fd38a48c6d9bbef3a34bd8783c21", + "worker-module.http.html": [ + "8487eb46ef7f6f50f0a102e34129f99506bfb196", [ null, { @@ -700770,17 +727204,19 @@ } ] ], - "img-tag.http.html": [ - "2f106e6e89310214026268e76265d4072a11c2ff", + "xhr.http.html": [ + "bbed4e8be209ab006f58ef075c767d32dfc3562b", [ null, { "timeout": "long" } ] - ], - "script-tag-dynamic-import.http.html": [ - "4db1827eb325a809aa84bae37cb0f727a789b0d4", + ] + }, + "strict-origin": { + "fetch.http.html": [ + "491266ebaf3bdb3f666d5ff2d19ef6b51fdc4b72", [ null, { @@ -700788,8 +727224,8 @@ } ] ], - "script-tag.http.html": [ - "edb8136c04521b615c9045cf346c7ce143502b4c", + "worker-classic.http.html": [ + "773126f5715341e43cda2391c812e00cbc7e43eb", [ null, { @@ -700797,8 +727233,8 @@ } ] ], - "sharedworker-classic.http.html": [ - "1bc6f04b8cc73debbc4f14696c74a3169c57fa60", + "worker-module.http.html": [ + "59a6f8b15a7817e07848b485238da70e22215819", [ null, { @@ -700806,8 +727242,19 @@ } ] ], - "sharedworker-module.http.html": [ - "a24ee872ad7db6918870560a814f9ef970994910", + "xhr.http.html": [ + "cd9a48a353e16c962a378950a2c7d8a518ee2b51", + [ + null, + { + "timeout": "long" + } + ] + ] + }, + "strict-origin-when-cross-origin": { + "fetch.http.html": [ + "7dd1c32a416d98cd98b6895a86898ce17019bb1a", [ null, { @@ -700816,7 +727263,7 @@ ] ], "worker-classic.http.html": [ - "7e6e8f3c5f61bf8f596ca02d8d068a49736cfe19", + "b4cf59c956213b4b504d7ce55ae03e16f0b2ae0c", [ null, { @@ -700825,7 +727272,7 @@ ] ], "worker-module.http.html": [ - "ae453ee0f00ea7897d9ea837d31157c453963796", + "0abbb2c83c16291838d1235798af64205bdfed29", [ null, { @@ -700834,7 +727281,7 @@ ] ], "xhr.http.html": [ - "b28d7e378bda9fd5452296869225feb388409cf8", + "443813483809febe50aba90be8967c01e8752fb7", [ null, { @@ -700843,9 +727290,9 @@ ] ] }, - "strict-origin": { - "a-tag.http.html": [ - "496521351a1f19336145e7db1392930fca7b1e31", + "unsafe-url": { + "fetch.http.html": [ + "39790d452f14a34bd27c921ebb65a879afc97db0", [ null, { @@ -700853,8 +727300,8 @@ } ] ], - "fetch.http.html": [ - "b4d01617390870ea78225f6953c81fb868acafc4", + "worker-classic.http.html": [ + "0f6f2140f373b61deaab876bfa0604e56f796bf3", [ null, { @@ -700862,8 +727309,8 @@ } ] ], - "iframe-tag.http.html": [ - "e2eb629831fa0e0905162e5a1d5ca3849032788f", + "worker-module.http.html": [ + "7ef0c81886e483b23d1083633ea0fa00b22bbe93", [ null, { @@ -700871,17 +727318,19 @@ } ] ], - "img-tag.http.html": [ - "f0c99d563a3bf0fd190846fb3aa64f02cba3c202", + "xhr.http.html": [ + "31ffe149743767d924d2377a8a0799368fc95206", [ null, { "timeout": "long" } ] - ], - "script-tag-dynamic-import.http.html": [ - "4e754dcebcd82565720b126b3b9349d7779870f8", + ] + }, + "unset": { + "fetch.http.html": [ + "107e01441413122eabddaeaf6ec342340481abbb", [ null, { @@ -700889,8 +727338,8 @@ } ] ], - "script-tag.http.html": [ - "f41884b6847b0fb1ca7934100d2c84ed6db88ccf", + "worker-classic.http.html": [ + "daa20c335d0fdfe362b8b05742c4e40878557e95", [ null, { @@ -700898,8 +727347,8 @@ } ] ], - "sharedworker-classic.http.html": [ - "24eeee8188063457cd558bbaf5ac8e6b1076190d", + "worker-module.http.html": [ + "7d9e4dfc8ed675036bae7b35da8bb1c6fd9209cf", [ null, { @@ -700907,8 +727356,21 @@ } ] ], - "sharedworker-module.http.html": [ - "ff1170a108e1a356a2215add5140f3eb1729e146", + "xhr.http.html": [ + "8e8d13831f82245179536cccf29904bdca4e6c84", + [ + null, + { + "timeout": "long" + } + ] + ] + } + }, + "worker-module.http-rp": { + "no-referrer": { + "fetch.http.html": [ + "bc8b3cdf0ca40cf7461acc15ea85c2bb341bea01", [ null, { @@ -700917,7 +727379,7 @@ ] ], "worker-classic.http.html": [ - "4e9a4c49112d598c1087c9198d016e09114cfdc7", + "19eadf3a6739d33c2ed331a457ca82f5863a786e", [ null, { @@ -700926,7 +727388,7 @@ ] ], "worker-module.http.html": [ - "57ce11f6f94b83d98c02e271986aef602b8a8750", + "298db8c8caa208a505cab9a2e6c13c8615246595", [ null, { @@ -700935,7 +727397,7 @@ ] ], "xhr.http.html": [ - "e1d6b7a798f3f3d47a411fdaa29ff052bbd9431d", + "0d4d12fa3bdaf8147b4c07cf3f406b769f3f6504", [ null, { @@ -700944,9 +727406,9 @@ ] ] }, - "strict-origin-when-cross-origin": { - "a-tag.http.html": [ - "72e159c72e529aa32cc230f40ca467797a5b05be", + "no-referrer-when-downgrade": { + "fetch.http.html": [ + "af826059224fc0c0ca1d8de0e7dc9d635c960a35", [ null, { @@ -700954,8 +727416,8 @@ } ] ], - "fetch.http.html": [ - "1dfb592eebbf2e835eec5ef90657b4dea4a9a6ea", + "worker-classic.http.html": [ + "d2a9ba1b3af8cd6e70939b5623e98deb637f980d", [ null, { @@ -700963,8 +727425,8 @@ } ] ], - "iframe-tag.http.html": [ - "557d6a532357dd12f993cbcec7a476c25079432e", + "worker-module.http.html": [ + "6ac89f168998e6b500f4cda710d79e5faf8ddfe5", [ null, { @@ -700972,17 +727434,19 @@ } ] ], - "img-tag.http.html": [ - "3987df15184e3eb6b9595f9f718c8c40bd2c949b", + "xhr.http.html": [ + "a49039131466ad99348e7d35ffdc7d6d612d8f56", [ null, { "timeout": "long" } ] - ], - "script-tag-dynamic-import.http.html": [ - "6444480eb9c167abbb9b6e86e9a862963b8fa7ee", + ] + }, + "origin": { + "fetch.http.html": [ + "3a28efb5d8ba1bdf7b67a2176aa19089f543bd11", [ null, { @@ -700990,8 +727454,8 @@ } ] ], - "script-tag.http.html": [ - "788c8d04f2b5d90b55fa9077723e8ba66ccd53d0", + "worker-classic.http.html": [ + "ca9a19c13a41bb86fe4331f3fed332b7c482633c", [ null, { @@ -700999,8 +727463,8 @@ } ] ], - "sharedworker-classic.http.html": [ - "1bc6f04b8cc73debbc4f14696c74a3169c57fa60", + "worker-module.http.html": [ + "c213c0564bd7375a9e5c86d32349aa067365c0c1", [ null, { @@ -701008,8 +727472,19 @@ } ] ], - "sharedworker-module.http.html": [ - "a24ee872ad7db6918870560a814f9ef970994910", + "xhr.http.html": [ + "fce3b7be7027782f9289795d8378e2deab1c9dd7", + [ + null, + { + "timeout": "long" + } + ] + ] + }, + "origin-when-cross-origin": { + "fetch.http.html": [ + "a4b35bf505298187ecb2e8bb0162c8e6583209ff", [ null, { @@ -701018,7 +727493,7 @@ ] ], "worker-classic.http.html": [ - "7e6e8f3c5f61bf8f596ca02d8d068a49736cfe19", + "07799517d4ecca05b41da9c35379b89098ad0ef9", [ null, { @@ -701027,7 +727502,7 @@ ] ], "worker-module.http.html": [ - "ae453ee0f00ea7897d9ea837d31157c453963796", + "95586f4f2442ea705c55b5189c78196d050e8b34", [ null, { @@ -701036,7 +727511,7 @@ ] ], "xhr.http.html": [ - "866577c3366b9f6d809b66c138672ac73690beda", + "a88a4794137eba79022f205d50e9383927a5899d", [ null, { @@ -701045,9 +727520,9 @@ ] ] }, - "unsafe-url": { - "a-tag.http.html": [ - "67702eb9257a75acb3d597f1389a952e4798b17b", + "same-origin": { + "fetch.http.html": [ + "f200e415ca10e0c1ae332b8ae1c1f869c6155647", [ null, { @@ -701055,8 +727530,8 @@ } ] ], - "fetch.http.html": [ - "5c2ed3836d14eb8cae305036ed791c8950125c04", + "worker-classic.http.html": [ + "39ce69461d0f954f56da5c5df3002a85db12ba41", [ null, { @@ -701064,8 +727539,8 @@ } ] ], - "iframe-tag.http.html": [ - "26d595fcc6b4311cc36d51b93969d5fa6d7b7f21", + "worker-module.http.html": [ + "55b9ee4eb2fe13eafe33875a78c5367729e2bcc7", [ null, { @@ -701073,17 +727548,19 @@ } ] ], - "img-tag.http.html": [ - "0827ebde9c31f4e101cd611ef7a0376aaac8732f", + "xhr.http.html": [ + "67a1b10069a3e461495b9cd479cdc7cedbe9ae8d", [ null, { "timeout": "long" } ] - ], - "script-tag-dynamic-import.http.html": [ - "4009fe6a61f95e12761a491450700582a8b5c9ca", + ] + }, + "strict-origin": { + "fetch.http.html": [ + "1617f515133ccae6a8d1dc02bb2452ca57df207f", [ null, { @@ -701091,8 +727568,8 @@ } ] ], - "script-tag.http.html": [ - "c5cad6a0433af93db1321accab35a1c0e1fbd847", + "worker-classic.http.html": [ + "07d624de69b474efb304d2790a43b4246ecd59e2", [ null, { @@ -701100,8 +727577,8 @@ } ] ], - "sharedworker-classic.http.html": [ - "1bc6f04b8cc73debbc4f14696c74a3169c57fa60", + "worker-module.http.html": [ + "233abfb42c668fc7bdf6dd91479253f6ed136e03", [ null, { @@ -701109,8 +727586,19 @@ } ] ], - "sharedworker-module.http.html": [ - "a24ee872ad7db6918870560a814f9ef970994910", + "xhr.http.html": [ + "81ddff1eb55cfd2e91a8754079c1da4ea68468f8", + [ + null, + { + "timeout": "long" + } + ] + ] + }, + "strict-origin-when-cross-origin": { + "fetch.http.html": [ + "4cc033b43713a46be703b9537bd0002cc8104dfb", [ null, { @@ -701119,7 +727607,7 @@ ] ], "worker-classic.http.html": [ - "7e6e8f3c5f61bf8f596ca02d8d068a49736cfe19", + "b1a4a79540267d84035af8d8de6d0229a8d685f8", [ null, { @@ -701128,7 +727616,7 @@ ] ], "worker-module.http.html": [ - "ae453ee0f00ea7897d9ea837d31157c453963796", + "ba3408d98c2d3a799a91618bf08d2a0ad365d0b3", [ null, { @@ -701137,7 +727625,7 @@ ] ], "xhr.http.html": [ - "b3380b89ba3477605a5fa18ea0d4715fe83eebdc", + "d0ac356f0691ba90246c1fc6f4dd724ac937df7c", [ null, { @@ -701146,9 +727634,9 @@ ] ] }, - "unset": { - "a-tag.http.html": [ - "72e159c72e529aa32cc230f40ca467797a5b05be", + "unsafe-url": { + "fetch.http.html": [ + "b07a1144da8691fc50514d313752c77ab870f0e2", [ null, { @@ -701156,8 +727644,8 @@ } ] ], - "fetch.http.html": [ - "1dfb592eebbf2e835eec5ef90657b4dea4a9a6ea", + "worker-classic.http.html": [ + "f5f0fd461b6d3973c6959dbf0e246baf716e4e52", [ null, { @@ -701165,8 +727653,8 @@ } ] ], - "iframe-tag.http.html": [ - "557d6a532357dd12f993cbcec7a476c25079432e", + "worker-module.http.html": [ + "fc5450adc37fb0d10690f1a11da6e59f4c828626", [ null, { @@ -701174,17 +727662,19 @@ } ] ], - "img-tag.http.html": [ - "3987df15184e3eb6b9595f9f718c8c40bd2c949b", + "xhr.http.html": [ + "2c1f53cd9adfd82a3ad17499aaabbc05ae31bd0e", [ null, { "timeout": "long" } ] - ], - "script-tag-dynamic-import.http.html": [ - "6444480eb9c167abbb9b6e86e9a862963b8fa7ee", + ] + }, + "unset": { + "fetch.http.html": [ + "82d21579885dfad02f319ab62f6ded94fcacf2fa", [ null, { @@ -701192,8 +727682,8 @@ } ] ], - "script-tag.http.html": [ - "788c8d04f2b5d90b55fa9077723e8ba66ccd53d0", + "worker-classic.http.html": [ + "896b9dce2bba61a7a07ebc5c9cc14cade292ac46", [ null, { @@ -701201,8 +727691,8 @@ } ] ], - "sharedworker-classic.http.html": [ - "1bc6f04b8cc73debbc4f14696c74a3169c57fa60", + "worker-module.http.html": [ + "804ba16e356e50905772c4b3fcd5128e5ad03e39", [ null, { @@ -701210,2314 +727700,5134 @@ } ] ], - "sharedworker-module.http.html": [ - "a24ee872ad7db6918870560a814f9ef970994910", + "xhr.http.html": [ + "6920a3c4c3fe27de5a5e1c49d4155e370e0dcb95", [ null, { "timeout": "long" } ] + ] + } + } + }, + "generic": { + "first-meta-changed-after-second-added.http.html": [ + "2ee5ade8c08ad68b68ba68ce2c3a18dbe89469a1", + [ + null, + {} + ] + ], + "iframe-src-change.html": [ + "15202a76a1ea3b7ad8deb35cdb33826414d7a95b", + [ + null, + {} + ] + ], + "iframe-upgrade-request-to-cross-origin.sub.html": [ + "4040072ab9abe80d2c180f7c12deea5cf797fc97", + [ + null, + {} + ] + ], + "iframe-upgrade-request-to-same-origin.sub.https.html": [ + "f9163bec546c2ff1b440b1b27ee945c150caf67c", + [ + null, + {} + ] + ], + "inheritance": { + "iframe-inheritance-about-blank.html": [ + "fc7d39a4cf1c2a63728860e2f37f2962e8bf244f", + [ + null, + {} + ] + ], + "iframe-inheritance-data.html": [ + "1d39781e30583201cf057c5269146ea95ca2d510", + [ + null, + {} + ] + ], + "iframe-inheritance-document-write.html": [ + "c88586aaf6fff4f8842187cda947166bdb9f02ef", + [ + null, + {} + ] + ], + "iframe-inheritance-history-about-blank.html": [ + "8d68ffb5ff1c1b8da00a37ee6b0c37879de979e1", + [ + null, + {} + ] + ], + "iframe-inheritance-history-about-srcdoc.html": [ + "91ac5fc139e2941f28919f0096ff2d5c3450c2bd", + [ + null, + {} + ] + ], + "iframe-inheritance-javascript-child.html": [ + "491f104de4b49b661d8595815000cae2f60423d9", + [ + null, + {} + ] + ], + "iframe-inheritance-javascript.html": [ + "cf1f099c63e22d282a4fe0ae80c3b31209215cbd", + [ + null, + {} + ] + ], + "iframe-inheritance-srcdoc-child.html": [ + "cd4b4ae724814625b210b5fc96ecf5ecef321822", + [ + null, + {} + ] + ], + "iframe-inheritance-srcdoc.html": [ + "6904374b63fbb78cca000e496897752bdd635350", + [ + null, + {} + ] + ], + "popup-inheritance-about-blank.html": [ + "c8e9a9c012a508f910f332332664121f90c0df5b", + [ + null, + {} + ] + ], + "popup-inheritance-form-submission.html": [ + "2c03792a0776f5e1fe3447d8fbb4dd8145743016", + [ + null, + {} + ] + ], + "workers.html": [ + "0bd75a1d15551cc4db8f623b055d53b00d748d19", + [ + null, + {} + ] + ] + }, + "link-rel-prefetch.html": [ + "72e831c92129aed2d80a4178fb56f9d7c20dacad", + [ + null, + {} + ] + ], + "meta-referrer-outofhead-fetch.http.html": [ + "1b7a7bada512112f95121afb124b26df82d0b0d4", + [ + null, + {} + ] + ], + "meta-referrer-removed-1.http.html": [ + "70277885043537471e0e89584479494f90cc0a9d", + [ + null, + {} + ] + ], + "meta-referrer-removed-2.http.html": [ + "42f73e878155ecbafd3997fb7d1844b954900878", + [ + null, + {} + ] + ], + "meta-tag-in-svg-image.html": [ + "5bdc2c1abfa82777bac25b03a583898c51585ff6", + [ + null, + {} + ] + ], + "multiple-headers-and-values.html": [ + "e6b7b07d517ee9cc94ff06775fef3b70a48124b8", + [ + null, + {} + ] + ], + "multiple-headers-combined.html": [ + "b5c27515dff2bdbfea21ef1887de888b9d456603", + [ + null, + {} + ] + ], + "multiple-headers-one-invalid.html": [ + "eca734601a61c2660f28012898701a61d716bd57", + [ + null, + {} + ] + ], + "multiple-headers-one-unknown-token.html": [ + "f07500e546acc9d49f9ee472206a6d1752b1343a", + [ + null, + {} + ] + ], + "multiple-headers.html": [ + "d6c3a90ccb8089cb4f256f43cc8aa0165a974f91", + [ + null, + {} + ] + ], + "sandboxed-iframe-with-opaque-origin.html": [ + "fd1857e0ddbfcdb3a398203ecafe2accd5ae8748", + [ + null, + {} + ] + ], + "second-meta-referrer-added-before-first.http.html": [ + "38fab901fb749026a7e4974f417cc5d260ccda79", + [ + null, + {} + ] + ], + "subresource-test": { + "area-navigate.html": [ + "2a4f29654df1da8e3f18359dacf6ce092c325a67", + [ + null, + {} + ] + ], + "attr-referrer-invalid-value.html": [ + "bfdf1166ce7876c478b4cfcf9dab439d04a7e437", + [ + null, + {} + ] + ], + "fetch-messaging.html": [ + "2678af822ef40855424cbbcb655c2d220513539f", + [ + null, + {} + ] + ], + "iframe-messaging.html": [ + "b8bdb0e5e034c447f4e4be900cf16cccca54b6ee", + [ + null, + {} + ] + ], + "image-decoding.html": [ + "76ce0e263a7843cbe4717692194d5cc859764f18", + [ + null, + {} + ] + ], + "link-navigate.html": [ + "21783d3e31d1cfcaf228440ee7f6e0852365ded4", + [ + null, + {} + ] + ], + "script-messaging.html": [ + "1bc0ba13ef70f3bad20989c4ef56a82d511e004d", + [ + null, + {} + ] + ], + "worker-messaging.html": [ + "c2db8fe845215a5b34d5f13d2a98eb72d51ec778", + [ + null, + {} + ] + ], + "xhr-messaging.html": [ + "c1f89919ca36a115d6184ef1a9983dd0e152385e", + [ + null, + {} + ] + ] + }, + "unsupported-csp-referrer-directive.html": [ + "27a3a99113aecc3617ae7b065904b0fbc9d4cc68", + [ + null, + {} + ] + ] + } + }, + "remote-playback": { + "cancel-watch-availability.html": [ + "41cad7c272e2a32cf39e9a6d58fb1c728f4be4a2", + [ + null, + {} + ] + ], + "disable-remote-playback-cancel-watch-availability-throws.html": [ + "7b93f8e3af7aef11b77e795fbacad32964e95d3e", + [ + null, + {} + ] + ], + "disable-remote-playback-prompt-throws.html": [ + "b47e30eebaa1082ed1d3c638b8aedb81bac96bdb", + [ + null, + {} + ] + ], + "disable-remote-playback-watch-availability-throws.html": [ + "7496b86fcde9049b9d725a407d83606752800e0b", + [ + null, + {} + ] + ], + "idlharness.window.js": [ + "458bfd0c608b0f36c1b23be6b5a9bc13648e1e6b", + [ + "remote-playback/idlharness.window.html", + { + "script_metadata": [ + [ + "script", + "/resources/WebIDLParser.js" + ], + [ + "script", + "/resources/idlharness.js" + ], + [ + "script", + "/common/media.js" + ], + [ + "timeout", + "long" + ] ], - "worker-classic.http.html": [ - "7e6e8f3c5f61bf8f596ca02d8d068a49736cfe19", + "timeout": "long" + } + ] + ], + "prompt-in-detached-iframe.html": [ + "501471755ab8130e0799a9c2c82960eb096ae5a3", + [ + null, + {} + ] + ], + "watch-availability-callback-parameter.html": [ + "df95885393debf818fc1a08c38a61fe73a6b39b1", + [ + null, + {} + ] + ], + "watch-availability-initial-callback.html": [ + "b540d835b9b4e530f1570bcdbedb4281113ff8df", + [ + null, + {} + ] + ], + "watch-availability-promise-return-callback-id.html": [ + "c3df0b31f16af66ec81bf7a9c608fe64a80f7474", + [ + null, + {} + ] + ] + }, + "reporting": { + "bufferSize.html": [ + "0e50526772e22150b5331776c5fd9fa5378c474b", + [ + null, + { + "testdriver": true + } + ] + ], + "cross-origin-report-no-credentials.https.sub.html": [ + "f10d4cef3e47870fe03ce66b64df99efbc97cfe4", + [ + null, + {} + ] + ], + "cross-origin-reports-isolated.https.sub.html": [ + "4e9cb1eb01be86423166266b114df8f4b2e59b28", + [ + null, + {} + ] + ], + "cross-origin-same-site-credentials.https.sub.html": [ + "2f3f5fefcab9430fa28cef7de8d09391ffd7c564", + [ + null, + {} + ] + ], + "disconnect.html": [ + "12d33db8ff29259d296d655ee6f806efd615c3b8", + [ + null, + { + "testdriver": true + } + ] + ], + "document-reporting-bypass-report-to.https.sub.html": [ + "f599ef8511b9931fa1961cec33954254daec8fe8", + [ + null, + {} + ] + ], + "document-reporting-default-endpoint.https.sub.html": [ + "f1951e3469b90ec7040b7c2e6a9d2c0178d275b2", + [ + null, + { + "testdriver": true + } + ] + ], + "document-reporting-destroy-after-document-close.https.sub.html": [ + "e6ec91ade36751cdf27f0e65a21c1e9137476ae6", + [ + null, + {} + ] + ], + "document-reporting-named-endpoints.https.sub.html": [ + "3e659872e05bf55d2efdeca3a6528a28f1191689", + [ + null, + {} + ] + ], + "document-reporting-not-batch-different-document.https.html": [ + "e124bd7fbdf011dd229360d9addffbe517610a08", + [ + null, + {} + ] + ], + "document-reporting-override-endpoint.https.sub.html": [ + "e10f82a5e36a53b79833bde627db9cc4bc2755f2", + [ + null, + {} + ] + ], + "document-reporting-path-absolute.https.sub.html": [ + "48be010a00be6db990a118f58543a900cb1da259", + [ + null, + { + "testdriver": true + } + ] + ], + "generateTestReport-honors-endpoint.https.sub.html": [ + "f04f5e00f9e8bef1929ca0e8e2ab93eee89f1acf", + [ + null, + { + "testdriver": true + } + ] + ], + "generateTestReport.html": [ + "1c6e7dc225726f46f42c5f50e54bd54b46cf9be6", + [ + null, + { + "testdriver": true + } + ] + ], + "idlharness.any.js": [ + "17cef8183596ae1d0b307fb8ddccc7455b955966", + [ + "reporting/idlharness.any.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } + "script", + "/resources/WebIDLParser.js" + ], + [ + "script", + "/resources/idlharness.js" + ] + ] + } + ], + [ + "reporting/idlharness.any.worker.html", + { + "script_metadata": [ + [ + "script", + "/resources/WebIDLParser.js" + ], + [ + "script", + "/resources/idlharness.js" + ] + ] + } + ] + ], + "nestedReport.html": [ + "156338ee74653bfdc843e6acceda073c02ca635b", + [ + null, + { + "testdriver": true + } + ] + ], + "order.html": [ + "c43964220c981f4b91c7c5e7eac7fc67377b367b", + [ + null, + { + "testdriver": true + } + ] + ], + "reporting-api-honors-limits.https.sub.html": [ + "4732711888ca5fa7be5f87108967b67102fdb706", + [ + null, + { + "testdriver": true + } + ] + ], + "reporting-isolated-across-navigations.https.sub.html": [ + "df61afa8330e5f230ba712d14f0f7109f758b502", + [ + null, + {} + ] + ], + "same-origin-cross-site-credentials.https.sub.html": [ + "258ab8e10364934dde6bcb45156c2342434248c8", + [ + null, + {} + ] + ], + "same-origin-report-credentials.https.sub.html": [ + "cd93bd601b95576cc0b326a457e2307ff9741ad2", + [ + null, + {} + ] + ], + "same-origin-same-site-credentials.https.sub.html": [ + "9b99edb26e8940bab186a53d99801a600f655013", + [ + null, + {} + ] + ] + }, + "requestidlecallback": { + "basic.html": [ + "df9c9ef9775f6b6d403b28350e4dfa2f2944bad4", + [ + null, + {} + ] + ], + "callback-exception.html": [ + "fecda221dec3b045d727aa5e9275ddb8f2526c18", + [ + null, + {} + ] + ], + "callback-idle-periods.html": [ + "f515755e353787ca9f583de39d7a9abee21e2629", + [ + null, + { + "timeout": "long" + } + ] + ], + "callback-iframe.html": [ + "8ec08a804a6d3b2dfb1b4d6ba1dfcb70ee188944", + [ + null, + { + "timeout": "long" + } + ] + ], + "callback-invoked.html": [ + "dc52f1422b08f3e07521fa09995d6da4ce68452b", + [ + null, + { + "timeout": "long" + } + ] + ], + "callback-multiple-calls.html": [ + "7bb524beb41fb81fd2524079c4be88e47c09ae5e", + [ + null, + {} + ] + ], + "callback-removed-frame.html": [ + "ca63f68f8a1e0c976338ef08cf32b04bfe8498ee", + [ + null, + {} + ] + ], + "callback-suspended.html": [ + "511ec128d6624a7cb8ff930db5763c8632e86def", + [ + null, + { + "timeout": "long" + } + ] + ], + "callback-timeRemaining-cross-realm-method.html": [ + "078e2c9379c8629dd971ad2fe3577d48890130c7", + [ + null, + { + "timeout": "long" + } + ] + ], + "callback-timeout-when-busy.html": [ + "39e17f7b73fc007b20e3ec64a3a5b4b7cdd9cac1", + [ + null, + { + "timeout": "long" + } + ] + ], + "callback-timeout.html": [ + "248864f3a133fa268fe239a983033d632247fe8b", + [ + null, + { + "timeout": "long" + } + ] + ], + "callback-xhr-sync.html": [ + "d0aa5d28d6e0b541ca63cc66843df2d5098e8fc5", + [ + null, + { + "timeout": "long" + } + ] + ], + "cancel-invoked.html": [ + "9fb77d65dc5163988c922583db9d717312cef53d", + [ + null, + {} + ] + ], + "deadline-after-expired-timer.html": [ + "b544141f887de897603198c083922e796b8abd79", + [ + null, + {} + ] + ], + "deadline-max-rAF-dynamic.html": [ + "43eebd7641be013b2e7de0518a255afd8a6e8f9e", + [ + null, + { + "timeout": "long" + } + ] + ], + "deadline-max-rAF.html": [ + "ce5f504ed37540523da7fe7e4ed4b20c7536209a", + [ + null, + { + "timeout": "long" + } + ] + ], + "deadline-max-timeout-dynamic.html": [ + "169e6db548530da702f585b9eaa0912a3c59a95d", + [ + null, + { + "timeout": "long" + } + ] + ], + "deadline-max.html": [ + "e33341ac9dd977c03235c5cf9d0a4399cf0e4b9c", + [ + null, + { + "timeout": "long" + } + ] + ], + "idlharness.window.js": [ + "69cd5a49b0432a65db9da267248a6f97d93cd0b9", + [ + "requestidlecallback/idlharness.window.html", + { + "script_metadata": [ + [ + "script", + "/resources/WebIDLParser.js" + ], + [ + "script", + "/resources/idlharness.js" + ] + ] + } + ] + ] + }, + "resize-observer": { + "calculate-depth-for-node.html": [ + "339e52bb79cbd1fc20d1059993ae8ee3b0591b3f", + [ + null, + {} + ] + ], + "callback-cross-realm-report-exception.html": [ + "75a91ec0a1762f5c0c7745568c4f179ec4ac1a32", + [ + null, + {} + ] + ], + "change-layout-in-error.html": [ + "9083fb48f94efe2a4d402fda2e452d72f94b1e17", + [ + null, + {} + ] + ], + "eventloop.html": [ + "3a9e453faf2eaef798daaa1171a426ea281009f5", + [ + null, + {} + ] + ], + "fragments.html": [ + "bba94db88e265413a491f945c9e379e876ff9e18", + [ + null, + {} + ] + ], + "idlharness.window.js": [ + "2d459b0b1263682f0f3472d4bf706b8b735dbccc", + [ + "resize-observer/idlharness.window.html", + { + "script_metadata": [ + [ + "script", + "/resources/WebIDLParser.js" + ], + [ + "script", + "/resources/idlharness.js" + ], + [ + "script", + "resources/resizeTestHelper.js" + ] + ] + } + ] + ], + "notify.html": [ + "dc2e268b8a11c331a866310dde3a48a91b3ba1c0", + [ + null, + {} + ] + ], + "observe.html": [ + "f6015bef78825927833ad1c7128751eb13a5e21b", + [ + null, + {} + ] + ], + "ordering.html": [ + "1cd9950c53499b61ab4a2b9f401c12223d8182a6", + [ + null, + {} + ] + ], + "scrollbars-2.html": [ + "51b470c8a2d61377692e46142bbe76773b876546", + [ + null, + {} + ] + ], + "scrollbars.html": [ + "129e74e5cd969795adbf728dcdd448adfd112bac", + [ + null, + {} + ] + ], + "svg-with-css-box-001.html": [ + "4ec0a7de72f74650d4748f2819f865de7afd51cc", + [ + null, + {} + ] + ], + "svg-with-css-box-002.svg": [ + "3c009641db3a92f18cae8856890feb1027b58566", + [ + null, + {} + ] + ], + "svg.html": [ + "6511afc8b000a2b415819cc88d2aa1b5fccb0cdc", + [ + null, + {} + ] + ] + }, + "resource-timing": { + "304-response-recorded.html": [ + "9e1bb3045cd5487fe989e36fd62d1f000a666931", + [ + null, + {} + ] + ], + "SO-XO-SO-redirect-chain-tao.https.html": [ + "e6568910e4fe7b61dc8a869dfd4fcff0750e7265", + [ + null, + {} + ] + ], + "TAO-match.html": [ + "dc0e2f744347b2f0bff7ed1690f91acc11303792", + [ + null, + {} + ] + ], + "TAO-port-mismatch-means-crossorigin.html": [ + "f1218d17a0a44f013a01a9b1a28b3ab19f91c91d", + [ + null, + {} + ] + ], + "body-size-cross-origin.https.html": [ + "b0340139bf7f4021e457d13ae74ea5ef28e09884", + [ + null, + {} + ] + ], + "buffer-full-add-after-full-event.html": [ + "43dc3d84fd3dd1b6263dfdf961113edb9e1a0da6", + [ + null, + {} + ] + ], + "buffer-full-add-entries-during-callback-that-drop.html": [ + "b00185c5b6c8810fdd18ef6c92febf4fcb065de1", + [ + null, + {} + ] + ], + "buffer-full-add-entries-during-callback.html": [ + "d5883d33d5d780708a11167731cd7070f0105edb", + [ + null, + {} + ] + ], + "buffer-full-add-then-clear.html": [ + "5617c30b8850d8d8550561c79f69ea02c691d134", + [ + null, + {} + ] + ], + "buffer-full-decrease-buffer-during-callback.html": [ + "3091fcf4269192d909b87dc33559c3f18881c37d", + [ + null, + {} + ] + ], + "buffer-full-eventually.html": [ + "6e9d5db48399034d0ec2ab01903700e92d047992", + [ + null, + { + "timeout": "long" + } + ] + ], + "buffer-full-increase-buffer-during-callback.html": [ + "dd12dd7afa9be18bbde464212dc08177968da7d6", + [ + null, + {} + ] + ], + "buffer-full-inspect-buffer-during-callback.html": [ + "d5cc8e6ecd8d1130411b4ebddadfdfe6c7832d87", + [ + null, + {} + ] + ], + "buffer-full-set-to-current-buffer.html": [ + "dc527b9a32f5149fde4be86d3b2ae5d81fd2d4c7", + [ + null, + {} + ] + ], + "buffer-full-store-and-clear-during-callback.html": [ + "3ea0577256c85b35453358d18c970e4fb3045c4c", + [ + null, + {} + ] + ], + "buffer-full-then-decreased.html": [ + "21912d978b294d48ad5eff70bef3a1eab59ad750", + [ + null, + {} + ] + ], + "buffer-full-then-increased.html": [ + "de517bf405c66e94e72f942de33ac6ab72807e2d", + [ + null, + {} + ] + ], + "buffer-full-when-populate-entries.html": [ + "f4b1a2e7e7abba25c78e4c1dbe0b1aba29061d47", + [ + null, + {} + ] + ], + "buffered-flag.any.js": [ + "b46fd00e69ddfc3ac57abcd20c2d092a18220490", + [ + "resource-timing/buffered-flag.any.html", + {} + ], + [ + "resource-timing/buffered-flag.any.worker.html", + {} + ] + ], + "cached-image-gets-single-entry.html": [ + "2d8c4e2e83944dc576484e3840614faa55d65564", + [ + null, + {} + ] + ], + "clear-resource-timings.html": [ + "7508f8432e66f50c5a6624d2d180e99523a5cd49", + [ + null, + {} + ] + ], + "connection-reuse.html": [ + "a1bc927cfd3f2bdd960c4f686951b826f75e8fc8", + [ + null, + {} + ] + ], + "connection-reuse.https.html": [ + "3461eed47249df338805f5006bb6f38e38d58772", + [ + null, + {} + ] + ], + "content-type-parsing.html": [ + "c0081eb4137d9f38366484bbcdf7aa48e9ca25ae", + [ + null, + {} + ] + ], + "content-type.html": [ + "5a09a9114f2c28ba316098194027ec77df05e3f4", + [ + null, + {} + ] + ], + "cors-preflight.any.js": [ + "4b980e7d0af89e2e6f636b7e23a173e4305f073c", + [ + "resource-timing/cors-preflight.any.html", + { + "script_metadata": [ + [ + "script", + "/common/utils.js" + ], + [ + "script", + "/common/get-host-info.sub.js" + ] + ] + } + ], + [ + "resource-timing/cors-preflight.any.worker.html", + { + "script_metadata": [ + [ + "script", + "/common/utils.js" + ], + [ + "script", + "/common/get-host-info.sub.js" + ] + ] + } + ] + ], + "cross-origin-iframe.html": [ + "69daebffaf2a245eae51872826bc04ff78b0a135", + [ + null, + {} + ] + ], + "cross-origin-redirects.html": [ + "0bdc0547e577f675e0df4b320290a07fdd6ca51a", + [ + null, + {} + ] + ], + "cross-origin-start-end-time-with-redirects.html": [ + "8e368d13807745761083b090bc097217ff22e598", + [ + null, + {} + ] + ], + "cross-origin-status-codes.html": [ + "197a7663396ef66c7764d6599b03854d138f2e60", + [ + null, + {} + ] + ], + "delivery-type.tentative.any.js": [ + "e2b408fdd74f29fff40b11e83e9ecb804b295490", + [ + "resource-timing/delivery-type.tentative.any.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "/common/get-host-info.sub.js" + ], + [ + "script", + "/resource-timing/resources/resource-loaders.js" + ] + ] + } + ], + [ + "resource-timing/delivery-type.tentative.any.serviceworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "/common/get-host-info.sub.js" + ], + [ + "script", + "/resource-timing/resources/resource-loaders.js" + ] + ] + } + ], + [ + "resource-timing/delivery-type.tentative.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "/common/get-host-info.sub.js" + ], + [ + "script", + "/resource-timing/resources/resource-loaders.js" + ] + ] + } + ], + [ + "resource-timing/delivery-type.tentative.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "/common/get-host-info.sub.js" + ], + [ + "script", + "/resource-timing/resources/resource-loaders.js" + ] + ] + } + ] + ], + "document-domain-no-impact-opener.html": [ + "69df2f27fa5b195f7b956714cf816a61e18258b8", + [ + null, + {} + ] + ], + "entries-for-network-errors.sub.https.html": [ + "ebc2247babcd4ab94d1fdd826d17d8c968189d79", + [ + null, + {} + ] + ], + "entry-attributes.html": [ + "94f219f229107e4764134187f111dcc7757f617d", + [ + null, + {} + ] + ], + "event-source-timing.html": [ + "917e7c34952cd60bb79bcf3740111b0466157410", + [ + null, + { + "timeout": "long" + } + ] + ], + "fetch-cross-origin-redirect.https.html": [ + "1605e224ab43b2fa11579f9c64d9706e6a188f9c", + [ + null, + {} + ] + ], + "font-timestamps.html": [ + "56ecb5c4bfddb60e783ee77cd308b28a0c4ea9c2", + [ + null, + {} + ] + ], + "idlharness.any.js": [ + "aa860d3dd16a712fb3e81b5393c5ca2f3dccfde7", + [ + "resource-timing/idlharness.any.html", + { + "script_metadata": [ + [ + "script", + "/resources/WebIDLParser.js" + ], + [ + "script", + "/resources/idlharness.js" + ], + [ + "timeout", + "long" ] ], - "worker-module.http.html": [ - "ae453ee0f00ea7897d9ea837d31157c453963796", + "timeout": "long" + } + ], + [ + "resource-timing/idlharness.any.worker.html", + { + "script_metadata": [ + [ + "script", + "/resources/WebIDLParser.js" + ], + [ + "script", + "/resources/idlharness.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } + ] + ], + "iframe-failed-commit.html": [ + "d3b5cce59ec21e9427f00213381a72e134b25e4b", + [ + null, + { + "timeout": "long" + } + ] + ], + "iframe-non-html.html": [ + "a5df3b034899d1fbbf4281d6aa939df53b05feda", + [ + null, + {} + ] + ], + "iframe-redirect-without-location.html": [ + "bae5f3112fe2917b66d5994bdf3bf6e7a86b0376", + [ + null, + {} + ] + ], + "iframe-sequence-of-events.html": [ + "02d1c362c9df491439fd81ed9be48d5859a2e94f", + [ + null, + {} + ] + ], + "iframe-with-download.html": [ + "9583024dd8faa9c1069ed112737f18235ca1174c", + [ + null, + {} + ] + ], + "image-sequence-of-events.html": [ + "630fed78c964bd439ec3151fed7c5b88760fdfb5", + [ + null, + {} + ] + ], + "initiator-type": { + "audio.html": [ + "f09fc618478fd63eee8c9015dba121472ef9f672", + [ + null, + {} + ] + ], + "dynamic-insertion.html": [ + "8ce05b3cfeddd60829466614449321d75d433c82", + [ + null, + {} + ] + ], + "embed.html": [ + "c7a505afac90c37bee5bf050f6251518646917c2", + [ + null, + {} + ] + ], + "frameset.html": [ + "697549a14dd97afc66d5daa4dbb3064aa6ba20a6", + [ + null, + {} + ] + ], + "iframe.html": [ + "0becd86894be23634594c805ecc9dc07f3f0733b", + [ + null, + {} + ] + ], + "img-srcset.html": [ + "b8c81fbb251d5a59c972f74a4ecb8f1139b26533", + [ + null, + {} + ] + ], + "img.html": [ + "8e2d305048ea517a6df24387900a093793cbc572", + [ + null, + {} + ] + ], + "input.html": [ + "a46d416671c1c6a14f979846cf3afd460d0cb0c9", + [ + null, + {} + ] + ], + "link.html": [ + "43367ac3d501e2ce8da1f2eafde9e5cdd69a4e67", + [ + null, + {} + ] + ], + "misc.html": [ + "02d01a16336c9337dae037970f6f91ce7b71b0f4", + [ + null, + {} + ] + ], + "picture.html": [ + "e384b9e97dbe8b51d9e0b8c4dd499da8232cde3d", + [ + null, + {} + ] + ], + "script.html": [ + "6e9e3ae7eef361bc0a70ff89108a57494264ef9e", + [ + null, + {} + ] + ], + "style.html": [ + "051496b766f91bc8f14eb7cdee347cfeca545b18", + [ + null, + {} + ] + ], + "svg.html": [ + "d92f5935d807ee4956f15186b65fe1fbe40af8ac", + [ + null, + {} + ] + ], + "video.html": [ + "2d8c9dcc474c2c00379f015a289ebd4d339bb35b", + [ + null, + {} + ] + ], + "workers.html": [ + "a3da99356db5e2132871d48d7f1a13d87b2e7ead", + [ + null, + {} + ] + ] + }, + "initiator-type-for-script.html": [ + "72173398d56aa48fd3d9817a058c19115e7df9dd", + [ + null, + {} + ] + ], + "input-sequence-of-events.html": [ + "446e24a0bca8a48cc0ef7e62ddf3a84017e8e6f5", + [ + null, + {} + ] + ], + "interim-response-times.h2.html": [ + "4b1ca93ff7bd621fc1495c1030c1ebd3730b497c", + [ + null, + { + "timeout": "long" + } + ] + ], + "interim-response-times.html": [ + "a4d03f599ee5a756af07212423f79e758ab617fc", + [ + null, + { + "timeout": "long" + } + ] + ], + "internal-resources-not-counted.html": [ + "a746e2adfa32bee823a9b9607a73e68c0665e84f", + [ + null, + {} + ] + ], + "link-sequence-of-events.html": [ + "be9db32cd92968a210f54a26ae14b6e93a8e836c", + [ + null, + { + "timeout": "long" + } + ] + ], + "load-from-mem-cache-transfer-size.html": [ + "3d2d32d6e63bf4b2f4b715b2680047e3ca020166", + [ + null, + {} + ] + ], + "nested-context-navigations-embed.html": [ + "f804adbb8a99e44bd0f7d0c543ceea3f09e6ea62", + [ + null, + { + "timeout": "long" + } + ] + ], + "nested-context-navigations-iframe.html": [ + "32ab21633c669ccf1db59f3cd4667dd2ce810e79", + [ + null, + { + "timeout": "long" + } + ] + ], + "nested-context-navigations-object.html": [ + "1508d8829fd2695918d891a9ef7bf9d03fa285f8", + [ + null, + { + "timeout": "long" + } + ] + ], + "nested-nav-fallback-timing.html": [ + "b8bba5614d0d12b71767ba7ec8d5b71bec532029", + [ + null, + {} + ] + ], + "nextHopProtocol-is-tao-protected.https.html": [ + "b16ff7af75dc7a61c2e458827b86340a6639b884", + [ + null, + {} + ] + ], + "no-entries-for-cross-origin-css-fetched-memory-cache.sub.html": [ + "6b60305ded2e9975ca63540316decd9ef1f1abb8", + [ + null, + {} + ] + ], + "no-entries-for-cross-origin-css-fetched.sub.html": [ + "63f9e06e19083a6d956af0d5916455cd7e91b89c", + [ + null, + {} + ] + ], + "object-not-found-adds-entry.html": [ + "d11823dd9d07f5e37d50ea926531bf8c58214ac6", + [ + null, + {} + ] + ], + "object-not-found-after-TAO-cross-origin-redirect.html": [ + "d0dad9381ba42bc848ebeca86acaf7f10a7a1e82", + [ + null, + {} + ] + ], + "object-not-found-after-cross-origin-redirect.html": [ + "6990c6c06082e5d62ba3aa576eccd42d13246d2a", + [ + null, + { + "timeout": "long" + } + ] + ], + "opaque-origin.html": [ + "598ee50a59278fb8c02548c1357b28bb12d86823", + [ + null, + {} + ] + ], + "ping-rt-entries.html": [ + "34dad10b9f28b6b3dc9724f571aa3db7a82ad32c", + [ + null, + {} + ] + ], + "queue-entry-regardless-buffer-size.html": [ + "ea47ae3a7950a2390f6bc0d15bd0ca3ba1a4ec03", + [ + null, + {} + ] + ], + "redirects.html": [ + "ba69907a5f6e46a3e8a79041da17039d14d20feb", + [ + null, + {} + ] + ], + "render-blocking-status-link.html": [ + "8c6544db48664e0b58dde49d73a8449715f6d20d", + [ + null, + {} + ] + ], + "render-blocking-status-script.html": [ + "bcd55b89944fc696bf1dedadb95378b6ad9943a9", + [ + null, + {} + ] + ], + "resource-ignore-data-url.html": [ + "a7056a80807967d9b94b1d4c54c0620dc2a4bad8", + [ + null, + {} + ] + ], + "resource-reload-TAO.html": [ + "83a1e921bb4f65b24806d4b9bc46a8c1b599551a", + [ + null, + {} + ] + ], + "resource-timing-failed-fetch-web-bundle.tentative.html": [ + "b99183a49cd84c250115ea9ef6dd0a0dea57123d", + [ + null, + {} + ] + ], + "resource-timing-failed-fetch.html": [ + "5bab39e2760728a901b5abe62296b8144b23d13e", + [ + null, + {} + ] + ], + "resource-timing-level1.sub.html": [ + "093d2542218fbe48b134230b4d9d65e1ef1d4c10", + [ + null, + { + "timeout": "long" + } + ] + ], + "resource_connection_reuse_mixed_content.html": [ + "51c04ee604c963cb248ca6cb6b536ef9bf21ee12", + [ + null, + {} + ] + ], + "resource_connection_reuse_mixed_content_redirect.html": [ + "a46d14c9f159ad2839546ed4f595d7e8d7cf4ffa", + [ + null, + {} + ] + ], + "resource_dedicated_worker.html": [ + "6d27245ab9cc9a5a6a6ab1721a036b7d4c6ba4f9", + [ + null, + {} + ] + ], + "resource_nested_dedicated_worker.worker.js": [ + "2c9f5f95428aca5ce9d18714223fab6f78f360c0", + [ + "resource-timing/resource_nested_dedicated_worker.worker.html", + {} + ] + ], + "resource_reparenting.html": [ + "7d4947fa7703d13a5adb465ff5eebbb4456cace9", + [ + null, + {} + ] + ], + "resource_subframe_self_navigation.html": [ + "5843f88307233e9326c84106f460039baf09162e", + [ + null, + {} + ] + ], + "resource_timing.worker.js": [ + "dafd2e9af602ed535acc84fb7088b70a23c64608", + [ + "resource-timing/resource_timing.worker.html", + {} + ] + ], + "resource_timing_content_length.html": [ + "32bd8a97e07341323061512698a565232f1972bd", + [ + null, + {} + ] + ], + "response-status-code.html": [ + "3a184c6f016b28c7003ea4650b7827b74388faf8", + [ + null, + { + "timeout": "long" + } + ] + ], + "same-origin-from-cross-origin-redirect.html": [ + "8740b81b13fd8aa7a269a10cf2dd3023a0fbc2a5", + [ + null, + {} + ] + ], + "script-rt-entries.html": [ + "cdd72bd1e25199085c8178b618a00200c86a3de9", + [ + null, + {} + ] + ], + "secure-iframe-in-insecure-context.html": [ + "87f4711146ce9a6b9a0bf87a2fa95fc6867bde92", + [ + null, + {} + ] + ], + "shared-worker-rt-entry.html": [ + "194500a09503a46f454d879ec984be0c83dd2bb9", + [ + null, + {} + ] + ], + "sizes-cache.any.js": [ + "af70e5a6ded3e63d158fd929feacf0827b3cafc9", + [ + "resource-timing/sizes-cache.any.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "xhr.http.html": [ - "866577c3366b9f6d809b66c138672ac73690beda", + "global", + "window,worker" + ], [ - null, - { - "timeout": "long" - } + "script", + "/resource-timing/resources/sizes-helper.js" + ], + [ + "script", + "/resource-timing/resources/resource-loaders.js" ] ] } - }, - "top.meta": { - "always": { - "a-tag.http.html": [ - "574b17a7cdd9a6e7b0d68dd51e04beaa30c6c035", + ], + [ + "resource-timing/sizes-cache.any.serviceworker.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "fetch.http.html": [ - "7554f25fc1dbcb93f6ae55262efef9d0b622afa9", + "global", + "window,worker" + ], [ - null, - { - "timeout": "long" - } - ] - ], - "iframe-tag.http.html": [ - "0461b5642736a4373714ccf4266e8329fd0e6e3e", + "script", + "/resource-timing/resources/sizes-helper.js" + ], [ - null, - { - "timeout": "long" - } + "script", + "/resource-timing/resources/resource-loaders.js" ] - ], - "img-tag.http.html": [ - "e211a9cc871959ff2f35e09cddd786fc43a889a4", + ] + } + ], + [ + "resource-timing/sizes-cache.any.sharedworker.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "script-tag-dynamic-import.http.html": [ - "fb77c5b7797f2400301912a4bbaa660c34195ebf", + "global", + "window,worker" + ], [ - null, - { - "timeout": "long" - } - ] - ], - "script-tag.http.html": [ - "d9de64e1d77e5b969d4441039fd6ada4ccd7500b", + "script", + "/resource-timing/resources/sizes-helper.js" + ], [ - null, - { - "timeout": "long" - } + "script", + "/resource-timing/resources/resource-loaders.js" ] - ], - "sharedworker-classic.http.html": [ - "45c5bc545612b71a4e625117a15e6706bf98aa2f", + ] + } + ], + [ + "resource-timing/sizes-cache.any.worker.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "sharedworker-module.http.html": [ - "22950273afd8627897c771cd7bb5c17bf9150d73", + "global", + "window,worker" + ], [ - null, - { - "timeout": "long" - } - ] - ], - "worker-classic.http.html": [ - "ac59c72ddba927e39890dca3b60297fae44c393d", + "script", + "/resource-timing/resources/sizes-helper.js" + ], [ - null, - { - "timeout": "long" - } + "script", + "/resource-timing/resources/resource-loaders.js" ] - ], - "worker-module.http.html": [ - "1a7d3aa9f984f52461d33fbdfa88eaa98c2ca943", + ] + } + ] + ], + "sizes-redirect-img.html": [ + "e440029782b5d5e7637dfa30683d6f77a72d61b1", + [ + null, + {} + ] + ], + "sizes-redirect.any.js": [ + "e483a4d409c6c2deee73fa213d698b95b865d0c8", + [ + "resource-timing/sizes-redirect.any.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "xhr.http.html": [ - "db12bea102f77a4137e1b8d7dd9d46ab1e95019e", + "global", + "window,worker" + ], [ - null, - { - "timeout": "long" - } + "script", + "/common/get-host-info.sub.js" + ], + [ + "script", + "/resource-timing/resources/sizes-helper.js" ] ] - }, - "default": { - "a-tag.http.html": [ - "21b191652bb1a22f9a9bc66063695e2b1227251d", + } + ], + [ + "resource-timing/sizes-redirect.any.serviceworker.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "fetch.http.html": [ - "d772f9fb8bfd2fe3bc2e548ca59755948d0ecf94", + "global", + "window,worker" + ], [ - null, - { - "timeout": "long" - } - ] - ], - "iframe-tag.http.html": [ - "b71966f54ca89b1b4b687a6e3cbb39fa80ba8cd3", + "script", + "/common/get-host-info.sub.js" + ], [ - null, - { - "timeout": "long" - } + "script", + "/resource-timing/resources/sizes-helper.js" ] - ], - "img-tag.http.html": [ - "937aaf515c90379ff65e08d6c36fb31d8d7dfd6e", + ] + } + ], + [ + "resource-timing/sizes-redirect.any.sharedworker.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "script-tag-dynamic-import.http.html": [ - "b2372322d1871339049e61a76460841d0a95c516", + "global", + "window,worker" + ], [ - null, - { - "timeout": "long" - } - ] - ], - "script-tag.http.html": [ - "2795b8a9abd994f0f36f8ab1dc3a02bdfc799a43", + "script", + "/common/get-host-info.sub.js" + ], [ - null, - { - "timeout": "long" - } + "script", + "/resource-timing/resources/sizes-helper.js" ] - ], - "sharedworker-classic.http.html": [ - "a5dec50421bd1f2c6111da792342d7f246fe929e", + ] + } + ], + [ + "resource-timing/sizes-redirect.any.worker.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "sharedworker-module.http.html": [ - "8dcac3557f36e07b14269d34f73abf09bb6fb0b8", + "global", + "window,worker" + ], [ - null, - { - "timeout": "long" - } - ] - ], - "worker-classic.http.html": [ - "10752b889f9cdf414bf60a0286d9bdb7b2cb5650", + "script", + "/common/get-host-info.sub.js" + ], [ - null, - { - "timeout": "long" - } + "script", + "/resource-timing/resources/sizes-helper.js" ] - ], - "worker-module.http.html": [ - "b908f84497dde0c0913be26dd365c1f3ff70dc81", + ] + } + ] + ], + "status-codes-create-entry.html": [ + "cc0cd8ccb88250331186c38554b09ff8515cacee", + [ + null, + {} + ] + ], + "supported_resource_type.any.js": [ + "31e40096ddb2c3a8e38ddbeec00a67ca7a91ce59", + [ + "resource-timing/supported_resource_type.any.html", + {} + ], + [ + "resource-timing/supported_resource_type.any.worker.html", + {} + ] + ], + "tentative": { + "document-initiated.html": [ + "eea2bb2761d79cbf77670fbb835b2ca489ed7e7d", + [ + null, + {} + ] + ], + "script-initiated.html": [ + "d6f3d1a32034a7daba50056d1028a8fe7e08df29", + [ + null, + {} + ] + ], + "stylesheet-initiated.html": [ + "d12e3d193d0837412fdb2cda9a78261fa527b911", + [ + null, + {} + ] + ] + }, + "test_resource_timing.html": [ + "f4e851abb203aca49194aef51646be673507078f", + [ + null, + {} + ] + ], + "test_resource_timing.https.html": [ + "f4e851abb203aca49194aef51646be673507078f", + [ + null, + {} + ] + ], + "tojson.html": [ + "2564b855dffb8e4439be5ddad96e3e3e06229101", + [ + null, + {} + ] + ], + "workerStart-tao-protected.https.html": [ + "f54c0f2756eac3edc09602c113e7fdd55223a886", + [ + null, + {} + ] + ], + "worklet-rt-entries.https.html": [ + "8ed280be1706b60ff2f8942a503ab7e79e08bd15", + [ + null, + {} + ] + ], + "xhr-resource-timing.html": [ + "6f8f3331861062aa96b533cd94d9add21ea7e382", + [ + null, + {} + ] + ] + }, + "sanitizer-api": { + "element-set-sanitized-html.https.html": [ + "8fabf1ce293ada94b7777ca42f974454c123efa0", + [ + null, + {} + ] + ], + "idlharness.https.window.js": [ + "384317b8e55bd318464c68e20ca737bfb5b2c966", + [ + "sanitizer-api/idlharness.https.window.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "xhr.http.html": [ - "0dd95ca5844aa887411433c01a37cd7be27aa128", + "script", + "/resources/WebIDLParser.js" + ], [ - null, - { - "timeout": "long" - } + "script", + "/resources/idlharness.js" ] ] - }, - "never": { - "a-tag.http.html": [ - "f15738fa3eb993661948ee53d9c637832fe3614e", + } + ] + ], + "sanitizer-config.https.html": [ + "fc371b5bb979a6a1f93f20adb8980c14ec90cac1", + [ + null, + {} + ] + ], + "sanitizer-insecure-context.html": [ + "4b185fd3a7443bc19fcd929abf60240f47666a1c", + [ + null, + {} + ] + ], + "sanitizer-names.https.html": [ + "78f1d605a19e02fac1e760f582d80a57e7ddb0db", + [ + null, + {} + ] + ], + "sanitizer-query-config.https.html": [ + "60cba2d618bbeeaf9cd48ab3e1da0f8c8202346a", + [ + null, + {} + ] + ], + "sanitizer-sanitize.https.tentative.html": [ + "82eaeb48329f235a833aa8b8120bd6f08e64f90d", + [ + null, + {} + ] + ], + "sanitizer-sanitizeFor.https.tentative.html": [ + "77ae0abb6b0b30109157cb76dbf1df640b608733", + [ + null, + {} + ] + ], + "sanitizer-secure-context.https.html": [ + "0e04e04d169a40e8a4a82ce81bb3e29cd7de83a1", + [ + null, + {} + ] + ], + "sanitizer-unknown.https.html": [ + "7b9835cb6d07e22481f19ef6fa3892b7e370a3a5", + [ + null, + {} + ] + ] + }, + "savedata": { + "idlharness.any.js": [ + "aad362346ca5fa9999a05a3456756d150bf0e354", + [ + "savedata/idlharness.any.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "fetch.http.html": [ - "fc15d5f7f3b751b9bfdab24b918739b1e5382a71", + "script", + "/resources/WebIDLParser.js" + ], [ - null, - { - "timeout": "long" - } + "script", + "/resources/idlharness.js" ] - ], - "iframe-tag.http.html": [ - "2932078a7be53f218728ec288e8f8df17be3cbdb", + ] + } + ], + [ + "savedata/idlharness.any.worker.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "img-tag.http.html": [ - "6a69539224aecbd8786593d4e160bf44cfc74cea", + "script", + "/resources/WebIDLParser.js" + ], [ - null, - { - "timeout": "long" - } + "script", + "/resources/idlharness.js" ] - ], - "script-tag-dynamic-import.http.html": [ - "1b33d88ee797110a5542af91b6a0238ed1544fc0", + ] + } + ] + ] + }, + "scheduler": { + "post-task-abort-reason.any.js": [ + "27eff9f08013afab493865044545f8ad8886729d", + [ + "scheduler/post-task-abort-reason.any.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "script-tag.http.html": [ - "b30b9c8e2889b9cf97c3e2fedffb11e280b78a7d", + "title", + "Scheduler: postTask uses abort reason" + ], [ - null, - { - "timeout": "long" - } + "global", + "window,worker" ] - ], - "sharedworker-classic.http.html": [ - "38f9a5f051bc5e0e9d657233d5e0f0ec425ae62f", + ] + } + ], + [ + "scheduler/post-task-abort-reason.any.serviceworker.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "sharedworker-module.http.html": [ - "55e8cec205ad25a9213ab7c712b280993337a07e", + "title", + "Scheduler: postTask uses abort reason" + ], [ - null, - { - "timeout": "long" - } + "global", + "window,worker" ] - ], - "worker-classic.http.html": [ - "bfcc6f6ab286feb2f4658f2c4b7924ca0c426a13", + ] + } + ], + [ + "scheduler/post-task-abort-reason.any.sharedworker.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "worker-module.http.html": [ - "57330eaa0200e0f9752e24a3662257f18a0a6ff5", + "title", + "Scheduler: postTask uses abort reason" + ], [ - null, - { - "timeout": "long" - } + "global", + "window,worker" ] - ], - "xhr.http.html": [ - "98ea3ff25a38f79ba8e1cc2239b46b69ed4b7fc5", + ] + } + ], + [ + "scheduler/post-task-abort-reason.any.worker.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } + "title", + "Scheduler: postTask uses abort reason" + ], + [ + "global", + "window,worker" ] ] - }, - "no-referrer": { - "a-tag.http.html": [ - "3760f51c6d3efde7717ac8311d7ae8808e2eeea9", + } + ] + ], + "post-task-delay.any.js": [ + "cf96f6703b4256cb75734714311b8ca3155ca920", + [ + "scheduler/post-task-delay.any.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "fetch.http.html": [ - "046e853074e22df1f4e719e95944b8352dcc81ea", + "title", + "Scheduler: postTask Delayed Tasks" + ], [ - null, - { - "timeout": "long" - } + "global", + "window,worker" ] - ], - "iframe-tag.http.html": [ - "3954e67fffb0aff5092047dd83a7a6fec15fea7b", + ] + } + ], + [ + "scheduler/post-task-delay.any.serviceworker.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "img-tag.http.html": [ - "e3720a2df7e387c7ddb5724fd175783490f72add", + "title", + "Scheduler: postTask Delayed Tasks" + ], [ - null, - { - "timeout": "long" - } + "global", + "window,worker" ] - ], - "script-tag-dynamic-import.http.html": [ - "5eaba98c26ac6cc053143d996d8eb2f97f7dac4a", + ] + } + ], + [ + "scheduler/post-task-delay.any.sharedworker.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "script-tag.http.html": [ - "0bb90ddc53891b8045f1f3979f1eaade157a12ee", + "title", + "Scheduler: postTask Delayed Tasks" + ], [ - null, - { - "timeout": "long" - } + "global", + "window,worker" ] - ], - "sharedworker-classic.http.html": [ - "b0a58ec0711b37fa7fdf0c6a2c22de894cf1026f", + ] + } + ], + [ + "scheduler/post-task-delay.any.worker.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "sharedworker-module.http.html": [ - "0de18a801ebe9b6521776959dff3c877efce13d5", + "title", + "Scheduler: postTask Delayed Tasks" + ], [ - null, - { - "timeout": "long" - } + "global", + "window,worker" ] - ], - "worker-classic.http.html": [ - "61ef7547b3260a92e6ada13bcb9ed6ba440d37af", + ] + } + ] + ], + "post-task-result-success.any.js": [ + "dd73c148e903258ff77862be81ae89505ffe9356", + [ + "scheduler/post-task-result-success.any.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "worker-module.http.html": [ - "b90c47fb4a9a7588f218af28fcbd021a26956172", + "title", + "Scheduler: postTask Promise Value" + ], [ - null, - { - "timeout": "long" - } + "global", + "window,worker" ] - ], - "xhr.http.html": [ - "365ae53ee9efa66323bd32a60d083627196f198c", + ] + } + ], + [ + "scheduler/post-task-result-success.any.serviceworker.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } + "title", + "Scheduler: postTask Promise Value" + ], + [ + "global", + "window,worker" ] ] - }, - "no-referrer-when-downgrade": { - "a-tag.http.html": [ - "053832d237da6e2ad04a9be037789d4b68c928fd", + } + ], + [ + "scheduler/post-task-result-success.any.sharedworker.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "fetch.http.html": [ - "fbff2ccc7dce0fac2cb2ba1fecc52f3ee40d3eba", + "title", + "Scheduler: postTask Promise Value" + ], [ - null, - { - "timeout": "long" - } + "global", + "window,worker" ] - ], - "iframe-tag.http.html": [ - "94de097619e65500fd1b1ddc14b214407fc681d4", + ] + } + ], + [ + "scheduler/post-task-result-success.any.worker.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "img-tag.http.html": [ - "87ed2485e47fc94441c1426a28518a33b691384d", + "title", + "Scheduler: postTask Promise Value" + ], [ - null, - { - "timeout": "long" - } + "global", + "window,worker" ] - ], - "script-tag-dynamic-import.http.html": [ - "5b00e927c498a754d3c271b83e7f29250f44b82f", + ] + } + ] + ], + "post-task-result-throws.any.js": [ + "7155c94eac0e9c756b4ce8790925f1d9b6809ade", + [ + "scheduler/post-task-result-throws.any.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "script-tag.http.html": [ - "b32b60eee9626eeff3a609e81c913acda77224e7", + "title", + "Scheduler: postTask Error Propagation" + ], [ - null, - { - "timeout": "long" - } + "global", + "window,worker" ] - ], - "sharedworker-classic.http.html": [ - "c72386a4e6a0d5dd8ae6b415314b21f2ca951983", + ] + } + ], + [ + "scheduler/post-task-result-throws.any.serviceworker.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "sharedworker-module.http.html": [ - "1fb406cc8764b51569fb80b0a1dc48cfbdcfbe06", + "title", + "Scheduler: postTask Error Propagation" + ], [ - null, - { - "timeout": "long" - } + "global", + "window,worker" ] - ], - "worker-classic.http.html": [ - "56acecdca830488b513ab119b1849f59788be253", + ] + } + ], + [ + "scheduler/post-task-result-throws.any.sharedworker.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "worker-module.http.html": [ - "5ee0a331cc2eac668193043a84a6fbedeb815359", + "title", + "Scheduler: postTask Error Propagation" + ], [ - null, - { - "timeout": "long" - } + "global", + "window,worker" ] - ], - "xhr.http.html": [ - "ba439701ab41ccfb5dd41562ea2a0b0250580cc2", + ] + } + ], + [ + "scheduler/post-task-result-throws.any.worker.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } + "title", + "Scheduler: postTask Error Propagation" + ], + [ + "global", + "window,worker" ] ] - }, - "origin": { - "a-tag.http.html": [ - "9eed6b4cc568078e9330300a30c3f4b9c89c25fc", + } + ] + ], + "post-task-run-order.any.js": [ + "acbe86744caa00d00b3f3750b8a13957671e5125", + [ + "scheduler/post-task-run-order.any.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "fetch.http.html": [ - "9e0eb9df863c12f0794d3f631294c513d7ed3b68", + "title", + "Scheduler: Tasks Run in Priority Order" + ], [ - null, - { - "timeout": "long" - } + "global", + "window,worker" ] - ], - "iframe-tag.http.html": [ - "b2de0586e5c38a1bb2f3e8c8d659574e2990ccc2", + ] + } + ], + [ + "scheduler/post-task-run-order.any.serviceworker.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "img-tag.http.html": [ - "0be153073e4377ab13888371aed60b822955010f", + "title", + "Scheduler: Tasks Run in Priority Order" + ], [ - null, - { - "timeout": "long" - } + "global", + "window,worker" ] - ], - "script-tag-dynamic-import.http.html": [ - "9f7dd3db604541b1da286efdb1a394a4e357e756", + ] + } + ], + [ + "scheduler/post-task-run-order.any.sharedworker.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "script-tag.http.html": [ - "1dd703daa8de27de1bdf962975e07593a338a5d8", + "title", + "Scheduler: Tasks Run in Priority Order" + ], [ - null, - { - "timeout": "long" - } + "global", + "window,worker" ] - ], - "sharedworker-classic.http.html": [ - "f05f62a46b1e24eecc3b0538623def86cef4ebd5", + ] + } + ], + [ + "scheduler/post-task-run-order.any.worker.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "sharedworker-module.http.html": [ - "1d2334f2b726806052029b3a457752e912b91c1e", + "title", + "Scheduler: Tasks Run in Priority Order" + ], [ - null, - { - "timeout": "long" - } + "global", + "window,worker" ] - ], - "worker-classic.http.html": [ - "f7de83ce5861fc60d275881cee3447df857e6a0c", + ] + } + ] + ], + "post-task-then-detach.html": [ + "402f34dc0c29dc1ecfff016f1018f2c5abac6273", + [ + null, + {} + ] + ], + "post-task-with-abort-signal-in-handler.any.js": [ + "1fd416c775dcdd03286024ace3d61d929afb7282", + [ + "scheduler/post-task-with-abort-signal-in-handler.any.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "worker-module.http.html": [ - "f5d00f8139f6dc0a04f2b8341f1dea000a8c4a35", + "title", + "Scheduler: postTask with a signal and abort the signal when running the callback" + ], [ - null, - { - "timeout": "long" - } + "global", + "window,worker" ] - ], - "xhr.http.html": [ - "ce3c63264f2f1463014e932007014483cafe7494", + ] + } + ], + [ + "scheduler/post-task-with-abort-signal-in-handler.any.serviceworker.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } + "title", + "Scheduler: postTask with a signal and abort the signal when running the callback" + ], + [ + "global", + "window,worker" ] ] - }, - "origin-when-cross-origin": { - "a-tag.http.html": [ - "c90fbac8471f9a653b29d20ad3751c8fbcca1f8b", + } + ], + [ + "scheduler/post-task-with-abort-signal-in-handler.any.sharedworker.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "fetch.http.html": [ - "026d1127cf79926e0c09b361bc8af290bf1c4f89", + "title", + "Scheduler: postTask with a signal and abort the signal when running the callback" + ], [ - null, - { - "timeout": "long" - } + "global", + "window,worker" ] - ], - "iframe-tag.http.html": [ - "ac41652006d109f35840b5b9aa79f7e6144e998b", + ] + } + ], + [ + "scheduler/post-task-with-abort-signal-in-handler.any.worker.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "img-tag.http.html": [ - "c359cedf9dd7a79ae87ff71bbcd8ea53ba2053c5", + "title", + "Scheduler: postTask with a signal and abort the signal when running the callback" + ], [ - null, - { - "timeout": "long" - } + "global", + "window,worker" ] - ], - "script-tag-dynamic-import.http.html": [ - "8bb6d6eba2d03e1d5046d5f229741f9e8b229a5d", + ] + } + ] + ], + "post-task-with-abort-signal.any.js": [ + "41cbafba9002789f8708a385d2e1683daa756e2a", + [ + "scheduler/post-task-with-abort-signal.any.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "script-tag.http.html": [ - "e85254c9c29c203f6eafa385952b5004a9958359", + "title", + "Scheduler: postTask and AbortSignal" + ], [ - null, - { - "timeout": "long" - } + "global", + "window,worker" ] - ], - "sharedworker-classic.http.html": [ - "164e5a5d6f8963051d027069b69fcd46f46bfee9", + ] + } + ], + [ + "scheduler/post-task-with-abort-signal.any.serviceworker.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "sharedworker-module.http.html": [ - "213e4a57639bd3352a796b47d459c1bb86fc0cd3", + "title", + "Scheduler: postTask and AbortSignal" + ], [ - null, - { - "timeout": "long" - } + "global", + "window,worker" ] - ], - "worker-classic.http.html": [ - "f63136bb9f403944cabf7a6d058b358e94688e4c", + ] + } + ], + [ + "scheduler/post-task-with-abort-signal.any.sharedworker.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "worker-module.http.html": [ - "0a14c4ba7b46252f5f4b936671b996d35868b689", + "title", + "Scheduler: postTask and AbortSignal" + ], [ - null, - { - "timeout": "long" - } + "global", + "window,worker" ] - ], - "xhr.http.html": [ - "38f8569c46126f2fce757fb0de4faeb0a86155ab", + ] + } + ], + [ + "scheduler/post-task-with-abort-signal.any.worker.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } + "title", + "Scheduler: postTask and AbortSignal" + ], + [ + "global", + "window,worker" ] ] - }, - "origin-when-crossorigin": { - "a-tag.http.html": [ - "270bc100e65b1d7f1fae6fa4711248ea76fe53ac", + } + ] + ], + "post-task-with-aborted-signal.any.js": [ + "4e5d42c0480944364fb0028c58961860d9e56eca", + [ + "scheduler/post-task-with-aborted-signal.any.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "fetch.http.html": [ - "074d6ff4543d57828da5fc2371928bd56cbed0a3", + "title", + "Scheduler: postTask with an Aborted Signal" + ], [ - null, - { - "timeout": "long" - } + "global", + "window,worker" ] - ], - "iframe-tag.http.html": [ - "9b2be1b36db3ad6ee13fc5dd2ea1dac677d7dfff", + ] + } + ], + [ + "scheduler/post-task-with-aborted-signal.any.serviceworker.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "img-tag.http.html": [ - "23f029e018125051429e832b6ea386da579b0634", + "title", + "Scheduler: postTask with an Aborted Signal" + ], [ - null, - { - "timeout": "long" - } + "global", + "window,worker" ] - ], - "script-tag-dynamic-import.http.html": [ - "d752465085686c8d2b33d30174e773feb4337931", + ] + } + ], + [ + "scheduler/post-task-with-aborted-signal.any.sharedworker.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "script-tag.http.html": [ - "de679acf6743b73b96ac83e77992360ebeed55ea", + "title", + "Scheduler: postTask with an Aborted Signal" + ], [ - null, - { - "timeout": "long" - } + "global", + "window,worker" ] - ], - "sharedworker-classic.http.html": [ - "ccc463ff5c026e9bd6a36ab955be26dd0e7c2093", + ] + } + ], + [ + "scheduler/post-task-with-aborted-signal.any.worker.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "sharedworker-module.http.html": [ - "29fd0f2ef347688114e97921bfae8ce9147b72e6", + "title", + "Scheduler: postTask with an Aborted Signal" + ], [ - null, - { - "timeout": "long" - } + "global", + "window,worker" ] - ], - "worker-classic.http.html": [ - "dd99c2a6083160764c6bcdd5c791611a85d194f2", + ] + } + ] + ], + "post-task-with-signal-and-priority.any.js": [ + "ba40d7cf53e4d51e8827fcb2826cf24ad1a8807a", + [ + "scheduler/post-task-with-signal-and-priority.any.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "worker-module.http.html": [ - "dd3800f59e256c4b7fcc03d7aeb2ee5eecfd1f7c", + "title", + "Scheduler: Signal and Priority Combination" + ], [ - null, - { - "timeout": "long" - } + "global", + "window,worker" ] - ], - "xhr.http.html": [ - "d639073154a3b614986c0d962e0912841b1f7c6e", + ] + } + ], + [ + "scheduler/post-task-with-signal-and-priority.any.serviceworker.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } + "title", + "Scheduler: Signal and Priority Combination" + ], + [ + "global", + "window,worker" ] ] - }, - "same-origin": { - "a-tag.http.html": [ - "e527be69a2fd13abf2573a22e63f917f831b36b9", + } + ], + [ + "scheduler/post-task-with-signal-and-priority.any.sharedworker.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "fetch.http.html": [ - "c9edccb7b0b38f9ce24e73e733484e83f272f0f3", + "title", + "Scheduler: Signal and Priority Combination" + ], [ - null, - { - "timeout": "long" - } + "global", + "window,worker" ] - ], - "iframe-tag.http.html": [ - "cffe9aaf42a7330565d425565426cd88a7c8ac3b", + ] + } + ], + [ + "scheduler/post-task-with-signal-and-priority.any.worker.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "img-tag.http.html": [ - "169b379a3066a58ff81832bb0291b892b4372c5d", + "title", + "Scheduler: Signal and Priority Combination" + ], [ - null, - { - "timeout": "long" - } + "global", + "window,worker" ] - ], - "script-tag-dynamic-import.http.html": [ - "e12b8cb5a9d5612fb17eaec7121c13883dce0e66", + ] + } + ] + ], + "post-task-with-signal-from-detached-iframe.html": [ + "acd974cbc783f721eb014b6b208d113ac3f76c7b", + [ + null, + {} + ] + ], + "post-task-without-signals.any.js": [ + "f5fe3e11a66e6432ce4c9f532b07c8377e8e8aed", + [ + "scheduler/post-task-without-signals.any.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "script-tag.http.html": [ - "f85b8d09ee7d33325441e9f8c343d6ef57abd63a", + "title", + "Scheduler: Basic Functionality without Signals" + ], [ - null, - { - "timeout": "long" - } + "global", + "window,worker" ] - ], - "sharedworker-classic.http.html": [ - "dc152cf203bc15d36e4bcf1807d30fde8979e694", + ] + } + ], + [ + "scheduler/post-task-without-signals.any.serviceworker.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "sharedworker-module.http.html": [ - "4af9a84e38f9ab2683bcfc0f065f3da0d4c4791d", + "title", + "Scheduler: Basic Functionality without Signals" + ], [ - null, - { - "timeout": "long" - } + "global", + "window,worker" ] - ], - "worker-classic.http.html": [ - "238e044777cc37fa5063ce9d59850fff7150f17d", + ] + } + ], + [ + "scheduler/post-task-without-signals.any.sharedworker.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "worker-module.http.html": [ - "e12a18771c04b8b4a1aed7e3c1b29a7b149297a9", + "title", + "Scheduler: Basic Functionality without Signals" + ], [ - null, - { - "timeout": "long" - } + "global", + "window,worker" ] - ], - "xhr.http.html": [ - "f806606e39a4c6f3a9822169e3c76e4229ac296d", + ] + } + ], + [ + "scheduler/post-task-without-signals.any.worker.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } + "title", + "Scheduler: Basic Functionality without Signals" + ], + [ + "global", + "window,worker" ] ] - }, - "strict-origin": { - "a-tag.http.html": [ - "a0d7b82ff0fe83b918dc7753a18ab2cee91972e5", + } + ] + ], + "scheduler-replaceable.any.js": [ + "12bf1116ddd8f41d43e98113478cb3b136a205ad", + [ + "scheduler/scheduler-replaceable.any.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "fetch.http.html": [ - "e4a723a02863c2ab625a7494587f892dce5d23ca", + "title", + "Scheduler: scheduler should be replaceable" + ], [ - null, - { - "timeout": "long" - } + "global", + "window,worker" ] - ], - "iframe-tag.http.html": [ - "a9a3f08183dfa4e2d6839e99703f4fbb36bb84ae", + ] + } + ], + [ + "scheduler/scheduler-replaceable.any.serviceworker.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "img-tag.http.html": [ - "61caa7b5deb5c81137a9848e2be1d1cf3e82b945", + "title", + "Scheduler: scheduler should be replaceable" + ], [ - null, - { - "timeout": "long" - } + "global", + "window,worker" ] - ], - "script-tag-dynamic-import.http.html": [ - "107b99e6be2f49e182bad572f174ca165269f5cf", + ] + } + ], + [ + "scheduler/scheduler-replaceable.any.sharedworker.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "script-tag.http.html": [ - "f8502d76ec48c99af07e2d0ac1200a8667919863", + "title", + "Scheduler: scheduler should be replaceable" + ], [ - null, - { - "timeout": "long" - } + "global", + "window,worker" ] - ], - "sharedworker-classic.http.html": [ - "65734aa6ddcf8d624e7433408c0afa9fec0925ec", + ] + } + ], + [ + "scheduler/scheduler-replaceable.any.worker.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "sharedworker-module.http.html": [ - "6950b050074f397167a26470f72ed8ba43be4129", + "title", + "Scheduler: scheduler should be replaceable" + ], [ - null, - { - "timeout": "long" - } + "global", + "window,worker" ] - ], - "worker-classic.http.html": [ - "5a80852cc1f47a4ca41caef32ca0c9032fb6ae24", + ] + } + ] + ], + "task-controller-abort-completed-tasks.any.js": [ + "fc96038e640e9e298181a8f752ec869a9f373cad", + [ + "scheduler/task-controller-abort-completed-tasks.any.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "worker-module.http.html": [ - "64cdd508330281cf4af76ddc9941bdd790858c68", + "title", + "Scheduler: Aborting Completed Tasks is a No-op" + ], [ - null, - { - "timeout": "long" - } + "global", + "window,worker" ] - ], - "xhr.http.html": [ - "08fe4b8add017f7a3491bbf913cdb2ca7eab3205", + ] + } + ], + [ + "scheduler/task-controller-abort-completed-tasks.any.serviceworker.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } + "title", + "Scheduler: Aborting Completed Tasks is a No-op" + ], + [ + "global", + "window,worker" ] ] - }, - "strict-origin-when-cross-origin": { - "a-tag.http.html": [ - "c90830faece9be944ac795fb6fe787338e36a8f0", + } + ], + [ + "scheduler/task-controller-abort-completed-tasks.any.sharedworker.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "fetch.http.html": [ - "76475a2a487830e05d5ccb0666b88d39e5f8365c", + "title", + "Scheduler: Aborting Completed Tasks is a No-op" + ], [ - null, - { - "timeout": "long" - } + "global", + "window,worker" ] - ], - "iframe-tag.http.html": [ - "261b31cea303331cfd623a57bc82c03a76095b5c", + ] + } + ], + [ + "scheduler/task-controller-abort-completed-tasks.any.worker.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "img-tag.http.html": [ - "f84e23faa9feab0d27b33001b9e70b743cea8166", + "title", + "Scheduler: Aborting Completed Tasks is a No-op" + ], [ - null, - { - "timeout": "long" - } + "global", + "window,worker" ] - ], - "script-tag-dynamic-import.http.html": [ - "2a3f6d0b0506b21ec6e72dfe4ff03ae76870e071", + ] + } + ] + ], + "task-controller-abort-signal-and-priority.any.js": [ + "168fe92f54a36662477c23f79790b282f888da56", + [ + "scheduler/task-controller-abort-signal-and-priority.any.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "script-tag.http.html": [ - "692ccd81562927c289b108fce7c40196dc35b4ea", + "title", + "Scheduler: TaskController.abort() with Signal and Priority" + ], [ - null, - { - "timeout": "long" - } + "global", + "window,worker" ] - ], - "sharedworker-classic.http.html": [ - "dbaa8dad709f672aff95144849938f2a93a360b6", + ] + } + ], + [ + "scheduler/task-controller-abort-signal-and-priority.any.serviceworker.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "sharedworker-module.http.html": [ - "dca75da7bcdb70be64102293d19f5d8ba816d154", + "title", + "Scheduler: TaskController.abort() with Signal and Priority" + ], [ - null, - { - "timeout": "long" - } + "global", + "window,worker" ] - ], - "worker-classic.http.html": [ - "fe4cb622a097deb627f154eddb868dd79b4313c5", + ] + } + ], + [ + "scheduler/task-controller-abort-signal-and-priority.any.sharedworker.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "worker-module.http.html": [ - "03b322428235b0f050e93a7f3ab5d56fcc088cca", + "title", + "Scheduler: TaskController.abort() with Signal and Priority" + ], [ - null, - { - "timeout": "long" - } + "global", + "window,worker" ] - ], - "xhr.http.html": [ - "38136d1dfa1886a3f60a82c88f452101ac8b7302", + ] + } + ], + [ + "scheduler/task-controller-abort-signal-and-priority.any.worker.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } + "title", + "Scheduler: TaskController.abort() with Signal and Priority" + ], + [ + "global", + "window,worker" ] ] - }, - "unsafe-url": { - "a-tag.http.html": [ - "f25dfbc5fd9332b08035b0b91d050b5b732233da", + } + ] + ], + "task-controller-abort1.any.js": [ + "fc7e02ce375953d206ddf6dc75b29b1b8f91b7be", + [ + "scheduler/task-controller-abort1.any.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "fetch.http.html": [ - "46eb2b9d87916b84ef65a759e208858ad85554f1", + "title", + "Scheduler: TaskController.abort() Basic Functionality" + ], [ - null, - { - "timeout": "long" - } + "global", + "window,worker" ] - ], - "iframe-tag.http.html": [ - "f84dba4815066cfbd4a8d30db34eef2f54b2070b", + ] + } + ], + [ + "scheduler/task-controller-abort1.any.serviceworker.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "img-tag.http.html": [ - "8f8b278cff6c76ce3833c56c6f0662e72017ddc1", + "title", + "Scheduler: TaskController.abort() Basic Functionality" + ], [ - null, - { - "timeout": "long" - } + "global", + "window,worker" ] - ], - "script-tag-dynamic-import.http.html": [ - "3e50fdaffcbc94ebfd78301586e97ed38957a907", + ] + } + ], + [ + "scheduler/task-controller-abort1.any.sharedworker.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "script-tag.http.html": [ - "b99cb1a63631df004c68eb27d999bedc9d51a861", + "title", + "Scheduler: TaskController.abort() Basic Functionality" + ], [ - null, - { - "timeout": "long" - } + "global", + "window,worker" ] - ], - "sharedworker-classic.http.html": [ - "24db9fcc6a7d82f4e2b82fbae9c7cbc48314c517", + ] + } + ], + [ + "scheduler/task-controller-abort1.any.worker.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } + "title", + "Scheduler: TaskController.abort() Basic Functionality" + ], + [ + "global", + "window,worker" ] - ], - "sharedworker-module.http.html": [ - "21fa9491715d82b870dd8fb4373dd4c5f6c7ac94", + ] + } + ] + ], + "task-controller-abort2.any.js": [ + "075715b565912c128b7cc234c64d29ef79cb1220", + [ + "scheduler/task-controller-abort2.any.html", + { + "script_metadata": [ + [ + "title", + "Scheduler: TaskController.abort() Aborts Correct Task" + ], [ - null, - { - "timeout": "long" - } + "global", + "window,worker" ] - ], - "worker-classic.http.html": [ - "0d76a82ae5bd2c6b3f43c2a0bff3e4bad6d6ff0c", + ] + } + ], + [ + "scheduler/task-controller-abort2.any.serviceworker.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "worker-module.http.html": [ - "2725051576f2ad8f4f22081e07105bc5182a366a", + "title", + "Scheduler: TaskController.abort() Aborts Correct Task" + ], [ - null, - { - "timeout": "long" - } + "global", + "window,worker" ] - ], - "xhr.http.html": [ - "b77d9ed3dff8b6cb6180248edbd31937ae0bdfcb", + ] + } + ], + [ + "scheduler/task-controller-abort2.any.sharedworker.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } + "title", + "Scheduler: TaskController.abort() Aborts Correct Task" + ], + [ + "global", + "window,worker" ] ] - }, - "unset": { - "a-tag.http.html": [ - "72e159c72e529aa32cc230f40ca467797a5b05be", + } + ], + [ + "scheduler/task-controller-abort2.any.worker.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "fetch.http.html": [ - "1dfb592eebbf2e835eec5ef90657b4dea4a9a6ea", + "title", + "Scheduler: TaskController.abort() Aborts Correct Task" + ], [ - null, - { - "timeout": "long" - } + "global", + "window,worker" ] - ], - "iframe-tag.http.html": [ - "557d6a532357dd12f993cbcec7a476c25079432e", + ] + } + ] + ], + "task-controller-setPriority-delayed-task.any.js": [ + "43d24c8f92a16a53cdb3c5d7155e4523d139af81", + [ + "scheduler/task-controller-setPriority-delayed-task.any.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "img-tag.http.html": [ - "3987df15184e3eb6b9595f9f718c8c40bd2c949b", + "title", + "Scheduler: Change Delayed Task Priority" + ], [ - null, - { - "timeout": "long" - } + "global", + "window,worker" ] - ], - "script-tag-dynamic-import.http.html": [ - "6444480eb9c167abbb9b6e86e9a862963b8fa7ee", + ] + } + ], + [ + "scheduler/task-controller-setPriority-delayed-task.any.serviceworker.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "script-tag.http.html": [ - "788c8d04f2b5d90b55fa9077723e8ba66ccd53d0", + "title", + "Scheduler: Change Delayed Task Priority" + ], [ - null, - { - "timeout": "long" - } + "global", + "window,worker" ] - ], - "sharedworker-classic.http.html": [ - "1bc6f04b8cc73debbc4f14696c74a3169c57fa60", + ] + } + ], + [ + "scheduler/task-controller-setPriority-delayed-task.any.sharedworker.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "sharedworker-module.http.html": [ - "a24ee872ad7db6918870560a814f9ef970994910", + "title", + "Scheduler: Change Delayed Task Priority" + ], [ - null, - { - "timeout": "long" - } + "global", + "window,worker" ] - ], - "worker-classic.http.html": [ - "7e6e8f3c5f61bf8f596ca02d8d068a49736cfe19", + ] + } + ], + [ + "scheduler/task-controller-setPriority-delayed-task.any.worker.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "worker-module.http.html": [ - "ae453ee0f00ea7897d9ea837d31157c453963796", + "title", + "Scheduler: Change Delayed Task Priority" + ], [ - null, - { - "timeout": "long" - } + "global", + "window,worker" ] - ], - "xhr.http.html": [ - "866577c3366b9f6d809b66c138672ac73690beda", + ] + } + ] + ], + "task-controller-setPriority-recursive.any.js": [ + "ebc4ccd95066a60cb74af67270ce01d816c2c56d", + [ + "scheduler/task-controller-setPriority-recursive.any.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } + "title", + "Scheduler: Recursive TaskController.setPriority()" + ], + [ + "global", + "window,worker" ] ] } - }, - "worker-classic.http-rp": { - "no-referrer": { - "fetch.http.html": [ - "7fd76e63435ab0b233610c5818e00b225757062b", + ], + [ + "scheduler/task-controller-setPriority-recursive.any.serviceworker.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "worker-classic.http.html": [ - "5bec21542b2a4df664754d72b2a333ab242006b8", + "title", + "Scheduler: Recursive TaskController.setPriority()" + ], [ - null, - { - "timeout": "long" - } + "global", + "window,worker" ] - ], - "worker-module.http.html": [ - "ce37d95eb32f349e5c28e981b7ef0868c8c69a70", + ] + } + ], + [ + "scheduler/task-controller-setPriority-recursive.any.sharedworker.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "xhr.http.html": [ - "c86c9717eb46d0d156de2f1e2cd89655d3ee9093", + "title", + "Scheduler: Recursive TaskController.setPriority()" + ], [ - null, - { - "timeout": "long" - } + "global", + "window,worker" ] ] - }, - "no-referrer-when-downgrade": { - "fetch.http.html": [ - "dac3a683221957a131072ef91ab53c22c512fc57", + } + ], + [ + "scheduler/task-controller-setPriority-recursive.any.worker.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "worker-classic.http.html": [ - "18ba58d76ef8c2e5f9532fa783231833899f87d7", + "title", + "Scheduler: Recursive TaskController.setPriority()" + ], [ - null, - { - "timeout": "long" - } + "global", + "window,worker" ] - ], - "worker-module.http.html": [ - "7f1553557246bcc9aec4492b77806c41f442ca3f", + ] + } + ] + ], + "task-controller-setPriority-repeated.any.js": [ + "fae3ec6c4896d912f84df150d1d1edaff9d4dfc9", + [ + "scheduler/task-controller-setPriority-repeated.any.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "xhr.http.html": [ - "d3952c294412b2a3d93a243a062abcd0de6dcc6d", + "title", + "Scheduler: TaskController.setPriority() repeated calls" + ], [ - null, - { - "timeout": "long" - } + "global", + "window,worker" ] ] - }, - "origin": { - "fetch.http.html": [ - "6cdc0b41d8cd79f544e13f1f64e24c207e89c561", + } + ], + [ + "scheduler/task-controller-setPriority-repeated.any.serviceworker.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "worker-classic.http.html": [ - "d4e7d5d815cb01a3d2f9ab85691e34c02cbbd5b7", + "title", + "Scheduler: TaskController.setPriority() repeated calls" + ], [ - null, - { - "timeout": "long" - } + "global", + "window,worker" ] - ], - "worker-module.http.html": [ - "aa988d50a7a55e0f08e6b456160b9f170df606bf", + ] + } + ], + [ + "scheduler/task-controller-setPriority-repeated.any.sharedworker.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "xhr.http.html": [ - "ccbf11195637f03d5973c26ded5be2021802cc51", + "title", + "Scheduler: TaskController.setPriority() repeated calls" + ], [ - null, - { - "timeout": "long" - } + "global", + "window,worker" ] ] - }, - "origin-when-cross-origin": { - "fetch.http.html": [ - "fd5c1c40b4c146c2ff2665bf6b9ad22d726c6c93", + } + ], + [ + "scheduler/task-controller-setPriority-repeated.any.worker.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "worker-classic.http.html": [ - "0faa7b5885a2ad13817cbae9843bdbce9dd02f0a", + "title", + "Scheduler: TaskController.setPriority() repeated calls" + ], [ - null, - { - "timeout": "long" - } + "global", + "window,worker" ] - ], - "worker-module.http.html": [ - "186c854ae996efdf753b41bbd133746dcdd414c9", + ] + } + ] + ], + "task-controller-setPriority1.any.js": [ + "a59c20caccf6734652e77d408b1557e851ce12d5", + [ + "scheduler/task-controller-setPriority1.any.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "xhr.http.html": [ - "1074f48768273b699478a0bc8a0517477337f7b2", + "title", + "Scheduler: TaskController.setPriority()" + ], [ - null, - { - "timeout": "long" - } + "global", + "window,worker" ] ] - }, - "same-origin": { - "fetch.http.html": [ - "a1bc897efcfe5087b66d22eba8c774cc0ddae362", + } + ], + [ + "scheduler/task-controller-setPriority1.any.serviceworker.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "worker-classic.http.html": [ - "520c0b65c067fb81a96014ec0814e30784b48dfe", + "title", + "Scheduler: TaskController.setPriority()" + ], [ - null, - { - "timeout": "long" - } + "global", + "window,worker" ] - ], - "worker-module.http.html": [ - "8487eb46ef7f6f50f0a102e34129f99506bfb196", + ] + } + ], + [ + "scheduler/task-controller-setPriority1.any.sharedworker.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "xhr.http.html": [ - "bbed4e8be209ab006f58ef075c767d32dfc3562b", + "title", + "Scheduler: TaskController.setPriority()" + ], [ - null, - { - "timeout": "long" - } + "global", + "window,worker" ] ] - }, - "strict-origin": { - "fetch.http.html": [ - "491266ebaf3bdb3f666d5ff2d19ef6b51fdc4b72", + } + ], + [ + "scheduler/task-controller-setPriority1.any.worker.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "worker-classic.http.html": [ - "773126f5715341e43cda2391c812e00cbc7e43eb", + "title", + "Scheduler: TaskController.setPriority()" + ], [ - null, - { - "timeout": "long" - } + "global", + "window,worker" ] - ], - "worker-module.http.html": [ - "59a6f8b15a7817e07848b485238da70e22215819", + ] + } + ] + ], + "task-controller-setPriority2.any.js": [ + "716b3af33e0afaffbf9ffe229138d48be1fe6ec3", + [ + "scheduler/task-controller-setPriority2.any.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "xhr.http.html": [ - "cd9a48a353e16c962a378950a2c7d8a518ee2b51", + "title", + "Scheduler: TaskController.setPriority and Task Order" + ], [ - null, - { - "timeout": "long" - } + "global", + "window,worker" ] ] - }, - "strict-origin-when-cross-origin": { - "fetch.http.html": [ - "7dd1c32a416d98cd98b6895a86898ce17019bb1a", + } + ], + [ + "scheduler/task-controller-setPriority2.any.serviceworker.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "worker-classic.http.html": [ - "b4cf59c956213b4b504d7ce55ae03e16f0b2ae0c", + "title", + "Scheduler: TaskController.setPriority and Task Order" + ], [ - null, - { - "timeout": "long" - } + "global", + "window,worker" ] - ], - "worker-module.http.html": [ - "0abbb2c83c16291838d1235798af64205bdfed29", + ] + } + ], + [ + "scheduler/task-controller-setPriority2.any.sharedworker.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "xhr.http.html": [ - "443813483809febe50aba90be8967c01e8752fb7", + "title", + "Scheduler: TaskController.setPriority and Task Order" + ], [ - null, - { - "timeout": "long" - } + "global", + "window,worker" ] ] - }, - "unsafe-url": { - "fetch.http.html": [ - "39790d452f14a34bd27c921ebb65a879afc97db0", + } + ], + [ + "scheduler/task-controller-setPriority2.any.worker.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "worker-classic.http.html": [ - "0f6f2140f373b61deaab876bfa0604e56f796bf3", + "title", + "Scheduler: TaskController.setPriority and Task Order" + ], [ - null, - { - "timeout": "long" - } + "global", + "window,worker" ] - ], - "worker-module.http.html": [ - "7ef0c81886e483b23d1083633ea0fa00b22bbe93", + ] + } + ] + ], + "task-signal-any-abort.tentative.any.js": [ + "4afcde901d10cb6402a11b2b738d7a911b944b0f", + [ + "scheduler/task-signal-any-abort.tentative.any.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "xhr.http.html": [ - "31ffe149743767d924d2377a8a0799368fc95206", + "global", + "window,worker" + ], [ - null, - { - "timeout": "long" - } + "script", + "../dom/abort/resources/abort-signal-any-tests.js" ] ] - }, - "unset": { - "fetch.http.html": [ - "107e01441413122eabddaeaf6ec342340481abbb", + } + ], + [ + "scheduler/task-signal-any-abort.tentative.any.serviceworker.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "worker-classic.http.html": [ - "daa20c335d0fdfe362b8b05742c4e40878557e95", + "global", + "window,worker" + ], [ - null, - { - "timeout": "long" - } + "script", + "../dom/abort/resources/abort-signal-any-tests.js" ] - ], - "worker-module.http.html": [ - "7d9e4dfc8ed675036bae7b35da8bb1c6fd9209cf", + ] + } + ], + [ + "scheduler/task-signal-any-abort.tentative.any.sharedworker.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "xhr.http.html": [ - "8e8d13831f82245179536cccf29904bdca4e6c84", + "global", + "window,worker" + ], [ - null, - { - "timeout": "long" - } + "script", + "../dom/abort/resources/abort-signal-any-tests.js" ] ] } - }, - "worker-module.http-rp": { - "no-referrer": { - "fetch.http.html": [ - "bc8b3cdf0ca40cf7461acc15ea85c2bb341bea01", + ], + [ + "scheduler/task-signal-any-abort.tentative.any.worker.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "worker-classic.http.html": [ - "19eadf3a6739d33c2ed331a457ca82f5863a786e", + "global", + "window,worker" + ], [ - null, - { - "timeout": "long" - } + "script", + "../dom/abort/resources/abort-signal-any-tests.js" ] - ], - "worker-module.http.html": [ - "298db8c8caa208a505cab9a2e6c13c8615246595", + ] + } + ] + ], + "task-signal-any-post-task-run-order.tentative.any.js": [ + "889217b08109080bd319d4c290fff7c0cf701521", + [ + "scheduler/task-signal-any-post-task-run-order.tentative.any.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "xhr.http.html": [ - "0d4d12fa3bdaf8147b4c07cf3f406b769f3f6504", + "title", + "Scheduler: Tasks Run in Priority Order" + ], [ - null, - { - "timeout": "long" - } + "global", + "window,worker" ] ] - }, - "no-referrer-when-downgrade": { - "fetch.http.html": [ - "af826059224fc0c0ca1d8de0e7dc9d635c960a35", + } + ], + [ + "scheduler/task-signal-any-post-task-run-order.tentative.any.serviceworker.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "worker-classic.http.html": [ - "d2a9ba1b3af8cd6e70939b5623e98deb637f980d", + "title", + "Scheduler: Tasks Run in Priority Order" + ], [ - null, - { - "timeout": "long" - } + "global", + "window,worker" ] - ], - "worker-module.http.html": [ - "6ac89f168998e6b500f4cda710d79e5faf8ddfe5", + ] + } + ], + [ + "scheduler/task-signal-any-post-task-run-order.tentative.any.sharedworker.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "xhr.http.html": [ - "a49039131466ad99348e7d35ffdc7d6d612d8f56", + "title", + "Scheduler: Tasks Run in Priority Order" + ], [ - null, - { - "timeout": "long" - } + "global", + "window,worker" ] ] - }, - "origin": { - "fetch.http.html": [ - "3a28efb5d8ba1bdf7b67a2176aa19089f543bd11", + } + ], + [ + "scheduler/task-signal-any-post-task-run-order.tentative.any.worker.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "worker-classic.http.html": [ - "ca9a19c13a41bb86fe4331f3fed332b7c482633c", + "title", + "Scheduler: Tasks Run in Priority Order" + ], [ - null, - { - "timeout": "long" - } + "global", + "window,worker" ] - ], - "worker-module.http.html": [ - "c213c0564bd7375a9e5c86d32349aa067365c0c1", + ] + } + ] + ], + "task-signal-any-priority.tentative.any.js": [ + "46af80b8b1e1816e8b9ff2fe76695d0f24f93e7b", + [ + "scheduler/task-signal-any-priority.tentative.any.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } + "global", + "window,worker" ] - ], - "xhr.http.html": [ - "fce3b7be7027782f9289795d8378e2deab1c9dd7", + ] + } + ], + [ + "scheduler/task-signal-any-priority.tentative.any.serviceworker.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } + "global", + "window,worker" ] ] - }, - "origin-when-cross-origin": { - "fetch.http.html": [ - "a4b35bf505298187ecb2e8bb0162c8e6583209ff", + } + ], + [ + "scheduler/task-signal-any-priority.tentative.any.sharedworker.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } + "global", + "window,worker" ] - ], - "worker-classic.http.html": [ - "07799517d4ecca05b41da9c35379b89098ad0ef9", + ] + } + ], + [ + "scheduler/task-signal-any-priority.tentative.any.worker.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } + "global", + "window,worker" ] - ], - "worker-module.http.html": [ - "95586f4f2442ea705c55b5189c78196d050e8b34", + ] + } + ] + ], + "task-signal-onprioritychange.any.js": [ + "7f59e1f1f84ca2761195f6426ec0a0a3a2bd38b1", + [ + "scheduler/task-signal-onprioritychange.any.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "xhr.http.html": [ - "a88a4794137eba79022f205d50e9383927a5899d", + "title", + "Scheduler: TaskSignal onprioritychange" + ], [ - null, - { - "timeout": "long" - } + "global", + "window,worker" ] ] - }, - "same-origin": { - "fetch.http.html": [ - "f200e415ca10e0c1ae332b8ae1c1f869c6155647", + } + ], + [ + "scheduler/task-signal-onprioritychange.any.serviceworker.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "worker-classic.http.html": [ - "39ce69461d0f954f56da5c5df3002a85db12ba41", + "title", + "Scheduler: TaskSignal onprioritychange" + ], [ - null, - { - "timeout": "long" - } + "global", + "window,worker" ] - ], - "worker-module.http.html": [ - "55b9ee4eb2fe13eafe33875a78c5367729e2bcc7", + ] + } + ], + [ + "scheduler/task-signal-onprioritychange.any.sharedworker.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "xhr.http.html": [ - "67a1b10069a3e461495b9cd479cdc7cedbe9ae8d", + "title", + "Scheduler: TaskSignal onprioritychange" + ], [ - null, - { - "timeout": "long" - } + "global", + "window,worker" ] ] - }, - "strict-origin": { - "fetch.http.html": [ - "1617f515133ccae6a8d1dc02bb2452ca57df207f", + } + ], + [ + "scheduler/task-signal-onprioritychange.any.worker.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "worker-classic.http.html": [ - "07d624de69b474efb304d2790a43b4246ecd59e2", + "title", + "Scheduler: TaskSignal onprioritychange" + ], [ - null, - { - "timeout": "long" - } + "global", + "window,worker" ] + ] + } + ] + ], + "tentative": { + "yield": { + "yield-abort.any.js": [ + "94a8b2cb2b8f842bff780e3d169f148b6dc78136", + [ + "scheduler/tentative/yield/yield-abort.any.html", + {} ], - "worker-module.http.html": [ - "233abfb42c668fc7bdf6dd91479253f6ed136e03", + [ + "scheduler/tentative/yield/yield-abort.any.worker.html", + {} + ] + ], + "yield-inherit-across-promises.any.js": [ + "8530bd4e1042ad42546b3c0ef543e501b7594112", + [ + "scheduler/tentative/yield/yield-inherit-across-promises.any.html", + {} + ], + [ + "scheduler/tentative/yield/yield-inherit-across-promises.any.worker.html", + {} + ] + ], + "yield-priority-idle-callbacks.html": [ + "cb5233c81138b7bb5ca00182dd191a3c37d39df0", + [ + null, + {} + ] + ], + "yield-priority-posttask.any.js": [ + "5704a4f7e667442291e7e936b306c083a9e4d8d0", + [ + "scheduler/tentative/yield/yield-priority-posttask.any.html", + {} + ], + [ + "scheduler/tentative/yield/yield-priority-posttask.any.worker.html", + {} + ] + ], + "yield-priority-timers.any.js": [ + "189b2ee012840ca85e62d1df9588a76e988cad1f", + [ + "scheduler/tentative/yield/yield-priority-timers.any.html", + {} + ], + [ + "scheduler/tentative/yield/yield-priority-timers.any.worker.html", + {} + ] + ], + "yield-then-detach.html": [ + "835f9e7a62d981bb0565572e22659f1f4d3e669f", + [ + null, + {} + ] + ] + } + } + }, + "screen-capture": { + "capture-controller-event-target.https.window.js": [ + "379f35956837c47bc7d732af222189442fd40d0e", + [ + "screen-capture/capture-controller-event-target.https.window.html", + {} + ] + ], + "delegate-request.https.sub.html": [ + "8cc81c13832d9cd051e35a884d354a0835e58f81", + [ + null, + { + "testdriver": true + } + ] + ], + "getallscreensmedia-exposure.tentative.https.window.js": [ + "9be2fa07dd6148fb4f29aced39d8c6b2eb3bd33d", + [ + "screen-capture/getallscreensmedia-exposure.tentative.https.window.html", + {} + ] + ], + "getdisplaymedia-after-discard.https.html": [ + "445120f8c2f0878c7aa27033595be6531475ea79", + [ + null, + { + "testdriver": true + } + ] + ], + "getdisplaymedia-capture-controller.https.window.js": [ + "0fe1a9fd26b2d151ed6d5d042718676885f8711b", + [ + "screen-capture/getdisplaymedia-capture-controller.https.window.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ], + [ + "timeout", + "long" ] ], - "xhr.http.html": [ - "81ddff1eb55cfd2e91a8754079c1da4ea68468f8", + "timeout": "long" + } + ] + ], + "getdisplaymedia-framerate.https.html": [ + "c17b25d9873e5d482d7152fd8f519ee75028dbee", + [ + null, + { + "testdriver": true, + "timeout": "long" + } + ] + ], + "getdisplaymedia.https.html": [ + "4a7c655335161afdeaf398a4e6225598de325ce9", + [ + null, + { + "testdriver": true, + "timeout": "long" + } + ] + ], + "historical.https.html": [ + "d510bc42089b8b386b9469c3ce99ba810ae37b63", + [ + null, + {} + ] + ], + "idlharness.https.window.js": [ + "527565ea9632e69a6de62efd2be3729c974b93e4", + [ + "screen-capture/idlharness.https.window.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } + "script", + "/resources/WebIDLParser.js" + ], + [ + "script", + "/resources/idlharness.js" ] ] - }, - "strict-origin-when-cross-origin": { - "fetch.http.html": [ - "4cc033b43713a46be703b9537bd0002cc8104dfb", + } + ] + ], + "permissions-policy-audio+video.https.sub.html": [ + "2e7df39125640aafa548ece4b3b245c26bd6bf9f", + [ + null, + { + "testdriver": true + } + ] + ], + "permissions-policy-audio.https.sub.html": [ + "7bfc33f861dd55878be0960b72c339d701c7d27f", + [ + null, + { + "testdriver": true + } + ] + ], + "permissions-policy-video.https.sub.html": [ + "6740466ef2a0632f8068a3273d9c16876b0f9ba8", + [ + null, + { + "testdriver": true + } + ] + ] + }, + "screen-details": { + "getScreenDetails.tentative.https.window.js": [ + "06f0344f3ad98929cbad736c49ec9ab5fbebb7e0", + [ + "screen-details/getScreenDetails.tentative.https.window.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "worker-classic.http.html": [ - "b1a4a79540267d84035af8d8de6d0229a8d685f8", + "global", + "window" + ], [ - null, - { - "timeout": "long" - } - ] - ], - "worker-module.http.html": [ - "ba3408d98c2d3a799a91618bf08d2a0ad365d0b3", + "script", + "/resources/testdriver.js" + ], [ - null, - { - "timeout": "long" - } + "script", + "/resources/testdriver-vendor.js" ] - ], - "xhr.http.html": [ - "d0ac356f0691ba90246c1fc6f4dd724ac937df7c", + ] + } + ] + ], + "isExtended.tentative.https.window.js": [ + "3c814ae3d91d519500f7b44ab8fe4faa8a861d88", + [ + "screen-details/isExtended.tentative.https.window.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } + "global", + "window" ] ] - }, - "unsafe-url": { - "fetch.http.html": [ - "b07a1144da8691fc50514d313752c77ab870f0e2", + } + ] + ], + "permission.https.window.js": [ + "f477bd4230bbfa99d5020393eb8bf9f794b5e8ca", + [ + "screen-details/permission.https.window.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } + "global", + "window" + ], + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" ] - ], - "worker-classic.http.html": [ - "f5f0fd461b6d3973c6959dbf0e246baf716e4e52", + ] + } + ] + ] + }, + "screen-orientation": { + "active-lock.html": [ + "72d2d7fc1d4bc98c64c417171c5f852089898316", + [ + null, + { + "testdriver": true + } + ] + ], + "event-before-promise.html": [ + "56be4379ac0fcb0142d2a8abcb11a1978cf900c3", + [ + null, + { + "testdriver": true + } + ] + ], + "fullscreen-interactions.html": [ + "b1ac1c7000f12d0931d0a2044b75b567cdc95596", + [ + null, + { + "testdriver": true + } + ] + ], + "hidden_document.html": [ + "6ff78ea866acf06f6f173df030bf3f6c8d5b8917", + [ + null, + { + "testdriver": true, + "timeout": "long" + } + ] + ], + "idlharness.window.js": [ + "115f6ccb1e393586f4076884c01443d4944bb413", + [ + "screen-orientation/idlharness.window.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } + "script", + "/resources/WebIDLParser.js" + ], + [ + "script", + "/resources/idlharness.js" ] - ], - "worker-module.http.html": [ - "fc5450adc37fb0d10690f1a11da6e59f4c828626", + ] + } + ] + ], + "lock-bad-argument.html": [ + "f13ce2a8b9e4d2b27e3c7038f685e0f9de2e0e96", + [ + null, + {} + ] + ], + "lock-basic.html": [ + "584747113ca232f4f56955b77430d48755f25866", + [ + null, + { + "testdriver": true + } + ] + ], + "lock-sandboxed-iframe.html": [ + "ab954f04b4c5d9043d893e36892c4061ed446661", + [ + null, + { + "testdriver": true + } + ] + ], + "lock-unlock-check.html": [ + "6e373ecb1ca50e3e058de5d8cb38912285a79c3b", + [ + null, + { + "testdriver": true + } + ] + ], + "nested-documents.html": [ + "ec3c0b480971578b1529a7df524b3225797383f2", + [ + null, + { + "testdriver": true + } + ] + ], + "non-fully-active.html": [ + "ee1acf07bdf17124adc3603c172c3a22b8ebee8d", + [ + null, + { + "testdriver": true + } + ] + ], + "onchange-event-subframe.html": [ + "6eb986b43804ddd91ccd07476dc373684c4727a6", + [ + null, + { + "testdriver": true + } + ] + ], + "onchange-event.html": [ + "e0d3afd7b4021f5eabf8829981705da822b01c03", + [ + null, + { + "testdriver": true + } + ] + ], + "orientation-reading.html": [ + "90bbb8071dacf704c5a66b564268af4ee4f92354", + [ + null, + { + "testdriver": true + } + ] + ], + "unlock.html": [ + "13442f98f2907a0a750c67874b417cbd527728af", + [ + null, + { + "testdriver": true + } + ] + ] + }, + "screen-wake-lock": { + "chrome-bug-1348019.https.html": [ + "7c9909581ca3974c375397797d241f64301885ea", + [ + null, + { + "testdriver": true + } + ] + ], + "idlharness.https.window.js": [ + "6509d9c70e25785ef5779e954c834f567fbdb42c", + [ + "screen-wake-lock/idlharness.https.window.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } + "script", + "/resources/WebIDLParser.js" + ], + [ + "script", + "/resources/idlharness.js" + ], + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ], + [ + "timeout", + "long" ] ], - "xhr.http.html": [ - "2c1f53cd9adfd82a3ad17499aaabbc05ae31bd0e", + "timeout": "long" + } + ] + ], + "wakelock-active-document.https.window.js": [ + "6de27d49ef7be8832fcdf74c17a7c2e4342e98a4", + [ + "screen-wake-lock/wakelock-active-document.https.window.html", + {} + ] + ], + "wakelock-disabled-by-permissions-policy.https.html": [ + "fd1e6db656f6e1505881cdac8655397d5d2c86a2", + [ + null, + { + "testdriver": true + } + ] + ], + "wakelock-document-hidden.https.html": [ + "c8c9712bdd95f65b292535df844634aedb5abb19", + [ + null, + { + "testdriver": true + } + ] + ], + "wakelock-enabled-by-permissions-policy-attribute-redirect-on-load.https.html": [ + "8898a571e8fb699a01f35ba2fc28d089b56b0fb9", + [ + null, + { + "testdriver": true + } + ] + ], + "wakelock-enabled-by-permissions-policy-attribute.https.html": [ + "ea3ebf2449be56b2a042967e17a1a7ac74a0c8d5", + [ + null, + { + "testdriver": true + } + ] + ], + "wakelock-enabled-by-permissions-policy.https.html": [ + "cc9106967ef522b307c3c079846a36e43e3b3b73", + [ + null, + { + "testdriver": true + } + ] + ], + "wakelock-enabled-on-self-origin-by-permissions-policy.https.html": [ + "82ed6d3f78e460c7267abdb180ace976679901ff", + [ + null, + { + "testdriver": true + } + ] + ], + "wakelock-insecure-context.any.js": [ + "f32cc3c354354f99852bb198760cdbd9229355a4", + [ + "screen-wake-lock/wakelock-insecure-context.any.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } + "title", + "Wake Lock API is not exposed in an insecure context" ] ] - }, - "unset": { - "fetch.http.html": [ - "82d21579885dfad02f319ab62f6ded94fcacf2fa", + } + ], + [ + "screen-wake-lock/wakelock-insecure-context.any.worker.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } + "title", + "Wake Lock API is not exposed in an insecure context" ] - ], - "worker-classic.http.html": [ - "896b9dce2bba61a7a07ebc5c9cc14cade292ac46", + ] + } + ] + ], + "wakelock-onrelease.https.html": [ + "896748411be22c8937421361b7dac95a36448f7a", + [ + null, + { + "testdriver": true + } + ] + ], + "wakelock-released.https.html": [ + "8d351e3e6825226f564c5647eca040155c493276", + [ + null, + { + "testdriver": true + } + ] + ], + "wakelock-request-denied.https.html": [ + "f3fede6e104bdcd041caf758608eaf72fc89b628", + [ + null, + { + "testdriver": true + } + ] + ], + "wakelock-screen-type-on-worker.https.worker.js": [ + "0201294e2365abae3e13fcfe21debfd26628236a", + [ + "screen-wake-lock/wakelock-screen-type-on-worker.https.worker.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } + "title", + "Screen wake lock should not be allowed in dedicated worker" ] - ], - "worker-module.http.html": [ - "804ba16e356e50905772c4b3fcd5128e5ad03e39", + ] + } + ] + ], + "wakelock-supported-by-permissions-policy.html": [ + "cc0bb963b16ed086e29d6cfbe4b6fb19468f025e", + [ + null, + {} + ] + ], + "wakelock-type.https.window.js": [ + "5008064684e21563c02792f74103fa189fbe325d", + [ + "screen-wake-lock/wakelock-type.https.window.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "xhr.http.html": [ - "6920a3c4c3fe27de5a5e1c49d4155e370e0dcb95", + "script", + "/resources/testdriver.js" + ], [ - null, - { - "timeout": "long" - } + "script", + "/resources/testdriver-vendor.js" + ] + ] + } + ] + ], + "wakelockpermissiondescriptor.https.html": [ + "252aa3ce2816fc91d5a114a3cc2f799e43a04bf9", + [ + null, + { + "testdriver": true + } + ] + ] + }, + "scroll-animations": { + "css": { + "animation-duration-auto.tentative.html": [ + "01982859137855c7f6c3c5011b013ea715c9c4ea", + [ + null, + {} + ] + ], + "animation-events.html": [ + "be53af487a0f9a05787f60839a05d3c6aa948bc5", + [ + null, + {} + ] + ], + "animation-range-ignored.html": [ + "98a5d45c37f9349eb28b54406e6542e58cb5b2a0", + [ + null, + {} + ] + ], + "animation-range-normal-matches-cover.html": [ + "a91e3d3e29a09c43a5e3fd61365ef803a1a47814", + [ + null, + {} + ] + ], + "animation-shorthand.html": [ + "144fc5773fd5c75af30d74775a75ec9e7e478396", + [ + null, + {} + ] + ], + "animation-timeline-computed.html": [ + "1e621eee531c22e80d98fb3dc30517cf4153ce07", + [ + null, + {} + ] + ], + "animation-timeline-deferred.html": [ + "d0671e5f238bdaf0a2231e22c07509656eedbc77", + [ + null, + {} + ] + ], + "animation-timeline-ignored.tentative.html": [ + "b9efbb428bd97f0de4331dbc7c88731c7067873e", + [ + null, + {} + ] + ], + "animation-timeline-in-keyframe.html": [ + "04b430c324231011cc883e359a1ffb12ca5741da", + [ + null, + {} + ] + ], + "animation-timeline-multiple.html": [ + "3196653656d15e6f813badf43e8062fa6963077d", + [ + null, + {} + ] + ], + "animation-timeline-named-scroll-progress-timeline.tentative.html": [ + "5a1f26b3f38838e120b6acf05745e4cbe75b2380", + [ + null, + {} + ] + ], + "animation-timeline-none.html": [ + "7092523c489603dbfd12452318cacec4aaf85421", + [ + null, + {} + ] + ], + "animation-timeline-parsing.html": [ + "9e3c1078b5b416ac8402abe8901ca8e1c8d0a9fa", + [ + null, + {} + ] + ], + "animation-timeline-scroll-functional-notation.tentative.html": [ + "31c85810d5595ad22628c99319d38599ffae495f", + [ + null, + {} + ] + ], + "animation-timeline-view-functional-notation.tentative.html": [ + "d91dfe924b7756e111bdc9ef6a2fc8fefa5245d4", + [ + null, + {} + ] + ], + "get-animations-inactive-timeline.html": [ + "83bc5b5f531be108c743cdc75c77d0b6ae6bc5bd", + [ + null, + {} + ] + ], + "merge-timeline-offset-keyframes.html": [ + "e5d5037d622605176b70f1d7a2a9211f67514201", + [ + null, + {} + ] + ], + "named-range-keyframes-with-document-timeline.tentative.html": [ + "a0094d32207da66056879d2de9ecbc5e58dedbed", + [ + null, + {} + ] + ], + "progress-based-animation-animation-longhand-properties.tentative.html": [ + "25ce1675533de7643eb0ac2863a7ed88b35322b2", + [ + null, + {} + ] + ], + "progress-based-animation-timeline.html": [ + "bbc60e3fbddf6f298ca3c3e3fcbff628d3a9baa5", + [ + null, + {} + ] + ], + "pseudo-on-scroller.html": [ + "bdeb140a041e27e04d81c40e1cfc88f033f1a250", + [ + null, + {} + ] + ], + "scroll-timeline-axis-computed.html": [ + "c942fb40932433dd4daf7dbb68557488bebb14e8", + [ + null, + {} + ] + ], + "scroll-timeline-axis-parsing.html": [ + "a9a760a54a44c8a64cacfa25d155339f962b3c89", + [ + null, + {} + ] + ], + "scroll-timeline-axis-writing-mode.html": [ + "cb9a98dcd8e57174a5d59f320349cd11dc58fa36", + [ + null, + {} + ] + ], + "scroll-timeline-document-scroller-quirks.html": [ + "809a658a15e630234e22f6852ffe2aaae8f89469", + [ + null, + {} + ] + ], + "scroll-timeline-dynamic.tentative.html": [ + "d1f143c7c191392b7a52785c371a671a181b5f0c", + [ + null, + {} + ] + ], + "scroll-timeline-in-container-query.html": [ + "b22e8c906798df7213443e52f1d6d4fd146c3545", + [ + null, + {} + ] + ], + "scroll-timeline-inactive.html": [ + "eedc8e3958ade809be1832619ab12684e2e12922", + [ + null, + {} + ] + ], + "scroll-timeline-multi-pass.tentative.html": [ + "403316ead0fed5072111d50b0673d57a95c99cf0", + [ + null, + {} + ] + ], + "scroll-timeline-name-computed.html": [ + "b803ee8212b25ea20f314b5e76fa795b2792d700", + [ + null, + {} + ] + ], + "scroll-timeline-name-parsing.html": [ + "d38b9640af91b87b48838c95481ccf38afd2731d", + [ + null, + {} + ] + ], + "scroll-timeline-name-shadow.html": [ + "a535b2a44fe80678f74a08564784a5ef43f593fd", + [ + null, + {} + ] + ], + "scroll-timeline-nearest-dirty.html": [ + "1a79c9bb2225e994811283ab9fe21d14fd1e9ea8", + [ + null, + {} + ] + ], + "scroll-timeline-nearest-with-absolute-positioned-element.html": [ + "57a1a947126c86d8fdbdf7f6d1a7ced740ecf172", + [ + null, + {} + ] + ], + "scroll-timeline-paused-animations.html": [ + "54518a5e871e59a8839bba708872c70dccb3f276", + [ + null, + {} + ] + ], + "scroll-timeline-range-animation.html": [ + "df087da6e2b023a6f8fcf70dc9dc9e930162ab7b", + [ + null, + {} + ] + ], + "scroll-timeline-responsiveness-from-endpoint.html": [ + "71d3699077e02fafa02e3fecc37edbd1f4060a98", + [ + null, + {} + ] + ], + "scroll-timeline-root-dirty.html": [ + "1c0b73ab45fd5e1618167a91b2bbdaf8a63f7458", + [ + null, + {} + ] + ], + "scroll-timeline-sampling.html": [ + "a67f3b94e49818e3da6bbe69c8407d23674c34da", + [ + null, + {} + ] + ], + "scroll-timeline-shorthand.html": [ + "722a8a1f4d7b7170e0b719b75b370ce4fe201886", + [ + null, + {} + ] + ], + "scroll-timeline-with-percent-delay.tentative.html": [ + "4f2e1761de29d80c8377926f734e0cfbfe831a8c", + [ + null, + {} + ] + ], + "timeline-offset-in-keyframe-change-timeline.tentative.html": [ + "5a70820b881edf687961606f79153dab96d6ac2d", + [ + null, + {} + ] + ], + "timeline-offset-keyframes-hidden-subject.html": [ + "011b8d4319a391837f5e1c80b330793b4201337a", + [ + null, + {} + ] + ], + "timeline-offset-keyframes-with-document-timeline.html": [ + "03ee381fd9276fef5b43d8c519bb1c6af01a690e", + [ + null, + {} + ] + ], + "timeline-range-name-offset-in-keyframes.tentative.html": [ + "6fab0025dac324bf5f0af79e37af8e832d4d36b6", + [ + null, + {} + ] + ], + "timeline-scope-computed.tentative.html": [ + "814933f726658493581a00157a660417ebf367c0", + [ + null, + {} + ] + ], + "timeline-scope-parsing.tentative.html": [ + "2885cb758ded6f4ad95f2f0603a977970b519ac7", + [ + null, + {} + ] + ], + "timeline-scope.html": [ + "e4e90bc03ac5618a4a164b30e3b7d32e0b9f259f", + [ + null, + {} + ] + ], + "view-timeline-animation-range-update.tentative.html": [ + "552461c9b6c24870972b96281ab42cdf63b06ca2", + [ + null, + {} + ] + ], + "view-timeline-animation.html": [ + "1bf034a742f3b30be5070b78536614c1b53823fe", + [ + null, + {} + ] + ], + "view-timeline-axis-computed.html": [ + "30b2a1ae051bf3c20fc2b4eb6b008d696e21272a", + [ + null, + {} + ] + ], + "view-timeline-axis-parsing.html": [ + "1ebe4410a9547b8255a6c6696afc60462aafc04e", + [ + null, + {} + ] + ], + "view-timeline-dynamic.html": [ + "81dc8353c20971e338aec81fdb7e76cdf6cdc731", + [ + null, + {} + ] + ], + "view-timeline-inset-animation.html": [ + "f9aa0f291895ba15bead50f6e7efbc328a41a18e", + [ + null, + {} + ] + ], + "view-timeline-inset-computed.html": [ + "d9e1c9d790dbb55487e644ec77f26d3f0b1c3030", + [ + null, + {} + ] + ], + "view-timeline-inset-parsing.html": [ + "d502b13593ae2fba6e94830cc1af5a83ff1c9aef", + [ + null, + {} + ] + ], + "view-timeline-keyframe-boundary-interpolation.html": [ + "011f03cb5dbb9ccded90e743201b6ceaafb4a8df", + [ + null, + {} + ] + ], + "view-timeline-lookup.html": [ + "067ac1fa969f119e252d3415f172cbb6e6129d82", + [ + null, + {} + ] + ], + "view-timeline-name-computed.html": [ + "3304723f43fa1880e5f1095739087e9612b1ac68", + [ + null, + {} + ] + ], + "view-timeline-name-parsing.html": [ + "2b22cbe036e605633e1e72a160acd92172b3610d", + [ + null, + {} + ] + ], + "view-timeline-name-shadow.html": [ + "11902a3c6ebe07230cc80133b0e06d0215952c2e", + [ + null, + {} + ] + ], + "view-timeline-range-animation.html": [ + "9e5993b63a8792077c8e67302cea16671b8521b5", + [ + null, + {} + ] + ], + "view-timeline-shorthand.html": [ + "9027eb0b09dc7dd348d2d3a0df94720b0de76150", + [ + null, + {} + ] + ], + "view-timeline-used-values.html": [ + "1bd6f0468c3db67b2ec48d2727121f8a87ebd522", + [ + null, + {} + ] + ], + "view-timeline-with-delay-and-range.tentative.html": [ + "db260f15f07000045fa92068f7aaf1dfa39c4429", + [ + null, + {} + ] + ], + "view-timeline-with-transform-on-subject.html": [ + "e4abac7219be6392e98ffb6ec4118ec18c0450cf", + [ + null, + {} + ] + ] + }, + "scroll-timelines": { + "cancel-animation.html": [ + "7daf76a7a5465b4247fffde61bac526d10abbed6", + [ + null, + {} + ] + ], + "constructor-no-document.html": [ + "d2cc590bc752af3435f464a668793896d8667930", + [ + null, + {} + ] + ], + "constructor.html": [ + "88c6a453ec972fe492d54f316105621c0717a81b", + [ + null, + {} + ] + ], + "current-time-nan.html": [ + "440b1f413e2300e4b87ae75f494671acbef02ce1", + [ + null, + {} + ] + ], + "current-time-root-scroller.html": [ + "be1d62bec51d5a9a11bd2a382db519efca955d8e", + [ + null, + {} + ] + ], + "current-time-writing-modes.html": [ + "748cda2f894f28096204526797f0e3a259e333d0", + [ + null, + {} + ] + ], + "effect-updateTiming.html": [ + "0c7a546572149de772eb2ab7ce753106a0d1774f", + [ + null, + {} + ] + ], + "finish-animation.html": [ + "3faff63dc9300079abb73d7f4835a3333eb9d0b5", + [ + null, + {} + ] + ], + "idlharness.window.js": [ + "90157580ce00716403346f369b1e25bba8db23c2", + [ + "scroll-animations/scroll-timelines/idlharness.window.html", + { + "script_metadata": [ + [ + "script", + "/resources/WebIDLParser.js" + ], + [ + "script", + "/resources/idlharness.js" + ] ] - ] - } - } + } + ] + ], + "intrinsic-iteration-duration.tentative.html": [ + "4bcea1adba3d8466a9a5d9d5b432a713cc414994", + [ + null, + {} + ] + ], + "pause-animation.html": [ + "1f9641e2f8d61845d64bff98129985c42468cee7", + [ + null, + {} + ] + ], + "play-animation.html": [ + "7d95eaa257748c069079143bd4091c841f32ac3f", + [ + null, + {} + ] + ], + "reverse-animation.html": [ + "1054ed3983696e5ef3310db1e2c996f0470d427e", + [ + null, + {} + ] + ], + "scroll-animation-effect-fill-modes.tentative.html": [ + "b9cc154676135656a06966f4c369acfa4f06903f", + [ + null, + { + "timeout": "long" + } + ] + ], + "scroll-animation-effect-phases.tentative.html": [ + "41ae0e0612f61a88f023cde8f32ff5fcf095df37", + [ + null, + { + "timeout": "long" + } + ] + ], + "scroll-animation-inactive-timeline.html": [ + "02220cee141b0f33591c7e8a00ff8013b15e5219", + [ + null, + {} + ] + ], + "scroll-animation.html": [ + "e3544762f60dac3d1af563b061f5a9064f44a84b", + [ + null, + {} + ] + ], + "scroll-timeline-invalidation.html": [ + "a26500989ed0c64ca715f94f120b79ee19f45bd7", + [ + null, + {} + ] + ], + "scroll-timeline-range.html": [ + "cc844cb748e6f2b024f7a04392101b77f162c740", + [ + null, + {} + ] + ], + "scroll-timeline-snapshotting.html": [ + "1e43699d5bfea7f8331a090c01eddcae944b51cc", + [ + null, + { + "testdriver": true + } + ] + ], + "setting-current-time.html": [ + "f6c826db6993663462727f8ec4629e62adf28f61", + [ + null, + {} + ] + ], + "setting-playback-rate.html": [ + "e7e96a27e1ff3961b66139fb5fae6d2ac82e9fff", + [ + null, + {} + ] + ], + "setting-start-time.html": [ + "aae1849565b15271105614d198b161f27d091940", + [ + null, + {} + ] + ], + "setting-timeline.tentative.html": [ + "5502e133679b89c25bd9350ff2a6560a06b36e8d", + [ + null, + {} + ] + ], + "source-quirks-mode.html": [ + "17e95a0519f89784b8d51d3885d07fbf175c80eb", + [ + null, + {} + ] + ], + "update-playback-rate.html": [ + "10535319fca2d453271cc0e9ef89dd59deb0c452", + [ + null, + {} + ] + ], + "updating-the-finished-state.html": [ + "86b52d5aa0c219e953ce194383141d483606921d", + [ + null, + {} + ] + ] }, - "generic": { - "first-meta-changed-after-second-added.http.html": [ - "2ee5ade8c08ad68b68ba68ce2c3a18dbe89469a1", + "view-timelines": { + "animation-events.html": [ + "b456794225510c81f649e13fd2dc20e42b4a1c0f", [ null, {} ] ], - "iframe-src-change.html": [ - "15202a76a1ea3b7ad8deb35cdb33826414d7a95b", + "block-view-timeline-current-time-vertical-rl.tentative.html": [ + "beb380060e1b51e86f9f1cfd1ad6885754cab0c4", [ null, {} ] ], - "iframe-upgrade-request-to-cross-origin.sub.html": [ - "4040072ab9abe80d2c180f7c12deea5cf797fc97", + "block-view-timeline-current-time.tentative.html": [ + "c24d04412fc99f1d227d8ac6202acb985f3c67d8", [ null, {} ] ], - "iframe-upgrade-request-to-same-origin.sub.https.html": [ - "f9163bec546c2ff1b440b1b27ee945c150caf67c", + "block-view-timeline-nested-subject.tentative.html": [ + "6fdc7c68229a8abba8b1e6f0409e483eed94fe93", [ null, {} ] ], - "inheritance": { - "iframe-inheritance-about-blank.html": [ - "fc7d39a4cf1c2a63728860e2f37f2962e8bf244f", - [ - null, - {} - ] - ], - "iframe-inheritance-data.html": [ - "1d39781e30583201cf057c5269146ea95ca2d510", - [ - null, - {} - ] - ], - "iframe-inheritance-document-write.html": [ - "c88586aaf6fff4f8842187cda947166bdb9f02ef", - [ - null, - {} - ] - ], - "iframe-inheritance-history-about-blank.html": [ - "8d68ffb5ff1c1b8da00a37ee6b0c37879de979e1", - [ - null, - {} - ] - ], - "iframe-inheritance-history-about-srcdoc.html": [ - "91ac5fc139e2941f28919f0096ff2d5c3450c2bd", - [ - null, - {} - ] - ], - "iframe-inheritance-javascript-child.html": [ - "491f104de4b49b661d8595815000cae2f60423d9", + "change-animation-range-updates-play-state.html": [ + "ee01070a53c96be161b5be770e4ed11a3a0c8b8b", + [ + null, + {} + ] + ], + "contain-alignment.html": [ + "8b61a9ab81ca46aa2c1530e00a7332fc70bf05cb", + [ + null, + {} + ] + ], + "fieldset-source.html": [ + "d75f30e664e325f4e43277b4036da0cbb157a990", + [ + null, + {} + ] + ], + "get-keyframes-with-timeline-offset.html": [ + "02f910d04e3316feaaa3512101d12bc9dcfa40f5", + [ + null, + {} + ] + ], + "inline-subject.html": [ + "6b1d216dea154829b86defb2307caf508189a3c8", + [ + null, + {} + ] + ], + "inline-view-timeline-current-time.tentative.html": [ + "59d73d0cdf772475f0f0f573562ac840ae0b958d", + [ + null, + {} + ] + ], + "sticky": { + "view-timeline-sticky-offscreen-1.html": [ + "d8756769c5179cdb7458958b81151baa17b17d6a", [ null, {} ] ], - "iframe-inheritance-javascript.html": [ - "cf1f099c63e22d282a4fe0ae80c3b31209215cbd", + "view-timeline-sticky-offscreen-2.html": [ + "2d098dcbe306ddf4e089d50fc4a0bdd408538f77", [ null, {} ] ], - "iframe-inheritance-srcdoc-child.html": [ - "cd4b4ae724814625b210b5fc96ecf5ecef321822", + "view-timeline-sticky-offscreen-3.html": [ + "c87dfc4dcb7d155f852e0d1a27cbcd427de27213", [ null, {} ] ], - "iframe-inheritance-srcdoc.html": [ - "6904374b63fbb78cca000e496897752bdd635350", + "view-timeline-sticky-offscreen-4.html": [ + "f6b02ffb2eebfbbf3338f49edc3068282a9949d7", [ null, {} ] ], - "popup-inheritance-about-blank.html": [ - "c8e9a9c012a508f910f332332664121f90c0df5b", + "view-timeline-sticky-offscreen-5.html": [ + "380c01297e14571cd2a678c2547ddf1374d6a654", [ null, {} ] ], - "popup-inheritance-form-submission.html": [ - "2c03792a0776f5e1fe3447d8fbb4dd8145743016", + "view-timeline-sticky-offscreen-6.html": [ + "94f0abc9b1e6662931e630c231334d5bff77b082", [ null, {} ] ], - "workers.html": [ - "0bd75a1d15551cc4db8f623b055d53b00d748d19", + "view-timeline-sticky-offscreen-7.html": [ + "83115249fae7fb1ad263b6c5db4095701051bac9", [ null, {} ] ] }, - "link-rel-prefetch.html": [ - "72e831c92129aed2d80a4178fb56f9d7c20dacad", + "svg-graphics-element-001.html": [ + "9b100a0b6420a35e33e130e48f0bfc6abd1c416c", [ null, {} ] ], - "meta-referrer-outofhead-fetch.http.html": [ - "1b7a7bada512112f95121afb124b26df82d0b0d4", + "svg-graphics-element-002.html": [ + "e173a649efc01b084b88f5a3911a166264874e82", [ null, {} ] ], - "meta-referrer-removed-1.http.html": [ - "70277885043537471e0e89584479494f90cc0a9d", + "svg-graphics-element-003.html": [ + "48e238c8eddc3413f401f66ed776596056ff4237", [ null, {} ] ], - "meta-referrer-removed-2.http.html": [ - "42f73e878155ecbafd3997fb7d1844b954900878", + "timeline-offset-in-keyframe.html": [ + "1168893854297560262e03c28bdf71580955b8ae", [ null, {} ] ], - "meta-tag-in-svg-image.html": [ - "5bdc2c1abfa82777bac25b03a583898c51585ff6", + "unattached-subject-inset.html": [ + "86262db8f88d8930722efaacdfa98690713a9e4d", [ null, {} ] ], - "multiple-headers-and-values.html": [ - "e6b7b07d517ee9cc94ff06775fef3b70a48124b8", + "view-timeline-get-current-time-range-name.html": [ + "25e477e1a97acc56bb692abb8375ab05f9b8e9c9", [ null, {} ] ], - "multiple-headers-combined.html": [ - "b5c27515dff2bdbfea21ef1887de888b9d456603", + "view-timeline-get-set-range.html": [ + "94660abcf27b370b35b67471028237a52af1eb27", [ null, {} ] ], - "multiple-headers-one-invalid.html": [ - "eca734601a61c2660f28012898701a61d716bd57", + "view-timeline-inset.html": [ + "357d8558f94eeb8342942ecb17a3e1a1bf86fa1d", [ null, {} ] ], - "multiple-headers-one-unknown-token.html": [ - "f07500e546acc9d49f9ee472206a6d1752b1343a", + "view-timeline-missing-subject.html": [ + "01ca0215246bb59e8c7976f68801fb00837869f5", [ null, {} ] ], - "multiple-headers.html": [ - "d6c3a90ccb8089cb4f256f43cc8aa0165a974f91", + "view-timeline-on-display-none-element.html": [ + "1cc23fe626ab7ee01f2a36331bb983ba12fe2a93", [ null, {} ] ], - "sandboxed-iframe-with-opaque-origin.html": [ - "fd1857e0ddbfcdb3a398203ecafe2accd5ae8748", + "view-timeline-range-large-subject.html": [ + "f87a57584ed7a240315bbd2e07557fc3fecb4156", [ null, {} ] ], - "second-meta-referrer-added-before-first.http.html": [ - "38fab901fb749026a7e4974f417cc5d260ccda79", + "view-timeline-range.html": [ + "5042c6c2a02f670b7f9d5eb3fd4d513540849054", [ null, {} ] ], - "subresource-test": { - "area-navigate.html": [ - "2a4f29654df1da8e3f18359dacf6ce092c325a67", - [ - null, - {} - ] - ], - "attr-referrer-invalid-value.html": [ - "bfdf1166ce7876c478b4cfcf9dab439d04a7e437", - [ - null, - {} - ] - ], - "fetch-messaging.html": [ - "2678af822ef40855424cbbcb655c2d220513539f", - [ - null, - {} - ] - ], - "iframe-messaging.html": [ - "b8bdb0e5e034c447f4e4be900cf16cccca54b6ee", - [ - null, - {} - ] - ], - "image-decoding.html": [ - "76ce0e263a7843cbe4717692194d5cc859764f18", - [ - null, - {} - ] - ], - "link-navigate.html": [ - "21783d3e31d1cfcaf228440ee7f6e0852365ded4", - [ - null, - {} - ] - ], - "script-messaging.html": [ - "1bc0ba13ef70f3bad20989c4ef56a82d511e004d", - [ - null, - {} - ] - ], - "worker-messaging.html": [ - "c2db8fe845215a5b34d5f13d2a98eb72d51ec778", - [ - null, - {} - ] - ], - "xhr-messaging.html": [ - "c1f89919ca36a115d6184ef1a9983dd0e152385e", - [ - null, - {} - ] + "view-timeline-root-source.html": [ + "20ac9c54642698b0ade0261a7aa9d2f6b8c23025", + [ + null, + {} ] - }, - "unsupported-csp-referrer-directive.html": [ - "27a3a99113aecc3617ae7b065904b0fbc9d4cc68", + ], + "view-timeline-snapport.html": [ + "5d68d37037a344f4b514e5cd937500abbc66e43c", + [ + null, + {} + ] + ], + "view-timeline-source.tentative.html": [ + "f8aabc8bdd9cc202c94240bdba2f17769d89290e", + [ + null, + {} + ] + ], + "view-timeline-sticky-block.html": [ + "43b717560ddf599fe358cacf80135b9d901f6dfd", + [ + null, + {} + ] + ], + "view-timeline-sticky-inline.html": [ + "4dc8331d9fa675e379a2648d0a2a5fcacce94b89", + [ + null, + {} + ] + ], + "view-timeline-subject-size-changes.html": [ + "ee7ce906783c10c2b5e9b9734f14de906c122542", + [ + null, + {} + ] + ], + "zero-intrinsic-iteration-duration.tentative.html": [ + "4eec5d8f13ab75de299e1efa6eefd9eeaede0d8d", [ null, {} @@ -703525,39 +732835,40 @@ ] } }, - "remote-playback": { - "cancel-watch-availability.html": [ - "41cad7c272e2a32cf39e9a6d58fb1c728f4be4a2", - [ - null, - {} - ] - ], - "disable-remote-playback-cancel-watch-availability-throws.html": [ - "7b93f8e3af7aef11b77e795fbacad32964e95d3e", + "scroll-to-text-fragment": { + "drag-selection-over-target-text.html": [ + "f7b3c4c7f4d409b908498d5d05708808a88728cd", [ null, - {} + { + "testdriver": true + } ] ], - "disable-remote-playback-prompt-throws.html": [ - "b47e30eebaa1082ed1d3c638b8aedb81bac96bdb", + "find-range-from-text-directive.html": [ + "bc34b60fe7f8eefe2c46266956c45c5fa4311a99", [ null, - {} + { + "testdriver": true, + "timeout": "long" + } ] ], - "disable-remote-playback-watch-availability-throws.html": [ - "7496b86fcde9049b9d725a407d83606752800e0b", + "force-load-at-top.html": [ + "fe3913dfac453ea899239de6d89a13dd75be2ab6", [ null, - {} + { + "testdriver": true, + "timeout": "long" + } ] ], "idlharness.window.js": [ - "458bfd0c608b0f36c1b23be6b5a9bc13648e1e6b", + "c39216b581124f599cae99a4871c7a29c03bffb0", [ - "remote-playback/idlharness.window.html", + "scroll-to-text-fragment/idlharness.window.html", { "script_metadata": [ [ @@ -703567,52 +732878,13 @@ [ "script", "/resources/idlharness.js" - ], - [ - "script", - "/common/media.js" - ], - [ - "timeout", - "long" ] - ], - "timeout": "long" + ] } ] ], - "prompt-in-detached-iframe.html": [ - "501471755ab8130e0799a9c2c82960eb096ae5a3", - [ - null, - {} - ] - ], - "watch-availability-callback-parameter.html": [ - "fe407a9c03cbddd467810168f7c43f36fd519e14", - [ - null, - {} - ] - ], - "watch-availability-initial-callback.html": [ - "b540d835b9b4e530f1570bcdbedb4281113ff8df", - [ - null, - {} - ] - ], - "watch-availability-promise-return-callback-id.html": [ - "c3df0b31f16af66ec81bf7a9c608fe64a80f7474", - [ - null, - {} - ] - ] - }, - "reporting": { - "bufferSize.html": [ - "0e50526772e22150b5331776c5fd9fa5378c474b", + "iframe-scroll.sub.html": [ + "db959ab68dfb33ff96ec1d8706132a83f66c88e0", [ null, { @@ -703620,29 +732892,36 @@ } ] ], - "cross-origin-report-no-credentials.https.sub.html": [ - "f10d4cef3e47870fe03ce66b64df99efbc97cfe4", + "iframes.sub.html": [ + "eb6594c2839d30717434c63687969da7bec87e7f", [ null, - {} + { + "timeout": "long" + } ] ], - "cross-origin-reports-isolated.https.sub.html": [ - "4e9cb1eb01be86423166266b114df8f4b2e59b28", + "non-html-documents-json.html": [ + "b7df2dccf1ce08841566b4eb937f503b82410397", [ null, - {} + { + "testdriver": true + } ] ], - "cross-origin-same-site-credentials.https.sub.html": [ - "2f3f5fefcab9430fa28cef7de8d09391ffd7c564", + "non-html-documents.html": [ + "cd6d1a797049c25615962a397522ad932b34575a", [ null, - {} + { + "testdriver": true, + "timeout": "long" + } ] ], - "disconnect.html": [ - "12d33db8ff29259d296d655ee6f806efd615c3b8", + "percent-encoding.html": [ + "be688eabfc6222f80ea041a2317bb739d31f8f4c", [ null, { @@ -703650,61 +732929,56 @@ } ] ], - "document-reporting-bypass-report-to.https.sub.html": [ - "394bc9e40a0a8b3dba5c2f176230d1e73dc0c46b", - [ - null, - {} - ] - ], - "document-reporting-default-endpoint.https.sub.html": [ - "f1951e3469b90ec7040b7c2e6a9d2c0178d275b2", + "redirects.html": [ + "71bc1be02e65be68eced1ef7e3e492d1bff6cffd", [ null, { - "testdriver": true + "testdriver": true, + "timeout": "long" } ] ], - "document-reporting-destroy-after-document-close.https.sub.html": [ - "e6ec91ade36751cdf27f0e65a21c1e9137476ae6", + "same-document-test-sync-load.html": [ + "7eb1bf55059174ad4d9e031c73128a14bdde3145", [ null, {} ] ], - "document-reporting-named-endpoints.https.sub.html": [ - "c24601147a2a2aac5dee708c9ec7a2f73594dde7", + "same-document-tests-force-load-at-top.html": [ + "fac5882b05683bf0823a555d3af15f51310e1249", [ null, {} ] ], - "document-reporting-not-batch-different-document.https.html": [ - "e124bd7fbdf011dd229360d9addffbe517610a08", + "same-document-tests-no-force-load-at-top.html": [ + "85b9237755cf476452847b4c7b2e3c515a8d7435", [ null, {} ] ], - "document-reporting-override-endpoint.https.sub.html": [ - "9264786093e7a9f524727ad98a0c13b61e133bd2", + "same-document-tests.html": [ + "ab96fb56e04f6673235d15bb906b16d4d78b6afa", [ null, {} ] ], - "document-reporting-path-absolute.https.sub.html": [ - "48be010a00be6db990a118f58543a900cb1da259", + "scroll-to-text-fragment-after-DOMContentLoaded.html": [ + "a08d75588d08797fbe6fdcc15e7f3615927de3ef", [ null, { - "testdriver": true + "testdriver": true, + "timeout": "long" } ] ], - "generateTestReport-honors-endpoint.https.sub.html": [ - "f04f5e00f9e8bef1929ca0e8e2ab93eee89f1acf", + "scroll-to-text-fragment-api.html": [ + "d644b6b64fb530fef800c5abaaf91835eda9aa83", [ null, { @@ -703712,8 +732986,8 @@ } ] ], - "generateTestReport.html": [ - "1c6e7dc225726f46f42c5f50e54bd54b46cf9be6", + "scroll-to-text-fragment-same-doc.html": [ + "378e373575ea27d488dc168b685295267f4c6204", [ null, { @@ -703721,41 +732995,18 @@ } ] ], - "idlharness.any.js": [ - "17cef8183596ae1d0b307fb8ddccc7455b955966", - [ - "reporting/idlharness.any.html", - { - "script_metadata": [ - [ - "script", - "/resources/WebIDLParser.js" - ], - [ - "script", - "/resources/idlharness.js" - ] - ] - } - ], + "scroll-to-text-fragment-scroll-to-center.html": [ + "879a4891938f973ac8755dfdd818c5f52bfcb69e", [ - "reporting/idlharness.any.worker.html", + null, { - "script_metadata": [ - [ - "script", - "/resources/WebIDLParser.js" - ], - [ - "script", - "/resources/idlharness.js" - ] - ] + "testdriver": true, + "timeout": "long" } ] ], - "nestedReport.html": [ - "156338ee74653bfdc843e6acceda073c02ca635b", + "scroll-to-text-fragment-security.sub.html": [ + "5bcafed5ddbf48e193fa012afd0de7dbf4f583bc", [ null, { @@ -703763,188 +733014,168 @@ } ] ], - "order.html": [ - "c43964220c981f4b91c7c5e7eac7fc67377b367b", + "scroll-to-text-fragment.html": [ + "2dbd575bcbb95f49f8110c1ad367def73c7033c6", [ null, { - "testdriver": true + "testdriver": true, + "timeout": "long" } ] ], - "reporting-api-honors-limits.https.sub.html": [ - "4732711888ca5fa7be5f87108967b67102fdb706", + "sequential-focus.html": [ + "79b013ca229c66cfb486de1a39f4dd0d7e5a7d88", [ null, { "testdriver": true } ] - ], - "reporting-isolated-across-navigations.https.sub.html": [ - "df61afa8330e5f230ba712d14f0f7109f758b502", + ] + }, + "secure-contexts": { + "basic-dedicated-worker.html": [ + "043b5b8dd64a418286da5d46610a0aa459d9a223", [ null, {} ] ], - "same-origin-cross-site-credentials.https.sub.html": [ - "258ab8e10364934dde6bcb45156c2342434248c8", + "basic-dedicated-worker.https.html": [ + "17c9345146faf3a2ad57f91e494f8905b6491c94", [ null, {} ] ], - "same-origin-report-credentials.https.sub.html": [ - "cd93bd601b95576cc0b326a457e2307ff9741ad2", + "basic-popup-and-iframe-tests.html": [ + "ab3c44367875022ff4925f1eb26c92c35ab350b4", [ null, {} ] ], - "same-origin-same-site-credentials.https.sub.html": [ - "9b99edb26e8940bab186a53d99801a600f655013", - [ - null, - {} - ] - ] - }, - "requestidlecallback": { - "basic.html": [ - "df9c9ef9775f6b6d403b28350e4dfa2f2944bad4", + "basic-popup-and-iframe-tests.https.html": [ + "a9c7f3c883d915409a93ead8fb72fa890f323efb", [ null, {} ] ], - "callback-exception.html": [ - "fecda221dec3b045d727aa5e9275ddb8f2526c18", + "basic-shared-worker.html": [ + "7f421b0523ba78e8966d269554fed59f7bc0a675", [ null, {} ] ], - "callback-idle-periods.html": [ - "f515755e353787ca9f583de39d7a9abee21e2629", - [ - null, - { - "timeout": "long" - } - ] - ], - "callback-iframe.html": [ - "8ec08a804a6d3b2dfb1b4d6ba1dfcb70ee188944", - [ - null, - { - "timeout": "long" - } - ] - ], - "callback-invoked.html": [ - "dc52f1422b08f3e07521fa09995d6da4ce68452b", + "basic-shared-worker.https.html": [ + "7c43cd965f66de62f082b2d2dd8cd552a125ac6e", [ null, - { - "timeout": "long" - } + {} ] ], - "callback-multiple-calls.html": [ - "7bb524beb41fb81fd2524079c4be88e47c09ae5e", + "shared-worker-insecure-first.https.html": [ + "00db9517d01ea6e4d8d680211e5a9f0488c51283", [ null, {} ] ], - "callback-removed-frame.html": [ - "ca63f68f8a1e0c976338ef08cf32b04bfe8498ee", + "shared-worker-secure-first.https.html": [ + "ce97a628a0edc4cc59f48ce9447201fcbaeb4048", [ null, {} ] - ], - "callback-suspended.html": [ - "511ec128d6624a7cb8ff930db5763c8632e86def", + ] + }, + "secure-payment-confirmation": { + "authentication-accepted.https.html": [ + "b9417b88e08d3fcd92661de849fd2597a3857298", [ null, { - "timeout": "long" + "testdriver": true } ] ], - "callback-timeRemaining-cross-realm-method.html": [ - "078e2c9379c8629dd971ad2fe3577d48890130c7", + "authentication-cannot-bypass-spc.https.html": [ + "2125f644c7ea65a1264d47b92fe03532ae9aaf69", [ null, { - "timeout": "long" + "testdriver": true } ] ], - "callback-timeout-when-busy.html": [ - "39e17f7b73fc007b20e3ec64a3a5b4b7cdd9cac1", + "authentication-cross-origin.sub.https.html": [ + "bf03d4c11cd304441fa8f6825156bdcbedf556ad", [ null, { - "timeout": "long" + "testdriver": true } ] ], - "callback-timeout.html": [ - "248864f3a133fa268fe239a983033d632247fe8b", + "authentication-icon-data-url.https.html": [ + "cd820d84c32116a400f76f059af97a0241cfcc37", [ null, { - "timeout": "long" + "testdriver": true } ] ], - "callback-xhr-sync.html": [ - "d0aa5d28d6e0b541ca63cc66843df2d5098e8fc5", + "authentication-in-iframe.sub.https.html": [ + "4402e2825db2f65d4ec8e486c4138ddc234f63fd", [ null, { - "timeout": "long" + "testdriver": true } ] ], - "cancel-invoked.html": [ - "9fb77d65dc5163988c922583db9d717312cef53d", + "authentication-invalid-icon.https.html": [ + "988d867462834bf21401f00050fbdee4595b619d", [ null, - {} + { + "testdriver": true + } ] ], - "deadline-after-expired-timer.html": [ - "b544141f887de897603198c083922e796b8abd79", + "authentication-optout.https.html": [ + "a69e0a456a7558825a451c1cd600ab9843fca38f", [ null, - {} + { + "testdriver": true + } ] ], - "deadline-max-rAF-dynamic.html": [ - "43eebd7641be013b2e7de0518a255afd8a6e8f9e", + "authentication-rejected.https.html": [ + "7c84abc9e05d30056ffee9006723f82076c4f52e", [ null, { - "timeout": "long" + "testdriver": true } ] ], - "deadline-max-rAF.html": [ - "ce5f504ed37540523da7fe7e4ed4b20c7536209a", + "authentication-requires-user-activation.https.html": [ + "dd6a7376967bf5c8ce52d7f9473f767651251c97", [ null, { - "timeout": "long" + "testdriver": true } ] ], - "deadline-max-timeout-dynamic.html": [ - "169e6db548530da702f585b9eaa0912a3c59a95d", + "constructor-validate-payment-method-data.https.html": [ + "1ece6318b5d1229a228499faab34ffc8af0b0683", [ null, { @@ -703952,8 +733183,8 @@ } ] ], - "deadline-max.html": [ - "e33341ac9dd977c03235c5cf9d0a4399cf0e4b9c", + "constructor.https.html": [ + "e42f8d47c7febaeee589993e98d1822140137a99", [ null, { @@ -703961,213 +733192,117 @@ } ] ], - "idlharness.window.js": [ - "69cd5a49b0432a65db9da267248a6f97d93cd0b9", + "enrollment-in-iframe.sub.https.html": [ + "9a0f2093a1bc5569d00f65807096dfc51ce02c2b", [ - "requestidlecallback/idlharness.window.html", + null, { - "script_metadata": [ - [ - "script", - "/resources/WebIDLParser.js" - ], - [ - "script", - "/resources/idlharness.js" - ] - ] + "testdriver": true } ] - ] - }, - "resize-observer": { - "calculate-depth-for-node.html": [ - "339e52bb79cbd1fc20d1059993ae8ee3b0591b3f", - [ - null, - {} - ] - ], - "callback-cross-realm-report-exception.html": [ - "75a91ec0a1762f5c0c7745568c4f179ec4ac1a32", - [ - null, - {} - ] - ], - "change-layout-in-error.html": [ - "9083fb48f94efe2a4d402fda2e452d72f94b1e17", - [ - null, - {} - ] - ], - "eventloop.html": [ - "3a9e453faf2eaef798daaa1171a426ea281009f5", - [ - null, - {} - ] ], - "fragments.html": [ - "bba94db88e265413a491f945c9e379e876ff9e18", + "enrollment.https.html": [ + "b93822c7f18e5d265499ade28a254cf85cf5fe1a", [ null, - {} - ] - ], - "idlharness.window.js": [ - "2d459b0b1263682f0f3472d4bf706b8b735dbccc", - [ - "resize-observer/idlharness.window.html", { - "script_metadata": [ - [ - "script", - "/resources/WebIDLParser.js" - ], - [ - "script", - "/resources/idlharness.js" - ], - [ - "script", - "resources/resizeTestHelper.js" - ] - ] + "testdriver": true, + "timeout": "long" } ] - ], - "notify.html": [ - "dc2e268b8a11c331a866310dde3a48a91b3ba1c0", - [ - null, - {} - ] - ], - "observe.html": [ - "f6015bef78825927833ad1c7128751eb13a5e21b", - [ - null, - {} - ] - ], - "ordering.html": [ - "1cd9950c53499b61ab4a2b9f401c12223d8182a6", - [ - null, - {} - ] - ], - "scrollbars-2.html": [ - "51b470c8a2d61377692e46142bbe76773b876546", - [ - null, - {} - ] - ], - "scrollbars.html": [ - "129e74e5cd969795adbf728dcdd448adfd112bac", - [ - null, - {} - ] - ], - "svg-with-css-box-001.html": [ - "4ec0a7de72f74650d4748f2819f865de7afd51cc", - [ - null, - {} - ] - ], - "svg-with-css-box-002.svg": [ - "3c009641db3a92f18cae8856890feb1027b58566", - [ - null, - {} - ] - ], - "svg.html": [ - "6511afc8b000a2b415819cc88d2aa1b5fccb0cdc", - [ - null, - {} - ] ] }, - "resource-timing": { - "304-response-recorded.html": [ - "9e1bb3045cd5487fe989e36fd62d1f000a666931", + "selection": { + "Document-open.html": [ + "9e3cb28124c0d65f61d1e71672c2429a3b64a792", [ null, {} ] ], - "SO-XO-SO-redirect-chain-tao.https.html": [ - "e6568910e4fe7b61dc8a869dfd4fcff0750e7265", + "addRange-00.html": [ + "7f73f2a3a3a459758cae45a0d14024ba901bca9c", [ null, - {} + { + "timeout": "long" + } ] ], - "TAO-match.html": [ - "dc0e2f744347b2f0bff7ed1690f91acc11303792", + "addRange-04.html": [ + "b9598a4b85ba6b3a4bea17e3ab8b98e4966cfd05", [ null, - {} + { + "timeout": "long" + } ] ], - "TAO-port-mismatch-means-crossorigin.html": [ - "f1218d17a0a44f013a01a9b1a28b3ab19f91c91d", + "addRange-08.html": [ + "79e8ea645138f3f29fbd9e4f0fd542bb48d6e6b4", [ null, - {} + { + "timeout": "long" + } ] ], - "body-size-cross-origin.https.html": [ - "b0340139bf7f4021e457d13ae74ea5ef28e09884", + "addRange-12.html": [ + "02d4f6d1f59e889d5c5456cb786cbee199fd952c", [ null, - {} + { + "timeout": "long" + } ] ], - "buffer-full-add-after-full-event.html": [ - "43dc3d84fd3dd1b6263dfdf961113edb9e1a0da6", + "addRange-16.html": [ + "295b35f01b5d005b953aa168733e614d836c6d44", [ null, - {} + { + "timeout": "long" + } ] ], - "buffer-full-add-entries-during-callback-that-drop.html": [ - "b00185c5b6c8810fdd18ef6c92febf4fcb065de1", + "addRange-20.html": [ + "66ac5aec0d4b4a7f82028423a98cea1f5214929d", [ null, - {} + { + "timeout": "long" + } ] ], - "buffer-full-add-entries-during-callback.html": [ - "d5883d33d5d780708a11167731cd7070f0105edb", + "addRange-24.html": [ + "9804e1d908b8bd592e33778e4d6ede96f3defa7e", [ null, - {} + { + "timeout": "long" + } ] ], - "buffer-full-add-then-clear.html": [ - "5617c30b8850d8d8550561c79f69ea02c691d134", + "addRange-28.html": [ + "784002a336102436471cd714bd69c3f63f406103", [ null, - {} + { + "timeout": "long" + } ] ], - "buffer-full-decrease-buffer-during-callback.html": [ - "3091fcf4269192d909b87dc33559c3f18881c37d", + "addRange-32.html": [ + "d599ec885f5cd2b6db25c73dcf38eb7cbc0b72c8", [ null, - {} + { + "timeout": "long" + } ] ], - "buffer-full-eventually.html": [ - "6e9d5db48399034d0ec2ab01903700e92d047992", + "addRange-36.html": [ + "0dfe1b7a58b144f2bff07ba250d77b6a21f97075", [ null, { @@ -704175,271 +733310,123 @@ } ] ], - "buffer-full-increase-buffer-during-callback.html": [ - "dd12dd7afa9be18bbde464212dc08177968da7d6", + "addRange-40.html": [ + "8df437c84cf53a4ed20af22d66a237d5459c2f4e", [ null, - {} + { + "timeout": "long" + } ] ], - "buffer-full-inspect-buffer-during-callback.html": [ - "d5cc8e6ecd8d1130411b4ebddadfdfe6c7832d87", + "addRange-44.html": [ + "37c1a83df38fca70e08a32197699805b0a5ac226", [ null, - {} + { + "timeout": "long" + } ] ], - "buffer-full-set-to-current-buffer.html": [ - "dc527b9a32f5149fde4be86d3b2ae5d81fd2d4c7", + "addRange-48.html": [ + "e219bc66e1e4f418c3392aac452f3d48b355b38e", [ null, - {} + { + "timeout": "long" + } ] ], - "buffer-full-store-and-clear-during-callback.html": [ - "3ea0577256c85b35453358d18c970e4fb3045c4c", + "addRange-52.html": [ + "0f687a6e3a5a0fecc647a4e9d45d694f4b0c9b34", [ null, - {} + { + "timeout": "long" + } ] ], - "buffer-full-then-decreased.html": [ - "21912d978b294d48ad5eff70bef3a1eab59ad750", + "addRange-56.html": [ + "6313f8969e1418ae240796d36cac96d0ce87ca47", [ null, - {} + { + "timeout": "long" + } ] ], - "buffer-full-then-increased.html": [ - "de517bf405c66e94e72f942de33ac6ab72807e2d", + "addRange.htm": [ + "4feb69f8486e0f856b6b11ca51f2ad1d00acd758", [ null, {} ] ], - "buffer-full-when-populate-entries.html": [ - "f4b1a2e7e7abba25c78e4c1dbe0b1aba29061d47", + "addRange.tentative.html": [ + "28e3b675d393caef32db36c4f89b757d6ba2b04a", [ null, {} ] ], - "buffered-flag.any.js": [ - "b46fd00e69ddfc3ac57abcd20c2d092a18220490", - [ - "resource-timing/buffered-flag.any.html", - {} + "anonymous": { + "details-ancestor.html": [ + "b0adfa68907044124e626d2871297b65eac4d35a", + [ + null, + { + "testdriver": true + } + ] ], - [ - "resource-timing/buffered-flag.any.worker.html", - {} - ] - ], - "cached-image-gets-single-entry.html": [ - "2d8c4e2e83944dc576484e3840614faa55d65564", - [ - null, - {} - ] - ], - "clear-resource-timings.html": [ - "7508f8432e66f50c5a6624d2d180e99523a5cd49", - [ - null, - {} - ] - ], - "connection-reuse.html": [ - "a1bc927cfd3f2bdd960c4f686951b826f75e8fc8", - [ - null, - {} - ] - ], - "connection-reuse.https.html": [ - "3461eed47249df338805f5006bb6f38e38d58772", - [ - null, - {} - ] - ], - "content-type-parsing.html": [ - "c0081eb4137d9f38366484bbcdf7aa48e9ca25ae", - [ - null, - {} + "details-mutate.html": [ + "3cd547511251ec80d82656a962b1ec3271423f9f", + [ + null, + { + "testdriver": true + } + ] ] - ], - "content-type.html": [ - "f6b1db7d9f8e7133de365d2f40bc05057be13070", - [ - null, - {} + }, + "bidi": { + "modify.tentative.html": [ + "6029cf423a120c41fc6e4aa45bca728989bb8a02", + [ + null, + {} + ] ] - ], - "cors-preflight.any.js": [ - "4b980e7d0af89e2e6f636b7e23a173e4305f073c", - [ - "resource-timing/cors-preflight.any.html", - { - "script_metadata": [ - [ - "script", - "/common/utils.js" - ], - [ - "script", - "/common/get-host-info.sub.js" - ] - ] - } + }, + "caret": { + "empty-elements.html": [ + "328188c957bd738af419d54e4cd5c741cecc827f", + [ + null, + {} + ] ], - [ - "resource-timing/cors-preflight.any.worker.html", - { - "script_metadata": [ - [ - "script", - "/common/utils.js" - ], - [ - "script", - "/common/get-host-info.sub.js" - ] - ] - } - ] - ], - "cross-origin-iframe.html": [ - "69daebffaf2a245eae51872826bc04ff78b0a135", - [ - null, - {} - ] - ], - "cross-origin-redirects.html": [ - "0bdc0547e577f675e0df4b320290a07fdd6ca51a", - [ - null, - {} - ] - ], - "cross-origin-start-end-time-with-redirects.html": [ - "8e368d13807745761083b090bc097217ff22e598", - [ - null, - {} + "move-around-contenteditable-false.html": [ + "256804f17a774aa66b2da877d59e586b0648b839", + [ + null, + { + "testdriver": true + } + ] ] - ], - "cross-origin-status-codes.html": [ - "197a7663396ef66c7764d6599b03854d138f2e60", + }, + "collapse-00.html": [ + "6adaca4002dc7b4e103e72c75e8f44b0ffeefd70", [ null, - {} - ] - ], - "delivery-type.tentative.any.js": [ - "e2b408fdd74f29fff40b11e83e9ecb804b295490", - [ - "resource-timing/delivery-type.tentative.any.html", - { - "script_metadata": [ - [ - "global", - "window,worker" - ], - [ - "script", - "/common/get-host-info.sub.js" - ], - [ - "script", - "/resource-timing/resources/resource-loaders.js" - ] - ] - } - ], - [ - "resource-timing/delivery-type.tentative.any.serviceworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker" - ], - [ - "script", - "/common/get-host-info.sub.js" - ], - [ - "script", - "/resource-timing/resources/resource-loaders.js" - ] - ] - } - ], - [ - "resource-timing/delivery-type.tentative.any.sharedworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker" - ], - [ - "script", - "/common/get-host-info.sub.js" - ], - [ - "script", - "/resource-timing/resources/resource-loaders.js" - ] - ] - } - ], - [ - "resource-timing/delivery-type.tentative.any.worker.html", { - "script_metadata": [ - [ - "global", - "window,worker" - ], - [ - "script", - "/common/get-host-info.sub.js" - ], - [ - "script", - "/resource-timing/resources/resource-loaders.js" - ] - ] + "timeout": "long" } ] ], - "document-domain-no-impact-opener.html": [ - "69df2f27fa5b195f7b956714cf816a61e18258b8", - [ - null, - {} - ] - ], - "entries-for-network-errors.sub.https.html": [ - "ebc2247babcd4ab94d1fdd826d17d8c968189d79", - [ - null, - {} - ] - ], - "entry-attributes.html": [ - "94f219f229107e4764134187f111dcc7757f617d", - [ - null, - {} - ] - ], - "event-source-timing.html": [ - "917e7c34952cd60bb79bcf3740111b0466157410", + "collapse-15.html": [ + "377e5044343c3b3ed524267abcde79158db4a5ef", [ null, { @@ -704447,65 +733434,17 @@ } ] ], - "fetch-cross-origin-redirect.https.html": [ - "1605e224ab43b2fa11579f9c64d9706e6a188f9c", - [ - null, - {} - ] - ], - "font-timestamps.html": [ - "56ecb5c4bfddb60e783ee77cd308b28a0c4ea9c2", + "collapse-30.html": [ + "376633d9103e2be1d455986a5ebe85cb4f6c1352", [ null, - {} - ] - ], - "idlharness.any.js": [ - "aa860d3dd16a712fb3e81b5393c5ca2f3dccfde7", - [ - "resource-timing/idlharness.any.html", - { - "script_metadata": [ - [ - "script", - "/resources/WebIDLParser.js" - ], - [ - "script", - "/resources/idlharness.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ], - [ - "resource-timing/idlharness.any.worker.html", { - "script_metadata": [ - [ - "script", - "/resources/WebIDLParser.js" - ], - [ - "script", - "/resources/idlharness.js" - ], - [ - "timeout", - "long" - ] - ], "timeout": "long" } ] ], - "iframe-failed-commit.html": [ - "d3b5cce59ec21e9427f00213381a72e134b25e4b", + "collapse-45.html": [ + "28eee4eb79781751351ddfe489cf39d352a42ac3", [ null, { @@ -704513,171 +733452,96 @@ } ] ], - "iframe-non-html.html": [ - "a5df3b034899d1fbbf4281d6aa939df53b05feda", - [ - null, - {} - ] - ], - "iframe-redirect-without-location.html": [ - "bae5f3112fe2917b66d5994bdf3bf6e7a86b0376", - [ - null, - {} - ] - ], - "iframe-sequence-of-events.html": [ - "02d1c362c9df491439fd81ed9be48d5859a2e94f", - [ - null, - {} - ] - ], - "iframe-with-download.html": [ - "9583024dd8faa9c1069ed112737f18235ca1174c", + "collapse.htm": [ + "78fb779c4fd0ebc6f6c73f2d6c1e196a7e406816", [ null, {} ] ], - "image-sequence-of-events.html": [ - "630fed78c964bd439ec3151fed7c5b88760fdfb5", + "collapseToStartEnd.html": [ + "c2bba3af18958d75a04dba116d2830d35ef803a8", [ null, {} ] ], - "initiator-type": { - "audio.html": [ - "f09fc618478fd63eee8c9015dba121472ef9f672", - [ - null, - {} - ] - ], - "dynamic-insertion.html": [ - "8ce05b3cfeddd60829466614449321d75d433c82", - [ - null, - {} - ] - ], - "embed.html": [ - "c7a505afac90c37bee5bf050f6251518646917c2", - [ - null, - {} - ] - ], - "frameset.html": [ - "697549a14dd97afc66d5daa4dbb3064aa6ba20a6", - [ - null, - {} - ] - ], - "iframe.html": [ - "0becd86894be23634594c805ecc9dc07f3f0733b", - [ - null, - {} - ] - ], - "img-srcset.html": [ - "b8c81fbb251d5a59c972f74a4ecb8f1139b26533", - [ - null, - {} - ] - ], - "img.html": [ - "8e2d305048ea517a6df24387900a093793cbc572", - [ - null, - {} - ] - ], - "input.html": [ - "a46d416671c1c6a14f979846cf3afd460d0cb0c9", - [ - null, - {} - ] - ], - "link.html": [ - "43367ac3d501e2ce8da1f2eafde9e5cdd69a4e67", + "contenteditable": { + "cefalse-on-boundaries.html": [ + "945058dfc3895a309d7840257d4521e97b8313a5", [ null, {} ] ], - "misc.html": [ - "02d01a16336c9337dae037970f6f91ce7b71b0f4", + "collapse.html": [ + "6081d05516729dbef483f6bf2b966b117416fa8d", [ null, {} ] ], - "picture.html": [ - "e384b9e97dbe8b51d9e0b8c4dd499da8232cde3d", + "initial-selection-on-focus.tentative.html": [ + "fcaf70d877f9b20baed20730df99cb60946e974b", [ - null, + "selection/contenteditable/initial-selection-on-focus.tentative.html?div", {} - ] - ], - "script.html": [ - "dbd6a131decae1b764fed7951c8a5fbd9257e62b", + ], [ - null, + "selection/contenteditable/initial-selection-on-focus.tentative.html?span", {} ] ], - "style.html": [ - "051496b766f91bc8f14eb7cdee347cfeca545b18", + "modify.tentative.html": [ + "a3afd52ea2ebe54cb2c296b953573813392f6bbe", [ null, {} ] ], - "svg.html": [ - "d92f5935d807ee4956f15186b65fe1fbe40af8ac", + "modifying-selection-with-non-primary-mouse-button.tentative.html": [ + "79fc52ac7dbfa75884cef22017e89df1f38a9e4c", [ - null, - {} - ] - ], - "video.html": [ - "16f3b3dea5f1e86a4f574d58f997eb69e741271d", + "selection/contenteditable/modifying-selection-with-non-primary-mouse-button.tentative.html?middle", + { + "testdriver": true + } + ], [ - null, - {} + "selection/contenteditable/modifying-selection-with-non-primary-mouse-button.tentative.html?secondary", + { + "testdriver": true + } ] ], - "workers.html": [ - "3a23ad71a31555849bb8bf0a0161315cdd806785", + "modifying-selection-with-primary-mouse-button.tentative.html": [ + "57586a60602836e94da2c50f6bf7257d8c9e4192", [ null, - {} + { + "testdriver": true + } ] ] }, - "initiator-type-for-script.html": [ - "72173398d56aa48fd3d9817a058c19115e7df9dd", + "deleteFromDocument.html": [ + "b7e036009f8cb24a4a92ea5bd6480a4fd6eb5472", [ null, {} ] ], - "input-sequence-of-events.html": [ - "446e24a0bca8a48cc0ef7e62ddf3a84017e8e6f5", + "drag-disabled-textarea-shadow-dom.html": [ + "9270cfc5c6beaf428970ae5dec20bbc8e5ddb0c7", [ null, - {} + { + "testdriver": true + } ] ], - "interim-response-times.h2.html": [ - "4b1ca93ff7bd621fc1495c1030c1ebd3730b497c", + "extend-00.html": [ + "8943524878fb4fd063ba0b863987457514b24ef2", [ null, { @@ -704685,8 +733549,8 @@ } ] ], - "interim-response-times.html": [ - "a4d03f599ee5a756af07212423f79e758ab617fc", + "extend-20.html": [ + "b5ca161d98cc092f0a49897c0139b4db0a19baec", [ null, { @@ -704694,8 +733558,8 @@ } ] ], - "link-sequence-of-events.html": [ - "be9db32cd92968a210f54a26ae14b6e93a8e836c", + "extend-40.html": [ + "f0b78d69735de9846d23de2e0b7a3c1dd54c0016", [ null, { @@ -704703,163 +733567,154 @@ } ] ], - "load-from-mem-cache-transfer-size.html": [ - "3d2d32d6e63bf4b2f4b715b2680047e3ca020166", + "extend-exception.html": [ + "67e880fa1c0941673ece95813075e1babc0cf304", [ null, {} ] ], - "nested-context-navigations-embed.html": [ - "f804adbb8a99e44bd0f7d0c543ceea3f09e6ea62", + "getRangeAt.html": [ + "a84ad46f225323585e03974e275b3d037a344446", [ null, - { - "timeout": "long" - } + {} ] ], - "nested-context-navigations-iframe.html": [ - "32ab21633c669ccf1db59f3cd4667dd2ce810e79", + "getSelection.html": [ + "ea119f2fc40c11884f7602a685c1094282884214", [ null, - { - "timeout": "long" - } + {} ] ], - "nested-context-navigations-object.html": [ - "1508d8829fd2695918d891a9ef7bf9d03fa285f8", + "idlharness.window.js": [ + "543fcb3eff5bb4fd0c51c7e4cc1e5338a0b74cbc", [ - null, + "selection/idlharness.window.html", { - "timeout": "long" + "script_metadata": [ + [ + "script", + "/resources/WebIDLParser.js" + ], + [ + "script", + "/resources/idlharness.js" + ] + ] } ] ], - "nested-nav-fallback-timing.html": [ - "b8bba5614d0d12b71767ba7ec8d5b71bec532029", - [ - null, - {} - ] - ], - "nextHopProtocol-is-tao-protected.https.html": [ - "b16ff7af75dc7a61c2e458827b86340a6639b884", + "isCollapsed.html": [ + "819a3e297a3cf22f55e407d39f4d23d27fb3547a", [ null, {} ] ], - "no-entries-for-cross-origin-css-fetched-memory-cache.sub.html": [ - "6b60305ded2e9975ca63540316decd9ef1f1abb8", + "modify-extend-word-trailing-inline-block.tentative.html": [ + "1eaa6ec68d2941a5ea9ab20fab92038dacbe937f", [ null, {} ] ], - "no-entries-for-cross-origin-css-fetched.sub.html": [ - "63f9e06e19083a6d956af0d5916455cd7e91b89c", + "modify-line-flex-column.tentative.html": [ + "984bb81913ac95dd2675fdaf40a741756a4cf215", [ null, {} ] ], - "object-not-found-adds-entry.html": [ - "d11823dd9d07f5e37d50ea926531bf8c58214ac6", + "modify-line-flex-row.tentative.html": [ + "28b22eba03b7ffe75b5f1655fd375e30cbae41d7", [ null, {} ] ], - "object-not-found-after-TAO-cross-origin-redirect.html": [ - "d0dad9381ba42bc848ebeca86acaf7f10a7a1e82", + "modify-line-grid-basic.tentative.html": [ + "faadd93c6447d7bb46ac5d06e581d5e743aafcdf", [ null, {} ] ], - "object-not-found-after-cross-origin-redirect.html": [ - "6990c6c06082e5d62ba3aa576eccd42d13246d2a", - [ - null, - { - "timeout": "long" - } - ] - ], - "opaque-origin.html": [ - "598ee50a59278fb8c02548c1357b28bb12d86823", + "modify.tentative.html": [ + "37231571eddac45a9cce78cddff52b69b2af9ff6", [ null, {} ] ], - "ping-rt-entries.html": [ - "34dad10b9f28b6b3dc9724f571aa3db7a82ad32c", + "move-paragraph-cross-editing-boundary.tentative.html": [ + "f6a558d7582e73386b9e7f6b1443d31b35efb875", [ null, {} ] ], - "queue-entry-regardless-buffer-size.html": [ - "ea47ae3a7950a2390f6bc0d15bd0ca3ba1a4ec03", + "move-paragraphboundary-cross-editing-boundary.tentative.html": [ + "552b8aecb66e8f2369e1b6800d0d9273f7a86788", [ null, {} ] ], - "redirects.html": [ - "ba69907a5f6e46a3e8a79041da17039d14d20feb", + "move-selection-range-into-different-root.tentative.html": [ + "d6e4ccda257212e580768fb00d26ce15c2fb9cf3", [ null, {} ] ], - "render-blocking-status-link.html": [ - "8c6544db48664e0b58dde49d73a8449715f6d20d", + "onselectionchange-on-distinct-text-controls.html": [ + "ee26928699c78e2f822e39a9ff6601bc8c92163c", [ null, {} ] ], - "render-blocking-status-script.html": [ - "bcd55b89944fc696bf1dedadb95378b6ad9943a9", + "onselectionchange-on-document.html": [ + "af522c3f79c96b53547ee9001b700c45a444119d", [ null, {} ] ], - "resource-ignore-data-url.html": [ - "a7056a80807967d9b94b1d4c54c0620dc2a4bad8", + "removeAllRanges.html": [ + "026280d6b8c252c8c9486977d31a32d6d211f701", [ null, {} ] ], - "resource-reload-TAO.html": [ - "83a1e921bb4f65b24806d4b9bc46a8c1b599551a", + "removeRange.html": [ + "8dcd6d2c074325a47fab80661b91e68cf40c4916", [ null, {} ] ], - "resource-timing-failed-fetch-web-bundle.tentative.html": [ - "b99183a49cd84c250115ea9ef6dd0a0dea57123d", + "script-and-style-elements.html": [ + "b75665917d89f8f606f71c8abb02574df2e879a2", [ null, {} ] ], - "resource-timing-failed-fetch.html": [ - "5bab39e2760728a901b5abe62296b8144b23d13e", + "select-end-of-line-image.tentative.html": [ + "572296c4439572d66095e4d6d98c84739f50c504", [ null, - {} + { + "testdriver": true + } ] ], - "resource-timing-level1.sub.html": [ - "093d2542218fbe48b134230b4d9d65e1ef1d4c10", + "selectAllChildren.html": [ + "9a472a4b2fe5ef4b0e5283e3d957ceefef387ff1", [ null, { @@ -704867,360 +733722,195 @@ } ] ], - "resource_connection_reuse_mixed_content.html": [ - "51c04ee604c963cb248ca6cb6b536ef9bf21ee12", - [ - null, - {} - ] - ], - "resource_connection_reuse_mixed_content_redirect.html": [ - "a46d14c9f159ad2839546ed4f595d7e8d7cf4ffa", + "selection-content-visibility-hidden.html": [ + "a44b23f6b76f98986b0bb9deeaa79dc2c7072c1f", [ null, {} ] ], - "resource_dedicated_worker.html": [ - "6d27245ab9cc9a5a6a6ab1721a036b7d4c6ba4f9", + "selection-nested-video.html": [ + "7565665a7c8abbaec47f3720cb37e13b64aa6cdf", [ null, {} ] ], - "resource_nested_dedicated_worker.worker.js": [ - "2c9f5f95428aca5ce9d18714223fab6f78f360c0", - [ - "resource-timing/resource_nested_dedicated_worker.worker.html", - {} - ] - ], - "resource_reparenting.html": [ - "7d4947fa7703d13a5adb465ff5eebbb4456cace9", + "selection-range-after-editinghost-removed.html": [ + "921903062ac6089ec6608acb7c664056c38844f4", [ null, {} ] ], - "resource_subframe_self_navigation.html": [ - "5843f88307233e9326c84106f460039baf09162e", + "selection-range-after-textcontrol-removed.html": [ + "e618f10f1d88e14f379f2db0df7c3896d75182dc", [ - null, + "selection/selection-range-after-textcontrol-removed.html?textControl=number", {} - ] - ], - "resource_timing.worker.js": [ - "dafd2e9af602ed535acc84fb7088b70a23c64608", + ], [ - "resource-timing/resource_timing.worker.html", + "selection/selection-range-after-textcontrol-removed.html?textControl=password", {} - ] - ], - "resource_timing_content_length.html": [ - "32bd8a97e07341323061512698a565232f1972bd", + ], [ - null, + "selection/selection-range-after-textcontrol-removed.html?textControl=text", {} - ] - ], - "response-status-code.html": [ - "3a184c6f016b28c7003ea4650b7827b74388faf8", - [ - null, - { - "timeout": "long" - } - ] - ], - "same-origin-from-cross-origin-redirect.html": [ - "8740b81b13fd8aa7a269a10cf2dd3023a0fbc2a5", + ], [ - null, + "selection/selection-range-after-textcontrol-removed.html?textControl=textarea", {} ] ], - "script-rt-entries.html": [ - "cdd72bd1e25199085c8178b618a00200c86a3de9", + "selection-range-in-shadow-after-the-shadow-removed.tentative.html": [ + "e9f63715a2f15453f3aec8624b2d8af098f0604e", [ - null, + "selection/selection-range-in-shadow-after-the-shadow-removed.tentative.html?mode=closed", {} - ] - ], - "secure-iframe-in-insecure-context.html": [ - "87f4711146ce9a6b9a0bf87a2fa95fc6867bde92", + ], [ - null, + "selection/selection-range-in-shadow-after-the-shadow-removed.tentative.html?mode=open", {} ] ], - "shared-worker-rt-entry.html": [ - "194500a09503a46f454d879ec984be0c83dd2bb9", + "setBaseAndExtent.html": [ + "13108bb506d2ff38d9aef7d1a23eb087360c7ee8", [ null, {} ] ], - "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" - ] + "shadow-dom": { + "tentative": { + "Range-isPointInRange.html": [ + "e6768693ff1c5f4ba4204337822e9f49a4208526", + [ + null, + {} ] - } - ] - ], - "sizes-redirect-img.html": [ - "e440029782b5d5e7637dfa30683d6f77a72d61b1", - [ - 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" - ] + ], + "Selection-collapse-and-extend.html": [ + "3d0bc5009d5ff06043a17364d06061f2c17ae375", + [ + null, + {} ] - } - ], - [ - "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" - ] + ], + "Selection-getComposedRanges-collapsed.html": [ + "99ab82eb39cf44ac19cc32b42bd50eb1eef1b93a", + [ + null, + {} ] - } - ], - [ - "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" - ] + ], + "Selection-getComposedRanges.html": [ + "a69188a62ee9210cc53138f6c29d901b75f1bac6", + [ + null, + {} ] - } - ], - [ - "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" - ] + ], + "Selection-later-become-slotted-content.html": [ + "d44930479d4d7c1aee1de804c66865e9aefd8afe", + [ + null, + {} ] - } - ] - ], - "status-codes-create-entry.html": [ - "cc0cd8ccb88250331186c38554b09ff8515cacee", + ] + } + }, + "stringifier.tentative.html": [ + "f4cae7eb5d4bd2cce73db1dc1b1da6ce5f753cef", [ null, {} ] ], - "supported_resource_type.any.js": [ - "31e40096ddb2c3a8e38ddbeec00a67ca7a91ce59", - [ - "resource-timing/supported_resource_type.any.html", - {} - ], - [ - "resource-timing/supported_resource_type.any.worker.html", - {} - ] - ], - "tentative": { - "document-initiated.html": [ - "eea2bb2761d79cbf77670fbb835b2ca489ed7e7d", + "textcontrols": { + "focus.html": [ + "8c2e0b55914e765bb8b56154aa6638dd0d9f863f", [ null, - {} + { + "testdriver": true + } ] ], - "script-initiated.html": [ - "d6f3d1a32034a7daba50056d1028a8fe7e08df29", + "onselectionchange-content-attribute.html": [ + "3120b3bff58f9978e7993534e310e01c51a34ca6", [ null, {} ] ], - "stylesheet-initiated.html": [ - "d12e3d193d0837412fdb2cda9a78261fa527b911", + "selectionchange-bubble.html": [ + "834b32bdd3b8fd63d18d3a0b7cad47b8473506c4", + [ + null, + {} + ] + ], + "selectionchange-on-shadow-dom.html": [ + "fd246c509240c56aa9b0e3b16f8fe9db4dcf45d4", + [ + null, + {} + ] + ], + "selectionchange.html": [ + "1c4ddf2b9baad5a907bd5c186c3c892a6608644c", [ null, {} ] ] - }, - "test_resource_timing.html": [ - "f4e851abb203aca49194aef51646be673507078f", - [ - null, - {} - ] - ], - "test_resource_timing.https.html": [ - "f4e851abb203aca49194aef51646be673507078f", - [ - null, - {} - ] - ], - "tojson.html": [ - "2564b855dffb8e4439be5ddad96e3e3e06229101", - [ - null, - {} - ] - ], - "workerStart-tao-protected.https.html": [ - "f54c0f2756eac3edc09602c113e7fdd55223a886", + }, + "toString-ff-bug-001.html": [ + "985be73b5ca2baba2e8f85d12b806805dbf556ff", [ null, {} ] ], - "worklet-rt-entries.https.html": [ - "8ed280be1706b60ff2f8942a503ab7e79e08bd15", + "type.html": [ + "7be8ba61bc20cd2efe262de6b68a43fd3310b59e", [ null, {} ] ], - "xhr-resource-timing.html": [ - "6f8f3331861062aa96b533cd94d9add21ea7e382", + "user-select-on-input-and-contenteditable.html": [ + "6cbde6914b687596fe179bf525641ee2cb6c8026", [ null, - {} + { + "testdriver": true, + "timeout": "long" + } ] ] }, - "sanitizer-api": { - "element-set-sanitized-html.https.html": [ - "8fabf1ce293ada94b7777ca42f974454c123efa0", - [ - null, - {} + "serial": { + "getPorts": { + "reject_opaque_origin.https.html": [ + "b2f630a3197deb0e80f01c28dafe3e8fd72971c9", + [ + null, + {} + ] + ], + "sandboxed_iframe.https.window.js": [ + "0a99f75aae6f19956880bc43b0909420eba2da7d", + [ + "serial/getPorts/sandboxed_iframe.https.window.html", + {} + ] ] - ], - "idlharness.https.window.js": [ - "384317b8e55bd318464c68e20ca737bfb5b2c966", + }, + "idlharness.https.any.js": [ + "b240da933ade1595d3b1965c3ca6613c91c8318f", [ - "sanitizer-api/idlharness.https.window.html", + "serial/idlharness.https.any.html", { "script_metadata": [ [ @@ -705233,70 +733923,89 @@ ] ] } - ] - ], - "sanitizer-config.https.html": [ - "fc371b5bb979a6a1f93f20adb8980c14ec90cac1", + ], [ - null, - {} + "serial/idlharness.https.any.worker.html", + { + "script_metadata": [ + [ + "script", + "/resources/WebIDLParser.js" + ], + [ + "script", + "/resources/idlharness.js" + ] + ] + } ] ], - "sanitizer-insecure-context.html": [ - "4b185fd3a7443bc19fcd929abf60240f47666a1c", - [ - null, - {} + "requestPort": { + "reject_opaque_origin.https.html": [ + "ade8ae7392eccd9782f3b12f79ae71396de08913", + [ + null, + {} + ] + ], + "sandboxed_iframe.https.window.js": [ + "763cdefa0671b60b2f7b0ca98087e7a26b5d3de3", + [ + "serial/requestPort/sandboxed_iframe.https.window.html", + {} + ] ] - ], - "sanitizer-names.https.html": [ - "cd33bbc7635322c9933186662da1ace396ad325c", + }, + "serial-allowed-by-permissions-policy-attribute-redirect-on-load.https.sub.html": [ + "ac278ff0cf0f92dd2547851771e5cda7cc15ea4b", [ null, {} ] ], - "sanitizer-query-config.https.html": [ - "60cba2d618bbeeaf9cd48ab3e1da0f8c8202346a", + "serial-allowed-by-permissions-policy-attribute.https.sub.html": [ + "02560b180f6ae61761913324fed9f973a76b79f2", [ null, {} ] ], - "sanitizer-sanitize.https.tentative.html": [ - "82eaeb48329f235a833aa8b8120bd6f08e64f90d", + "serial-allowed-by-permissions-policy.https.sub.html": [ + "1be8eb979f8217db5683e8d2c780c183c2a466e5", [ null, - {} + { + "timeout": "long" + } ] ], - "sanitizer-sanitizeFor.https.tentative.html": [ - "77ae0abb6b0b30109157cb76dbf1df640b608733", + "serial-default-permissions-policy.https.sub.html": [ + "e3908d921521cf2419f66db8dc78bea6e044789e", [ null, {} ] ], - "sanitizer-secure-context.https.html": [ - "0e04e04d169a40e8a4a82ce81bb3e29cd7de83a1", + "serial-disabled-by-permissions-policy.https.sub.html": [ + "d482b19cae3204d52be3d6a653355cd256953f1a", [ null, {} ] - ], - "sanitizer-unknown.https.html": [ - "7b9835cb6d07e22481f19ef6fa3892b7e370a3a5", + ] + }, + "server-timing": { + "cross_origin.https.html": [ + "d31c7b006caf2311563b2c36171422d81d2979b8", [ null, {} ] - ] - }, - "savedata": { - "idlharness.any.js": [ - "aad362346ca5fa9999a05a3456756d150bf0e354", + ], + "idlharness.https.any.js": [ + "44bffcf59e6bf6e03389352e5da76ee0b48e34b8", [ - "savedata/idlharness.any.html", + "server-timing/idlharness.https.any.html", { "script_metadata": [ [ @@ -705306,12 +734015,17 @@ [ "script", "/resources/idlharness.js" + ], + [ + "timeout", + "long" ] - ] + ], + "timeout": "long" } ], [ - "savedata/idlharness.any.worker.html", + "server-timing/idlharness.https.any.worker.html", { "script_metadata": [ [ @@ -705321,1306 +734035,1373 @@ [ "script", "/resources/idlharness.js" - ] - ] - } - ] - ] - }, - "scheduler": { - "post-task-abort-reason.any.js": [ - "27eff9f08013afab493865044545f8ad8886729d", - [ - "scheduler/post-task-abort-reason.any.html", - { - "script_metadata": [ - [ - "title", - "Scheduler: postTask uses abort reason" - ], - [ - "global", - "window,worker" - ] - ] - } - ], - [ - "scheduler/post-task-abort-reason.any.serviceworker.html", - { - "script_metadata": [ - [ - "title", - "Scheduler: postTask uses abort reason" - ], - [ - "global", - "window,worker" - ] - ] - } - ], - [ - "scheduler/post-task-abort-reason.any.sharedworker.html", - { - "script_metadata": [ - [ - "title", - "Scheduler: postTask uses abort reason" - ], - [ - "global", - "window,worker" - ] - ] - } - ], - [ - "scheduler/post-task-abort-reason.any.worker.html", - { - "script_metadata": [ - [ - "title", - "Scheduler: postTask uses abort reason" ], [ - "global", - "window,worker" + "timeout", + "long" ] - ] + ], + "timeout": "long" } ] ], - "post-task-delay.any.js": [ - "cf96f6703b4256cb75734714311b8ca3155ca920", - [ - "scheduler/post-task-delay.any.html", - { - "script_metadata": [ - [ - "title", - "Scheduler: postTask Delayed Tasks" - ], - [ - "global", - "window,worker" - ] - ] - } - ], - [ - "scheduler/post-task-delay.any.serviceworker.html", - { - "script_metadata": [ - [ - "title", - "Scheduler: postTask Delayed Tasks" - ], - [ - "global", - "window,worker" - ] - ] - } - ], - [ - "scheduler/post-task-delay.any.sharedworker.html", - { - "script_metadata": [ - [ - "title", - "Scheduler: postTask Delayed Tasks" - ], - [ - "global", - "window,worker" - ] - ] - } - ], + "navigation-timing-trickle.https.html": [ + "3121dc01cdda3496a99141e014422aebdc6a1db2", [ - "scheduler/post-task-delay.any.worker.html", - { - "script_metadata": [ - [ - "title", - "Scheduler: postTask Delayed Tasks" - ], - [ - "global", - "window,worker" - ] - ] - } + null, + {} ] ], - "post-task-result-success.any.js": [ - "dd73c148e903258ff77862be81ae89505ffe9356", - [ - "scheduler/post-task-result-success.any.html", - { - "script_metadata": [ - [ - "title", - "Scheduler: postTask Promise Value" - ], - [ - "global", - "window,worker" - ] - ] - } - ], - [ - "scheduler/post-task-result-success.any.serviceworker.html", - { - "script_metadata": [ - [ - "title", - "Scheduler: postTask Promise Value" - ], - [ - "global", - "window,worker" - ] - ] - } - ], - [ - "scheduler/post-task-result-success.any.sharedworker.html", - { - "script_metadata": [ - [ - "title", - "Scheduler: postTask Promise Value" - ], - [ - "global", - "window,worker" - ] - ] - } - ], + "navigation_timing_idl.https.html": [ + "154bc6b0442bf159e7a8b0a682bee5b21372e450", [ - "scheduler/post-task-result-success.any.worker.html", - { - "script_metadata": [ - [ - "title", - "Scheduler: postTask Promise Value" - ], - [ - "global", - "window,worker" - ] - ] - } + null, + {} ] ], - "post-task-result-throws.any.js": [ - "7155c94eac0e9c756b4ce8790925f1d9b6809ade", - [ - "scheduler/post-task-result-throws.any.html", - { - "script_metadata": [ - [ - "title", - "Scheduler: postTask Error Propagation" - ], - [ - "global", - "window,worker" - ] - ] - } - ], - [ - "scheduler/post-task-result-throws.any.serviceworker.html", - { - "script_metadata": [ - [ - "title", - "Scheduler: postTask Error Propagation" - ], - [ - "global", - "window,worker" - ] - ] - } - ], - [ - "scheduler/post-task-result-throws.any.sharedworker.html", - { - "script_metadata": [ - [ - "title", - "Scheduler: postTask Error Propagation" - ], - [ - "global", - "window,worker" - ] - ] - } - ], + "resource_timing_idl.https.html": [ + "a719a89097231cb7defe3a910ae0349a11f335c5", [ - "scheduler/post-task-result-throws.any.worker.html", - { - "script_metadata": [ - [ - "title", - "Scheduler: postTask Error Propagation" - ], - [ - "global", - "window,worker" - ] - ] - } + null, + {} ] ], - "post-task-run-order.any.js": [ - "acbe86744caa00d00b3f3750b8a13957671e5125", - [ - "scheduler/post-task-run-order.any.html", - { - "script_metadata": [ - [ - "title", - "Scheduler: Tasks Run in Priority Order" - ], - [ - "global", - "window,worker" - ] - ] - } - ], - [ - "scheduler/post-task-run-order.any.serviceworker.html", - { - "script_metadata": [ - [ - "title", - "Scheduler: Tasks Run in Priority Order" - ], - [ - "global", - "window,worker" - ] - ] - } - ], - [ - "scheduler/post-task-run-order.any.sharedworker.html", - { - "script_metadata": [ - [ - "title", - "Scheduler: Tasks Run in Priority Order" - ], - [ - "global", - "window,worker" - ] - ] - } - ], + "server_timing_header-parsing.https.html": [ + "737cc08045ae94f1dc98417500e5e1400474a584", [ - "scheduler/post-task-run-order.any.worker.html", - { - "script_metadata": [ - [ - "title", - "Scheduler: Tasks Run in Priority Order" - ], - [ - "global", - "window,worker" - ] - ] - } + null, + {} ] ], - "post-task-then-detach.html": [ - "402f34dc0c29dc1ecfff016f1018f2c5abac6273", + "server_timing_headers_not_visible_in_fetch.https.html": [ + "3502f491d5a62c982b8ead79e9b0063372b5b431", [ null, {} ] ], - "post-task-with-abort-signal-in-handler.any.js": [ - "1fd416c775dcdd03286024ace3d61d929afb7282", + "service_worker_idl.https.html": [ + "5c493fdcb0ab581a267a084e7e2383617d99677e", [ - "scheduler/post-task-with-abort-signal-in-handler.any.html", - { - "script_metadata": [ - [ - "title", - "Scheduler: postTask with a signal and abort the signal when running the callback" - ], - [ - "global", - "window,worker" - ] - ] - } - ], + null, + {} + ] + ], + "test_server_timing.https.html": [ + "4f3554aa4a4572e8dbef83fcea3ce8cdd946a858", [ - "scheduler/post-task-with-abort-signal-in-handler.any.serviceworker.html", - { - "script_metadata": [ - [ - "title", - "Scheduler: postTask with a signal and abort the signal when running the callback" + null, + {} + ] + ] + }, + "service-workers": { + "cache-storage": { + "cache-abort.https.any.js": [ + "99f29b0a08bae82f4be0c0dee98ce5b31a941a48", + [ + "service-workers/cache-storage/cache-abort.https.any.html", + { + "script_metadata": [ + [ + "title", + "Cache Storage: Abort" + ], + [ + "global", + "window,worker" + ], + [ + "script", + "./resources/test-helpers.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "global", - "window,worker" - ] - ] - } - ], - [ - "scheduler/post-task-with-abort-signal-in-handler.any.sharedworker.html", - { - "script_metadata": [ - [ - "title", - "Scheduler: postTask with a signal and abort the signal when running the callback" + "timeout": "long" + } + ], + [ + "service-workers/cache-storage/cache-abort.https.any.serviceworker.html", + { + "script_metadata": [ + [ + "title", + "Cache Storage: Abort" + ], + [ + "global", + "window,worker" + ], + [ + "script", + "./resources/test-helpers.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "global", - "window,worker" - ] - ] - } - ], - [ - "scheduler/post-task-with-abort-signal-in-handler.any.worker.html", - { - "script_metadata": [ - [ - "title", - "Scheduler: postTask with a signal and abort the signal when running the callback" + "timeout": "long" + } + ], + [ + "service-workers/cache-storage/cache-abort.https.any.sharedworker.html", + { + "script_metadata": [ + [ + "title", + "Cache Storage: Abort" + ], + [ + "global", + "window,worker" + ], + [ + "script", + "./resources/test-helpers.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "global", - "window,worker" - ] - ] - } - ] - ], - "post-task-with-abort-signal.any.js": [ - "41cbafba9002789f8708a385d2e1683daa756e2a", - [ - "scheduler/post-task-with-abort-signal.any.html", - { - "script_metadata": [ - [ - "title", - "Scheduler: postTask and AbortSignal" + "timeout": "long" + } + ], + [ + "service-workers/cache-storage/cache-abort.https.any.worker.html", + { + "script_metadata": [ + [ + "title", + "Cache Storage: Abort" + ], + [ + "global", + "window,worker" + ], + [ + "script", + "./resources/test-helpers.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "global", - "window,worker" - ] - ] - } + "timeout": "long" + } + ] ], - [ - "scheduler/post-task-with-abort-signal.any.serviceworker.html", - { - "script_metadata": [ - [ - "title", - "Scheduler: postTask and AbortSignal" + "cache-add.https.any.js": [ + "eca516abd5f3933510d299859bf44bb0a2f56052", + [ + "service-workers/cache-storage/cache-add.https.any.html", + { + "script_metadata": [ + [ + "title", + "Cache.add and Cache.addAll" + ], + [ + "global", + "window,worker" + ], + [ + "script", + "/common/get-host-info.sub.js" + ], + [ + "script", + "./resources/test-helpers.js" + ], + [ + "timeout", + "long" + ] ], - [ - "global", - "window,worker" - ] - ] - } - ], - [ - "scheduler/post-task-with-abort-signal.any.sharedworker.html", - { - "script_metadata": [ - [ - "title", - "Scheduler: postTask and AbortSignal" + "timeout": "long" + } + ], + [ + "service-workers/cache-storage/cache-add.https.any.serviceworker.html", + { + "script_metadata": [ + [ + "title", + "Cache.add and Cache.addAll" + ], + [ + "global", + "window,worker" + ], + [ + "script", + "/common/get-host-info.sub.js" + ], + [ + "script", + "./resources/test-helpers.js" + ], + [ + "timeout", + "long" + ] ], - [ - "global", - "window,worker" - ] - ] - } - ], - [ - "scheduler/post-task-with-abort-signal.any.worker.html", - { - "script_metadata": [ - [ - "title", - "Scheduler: postTask and AbortSignal" + "timeout": "long" + } + ], + [ + "service-workers/cache-storage/cache-add.https.any.sharedworker.html", + { + "script_metadata": [ + [ + "title", + "Cache.add and Cache.addAll" + ], + [ + "global", + "window,worker" + ], + [ + "script", + "/common/get-host-info.sub.js" + ], + [ + "script", + "./resources/test-helpers.js" + ], + [ + "timeout", + "long" + ] ], - [ - "global", - "window,worker" - ] - ] - } - ] - ], - "post-task-with-aborted-signal.any.js": [ - "4e5d42c0480944364fb0028c58961860d9e56eca", - [ - "scheduler/post-task-with-aborted-signal.any.html", - { - "script_metadata": [ - [ - "title", - "Scheduler: postTask with an Aborted Signal" + "timeout": "long" + } + ], + [ + "service-workers/cache-storage/cache-add.https.any.worker.html", + { + "script_metadata": [ + [ + "title", + "Cache.add and Cache.addAll" + ], + [ + "global", + "window,worker" + ], + [ + "script", + "/common/get-host-info.sub.js" + ], + [ + "script", + "./resources/test-helpers.js" + ], + [ + "timeout", + "long" + ] ], - [ - "global", - "window,worker" - ] - ] - } + "timeout": "long" + } + ] ], - [ - "scheduler/post-task-with-aborted-signal.any.serviceworker.html", - { - "script_metadata": [ - [ - "title", - "Scheduler: postTask with an Aborted Signal" + "cache-delete.https.any.js": [ + "3eae2b6a08b7954a6a5e644b8248f6ebab562a83", + [ + "service-workers/cache-storage/cache-delete.https.any.html", + { + "script_metadata": [ + [ + "title", + "Cache.delete" + ], + [ + "global", + "window,worker" + ], + [ + "script", + "./resources/test-helpers.js" + ], + [ + "timeout", + "long" + ] ], - [ - "global", - "window,worker" - ] - ] - } - ], - [ - "scheduler/post-task-with-aborted-signal.any.sharedworker.html", - { - "script_metadata": [ - [ - "title", - "Scheduler: postTask with an Aborted Signal" + "timeout": "long" + } + ], + [ + "service-workers/cache-storage/cache-delete.https.any.serviceworker.html", + { + "script_metadata": [ + [ + "title", + "Cache.delete" + ], + [ + "global", + "window,worker" + ], + [ + "script", + "./resources/test-helpers.js" + ], + [ + "timeout", + "long" + ] ], - [ - "global", - "window,worker" - ] - ] - } - ], - [ - "scheduler/post-task-with-aborted-signal.any.worker.html", - { - "script_metadata": [ - [ - "title", - "Scheduler: postTask with an Aborted Signal" + "timeout": "long" + } + ], + [ + "service-workers/cache-storage/cache-delete.https.any.sharedworker.html", + { + "script_metadata": [ + [ + "title", + "Cache.delete" + ], + [ + "global", + "window,worker" + ], + [ + "script", + "./resources/test-helpers.js" + ], + [ + "timeout", + "long" + ] ], - [ - "global", - "window,worker" - ] - ] - } - ] - ], - "post-task-with-signal-and-priority.any.js": [ - "ba40d7cf53e4d51e8827fcb2826cf24ad1a8807a", - [ - "scheduler/post-task-with-signal-and-priority.any.html", - { - "script_metadata": [ - [ - "title", - "Scheduler: Signal and Priority Combination" + "timeout": "long" + } + ], + [ + "service-workers/cache-storage/cache-delete.https.any.worker.html", + { + "script_metadata": [ + [ + "title", + "Cache.delete" + ], + [ + "global", + "window,worker" + ], + [ + "script", + "./resources/test-helpers.js" + ], + [ + "timeout", + "long" + ] ], - [ - "global", - "window,worker" - ] - ] - } + "timeout": "long" + } + ] ], - [ - "scheduler/post-task-with-signal-and-priority.any.serviceworker.html", - { - "script_metadata": [ - [ - "title", - "Scheduler: Signal and Priority Combination" - ], - [ - "global", - "window,worker" - ] - ] - } + "cache-keys-attributes-for-service-worker.https.html": [ + "3c96348e0e033cf0b0a14b1f025b70d787febb35", + [ + null, + {} + ] ], - [ - "scheduler/post-task-with-signal-and-priority.any.sharedworker.html", - { - "script_metadata": [ - [ - "title", - "Scheduler: Signal and Priority Combination" + "cache-keys.https.any.js": [ + "232fb760d4080a02051ba5cf5e8d2964771fda9a", + [ + "service-workers/cache-storage/cache-keys.https.any.html", + { + "script_metadata": [ + [ + "title", + "Cache.keys" + ], + [ + "global", + "window,worker" + ], + [ + "script", + "./resources/test-helpers.js" + ], + [ + "timeout", + "long" + ] ], - [ - "global", - "window,worker" - ] - ] - } - ], - [ - "scheduler/post-task-with-signal-and-priority.any.worker.html", - { - "script_metadata": [ - [ - "title", - "Scheduler: Signal and Priority Combination" + "timeout": "long" + } + ], + [ + "service-workers/cache-storage/cache-keys.https.any.serviceworker.html", + { + "script_metadata": [ + [ + "title", + "Cache.keys" + ], + [ + "global", + "window,worker" + ], + [ + "script", + "./resources/test-helpers.js" + ], + [ + "timeout", + "long" + ] ], - [ - "global", - "window,worker" - ] - ] - } - ] - ], - "post-task-with-signal-from-detached-iframe.html": [ - "acd974cbc783f721eb014b6b208d113ac3f76c7b", - [ - null, - {} - ] - ], - "post-task-without-signals.any.js": [ - "f5fe3e11a66e6432ce4c9f532b07c8377e8e8aed", - [ - "scheduler/post-task-without-signals.any.html", - { - "script_metadata": [ - [ - "title", - "Scheduler: Basic Functionality without Signals" + "timeout": "long" + } + ], + [ + "service-workers/cache-storage/cache-keys.https.any.sharedworker.html", + { + "script_metadata": [ + [ + "title", + "Cache.keys" + ], + [ + "global", + "window,worker" + ], + [ + "script", + "./resources/test-helpers.js" + ], + [ + "timeout", + "long" + ] ], - [ - "global", - "window,worker" - ] - ] - } - ], - [ - "scheduler/post-task-without-signals.any.serviceworker.html", - { - "script_metadata": [ - [ - "title", - "Scheduler: Basic Functionality without Signals" + "timeout": "long" + } + ], + [ + "service-workers/cache-storage/cache-keys.https.any.worker.html", + { + "script_metadata": [ + [ + "title", + "Cache.keys" + ], + [ + "global", + "window,worker" + ], + [ + "script", + "./resources/test-helpers.js" + ], + [ + "timeout", + "long" + ] ], - [ - "global", - "window,worker" - ] - ] - } + "timeout": "long" + } + ] ], - [ - "scheduler/post-task-without-signals.any.sharedworker.html", - { - "script_metadata": [ - [ - "title", - "Scheduler: Basic Functionality without Signals" + "cache-match.https.any.js": [ + "9ca45903cbb101810488ced4b31bb9f34957b1ef", + [ + "service-workers/cache-storage/cache-match.https.any.html", + { + "script_metadata": [ + [ + "title", + "Cache.match" + ], + [ + "global", + "window,worker" + ], + [ + "script", + "./resources/test-helpers.js" + ], + [ + "script", + "/common/get-host-info.sub.js" + ], + [ + "timeout", + "long" + ] ], - [ - "global", - "window,worker" - ] - ] - } - ], - [ - "scheduler/post-task-without-signals.any.worker.html", - { - "script_metadata": [ - [ - "title", - "Scheduler: Basic Functionality without Signals" + "timeout": "long" + } + ], + [ + "service-workers/cache-storage/cache-match.https.any.serviceworker.html", + { + "script_metadata": [ + [ + "title", + "Cache.match" + ], + [ + "global", + "window,worker" + ], + [ + "script", + "./resources/test-helpers.js" + ], + [ + "script", + "/common/get-host-info.sub.js" + ], + [ + "timeout", + "long" + ] ], - [ - "global", - "window,worker" - ] - ] - } - ] - ], - "scheduler-replaceable.any.js": [ - "12bf1116ddd8f41d43e98113478cb3b136a205ad", - [ - "scheduler/scheduler-replaceable.any.html", - { - "script_metadata": [ - [ - "title", - "Scheduler: scheduler should be replaceable" + "timeout": "long" + } + ], + [ + "service-workers/cache-storage/cache-match.https.any.sharedworker.html", + { + "script_metadata": [ + [ + "title", + "Cache.match" + ], + [ + "global", + "window,worker" + ], + [ + "script", + "./resources/test-helpers.js" + ], + [ + "script", + "/common/get-host-info.sub.js" + ], + [ + "timeout", + "long" + ] ], - [ - "global", - "window,worker" - ] - ] - } - ], - [ - "scheduler/scheduler-replaceable.any.serviceworker.html", - { - "script_metadata": [ - [ - "title", - "Scheduler: scheduler should be replaceable" + "timeout": "long" + } + ], + [ + "service-workers/cache-storage/cache-match.https.any.worker.html", + { + "script_metadata": [ + [ + "title", + "Cache.match" + ], + [ + "global", + "window,worker" + ], + [ + "script", + "./resources/test-helpers.js" + ], + [ + "script", + "/common/get-host-info.sub.js" + ], + [ + "timeout", + "long" + ] ], - [ - "global", - "window,worker" - ] - ] - } + "timeout": "long" + } + ] ], - [ - "scheduler/scheduler-replaceable.any.sharedworker.html", - { - "script_metadata": [ - [ - "title", - "Scheduler: scheduler should be replaceable" + "cache-matchAll.https.any.js": [ + "93c55178918c333df25104e69ca74af5dbf04be9", + [ + "service-workers/cache-storage/cache-matchAll.https.any.html", + { + "script_metadata": [ + [ + "title", + "Cache.matchAll" + ], + [ + "global", + "window,worker" + ], + [ + "script", + "./resources/test-helpers.js" + ], + [ + "timeout", + "long" + ] ], - [ - "global", - "window,worker" - ] - ] - } - ], - [ - "scheduler/scheduler-replaceable.any.worker.html", - { - "script_metadata": [ - [ - "title", - "Scheduler: scheduler should be replaceable" + "timeout": "long" + } + ], + [ + "service-workers/cache-storage/cache-matchAll.https.any.serviceworker.html", + { + "script_metadata": [ + [ + "title", + "Cache.matchAll" + ], + [ + "global", + "window,worker" + ], + [ + "script", + "./resources/test-helpers.js" + ], + [ + "timeout", + "long" + ] ], - [ - "global", - "window,worker" - ] - ] - } - ] - ], - "task-controller-abort-completed-tasks.any.js": [ - "fc96038e640e9e298181a8f752ec869a9f373cad", - [ - "scheduler/task-controller-abort-completed-tasks.any.html", - { - "script_metadata": [ - [ - "title", - "Scheduler: Aborting Completed Tasks is a No-op" + "timeout": "long" + } + ], + [ + "service-workers/cache-storage/cache-matchAll.https.any.sharedworker.html", + { + "script_metadata": [ + [ + "title", + "Cache.matchAll" + ], + [ + "global", + "window,worker" + ], + [ + "script", + "./resources/test-helpers.js" + ], + [ + "timeout", + "long" + ] ], - [ - "global", - "window,worker" - ] - ] - } - ], - [ - "scheduler/task-controller-abort-completed-tasks.any.serviceworker.html", - { - "script_metadata": [ - [ - "title", - "Scheduler: Aborting Completed Tasks is a No-op" + "timeout": "long" + } + ], + [ + "service-workers/cache-storage/cache-matchAll.https.any.worker.html", + { + "script_metadata": [ + [ + "title", + "Cache.matchAll" + ], + [ + "global", + "window,worker" + ], + [ + "script", + "./resources/test-helpers.js" + ], + [ + "timeout", + "long" + ] ], - [ - "global", - "window,worker" - ] - ] - } + "timeout": "long" + } + ] ], - [ - "scheduler/task-controller-abort-completed-tasks.any.sharedworker.html", - { - "script_metadata": [ - [ - "title", - "Scheduler: Aborting Completed Tasks is a No-op" + "cache-put.https.any.js": [ + "dbf2650a75a5ff051f222ccb736b14f65d98f1b9", + [ + "service-workers/cache-storage/cache-put.https.any.html", + { + "script_metadata": [ + [ + "title", + "Cache.put" + ], + [ + "global", + "window,worker" + ], + [ + "script", + "/common/get-host-info.sub.js" + ], + [ + "script", + "./resources/test-helpers.js" + ], + [ + "timeout", + "long" + ] ], - [ - "global", - "window,worker" - ] - ] - } - ], - [ - "scheduler/task-controller-abort-completed-tasks.any.worker.html", - { - "script_metadata": [ - [ - "title", - "Scheduler: Aborting Completed Tasks is a No-op" + "timeout": "long" + } + ], + [ + "service-workers/cache-storage/cache-put.https.any.serviceworker.html", + { + "script_metadata": [ + [ + "title", + "Cache.put" + ], + [ + "global", + "window,worker" + ], + [ + "script", + "/common/get-host-info.sub.js" + ], + [ + "script", + "./resources/test-helpers.js" + ], + [ + "timeout", + "long" + ] ], - [ - "global", - "window,worker" - ] - ] - } - ] - ], - "task-controller-abort-signal-and-priority.any.js": [ - "168fe92f54a36662477c23f79790b282f888da56", - [ - "scheduler/task-controller-abort-signal-and-priority.any.html", - { - "script_metadata": [ - [ - "title", - "Scheduler: TaskController.abort() with Signal and Priority" + "timeout": "long" + } + ], + [ + "service-workers/cache-storage/cache-put.https.any.sharedworker.html", + { + "script_metadata": [ + [ + "title", + "Cache.put" + ], + [ + "global", + "window,worker" + ], + [ + "script", + "/common/get-host-info.sub.js" + ], + [ + "script", + "./resources/test-helpers.js" + ], + [ + "timeout", + "long" + ] ], - [ - "global", - "window,worker" - ] - ] - } - ], - [ - "scheduler/task-controller-abort-signal-and-priority.any.serviceworker.html", - { - "script_metadata": [ - [ - "title", - "Scheduler: TaskController.abort() with Signal and Priority" + "timeout": "long" + } + ], + [ + "service-workers/cache-storage/cache-put.https.any.worker.html", + { + "script_metadata": [ + [ + "title", + "Cache.put" + ], + [ + "global", + "window,worker" + ], + [ + "script", + "/common/get-host-info.sub.js" + ], + [ + "script", + "./resources/test-helpers.js" + ], + [ + "timeout", + "long" + ] ], - [ - "global", - "window,worker" - ] - ] - } + "timeout": "long" + } + ] ], - [ - "scheduler/task-controller-abort-signal-and-priority.any.sharedworker.html", - { - "script_metadata": [ - [ - "title", - "Scheduler: TaskController.abort() with Signal and Priority" + "cache-storage-buckets.https.any.js": [ + "fd59ba464db0305de210fc2935d739b2469ec4ae", + [ + "service-workers/cache-storage/cache-storage-buckets.https.any.html", + { + "script_metadata": [ + [ + "title", + "Cache.put" + ], + [ + "global", + "window,worker" + ], + [ + "script", + "/common/get-host-info.sub.js" + ], + [ + "script", + "resources/test-helpers.js" + ], + [ + "script", + "/storage/buckets/resources/util.js" + ], + [ + "timeout", + "long" + ] ], - [ - "global", - "window,worker" - ] - ] - } - ], - [ - "scheduler/task-controller-abort-signal-and-priority.any.worker.html", - { - "script_metadata": [ - [ - "title", - "Scheduler: TaskController.abort() with Signal and Priority" + "timeout": "long" + } + ], + [ + "service-workers/cache-storage/cache-storage-buckets.https.any.serviceworker.html", + { + "script_metadata": [ + [ + "title", + "Cache.put" + ], + [ + "global", + "window,worker" + ], + [ + "script", + "/common/get-host-info.sub.js" + ], + [ + "script", + "resources/test-helpers.js" + ], + [ + "script", + "/storage/buckets/resources/util.js" + ], + [ + "timeout", + "long" + ] ], - [ - "global", - "window,worker" - ] - ] - } - ] - ], - "task-controller-abort1.any.js": [ - "fc7e02ce375953d206ddf6dc75b29b1b8f91b7be", - [ - "scheduler/task-controller-abort1.any.html", - { - "script_metadata": [ - [ - "title", - "Scheduler: TaskController.abort() Basic Functionality" + "timeout": "long" + } + ], + [ + "service-workers/cache-storage/cache-storage-buckets.https.any.sharedworker.html", + { + "script_metadata": [ + [ + "title", + "Cache.put" + ], + [ + "global", + "window,worker" + ], + [ + "script", + "/common/get-host-info.sub.js" + ], + [ + "script", + "resources/test-helpers.js" + ], + [ + "script", + "/storage/buckets/resources/util.js" + ], + [ + "timeout", + "long" + ] ], - [ - "global", - "window,worker" - ] - ] - } - ], - [ - "scheduler/task-controller-abort1.any.serviceworker.html", - { - "script_metadata": [ - [ - "title", - "Scheduler: TaskController.abort() Basic Functionality" + "timeout": "long" + } + ], + [ + "service-workers/cache-storage/cache-storage-buckets.https.any.worker.html", + { + "script_metadata": [ + [ + "title", + "Cache.put" + ], + [ + "global", + "window,worker" + ], + [ + "script", + "/common/get-host-info.sub.js" + ], + [ + "script", + "resources/test-helpers.js" + ], + [ + "script", + "/storage/buckets/resources/util.js" + ], + [ + "timeout", + "long" + ] ], - [ - "global", - "window,worker" - ] - ] - } + "timeout": "long" + } + ] ], - [ - "scheduler/task-controller-abort1.any.sharedworker.html", - { - "script_metadata": [ - [ - "title", - "Scheduler: TaskController.abort() Basic Functionality" + "cache-storage-keys.https.any.js": [ + "f19522be1b437d619b356b5b0290679a8f391866", + [ + "service-workers/cache-storage/cache-storage-keys.https.any.html", + { + "script_metadata": [ + [ + "title", + "CacheStorage.keys" + ], + [ + "global", + "window,worker" + ], + [ + "script", + "./resources/test-helpers.js" + ], + [ + "timeout", + "long" + ] ], - [ - "global", - "window,worker" - ] - ] - } - ], - [ - "scheduler/task-controller-abort1.any.worker.html", - { - "script_metadata": [ - [ - "title", - "Scheduler: TaskController.abort() Basic Functionality" + "timeout": "long" + } + ], + [ + "service-workers/cache-storage/cache-storage-keys.https.any.serviceworker.html", + { + "script_metadata": [ + [ + "title", + "CacheStorage.keys" + ], + [ + "global", + "window,worker" + ], + [ + "script", + "./resources/test-helpers.js" + ], + [ + "timeout", + "long" + ] ], - [ - "global", - "window,worker" - ] - ] - } - ] - ], - "task-controller-abort2.any.js": [ - "075715b565912c128b7cc234c64d29ef79cb1220", - [ - "scheduler/task-controller-abort2.any.html", - { - "script_metadata": [ - [ - "title", - "Scheduler: TaskController.abort() Aborts Correct Task" + "timeout": "long" + } + ], + [ + "service-workers/cache-storage/cache-storage-keys.https.any.sharedworker.html", + { + "script_metadata": [ + [ + "title", + "CacheStorage.keys" + ], + [ + "global", + "window,worker" + ], + [ + "script", + "./resources/test-helpers.js" + ], + [ + "timeout", + "long" + ] ], - [ - "global", - "window,worker" - ] - ] - } - ], - [ - "scheduler/task-controller-abort2.any.serviceworker.html", - { - "script_metadata": [ - [ - "title", - "Scheduler: TaskController.abort() Aborts Correct Task" + "timeout": "long" + } + ], + [ + "service-workers/cache-storage/cache-storage-keys.https.any.worker.html", + { + "script_metadata": [ + [ + "title", + "CacheStorage.keys" + ], + [ + "global", + "window,worker" + ], + [ + "script", + "./resources/test-helpers.js" + ], + [ + "timeout", + "long" + ] ], - [ - "global", - "window,worker" - ] - ] - } + "timeout": "long" + } + ] ], - [ - "scheduler/task-controller-abort2.any.sharedworker.html", - { - "script_metadata": [ - [ - "title", - "Scheduler: TaskController.abort() Aborts Correct Task" + "cache-storage-match.https.any.js": [ + "0c31b726294b14b1b849ecbeb369d23a59d126d8", + [ + "service-workers/cache-storage/cache-storage-match.https.any.html", + { + "script_metadata": [ + [ + "title", + "CacheStorage.match" + ], + [ + "global", + "window,worker" + ], + [ + "script", + "./resources/test-helpers.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } + ], + [ + "service-workers/cache-storage/cache-storage-match.https.any.serviceworker.html", + { + "script_metadata": [ + [ + "title", + "CacheStorage.match" + ], + [ + "global", + "window,worker" + ], + [ + "script", + "./resources/test-helpers.js" + ], + [ + "timeout", + "long" + ] ], - [ - "global", - "window,worker" - ] - ] - } - ], - [ - "scheduler/task-controller-abort2.any.worker.html", - { - "script_metadata": [ - [ - "title", - "Scheduler: TaskController.abort() Aborts Correct Task" + "timeout": "long" + } + ], + [ + "service-workers/cache-storage/cache-storage-match.https.any.sharedworker.html", + { + "script_metadata": [ + [ + "title", + "CacheStorage.match" + ], + [ + "global", + "window,worker" + ], + [ + "script", + "./resources/test-helpers.js" + ], + [ + "timeout", + "long" + ] ], - [ - "global", - "window,worker" - ] - ] - } - ] - ], - "task-controller-setPriority-delayed-task.any.js": [ - "43d24c8f92a16a53cdb3c5d7155e4523d139af81", - [ - "scheduler/task-controller-setPriority-delayed-task.any.html", - { - "script_metadata": [ - [ - "title", - "Scheduler: Change Delayed Task Priority" + "timeout": "long" + } + ], + [ + "service-workers/cache-storage/cache-storage-match.https.any.worker.html", + { + "script_metadata": [ + [ + "title", + "CacheStorage.match" + ], + [ + "global", + "window,worker" + ], + [ + "script", + "./resources/test-helpers.js" + ], + [ + "timeout", + "long" + ] ], - [ - "global", - "window,worker" - ] - ] - } + "timeout": "long" + } + ] ], - [ - "scheduler/task-controller-setPriority-delayed-task.any.serviceworker.html", - { - "script_metadata": [ - [ - "title", - "Scheduler: Change Delayed Task Priority" + "cache-storage.https.any.js": [ + "b7d5af7b532036351ab842de451002ca36f7b4af", + [ + "service-workers/cache-storage/cache-storage.https.any.html", + { + "script_metadata": [ + [ + "title", + "CacheStorage" + ], + [ + "global", + "window,worker" + ], + [ + "script", + "./resources/test-helpers.js" + ], + [ + "timeout", + "long" + ] ], - [ - "global", - "window,worker" - ] - ] - } - ], - [ - "scheduler/task-controller-setPriority-delayed-task.any.sharedworker.html", - { - "script_metadata": [ - [ - "title", - "Scheduler: Change Delayed Task Priority" + "timeout": "long" + } + ], + [ + "service-workers/cache-storage/cache-storage.https.any.serviceworker.html", + { + "script_metadata": [ + [ + "title", + "CacheStorage" + ], + [ + "global", + "window,worker" + ], + [ + "script", + "./resources/test-helpers.js" + ], + [ + "timeout", + "long" + ] ], - [ - "global", - "window,worker" - ] - ] - } - ], - [ - "scheduler/task-controller-setPriority-delayed-task.any.worker.html", - { - "script_metadata": [ - [ - "title", - "Scheduler: Change Delayed Task Priority" + "timeout": "long" + } + ], + [ + "service-workers/cache-storage/cache-storage.https.any.sharedworker.html", + { + "script_metadata": [ + [ + "title", + "CacheStorage" + ], + [ + "global", + "window,worker" + ], + [ + "script", + "./resources/test-helpers.js" + ], + [ + "timeout", + "long" + ] ], - [ - "global", - "window,worker" - ] - ] - } - ] - ], - "task-controller-setPriority-recursive.any.js": [ - "ebc4ccd95066a60cb74af67270ce01d816c2c56d", - [ - "scheduler/task-controller-setPriority-recursive.any.html", - { - "script_metadata": [ - [ - "title", - "Scheduler: Recursive TaskController.setPriority()" + "timeout": "long" + } + ], + [ + "service-workers/cache-storage/cache-storage.https.any.worker.html", + { + "script_metadata": [ + [ + "title", + "CacheStorage" + ], + [ + "global", + "window,worker" + ], + [ + "script", + "./resources/test-helpers.js" + ], + [ + "timeout", + "long" + ] ], - [ - "global", - "window,worker" - ] - ] - } + "timeout": "long" + } + ] ], - [ - "scheduler/task-controller-setPriority-recursive.any.serviceworker.html", - { - "script_metadata": [ - [ - "title", - "Scheduler: Recursive TaskController.setPriority()" + "common.https.window.js": [ + "eba312c273de149ae9007d69bb4796b147e03841", + [ + "service-workers/cache-storage/common.https.window.html", + { + "script_metadata": [ + [ + "title", + "Cache Storage: Verify that Window and Workers see same storage" + ], + [ + "timeout", + "long" + ] ], - [ - "global", - "window,worker" - ] - ] - } + "timeout": "long" + } + ] ], - [ - "scheduler/task-controller-setPriority-recursive.any.sharedworker.html", - { - "script_metadata": [ - [ - "title", - "Scheduler: Recursive TaskController.setPriority()" - ], - [ - "global", - "window,worker" - ] - ] - } + "credentials.https.html": [ + "0fe4a0a0ac0de1097a3ba35689df5396eaa613ec", + [ + null, + {} + ] ], - [ - "scheduler/task-controller-setPriority-recursive.any.worker.html", - { - "script_metadata": [ - [ - "title", - "Scheduler: Recursive TaskController.setPriority()" - ], - [ - "global", - "window,worker" - ] - ] - } - ] - ], - "task-controller-setPriority-repeated.any.js": [ - "fae3ec6c4896d912f84df150d1d1edaff9d4dfc9", - [ - "scheduler/task-controller-setPriority-repeated.any.html", - { - "script_metadata": [ - [ - "title", - "Scheduler: TaskController.setPriority() repeated calls" - ], - [ - "global", - "window,worker" - ] - ] - } + "cross-partition.https.tentative.html": [ + "1cfc2569088e94530b193e24e5c0415883a76330", + [ + null, + { + "timeout": "long" + } + ] ], + "sandboxed-iframes.https.html": [ + "098fa89daf446f57da6313c865e53a0a67983059", + [ + null, + { + "timeout": "long" + } + ] + ] + }, + "idlharness.https.any.js": [ + "8db5d4d10ff7b90f990d77394dac2dddbd2aa45f", [ - "scheduler/task-controller-setPriority-repeated.any.serviceworker.html", + "service-workers/idlharness.https.any.html", { "script_metadata": [ - [ - "title", - "Scheduler: TaskController.setPriority() repeated calls" - ], [ "global", "window,worker" - ] - ] - } - ], - [ - "scheduler/task-controller-setPriority-repeated.any.sharedworker.html", - { - "script_metadata": [ - [ - "title", - "Scheduler: TaskController.setPriority() repeated calls" ], [ - "global", - "window,worker" - ] - ] - } - ], - [ - "scheduler/task-controller-setPriority-repeated.any.worker.html", - { - "script_metadata": [ - [ - "title", - "Scheduler: TaskController.setPriority() repeated calls" + "script", + "/resources/WebIDLParser.js" ], [ - "global", - "window,worker" - ] - ] - } - ] - ], - "task-controller-setPriority1.any.js": [ - "a59c20caccf6734652e77d408b1557e851ce12d5", - [ - "scheduler/task-controller-setPriority1.any.html", - { - "script_metadata": [ - [ - "title", - "Scheduler: TaskController.setPriority()" + "script", + "/resources/idlharness.js" ], [ - "global", - "window,worker" - ] - ] - } - ], - [ - "scheduler/task-controller-setPriority1.any.serviceworker.html", - { - "script_metadata": [ - [ - "title", - "Scheduler: TaskController.setPriority()" + "script", + "cache-storage/resources/test-helpers.js" ], [ - "global", - "window,worker" - ] - ] - } - ], - [ - "scheduler/task-controller-setPriority1.any.sharedworker.html", - { - "script_metadata": [ - [ - "title", - "Scheduler: TaskController.setPriority()" + "script", + "service-worker/resources/test-helpers.sub.js" ], [ - "global", - "window,worker" + "timeout", + "long" ] - ] + ], + "timeout": "long" } ], [ - "scheduler/task-controller-setPriority1.any.worker.html", + "service-workers/idlharness.https.any.serviceworker.html", { "script_metadata": [ - [ - "title", - "Scheduler: TaskController.setPriority()" - ], [ "global", "window,worker" - ] - ] - } - ] - ], - "task-controller-setPriority2.any.js": [ - "716b3af33e0afaffbf9ffe229138d48be1fe6ec3", - [ - "scheduler/task-controller-setPriority2.any.html", - { - "script_metadata": [ - [ - "title", - "Scheduler: TaskController.setPriority and Task Order" ], [ - "global", - "window,worker" - ] - ] - } - ], - [ - "scheduler/task-controller-setPriority2.any.serviceworker.html", - { - "script_metadata": [ - [ - "title", - "Scheduler: TaskController.setPriority and Task Order" + "script", + "/resources/WebIDLParser.js" ], [ - "global", - "window,worker" - ] - ] - } - ], - [ - "scheduler/task-controller-setPriority2.any.sharedworker.html", - { - "script_metadata": [ - [ - "title", - "Scheduler: TaskController.setPriority and Task Order" + "script", + "/resources/idlharness.js" ], [ - "global", - "window,worker" - ] - ] - } - ], - [ - "scheduler/task-controller-setPriority2.any.worker.html", - { - "script_metadata": [ - [ - "title", - "Scheduler: TaskController.setPriority and Task Order" + "script", + "cache-storage/resources/test-helpers.js" ], [ - "global", - "window,worker" - ] - ] - } - ] - ], - "task-signal-any-abort.tentative.any.js": [ - "4afcde901d10cb6402a11b2b738d7a911b944b0f", - [ - "scheduler/task-signal-any-abort.tentative.any.html", - { - "script_metadata": [ - [ - "global", - "window,worker" + "script", + "service-worker/resources/test-helpers.sub.js" ], [ - "script", - "../dom/abort/resources/abort-signal-any-tests.js" + "timeout", + "long" ] - ] + ], + "timeout": "long" } ], [ - "scheduler/task-signal-any-abort.tentative.any.serviceworker.html", + "service-workers/idlharness.https.any.sharedworker.html", { "script_metadata": [ [ @@ -706629,1378 +735410,2267 @@ ], [ "script", - "../dom/abort/resources/abort-signal-any-tests.js" - ] - ] - } - ], - [ - "scheduler/task-signal-any-abort.tentative.any.sharedworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker" + "/resources/WebIDLParser.js" ], [ "script", - "../dom/abort/resources/abort-signal-any-tests.js" - ] - ] - } - ], - [ - "scheduler/task-signal-any-abort.tentative.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,worker" + "/resources/idlharness.js" ], [ "script", - "../dom/abort/resources/abort-signal-any-tests.js" - ] - ] - } - ] - ], - "task-signal-any-post-task-run-order.tentative.any.js": [ - "889217b08109080bd319d4c290fff7c0cf701521", - [ - "scheduler/task-signal-any-post-task-run-order.tentative.any.html", - { - "script_metadata": [ - [ - "title", - "Scheduler: Tasks Run in Priority Order" + "cache-storage/resources/test-helpers.js" ], [ - "global", - "window,worker" - ] - ] - } - ], - [ - "scheduler/task-signal-any-post-task-run-order.tentative.any.serviceworker.html", - { - "script_metadata": [ - [ - "title", - "Scheduler: Tasks Run in Priority Order" + "script", + "service-worker/resources/test-helpers.sub.js" ], [ - "global", - "window,worker" + "timeout", + "long" ] - ] + ], + "timeout": "long" } ], [ - "scheduler/task-signal-any-post-task-run-order.tentative.any.sharedworker.html", + "service-workers/idlharness.https.any.worker.html", { "script_metadata": [ - [ - "title", - "Scheduler: Tasks Run in Priority Order" - ], [ "global", "window,worker" - ] - ] - } - ], - [ - "scheduler/task-signal-any-post-task-run-order.tentative.any.worker.html", - { - "script_metadata": [ - [ - "title", - "Scheduler: Tasks Run in Priority Order" ], [ - "global", - "window,worker" - ] - ] - } - ] - ], - "task-signal-any-priority.tentative.any.js": [ - "46af80b8b1e1816e8b9ff2fe76695d0f24f93e7b", - [ - "scheduler/task-signal-any-priority.tentative.any.html", - { - "script_metadata": [ - [ - "global", - "window,worker" - ] - ] - } - ], - [ - "scheduler/task-signal-any-priority.tentative.any.serviceworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker" - ] - ] - } - ], - [ - "scheduler/task-signal-any-priority.tentative.any.sharedworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker" - ] - ] - } - ], - [ - "scheduler/task-signal-any-priority.tentative.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,worker" - ] - ] - } - ] - ], - "task-signal-onprioritychange.any.js": [ - "7f59e1f1f84ca2761195f6426ec0a0a3a2bd38b1", - [ - "scheduler/task-signal-onprioritychange.any.html", - { - "script_metadata": [ - [ - "title", - "Scheduler: TaskSignal onprioritychange" + "script", + "/resources/WebIDLParser.js" ], [ - "global", - "window,worker" - ] - ] - } - ], - [ - "scheduler/task-signal-onprioritychange.any.serviceworker.html", - { - "script_metadata": [ - [ - "title", - "Scheduler: TaskSignal onprioritychange" + "script", + "/resources/idlharness.js" ], [ - "global", - "window,worker" - ] - ] - } - ], - [ - "scheduler/task-signal-onprioritychange.any.sharedworker.html", - { - "script_metadata": [ - [ - "title", - "Scheduler: TaskSignal onprioritychange" + "script", + "cache-storage/resources/test-helpers.js" ], [ - "global", - "window,worker" - ] - ] - } - ], - [ - "scheduler/task-signal-onprioritychange.any.worker.html", - { - "script_metadata": [ - [ - "title", - "Scheduler: TaskSignal onprioritychange" + "script", + "service-worker/resources/test-helpers.sub.js" ], [ - "global", - "window,worker" + "timeout", + "long" ] - ] + ], + "timeout": "long" } ] ], - "tentative": { - "yield": { - "yield-abort.any.js": [ - "e96694f5abf41b4ffbb5452ebb46b003cb9f4a30", + "service-worker": { + "Service-Worker-Allowed-header.https.html": [ + "6f44bb17e7da958a195e8602aa5aef9c135a80b3", + [ + null, + {} + ] + ], + "ServiceWorkerGlobalScope": { + "close.https.html": [ + "3e3cc8b2b08973baf3293c0a533c85489f352b68", [ - "scheduler/tentative/yield/yield-abort.any.html", + null, {} - ], + ] + ], + "error-message-event.https.html": [ + "fc8edb4b8968ef2c3ec1503f61f188795f6648fb", [ - "scheduler/tentative/yield/yield-abort.any.worker.html", + null, {} ] ], - "yield-inherit-across-promises.any.js": [ - "eaa0125a78409b44f4d5c5b321cd74a8144a4f06", + "extendable-message-event-constructor.https.html": [ + "525245fe9ece73fde6e2408e76927bbfcd1b04cf", [ - "scheduler/tentative/yield/yield-inherit-across-promises.any.html", + null, {} - ], + ] + ], + "extendable-message-event.https.html": [ + "89efd7a4a615c1a3ef35b045690fa40b67fb5393", [ - "scheduler/tentative/yield/yield-inherit-across-promises.any.worker.html", + null, {} ] ], - "yield-priority-idle-callbacks.html": [ - "d47e8c5eba2ed6eca2df695e93a4f1bb7a324b0b", + "fetch-on-the-right-interface.https.any.js": [ + "5ca5f65680c9754c8f2ed8361f6c94bc13e65a0d", + [ + "service-workers/service-worker/ServiceWorkerGlobalScope/fetch-on-the-right-interface.https.any.serviceworker.html", + { + "script_metadata": [ + [ + "title", + "fetch method on the right interface" + ], + [ + "global", + "serviceworker" + ] + ] + } + ] + ], + "isSecureContext.https.html": [ + "399820dd2c313b5023f63ea7846cc1f39fcbb1d6", [ null, {} ] ], - "yield-priority-posttask.any.js": [ - "0700094dcf3679d18099204705c885005e070f74", + "message-event-ports.https.html": [ + "a0eac39e9b35886bc378a7c25b2ae8d33b23fce1", [ - "scheduler/tentative/yield/yield-priority-posttask.any.html", + null, {} - ], + ] + ], + "postmessage.https.html": [ + "99dedebf2e56c744528fd168c05b4fe734563c57", [ - "scheduler/tentative/yield/yield-priority-posttask.any.worker.html", + null, {} ] ], - "yield-priority-timers.any.js": [ - "ff5a3d4b33545d1c6cb36e6f890e03936a095efd", + "registration-attribute.https.html": [ + "aa3c74a13bb2b1623696579b371486a40706dcf1", [ - "scheduler/tentative/yield/yield-priority-timers.any.html", + null, {} - ], + ] + ], + "service-worker-error-event.https.html": [ + "988f5466b9e16ffe716297b9ba569e668ff8f8a3", [ - "scheduler/tentative/yield/yield-priority-timers.any.worker.html", + null, {} ] ], - "yield-then-detach.html": [ - "835f9e7a62d981bb0565572e22659f1f4d3e669f", + "unregister.https.html": [ + "1a124d727687ecfc62bb1443bed2313312762997", [ null, {} ] - ] - } - } - }, - "screen-capture": { - "capture-controller-event-target.https.window.js": [ - "379f35956837c47bc7d732af222189442fd40d0e", - [ - "screen-capture/capture-controller-event-target.https.window.html", - {} - ] - ], - "delegate-request.https.sub.html": [ - "8cc81c13832d9cd051e35a884d354a0835e58f81", - [ - null, - { - "testdriver": true - } - ] - ], - "getdisplaymedia-after-discard.https.html": [ - "445120f8c2f0878c7aa27033595be6531475ea79", - [ - null, - { - "testdriver": true - } - ] - ], - "getdisplaymedia-capture-controller.https.window.js": [ - "0fe1a9fd26b2d151ed6d5d042718676885f8711b", - [ - "screen-capture/getdisplaymedia-capture-controller.https.window.html", - { - "script_metadata": [ - [ - "script", - "/resources/testdriver.js" - ], - [ - "script", - "/resources/testdriver-vendor.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ] - ], - "getdisplaymedia-framerate.https.html": [ - "c17b25d9873e5d482d7152fd8f519ee75028dbee", - [ - null, - { - "testdriver": true, - "timeout": "long" - } - ] - ], - "getdisplaymedia.https.html": [ - "4558786faa1183fe4a594455788769b2a74decee", - [ - null, - { - "testdriver": true, - "timeout": "long" - } - ] - ], - "historical.https.html": [ - "d510bc42089b8b386b9469c3ce99ba810ae37b63", - [ - null, - {} - ] - ], - "idlharness.https.window.js": [ - "527565ea9632e69a6de62efd2be3729c974b93e4", - [ - "screen-capture/idlharness.https.window.html", - { - "script_metadata": [ - [ - "script", - "/resources/WebIDLParser.js" - ], - [ - "script", - "/resources/idlharness.js" - ] - ] - } - ] - ], - "permissions-policy-audio+video.https.sub.html": [ - "2e7df39125640aafa548ece4b3b245c26bd6bf9f", - [ - null, - { - "testdriver": true - } - ] - ], - "permissions-policy-audio.https.sub.html": [ - "7bfc33f861dd55878be0960b72c339d701c7d27f", - [ - null, - { - "testdriver": true - } - ] - ], - "permissions-policy-video.https.sub.html": [ - "6740466ef2a0632f8068a3273d9c16876b0f9ba8", - [ - null, - { - "testdriver": true - } - ] - ] - }, - "screen-details": { - "getScreenDetails.tentative.https.window.js": [ - "06f0344f3ad98929cbad736c49ec9ab5fbebb7e0", - [ - "screen-details/getScreenDetails.tentative.https.window.html", - { - "script_metadata": [ - [ - "global", - "window" - ], - [ - "script", - "/resources/testdriver.js" - ], - [ - "script", - "/resources/testdriver-vendor.js" - ] - ] - } - ] - ], - "isExtended.tentative.https.window.js": [ - "3c814ae3d91d519500f7b44ab8fe4faa8a861d88", - [ - "screen-details/isExtended.tentative.https.window.html", - { - "script_metadata": [ - [ - "global", - "window" - ] - ] - } - ] - ], - "permission.https.window.js": [ - "f477bd4230bbfa99d5020393eb8bf9f794b5e8ca", - [ - "screen-details/permission.https.window.html", - { - "script_metadata": [ - [ - "global", - "window" - ], - [ - "script", - "/resources/testdriver.js" - ], - [ - "script", - "/resources/testdriver-vendor.js" - ] + ], + "update.https.html": [ + "a7dde2233972cb3c1b8250f3b0a184413cd7c5a5", + [ + null, + {} ] - } - ] - ] - }, - "screen-orientation": { - "active-lock.html": [ - "72d2d7fc1d4bc98c64c417171c5f852089898316", - [ - null, - { - "testdriver": true - } - ] - ], - "event-before-promise.html": [ - "56be4379ac0fcb0142d2a8abcb11a1978cf900c3", - [ - null, - { - "testdriver": true - } - ] - ], - "fullscreen-interactions.html": [ - "b1ac1c7000f12d0931d0a2044b75b567cdc95596", - [ - null, - { - "testdriver": true - } - ] - ], - "hidden_document.html": [ - "6ff78ea866acf06f6f173df030bf3f6c8d5b8917", - [ - null, - { - "testdriver": true, - "timeout": "long" - } - ] - ], - "idlharness.window.js": [ - "115f6ccb1e393586f4076884c01443d4944bb413", - [ - "screen-orientation/idlharness.window.html", - { - "script_metadata": [ - [ - "script", - "/resources/WebIDLParser.js" - ], - [ - "script", - "/resources/idlharness.js" + ] + }, + "about-blank-replacement.https.html": [ + "b6efe3ec5620d1c83deb305f2c1ebe008a6a23e2", + [ + null, + { + "timeout": "long" + } + ] + ], + "activate-event-after-install-state-change.https.html": [ + "016a52c13c82ebbfb36d48830446b79b4e72f13e", + [ + null, + {} + ] + ], + "activation-after-registration.https.html": [ + "29f97e3e3f4c0cda2321776cbf48fed92d1c90a1", + [ + null, + {} + ] + ], + "activation.https.html": [ + "278454d3383e3d71a3925663dfcfc3444eddff83", + [ + null, + { + "timeout": "long" + } + ] + ], + "active.https.html": [ + "350a34b802f70d6b6c78e6fdba9b2acabe7d143c", + [ + null, + {} + ] + ], + "claim-affect-other-registration.https.html": [ + "52555ac271b5bad279ab37352c9d9937c780909a", + [ + null, + {} + ] + ], + "claim-fetch.https.html": [ + "ae0082df06bf794d02990a7c0b7213e0d81114cb", + [ + null, + { + "timeout": "long" + } + ] + ], + "claim-not-using-registration.https.html": [ + "fd61d05ba4ea8a1c416eb6d4b1128f7b65b4b35c", + [ + null, + {} + ] + ], + "claim-shared-worker-fetch.https.html": [ + "f5f44886baa2bff3bc7b7e013a856a6d90ceb26c", + [ + null, + {} + ] + ], + "claim-using-registration.https.html": [ + "8a2a6ff25c82d8d6de26cca521da99f8ef6d5fbf", + [ + null, + {} + ] + ], + "claim-with-redirect.https.html": [ + "fd89cb9b00a1f0a39c0f7a9103fab2a10ff22526", + [ + null, + {} + ] + ], + "claim-worker-fetch.https.html": [ + "7cb26c742b97d3d768e01ec09adb1ceeca99dc86", + [ + null, + {} + ] + ], + "client-id.https.html": [ + "b93b34189999fe37d89d27fba1d4400994b276cb", + [ + null, + {} + ] + ], + "client-navigate.https.html": [ + "f40a08635cfd1e0345a64228ccab82302439f7dd", + [ + null, + { + "timeout": "long" + } + ] + ], + "client-url-of-blob-url-worker.https.html": [ + "97a2fcf98f290c290b3489b81c9187922e3e711b", + [ + null, + {} + ] + ], + "clients-get-client-types.https.html": [ + "63e3e51b3202de927d89833b31035792369aec39", + [ + null, + {} + ] + ], + "clients-get-cross-origin.https.html": [ + "1e4acfb286c6bcf2375fc762f9d60ea2d9f1cdc4", + [ + null, + {} + ] + ], + "clients-get-resultingClientId.https.html": [ + "3419cf14b523db41af70c7896d4aaa497441fb9b", + [ + null, + {} + ] + ], + "clients-get.https.html": [ + "4cfbf595cadeeea5fc8a5089127c5687ec174f53", + [ + null, + {} + ] + ], + "clients-matchall-blob-url-worker.https.html": [ + "c29bac8b894a2c50828ae3469d3e181d227fe7ac", + [ + null, + {} + ] + ], + "clients-matchall-client-types.https.html": [ + "54f182b6202cd67cc63e159e7e2d4294fdf975ff", + [ + null, + {} + ] + ], + "clients-matchall-exact-controller.https.html": [ + "a61c8af70196ac230c4b7085862e1bff8433fe38", + [ + null, + {} + ] + ], + "clients-matchall-frozen.https.html": [ + "479c28a60f2e4a2e32ea765a7480301360c34505", + [ + null, + {} + ] + ], + "clients-matchall-include-uncontrolled.https.html": [ + "9f34e5709eb3cb607dcd1b91ec80b51c3706dca6", + [ + null, + {} + ] + ], + "clients-matchall-on-evaluation.https.html": [ + "8705f85b56840976e5bedf3ea780efb8830747f5", + [ + null, + {} + ] + ], + "clients-matchall-order.https.html": [ + "ec650f2264df530bd34b11737c4b1d9ed87f4b56", + [ + null, + { + "timeout": "long" + } + ] + ], + "clients-matchall.https.html": [ + "ce44f1924d54952afe442b19bd0b46c5f92951d5", + [ + null, + {} + ] + ], + "controlled-dedicatedworker-postMessage.https.html": [ + "7e2a604621d307b01e6efc14836dacb250dcc19b", + [ + null, + {} + ] + ], + "controlled-iframe-postMessage.https.html": [ + "8f39b7fdbf86acc144c5984c177b533a29f809eb", + [ + null, + {} + ] + ], + "controller-on-disconnect.https.html": [ + "f23dfe71bac505f1cc396bcab191dbee7a6461f4", + [ + null, + {} + ] + ], + "controller-on-load.https.html": [ + "e4c5e5f81f8139e1c788f068f716cdbb367fb83e", + [ + null, + {} + ] + ], + "controller-on-reload.https.html": [ + "2e966d425788c0a02b1bb25a4c045089fede5ce7", + [ + null, + {} + ] + ], + "controller-with-no-fetch-event-handler.https.html": [ + "d947139c9e213a51e8810aacb3bb40a08cfdc937", + [ + null, + {} + ] + ], + "credentials.https.html": [ + "0a90dc2897c27323682a6e16bfd6aaa5370855e0", + [ + null, + {} + ] + ], + "data-iframe.html": [ + "d767d574345bf7058d58381d94e5dabffd1fca9e", + [ + null, + {} + ] + ], + "data-transfer-files.https.html": [ + "c503a28f965b296b346de237aee77b46414bb7cd", + [ + null, + {} + ] + ], + "dedicated-worker-service-worker-interception.https.html": [ + "2144f4827121b4902d8c56a61df823f04ee8801d", + [ + null, + {} + ] + ], + "detached-context.https.html": [ + "ce8e4cc8400c6a457c968a9d1250fde829369ed3", + [ + null, + {} + ] + ], + "embed-and-object-are-not-intercepted.https.html": [ + "581dbeca9772268ab85a2b50d8f7f45cf61e781f", + [ + null, + {} + ] + ], + "extendable-event-async-waituntil.https.html": [ + "04e98266b4f1a0b6ec572e1c317ab852fc2e4480", + [ + null, + { + "timeout": "long" + } + ] + ], + "extendable-event-waituntil.https.html": [ + "33b4eac5c185e911023094f210ce4db9b6dddadb", + [ + null, + {} + ] + ], + "fetch-audio-tainting.https.html": [ + "9821759bc7b311672a54387edc7d8c26a11d5e54", + [ + null, + {} + ] + ], + "fetch-canvas-tainting-double-write.https.html": [ + "dab2153baa6f462bdafa68b555cc198ccce09398", + [ + null, + {} + ] + ], + "fetch-canvas-tainting-image-cache.https.html": [ + "213238112257923657fe84a637ddd45cc0c038c5", + [ + null, + {} + ] + ], + "fetch-canvas-tainting-image.https.html": [ + "57dc7d98caa2f486cbe2dee05c8f430ad560f9e3", + [ + null, + {} + ] + ], + "fetch-canvas-tainting-video-cache.https.html": [ + "c37e8e562448793d7da4f4722893ca7bbe19f3ac", + [ + null, + { + "timeout": "long" + } + ] + ], + "fetch-canvas-tainting-video-with-range-request.https.html": [ + "0ee41e96f2989fe1dcba4bfb2d449432c175b5da", + [ + null, + {} + ] + ], + "fetch-canvas-tainting-video.https.html": [ + "e8c23a2edd63c55a77ea8484fafae2b3c52d15a0", + [ + null, + { + "timeout": "long" + } + ] + ], + "fetch-cors-exposed-header-names.https.html": [ + "317b02175f2f15d467d3336cd48ca0fc21b473cc", + [ + null, + {} + ] + ], + "fetch-cors-xhr.https.html": [ + "f8ff445673bd42bafcc29c43eb86967dac1f9792", + [ + null, + {} + ] + ], + "fetch-csp.https.html": [ + "9e7b242b69aaaebcdf064fb019831828e8ba1f87", + [ + null, + {} + ] + ], + "fetch-error.https.html": [ + "e9fdf57431203e308f3bf9839d40bdf2b53f4918", + [ + null, + {} + ] + ], + "fetch-event-add-async.https.html": [ + "ac13e4f41675c22669862751b9209835d7210231", + [ + null, + {} + ] + ], + "fetch-event-after-navigation-within-page.https.html": [ + "4812d8a91551edae84b5e2805804fc9d8899f3e9", + [ + null, + {} + ] + ], + "fetch-event-async-respond-with.https.html": [ + "d9147f85494c21e54d39a4fd7af16efa1a126384", + [ + null, + {} + ] + ], + "fetch-event-handled.https.html": [ + "08b88ce3773d036cf1ea3a9f321f87b26d54fffd", + [ + null, + {} + ] + ], + "fetch-event-network-error.https.html": [ + "fea2ad1e3c26effcc9fd7c8d7a66917e420606b4", + [ + null, + {} + ] + ], + "fetch-event-redirect.https.html": [ + "522928475702bf41a425a94595839ae8e38a8c70", + [ + null, + { + "timeout": "long" + } + ] + ], + "fetch-event-referrer-policy.https.html": [ + "af4b20a9a4a7b766509944b59db332fe70e8cf78", + [ + null, + {} + ] + ], + "fetch-event-respond-with-argument.https.html": [ + "05e22105243f710273f56e21502659ad1781e28c", + [ + null, + {} + ] + ], + "fetch-event-respond-with-body-loaded-in-chunk.https.html": [ + "932f9030c51ce6e09d4dba08f0dab19dec6e8b15", + [ + null, + { + "timeout": "long" + } + ] + ], + "fetch-event-respond-with-custom-response.https.html": [ + "645a29c9b4f146b8c4024650c358c8325663cbac", + [ + null, + {} + ] + ], + "fetch-event-respond-with-partial-stream.https.html": [ + "505cef2972683c84f0e0927d582da3861f6f88f0", + [ + null, + {} + ] + ], + "fetch-event-respond-with-readable-stream-chunk.https.html": [ + "4544a9e08f562c9787153470c0cbd6a9ad6f4dea", + [ + null, + {} + ] + ], + "fetch-event-respond-with-readable-stream.https.html": [ + "4651258e6ab2cec042d673ba7cca4b5454653e48", + [ + null, + {} + ] + ], + "fetch-event-respond-with-response-body-with-invalid-chunk.https.html": [ + "2a44811461a649c6ead9460c4a5a911bbd8e608b", + [ + null, + {} + ] + ], + "fetch-event-respond-with-stops-propagation.https.html": [ + "31fd616b6d6f509b7dcb6b56f45e9c2e12e9b8e6", + [ + null, + {} + ] + ], + "fetch-event-throws-after-respond-with.https.html": [ + "d98fb22ff423271dd84460200ebdb60573ed6371", + [ + null, + {} + ] + ], + "fetch-event-within-sw.https.html": [ + "0b52b18305faa1e36ea6873ed534913adb6e5c75", + [ + null, + { + "timeout": "long" + } + ] + ], + "fetch-event.https.h2.html": [ + "5cd381ec98dbee28586f4da68f3656706b81b03a", + [ + null, + { + "timeout": "long" + } + ] + ], + "fetch-event.https.html": [ + "ce53f3c9bff3f7b4bc1377891adfdfd6a322f2d5", + [ + null, + { + "timeout": "long" + } + ] + ], + "fetch-frame-resource.https.html": [ + "a33309f34f9872da537921a11dfc961ac142b0f8", + [ + null, + { + "timeout": "long" + } + ] + ], + "fetch-header-visibility.https.html": [ + "1f4813c4f8e6d93a024b433db4cb45499b68425f", + [ + null, + {} + ] + ], + "fetch-mixed-content-to-inscope.https.html": [ + "0e8fa93b32c0701163544e354520a947a34c0a85", + [ + null, + { + "timeout": "long" + } + ] + ], + "fetch-mixed-content-to-outscope.https.html": [ + "391dc5d2c19ade20e864ab3b276be05a535d2d85", + [ + null, + { + "timeout": "long" + } + ] + ], + "fetch-request-css-base-url.https.html": [ + "467a66cee464e687238c25da2fb17cb01501fb0d", + [ + null, + {} + ] + ], + "fetch-request-css-cross-origin.https.html": [ + "d9c1c7f5df2c64f190235af53f83139d09ff0680", + [ + null, + {} + ] + ], + "fetch-request-css-images.https.html": [ + "586dea26135fc535bf812d86c9854541daabbc39", + [ + null, + {} + ] + ], + "fetch-request-fallback.https.html": [ + "a29f31d127bc7b7ce160cb7147d90db310d55d68", + [ + null, + {} + ] + ], + "fetch-request-no-freshness-headers.https.html": [ + "03b7d357610a904ed264b691054b6025f7fa2414", + [ + null, + {} + ] + ], + "fetch-request-redirect.https.html": [ + "5ce015b421fcaf73777926b6cb1f1a2aa0a1d30f", + [ + null, + { + "timeout": "long" + } + ] + ], + "fetch-request-resources.https.html": [ + "9524e6d4749b250f8e40e22306101bec8ceee406", + [ + null, + {} + ] + ], + "fetch-request-xhr-sync-error.https.window.js": [ + "e6c0213928669d21089982730c0334cde8c20f6a", + [ + "service-workers/service-worker/fetch-request-xhr-sync-error.https.window.html", + { + "script_metadata": [ + [ + "script", + "resources/test-helpers.sub.js" + ] ] - ] - } - ] - ], - "lock-bad-argument.html": [ - "f13ce2a8b9e4d2b27e3c7038f685e0f9de2e0e96", - [ - null, - {} - ] - ], - "lock-basic.html": [ - "584747113ca232f4f56955b77430d48755f25866", - [ - null, - { - "testdriver": true - } - ] - ], - "lock-sandboxed-iframe.html": [ - "ab954f04b4c5d9043d893e36892c4061ed446661", - [ - null, - { - "testdriver": true - } - ] - ], - "lock-unlock-check.html": [ - "6e373ecb1ca50e3e058de5d8cb38912285a79c3b", - [ - null, - { - "testdriver": true - } - ] - ], - "nested-documents.html": [ - "ec3c0b480971578b1529a7df524b3225797383f2", - [ - null, - { - "testdriver": true - } - ] - ], - "non-fully-active.html": [ - "ee1acf07bdf17124adc3603c172c3a22b8ebee8d", - [ - null, - { - "testdriver": true - } - ] - ], - "onchange-event-subframe.html": [ - "6eb986b43804ddd91ccd07476dc373684c4727a6", - [ - null, - { - "testdriver": true - } - ] - ], - "onchange-event.html": [ - "e0d3afd7b4021f5eabf8829981705da822b01c03", - [ - null, - { - "testdriver": true - } - ] - ], - "orientation-reading.html": [ - "90bbb8071dacf704c5a66b564268af4ee4f92354", - [ - null, - { - "testdriver": true - } - ] - ], - "unlock.html": [ - "13442f98f2907a0a750c67874b417cbd527728af", - [ - null, - { - "testdriver": true - } - ] - ] - }, - "screen-wake-lock": { - "chrome-bug-1348019.https.html": [ - "7c9909581ca3974c375397797d241f64301885ea", - [ - null, - { - "testdriver": true - } - ] - ], - "idlharness.https.window.js": [ - "6509d9c70e25785ef5779e954c834f567fbdb42c", - [ - "screen-wake-lock/idlharness.https.window.html", - { - "script_metadata": [ - [ - "script", - "/resources/WebIDLParser.js" - ], - [ - "script", - "/resources/idlharness.js" - ], - [ - "script", - "/resources/testdriver.js" - ], - [ - "script", - "/resources/testdriver-vendor.js" - ], - [ - "timeout", - "long" + } + ] + ], + "fetch-request-xhr-sync-on-worker.https.html": [ + "9f18096aa29bb4635cfeaf0eb9fc39cff5bcc243", + [ + null, + {} + ] + ], + "fetch-request-xhr-sync.https.html": [ + "ec27fb898343e70ab24486983212ef6b5744cf16", + [ + null, + {} + ] + ], + "fetch-request-xhr.https.html": [ + "37a457393b059774ba2e55e0330d520b2211183c", + [ + null, + {} + ] + ], + "fetch-response-taint.https.html": [ + "8e190f48506cc3f804fe107423756f45c7a17b43", + [ + null, + { + "timeout": "long" + } + ] + ], + "fetch-response-xhr.https.html": [ + "891eb029422b7bf1cd575270cfa4616bb80da0bc", + [ + null, + {} + ] + ], + "fetch-waits-for-activate.https.html": [ + "7c888450f0d5f5fc72ec38909487877f38a1c024", + [ + null, + { + "timeout": "long" + } + ] + ], + "getregistration.https.html": [ + "634c2efa12461a811d8e46345ece0298086f64b2", + [ + null, + {} + ] + ], + "getregistrations.https.html": [ + "3a9b9a23317b2bb1370689b553a49c28de4cf8f8", + [ + null, + {} + ] + ], + "global-serviceworker.https.any.js": [ + "19d77847c426180e04ac51e507c1714c1309a193", + [ + "service-workers/service-worker/global-serviceworker.https.any.serviceworker.html", + { + "script_metadata": [ + [ + "title", + "serviceWorker on service worker global" + ], + [ + "global", + "serviceworker" + ] ] - ], - "timeout": "long" - } - ] - ], - "wakelock-active-document.https.window.js": [ - "724ce091969922f937c36b427d8b3aa3d449c1e2", - [ - "screen-wake-lock/wakelock-active-document.https.window.html", - {} - ] - ], - "wakelock-disabled-by-permissions-policy.https.html": [ - "354b0a5e15469b497b2e8d4d8e93991f0305ca4a", - [ - null, - { - "testdriver": true - } - ] - ], - "wakelock-document-hidden.https.html": [ - "c8c9712bdd95f65b292535df844634aedb5abb19", - [ - null, - { - "testdriver": true - } - ] - ], - "wakelock-enabled-by-permissions-policy-attribute-redirect-on-load.https.html": [ - "8898a571e8fb699a01f35ba2fc28d089b56b0fb9", - [ - null, - { - "testdriver": true - } - ] - ], - "wakelock-enabled-by-permissions-policy-attribute.https.html": [ - "ea3ebf2449be56b2a042967e17a1a7ac74a0c8d5", - [ - null, - { - "testdriver": true - } - ] - ], - "wakelock-enabled-by-permissions-policy.https.html": [ - "cc9106967ef522b307c3c079846a36e43e3b3b73", - [ - null, - { - "testdriver": true - } - ] - ], - "wakelock-enabled-on-self-origin-by-permissions-policy.https.html": [ - "5b90b4f4ce0dddc3463effa61bf7d213e5d57ab3", - [ - null, - { - "testdriver": true - } - ] - ], - "wakelock-insecure-context.any.js": [ - "f32cc3c354354f99852bb198760cdbd9229355a4", - [ - "screen-wake-lock/wakelock-insecure-context.any.html", - { - "script_metadata": [ - [ - "title", - "Wake Lock API is not exposed in an insecure context" + } + ] + ], + "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", + [ + null, + {} + ] + ], + "immutable-prototype-serviceworker.https.html": [ + "e63f6b348a861345101670b9c3d87aaa4977b0c4", + [ + null, + {} + ] + ], + "import-scripts-cross-origin.https.html": [ + "773708a9fbce32a6b17f22d88b9fb6ebc3553710", + [ + null, + {} + ] + ], + "import-scripts-data-url.https.html": [ + "f0922193dd0112b72881d05a97aafc67c5bdc3d5", + [ + null, + {} + ] + ], + "import-scripts-mime-types.https.html": [ + "1679831d0f2b98aee22898d820373e80079fbe00", + [ + null, + {} + ] + ], + "import-scripts-redirect.https.html": [ + "07ea49439eba8f9762b2bc17b5ae2346d9d15397", + [ + null, + {} + ] + ], + "import-scripts-resource-map.https.html": [ + "4742bd01268360477bf6061f8505fe9a3b7cadb7", + [ + null, + {} + ] + ], + "import-scripts-updated-flag.https.html": [ + "09b4496aa0ec1d28b9e101a6ba8a41a31b654540", + [ + null, + {} + ] + ], + "indexeddb.https.html": [ + "be9be4968f7b2d0cbc1f18f88b06b7acb6ad096f", + [ + null, + {} + ] + ], + "install-event-type.https.html": [ + "7e74af85c3aee401f99add7a2a0209ddbe700f86", + [ + null, + {} + ] + ], + "installing.https.html": [ + "0f257b6aba4f3d65802e7d7f8a7503d6c6aedd42", + [ + null, + {} + ] + ], + "interface-requirements-sw.https.html": [ + "eef868c889f04d257055d9f08ce22832b6cc34fd", + [ + null, + { + "timeout": "long" + } + ] + ], + "invalid-blobtype.https.html": [ + "1c5920fb039101b18fc3c39e53f7cbb9b5e1ebfc", + [ + null, + {} + ] + ], + "invalid-header.https.html": [ + "1bc976979046c127ad3d2f4282ce297e997b903d", + [ + null, + {} + ] + ], + "iso-latin1-header.https.html": [ + "c27a5f48a5b9e9384a5c9129d0288761b0df9cd7", + [ + null, + {} + ] + ], + "local-url-inherit-controller.https.html": [ + "867e1b006d658ffad99b914f16b179b220700d2f", + [ + null, + { + "timeout": "long" + } + ] + ], + "mime-sniffing.https.html": [ + "8175bcdf87790b3560bd5e5a49f4da94b1175a04", + [ + null, + {} + ] + ], + "multi-globals": { + "url-parsing.https.html": [ + "b9dfe3634353382e85dd0f7be4ea5b69c8083e08", + [ + null, + {} ] - } + ] + }, + "multipart-image.https.html": [ + "00c20d25f90ac38c33ba57ced62d82798481dd42", + [ + null, + {} + ] ], - [ - "screen-wake-lock/wakelock-insecure-context.any.worker.html", - { - "script_metadata": [ - [ - "title", - "Wake Lock API is not exposed in an insecure context" - ] + "multiple-register.https.html": [ + "752e132fc13accb94f58e3e824c64fe72c7d4222", + [ + null, + {} + ] + ], + "multiple-update.https.html": [ + "6a83f73a054f8a50284ae9b55bba9cde4d74c108", + [ + null, + {} + ] + ], + "navigate-window.https.html": [ + "46d32a48a0ad9d98b3bc882b59e8924e45ee9ebc", + [ + null, + {} + ] + ], + "navigation-headers.https.html": [ + "a4b52035e221c268c74a045050f28771d0c8b9f5", + [ + null, + { + "timeout": "long" + } + ] + ], + "navigation-preload": { + "broken-chunked-encoding.https.html": [ + "ec74282ac330a34b68d3e0824128ecd6703ed43d", + [ + null, + {} ] - } - ] - ], - "wakelock-onrelease.https.html": [ - "896748411be22c8937421361b7dac95a36448f7a", - [ - null, - { - "testdriver": true - } - ] - ], - "wakelock-released.https.html": [ - "8d351e3e6825226f564c5647eca040155c493276", - [ - null, - { - "testdriver": true - } - ] - ], - "wakelock-request-denied.https.html": [ - "f3fede6e104bdcd041caf758608eaf72fc89b628", - [ - null, - { - "testdriver": true - } - ] - ], - "wakelock-screen-type-on-worker.https.worker.js": [ - "0201294e2365abae3e13fcfe21debfd26628236a", - [ - "screen-wake-lock/wakelock-screen-type-on-worker.https.worker.html", - { - "script_metadata": [ - [ - "title", - "Screen wake lock should not be allowed in dedicated worker" - ] + ], + "chunked-encoding.https.html": [ + "830ce32cea5a01d5dc9814352b41f12c52956413", + [ + null, + {} ] - } - ] - ], - "wakelock-supported-by-permissions-policy.html": [ - "cc0bb963b16ed086e29d6cfbe4b6fb19468f025e", - [ - null, - {} - ] - ], - "wakelock-type.https.window.js": [ - "5008064684e21563c02792f74103fa189fbe325d", - [ - "screen-wake-lock/wakelock-type.https.window.html", - { - "script_metadata": [ - [ - "script", - "/resources/testdriver.js" - ], - [ - "script", - "/resources/testdriver-vendor.js" - ] + ], + "empty-preload-response-body.https.html": [ + "7e8aacdd36a58cdd88d2f1e70fec69c580526f00", + [ + null, + {} ] - } - ] - ], - "wakelockpermissiondescriptor.https.html": [ - "252aa3ce2816fc91d5a114a3cc2f799e43a04bf9", - [ - null, - { - "testdriver": true - } - ] - ] - }, - "scroll-animations": { - "css": { - "animation-duration-auto.tentative.html": [ - "01982859137855c7f6c3c5011b013ea715c9c4ea", + ], + "get-state.https.html": [ + "08e2f4976c5995b93599dba4883d46d3b2fd7066", + [ + null, + {} + ] + ], + "navigationPreload.https.html": [ + "392e5c14dc8c7ca7d40df4396a102f379e1d55ad", + [ + null, + {} + ] + ], + "redirect.https.html": [ + "5970f053e36996f4cad93aec104c55f53055465a", + [ + null, + {} + ] + ], + "request-headers.https.html": [ + "09642010218ada72da946f8fdcf1c713f7367936", + [ + null, + {} + ] + ], + "resource-timing.https.html": [ + "468a1f51e8573e13a91a55b1c747f4acbe11ce37", + [ + null, + {} + ] + ], + "samesite-cookies.https.html": [ + "a860d9545662138570ef59808c465b33b7261b48", + [ + null, + { + "timeout": "long" + } + ] + ], + "samesite-iframe.https.html": [ + "633da9926a8cd26210bc8171b31c94653a46ebdd", + [ + null, + {} + ] + ] + }, + "navigation-redirect-body.https.html": [ + "0441c610b17978941efb832e4af202bcc4ff955b", [ null, {} ] ], - "animation-events.html": [ - "be53af487a0f9a05787f60839a05d3c6aa948bc5", + "navigation-redirect-resolution.https.html": [ + "59e1cafec3484a87fbe1f4ba31cdb2e7d3fb960d", [ null, {} ] ], - "animation-range-ignored.html": [ - "98a5d45c37f9349eb28b54406e6542e58cb5b2a0", + "navigation-redirect-to-http.https.html": [ + "d4d2788c5891a1fbc3f38f448c40cacb44a980f2", [ null, {} ] ], - "animation-range-normal-matches-cover.html": [ - "a91e3d3e29a09c43a5e3fd61365ef803a1a47814", + "navigation-redirect.https.html": [ + "a87de56931638d0939e406aa95146699e5a63603", + [ + "service-workers/service-worker/navigation-redirect.https.html?client", + { + "timeout": "long" + } + ], + [ + "service-workers/service-worker/navigation-redirect.https.html?default", + { + "timeout": "long" + } + ] + ], + "navigation-sets-cookie.https.html": [ + "7f6c756f557241fb2e2a56c0bcff8b05d0ff1e4c", + [ + null, + { + "timeout": "long" + } + ] + ], + "navigation-timing-extended.https.html": [ + "acb02c6fe1f56ae9cf4d61516fdbf05306050914", [ null, {} ] ], - "animation-shorthand.html": [ - "b7d5947a212b67a5e9a0ce1b53785b562e622554", + "navigation-timing-sizes.https.html": [ + "e726a31f17060f7c37ad07d15c1de4ab88bf4c44", [ null, {} ] ], - "animation-timeline-computed.html": [ - "1e621eee531c22e80d98fb3dc30517cf4153ce07", + "navigation-timing.https.html": [ + "75cab40458c6d362caa34315388ad762fbb7d2e9", [ null, {} ] ], - "animation-timeline-deferred.html": [ - "d0671e5f238bdaf0a2231e22c07509656eedbc77", + "nested-blob-url-workers.https.html": [ + "7269cbb701fabc2faa746f6ed47fba8fa9d423c8", [ null, {} ] ], - "animation-timeline-ignored.tentative.html": [ - "b9efbb428bd97f0de4331dbc7c88731c7067873e", + "next-hop-protocol.https.html": [ + "7a907438d5d9f0b3ba1e198e048ea0b2e86a2415", [ null, {} ] ], - "animation-timeline-in-keyframe.html": [ - "04b430c324231011cc883e359a1ffb12ca5741da", + "no-dynamic-import-in-module.any.js": [ + "f7c2ef37b8b938df9b8ccae12511dfbe58d8e694", + [ + "service-workers/service-worker/no-dynamic-import-in-module.any.serviceworker-module.html", + { + "script_metadata": [ + [ + "global", + "serviceworker-module" + ] + ] + } + ] + ], + "no-dynamic-import.any.js": [ + "25b370b7094bf8f92cc347693c9ac5a1fa664845", + [ + "service-workers/service-worker/no-dynamic-import.any.serviceworker.html", + { + "script_metadata": [ + [ + "global", + "serviceworker" + ] + ] + } + ] + ], + "onactivate-script-error.https.html": [ + "f5e80bb9a456bc57f2a821e1fd69114e6ae8638a", [ null, {} ] ], - "animation-timeline-multiple.html": [ - "3196653656d15e6f813badf43e8062fa6963077d", + "oninstall-script-error.https.html": [ + "fe7f6e901206e07b611496a191a8023516aa4b84", [ null, {} ] ], - "animation-timeline-named-scroll-progress-timeline.tentative.html": [ - "5a1f26b3f38838e120b6acf05745e4cbe75b2380", + "opaque-response-preloaded.https.html": [ + "417aa4ebec8380ec778bbe42f3ee8fb45649292f", [ null, {} ] ], - "animation-timeline-none.html": [ - "7092523c489603dbfd12452318cacec4aaf85421", + "opaque-script.https.html": [ + "7d2121855dfa17649b81fd96aad03d93e85be22b", [ null, {} ] ], - "animation-timeline-parsing.html": [ - "9e3c1078b5b416ac8402abe8901ca8e1c8d0a9fa", + "partitioned-claim.tentative.https.html": [ + "1f42c528e0b38f11b156f77f144daec6513c1fed", [ null, {} ] ], - "animation-timeline-scroll-functional-notation.tentative.html": [ - "31c85810d5595ad22628c99319d38599ffae495f", + "partitioned-cookies.tentative.https.html": [ + "7a8bd3f5cf85ee94418fefe2840e3cd4a27dab9d", + [ + null, + { + "timeout": "long" + } + ] + ], + "partitioned-getRegistrations.tentative.https.html": [ + "7c4d4f1e028b3966afdcfef10c060aefee54e344", [ null, {} ] ], - "animation-timeline-view-functional-notation.tentative.html": [ - "d91dfe924b7756e111bdc9ef6a2fc8fefa5245d4", + "partitioned-matchAll.tentative.https.html": [ + "46beec819c8ea91892706969af827ef6ed8b1a93", [ null, {} ] ], - "get-animations-inactive-timeline.html": [ - "83bc5b5f531be108c743cdc75c77d0b6ae6bc5bd", + "partitioned.tentative.https.html": [ + "17a375f9c7320291e64178695cfce8c21fae1773", [ null, {} ] ], - "merge-timeline-offset-keyframes.html": [ - "e5d5037d622605176b70f1d7a2a9211f67514201", + "performance-timeline.https.html": [ + "e56e6fe416ff215341ba9b6df088f111f9645623", [ null, {} ] ], - "named-range-keyframes-with-document-timeline.tentative.html": [ - "a0094d32207da66056879d2de9ecbc5e58dedbed", + "postmessage-blob-url.https.html": [ + "16fddd57b835240112b1a0b2b2c03835e7695e1c", [ null, {} ] ], - "progress-based-animation-animation-longhand-properties.tentative.html": [ - "25ce1675533de7643eb0ac2863a7ed88b35322b2", + "postmessage-from-waiting-serviceworker.https.html": [ + "117def9eb2a6c132d4d3f44b1cb07adcb9eeef60", [ null, {} ] ], - "progress-based-animation-timeline.html": [ - "bbc60e3fbddf6f298ca3c3e3fcbff628d3a9baa5", + "postmessage-msgport-to-client.https.html": [ + "29c056080c79d581975e0929dcebd84d63b86a20", [ null, {} ] ], - "pseudo-on-scroller.html": [ - "8dd49ce4d8a913a54caef1ff8145cbaa187af550", + "postmessage-to-client-message-queue.https.html": [ + "83e5f4540d1411e2a215ebe59d2037f369c48616", [ null, {} ] ], - "scroll-timeline-axis-computed.html": [ - "c942fb40932433dd4daf7dbb68557488bebb14e8", + "postmessage-to-client.https.html": [ + "f834a4bffe20c69cbd57ae4c6bf922083d3554d6", [ null, {} ] ], - "scroll-timeline-axis-parsing.html": [ - "a9a760a54a44c8a64cacfa25d155339f962b3c89", + "postmessage.https.html": [ + "7abb3022f91a8daa5bf0f98fa0d4793780f4844c", [ null, {} ] ], - "scroll-timeline-axis-writing-mode.html": [ - "cb9a98dcd8e57174a5d59f320349cd11dc58fa36", + "ready.https.window.js": [ + "6c4e270682c256996c2d665a35ede28d39d6594b", + [ + "service-workers/service-worker/ready.https.window.html", + { + "script_metadata": [ + [ + "title", + "Service Worker: navigator.serviceWorker.ready" + ], + [ + "script", + "resources/test-helpers.sub.js" + ] + ] + } + ] + ], + "redirected-response.https.html": [ + "71b35d0e12050623d650ca822c780037d8258422", [ null, {} ] ], - "scroll-timeline-document-scroller-quirks.html": [ - "809a658a15e630234e22f6852ffe2aaae8f89469", + "referer.https.html": [ + "0957e4c5330168b08236ff7c431706a1d92cc1a4", [ null, {} ] ], - "scroll-timeline-dynamic.tentative.html": [ - "d1f143c7c191392b7a52785c371a671a181b5f0c", + "referrer-policy-header.https.html": [ + "784343e6d8f1fc864af9145539d3f3f2f0d3b261", [ null, {} ] ], - "scroll-timeline-in-container-query.html": [ - "742c35b258004930833ae6ea504082e7c615d6b1", + "referrer-toplevel-script-fetch.https.html": [ + "65c60a11db20aabce766b4b414a35cb3ddffd466", + [ + null, + { + "timeout": "long" + } + ] + ], + "register-closed-window.https.html": [ + "9c1b639bb757d02949746d3fa584db8bbf286066", + [ + null, + { + "timeout": "long" + } + ] + ], + "register-default-scope.https.html": [ + "1d86548eb5eeb5754ca111dd4c55843202216b2d", [ null, {} ] ], - "scroll-timeline-inactive.html": [ - "eedc8e3958ade809be1832619ab12684e2e12922", + "register-same-scope-different-script-url.https.html": [ + "6eb00f3071a26ed3f55ac90ca32c1b377aec23e1", [ null, {} ] ], - "scroll-timeline-multi-pass.tentative.html": [ - "403316ead0fed5072111d50b0673d57a95c99cf0", + "register-wait-forever-in-install-worker.https.html": [ + "0920b5cb223d50e31d044a9323f55c1e77b18857", [ null, {} ] ], - "scroll-timeline-name-computed.html": [ - "b803ee8212b25ea20f314b5e76fa795b2792d700", + "registration-basic.https.html": [ + "759b4244a269b8c364e6d0d7eb49c42f0ba9a180", [ null, {} ] ], - "scroll-timeline-name-parsing.html": [ - "d38b9640af91b87b48838c95481ccf38afd2731d", + "registration-end-to-end.https.html": [ + "1af4582d387412f47d82a94b2fe7050a5994644a", [ null, {} ] ], - "scroll-timeline-name-shadow.html": [ - "f2bea29dd3c874718fa413f6d4294324921c5835", + "registration-events.https.html": [ + "5bcfd66846bce5b93bf09d05b65c2e352b51ffab", [ null, {} ] ], - "scroll-timeline-nearest-dirty.html": [ - "1a79c9bb2225e994811283ab9fe21d14fd1e9ea8", + "registration-iframe.https.html": [ + "ae39ddfea3e5186bdea4c6a1a5d9f0c7e6cbc212", [ null, {} ] ], - "scroll-timeline-nearest-with-absolute-positioned-element.html": [ - "57a1a947126c86d8fdbdf7f6d1a7ced740ecf172", + "registration-mime-types.https.html": [ + "3a21aac5c75c20c210d3fdde2a14ed063a0c8b27", + [ + null, + { + "timeout": "long" + } + ] + ], + "registration-schedule-job.https.html": [ + "25d758ee8f0e26459218c7359faf7d3866b313cf", + [ + null, + { + "timeout": "long" + } + ] + ], + "registration-scope-module-static-import.https.html": [ + "5c75295aed1cd94c1349dc25010801534bd98644", [ null, {} ] ], - "scroll-timeline-paused-animations.html": [ - "54518a5e871e59a8839bba708872c70dccb3f276", + "registration-scope.https.html": [ + "141875f5847c399f5dbf35431a558ad885428cbc", [ null, {} ] ], - "scroll-timeline-range-animation.html": [ - "df087da6e2b023a6f8fcf70dc9dc9e930162ab7b", + "registration-script-module.https.html": [ + "9e39a1f75b27de492d5eb3842aaa254d2f662687", [ null, {} ] ], - "scroll-timeline-responsiveness-from-endpoint.html": [ - "71d3699077e02fafa02e3fecc37edbd1f4060a98", + "registration-script-url.https.html": [ + "bda61adb00271ffe78b3e38e055427eb203313d5", [ null, {} ] ], - "scroll-timeline-root-dirty.html": [ - "1c0b73ab45fd5e1618167a91b2bbdaf8a63f7458", + "registration-script.https.html": [ + "f1e51fd265e21271537769343e0e3e05032e76b7", [ null, {} ] ], - "scroll-timeline-sampling.html": [ - "a67f3b94e49818e3da6bbe69c8407d23674c34da", + "registration-security-error.https.html": [ + "860c2d22ea935cd3af17f11e1f0a7b966e6fa4e7", [ null, {} ] ], - "scroll-timeline-shorthand.html": [ - "722a8a1f4d7b7170e0b719b75b370ce4fe201886", + "registration-service-worker-attributes.https.html": [ + "f7b52d5ddced18613ca225386bb57f28b9bacd62", [ null, {} ] ], - "scroll-timeline-with-percent-delay.tentative.html": [ - "4f2e1761de29d80c8377926f734e0cfbfe831a8c", + "registration-updateviacache.https.html": [ + "b2f6bbc6f849c7e8051f1aedc9f476c47d5a39a4", + [ + null, + { + "timeout": "long" + } + ] + ], + "rejections.https.html": [ + "8002ad9a81b962756cd7b9921e0cfe974c808340", [ null, {} ] ], - "timeline-offset-in-keyframe-change-timeline.tentative.html": [ - "5a70820b881edf687961606f79153dab96d6ac2d", + "request-end-to-end.https.html": [ + "a39ceadd9f3feec1b8b73643aecf7530dcc61311", [ null, {} ] ], - "timeline-offset-keyframes-hidden-subject.html": [ - "011b8d4319a391837f5e1c80b330793b4201337a", + "resource-timing-bodySize.https.html": [ + "5c2b1eba8c811c83a65446ba4ea1da29508df42c", + [ + null, + { + "timeout": "long" + } + ] + ], + "resource-timing-cross-origin.https.html": [ + "2155d7ff6e49f517132c7567b3fe54824e9471b2", [ null, {} ] ], - "timeline-offset-keyframes-with-document-timeline.html": [ - "03ee381fd9276fef5b43d8c519bb1c6af01a690e", + "resource-timing-fetch-variants.https.html": [ + "8d4f0be01a8aad03af9de54441550d9e84d976a0", [ null, {} ] ], - "timeline-range-name-offset-in-keyframes.tentative.html": [ - "6fab0025dac324bf5f0af79e37af8e832d4d36b6", + "resource-timing.sub.https.html": [ + "e8328f3597ba25e34f02b9dd6cca1ed491cc9bbb", [ null, {} ] ], - "timeline-scope-computed.tentative.html": [ - "814933f726658493581a00157a660417ebf367c0", + "respond-with-body-accessed-response.https.html": [ + "f6713d89216ec0a8e5cfc6f4cbb326f0bd6e672e", [ null, {} ] ], - "timeline-scope-parsing.tentative.html": [ - "2885cb758ded6f4ad95f2f0603a977970b519ac7", + "same-site-cookies.https.html": [ + "1d9b60d4470194abe40abc3b49e377afa7a41dde", + [ + null, + { + "timeout": "long" + } + ] + ], + "sandboxed-iframe-fetch-event.https.html": [ + "ba34e790ff07c8ba35d89d50df7b010e6c529e35", + [ + null, + { + "timeout": "long" + } + ] + ], + "sandboxed-iframe-navigator-serviceworker.https.html": [ + "70be6ef9b0a956707384030b1be17b702663976f", [ null, {} ] ], - "timeline-scope.html": [ - "e4e90bc03ac5618a4a164b30e3b7d32e0b9f259f", + "secure-context.https.html": [ + "666a5d378760b54fd0f4fa86f9db7a05e2be5b5a", [ null, {} ] ], - "view-timeline-animation-range-update.tentative.html": [ - "552461c9b6c24870972b96281ab42cdf63b06ca2", + "service-worker-csp-connect.https.html": [ + "226f4a40e4e9ab40bbeeac4e874208af3106d2da", [ null, {} ] ], - "view-timeline-animation.html": [ - "1bf034a742f3b30be5070b78536614c1b53823fe", + "service-worker-csp-default.https.html": [ + "1d4e7624d861bc1ce1fde706409cfad160978c41", [ null, {} ] ], - "view-timeline-axis-computed.html": [ - "30b2a1ae051bf3c20fc2b4eb6b008d696e21272a", + "service-worker-csp-script.https.html": [ + "14c2eb72bdc49c4e13fa2d9da4a47be785b072f2", [ null, {} ] ], - "view-timeline-axis-parsing.html": [ - "1ebe4410a9547b8255a6c6696afc60462aafc04e", + "service-worker-header.https.html": [ + "fb902cd1b455d130c899cf06bf05c32184d2b543", [ null, {} ] ], - "view-timeline-dynamic.html": [ - "81dc8353c20971e338aec81fdb7e76cdf6cdc731", + "serviceworker-message-event-historical.https.html": [ + "fac8f2076fb64870550236dd27470902cdbe040c", [ null, {} ] ], - "view-timeline-inset-animation.html": [ - "f9aa0f291895ba15bead50f6e7efbc328a41a18e", + "serviceworkerobject-scripturl.https.html": [ + "6004985a34608132825086dab0c0777f3f0fdf1e", [ null, {} ] ], - "view-timeline-inset-computed.html": [ - "d9e1c9d790dbb55487e644ec77f26d3f0b1c3030", + "shadowrealm-promise-rejection.https.html": [ + "3fa2331b7f9a8ccbda83a93dad0d47e85e17cdde", [ null, {} ] ], - "view-timeline-inset-parsing.html": [ - "d502b13593ae2fba6e94830cc1af5a83ff1c9aef", + "skip-waiting-installed.https.html": [ + "b604f651b3c1deb38d891c77394a8f175a19c34e", [ null, {} ] ], - "view-timeline-keyframe-boundary-interpolation.html": [ - "011f03cb5dbb9ccded90e743201b6ceaafb4a8df", + "skip-waiting-using-registration.https.html": [ + "412ee2a4438e2328f69337893465c4a66c671ce6", + [ + null, + { + "timeout": "long" + } + ] + ], + "skip-waiting-without-client.https.html": [ + "62060a82472ff4426f543e91036115cd13a4329a", [ null, {} ] ], - "view-timeline-lookup.html": [ - "067ac1fa969f119e252d3415f172cbb6e6129d82", + "skip-waiting-without-using-registration.https.html": [ + "ced64e5f67fb667e5c233055ad920dbda0336336", + [ + null, + { + "timeout": "long" + } + ] + ], + "skip-waiting.https.html": [ + "f8392fc955b46cdd9f1deb5a7319b8f3f35d91dd", [ null, {} ] ], - "view-timeline-name-computed.html": [ - "3304723f43fa1880e5f1095739087e9612b1ac68", + "state.https.html": [ + "7358e58ff14a74e04514eb9432151576cf62b905", [ null, {} ] ], - "view-timeline-name-parsing.html": [ - "2b22cbe036e605633e1e72a160acd92172b3610d", + "static-router-fetch-event.https.html": [ + "167e3af00909ec26d41ac89eac989e7ffbd824ee", [ null, {} ] ], - "view-timeline-name-shadow.html": [ - "bb14618c00ad4350bf4716802da649e0567d9951", + "static-router-invalid-rules.https.html": [ + "15b8ef5742d7d901e46110f9898e8f3374a2e261", [ null, {} ] ], - "view-timeline-range-animation.html": [ - "9e5993b63a8792077c8e67302cea16671b8521b5", + "static-router-main-resource.https.html": [ + "71bc0697f9c08c84873a2e651d748dc01000b870", [ null, {} ] ], - "view-timeline-shorthand.html": [ - "9027eb0b09dc7dd348d2d3a0df94720b0de76150", + "static-router-multiple-router-registrations.https.html": [ + "dd7ff1e4e9ddd36227605e497246299f91b07f12", [ null, {} ] ], - "view-timeline-used-values.html": [ - "1bd6f0468c3db67b2ec48d2727121f8a87ebd522", + "static-router-mutiple-conditions.https.html": [ + "3d69411843c2b74b73e7a30fd45f320a995b82eb", [ null, {} ] ], - "view-timeline-with-delay-and-range.tentative.html": [ - "db260f15f07000045fa92068f7aaf1dfa39c4429", + "static-router-no-fetch-handler.https.html": [ + "e98dd08a90ad610744d83fbe8c4e6d72c901b77c", [ null, {} ] ], - "view-timeline-with-transform-on-subject.html": [ - "e4abac7219be6392e98ffb6ec4118ec18c0450cf", + "static-router-race-network-and-fetch-handler.https.html": [ + "0dad64ad9923435c3f68662e436559c05f89787d", [ null, {} ] - ] - }, - "scroll-timelines": { - "cancel-animation.html": [ - "7daf76a7a5465b4247fffde61bac526d10abbed6", + ], + "static-router-request-destination.https.html": [ + "55ad6da31aad1058d9707bd63867142a80a9743c", [ null, {} ] ], - "constructor-no-document.html": [ - "d2cc590bc752af3435f464a668793896d8667930", + "static-router-request-method.https.html": [ + "8e219532a3e653ce88ed083079f44b41a91fa08d", [ null, {} ] ], - "constructor.html": [ - "88c6a453ec972fe492d54f316105621c0717a81b", + "static-router-subresource.https.html": [ + "ab05a3d25282473d5425d9086ef76a132fa2c5da", [ null, {} ] ], - "current-time-nan.html": [ - "440b1f413e2300e4b87ae75f494671acbef02ce1", + "synced-state.https.html": [ + "0e9f63a9a2e528e7ffb8f9913edffc8e0294ad98", [ null, {} ] ], - "current-time-root-scroller.html": [ - "be1d62bec51d5a9a11bd2a382db519efca955d8e", + "tentative": { + "static-router": { + "static-router-resource-timing.https.html": [ + "c85c5ea3b9adfd618cea8f38a71c5daec9791b0e", + [ + null, + {} + ] + ] + } + }, + "uncontrolled-page.https.html": [ + "e22ca8f0a91adf9fbcf64c77cd3d1d4df27956f3", [ null, {} ] ], - "current-time-writing-modes.html": [ - "748cda2f894f28096204526797f0e3a259e333d0", + "unregister-controller.https.html": [ + "3bf4cff7200e71a7ad157f97f60e0bca45693485", [ null, {} ] ], - "effect-updateTiming.html": [ - "0c7a546572149de772eb2ab7ce753106a0d1774f", + "unregister-immediately-before-installed.https.html": [ + "79cdaf062dc729c8029c553b485e59d510b87982", [ null, {} ] ], - "finish-animation.html": [ - "3faff63dc9300079abb73d7f4835a3333eb9d0b5", + "unregister-immediately-during-extendable-events.https.html": [ + "6ba87a7ce80e198132b38b3878d069efe423b071", [ null, {} ] ], - "idlharness.window.js": [ - "90157580ce00716403346f369b1e25bba8db23c2", + "unregister-immediately.https.html": [ + "54be40a545220d9d58569816feef87a0ee17f891", [ - "scroll-animations/scroll-timelines/idlharness.window.html", + null, + {} + ] + ], + "unregister-then-register-new-script.https.html": [ + "d046423e0c29c082c22c64c865ccb38a6a40adac", + [ + null, + {} + ] + ], + "unregister-then-register.https.html": [ + "b61608c8419fd4f362dee5330404e2743a2f05f6", + [ + null, + {} + ] + ], + "unregister.https.html": [ + "492aecb21a875814e3a8fb89e64069989b9e31f5", + [ + null, + {} + ] + ], + "update-after-navigation-fetch-event.https.html": [ + "ff51f7f902c7bf7c27e0996c61bb06edec6fce86", + [ + null, + { + "timeout": "long" + } + ] + ], + "update-after-navigation-redirect.https.html": [ + "6e821fe479f273f7b17fd8d91e681ecd283a933d", + [ + null, + { + "timeout": "long" + } + ] + ], + "update-after-oneday.https.html": [ + "e7a8aa42d307799b157fd3994ac291d5c596bfd1", + [ + null, + {} + ] + ], + "update-bytecheck-cors-import.https.html": [ + "121a7378e358d632cee3ef56e79a19c865ea5c3d", + [ + null, + { + "timeout": "long" + } + ] + ], + "update-bytecheck.https.html": [ + "3e5a28bb67cb75624a5dd98bd15e137e55c87b0f", + [ + null, + { + "timeout": "long" + } + ] + ], + "update-import-scripts.https.html": [ + "a2df529e90dfd31a75afdac093a5dd1b74d00134", + [ + null, + {} + ] + ], + "update-missing-import-scripts.https.html": [ + "66e8bfac751e835af8e543fc5289697c15ac118d", + [ + null, + {} + ] + ], + "update-module-request-mode.https.html": [ + "b3875d207bc252dea8e43c1b585febe6d6a10f0b", + [ + null, + { + "timeout": "long" + } + ] + ], + "update-no-cache-request-headers.https.html": [ + "6ebad4b7b10bcdf176c1543fd711aee31d5547b7", + [ + null, + {} + ] + ], + "update-not-allowed.https.html": [ + "0a54aa9350382bb082f407a1ea30b265575baae9", + [ + null, + {} + ] + ], + "update-on-navigation.https.html": [ + "5273420b90fc97fcd441ac057a99ee5b31c84a30", + [ + null, + {} + ] + ], + "update-recovery.https.html": [ + "17608d2ef790e2ea97a43f56b86a28ef0e647604", + [ + null, + {} + ] + ], + "update-registration-with-type.https.html": [ + "269e61b390bdb1b96c151e214f8a58109a7db3b4", + [ + null, + {} + ] + ], + "update-result.https.html": [ + "d8ed94f776650c8a40ba82df9ca5e909b460bb79", + [ + null, + {} + ] + ], + "update.https.html": [ + "f9fded3db49f02de6ce13c3b1cec209dad0779bf", + [ + null, + { + "timeout": "long" + } + ] + ], + "waiting.https.html": [ + "499e581eb353a2e433580e413a730bea2a9b7ad9", + [ + null, + {} + ] + ], + "websocket-in-service-worker.https.html": [ + "cda9d6fe67e233e8b36dbfe12ddec2fa054de425", + [ + null, + {} + ] + ], + "websocket.https.html": [ + "cbfed456a9dc6bdfdbd19789912101ab1117b1ef", + [ + null, + {} + ] + ], + "webvtt-cross-origin.https.html": [ + "9394ff75c4a5f395d287ce7c57a13522efce9aee", + [ + null, + {} + ] + ], + "windowclient-navigate.https.html": [ + "ad60f786363d6ac4157d9a4372e25b6b15544109", + [ + null, + { + "timeout": "long" + } + ] + ], + "worker-client-id.https.html": [ + "4e4d31660bd56add3f3559fce5e884b0c7e1f0e2", + [ + null, + {} + ] + ], + "worker-in-sandboxed-iframe-by-csp-fetch-event.https.html": [ + "c8480bf1be003903383404fa90ff28af668f6533", + [ + null, + {} + ] + ], + "worker-interception-redirect.https.html": [ + "8d566b9c15b10e1814dd73d3aecb1a6241ddec57", + [ + null, + { + "timeout": "long" + } + ] + ], + "worker-interception.https.html": [ + "27983d8352fe4fad1d85c26aee24050d0c5a2978", + [ + null, + { + "timeout": "long" + } + ] + ], + "xhr-content-length.https.window.js": [ + "1ae320e9c3c5713a2d47291d83ba7d72dc03c152", + [ + "service-workers/service-worker/xhr-content-length.https.window.html", { "script_metadata": [ [ "script", - "/resources/WebIDLParser.js" - ], - [ - "script", - "/resources/idlharness.js" + "resources/test-helpers.sub.js" ] ] } ] ], - "intrinsic-iteration-duration.tentative.html": [ - "4bcea1adba3d8466a9a5d9d5b432a713cc414994", + "xhr-response-url.https.html": [ + "673ca52cc67450f8b296ea50f7ac4c4fee310602", [ null, {} ] ], - "pause-animation.html": [ - "1f9641e2f8d61845d64bff98129985c42468cee7", + "xsl-base-url.https.html": [ + "1d3c36408a66a7785b884c9cdc39dcd2820f9af0", + [ + null, + {} + ] + ] + } + }, + "shadow-dom": { + "Document-caretPositionFromPoint.tentative.html": [ + "b01bc0ae6edfef1fedfcfeb5f1aeab94178d8895", + [ + null, + {} + ] + ], + "Document-prototype-adoptNode.html": [ + "6afd603618d7af99a9a71818a735b786efb36cd7", + [ + null, + {} + ] + ], + "Document-prototype-currentScript.html": [ + "176ef348fcbeb7dd7c63aedc24f78c13c1c7b048", + [ + null, + {} + ] + ], + "Document-prototype-importNode.html": [ + "f71f8dc6c5e027108176d3dfab633e2d18b78129", + [ + null, + {} + ] + ], + "DocumentOrShadowRoot-prototype-elementFromPoint.html": [ + "6893ad394b4e049416263257740925431cdbdab8", + [ + null, + {} + ] + ], + "Element-interface-attachShadow-custom-element.html": [ + "11ae277c4123d8cdb5e701e5bc3d097ff1b14dff", + [ + null, + {} + ] + ], + "Element-interface-attachShadow.html": [ + "187ac4c4087b5b9009198ba70aeb04447a60bd8b", + [ + null, + {} + ] + ], + "Element-interface-shadowRoot-attribute.html": [ + "02d8050997cfaa0b6b1668c9b350a2ae526bccdd", + [ + null, + {} + ] + ], + "Extensions-to-Event-Interface.html": [ + "806d539cad45d55d635ee55637be2c8b5c014b55", + [ + null, + {} + ] + ], + "HTMLSlotElement-interface.html": [ + "e22de32167090f7dd4db630931495d84150d52b1", + [ + null, + {} + ] + ], + "MouseEvent-prototype-offsetX-offsetY.html": [ + "643736b85c4899126fffda956fe94a40a9fb2ffc", + [ + null, + {} + ] + ], + "Node-prototype-cloneNode.html": [ + "0ee47d492e5ad0ec8c00d15d4897c19772c9651d", + [ + null, + {} + ] + ], + "Range-prototype-insertNode.html": [ + "b55ef68dcbcc8624ad8f1be066a4e01a94c28da0", + [ + null, + {} + ] + ], + "ShadowRoot-interface.html": [ + "de7ac91f250306409327ab89eae6a70f105dd630", + [ + null, + {} + ] + ], + "Slottable-mixin.html": [ + "84c7fce44501daf269e6a20c6dac8619d3b197f1", + [ + null, + {} + ] + ], + "accesskey.tentative.html": [ + "93eb912be0e222d48ebdf18850f2a36636bd8cbf", + [ + null, + { + "testdriver": true + } + ] + ], + "capturing-and-bubbling-event-listeners-across-shadow-trees.html": [ + "bcb4ee62e0c61c488791f5ac045908eacad79596", + [ + null, + {} + ] + ], + "declarative": { + "declarative-after-attachshadow.html": [ + "bfe2d66cfa9d3921bcdb046285fdb0af69b7354a", [ null, {} ] ], - "play-animation.html": [ - "7d95eaa257748c069079143bd4091c841f32ac3f", + "declarative-parser-interaction.html": [ + "f5ff13822b04c8776326bc2b2dcb7b4501c953c0", [ null, {} ] ], - "reverse-animation.html": [ - "1054ed3983696e5ef3310db1e2c996f0470d427e", + "declarative-shadow-dom-attachment.html": [ + "ec0426e85509efaeaed8cc0b6bc61cc367b39c6d", [ null, {} ] ], - "scroll-animation-effect-fill-modes.tentative.html": [ - "b9cc154676135656a06966f4c369acfa4f06903f", + "declarative-shadow-dom-available-to-element-internals.html": [ + "16fe6fd1d5209c5e5ba8d0ebb94171d711098a2d", + [ + null, + {} + ] + ], + "declarative-shadow-dom-basic.html": [ + "6f7e1b070378832db559ec25bacfc411c1d82efa", + [ + null, + {} + ] + ], + "declarative-shadow-dom-opt-in.html": [ + "1b8c168552bccb3c5b4ea07688e539bde1b98a76", + [ + null, + {} + ] + ], + "declarative-shadow-dom-repeats-2.html": [ + "74b14b8d8ff679f889297b3d21d14eb090a9ff27", + [ + null, + {} + ] + ], + "declarative-shadow-dom-repeats.html": [ + "a2bfa488fb76f3d59d4ff47c6dca31cc8613c381", + [ + null, + {} + ] + ], + "declarative-shadow-dom-write-to-iframe.html": [ + "ab0af5878de4d957337fb8284950571310a1bb19", + [ + null, + {} + ] + ], + "declarative-with-disabled-shadow.html": [ + "bcf53403addb673b609ecbc2a4299d84a701fc3e", + [ + null, + {} + ] + ], + "gethtml-ordering.html": [ + "6ac32e2902342eb16cb2b4b01480cd1e3cb365ed", + [ + null, + {} + ] + ], + "gethtml.html": [ + "0477cdaf820ec55890142baad459dfc642a95569", [ null, { @@ -708008,379 +737678,1573 @@ } ] ], - "scroll-animation-effect-phases.tentative.html": [ - "41ae0e0612f61a88f023cde8f32ff5fcf095df37", + "getinnerhtml.tentative.html": [ + "139cba2a517f666e444f891a46f5426944bad68a", + [ + null, + {} + ] + ], + "innerhtml-before-closing-tag.html": [ + "f038d3ecb2e50652e802132f03e5c41c10bd3dd2", + [ + null, + {} + ] + ], + "innerhtml-on-ordinary-template.html": [ + "87260013def7fd7efc9ea89bf5bece36d2af348b", + [ + null, + {} + ] + ], + "move-template-before-closing-tag.html": [ + "a3d7806f5d668c32e77e013d88cd4b82ff6d40b5", + [ + null, + {} + ] + ], + "script-access.html": [ + "7e1340d477796089a759da01c3db261084be521d", + [ + null, + {} + ] + ] + }, + "event-composed-path-after-dom-mutation.html": [ + "fd129e036af711b1fa4f9a42fabcc344200fc2d6", + [ + null, + {} + ] + ], + "event-composed-path-with-related-target.html": [ + "f6dff13a93e55437246c94be3f708e79af513f95", + [ + null, + {} + ] + ], + "event-composed-path.html": [ + "8c37b1c3bdc1b0e28e69fbe6dca94865bb5f30bd", + [ + null, + {} + ] + ], + "event-composed.html": [ + "2d6a5e36585b623a89b1e5f4e059d881027a0b94", + [ + null, + {} + ] + ], + "event-dispatch-order.tentative.html": [ + "1e88740f53a2dc25d9650e4f54c3011e2b0e9355", + [ + null, + {} + ] + ], + "event-inside-shadow-tree.html": [ + "a7405a59560c790c5708a7eaa4e65b6669adc0dd", + [ + null, + {} + ] + ], + "event-inside-slotted-node.html": [ + "5f8d3b93c6b41fb5046a0f69b105df9a3855b373", + [ + null, + {} + ] + ], + "event-post-dispatch.html": [ + "239881c7e153b996d33bd94a9cf056e4593001b0", + [ + null, + {} + ] + ], + "event-with-related-target.html": [ + "77da4476025fb6160f34efb1df9cfd87226cda02", + [ + null, + {} + ] + ], + "focus": { + "DocumentOrShadowRoot-activeElement.html": [ + "20456b057e1e724cdac9bc656f3b3d6c7ac2f658", [ null, { - "timeout": "long" + "testdriver": true } ] ], - "scroll-animation-inactive-timeline.html": [ - "02220cee141b0f33591c7e8a00ff8013b15e5219", + "ShadowRoot-delegatesFocus.html": [ + "4b7fe4e50e72b94b690f8a6e44892a66a17fa404", [ null, {} ] ], - "scroll-animation.html": [ - "e3544762f60dac3d1af563b061f5a9064f44a84b", + "blur-on-shadow-host-delegatesFocus.html": [ + "289b5543721360cfa723e6b61ca0cb672c68bfab", + [ + null, + { + "testdriver": true + } + ] + ], + "click-focus-delegatesFocus-click.html": [ + "0578c15582a5cddd924199f52aeafcf6d0bc4cc2", + [ + null, + { + "testdriver": true + } + ] + ], + "click-focus-delegatesFocus-tabindex-varies.html": [ + "4051db128a915000bff162fefe4bed55eb338061", + [ + null, + { + "testdriver": true + } + ] + ], + "click-focus-delegatesFocus-tabindex-zero.html": [ + "5f7914f2a4e31e107caa817de1b29720c9a21862", + [ + null, + { + "testdriver": true + } + ] + ], + "delegatesFocus-tabindex-change.html": [ + "f159c22164bb62064b62bc089faf5bd05cba555f", [ null, {} ] ], - "scroll-timeline-invalidation.html": [ - "a26500989ed0c64ca715f94f120b79ee19f45bd7", + "focus-autofocus.html": [ + "75a50b84c6df5525b5da0df86192637b70247820", + [ + null, + { + "testdriver": true + } + ] + ], + "focus-click-on-shadow-host.html": [ + "7a318a0200e7405b4793f2705434bef948aea61f", + [ + null, + { + "testdriver": true + } + ] + ], + "focus-method-delegatesFocus-nested-browsing-context.html": [ + "d2724f17d52b93912544cda8a44aae7017918ac9", + [ + null, + { + "testdriver": true + } + ] + ], + "focus-method-delegatesFocus.html": [ + "99667029ad866a200587335c63706d97c82dfe58", + [ + null, + { + "testdriver": true + } + ] + ], + "focus-method-with-delegatesFocus.html": [ + "8caea8ccda475916a5a62b93610b8f997b9d257d", + [ + null, + { + "testdriver": true + } + ] + ], + "focus-pseudo-matches-on-shadow-host.html": [ + "34f8c0129456b38fc46a10c9247ed304abfd9715", [ null, {} ] ], - "scroll-timeline-range.html": [ - "cc844cb748e6f2b024f7a04392101b77f162c740", + "focus-scroll-under-delegatesFocus.html": [ + "ea5fc472b5a0ffd3bbc6cc2eff112c3f38c0e09e", + [ + null, + { + "testdriver": true + } + ] + ], + "focus-selector-delegatesFocus.html": [ + "bbc1346a460a13f17a82046ea2cfacaca5e6e1cf", [ null, {} ] ], - "scroll-timeline-snapshotting.html": [ - "1e43699d5bfea7f8331a090c01eddcae944b51cc", + "focus-shadowhost-display-none.html": [ + "40f1b01f6644bb3061f82dbff05d1a924fcf631d", + [ + null, + {} + ] + ], + "focus-slot-box-generated-tabindex-0.html": [ + "6406254167c3ec8a52bf6891deab0348a817c7a1", + [ + null, + { + "testdriver": true + } + ] + ], + "focus-tab-on-shadow-host.html": [ + "0dffc0157f53d7178ebb0ff04b3b09977642b280", + [ + null, + { + "testdriver": true + } + ] + ], + "focus-tabindex-order-shadow-negative-delegatesFocus.html": [ + "356b0bb329e27bf2706cbfeda66624adc277d43d", + [ + null, + { + "testdriver": true + } + ] + ], + "focus-tabindex-order-shadow-negative.html": [ + "ab25ea829bd10952ad6e96898fc95a1a1ae25d8f", + [ + null, + { + "testdriver": true + } + ] + ], + "focus-tabindex-order-shadow-slot-one.html": [ + "3c9e70867c5883e96f6288b85a9bac60b9526f4e", + [ + null, + { + "testdriver": true + } + ] + ], + "focus-tabindex-order-shadow-varying-delegatesFocus.html": [ + "67899cff4a9d2e2acac622147c395720fb110f72", + [ + null, + { + "testdriver": true + } + ] + ], + "focus-tabindex-order-shadow-varying-tabindex-2.html": [ + "1755aaf442af97cb864531ad0f19b5e58187c32b", + [ + null, + { + "testdriver": true + } + ] + ], + "focus-tabindex-order-shadow-varying-tabindex-3.html": [ + "e0570395ec8c15200a3dc84744e09d99e8868d9a", + [ + null, + { + "testdriver": true + } + ] + ], + "focus-tabindex-order-shadow-varying-tabindex.html": [ + "875e5b6814a95754f5c01d18c125c39c363ad3c6", + [ + null, + { + "testdriver": true + } + ] + ], + "focus-tabindex-order-shadow-zero-delegatesFocus.html": [ + "5e6ab3a90f8f12274c58620220e00e6bec09fc44", + [ + null, + { + "testdriver": true + } + ] + ], + "focus-tabindex-order-shadow-zero-host-negative.html": [ + "b491c7d237c20604039f2b6482d484635c9f50da", + [ + null, + { + "testdriver": true + } + ] + ], + "focus-tabindex-order-shadow-zero-host-not-set-scrollable.html": [ + "9a12d8b8f42c67a9b75accd283b59a3f6870d6af", + [ + null, + { + "testdriver": true + } + ] + ], + "focus-tabindex-order-shadow-zero-host-not-set.html": [ + "f257261477186b94320a48ba1650348991dc2a26", + [ + null, + { + "testdriver": true + } + ] + ], + "focus-tabindex-order-shadow-zero-host-one.html": [ + "1aa5292997a3e28750e1437939e3c24448245c8c", + [ + null, + { + "testdriver": true + } + ] + ], + "focus-tabindex-order-shadow-zero-host-scrollable.html": [ + "fa8090ca97ffee1c1dfe4b8026a3c39ed6af502a", + [ + null, + { + "testdriver": true + } + ] + ], + "focus-tabindex-order-shadow-zero.html": [ + "d8b12ed8ac6e24553f0cccced7f1616bb588413e", + [ + null, + { + "testdriver": true + } + ] + ], + "text-selection-with-delegatesFocus.html": [ + "7c92d35394f126d878780a1c04f2bdb49550ba86", + [ + null, + { + "testdriver": true + } + ] + ] + }, + "focus-navigation": { + "delegatesFocus-highlight-sibling.html": [ + "dde18128ad8247f21c7e86d20fbe409de29ca6e5", + [ + null, + { + "testdriver": true + } + ] + ], + "focus-navigation-slot-fallback-default-tabindex.html": [ + "365edb00b814f84fa55507bffced887b3c2bea2a", + [ + null, + { + "testdriver": true + } + ] + ], + "focus-navigation-slot-fallback.html": [ + "54ee14c34bec4f7a4cb6f1fce813ec345712034a", + [ + null, + { + "testdriver": true + } + ] + ], + "focus-navigation-slot-nested-2levels.html": [ + "1b867cc2a9b8da2955662179044a4455bff07d52", + [ + null, + { + "testdriver": true, + "timeout": "long" + } + ] + ], + "focus-navigation-slot-nested-delegatesFocus.html": [ + "5e4ab3ce4bacf12de69a04d6ed216bc0a9a6e795", + [ + null, + { + "testdriver": true + } + ] + ], + "focus-navigation-slot-nested-fallback.html": [ + "66d8c14b2b9a18235f4e82507b805041455ef52d", + [ + null, + { + "testdriver": true + } + ] + ], + "focus-navigation-slot-nested.html": [ + "ae966afc76adbb29efb605039ac4db3ba6f87e93", + [ + null, + { + "testdriver": true + } + ] + ], + "focus-navigation-slot-shadow-in-fallback.html": [ + "418da8f5ff72ae9baee6bca9f8b1943e04c8cbe4", + [ + null, + { + "testdriver": true + } + ] + ], + "focus-navigation-slot-shadow-in-slot.html": [ + "eef3e1b61193807c5a92e27351cb3c8005d8484c", [ null, { "testdriver": true } - ] - ], - "setting-current-time.html": [ - "f6c826db6993663462727f8ec4629e62adf28f61", - [ - null, - {} - ] - ], - "setting-playback-rate.html": [ - "e7e96a27e1ff3961b66139fb5fae6d2ac82e9fff", - [ - null, - {} - ] - ], - "setting-start-time.html": [ - "aae1849565b15271105614d198b161f27d091940", - [ - null, - {} - ] - ], - "setting-timeline.tentative.html": [ - "5813de60fabf2f34881d0aad4356947109c4b983", - [ - null, - {} - ] - ], - "source-quirks-mode.html": [ - "17e95a0519f89784b8d51d3885d07fbf175c80eb", - [ - null, - {} - ] - ], - "update-playback-rate.html": [ - "10535319fca2d453271cc0e9ef89dd59deb0c452", - [ - null, - {} - ] - ], - "updating-the-finished-state.html": [ - "86b52d5aa0c219e953ce194383141d483606921d", - [ - null, - {} - ] - ] - }, - "view-timelines": { - "animation-events.html": [ - "b456794225510c81f649e13fd2dc20e42b4a1c0f", - [ - null, - {} - ] - ], - "block-view-timeline-current-time-vertical-rl.tentative.html": [ - "beb380060e1b51e86f9f1cfd1ad6885754cab0c4", - [ - null, - {} - ] - ], - "block-view-timeline-current-time.tentative.html": [ - "c24d04412fc99f1d227d8ac6202acb985f3c67d8", - [ - null, - {} - ] - ], - "block-view-timeline-nested-subject.tentative.html": [ - "6fdc7c68229a8abba8b1e6f0409e483eed94fe93", - [ - null, - {} - ] - ], - "change-animation-range-updates-play-state.html": [ - "ee01070a53c96be161b5be770e4ed11a3a0c8b8b", - [ - null, - {} - ] - ], - "contain-alignment.html": [ - "8b61a9ab81ca46aa2c1530e00a7332fc70bf05cb", - [ - null, - {} - ] - ], - "get-keyframes-with-timeline-offset.html": [ - "02f910d04e3316feaaa3512101d12bc9dcfa40f5", - [ - null, - {} - ] - ], - "inline-subject.html": [ - "6b1d216dea154829b86defb2307caf508189a3c8", - [ - null, - {} - ] - ], - "inline-view-timeline-current-time.tentative.html": [ - "59d73d0cdf772475f0f0f573562ac840ae0b958d", - [ - null, - {} - ] - ], - "sticky": { - "view-timeline-sticky-offscreen-1.html": [ - "d8756769c5179cdb7458958b81151baa17b17d6a", - [ - null, - {} + ] + ], + "focus-navigation-slot-with-tabindex.html": [ + "d43085e984503a0b393d4bf447db6682d1698bc4", + [ + null, + { + "testdriver": true + } + ] + ], + "focus-navigation-slots-in-slot.html": [ + "3c929de7276fea5689b5738dc5d550f7a5ded235", + [ + null, + { + "testdriver": true, + "timeout": "long" + } + ] + ], + "focus-navigation-slots.html": [ + "0d129ae77124c41e2936af81e97d65aad77c9dba", + [ + null, + { + "testdriver": true + } + ] + ], + "focus-navigation-web-component-radio.html": [ + "9304cc2ce199b0ad08c1385ef759e08518428dcc", + [ + null, + { + "testdriver": true + } + ] + ], + "focus-navigation-with-delegatesFocus.html": [ + "e37accbc8e2951fad326a430397dadd5165ebd63", + [ + null, + { + "testdriver": true, + "timeout": "long" + } + ] + ], + "focus-navigation.html": [ + "faf3c34cdb2eb25cf334f0396fba1a727dac4663", + [ + null, + { + "testdriver": true, + "timeout": "long" + } + ] + ], + "focus-nested-slots.html": [ + "85d784bc04b00c61f3e58b6a62821afdf5055aaa", + [ + null, + { + "testdriver": true + } + ] + ], + "focus-reverse-unassignable-slot.html": [ + "ddb72bdfc39efe128a7c0fd7f8c12a07e839ffb9", + [ + null, + { + "testdriver": true + } + ] + ], + "focus-reverse-unassigned-slot.html": [ + "e19ea44288bc2741c8bcb78ab66661a64a9a3349", + [ + null, + { + "testdriver": true + } + ] + ], + "focus-unassignable-slot.html": [ + "135569d94ccbe664e2e83ca0892ebfc36cba6e6b", + [ + null, + { + "testdriver": true + } + ] + ], + "focus-with-negative-index.html": [ + "ed3fac9a6cfb4cbcc1210ecb2eee43bfa65015f3", + [ + null, + { + "testdriver": true + } + ] + ], + "reading-flow": { + "tentative": { + "flex-flow.html": [ + "e6998105608c99e3a3dca3de610018bebda81172", + [ + null, + { + "testdriver": true, + "timeout": "long" + } + ] + ], + "flex-visual-order.html": [ + "d8515fd928c777659f599f53a94b6d9ac5728a81", + [ + null, + { + "testdriver": true + } + ] + ], + "grid-columns.html": [ + "ad9bd81c7a7967fbe582843e02a5c4e2749d477f", + [ + null, + { + "testdriver": true, + "timeout": "long" + } + ] + ], + "grid-order-across-scopes.html": [ + "76e5af8c74b24201bd73911c3f3720d6f5861292", + [ + null, + { + "testdriver": true + } + ] + ], + "grid-order-on-shadow-host.html": [ + "c83e2283f50ea282128de717f80e7a185ecebc17", + [ + null, + { + "testdriver": true + } + ] + ], + "grid-order-pseudo-elements.html": [ + "16bce77272a1a0b28d544c8caf87b5657c7ded2d", + [ + null, + { + "testdriver": true, + "timeout": "long" + } + ] + ], + "grid-order-with-display-contents.html": [ + "b69f3d20799abdd562cff016818252818ceac8bc", + [ + null, + { + "testdriver": true, + "timeout": "long" + } + ] + ], + "grid-order-with-iframe.html": [ + "fab6a7b8a681da079d707124ee0e43ca15980212", + [ + null, + { + "testdriver": true + } + ] + ], + "grid-order-with-nested-grids.html": [ + "990dbac846b53e027501c2b3567c24c3be625612", + [ + null, + { + "testdriver": true, + "timeout": "long" + } + ] + ], + "grid-order-with-popover.html": [ + "822907378cb5431fdcbcd6c826414ddab2bdad72", + [ + null, + { + "testdriver": true, + "timeout": "long" + } + ] + ], + "grid-order-with-position-absolute.html": [ + "239383dd6c496cc45e3b2b000f44e74cd36d17cf", + [ + null, + { + "testdriver": true, + "timeout": "long" + } + ] + ], + "grid-order-with-position-fixed.html": [ + "bc496c47b4c755c9befeb6fa07df41dd1939a6c9", + [ + null, + { + "testdriver": true, + "timeout": "long" + } + ] + ], + "grid-order-with-slots.html": [ + "f52c9ebdc817a4813d3f521c63caa447ddc87db6", + [ + null, + { + "testdriver": true, + "timeout": "long" + } + ] + ], + "grid-order.html": [ + "55390d10a9d9f1d5f89c07ebe61d7c5e0581fb5c", + [ + null, + { + "testdriver": true, + "timeout": "long" + } + ] + ], + "grid-rows.html": [ + "41f986c1f4b305113d3a3bdbb6098ee06be35db6", + [ + null, + { + "testdriver": true, + "timeout": "long" + } + ] + ] + } + } + }, + "focus-within-shadow.html": [ + "c0a1e624fb79879f7601cba0da5854ae26988a00", + [ + null, + {} + ] + ], + "form-control-form-attribute.html": [ + "2e782b2587d8dc6b71deee7d229ed4e8a996703c", + [ + null, + {} + ] + ], + "getElementById-dynamic-001.html": [ + "c2acda2a9c7f20f521ed911c530a19a9e1c0f131", + [ + null, + {} + ] + ], + "historical.html": [ + "4fa8be1dbc9537b904d51b74e8de37dc36a471d6", + [ + null, + {} + ] + ], + "host-with-namespace.xhtml": [ + "243728a015d31736932d4decc06dd65aa422ad37", + [ + null, + {} + ] + ], + "imperative-slot-api-slotchange.html": [ + "236aaea18a14dfb4f0f62948a5ea2df38e3ca4f1", + [ + null, + {} + ] + ], + "imperative-slot-api.html": [ + "bcf052bbab37b4060a3c1f54ed3edf0cb9c2bc45", + [ + null, + {} + ] + ], + "imperative-slot-fallback-clear.html": [ + "5f79b4f2fad79c57d38477a3b4be1e6765127a03", + [ + null, + {} + ] + ], + "imperative-slot-initial-fallback.html": [ + "87b37aa827bd76af6afd95b0b45496ce2b6c858f", + [ + null, + {} + ] + ], + "innerHTML-setter.xhtml": [ + "0122707e2a917e4b52142733995cfedc1e777edc", + [ + null, + {} + ] + ], + "input-element-list.html": [ + "b571534eb0d6f3f57cfbec3e706648b19848b6d6", + [ + null, + {} + ] + ], + "input-type-radio.html": [ + "9c90fcf0603222785aa81990fb2b09511ff6ba86", + [ + null, + {} + ] + ], + "leaktests": { + "get-elements.html": [ + "40fa9b69314a9cd9f1eee777ce4120440d7801df", + [ + null, + {} + ] + ], + "html-collection.html": [ + "1ce2cf34401dff1bb63b1955d93b3c79ab7886ea", + [ + null, + {} + ] + ], + "selection.html": [ + "62509317667757bb9f58475daba90bebb134f0ee", + [ + null, + { + "testdriver": true + } + ] + ], + "window-frames.html": [ + "5ba2531ff26a27f6309bce11d488d2ff77f563f3", + [ + null, + {} + ] + ] + }, + "offsetParent-across-shadow-boundaries.html": [ + "5491e2121336d1b59ef69198fd048a22acc80d46", + [ + null, + {} + ] + ], + "offsetTop-offsetLeft-across-shadow-boundaries.html": [ + "27b1faa17100fa37f3fba7cd8f7ec12c0450e7f2", + [ + null, + {} + ] + ], + "reference-target": { + "tentative": { + "anchor.html": [ + "d8c6f41460bd42b5ace34ee916e9e77c2df58490", + [ + null, + { + "testdriver": true + } + ] + ], + "aria-labelledby.html": [ + "2ff154f97c6505ec3906b040cec70d73dc2b6fa4", + [ + null, + { + "testdriver": true + } + ] + ], + "label-descendant.html": [ + "2b29efd648ab800b60cc1a9bd6ec2fb6f5500322", + [ + null, + { + "testdriver": true + } + ] + ], + "label-for.html": [ + "06fab55abd293ae6aeba9a4d4150f82ccea9c5fc", + [ + null, + { + "testdriver": true + } + ] + ], + "popovertarget.html": [ + "5b0619d4a67b4ddb304a7d94694045fab79a648b", + [ + null, + { + "testdriver": true + } + ] + ], + "property-reflection.html": [ + "078eb28665d2114b22fa5f0fa2f0e75448415155", + [ + null, + { + "testdriver": true + } + ] + ] + } + }, + "scroll-to-the-fragment-in-shadow-tree.html": [ + "b4ecc16a67daeb1160523e10cca057d0c9582d5c", + [ + null, + {} + ] + ], + "selection-direction.tentative.html": [ + "340711a8f0682d2736fa355efadab337189a6feb", + [ + null, + { + "testdriver": true + } + ] + ], + "shadow-root-clonable.html": [ + "a8d4a4ca5167549f89a1c154794befc5de706cd4", + [ + null, + {} + ] + ], + "slotchange-customelements.html": [ + "b0cf93277df950f46f6e6a7c5266798c47426651", + [ + null, + {} + ] + ], + "slotchange-event.html": [ + "f1d06297ff623af2da99c5f2e0b7ebd6a7d1eb5f", + [ + null, + {} + ] + ], + "slotchange.html": [ + "9c4b81a156360d95ff57045147dc7c7a747e0fd6", + [ + null, + {} + ] + ], + "slots-fallback-in-document.html": [ + "846f3e03a057f28198eb4503146fbfb0d43c7cc6", + [ + null, + {} + ] + ], + "slots-fallback.html": [ + "e705e18f4a9747d0ffffe0909bfa4d85bd8f7ad4", + [ + null, + {} + ] + ], + "slots-outside-shadow-dom.html": [ + "a6fa2b27f760d1daf6e7390c6e582108b035e57e", + [ + null, + {} + ] + ], + "slots.html": [ + "948d389298f46cc906fa998c8b495ad55bd50a1a", + [ + null, + {} + ] + ], + "untriaged": { + "elements-and-dom-objects": { + "extensions-to-element-interface": { + "attributes": { + "test-006.html": [ + "bfbfde36e2ac8184ba0a24f9724ae947101c3c49", + [ + null, + {} + ] + ] + }, + "methods": { + "test-001.html": [ + "c1c44980e1bceabecc416ee33591f687dfb03fff", + [ + null, + {} + ] + ], + "test-002.html": [ + "f7e1595a013509992a336b790cbdb51d98b28774", + [ + null, + {} + ] + ] + } + }, + "shadowroot-object": { + "shadowroot-attributes": { + "activeElement-confirm-return-null.html": [ + "417995d75e299d7b8a641a55a651c79022179eed", + [ + null, + {} + ] + ], + "test-007.html": [ + "d8868f56950081feae71f03a62ec11449cd87e1e", + [ + null, + {} + ] + ], + "test-009.html": [ + "219c57826680f3d777cf81a2ec868615bc9239cc", + [ + null, + {} + ] + ], + "test-010.html": [ + "4207065867c79c607e16c649f11c523df4f89f18", + [ + null, + {} + ] + ], + "test-011.html": [ + "74c2c9877f4799184206b6959f58bd94de2959f2", + [ + null, + {} + ] + ], + "test-012.html": [ + "af06e4fafb42e043aec7f793269fb168c692c3ae", + [ + null, + {} + ] + ], + "test-013.html": [ + "3f754c0381067a6c3eb4c21de155bb27caf4cabb", + [ + null, + {} + ] + ] + }, + "shadowroot-methods": { + "test-001.html": [ + "6093313a0e099b3036c68e67da24c644d2814c9c", + [ + null, + {} + ] + ], + "test-004.html": [ + "dc087680ddf21992df8722e232edd4d270543acb", + [ + null, + {} + ] + ], + "test-006.html": [ + "cf10846cc9765a397f2b99d053f433689938c05a", + [ + null, + {} + ] + ], + "test-007.html": [ + "371c5fa851e4cc9015cdf62b1f1bfab90f71ad4f", + [ + null, + {} + ] + ], + "test-010.html": [ + "8e11f739cef27a21fe390d138f874bd7df9a8f67", + [ + null, + {} + ] + ] + } + } + }, + "events": { + "event-dispatch": { + "test-002.html": [ + "663337526a2c51c9b1a94fab37cef7c749f5c6ce", + [ + null, + {} + ] + ], + "test-003.html": [ + "bd81521018357307989c27e0a7544fc3714a128b", + [ + null, + {} + ] ] - ], - "view-timeline-sticky-offscreen-2.html": [ - "2d098dcbe306ddf4e089d50fc4a0bdd408538f77", - [ - null, - {} + }, + "event-retargeting": { + "test-001.html": [ + "4ad3ac5ce9612786d52ca0a9cd018bfc929d542c", + [ + null, + {} + ] + ], + "test-003.html": [ + "23ee9ad723cabf7c810a82f371a1631764a5aaaa", + [ + null, + {} + ] ] - ], - "view-timeline-sticky-offscreen-3.html": [ - "c87dfc4dcb7d155f852e0d1a27cbcd427de27213", + }, + "retargeting-focus-events": { + "test-001.html": [ + "ce21769e3a3136aabb28a4be17b8971cc37e8fc0", + [ + null, + {} + ] + ], + "test-002.html": [ + "9c0eb23ae4c4614b4eb85785954d4e0fd2cf406e", + [ + null, + {} + ] + ], + "test-003.html": [ + "55fdde130742caa50803eff9826aa8169b4065ea", + [ + null, + {} + ] + ] + }, + "retargeting-relatedtarget": { + "test-001.html": [ + "5b0ed3fddd566f032b540881184dbf3ffa5edfd8", + [ + null, + {} + ] + ], + "test-002.html": [ + "3a8ea47e76b2c772bd40f8d1963a14d7690083ff", + [ + null, + {} + ] + ], + "test-003.html": [ + "900a3ac7fe1c63d3290a4aa3926bf269230872f2", + [ + null, + {} + ] + ] + }, + "test-001.html": [ + "b150f282f4e66d50de04d8c72b2292f37f26155b", [ null, {} ] - ], - "view-timeline-sticky-offscreen-4.html": [ - "f6b02ffb2eebfbbf3338f49edc3068282a9949d7", + ] + }, + "html-elements-in-shadow-trees": { + "html-forms": { + "test-001.html": [ + "2783e5f15ef8bf5f4db44d522fdd1b665a3f8048", + [ + null, + {} + ] + ], + "test-002.html": [ + "597d985bee165cf3da7dc95b907e2cb004531ce1", + [ + null, + {} + ] + ], + "test-003.html": [ + "96c10274739899ecb74ef52529263d84aa63df4c", + [ + null, + {} + ] + ] + }, + "inert-html-elements": { + "test-001.html": [ + "f8dd40ea2aeb01853f2e40eecb13689d64eac5f5", + [ + null, + {} + ] + ], + "test-002.html": [ + "397acd83e7e4c23fc8fcee315d2e7dc4d826ff5e", + [ + null, + {} + ] + ] + } + }, + "shadow-trees": { + "upper-boundary-encapsulation": { + "dom-tree-accessors-001.html": [ + "3007fafc546d78b9115f36d2d27e0a43d1c3ab61", + [ + null, + {} + ] + ], + "dom-tree-accessors-002.html": [ + "88a2efc2d30aaf477b9b7ab1647baa7885903c93", + [ + null, + {} + ] + ], + "ownerdocument-001.html": [ + "58c8adc087441b8fb964e9d8952b002c18ac5514", + [ + null, + {} + ] + ], + "ownerdocument-002.html": [ + "3ef53fc5ab58a17b913431abc1b85e80d9b16571", + [ + null, + {} + ] + ], + "selectors-api-001.html": [ + "f3ca2b786f9e12eef17d97fa8dd4aee148f202ef", + [ + null, + {} + ] + ], + "selectors-api-002.html": [ + "6167f57e4e53630fa7ce66bcb0153d905dc8f05d", + [ + null, + {} + ] + ], + "shadow-root-001.html": [ + "97f5c35717813105654ce94589f57a9bc4a58b29", + [ + null, + {} + ] + ], + "test-005.html": [ + "b82a9523a9eeec6c22f41a9e6d9126a222f4201e", + [ + null, + {} + ] + ], + "test-007.html": [ + "0cfe169b441ceab9e681ed4cd63ce7266e82468f", + [ + null, + {} + ] + ], + "test-009.html": [ + "f37f17bc1a3947d70a6086b1427f471ba94e6a73", + [ + null, + {} + ] + ], + "test-011.html": [ + "48ac1c7540ca66230284c1f7cfc4dc17f437d30b", + [ + null, + {} + ] + ], + "window-named-properties-001.html": [ + "6e4cbbd9b7e4d286b9ceb1280175aaf3fe6fb426", + [ + null, + {} + ] + ], + "window-named-properties-002.html": [ + "957e087e86012d2b2b7967389c2140bf715b35a7", + [ + null, + {} + ] + ], + "window-named-properties-003.html": [ + "00d3931266d5db948cd1e20e3c17e8869da25caf", + [ + null, + {} + ] + ] + } + }, + "styles": { + "test-001.html": [ + "d773d248c12c35eaa5609d473cbc2fc010c6a033", [ null, {} ] ], - "view-timeline-sticky-offscreen-5.html": [ - "380c01297e14571cd2a678c2547ddf1374d6a654", + "test-003.html": [ + "b5b2529861c10ec3f88f653c170e5f90c1b1fe30", [ null, {} ] ], - "view-timeline-sticky-offscreen-6.html": [ - "94f0abc9b1e6662931e630c231334d5bff77b082", + "test-005.html": [ + "94dbb551dc00461584dbed522eb3533d25478f52", [ null, {} ] ], - "view-timeline-sticky-offscreen-7.html": [ - "83115249fae7fb1ad263b6c5db4095701051bac9", + "test-008.html": [ + "4b810af1c86bac738e4fcc374e3d144738887cd8", [ null, {} ] ] }, - "svg-graphics-element-001.html": [ - "9b100a0b6420a35e33e130e48f0bfc6abd1c416c", - [ - null, - {} - ] - ], - "svg-graphics-element-002.html": [ - "e173a649efc01b084b88f5a3911a166264874e82", - [ - null, - {} - ] - ], - "svg-graphics-element-003.html": [ - "48e238c8eddc3413f401f66ed776596056ff4237", - [ - null, - {} - ] - ], - "timeline-offset-in-keyframe.html": [ - "1168893854297560262e03c28bdf71580955b8ae", - [ - null, - {} - ] - ], - "unattached-subject-inset.html": [ - "86262db8f88d8930722efaacdfa98690713a9e4d", - [ - null, - {} - ] - ], - "view-timeline-get-current-time-range-name.html": [ - "25e477e1a97acc56bb692abb8375ab05f9b8e9c9", - [ - null, - {} - ] - ], - "view-timeline-get-set-range.html": [ - "94660abcf27b370b35b67471028237a52af1eb27", - [ - null, - {} - ] - ], - "view-timeline-inset.html": [ - "357d8558f94eeb8342942ecb17a3e1a1bf86fa1d", - [ - null, - {} - ] - ], - "view-timeline-missing-subject.html": [ - "01ca0215246bb59e8c7976f68801fb00837869f5", - [ - null, - {} - ] - ], - "view-timeline-on-display-none-element.html": [ - "1cc23fe626ab7ee01f2a36331bb983ba12fe2a93", - [ - null, - {} - ] - ], - "view-timeline-range-large-subject.html": [ - "f87a57584ed7a240315bbd2e07557fc3fecb4156", - [ - null, - {} - ] - ], - "view-timeline-range.html": [ - "5042c6c2a02f670b7f9d5eb3fd4d513540849054", - [ - null, - {} - ] - ], - "view-timeline-root-source.html": [ - "20ac9c54642698b0ade0261a7aa9d2f6b8c23025", - [ - null, - {} - ] - ], - "view-timeline-snapport.html": [ - "5d68d37037a344f4b514e5cd937500abbc66e43c", - [ - null, - {} - ] - ], - "view-timeline-source.tentative.html": [ - "f8aabc8bdd9cc202c94240bdba2f17769d89290e", - [ - null, - {} - ] - ], - "view-timeline-sticky-block.html": [ - "43b717560ddf599fe358cacf80135b9d901f6dfd", - [ - null, - {} - ] - ], - "view-timeline-sticky-inline.html": [ - "4dc8331d9fa675e379a2648d0a2a5fcacce94b89", - [ - null, - {} - ] - ], - "view-timeline-subject-size-changes.html": [ - "ee7ce906783c10c2b5e9b9734f14de906c122542", - [ - null, - {} - ] - ], - "zero-intrinsic-iteration-duration.tentative.html": [ - "4eec5d8f13ab75de299e1efa6eefd9eeaede0d8d", - [ - null, - {} - ] - ] + "user-interaction": { + "active-element": { + "test-001.html": [ + "9d4b026ad810307b02a4814c2a52c1000c69d4fa", + [ + null, + {} + ] + ], + "test-002.html": [ + "af3165afebc31a47cda7163a5d4f240c8d3b0298", + [ + null, + {} + ] + ] + }, + "editing": { + "inheritance-of-content-editable-001.html": [ + "c09832cd7e73749d9a91f14c8850b6f06396c7bd", + [ + null, + {} + ] + ] + }, + "ranges-and-selections": { + "test-001.html": [ + "3a234e8b817855ad08296a700b71d218af955f3a", + [ + null, + {} + ] + ], + "test-002.html": [ + "55cd91e458fc8e44ad59c5a9ed047272f5b79cf1", + [ + null, + {} + ] + ] + } + } } }, - "scroll-to-text-fragment": { - "find-range-from-text-directive.html": [ - "229f082747b4ca32ce5724e2785269789b2d016f", + "shape-detection": { + "detected-boundingBox-read-only.https.html": [ + "dcf379b97a5c08b83c675ac1fb56827a24d110ec", [ null, - { - "testdriver": true, - "timeout": "long" - } + {} ] ], - "force-load-at-top.html": [ - "fe3913dfac453ea899239de6d89a13dd75be2ab6", + "detected-postMessage.https.html": [ + "8066984b26fed38b1bbb2a2ef8e2f12ad385a7a2", + [ + null, + {} + ] + ], + "detection-Blob.https.window.js": [ + "401a9cc72d4513ba57856dc6473c85c31e767098", + [ + "shape-detection/detection-Blob.https.window.html", + {} + ] + ], + "detection-HTMLCanvasElement.https.html": [ + "4773bc8a66102f22a2897c22a93054165402903f", + [ + null, + {} + ] + ], + "detection-HTMLImageElement-empty-src.https.html": [ + "40eee244946231b73f0064f5f2202cecb00b1c6b", + [ + null, + {} + ] + ], + "detection-HTMLImageElement-zero-dimension-image.https.html": [ + "621dd4e23fce2e6171e54644677f86008ca65064", + [ + null, + {} + ] + ], + "detection-HTMLImageElement.https.html": [ + "f3b994c2582941349ef39a0cc5d3ce120e6988fe", + [ + null, + {} + ] + ], + "detection-HTMLVideoElement.https.html": [ + "2ce379bafc125a914101d758914fb9c2a68feea6", + [ + null, + {} + ] + ], + "detection-ImageBitmap-closed.https.window.js": [ + "80cb373f330f5a16fb8d5213031000bbbc0b96bc", + [ + "shape-detection/detection-ImageBitmap-closed.https.window.html", + {} + ] + ], + "detection-ImageBitmap.https.html": [ + "b4302c4a512f571703cf8a3e5cd9b0a363971f0c", + [ + null, + {} + ] + ], + "detection-ImageData-detached.https.html": [ + "b4e31c8656e5ba136a21819ee07934c2508d69a6", + [ + null, + {} + ] + ], + "detection-ImageData.https.html": [ + "330239fdf02d8d9d1c8a1287f68b592e17573d92", [ null, + {} + ] + ], + "detection-ImageDataUint16StorageFormat.https.window.js": [ + "1afe087abf06a2cffdfab46d3dd99f28d31bc7b9", + [ + "shape-detection/detection-ImageDataUint16StorageFormat.https.window.html", { - "testdriver": true, - "timeout": "long" + "script_metadata": [ + [ + "script", + "/shape-detection/resources/shapedetection-helpers.js" + ] + ] } ] ], - "idlharness.window.js": [ - "c39216b581124f599cae99a4871c7a29c03bffb0", + "detection-SVGImageElement.https.window.js": [ + "22f1629eccb1954c0385f3833b744b606749c87b", [ - "scroll-to-text-fragment/idlharness.window.html", + "shape-detection/detection-SVGImageElement.https.window.html", + {} + ] + ], + "detection-VideoFrame.https.window.js": [ + "601c60bcaf87ef370a819b380c5114143781b350", + [ + "shape-detection/detection-VideoFrame.https.window.html", + {} + ] + ], + "detection-getSupportedFormats.https.html": [ + "0b4b223369599407355724344de0a261d4a26423", + [ + null, + {} + ] + ], + "detection-on-worker.https.worker.js": [ + "3981c6fdc8e12839d3aa30206fa16d8af1faf513", + [ + "shape-detection/detection-on-worker.https.worker.html", + {} + ] + ], + "detection-options.https.html": [ + "4b79da2a6e8dc129c367a7f2c3cf3da6832bcc27", + [ + null, + {} + ] + ], + "detection-security-test.https.html": [ + "4d87238dad5d5dfb74ee1d9af0257f8853d038c9", + [ + null, + {} + ] + ], + "detector-same-object.https.html": [ + "bf7c0680412b627b9c8ca5932ffd84e8139eba27", + [ + null, + {} + ] + ], + "idlharness.https.any.js": [ + "33b5f88f75b8052f202394c4f53bcc2770631202", + [ + "shape-detection/idlharness.https.any.html", { "script_metadata": [ + [ + "global", + "window,worker" + ], [ "script", "/resources/WebIDLParser.js" @@ -708391,377 +739255,365 @@ ] ] } - ] - ], - "iframe-scroll.sub.html": [ - "db959ab68dfb33ff96ec1d8706132a83f66c88e0", + ], [ - null, + "shape-detection/idlharness.https.any.serviceworker.html", { - "testdriver": true + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "/resources/WebIDLParser.js" + ], + [ + "script", + "/resources/idlharness.js" + ] + ] + } + ], + [ + "shape-detection/idlharness.https.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "/resources/WebIDLParser.js" + ], + [ + "script", + "/resources/idlharness.js" + ] + ] + } + ], + [ + "shape-detection/idlharness.https.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "/resources/WebIDLParser.js" + ], + [ + "script", + "/resources/idlharness.js" + ] + ] } ] ], - "iframes.sub.html": [ - "eb6594c2839d30717434c63687969da7bec87e7f", + "shapedetection-cross-origin.sub.https.html": [ + "c4e3c3fec79bd0d81ac502a5f7c22f3534f19329", [ null, - { - "timeout": "long" - } + {} ] ], - "non-html-documents.html": [ - "5cec6aee3a2bd62723e2c345b8282b1e31cf6c86", + "single-barcode-detection.https.html": [ + "1f14e35153a5a136446c18bcfd468a4fc184635c", [ null, - { - "testdriver": true - } + {} ] ], - "percent-encoding.html": [ - "1f1794bdae09db3a501479717121d93938e9869a", + "single-face-detection.https.html": [ + "28afdef13642ab86c6e03b933e4eb2159d7c2a4b", [ null, - { - "testdriver": true - } + {} ] ], - "redirects.html": [ - "71bc1be02e65be68eced1ef7e3e492d1bff6cffd", + "single-text-detection.https.html": [ + "829e8ce6d61b76f8fec5c0648ca332bbb0ee6700", [ null, - { - "testdriver": true, - "timeout": "long" - } + {} + ] + ] + }, + "shared-storage": { + "add-module-cross-origin-script.tentative.https.sub.html": [ + "6ac73bdeddca7f63e8a4ea5142e50ab2f0dfd690", + [ + null, + {} ] ], - "same-document-tests.html": [ - "85db2de0a227c694d2168e49dfb7f9cffb5d9eff", + "add-module-or-create-worklet-with-data-url.tentative.https.sub.html": [ + "548165073342e0035ecf503a396f55bace921235", [ null, {} ] ], - "scroll-to-text-fragment-api.html": [ - "d644b6b64fb530fef800c5abaaf91835eda9aa83", + "add-module.tentative.https.sub.html": [ + "33ff70d1145e32ece4e083239c7b25c36fc2ed48", [ null, - { - "testdriver": true - } + {} ] ], - "scroll-to-text-fragment-same-doc.html": [ - "378e373575ea27d488dc168b685295267f4c6204", + "append-exceed-former-entry-limit.tentative.https.html": [ + "921b9d45733a559d082056a64706238b429a565c", [ null, { - "testdriver": true + "timeout": "long" } ] ], - "scroll-to-text-fragment-security.sub.html": [ - "5bcafed5ddbf48e193fa012afd0de7dbf4f583bc", + "blob-module-script-url-invalid-mime-type.tentative.https.sub.html": [ + "116facbcd5f558b3d186878a3247ba81ea9c7c4e", [ null, - { - "testdriver": true - } + {} ] ], - "scroll-to-text-fragment.html": [ - "73931d4b0e617dcf07fd50f90c15a83dc664d277", + "blob-module-script-url.tentative.https.sub.html": [ + "53e47a0c8743793788f8ebb406564c068ace2514", [ null, - { - "testdriver": true, - "timeout": "long" - } + {} ] - ] - }, - "secure-contexts": { - "basic-dedicated-worker.html": [ - "043b5b8dd64a418286da5d46610a0aa459d9a223", + ], + "combined-setters-and-operations.tentative.https.sub.html": [ + "2c544b9b8e63f7a4c26d36ceea474dc96ac52ca0", [ null, {} ] ], - "basic-dedicated-worker.https.html": [ - "17c9345146faf3a2ad57f91e494f8905b6491c94", + "cross-origin-create-worklet-credentials-include.tentative.https.sub.html": [ + "3b73f92d3117595bdd2846f55b5e87684522fb79", [ null, {} ] ], - "basic-popup-and-iframe-tests.html": [ - "ab3c44367875022ff4925f1eb26c92c35ab350b4", + "cross-origin-create-worklet-credentials-omit.tentative.https.sub.html": [ + "4f23e2f8de3226f5f268b07e4079118595f3081f", [ null, {} ] ], - "basic-popup-and-iframe-tests.https.html": [ - "a9c7f3c883d915409a93ead8fb72fa890f323efb", + "cross-origin-create-worklet-credentials-same-origin.tentative.https.sub.html": [ + "bda5da10dbecb62a6e72dee199402b2cea838b6a", [ null, {} ] ], - "basic-shared-worker.html": [ - "7f421b0523ba78e8966d269554fed59f7bc0a675", + "cross-origin-create-worklet-data-origin-option.tentative.https.sub.html": [ + "8242f3d10835ca4066b7b7c7529d0b454354dae3", [ null, {} ] ], - "basic-shared-worker.https.html": [ - "7c43cd965f66de62f082b2d2dd8cd552a125ac6e", + "cross-origin-create-worklet-failure-missing-access-control-allow-credentials.tentative.https.sub.html": [ + "49ffe8e84264ce6f34469fdf3ce5a45bc3f5637e", [ null, {} ] ], - "shared-worker-insecure-first.https.html": [ - "00db9517d01ea6e4d8d680211e5a9f0488c51283", + "cross-origin-create-worklet-failure-missing-access-control-allow-origin.tentative.https.sub.html": [ + "e3154fd191e512e01cae6d4a8b1686d8f07c6a00", [ null, {} ] ], - "shared-worker-secure-first.https.html": [ - "ce97a628a0edc4cc59f48ce9447201fcbaeb4048", + "cross-origin-create-worklet-false-shared-storage-cross-origin-worklet-allowed.tentative.https.sub.html": [ + "0b8f8b9e23d77f874375bc6eb35dfdb9d8c52e9b", [ null, {} ] - ] - }, - "secure-payment-confirmation": { - "authentication-accepted.https.html": [ - "b9417b88e08d3fcd92661de849fd2597a3857298", + ], + "cross-origin-create-worklet-missing-shared-storage-cross-origin-worklet-allowed.tentative.https.sub.html": [ + "fe7333a6360bef0a25bdfeb0e93c231df4f210e5", [ null, - { - "testdriver": true - } + {} ] ], - "authentication-cannot-bypass-spc.https.html": [ - "2125f644c7ea65a1264d47b92fe03532ae9aaf69", + "cross-origin-worklet-in-sandboxed-frame.tentative.https.sub.html": [ + "f44a356bf83c842ac0c665b0e4e39159538eda7d", [ null, - { - "testdriver": true - } + {} ] ], - "authentication-cross-origin.sub.https.html": [ - "bf03d4c11cd304441fa8f6825156bdcbedf556ad", + "cross-origin-worklet-select-url-and-verify-data-origin.tentative.https.sub.html": [ + "bc78433d8e90602e8f4b93e85df54012dcc19447", [ null, - { - "testdriver": true - } + {} ] ], - "authentication-icon-data-url.https.html": [ - "cd820d84c32116a400f76f059af97a0241cfcc37", + "embedder-context.tentative.https.sub.html": [ + "44f45a7643111f169be1a1b8935720325103099e", [ null, - { - "testdriver": true - } + {} ] ], - "authentication-in-iframe.sub.https.html": [ - "4402e2825db2f65d4ec8e486c4138ddc234f63fd", + "insecure-context.tentative.http.html": [ + "7ddf02f861aaba92db75ac47c85dfcab4a7c8861", [ null, - { - "testdriver": true - } + {} ] ], - "authentication-invalid-icon.https.html": [ - "988d867462834bf21401f00050fbdee4595b619d", + "run-operation-in-detached-frame.tentative.https.sub.html": [ + "a7ef103d00fe8f707043be171acfc4d206fee749", [ null, - { - "testdriver": true - } + {} ] ], - "authentication-optout.https.html": [ - "a69e0a456a7558825a451c1cd600ab9843fca38f", + "run-operation-keep-alive.tentative.https.sub.html": [ + "2756805485cdfaaba818561c04759c913b176024", [ null, - { - "testdriver": true - } + {} ] ], - "authentication-rejected.https.html": [ - "7c84abc9e05d30056ffee9006723f82076c4f52e", + "run-operation.tentative.https.sub.html": [ + "1ef0d25b48f152815046b38a6ba821a8a83e5ce9", [ null, - { - "testdriver": true - } + {} ] ], - "authentication-requires-user-activation.https.html": [ - "dd6a7376967bf5c8ce52d7f9473f767651251c97", + "run-url-selection-operation-without-add-module.tentative.https.sub.html": [ + "bead580706962f6e78146ff06eb87a8dc4d8cb7d", [ null, - { - "testdriver": true - } + {} ] ], - "constructor-validate-payment-method-data.https.html": [ - "1ece6318b5d1229a228499faab34ffc8af0b0683", + "run-url-selection-operation.tentative.https.sub.html": [ + "01cb9fdd3965df3167aea2e797577ffc4f96a68f", [ null, - { - "timeout": "long" - } + {} ] ], - "constructor.https.html": [ - "e42f8d47c7febaeee589993e98d1822140137a99", + "same-origin-add-module-credentials-include.tentative.https.sub.html": [ + "a9082661a8b6cee451e7258b154631e2d1f1831d", [ null, - { - "timeout": "long" - } + {} ] ], - "enrollment-in-iframe.sub.https.html": [ - "9a0f2093a1bc5569d00f65807096dfc51ce02c2b", + "same-origin-add-module-credentials-omit.tentative.https.sub.html": [ + "a5945725c010950aaacf5e252ffc4ebdb096158f", [ null, - { - "testdriver": true - } + {} ] ], - "enrollment.https.html": [ - "b93822c7f18e5d265499ade28a254cf85cf5fe1a", + "same-origin-add-module-credentials-same-origin.tentative.https.sub.html": [ + "aea76264384afffe37da04e919e843d554a87637", [ null, - { - "testdriver": true, - "timeout": "long" - } + {} ] - ] - }, - "selection": { - "Document-open.html": [ - "9e3cb28124c0d65f61d1e71672c2429a3b64a792", + ], + "same-origin-create-worklet-credentials-include.tentative.https.sub.html": [ + "2e1d9cf723562416844c1ee550073b7bac4ee2d7", [ null, {} ] ], - "addRange-00.html": [ - "7f73f2a3a3a459758cae45a0d14024ba901bca9c", + "same-origin-create-worklet-credentials-omit.tentative.https.sub.html": [ + "ef90c02d6434a6b472e618e3f3d95ad7e4d08775", [ null, - { - "timeout": "long" - } + {} ] ], - "addRange-04.html": [ - "b9598a4b85ba6b3a4bea17e3ab8b98e4966cfd05", + "same-origin-create-worklet-credentials-same-origin.tentative.https.sub.html": [ + "6d9fd7c1362a06930df2f71d3c2fbd193e2746d4", [ null, - { - "timeout": "long" - } + {} ] ], - "addRange-08.html": [ - "79e8ea645138f3f29fbd9e4f0fd542bb48d6e6b4", + "same-origin-create-worklet-data-origin-option.tentative.https.sub.html": [ + "c84246f65b1c182174fcf515818033a2ec1118ab", [ null, - { - "timeout": "long" - } + {} ] ], - "addRange-12.html": [ - "02d4f6d1f59e889d5c5456cb786cbee199fd952c", + "select-url-keep-alive.tentative.https.sub.html": [ + "f3755538b9d4b23e026fec85c161cb730531d4dc", [ null, - { - "timeout": "long" - } + {} ] ], - "addRange-16.html": [ - "295b35f01b5d005b953aa168733e614d836c6d44", + "select-url-on-shared-storage-and-worklet-object-successively.tentative.https.sub.html": [ + "5b920ae6809619c70f15c9c70a4962ad194cc903", [ null, - { - "timeout": "long" - } + {} ] ], - "addRange-20.html": [ - "66ac5aec0d4b4a7f82028423a98cea1f5214929d", + "select-url-on-two-worklets.tentative.https.sub.html": [ + "feac45797dc9bc5940e41870ef888cc646fd0ef9", [ null, - { - "timeout": "long" - } + {} ] ], - "addRange-24.html": [ - "9804e1d908b8bd592e33778e4d6ede96f3defa7e", + "select-url-permissions-policy-default.tentative.https.sub.html": [ + "6bb6dde4a07681dbc7bfd44a23ca037f4a9795bd", [ null, - { - "timeout": "long" - } + {} ] ], - "addRange-28.html": [ - "784002a336102436471cd714bd69c3f63f406103", + "select-url-permissions-policy-none.tentative.https.sub.html": [ + "caaa1285e7649853056b909cccfb80f4da970fb3", [ null, - { - "timeout": "long" - } + {} ] ], - "addRange-32.html": [ - "d599ec885f5cd2b6db25c73dcf38eb7cbc0b72c8", + "select-url-permissions-policy-self.tentative.https.sub.html": [ + "86414c2c9daacc98e2d3fa001d61969ca4716e91", [ null, - { - "timeout": "long" - } + {} ] ], - "addRange-36.html": [ - "0dfe1b7a58b144f2bff07ba250d77b6a21f97075", + "select-url-report-event.tentative.https.sub.html": [ + "b2ad2d1b2a622c4879effd7dc9ffbd156b627e34", [ null, - { - "timeout": "long" - } + {} ] ], - "addRange-40.html": [ - "8df437c84cf53a4ed20af22d66a237d5459c2f4e", + "set-exceed-former-entry-limit.tentative.https.html": [ + "b78abbf1efd17711d2bffe641b83266c8f862e14", [ null, { @@ -708769,527 +739621,554 @@ } ] ], - "addRange-44.html": [ - "37c1a83df38fca70e08a32197699805b0a5ac226", + "setters-long-string.tentative.https.sub.html": [ + "69b66a53a0d0655abb0d0f13273a9091ba301014", [ null, - { - "timeout": "long" - } + {} ] ], - "addRange-48.html": [ - "e219bc66e1e4f418c3392aac452f3d48b355b38e", + "setters.tentative.https.sub.html": [ + "891f8a7acb56ca9c2e5ee69f731674244c340a2b", [ null, - { - "timeout": "long" - } + {} ] ], - "addRange-52.html": [ - "0f687a6e3a5a0fecc647a4e9d45d694f4b0c9b34", + "shared-storage-in-sandboxed-iframe.tentative.https.html": [ + "c0accefc4971b4d7dab16ccab4cbafe6902414d8", [ null, - { - "timeout": "long" - } + {} ] ], - "addRange-56.html": [ - "6313f8969e1418ae240796d36cac96d0ce87ca47", + "shared-storage-permissions-policy-default.tentative.https.sub.html": [ + "a0560765414af3fceec3eaed8fda053b625babce", [ null, - { - "timeout": "long" - } + {} ] ], - "addRange.htm": [ - "4feb69f8486e0f856b6b11ca51f2ad1d00acd758", + "shared-storage-permissions-policy-none.tentative.https.sub.html": [ + "e23174d6b96037b9d7f23c9556b0845fc41611cf", [ null, {} ] ], - "addRange.tentative.html": [ - "28e3b675d393caef32db36c4f89b757d6ba2b04a", + "shared-storage-permissions-policy-self.tentative.https.sub.html": [ + "e976be94335d6da97628eb1e3d62183d386be79c", [ null, {} ] ], - "anonymous": { - "details-ancestor.html": [ - "b0adfa68907044124e626d2871297b65eac4d35a", - [ - null, - { - "testdriver": true - } - ] - ], - "details-mutate.html": [ - "3cd547511251ec80d82656a962b1ec3271423f9f", - [ - null, - { - "testdriver": true - } - ] + "shared-storage-writable-clear.tentative.https.sub.html": [ + "2d606d6bc17a3340b2124a04d831659e94bb1519", + [ + null, + {} ] - }, - "bidi": { - "modify.tentative.html": [ - "6029cf423a120c41fc6e4aa45bca728989bb8a02", - [ - null, - {} - ] + ], + "shared-storage-writable-delete.tentative.https.sub.html": [ + "fc7f2fb90ee06411f55ecb8c3bf8da976bc4f628", + [ + null, + {} ] - }, - "caret": { - "empty-elements.html": [ - "328188c957bd738af419d54e4cd5c741cecc827f", - [ - null, - {} - ] - ], - "move-around-contenteditable-false.html": [ - "256804f17a774aa66b2da877d59e586b0648b839", - [ - null, - { - "testdriver": true - } - ] + ], + "shared-storage-writable-fetch-request-for-data-url.tentative.https.sub.html": [ + "51283579d9210adf1866545ccc5bdbd5590fe7f9", + [ + null, + {} ] - }, - "collapse-00.html": [ - "6adaca4002dc7b4e103e72c75e8f44b0ffeefd70", + ], + "shared-storage-writable-fetch-request-in-data-url.tentative.https.sub.html": [ + "1ebfdbc96f8db1c0a6d0b0359f89b7f48cb88d30", [ null, - { - "timeout": "long" - } + {} ] ], - "collapse-15.html": [ - "377e5044343c3b3ed524267abcde79158db4a5ef", + "shared-storage-writable-fetch-request-in-sandboxed-frame.tentative.https.html": [ + "cb0f8fb7c81ef820cd7ac662dea1950e0b6ad251", [ null, - { - "timeout": "long" - } + {} ] ], - "collapse-30.html": [ - "376633d9103e2be1d455986a5ebe85cb4f6c1352", + "shared-storage-writable-forbidden-header-tentative.https.html": [ + "896fb7924040459069b32e3c9918d88756608fe1", [ null, - { - "timeout": "long" - } + {} ] ], - "collapse-45.html": [ - "28eee4eb79781751351ddfe489cf39d352a42ac3", + "shared-storage-writable-iframe-content-attribute.tentative.https.sub.html": [ + "f27c8548cb14cd103ebcacae5fb87d427ffc8d59", [ null, - { - "timeout": "long" - } + {} ] ], - "collapse.htm": [ - "78fb779c4fd0ebc6f6c73f2d6c1e196a7e406816", + "shared-storage-writable-iframe-idl-attribute-included.tentative.https.sub.html": [ + "2947ea51e0ef537009b77017d041797c02f8c43b", [ null, {} ] ], - "collapseToStartEnd.html": [ - "c2bba3af18958d75a04dba116d2830d35ef803a8", + "shared-storage-writable-iframe-idl-attribute-not-included.tentative.https.sub.html": [ + "13a45a275be7c40cb1a89c59419e0cc51c639ee1", [ null, {} ] ], - "contenteditable": { - "cefalse-on-boundaries.html": [ - "945058dfc3895a309d7840257d4521e97b8313a5", - [ - null, - {} - ] - ], - "collapse.html": [ - "6081d05516729dbef483f6bf2b966b117416fa8d", - [ - null, - {} - ] - ], - "initial-selection-on-focus.tentative.html": [ - "fcaf70d877f9b20baed20730df99cb60946e974b", - [ - "selection/contenteditable/initial-selection-on-focus.tentative.html?div", - {} - ], - [ - "selection/contenteditable/initial-selection-on-focus.tentative.html?span", - {} - ] - ], - "modify.tentative.html": [ - "a3afd52ea2ebe54cb2c296b953573813392f6bbe", - [ - null, - {} - ] - ], - "modifying-selection-with-non-primary-mouse-button.tentative.html": [ - "cb2e44295a9405e8a247bcc0aa9760e42a0b8286", - [ - "selection/contenteditable/modifying-selection-with-non-primary-mouse-button.tentative.html?middle", - { - "testdriver": true - } - ], - [ - "selection/contenteditable/modifying-selection-with-non-primary-mouse-button.tentative.html?secondary", - { - "testdriver": true - } - ] - ], - "modifying-selection-with-primary-mouse-button.tentative.html": [ - "57586a60602836e94da2c50f6bf7257d8c9e4192", - [ - null, - { - "testdriver": true - } - ] + "shared-storage-writable-iframe-in-fenced.tentative.https.sub.html": [ + "e3a9803f0162bfad782987d1c7eafd12bbecc82b", + [ + null, + {} ] - }, - "deleteFromDocument.html": [ - "b7e036009f8cb24a4a92ea5bd6480a4fd6eb5472", + ], + "shared-storage-writable-iframe-request-in-data-url.tentative.https.sub.html": [ + "1833e842b00a94cd7079a5cabca6057053acc9b1", [ null, {} ] ], - "drag-disabled-textarea-shadow-dom.html": [ - "9270cfc5c6beaf428970ae5dec20bbc8e5ddb0c7", + "shared-storage-writable-iframe-request-in-sandboxed-frame.tentative.https.html": [ + "d2d07fcc330019b7eb593efc3a8bc1201ce61124", [ null, - { - "testdriver": true - } + {} ] ], - "extend-00.html": [ - "8943524878fb4fd063ba0b863987457514b24ef2", + "shared-storage-writable-img-content-attribute.tentative.https.sub.html": [ + "5bce34d91a97c34d1a57f21cc4e27aadc55a91c1", [ null, - { - "timeout": "long" - } + {} ] ], - "extend-20.html": [ - "b5ca161d98cc092f0a49897c0139b4db0a19baec", + "shared-storage-writable-img-idl-attribute-included-bytes.tentative.https.sub.html": [ + "154cd5ba48e30a6df1c8459e4b7ea13148045a41", [ null, - { - "timeout": "long" - } + {} ] ], - "extend-40.html": [ - "f0b78d69735de9846d23de2e0b7a3c1dd54c0016", + "shared-storage-writable-img-idl-attribute-included.tentative.https.sub.html": [ + "65d8ee22d769140064d3e789cf451bcf220c1e76", [ null, - { - "timeout": "long" - } + {} ] ], - "extend-exception.html": [ - "67e880fa1c0941673ece95813075e1babc0cf304", + "shared-storage-writable-img-idl-attribute-not-included.tentative.https.sub.html": [ + "c35a29fb52ecaba237c1e4bb95edfbbb9d0412df", [ null, {} ] ], - "getRangeAt.html": [ - "a84ad46f225323585e03974e275b3d037a344446", + "shared-storage-writable-img-request-in-data-url.tentative.https.sub.html": [ + "75d6b514a82c29c07fb591a35d186ddc10a5e243", [ null, {} ] ], - "getSelection.html": [ - "ea119f2fc40c11884f7602a685c1094282884214", + "shared-storage-writable-img-request-in-sandboxed-frame.tentative.https.html": [ + "8e33c68e8ca0cfad732d060ee862aa96f03ca4fe", [ null, {} ] ], - "idlharness.window.js": [ - "543fcb3eff5bb4fd0c51c7e4cc1e5338a0b74cbc", + "shared-storage-writable-insecure-context.tentative.http.sub.html": [ + "debb6cf9c56fb4cda8e72293e0de4b533648c845", [ - "selection/idlharness.window.html", - { - "script_metadata": [ - [ - "script", - "/resources/WebIDLParser.js" - ], - [ - "script", - "/resources/idlharness.js" - ] - ] - } + null, + {} ] ], - "isCollapsed.html": [ - "819a3e297a3cf22f55e407d39f4d23d27fb3547a", + "shared-storage-writable-multi-redirect.tentative.https.sub.html": [ + "137b8f77b2fa25f00b9ba183a6c2e2bf7ef79fa0", [ null, {} ] ], - "modify-extend-word-trailing-inline-block.tentative.html": [ - "1eaa6ec68d2941a5ea9ab20fab92038dacbe937f", + "shared-storage-writable-permissions-policy-default.tentative.https.sub.html": [ + "6dc2435b9346c20fb7dbc7a4302b95fad500816a", [ null, {} ] ], - "modify-line-flex-column.tentative.html": [ - "984bb81913ac95dd2675fdaf40a741756a4cf215", + "shared-storage-writable-permissions-policy-none.tentative.https.sub.html": [ + "1a1e4076ca21d3aa90b378ef252d12758af61357", [ null, {} ] ], - "modify-line-flex-row.tentative.html": [ - "28b22eba03b7ffe75b5f1655fd375e30cbae41d7", + "shared-storage-writable-permissions-policy-self.tentative.https.sub.html": [ + "50d5c65cd55adb4ec95392ad126b9fc9918b864a", [ null, {} ] ], - "modify-line-grid-basic.tentative.html": [ - "faadd93c6447d7bb46ac5d06e581d5e743aafcdf", + "shared-storage-writable-service-worker-fetch.tentative.https.sub.html": [ + "ea7af527b540d303cf3e41c7afd8d88071bcd293", [ null, {} ] ], - "modify.tentative.html": [ - "37231571eddac45a9cce78cddff52b69b2af9ff6", + "shared-storage-writable-service-worker-iframe.tentative.https.sub.html": [ + "9eb2820145ea31c250e4a5003c0d5974941d71ca", [ null, {} ] ], - "removeAllRanges.html": [ - "026280d6b8c252c8c9486977d31a32d6d211f701", + "shared-storage-writable-service-worker-img.tentative.https.sub.html": [ + "6d481559ee75e96955cc8f83c464200e4c4a9039", [ null, {} ] ], - "removeRange.html": [ - "8dcd6d2c074325a47fab80661b91e68cf40c4916", + "shared-storage-writable-setters.tentative.https.sub.html": [ + "066bf174de0a98971c83a0d07ca1f474b35ff39d", [ null, {} ] ], - "script-and-style-elements.html": [ - "b75665917d89f8f606f71c8abb02574df2e879a2", + "verify-get-undefined.tentative.https.sub.html": [ + "501998bf613687b2ae0b588cd114293001d84990", + [ + null, + {} + ] + ] + }, + "shared-storage-selecturl-limit": { + "run-url-selection-operation-limit-multiple-sites.tentative.https.sub.html": [ + "bc27ccae485173901bd4fb8609d6d730507a6282", [ null, {} ] ], - "select-end-of-line-image.tentative.html": [ - "572296c4439572d66095e4d6d98c84739f50c504", + "run-url-selection-operation-limit.tentative.https.sub.html": [ + "5989aa160bc956de2c2d30544482c88939a6a1e3", [ null, - { - "testdriver": true - } + {} ] ], - "selectAllChildren.html": [ - "9a472a4b2fe5ef4b0e5283e3d957ceefef387ff1", + "select-url-limit-multiple-worklets.tentative.https.sub.html": [ + "62cbe7a90ffa04fffe34280d37a4add6409a8365", [ null, - { - "timeout": "long" - } + {} + ] + ] + }, + "signed-exchange": { + "check-cert-request.tentative.html": [ + "b1418e929083bf1cd8c591bb42e13a35b0b47a6f", + [ + null, + {} ] ], - "setBaseAndExtent.html": [ - "13108bb506d2ff38d9aef7d1a23eb087360c7ee8", + "fallback-to-another-sxg.tentative.html": [ + "8ccba86bd79d42a0d1eb77beb964487e62566375", [ null, {} ] ], - "stringifier.tentative.html": [ - "f4cae7eb5d4bd2cce73db1dc1b1da6ce5f753cef", + "nested-sxg.tentative.html": [ + "f1167f919ab39a85e38778c39fc64305eecd4921", [ null, {} ] ], - "textcontrols": { - "focus.html": [ - "8c2e0b55914e765bb8b56154aa6638dd0d9f863f", + "reporting": { + "sxg-reporting-navigation-cert_fetch_error-downgraded.tentative.html": [ + "ce20c4726e9197c12064ed159ca36f83207bd9e9", + [ + null, + {} + ] + ], + "sxg-reporting-navigation-cert_fetch_error.tentative.html": [ + "15a7176e749b85a8d7f84b73e86075dc22754a61", + [ + null, + {} + ] + ], + "sxg-reporting-navigation-cert_parse_error-downgraded.tentative.html": [ + "e6cdad035e1956a30d24033dafa4ae355f628017", + [ + null, + {} + ] + ], + "sxg-reporting-navigation-cert_parse_error.tentative.html": [ + "a0cc607bf5f5e6962ab8f52f76ef239c632d1a4c", + [ + null, + {} + ] + ], + "sxg-reporting-navigation-cert_verification_error-downgraded.tentative.html": [ + "d3ad4204f2e56d69df49795d36de22ae2ca4bdaa", + [ + null, + {} + ] + ], + "sxg-reporting-navigation-cert_verification_error.tentative.html": [ + "04fd0e785c07bae64458d178a2b7e491f3451542", + [ + null, + {} + ] + ], + "sxg-reporting-navigation-failed-zero-success-fraction.tentative.html": [ + "a92735f714a5f6dcb4756e0c26b2582c2d47c70f", + [ + null, + {} + ] + ], + "sxg-reporting-navigation-invalid_integrity_header.tentative.html": [ + "3e00d9dbe369e1cf1a9648b049cf301228f8efea", + [ + null, + {} + ] + ], + "sxg-reporting-navigation-mi_error.tentative.html": [ + "b6d7ba3b1add960de95409cd71235d47582ecd4b", [ null, { - "testdriver": true + "timeout": "long" } ] ], - "onselectionchange-content-attribute.html": [ - "3120b3bff58f9978e7993534e310e01c51a34ca6", + "sxg-reporting-navigation-ok-no-referrer.tentative.html": [ + "b6cadbca505e50a3faf165f424decce15dc59e00", [ null, {} ] ], - "selectionchange-bubble.html": [ - "834b32bdd3b8fd63d18d3a0b7cad47b8473506c4", + "sxg-reporting-navigation-ok-origin-referrer.tentative.html": [ + "351ad927820eee342a3a993d326e2ec277c8738b", [ null, {} ] ], - "selectionchange.html": [ - "2b43cfe44b9d845251acdf1dec3e8f83060bf644", + "sxg-reporting-navigation-ok.tentative.html": [ + "0afa626d09dc02c55b42673ddd30a36fa887df33", [ null, {} ] - ] - }, - "toString-ff-bug-001.html": [ - "985be73b5ca2baba2e8f85d12b806805dbf556ff", - [ - null, - {} - ] - ], - "type.html": [ - "7be8ba61bc20cd2efe262de6b68a43fd3310b59e", - [ - null, - {} - ] - ], - "user-select-on-input-and-contenteditable.html": [ - "6cbde6914b687596fe179bf525641ee2cb6c8026", - [ - null, - { - "testdriver": true, - "timeout": "long" - } - ] - ] - }, - "serial": { - "getPorts": { - "reject_opaque_origin.https.html": [ - "b2f630a3197deb0e80f01c28dafe3e8fd72971c9", + ], + "sxg-reporting-navigation-parse_error.tentative.html": [ + "95cd140cea9e627879b87507f3731024eb99d1d9", + [ + null, + { + "timeout": "long" + } + ] + ], + "sxg-reporting-navigation-signature_verification_error-downgraded.tentative.html": [ + "2679ae5a6c7416ee6fc9382a7debf7732babe748", [ null, {} ] ], - "sandboxed_iframe.https.window.js": [ - "0a99f75aae6f19956880bc43b0909420eba2da7d", + "sxg-reporting-navigation-signature_verification_error.tentative.html": [ + "f3e0b8f0e6e1d8f351febc8ca109e1e07bdb293b", [ - "serial/getPorts/sandboxed_iframe.https.window.html", + null, + {} + ] + ], + "sxg-reporting-prefetch-cert_fetch_error-downgraded.tentative.html": [ + "82b5d8f11ee066157ee1fb4b8d43448d93c77239", + [ + null, + {} + ] + ], + "sxg-reporting-prefetch-cert_fetch_error.tentative.html": [ + "32e3cad1b011365c00b61c86be5522143bc6749f", + [ + null, + {} + ] + ], + "sxg-reporting-prefetch-cert_parse_error-downgraded.tentative.html": [ + "bbad6032e2ef821f3e73bc8cb116424f938d614b", + [ + null, + {} + ] + ], + "sxg-reporting-prefetch-cert_parse_error.tentative.html": [ + "a6ea9e4eedf47fef13eadeb37ba8bca9a9d7cd87", + [ + null, + {} + ] + ], + "sxg-reporting-prefetch-cert_verification_error-downgraded.tentative.html": [ + "b25bf491da3cb46832d99229e3b52ce6669f33a6", + [ + null, + {} + ] + ], + "sxg-reporting-prefetch-cert_verification_error.tentative.html": [ + "f31a4c49d4fd3727f908d40c77c201bdb053ac23", + [ + null, + {} + ] + ], + "sxg-reporting-prefetch-failed-zero-success-feaction.tentative.html": [ + "faa02bc0eba5e48774ef771f9a88bc3eb943e34e", + [ + null, + {} + ] + ], + "sxg-reporting-prefetch-invalid_integrity_header.tentative.html": [ + "990b4a387e43ca90f5a80877720c94d50ab46caf", + [ + null, + {} + ] + ], + "sxg-reporting-prefetch-mi_error.tentative.html": [ + "f265a9205872b6cfe3ef0f0e6a267f870f721092", + [ + null, + {} + ] + ], + "sxg-reporting-prefetch-ok.tentative.html": [ + "e3c6a0eeead55a9a63ae8ef2c066c31ee30b9087", + [ + null, + {} + ] + ], + "sxg-reporting-prefetch-parse_error.tentative.html": [ + "2e2b860e22f7ffd626f074702f9d351041c4fa1f", + [ + null, + {} + ] + ], + "sxg-reporting-prefetch-signature_verification_error-downgraded.tentative.html": [ + "fbeaeecff94093e581414c3c74b055b9c4cde1f5", + [ + null, + {} + ] + ], + "sxg-reporting-prefetch-signature_verification_error.tentative.html": [ + "f3805ad6932506114517fa356a0c876999319412", + [ + null, {} ] ] }, - "idlharness.https.any.js": [ - "b240da933ade1595d3b1965c3ca6613c91c8318f", - [ - "serial/idlharness.https.any.html", - { - "script_metadata": [ - [ - "script", - "/resources/WebIDLParser.js" - ], - [ - "script", - "/resources/idlharness.js" - ] - ] - } + "service-workers": { + "sxg-sw-register-after-fallback.tentative.https.html": [ + "2b76a70dc9feb2fe446fa309202494b172dcb04e", + [ + null, + {} + ] ], - [ - "serial/idlharness.https.any.worker.html", - { - "script_metadata": [ - [ - "script", - "/resources/WebIDLParser.js" - ], - [ - "script", - "/resources/idlharness.js" - ] - ] - } + "sxg-sw-register.tentative.https.html": [ + "ad21ebb20d44c846bd99cbffeb510c8af2bb81ea", + [ + null, + {} + ] ] - ], - "requestPort": { - "reject_opaque_origin.https.html": [ - "ade8ae7392eccd9782f3b12f79ae71396de08913", + }, + "subresource": { + "sxg-subresource-header-integrity-mismatch.tentative.html": [ + "a7f42d94616aefab92903fc08d75dd479bfc3e6f", [ null, {} ] ], - "sandboxed_iframe.https.window.js": [ - "f6d7abad103bd5515cfba8830d4967e9e302e625", + "sxg-subresource.tentative.html": [ + "8ca12b4cbcf3c0950c04deed96e7174247444a25", [ - "serial/requestPort/sandboxed_iframe.https.window.html", + null, {} ] ] }, - "serial-allowed-by-permissions-policy-attribute-redirect-on-load.https.sub.html": [ - "ac278ff0cf0f92dd2547851771e5cda7cc15ea4b", + "sxg-data-cert-url.tentative.html": [ + "0d6bd5602e0ca0e6610b9fe2fb48b94fd5821bfd", [ null, {} ] ], - "serial-allowed-by-permissions-policy-attribute.https.sub.html": [ - "02560b180f6ae61761913324fed9f973a76b79f2", + "sxg-double-prefetch.tentative.html": [ + "d682741744fed929bee8e62fbae4857a4bfbf1d5", [ null, {} ] ], - "serial-allowed-by-permissions-policy.https.sub.html": [ - "1be8eb979f8217db5683e8d2c780c183c2a466e5", + "sxg-fallback-with-fragment.tentative.html": [ + "aae8fa8bd1954e790001e962094a810cff49444c", + [ + null, + {} + ] + ], + "sxg-hsts.tentative.html": [ + "6024e2879e7f0669ddd6e0ea40689ebd8cfbefaa", + [ + null, + {} + ] + ], + "sxg-inner-url-bom.tentative.html": [ + "be2d7e5022f7ed4d71b8879a88793e28c1cd69f8", [ null, { @@ -709297,3242 +740176,1242 @@ } ] ], - "serial-default-permissions-policy.https.sub.html": [ - "e3908d921521cf2419f66db8dc78bea6e044789e", + "sxg-invalid-utf8-inner-url.tentative.html": [ + "7512d639e88ab6c4c5a33e8c4417c016174fe175", + [ + null, + { + "timeout": "long" + } + ] + ], + "sxg-invalid-validity-url.tentative.html": [ + "bb027b1669889b2c6e5fbe51261e2c8cae662ae9", [ null, {} ] ], - "serial-disabled-by-permissions-policy.https.sub.html": [ - "251bf84f475d7d61214bc6a05a0c24456c862311", + "sxg-location-fragment.tentative.html": [ + "92e1efbc20cd337241e42aad1af7c4742a3df2cc", [ null, {} ] ], - "serialPort-disconnect-during-abort.https.any.js": [ - "6df1513c5cb18ba4af208cf8948c6dbe8cb0ac0b", + "sxg-location.tentative.html": [ + "17ca0768d6f8e0e1a4bccf707d8e34c6dbfdfc8c", [ - "serial/serialPort-disconnect-during-abort.https.any.html", - { - "script_metadata": [ - [ - "script", - "/resources/test-only-api.js" - ], - [ - "script", - "/serial/resources/common.js" - ], - [ - "script", - "resources/automation.js" - ] - ] - } - ], + null, + {} + ] + ], + "sxg-merkle-integrity-error.tentative.html": [ + "a5c4a2f7eeca9b43b76669b2f19550e62d379b49", [ - "serial/serialPort-disconnect-during-abort.https.any.worker.html", + null, { - "script_metadata": [ - [ - "script", - "/resources/test-only-api.js" - ], - [ - "script", - "/serial/resources/common.js" - ], - [ - "script", - "resources/automation.js" - ] - ] + "timeout": "long" } ] ], - "serialPort_close.https.any.js": [ - "ec949a9917699d343192ff6b69ba999ba39a9787", + "sxg-navigation-timing.tentative.html": [ + "b3f088241f8e2cf3467752d556d8cd58d30d5b07", [ - "serial/serialPort_close.https.any.html", - { - "script_metadata": [ - [ - "script", - "/resources/test-only-api.js" - ], - [ - "script", - "/serial/resources/common.js" - ], - [ - "script", - "resources/automation.js" - ] - ] - } - ], + null, + {} + ] + ], + "sxg-non-secure-origin.tentative.html": [ + "84938da76d09dbe4f045b763e49ba95a4936003f", [ - "serial/serialPort_close.https.any.worker.html", - { - "script_metadata": [ - [ - "script", - "/resources/test-only-api.js" - ], - [ - "script", - "/serial/resources/common.js" - ], - [ - "script", - "resources/automation.js" - ] - ] - } + null, + {} ] ], - "serialPort_events.https.any.js": [ - "fa3db6a3b3e0d36a02e518b1d8ee8b2b62089791", + "sxg-noncacheable.tentative.html": [ + "1315360745789655acb926d7e8bafea9322c3a25", [ - "serial/serialPort_events.https.any.html", - { - "script_metadata": [ - [ - "script", - "/resources/test-only-api.js" - ], - [ - "script", - "/serial/resources/common.js" - ], - [ - "script", - "resources/automation.js" - ] - ] - } - ], + null, + {} + ] + ], + "sxg-prefetch-merkle-integrity-error.tentative.html": [ + "2086c38545d7df43dbe913b78ef1030c476b3649", [ - "serial/serialPort_events.https.any.worker.html", - { - "script_metadata": [ - [ - "script", - "/resources/test-only-api.js" - ], - [ - "script", - "/serial/resources/common.js" - ], - [ - "script", - "resources/automation.js" - ] - ] - } + null, + {} ] ], - "serialPort_forget.https.any.js": [ - "8c0d96f69528600d0830dade68f70ba2f3197e09", + "sxg-prefetch-resource-timing.tentative.html": [ + "5b60ab9e1a12e2b169c4972c422ddbe3ebc5f581", [ - "serial/serialPort_forget.https.any.html", - { - "script_metadata": [ - [ - "script", - "/resources/test-only-api.js" - ], - [ - "script", - "/serial/resources/common.js" - ], - [ - "script", - "resources/automation.js" - ] - ] - } - ], + null, + {} + ] + ], + "sxg-prefetch.tentative.https.html": [ + "a6e55567e0db498f62d8560e665622f145ce440d", [ - "serial/serialPort_forget.https.any.worker.html", - { - "script_metadata": [ - [ - "script", - "/resources/test-only-api.js" - ], - [ - "script", - "/serial/resources/common.js" - ], - [ - "script", - "resources/automation.js" - ] - ] - } + null, + {} ] ], - "serialPort_getInfo.https.any.js": [ - "2e0df3b8bdcb8cbef560cc43be63198e49365360", + "sxg-referrer-policy-header.tentative.https.html": [ + "5dff6af8cb08c665622b2c44437d6a51c537f4fc", [ - "serial/serialPort_getInfo.https.any.html", - { - "script_metadata": [ - [ - "script", - "/resources/test-only-api.js" - ], - [ - "script", - "/serial/resources/common.js" - ], - [ - "script", - "resources/automation.js" - ] - ] - } - ], + null, + {} + ] + ], + "sxg-referrer-remote-physical-remote-logical.tentative.https.html": [ + "67de083d27a583e8df3419678d1540a8592f23c9", [ - "serial/serialPort_getInfo.https.any.worker.html", + null, { - "script_metadata": [ - [ - "script", - "/resources/test-only-api.js" - ], - [ - "script", - "/serial/resources/common.js" - ], - [ - "script", - "resources/automation.js" - ] - ] + "timeout": "long" } ] ], - "serialPort_getSignals.https.any.js": [ - "a570e35987f4ce31ac2d1293f478c81f909beee9", + "sxg-referrer-remote-physical-same-logical.tentative.https.html": [ + "4d8aff808127a1d7bd15ee0667139f08f4852d1c", [ - "serial/serialPort_getSignals.https.any.html", - { - "script_metadata": [ - [ - "script", - "/resources/test-only-api.js" - ], - [ - "script", - "/serial/resources/common.js" - ], - [ - "script", - "resources/automation.js" - ] - ] - } - ], + null, + {} + ] + ], + "sxg-referrer-same-physical-remote-logical.tentative.https.html": [ + "3ba597ed4967418e545338927175a3d952df28b2", [ - "serial/serialPort_getSignals.https.any.worker.html", + null, { - "script_metadata": [ - [ - "script", - "/resources/test-only-api.js" - ], - [ - "script", - "/serial/resources/common.js" - ], - [ - "script", - "resources/automation.js" - ] - ] + "timeout": "long" } ] ], - "serialPort_ondisconnect.https.any.js": [ - "b20f69d265be3e7409437e9c0379d4b124e5158d", + "sxg-referrer-same-physical-same-logical.tentative.https.html": [ + "88917167b9c8ffcf0e08a24cf09cbf76381623a3", [ - "serial/serialPort_ondisconnect.https.any.html", - { - "script_metadata": [ - [ - "script", - "/resources/test-only-api.js" - ], - [ - "script", - "/serial/resources/common.js" - ], - [ - "script", - "resources/automation.js" - ] - ] - } - ], + null, + {} + ] + ], + "sxg-utf8-inner-url.tentative.html": [ + "85670a786af33c5dbfe19a018dba76847fa649cf", [ - "serial/serialPort_ondisconnect.https.any.worker.html", - { - "script_metadata": [ - [ - "script", - "/resources/test-only-api.js" - ], - [ - "script", - "/serial/resources/common.js" - ], - [ - "script", - "resources/automation.js" - ] - ] - } + null, + {} + ] + ], + "sxg-variants-match.tentative.html": [ + "21d1b80d3c158894690e563930f06825509402f1", + [ + null, + {} + ] + ], + "sxg-variants-mismatch.tentative.html": [ + "b57ec8192628c0a35c24c09641e41439aea872c6", + [ + null, + {} ] ], - "serialPort_open.https.any.js": [ - "ca138770888394c006c39e2e7a7adc5c0e597f7a", + "sxg-version1b2.tentative.html": [ + "43b340dbb79f2585ef4acc4361ee94c6f22003f0", + [ + null, + {} + ] + ] + }, + "soft-navigation-heuristics": { + "back.tentative.html": [ + "349eaf465c456954d552d42f46fd2a5590c254a9", [ - "serial/serialPort_open.https.any.html", + null, { - "script_metadata": [ - [ - "script", - "/resources/test-only-api.js" - ], - [ - "script", - "/serial/resources/common.js" - ], - [ - "script", - "resources/automation.js" - ] - ] + "testdriver": true } - ], + ] + ], + "click-event-bubbles.tentative.html": [ + "ee9d1e12335c8dc775a391585b02d892081000f7", [ - "serial/serialPort_open.https.any.worker.html", + null, { - "script_metadata": [ - [ - "script", - "/resources/test-only-api.js" - ], - [ - "script", - "/serial/resources/common.js" - ], - [ - "script", - "resources/automation.js" - ] - ] + "testdriver": true } ] ], - "serialPort_readable_byob.https.any.js": [ - "8672cf7124f388309e3ab001b489f692a77bc5a9", + "disabled.html": [ + "b53c2f701222c4a85e80d2f604ea34baef2b859b", [ - "serial/serialPort_readable_byob.https.any.html", + null, { - "script_metadata": [ - [ - "script", - "/resources/test-only-api.js" - ], - [ - "script", - "/serial/resources/common.js" - ], - [ - "script", - "resources/automation.js" - ] - ] + "testdriver": true } - ], + ] + ], + "dropped-entries.tentative.html": [ + "d27ad452be07b778aea1aff5525d1670fb66ec5f", [ - "serial/serialPort_readable_byob.https.any.worker.html", + null, { - "script_metadata": [ - [ - "script", - "/resources/test-only-api.js" - ], - [ - "script", - "/serial/resources/common.js" - ], - [ - "script", - "resources/automation.js" - ] - ] + "testdriver": true, + "timeout": "long" } ] ], - "serialPort_readable_cancel.https.any.js": [ - "fd1b08f6e7f34a3b7e693cc419f6ea84edfaff01", + "first-interaction-not-softnav.tentative.html": [ + "e02620218368d71ff10196c9ff75a13a361f5d90", [ - "serial/serialPort_readable_cancel.https.any.html", + null, { - "script_metadata": [ - [ - "script", - "/resources/test-only-api.js" - ], - [ - "script", - "/serial/resources/common.js" - ], - [ - "script", - "resources/automation.js" - ] - ] + "testdriver": true } - ], + ] + ], + "hash.tentative.html": [ + "3a8419c71da75196205190aadc707394bfe6614e", [ - "serial/serialPort_readable_cancel.https.any.worker.html", + null, { - "script_metadata": [ - [ - "script", - "/resources/test-only-api.js" - ], - [ - "script", - "/serial/resources/common.js" - ], - [ - "script", - "resources/automation.js" - ] - ] + "testdriver": true } ] ], - "serialPort_readable_chain.https.any.js": [ - "552567cdfe400aa9b00afde30761a7aae911d664", + "image-lcp-before-detection-second-softnav.tentative.html": [ + "4d26bb926955f6c86e3adae583d1828c8e6b833a", [ - "serial/serialPort_readable_chain.https.any.html", + null, { - "script_metadata": [ - [ - "script", - "/resources/test-only-api.js" - ], - [ - "script", - "/serial/resources/common.js" - ], - [ - "script", - "resources/automation.js" - ] - ] + "testdriver": true } - ], + ] + ], + "image-lcp-before-detection.tentative.html": [ + "0de675d372b68866d92eca772461cb0800f6e7f1", [ - "serial/serialPort_readable_chain.https.any.worker.html", + null, { - "script_metadata": [ - [ - "script", - "/resources/test-only-api.js" - ], - [ - "script", - "/serial/resources/common.js" - ], - [ - "script", - "resources/automation.js" - ] - ] + "testdriver": true } ] ], - "serialPort_readable_closeLocked.https.any.js": [ - "21196f758b9089c87cca83478e39b911cf82fda3", + "image-lcp-followed-by-image-softnav-lcp.tentative.html": [ + "7a2018d20ee811ff1ec9ca88c80038b0f1239874", [ - "serial/serialPort_readable_closeLocked.https.any.html", + null, { - "script_metadata": [ - [ - "script", - "/resources/test-only-api.js" - ], - [ - "script", - "/serial/resources/common.js" - ], - [ - "script", - "resources/automation.js" - ] - ] + "testdriver": true } - ], + ] + ], + "image-lcp-followed-by-text-softnav-lcp.tentative.html": [ + "501d1c5fb6fa0346f3c5cecd550001f933c9f1f1", [ - "serial/serialPort_readable_closeLocked.https.any.worker.html", + null, { - "script_metadata": [ - [ - "script", - "/resources/test-only-api.js" - ], - [ - "script", - "/serial/resources/common.js" - ], - [ - "script", - "resources/automation.js" - ] - ] + "testdriver": true } ] ], - "serialPort_readable_disconnect.https.any.js": [ - "3532745ae035000e21f64535ea2d054fba98b4db", + "image-lcp-followed-by-two-image-softnavs-lcp.tentative.html": [ + "66a9e5136f6fed4dfb425acf50c0e8ad0ef7fbd0", [ - "serial/serialPort_readable_disconnect.https.any.html", + null, { - "script_metadata": [ - [ - "script", - "/resources/test-only-api.js" - ], - [ - "script", - "/serial/resources/common.js" - ], - [ - "script", - "resources/automation.js" - ] - ] + "testdriver": true } - ], + ] + ], + "innertext.tentative.html": [ + "d40b6047924834ef09137fa975cbd2d142999bcb", [ - "serial/serialPort_readable_disconnect.https.any.worker.html", + null, { - "script_metadata": [ - [ - "script", - "/resources/test-only-api.js" - ], - [ - "script", - "/serial/resources/common.js" - ], - [ - "script", - "resources/automation.js" - ] - ] + "testdriver": true } ] ], - "serialPort_readable_largeRead.https.any.js": [ - "f8087514f71b0040c6b947885acdf554e4e17d97", + "interaction-with-paint-before-back.tentative.html": [ + "b587411991383e47381e14fc6e00c0bcfc2dc447", [ - "serial/serialPort_readable_largeRead.https.any.html", + null, { - "script_metadata": [ - [ - "script", - "/resources/test-only-api.js" - ], - [ - "script", - "/serial/resources/common.js" - ], - [ - "script", - "resources/automation.js" - ] - ] + "testdriver": true } - ], + ] + ], + "load-classic-script-history-push.tentative.html": [ + "4e375b2164db87258132f4a6edba4b68c1c2b99b", [ - "serial/serialPort_readable_largeRead.https.any.worker.html", + null, { - "script_metadata": [ - [ - "script", - "/resources/test-only-api.js" - ], - [ - "script", - "/serial/resources/common.js" - ], - [ - "script", - "resources/automation.js" - ] - ] + "testdriver": true } ] ], - "serialPort_readable_open.https.any.js": [ - "1a12cc2da48c1058236558dbd894423ee577623f", + "load-module-script-history-push.tentative.html": [ + "e82cd13f4a5dcc0c5cb54a59829cb64a3f5ca50a", [ - "serial/serialPort_readable_open.https.any.html", + null, { - "script_metadata": [ - [ - "script", - "/resources/test-only-api.js" - ], - [ - "script", - "/serial/resources/common.js" - ], - [ - "script", - "resources/automation.js" - ] - ] + "testdriver": true } - ], + ] + ], + "multiple-nested-events.tentative.html": [ + "e51841865d654a65e44fefc505e8102196a4093c", [ - "serial/serialPort_readable_open.https.any.worker.html", + null, { - "script_metadata": [ - [ - "script", - "/resources/test-only-api.js" - ], - [ - "script", - "/serial/resources/common.js" - ], - [ - "script", - "resources/automation.js" - ] - ] + "testdriver": true } ] ], - "serialPort_readable_parityError.https.any.js": [ - "7afd494dc50dbb174510fdb2db70f37338fe9184", + "multiple-paint-entries-buffered.tentative.html": [ + "dbb945a0a811330a3efa74b8b34da3f7987e9f38", [ - "serial/serialPort_readable_parityError.https.any.html", + null, { - "script_metadata": [ - [ - "script", - "/resources/test-only-api.js" - ], - [ - "script", - "/serial/resources/common.js" - ], - [ - "script", - "resources/automation.js" - ] - ] + "testdriver": true, + "timeout": "long" } - ], + ] + ], + "navigate-child.html": [ + "e3c17e2dbaa2148b0dd35632d0651592f9696bec", [ - "serial/serialPort_readable_parityError.https.any.worker.html", + null, { - "script_metadata": [ - [ - "script", - "/resources/test-only-api.js" - ], - [ - "script", - "/serial/resources/common.js" - ], - [ - "script", - "resources/automation.js" - ] - ] + "testdriver": true } ] ], - "serialPort_readable_pipeThrough.https.any.js": [ - "13c6d48023957b6a02d64c3937795ece214c2c0f", + "navigation-api-after-transition-commit.tentative.html": [ + "ae17db7d59f4c5cf2bf01af2b7224fa6aa8232df", [ - "serial/serialPort_readable_pipeThrough.https.any.html", + null, { - "script_metadata": [ - [ - "script", - "/resources/test-only-api.js" - ], - [ - "script", - "/serial/resources/common.js" - ], - [ - "script", - "resources/automation.js" - ] - ] + "testdriver": true } - ], + ] + ], + "navigation-api-back.tentative.html": [ + "cb96d9caf95ba7987adb065a150b2182ec784b9a", [ - "serial/serialPort_readable_pipeThrough.https.any.worker.html", + null, { - "script_metadata": [ - [ - "script", - "/resources/test-only-api.js" - ], - [ - "script", - "/serial/resources/common.js" - ], - [ - "script", - "resources/automation.js" - ] - ] + "testdriver": true } ] ], - "serialPort_readable_smallRead.https.any.js": [ - "b926aa608f38a18db536f0278e755ac7d14e93d0", + "navigation-api-forward.tentative.html": [ + "f483ad376b6ae247d0358363fda3c01cd71ac06f", [ - "serial/serialPort_readable_smallRead.https.any.html", + null, { - "script_metadata": [ - [ - "script", - "/resources/test-only-api.js" - ], - [ - "script", - "/serial/resources/common.js" - ], - [ - "script", - "resources/automation.js" - ] - ] + "testdriver": true } - ], + ] + ], + "navigation-api-hash.tentative.html": [ + "e20578ea79ed7a6564a2d960cc1148b520c55ef2", [ - "serial/serialPort_readable_smallRead.https.any.worker.html", + null, { - "script_metadata": [ - [ - "script", - "/resources/test-only-api.js" - ], - [ - "script", - "/serial/resources/common.js" - ], - [ - "script", - "resources/automation.js" - ] - ] + "testdriver": true } ] ], - "serialPort_setSignals.https.any.js": [ - "27911ab7db5448b67086e4cda538dc1c80d0f8f0", + "navigation-api-preventDefault.tentative.html": [ + "b7b2a24c94203080d052411f080a0dd3c0d11cbe", [ - "serial/serialPort_setSignals.https.any.html", + null, { - "script_metadata": [ - [ - "script", - "/resources/test-only-api.js" - ], - [ - "script", - "/serial/resources/common.js" - ], - [ - "script", - "resources/automation.js" - ] - ] + "testdriver": true } - ], + ] + ], + "navigation-api-rejected.tentative.html": [ + "693f876b6e188b4c8ec8531aa7723c6afada70af", [ - "serial/serialPort_setSignals.https.any.worker.html", + null, { - "script_metadata": [ - [ - "script", - "/resources/test-only-api.js" - ], - [ - "script", - "/serial/resources/common.js" - ], - [ - "script", - "resources/automation.js" - ] - ] + "testdriver": true } ] ], - "serialPort_writable.https.any.js": [ - "087c881500732155b3b96eaaaf64c4a2e21f8a05", + "navigation-api-traverseto.tentative.html": [ + "e4cabb095aafebf8291596f08a315e9c3103dd8d", [ - "serial/serialPort_writable.https.any.html", + null, { - "script_metadata": [ - [ - "script", - "/resources/test-only-api.js" - ], - [ - "script", - "/serial/resources/common.js" - ], - [ - "script", - "resources/automation.js" - ] - ] + "testdriver": true } - ], + ] + ], + "navigation-api-view-transition.tentative.html": [ + "4d88f3d0b7d9bee962f7b7e71c7695c421e7b560", [ - "serial/serialPort_writable.https.any.worker.html", + null, { - "script_metadata": [ - [ - "script", - "/resources/test-only-api.js" - ], - [ - "script", - "/serial/resources/common.js" - ], - [ - "script", - "resources/automation.js" - ] - ] + "testdriver": true } ] ], - "serialPort_writable_detachBuffer.https.any.js": [ - "828e877726b1c63dba14efc36324d9a16aa4e62f", + "navigation-api.tentative.html": [ + "2d61736a486127cdfb37210906856cb4404a48d6", [ - "serial/serialPort_writable_detachBuffer.https.any.html", + null, { - "script_metadata": [ - [ - "script", - "/resources/test-only-api.js" - ], - [ - "script", - "/serial/resources/common.js" - ], - [ - "script", - "resources/automation.js" - ] - ] + "testdriver": true } - ], + ] + ], + "popstate-multiple-backs.tentative.html": [ + "fd87f5f03e753b3ac5a8d8268a76496d93c15969", [ - "serial/serialPort_writable_detachBuffer.https.any.worker.html", + null, { - "script_metadata": [ - [ - "script", - "/resources/test-only-api.js" - ], - [ - "script", - "/serial/resources/common.js" - ], - [ - "script", - "resources/automation.js" - ] - ] + "testdriver": true } ] ], - "serial_getPorts.https.any.js": [ - "03ab5f7e266cb6e708c1e8633a34bac50db143c1", + "popstate.tentative.html": [ + "f89991d76b044c5165c53b3b90b4620eb1e2d047", [ - "serial/serial_getPorts.https.any.html", + null, { - "script_metadata": [ - [ - "script", - "/resources/test-only-api.js" - ], - [ - "script", - "/serial/resources/common.js" - ], - [ - "script", - "resources/automation.js" - ] - ] + "testdriver": true } - ], + ] + ], + "replacestate-null-then-push.tentative.html": [ + "8a81c6be20237dee08d3343ab921b9f7331538fe", [ - "serial/serial_getPorts.https.any.worker.html", + null, { - "script_metadata": [ - [ - "script", - "/resources/test-only-api.js" - ], - [ - "script", - "/serial/resources/common.js" - ], - [ - "script", - "resources/automation.js" - ] - ] + "testdriver": true } ] ], - "serial_onconnect.https.any.js": [ - "e2ff9a0f0a0b7ae7253f9b5a6cc43b54fbe47522", + "replacestate.tentative.html": [ + "d47b9b653881f57e085fef94360c9245e23c022f", [ - "serial/serial_onconnect.https.any.html", + null, { - "script_metadata": [ - [ - "script", - "/resources/test-only-api.js" - ], - [ - "script", - "/serial/resources/common.js" - ], - [ - "script", - "resources/automation.js" - ] - ] + "testdriver": true } - ], + ] + ], + "second-interaction-not-softnav.tentative.html": [ + "a9bb337060d00a5e21075f2c2cb53570e500afaf", [ - "serial/serial_onconnect.https.any.worker.html", + null, { - "script_metadata": [ - [ - "script", - "/resources/test-only-api.js" - ], - [ - "script", - "/serial/resources/common.js" - ], - [ - "script", - "resources/automation.js" - ] - ] + "testdriver": true } ] ], - "serial_ondisconnect.https.any.js": [ - "583a9ea52c85fb84595383a5829558475bd1dffb", + "soft-navigation-detection-main-descendent.tentative.html": [ + "96ff55260c3b9553ac5735cc5fe209ee7cfd5f37", [ - "serial/serial_ondisconnect.https.any.html", + null, { - "script_metadata": [ - [ - "script", - "/resources/test-only-api.js" - ], - [ - "script", - "/serial/resources/common.js" - ], - [ - "script", - "resources/automation.js" - ] - ] + "testdriver": true } - ], + ] + ], + "soft-navigation-detection-non-main.tentative.html": [ + "86da167c3393903dfb3fe01e59a9bbfb216d5a44", [ - "serial/serial_ondisconnect.https.any.worker.html", + null, { - "script_metadata": [ - [ - "script", - "/resources/test-only-api.js" - ], - [ - "script", - "/serial/resources/common.js" - ], - [ - "script", - "resources/automation.js" - ] - ] + "testdriver": true } ] ], - "serial_requestPort.https.window.js": [ - "4edcfa6a46d3fe0f0e969efc66ff53445f7c7f9b", + "soft-navigation-detection-web-component-lifecycle.tentative.html": [ + "4384893503866337edd6209bc25326521cf10290", [ - "serial/serial_requestPort.https.window.html", + null, { - "script_metadata": [ - [ - "script", - "/resources/testdriver.js" - ], - [ - "script", - "/resources/testdriver-vendor.js" - ], - [ - "script", - "/resources/test-only-api.js" - ], - [ - "script", - "/serial/resources/common.js" - ], - [ - "script", - "resources/automation.js" - ] - ] + "testdriver": true } ] - ] - }, - "server-timing": { - "cross_origin.https.html": [ - "d31c7b006caf2311563b2c36171422d81d2979b8", + ], + "soft-navigation-detection.tentative.html": [ + "618984d8592dc6d2f68a15fe7f4f87592731236e", [ null, - {} + { + "testdriver": true + } ] ], - "idlharness.https.any.js": [ - "44bffcf59e6bf6e03389352e5da76ee0b48e34b8", + "soft-navigation-no-url.tentative.html": [ + "a0055c654c2049c9df444510c892489e363d0bb3", [ - "server-timing/idlharness.https.any.html", + null, { - "script_metadata": [ - [ - "script", - "/resources/WebIDLParser.js" - ], - [ - "script", - "/resources/idlharness.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" + "testdriver": true } - ], + ] + ], + "softnav-after-lcp-paint-larger-than-viewport.tentative.html": [ + "3c930d8be4cd459d9167404be13ad9ac219ec422", [ - "server-timing/idlharness.https.any.worker.html", + null, { - "script_metadata": [ - [ - "script", - "/resources/WebIDLParser.js" - ], - [ - "script", - "/resources/idlharness.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" + "testdriver": true } ] ], - "navigation-timing-trickle.https.html": [ - "3121dc01cdda3496a99141e014422aebdc6a1db2", + "softnav-after-lcp-paint.tentative.html": [ + "cf9a9942ca6453719a5888df802d1c3398094495", [ null, - {} + { + "testdriver": true + } ] ], - "navigation_timing_idl.https.html": [ - "154bc6b0442bf159e7a8b0a682bee5b21372e450", + "softnav-before-lcp-paint.tentative.html": [ + "d5dc4b74fb33b5bf0499ddae12a98d3789d48841", [ null, - {} + { + "testdriver": true + } ] ], - "resource_timing_idl.https.html": [ - "a719a89097231cb7defe3a910ae0349a11f335c5", + "softnav-between-lcp-render-and-paint.tentative.html": [ + "56c7073de63036d92d342de610cba49ae5e9be00", [ null, - {} + { + "testdriver": true + } ] ], - "server_timing_header-parsing.https.html": [ - "737cc08045ae94f1dc98417500e5e1400474a584", + "supported-entry-types.tentative.html": [ + "4ab408e10b1e504961715779d3f08e70f37dc665", [ null, {} ] ], - "server_timing_headers_not_visible_in_fetch.https.html": [ - "3502f491d5a62c982b8ead79e9b0063372b5b431", + "text-lcp-before-detection-second-softnav.tentative.html": [ + "bed27c3506914e34cfb7d288ed745fd1fc2cea01", [ null, - {} + { + "testdriver": true + } ] ], - "service_worker_idl.https.html": [ - "5c493fdcb0ab581a267a084e7e2383617d99677e", + "text-lcp-before-detection.tentative.html": [ + "11e82e539ff08b249be1fe79f64e4b8df0859601", [ null, - {} + { + "testdriver": true + } ] ], - "test_server_timing.https.html": [ - "4f3554aa4a4572e8dbef83fcea3ce8cdd946a858", + "text-lcp-followed-by-anim-image-softnav-lcp.tentative.html": [ + "0615b513e61319d61bcbed3540aa1a5d47289cb6", [ null, - {} - ] - ] - }, - "service-workers": { - "cache-storage": { - "cache-abort.https.any.js": [ - "960d1bb1bffd7dfa6ec8a35b6428baff231352e4", - [ - "service-workers/cache-storage/cache-abort.https.any.html", - { - "script_metadata": [ - [ - "title", - "Cache Storage: Abort" - ], - [ - "global", - "window,worker" - ], - [ - "script", - "./resources/test-helpers.js" - ], - [ - "script", - "/common/utils.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ], - [ - "service-workers/cache-storage/cache-abort.https.any.serviceworker.html", - { - "script_metadata": [ - [ - "title", - "Cache Storage: Abort" - ], - [ - "global", - "window,worker" - ], - [ - "script", - "./resources/test-helpers.js" - ], - [ - "script", - "/common/utils.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ], - [ - "service-workers/cache-storage/cache-abort.https.any.sharedworker.html", - { - "script_metadata": [ - [ - "title", - "Cache Storage: Abort" - ], - [ - "global", - "window,worker" - ], - [ - "script", - "./resources/test-helpers.js" - ], - [ - "script", - "/common/utils.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ], - [ - "service-workers/cache-storage/cache-abort.https.any.worker.html", - { - "script_metadata": [ - [ - "title", - "Cache Storage: Abort" - ], - [ - "global", - "window,worker" - ], - [ - "script", - "./resources/test-helpers.js" - ], - [ - "script", - "/common/utils.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ] - ], - "cache-add.https.any.js": [ - "eca516abd5f3933510d299859bf44bb0a2f56052", - [ - "service-workers/cache-storage/cache-add.https.any.html", - { - "script_metadata": [ - [ - "title", - "Cache.add and Cache.addAll" - ], - [ - "global", - "window,worker" - ], - [ - "script", - "/common/get-host-info.sub.js" - ], - [ - "script", - "./resources/test-helpers.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ], - [ - "service-workers/cache-storage/cache-add.https.any.serviceworker.html", - { - "script_metadata": [ - [ - "title", - "Cache.add and Cache.addAll" - ], - [ - "global", - "window,worker" - ], - [ - "script", - "/common/get-host-info.sub.js" - ], - [ - "script", - "./resources/test-helpers.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ], - [ - "service-workers/cache-storage/cache-add.https.any.sharedworker.html", - { - "script_metadata": [ - [ - "title", - "Cache.add and Cache.addAll" - ], - [ - "global", - "window,worker" - ], - [ - "script", - "/common/get-host-info.sub.js" - ], - [ - "script", - "./resources/test-helpers.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ], - [ - "service-workers/cache-storage/cache-add.https.any.worker.html", - { - "script_metadata": [ - [ - "title", - "Cache.add and Cache.addAll" - ], - [ - "global", - "window,worker" - ], - [ - "script", - "/common/get-host-info.sub.js" - ], - [ - "script", - "./resources/test-helpers.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ] - ], - "cache-delete.https.any.js": [ - "3eae2b6a08b7954a6a5e644b8248f6ebab562a83", - [ - "service-workers/cache-storage/cache-delete.https.any.html", - { - "script_metadata": [ - [ - "title", - "Cache.delete" - ], - [ - "global", - "window,worker" - ], - [ - "script", - "./resources/test-helpers.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ], - [ - "service-workers/cache-storage/cache-delete.https.any.serviceworker.html", - { - "script_metadata": [ - [ - "title", - "Cache.delete" - ], - [ - "global", - "window,worker" - ], - [ - "script", - "./resources/test-helpers.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ], - [ - "service-workers/cache-storage/cache-delete.https.any.sharedworker.html", - { - "script_metadata": [ - [ - "title", - "Cache.delete" - ], - [ - "global", - "window,worker" - ], - [ - "script", - "./resources/test-helpers.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ], - [ - "service-workers/cache-storage/cache-delete.https.any.worker.html", - { - "script_metadata": [ - [ - "title", - "Cache.delete" - ], - [ - "global", - "window,worker" - ], - [ - "script", - "./resources/test-helpers.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ] - ], - "cache-keys-attributes-for-service-worker.https.html": [ - "3c96348e0e033cf0b0a14b1f025b70d787febb35", - [ - null, - {} - ] - ], - "cache-keys.https.any.js": [ - "232fb760d4080a02051ba5cf5e8d2964771fda9a", - [ - "service-workers/cache-storage/cache-keys.https.any.html", - { - "script_metadata": [ - [ - "title", - "Cache.keys" - ], - [ - "global", - "window,worker" - ], - [ - "script", - "./resources/test-helpers.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ], - [ - "service-workers/cache-storage/cache-keys.https.any.serviceworker.html", - { - "script_metadata": [ - [ - "title", - "Cache.keys" - ], - [ - "global", - "window,worker" - ], - [ - "script", - "./resources/test-helpers.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ], - [ - "service-workers/cache-storage/cache-keys.https.any.sharedworker.html", - { - "script_metadata": [ - [ - "title", - "Cache.keys" - ], - [ - "global", - "window,worker" - ], - [ - "script", - "./resources/test-helpers.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ], - [ - "service-workers/cache-storage/cache-keys.https.any.worker.html", - { - "script_metadata": [ - [ - "title", - "Cache.keys" - ], - [ - "global", - "window,worker" - ], - [ - "script", - "./resources/test-helpers.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ] - ], - "cache-match.https.any.js": [ - "9ca45903cbb101810488ced4b31bb9f34957b1ef", - [ - "service-workers/cache-storage/cache-match.https.any.html", - { - "script_metadata": [ - [ - "title", - "Cache.match" - ], - [ - "global", - "window,worker" - ], - [ - "script", - "./resources/test-helpers.js" - ], - [ - "script", - "/common/get-host-info.sub.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ], - [ - "service-workers/cache-storage/cache-match.https.any.serviceworker.html", - { - "script_metadata": [ - [ - "title", - "Cache.match" - ], - [ - "global", - "window,worker" - ], - [ - "script", - "./resources/test-helpers.js" - ], - [ - "script", - "/common/get-host-info.sub.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ], - [ - "service-workers/cache-storage/cache-match.https.any.sharedworker.html", - { - "script_metadata": [ - [ - "title", - "Cache.match" - ], - [ - "global", - "window,worker" - ], - [ - "script", - "./resources/test-helpers.js" - ], - [ - "script", - "/common/get-host-info.sub.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ], - [ - "service-workers/cache-storage/cache-match.https.any.worker.html", - { - "script_metadata": [ - [ - "title", - "Cache.match" - ], - [ - "global", - "window,worker" - ], - [ - "script", - "./resources/test-helpers.js" - ], - [ - "script", - "/common/get-host-info.sub.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ] - ], - "cache-matchAll.https.any.js": [ - "93c55178918c333df25104e69ca74af5dbf04be9", - [ - "service-workers/cache-storage/cache-matchAll.https.any.html", - { - "script_metadata": [ - [ - "title", - "Cache.matchAll" - ], - [ - "global", - "window,worker" - ], - [ - "script", - "./resources/test-helpers.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ], - [ - "service-workers/cache-storage/cache-matchAll.https.any.serviceworker.html", - { - "script_metadata": [ - [ - "title", - "Cache.matchAll" - ], - [ - "global", - "window,worker" - ], - [ - "script", - "./resources/test-helpers.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ], - [ - "service-workers/cache-storage/cache-matchAll.https.any.sharedworker.html", - { - "script_metadata": [ - [ - "title", - "Cache.matchAll" - ], - [ - "global", - "window,worker" - ], - [ - "script", - "./resources/test-helpers.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ], - [ - "service-workers/cache-storage/cache-matchAll.https.any.worker.html", - { - "script_metadata": [ - [ - "title", - "Cache.matchAll" - ], - [ - "global", - "window,worker" - ], - [ - "script", - "./resources/test-helpers.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ] - ], - "cache-put.https.any.js": [ - "dbf2650a75a5ff051f222ccb736b14f65d98f1b9", - [ - "service-workers/cache-storage/cache-put.https.any.html", - { - "script_metadata": [ - [ - "title", - "Cache.put" - ], - [ - "global", - "window,worker" - ], - [ - "script", - "/common/get-host-info.sub.js" - ], - [ - "script", - "./resources/test-helpers.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ], - [ - "service-workers/cache-storage/cache-put.https.any.serviceworker.html", - { - "script_metadata": [ - [ - "title", - "Cache.put" - ], - [ - "global", - "window,worker" - ], - [ - "script", - "/common/get-host-info.sub.js" - ], - [ - "script", - "./resources/test-helpers.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ], - [ - "service-workers/cache-storage/cache-put.https.any.sharedworker.html", - { - "script_metadata": [ - [ - "title", - "Cache.put" - ], - [ - "global", - "window,worker" - ], - [ - "script", - "/common/get-host-info.sub.js" - ], - [ - "script", - "./resources/test-helpers.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ], - [ - "service-workers/cache-storage/cache-put.https.any.worker.html", - { - "script_metadata": [ - [ - "title", - "Cache.put" - ], - [ - "global", - "window,worker" - ], - [ - "script", - "/common/get-host-info.sub.js" - ], - [ - "script", - "./resources/test-helpers.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ] - ], - "cache-storage-buckets.https.any.js": [ - "fd59ba464db0305de210fc2935d739b2469ec4ae", - [ - "service-workers/cache-storage/cache-storage-buckets.https.any.html", - { - "script_metadata": [ - [ - "title", - "Cache.put" - ], - [ - "global", - "window,worker" - ], - [ - "script", - "/common/get-host-info.sub.js" - ], - [ - "script", - "resources/test-helpers.js" - ], - [ - "script", - "/storage/buckets/resources/util.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ], - [ - "service-workers/cache-storage/cache-storage-buckets.https.any.serviceworker.html", - { - "script_metadata": [ - [ - "title", - "Cache.put" - ], - [ - "global", - "window,worker" - ], - [ - "script", - "/common/get-host-info.sub.js" - ], - [ - "script", - "resources/test-helpers.js" - ], - [ - "script", - "/storage/buckets/resources/util.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ], - [ - "service-workers/cache-storage/cache-storage-buckets.https.any.sharedworker.html", - { - "script_metadata": [ - [ - "title", - "Cache.put" - ], - [ - "global", - "window,worker" - ], - [ - "script", - "/common/get-host-info.sub.js" - ], - [ - "script", - "resources/test-helpers.js" - ], - [ - "script", - "/storage/buckets/resources/util.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ], - [ - "service-workers/cache-storage/cache-storage-buckets.https.any.worker.html", - { - "script_metadata": [ - [ - "title", - "Cache.put" - ], - [ - "global", - "window,worker" - ], - [ - "script", - "/common/get-host-info.sub.js" - ], - [ - "script", - "resources/test-helpers.js" - ], - [ - "script", - "/storage/buckets/resources/util.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ] - ], - "cache-storage-keys.https.any.js": [ - "f19522be1b437d619b356b5b0290679a8f391866", - [ - "service-workers/cache-storage/cache-storage-keys.https.any.html", - { - "script_metadata": [ - [ - "title", - "CacheStorage.keys" - ], - [ - "global", - "window,worker" - ], - [ - "script", - "./resources/test-helpers.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ], - [ - "service-workers/cache-storage/cache-storage-keys.https.any.serviceworker.html", - { - "script_metadata": [ - [ - "title", - "CacheStorage.keys" - ], - [ - "global", - "window,worker" - ], - [ - "script", - "./resources/test-helpers.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ], - [ - "service-workers/cache-storage/cache-storage-keys.https.any.sharedworker.html", - { - "script_metadata": [ - [ - "title", - "CacheStorage.keys" - ], - [ - "global", - "window,worker" - ], - [ - "script", - "./resources/test-helpers.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ], - [ - "service-workers/cache-storage/cache-storage-keys.https.any.worker.html", - { - "script_metadata": [ - [ - "title", - "CacheStorage.keys" - ], - [ - "global", - "window,worker" - ], - [ - "script", - "./resources/test-helpers.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ] - ], - "cache-storage-match.https.any.js": [ - "0c31b726294b14b1b849ecbeb369d23a59d126d8", - [ - "service-workers/cache-storage/cache-storage-match.https.any.html", - { - "script_metadata": [ - [ - "title", - "CacheStorage.match" - ], - [ - "global", - "window,worker" - ], - [ - "script", - "./resources/test-helpers.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ], - [ - "service-workers/cache-storage/cache-storage-match.https.any.serviceworker.html", - { - "script_metadata": [ - [ - "title", - "CacheStorage.match" - ], - [ - "global", - "window,worker" - ], - [ - "script", - "./resources/test-helpers.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ], - [ - "service-workers/cache-storage/cache-storage-match.https.any.sharedworker.html", - { - "script_metadata": [ - [ - "title", - "CacheStorage.match" - ], - [ - "global", - "window,worker" - ], - [ - "script", - "./resources/test-helpers.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ], - [ - "service-workers/cache-storage/cache-storage-match.https.any.worker.html", - { - "script_metadata": [ - [ - "title", - "CacheStorage.match" - ], - [ - "global", - "window,worker" - ], - [ - "script", - "./resources/test-helpers.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ] - ], - "cache-storage.https.any.js": [ - "b7d5af7b532036351ab842de451002ca36f7b4af", - [ - "service-workers/cache-storage/cache-storage.https.any.html", - { - "script_metadata": [ - [ - "title", - "CacheStorage" - ], - [ - "global", - "window,worker" - ], - [ - "script", - "./resources/test-helpers.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ], - [ - "service-workers/cache-storage/cache-storage.https.any.serviceworker.html", - { - "script_metadata": [ - [ - "title", - "CacheStorage" - ], - [ - "global", - "window,worker" - ], - [ - "script", - "./resources/test-helpers.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ], - [ - "service-workers/cache-storage/cache-storage.https.any.sharedworker.html", - { - "script_metadata": [ - [ - "title", - "CacheStorage" - ], - [ - "global", - "window,worker" - ], - [ - "script", - "./resources/test-helpers.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ], - [ - "service-workers/cache-storage/cache-storage.https.any.worker.html", - { - "script_metadata": [ - [ - "title", - "CacheStorage" - ], - [ - "global", - "window,worker" - ], - [ - "script", - "./resources/test-helpers.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ] - ], - "common.https.window.js": [ - "eba312c273de149ae9007d69bb4796b147e03841", - [ - "service-workers/cache-storage/common.https.window.html", - { - "script_metadata": [ - [ - "title", - "Cache Storage: Verify that Window and Workers see same storage" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ] - ], - "credentials.https.html": [ - "0fe4a0a0ac0de1097a3ba35689df5396eaa613ec", - [ - null, - {} - ] - ], - "cross-partition.https.tentative.html": [ - "1cfc2569088e94530b193e24e5c0415883a76330", - [ - null, - { - "timeout": "long" - } - ] - ], - "sandboxed-iframes.https.html": [ - "098fa89daf446f57da6313c865e53a0a67983059", - [ - null, - { - "timeout": "long" - } - ] - ] - }, - "idlharness.https.any.js": [ - "8db5d4d10ff7b90f990d77394dac2dddbd2aa45f", - [ - "service-workers/idlharness.https.any.html", { - "script_metadata": [ - [ - "global", - "window,worker" - ], - [ - "script", - "/resources/WebIDLParser.js" - ], - [ - "script", - "/resources/idlharness.js" - ], - [ - "script", - "cache-storage/resources/test-helpers.js" - ], - [ - "script", - "service-worker/resources/test-helpers.sub.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" + "testdriver": true } - ], + ] + ], + "text-lcp-followed-by-image-softnav-lcp.tentative.html": [ + "3a8398347ce0ecb31aae24b4e8c8403aa2c9ef79", [ - "service-workers/idlharness.https.any.serviceworker.html", + null, { - "script_metadata": [ - [ - "global", - "window,worker" - ], - [ - "script", - "/resources/WebIDLParser.js" - ], - [ - "script", - "/resources/idlharness.js" - ], - [ - "script", - "cache-storage/resources/test-helpers.js" - ], - [ - "script", - "service-worker/resources/test-helpers.sub.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" + "testdriver": true } - ], + ] + ], + "text-lcp-followed-by-text-softnav-lcp.tentative.html": [ + "929f59f019df81195700e61ca0cfcbb3db04a688", [ - "service-workers/idlharness.https.any.sharedworker.html", + null, { - "script_metadata": [ - [ - "global", - "window,worker" - ], - [ - "script", - "/resources/WebIDLParser.js" - ], - [ - "script", - "/resources/idlharness.js" - ], - [ - "script", - "cache-storage/resources/test-helpers.js" - ], - [ - "script", - "service-worker/resources/test-helpers.sub.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" + "testdriver": true } - ], + ] + ], + "visited-link.tentative.html": [ + "0bb149f00e91fc2f0033a6f763543967ef542ab2", [ - "service-workers/idlharness.https.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,worker" - ], - [ - "script", - "/resources/WebIDLParser.js" - ], - [ - "script", - "/resources/idlharness.js" - ], - [ - "script", - "cache-storage/resources/test-helpers.js" - ], - [ - "script", - "service-worker/resources/test-helpers.sub.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" + null, + { + "testdriver": true } ] - ], - "service-worker": { - "Service-Worker-Allowed-header.https.html": [ - "6f44bb17e7da958a195e8602aa5aef9c135a80b3", + ] + }, + "speculation-rules": { + "prefetch": { + "anonymous-client.https.html": [ + "bf5896b2dd0626a14e80fe694bd443fea784c4b7", [ null, {} ] ], - "ServiceWorkerGlobalScope": { - "close.https.html": [ - "3e3cc8b2b08973baf3293c0a533c85489f352b68", - [ - null, - {} - ] - ], - "extendable-message-event-constructor.https.html": [ - "525245fe9ece73fde6e2408e76927bbfcd1b04cf", - [ - null, - {} - ] - ], - "extendable-message-event.https.html": [ - "89efd7a4a615c1a3ef35b045690fa40b67fb5393", - [ - null, - {} - ] - ], - "fetch-on-the-right-interface.https.any.js": [ - "5ca5f65680c9754c8f2ed8361f6c94bc13e65a0d", - [ - "service-workers/service-worker/ServiceWorkerGlobalScope/fetch-on-the-right-interface.https.any.serviceworker.html", - { - "script_metadata": [ - [ - "title", - "fetch method on the right interface" - ], - [ - "global", - "serviceworker" - ] - ] - } - ] - ], - "isSecureContext.https.html": [ - "399820dd2c313b5023f63ea7846cc1f39fcbb1d6", - [ - null, - {} - ] - ], - "postmessage.https.html": [ - "99dedebf2e56c744528fd168c05b4fe734563c57", - [ - null, - {} - ] - ], - "registration-attribute.https.html": [ - "aa3c74a13bb2b1623696579b371486a40706dcf1", - [ - null, - {} - ] - ], - "service-worker-error-event.https.html": [ - "988f5466b9e16ffe716297b9ba569e668ff8f8a3", - [ - null, - {} - ] - ], - "unregister.https.html": [ - "1a124d727687ecfc62bb1443bed2313312762997", - [ - null, - {} - ] - ], - "update.https.html": [ - "a7dde2233972cb3c1b8250f3b0a184413cd7c5a5", - [ - null, - {} - ] - ] - }, - "about-blank-replacement.https.html": [ - "b6efe3ec5620d1c83deb305f2c1ebe008a6a23e2", + "cookie-indices.https.html": [ + "f5fac65822ed7433ffd803ddf74ed91e4b69a4bb", [ - null, + "speculation-rules/prefetch/cookie-indices.https.html?include=changed", { + "testdriver": true, "timeout": "long" } - ] - ], - "activate-event-after-install-state-change.https.html": [ - "016a52c13c82ebbfb36d48830446b79b4e72f13e", - [ - null, - {} - ] - ], - "activation-after-registration.https.html": [ - "29f97e3e3f4c0cda2321776cbf48fed92d1c90a1", - [ - null, - {} - ] - ], - "activation.https.html": [ - "278454d3383e3d71a3925663dfcfc3444eddff83", + ], [ - null, + "speculation-rules/prefetch/cookie-indices.https.html?include=changedWithRedirect", { + "testdriver": true, "timeout": "long" } - ] - ], - "active.https.html": [ - "350a34b802f70d6b6c78e6fdba9b2acabe7d143c", - [ - null, - {} - ] - ], - "claim-affect-other-registration.https.html": [ - "52555ac271b5bad279ab37352c9d9937c780909a", - [ - null, - {} - ] - ], - "claim-fetch.https.html": [ - "ae0082df06bf794d02990a7c0b7213e0d81114cb", + ], [ - null, + "speculation-rules/prefetch/cookie-indices.https.html?include=changedWithRedirect2", { + "testdriver": true, "timeout": "long" } - ] - ], - "claim-not-using-registration.https.html": [ - "fd61d05ba4ea8a1c416eb6d4b1128f7b65b4b35c", - [ - null, - {} - ] - ], - "claim-shared-worker-fetch.https.html": [ - "f5f44886baa2bff3bc7b7e013a856a6d90ceb26c", + ], [ - null, - {} - ] - ], - "claim-using-registration.https.html": [ - "8a2a6ff25c82d8d6de26cca521da99f8ef6d5fbf", + "speculation-rules/prefetch/cookie-indices.https.html?include=changedWithRedirect3", + { + "testdriver": true, + "timeout": "long" + } + ], [ - null, - {} - ] - ], - "claim-with-redirect.https.html": [ - "fd89cb9b00a1f0a39c0f7a9103fab2a10ff22526", + "speculation-rules/prefetch/cookie-indices.https.html?include=unchanged", + { + "testdriver": true, + "timeout": "long" + } + ], [ - null, - {} + "speculation-rules/prefetch/cookie-indices.https.html?include=unchangedWithRedirect", + { + "testdriver": true, + "timeout": "long" + } ] ], - "claim-worker-fetch.https.html": [ - "7cb26c742b97d3d768e01ec09adb1ceeca99dc86", + "cross-origin-cookies.https.html": [ + "a16872fcef9c1b836b6b24a380bd12f068d55209", [ null, - {} + { + "testdriver": true, + "timeout": "long" + } ] ], - "client-id.https.html": [ - "b93b34189999fe37d89d27fba1d4400994b276cb", + "different-initiators-2.https.html": [ + "dc314d22c54f521390a8358bd6686b870d05281f", [ null, - {} + { + "timeout": "long" + } ] ], - "client-navigate.https.html": [ - "f40a08635cfd1e0345a64228ccab82302439f7dd", + "different-initiators.sub.https.html": [ + "691dfd855ead5b073b8c757e295b7f148ddd3964", [ - null, + "speculation-rules/prefetch/different-initiators.sub.https.html?cross-site-1", { "timeout": "long" } - ] - ], - "client-url-of-blob-url-worker.https.html": [ - "97a2fcf98f290c290b3489b81c9187922e3e711b", + ], [ - null, - {} - ] - ], - "clients-get-client-types.https.html": [ - "63e3e51b3202de927d89833b31035792369aec39", + "speculation-rules/prefetch/different-initiators.sub.https.html?cross-site-2", + { + "timeout": "long" + } + ], [ - null, - {} + "speculation-rules/prefetch/different-initiators.sub.https.html?same-site", + { + "timeout": "long" + } ] ], - "clients-get-cross-origin.https.html": [ - "1e4acfb286c6bcf2375fc762f9d60ea2d9f1cdc4", + "document-rules.https.html": [ + "805f1cfbc36bfddaf84f5063d8f0d990a0ef78a1", [ - null, + "speculation-rules/prefetch/document-rules.https.html?include=and", {} - ] - ], - "clients-get-resultingClientId.https.html": [ - "3419cf14b523db41af70c7896d4aaa497441fb9b", + ], [ - null, + "speculation-rules/prefetch/document-rules.https.html?include=baseURLChangedByBaseElement", {} - ] - ], - "clients-get.https.html": [ - "4cfbf595cadeeea5fc8a5089127c5687ec174f53", + ], [ - null, + "speculation-rules/prefetch/document-rules.https.html?include=baseURLChangedBySameDocumentNavigation", {} - ] - ], - "clients-matchall-blob-url-worker.https.html": [ - "c29bac8b894a2c50828ae3469d3e181d227fe7ac", + ], [ - null, + "speculation-rules/prefetch/document-rules.https.html?include=defaultPredicate", {} - ] - ], - "clients-matchall-client-types.https.html": [ - "54f182b6202cd67cc63e159e7e2d4294fdf975ff", + ], [ - null, + "speculation-rules/prefetch/document-rules.https.html?include=hrefMatches", {} - ] - ], - "clients-matchall-exact-controller.https.html": [ - "a61c8af70196ac230c4b7085862e1bff8433fe38", + ], [ - null, + "speculation-rules/prefetch/document-rules.https.html?include=immediateMutation", {} - ] - ], - "clients-matchall-frozen.https.html": [ - "479c28a60f2e4a2e32ea765a7480301360c34505", + ], [ - null, + "speculation-rules/prefetch/document-rules.https.html?include=invalidPredicate", {} - ] - ], - "clients-matchall-include-uncontrolled.https.html": [ - "9f34e5709eb3cb607dcd1b91ec80b51c3706dca6", + ], [ - null, + "speculation-rules/prefetch/document-rules.https.html?include=linkHrefChanged", {} - ] - ], - "clients-matchall-on-evaluation.https.html": [ - "8705f85b56840976e5bedf3ea780efb8830747f5", + ], [ - null, + "speculation-rules/prefetch/document-rules.https.html?include=linkInShadowTree", {} - ] - ], - "clients-matchall-order.https.html": [ - "ec650f2264df530bd34b11737c4b1d9ed87f4b56", - [ - null, - { - "timeout": "long" - } - ] - ], - "clients-matchall.https.html": [ - "ce44f1924d54952afe442b19bd0b46c5f92951d5", + ], [ - null, + "speculation-rules/prefetch/document-rules.https.html?include=linkToSelfFragment", {} - ] - ], - "controlled-dedicatedworker-postMessage.https.html": [ - "7e2a604621d307b01e6efc14836dacb250dcc19b", + ], [ - null, + "speculation-rules/prefetch/document-rules.https.html?include=newRuleSetAdded", {} - ] - ], - "controlled-iframe-postMessage.https.html": [ - "8f39b7fdbf86acc144c5984c177b533a29f809eb", + ], [ - null, + "speculation-rules/prefetch/document-rules.https.html?include=not", {} - ] - ], - "controller-on-disconnect.https.html": [ - "f23dfe71bac505f1cc396bcab191dbee7a6461f4", + ], [ - null, + "speculation-rules/prefetch/document-rules.https.html?include=or", {} - ] - ], - "controller-on-load.https.html": [ - "e4c5e5f81f8139e1c788f068f716cdbb367fb83e", + ], [ - null, + "speculation-rules/prefetch/document-rules.https.html?include=selectorMatches", {} - ] - ], - "controller-on-reload.https.html": [ - "2e966d425788c0a02b1bb25a4c045089fede5ce7", + ], [ - null, + "speculation-rules/prefetch/document-rules.https.html?include=selectorMatchesDisplayLocked", {} - ] - ], - "controller-with-no-fetch-event-handler.https.html": [ - "d947139c9e213a51e8810aacb3bb40a08cfdc937", + ], [ - null, + "speculation-rules/prefetch/document-rules.https.html?include=selectorMatchesDisplayNone", {} - ] - ], - "credentials.https.html": [ - "0a90dc2897c27323682a6e16bfd6aaa5370855e0", + ], [ - null, + "speculation-rules/prefetch/document-rules.https.html?include=selectorMatchesInShadowTree", {} - ] - ], - "data-iframe.html": [ - "d767d574345bf7058d58381d94e5dabffd1fca9e", + ], [ - null, + "speculation-rules/prefetch/document-rules.https.html?include=selectorMatchesScopingRoot", {} - ] - ], - "data-transfer-files.https.html": [ - "c503a28f965b296b346de237aee77b46414bb7cd", + ], [ - null, + "speculation-rules/prefetch/document-rules.https.html?include=unslottedLink", {} ] ], - "dedicated-worker-service-worker-interception.https.html": [ - "2144f4827121b4902d8c56a61df823f04ee8801d", + "duplicate-urls.https.html": [ + "f9e46a6a384a5d1c15e9314a64b610186d63b11e", [ null, {} ] ], - "detached-context.https.html": [ - "ce8e4cc8400c6a457c968a9d1250fde829369ed3", + "fragment.https.html": [ + "7b35500303e16b6e9e68661d83daeb0c76bffd45", [ null, {} ] ], - "embed-and-object-are-not-intercepted.https.html": [ - "581dbeca9772268ab85a2b50d8f7f45cf61e781f", + "implicit-source.https.html": [ + "b0b166798466f272234dd4e597941b5ffff07ff6", [ null, {} ] ], - "extendable-event-async-waituntil.https.html": [ - "04e98266b4f1a0b6ec572e1c317ab852fc2e4480", + "initiators-a-element.sub.https.html": [ + "9cfedb20efa5eb1cf192a3256834b3316fbe743f", [ - null, + "speculation-rules/prefetch/initiators-a-element.sub.https.html?cross-site", { "timeout": "long" } - ] - ], - "extendable-event-waituntil.https.html": [ - "33b4eac5c185e911023094f210ce4db9b6dddadb", - [ - null, - {} - ] - ], - "fetch-audio-tainting.https.html": [ - "9821759bc7b311672a54387edc7d8c26a11d5e54", - [ - null, - {} - ] - ], - "fetch-canvas-tainting-double-write.https.html": [ - "dab2153baa6f462bdafa68b555cc198ccce09398", - [ - null, - {} - ] - ], - "fetch-canvas-tainting-image-cache.https.html": [ - "213238112257923657fe84a637ddd45cc0c038c5", + ], [ - null, - {} + "speculation-rules/prefetch/initiators-a-element.sub.https.html?same-site", + { + "timeout": "long" + } ] ], - "fetch-canvas-tainting-image.https.html": [ - "57dc7d98caa2f486cbe2dee05c8f430ad560f9e3", + "initiators-iframe-location-href.sub.https.html": [ + "0c195ee454f03b60432e2a5f3a02d6a0d748cb4f", [ - null, - {} - ] - ], - "fetch-canvas-tainting-video-cache.https.html": [ - "c37e8e562448793d7da4f4722893ca7bbe19f3ac", + "speculation-rules/prefetch/initiators-iframe-location-href.sub.https.html?cross-site", + { + "timeout": "long" + } + ], [ - null, + "speculation-rules/prefetch/initiators-iframe-location-href.sub.https.html?same-site", { "timeout": "long" } ] ], - "fetch-canvas-tainting-video-with-range-request.https.html": [ - "28c3071804767b10a1bfe08ee6bc57855c274bcc", + "initiators-window-open.sub.https.html": [ + "6923d44dfba5fd289f2f82bed2295d0c36586fff", [ - null, - {} - ] - ], - "fetch-canvas-tainting-video.https.html": [ - "e8c23a2edd63c55a77ea8484fafae2b3c52d15a0", + "speculation-rules/prefetch/initiators-window-open.sub.https.html?cross-site", + { + "timeout": "long" + } + ], [ - null, + "speculation-rules/prefetch/initiators-window-open.sub.https.html?same-site", { "timeout": "long" } ] ], - "fetch-cors-exposed-header-names.https.html": [ - "317b02175f2f15d467d3336cd48ca0fc21b473cc", + "invalid-rules.https.html": [ + "0fdfacde643958093d4b190f5bb8a5bfa733e47d", [ null, {} ] ], - "fetch-cors-xhr.https.html": [ - "f8ff445673bd42bafcc29c43eb86967dac1f9792", + "multiple-url.https.html": [ + "34a8817a98213d50bc8c129356fc92fc6ca97d2a", [ null, {} ] ], - "fetch-csp.https.html": [ - "9e7b242b69aaaebcdf064fb019831828e8ba1f87", + "navigation-timing-delivery-type.https.html": [ + "abbc8652ec32f30d09de5094462ae08fa77a2dd6", [ - null, + "speculation-rules/prefetch/navigation-timing-delivery-type.https.html?prefetch=false&bypass_cache=false", {} - ] - ], - "fetch-error.https.html": [ - "e9fdf57431203e308f3bf9839d40bdf2b53f4918", + ], [ - null, + "speculation-rules/prefetch/navigation-timing-delivery-type.https.html?prefetch=false&bypass_cache=true", {} - ] - ], - "fetch-event-add-async.https.html": [ - "ac13e4f41675c22669862751b9209835d7210231", + ], [ - null, + "speculation-rules/prefetch/navigation-timing-delivery-type.https.html?prefetch=true&bypass_cache=false", {} - ] - ], - "fetch-event-after-navigation-within-page.https.html": [ - "4812d8a91551edae84b5e2805804fc9d8899f3e9", + ], [ - null, + "speculation-rules/prefetch/navigation-timing-delivery-type.https.html?prefetch=true&bypass_cache=true", {} ] ], - "fetch-event-async-respond-with.https.html": [ - "d9147f85494c21e54d39a4fd7af16efa1a126384", + "navigation-timing-requestStart-responseStart.https.html": [ + "2687b5bf2c2d0aa46a202cd0552252c2735931e4", [ - null, + "speculation-rules/prefetch/navigation-timing-requestStart-responseStart.https.html?include=afterResponse", {} - ] - ], - "fetch-event-handled.https.html": [ - "08b88ce3773d036cf1ea3a9f321f87b26d54fffd", + ], [ - null, + "speculation-rules/prefetch/navigation-timing-requestStart-responseStart.https.html?include=noPrefetch", {} - ] - ], - "fetch-event-network-error.https.html": [ - "fea2ad1e3c26effcc9fd7c8d7a66917e420606b4", + ], [ - null, + "speculation-rules/prefetch/navigation-timing-requestStart-responseStart.https.html?include=waitingForRedirect", {} - ] - ], - "fetch-event-redirect.https.html": [ - "522928475702bf41a425a94595839ae8e38a8c70", - [ - null, - { - "timeout": "long" - } - ] - ], - "fetch-event-referrer-policy.https.html": [ - "af4b20a9a4a7b766509944b59db332fe70e8cf78", + ], [ - null, + "speculation-rules/prefetch/navigation-timing-requestStart-responseStart.https.html?include=waitingForResponse", {} ] ], - "fetch-event-respond-with-argument.https.html": [ - "05e22105243f710273f56e21502659ad1781e28c", + "navigation-timing-sizes.https.html": [ + "b3cca1c22dadf49b0f107c383e173b41c65c873b", [ - null, + "speculation-rules/prefetch/navigation-timing-sizes.https.html?bypass_cache=true", {} - ] - ], - "fetch-event-respond-with-body-loaded-in-chunk.https.html": [ - "932f9030c51ce6e09d4dba08f0dab19dec6e8b15", + ], [ - null, - { - "timeout": "long" - } - ] - ], - "fetch-event-respond-with-custom-response.https.html": [ - "645a29c9b4f146b8c4024650c358c8325663cbac", + "speculation-rules/prefetch/navigation-timing-sizes.https.html?default", + {} + ], [ - null, + "speculation-rules/prefetch/navigation-timing-sizes.https.html?prefetch=true", {} - ] - ], - "fetch-event-respond-with-partial-stream.https.html": [ - "505cef2972683c84f0e0927d582da3861f6f88f0", + ], [ - null, + "speculation-rules/prefetch/navigation-timing-sizes.https.html?prefetch=true&bypass_cache=true", {} ] ], - "fetch-event-respond-with-readable-stream-chunk.https.html": [ - "4544a9e08f562c9787153470c0cbd6a9ad6f4dea", + "no-vary-search": { + "prefetch-single-with-hint.https.html": [ + "f2d8b3090e1f8447f86bd62a6f24ca9daae06ec7", + [ + "speculation-rules/prefetch/no-vary-search/prefetch-single-with-hint.https.html?1-1", + {} + ], + [ + "speculation-rules/prefetch/no-vary-search/prefetch-single-with-hint.https.html?10-10", + {} + ], + [ + "speculation-rules/prefetch/no-vary-search/prefetch-single-with-hint.https.html?11-11", + {} + ], + [ + "speculation-rules/prefetch/no-vary-search/prefetch-single-with-hint.https.html?12-12", + {} + ], + [ + "speculation-rules/prefetch/no-vary-search/prefetch-single-with-hint.https.html?13-13", + {} + ], + [ + "speculation-rules/prefetch/no-vary-search/prefetch-single-with-hint.https.html?14-14", + {} + ], + [ + "speculation-rules/prefetch/no-vary-search/prefetch-single-with-hint.https.html?15-15", + {} + ], + [ + "speculation-rules/prefetch/no-vary-search/prefetch-single-with-hint.https.html?16-16", + {} + ], + [ + "speculation-rules/prefetch/no-vary-search/prefetch-single-with-hint.https.html?17-17", + {} + ], + [ + "speculation-rules/prefetch/no-vary-search/prefetch-single-with-hint.https.html?18-18", + {} + ], + [ + "speculation-rules/prefetch/no-vary-search/prefetch-single-with-hint.https.html?19-19", + {} + ], + [ + "speculation-rules/prefetch/no-vary-search/prefetch-single-with-hint.https.html?2-2", + {} + ], + [ + "speculation-rules/prefetch/no-vary-search/prefetch-single-with-hint.https.html?20-20", + {} + ], + [ + "speculation-rules/prefetch/no-vary-search/prefetch-single-with-hint.https.html?21-21", + {} + ], + [ + "speculation-rules/prefetch/no-vary-search/prefetch-single-with-hint.https.html?22-22", + {} + ], + [ + "speculation-rules/prefetch/no-vary-search/prefetch-single-with-hint.https.html?23-23", + {} + ], + [ + "speculation-rules/prefetch/no-vary-search/prefetch-single-with-hint.https.html?24-24", + {} + ], + [ + "speculation-rules/prefetch/no-vary-search/prefetch-single-with-hint.https.html?25-25", + {} + ], + [ + "speculation-rules/prefetch/no-vary-search/prefetch-single-with-hint.https.html?26-26", + {} + ], + [ + "speculation-rules/prefetch/no-vary-search/prefetch-single-with-hint.https.html?27-27", + {} + ], + [ + "speculation-rules/prefetch/no-vary-search/prefetch-single-with-hint.https.html?28-last", + {} + ], + [ + "speculation-rules/prefetch/no-vary-search/prefetch-single-with-hint.https.html?3-3", + {} + ], + [ + "speculation-rules/prefetch/no-vary-search/prefetch-single-with-hint.https.html?4-4", + {} + ], + [ + "speculation-rules/prefetch/no-vary-search/prefetch-single-with-hint.https.html?5-5", + {} + ], + [ + "speculation-rules/prefetch/no-vary-search/prefetch-single-with-hint.https.html?6-6", + {} + ], + [ + "speculation-rules/prefetch/no-vary-search/prefetch-single-with-hint.https.html?7-7", + {} + ], + [ + "speculation-rules/prefetch/no-vary-search/prefetch-single-with-hint.https.html?8-8", + {} + ], + [ + "speculation-rules/prefetch/no-vary-search/prefetch-single-with-hint.https.html?9-9", + {} + ] + ], + "prefetch-single.https.html": [ + "bea186759a0402d5e09ad4551a366e993cbafb7a", + [ + "speculation-rules/prefetch/no-vary-search/prefetch-single.https.html?1-1", + {} + ], + [ + "speculation-rules/prefetch/no-vary-search/prefetch-single.https.html?10-10", + {} + ], + [ + "speculation-rules/prefetch/no-vary-search/prefetch-single.https.html?11-11", + {} + ], + [ + "speculation-rules/prefetch/no-vary-search/prefetch-single.https.html?12-12", + {} + ], + [ + "speculation-rules/prefetch/no-vary-search/prefetch-single.https.html?13-13", + {} + ], + [ + "speculation-rules/prefetch/no-vary-search/prefetch-single.https.html?14-14", + {} + ], + [ + "speculation-rules/prefetch/no-vary-search/prefetch-single.https.html?15-15", + {} + ], + [ + "speculation-rules/prefetch/no-vary-search/prefetch-single.https.html?16-16", + {} + ], + [ + "speculation-rules/prefetch/no-vary-search/prefetch-single.https.html?17-17", + {} + ], + [ + "speculation-rules/prefetch/no-vary-search/prefetch-single.https.html?18-18", + {} + ], + [ + "speculation-rules/prefetch/no-vary-search/prefetch-single.https.html?19-19", + {} + ], + [ + "speculation-rules/prefetch/no-vary-search/prefetch-single.https.html?2-2", + {} + ], + [ + "speculation-rules/prefetch/no-vary-search/prefetch-single.https.html?20-20", + {} + ], + [ + "speculation-rules/prefetch/no-vary-search/prefetch-single.https.html?21-21", + {} + ], + [ + "speculation-rules/prefetch/no-vary-search/prefetch-single.https.html?22-22", + {} + ], + [ + "speculation-rules/prefetch/no-vary-search/prefetch-single.https.html?23-23", + {} + ], + [ + "speculation-rules/prefetch/no-vary-search/prefetch-single.https.html?24-24", + {} + ], + [ + "speculation-rules/prefetch/no-vary-search/prefetch-single.https.html?25-25", + {} + ], + [ + "speculation-rules/prefetch/no-vary-search/prefetch-single.https.html?26-26", + {} + ], + [ + "speculation-rules/prefetch/no-vary-search/prefetch-single.https.html?27-27", + {} + ], + [ + "speculation-rules/prefetch/no-vary-search/prefetch-single.https.html?28-28", + {} + ], + [ + "speculation-rules/prefetch/no-vary-search/prefetch-single.https.html?29-29", + {} + ], + [ + "speculation-rules/prefetch/no-vary-search/prefetch-single.https.html?3-3", + {} + ], + [ + "speculation-rules/prefetch/no-vary-search/prefetch-single.https.html?30-last", + {} + ], + [ + "speculation-rules/prefetch/no-vary-search/prefetch-single.https.html?4-4", + {} + ], + [ + "speculation-rules/prefetch/no-vary-search/prefetch-single.https.html?5-5", + {} + ], + [ + "speculation-rules/prefetch/no-vary-search/prefetch-single.https.html?6-6", + {} + ], + [ + "speculation-rules/prefetch/no-vary-search/prefetch-single.https.html?7-7", + {} + ], + [ + "speculation-rules/prefetch/no-vary-search/prefetch-single.https.html?8-8", + {} + ], + [ + "speculation-rules/prefetch/no-vary-search/prefetch-single.https.html?9-9", + {} + ] + ] + }, + "out-of-document-rule-set.https.html": [ + "24502ee5138a861b1bfa134b5102c904cf79cc2f", [ - null, + "speculation-rules/prefetch/out-of-document-rule-set.https.html?include=BaseCase", {} - ] - ], - "fetch-event-respond-with-readable-stream.https.html": [ - "4651258e6ab2cec042d673ba7cca4b5454653e48", + ], [ - null, + "speculation-rules/prefetch/out-of-document-rule-set.https.html?include=EmptyRuleSet", {} - ] - ], - "fetch-event-respond-with-response-body-with-invalid-chunk.https.html": [ - "2a44811461a649c6ead9460c4a5a911bbd8e608b", + ], [ - null, + "speculation-rules/prefetch/out-of-document-rule-set.https.html?include=FailCORS", {} - ] - ], - "fetch-event-respond-with-stops-propagation.https.html": [ - "31fd616b6d6f509b7dcb6b56f45e9c2e12e9b8e6", + ], [ - null, + "speculation-rules/prefetch/out-of-document-rule-set.https.html?include=FailToParseRuleSet", {} - ] - ], - "fetch-event-throws-after-respond-with.https.html": [ - "d98fb22ff423271dd84460200ebdb60573ed6371", + ], [ - null, + "speculation-rules/prefetch/out-of-document-rule-set.https.html?include=FailToParseSpeculationRulesHeader", {} - ] - ], - "fetch-event-within-sw.https.html": [ - "0b52b18305faa1e36ea6873ed534913adb6e5c75", + ], [ - null, - { - "timeout": "long" - } - ] - ], - "fetch-event.https.h2.html": [ - "5cd381ec98dbee28586f4da68f3656706b81b03a", + "speculation-rules/prefetch/out-of-document-rule-set.https.html?include=FollowRedirect", + {} + ], [ - null, - { - "timeout": "long" - } - ] - ], - "fetch-event.https.html": [ - "ce53f3c9bff3f7b4bc1377891adfdfd6a322f2d5", + "speculation-rules/prefetch/out-of-document-rule-set.https.html?include=InnerListInSpeculationRulesHeader", + {} + ], [ - null, - { - "timeout": "long" - } - ] - ], - "fetch-frame-resource.https.html": [ - "a33309f34f9872da537921a11dfc961ac142b0f8", + "speculation-rules/prefetch/out-of-document-rule-set.https.html?include=InvalidMimeType", + {} + ], [ - null, - { - "timeout": "long" - } - ] - ], - "fetch-header-visibility.https.html": [ - "1f4813c4f8e6d93a024b433db4cb45499b68425f", + "speculation-rules/prefetch/out-of-document-rule-set.https.html?include=InvalidUrlForSpeculationRulesSet", + {} + ], [ - null, + "speculation-rules/prefetch/out-of-document-rule-set.https.html?include=RelativeUrlForCandidate", {} - ] - ], - "fetch-mixed-content-to-inscope.https.html": [ - "0e8fa93b32c0701163544e354520a947a34c0a85", + ], [ - null, - { - "timeout": "long" - } - ] - ], - "fetch-mixed-content-to-outscope.https.html": [ - "391dc5d2c19ade20e864ab3b276be05a535d2d85", + "speculation-rules/prefetch/out-of-document-rule-set.https.html?include=RelativeUrlForSpeculationRulesSet", + {} + ], [ - null, - { - "timeout": "long" - } - ] - ], - "fetch-request-css-base-url.https.html": [ - "467a66cee464e687238c25da2fb17cb01501fb0d", + "speculation-rules/prefetch/out-of-document-rule-set.https.html?include=StatusCode199", + {} + ], [ - null, + "speculation-rules/prefetch/out-of-document-rule-set.https.html?include=StatusCode404", {} - ] - ], - "fetch-request-css-cross-origin.https.html": [ - "d9c1c7f5df2c64f190235af53f83139d09ff0680", + ], [ - null, + "speculation-rules/prefetch/out-of-document-rule-set.https.html?include=UseNonUTF8EncodingForSpeculationRulesSet", {} ] ], - "fetch-request-css-images.https.html": [ - "586dea26135fc535bf812d86c9854541daabbc39", + "prefetch-single.https.html": [ + "15a4466880611dbb3ea14f192ab0329d3d500252", [ - null, + "speculation-rules/prefetch/prefetch-single.https.html?from_protocol=http&to_protocol=http", {} - ] - ], - "fetch-request-fallback.https.html": [ - "a29f31d127bc7b7ce160cb7147d90db310d55d68", + ], [ - null, + "speculation-rules/prefetch/prefetch-single.https.html?from_protocol=http&to_protocol=https", {} - ] - ], - "fetch-request-no-freshness-headers.https.html": [ - "03b7d357610a904ed264b691054b6025f7fa2414", + ], [ - null, + "speculation-rules/prefetch/prefetch-single.https.html?from_protocol=https&to_protocol=http", {} - ] - ], - "fetch-request-redirect.https.html": [ - "5ce015b421fcaf73777926b6cb1f1a2aa0a1d30f", + ], [ - null, - { - "timeout": "long" - } + "speculation-rules/prefetch/prefetch-single.https.html?from_protocol=https&to_protocol=https", + {} ] ], - "fetch-request-resources.https.html": [ - "b4680c3ccd58d9d7def9d69ff1d1048a6ae02905", + "prefetch-status.https.html": [ + "94d6a4020e14cfe644682d9b7ae05c6e4f2b4273", [ - null, + "speculation-rules/prefetch/prefetch-status.https.html?status=200&should_prefetch=true", {} - ] - ], - "fetch-request-xhr-sync-error.https.window.js": [ - "e6c0213928669d21089982730c0334cde8c20f6a", + ], [ - "service-workers/service-worker/fetch-request-xhr-sync-error.https.window.html", - { - "script_metadata": [ - [ - "script", - "resources/test-helpers.sub.js" - ] - ] - } - ] - ], - "fetch-request-xhr-sync-on-worker.https.html": [ - "9f18096aa29bb4635cfeaf0eb9fc39cff5bcc243", + "speculation-rules/prefetch/prefetch-status.https.html?status=250&should_prefetch=true", + {} + ], [ - null, + "speculation-rules/prefetch/prefetch-status.https.html?status=299&should_prefetch=true", {} - ] - ], - "fetch-request-xhr-sync.https.html": [ - "ec27fb898343e70ab24486983212ef6b5744cf16", + ], [ - null, + "speculation-rules/prefetch/prefetch-status.https.html?status=400&should_prefetch=false", {} - ] - ], - "fetch-request-xhr.https.html": [ - "37a457393b059774ba2e55e0330d520b2211183c", + ], [ - null, + "speculation-rules/prefetch/prefetch-status.https.html?status=500&should_prefetch=false", {} ] ], - "fetch-response-taint.https.html": [ - "8e190f48506cc3f804fe107423756f45c7a17b43", + "prefetch-traverse-reload.sub.html": [ + "2b66db2f8aec5ea12575f73a51a98a805c6e999b", [ null, { @@ -712540,15 +741419,23 @@ } ] ], - "fetch-response-xhr.https.html": [ - "891eb029422b7bf1cd575270cfa4616bb80da0bc", + "prefetch-uses-cache.sub.https.html": [ + "c0e9e73c75e877f4e130a26de6764c8966ef8620", [ - null, - {} + "speculation-rules/prefetch/prefetch-uses-cache.sub.https.html?cross-site", + { + "timeout": "long" + } + ], + [ + "speculation-rules/prefetch/prefetch-uses-cache.sub.https.html?same-site", + { + "timeout": "long" + } ] ], - "fetch-waits-for-activate.https.html": [ - "7c888450f0d5f5fc72ec38909487877f38a1c024", + "redirect-url.sub.https.html": [ + "02bb35349ff9f72e74d0244473447b9ea89ce9a4", [ null, { @@ -712556,214 +741443,156 @@ } ] ], - "getregistration.https.html": [ - "634c2efa12461a811d8e46345ece0298086f64b2", + "referrer-policy-from-rules.https.html": [ + "5024052eb464a38a0f5c244af1deac239af6f30c", [ - null, + "speculation-rules/prefetch/referrer-policy-from-rules.https.html?1-1", {} - ] - ], - "getregistrations.https.html": [ - "3a9b9a23317b2bb1370689b553a49c28de4cf8f8", + ], [ - null, + "speculation-rules/prefetch/referrer-policy-from-rules.https.html?2-2", {} - ] - ], - "global-serviceworker.https.any.js": [ - "19d77847c426180e04ac51e507c1714c1309a193", + ], [ - "service-workers/service-worker/global-serviceworker.https.any.serviceworker.html", - { - "script_metadata": [ - [ - "title", - "serviceWorker on service worker global" - ], - [ - "global", - "serviceworker" - ] - ] - } - ] - ], - "historical.https.any.js": [ - "20b3ddfbf7b883026b70692cf0f907dc93f5ad2b", + "speculation-rules/prefetch/referrer-policy-from-rules.https.html?3-3", + {} + ], [ - "service-workers/service-worker/historical.https.any.serviceworker.html", - { - "script_metadata": [ - [ - "global", - "serviceworker" - ] - ] - } - ] - ], - "http-to-https-redirect-and-register.https.html": [ - "5626237dcccbf279029ca072b8a0bc9e845fbb1c", + "speculation-rules/prefetch/referrer-policy-from-rules.https.html?4-4", + {} + ], [ - null, + "speculation-rules/prefetch/referrer-policy-from-rules.https.html?5-5", {} - ] - ], - "immutable-prototype-serviceworker.https.html": [ - "e63f6b348a861345101670b9c3d87aaa4977b0c4", + ], [ - null, + "speculation-rules/prefetch/referrer-policy-from-rules.https.html?6-6", {} - ] - ], - "import-scripts-cross-origin.https.html": [ - "773708a9fbce32a6b17f22d88b9fb6ebc3553710", + ], [ - null, + "speculation-rules/prefetch/referrer-policy-from-rules.https.html?7-7", {} - ] - ], - "import-scripts-data-url.https.html": [ - "f0922193dd0112b72881d05a97aafc67c5bdc3d5", + ], [ - null, + "speculation-rules/prefetch/referrer-policy-from-rules.https.html?8-last", {} ] ], - "import-scripts-mime-types.https.html": [ - "1679831d0f2b98aee22898d820373e80079fbe00", + "referrer-policy-not-accepted.https.html": [ + "8cb7388479b9a56c16c79df8e03e00aacab7bf54", [ - null, + "speculation-rules/prefetch/referrer-policy-not-accepted.https.html?1-1", {} - ] - ], - "import-scripts-redirect.https.html": [ - "07ea49439eba8f9762b2bc17b5ae2346d9d15397", + ], [ - null, + "speculation-rules/prefetch/referrer-policy-not-accepted.https.html?2-2", {} - ] - ], - "import-scripts-resource-map.https.html": [ - "4742bd01268360477bf6061f8505fe9a3b7cadb7", + ], [ - null, + "speculation-rules/prefetch/referrer-policy-not-accepted.https.html?3-last", {} ] ], - "import-scripts-updated-flag.https.html": [ - "09b4496aa0ec1d28b9e101a6ba8a41a31b654540", + "referrer-policy.https.html": [ + "8eb24c45815fd2601d19a7f46152ecc36cb0e6a9", [ - null, + "speculation-rules/prefetch/referrer-policy.https.html?1-1", {} - ] - ], - "indexeddb.https.html": [ - "be9be4968f7b2d0cbc1f18f88b06b7acb6ad096f", + ], [ - null, + "speculation-rules/prefetch/referrer-policy.https.html?2-2", {} - ] - ], - "install-event-type.https.html": [ - "7e74af85c3aee401f99add7a2a0209ddbe700f86", + ], [ - null, + "speculation-rules/prefetch/referrer-policy.https.html?3-3", {} - ] - ], - "installing.https.html": [ - "0f257b6aba4f3d65802e7d7f8a7503d6c6aedd42", + ], [ - null, + "speculation-rules/prefetch/referrer-policy.https.html?4-last", {} ] ], - "interface-requirements-sw.https.html": [ - "eef868c889f04d257055d9f08ce22832b6cc34fd", + "same-origin-cookies.https.html": [ + "2f93c1ebb4f5cecb17cbb9fadd1263de815b276a", [ - null, + "speculation-rules/prefetch/same-origin-cookies.https.html?1-1", { + "testdriver": true, "timeout": "long" } - ] - ], - "invalid-blobtype.https.html": [ - "1c5920fb039101b18fc3c39e53f7cbb9b5e1ebfc", - [ - null, - {} - ] - ], - "invalid-header.https.html": [ - "1bc976979046c127ad3d2f4282ce297e997b903d", + ], [ - null, - {} + "speculation-rules/prefetch/same-origin-cookies.https.html?2-last", + { + "testdriver": true, + "timeout": "long" + } ] ], - "iso-latin1-header.https.html": [ - "c27a5f48a5b9e9384a5c9129d0288761b0df9cd7", + "user-pass.https.html": [ + "011e6137e61ad8afb21070a7d3e341a42061c000", [ - null, - {} - ] - ], - "local-url-inherit-controller.https.html": [ - "6702abcadbb18958af4cb581d6286685f90b60c4", + "speculation-rules/prefetch/user-pass.https.html?cross-origin=false", + { + "timeout": "long" + } + ], [ - null, + "speculation-rules/prefetch/user-pass.https.html?cross-origin=true", { "timeout": "long" } ] - ], - "mime-sniffing.https.html": [ - "8175bcdf87790b3560bd5e5a49f4da94b1175a04", + ] + }, + "prerender": { + "about-blank-iframes.html": [ + "af289197c6e62c952064f967022b39ac580260a8", [ null, - {} + { + "timeout": "long" + } ] ], - "multi-globals": { - "url-parsing.https.html": [ - "b9dfe3634353382e85dd0f7be4ea5b69c8083e08", - [ - null, - {} - ] - ] - }, - "multipart-image.https.html": [ - "00c20d25f90ac38c33ba57ced62d82798481dd42", + "accept-client-hint-cache.https.html": [ + "a07f47cfd4e713e9ee0031d704004969e11bdea1", [ null, - {} + { + "timeout": "long" + } ] ], - "multiple-register.https.html": [ - "752e132fc13accb94f58e3e824c64fe72c7d4222", + "activation-start.html": [ + "7aee20c3465dcfb02e370ada84b62af6e99f35d0", [ null, - {} + { + "timeout": "long" + } ] ], - "multiple-update.https.html": [ - "6a83f73a054f8a50284ae9b55bba9cde4d74c108", + "blob_object_url.html": [ + "49fb7c9e2c3618a59245090379961c6ab4b5b1ca", [ null, - {} + { + "timeout": "long" + } ] ], - "navigate-window.https.html": [ - "46d32a48a0ad9d98b3bc882b59e8924e45ee9ebc", + "cache-storage.https.html": [ + "76add1edd8bb62b614f56fc10c715eda780cf7fe", [ null, - {} + { + "timeout": "long" + } ] ], - "navigation-headers.https.html": [ - "a4b52035e221c268c74a045050f28771d0c8b9f5", + "clients-matchall.https.html": [ + "31fcc90391d8cda762e79abbd369613f84ba58e8", [ null, { @@ -712771,336 +741600,224 @@ } ] ], - "navigation-preload": { - "broken-chunked-encoding.https.html": [ - "ec74282ac330a34b68d3e0824128ecd6703ed43d", - [ - null, - {} - ] - ], - "chunked-encoding.https.html": [ - "830ce32cea5a01d5dc9814352b41f12c52956413", - [ - null, - {} - ] - ], - "empty-preload-response-body.https.html": [ - "7e8aacdd36a58cdd88d2f1e70fec69c580526f00", - [ - null, - {} - ] - ], - "get-state.https.html": [ - "08e2f4976c5995b93599dba4883d46d3b2fd7066", - [ - null, - {} - ] - ], - "navigationPreload.https.html": [ - "392e5c14dc8c7ca7d40df4396a102f379e1d55ad", - [ - null, - {} - ] - ], - "redirect.https.html": [ - "5970f053e36996f4cad93aec104c55f53055465a", - [ - null, - {} - ] - ], - "request-headers.https.html": [ - "09642010218ada72da946f8fdcf1c713f7367936", - [ - null, - {} - ] - ], - "resource-timing.https.html": [ - "468a1f51e8573e13a91a55b1c747f4acbe11ce37", - [ - null, - {} - ] - ], - "samesite-cookies.https.html": [ - "a860d9545662138570ef59808c465b33b7261b48", - [ - null, - { - "timeout": "long" - } - ] - ], - "samesite-iframe.https.html": [ - "633da9926a8cd26210bc8171b31c94653a46ebdd", - [ - null, - {} - ] - ] - }, - "navigation-redirect-body.https.html": [ - "0441c610b17978941efb832e4af202bcc4ff955b", + "cookies.https.html": [ + "2f02197fb5b191b782f45fc1f4d9f47ff6853286", [ null, - {} + { + "timeout": "long" + } ] ], - "navigation-redirect-resolution.https.html": [ - "59e1cafec3484a87fbe1f4ba31cdb2e7d3fb960d", + "credentialed-prerender-not-opt-in.html": [ + "697382a6dc8569600a34f866288f4a2405d62188", [ null, - {} + { + "timeout": "long" + } ] ], - "navigation-redirect-to-http.https.html": [ - "d4d2788c5891a1fbc3f38f448c40cacb44a980f2", + "credentialed-prerender-opt-in.html": [ + "91626bafce677b96fef8115a1a90ca533dd31482", [ null, - {} + { + "timeout": "long" + } ] ], - "navigation-redirect.https.html": [ - "a87de56931638d0939e406aa95146699e5a63603", + "cross-origin-iframe.html": [ + "0fc92fcce1c4583a39d09ef80abef7e5a804c2b8", [ - "service-workers/service-worker/navigation-redirect.https.html?client", + "speculation-rules/prerender/cross-origin-iframe.html?target_hint=_blank", { "timeout": "long" } ], [ - "service-workers/service-worker/navigation-redirect.https.html?default", + "speculation-rules/prerender/cross-origin-iframe.html?target_hint=_self", { "timeout": "long" } ] ], - "navigation-sets-cookie.https.html": [ - "7f6c756f557241fb2e2a56c0bcff8b05d0ff1e4c", + "cross-origin-isolated.https.html": [ + "9d5d8b369307af060584279977827d06d97f37e1", [ - null, + "speculation-rules/prerender/cross-origin-isolated.https.html?target_hint=_blank", { "timeout": "long" } - ] - ], - "navigation-timing-extended.https.html": [ - "acb02c6fe1f56ae9cf4d61516fdbf05306050914", - [ - null, - {} - ] - ], - "navigation-timing.https.html": [ - "75cab40458c6d362caa34315388ad762fbb7d2e9", - [ - null, - {} - ] - ], - "nested-blob-url-workers.https.html": [ - "7269cbb701fabc2faa746f6ed47fba8fa9d423c8", - [ - null, - {} - ] - ], - "next-hop-protocol.https.html": [ - "7a907438d5d9f0b3ba1e198e048ea0b2e86a2415", - [ - null, - {} - ] - ], - "no-dynamic-import-in-module.any.js": [ - "f7c2ef37b8b938df9b8ccae12511dfbe58d8e694", + ], [ - "service-workers/service-worker/no-dynamic-import-in-module.any.serviceworker-module.html", + "speculation-rules/prerender/cross-origin-isolated.https.html?target_hint=_self", { - "script_metadata": [ - [ - "global", - "serviceworker-module" - ] - ] + "timeout": "long" } ] ], - "no-dynamic-import.any.js": [ - "25b370b7094bf8f92cc347693c9ac5a1fa664845", + "csp-script-src-elem-inline-speculation-rules.html": [ + "7f33c32793bef2afa773abf27be3158797fbdd30", [ - "service-workers/service-worker/no-dynamic-import.any.serviceworker.html", + "speculation-rules/prerender/csp-script-src-elem-inline-speculation-rules.html?target_hint=_blank", { - "script_metadata": [ - [ - "global", - "serviceworker" - ] - ] + "timeout": "long" } - ] - ], - "onactivate-script-error.https.html": [ - "f5e80bb9a456bc57f2a821e1fd69114e6ae8638a", - [ - null, - {} - ] - ], - "oninstall-script-error.https.html": [ - "fe7f6e901206e07b611496a191a8023516aa4b84", + ], [ - null, - {} + "speculation-rules/prerender/csp-script-src-elem-inline-speculation-rules.html?target_hint=_self", + { + "timeout": "long" + } ] ], - "opaque-response-preloaded.https.html": [ - "417aa4ebec8380ec778bbe42f3ee8fb45649292f", + "csp-script-src-inline-speculation-rules.html": [ + "1d5b35c30fba7c963e4c7c62bc487352dd07804f", [ - null, - {} - ] - ], - "opaque-script.https.html": [ - "7d2121855dfa17649b81fd96aad03d93e85be22b", + "speculation-rules/prerender/csp-script-src-inline-speculation-rules.html?target_hint=_blank", + { + "timeout": "long" + } + ], [ - null, - {} + "speculation-rules/prerender/csp-script-src-inline-speculation-rules.html?target_hint=_self", + { + "timeout": "long" + } ] ], - "partitioned-claim.tentative.https.html": [ - "1f42c528e0b38f11b156f77f144daec6513c1fed", + "csp-script-src-self.html": [ + "86cf9def4a5a0d3f7e1d005e439670571bafaca6", [ - null, - {} - ] - ], - "partitioned-cookies.tentative.https.html": [ - "7a8bd3f5cf85ee94418fefe2840e3cd4a27dab9d", + "speculation-rules/prerender/csp-script-src-self.html?target_hint=_blank", + { + "timeout": "long" + } + ], [ - null, + "speculation-rules/prerender/csp-script-src-self.html?target_hint=_self", { "timeout": "long" } ] ], - "partitioned-getRegistrations.tentative.https.html": [ - "7c4d4f1e028b3966afdcfef10c060aefee54e344", + "csp-script-src-strict-dynamic.html": [ + "d5d8079401127cec27cad30e3cfbb66b997b509b", [ - null, - {} - ] - ], - "partitioned-matchAll.tentative.https.html": [ - "46beec819c8ea91892706969af827ef6ed8b1a93", + "speculation-rules/prerender/csp-script-src-strict-dynamic.html?target_hint=_blank", + { + "timeout": "long" + } + ], [ - null, - {} + "speculation-rules/prerender/csp-script-src-strict-dynamic.html?target_hint=_self", + { + "timeout": "long" + } ] ], - "partitioned.tentative.https.html": [ - "17a375f9c7320291e64178695cfce8c21fae1773", + "csp-script-src-unsafe-inline.html": [ + "b9b3092a1282bd1876d9cb0d93c382a4a851923f", [ - null, - {} - ] - ], - "performance-timeline.https.html": [ - "e56e6fe416ff215341ba9b6df088f111f9645623", + "speculation-rules/prerender/csp-script-src-unsafe-inline.html?target_hint=_blank", + { + "timeout": "long" + } + ], [ - null, - {} + "speculation-rules/prerender/csp-script-src-unsafe-inline.html?target_hint=_self", + { + "timeout": "long" + } ] ], - "postmessage-blob-url.https.html": [ - "16fddd57b835240112b1a0b2b2c03835e7695e1c", + "fetch-blob.html": [ + "37577f3b5bcc386c4a7c1db6bf01a6e015f3b856", [ - null, - {} - ] - ], - "postmessage-from-waiting-serviceworker.https.html": [ - "117def9eb2a6c132d4d3f44b1cb07adcb9eeef60", + "speculation-rules/prerender/fetch-blob.html?target_hint=_blank", + { + "timeout": "long" + } + ], [ - null, - {} + "speculation-rules/prerender/fetch-blob.html?target_hint=_self", + { + "timeout": "long" + } ] ], - "postmessage-msgport-to-client.https.html": [ - "29c056080c79d581975e0929dcebd84d63b86a20", + "fetch-intercepted-by-service-worker.https.html": [ + "68db1b537fc02796ffd6064f65bcea341be042b3", [ null, - {} + { + "timeout": "long" + } ] ], - "postmessage-to-client-message-queue.https.html": [ - "83e5f4540d1411e2a215ebe59d2037f369c48616", + "iframe-added-post-activation.html": [ + "d22b511e108d8b7c7f0b63f28e5bf485eca98758", [ null, - {} + { + "timeout": "long" + } ] ], - "postmessage-to-client.https.html": [ - "f834a4bffe20c69cbd57ae4c6bf922083d3554d6", + "indexeddb.html": [ + "f8240014dee43382e7320abf99eaa270e04fd434", [ null, - {} + { + "timeout": "long" + } ] ], - "postmessage.https.html": [ - "7abb3022f91a8daa5bf0f98fa0d4793780f4844c", + "local-storage.html": [ + "2f7428746cc5be76ec683e6cf1eeaa49ce1adfb6", [ - null, - {} - ] - ], - "ready.https.window.js": [ - "6c4e270682c256996c2d665a35ede28d39d6594b", + "speculation-rules/prerender/local-storage.html?target_hint=_blank", + { + "timeout": "long" + } + ], [ - "service-workers/service-worker/ready.https.window.html", + "speculation-rules/prerender/local-storage.html?target_hint=_self", { - "script_metadata": [ - [ - "title", - "Service Worker: navigator.serviceWorker.ready" - ], - [ - "script", - "resources/test-helpers.sub.js" - ] - ] + "timeout": "long" } ] ], - "redirected-response.https.html": [ - "71b35d0e12050623d650ca822c780037d8258422", + "main-frame-navigation.https.html": [ + "2391f72197ffbf1a8f7c77ba1c48327e3e4d043b", [ null, - {} + { + "timeout": "long" + } ] ], - "referer.https.html": [ - "0957e4c5330168b08236ff7c431706a1d92cc1a4", + "media-autoplay.html": [ + "f5d3291ffdca4ebf4beef6d3eb13c15fa3ec8f62", [ null, - {} + { + "timeout": "long" + } ] ], - "referrer-policy-header.https.html": [ - "784343e6d8f1fc864af9145539d3f3f2f0d3b261", + "navigation-api-location-replace.html": [ + "e3ecf1b72b61f5cfbb610906c2c4049ace2d51eb", [ null, - {} + { + "timeout": "long" + } ] ], - "referrer-toplevel-script-fetch.https.html": [ - "65c60a11db20aabce766b4b414a35cb3ddffd466", + "navigation-api-multiple-entries.html": [ + "e8e0f874597081ca12e653e04c3c9c43716778cf", [ null, { @@ -713108,8 +741825,8 @@ } ] ], - "register-closed-window.https.html": [ - "9c1b639bb757d02949746d3fa584db8bbf286066", + "navigation-api.html": [ + "fd25e94b5b32d56faac7875f88f48fe484cde3d0", [ null, { @@ -713117,2617 +741834,1056 @@ } ] ], - "register-default-scope.https.html": [ - "1d86548eb5eeb5754ca111dd4c55843202216b2d", + "navigation-intercepted-by-service-worker.https.html": [ + "2c40aba0e9ae9283b45a631bbefb17bb20681ad2", [ null, - {} + { + "timeout": "long" + } ] ], - "register-same-scope-different-script-url.https.html": [ - "6eb00f3071a26ed3f55ac90ca32c1b377aec23e1", + "navigator-plugins.html": [ + "4d7fa4902acad9d0edb7562136fbcc8af5bc0380", [ null, - {} + { + "timeout": "long" + } ] ], - "register-wait-forever-in-install-worker.https.html": [ - "0920b5cb223d50e31d044a9323f55c1e77b18857", + "no-vary-search-hint.https.html": [ + "3ac2757e665bdbd0ad3adb49dcbdb7a0aa5fcb94", [ - null, - {} - ] - ], - "registration-basic.https.html": [ - "759b4244a269b8c364e6d0d7eb49c42f0ba9a180", + "speculation-rules/prerender/no-vary-search-hint.https.html?1-1", + { + "timeout": "long" + } + ], [ - null, - {} - ] - ], - "registration-end-to-end.https.html": [ - "1af4582d387412f47d82a94b2fe7050a5994644a", + "speculation-rules/prerender/no-vary-search-hint.https.html?10-10", + { + "timeout": "long" + } + ], [ - null, - {} - ] - ], - "registration-events.https.html": [ - "5bcfd66846bce5b93bf09d05b65c2e352b51ffab", + "speculation-rules/prerender/no-vary-search-hint.https.html?11-11", + { + "timeout": "long" + } + ], [ - null, - {} - ] - ], - "registration-iframe.https.html": [ - "ae39ddfea3e5186bdea4c6a1a5d9f0c7e6cbc212", + "speculation-rules/prerender/no-vary-search-hint.https.html?12-12", + { + "timeout": "long" + } + ], [ - null, - {} - ] - ], - "registration-mime-types.https.html": [ - "3a21aac5c75c20c210d3fdde2a14ed063a0c8b27", + "speculation-rules/prerender/no-vary-search-hint.https.html?13-13", + { + "timeout": "long" + } + ], [ - null, + "speculation-rules/prerender/no-vary-search-hint.https.html?14-14", { "timeout": "long" } - ] - ], - "registration-schedule-job.https.html": [ - "25d758ee8f0e26459218c7359faf7d3866b313cf", + ], [ - null, + "speculation-rules/prerender/no-vary-search-hint.https.html?15-15", { "timeout": "long" } - ] - ], - "registration-scope-module-static-import.https.html": [ - "5c75295aed1cd94c1349dc25010801534bd98644", + ], [ - null, - {} - ] - ], - "registration-scope.https.html": [ - "141875f5847c399f5dbf35431a558ad885428cbc", + "speculation-rules/prerender/no-vary-search-hint.https.html?16-16", + { + "timeout": "long" + } + ], [ - null, - {} - ] - ], - "registration-script-module.https.html": [ - "9e39a1f75b27de492d5eb3842aaa254d2f662687", + "speculation-rules/prerender/no-vary-search-hint.https.html?17-17", + { + "timeout": "long" + } + ], [ - null, - {} - ] - ], - "registration-script-url.https.html": [ - "bda61adb00271ffe78b3e38e055427eb203313d5", + "speculation-rules/prerender/no-vary-search-hint.https.html?18-18", + { + "timeout": "long" + } + ], [ - null, - {} - ] - ], - "registration-script.https.html": [ - "f1e51fd265e21271537769343e0e3e05032e76b7", + "speculation-rules/prerender/no-vary-search-hint.https.html?19-19", + { + "timeout": "long" + } + ], [ - null, - {} - ] - ], - "registration-security-error.https.html": [ - "860c2d22ea935cd3af17f11e1f0a7b966e6fa4e7", + "speculation-rules/prerender/no-vary-search-hint.https.html?2-2", + { + "timeout": "long" + } + ], [ - null, - {} - ] - ], - "registration-service-worker-attributes.https.html": [ - "f7b52d5ddced18613ca225386bb57f28b9bacd62", + "speculation-rules/prerender/no-vary-search-hint.https.html?20-20", + { + "timeout": "long" + } + ], [ - null, - {} - ] - ], - "registration-updateviacache.https.html": [ - "b2f6bbc6f849c7e8051f1aedc9f476c47d5a39a4", + "speculation-rules/prerender/no-vary-search-hint.https.html?21-21", + { + "timeout": "long" + } + ], [ - null, + "speculation-rules/prerender/no-vary-search-hint.https.html?22-22", { "timeout": "long" } - ] - ], - "rejections.https.html": [ - "8002ad9a81b962756cd7b9921e0cfe974c808340", + ], [ - null, - {} - ] - ], - "request-end-to-end.https.html": [ - "a39ceadd9f3feec1b8b73643aecf7530dcc61311", + "speculation-rules/prerender/no-vary-search-hint.https.html?23-23", + { + "timeout": "long" + } + ], [ - null, - {} - ] - ], - "resource-timing-bodySize.https.html": [ - "5c2b1eba8c811c83a65446ba4ea1da29508df42c", + "speculation-rules/prerender/no-vary-search-hint.https.html?24-24", + { + "timeout": "long" + } + ], [ - null, + "speculation-rules/prerender/no-vary-search-hint.https.html?25-25", { "timeout": "long" } - ] - ], - "resource-timing-cross-origin.https.html": [ - "2155d7ff6e49f517132c7567b3fe54824e9471b2", + ], [ - null, - {} - ] - ], - "resource-timing-fetch-variants.https.html": [ - "8d4f0be01a8aad03af9de54441550d9e84d976a0", + "speculation-rules/prerender/no-vary-search-hint.https.html?26-26", + { + "timeout": "long" + } + ], [ - null, - {} - ] - ], - "resource-timing.sub.https.html": [ - "e8328f3597ba25e34f02b9dd6cca1ed491cc9bbb", + "speculation-rules/prerender/no-vary-search-hint.https.html?27-27", + { + "timeout": "long" + } + ], [ - null, - {} - ] - ], - "respond-with-body-accessed-response.https.html": [ - "f6713d89216ec0a8e5cfc6f4cbb326f0bd6e672e", + "speculation-rules/prerender/no-vary-search-hint.https.html?28-last", + { + "timeout": "long" + } + ], [ - null, - {} - ] - ], - "same-site-cookies.https.html": [ - "1d9b60d4470194abe40abc3b49e377afa7a41dde", + "speculation-rules/prerender/no-vary-search-hint.https.html?3-3", + { + "timeout": "long" + } + ], [ - null, + "speculation-rules/prerender/no-vary-search-hint.https.html?4-4", { "timeout": "long" } - ] - ], - "sandboxed-iframe-fetch-event.https.html": [ - "ba34e790ff07c8ba35d89d50df7b010e6c529e35", + ], [ - null, + "speculation-rules/prerender/no-vary-search-hint.https.html?5-5", { "timeout": "long" } - ] - ], - "sandboxed-iframe-navigator-serviceworker.https.html": [ - "70be6ef9b0a956707384030b1be17b702663976f", + ], [ - null, - {} - ] - ], - "secure-context.https.html": [ - "666a5d378760b54fd0f4fa86f9db7a05e2be5b5a", + "speculation-rules/prerender/no-vary-search-hint.https.html?6-6", + { + "timeout": "long" + } + ], [ - null, - {} - ] - ], - "service-worker-csp-connect.https.html": [ - "226f4a40e4e9ab40bbeeac4e874208af3106d2da", + "speculation-rules/prerender/no-vary-search-hint.https.html?7-7", + { + "timeout": "long" + } + ], [ - null, - {} - ] - ], - "service-worker-csp-default.https.html": [ - "1d4e7624d861bc1ce1fde706409cfad160978c41", + "speculation-rules/prerender/no-vary-search-hint.https.html?8-8", + { + "timeout": "long" + } + ], [ - null, - {} + "speculation-rules/prerender/no-vary-search-hint.https.html?9-9", + { + "timeout": "long" + } ] ], - "service-worker-csp-script.https.html": [ - "14c2eb72bdc49c4e13fa2d9da4a47be785b072f2", + "no-vary-search.https.html": [ + "3e7cffda1dded94afe1ed103a2816404d0fd54d4", [ - null, - {} - ] - ], - "service-worker-header.https.html": [ - "fb902cd1b455d130c899cf06bf05c32184d2b543", + "speculation-rules/prerender/no-vary-search.https.html?1-1", + { + "timeout": "long" + } + ], [ - null, - {} - ] - ], - "serviceworker-message-event-historical.https.html": [ - "fac8f2076fb64870550236dd27470902cdbe040c", + "speculation-rules/prerender/no-vary-search.https.html?10-10", + { + "timeout": "long" + } + ], [ - null, - {} - ] - ], - "serviceworkerobject-scripturl.https.html": [ - "6004985a34608132825086dab0c0777f3f0fdf1e", + "speculation-rules/prerender/no-vary-search.https.html?11-11", + { + "timeout": "long" + } + ], [ - null, - {} - ] - ], - "skip-waiting-installed.https.html": [ - "b604f651b3c1deb38d891c77394a8f175a19c34e", + "speculation-rules/prerender/no-vary-search.https.html?12-12", + { + "timeout": "long" + } + ], [ - null, - {} - ] - ], - "skip-waiting-using-registration.https.html": [ - "412ee2a4438e2328f69337893465c4a66c671ce6", + "speculation-rules/prerender/no-vary-search.https.html?13-13", + { + "timeout": "long" + } + ], [ - null, + "speculation-rules/prerender/no-vary-search.https.html?14-14", { "timeout": "long" } - ] - ], - "skip-waiting-without-client.https.html": [ - "62060a82472ff4426f543e91036115cd13a4329a", + ], [ - null, - {} - ] - ], - "skip-waiting-without-using-registration.https.html": [ - "ced64e5f67fb667e5c233055ad920dbda0336336", + "speculation-rules/prerender/no-vary-search.https.html?15-15", + { + "timeout": "long" + } + ], [ - null, + "speculation-rules/prerender/no-vary-search.https.html?16-16", { "timeout": "long" } - ] - ], - "skip-waiting.https.html": [ - "f8392fc955b46cdd9f1deb5a7319b8f3f35d91dd", + ], [ - null, - {} - ] - ], - "state.https.html": [ - "7358e58ff14a74e04514eb9432151576cf62b905", + "speculation-rules/prerender/no-vary-search.https.html?17-17", + { + "timeout": "long" + } + ], [ - null, - {} - ] - ], - "synced-state.https.html": [ - "0e9f63a9a2e528e7ffb8f9913edffc8e0294ad98", + "speculation-rules/prerender/no-vary-search.https.html?18-18", + { + "timeout": "long" + } + ], [ - null, - {} - ] - ], - "tentative": { - "static-router": { - "static-router-main-resource.https.html": [ - "1673b97ca7b61e4c1c193ca548c92706868a56ff", - [ - null, - {} - ] - ], - "static-router-subresource.https.html": [ - "6154c38f2d7013150021a2903d9b8a7301dc7013", - [ - null, - {} - ] - ] - } - }, - "uncontrolled-page.https.html": [ - "e22ca8f0a91adf9fbcf64c77cd3d1d4df27956f3", + "speculation-rules/prerender/no-vary-search.https.html?19-19", + { + "timeout": "long" + } + ], [ - null, - {} - ] - ], - "unregister-controller.https.html": [ - "3bf4cff7200e71a7ad157f97f60e0bca45693485", + "speculation-rules/prerender/no-vary-search.https.html?2-2", + { + "timeout": "long" + } + ], [ - null, - {} - ] - ], - "unregister-immediately-before-installed.https.html": [ - "79cdaf062dc729c8029c553b485e59d510b87982", + "speculation-rules/prerender/no-vary-search.https.html?20-20", + { + "timeout": "long" + } + ], [ - null, - {} - ] - ], - "unregister-immediately-during-extendable-events.https.html": [ - "6ba87a7ce80e198132b38b3878d069efe423b071", + "speculation-rules/prerender/no-vary-search.https.html?21-21", + { + "timeout": "long" + } + ], [ - null, - {} - ] - ], - "unregister-immediately.https.html": [ - "54be40a545220d9d58569816feef87a0ee17f891", + "speculation-rules/prerender/no-vary-search.https.html?22-22", + { + "timeout": "long" + } + ], [ - null, - {} - ] - ], - "unregister-then-register-new-script.https.html": [ - "d046423e0c29c082c22c64c865ccb38a6a40adac", + "speculation-rules/prerender/no-vary-search.https.html?23-23", + { + "timeout": "long" + } + ], [ - null, - {} - ] - ], - "unregister-then-register.https.html": [ - "b61608c8419fd4f362dee5330404e2743a2f05f6", + "speculation-rules/prerender/no-vary-search.https.html?24-24", + { + "timeout": "long" + } + ], [ - null, - {} - ] - ], - "unregister.https.html": [ - "492aecb21a875814e3a8fb89e64069989b9e31f5", + "speculation-rules/prerender/no-vary-search.https.html?25-25", + { + "timeout": "long" + } + ], [ - null, - {} - ] - ], - "update-after-navigation-fetch-event.https.html": [ - "ff51f7f902c7bf7c27e0996c61bb06edec6fce86", + "speculation-rules/prerender/no-vary-search.https.html?26-26", + { + "timeout": "long" + } + ], [ - null, + "speculation-rules/prerender/no-vary-search.https.html?27-27", { "timeout": "long" } - ] - ], - "update-after-navigation-redirect.https.html": [ - "6e821fe479f273f7b17fd8d91e681ecd283a933d", + ], [ - null, + "speculation-rules/prerender/no-vary-search.https.html?28-28", { "timeout": "long" } - ] - ], - "update-after-oneday.https.html": [ - "e7a8aa42d307799b157fd3994ac291d5c596bfd1", - [ - null, - {} - ] - ], - "update-bytecheck-cors-import.https.html": [ - "121a7378e358d632cee3ef56e79a19c865ea5c3d", + ], [ - null, + "speculation-rules/prerender/no-vary-search.https.html?29-29", { "timeout": "long" } - ] - ], - "update-bytecheck.https.html": [ - "3e5a28bb67cb75624a5dd98bd15e137e55c87b0f", + ], [ - null, + "speculation-rules/prerender/no-vary-search.https.html?3-3", { "timeout": "long" } - ] - ], - "update-import-scripts.https.html": [ - "a2df529e90dfd31a75afdac093a5dd1b74d00134", - [ - null, - {} - ] - ], - "update-missing-import-scripts.https.html": [ - "66e8bfac751e835af8e543fc5289697c15ac118d", - [ - null, - {} - ] - ], - "update-module-request-mode.https.html": [ - "b3875d207bc252dea8e43c1b585febe6d6a10f0b", + ], [ - null, + "speculation-rules/prerender/no-vary-search.https.html?30-last", { "timeout": "long" } - ] - ], - "update-no-cache-request-headers.https.html": [ - "6ebad4b7b10bcdf176c1543fd711aee31d5547b7", - [ - null, - {} - ] - ], - "update-not-allowed.https.html": [ - "0a54aa9350382bb082f407a1ea30b265575baae9", - [ - null, - {} - ] - ], - "update-on-navigation.https.html": [ - "5273420b90fc97fcd441ac057a99ee5b31c84a30", - [ - null, - {} - ] - ], - "update-recovery.https.html": [ - "17608d2ef790e2ea97a43f56b86a28ef0e647604", - [ - null, - {} - ] - ], - "update-registration-with-type.https.html": [ - "269e61b390bdb1b96c151e214f8a58109a7db3b4", - [ - null, - {} - ] - ], - "update-result.https.html": [ - "d8ed94f776650c8a40ba82df9ca5e909b460bb79", - [ - null, - {} - ] - ], - "update.https.html": [ - "f9fded3db49f02de6ce13c3b1cec209dad0779bf", + ], [ - null, + "speculation-rules/prerender/no-vary-search.https.html?4-4", { "timeout": "long" } - ] - ], - "waiting.https.html": [ - "499e581eb353a2e433580e413a730bea2a9b7ad9", - [ - null, - {} - ] - ], - "websocket-in-service-worker.https.html": [ - "cda9d6fe67e233e8b36dbfe12ddec2fa054de425", - [ - null, - {} - ] - ], - "websocket.https.html": [ - "cbfed456a9dc6bdfdbd19789912101ab1117b1ef", - [ - null, - {} - ] - ], - "webvtt-cross-origin.https.html": [ - "9394ff75c4a5f395d287ce7c57a13522efce9aee", - [ - null, - {} - ] - ], - "windowclient-navigate.https.html": [ - "ad60f786363d6ac4157d9a4372e25b6b15544109", + ], [ - null, + "speculation-rules/prerender/no-vary-search.https.html?5-5", { "timeout": "long" } - ] - ], - "worker-client-id.https.html": [ - "4e4d31660bd56add3f3559fce5e884b0c7e1f0e2", - [ - null, - {} - ] - ], - "worker-in-sandboxed-iframe-by-csp-fetch-event.https.html": [ - "c8480bf1be003903383404fa90ff28af668f6533", - [ - null, - {} - ] - ], - "worker-interception-redirect.https.html": [ - "8d566b9c15b10e1814dd73d3aecb1a6241ddec57", + ], [ - null, + "speculation-rules/prerender/no-vary-search.https.html?6-6", { "timeout": "long" } - ] - ], - "worker-interception.https.html": [ - "27983d8352fe4fad1d85c26aee24050d0c5a2978", + ], [ - null, + "speculation-rules/prerender/no-vary-search.https.html?7-7", { "timeout": "long" } - ] - ], - "xhr-content-length.https.window.js": [ - "1ae320e9c3c5713a2d47291d83ba7d72dc03c152", + ], [ - "service-workers/service-worker/xhr-content-length.https.window.html", + "speculation-rules/prerender/no-vary-search.https.html?8-8", { - "script_metadata": [ - [ - "script", - "resources/test-helpers.sub.js" - ] - ] + "timeout": "long" } - ] - ], - "xhr-response-url.https.html": [ - "673ca52cc67450f8b296ea50f7ac4c4fee310602", - [ - null, - {} - ] - ], - "xsl-base-url.https.html": [ - "1d3c36408a66a7785b884c9cdc39dcd2820f9af0", - [ - null, - {} - ] - ] - } - }, - "shadow-dom": { - "Document-prototype-adoptNode.html": [ - "6afd603618d7af99a9a71818a735b786efb36cd7", - [ - null, - {} - ] - ], - "Document-prototype-currentScript.html": [ - "176ef348fcbeb7dd7c63aedc24f78c13c1c7b048", - [ - null, - {} - ] - ], - "Document-prototype-importNode.html": [ - "f71f8dc6c5e027108176d3dfab633e2d18b78129", - [ - null, - {} - ] - ], - "DocumentOrShadowRoot-prototype-elementFromPoint.html": [ - "6893ad394b4e049416263257740925431cdbdab8", - [ - null, - {} - ] - ], - "Element-interface-attachShadow-custom-element.html": [ - "11ae277c4123d8cdb5e701e5bc3d097ff1b14dff", - [ - null, - {} - ] - ], - "Element-interface-attachShadow.html": [ - "187ac4c4087b5b9009198ba70aeb04447a60bd8b", - [ - null, - {} - ] - ], - "Element-interface-shadowRoot-attribute.html": [ - "02d8050997cfaa0b6b1668c9b350a2ae526bccdd", - [ - null, - {} - ] - ], - "Extensions-to-Event-Interface.html": [ - "806d539cad45d55d635ee55637be2c8b5c014b55", - [ - null, - {} - ] - ], - "HTMLSlotElement-interface.html": [ - "e22de32167090f7dd4db630931495d84150d52b1", - [ - null, - {} - ] - ], - "MouseEvent-prototype-offsetX-offsetY.html": [ - "643736b85c4899126fffda956fe94a40a9fb2ffc", - [ - null, - {} - ] - ], - "Node-prototype-cloneNode.html": [ - "0ee47d492e5ad0ec8c00d15d4897c19772c9651d", - [ - null, - {} - ] - ], - "Range-prototype-insertNode.html": [ - "b55ef68dcbcc8624ad8f1be066a4e01a94c28da0", - [ - null, - {} - ] - ], - "ShadowRoot-interface.html": [ - "de7ac91f250306409327ab89eae6a70f105dd630", - [ - null, - {} - ] - ], - "Slottable-mixin.html": [ - "84c7fce44501daf269e6a20c6dac8619d3b197f1", - [ - null, - {} - ] - ], - "accesskey.tentative.html": [ - "93eb912be0e222d48ebdf18850f2a36636bd8cbf", - [ - null, - { - "testdriver": true - } - ] - ], - "capturing-and-bubbling-event-listeners-across-shadow-trees.html": [ - "bcb4ee62e0c61c488791f5ac045908eacad79596", - [ - null, - {} - ] - ], - "declarative": { - "clonable.window.js": [ - "5ebeacf37cbd8abfd4bf4eae73c28958e1449f81", - [ - "shadow-dom/declarative/clonable.window.html", - {} - ] - ], - "declarative-after-attachshadow.html": [ - "bfe2d66cfa9d3921bcdb046285fdb0af69b7354a", + ], [ - null, - {} + "speculation-rules/prerender/no-vary-search.https.html?9-9", + { + "timeout": "long" + } ] ], - "declarative-parser-interaction.html": [ - "f5ff13822b04c8776326bc2b2dcb7b4501c953c0", + "prefetch.https.html": [ + "42e4fa47867210c14bc56fb67d66f544ddd111fd", [ null, - {} + { + "timeout": "long" + } ] ], - "declarative-shadow-dom-attachment.html": [ - "dcee6cf8a103ac516b430e0330e4fbc387e14056", + "prerender-while-prerender.html": [ + "8aa80baf5253f749ce1307b8ca013d753a84e96c", [ null, - {} + { + "timeout": "long" + } ] ], - "declarative-shadow-dom-basic.html": [ - "20ca34f6f3e2594f80b304c9a8339d4f751dafa7", + "referrer-policy-from-rules.html": [ + "7e3b65fe6127c9ecd6f5448d0d31be8962ff8db2", [ - null, - {} - ] - ], - "declarative-shadow-dom-opt-in.html": [ - "670e5fd0901c3254ef2913f6325da484e1195905", + "speculation-rules/prerender/referrer-policy-from-rules.html?1-1", + { + "timeout": "long" + } + ], [ - null, - {} + "speculation-rules/prerender/referrer-policy-from-rules.html?2-last", + { + "timeout": "long" + } ] ], - "declarative-with-disabled-shadow.html": [ - "bcf53403addb673b609ecbc2a4299d84a701fc3e", + "referrer-policy-mismatch.html": [ + "fa2d424660a3674ba7c7db7a248df70ba6acde73", [ null, - {} + { + "timeout": "long" + } ] ], - "getinnerhtml.tentative.html": [ - "ad7734d51e692f839627804d779190bdd85b244d", + "referrer-policy-no-referrer.html": [ + "a0d1763f95bd749c7ed3fe49a3f22348d591b6b8", [ null, - {} + { + "timeout": "long" + } ] ], - "innerhtml-before-closing-tag.html": [ - "e87c425860004f512b5ed330614af78818ad4ef4", + "referrer-policy-origin.html": [ + "95eb8ba72f7ed48c213f6cf5d85ff687719bdf28", [ null, - {} + { + "timeout": "long" + } ] ], - "innerhtml-on-ordinary-template.html": [ - "87260013def7fd7efc9ea89bf5bece36d2af348b", + "referrer-policy-strict-origin.html": [ + "0861012fa44cdf5ad10512cb43beb2de783a071b", [ null, - {} + { + "timeout": "long" + } ] ], - "move-template-before-closing-tag.html": [ - "a3d7806f5d668c32e77e013d88cd4b82ff6d40b5", + "referrer.html": [ + "c0ecc845b56e6e67b4c62f32cf778fd6ab6b9474", [ null, - {} + { + "timeout": "long" + } ] ], - "script-access.html": [ - "7e1340d477796089a759da01c3db261084be521d", - [ - null, - {} - ] - ] - }, - "event-composed-path-after-dom-mutation.html": [ - "fd129e036af711b1fa4f9a42fabcc344200fc2d6", - [ - null, - {} - ] - ], - "event-composed-path-with-related-target.html": [ - "f6dff13a93e55437246c94be3f708e79af513f95", - [ - null, - {} - ] - ], - "event-composed-path.html": [ - "8c37b1c3bdc1b0e28e69fbe6dca94865bb5f30bd", - [ - null, - {} - ] - ], - "event-composed.html": [ - "2d6a5e36585b623a89b1e5f4e059d881027a0b94", - [ - null, - {} - ] - ], - "event-dispatch-order.tentative.html": [ - "1e88740f53a2dc25d9650e4f54c3011e2b0e9355", - [ - null, - {} - ] - ], - "event-inside-shadow-tree.html": [ - "a7405a59560c790c5708a7eaa4e65b6669adc0dd", - [ - null, - {} - ] - ], - "event-inside-slotted-node.html": [ - "5f8d3b93c6b41fb5046a0f69b105df9a3855b373", - [ - null, - {} - ] - ], - "event-post-dispatch.html": [ - "239881c7e153b996d33bd94a9cf056e4593001b0", - [ - null, - {} - ] - ], - "event-with-related-target.html": [ - "77da4476025fb6160f34efb1df9cfd87226cda02", - [ - null, - {} - ] - ], - "focus": { - "DocumentOrShadowRoot-activeElement.html": [ - "20456b057e1e724cdac9bc656f3b3d6c7ac2f658", + "register-service-worker.https.html": [ + "58245c24d3da7c8dd5364ff81b021e1298249e81", [ null, { - "testdriver": true + "timeout": "long" } ] ], - "ShadowRoot-delegatesFocus.html": [ - "4b7fe4e50e72b94b690f8a6e44892a66a17fa404", + "remove-script-element.html": [ + "31f5f4bb4b9604e459b26ebd612ea12e00581ce7", [ null, {} ] ], - "blur-on-shadow-host-delegatesFocus.html": [ - "289b5543721360cfa723e6b61ca0cb672c68bfab", + "response-code-non-successful.html": [ + "68cd505b2ba56f987ec3918acd2d439fce8c1dab", [ - null, + "speculation-rules/prerender/response-code-non-successful.html?code=204", { - "testdriver": true + "timeout": "long" } - ] - ], - "click-focus-delegatesFocus-click.html": [ - "0578c15582a5cddd924199f52aeafcf6d0bc4cc2", + ], [ - null, + "speculation-rules/prerender/response-code-non-successful.html?code=205", { - "testdriver": true + "timeout": "long" } - ] - ], - "click-focus-delegatesFocus-tabindex-varies.html": [ - "4051db128a915000bff162fefe4bed55eb338061", + ], [ - null, + "speculation-rules/prerender/response-code-non-successful.html?code=402", { - "testdriver": true + "timeout": "long" } - ] - ], - "click-focus-delegatesFocus-tabindex-zero.html": [ - "5f7914f2a4e31e107caa817de1b29720c9a21862", + ], [ - null, + "speculation-rules/prerender/response-code-non-successful.html?code=404", { - "testdriver": true + "timeout": "long" } - ] - ], - "delegatesFocus-tabindex-change.html": [ - "f159c22164bb62064b62bc089faf5bd05cba555f", - [ - null, - {} - ] - ], - "focus-autofocus.html": [ - "75a50b84c6df5525b5da0df86192637b70247820", + ], [ - null, + "speculation-rules/prerender/response-code-non-successful.html?code=500", { - "testdriver": true + "timeout": "long" } - ] - ], - "focus-click-on-shadow-host.html": [ - "7a318a0200e7405b4793f2705434bef948aea61f", + ], [ - null, + "speculation-rules/prerender/response-code-non-successful.html?code=503", { - "testdriver": true + "timeout": "long" } ] ], - "focus-method-delegatesFocus-nested-browsing-context.html": [ - "d2724f17d52b93912544cda8a44aae7017918ac9", + "response-code-successful.html": [ + "eca7f38c8c3d0b4e989ef68192c6248882d44cfe", [ - null, + "speculation-rules/prerender/response-code-successful.html?code=200", { - "testdriver": true + "timeout": "long" } - ] - ], - "focus-method-delegatesFocus.html": [ - "99667029ad866a200587335c63706d97c82dfe58", + ], [ - null, + "speculation-rules/prerender/response-code-successful.html?code=201", { - "testdriver": true + "timeout": "long" } - ] - ], - "focus-method-with-delegatesFocus.html": [ - "8caea8ccda475916a5a62b93610b8f997b9d257d", + ], [ - null, + "speculation-rules/prerender/response-code-successful.html?code=202", { - "testdriver": true + "timeout": "long" } - ] - ], - "focus-pseudo-matches-on-shadow-host.html": [ - "34f8c0129456b38fc46a10c9247ed304abfd9715", + ], [ - null, - {} - ] - ], - "focus-selector-delegatesFocus.html": [ - "bbc1346a460a13f17a82046ea2cfacaca5e6e1cf", + "speculation-rules/prerender/response-code-successful.html?code=203", + { + "timeout": "long" + } + ], [ - null, - {} + "speculation-rules/prerender/response-code-successful.html?code=232", + { + "timeout": "long" + } ] ], - "focus-shadowhost-display-none.html": [ - "40f1b01f6644bb3061f82dbff05d1a924fcf631d", + "restriction-audio-setSinkId-with-invalid-sinkId.https.tentative.html": [ + "f4a362894c877d7e1d22c59da4b3ffb4f0422301", [ - null, - {} - ] - ], - "focus-tab-on-shadow-host.html": [ - "0dffc0157f53d7178ebb0ff04b3b09977642b280", + "speculation-rules/prerender/restriction-audio-setSinkId-with-invalid-sinkId.https.tentative.html?target_hint=_blank", + { + "timeout": "long" + } + ], [ - null, + "speculation-rules/prerender/restriction-audio-setSinkId-with-invalid-sinkId.https.tentative.html?target_hint=_self", { - "testdriver": true + "timeout": "long" } ] ], - "focus-tabindex-order-shadow-negative-delegatesFocus.html": [ - "356b0bb329e27bf2706cbfeda66624adc277d43d", + "restriction-audio-setSinkId.https.tentative.html": [ + "a3b6db5041817a49480a7b26f9a85332fd878441", [ - null, + "speculation-rules/prerender/restriction-audio-setSinkId.https.tentative.html?target_hint=_blank", { - "testdriver": true + "timeout": "long" } - ] - ], - "focus-tabindex-order-shadow-negative.html": [ - "ab25ea829bd10952ad6e96898fc95a1a1ae25d8f", + ], [ - null, + "speculation-rules/prerender/restriction-audio-setSinkId.https.tentative.html?target_hint=_self", { - "testdriver": true + "timeout": "long" } ] ], - "focus-tabindex-order-shadow-slot-one.html": [ - "3c9e70867c5883e96f6288b85a9bac60b9526f4e", + "restriction-background-fetch.https.html": [ + "466e886dcb97ecad4db081583f1e8cd7e0e59c17", [ - null, + "speculation-rules/prerender/restriction-background-fetch.https.html?target_hint=_blank", { - "testdriver": true + "testdriver": true, + "timeout": "long" } - ] - ], - "focus-tabindex-order-shadow-varying-delegatesFocus.html": [ - "67899cff4a9d2e2acac622147c395720fb110f72", + ], [ - null, + "speculation-rules/prerender/restriction-background-fetch.https.html?target_hint=_self", { - "testdriver": true + "testdriver": true, + "timeout": "long" } ] ], - "focus-tabindex-order-shadow-varying-tabindex-2.html": [ - "1755aaf442af97cb864531ad0f19b5e58187c32b", + "restriction-background-sync.tentative.https.html": [ + "53dbb56d99fc34c7c81fd259d3b819a066db7eb7", [ - null, + "speculation-rules/prerender/restriction-background-sync.tentative.https.html?target_hint=_blank", { - "testdriver": true + "testdriver": true, + "timeout": "long" } - ] - ], - "focus-tabindex-order-shadow-varying-tabindex-3.html": [ - "e0570395ec8c15200a3dc84744e09d99e8868d9a", + ], [ - null, + "speculation-rules/prerender/restriction-background-sync.tentative.https.html?target_hint=_self", { - "testdriver": true + "testdriver": true, + "timeout": "long" } ] ], - "focus-tabindex-order-shadow-varying-tabindex.html": [ - "875e5b6814a95754f5c01d18c125c39c363ad3c6", + "restriction-battery-status.https.html": [ + "995b3d85d9e790fe4fadad97386039fb7d3f1c01", [ - null, + "speculation-rules/prerender/restriction-battery-status.https.html?target_hint=_blank", { - "testdriver": true + "timeout": "long" } - ] - ], - "focus-tabindex-order-shadow-zero-delegatesFocus.html": [ - "5e6ab3a90f8f12274c58620220e00e6bec09fc44", + ], [ - null, + "speculation-rules/prerender/restriction-battery-status.https.html?target_hint=_self", { - "testdriver": true + "timeout": "long" } ] ], - "focus-tabindex-order-shadow-zero-host-negative.html": [ - "b491c7d237c20604039f2b6482d484635c9f50da", + "restriction-bluetooth.tentative.https.html": [ + "b642e87ef5853e156d2789525dde80fa9b1b00dd", [ null, { - "testdriver": true + "timeout": "long" } ] ], - "focus-tabindex-order-shadow-zero-host-not-set-scrollable.html": [ - "9a12d8b8f42c67a9b75accd283b59a3f6870d6af", + "restriction-broadcast-channel.html": [ + "167f5f9bc4d1992a4f97d49a72b02ac4b9c03f28", [ null, { - "testdriver": true + "timeout": "long" } ] ], - "focus-tabindex-order-shadow-zero-host-not-set.html": [ - "f257261477186b94320a48ba1650348991dc2a26", + "restriction-dedicated-worker.https.html": [ + "05cfc3937907bed27e79ff280c9e4c6ed07d0815", [ null, { - "testdriver": true + "timeout": "long" } ] ], - "focus-tabindex-order-shadow-zero-host-one.html": [ - "1aa5292997a3e28750e1437939e3c24448245c8c", + "restriction-encrypted-media-unsupported-config.https.html": [ + "312f979d082b09b835066eff5dc20454ff009c3d", [ null, { - "testdriver": true + "timeout": "long" } ] ], - "focus-tabindex-order-shadow-zero-host-scrollable.html": [ - "fa8090ca97ffee1c1dfe4b8026a3c39ed6af502a", + "restriction-encrypted-media.https.html": [ + "33836372c84c3c8dde7c50215ec7709eaad25565", [ null, { - "testdriver": true + "timeout": "long" } ] ], - "focus-tabindex-order-shadow-zero.html": [ - "d8b12ed8ac6e24553f0cccced7f1616bb588413e", + "restriction-focus.html": [ + "b606d1f8bf97586c3d056adec12f7adc8f9479cb", [ null, { - "testdriver": true + "timeout": "long" } ] - ] - }, - "focus-navigation": { - "delegatesFocus-highlight-sibling.html": [ - "dde18128ad8247f21c7e86d20fbe409de29ca6e5", + ], + "restriction-idle-detection.https.html": [ + "953d3dded45d8ab44f1c955e88697afb3ffb8db2", [ null, { - "testdriver": true + "timeout": "long" } ] ], - "focus-navigation-slot-fallback-default-tabindex.html": [ - "365edb00b814f84fa55507bffced887b3c2bea2a", + "restriction-local-file-system-access.https.html": [ + "8aecf98b2491d46b88d8504fd524c2fd765a07be", [ null, { - "testdriver": true + "timeout": "long" } ] ], - "focus-navigation-slot-fallback.html": [ - "54ee14c34bec4f7a4cb6f1fce813ec345712034a", + "restriction-media-auto-play-attribute.html": [ + "10db174db9fdc9c8a2c7c2694bb22799984867bc", [ - null, + "speculation-rules/prerender/restriction-media-auto-play-attribute.html?target_hint=_blank", { - "testdriver": true + "timeout": "long" } - ] - ], - "focus-navigation-slot-nested-2levels.html": [ - "7d733ea7c2ec1f1eaa93cf1977be53fd8ff3ad4c", + ], [ - null, + "speculation-rules/prerender/restriction-media-auto-play-attribute.html?target_hint=_self", { - "testdriver": true + "timeout": "long" } ] ], - "focus-navigation-slot-nested-delegatesFocus.html": [ - "5e4ab3ce4bacf12de69a04d6ed216bc0a9a6e795", + "restriction-media-camera.https.html": [ + "5435c737ccd33a4b655cd8713baaed873f0afa12", [ - null, + "speculation-rules/prerender/restriction-media-camera.https.html?target_hint=_blank", { - "testdriver": true + "timeout": "long" } - ] - ], - "focus-navigation-slot-nested-fallback.html": [ - "66d8c14b2b9a18235f4e82507b805041455ef52d", + ], [ - null, + "speculation-rules/prerender/restriction-media-camera.https.html?target_hint=_self", { - "testdriver": true + "timeout": "long" } ] ], - "focus-navigation-slot-nested.html": [ - "ae966afc76adbb29efb605039ac4db3ba6f87e93", + "restriction-media-capabilities-decoding-info.https.html": [ + "6bcb63b597896b9c0323dfb1bef3ba61eb8c3d02", [ - null, + "speculation-rules/prerender/restriction-media-capabilities-decoding-info.https.html?target_hint=_blank", { - "testdriver": true + "testdriver": true, + "timeout": "long" } - ] - ], - "focus-navigation-slot-shadow-in-fallback.html": [ - "418da8f5ff72ae9baee6bca9f8b1943e04c8cbe4", + ], [ - null, + "speculation-rules/prerender/restriction-media-capabilities-decoding-info.https.html?target_hint=_self", { - "testdriver": true + "testdriver": true, + "timeout": "long" } ] ], - "focus-navigation-slot-shadow-in-slot.html": [ - "eef3e1b61193807c5a92e27351cb3c8005d8484c", + "restriction-media-capabilities-encoding-info.https.html": [ + "3eb5950ee78df82d017d954bf4d791e4c7565db0", [ - null, + "speculation-rules/prerender/restriction-media-capabilities-encoding-info.https.html?target_hint=_blank", { - "testdriver": true + "testdriver": true, + "timeout": "long" } - ] - ], - "focus-navigation-slot-with-tabindex.html": [ - "d43085e984503a0b393d4bf447db6682d1698bc4", + ], [ - null, + "speculation-rules/prerender/restriction-media-capabilities-encoding-info.https.html?target_hint=_self", { - "testdriver": true + "testdriver": true, + "timeout": "long" } ] ], - "focus-navigation-slots-in-slot.html": [ - "39b080660344038a3e9a836ca819cb737a2f688c", + "restriction-media-device-info.https.html": [ + "f725145aa1592222d516df1dc5d4e8b46a7b9153", [ - null, + "speculation-rules/prerender/restriction-media-device-info.https.html?target_hint=_blank", { - "testdriver": true + "timeout": "long" } - ] - ], - "focus-navigation-slots.html": [ - "0d129ae77124c41e2936af81e97d65aad77c9dba", + ], [ - null, + "speculation-rules/prerender/restriction-media-device-info.https.html?target_hint=_self", { - "testdriver": true + "timeout": "long" } ] ], - "focus-navigation-web-component-radio.html": [ - "9304cc2ce199b0ad08c1385ef759e08518428dcc", + "restriction-media-microphone.https.html": [ + "36607ed95e64bec2c8cb943ebd2772ef3c969bbc", [ - null, + "speculation-rules/prerender/restriction-media-microphone.https.html?target_hint=_blank", { - "testdriver": true + "timeout": "long" } - ] - ], - "focus-navigation-with-delegatesFocus.html": [ - "64942a109e0281a5e0806214428ffbc8f05f8c6c", + ], [ - null, + "speculation-rules/prerender/restriction-media-microphone.https.html?target_hint=_self", { - "testdriver": true + "timeout": "long" } ] ], - "focus-navigation.html": [ - "9e593eb1003a26a9957d04ddca8cd522e7a0872e", + "restriction-media-play.html": [ + "3db8c22c4178f8161b21fad6fc18d8b41a7b3e3e", [ - null, + "speculation-rules/prerender/restriction-media-play.html?target_hint=_blank", { - "testdriver": true + "timeout": "long" } - ] - ], - "focus-nested-slots.html": [ - "8c7c1d1a808ab36106947a4de86df459ddc3f8cb", + ], [ - null, + "speculation-rules/prerender/restriction-media-play.html?target_hint=_self", { - "testdriver": true + "timeout": "long" } ] ], - "focus-reverse-unassignable-slot.html": [ - "5d7f332b854b201abd0b50162f21f63e92a61ee1", + "restriction-message-boxes.html": [ + "a40df1acc2ba00d215c2b45b80cf5b621ec2f977", [ null, { - "testdriver": true + "timeout": "long" } ] ], - "focus-reverse-unassigned-slot.html": [ - "e19ea44288bc2741c8bcb78ab66661a64a9a3349", + "restriction-midi-sysex.https.html": [ + "3201267901ede0fb03710b2d7683ef927d2b373f", [ null, { - "testdriver": true + "testdriver": true, + "timeout": "long" } ] ], - "focus-unassignable-slot.html": [ - "135569d94ccbe664e2e83ca0892ebfc36cba6e6b", + "restriction-midi.https.html": [ + "49c3082d6108d1cd56c7bd925fa549e6f77c3a8c", [ null, { - "testdriver": true + "testdriver": true, + "timeout": "long" } ] ], - "focus-with-negative-index.html": [ - "ed3fac9a6cfb4cbcc1210ecb2eee43bfa65015f3", + "restriction-notification.https.html": [ + "78d7d06ecb1b05cd1ff6280a6b3881b9e4096727", [ null, { - "testdriver": true + "testdriver": true, + "timeout": "long" } ] - ] - }, - "focus-within-shadow.html": [ - "e65165a786d6467345390023fd3e014ea0a63246", - [ - null, - {} - ] - ], - "form-control-form-attribute.html": [ - "2e782b2587d8dc6b71deee7d229ed4e8a996703c", - [ - null, - {} - ] - ], - "getElementById-dynamic-001.html": [ - "c2acda2a9c7f20f521ed911c530a19a9e1c0f131", - [ - null, - {} - ] - ], - "historical.html": [ - "4fa8be1dbc9537b904d51b74e8de37dc36a471d6", - [ - null, - {} - ] - ], - "imperative-slot-api-slotchange.html": [ - "236aaea18a14dfb4f0f62948a5ea2df38e3ca4f1", - [ - null, - {} - ] - ], - "imperative-slot-api.html": [ - "bcf052bbab37b4060a3c1f54ed3edf0cb9c2bc45", - [ - null, - {} - ] - ], - "imperative-slot-fallback-clear.html": [ - "5f79b4f2fad79c57d38477a3b4be1e6765127a03", - [ - null, - {} - ] - ], - "imperative-slot-initial-fallback.html": [ - "87b37aa827bd76af6afd95b0b45496ce2b6c858f", - [ - null, - {} - ] - ], - "innerHTML-setter.xhtml": [ - "0122707e2a917e4b52142733995cfedc1e777edc", - [ - null, - {} - ] - ], - "input-element-list.html": [ - "b571534eb0d6f3f57cfbec3e706648b19848b6d6", - [ - null, - {} - ] - ], - "input-type-radio.html": [ - "9c90fcf0603222785aa81990fb2b09511ff6ba86", - [ - null, - {} - ] - ], - "leaktests": { - "get-elements.html": [ - "40fa9b69314a9cd9f1eee777ce4120440d7801df", - [ - null, - {} - ] ], - "html-collection.html": [ - "1ce2cf34401dff1bb63b1955d93b3c79ab7886ea", + "restriction-presentation-request.https.html": [ + "0dc961c0c891493aa3d2592ab22402c0c330c76c", [ null, - {} + { + "timeout": "long" + } ] ], - "window-frames.html": [ - "5ba2531ff26a27f6309bce11d488d2ff77f563f3", + "restriction-prompt-by-before-unload.html": [ + "63a4b11fc3a3fc4a9bea991831e90896cfa018ab", [ null, - {} - ] - ] - }, - "offsetParent-across-shadow-boundaries.html": [ - "5491e2121336d1b59ef69198fd048a22acc80d46", - [ - null, - {} - ] - ], - "offsetTop-offsetLeft-across-shadow-boundaries.html": [ - "50a85afcbc1cbbfce6c06d0180afe7cd87255e54", - [ - null, - {} - ] - ], - "scroll-to-the-fragment-in-shadow-tree.html": [ - "b4ecc16a67daeb1160523e10cca057d0c9582d5c", - [ - null, - {} - ] - ], - "selection-collapse-and-extend.tentative.html": [ - "36cc036b3849f867fdcf7e9b9e1c2e3e25ddc53c", - [ - null, - {} - ] - ], - "selection-direction.tentative.html": [ - "3a2512dcc71711a2652f178de51d8ba379779a76", - [ - null, - {} - ] - ], - "selection-getComposedRanges.tentative.html": [ - "983328693c6c32b5b0ca8454b626017550868bc4", - [ - null, - {} - ] - ], - "slotchange-customelements.html": [ - "b0cf93277df950f46f6e6a7c5266798c47426651", - [ - null, - {} - ] - ], - "slotchange-event.html": [ - "f1d06297ff623af2da99c5f2e0b7ebd6a7d1eb5f", - [ - null, - {} - ] - ], - "slotchange.html": [ - "9c4b81a156360d95ff57045147dc7c7a747e0fd6", - [ - null, - {} - ] - ], - "slots-fallback-in-document.html": [ - "846f3e03a057f28198eb4503146fbfb0d43c7cc6", - [ - null, - {} - ] - ], - "slots-fallback.html": [ - "e705e18f4a9747d0ffffe0909bfa4d85bd8f7ad4", - [ - null, - {} - ] - ], - "slots-outside-shadow-dom.html": [ - "a6fa2b27f760d1daf6e7390c6e582108b035e57e", - [ - null, - {} - ] - ], - "slots.html": [ - "948d389298f46cc906fa998c8b495ad55bd50a1a", - [ - null, - {} - ] - ], - "untriaged": { - "elements-and-dom-objects": { - "extensions-to-element-interface": { - "attributes": { - "test-006.html": [ - "bfbfde36e2ac8184ba0a24f9724ae947101c3c49", - [ - null, - {} - ] - ] - }, - "methods": { - "test-001.html": [ - "c1c44980e1bceabecc416ee33591f687dfb03fff", - [ - null, - {} - ] - ], - "test-002.html": [ - "f7e1595a013509992a336b790cbdb51d98b28774", - [ - null, - {} - ] - ] - } - }, - "shadowroot-object": { - "shadowroot-attributes": { - "activeElement-confirm-return-null.html": [ - "417995d75e299d7b8a641a55a651c79022179eed", - [ - null, - {} - ] - ], - "test-007.html": [ - "d8868f56950081feae71f03a62ec11449cd87e1e", - [ - null, - {} - ] - ], - "test-009.html": [ - "219c57826680f3d777cf81a2ec868615bc9239cc", - [ - null, - {} - ] - ], - "test-010.html": [ - "4207065867c79c607e16c649f11c523df4f89f18", - [ - null, - {} - ] - ], - "test-011.html": [ - "74c2c9877f4799184206b6959f58bd94de2959f2", - [ - null, - {} - ] - ], - "test-012.html": [ - "af06e4fafb42e043aec7f793269fb168c692c3ae", - [ - null, - {} - ] - ], - "test-013.html": [ - "3f754c0381067a6c3eb4c21de155bb27caf4cabb", - [ - null, - {} - ] - ] - }, - "shadowroot-methods": { - "test-001.html": [ - "6093313a0e099b3036c68e67da24c644d2814c9c", - [ - null, - {} - ] - ], - "test-004.html": [ - "dc087680ddf21992df8722e232edd4d270543acb", - [ - null, - {} - ] - ], - "test-006.html": [ - "cf10846cc9765a397f2b99d053f433689938c05a", - [ - null, - {} - ] - ], - "test-007.html": [ - "371c5fa851e4cc9015cdf62b1f1bfab90f71ad4f", - [ - null, - {} - ] - ], - "test-010.html": [ - "8e11f739cef27a21fe390d138f874bd7df9a8f67", - [ - null, - {} - ] - ] + { + "timeout": "long" } - } - }, - "events": { - "event-dispatch": { - "test-002.html": [ - "663337526a2c51c9b1a94fab37cef7c749f5c6ce", - [ - null, - {} - ] - ], - "test-003.html": [ - "bd81521018357307989c27e0a7544fc3714a128b", - [ - null, - {} - ] - ] - }, - "event-retargeting": { - "test-001.html": [ - "4ad3ac5ce9612786d52ca0a9cd018bfc929d542c", - [ - null, - {} - ] - ], - "test-003.html": [ - "23ee9ad723cabf7c810a82f371a1631764a5aaaa", - [ - null, - {} - ] - ] - }, - "retargeting-focus-events": { - "test-001.html": [ - "ce21769e3a3136aabb28a4be17b8971cc37e8fc0", - [ - null, - {} - ] - ], - "test-002.html": [ - "9c0eb23ae4c4614b4eb85785954d4e0fd2cf406e", - [ - null, - {} - ] - ], - "test-003.html": [ - "55fdde130742caa50803eff9826aa8169b4065ea", - [ - null, - {} - ] - ] - }, - "retargeting-relatedtarget": { - "test-001.html": [ - "5b0ed3fddd566f032b540881184dbf3ffa5edfd8", - [ - null, - {} - ] - ], - "test-002.html": [ - "3a8ea47e76b2c772bd40f8d1963a14d7690083ff", - [ - null, - {} - ] - ], - "test-003.html": [ - "900a3ac7fe1c63d3290a4aa3926bf269230872f2", - [ - null, - {} - ] - ] - }, - "test-001.html": [ - "b150f282f4e66d50de04d8c72b2292f37f26155b", - [ - null, - {} - ] - ] - }, - "html-elements-in-shadow-trees": { - "html-forms": { - "test-001.html": [ - "2783e5f15ef8bf5f4db44d522fdd1b665a3f8048", - [ - null, - {} - ] - ], - "test-002.html": [ - "597d985bee165cf3da7dc95b907e2cb004531ce1", - [ - null, - {} - ] - ], - "test-003.html": [ - "96c10274739899ecb74ef52529263d84aa63df4c", - [ - null, - {} - ] - ] - }, - "inert-html-elements": { - "test-001.html": [ - "f8dd40ea2aeb01853f2e40eecb13689d64eac5f5", - [ - null, - {} - ] - ], - "test-002.html": [ - "397acd83e7e4c23fc8fcee315d2e7dc4d826ff5e", - [ - null, - {} - ] - ] - } - }, - "shadow-trees": { - "upper-boundary-encapsulation": { - "dom-tree-accessors-001.html": [ - "3007fafc546d78b9115f36d2d27e0a43d1c3ab61", - [ - null, - {} - ] - ], - "dom-tree-accessors-002.html": [ - "88a2efc2d30aaf477b9b7ab1647baa7885903c93", - [ - null, - {} - ] - ], - "ownerdocument-001.html": [ - "58c8adc087441b8fb964e9d8952b002c18ac5514", - [ - null, - {} - ] - ], - "ownerdocument-002.html": [ - "3ef53fc5ab58a17b913431abc1b85e80d9b16571", - [ - null, - {} - ] - ], - "selectors-api-001.html": [ - "f3ca2b786f9e12eef17d97fa8dd4aee148f202ef", - [ - null, - {} - ] - ], - "selectors-api-002.html": [ - "6167f57e4e53630fa7ce66bcb0153d905dc8f05d", - [ - null, - {} - ] - ], - "shadow-root-001.html": [ - "97f5c35717813105654ce94589f57a9bc4a58b29", - [ - null, - {} - ] - ], - "test-005.html": [ - "b82a9523a9eeec6c22f41a9e6d9126a222f4201e", - [ - null, - {} - ] - ], - "test-007.html": [ - "0cfe169b441ceab9e681ed4cd63ce7266e82468f", - [ - null, - {} - ] - ], - "test-009.html": [ - "f37f17bc1a3947d70a6086b1427f471ba94e6a73", - [ - null, - {} - ] - ], - "test-011.html": [ - "48ac1c7540ca66230284c1f7cfc4dc17f437d30b", - [ - null, - {} - ] - ], - "window-named-properties-001.html": [ - "6e4cbbd9b7e4d286b9ceb1280175aaf3fe6fb426", - [ - null, - {} - ] - ], - "window-named-properties-002.html": [ - "957e087e86012d2b2b7967389c2140bf715b35a7", - [ - null, - {} - ] - ], - "window-named-properties-003.html": [ - "00d3931266d5db948cd1e20e3c17e8869da25caf", - [ - null, - {} - ] - ] - } - }, - "styles": { - "test-001.html": [ - "d773d248c12c35eaa5609d473cbc2fc010c6a033", - [ - null, - {} - ] - ], - "test-003.html": [ - "b5b2529861c10ec3f88f653c170e5f90c1b1fe30", - [ - null, - {} - ] - ], - "test-005.html": [ - "94dbb551dc00461584dbed522eb3533d25478f52", - [ - null, - {} - ] - ], - "test-008.html": [ - "4b810af1c86bac738e4fcc374e3d144738887cd8", - [ - null, - {} - ] ] - }, - "user-interaction": { - "active-element": { - "test-001.html": [ - "9d4b026ad810307b02a4814c2a52c1000c69d4fa", - [ - null, - {} - ] - ], - "test-002.html": [ - "af3165afebc31a47cda7163a5d4f240c8d3b0298", - [ - null, - {} - ] - ] - }, - "editing": { - "inheritance-of-content-editable-001.html": [ - "c09832cd7e73749d9a91f14c8850b6f06396c7bd", - [ - null, - {} - ] - ] - }, - "ranges-and-selections": { - "test-001.html": [ - "3a234e8b817855ad08296a700b71d218af955f3a", - [ - null, - {} - ] - ], - "test-002.html": [ - "55cd91e458fc8e44ad59c5a9ed047272f5b79cf1", - [ - null, - {} - ] - ] - } - } - } - }, - "shape-detection": { - "detected-boundingBox-read-only.https.html": [ - "dcf379b97a5c08b83c675ac1fb56827a24d110ec", - [ - null, - {} - ] - ], - "detected-postMessage.https.html": [ - "8066984b26fed38b1bbb2a2ef8e2f12ad385a7a2", - [ - null, - {} - ] - ], - "detection-Blob.https.window.js": [ - "401a9cc72d4513ba57856dc6473c85c31e767098", - [ - "shape-detection/detection-Blob.https.window.html", - {} - ] - ], - "detection-HTMLCanvasElement.https.html": [ - "4773bc8a66102f22a2897c22a93054165402903f", - [ - null, - {} - ] - ], - "detection-HTMLImageElement-empty-src.https.html": [ - "40eee244946231b73f0064f5f2202cecb00b1c6b", - [ - null, - {} - ] - ], - "detection-HTMLImageElement-zero-dimension-image.https.html": [ - "621dd4e23fce2e6171e54644677f86008ca65064", - [ - null, - {} - ] - ], - "detection-HTMLImageElement.https.html": [ - "f3b994c2582941349ef39a0cc5d3ce120e6988fe", - [ - null, - {} - ] - ], - "detection-HTMLVideoElement.https.html": [ - "2ce379bafc125a914101d758914fb9c2a68feea6", - [ - null, - {} - ] - ], - "detection-ImageBitmap-closed.https.window.js": [ - "80cb373f330f5a16fb8d5213031000bbbc0b96bc", - [ - "shape-detection/detection-ImageBitmap-closed.https.window.html", - {} - ] - ], - "detection-ImageBitmap.https.html": [ - "b4302c4a512f571703cf8a3e5cd9b0a363971f0c", - [ - null, - {} - ] - ], - "detection-ImageData-detached.https.html": [ - "b4e31c8656e5ba136a21819ee07934c2508d69a6", - [ - null, - {} - ] - ], - "detection-ImageData.https.html": [ - "330239fdf02d8d9d1c8a1287f68b592e17573d92", - [ - null, - {} - ] - ], - "detection-ImageDataUint16StorageFormat.https.window.js": [ - "24dd3e597c9953260839883e6ed53f7336d8ca40", - [ - "shape-detection/detection-ImageDataUint16StorageFormat.https.window.html", - { - "script_metadata": [ - [ - "script", - "/resources/testharness.js" - ], - [ - "script", - "/resources/testharnessreport.js" - ], - [ - "script", - "/shape-detection/resources/shapedetection-helpers.js" - ] - ] - } - ] - ], - "detection-SVGImageElement.https.window.js": [ - "22f1629eccb1954c0385f3833b744b606749c87b", - [ - "shape-detection/detection-SVGImageElement.https.window.html", - {} - ] - ], - "detection-VideoFrame.https.window.js": [ - "601c60bcaf87ef370a819b380c5114143781b350", - [ - "shape-detection/detection-VideoFrame.https.window.html", - {} - ] - ], - "detection-getSupportedFormats.https.html": [ - "0b4b223369599407355724344de0a261d4a26423", - [ - null, - {} - ] - ], - "detection-on-worker.https.worker.js": [ - "3981c6fdc8e12839d3aa30206fa16d8af1faf513", - [ - "shape-detection/detection-on-worker.https.worker.html", - {} - ] - ], - "detection-options.https.html": [ - "4b79da2a6e8dc129c367a7f2c3cf3da6832bcc27", - [ - null, - {} - ] - ], - "detection-security-test.https.html": [ - "4d87238dad5d5dfb74ee1d9af0257f8853d038c9", - [ - null, - {} - ] - ], - "detector-same-object.https.html": [ - "bf7c0680412b627b9c8ca5932ffd84e8139eba27", - [ - null, - {} - ] - ], - "idlharness.https.any.js": [ - "33b5f88f75b8052f202394c4f53bcc2770631202", - [ - "shape-detection/idlharness.https.any.html", - { - "script_metadata": [ - [ - "global", - "window,worker" - ], - [ - "script", - "/resources/WebIDLParser.js" - ], - [ - "script", - "/resources/idlharness.js" - ] - ] - } - ], - [ - "shape-detection/idlharness.https.any.serviceworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker" - ], - [ - "script", - "/resources/WebIDLParser.js" - ], - [ - "script", - "/resources/idlharness.js" - ] - ] - } - ], - [ - "shape-detection/idlharness.https.any.sharedworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker" - ], - [ - "script", - "/resources/WebIDLParser.js" - ], - [ - "script", - "/resources/idlharness.js" - ] - ] - } ], - [ - "shape-detection/idlharness.https.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,worker" - ], - [ - "script", - "/resources/WebIDLParser.js" - ], - [ - "script", - "/resources/idlharness.js" - ] - ] - } - ] - ], - "shapedetection-cross-origin.sub.https.html": [ - "c4e3c3fec79bd0d81ac502a5f7c22f3534f19329", - [ - null, - {} - ] - ], - "single-barcode-detection.https.html": [ - "1f14e35153a5a136446c18bcfd468a4fc184635c", - [ - null, - {} - ] - ], - "single-face-detection.https.html": [ - "28afdef13642ab86c6e03b933e4eb2159d7c2a4b", - [ - null, - {} - ] - ], - "single-text-detection.https.html": [ - "829e8ce6d61b76f8fec5c0648ca332bbb0ee6700", - [ - null, - {} - ] - ] - }, - "shared-storage": { - "add-module.tentative.https.sub.html": [ - "7859e750c96d7c54bb679f5b66c43b5362713e47", - [ - null, - {} - ] - ], - "blob-module-script-url-invalid-mime-type.tentative.https.sub.html": [ - "116facbcd5f558b3d186878a3247ba81ea9c7c4e", - [ - null, - {} - ] - ], - "blob-module-script-url.tentative.https.sub.html": [ - "53e47a0c8743793788f8ebb406564c068ace2514", - [ - null, - {} - ] - ], - "combined-setters-and-operations.tentative.https.sub.html": [ - "2c544b9b8e63f7a4c26d36ceea474dc96ac52ca0", - [ - null, - {} - ] - ], - "embedder-context.tentative.https.sub.html": [ - "44f45a7643111f169be1a1b8935720325103099e", - [ - null, - {} - ] - ], - "insecure-context.tentative.http.html": [ - "7ddf02f861aaba92db75ac47c85dfcab4a7c8861", - [ - null, - {} - ] - ], - "run-operation-in-detached-frame.tentative.https.sub.html": [ - "a7ef103d00fe8f707043be171acfc4d206fee749", - [ - null, - {} - ] - ], - "run-operation-keep-alive.tentative.https.sub.html": [ - "2756805485cdfaaba818561c04759c913b176024", - [ - null, - {} - ] - ], - "run-operation.tentative.https.sub.html": [ - "1ef0d25b48f152815046b38a6ba821a8a83e5ce9", - [ - null, - {} - ] - ], - "run-url-selection-operation-without-add-module.tentative.https.sub.html": [ - "8041a9c5535636d028e20cb7f4342a420c52b031", - [ - null, - {} - ] - ], - "run-url-selection-operation.tentative.https.sub.html": [ - "01cb9fdd3965df3167aea2e797577ffc4f96a68f", - [ - null, - {} - ] - ], - "select-url-keep-alive.tentative.https.sub.html": [ - "f3755538b9d4b23e026fec85c161cb730531d4dc", - [ - null, - {} - ] - ], - "select-url-permissions-policy-default.tentative.https.sub.html": [ - "67911388ec0f41790d8c7c678256f153765a6294", - [ - null, - {} - ] - ], - "select-url-permissions-policy-none.tentative.https.sub.html": [ - "6820edb0843863257aa2de3a8741d08383a13eab", - [ - null, - {} - ] - ], - "select-url-permissions-policy-self.tentative.https.sub.html": [ - "b79bc065c214235d219fbf880baf556e7b030f3c", - [ - null, - {} - ] - ], - "select-url-report-event.tentative.https.sub.html": [ - "b2ad2d1b2a622c4879effd7dc9ffbd156b627e34", - [ - null, - {} - ] - ], - "setters.tentative.https.sub.html": [ - "ffc4bfbd7d50183d49ce4b7db187938dc28b1b52", - [ - null, - {} - ] - ], - "shared-storage-in-sandboxed-iframe.tentative.https.html": [ - "44512706bd633b33fb2e53a1f88d5031c923953b", - [ - null, - {} - ] - ], - "shared-storage-permissions-policy-default.tentative.https.sub.html": [ - "5439df2a0684331e63059e095396a9b2af89c17f", - [ - null, - {} - ] - ], - "shared-storage-permissions-policy-none.tentative.https.sub.html": [ - "17a4bf1803ca33edb2d0259d14f484839c9aa3e5", - [ - null, - {} - ] - ], - "shared-storage-permissions-policy-self.tentative.https.sub.html": [ - "171325cdf8f0a909eac659e1dcbb334e50eef216", - [ - null, - {} - ] - ], - "shared-storage-writable-clear.tentative.https.sub.html": [ - "2d606d6bc17a3340b2124a04d831659e94bb1519", - [ - null, - {} - ] - ], - "shared-storage-writable-delete.tentative.https.sub.html": [ - "fc7f2fb90ee06411f55ecb8c3bf8da976bc4f628", - [ - null, - {} - ] - ], - "shared-storage-writable-forbidden-header-tentative.https.html": [ - "896fb7924040459069b32e3c9918d88756608fe1", - [ - null, - {} - ] - ], - "shared-storage-writable-iframe-content-attribute.tentative.https.sub.html": [ - "f27c8548cb14cd103ebcacae5fb87d427ffc8d59", - [ - null, - {} - ] - ], - "shared-storage-writable-iframe-idl-attribute-included.tentative.https.sub.html": [ - "2947ea51e0ef537009b77017d041797c02f8c43b", - [ - null, - {} - ] - ], - "shared-storage-writable-iframe-idl-attribute-not-included.tentative.https.sub.html": [ - "13a45a275be7c40cb1a89c59419e0cc51c639ee1", - [ - null, - {} - ] - ], - "shared-storage-writable-iframe-in-fenced.tentative.https.sub.html": [ - "e3a9803f0162bfad782987d1c7eafd12bbecc82b", - [ - null, - {} - ] - ], - "shared-storage-writable-img-content-attribute.tentative.https.sub.html": [ - "5bce34d91a97c34d1a57f21cc4e27aadc55a91c1", - [ - null, - {} - ] - ], - "shared-storage-writable-img-idl-attribute-included-bytes.tentative.https.sub.html": [ - "b358e87e5cdbf9c81008d0151e66646a48a6b61e", - [ - null, - {} - ] - ], - "shared-storage-writable-img-idl-attribute-included.tentative.https.sub.html": [ - "3e054146de82dee4d1d8046edfb55fc40f85b763", - [ - null, - {} - ] - ], - "shared-storage-writable-img-idl-attribute-not-included.tentative.https.sub.html": [ - "56badca311b1b9e9f88a4d129ffc5760ed49a606", - [ - null, - {} - ] - ], - "shared-storage-writable-insecure-context.tentative.http.sub.html": [ - "debb6cf9c56fb4cda8e72293e0de4b533648c845", - [ - null, - {} - ] - ], - "shared-storage-writable-multi-redirect.tentative.https.sub.html": [ - "137b8f77b2fa25f00b9ba183a6c2e2bf7ef79fa0", - [ - null, - {} - ] - ], - "shared-storage-writable-opaque-origin.tentative.https.sub.html": [ - "4829af0e0c17c0b5383e67ced2c035cc47c0c8a5", - [ - null, - {} - ] - ], - "shared-storage-writable-permissions-policy-default.tentative.https.sub.html": [ - "6dc2435b9346c20fb7dbc7a4302b95fad500816a", - [ - null, - {} - ] - ], - "shared-storage-writable-permissions-policy-none.tentative.https.sub.html": [ - "1a1e4076ca21d3aa90b378ef252d12758af61357", - [ - null, - {} - ] - ], - "shared-storage-writable-permissions-policy-self.tentative.https.sub.html": [ - "50d5c65cd55adb4ec95392ad126b9fc9918b864a", - [ - null, - {} - ] - ], - "shared-storage-writable-service-worker-fetch.tentative.https.sub.html": [ - "ea7af527b540d303cf3e41c7afd8d88071bcd293", - [ - null, - {} - ] - ], - "shared-storage-writable-service-worker-iframe.tentative.https.sub.html": [ - "9eb2820145ea31c250e4a5003c0d5974941d71ca", - [ - null, - {} - ] - ], - "shared-storage-writable-service-worker-img.tentative.https.sub.html": [ - "6d481559ee75e96955cc8f83c464200e4c4a9039", - [ - null, - {} - ] - ], - "shared-storage-writable-setters.tentative.https.sub.html": [ - "066bf174de0a98971c83a0d07ca1f474b35ff39d", - [ - null, - {} - ] - ], - "verify-get-undefined.tentative.https.sub.html": [ - "501998bf613687b2ae0b588cd114293001d84990", - [ - null, - {} - ] - ] - }, - "shared-storage-selecturl-limit": { - "run-url-selection-operation-limit-multiple-sites.tentative.https.sub.html": [ - "b71c368704bb9ca2bb7878fbbb6f37264c8dfa73", - [ - null, - {} - ] - ], - "run-url-selection-operation-limit.tentative.https.sub.html": [ - "b8f8d5a4bf00f536ce5828aaaaca0a9e3348f352", - [ - null, - {} - ] - ] - }, - "signed-exchange": { - "check-cert-request.tentative.html": [ - "b1418e929083bf1cd8c591bb42e13a35b0b47a6f", - [ - null, - {} - ] - ], - "fallback-to-another-sxg.tentative.html": [ - "8ccba86bd79d42a0d1eb77beb964487e62566375", - [ - null, - {} - ] - ], - "nested-sxg.tentative.html": [ - "f1167f919ab39a85e38778c39fc64305eecd4921", - [ - null, - {} - ] - ], - "reporting": { - "sxg-reporting-navigation-cert_fetch_error-downgraded.tentative.html": [ - "ce20c4726e9197c12064ed159ca36f83207bd9e9", + "restriction-push.https.html": [ + "708a0fed2f2e425ef1c3a0e103b2c023af17d240", [ null, - {} + { + "testdriver": true, + "timeout": "long" + } ] ], - "sxg-reporting-navigation-cert_fetch_error.tentative.html": [ - "15a7176e749b85a8d7f84b73e86075dc22754a61", + "restriction-request-picture-in-picture.html": [ + "743254d3d9cdf00c2cf5621b0168ec89532d3b06", [ null, - {} + { + "timeout": "long" + } ] ], - "sxg-reporting-navigation-cert_parse_error-downgraded.tentative.html": [ - "e6cdad035e1956a30d24033dafa4ae355f628017", + "restriction-screen-capture.https.html": [ + "f1ad821a0036a8f1fe6ec79e5ab13a92d734bc1d", + [ + "speculation-rules/prerender/restriction-screen-capture.https.html?target_hint=_blank", + { + "timeout": "long" + } + ], + [ + "speculation-rules/prerender/restriction-screen-capture.https.html?target_hint=_self", + { + "timeout": "long" + } + ] + ], + "restriction-screen-orientation-lock.https.html": [ + "f62740f5ce599bfac8b0db67595f4bffb917395c", [ null, - {} + { + "timeout": "long" + } ] ], - "sxg-reporting-navigation-cert_parse_error.tentative.html": [ - "a0cc607bf5f5e6962ab8f52f76ef239c632d1a4c", + "restriction-sensor-accelerometer.https.html": [ + "72e3e86bce80457298704a92637e1c344c7d62ca", + [ + "speculation-rules/prerender/restriction-sensor-accelerometer.https.html?target_hint=_blank", + { + "testdriver": true, + "timeout": "long" + } + ], + [ + "speculation-rules/prerender/restriction-sensor-accelerometer.https.html?target_hint=_self", + { + "testdriver": true, + "timeout": "long" + } + ] + ], + "restriction-sensor-ambient-light-sensor.https.html": [ + "b398c4bd6c4f85c3f56ff4f815ead7ffdf053244", + [ + "speculation-rules/prerender/restriction-sensor-ambient-light-sensor.https.html?target_hint=_blank", + { + "testdriver": true, + "timeout": "long" + } + ], + [ + "speculation-rules/prerender/restriction-sensor-ambient-light-sensor.https.html?target_hint=_self", + { + "testdriver": true, + "timeout": "long" + } + ] + ], + "restriction-sensor-gyroscope.https.html": [ + "48e018e0189379788042e592300b4169878ee2e2", + [ + "speculation-rules/prerender/restriction-sensor-gyroscope.https.html?target_hint=_blank", + { + "testdriver": true, + "timeout": "long" + } + ], + [ + "speculation-rules/prerender/restriction-sensor-gyroscope.https.html?target_hint=_self", + { + "testdriver": true, + "timeout": "long" + } + ] + ], + "restriction-sensor-magnetometer.https.html": [ + "928a73f5720edda8c8c62c2c69f1c5bf5cc8dbe7", + [ + "speculation-rules/prerender/restriction-sensor-magnetometer.https.html?target_hint=_blank", + { + "testdriver": true, + "timeout": "long" + } + ], + [ + "speculation-rules/prerender/restriction-sensor-magnetometer.https.html?target_hint=_self", + { + "testdriver": true, + "timeout": "long" + } + ] + ], + "restriction-service-worker-postmessage.https.html": [ + "a837f6b0e760db9fd30798e012fa446458437156", [ null, - {} + { + "timeout": "long" + } ] ], - "sxg-reporting-navigation-cert_verification_error-downgraded.tentative.html": [ - "d3ad4204f2e56d69df49795d36de22ae2ca4bdaa", + "restriction-service-worker-unregister.https.html": [ + "2b83e3858fa969b80b5e1634ea41f93410fd8f96", [ null, - {} + { + "timeout": "long" + } ] ], - "sxg-reporting-navigation-cert_verification_error.tentative.html": [ - "04fd0e785c07bae64458d178a2b7e491f3451542", + "restriction-service-worker-update.https.html": [ + "b2c164603d780b72ca5f9e3e91c0d3d55fb43eaa", [ null, - {} + { + "timeout": "long" + } ] ], - "sxg-reporting-navigation-failed-zero-success-fraction.tentative.html": [ - "a92735f714a5f6dcb4756e0c26b2582c2d47c70f", + "restriction-speech-synthesis.html": [ + "9dbdf9fd45b0e4d31d13d37f89b7b2eb8626ded8", [ null, - {} + { + "timeout": "long" + } ] ], - "sxg-reporting-navigation-invalid_integrity_header.tentative.html": [ - "3e00d9dbe369e1cf1a9648b049cf301228f8efea", + "restriction-storage-persist.https.html": [ + "5ccbff391b724b294c93a1df628cea7ce67d0953", [ null, - {} + { + "timeout": "long" + } ] ], - "sxg-reporting-navigation-mi_error.tentative.html": [ - "b6d7ba3b1add960de95409cd71235d47582ecd4b", + "restriction-wake-lock.https.html": [ + "5db64be5dcc8a8dc140cceaa1af3e18e25e0a25f", [ null, { + "testdriver": true, "timeout": "long" } ] ], - "sxg-reporting-navigation-ok-no-referrer.tentative.html": [ - "b6cadbca505e50a3faf165f424decce15dc59e00", + "restriction-web-hid.https.html": [ + "32aabde45e97cdb8db016b760f1f4ba59d15007d", [ null, - {} + { + "timeout": "long" + } ] ], - "sxg-reporting-navigation-ok-origin-referrer.tentative.html": [ - "351ad927820eee342a3a993d326e2ec277c8738b", + "restriction-web-locks.https.html": [ + "a3976cad6f3baa837ad18983e4c8f674e20d574c", [ null, - {} + { + "timeout": "long" + } ] ], - "sxg-reporting-navigation-ok.tentative.html": [ - "0afa626d09dc02c55b42673ddd30a36fa887df33", + "restriction-web-nfc.https.html": [ + "605c908892ddc879e22560bccb5f8dd85f9690ea", [ null, - {} + { + "timeout": "long" + } ] ], - "sxg-reporting-navigation-parse_error.tentative.html": [ - "95cd140cea9e627879b87507f3731024eb99d1d9", + "restriction-web-serial.tentative.https.html": [ + "96b7fe6da1f2bfee44ca67576992f2ac3886f8f6", [ null, { @@ -715735,4338 +742891,6660 @@ } ] ], - "sxg-reporting-navigation-signature_verification_error-downgraded.tentative.html": [ - "2679ae5a6c7416ee6fc9382a7debf7732babe748", + "restriction-web-share.https.html": [ + "e9b22d58efa580318aeed9e39bb69b13887bb9fb", [ null, - {} + { + "timeout": "long" + } ] ], - "sxg-reporting-navigation-signature_verification_error.tentative.html": [ - "f3e0b8f0e6e1d8f351febc8ca109e1e07bdb293b", + "restriction-web-usb.https.html": [ + "8fd5c4fa76ee22de2ae8703c2a0b7995bb1df6b5", [ null, - {} + { + "timeout": "long" + } ] ], - "sxg-reporting-prefetch-cert_fetch_error-downgraded.tentative.html": [ - "82b5d8f11ee066157ee1fb4b8d43448d93c77239", + "restriction-web-xr-immersive-vr-session.https.html": [ + "094bdbd1a0f7bf59a646629869ea210b4536ce14", + [ + "speculation-rules/prerender/restriction-web-xr-immersive-vr-session.https.html?target_hint=_blank", + { + "timeout": "long" + } + ], + [ + "speculation-rules/prerender/restriction-web-xr-immersive-vr-session.https.html?target_hint=_self", + { + "timeout": "long" + } + ] + ], + "restriction-web-xr-inline-session.https.html": [ + "398f2cb50491d8dbd5928c0c4fd69ab3236392d4", + [ + "speculation-rules/prerender/restriction-web-xr-inline-session.https.html?target_hint=_blank", + { + "timeout": "long" + } + ], + [ + "speculation-rules/prerender/restriction-web-xr-inline-session.https.html?target_hint=_self", + { + "timeout": "long" + } + ] + ], + "restriction-window-move.html": [ + "232760db36576e4079850aeb2339684e92f4293d", [ null, - {} + { + "timeout": "long" + } ] ], - "sxg-reporting-prefetch-cert_fetch_error.tentative.html": [ - "32e3cad1b011365c00b61c86be5522143bc6749f", + "restriction-window-open.html": [ + "7397d31e65ce13785b5d01e6e420a827715740f9", [ null, - {} + { + "timeout": "long" + } ] ], - "sxg-reporting-prefetch-cert_parse_error-downgraded.tentative.html": [ - "bbad6032e2ef821f3e73bc8cb116424f938d614b", + "restriction-window-resize.html": [ + "a2466c48b36ea0f9d2048fcfafd2e9d85ef2b611", [ null, - {} + { + "timeout": "long" + } ] ], - "sxg-reporting-prefetch-cert_parse_error.tentative.html": [ - "a6ea9e4eedf47fef13eadeb37ba8bca9a9d7cd87", + "restrictions.html": [ + "817a1995bc561c945c81862fdf41877977aaf368", [ null, - {} + { + "timeout": "long" + } ] ], - "sxg-reporting-prefetch-cert_verification_error-downgraded.tentative.html": [ - "b25bf491da3cb46832d99229e3b52ce6669f33a6", + "sandbox-iframe.html": [ + "469b8aadc31137d412faad400523af61922c6c0b", [ null, - {} + { + "timeout": "long" + } ] ], - "sxg-reporting-prefetch-cert_verification_error.tentative.html": [ - "f31a4c49d4fd3727f908d40c77c201bdb053ac23", + "script-supports-speculationrules.html": [ + "2dc856fce5da7c8fa2fb24a8df70348fe5aa84e8", [ null, - {} + { + "timeout": "long" + } ] ], - "sxg-reporting-prefetch-failed-zero-success-feaction.tentative.html": [ - "faa02bc0eba5e48774ef771f9a88bc3eb943e34e", + "service-workers.https.html": [ + "0f907c35aa10ef62bb4d5bbded5a72721ea740a2", [ null, - {} + { + "timeout": "long" + } ] ], - "sxg-reporting-prefetch-invalid_integrity_header.tentative.html": [ - "990b4a387e43ca90f5a80877720c94d50ab46caf", + "session-history-activation.https.html": [ + "a1ee4a31903c1c01af2969322684536f27c3118d", [ null, - {} + { + "timeout": "long" + } ] ], - "sxg-reporting-prefetch-mi_error.tentative.html": [ - "f265a9205872b6cfe3ef0f0e6a267f870f721092", + "session-history-location.https.html": [ + "f32bec2bf941a5f9974843fb485844ed09c7c661", [ null, - {} + { + "timeout": "long" + } ] ], - "sxg-reporting-prefetch-ok.tentative.html": [ - "e3c6a0eeead55a9a63ae8ef2c066c31ee30b9087", + "session-history-navigation.https.html": [ + "46bd41481921094a7734ff37e1c2217f1392b07e", [ null, - {} + { + "timeout": "long" + } ] ], - "sxg-reporting-prefetch-parse_error.tentative.html": [ - "2e2b860e22f7ffd626f074702f9d351041c4fa1f", + "session-history-pushstate.https.html": [ + "89a0276984d331e389ccce4462676f6c12b3a99f", [ null, - {} + { + "timeout": "long" + } ] ], - "sxg-reporting-prefetch-signature_verification_error-downgraded.tentative.html": [ - "fbeaeecff94093e581414c3c74b055b9c4cde1f5", + "session-history-subframe-navigation.https.html": [ + "db3d9f83472ce1f807d4cd4c0e3492a57a5e4747", [ null, - {} + { + "timeout": "long" + } ] ], - "sxg-reporting-prefetch-signature_verification_error.tentative.html": [ - "f3805ad6932506114517fa356a0c876999319412", + "session-history-subframe-reload.https.html": [ + "1caf360f1b85b9c997ec5b45cd81bf570d848e8b", [ null, - {} + { + "timeout": "long" + } ] - ] - }, - "service-workers": { - "sxg-sw-register-after-fallback.tentative.https.html": [ - "2b76a70dc9feb2fe446fa309202494b172dcb04e", + ], + "session-storage.tentative.html": [ + "92d73285cce8df081691cb13d7bd288ab79b6b52", [ null, - {} + { + "timeout": "long" + } ] ], - "sxg-sw-register.tentative.https.html": [ - "ad21ebb20d44c846bd99cbffeb510c8af2bb81ea", + "state-and-event.html": [ + "7e8e7fd0a92b7175d2f761f128723404f4a3ba08", [ null, - {} + { + "timeout": "long" + } ] - ] - }, - "subresource": { - "sxg-subresource-header-integrity-mismatch.tentative.html": [ - "a7f42d94616aefab92903fc08d75dd479bfc3e6f", + ], + "visibility-state.html": [ + "e9e8548c4f686bd55b56210f8b9dd94d5900f7fa", [ null, - {} + { + "timeout": "long" + } ] ], - "sxg-subresource.tentative.html": [ - "8ca12b4cbcf3c0950c04deed96e7174247444a25", + "windowclient-navigate-to-cross-origin-url-on-iframe.https.html": [ + "1bfc2e0eb07560850108f973f01f8f1cbc7a15cc", [ null, - {} + { + "timeout": "long" + } + ] + ], + "windowclient-navigate-to-same-origin-url-on-iframe.https.html": [ + "5f53e97685f184d3af019db9b3308dd0a927b78c", + [ + null, + { + "timeout": "long" + } + ] + ], + "windowclient-navigate.https.html": [ + "608584636a9853c1e469f2d3242b51ba8b3c0b9c", + [ + null, + { + "timeout": "long" + } + ] + ], + "workers-in-cross-origin-iframe.html": [ + "260bc8eacbf0e0081d1209deafecb07e60be502d", + [ + null, + { + "timeout": "long" + } + ] + ], + "workers.html": [ + "3abae233a5fbbc1abfdd2c845fb0ba4fe4256f25", + [ + null, + { + "timeout": "long" + } ] ] - }, - "sxg-data-cert-url.tentative.html": [ - "0d6bd5602e0ca0e6610b9fe2fb48b94fd5821bfd", - [ - null, - {} - ] - ], - "sxg-double-prefetch.tentative.html": [ - "d682741744fed929bee8e62fbae4857a4bfbf1d5", - [ - null, - {} - ] - ], - "sxg-fallback-with-fragment.tentative.html": [ - "aae8fa8bd1954e790001e962094a810cff49444c", + } + }, + "speech-api": { + "SpeechRecognition-basics.https.html": [ + "dc5d3f5c1df6e254b05ba1decf353abc3ccbef13", [ null, {} ] ], - "sxg-hsts.tentative.html": [ - "6024e2879e7f0669ddd6e0ea40689ebd8cfbefaa", + "SpeechSynthesis-pause-resume.tentative.html": [ + "a7aa2bbf6fa25fec45845b1b08801148649fc4a2", [ null, - {} + { + "testdriver": true + } ] ], - "sxg-inner-url-bom.tentative.html": [ - "be2d7e5022f7ed4d71b8879a88793e28c1cd69f8", + "SpeechSynthesis-speak-events.html": [ + "cc28b822f39bcb15f62353d609d80720ab79e371", [ null, { - "timeout": "long" + "testdriver": true } ] ], - "sxg-invalid-utf8-inner-url.tentative.html": [ - "7512d639e88ab6c4c5a33e8c4417c016174fe175", + "SpeechSynthesis-speak-twice.html": [ + "2f9a401fc433f8d1d6d4acc4c407925623ac6094", [ null, { - "timeout": "long" + "testdriver": true } ] ], - "sxg-invalid-validity-url.tentative.html": [ - "bb027b1669889b2c6e5fbe51261e2c8cae662ae9", + "SpeechSynthesis-speak-without-activation-fails.tentative.html": [ + "676fe05d132bfdf3c82110e937129f4b70f95c7c", [ null, {} ] ], - "sxg-location-fragment.tentative.html": [ - "92e1efbc20cd337241e42aad1af7c4742a3df2cc", + "SpeechSynthesisErrorEvent-constructor.html": [ + "abefbf9a51cdaef5f7b2a43211e450331b5546a7", [ null, {} ] ], - "sxg-location.tentative.html": [ - "17ca0768d6f8e0e1a4bccf707d8e34c6dbfdfc8c", + "SpeechSynthesisEvent-constructor.html": [ + "e6b29683f79d8317ce8505678b3d70df6916ba78", [ null, {} ] ], - "sxg-merkle-integrity-error.tentative.html": [ - "a5c4a2f7eeca9b43b76669b2f19550e62d379b49", + "SpeechSynthesisEvent-properties.html": [ + "f6c8f5fc321d8dca382205c741de742711225212", [ null, { - "timeout": "long" + "testdriver": true } ] ], - "sxg-navigation-timing.tentative.html": [ - "b3f088241f8e2cf3467752d556d8cd58d30d5b07", + "SpeechSynthesisUtterance-basics.https.html": [ + "2fd394150e941ccbeb8d63b99e598cc53e55446d", [ null, {} ] ], - "sxg-non-secure-origin.tentative.html": [ - "84938da76d09dbe4f045b763e49ba95a4936003f", + "historical.html": [ + "99d2fab5f52654f21f6e8f76878b1a44722b101f", [ null, {} ] ], - "sxg-noncacheable.tentative.html": [ - "1315360745789655acb926d7e8bafea9322c3a25", + "idlharness.window.js": [ + "77eb6a1be9083214d78d8d4c659952b18be4db8e", [ - null, - {} + "speech-api/idlharness.window.html", + { + "script_metadata": [ + [ + "script", + "/resources/WebIDLParser.js" + ], + [ + "script", + "/resources/idlharness.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ] - ], - "sxg-prefetch-merkle-integrity-error.tentative.html": [ - "2086c38545d7df43dbe913b78ef1030c476b3649", + ] + }, + "storage": { + "buckets": { + "bucket-quota-indexeddb.tentative.https.any.js": [ + "ee9202777e7ec55faee0b89f4c656f7a76c05e83", + [ + "storage/buckets/bucket-quota-indexeddb.tentative.https.any.html", + { + "script_metadata": [ + [ + "title", + "Bucket quota enforcement for indexeddb" + ], + [ + "script", + "/storage/buckets/resources/util.js" + ] + ] + } + ], + [ + "storage/buckets/bucket-quota-indexeddb.tentative.https.any.worker.html", + { + "script_metadata": [ + [ + "title", + "Bucket quota enforcement for indexeddb" + ], + [ + "script", + "/storage/buckets/resources/util.js" + ] + ] + } + ] + ], + "bucket-storage-policy.tentative.https.any.js": [ + "d6dce3675d0bca18a379518c6ecf2c7ec1310930", + [ + "storage/buckets/bucket-storage-policy.tentative.https.any.html", + { + "script_metadata": [ + [ + "title", + "Buckets API: Tests for bucket storage policies." + ], + [ + "script", + "/storage/buckets/resources/util.js" + ], + [ + "global", + "window,worker" + ] + ] + } + ], + [ + "storage/buckets/bucket-storage-policy.tentative.https.any.serviceworker.html", + { + "script_metadata": [ + [ + "title", + "Buckets API: Tests for bucket storage policies." + ], + [ + "script", + "/storage/buckets/resources/util.js" + ], + [ + "global", + "window,worker" + ] + ] + } + ], + [ + "storage/buckets/bucket-storage-policy.tentative.https.any.sharedworker.html", + { + "script_metadata": [ + [ + "title", + "Buckets API: Tests for bucket storage policies." + ], + [ + "script", + "/storage/buckets/resources/util.js" + ], + [ + "global", + "window,worker" + ] + ] + } + ], + [ + "storage/buckets/bucket-storage-policy.tentative.https.any.worker.html", + { + "script_metadata": [ + [ + "title", + "Buckets API: Tests for bucket storage policies." + ], + [ + "script", + "/storage/buckets/resources/util.js" + ], + [ + "global", + "window,worker" + ] + ] + } + ] + ], + "bucket_names.tentative.https.any.js": [ + "e0f122dc47d86aedced40ad7e41e5c6c192ef573", + [ + "storage/buckets/bucket_names.tentative.https.any.html", + { + "script_metadata": [ + [ + "title", + "Buckets API: Basic tests for bucket names." + ], + [ + "script", + "resources/util.js" + ], + [ + "global", + "window,worker" + ] + ] + } + ], + [ + "storage/buckets/bucket_names.tentative.https.any.serviceworker.html", + { + "script_metadata": [ + [ + "title", + "Buckets API: Basic tests for bucket names." + ], + [ + "script", + "resources/util.js" + ], + [ + "global", + "window,worker" + ] + ] + } + ], + [ + "storage/buckets/bucket_names.tentative.https.any.sharedworker.html", + { + "script_metadata": [ + [ + "title", + "Buckets API: Basic tests for bucket names." + ], + [ + "script", + "resources/util.js" + ], + [ + "global", + "window,worker" + ] + ] + } + ], + [ + "storage/buckets/bucket_names.tentative.https.any.worker.html", + { + "script_metadata": [ + [ + "title", + "Buckets API: Basic tests for bucket names." + ], + [ + "script", + "resources/util.js" + ], + [ + "global", + "window,worker" + ] + ] + } + ] + ], + "buckets_basic.tentative.https.any.js": [ + "20ff227bac1ec1b8a2b4d36c9ba4488a6c13c827", + [ + "storage/buckets/buckets_basic.tentative.https.any.html", + { + "script_metadata": [ + [ + "title", + "Buckets API: Basic tests for open(), keys(), delete()." + ], + [ + "script", + "resources/util.js" + ], + [ + "global", + "window,worker" + ] + ] + } + ], + [ + "storage/buckets/buckets_basic.tentative.https.any.serviceworker.html", + { + "script_metadata": [ + [ + "title", + "Buckets API: Basic tests for open(), keys(), delete()." + ], + [ + "script", + "resources/util.js" + ], + [ + "global", + "window,worker" + ] + ] + } + ], + [ + "storage/buckets/buckets_basic.tentative.https.any.sharedworker.html", + { + "script_metadata": [ + [ + "title", + "Buckets API: Basic tests for open(), keys(), delete()." + ], + [ + "script", + "resources/util.js" + ], + [ + "global", + "window,worker" + ] + ] + } + ], + [ + "storage/buckets/buckets_basic.tentative.https.any.worker.html", + { + "script_metadata": [ + [ + "title", + "Buckets API: Basic tests for open(), keys(), delete()." + ], + [ + "script", + "resources/util.js" + ], + [ + "global", + "window,worker" + ] + ] + } + ] + ], + "buckets_storage_policy.tentative.https.any.js": [ + "918364d731527ffe4b1e40896a15d3c3cce08f90", + [ + "storage/buckets/buckets_storage_policy.tentative.https.any.html", + { + "script_metadata": [ + [ + "title", + "Buckets API: Tests for bucket storage policies." + ], + [ + "script", + "resources/util.js" + ], + [ + "global", + "window,worker" + ] + ] + } + ], + [ + "storage/buckets/buckets_storage_policy.tentative.https.any.serviceworker.html", + { + "script_metadata": [ + [ + "title", + "Buckets API: Tests for bucket storage policies." + ], + [ + "script", + "resources/util.js" + ], + [ + "global", + "window,worker" + ] + ] + } + ], + [ + "storage/buckets/buckets_storage_policy.tentative.https.any.sharedworker.html", + { + "script_metadata": [ + [ + "title", + "Buckets API: Tests for bucket storage policies." + ], + [ + "script", + "resources/util.js" + ], + [ + "global", + "window,worker" + ] + ] + } + ], + [ + "storage/buckets/buckets_storage_policy.tentative.https.any.worker.html", + { + "script_metadata": [ + [ + "title", + "Buckets API: Tests for bucket storage policies." + ], + [ + "script", + "resources/util.js" + ], + [ + "global", + "window,worker" + ] + ] + } + ] + ], + "detached-iframe.https.html": [ + "6b3f3a2bd5588c6f5e9a13e050f3cbe9811ee488", + [ + null, + {} + ] + ], + "idlharness-worker.https.any.js": [ + "9a1a3f80b9bc8d58f934921c877fd605d70292e3", + [ + "storage/buckets/idlharness-worker.https.any.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "/resources/WebIDLParser.js" + ], + [ + "script", + "/resources/idlharness.js" + ] + ] + } + ], + [ + "storage/buckets/idlharness-worker.https.any.serviceworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "/resources/WebIDLParser.js" + ], + [ + "script", + "/resources/idlharness.js" + ] + ] + } + ], + [ + "storage/buckets/idlharness-worker.https.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "/resources/WebIDLParser.js" + ], + [ + "script", + "/resources/idlharness.js" + ] + ] + } + ], + [ + "storage/buckets/idlharness-worker.https.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "/resources/WebIDLParser.js" + ], + [ + "script", + "/resources/idlharness.js" + ] + ] + } + ] + ], + "opaque-origin.https.window.js": [ + "c91d3faa67a3b8041a0cc2605b0d3416e2fcb119", + [ + "storage/buckets/opaque-origin.https.window.html", + { + "script_metadata": [ + [ + "title", + "Storage Buckets API: Interface is not exposed in opaque origins." + ], + [ + "script", + "resources/util.js" + ], + [ + "global", + "window" + ] + ] + } + ] + ], + "storage_bucket_object.tentative.https.any.js": [ + "52f1693ccb22a3966d47ac90d6627818de4d9a65", + [ + "storage/buckets/storage_bucket_object.tentative.https.any.html", + { + "script_metadata": [ + [ + "title", + "Buckets API: Tests for the StorageBucket object." + ], + [ + "global", + "window,worker" + ] + ] + } + ], + [ + "storage/buckets/storage_bucket_object.tentative.https.any.serviceworker.html", + { + "script_metadata": [ + [ + "title", + "Buckets API: Tests for the StorageBucket object." + ], + [ + "global", + "window,worker" + ] + ] + } + ], + [ + "storage/buckets/storage_bucket_object.tentative.https.any.sharedworker.html", + { + "script_metadata": [ + [ + "title", + "Buckets API: Tests for the StorageBucket object." + ], + [ + "global", + "window,worker" + ] + ] + } + ], + [ + "storage/buckets/storage_bucket_object.tentative.https.any.worker.html", + { + "script_metadata": [ + [ + "title", + "Buckets API: Tests for the StorageBucket object." + ], + [ + "global", + "window,worker" + ] + ] + } + ] + ] + }, + "estimate-indexeddb.https.any.js": [ + "6577b021ad52ef36ab8748102ec760dfd0f44205", [ - null, - {} + "storage/estimate-indexeddb.https.any.html", + { + "script_metadata": [ + [ + "title", + "StorageManager: estimate() for indexeddb" + ], + [ + "script", + "/storage/buckets/resources/util.js" + ] + ] + } + ], + [ + "storage/estimate-indexeddb.https.any.worker.html", + { + "script_metadata": [ + [ + "title", + "StorageManager: estimate() for indexeddb" + ], + [ + "script", + "/storage/buckets/resources/util.js" + ] + ] + } ] ], - "sxg-prefetch-resource-timing.tentative.html": [ - "5b60ab9e1a12e2b169c4972c422ddbe3ebc5f581", + "estimate-parallel.https.any.js": [ + "090f004b8514bc9c99e8f85f9e8f9073dff2a263", [ - null, - {} + "storage/estimate-parallel.https.any.html", + { + "script_metadata": [ + [ + "title", + "StorageManager: multiple estimate() calls in parallel" + ] + ] + } + ], + [ + "storage/estimate-parallel.https.any.worker.html", + { + "script_metadata": [ + [ + "title", + "StorageManager: multiple estimate() calls in parallel" + ] + ] + } ] ], - "sxg-prefetch.tentative.https.html": [ - "a6e55567e0db498f62d8560e665622f145ce440d", + "estimate-usage-details-caches.https.tentative.any.js": [ + "bf889f84184f0c8cb17997d392f738d062cce908", [ - null, - {} + "storage/estimate-usage-details-caches.https.tentative.any.html", + { + "script_metadata": [ + [ + "title", + "StorageManager: estimate() for caches" + ] + ] + } + ], + [ + "storage/estimate-usage-details-caches.https.tentative.any.worker.html", + { + "script_metadata": [ + [ + "title", + "StorageManager: estimate() for caches" + ] + ] + } ] ], - "sxg-referrer-policy-header.tentative.https.html": [ - "5dff6af8cb08c665622b2c44437d6a51c537f4fc", + "estimate-usage-details-indexeddb.https.tentative.any.js": [ + "551cede9c6d1dce91b2323f9f6953d6f0142760b", [ - null, - {} + "storage/estimate-usage-details-indexeddb.https.tentative.any.html", + { + "script_metadata": [ + [ + "title", + "StorageManager: estimate() usage details for indexeddb" + ], + [ + "script", + "helpers.js" + ], + [ + "script", + "../IndexedDB/resources/support-promises.js" + ] + ] + } + ], + [ + "storage/estimate-usage-details-indexeddb.https.tentative.any.worker.html", + { + "script_metadata": [ + [ + "title", + "StorageManager: estimate() usage details for indexeddb" + ], + [ + "script", + "helpers.js" + ], + [ + "script", + "../IndexedDB/resources/support-promises.js" + ] + ] + } ] ], - "sxg-referrer-remote-physical-remote-logical.tentative.https.html": [ - "67de083d27a583e8df3419678d1540a8592f23c9", + "estimate-usage-details-service-workers.https.tentative.window.js": [ + "cf3a2aa9430d480df4fc7ff2487e7a42d5c15699", [ - null, + "storage/estimate-usage-details-service-workers.https.tentative.window.html", { - "timeout": "long" + "script_metadata": [ + [ + "title", + "StorageManager: estimate() for service worker registrations" + ] + ] } ] ], - "sxg-referrer-remote-physical-same-logical.tentative.https.html": [ - "4d8aff808127a1d7bd15ee0667139f08f4852d1c", + "estimate-usage-details.https.tentative.any.js": [ + "2a1cea5fb8dfa78c320328e667bb7ffd940802b0", [ - null, - {} + "storage/estimate-usage-details.https.tentative.any.html", + { + "script_metadata": [ + [ + "title", + "StorageManager: estimate() should have usage details" + ] + ] + } + ], + [ + "storage/estimate-usage-details.https.tentative.any.worker.html", + { + "script_metadata": [ + [ + "title", + "StorageManager: estimate() should have usage details" + ] + ] + } ] ], - "sxg-referrer-same-physical-remote-logical.tentative.https.html": [ - "3ba597ed4967418e545338927175a3d952df28b2", + "idlharness.https.any.js": [ + "773fac4e4a8cabb09b6c3f838a83aac7c3b43f54", [ - null, + "storage/idlharness.https.any.html", + { + "script_metadata": [ + [ + "script", + "/resources/WebIDLParser.js" + ], + [ + "script", + "/resources/idlharness.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } + ], + [ + "storage/idlharness.https.any.worker.html", { + "script_metadata": [ + [ + "script", + "/resources/WebIDLParser.js" + ], + [ + "script", + "/resources/idlharness.js" + ], + [ + "timeout", + "long" + ] + ], "timeout": "long" } ] ], - "sxg-referrer-same-physical-same-logical.tentative.https.html": [ - "88917167b9c8ffcf0e08a24cf09cbf76381623a3", + "opaque-origin.https.window.js": [ + "b9539760db7c42b3079bac97efeb7f252b54ccaa", [ - null, - {} + "storage/opaque-origin.https.window.html", + { + "script_metadata": [ + [ + "title", + "StorageManager API and opaque origins" + ], + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ], + [ + "script", + "resources/helpers.js" + ] + ] + } ] ], - "sxg-utf8-inner-url.tentative.html": [ - "85670a786af33c5dbfe19a018dba76847fa649cf", + "partitioned-estimate-usage-details-caches.tentative.https.sub.html": [ + "dc2af7c213c549534f23929bbea210527d1a1f99", [ null, {} ] ], - "sxg-variants-match.tentative.html": [ - "21d1b80d3c158894690e563930f06825509402f1", + "partitioned-estimate-usage-details-indexeddb.tentative.https.sub.html": [ + "98a1ed8da2512d138b76cd39e39fa28fc7ce32b4", [ null, {} ] ], - "sxg-variants-mismatch.tentative.html": [ - "b57ec8192628c0a35c24c09641e41439aea872c6", + "partitioned-estimate-usage-details-service-workers.tentative.https.sub.html": [ + "c52ca34e68e520b21d77b8ad8860d216e739e7d9", [ null, {} ] ], - "sxg-version1b2.tentative.html": [ - "43b340dbb79f2585ef4acc4361ee94c6f22003f0", + "permission-query.https.any.js": [ + "9984bdab793219bf8b77748304f539f027a1e84f", + [ + "storage/permission-query.https.any.html", + { + "script_metadata": [ + [ + "title", + "The Permission API registration for \"persistent-storage\"" + ] + ] + } + ], + [ + "storage/permission-query.https.any.worker.html", + { + "script_metadata": [ + [ + "title", + "The Permission API registration for \"persistent-storage\"" + ] + ] + } + ] + ], + "persisted.https.any.js": [ + "57e15f0e811de3e94652b2f16c5482a94be63c24", + [ + "storage/persisted.https.any.html", + { + "script_metadata": [ + [ + "title", + "StorageManager: persisted()" + ] + ] + } + ], + [ + "storage/persisted.https.any.worker.html", + { + "script_metadata": [ + [ + "title", + "StorageManager: persisted()" + ] + ] + } + ] + ], + "quotachange-in-detached-iframe.tentative.https.html": [ + "123af50e3ce6a3f98756d0377a166dbecfa146fe", [ null, {} ] - ] - }, - "soft-navigation-heuristics": { - "back.tentative.html": [ - "349eaf465c456954d552d42f46fd2a5590c254a9", + ], + "storagemanager-estimate.https.any.js": [ + "3b6f4d8edc4c2e51d6e9efbc2a2929e75d6b6725", [ - null, + "storage/storagemanager-estimate.https.any.html", { - "testdriver": true + "script_metadata": [ + [ + "title", + "StorageManager: estimate()" + ] + ] + } + ], + [ + "storage/storagemanager-estimate.https.any.worker.html", + { + "script_metadata": [ + [ + "title", + "StorageManager: estimate()" + ] + ] } ] ], - "disabled.html": [ - "b53c2f701222c4a85e80d2f604ea34baef2b859b", + "storagemanager-persist-persisted-match.https.window.js": [ + "9a4e0d329fcff1b5370ca8e63f1e2052a6130d52", [ - null, + "storage/storagemanager-persist-persisted-match.https.window.html", { - "testdriver": true + "script_metadata": [ + [ + "title", + "StorageManager: result of persist() matches result of persisted()" + ], + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ], + [ + "script", + "resources/helpers.js" + ] + ] } ] ], - "dropped-entries.tentative.html": [ - "d27ad452be07b778aea1aff5525d1670fb66ec5f", + "storagemanager-persist.https.window.js": [ + "1bcbefd8a96f4e680e0c31a40c8b457818411215", [ - null, + "storage/storagemanager-persist.https.window.html", { - "testdriver": true, - "timeout": "long" + "script_metadata": [ + [ + "title", + "StorageManager: persist()" + ], + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ], + [ + "script", + "resources/helpers.js" + ] + ] } ] ], - "first-interaction-not-softnav.tentative.html": [ - "e02620218368d71ff10196c9ff75a13a361f5d90", + "storagemanager-persist.https.worker.js": [ + "fcf8175f706fe131c84ed2ac2a022e676d618c40", [ - null, + "storage/storagemanager-persist.https.worker.html", { - "testdriver": true + "script_metadata": [ + [ + "title", + "StorageManager: persist() (worker)" + ] + ] } ] ], - "hash.tentative.html": [ - "3a8419c71da75196205190aadc707394bfe6614e", + "storagemanager-persisted.https.any.js": [ + "70999406690fb26b7bc154093d826d7c0b8cf72c", [ - null, + "storage/storagemanager-persisted.https.any.html", { - "testdriver": true + "script_metadata": [ + [ + "title", + "StorageManager: persisted()" + ] + ] + } + ], + [ + "storage/storagemanager-persisted.https.any.worker.html", + { + "script_metadata": [ + [ + "title", + "StorageManager: persisted()" + ] + ] + } + ] + ] + }, + "storage-access-api": { + "hasStorageAccess-ABA.sub.https.window.js": [ + "8fa4122fbbb36feca0961219437ab4d49722c087", + [ + "storage-access-api/hasStorageAccess-ABA.sub.https.window.html", + { + "script_metadata": [ + [ + "script", + "helpers.js" + ], + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ] + ] } ] ], - "image-lcp-followed-by-image-softnav-lcp.tentative.html": [ - "7a2018d20ee811ff1ec9ca88c80038b0f1239874", + "hasStorageAccess-insecure.sub.window.js": [ + "866bd97f273c0513acf1a3e128b2cccfb8a1589a", [ - null, + "storage-access-api/hasStorageAccess-insecure.sub.window.html", { - "testdriver": true + "script_metadata": [ + [ + "script", + "helpers.js" + ] + ] } ] ], - "image-lcp-followed-by-text-softnav-lcp.tentative.html": [ - "501d1c5fb6fa0346f3c5cecd550001f933c9f1f1", + "hasStorageAccess.sub.https.window.js": [ + "0efc687199a92ce93e7997ae4770a386ba2d56b5", [ - null, + "storage-access-api/hasStorageAccess.sub.https.window.html", { - "testdriver": true + "script_metadata": [ + [ + "script", + "helpers.js" + ], + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ] + ] } ] ], - "image-lcp-followed-by-two-image-softnavs-lcp.tentative.html": [ - "66a9e5136f6fed4dfb425acf50c0e8ad0ef7fbd0", + "idlharness.window.js": [ + "41c6b84d6890363be94990359f2c3fef71494ce4", [ - null, + "storage-access-api/idlharness.window.html", { - "testdriver": true + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "/resources/WebIDLParser.js" + ], + [ + "script", + "/resources/idlharness.js" + ] + ] } ] ], - "innertext.tentative.html": [ - "d40b6047924834ef09137fa975cbd2d142999bcb", + "requestStorageAccess-ABA.sub.https.window.js": [ + "428053f3e56899ce9c66cc7eefbcfa3e462f2191", [ - null, + "storage-access-api/requestStorageAccess-ABA.sub.https.window.html", { - "testdriver": true + "script_metadata": [ + [ + "script", + "helpers.js" + ], + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ] + ] } ] ], - "load-classic-script-history-push.tentative.html": [ - "4e375b2164db87258132f4a6edba4b68c1c2b99b", + "requestStorageAccess-cross-origin-iframe-navigation-relax.sub.https.window.js": [ + "7ccb9824e699a3a269fa257b2c889d50f89d8f88", [ - null, + "storage-access-api/requestStorageAccess-cross-origin-iframe-navigation-relax.sub.https.window.html", { - "testdriver": true + "script_metadata": [ + [ + "script", + "helpers.js" + ], + [ + "script", + "/cookies/resources/cookie-helper.sub.js" + ], + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ] + ] } ] ], - "load-module-script-history-push.tentative.html": [ - "e82cd13f4a5dcc0c5cb54a59829cb64a3f5ca50a", + "requestStorageAccess-cross-origin-iframe-navigation.sub.https.window.js": [ + "691c8c86b62005880c0babeb686cfc18113579ec", [ - null, + "storage-access-api/requestStorageAccess-cross-origin-iframe-navigation.sub.https.window.html", { - "testdriver": true + "script_metadata": [ + [ + "script", + "helpers.js" + ], + [ + "script", + "/cookies/resources/cookie-helper.sub.js" + ], + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ] + ] } ] ], - "multiple-paint-entries-buffered.tentative.html": [ - "dbb945a0a811330a3efa74b8b34da3f7987e9f38", + "requestStorageAccess-cross-site-iframe.sub.https.window.js": [ + "53f90de75d06f6bbf95e99bd5ae7da7cd06f7830", [ - null, + "storage-access-api/requestStorageAccess-cross-site-iframe.sub.https.window.html", { - "testdriver": true, - "timeout": "long" + "script_metadata": [ + [ + "script", + "helpers.js" + ], + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ] + ] } ] ], - "multiple_nested_events.tentative.html": [ - "196cfa06868ca9fd321db59755e1908a52c26c1e", + "requestStorageAccess-cross-site-sibling-iframes.sub.https.window.js": [ + "528b1616368a16b9629f441ee7d9de7cfe54a392", [ - null, + "storage-access-api/requestStorageAccess-cross-site-sibling-iframes.sub.https.window.html", { - "testdriver": true + "script_metadata": [ + [ + "script", + "helpers.js" + ], + [ + "script", + "/cookies/resources/cookie-helper.sub.js" + ], + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ] + ] } ] ], - "navigate-child.html": [ - "e3c17e2dbaa2148b0dd35632d0651592f9696bec", + "requestStorageAccess-dedicated-worker.sub.https.window.js": [ + "5c3089bf3473156e66922a0c7eb0e3805f6b001d", [ - null, + "storage-access-api/requestStorageAccess-dedicated-worker.sub.https.window.html", { - "testdriver": true + "script_metadata": [ + [ + "script", + "helpers.js" + ], + [ + "script", + "/cookies/resources/cookie-helper.sub.js" + ], + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ] + ] } ] ], - "navigation-api-after-transition-commit.tentative.html": [ - "5c7d8f4f7a4fa4669ab42a18562bd1dceecc4c56", + "requestStorageAccess-insecure.sub.window.js": [ + "1ad04321db7f4ce9e55d8676fecee8fd6604c8ca", [ - null, + "storage-access-api/requestStorageAccess-insecure.sub.window.html", { - "testdriver": true + "script_metadata": [ + [ + "script", + "helpers.js" + ], + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ] + ] } ] ], - "navigation-api-back.tentative.html": [ - "cb96d9caf95ba7987adb065a150b2182ec784b9a", + "requestStorageAccess-nested-cross-origin-iframe.sub.https.window.js": [ + "eeac9c2a401722732d819e6732f2bd5022a37096", [ - null, + "storage-access-api/requestStorageAccess-nested-cross-origin-iframe.sub.https.window.html", { - "testdriver": true + "script_metadata": [ + [ + "script", + "helpers.js" + ], + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ] + ] } ] ], - "navigation-api-forward.tentative.html": [ - "f483ad376b6ae247d0358363fda3c01cd71ac06f", + "requestStorageAccess-nested-cross-site-iframe.sub.https.window.js": [ + "59442d97c9385269a2cbf44af88abbd2708ca777", [ - null, + "storage-access-api/requestStorageAccess-nested-cross-site-iframe.sub.https.window.html", { - "testdriver": true + "script_metadata": [ + [ + "script", + "helpers.js" + ], + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ] + ] } ] ], - "navigation-api-hash.tentative.html": [ - "a63b177a63f4974423954a720b77b3874139057d", + "requestStorageAccess-nested-same-origin-iframe.sub.https.window.js": [ + "24d82c487f9544f269726899191d5be4d54517eb", [ - null, + "storage-access-api/requestStorageAccess-nested-same-origin-iframe.sub.https.window.html", { - "testdriver": true + "script_metadata": [ + [ + "script", + "helpers.js" + ], + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ] + ] } ] ], - "navigation-api-preventDefault.tentative.html": [ - "d6c61efb3cbc3da1412748b9b2c8a50ab537be63", + "requestStorageAccess-non-fully-active.sub.https.window.js": [ + "79b4a7959f4f94adc09bc5f44175bc9f8eed2880", [ - null, + "storage-access-api/requestStorageAccess-non-fully-active.sub.https.window.html", { - "testdriver": true + "script_metadata": [ + [ + "script", + "helpers.js" + ], + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ] + ] } ] ], - "navigation-api-rejected.tentative.html": [ - "bcc0451d5bd80203092b6ed769d4ab2c9ccfff19", + "requestStorageAccess-same-site-iframe.sub.https.window.js": [ + "f646444e67f4ba591f5239888c8dbea38586954c", [ - null, + "storage-access-api/requestStorageAccess-same-site-iframe.sub.https.window.html", { - "testdriver": true + "script_metadata": [ + [ + "script", + "helpers.js" + ], + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ] + ] } ] ], - "navigation-api-traverseto.tentative.html": [ - "e4cabb095aafebf8291596f08a315e9c3103dd8d", + "requestStorageAccess-sandboxed-iframe-allow-storage-access.sub.https.window.js": [ + "9d7927037573289b16befb5eeadfd838cd4dd433", [ - null, + "storage-access-api/requestStorageAccess-sandboxed-iframe-allow-storage-access.sub.https.window.html", { - "testdriver": true + "script_metadata": [ + [ + "script", + "helpers.js" + ], + [ + "script", + "/cookies/resources/cookie-helper.sub.js" + ], + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ] + ] } ] ], - "navigation-api-view-transition.tentative.html": [ - "2755f9f9ac75b980018f0ef78055c3f7874621b8", + "requestStorageAccess-sandboxed-iframe-no-storage-access.sub.https.window.js": [ + "db1d88fe0dceb7dbafbe13b836a443fd300caf11", [ - null, + "storage-access-api/requestStorageAccess-sandboxed-iframe-no-storage-access.sub.https.window.html", { - "testdriver": true + "script_metadata": [ + [ + "script", + "helpers.js" + ], + [ + "script", + "/cookies/resources/cookie-helper.sub.js" + ], + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ] + ] } ] ], - "navigation-api.tentative.html": [ - "ca11f684f49908855323e8a337092f9dc971823b", + "requestStorageAccess-web-socket.sub.https.window.js": [ + "bc323bd95a09a0ed3192f5a67db1be5636f09961", [ - null, + "storage-access-api/requestStorageAccess-web-socket.sub.https.window.html", { - "testdriver": true + "script_metadata": [ + [ + "script", + "helpers.js" + ], + [ + "script", + "/cookies/resources/cookie-helper.sub.js" + ], + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ] + ] } ] ], - "popstate-multiple-backs.tentative.html": [ - "2a12a352bffc3fed4f207daaf877c781b0799ff3", + "requestStorageAccess.sub.https.window.js": [ + "21c451ca6147f0c58bf9294fb40b03404525c578", [ - null, + "storage-access-api/requestStorageAccess.sub.https.window.html", { - "testdriver": true + "script_metadata": [ + [ + "script", + "helpers.js" + ], + [ + "script", + "/cookies/resources/cookie-helper.sub.js" + ], + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ] + ] } ] ], - "popstate.tentative.html": [ - "60a5ff72292c15abd281b1264e747a8f3c0d0d2b", + "storage-access-beyond-cookies.BroadcastChannel.sub.https.window.js": [ + "feb268b4b8146290eec743779c4a8d9567bc74b3", [ - null, + "storage-access-api/storage-access-beyond-cookies.BroadcastChannel.sub.https.window.html", { - "testdriver": true + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ] + ] } ] ], - "replacestate-null-then-push.tentative.html": [ - "8a81c6be20237dee08d3343ab921b9f7331538fe", + "storage-access-beyond-cookies.SharedWorker.sub.https.window.js": [ + "e05c2ef38d171db26628317018312d3f2f46d7d2", [ - null, + "storage-access-api/storage-access-beyond-cookies.SharedWorker.sub.https.window.html", { - "testdriver": true + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ] + ] } ] ], - "replacestate.tentative.html": [ - "42e9a718997bec9327ace8936225b42b6356a77b", + "storage-access-beyond-cookies.blobStorage.sub.https.window.js": [ + "cc2785b6fac73ffbd3a18c8bd23228a1c8130e9c", [ - null, + "storage-access-api/storage-access-beyond-cookies.blobStorage.sub.https.window.html", { - "testdriver": true + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ] + ] } ] ], - "second-interaction-not-softnav.tentative.html": [ - "a9bb337060d00a5e21075f2c2cb53570e500afaf", + "storage-access-beyond-cookies.caches.sub.https.window.js": [ + "51e5c648a64cd9f7e629c1d5fe9d8c471d6513d9", [ - null, + "storage-access-api/storage-access-beyond-cookies.caches.sub.https.window.html", { - "testdriver": true + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ] + ] } ] ], - "soft-navigation-detection-main-descendent.tentative.html": [ - "96ff55260c3b9553ac5735cc5fe209ee7cfd5f37", + "storage-access-beyond-cookies.cookies.sub.https.window.js": [ + "ad760cfda7d8e442da3df71db0154627fdbe4b02", [ - null, + "storage-access-api/storage-access-beyond-cookies.cookies.sub.https.window.html", { - "testdriver": true + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ] + ] } ] ], - "soft-navigation-detection-non-main.tentative.html": [ - "86da167c3393903dfb3fe01e59a9bbfb216d5a44", + "storage-access-beyond-cookies.estimate.sub.https.window.js": [ + "eb8cb0c68d0ad83e526198545fd1bb31070366b3", [ - null, + "storage-access-api/storage-access-beyond-cookies.estimate.sub.https.window.html", { - "testdriver": true + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ] + ] } ] ], - "soft-navigation-detection-web-component-lifecycle.tentative.html": [ - "7e27b0073c9f7f8c5afc63e23b261e328cb8d6c8", + "storage-access-beyond-cookies.getDirectory.sub.https.window.js": [ + "d59caa93cd63b3edc8f107ed1fa9ba766db3d287", [ - null, + "storage-access-api/storage-access-beyond-cookies.getDirectory.sub.https.window.html", { - "testdriver": true + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ] + ] } ] ], - "soft-navigation-detection.tentative.html": [ - "618984d8592dc6d2f68a15fe7f4f87592731236e", + "storage-access-beyond-cookies.indexedDB.sub.https.window.js": [ + "8e9420da0da652f4bade46c9deedd66af8decf3c", [ - null, + "storage-access-api/storage-access-beyond-cookies.indexedDB.sub.https.window.html", { - "testdriver": true + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ] + ] } ] ], - "soft-navigation-no-url.tentative.html": [ - "a0055c654c2049c9df444510c892489e363d0bb3", + "storage-access-beyond-cookies.localStorage.sub.https.window.js": [ + "80021317790587e8da7fea06324cc03a1504a8ce", [ - null, + "storage-access-api/storage-access-beyond-cookies.localStorage.sub.https.window.html", { - "testdriver": true + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ] + ] } ] ], - "softnav-after-lcp-paint-larger-than-viewport.tentative.html": [ - "3c930d8be4cd459d9167404be13ad9ac219ec422", + "storage-access-beyond-cookies.locks.sub.https.window.js": [ + "ed7d6ea48479a1b2a433db5f438ab001bae93598", [ - null, + "storage-access-api/storage-access-beyond-cookies.locks.sub.https.window.html", { - "testdriver": true + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ] + ] } ] ], - "softnav-after-lcp-paint.tentative.html": [ - "cf9a9942ca6453719a5888df802d1c3398094495", + "storage-access-beyond-cookies.none.sub.https.window.js": [ + "ba5ea3279dffe0253f29293536ce2b408a4fe72a", [ - null, + "storage-access-api/storage-access-beyond-cookies.none.sub.https.window.html", { - "testdriver": true + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ] + ] + } + ] + ], + "storage-access-beyond-cookies.sessionStorage.sub.https.window.js": [ + "93b243f6c1104401f05aff207acdf16186b97899", + [ + "storage-access-api/storage-access-beyond-cookies.sessionStorage.sub.https.window.html", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ] + ] + } + ] + ], + "storage-access-beyond-cookies.unpartitioned.sub.https.window.js": [ + "ddc5b49f4819fc127a99d30ebc2792244cae3570", + [ + "storage-access-api/storage-access-beyond-cookies.unpartitioned.sub.https.window.html", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ] + ] + } + ] + ], + "storage-access-permission.sub.https.window.js": [ + "2faec7b5fdbb1f4bf8e4b3aefe10acf16ac615bb", + [ + "storage-access-api/storage-access-permission.sub.https.window.html", + { + "script_metadata": [ + [ + "script", + "helpers.js" + ], + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ] + ] } ] ], - "softnav-before-lcp-paint.tentative.html": [ - "d5dc4b74fb33b5bf0499ddae12a98d3789d48841", + "storageAccess.testdriver.sub.html": [ + "cc945dd18232b725f93e5b877f39be664ce56997", [ null, { "testdriver": true } ] - ], - "softnav-between-lcp-render-and-paint.tentative.html": [ - "56c7073de63036d92d342de610cba49ae5e9be00", + ] + }, + "streams": { + "idlharness-shadowrealm.window.js": [ + "099b2475ca7e8795a685a080d48b0c0b05fd886d", [ - null, + "streams/idlharness-shadowrealm.window.html", { - "testdriver": true + "script_metadata": [ + [ + "script", + "/resources/idlharness-shadowrealm.js" + ] + ] } ] ], - "softnav-painted-area-is-reset.tentative.html": [ - "0f5a1f427008f80f0bccc2613b5917ce30ce811f", + "idlharness.any.js": [ + "42a17da58c5ae390234ee394303aa2fe6a72ebdd", [ - null, + "streams/idlharness.any.html", { - "testdriver": true + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "/resources/WebIDLParser.js" + ], + [ + "script", + "/resources/idlharness.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" } - ] - ], - "supported-entry-types.tentative.html": [ - "4ab408e10b1e504961715779d3f08e70f37dc665", - [ - null, - {} - ] - ], - "text-lcp-followed-by-anim-image-softnav-lcp.tentative.html": [ - "0615b513e61319d61bcbed3540aa1a5d47289cb6", + ], [ - null, + "streams/idlharness.any.serviceworker.html", { - "testdriver": true + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "/resources/WebIDLParser.js" + ], + [ + "script", + "/resources/idlharness.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" } - ] - ], - "text-lcp-followed-by-image-softnav-lcp.tentative.html": [ - "3a8398347ce0ecb31aae24b4e8c8403aa2c9ef79", + ], [ - null, + "streams/idlharness.any.sharedworker.html", { - "testdriver": true + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "/resources/WebIDLParser.js" + ], + [ + "script", + "/resources/idlharness.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" } - ] - ], - "text-lcp-followed-by-text-softnav-lcp.tentative.html": [ - "929f59f019df81195700e61ca0cfcbb3db04a688", + ], [ - null, + "streams/idlharness.any.worker.html", { - "testdriver": true + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "/resources/WebIDLParser.js" + ], + [ + "script", + "/resources/idlharness.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" } ] ], - "visited-link.tentative.html": [ - "0bb149f00e91fc2f0033a6f763543967ef542ab2", - [ - null, - { - "testdriver": true - } - ] - ] - }, - "speculation-rules": { - "prefetch": { - "anonymous-client.https.html": [ - "bf5896b2dd0626a14e80fe694bd443fea784c4b7", - [ - null, - {} - ] - ], - "cross-origin-cookies.https.html": [ - "a16872fcef9c1b836b6b24a380bd12f068d55209", + "piping": { + "abort.any.js": [ + "e813b017769c6805f7682d150f202107ceb6b438", [ - null, + "streams/piping/abort.any.html", { - "testdriver": true, - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/recording-streams.js" + ], + [ + "script", + "../resources/test-utils.js" + ] + ] } - ] - ], - "different-initiators-2.https.html": [ - "dc314d22c54f521390a8358bd6686b870d05281f", + ], [ - null, + "streams/piping/abort.any.serviceworker.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/recording-streams.js" + ], + [ + "script", + "../resources/test-utils.js" + ] + ] } - ] - ], - "different-initiators.sub.https.html": [ - "691dfd855ead5b073b8c757e295b7f148ddd3964", + ], [ - "speculation-rules/prefetch/different-initiators.sub.https.html?cross-site-1", + "streams/piping/abort.any.shadowrealm.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/recording-streams.js" + ], + [ + "script", + "../resources/test-utils.js" + ] + ] } ], [ - "speculation-rules/prefetch/different-initiators.sub.https.html?cross-site-2", + "streams/piping/abort.any.sharedworker.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/recording-streams.js" + ], + [ + "script", + "../resources/test-utils.js" + ] + ] } ], [ - "speculation-rules/prefetch/different-initiators.sub.https.html?same-site", + "streams/piping/abort.any.worker.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/recording-streams.js" + ], + [ + "script", + "../resources/test-utils.js" + ] + ] } ] ], - "document-rules.https.html": [ - "805f1cfbc36bfddaf84f5063d8f0d990a0ef78a1", + "close-propagation-backward.any.js": [ + "25bd475ed13e77d9021a5228021ab23e1b945a91", [ - "speculation-rules/prefetch/document-rules.https.html?include=and", - {} + "streams/piping/close-propagation-backward.any.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/recording-streams.js" + ] + ] + } ], [ - "speculation-rules/prefetch/document-rules.https.html?include=baseURLChangedByBaseElement", - {} + "streams/piping/close-propagation-backward.any.serviceworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/recording-streams.js" + ] + ] + } ], [ - "speculation-rules/prefetch/document-rules.https.html?include=baseURLChangedBySameDocumentNavigation", - {} + "streams/piping/close-propagation-backward.any.shadowrealm.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/recording-streams.js" + ] + ] + } ], [ - "speculation-rules/prefetch/document-rules.https.html?include=defaultPredicate", - {} + "streams/piping/close-propagation-backward.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/recording-streams.js" + ] + ] + } ], [ - "speculation-rules/prefetch/document-rules.https.html?include=hrefMatches", - {} - ], + "streams/piping/close-propagation-backward.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/recording-streams.js" + ] + ] + } + ] + ], + "close-propagation-forward.any.js": [ + "0ec94f80abf04b2093e3297a0bbb81a63bbb6a74", [ - "speculation-rules/prefetch/document-rules.https.html?include=immediateMutation", - {} + "streams/piping/close-propagation-forward.any.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "../resources/recording-streams.js" + ] + ] + } ], [ - "speculation-rules/prefetch/document-rules.https.html?include=invalidPredicate", - {} + "streams/piping/close-propagation-forward.any.serviceworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "../resources/recording-streams.js" + ] + ] + } ], [ - "speculation-rules/prefetch/document-rules.https.html?include=linkHrefChanged", - {} + "streams/piping/close-propagation-forward.any.shadowrealm.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "../resources/recording-streams.js" + ] + ] + } ], [ - "speculation-rules/prefetch/document-rules.https.html?include=linkInShadowTree", - {} + "streams/piping/close-propagation-forward.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "../resources/recording-streams.js" + ] + ] + } ], [ - "speculation-rules/prefetch/document-rules.https.html?include=linkToSelfFragment", - {} - ], + "streams/piping/close-propagation-forward.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "../resources/recording-streams.js" + ] + ] + } + ] + ], + "error-propagation-backward.any.js": [ + "f786469d6c1d408573ea385d8fce19252f20f86f", [ - "speculation-rules/prefetch/document-rules.https.html?include=newRuleSetAdded", - {} + "streams/piping/error-propagation-backward.any.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "../resources/recording-streams.js" + ] + ] + } ], [ - "speculation-rules/prefetch/document-rules.https.html?include=not", - {} + "streams/piping/error-propagation-backward.any.serviceworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "../resources/recording-streams.js" + ] + ] + } ], [ - "speculation-rules/prefetch/document-rules.https.html?include=or", - {} + "streams/piping/error-propagation-backward.any.shadowrealm.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "../resources/recording-streams.js" + ] + ] + } ], [ - "speculation-rules/prefetch/document-rules.https.html?include=selectorMatches", - {} + "streams/piping/error-propagation-backward.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "../resources/recording-streams.js" + ] + ] + } ], [ - "speculation-rules/prefetch/document-rules.https.html?include=selectorMatchesDisplayLocked", - {} - ], + "streams/piping/error-propagation-backward.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "../resources/recording-streams.js" + ] + ] + } + ] + ], + "error-propagation-forward.any.js": [ + "e9260f9ea22c4189ce2c5344db24b706cc367063", [ - "speculation-rules/prefetch/document-rules.https.html?include=selectorMatchesDisplayNone", - {} + "streams/piping/error-propagation-forward.any.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "../resources/recording-streams.js" + ] + ] + } ], [ - "speculation-rules/prefetch/document-rules.https.html?include=selectorMatchesInShadowTree", - {} + "streams/piping/error-propagation-forward.any.serviceworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "../resources/recording-streams.js" + ] + ] + } ], [ - "speculation-rules/prefetch/document-rules.https.html?include=selectorMatchesScopingRoot", - {} + "streams/piping/error-propagation-forward.any.shadowrealm.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "../resources/recording-streams.js" + ] + ] + } ], [ - "speculation-rules/prefetch/document-rules.https.html?include=unslottedLink", - {} - ] - ], - "duplicate-urls.https.html": [ - "f9e46a6a384a5d1c15e9314a64b610186d63b11e", - [ - null, - {} - ] - ], - "fragment.https.html": [ - "7b35500303e16b6e9e68661d83daeb0c76bffd45", - [ - null, - {} - ] - ], - "initiators-a-element.sub.https.html": [ - "9cfedb20efa5eb1cf192a3256834b3316fbe743f", - [ - "speculation-rules/prefetch/initiators-a-element.sub.https.html?cross-site", + "streams/piping/error-propagation-forward.any.sharedworker.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "../resources/recording-streams.js" + ] + ] } ], [ - "speculation-rules/prefetch/initiators-a-element.sub.https.html?same-site", + "streams/piping/error-propagation-forward.any.worker.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "../resources/recording-streams.js" + ] + ] } ] ], - "initiators-iframe-location-href.sub.https.html": [ - "9a795b7404a55587201c46dd3bc5f12209284e94", + "flow-control.any.js": [ + "e2318da375ab9044dc105c15613c375c9e68ae9d", [ - "speculation-rules/prefetch/initiators-iframe-location-href.sub.https.html?cross-site", + "streams/piping/flow-control.any.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "../resources/rs-utils.js" + ], + [ + "script", + "../resources/recording-streams.js" + ] + ] } ], [ - "speculation-rules/prefetch/initiators-iframe-location-href.sub.https.html?same-site", + "streams/piping/flow-control.any.serviceworker.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "../resources/rs-utils.js" + ], + [ + "script", + "../resources/recording-streams.js" + ] + ] } - ] - ], - "initiators-window-open.sub.https.html": [ - "6923d44dfba5fd289f2f82bed2295d0c36586fff", + ], [ - "speculation-rules/prefetch/initiators-window-open.sub.https.html?cross-site", + "streams/piping/flow-control.any.shadowrealm.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "../resources/rs-utils.js" + ], + [ + "script", + "../resources/recording-streams.js" + ] + ] } ], [ - "speculation-rules/prefetch/initiators-window-open.sub.https.html?same-site", + "streams/piping/flow-control.any.sharedworker.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "../resources/rs-utils.js" + ], + [ + "script", + "../resources/recording-streams.js" + ] + ] } - ] - ], - "invalid-rules.https.html": [ - "0fdfacde643958093d4b190f5bb8a5bfa733e47d", + ], [ - null, - {} + "streams/piping/flow-control.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "../resources/rs-utils.js" + ], + [ + "script", + "../resources/recording-streams.js" + ] + ] + } ] ], - "multiple-url.https.html": [ - "34a8817a98213d50bc8c129356fc92fc6ca97d2a", + "general-addition.any.js": [ + "cf4aa9bea6a1a45e38e00614bb15547e6a9ab33c", [ - null, - {} - ] - ], - "navigation-timing-delivery-type.https.html": [ - "abbc8652ec32f30d09de5094462ae08fa77a2dd6", + "streams/piping/general-addition.any.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] + } + ], [ - "speculation-rules/prefetch/navigation-timing-delivery-type.https.html?prefetch=false&bypass_cache=false", - {} + "streams/piping/general-addition.any.serviceworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] + } ], [ - "speculation-rules/prefetch/navigation-timing-delivery-type.https.html?prefetch=false&bypass_cache=true", - {} + "streams/piping/general-addition.any.shadowrealm.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] + } ], [ - "speculation-rules/prefetch/navigation-timing-delivery-type.https.html?prefetch=true&bypass_cache=false", - {} + "streams/piping/general-addition.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] + } ], [ - "speculation-rules/prefetch/navigation-timing-delivery-type.https.html?prefetch=true&bypass_cache=true", - {} + "streams/piping/general-addition.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] + } ] ], - "navigation-timing-requestStart-responseStart.https.html": [ - "9c9371c4c31467cad8e3f1ed6f61685c9d1ed567", + "general.any.js": [ + "f051d8102c2bed7611b76616ff895e9f69809202", [ - "speculation-rules/prefetch/navigation-timing-requestStart-responseStart.https.html?default", - {} + "streams/piping/general.any.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/recording-streams.js" + ] + ] + } ], [ - "speculation-rules/prefetch/navigation-timing-requestStart-responseStart.https.html?prefetch=true", - {} - ] - ], - "navigation-timing-sizes.https.html": [ - "b3cca1c22dadf49b0f107c383e173b41c65c873b", - [ - "speculation-rules/prefetch/navigation-timing-sizes.https.html?bypass_cache=true", - {} + "streams/piping/general.any.serviceworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/recording-streams.js" + ] + ] + } ], [ - "speculation-rules/prefetch/navigation-timing-sizes.https.html?default", - {} + "streams/piping/general.any.shadowrealm.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/recording-streams.js" + ] + ] + } ], [ - "speculation-rules/prefetch/navigation-timing-sizes.https.html?prefetch=true", - {} + "streams/piping/general.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/recording-streams.js" + ] + ] + } ], [ - "speculation-rules/prefetch/navigation-timing-sizes.https.html?prefetch=true&bypass_cache=true", - {} + "streams/piping/general.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/recording-streams.js" + ] + ] + } ] ], - "no-vary-search": { - "prefetch-single-with-hint.https.html": [ - "1cbd7e8e717b30a8b6ad9e1248f23f1835c1831e", - [ - "speculation-rules/prefetch/no-vary-search/prefetch-single-with-hint.https.html?1-1", - {} - ], - [ - "speculation-rules/prefetch/no-vary-search/prefetch-single-with-hint.https.html?10-10", - {} - ], - [ - "speculation-rules/prefetch/no-vary-search/prefetch-single-with-hint.https.html?11-11", - {} - ], - [ - "speculation-rules/prefetch/no-vary-search/prefetch-single-with-hint.https.html?12-12", - {} - ], - [ - "speculation-rules/prefetch/no-vary-search/prefetch-single-with-hint.https.html?13-13", - {} - ], - [ - "speculation-rules/prefetch/no-vary-search/prefetch-single-with-hint.https.html?14-14", - {} - ], - [ - "speculation-rules/prefetch/no-vary-search/prefetch-single-with-hint.https.html?15-15", - {} - ], - [ - "speculation-rules/prefetch/no-vary-search/prefetch-single-with-hint.https.html?16-16", - {} - ], - [ - "speculation-rules/prefetch/no-vary-search/prefetch-single-with-hint.https.html?17-17", - {} - ], - [ - "speculation-rules/prefetch/no-vary-search/prefetch-single-with-hint.https.html?18-18", - {} - ], - [ - "speculation-rules/prefetch/no-vary-search/prefetch-single-with-hint.https.html?19-19", - {} - ], - [ - "speculation-rules/prefetch/no-vary-search/prefetch-single-with-hint.https.html?2-2", - {} - ], - [ - "speculation-rules/prefetch/no-vary-search/prefetch-single-with-hint.https.html?20-20", - {} - ], - [ - "speculation-rules/prefetch/no-vary-search/prefetch-single-with-hint.https.html?21-21", - {} - ], - [ - "speculation-rules/prefetch/no-vary-search/prefetch-single-with-hint.https.html?22-22", - {} - ], - [ - "speculation-rules/prefetch/no-vary-search/prefetch-single-with-hint.https.html?23-23", - {} - ], - [ - "speculation-rules/prefetch/no-vary-search/prefetch-single-with-hint.https.html?24-24", - {} - ], - [ - "speculation-rules/prefetch/no-vary-search/prefetch-single-with-hint.https.html?25-25", - {} - ], - [ - "speculation-rules/prefetch/no-vary-search/prefetch-single-with-hint.https.html?26-26", - {} - ], - [ - "speculation-rules/prefetch/no-vary-search/prefetch-single-with-hint.https.html?27-27", - {} - ], - [ - "speculation-rules/prefetch/no-vary-search/prefetch-single-with-hint.https.html?28-last", - {} - ], - [ - "speculation-rules/prefetch/no-vary-search/prefetch-single-with-hint.https.html?3-3", - {} - ], - [ - "speculation-rules/prefetch/no-vary-search/prefetch-single-with-hint.https.html?4-4", - {} - ], - [ - "speculation-rules/prefetch/no-vary-search/prefetch-single-with-hint.https.html?5-5", - {} - ], - [ - "speculation-rules/prefetch/no-vary-search/prefetch-single-with-hint.https.html?6-6", - {} - ], - [ - "speculation-rules/prefetch/no-vary-search/prefetch-single-with-hint.https.html?7-7", - {} - ], - [ - "speculation-rules/prefetch/no-vary-search/prefetch-single-with-hint.https.html?8-8", - {} - ], - [ - "speculation-rules/prefetch/no-vary-search/prefetch-single-with-hint.https.html?9-9", - {} - ] - ], - "prefetch-single.https.html": [ - "61f9e420fdefcaa63920f6fdd1db3af2ac9e9537", - [ - "speculation-rules/prefetch/no-vary-search/prefetch-single.https.html?1-1", - {} - ], - [ - "speculation-rules/prefetch/no-vary-search/prefetch-single.https.html?10-10", - {} - ], - [ - "speculation-rules/prefetch/no-vary-search/prefetch-single.https.html?11-11", - {} - ], - [ - "speculation-rules/prefetch/no-vary-search/prefetch-single.https.html?12-12", - {} - ], - [ - "speculation-rules/prefetch/no-vary-search/prefetch-single.https.html?13-13", - {} - ], - [ - "speculation-rules/prefetch/no-vary-search/prefetch-single.https.html?14-14", - {} - ], - [ - "speculation-rules/prefetch/no-vary-search/prefetch-single.https.html?15-15", - {} - ], - [ - "speculation-rules/prefetch/no-vary-search/prefetch-single.https.html?16-16", - {} - ], - [ - "speculation-rules/prefetch/no-vary-search/prefetch-single.https.html?17-17", - {} - ], - [ - "speculation-rules/prefetch/no-vary-search/prefetch-single.https.html?18-18", - {} - ], - [ - "speculation-rules/prefetch/no-vary-search/prefetch-single.https.html?19-19", - {} - ], - [ - "speculation-rules/prefetch/no-vary-search/prefetch-single.https.html?2-2", - {} - ], - [ - "speculation-rules/prefetch/no-vary-search/prefetch-single.https.html?20-20", - {} - ], - [ - "speculation-rules/prefetch/no-vary-search/prefetch-single.https.html?21-21", - {} - ], - [ - "speculation-rules/prefetch/no-vary-search/prefetch-single.https.html?22-22", - {} - ], - [ - "speculation-rules/prefetch/no-vary-search/prefetch-single.https.html?23-23", - {} - ], - [ - "speculation-rules/prefetch/no-vary-search/prefetch-single.https.html?24-24", - {} - ], - [ - "speculation-rules/prefetch/no-vary-search/prefetch-single.https.html?25-25", - {} - ], - [ - "speculation-rules/prefetch/no-vary-search/prefetch-single.https.html?26-26", - {} - ], - [ - "speculation-rules/prefetch/no-vary-search/prefetch-single.https.html?27-27", - {} - ], - [ - "speculation-rules/prefetch/no-vary-search/prefetch-single.https.html?28-28", - {} - ], - [ - "speculation-rules/prefetch/no-vary-search/prefetch-single.https.html?29-29", - {} - ], - [ - "speculation-rules/prefetch/no-vary-search/prefetch-single.https.html?3-3", - {} - ], - [ - "speculation-rules/prefetch/no-vary-search/prefetch-single.https.html?30-last", - {} - ], - [ - "speculation-rules/prefetch/no-vary-search/prefetch-single.https.html?4-4", - {} - ], - [ - "speculation-rules/prefetch/no-vary-search/prefetch-single.https.html?5-5", - {} - ], - [ - "speculation-rules/prefetch/no-vary-search/prefetch-single.https.html?6-6", - {} - ], - [ - "speculation-rules/prefetch/no-vary-search/prefetch-single.https.html?7-7", - {} - ], - [ - "speculation-rules/prefetch/no-vary-search/prefetch-single.https.html?8-8", - {} - ], - [ - "speculation-rules/prefetch/no-vary-search/prefetch-single.https.html?9-9", - {} - ] - ] - }, - "out-of-document-rule-set.https.html": [ - "24502ee5138a861b1bfa134b5102c904cf79cc2f", + "multiple-propagation.any.js": [ + "9be828a23269a520c200f86a09b97cf7d4a28f1d", [ - "speculation-rules/prefetch/out-of-document-rule-set.https.html?include=BaseCase", - {} + "streams/piping/multiple-propagation.any.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "../resources/recording-streams.js" + ] + ] + } ], [ - "speculation-rules/prefetch/out-of-document-rule-set.https.html?include=EmptyRuleSet", - {} + "streams/piping/multiple-propagation.any.serviceworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "../resources/recording-streams.js" + ] + ] + } ], [ - "speculation-rules/prefetch/out-of-document-rule-set.https.html?include=FailCORS", - {} + "streams/piping/multiple-propagation.any.shadowrealm.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "../resources/recording-streams.js" + ] + ] + } ], [ - "speculation-rules/prefetch/out-of-document-rule-set.https.html?include=FailToParseRuleSet", - {} + "streams/piping/multiple-propagation.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "../resources/recording-streams.js" + ] + ] + } ], [ - "speculation-rules/prefetch/out-of-document-rule-set.https.html?include=FailToParseSpeculationRulesHeader", - {} - ], + "streams/piping/multiple-propagation.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "../resources/recording-streams.js" + ] + ] + } + ] + ], + "pipe-through.any.js": [ + "339cee19993346f9535ba4de5a5983e354b33fa1", [ - "speculation-rules/prefetch/out-of-document-rule-set.https.html?include=FollowRedirect", - {} + "streams/piping/pipe-through.any.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/rs-utils.js" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "../resources/recording-streams.js" + ] + ] + } ], [ - "speculation-rules/prefetch/out-of-document-rule-set.https.html?include=InnerListInSpeculationRulesHeader", - {} + "streams/piping/pipe-through.any.serviceworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/rs-utils.js" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "../resources/recording-streams.js" + ] + ] + } ], [ - "speculation-rules/prefetch/out-of-document-rule-set.https.html?include=InvalidMimeType", - {} + "streams/piping/pipe-through.any.shadowrealm.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/rs-utils.js" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "../resources/recording-streams.js" + ] + ] + } ], [ - "speculation-rules/prefetch/out-of-document-rule-set.https.html?include=InvalidUrlForSpeculationRulesSet", - {} + "streams/piping/pipe-through.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/rs-utils.js" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "../resources/recording-streams.js" + ] + ] + } ], [ - "speculation-rules/prefetch/out-of-document-rule-set.https.html?include=RelativeUrlForCandidate", - {} + "streams/piping/pipe-through.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/rs-utils.js" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "../resources/recording-streams.js" + ] + ] + } + ] + ], + "then-interception.any.js": [ + "fc48c3683114785d7187038a9d520d0c4c1039d2", + [ + "streams/piping/then-interception.any.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "../resources/recording-streams.js" + ] + ] + } ], [ - "speculation-rules/prefetch/out-of-document-rule-set.https.html?include=RelativeUrlForSpeculationRulesSet", - {} + "streams/piping/then-interception.any.serviceworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "../resources/recording-streams.js" + ] + ] + } ], [ - "speculation-rules/prefetch/out-of-document-rule-set.https.html?include=StatusCode199", - {} + "streams/piping/then-interception.any.shadowrealm.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "../resources/recording-streams.js" + ] + ] + } ], [ - "speculation-rules/prefetch/out-of-document-rule-set.https.html?include=StatusCode404", - {} + "streams/piping/then-interception.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "../resources/recording-streams.js" + ] + ] + } ], [ - "speculation-rules/prefetch/out-of-document-rule-set.https.html?include=UseNonUTF8EncodingForSpeculationRulesSet", - {} + "streams/piping/then-interception.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "../resources/recording-streams.js" + ] + ] + } ] ], - "prefetch-single.https.html": [ - "15a4466880611dbb3ea14f192ab0329d3d500252", + "throwing-options.any.js": [ + "186f8ded1968a4f1b4f25cf8dd2e5d2ccbb3bfdb", [ - "speculation-rules/prefetch/prefetch-single.https.html?from_protocol=http&to_protocol=http", - {} + "streams/piping/throwing-options.any.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] + } ], [ - "speculation-rules/prefetch/prefetch-single.https.html?from_protocol=http&to_protocol=https", - {} + "streams/piping/throwing-options.any.serviceworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] + } ], [ - "speculation-rules/prefetch/prefetch-single.https.html?from_protocol=https&to_protocol=http", - {} + "streams/piping/throwing-options.any.shadowrealm.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] + } ], [ - "speculation-rules/prefetch/prefetch-single.https.html?from_protocol=https&to_protocol=https", - {} + "streams/piping/throwing-options.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] + } + ], + [ + "streams/piping/throwing-options.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] + } ] ], - "prefetch-status.https.html": [ - "94d6a4020e14cfe644682d9b7ae05c6e4f2b4273", + "transform-streams.any.js": [ + "e079bb637cad0da3f2bb6a28569e49b84d540c2a", [ - "speculation-rules/prefetch/prefetch-status.https.html?status=200&should_prefetch=true", - {} + "streams/piping/transform-streams.any.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] + } ], [ - "speculation-rules/prefetch/prefetch-status.https.html?status=250&should_prefetch=true", - {} + "streams/piping/transform-streams.any.serviceworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] + } ], [ - "speculation-rules/prefetch/prefetch-status.https.html?status=299&should_prefetch=true", - {} + "streams/piping/transform-streams.any.shadowrealm.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] + } ], [ - "speculation-rules/prefetch/prefetch-status.https.html?status=400&should_prefetch=false", - {} + "streams/piping/transform-streams.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] + } ], [ - "speculation-rules/prefetch/prefetch-status.https.html?status=500&should_prefetch=false", - {} - ] - ], - "prefetch-traverse-reload.sub.html": [ - "2b66db2f8aec5ea12575f73a51a98a805c6e999b", - [ - null, + "streams/piping/transform-streams.any.worker.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] } ] + ] + }, + "queuing-strategies-size-function-per-global.window.js": [ + "0f869f13b348da65698b3543ee6b6e26e830768f", + [ + "streams/queuing-strategies-size-function-per-global.window.html", + {} + ] + ], + "queuing-strategies.any.js": [ + "9efc4570cf2ee2e2eb1525434351420ddc0d5e97", + [ + "streams/queuing-strategies.any.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] + } ], - "prefetch-uses-cache.sub.https.html": [ - "c0e9e73c75e877f4e130a26de6764c8966ef8620", + [ + "streams/queuing-strategies.any.serviceworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] + } + ], + [ + "streams/queuing-strategies.any.shadowrealm.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] + } + ], + [ + "streams/queuing-strategies.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] + } + ], + [ + "streams/queuing-strategies.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] + } + ] + ], + "readable-byte-streams": { + "bad-buffers-and-views.any.js": [ + "afcc61e6800a28e0c8acaccf79d3cfadc4237b60", [ - "speculation-rules/prefetch/prefetch-uses-cache.sub.https.html?cross-site", + "streams/readable-byte-streams/bad-buffers-and-views.any.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] } ], [ - "speculation-rules/prefetch/prefetch-uses-cache.sub.https.html?same-site", + "streams/readable-byte-streams/bad-buffers-and-views.any.serviceworker.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] } - ] - ], - "redirect-url.sub.https.html": [ - "02bb35349ff9f72e74d0244473447b9ea89ce9a4", + ], [ - null, + "streams/readable-byte-streams/bad-buffers-and-views.any.shadowrealm.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] } - ] - ], - "referrer-policy-from-rules.https.html": [ - "d4828fca51bd78534ccfc342c06c81ff2ac3912b", - [ - "speculation-rules/prefetch/referrer-policy-from-rules.https.html?1-1", - {} ], [ - "speculation-rules/prefetch/referrer-policy-from-rules.https.html?2-2", - {} + "streams/readable-byte-streams/bad-buffers-and-views.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] + } ], [ - "speculation-rules/prefetch/referrer-policy-from-rules.https.html?3-3", - {} - ], + "streams/readable-byte-streams/bad-buffers-and-views.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] + } + ] + ], + "construct-byob-request.any.js": [ + "a26f949ee29d945a264f368dda9e890f26fa3fdc", [ - "speculation-rules/prefetch/referrer-policy-from-rules.https.html?4-4", - {} + "streams/readable-byte-streams/construct-byob-request.any.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/rs-utils.js" + ] + ] + } ], [ - "speculation-rules/prefetch/referrer-policy-from-rules.https.html?5-5", - {} + "streams/readable-byte-streams/construct-byob-request.any.serviceworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/rs-utils.js" + ] + ] + } ], [ - "speculation-rules/prefetch/referrer-policy-from-rules.https.html?6-6", - {} + "streams/readable-byte-streams/construct-byob-request.any.shadowrealm.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/rs-utils.js" + ] + ] + } ], [ - "speculation-rules/prefetch/referrer-policy-from-rules.https.html?7-last", - {} - ] - ], - "referrer-policy-not-accepted.https.html": [ - "d8c2bea87a0603259ca1bab5a317bf991f36b1a8", - [ - "speculation-rules/prefetch/referrer-policy-not-accepted.https.html?1-1", - {} + "streams/readable-byte-streams/construct-byob-request.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/rs-utils.js" + ] + ] + } ], [ - "speculation-rules/prefetch/referrer-policy-not-accepted.https.html?2-last", - {} + "streams/readable-byte-streams/construct-byob-request.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/rs-utils.js" + ] + ] + } ] ], - "referrer-policy.https.html": [ - "8eb24c45815fd2601d19a7f46152ecc36cb0e6a9", + "enqueue-with-detached-buffer.any.js": [ + "92bd0a26a0ec05c2c3b8dcd25ce347964d1705d5", [ - "speculation-rules/prefetch/referrer-policy.https.html?1-1", - {} + "streams/readable-byte-streams/enqueue-with-detached-buffer.any.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] + } ], [ - "speculation-rules/prefetch/referrer-policy.https.html?2-2", - {} + "streams/readable-byte-streams/enqueue-with-detached-buffer.any.serviceworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] + } ], [ - "speculation-rules/prefetch/referrer-policy.https.html?3-3", - {} + "streams/readable-byte-streams/enqueue-with-detached-buffer.any.shadowrealm.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] + } ], [ - "speculation-rules/prefetch/referrer-policy.https.html?4-last", - {} - ] - ], - "same-origin-cookies.https.html": [ - "d97ee55d106e4344e2e9f4638b8ec3d1de724992", + "streams/readable-byte-streams/enqueue-with-detached-buffer.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] + } + ], [ - null, + "streams/readable-byte-streams/enqueue-with-detached-buffer.any.worker.html", { - "testdriver": true, - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] } ] ], - "user-pass.https.html": [ - "011e6137e61ad8afb21070a7d3e341a42061c000", + "general.any.js": [ + "cdce2244c3c84b75414fca50361f8780333cbfd6", [ - "speculation-rules/prefetch/user-pass.https.html?cross-origin=false", + "streams/readable-byte-streams/general.any.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/rs-utils.js" + ], + [ + "script", + "../resources/test-utils.js" + ] + ] } ], [ - "speculation-rules/prefetch/user-pass.https.html?cross-origin=true", + "streams/readable-byte-streams/general.any.serviceworker.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/rs-utils.js" + ], + [ + "script", + "../resources/test-utils.js" + ] + ] } - ] - ] - }, - "prerender": { - "about-blank-iframes.html": [ - "af289197c6e62c952064f967022b39ac580260a8", + ], [ - null, + "streams/readable-byte-streams/general.any.shadowrealm.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/rs-utils.js" + ], + [ + "script", + "../resources/test-utils.js" + ] + ] } - ] - ], - "accept-client-hint-cache.https.html": [ - "a07f47cfd4e713e9ee0031d704004969e11bdea1", + ], [ - null, + "streams/readable-byte-streams/general.any.sharedworker.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/rs-utils.js" + ], + [ + "script", + "../resources/test-utils.js" + ] + ] } - ] - ], - "activation-start.html": [ - "7aee20c3465dcfb02e370ada84b62af6e99f35d0", + ], [ - null, + "streams/readable-byte-streams/general.any.worker.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/rs-utils.js" + ], + [ + "script", + "../resources/test-utils.js" + ] + ] } ] ], - "blob_object_url.html": [ - "49fb7c9e2c3618a59245090379961c6ab4b5b1ca", + "non-transferable-buffers.any.js": [ + "4bddaef5d647df724d218930fdee6f4c65a012ae", [ - null, + "streams/readable-byte-streams/non-transferable-buffers.any.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] } - ] - ], - "cache-storage.https.html": [ - "76add1edd8bb62b614f56fc10c715eda780cf7fe", + ], [ - null, + "streams/readable-byte-streams/non-transferable-buffers.any.serviceworker.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] } - ] - ], - "clients-matchall.https.html": [ - "31fcc90391d8cda762e79abbd369613f84ba58e8", + ], [ - null, + "streams/readable-byte-streams/non-transferable-buffers.any.shadowrealm.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] } - ] - ], - "cookies.https.html": [ - "2f02197fb5b191b782f45fc1f4d9f47ff6853286", + ], [ - null, + "streams/readable-byte-streams/non-transferable-buffers.any.sharedworker.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] } - ] - ], - "credentialed-prerender-not-opt-in.html": [ - "697382a6dc8569600a34f866288f4a2405d62188", + ], [ - null, + "streams/readable-byte-streams/non-transferable-buffers.any.worker.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] } ] ], - "credentialed-prerender-opt-in.html": [ - "91626bafce677b96fef8115a1a90ca533dd31482", + "read-min.any.js": [ + "4010e3750ce2a84afd1686db9ecd3b9f38543806", [ - null, + "streams/readable-byte-streams/read-min.any.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/rs-utils.js" + ], + [ + "script", + "../resources/test-utils.js" + ] + ] } - ] - ], - "cross-origin-iframe.html": [ - "0fc92fcce1c4583a39d09ef80abef7e5a804c2b8", + ], [ - "speculation-rules/prerender/cross-origin-iframe.html?target_hint=_blank", + "streams/readable-byte-streams/read-min.any.serviceworker.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/rs-utils.js" + ], + [ + "script", + "../resources/test-utils.js" + ] + ] } ], [ - "speculation-rules/prerender/cross-origin-iframe.html?target_hint=_self", + "streams/readable-byte-streams/read-min.any.shadowrealm.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/rs-utils.js" + ], + [ + "script", + "../resources/test-utils.js" + ] + ] } - ] - ], - "cross-origin-isolated.https.html": [ - "9d5d8b369307af060584279977827d06d97f37e1", + ], [ - "speculation-rules/prerender/cross-origin-isolated.https.html?target_hint=_blank", + "streams/readable-byte-streams/read-min.any.sharedworker.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/rs-utils.js" + ], + [ + "script", + "../resources/test-utils.js" + ] + ] } ], [ - "speculation-rules/prerender/cross-origin-isolated.https.html?target_hint=_self", + "streams/readable-byte-streams/read-min.any.worker.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/rs-utils.js" + ], + [ + "script", + "../resources/test-utils.js" + ] + ] } ] ], - "csp-script-src-elem-inline-speculation-rules.html": [ - "7f33c32793bef2afa773abf27be3158797fbdd30", + "respond-after-enqueue.any.js": [ + "e51efa061a6511b2c22a6df541b99209827c11be", [ - "speculation-rules/prerender/csp-script-src-elem-inline-speculation-rules.html?target_hint=_blank", + "streams/readable-byte-streams/respond-after-enqueue.any.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] } ], [ - "speculation-rules/prerender/csp-script-src-elem-inline-speculation-rules.html?target_hint=_self", - { - "timeout": "long" - } - ] - ], - "csp-script-src-inline-speculation-rules.html": [ - "1d5b35c30fba7c963e4c7c62bc487352dd07804f", - [ - "speculation-rules/prerender/csp-script-src-inline-speculation-rules.html?target_hint=_blank", + "streams/readable-byte-streams/respond-after-enqueue.any.serviceworker.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] } ], [ - "speculation-rules/prerender/csp-script-src-inline-speculation-rules.html?target_hint=_self", + "streams/readable-byte-streams/respond-after-enqueue.any.shadowrealm.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] } - ] - ], - "csp-script-src-self.html": [ - "86cf9def4a5a0d3f7e1d005e439670571bafaca6", + ], [ - "speculation-rules/prerender/csp-script-src-self.html?target_hint=_blank", + "streams/readable-byte-streams/respond-after-enqueue.any.sharedworker.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] } ], [ - "speculation-rules/prerender/csp-script-src-self.html?target_hint=_self", + "streams/readable-byte-streams/respond-after-enqueue.any.worker.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] } ] ], - "csp-script-src-strict-dynamic.html": [ - "d5d8079401127cec27cad30e3cfbb66b997b509b", + "tee.any.js": [ + "7dd5ba3f3fb013964b738d50d0c76a05d7c9d583", [ - "speculation-rules/prerender/csp-script-src-strict-dynamic.html?target_hint=_blank", + "streams/readable-byte-streams/tee.any.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/rs-utils.js" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "../resources/recording-streams.js" + ], + [ + "script", + "../resources/rs-test-templates.js" + ] + ] } ], [ - "speculation-rules/prerender/csp-script-src-strict-dynamic.html?target_hint=_self", - { - "timeout": "long" - } - ] - ], - "csp-script-src-unsafe-inline.html": [ - "b9b3092a1282bd1876d9cb0d93c382a4a851923f", - [ - "speculation-rules/prerender/csp-script-src-unsafe-inline.html?target_hint=_blank", + "streams/readable-byte-streams/tee.any.serviceworker.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/rs-utils.js" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "../resources/recording-streams.js" + ], + [ + "script", + "../resources/rs-test-templates.js" + ] + ] } ], [ - "speculation-rules/prerender/csp-script-src-unsafe-inline.html?target_hint=_self", + "streams/readable-byte-streams/tee.any.shadowrealm.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/rs-utils.js" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "../resources/recording-streams.js" + ], + [ + "script", + "../resources/rs-test-templates.js" + ] + ] } - ] - ], - "fetch-blob.html": [ - "3158b0f1a06e76e8960f36117e09cd6c6e9d9bd7", + ], [ - "speculation-rules/prerender/fetch-blob.html?target_hint=_blank", + "streams/readable-byte-streams/tee.any.sharedworker.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/rs-utils.js" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "../resources/recording-streams.js" + ], + [ + "script", + "../resources/rs-test-templates.js" + ] + ] } ], [ - "speculation-rules/prerender/fetch-blob.html?target_hint=_self", + "streams/readable-byte-streams/tee.any.worker.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/rs-utils.js" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "../resources/recording-streams.js" + ], + [ + "script", + "../resources/rs-test-templates.js" + ] + ] } ] - ], - "fetch-intercepted-by-service-worker.https.html": [ - "68db1b537fc02796ffd6064f65bcea341be042b3", + ] + }, + "readable-streams": { + "async-iterator.any.js": [ + "e192201b531da7c24e0bcae1834f08a00cf8757d", [ - null, + "streams/readable-streams/async-iterator.any.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/rs-utils.js" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "../resources/recording-streams.js" + ] + ] } - ] - ], - "iframe-added-post-activation.html": [ - "d22b511e108d8b7c7f0b63f28e5bf485eca98758", + ], [ - null, + "streams/readable-streams/async-iterator.any.serviceworker.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/rs-utils.js" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "../resources/recording-streams.js" + ] + ] } - ] - ], - "indexeddb.html": [ - "f8240014dee43382e7320abf99eaa270e04fd434", + ], [ - null, + "streams/readable-streams/async-iterator.any.shadowrealm.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/rs-utils.js" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "../resources/recording-streams.js" + ] + ] } - ] - ], - "local-storage.html": [ - "59ba3a6d79cc0024be2a69a5aeb7237858fe612c", + ], [ - null, + "streams/readable-streams/async-iterator.any.sharedworker.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/rs-utils.js" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "../resources/recording-streams.js" + ] + ] } - ] - ], - "main-frame-navigation.https.html": [ - "2391f72197ffbf1a8f7c77ba1c48327e3e4d043b", + ], [ - null, + "streams/readable-streams/async-iterator.any.worker.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/rs-utils.js" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "../resources/recording-streams.js" + ] + ] } ] ], - "media-autoplay.html": [ - "f5d3291ffdca4ebf4beef6d3eb13c15fa3ec8f62", + "bad-strategies.any.js": [ + "49fa4bdbece5b58dfa159b52d615c3505deb269c", [ - null, + "streams/readable-streams/bad-strategies.any.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] } - ] - ], - "navigation-api-location-replace.html": [ - "e3ecf1b72b61f5cfbb610906c2c4049ace2d51eb", + ], [ - null, + "streams/readable-streams/bad-strategies.any.serviceworker.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] } - ] - ], - "navigation-api-multiple-entries.html": [ - "e8e0f874597081ca12e653e04c3c9c43716778cf", + ], [ - null, + "streams/readable-streams/bad-strategies.any.shadowrealm.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] } - ] - ], - "navigation-api.html": [ - "fd25e94b5b32d56faac7875f88f48fe484cde3d0", + ], [ - null, + "streams/readable-streams/bad-strategies.any.sharedworker.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] } - ] - ], - "navigation-intercepted-by-service-worker.https.html": [ - "2c40aba0e9ae9283b45a631bbefb17bb20681ad2", + ], [ - null, + "streams/readable-streams/bad-strategies.any.worker.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] } ] ], - "navigator-plugins.html": [ - "4d7fa4902acad9d0edb7562136fbcc8af5bc0380", + "bad-underlying-sources.any.js": [ + "3d77b923d178a0134f3f3d0590be0f4fd836c7a5", [ - null, + "streams/readable-streams/bad-underlying-sources.any.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] } - ] - ], - "prefetch.https.html": [ - "42e4fa47867210c14bc56fb67d66f544ddd111fd", + ], [ - null, + "streams/readable-streams/bad-underlying-sources.any.serviceworker.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] } - ] - ], - "referrer-policy-from-rules.html": [ - "7e3b65fe6127c9ecd6f5448d0d31be8962ff8db2", + ], [ - "speculation-rules/prerender/referrer-policy-from-rules.html?1-1", + "streams/readable-streams/bad-underlying-sources.any.shadowrealm.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] } ], [ - "speculation-rules/prerender/referrer-policy-from-rules.html?2-last", + "streams/readable-streams/bad-underlying-sources.any.sharedworker.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] } - ] - ], - "referrer-policy-mismatch.html": [ - "fa2d424660a3674ba7c7db7a248df70ba6acde73", + ], [ - null, + "streams/readable-streams/bad-underlying-sources.any.worker.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] } ] ], - "referrer-policy-no-referrer.html": [ - "a0d1763f95bd749c7ed3fe49a3f22348d591b6b8", + "cancel.any.js": [ + "d44222f1497f0acbf9d080b0668f9759c001d716", [ - null, + "streams/readable-streams/cancel.any.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "../resources/rs-utils.js" + ] + ] } - ] - ], - "referrer-policy-origin.html": [ - "95eb8ba72f7ed48c213f6cf5d85ff687719bdf28", + ], [ - null, + "streams/readable-streams/cancel.any.serviceworker.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "../resources/rs-utils.js" + ] + ] } - ] - ], - "referrer-policy-strict-origin.html": [ - "0861012fa44cdf5ad10512cb43beb2de783a071b", + ], [ - null, + "streams/readable-streams/cancel.any.shadowrealm.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "../resources/rs-utils.js" + ] + ] } - ] - ], - "referrer.html": [ - "c0ecc845b56e6e67b4c62f32cf778fd6ab6b9474", + ], [ - null, + "streams/readable-streams/cancel.any.sharedworker.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "../resources/rs-utils.js" + ] + ] } - ] - ], - "register-service-worker.https.html": [ - "58245c24d3da7c8dd5364ff81b021e1298249e81", + ], [ - null, + "streams/readable-streams/cancel.any.worker.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "../resources/rs-utils.js" + ] + ] } ] ], - "remove-script-element.html": [ - "31f5f4bb4b9604e459b26ebd612ea12e00581ce7", - [ - null, - {} - ] - ], - "response-code-non-successful.html": [ - "05d997a0081e5aef462a63fdb04b333998057d57", - [ - "speculation-rules/prerender/response-code-non-successful.html?code=204", - { - "timeout": "long" - } - ], + "constructor.any.js": [ + "0b995f0cb16bde21df887a717690eaa853a988b9", [ - "speculation-rules/prerender/response-code-non-successful.html?code=205", + "streams/readable-streams/constructor.any.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] } ], [ - "speculation-rules/prerender/response-code-non-successful.html?code=402", + "streams/readable-streams/constructor.any.serviceworker.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] } ], [ - "speculation-rules/prerender/response-code-non-successful.html?code=404", + "streams/readable-streams/constructor.any.shadowrealm.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] } ], [ - "speculation-rules/prerender/response-code-non-successful.html?code=500", + "streams/readable-streams/constructor.any.sharedworker.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] } ], [ - "speculation-rules/prerender/response-code-non-successful.html?code=503", + "streams/readable-streams/constructor.any.worker.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] } ] ], - "response-code-successful.html": [ - "0e8433b3b2be4f1de745ff492a3d08016a445a0a", + "count-queuing-strategy-integration.any.js": [ + "a8c1b91d0068e316463400395601c995b9f89f40", [ - "speculation-rules/prerender/response-code-successful.html?code=200", + "streams/readable-streams/count-queuing-strategy-integration.any.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] } ], [ - "speculation-rules/prerender/response-code-successful.html?code=201", + "streams/readable-streams/count-queuing-strategy-integration.any.serviceworker.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] } ], [ - "speculation-rules/prerender/response-code-successful.html?code=202", + "streams/readable-streams/count-queuing-strategy-integration.any.shadowrealm.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] } ], [ - "speculation-rules/prerender/response-code-successful.html?code=203", + "streams/readable-streams/count-queuing-strategy-integration.any.sharedworker.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] } ], [ - "speculation-rules/prerender/response-code-successful.html?code=232", + "streams/readable-streams/count-queuing-strategy-integration.any.worker.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] } ] ], - "restriction-audio-setSinkId-with-invalid-sinkId.https.tentative.html": [ - "f4a362894c877d7e1d22c59da4b3ffb4f0422301", + "cross-realm-crash.window.js": [ + "5fc7ce37a5f6d2dbd90b5f898bcd7b198f0c50b0", [ - "speculation-rules/prerender/restriction-audio-setSinkId-with-invalid-sinkId.https.tentative.html?target_hint=_blank", - { - "timeout": "long" - } - ], + "streams/readable-streams/cross-realm-crash.window.html", + {} + ] + ], + "default-reader.any.js": [ + "f92862719e47c178e3bdb1ddcf2cfa12b84b4514", [ - "speculation-rules/prerender/restriction-audio-setSinkId-with-invalid-sinkId.https.tentative.html?target_hint=_self", + "streams/readable-streams/default-reader.any.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/rs-utils.js" + ] + ] } - ] - ], - "restriction-audio-setSinkId.https.tentative.html": [ - "a3b6db5041817a49480a7b26f9a85332fd878441", + ], [ - "speculation-rules/prerender/restriction-audio-setSinkId.https.tentative.html?target_hint=_blank", + "streams/readable-streams/default-reader.any.serviceworker.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/rs-utils.js" + ] + ] } ], [ - "speculation-rules/prerender/restriction-audio-setSinkId.https.tentative.html?target_hint=_self", + "streams/readable-streams/default-reader.any.shadowrealm.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/rs-utils.js" + ] + ] } - ] - ], - "restriction-background-fetch.https.html": [ - "466e886dcb97ecad4db081583f1e8cd7e0e59c17", + ], [ - "speculation-rules/prerender/restriction-background-fetch.https.html?target_hint=_blank", + "streams/readable-streams/default-reader.any.sharedworker.html", { - "testdriver": true, - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/rs-utils.js" + ] + ] } ], [ - "speculation-rules/prerender/restriction-background-fetch.https.html?target_hint=_self", + "streams/readable-streams/default-reader.any.worker.html", { - "testdriver": true, - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/rs-utils.js" + ] + ] } ] ], - "restriction-background-sync.tentative.https.html": [ - "53dbb56d99fc34c7c81fd259d3b819a066db7eb7", + "floating-point-total-queue-size.any.js": [ + "8b88c21d7f0b531266bbec7cb6d764b51d63db66", [ - "speculation-rules/prerender/restriction-background-sync.tentative.https.html?target_hint=_blank", + "streams/readable-streams/floating-point-total-queue-size.any.html", { - "testdriver": true, - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] } ], [ - "speculation-rules/prerender/restriction-background-sync.tentative.https.html?target_hint=_self", - { - "testdriver": true, - "timeout": "long" - } - ] - ], - "restriction-battery-status.https.html": [ - "995b3d85d9e790fe4fadad97386039fb7d3f1c01", - [ - "speculation-rules/prerender/restriction-battery-status.https.html?target_hint=_blank", + "streams/readable-streams/floating-point-total-queue-size.any.serviceworker.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] } ], [ - "speculation-rules/prerender/restriction-battery-status.https.html?target_hint=_self", + "streams/readable-streams/floating-point-total-queue-size.any.shadowrealm.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] } - ] - ], - "restriction-bluetooth.tentative.https.html": [ - "b642e87ef5853e156d2789525dde80fa9b1b00dd", + ], [ - null, + "streams/readable-streams/floating-point-total-queue-size.any.sharedworker.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] } - ] - ], - "restriction-broadcast-channel.html": [ - "167f5f9bc4d1992a4f97d49a72b02ac4b9c03f28", + ], [ - null, + "streams/readable-streams/floating-point-total-queue-size.any.worker.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] } ] ], - "restriction-dedicated-worker.https.html": [ - "05cfc3937907bed27e79ff280c9e4c6ed07d0815", + "from.any.js": [ + "2a4212ab890606527d19b6c63a911a7c7fc58059", [ - null, + "streams/readable-streams/from.any.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/test-utils.js" + ] + ] } - ] - ], - "restriction-encrypted-media-unsupported-config.https.html": [ - "312f979d082b09b835066eff5dc20454ff009c3d", + ], [ - null, + "streams/readable-streams/from.any.serviceworker.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/test-utils.js" + ] + ] } - ] - ], - "restriction-encrypted-media.https.html": [ - "33836372c84c3c8dde7c50215ec7709eaad25565", + ], [ - null, + "streams/readable-streams/from.any.shadowrealm.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/test-utils.js" + ] + ] } - ] - ], - "restriction-focus.html": [ - "b606d1f8bf97586c3d056adec12f7adc8f9479cb", + ], [ - null, + "streams/readable-streams/from.any.sharedworker.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/test-utils.js" + ] + ] } - ] - ], - "restriction-idle-detection.https.html": [ - "953d3dded45d8ab44f1c955e88697afb3ffb8db2", + ], [ - null, + "streams/readable-streams/from.any.worker.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/test-utils.js" + ] + ] } ] ], - "restriction-local-file-system-access.https.html": [ - "8aecf98b2491d46b88d8504fd524c2fd765a07be", + "garbage-collection.any.js": [ + "13bd1fb34378773ddab521ab0e51e572dc54063a", [ - null, + "streams/readable-streams/garbage-collection.any.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "/common/gc.js" + ] + ] } - ] - ], - "restriction-media-auto-play-attribute.html": [ - "10db174db9fdc9c8a2c7c2694bb22799984867bc", + ], [ - "speculation-rules/prerender/restriction-media-auto-play-attribute.html?target_hint=_blank", + "streams/readable-streams/garbage-collection.any.serviceworker.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "/common/gc.js" + ] + ] } ], [ - "speculation-rules/prerender/restriction-media-auto-play-attribute.html?target_hint=_self", + "streams/readable-streams/garbage-collection.any.shadowrealm.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "/common/gc.js" + ] + ] } - ] - ], - "restriction-media-camera.https.html": [ - "5435c737ccd33a4b655cd8713baaed873f0afa12", + ], [ - "speculation-rules/prerender/restriction-media-camera.https.html?target_hint=_blank", + "streams/readable-streams/garbage-collection.any.sharedworker.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "/common/gc.js" + ] + ] } ], [ - "speculation-rules/prerender/restriction-media-camera.https.html?target_hint=_self", + "streams/readable-streams/garbage-collection.any.worker.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "/common/gc.js" + ] + ] } ] ], - "restriction-media-device-info.https.html": [ - "f725145aa1592222d516df1dc5d4e8b46a7b9153", + "general.any.js": [ + "eee3f62215eeb07e6a1c06d004defd98324b270e", [ - "speculation-rules/prerender/restriction-media-device-info.https.html?target_hint=_blank", + "streams/readable-streams/general.any.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "../resources/rs-utils.js" + ] + ] } ], [ - "speculation-rules/prerender/restriction-media-device-info.https.html?target_hint=_self", - { - "timeout": "long" - } - ] - ], - "restriction-media-microphone.https.html": [ - "36607ed95e64bec2c8cb943ebd2772ef3c969bbc", - [ - "speculation-rules/prerender/restriction-media-microphone.https.html?target_hint=_blank", + "streams/readable-streams/general.any.serviceworker.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "../resources/rs-utils.js" + ] + ] } ], [ - "speculation-rules/prerender/restriction-media-microphone.https.html?target_hint=_self", + "streams/readable-streams/general.any.shadowrealm.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "../resources/rs-utils.js" + ] + ] } - ] - ], - "restriction-media-play.html": [ - "3db8c22c4178f8161b21fad6fc18d8b41a7b3e3e", + ], [ - "speculation-rules/prerender/restriction-media-play.html?target_hint=_blank", + "streams/readable-streams/general.any.sharedworker.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "../resources/rs-utils.js" + ] + ] } ], [ - "speculation-rules/prerender/restriction-media-play.html?target_hint=_self", + "streams/readable-streams/general.any.worker.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "../resources/rs-utils.js" + ] + ] } ] ], - "restriction-message-boxes.html": [ - "a40df1acc2ba00d215c2b45b80cf5b621ec2f977", + "global.html": [ + "08665d318eac889dfba85abd0efeb0a3168913df", [ null, - { - "timeout": "long" - } + {} ] ], - "restriction-midi-sysex.https.html": [ - "3201267901ede0fb03710b2d7683ef927d2b373f", + "owning-type-message-port.any.js": [ + "282c1f411485c0e8a17beadb0fad7d14ef634046", [ - null, + "streams/readable-streams/owning-type-message-port.any.html", { - "testdriver": true, - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "../resources/rs-utils.js" + ] + ] } - ] - ], - "restriction-midi.https.html": [ - "49c3082d6108d1cd56c7bd925fa549e6f77c3a8c", + ], [ - null, + "streams/readable-streams/owning-type-message-port.any.serviceworker.html", { - "testdriver": true, - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "../resources/rs-utils.js" + ] + ] } - ] - ], - "restriction-notification.https.html": [ - "78d7d06ecb1b05cd1ff6280a6b3881b9e4096727", + ], [ - null, + "streams/readable-streams/owning-type-message-port.any.shadowrealm.html", { - "testdriver": true, - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "../resources/rs-utils.js" + ] + ] } - ] - ], - "restriction-presentation-request.https.html": [ - "0dc961c0c891493aa3d2592ab22402c0c330c76c", + ], [ - null, + "streams/readable-streams/owning-type-message-port.any.sharedworker.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "../resources/rs-utils.js" + ] + ] } - ] - ], - "restriction-prompt-by-before-unload.html": [ - "63a4b11fc3a3fc4a9bea991831e90896cfa018ab", + ], [ - null, + "streams/readable-streams/owning-type-message-port.any.worker.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "../resources/rs-utils.js" + ] + ] } ] ], - "restriction-push.https.html": [ - "708a0fed2f2e425ef1c3a0e103b2c023af17d240", + "owning-type-video-frame.any.js": [ + "b652f9c5fcb4b67f7ab0405c834020001ad5afff", [ - null, + "streams/readable-streams/owning-type-video-frame.any.html", { - "testdriver": true, - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "../resources/rs-utils.js" + ] + ] } - ] - ], - "restriction-request-picture-in-picture.html": [ - "743254d3d9cdf00c2cf5621b0168ec89532d3b06", + ], [ - null, + "streams/readable-streams/owning-type-video-frame.any.serviceworker.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "../resources/rs-utils.js" + ] + ] } - ] - ], - "restriction-screen-capture.https.html": [ - "f1ad821a0036a8f1fe6ec79e5ab13a92d734bc1d", + ], [ - "speculation-rules/prerender/restriction-screen-capture.https.html?target_hint=_blank", + "streams/readable-streams/owning-type-video-frame.any.shadowrealm.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "../resources/rs-utils.js" + ] + ] } ], [ - "speculation-rules/prerender/restriction-screen-capture.https.html?target_hint=_self", + "streams/readable-streams/owning-type-video-frame.any.sharedworker.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "../resources/rs-utils.js" + ] + ] } - ] - ], - "restriction-screen-orientation-lock.https.html": [ - "f62740f5ce599bfac8b0db67595f4bffb917395c", + ], [ - null, + "streams/readable-streams/owning-type-video-frame.any.worker.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "../resources/rs-utils.js" + ] + ] } ] ], - "restriction-sensor-accelerometer.https.html": [ - "72e3e86bce80457298704a92637e1c344c7d62ca", + "owning-type.any.js": [ + "34c2a55d5134a20ef9450a338278af2ef18612de", [ - "speculation-rules/prerender/restriction-sensor-accelerometer.https.html?target_hint=_blank", + "streams/readable-streams/owning-type.any.html", { - "testdriver": true, - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "../resources/rs-utils.js" + ] + ] } ], [ - "speculation-rules/prerender/restriction-sensor-accelerometer.https.html?target_hint=_self", - { - "testdriver": true, - "timeout": "long" - } - ] - ], - "restriction-sensor-ambient-light-sensor.https.html": [ - "b398c4bd6c4f85c3f56ff4f815ead7ffdf053244", - [ - "speculation-rules/prerender/restriction-sensor-ambient-light-sensor.https.html?target_hint=_blank", + "streams/readable-streams/owning-type.any.serviceworker.html", { - "testdriver": true, - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "../resources/rs-utils.js" + ] + ] } ], [ - "speculation-rules/prerender/restriction-sensor-ambient-light-sensor.https.html?target_hint=_self", + "streams/readable-streams/owning-type.any.shadowrealm.html", { - "testdriver": true, - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "../resources/rs-utils.js" + ] + ] } - ] - ], - "restriction-sensor-gyroscope.https.html": [ - "48e018e0189379788042e592300b4169878ee2e2", + ], [ - "speculation-rules/prerender/restriction-sensor-gyroscope.https.html?target_hint=_blank", + "streams/readable-streams/owning-type.any.sharedworker.html", { - "testdriver": true, - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "../resources/rs-utils.js" + ] + ] } ], [ - "speculation-rules/prerender/restriction-sensor-gyroscope.https.html?target_hint=_self", + "streams/readable-streams/owning-type.any.worker.html", { - "testdriver": true, - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "../resources/rs-utils.js" + ] + ] } ] ], - "restriction-sensor-magnetometer.https.html": [ - "928a73f5720edda8c8c62c2c69f1c5bf5cc8dbe7", + "patched-global.any.js": [ + "c208824c8644695771cfbe4dd4ace71ed4b49df5", [ - "speculation-rules/prerender/restriction-sensor-magnetometer.https.html?target_hint=_blank", + "streams/readable-streams/patched-global.any.html", { - "testdriver": true, - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] } ], [ - "speculation-rules/prerender/restriction-sensor-magnetometer.https.html?target_hint=_self", + "streams/readable-streams/patched-global.any.serviceworker.html", { - "testdriver": true, - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] } - ] - ], - "restriction-service-worker-postmessage.https.html": [ - "a837f6b0e760db9fd30798e012fa446458437156", + ], [ - null, + "streams/readable-streams/patched-global.any.shadowrealm.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] } - ] - ], - "restriction-service-worker-unregister.https.html": [ - "2b83e3858fa969b80b5e1634ea41f93410fd8f96", + ], [ - null, + "streams/readable-streams/patched-global.any.sharedworker.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] } - ] - ], - "restriction-service-worker-update.https.html": [ - "b2c164603d780b72ca5f9e3e91c0d3d55fb43eaa", + ], [ - null, + "streams/readable-streams/patched-global.any.worker.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] } ] ], - "restriction-speech-synthesis.html": [ - "9dbdf9fd45b0e4d31d13d37f89b7b2eb8626ded8", + "read-task-handling.window.js": [ + "2edc0ddddfe692c79474c8570d433ced8df90276", [ - null, + "streams/readable-streams/read-task-handling.window.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker" + ] + ] } ] ], - "restriction-storage-persist.https.html": [ - "5ccbff391b724b294c93a1df628cea7ce67d0953", + "reentrant-strategies.any.js": [ + "8ae7b98e8d5eefbb603157c69c2d250c79702e29", [ - null, + "streams/readable-streams/reentrant-strategies.any.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/recording-streams.js" + ], + [ + "script", + "../resources/rs-utils.js" + ], + [ + "script", + "../resources/test-utils.js" + ] + ] } - ] - ], - "restriction-wake-lock.https.html": [ - "5db64be5dcc8a8dc140cceaa1af3e18e25e0a25f", + ], [ - null, + "streams/readable-streams/reentrant-strategies.any.serviceworker.html", { - "testdriver": true, - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/recording-streams.js" + ], + [ + "script", + "../resources/rs-utils.js" + ], + [ + "script", + "../resources/test-utils.js" + ] + ] } - ] - ], - "restriction-web-hid.https.html": [ - "32aabde45e97cdb8db016b760f1f4ba59d15007d", + ], [ - null, + "streams/readable-streams/reentrant-strategies.any.shadowrealm.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/recording-streams.js" + ], + [ + "script", + "../resources/rs-utils.js" + ], + [ + "script", + "../resources/test-utils.js" + ] + ] } - ] - ], - "restriction-web-locks.https.html": [ - "a3976cad6f3baa837ad18983e4c8f674e20d574c", + ], [ - null, + "streams/readable-streams/reentrant-strategies.any.sharedworker.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/recording-streams.js" + ], + [ + "script", + "../resources/rs-utils.js" + ], + [ + "script", + "../resources/test-utils.js" + ] + ] } - ] - ], - "restriction-web-nfc.https.html": [ - "605c908892ddc879e22560bccb5f8dd85f9690ea", + ], [ - null, + "streams/readable-streams/reentrant-strategies.any.worker.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/recording-streams.js" + ], + [ + "script", + "../resources/rs-utils.js" + ], + [ + "script", + "../resources/test-utils.js" + ] + ] } ] ], - "restriction-web-serial.tentative.https.html": [ - "96b7fe6da1f2bfee44ca67576992f2ac3886f8f6", + "tee.any.js": [ + "c2c2e48230721163c09f4d4f6d1aee0c9a0a66fa", [ - null, + "streams/readable-streams/tee.any.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/rs-utils.js" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "../resources/recording-streams.js" + ], + [ + "script", + "../resources/rs-test-templates.js" + ] + ] } - ] - ], - "restriction-web-share.https.html": [ - "e9b22d58efa580318aeed9e39bb69b13887bb9fb", + ], [ - null, + "streams/readable-streams/tee.any.serviceworker.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/rs-utils.js" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "../resources/recording-streams.js" + ], + [ + "script", + "../resources/rs-test-templates.js" + ] + ] } - ] - ], - "restriction-web-usb.https.html": [ - "8fd5c4fa76ee22de2ae8703c2a0b7995bb1df6b5", + ], [ - null, + "streams/readable-streams/tee.any.shadowrealm.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/rs-utils.js" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "../resources/recording-streams.js" + ], + [ + "script", + "../resources/rs-test-templates.js" + ] + ] } - ] - ], - "restriction-web-xr-immersive-vr-session.https.html": [ - "094bdbd1a0f7bf59a646629869ea210b4536ce14", + ], [ - "speculation-rules/prerender/restriction-web-xr-immersive-vr-session.https.html?target_hint=_blank", + "streams/readable-streams/tee.any.sharedworker.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/rs-utils.js" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "../resources/recording-streams.js" + ], + [ + "script", + "../resources/rs-test-templates.js" + ] + ] } ], [ - "speculation-rules/prerender/restriction-web-xr-immersive-vr-session.https.html?target_hint=_self", + "streams/readable-streams/tee.any.worker.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/rs-utils.js" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "../resources/recording-streams.js" + ], + [ + "script", + "../resources/rs-test-templates.js" + ] + ] } ] ], - "restriction-web-xr-inline-session.https.html": [ - "398f2cb50491d8dbd5928c0c4fd69ab3236392d4", + "templated.any.js": [ + "dc75b805a10d63ac933f9fd05af27c38d11b6fea", [ - "speculation-rules/prerender/restriction-web-xr-inline-session.https.html?target_hint=_blank", + "streams/readable-streams/templated.any.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "../resources/rs-test-templates.js" + ] + ] } ], [ - "speculation-rules/prerender/restriction-web-xr-inline-session.https.html?target_hint=_self", + "streams/readable-streams/templated.any.serviceworker.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "../resources/rs-test-templates.js" + ] + ] } - ] - ], - "restriction-window-move.html": [ - "232760db36576e4079850aeb2339684e92f4293d", + ], [ - null, + "streams/readable-streams/templated.any.shadowrealm.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "../resources/rs-test-templates.js" + ] + ] } - ] - ], - "restriction-window-open.html": [ - "7397d31e65ce13785b5d01e6e420a827715740f9", + ], [ - null, + "streams/readable-streams/templated.any.sharedworker.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "../resources/rs-test-templates.js" + ] + ] + } + ], + [ + "streams/readable-streams/templated.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "../resources/rs-test-templates.js" + ] + ] } ] - ], - "restriction-window-resize.html": [ - "a2466c48b36ea0f9d2048fcfafd2e9d85ef2b611", + ] + }, + "transferable": { + "deserialize-error.window.js": [ + "64cf2bbfb1293e90a67df02cebddeee51ae0ef78", [ - null, + "streams/transferable/deserialize-error.window.html", { + "script_metadata": [ + [ + "script", + "/common/get-host-info.sub.js" + ], + [ + "script", + "resources/create-wasm-module.js" + ], + [ + "timeout", + "long" + ] + ], "timeout": "long" } ] ], - "restrictions.html": [ - "817a1995bc561c945c81862fdf41877977aaf368", + "readable-stream.html": [ + "b1ede4695bf4cd73a74fb43d52d471a72534d210", [ null, - { - "timeout": "long" - } + {} ] ], - "sandbox-iframe.html": [ - "469b8aadc31137d412faad400523af61922c6c0b", + "reason.html": [ + "4251aa85b816bb24a00143b642cf8410a4132366", [ null, - { - "timeout": "long" - } + {} ] ], - "script-supports-speculationrules.html": [ - "2dc856fce5da7c8fa2fb24a8df70348fe5aa84e8", + "service-worker.https.html": [ + "2ca7f19c910f767a9482ff15ff88bda11971a9fe", [ null, - { - "timeout": "long" - } + {} ] ], - "service-workers.https.html": [ - "0f907c35aa10ef62bb4d5bbded5a72721ea740a2", + "shared-worker.html": [ + "cd0415402d5018e2f76f4996edd4e7827adc8ab1", [ null, - { - "timeout": "long" - } + {} ] ], - "session-history-activation.https.html": [ - "a1ee4a31903c1c01af2969322684536f27c3118d", + "transfer-with-messageport.window.js": [ + "3bfe634a6e153d3a80a8a78ced9d1c2325c59daf", [ - null, - { - "timeout": "long" - } + "streams/transferable/transfer-with-messageport.window.html", + {} ] ], - "session-history-location.https.html": [ - "f32bec2bf941a5f9974843fb485844ed09c7c661", + "transform-stream-members.any.js": [ + "05914e12ccbe574ffe006cb35dab0ec717828b5f", [ - null, + "streams/transferable/transform-stream-members.any.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,dedicatedworker,shadowrealm" + ] + ] } - ] - ], - "session-history-navigation.https.html": [ - "46bd41481921094a7734ff37e1c2217f1392b07e", + ], [ - null, + "streams/transferable/transform-stream-members.any.shadowrealm.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,dedicatedworker,shadowrealm" + ] + ] } - ] - ], - "session-history-pushstate.https.html": [ - "89a0276984d331e389ccce4462676f6c12b3a99f", + ], [ - null, + "streams/transferable/transform-stream-members.any.worker.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,dedicatedworker,shadowrealm" + ] + ] } ] ], - "session-history-subframe-navigation.https.html": [ - "db3d9f83472ce1f807d4cd4c0e3492a57a5e4747", + "transform-stream.html": [ + "355d5d807433d75c02adff23e228d050b7772c0f", [ null, - { - "timeout": "long" - } + {} ] ], - "session-history-subframe-reload.https.html": [ - "1caf360f1b85b9c997ec5b45cd81bf570d848e8b", + "window.html": [ + "11c868356b69a1f628cdd8891df6a66c327161da", [ null, - { - "timeout": "long" - } + {} ] ], - "state-and-event.html": [ - "7e8e7fd0a92b7175d2f761f128723404f4a3ba08", + "worker.html": [ + "c5dc9fc62f8cf24c9b45289651724fe3774f305d", [ null, - { - "timeout": "long" - } + {} ] ], - "visibility-state.html": [ - "e9e8548c4f686bd55b56210f8b9dd94d5900f7fa", + "writable-stream.html": [ + "7e25dad94d4cfd8090e8becba0d5a4fe14ce6512", [ null, + {} + ] + ] + }, + "transform-streams": { + "backpressure.any.js": [ + "47a21fb7e71fed837832dd1b91b5100a3513131d", + [ + "streams/transform-streams/backpressure.any.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/recording-streams.js" + ], + [ + "script", + "../resources/test-utils.js" + ] + ] } - ] - ], - "windowclient-navigate-to-cross-origin-url-on-iframe.https.html": [ - "1bfc2e0eb07560850108f973f01f8f1cbc7a15cc", + ], [ - null, + "streams/transform-streams/backpressure.any.serviceworker.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/recording-streams.js" + ], + [ + "script", + "../resources/test-utils.js" + ] + ] } - ] - ], - "windowclient-navigate-to-same-origin-url-on-iframe.https.html": [ - "5f53e97685f184d3af019db9b3308dd0a927b78c", + ], [ - null, + "streams/transform-streams/backpressure.any.shadowrealm.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/recording-streams.js" + ], + [ + "script", + "../resources/test-utils.js" + ] + ] } - ] - ], - "windowclient-navigate.https.html": [ - "608584636a9853c1e469f2d3242b51ba8b3c0b9c", + ], [ - null, + "streams/transform-streams/backpressure.any.sharedworker.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/recording-streams.js" + ], + [ + "script", + "../resources/test-utils.js" + ] + ] } - ] - ], - "workers-in-cross-origin-iframe.html": [ - "260bc8eacbf0e0081d1209deafecb07e60be502d", + ], [ - null, + "streams/transform-streams/backpressure.any.worker.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/recording-streams.js" + ], + [ + "script", + "../resources/test-utils.js" + ] + ] } ] ], - "workers.html": [ - "3abae233a5fbbc1abfdd2c845fb0ba4fe4256f25", + "cancel.any.js": [ + "5c7fc4eae5d55b84a562192726066a82b3c19858", [ - null, + "streams/transform-streams/cancel.any.html", { - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/test-utils.js" + ] + ] } - ] - ] - } - }, - "speech-api": { - "SpeechRecognition-basics.https.html": [ - "dc5d3f5c1df6e254b05ba1decf353abc3ccbef13", - [ - null, - {} - ] - ], - "SpeechSynthesis-pause-resume.tentative.html": [ - "a7aa2bbf6fa25fec45845b1b08801148649fc4a2", - [ - null, - { - "testdriver": true - } - ] - ], - "SpeechSynthesis-speak-events.html": [ - "cc28b822f39bcb15f62353d609d80720ab79e371", - [ - null, - { - "testdriver": true - } - ] - ], - "SpeechSynthesis-speak-twice.html": [ - "2f9a401fc433f8d1d6d4acc4c407925623ac6094", - [ - null, - { - "testdriver": true - } - ] - ], - "SpeechSynthesis-speak-without-activation-fails.tentative.html": [ - "676fe05d132bfdf3c82110e937129f4b70f95c7c", - [ - null, - {} - ] - ], - "SpeechSynthesisErrorEvent-constructor.html": [ - "abefbf9a51cdaef5f7b2a43211e450331b5546a7", - [ - null, - {} - ] - ], - "SpeechSynthesisEvent-constructor.html": [ - "e6b29683f79d8317ce8505678b3d70df6916ba78", - [ - null, - {} - ] - ], - "SpeechSynthesisEvent-properties.html": [ - "f6c8f5fc321d8dca382205c741de742711225212", - [ - null, - { - "testdriver": true - } - ] - ], - "SpeechSynthesisUtterance-basics.https.html": [ - "2fd394150e941ccbeb8d63b99e598cc53e55446d", - [ - null, - {} - ] - ], - "historical.html": [ - "99d2fab5f52654f21f6e8f76878b1a44722b101f", - [ - null, - {} - ] - ], - "idlharness.window.js": [ - "77eb6a1be9083214d78d8d4c659952b18be4db8e", - [ - "speech-api/idlharness.window.html", - { - "script_metadata": [ - [ - "script", - "/resources/WebIDLParser.js" - ], - [ - "script", - "/resources/idlharness.js" - ], - [ - "timeout", - "long" + ], + [ + "streams/transform-streams/cancel.any.serviceworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/test-utils.js" + ] ] - ], - "timeout": "long" - } - ] - ] - }, - "storage": { - "buckets": { - "bucket-quota-indexeddb.tentative.https.any.js": [ - "ee9202777e7ec55faee0b89f4c656f7a76c05e83", + } + ], [ - "storage/buckets/bucket-quota-indexeddb.tentative.https.any.html", + "streams/transform-streams/cancel.any.shadowrealm.html", { "script_metadata": [ [ - "title", - "Bucket quota enforcement for indexeddb" + "global", + "window,worker,shadowrealm" ], [ "script", - "/storage/buckets/resources/util.js" + "../resources/test-utils.js" ] ] } ], [ - "storage/buckets/bucket-quota-indexeddb.tentative.https.any.worker.html", + "streams/transform-streams/cancel.any.sharedworker.html", { "script_metadata": [ [ - "title", - "Bucket quota enforcement for indexeddb" + "global", + "window,worker,shadowrealm" ], [ "script", - "/storage/buckets/resources/util.js" + "../resources/test-utils.js" + ] + ] + } + ], + [ + "streams/transform-streams/cancel.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/test-utils.js" ] ] } ] ], - "bucket-storage-policy.tentative.https.any.js": [ - "d6dce3675d0bca18a379518c6ecf2c7ec1310930", + "errors.any.js": [ + "bea060b6590818f0d6c3e95309b1d1e8bcc2a9a1", [ - "storage/buckets/bucket-storage-policy.tentative.https.any.html", + "streams/transform-streams/errors.any.html", { "script_metadata": [ [ - "title", - "Buckets API: Tests for bucket storage policies." + "global", + "window,worker,shadowrealm" ], [ "script", - "/storage/buckets/resources/util.js" - ], + "../resources/test-utils.js" + ] + ] + } + ], + [ + "streams/transform-streams/errors.any.serviceworker.html", + { + "script_metadata": [ [ "global", - "window,worker" + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/test-utils.js" ] ] } ], [ - "storage/buckets/bucket-storage-policy.tentative.https.any.serviceworker.html", + "streams/transform-streams/errors.any.shadowrealm.html", { "script_metadata": [ [ - "title", - "Buckets API: Tests for bucket storage policies." + "global", + "window,worker,shadowrealm" ], [ "script", - "/storage/buckets/resources/util.js" - ], + "../resources/test-utils.js" + ] + ] + } + ], + [ + "streams/transform-streams/errors.any.sharedworker.html", + { + "script_metadata": [ [ "global", - "window,worker" + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/test-utils.js" ] ] } ], [ - "storage/buckets/bucket-storage-policy.tentative.https.any.sharedworker.html", + "streams/transform-streams/errors.any.worker.html", { "script_metadata": [ [ - "title", - "Buckets API: Tests for bucket storage policies." + "global", + "window,worker,shadowrealm" ], [ "script", - "/storage/buckets/resources/util.js" + "../resources/test-utils.js" + ] + ] + } + ] + ], + "flush.any.js": [ + "c95d8ae1186518c507fccda83bf3d8f164f42f8c", + [ + "streams/transform-streams/flush.any.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" ], + [ + "script", + "../resources/test-utils.js" + ] + ] + } + ], + [ + "streams/transform-streams/flush.any.serviceworker.html", + { + "script_metadata": [ [ "global", - "window,worker" + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/test-utils.js" ] ] } ], [ - "storage/buckets/bucket-storage-policy.tentative.https.any.worker.html", + "streams/transform-streams/flush.any.shadowrealm.html", { "script_metadata": [ [ - "title", - "Buckets API: Tests for bucket storage policies." + "global", + "window,worker,shadowrealm" ], [ "script", - "/storage/buckets/resources/util.js" + "../resources/test-utils.js" + ] + ] + } + ], + [ + "streams/transform-streams/flush.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" ], + [ + "script", + "../resources/test-utils.js" + ] + ] + } + ], + [ + "streams/transform-streams/flush.any.worker.html", + { + "script_metadata": [ [ "global", - "window,worker" + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/test-utils.js" ] ] } ] ], - "bucket_names.tentative.https.any.js": [ - "e0f122dc47d86aedced40ad7e41e5c6c192ef573", + "general.any.js": [ + "a40ef30843ec4da7ccbe1b382a5b6132cf1e19c9", [ - "storage/buckets/bucket_names.tentative.https.any.html", + "streams/transform-streams/general.any.html", { "script_metadata": [ [ - "title", - "Buckets API: Basic tests for bucket names." + "global", + "window,worker,shadowrealm" ], [ "script", - "resources/util.js" + "../resources/test-utils.js" ], [ - "global", - "window,worker" + "script", + "../resources/rs-utils.js" ] ] } ], [ - "storage/buckets/bucket_names.tentative.https.any.serviceworker.html", + "streams/transform-streams/general.any.serviceworker.html", { "script_metadata": [ [ - "title", - "Buckets API: Basic tests for bucket names." + "global", + "window,worker,shadowrealm" ], [ "script", - "resources/util.js" + "../resources/test-utils.js" ], [ - "global", - "window,worker" + "script", + "../resources/rs-utils.js" ] ] } ], [ - "storage/buckets/bucket_names.tentative.https.any.sharedworker.html", + "streams/transform-streams/general.any.shadowrealm.html", { "script_metadata": [ [ - "title", - "Buckets API: Basic tests for bucket names." + "global", + "window,worker,shadowrealm" ], [ "script", - "resources/util.js" + "../resources/test-utils.js" ], [ - "global", - "window,worker" + "script", + "../resources/rs-utils.js" ] ] } ], [ - "storage/buckets/bucket_names.tentative.https.any.worker.html", + "streams/transform-streams/general.any.sharedworker.html", { "script_metadata": [ [ - "title", - "Buckets API: Basic tests for bucket names." + "global", + "window,worker,shadowrealm" ], [ "script", - "resources/util.js" + "../resources/test-utils.js" ], [ - "global", - "window,worker" + "script", + "../resources/rs-utils.js" ] ] } - ] - ], - "buckets_basic.tentative.https.any.js": [ - "20ff227bac1ec1b8a2b4d36c9ba4488a6c13c827", + ], [ - "storage/buckets/buckets_basic.tentative.https.any.html", + "streams/transform-streams/general.any.worker.html", { "script_metadata": [ [ - "title", - "Buckets API: Basic tests for open(), keys(), delete()." + "global", + "window,worker,shadowrealm" ], [ "script", - "resources/util.js" + "../resources/test-utils.js" ], + [ + "script", + "../resources/rs-utils.js" + ] + ] + } + ] + ], + "invalid-realm.tentative.window.js": [ + "57cdfd94862dfe7832164e13eec7bcc4f302c3de", + [ + "streams/transform-streams/invalid-realm.tentative.window.html", + {} + ] + ], + "lipfuzz.any.js": [ + "e334705db44354cbb79c130f25cbbd65d58633ee", + [ + "streams/transform-streams/lipfuzz.any.html", + { + "script_metadata": [ [ "global", - "window,worker" + "window,worker,shadowrealm" ] ] } ], [ - "storage/buckets/buckets_basic.tentative.https.any.serviceworker.html", + "streams/transform-streams/lipfuzz.any.serviceworker.html", { "script_metadata": [ [ - "title", - "Buckets API: Basic tests for open(), keys(), delete()." - ], + "global", + "window,worker,shadowrealm" + ] + ] + } + ], + [ + "streams/transform-streams/lipfuzz.any.shadowrealm.html", + { + "script_metadata": [ [ - "script", - "resources/util.js" - ], + "global", + "window,worker,shadowrealm" + ] + ] + } + ], + [ + "streams/transform-streams/lipfuzz.any.sharedworker.html", + { + "script_metadata": [ [ "global", - "window,worker" + "window,worker,shadowrealm" ] ] } ], [ - "storage/buckets/buckets_basic.tentative.https.any.sharedworker.html", + "streams/transform-streams/lipfuzz.any.worker.html", { "script_metadata": [ [ - "title", - "Buckets API: Basic tests for open(), keys(), delete()." - ], + "global", + "window,worker,shadowrealm" + ] + ] + } + ] + ], + "patched-global.any.js": [ + "cc111eda452f0f771cd03f9f642ed7b596cc5ea0", + [ + "streams/transform-streams/patched-global.any.html", + { + "script_metadata": [ [ - "script", - "resources/util.js" - ], + "global", + "window,worker,shadowrealm" + ] + ] + } + ], + [ + "streams/transform-streams/patched-global.any.serviceworker.html", + { + "script_metadata": [ [ "global", - "window,worker" + "window,worker,shadowrealm" ] ] } ], [ - "storage/buckets/buckets_basic.tentative.https.any.worker.html", + "streams/transform-streams/patched-global.any.shadowrealm.html", { "script_metadata": [ [ - "title", - "Buckets API: Basic tests for open(), keys(), delete()." - ], + "global", + "window,worker,shadowrealm" + ] + ] + } + ], + [ + "streams/transform-streams/patched-global.any.sharedworker.html", + { + "script_metadata": [ [ - "script", - "resources/util.js" - ], + "global", + "window,worker,shadowrealm" + ] + ] + } + ], + [ + "streams/transform-streams/patched-global.any.worker.html", + { + "script_metadata": [ [ "global", - "window,worker" + "window,worker,shadowrealm" ] ] } ] ], - "buckets_storage_policy.tentative.https.any.js": [ - "918364d731527ffe4b1e40896a15d3c3cce08f90", + "properties.any.js": [ + "dbfd1aa372b907e1647c9101212c918eec7489b8", [ - "storage/buckets/buckets_storage_policy.tentative.https.any.html", + "streams/transform-streams/properties.any.html", { "script_metadata": [ [ - "title", - "Buckets API: Tests for bucket storage policies." + "global", + "window,worker,shadowrealm" + ] + ] + } + ], + [ + "streams/transform-streams/properties.any.serviceworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] + } + ], + [ + "streams/transform-streams/properties.any.shadowrealm.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] + } + ], + [ + "streams/transform-streams/properties.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] + } + ], + [ + "streams/transform-streams/properties.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] + } + ] + ], + "reentrant-strategies.any.js": [ + "a6d459655856a7da4f4185b33c5e516c73f51868", + [ + "streams/transform-streams/reentrant-strategies.any.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" ], [ "script", - "resources/util.js" + "../resources/recording-streams.js" ], [ - "global", - "window,worker" + "script", + "../resources/rs-utils.js" + ], + [ + "script", + "../resources/test-utils.js" ] ] } ], [ - "storage/buckets/buckets_storage_policy.tentative.https.any.serviceworker.html", + "streams/transform-streams/reentrant-strategies.any.serviceworker.html", { "script_metadata": [ [ - "title", - "Buckets API: Tests for bucket storage policies." + "global", + "window,worker,shadowrealm" ], [ "script", - "resources/util.js" + "../resources/recording-streams.js" ], [ - "global", - "window,worker" + "script", + "../resources/rs-utils.js" + ], + [ + "script", + "../resources/test-utils.js" ] ] } ], [ - "storage/buckets/buckets_storage_policy.tentative.https.any.sharedworker.html", + "streams/transform-streams/reentrant-strategies.any.shadowrealm.html", { "script_metadata": [ [ - "title", - "Buckets API: Tests for bucket storage policies." + "global", + "window,worker,shadowrealm" ], [ "script", - "resources/util.js" + "../resources/recording-streams.js" ], [ - "global", - "window,worker" + "script", + "../resources/rs-utils.js" + ], + [ + "script", + "../resources/test-utils.js" ] ] } ], [ - "storage/buckets/buckets_storage_policy.tentative.https.any.worker.html", + "streams/transform-streams/reentrant-strategies.any.sharedworker.html", { "script_metadata": [ [ - "title", - "Buckets API: Tests for bucket storage policies." + "global", + "window,worker,shadowrealm" ], [ "script", - "resources/util.js" + "../resources/recording-streams.js" ], [ - "global", - "window,worker" + "script", + "../resources/rs-utils.js" + ], + [ + "script", + "../resources/test-utils.js" ] ] } - ] - ], - "detached-iframe.https.html": [ - "a67c89efa3e89bf640d2b561a31067c3a9bd8051", + ], [ - null, - {} + "streams/transform-streams/reentrant-strategies.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/recording-streams.js" + ], + [ + "script", + "../resources/rs-utils.js" + ], + [ + "script", + "../resources/test-utils.js" + ] + ] + } ] ], - "idlharness-worker.https.any.js": [ - "9a1a3f80b9bc8d58f934921c877fd605d70292e3", + "strategies.any.js": [ + "57e113e668ce2478a654a4e5ae5c9872e002c7fa", [ - "storage/buckets/idlharness-worker.https.any.html", + "streams/transform-streams/strategies.any.html", { "script_metadata": [ [ "global", - "window,worker" + "window,worker,shadowrealm" ], [ "script", - "/resources/WebIDLParser.js" + "../resources/recording-streams.js" ], [ "script", - "/resources/idlharness.js" + "../resources/test-utils.js" ] ] } ], [ - "storage/buckets/idlharness-worker.https.any.serviceworker.html", + "streams/transform-streams/strategies.any.serviceworker.html", { "script_metadata": [ [ "global", - "window,worker" + "window,worker,shadowrealm" ], [ "script", - "/resources/WebIDLParser.js" + "../resources/recording-streams.js" ], [ "script", - "/resources/idlharness.js" + "../resources/test-utils.js" ] ] } ], [ - "storage/buckets/idlharness-worker.https.any.sharedworker.html", + "streams/transform-streams/strategies.any.shadowrealm.html", { "script_metadata": [ [ "global", - "window,worker" + "window,worker,shadowrealm" ], [ "script", - "/resources/WebIDLParser.js" + "../resources/recording-streams.js" ], [ "script", - "/resources/idlharness.js" + "../resources/test-utils.js" ] ] } ], [ - "storage/buckets/idlharness-worker.https.any.worker.html", + "streams/transform-streams/strategies.any.sharedworker.html", { "script_metadata": [ [ "global", - "window,worker" + "window,worker,shadowrealm" ], [ "script", - "/resources/WebIDLParser.js" + "../resources/recording-streams.js" ], [ "script", - "/resources/idlharness.js" + "../resources/test-utils.js" ] ] } - ] - ], - "opaque-origin.https.window.js": [ - "c91d3faa67a3b8041a0cc2605b0d3416e2fcb119", + ], [ - "storage/buckets/opaque-origin.https.window.html", + "streams/transform-streams/strategies.any.worker.html", { "script_metadata": [ [ - "title", - "Storage Buckets API: Interface is not exposed in opaque origins." + "global", + "window,worker,shadowrealm" ], [ "script", - "resources/util.js" + "../resources/recording-streams.js" ], [ - "global", - "window" + "script", + "../resources/test-utils.js" ] ] } ] ], - "storage_bucket_object.tentative.https.any.js": [ - "52f1693ccb22a3966d47ac90d6627818de4d9a65", + "terminate.any.js": [ + "a959e70fe693397a4a1a0f24d45fabead2cdc6f8", [ - "storage/buckets/storage_bucket_object.tentative.https.any.html", + "streams/transform-streams/terminate.any.html", { "script_metadata": [ [ - "title", - "Buckets API: Tests for the StorageBucket object." + "global", + "window,worker,shadowrealm" ], [ - "global", - "window,worker" + "script", + "../resources/recording-streams.js" + ], + [ + "script", + "../resources/test-utils.js" ] ] } ], [ - "storage/buckets/storage_bucket_object.tentative.https.any.serviceworker.html", + "streams/transform-streams/terminate.any.serviceworker.html", { "script_metadata": [ [ - "title", - "Buckets API: Tests for the StorageBucket object." + "global", + "window,worker,shadowrealm" ], [ - "global", - "window,worker" + "script", + "../resources/recording-streams.js" + ], + [ + "script", + "../resources/test-utils.js" ] ] } ], [ - "storage/buckets/storage_bucket_object.tentative.https.any.sharedworker.html", + "streams/transform-streams/terminate.any.shadowrealm.html", { "script_metadata": [ [ - "title", - "Buckets API: Tests for the StorageBucket object." + "global", + "window,worker,shadowrealm" ], [ - "global", - "window,worker" + "script", + "../resources/recording-streams.js" + ], + [ + "script", + "../resources/test-utils.js" ] ] } ], [ - "storage/buckets/storage_bucket_object.tentative.https.any.worker.html", + "streams/transform-streams/terminate.any.sharedworker.html", { "script_metadata": [ [ - "title", - "Buckets API: Tests for the StorageBucket object." + "global", + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/recording-streams.js" ], + [ + "script", + "../resources/test-utils.js" + ] + ] + } + ], + [ + "streams/transform-streams/terminate.any.worker.html", + { + "script_metadata": [ [ "global", - "window,worker" + "window,worker,shadowrealm" + ], + [ + "script", + "../resources/recording-streams.js" + ], + [ + "script", + "../resources/test-utils.js" ] ] } ] ] }, - "estimate-indexeddb.https.any.js": [ - "6577b021ad52ef36ab8748102ec760dfd0f44205", - [ - "storage/estimate-indexeddb.https.any.html", - { - "script_metadata": [ - [ - "title", - "StorageManager: estimate() for indexeddb" - ], - [ - "script", - "/storage/buckets/resources/util.js" - ] - ] - } - ], - [ - "storage/estimate-indexeddb.https.any.worker.html", - { - "script_metadata": [ - [ - "title", - "StorageManager: estimate() for indexeddb" - ], - [ - "script", - "/storage/buckets/resources/util.js" - ] - ] - } - ] - ], - "estimate-parallel.https.any.js": [ - "090f004b8514bc9c99e8f85f9e8f9073dff2a263", - [ - "storage/estimate-parallel.https.any.html", - { - "script_metadata": [ - [ - "title", - "StorageManager: multiple estimate() calls in parallel" - ] - ] - } - ], - [ - "storage/estimate-parallel.https.any.worker.html", - { - "script_metadata": [ - [ - "title", - "StorageManager: multiple estimate() calls in parallel" - ] - ] - } - ] - ], - "estimate-usage-details-caches.https.tentative.any.js": [ - "bf889f84184f0c8cb17997d392f738d062cce908", - [ - "storage/estimate-usage-details-caches.https.tentative.any.html", - { - "script_metadata": [ - [ - "title", - "StorageManager: estimate() for caches" - ] - ] - } - ], - [ - "storage/estimate-usage-details-caches.https.tentative.any.worker.html", - { - "script_metadata": [ - [ - "title", - "StorageManager: estimate() for caches" - ] - ] - } - ] - ], - "estimate-usage-details-indexeddb.https.tentative.any.js": [ - "551cede9c6d1dce91b2323f9f6953d6f0142760b", - [ - "storage/estimate-usage-details-indexeddb.https.tentative.any.html", - { - "script_metadata": [ - [ - "title", - "StorageManager: estimate() usage details for indexeddb" - ], - [ - "script", - "helpers.js" - ], - [ - "script", - "../IndexedDB/resources/support-promises.js" - ] - ] - } - ], - [ - "storage/estimate-usage-details-indexeddb.https.tentative.any.worker.html", - { - "script_metadata": [ - [ - "title", - "StorageManager: estimate() usage details for indexeddb" - ], - [ - "script", - "helpers.js" - ], - [ - "script", - "../IndexedDB/resources/support-promises.js" - ] - ] - } - ] - ], - "estimate-usage-details-service-workers.https.tentative.window.js": [ - "cf3a2aa9430d480df4fc7ff2487e7a42d5c15699", - [ - "storage/estimate-usage-details-service-workers.https.tentative.window.html", - { - "script_metadata": [ - [ - "title", - "StorageManager: estimate() for service worker registrations" - ] - ] - } - ] - ], - "estimate-usage-details.https.tentative.any.js": [ - "2a1cea5fb8dfa78c320328e667bb7ffd940802b0", - [ - "storage/estimate-usage-details.https.tentative.any.html", - { - "script_metadata": [ - [ - "title", - "StorageManager: estimate() should have usage details" - ] - ] - } - ], - [ - "storage/estimate-usage-details.https.tentative.any.worker.html", - { - "script_metadata": [ - [ - "title", - "StorageManager: estimate() should have usage details" - ] - ] - } - ] - ], - "idlharness.https.any.js": [ - "773fac4e4a8cabb09b6c3f838a83aac7c3b43f54", - [ - "storage/idlharness.https.any.html", - { - "script_metadata": [ - [ - "script", - "/resources/WebIDLParser.js" - ], - [ - "script", - "/resources/idlharness.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ], - [ - "storage/idlharness.https.any.worker.html", - { - "script_metadata": [ - [ - "script", - "/resources/WebIDLParser.js" - ], - [ - "script", - "/resources/idlharness.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ] - ], - "opaque-origin.https.window.js": [ - "cc1d31fdf2c68322f72a40b1e84ec05ab1930779", - [ - "storage/opaque-origin.https.window.html", - { - "script_metadata": [ - [ - "title", - "StorageManager API and opaque origins" - ] - ] - } - ] - ], - "partitioned-estimate-usage-details-caches.tentative.https.sub.html": [ - "dc2af7c213c549534f23929bbea210527d1a1f99", - [ - null, - {} - ] - ], - "partitioned-estimate-usage-details-indexeddb.tentative.https.sub.html": [ - "98a1ed8da2512d138b76cd39e39fa28fc7ce32b4", - [ - null, - {} - ] - ], - "partitioned-estimate-usage-details-service-workers.tentative.https.sub.html": [ - "c52ca34e68e520b21d77b8ad8860d216e739e7d9", - [ - null, - {} - ] - ], - "permission-query.https.any.js": [ - "9984bdab793219bf8b77748304f539f027a1e84f", - [ - "storage/permission-query.https.any.html", - { - "script_metadata": [ - [ - "title", - "The Permission API registration for \"persistent-storage\"" - ] - ] - } - ], - [ - "storage/permission-query.https.any.worker.html", - { - "script_metadata": [ - [ - "title", - "The Permission API registration for \"persistent-storage\"" - ] - ] - } - ] - ], - "persisted.https.any.js": [ - "57e15f0e811de3e94652b2f16c5482a94be63c24", - [ - "storage/persisted.https.any.html", - { - "script_metadata": [ - [ - "title", - "StorageManager: persisted()" - ] - ] - } - ], - [ - "storage/persisted.https.any.worker.html", - { - "script_metadata": [ - [ - "title", - "StorageManager: persisted()" - ] - ] - } - ] - ], - "quotachange-in-detached-iframe.tentative.https.html": [ - "123af50e3ce6a3f98756d0377a166dbecfa146fe", - [ - null, - {} - ] - ], - "storagemanager-estimate.https.any.js": [ - "3b6f4d8edc4c2e51d6e9efbc2a2929e75d6b6725", - [ - "storage/storagemanager-estimate.https.any.html", - { - "script_metadata": [ - [ - "title", - "StorageManager: estimate()" - ] - ] - } - ], - [ - "storage/storagemanager-estimate.https.any.worker.html", - { - "script_metadata": [ - [ - "title", - "StorageManager: estimate()" - ] - ] - } - ] - ], - "storagemanager-persist-persisted-match.https.any.js": [ - "edbe67fae2c1e17bc7ce3aa3c3d1dc9db7982cac", - [ - "storage/storagemanager-persist-persisted-match.https.any.html", - { - "script_metadata": [ - [ - "title", - "StorageManager: result of persist() matches result of persisted()" - ] - ] - } - ], - [ - "storage/storagemanager-persist-persisted-match.https.any.worker.html", - { - "script_metadata": [ - [ - "title", - "StorageManager: result of persist() matches result of persisted()" - ] - ] - } - ] - ], - "storagemanager-persist.https.window.js": [ - "13e17a16e14198e21b0b5984ed46c93a50daed41", - [ - "storage/storagemanager-persist.https.window.html", - { - "script_metadata": [ - [ - "title", - "StorageManager: persist()" - ] - ] - } - ] - ], - "storagemanager-persist.https.worker.js": [ - "fcf8175f706fe131c84ed2ac2a022e676d618c40", - [ - "storage/storagemanager-persist.https.worker.html", - { - "script_metadata": [ - [ - "title", - "StorageManager: persist() (worker)" - ] - ] - } - ] - ], - "storagemanager-persisted.https.any.js": [ - "70999406690fb26b7bc154093d826d7c0b8cf72c", - [ - "storage/storagemanager-persisted.https.any.html", - { - "script_metadata": [ - [ - "title", - "StorageManager: persisted()" - ] - ] - } - ], - [ - "storage/storagemanager-persisted.https.any.worker.html", - { - "script_metadata": [ - [ - "title", - "StorageManager: persisted()" - ] - ] - } - ] - ] - }, - "storage-access-api": { - "hasStorageAccess-ABA.tentative.sub.https.window.js": [ - "8fa4122fbbb36feca0961219437ab4d49722c087", - [ - "storage-access-api/hasStorageAccess-ABA.tentative.sub.https.window.html", - { - "script_metadata": [ - [ - "script", - "helpers.js" - ], - [ - "script", - "/resources/testdriver.js" - ], - [ - "script", - "/resources/testdriver-vendor.js" - ] - ] - } - ] - ], - "hasStorageAccess-insecure.sub.window.js": [ - "866bd97f273c0513acf1a3e128b2cccfb8a1589a", - [ - "storage-access-api/hasStorageAccess-insecure.sub.window.html", - { - "script_metadata": [ - [ - "script", - "helpers.js" - ] - ] - } - ] - ], - "hasStorageAccess.sub.https.window.js": [ - "0efc687199a92ce93e7997ae4770a386ba2d56b5", - [ - "storage-access-api/hasStorageAccess.sub.https.window.html", - { - "script_metadata": [ - [ - "script", - "helpers.js" - ], - [ - "script", - "/resources/testdriver.js" - ], - [ - "script", - "/resources/testdriver-vendor.js" - ] - ] - } - ] - ], - "idlharness.window.js": [ - "41c6b84d6890363be94990359f2c3fef71494ce4", - [ - "storage-access-api/idlharness.window.html", - { - "script_metadata": [ - [ - "global", - "window,worker" - ], - [ - "script", - "/resources/WebIDLParser.js" - ], - [ - "script", - "/resources/idlharness.js" - ] - ] - } - ] - ], - "requestStorageAccess-ABA.tentative.sub.https.window.js": [ - "428053f3e56899ce9c66cc7eefbcfa3e462f2191", - [ - "storage-access-api/requestStorageAccess-ABA.tentative.sub.https.window.html", - { - "script_metadata": [ - [ - "script", - "helpers.js" - ], - [ - "script", - "/resources/testdriver.js" - ], - [ - "script", - "/resources/testdriver-vendor.js" - ] - ] - } - ] - ], - "requestStorageAccess-cross-origin-iframe-navigation.sub.https.window.js": [ - "691c8c86b62005880c0babeb686cfc18113579ec", - [ - "storage-access-api/requestStorageAccess-cross-origin-iframe-navigation.sub.https.window.html", - { - "script_metadata": [ - [ - "script", - "helpers.js" - ], - [ - "script", - "/cookies/resources/cookie-helper.sub.js" - ], - [ - "script", - "/resources/testdriver.js" - ], - [ - "script", - "/resources/testdriver-vendor.js" - ] - ] - } - ] - ], - "requestStorageAccess-cross-site-iframe.sub.https.window.js": [ - "53f90de75d06f6bbf95e99bd5ae7da7cd06f7830", - [ - "storage-access-api/requestStorageAccess-cross-site-iframe.sub.https.window.html", - { - "script_metadata": [ - [ - "script", - "helpers.js" - ], - [ - "script", - "/resources/testdriver.js" - ], - [ - "script", - "/resources/testdriver-vendor.js" - ] - ] - } - ] - ], - "requestStorageAccess-cross-site-sibling-iframes.sub.https.window.js": [ - "06ee80e5a08951c7300dcb446d3e6bcf39a35583", - [ - "storage-access-api/requestStorageAccess-cross-site-sibling-iframes.sub.https.window.html", - { - "script_metadata": [ - [ - "script", - "helpers.js" - ], - [ - "script", - "/cookies/resources/cookie-helper.sub.js" - ], - [ - "script", - "/resources/testdriver.js" - ], - [ - "script", - "/resources/testdriver-vendor.js" - ] - ] - } - ] - ], - "requestStorageAccess-dedicated-worker.tentative.sub.https.window.js": [ - "f2d766575db00ca877570bc31e91810b978af7cd", - [ - "storage-access-api/requestStorageAccess-dedicated-worker.tentative.sub.https.window.html", - { - "script_metadata": [ - [ - "script", - "helpers.js" - ], - [ - "script", - "/cookies/resources/cookie-helper.sub.js" - ], - [ - "script", - "/resources/testdriver.js" - ], - [ - "script", - "/resources/testdriver-vendor.js" - ] - ] - } - ] - ], - "requestStorageAccess-insecure.sub.window.js": [ - "1ad04321db7f4ce9e55d8676fecee8fd6604c8ca", - [ - "storage-access-api/requestStorageAccess-insecure.sub.window.html", - { - "script_metadata": [ - [ - "script", - "helpers.js" - ], - [ - "script", - "/resources/testdriver.js" - ], - [ - "script", - "/resources/testdriver-vendor.js" - ] - ] - } - ] - ], - "requestStorageAccess-nested-cross-origin-iframe.sub.https.window.js": [ - "eeac9c2a401722732d819e6732f2bd5022a37096", - [ - "storage-access-api/requestStorageAccess-nested-cross-origin-iframe.sub.https.window.html", - { - "script_metadata": [ - [ - "script", - "helpers.js" - ], - [ - "script", - "/resources/testdriver.js" - ], - [ - "script", - "/resources/testdriver-vendor.js" - ] - ] - } - ] - ], - "requestStorageAccess-nested-cross-site-iframe.sub.https.window.js": [ - "59442d97c9385269a2cbf44af88abbd2708ca777", - [ - "storage-access-api/requestStorageAccess-nested-cross-site-iframe.sub.https.window.html", - { - "script_metadata": [ - [ - "script", - "helpers.js" - ], - [ - "script", - "/resources/testdriver.js" - ], - [ - "script", - "/resources/testdriver-vendor.js" - ] - ] - } - ] - ], - "requestStorageAccess-nested-same-origin-iframe.sub.https.window.js": [ - "24d82c487f9544f269726899191d5be4d54517eb", - [ - "storage-access-api/requestStorageAccess-nested-same-origin-iframe.sub.https.window.html", - { - "script_metadata": [ - [ - "script", - "helpers.js" - ], - [ - "script", - "/resources/testdriver.js" - ], - [ - "script", - "/resources/testdriver-vendor.js" - ] - ] - } - ] - ], - "requestStorageAccess-non-fully-active.sub.https.window.js": [ - "79b4a7959f4f94adc09bc5f44175bc9f8eed2880", - [ - "storage-access-api/requestStorageAccess-non-fully-active.sub.https.window.html", - { - "script_metadata": [ - [ - "script", - "helpers.js" - ], - [ - "script", - "/resources/testdriver.js" - ], - [ - "script", - "/resources/testdriver-vendor.js" - ] - ] - } - ] - ], - "requestStorageAccess-same-site-iframe.sub.https.window.js": [ - "f646444e67f4ba591f5239888c8dbea38586954c", - [ - "storage-access-api/requestStorageAccess-same-site-iframe.sub.https.window.html", - { - "script_metadata": [ - [ - "script", - "helpers.js" - ], - [ - "script", - "/resources/testdriver.js" - ], - [ - "script", - "/resources/testdriver-vendor.js" - ] - ] - } - ] - ], - "requestStorageAccess-web-socket.tentative.sub.https.window.js": [ - "bc323bd95a09a0ed3192f5a67db1be5636f09961", - [ - "storage-access-api/requestStorageAccess-web-socket.tentative.sub.https.window.html", - { - "script_metadata": [ - [ - "script", - "helpers.js" - ], - [ - "script", - "/cookies/resources/cookie-helper.sub.js" - ], - [ - "script", - "/resources/testdriver.js" - ], - [ - "script", - "/resources/testdriver-vendor.js" - ] - ] - } - ] - ], - "requestStorageAccess.sub.https.window.js": [ - "21c451ca6147f0c58bf9294fb40b03404525c578", - [ - "storage-access-api/requestStorageAccess.sub.https.window.html", - { - "script_metadata": [ - [ - "script", - "helpers.js" - ], - [ - "script", - "/cookies/resources/cookie-helper.sub.js" - ], - [ - "script", - "/resources/testdriver.js" - ], - [ - "script", - "/resources/testdriver-vendor.js" - ] - ] - } - ] - ], - "sandboxAttribute.window.js": [ - "de79cd07a9cddac5b8fd4de1fde264313ee700be", - [ - "storage-access-api/sandboxAttribute.window.html", - {} - ] - ], - "storage-access-beyond-cookies.BroadcastChannel.tentative.sub.https.window.js": [ - "d709cdcd10f807f2f2e879d560cd9f85fd4abc51", - [ - "storage-access-api/storage-access-beyond-cookies.BroadcastChannel.tentative.sub.https.window.html", - { - "script_metadata": [ - [ - "script", - "/resources/testdriver.js" - ], - [ - "script", - "/resources/testdriver-vendor.js" - ] - ] - } - ] - ], - "storage-access-beyond-cookies.blobStorage.tentative.sub.https.window.js": [ - "6ef0bd08d4dc7175a1b241baa348776172b34d8c", - [ - "storage-access-api/storage-access-beyond-cookies.blobStorage.tentative.sub.https.window.html", - { - "script_metadata": [ - [ - "script", - "/resources/testdriver.js" - ], - [ - "script", - "/resources/testdriver-vendor.js" - ] - ] - } - ] - ], - "storage-access-beyond-cookies.caches.tentative.sub.https.window.js": [ - "dda1e54565407ed438f9f23b6f0c84336e7b7748", - [ - "storage-access-api/storage-access-beyond-cookies.caches.tentative.sub.https.window.html", - { - "script_metadata": [ - [ - "script", - "/resources/testdriver.js" - ], - [ - "script", - "/resources/testdriver-vendor.js" - ] - ] - } - ] - ], - "storage-access-beyond-cookies.estimate.tentative.sub.https.window.js": [ - "2e9f6eed127898a21c890b6f6dfe588db9197852", - [ - "storage-access-api/storage-access-beyond-cookies.estimate.tentative.sub.https.window.html", - { - "script_metadata": [ - [ - "script", - "/resources/testdriver.js" - ], - [ - "script", - "/resources/testdriver-vendor.js" - ] - ] - } - ] - ], - "storage-access-beyond-cookies.getDirectory.tentative.sub.https.window.js": [ - "5038afc969afd8139b099a42ca0e2df65554b91a", - [ - "storage-access-api/storage-access-beyond-cookies.getDirectory.tentative.sub.https.window.html", - { - "script_metadata": [ - [ - "script", - "/resources/testdriver.js" - ], - [ - "script", - "/resources/testdriver-vendor.js" - ] - ] - } - ] - ], - "storage-access-beyond-cookies.indexedDB.tentative.sub.https.window.js": [ - "18c4317bbe9c6598551787feaf9df9d4ad5210db", - [ - "storage-access-api/storage-access-beyond-cookies.indexedDB.tentative.sub.https.window.html", - { - "script_metadata": [ - [ - "script", - "/resources/testdriver.js" - ], - [ - "script", - "/resources/testdriver-vendor.js" - ] - ] - } - ] - ], - "storage-access-beyond-cookies.localStorage.tentative.sub.https.window.js": [ - "6243cb1fa8c5c25e15747dfc22de3f3c108eea98", - [ - "storage-access-api/storage-access-beyond-cookies.localStorage.tentative.sub.https.window.html", - { - "script_metadata": [ - [ - "script", - "/resources/testdriver.js" - ], - [ - "script", - "/resources/testdriver-vendor.js" - ] - ] - } - ] - ], - "storage-access-beyond-cookies.locks.tentative.sub.https.window.js": [ - "83aa28c018e1a3e4fd0b5ffe794a2acb751de287", - [ - "storage-access-api/storage-access-beyond-cookies.locks.tentative.sub.https.window.html", - { - "script_metadata": [ - [ - "script", - "/resources/testdriver.js" - ], - [ - "script", - "/resources/testdriver-vendor.js" - ] - ] - } - ] - ], - "storage-access-beyond-cookies.sessionStorage.tentative.sub.https.window.js": [ - "1b12f133b2c36ea2ed8eaa3cfd86b8d268dbff9c", - [ - "storage-access-api/storage-access-beyond-cookies.sessionStorage.tentative.sub.https.window.html", - { - "script_metadata": [ - [ - "script", - "/resources/testdriver.js" - ], - [ - "script", - "/resources/testdriver-vendor.js" - ] - ] - } - ] - ], - "storage-access-permission.sub.https.window.js": [ - "f0aadf4828dcb549c0d66ef4745b1e190d56f8d6", - [ - "storage-access-api/storage-access-permission.sub.https.window.html", - { - "script_metadata": [ - [ - "script", - "helpers.js" - ], - [ - "script", - "/resources/testdriver.js" - ], - [ - "script", - "/resources/testdriver-vendor.js" - ] - ] - } - ] - ], - "storageAccess.testdriver.sub.html": [ - "cc945dd18232b725f93e5b877f39be664ce56997", - [ - null, - { - "testdriver": true - } - ] - ] - }, - "streams": { - "idlharness-shadowrealm.window.js": [ - "099b2475ca7e8795a685a080d48b0c0b05fd886d", - [ - "streams/idlharness-shadowrealm.window.html", - { - "script_metadata": [ - [ - "script", - "/resources/idlharness-shadowrealm.js" - ] - ] - } - ] - ], - "idlharness.any.js": [ - "42a17da58c5ae390234ee394303aa2fe6a72ebdd", - [ - "streams/idlharness.any.html", - { - "script_metadata": [ - [ - "global", - "window,worker" - ], - [ - "script", - "/resources/WebIDLParser.js" - ], - [ - "script", - "/resources/idlharness.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ], - [ - "streams/idlharness.any.serviceworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker" - ], - [ - "script", - "/resources/WebIDLParser.js" - ], - [ - "script", - "/resources/idlharness.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ], - [ - "streams/idlharness.any.sharedworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker" - ], - [ - "script", - "/resources/WebIDLParser.js" - ], - [ - "script", - "/resources/idlharness.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ], - [ - "streams/idlharness.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,worker" - ], - [ - "script", - "/resources/WebIDLParser.js" - ], - [ - "script", - "/resources/idlharness.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ] - ], - "piping": { - "abort.any.js": [ - "c9929df91cf68816a6a3381249616b4c38085dc5", + "writable-streams": { + "aborting.any.js": [ + "9171dbe158f00ccbf6f6e4083cce3ec9f959e755", [ - "streams/piping/abort.any.html", + "streams/writable-streams/aborting.any.html", { "script_metadata": [ [ @@ -720075,17 +749553,17 @@ ], [ "script", - "../resources/recording-streams.js" + "../resources/test-utils.js" ], [ "script", - "../resources/test-utils.js" + "../resources/recording-streams.js" ] ] } ], [ - "streams/piping/abort.any.serviceworker.html", + "streams/writable-streams/aborting.any.serviceworker.html", { "script_metadata": [ [ @@ -720094,17 +749572,17 @@ ], [ "script", - "../resources/recording-streams.js" + "../resources/test-utils.js" ], [ "script", - "../resources/test-utils.js" + "../resources/recording-streams.js" ] ] } ], [ - "streams/piping/abort.any.shadowrealm.html", + "streams/writable-streams/aborting.any.shadowrealm.html", { "script_metadata": [ [ @@ -720113,17 +749591,17 @@ ], [ "script", - "../resources/recording-streams.js" + "../resources/test-utils.js" ], [ "script", - "../resources/test-utils.js" + "../resources/recording-streams.js" ] ] } ], [ - "streams/piping/abort.any.sharedworker.html", + "streams/writable-streams/aborting.any.sharedworker.html", { "script_metadata": [ [ @@ -720132,17 +749610,17 @@ ], [ "script", - "../resources/recording-streams.js" + "../resources/test-utils.js" ], [ "script", - "../resources/test-utils.js" + "../resources/recording-streams.js" ] ] } ], [ - "streams/piping/abort.any.worker.html", + "streams/writable-streams/aborting.any.worker.html", { "script_metadata": [ [ @@ -720151,98 +749629,78 @@ ], [ "script", - "../resources/recording-streams.js" + "../resources/test-utils.js" ], [ "script", - "../resources/test-utils.js" + "../resources/recording-streams.js" ] ] } ] ], - "close-propagation-backward.any.js": [ - "25bd475ed13e77d9021a5228021ab23e1b945a91", + "bad-strategies.any.js": [ + "a1ef0791168f99186925acbe869ac8449e0f4e79", [ - "streams/piping/close-propagation-backward.any.html", + "streams/writable-streams/bad-strategies.any.html", { "script_metadata": [ [ "global", "window,worker,shadowrealm" - ], - [ - "script", - "../resources/recording-streams.js" ] ] } ], [ - "streams/piping/close-propagation-backward.any.serviceworker.html", + "streams/writable-streams/bad-strategies.any.serviceworker.html", { "script_metadata": [ [ "global", "window,worker,shadowrealm" - ], - [ - "script", - "../resources/recording-streams.js" ] ] } ], [ - "streams/piping/close-propagation-backward.any.shadowrealm.html", + "streams/writable-streams/bad-strategies.any.shadowrealm.html", { "script_metadata": [ [ "global", "window,worker,shadowrealm" - ], - [ - "script", - "../resources/recording-streams.js" ] ] } ], [ - "streams/piping/close-propagation-backward.any.sharedworker.html", + "streams/writable-streams/bad-strategies.any.sharedworker.html", { "script_metadata": [ [ "global", "window,worker,shadowrealm" - ], - [ - "script", - "../resources/recording-streams.js" ] ] } ], [ - "streams/piping/close-propagation-backward.any.worker.html", + "streams/writable-streams/bad-strategies.any.worker.html", { "script_metadata": [ [ "global", "window,worker,shadowrealm" - ], - [ - "script", - "../resources/recording-streams.js" ] ] } ] ], - "close-propagation-forward.any.js": [ - "0ec94f80abf04b2093e3297a0bbb81a63bbb6a74", + "bad-underlying-sinks.any.js": [ + "3c434ffe60ccb98f6c8eb96a06d0c61af46b283d", [ - "streams/piping/close-propagation-forward.any.html", + "streams/writable-streams/bad-underlying-sinks.any.html", { "script_metadata": [ [ @@ -720261,7 +749719,7 @@ } ], [ - "streams/piping/close-propagation-forward.any.serviceworker.html", + "streams/writable-streams/bad-underlying-sinks.any.serviceworker.html", { "script_metadata": [ [ @@ -720280,7 +749738,7 @@ } ], [ - "streams/piping/close-propagation-forward.any.shadowrealm.html", + "streams/writable-streams/bad-underlying-sinks.any.shadowrealm.html", { "script_metadata": [ [ @@ -720299,7 +749757,7 @@ } ], [ - "streams/piping/close-propagation-forward.any.sharedworker.html", + "streams/writable-streams/bad-underlying-sinks.any.sharedworker.html", { "script_metadata": [ [ @@ -720318,7 +749776,7 @@ } ], [ - "streams/piping/close-propagation-forward.any.worker.html", + "streams/writable-streams/bad-underlying-sinks.any.worker.html", { "script_metadata": [ [ @@ -720337,10 +749795,68 @@ } ] ], - "error-propagation-backward.any.js": [ - "f786469d6c1d408573ea385d8fce19252f20f86f", + "byte-length-queuing-strategy.any.js": [ + "eed86ee7004ea15e288def1f3d511ba6fe39d820", [ - "streams/piping/error-propagation-backward.any.html", + "streams/writable-streams/byte-length-queuing-strategy.any.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] + } + ], + [ + "streams/writable-streams/byte-length-queuing-strategy.any.serviceworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] + } + ], + [ + "streams/writable-streams/byte-length-queuing-strategy.any.shadowrealm.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] + } + ], + [ + "streams/writable-streams/byte-length-queuing-strategy.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] + } + ], + [ + "streams/writable-streams/byte-length-queuing-strategy.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] + } + ] + ], + "close.any.js": [ + "45261e7ca7e01dd056df13cbc8a6816ba7ba9b22", + [ + "streams/writable-streams/close.any.html", { "script_metadata": [ [ @@ -720359,7 +749875,7 @@ } ], [ - "streams/piping/error-propagation-backward.any.serviceworker.html", + "streams/writable-streams/close.any.serviceworker.html", { "script_metadata": [ [ @@ -720378,7 +749894,7 @@ } ], [ - "streams/piping/error-propagation-backward.any.shadowrealm.html", + "streams/writable-streams/close.any.shadowrealm.html", { "script_metadata": [ [ @@ -720397,7 +749913,7 @@ } ], [ - "streams/piping/error-propagation-backward.any.sharedworker.html", + "streams/writable-streams/close.any.sharedworker.html", { "script_metadata": [ [ @@ -720416,7 +749932,7 @@ } ], [ - "streams/piping/error-propagation-backward.any.worker.html", + "streams/writable-streams/close.any.worker.html", { "script_metadata": [ [ @@ -720435,121 +749951,367 @@ } ] ], - "error-propagation-forward.any.js": [ - "e9260f9ea22c4189ce2c5344db24b706cc367063", + "constructor.any.js": [ + "0abc7ef545ea0bf8a220f501a401ead93d82bf7f", [ - "streams/piping/error-propagation-forward.any.html", + "streams/writable-streams/constructor.any.html", { "script_metadata": [ [ "global", "window,worker,shadowrealm" - ], + ] + ] + } + ], + [ + "streams/writable-streams/constructor.any.serviceworker.html", + { + "script_metadata": [ [ - "script", - "../resources/test-utils.js" - ], + "global", + "window,worker,shadowrealm" + ] + ] + } + ], + [ + "streams/writable-streams/constructor.any.shadowrealm.html", + { + "script_metadata": [ [ - "script", - "../resources/recording-streams.js" + "global", + "window,worker,shadowrealm" ] ] } ], [ - "streams/piping/error-propagation-forward.any.serviceworker.html", + "streams/writable-streams/constructor.any.sharedworker.html", { "script_metadata": [ [ "global", "window,worker,shadowrealm" - ], + ] + ] + } + ], + [ + "streams/writable-streams/constructor.any.worker.html", + { + "script_metadata": [ [ - "script", - "../resources/test-utils.js" - ], + "global", + "window,worker,shadowrealm" + ] + ] + } + ] + ], + "count-queuing-strategy.any.js": [ + "8211757530d3233e4bfeacd4d431861e6c7c7481", + [ + "streams/writable-streams/count-queuing-strategy.any.html", + { + "script_metadata": [ [ - "script", - "../resources/recording-streams.js" + "global", + "window,worker,shadowrealm" ] ] } ], [ - "streams/piping/error-propagation-forward.any.shadowrealm.html", + "streams/writable-streams/count-queuing-strategy.any.serviceworker.html", { "script_metadata": [ [ "global", "window,worker,shadowrealm" - ], + ] + ] + } + ], + [ + "streams/writable-streams/count-queuing-strategy.any.shadowrealm.html", + { + "script_metadata": [ [ - "script", - "../resources/test-utils.js" - ], + "global", + "window,worker,shadowrealm" + ] + ] + } + ], + [ + "streams/writable-streams/count-queuing-strategy.any.sharedworker.html", + { + "script_metadata": [ [ - "script", - "../resources/recording-streams.js" + "global", + "window,worker,shadowrealm" ] ] } ], [ - "streams/piping/error-propagation-forward.any.sharedworker.html", + "streams/writable-streams/count-queuing-strategy.any.worker.html", { "script_metadata": [ [ "global", "window,worker,shadowrealm" - ], + ] + ] + } + ] + ], + "error.any.js": [ + "d08c8a54863bb9693e76116946bd118592d6928c", + [ + "streams/writable-streams/error.any.html", + { + "script_metadata": [ [ - "script", - "../resources/test-utils.js" - ], + "global", + "window,worker,shadowrealm" + ] + ] + } + ], + [ + "streams/writable-streams/error.any.serviceworker.html", + { + "script_metadata": [ [ - "script", - "../resources/recording-streams.js" + "global", + "window,worker,shadowrealm" ] ] } ], [ - "streams/piping/error-propagation-forward.any.worker.html", + "streams/writable-streams/error.any.shadowrealm.html", { "script_metadata": [ [ "global", "window,worker,shadowrealm" - ], + ] + ] + } + ], + [ + "streams/writable-streams/error.any.sharedworker.html", + { + "script_metadata": [ [ - "script", - "../resources/test-utils.js" - ], + "global", + "window,worker,shadowrealm" + ] + ] + } + ], + [ + "streams/writable-streams/error.any.worker.html", + { + "script_metadata": [ [ - "script", - "../resources/recording-streams.js" + "global", + "window,worker,shadowrealm" ] ] } ] ], - "flow-control.any.js": [ - "e2318da375ab9044dc105c15613c375c9e68ae9d", + "floating-point-total-queue-size.any.js": [ + "20a14fc19a51e004d16667fd78643ff48792d89c", [ - "streams/piping/flow-control.any.html", + "streams/writable-streams/floating-point-total-queue-size.any.html", { "script_metadata": [ [ "global", "window,worker,shadowrealm" - ], + ] + ] + } + ], + [ + "streams/writable-streams/floating-point-total-queue-size.any.serviceworker.html", + { + "script_metadata": [ [ - "script", - "../resources/test-utils.js" + "global", + "window,worker,shadowrealm" + ] + ] + } + ], + [ + "streams/writable-streams/floating-point-total-queue-size.any.shadowrealm.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] + } + ], + [ + "streams/writable-streams/floating-point-total-queue-size.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] + } + ], + [ + "streams/writable-streams/floating-point-total-queue-size.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] + } + ] + ], + "general.any.js": [ + "48f8eeb89e41eec32225b44be7c2e80132b970d4", + [ + "streams/writable-streams/general.any.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] + } + ], + [ + "streams/writable-streams/general.any.serviceworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] + } + ], + [ + "streams/writable-streams/general.any.shadowrealm.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] + } + ], + [ + "streams/writable-streams/general.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] + } + ], + [ + "streams/writable-streams/general.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] + } + ] + ], + "properties.any.js": [ + "ae0549f0871b4866877dffbccf8803eeaa897d06", + [ + "streams/writable-streams/properties.any.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] + } + ], + [ + "streams/writable-streams/properties.any.serviceworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] + } + ], + [ + "streams/writable-streams/properties.any.shadowrealm.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] + } + ], + [ + "streams/writable-streams/properties.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] + } + ], + [ + "streams/writable-streams/properties.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" + ] + ] + } + ] + ], + "reentrant-strategy.any.js": [ + "18ce9e84759a11bed4f4b31f5e82cf6948a2b739", + [ + "streams/writable-streams/reentrant-strategy.any.html", + { + "script_metadata": [ + [ + "global", + "window,worker,shadowrealm" ], [ "script", - "../resources/rs-utils.js" + "../resources/test-utils.js" ], [ "script", @@ -720559,7 +750321,7 @@ } ], [ - "streams/piping/flow-control.any.serviceworker.html", + "streams/writable-streams/reentrant-strategy.any.serviceworker.html", { "script_metadata": [ [ @@ -720570,10 +750332,6 @@ "script", "../resources/test-utils.js" ], - [ - "script", - "../resources/rs-utils.js" - ], [ "script", "../resources/recording-streams.js" @@ -720582,7 +750340,7 @@ } ], [ - "streams/piping/flow-control.any.shadowrealm.html", + "streams/writable-streams/reentrant-strategy.any.shadowrealm.html", { "script_metadata": [ [ @@ -720593,10 +750351,6 @@ "script", "../resources/test-utils.js" ], - [ - "script", - "../resources/rs-utils.js" - ], [ "script", "../resources/recording-streams.js" @@ -720605,7 +750359,7 @@ } ], [ - "streams/piping/flow-control.any.sharedworker.html", + "streams/writable-streams/reentrant-strategy.any.sharedworker.html", { "script_metadata": [ [ @@ -720616,10 +750370,6 @@ "script", "../resources/test-utils.js" ], - [ - "script", - "../resources/rs-utils.js" - ], [ "script", "../resources/recording-streams.js" @@ -720628,7 +750378,7 @@ } ], [ - "streams/piping/flow-control.any.worker.html", + "streams/writable-streams/reentrant-strategy.any.worker.html", { "script_metadata": [ [ @@ -720639,10 +750389,6 @@ "script", "../resources/test-utils.js" ], - [ - "script", - "../resources/rs-utils.js" - ], [ "script", "../resources/recording-streams.js" @@ -720651,74 +750397,118 @@ } ] ], - "general-addition.any.js": [ - "cf4aa9bea6a1a45e38e00614bb15547e6a9ab33c", + "start.any.js": [ + "17972b568ceb24fee7a758a9d7a1147b26a030d6", [ - "streams/piping/general-addition.any.html", + "streams/writable-streams/start.any.html", { "script_metadata": [ [ "global", "window,worker,shadowrealm" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "../resources/recording-streams.js" ] ] } ], [ - "streams/piping/general-addition.any.serviceworker.html", + "streams/writable-streams/start.any.serviceworker.html", { "script_metadata": [ [ "global", "window,worker,shadowrealm" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "../resources/recording-streams.js" ] ] } ], [ - "streams/piping/general-addition.any.shadowrealm.html", + "streams/writable-streams/start.any.shadowrealm.html", { "script_metadata": [ [ "global", "window,worker,shadowrealm" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "../resources/recording-streams.js" ] ] } ], [ - "streams/piping/general-addition.any.sharedworker.html", + "streams/writable-streams/start.any.sharedworker.html", { "script_metadata": [ [ "global", "window,worker,shadowrealm" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "../resources/recording-streams.js" ] ] } ], [ - "streams/piping/general-addition.any.worker.html", + "streams/writable-streams/start.any.worker.html", { "script_metadata": [ [ "global", "window,worker,shadowrealm" + ], + [ + "script", + "../resources/test-utils.js" + ], + [ + "script", + "../resources/recording-streams.js" ] ] } ] ], - "general.any.js": [ - "f051d8102c2bed7611b76616ff895e9f69809202", + "write.any.js": [ + "20a2885bf3512ab6da3bb9aeecbc0e48022e741c", [ - "streams/piping/general.any.html", + "streams/writable-streams/write.any.html", { "script_metadata": [ [ "global", "window,worker,shadowrealm" ], + [ + "script", + "../resources/test-utils.js" + ], [ "script", "../resources/recording-streams.js" @@ -720727,13 +750517,17 @@ } ], [ - "streams/piping/general.any.serviceworker.html", + "streams/writable-streams/write.any.serviceworker.html", { "script_metadata": [ [ "global", "window,worker,shadowrealm" ], + [ + "script", + "../resources/test-utils.js" + ], [ "script", "../resources/recording-streams.js" @@ -720742,13 +750536,17 @@ } ], [ - "streams/piping/general.any.shadowrealm.html", + "streams/writable-streams/write.any.shadowrealm.html", { "script_metadata": [ [ "global", "window,worker,shadowrealm" ], + [ + "script", + "../resources/test-utils.js" + ], [ "script", "../resources/recording-streams.js" @@ -720757,13 +750555,17 @@ } ], [ - "streams/piping/general.any.sharedworker.html", + "streams/writable-streams/write.any.sharedworker.html", { "script_metadata": [ [ "global", "window,worker,shadowrealm" ], + [ + "script", + "../resources/test-utils.js" + ], [ "script", "../resources/recording-streams.js" @@ -720772,13 +750574,17 @@ } ], [ - "streams/piping/general.any.worker.html", + "streams/writable-streams/write.any.worker.html", { "script_metadata": [ [ "global", "window,worker,shadowrealm" ], + [ + "script", + "../resources/test-utils.js" + ], [ "script", "../resources/recording-streams.js" @@ -720786,13282 +750592,16546 @@ ] } ] + ] + } + }, + "subapps": { + "add-error.tentative.https.html": [ + "defe4743c6ab290683af9b57f193508c5743c4e0", + [ + null, + { + "testdriver": true + } + ] + ], + "add-success.tentative.https.html": [ + "a9a439b36ac9a9095be58eef3767136d402d9071", + [ + null, + { + "testdriver": true + } + ] + ], + "idlharness.tentative.https.window.js": [ + "65a1156188b1f8d952d8a3dd0744af9232124157", + [ + "subapps/idlharness.tentative.https.window.html", + { + "script_metadata": [ + [ + "script", + "/resources/WebIDLParser.js" + ], + [ + "script", + "/resources/idlharness.js" + ] + ] + } + ] + ], + "insecure-context-error.tentative.html": [ + "ada4a846e896cf8c89d0e6db7b6bf3b9772624f8", + [ + null, + {} + ] + ], + "list-error.tentative.https.html": [ + "1161318acd42c3f8d29796cba9bbd338ece2b428", + [ + null, + {} + ] + ], + "list-success.tentative.https.html": [ + "ea4f96124a912f361abb1a9ca73bd08aa77776ad", + [ + null, + {} + ] + ], + "remove-error.tentative.https.html": [ + "a7271905dc7d19b4778d59e7f2c59274b4f7b813", + [ + null, + {} + ] + ], + "remove-success.tentative.https.html": [ + "ad60d6398dd848e935898810673d3aac3eba0333", + [ + null, + {} + ] + ] + }, + "subresource-integrity": { + "subresource-integrity.html": [ + "355e1da1d750dde181127af96eca99e40b8f6b6f", + [ + null, + {} + ] + ] + }, + "svg": { + "animations": { + "accumulate-values-width-animation.html": [ + "7813494a6a2cb9ad33a16d65a6b6869f9c639ce9", + [ + null, + {} + ] + ], + "additive-from-to-width-animation.html": [ + "0899f5e0b53120cb116b781f6f0dbdfaa7ee26f9", + [ + null, + {} + ] + ], + "additive-type-by-animation.html": [ + "2dc7732dd6effc05e5eac59305de8ed4e22ab9d0", + [ + null, + {} + ] + ], + "additive-values-width-animation.html": [ + "5b874f5a4f838cd9b3d3c9e9d3e2917862d79ee5", + [ + null, + {} + ] + ], + "animVal-basics.html": [ + "7eb968af01e0b23fa270a71f8788415ea3eed049", + [ + null, + {} + ] + ], + "animate-calcMode-spline-by.html": [ + "5ce9bcc763e50e34afefb67b0fddd20b8a5ad247", + [ + null, + {} + ] + ], + "animate-calcMode-spline-from-by.html": [ + "1f15760c7d845a42e89b7ae9d15e602658a795a8", + [ + null, + {} + ] + ], + "animate-calcMode-spline-from-to.html": [ + "4d6080083148b6567d66bc92834e36bbd226b310", + [ + null, + {} + ] + ], + "animate-calcMode-spline-to.html": [ + "4a26cd716ed5c74c96a43108686d97b854f853d4", + [ + null, + {} + ] + ], + "animate-calcMode-spline-values.html": [ + "46952aa45db5d5ca05f085f25e9ebd0339085dfb", + [ + null, + {} + ] + ], + "animate-color-calcMode-discrete.html": [ + "980f39282e33f3cb89f91c8652071a9a8d6a83b7", + [ + null, + {} + ] + ], + "animate-color-fill-currentColor.html": [ + "2780ce2ac9a8e69ae10c1ffda3b56e741127e241", + [ + null, + {} + ] + ], + "animate-color-fill-from-by.html": [ + "410b27b75a732f2e846d9d17bac421a6fdbda8cb", + [ + null, + {} + ] + ], + "animate-color-transparent.html": [ + "e2a946cfb0b14337c82bd3920e5d958dfc5e8ee5", + [ + null, + {} + ] + ], + "animate-css-xml-attributeType.html": [ + "4494eb773693d2c65620030f975d13db21c60077", + [ + null, + {} + ] + ], + "animate-currentColor.html": [ + "a8b3c1f16f25823f674c69f0c2bd472b8b044c4a", + [ + null, + {} + ] + ], + "animate-dynamic-update-attributeName.html": [ + "47ca52526ae127ba16d009dad63772e4cd343de2", + [ + null, + {} + ] + ], + "animate-elem-02-t-drt.html": [ + "31f34ce56f8beddc12d5097d28c29d76bb0d6760", + [ + null, + {} + ] + ], + "animate-elem-14-t-drt.html": [ + "64fc35f596fd7768ce41dedc6b46136868f89ff8", + [ + null, + {} + ] + ], + "animate-elem-15-t-drt.html": [ + "9d5cb1b437bc7d7fe40dc5a26f20e450f733c4f5", + [ + null, + {} + ] + ], + "animate-elem-16-t-drt.html": [ + "0ac98e2fc80f1549bb07abf858b7e9665a289f96", + [ + null, + {} + ] + ], + "animate-elem-17-t-drt.html": [ + "1b101491953b95fcaffad8e1e8ae1e13edfff1b8", + [ + null, + {} + ] + ], + "animate-elem-18-t-drt.html": [ + "4f9dbb7765812acc3d338ac7966a5a5b8ebcd6dd", + [ + null, + {} + ] + ], + "animate-elem-19-t-drt.html": [ + "9b9d61c90bddf6862fabe222b3f4488e546e124f", + [ + null, + {} + ] + ], + "animate-end-attribute-numeric-precision.html": [ + "d0515ac850e86cd99091bfe78f1ef07bc2de9980", + [ + null, + {} + ] + ], + "animate-fill-freeze-with-repeatDur.html": [ + "aab9eacff26bbf684cb15c33203ebf3da263f502", + [ + null, + {} + ] + ], + "animate-from-to-keyTimes.html": [ + "7295bcdb630f4423bd2a2280d2f082a87a92d63d", + [ + null, + {} + ] + ], + "animate-gradient-transform.html": [ + "ddb9946fda6b45c35c02a154b6047058c1a1470c", + [ + null, + {} + ] + ], + "animate-inherit-css-property.html": [ + "a8b56bab2bfa6a8b61f14fbf31d9760fc537ccc7", + [ + null, + {} + ] + ], + "animate-insert-begin.html": [ + "5155391a9123e995ba52a7ebaa76d863eaa0ead8", + [ + null, + {} + ] + ], + "animate-insert-no-begin.html": [ + "3db406ecd4823c39bbae6204797ca70451f5d049", + [ + null, + {} + ] + ], + "animate-keySplines.html": [ + "0b02f71d3fa4cecc07e455f2d7000922db46bcc9", + [ + null, + {} + ] + ], + "animate-marker-orient-from-angle-to-angle.html": [ + "a9c16740e63292022682a24f801a4dd88eb46c79", + [ + null, + {} + ] + ], + "animate-marker-orient-from-angle-to-auto.html": [ + "40fc57b4f3c9bdc2c9a68e59c1d15495cc445124", + [ + null, + {} + ] + ], + "animate-marker-orient-from-auto-to-auto-start-reverse.html": [ + "b7a4e68562da576fc2ea0221c51f19afaa879ad7", + [ + null, + {} + ] + ], + "animate-marker-orient-to-angle.html": [ + "6b4ba2bfef2fd6bbd15d05b47a97f8b2d4adf5c2", + [ + null, + {} + ] + ], + "animate-number-calcMode-discrete-keyTimes.html": [ + "0e80e03f887ba2de095e8f65bd6e952767350248", + [ + null, + {} + ] + ], + "animate-number-calcMode-discrete.html": [ + "11563233b4f228325efb15ce9f9ba8d9ef71eece", + [ + null, + {} + ] + ], + "animate-path-animation-Cc-Ss.tentative.html": [ + "69b3cc7af4cf00c301c1e2e6d86641181b356b5a", + [ + null, + {} + ] + ], + "animate-path-animation-Ll-Vv-Hh.tentative.html": [ + "6d2e94b7abac51c484b9e0305d600e3e50546c2f", + [ + null, + {} + ] + ], + "animate-path-animation-Mm-Aa-Z.tentative.html": [ + "cb7dcf724bc8d9797061a5b531a77df3d418f3ce", + [ + null, + {} + ] + ], + "animate-path-animation-Qq-Tt.tentative.html": [ + "3f018331c9a960c5980703c70c3453b2c963b492", + [ + null, + {} + ] + ], + "animate-path-animation-cC-sS-inverse.tentative.html": [ + "5b19f69b2d2ceec98bba6bcabdc8f43738aaa7d2", + [ + null, + {} + ] + ], + "animate-path-animation-lL-vV-hH-inverse.tentative.html": [ + "3a96eb294542221fe122aa2facdb286e52da8b6d", + [ + null, + {} + ] + ], + "animate-path-animation-mM-aA-Z-inverse.tentative.html": [ + "df32a4a2500fc9f3ba2e805c49bd12fc35678bf2", + [ + null, + {} + ] + ], + "animate-path-animation-qQ-tT-inverse.tentative.html": [ + "6ae4d1f1dcd540d1439c9c364307b514f0fde9c0", + [ + null, + {} + ] + ], + "animate-path-to-animation.tentative.html": [ + "a20a33f6a48c4349d947c1872efac9a25864fb8b", + [ + null, + {} + ] + ], + "animate-reset-freeze.html": [ + "0b0d90003dcabbc2bf3dc255c30c4b8b5d535e5b", + [ + null, + {} + ] + ], + "animate-stop-currentcolor.html": [ + "1536035dec58709256e5d09fec22eae999a0a00d", + [ + null, + {} + ] + ], + "animateMotion-base.html": [ + "e69b121a06be5ac23798b6b9babb0ddfca032e25", + [ + null, + {} + ] + ], + "animateMotion-circle.html": [ + "3cf713f904849108efda2c1f2423a701c9fd4fa7", + [ + null, + {} + ] + ], + "animateMotion-display-none.html": [ + "104744c17f8359ce3d50a95a0e8999ffa78e43a3", + [ + null, + {} + ] + ], + "animateMotion-ellipse.html": [ + "109ae4f58698a4b47a1e1f1adfd39a24773db0a7", + [ + null, + {} + ] + ], + "animateMotion-fill-freeze.html": [ + "4e768efb0046972fdb62f9af6545134d97a9495c", + [ + null, + {} + ] + ], + "animateMotion-fill-remove.html": [ + "aeb74b4b0f22f14dca63e0c82a08da28bc88d1b8", + [ + null, + {} + ] + ], + "animateMotion-from-to-rotate-auto.html": [ + "faa58fe39b8e2fb5b23688434c04a238c5b4bb4f", + [ + null, + {} + ] + ], + "animateMotion-keyPoints-001.html": [ + "1397bd6039037f1c8b55685b967042c863a0a705", + [ + null, + {} + ] + ], + "animateMotion-line.html": [ + "f304de62dcfa8f6762220a1d4e099af304b1da15", + [ + null, + {} + ] + ], + "animateMotion-mpath.html": [ + "dece63675fec969b10ed9eea1f4bda244b5fc338", + [ + null, + {} + ] + ], + "animateMotion-multiple.html": [ + "494d75a78550b40b7618f951b3cb81ec8c92fe55", + [ + null, + {} + ] + ], + "animateMotion-rect.html": [ + "8853b047c3609026a90b72dbd4414e09a791a082", + [ + null, + {} + ] + ], + "animateMotion-still.html": [ + "bf9007ac2f38fe9dbe85a9f56de28358ecb82b91", + [ + null, + {} + ] + ], + "animateTransform-pattern-transform.html": [ + "614444bf71c63bdef13226a3c8208625ec364517", + [ + null, + {} + ] + ], + "attribute-value-unaffected-by-animation-001.html": [ + "21271ff0308f189b5ecc29d84bbb408f3135840e", + [ + null, + {} + ] + ], + "attribute-value-unaffected-by-animation-002.html": [ + "29878d02cbd7594213d8f42c0406d988e1fe37b9", + [ + null, + {} + ] + ], + "attributeTypes.html": [ + "7a9ad43dd98e00f7e2af4957365441a29aedf8e6", + [ + null, + {} + ] + ], + "begin-attribute-mutation.html": [ + "f28c8e9ad1ab06ae10cb9a6e883bd80ff58a8974", + [ + null, + {} + ] + ], + "begin-event.svg": [ + "c673dff9f6282b481309ba4898a9a2424417815f", + [ + null, + {} + ] + ], + "beginelement-instance-time-1.html": [ + "aa1cb8c983d482439fccc6d91b50e69585f4d404", + [ + null, + {} + ] + ], + "beginevents-1.html": [ + "92debaf82a85f972c605fad3dd7a15daae26a912", + [ + null, + {} + ] + ], + "change-css-property-while-animating-fill-freeze.html": [ + "6774c3475a681f9fc91e8280ded739e9e65f4606", + [ + null, + {} + ] + ], + "change-css-property-while-animating-fill-remove.html": [ + "a4e8a3ac40724c46fbf69b4038a279318a9067f6", + [ + null, + {} + ] + ], + "change-target-while-animating-SVG-property.html": [ + "68aa63a39d3acf927de8f2fae47c7b2ceac9e4a9", + [ + null, + {} + ] + ], + "correct-events-for-short-animations-with-syncbases.html": [ + "19e7eef8c1ce470d67c2eaecf2f07a9d2907f2c1", + [ + null, + {} + ] + ], + "custom-events.html": [ + "1c49106b510821b2cd5765908dcb878329929026", + [ + null, + {} + ] + ], + "cyclic-syncbase-2.html": [ + "7e27f469e877829a63051ecfc17be7a63b125bf1", + [ + null, + {} + ] + ], + "cyclic-syncbase-events.html": [ + "09d5c2e7b803af66199f8e08479b29a653f22dd2", + [ + null, + {} + ] + ], + "cyclic-syncbase.html": [ + "c0351156e310a8a6f0fca3ebee506b80983a53bb", + [ + null, + {} + ] + ], + "dependent-begin-on-syncbase.html": [ + "591fb64ed801b9cad22764976ad7134e30b967cb", + [ + null, + {} + ] + ], + "dependent-end-on-syncbase.html": [ + "4879e5f6ce8774f176526406ecff680bba65b6a9", + [ + null, + {} + ] + ], + "end-attribute-change-end-time.html": [ + "9f05d7d405d364a1eadfa104c1c4bd90a2bf3b8c", + [ + null, + {} + ] + ], + "end-event.svg": [ + "aa0854d6924e43997330adad348f326f9a12103a", + [ + null, + {} + ] + ], + "event-listeners.html": [ + "ca2b9b72f5bce40e9ded3da72251eccaf73c6995", + [ + null, + {} + ] + ], + "eventbase-non-svg-element.html": [ + "f4e7f793e41dd3de8b3e1c19da9387edffa62baf", + [ + null, + {} + ] + ], + "first-interval-in-the-past-contribute.html": [ + "a4c7383b8eefbc439645ffd444cea98584ac1c81", + [ + null, + {} + ] + ], + "first-interval-in-the-past-dont-contribute.html": [ + "1e9281ae03bb41ac44822efe7549519b5b9e9f32", + [ + null, + {} + ] + ], + "force-use-shadow-tree-recreation-while-animating.html": [ + "7a60e0280baa67ef8731b7bdc737788d326c3c24", + [ + null, + {} + ] + ], + "interval-restart-events.html": [ + "3c3ad89a3230bb03048dc3fc9727558de511bee9", + [ + null, + {} + ] + ], + "keysplines-x-limits.html": [ + "376f04e659eb74cdff621583888e0e15fda73385", + [ + null, + {} + ] + ], + "keysplines-y-limits.html": [ + "ccfbbe39576c55e032a1808fec2b1796c570a09b", + [ + null, + {} + ] + ], + "multiple-animations-ending.html": [ + "a9b7853bb0ed49a11af24d020766248ebd7d4bbe", + [ + null, + {} + ] + ], + "multiple-animations-fill-freeze.html": [ + "d4a71dcac286f5bcd97b3b3ce6642e58e75f3d54", + [ + null, + {} + ] + ], + "multiple-begin-additive-animation.html": [ + "9e75bdf17a449df09e72986c95bd3493e56f9221", + [ + null, + {} + ] + ], + "non-additive-type-by-animation.html": [ + "b596f735446a61592774b89569d80e776f8a39be", + [ + null, + {} + ] + ], + "non-additive-type-from-by-animation.html": [ + "e974e38177526e2e4bd8344712c37b00dc2e2bda", + [ + null, + {} + ] + ], + "onbegin.svg": [ + "d3de366f470d2c36f3c235ad4ee81e548eaf15d9", + [ + null, + {} + ] + ], + "onend.svg": [ + "46b78af37ac14e58a56669056c3b4fad2916f88f", + [ + null, + {} + ] + ], + "onrepeat.svg": [ + "cd4a265b31e8e7f3ea3d72b53a6c0e88f2e3be88", + [ + null, + {} + ] + ], + "pruning-first-interval.html": [ + "5a1d1463beaec5b8c3e86406de6138960de8e5ab", + [ + null, + {} + ] + ], + "reinserting-svg-into-document.html": [ + "28d9dc93ceb9ef4b088c9d973d9212c9a3a8d1e0", + [ + null, + {} + ] + ], + "remove-animation-element-while-animation-is-running.html": [ + "764d25b69f158e028d8ec9fe14e1c43840d00925", + [ + null, + {} + ] + ], + "repeat-event.svg": [ + "0a9a3cb893b3d287b26a8fe5e957e7514e218b1e", + [ + null, + {} + ] + ], + "repeat-iteration-event-001.svg": [ + "0cf7a7adacaef14cd91993d70d9c8292453d111a", + [ + null, + {} + ] + ], + "repeat-iteration-event-002.svg": [ + "6d2f379a82d525932cf754a40b2223d3eaed3b1d", + [ + null, + {} + ] + ], + "repeat-iteration-event-003.svg": [ + "50cb47e61e6219cd1c7841b5992780580e9dff1c", + [ + null, + {} + ] + ], + "repeat-iteration-event-004.svg": [ + "93c12d6662f8f4c08f9695f8c98ba5e80dcc9612", + [ + null, + {} + ] + ], + "repeat-iteration-event-005.svg": [ + "63ba7fbcd9f9d3760d7c4380e3863de516b09d2f", + [ + null, + {} + ] + ], + "repeat-iteration-event-006.svg": [ + "de4c8f1dae1cff994dc896f1ef0feac8c1bd147d", + [ + null, + {} + ] + ], + "repeatcount-attribute-mutation.html": [ + "fd4952b4bab7a2877e855578a6b71490cc83c66c", + [ + null, + {} + ] + ], + "repeatcount-numeric-limit.tentative.svg": [ + "aa0432559bf916c1172c3d30b3bc105cbfb25fdd", + [ + null, + {} + ] + ], + "repeatn-remove-add-animation.html": [ + "8098a8853568a10370bf35f444c6de5d842f07fe", + [ + null, + {} + ] + ], + "restart-never-and-begin-click.html": [ + "1a94c8c25b8fe1363993b6bd2635a77bcbf8e87c", + [ + null, + { + "testdriver": true + } + ] + ], + "scripted": { + "SVGAnimationElement-exceptions.html": [ + "fe06ac1a376d8f772d5ca1ba4ccf5b0ce672ab4c", + [ + null, + {} + ] + ], + "SVGAnimationElement-getStartTime.html": [ + "fec3ff4db207306c8ac895d41d0de6f4bdc4ff34", + [ + null, + {} + ] + ], + "animatetransform-type-missing-value-default.html": [ + "aceca27f4cc725e3354f8870addb5d8697af58ab", + [ + null, + {} + ] + ], + "end-element-on-inactive-element.svg": [ + "34be9b9781f707d488e284c3285b82009557366b", + [ + null, + {} + ] + ], + "onhover-syncbases.html": [ + "de757f369af36db7a072ffa4b4216faa56063ecd", + [ + null, + {} + ] + ], + "paced-value-animation-overwrites-keyTimes.html": [ + "56f67dc5ed1ceeeea347b703f5048b289f95131b", + [ + null, + {} + ] + ] + }, + "seeking-events-1.html": [ + "8a93b45aa199f0581de07ab37cdd7ea34ebbf080", + [ + null, + {} + ] + ], + "seeking-events-2.html": [ + "4bfe05b84d82faf6b9f41a0db610aea23eaa09a5", + [ + null, + {} + ] + ], + "seeking-events-3.html": [ + "0a8530c212763e3665f424b31f91c7113b2bf3b1", + [ + null, + {} + ] + ], + "seeking-events-4.html": [ + "5877f0df3aaa292b5728cdbf53e0024ee35f235e", + [ + null, + {} + ] + ], + "seeking-events-5.html": [ + "8d660be615f71e79160246b0402d0783b6a2f1df", + [ + null, + {} + ] + ], + "seeking-events-6.html": [ + "05dfece67ac0dcc410a49adbd7337db61bc99bf3", + [ + null, + {} + ] + ], + "seeking-events-7.html": [ + "b3804f84cba026a37891f5b612959ef7e6c3ece7", + [ + null, + {} + ] + ], + "seeking-events-8.html": [ + "f679f2f06fbef77ce3875d054791d3f1051e2ca9", + [ + null, + {} + ] + ], + "seeking-to-large-time.html": [ + "2f89200cbbc688dc4de7a53f8087c8a40791d360", + [ + null, + {} + ] + ], + "short-simple-duration-and-fractional-repeatcount.html": [ + "025dd5092d3bb77707423b316f10bef8f2fb927d", + [ + null, + {} + ] + ], + "single-values-animation.html": [ + "40aa3461866cf4c32316d86216dcfe4298be7718", + [ + null, + {} + ] + ], + "slider-switch.html": [ + "59aa8f29ca54c1f809d1c7080ab9a5038a9d80fe", + [ + null, + {} + ] + ], + "spaces-at-end-of-path-data.html": [ + "235259beccadb2a7d52097918dbde91c07a49b5e", + [ + null, + {} + ] + ], + "svgangle-animation-deg-to-grad.html": [ + "7a8146336879a8dccaf8e663d7556e408a8e0048", + [ + null, + {} + ] + ], + "svgangle-animation-deg-to-rad.html": [ + "b8ad7300cfa03083409b99ab40299ef6be9ac7dd", + [ + null, + {} + ] + ], + "svgangle-animation-grad-to-deg.html": [ + "dd5822db8122bf9cf327967faf4afaefbe86805b", + [ + null, + {} + ] + ], + "svgangle-animation-grad-to-rad.html": [ + "28bef66d0ff3372f255b3383cb2bec790d0281cb", + [ + null, + {} + ] + ], + "svgangle-animation-rad-to-deg.html": [ + "412f384cc7b1b9c85ebc72eabc3648b9c0a164d7", + [ + null, + {} + ] + ], + "svgangle-animation-rad-to-grad.html": [ + "d27c052be2e1a45afe9a05a9939b4aea72db89a8", + [ + null, + {} + ] + ], + "svgangle-animation-unitType.html": [ + "fc306360c0f09cc57b5c82abbc315d9320bb8d91", + [ + null, + {} + ] + ], + "svgboolean-animation-1.html": [ + "3e3de673a3c34432b85dd8f630acaeb1f5de93c6", + [ + null, + {} + ] + ], + "svgenum-animation-1.html": [ + "05b75e9ad81d5e979834ef25a42ab9f3a42f1d12", + [ + null, + {} + ] + ], + "svgenum-animation-10.html": [ + "e645ea5066fcb24dc90e3f026be57ac5b9f5e175", + [ + null, + {} + ] + ], + "svgenum-animation-11.html": [ + "ebf8409f2e08a05748d588bb58c0d3592cb378fb", + [ + null, + {} + ] + ], + "svgenum-animation-12.html": [ + "bd60bbc20c42c8000d3d8459d47c03775c7211be", + [ + null, + {} + ] + ], + "svgenum-animation-13.html": [ + "c6dbb0c44dece98c0b4b63e2733636631e4648f3", + [ + null, + {} + ] + ], + "svgenum-animation-2.html": [ + "a1e27a5ef3e60003dedb3440ef4e9b972f696ccd", + [ + null, + {} + ] + ], + "svgenum-animation-3.html": [ + "5ed9f5aa8819510f8a7701e5edb7d00fb716aa70", + [ + null, + {} + ] + ], + "svgenum-animation-4.html": [ + "652e49655e1027ce7a6a8c3d6ad29d76eb6fc85b", + [ + null, + {} + ] + ], + "svgenum-animation-5.html": [ + "1487918bde23a642fd5a49de844b5e880d662f27", + [ + null, + {} + ] + ], + "svgenum-animation-6.html": [ + "e60c93bbbf67cbfbe0bfe7a7f655ac3cb2feb44e", + [ + null, + {} + ] + ], + "svgenum-animation-7.html": [ + "4e2d27e581c687106d3056f825ad11b2efaefdd4", + [ + null, + {} + ] + ], + "svgenum-animation-8.html": [ + "cd00e46d56d7133b565adebad45aa4efe341313f", + [ + null, + {} + ] + ], + "svgenum-animation-9.html": [ + "8aa9d6a761803b726c4de7f8a6eee1df31c2a55c", + [ + null, + {} + ] + ], + "svginteger-animation-1.html": [ + "7803541691858ddf64f63c7486ad369254572220", + [ + null, + {} + ] + ], + "svginteger-animation-2.html": [ + "25ef7ff08effb49c9953981756d482846b590aaf", + [ + null, + {} + ] + ], + "svglength-additive-by-1.html": [ + "67549890cff56769c3df9973266b76e128f90c6d", + [ + null, + {} + ] + ], + "svglength-additive-by-2.html": [ + "e08c99cb63eebf462bcd037ad0219145b291aa9f", + [ + null, + {} + ] + ], + "svglength-additive-by-3.html": [ + "b5ac7a033ec2524e9bd8119227dcc88f63924254", + [ + null, + {} + ] + ], + "svglength-additive-by-4.html": [ + "10e8bd7b491a9083141dd4d260db951046096fe2", + [ + null, + {} + ] + ], + "svglength-additive-by-6.html": [ + "43beafe220e4c02d312da9fe4a653054d40d3d0d", + [ + null, + {} + ] + ], + "svglength-additive-by-7.html": [ + "7c1dde4a7c6262d64130ef84e4fa0b05b360b154", + [ + null, + {} + ] + ], + "svglength-additive-by-8.html": [ + "459fc7382a596292d913ab9643be6b32a32726e2", + [ + null, + {} + ] + ], + "svglength-additive-from-by-1.html": [ + "ce458e0266c68665a68adab94aa706ed4ccb4a84", + [ + null, + {} + ] + ], + "svglength-additive-from-by-2.html": [ + "1ac7eed4e1b3d03b5b44dde6fad6209f21ab0aa4", + [ + null, + {} + ] + ], + "svglength-additive-from-by-3.html": [ + "1c22f351da43b6723a360706c23ed6f351844e70", + [ + null, + {} + ] + ], + "svglength-additive-from-by-4.html": [ + "998c37458f98538333395d74e1f89a21ac7f0548", + [ + null, + {} + ] + ], + "svglength-animation-LengthModeHeight.html": [ + "2bb409e8e10ea7ba72fdf882e8c7a300e822c1ce", + [ + null, + {} + ] + ], + "svglength-animation-LengthModeOther.html": [ + "1fd9e0a3b9b0f2093f35769dc91a1badea5b4a86", + [ + null, + {} + ] + ], + "svglength-animation-LengthModeWidth.html": [ + "9481d434b9a11f8f2753497924a762a5c1e95662", + [ + null, + {} + ] + ], + "svglength-animation-invalid-value-1.html": [ + "90a45efa32045efad2f01c7e675ee45db802fda1", + [ + null, + {} + ] + ], + "svglength-animation-invalid-value-2.html": [ + "f9a6bcc40d1425080cfa7793d99011a07a6d9572", + [ + null, + {} + ] + ], + "svglength-animation-invalid-value-3.html": [ + "1e16245001a5354ec6304651e3dbdd29a60c5485", + [ + null, + {} + ] + ], + "svglength-animation-number-to-number.html": [ + "0b4fca52ec0f878023ce6ba62fcde0e7426bbc8d", + [ + null, + {} + ] + ], + "svglength-animation-px-to-cm.html": [ + "f51beed02b3df9382df78d5ba211c9555bfd5d87", + [ + null, + {} + ] + ], + "svglength-animation-px-to-ems.html": [ + "e65125303e10d3572cc53abef54d8cad4a781df2", + [ + null, + {} + ] + ], + "svglength-animation-px-to-in.html": [ + "a55b357187aa01dc9eaace04a89eb17cd2ad6557", + [ + null, + {} + ] + ], + "svglength-animation-px-to-number.html": [ + "8eab444caa3eda56eda3f5600f5f031d68b8d60e", + [ + null, + {} + ] + ], + "svglength-animation-px-to-pc.html": [ + "62d9d9964f1dc9a1952cf45417572fc6a13a99cc", + [ + null, + {} + ] + ], + "svglength-animation-px-to-pt.html": [ + "d86e09075788d37c05f418252686fe3d8c56b87a", + [ + null, + {} + ] + ], + "svglength-animation-px-to-px.html": [ + "fdeb773375a290d6f925d42be90dd0401222947f", + [ + null, + {} + ] + ], + "svglength-animation-unitType.html": [ + "4cd6d2d3af5e94e259195cc1d5599132dd8a69b6", + [ + null, + {} + ] + ], + "svglength-animation-values.html": [ + "a3e485320b0e76b9e6cc5c176c4e114d939f56bb", + [ + null, + {} + ] + ], + "svglengthlist-animation-1.html": [ + "198fc8a6fef879ea9397f6668b38a10a9b4d755a", + [ + null, + {} + ] + ], + "svglengthlist-animation-2.html": [ + "c1c91b83f0f652d3d04e277c3a13d116af291147", + [ + null, + {} + ] + ], + "svglengthlist-animation-3.html": [ + "d26e67a8a05a049378bda86cc15ff2e5dbedc2fa", + [ + null, + { + "timeout": "long" + } + ] + ], + "svglengthlist-animation-4.html": [ + "0e890ab5f5a16e53ce10a3f7c68e99a25e764989", + [ + null, + {} + ] + ], + "svglengthlist-animation-5.html": [ + "5d0bc2b4836fcc934b4676eb1d79e23e15b5e148", + [ + null, + {} + ] + ], + "svglengthlist-animation-unitType.html": [ + "0dcb8a7962f53f5fc864a2492dff49bd73477427", + [ + null, + {} + ] + ], + "svgnumber-animation-1.html": [ + "72c2d736771868b615d723958324307a6f96be66", + [ + null, + {} + ] + ], + "svgnumber-animation-2.html": [ + "1654480ffced7d79bf28595664bc6dc8d524ba07", + [ + null, + {} + ] + ], + "svgnumber-animation-3.html": [ + "255eeb0a94c66f6337af8079f6eef8e6416586e4", + [ + null, + {} + ] + ], + "svgnumber-animation-4.html": [ + "758138d6678a2afa778c766b9072e47307e5341d", + [ + null, + {} + ] + ], + "svgnumberlist-animation-1.html": [ + "aabb7d7daa159409706ad2ff59e54220218f25a2", + [ + null, + {} + ] + ], + "svgnumberlist-animation-2.html": [ + "e62bbf68602dbe439b2659aac3727f8f6c40e2d0", + [ + null, + {} + ] + ], + "svgnumberoptionalnumber-animation-1.html": [ + "b20855140ffcd398778d3375aa9ac395aa221776", + [ + null, + {} + ] + ], + "svgnumberoptionalnumber-animation-2.html": [ + "db2576533ce22a0a4aa68d8113ae858bf1cf17aa", + [ + null, + {} + ] ], - "multiple-propagation.any.js": [ - "9be828a23269a520c200f86a09b97cf7d4a28f1d", - [ - "streams/piping/multiple-propagation.any.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/recording-streams.js" - ] - ] - } - ], + "svgnumberoptionalnumber-animation-3.html": [ + "974c1d7034a86e585c84cf9576fb231db7601fc3", [ - "streams/piping/multiple-propagation.any.serviceworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/recording-streams.js" - ] - ] - } - ], + null, + {} + ] + ], + "svgnumberoptionalnumber-animation-4.html": [ + "4c734b5373762e9844511f5ac7b550743a50f0b2", [ - "streams/piping/multiple-propagation.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/recording-streams.js" - ] - ] - } - ], + null, + {} + ] + ], + "svgpath-animation-1.tentative.html": [ + "3df821d7c310f6c1607786f14a6c6bafef272fb5", [ - "streams/piping/multiple-propagation.any.sharedworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/recording-streams.js" - ] - ] - } - ], + null, + {} + ] + ], + "svgpointlist-animation-1.html": [ + "a3340ba83a2a0f6846d0a9e7faa1c27dd49a1383", [ - "streams/piping/multiple-propagation.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/recording-streams.js" - ] - ] - } + null, + {} ] ], - "pipe-through.any.js": [ - "339cee19993346f9535ba4de5a5983e354b33fa1", + "svgpointlist-animation-2.html": [ + "e0819cd519c7e0a6a05bdd8e6cfa0991433f0f99", [ - "streams/piping/pipe-through.any.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/rs-utils.js" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/recording-streams.js" - ] - ] - } - ], + null, + {} + ] + ], + "svgrect-animation-1.html": [ + "d13ccff418ff36c3f928e45aa14766a0d041e988", [ - "streams/piping/pipe-through.any.serviceworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/rs-utils.js" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/recording-streams.js" - ] - ] - } - ], + null, + {} + ] + ], + "svgrect-animation-2.html": [ + "86f5368a3adfa4e40e84327f9170a74c231d0b03", [ - "streams/piping/pipe-through.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/rs-utils.js" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/recording-streams.js" - ] - ] - } - ], + null, + {} + ] + ], + "svgstring-animation-1.html": [ + "259dfbd27a0a1f203dd3faf6feaad106d782a2b0", [ - "streams/piping/pipe-through.any.sharedworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/rs-utils.js" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/recording-streams.js" - ] - ] - } - ], + null, + {} + ] + ], + "svgstring-animation-fallback-to-discrete.html": [ + "8cf6c34af0d4af11e4fa89a9d495936bda0cbfa9", [ - "streams/piping/pipe-through.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/rs-utils.js" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/recording-streams.js" - ] - ] - } + null, + {} ] ], - "then-interception.any.js": [ - "fc48c3683114785d7187038a9d520d0c4c1039d2", + "svgtransform-animation-1.html": [ + "618ba9a31c00bf2ff56bf842ad1ec40fdbfc73fa", [ - "streams/piping/then-interception.any.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/recording-streams.js" - ] - ] - } - ], + null, + {} + ] + ], + "svgtransform-animation-discrete.html": [ + "17b78a2787d0becf64b90136fcf0f6f966404baa", [ - "streams/piping/then-interception.any.serviceworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/recording-streams.js" - ] - ] - } - ], + null, + {} + ] + ], + "switching-animated-target-to-unknown-element.html": [ + "fef86a723eebede0641f0fd46f7a2672b184457e", [ - "streams/piping/then-interception.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/recording-streams.js" - ] - ] - } - ], + null, + {} + ] + ], + "syncbase-remove-add-while-running.html": [ + "61b9604a7b6751a156c48431b89fa2f3cd1af551", [ - "streams/piping/then-interception.any.sharedworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/recording-streams.js" - ] - ] - } - ], + null, + {} + ] + ] + }, + "coordinate-systems": { + "outer-svg-intrinsic-size-001.html": [ + "0d9e2393ad0a16685fca1d5f2b9c378fbe2c851b", [ - "streams/piping/then-interception.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/recording-streams.js" - ] - ] - } + null, + {} ] ], - "throwing-options.any.js": [ - "186f8ded1968a4f1b4f25cf8dd2e5d2ccbb3bfdb", + "outer-svg-intrinsic-size-002.html": [ + "8a65d6491842e150b3fcfc29759667b40764bc09", [ - "streams/piping/throwing-options.any.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] - ] - } - ], + null, + {} + ] + ], + "svgtransformlist-replaceitem.html": [ + "3322dc91abc51956c67b3d8d82515d33cf1b2fc5", [ - "streams/piping/throwing-options.any.serviceworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] - ] - } - ], + null, + {} + ] + ] + }, + "embedded": { + "image-crossorigin.sub.html": [ + "531512ec168003a55bd687b1b8db010e161f1b0e", [ - "streams/piping/throwing-options.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] - ] - } + null, + {} + ] + ] + }, + "extensibility": { + "foreignObject": { + "containing-block.html": [ + "da0728c96b5d0eb81435efad329bdcc3ee4dfb26", + [ + null, + {} + ] ], - [ - "streams/piping/throwing-options.any.sharedworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] - ] - } + "getboundingclientrect.html": [ + "82941bd14b3c6935a6b6a17b89fb390bc1b01b8f", + [ + null, + {} + ] ], + "properties.svg": [ + "dd198f177dfb2906ce6be9184df9fbbb8feefe93", + [ + null, + {} + ] + ] + }, + "interfaces": { + "foreignObject-graphics.svg": [ + "7745e91f0a3b0308898e13e451b3871e084ae144", + [ + null, + {} + ] + ] + } + }, + "geometry": { + "inheritance.svg": [ + "760328ac31818d86a9410fd7c412d803e30416a2", [ - "streams/piping/throwing-options.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] - ] - } + null, + {} ] ], - "transform-streams.any.js": [ - "e079bb637cad0da3f2bb6a28569e49b84d540c2a", - [ - "streams/piping/transform-streams.any.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] - ] - } + "parsing": { + "cx-computed.svg": [ + "c349a6b97c11c6b3078464fd94c75469f9509dec", + [ + null, + {} + ] ], - [ - "streams/piping/transform-streams.any.serviceworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] - ] - } + "cx-invalid.svg": [ + "4b1b90158fcc7c1747f8b1ab382cd78f394f142c", + [ + null, + {} + ] ], - [ - "streams/piping/transform-streams.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] - ] - } + "cx-valid.svg": [ + "a96fee56555d69297ab833536ed3177cedfd7145", + [ + null, + {} + ] ], - [ - "streams/piping/transform-streams.any.sharedworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] - ] - } + "cy-computed.svg": [ + "a37c99560b92edb64fc9083646d0c095fc5ac0b7", + [ + null, + {} + ] + ], + "cy-invalid.svg": [ + "528eed02ceadb26ff53a42c9950bf508170c2c83", + [ + null, + {} + ] + ], + "cy-valid.svg": [ + "022445662b7d9d519ca28a1eeca47c9199ceafca", + [ + null, + {} + ] + ], + "height-computed.svg": [ + "bcc1f9d0e11ab8e223a2aa238ac448273f93ea08", + [ + null, + {} + ] + ], + "r-computed.svg": [ + "ac897cd91ae21a616545ac6841d3540ca64f599d", + [ + null, + {} + ] + ], + "r-invalid.svg": [ + "a14c52266ce2b7b66847a18327cab0346d083115", + [ + null, + {} + ] + ], + "r-valid.svg": [ + "70cd5503b795cef3f5db7eb4db1034d63b3e63fc", + [ + null, + {} + ] + ], + "rx-computed.svg": [ + "c07368b5f2aa8010d0e56ef6778e8ae8155d4729", + [ + null, + {} + ] + ], + "rx-invalid.svg": [ + "9ce0603bea13ceb2cf06c7da8ba0ac2b4ccb04a1", + [ + null, + {} + ] + ], + "rx-valid.svg": [ + "9d156b3cccfd6bb967372bb2c9ade6fc9527efd9", + [ + null, + {} + ] + ], + "ry-computed.svg": [ + "8e54bd219db02c279de3387da6a5646a8345a529", + [ + null, + {} + ] + ], + "ry-invalid.svg": [ + "5938ae830d52ad752a3f502a2308e9efae57dcdb", + [ + null, + {} + ] + ], + "ry-valid.svg": [ + "178c0c007d649d75bd51a52a31f5c046eba9fd28", + [ + null, + {} + ] + ], + "sizing-properties-computed.svg": [ + "01713fbbe29ffaf0374fc55917c1909ffc09ef05", + [ + null, + {} + ] ], + "width-computed.svg": [ + "1af3de12347af146aad2cff7447a753942beaf60", + [ + null, + {} + ] + ], + "x-computed.svg": [ + "458c343814c94c1a715e9603741a1d2933a3ab2e", + [ + null, + {} + ] + ], + "x-invalid.svg": [ + "31ad29524e11dc5fe95c970506691953f0e611d0", + [ + null, + {} + ] + ], + "x-valid.svg": [ + "2b06f26ac4c2b7ec0bf2b295854dc8d15fed130e", + [ + null, + {} + ] + ], + "y-computed.svg": [ + "c3dc874215aee1d56d8f4bb0d91965924a7da9a5", + [ + null, + {} + ] + ], + "y-invalid.svg": [ + "d6ea944dbd649d1ec73da75e162f2ac3a3dfa818", + [ + null, + {} + ] + ], + "y-valid.svg": [ + "aad0e4e2937064224de6a2313379fb43ffdf8322", + [ + null, + {} + ] + ] + }, + "svg-baseval-in-display-none.html": [ + "fa52d1b4c3f0918ee13127decf4b2e3d878bcf67", [ - "streams/piping/transform-streams.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] - ] - } + null, + {} + ] + ], + "svg-image-intrinsic-size-with-cssstyle-auto-dynamic-image-change.html": [ + "8d5e2e982e82bd73e45cf86688e637a65f5d6535", + [ + null, + {} + ] + ], + "svg-image-intrinsic-size-with-cssstyle-auto.html": [ + "92fb7bc533e1b78f832f5be71c6b78a52d9fc1fc", + [ + null, + {} ] ] }, - "queuing-strategies-size-function-per-global.window.js": [ - "0f869f13b348da65698b3543ee6b6e26e830768f", + "historical.html": [ + "ed455ae2480ea48dc4511a75e95210d1ee8bcabd", [ - "streams/queuing-strategies-size-function-per-global.window.html", + null, {} ] ], - "queuing-strategies.any.js": [ - "9efc4570cf2ee2e2eb1525434351420ddc0d5e97", - [ - "streams/queuing-strategies.any.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] - ] - } - ], - [ - "streams/queuing-strategies.any.serviceworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] - ] - } - ], + "idlharness.window.js": [ + "a26fa2bef6d71efea2981f1122b3455ffbac25cd", [ - "streams/queuing-strategies.any.shadowrealm.html", + "svg/idlharness.window.html", { "script_metadata": [ [ - "global", - "window,worker,shadowrealm" - ] - ] - } - ], - [ - "streams/queuing-strategies.any.sharedworker.html", - { - "script_metadata": [ + "timeout", + "long" + ], [ - "global", - "window,worker,shadowrealm" - ] - ] - } - ], - [ - "streams/queuing-strategies.any.worker.html", - { - "script_metadata": [ + "script", + "/resources/WebIDLParser.js" + ], [ - "global", - "window,worker,shadowrealm" + "script", + "/resources/idlharness.js" ] - ] + ], + "timeout": "long" } ] ], - "readable-byte-streams": { - "bad-buffers-and-views.any.js": [ - "afcc61e6800a28e0c8acaccf79d3cfadc4237b60", - [ - "streams/readable-byte-streams/bad-buffers-and-views.any.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] - ] - } - ], - [ - "streams/readable-byte-streams/bad-buffers-and-views.any.serviceworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] - ] - } - ], + "interact": { + "inheritance.svg": [ + "e67f19ed43529af5e34683b6853ae870435be014", [ - "streams/readable-byte-streams/bad-buffers-and-views.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] - ] - } + null, + {} + ] + ], + "parsing": { + "pointer-events-computed.svg": [ + "e168d6d9b50695377f6beba1c8296eeea355d6d8", + [ + null, + {} + ] ], - [ - "streams/readable-byte-streams/bad-buffers-and-views.any.sharedworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] - ] - } + "pointer-events-invalid.svg": [ + "12f1c48ece8e1ff160652547432191f4450c3808", + [ + null, + {} + ] ], + "pointer-events-valid.svg": [ + "d72aee627323846828ca16c561444adefcddea89", + [ + null, + {} + ] + ] + }, + "script-common.html": [ + "fc2ae3ba01a0ac512f4a4c180890f03260442bc6", [ - "streams/readable-byte-streams/bad-buffers-and-views.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] - ] - } + null, + {} ] ], - "construct-byob-request.any.js": [ - "a26f949ee29d945a264f368dda9e890f26fa3fdc", + "script-content.svg": [ + "94836f7c0331cb8a1caebacef02a75018b2b4ddb", [ - "streams/readable-byte-streams/construct-byob-request.any.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/rs-utils.js" - ] - ] - } + null, + {} + ] + ], + "scripted": { + "async-01.svg": [ + "a56ef34ae547ac0f696b52f1d89cc25c3a826a80", + [ + null, + { + "timeout": "long" + } + ] ], - [ - "streams/readable-byte-streams/construct-byob-request.any.serviceworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/rs-utils.js" - ] - ] - } + "async-02.html": [ + "c11fa9f33ff89257f8680b70bf2f2b118b225163", + [ + null, + { + "timeout": "long" + } + ] ], - [ - "streams/readable-byte-streams/construct-byob-request.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/rs-utils.js" - ] - ] - } + "async-03.html": [ + "fb8ee6d0ded91bfde91506b7b55012b7a040664e", + [ + null, + { + "timeout": "long" + } + ] ], - [ - "streams/readable-byte-streams/construct-byob-request.any.sharedworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/rs-utils.js" - ] - ] - } + "composed.window.svg": [ + "b63dcf024439446e0624f98cfa9f7ceb01544524", + [ + null, + {} + ] ], - [ - "streams/readable-byte-streams/construct-byob-request.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/rs-utils.js" - ] - ] - } - ] - ], - "enqueue-with-detached-buffer.any.js": [ - "92bd0a26a0ec05c2c3b8dcd25ce347964d1705d5", - [ - "streams/readable-byte-streams/enqueue-with-detached-buffer.any.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] - ] - } + "defer-01.svg": [ + "93e54c3f0ef644b5e447ec771b20dff43c2a07fc", + [ + null, + {} + ] ], - [ - "streams/readable-byte-streams/enqueue-with-detached-buffer.any.serviceworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] - ] - } + "defer-02.html": [ + "0fcebae0ae799f7aeb2b4fbfd67b961819091b53", + [ + null, + { + "timeout": "long" + } + ] ], - [ - "streams/readable-byte-streams/enqueue-with-detached-buffer.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] - ] - } + "ellipse-hittest.html": [ + "70b54e0726fbfe349cebaac13d1b4101c2e50327", + [ + null, + {} + ] ], - [ - "streams/readable-byte-streams/enqueue-with-detached-buffer.any.sharedworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] - ] - } + "focus-events.svg": [ + "bf307b79fdf10c578d93332f57d4de2ab844eb34", + [ + null, + {} + ] ], - [ - "streams/readable-byte-streams/enqueue-with-detached-buffer.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] - ] - } - ] - ], - "general.any.js": [ - "cdce2244c3c84b75414fca50361f8780333cbfd6", - [ - "streams/readable-byte-streams/general.any.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/rs-utils.js" - ], - [ - "script", - "../resources/test-utils.js" - ] - ] - } + "focus-tabindex-default-value.svg": [ + "3af1acffd8de01618fb1dc9e8a753bcbb0357f1c", + [ + null, + {} + ] ], - [ - "streams/readable-byte-streams/general.any.serviceworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/rs-utils.js" - ], - [ - "script", - "../resources/test-utils.js" - ] - ] - } + "module-01.svg": [ + "ea70391e922aaa4a65826d28ed3bb7bb5c1a2dd0", + [ + null, + {} + ] ], - [ - "streams/readable-byte-streams/general.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/rs-utils.js" - ], - [ - "script", - "../resources/test-utils.js" - ] - ] - } + "module-02.html": [ + "8a6d6ac3f6167b33f2851eb3cdf1d2e1a8a6e394", + [ + null, + { + "timeout": "long" + } + ] ], - [ - "streams/readable-byte-streams/general.any.sharedworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/rs-utils.js" - ], - [ - "script", - "../resources/test-utils.js" - ] - ] - } + "rect-hittest-001.html": [ + "4256628bc6a68684f8e99df81f255301a836e39a", + [ + null, + {} + ] ], - [ - "streams/readable-byte-streams/general.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/rs-utils.js" - ], - [ - "script", - "../resources/test-utils.js" - ] - ] - } - ] - ], - "non-transferable-buffers.any.js": [ - "4bddaef5d647df724d218930fdee6f4c65a012ae", - [ - "streams/readable-byte-streams/non-transferable-buffers.any.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] - ] - } + "rect-hittest-002.html": [ + "7eb70f85308cc6ad29ec7a1657c7fe00bf49fc58", + [ + null, + {} + ] ], - [ - "streams/readable-byte-streams/non-transferable-buffers.any.serviceworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] - ] - } + "svg-pointer-events-bbox.html": [ + "8db9149c231d1f4812b76610e3488ecd74787625", + [ + null, + {} + ] ], - [ - "streams/readable-byte-streams/non-transferable-buffers.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] - ] - } + "svg-root-border-radius.html": [ + "87d8d233be9cfdd060003bfcc5e8d10c1f20d7a5", + [ + null, + {} + ] ], - [ - "streams/readable-byte-streams/non-transferable-buffers.any.sharedworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] - ] - } + "svg-small-big-path.html": [ + "ba0e403f6d690d4f176f4060ab4b1327091eb6ae", + [ + null, + {} + ] ], - [ - "streams/readable-byte-streams/non-transferable-buffers.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] - ] - } + "tabindex-focus-flag.svg": [ + "29ba209b2badecaac695a678540cc53e5c4ed3f5", + [ + null, + {} + ] ] - ], - "read-min.any.js": [ - "4010e3750ce2a84afd1686db9ecd3b9f38543806", - [ - "streams/readable-byte-streams/read-min.any.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/rs-utils.js" - ], - [ - "script", - "../resources/test-utils.js" - ] - ] - } + } + }, + "linking": { + "scripted": { + "a-download-click.svg": [ + "b728603d547582b15ff6b0d32bc39e8021fa2bae", + [ + null, + {} + ] ], - [ - "streams/readable-byte-streams/read-min.any.serviceworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/rs-utils.js" - ], - [ - "script", - "../resources/test-utils.js" - ] - ] - } + "a.rel-getter-01.svg": [ + "f4f1fdb4f3af9233b7121f828e47d2ccaae7a975", + [ + null, + {} + ] ], - [ - "streams/readable-byte-streams/read-min.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/rs-utils.js" - ], - [ - "script", - "../resources/test-utils.js" - ] - ] - } + "a.rel-setter-01.svg": [ + "55470a81b56973667cf5aae33ef4b4a78e686bab", + [ + null, + {} + ] ], - [ - "streams/readable-byte-streams/read-min.any.sharedworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/rs-utils.js" - ], - [ - "script", - "../resources/test-utils.js" - ] - ] - } + "href-animate-element.html": [ + "5220495d796a3bf6a95ff38db213cdb98aaa5a20", + [ + null, + {} + ] ], - [ - "streams/readable-byte-streams/read-min.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/rs-utils.js" - ], - [ - "script", - "../resources/test-utils.js" - ] - ] - } - ] - ], - "respond-after-enqueue.any.js": [ - "e51efa061a6511b2c22a6df541b99209827c11be", - [ - "streams/readable-byte-streams/respond-after-enqueue.any.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] - ] - } + "href-mpath-element.html": [ + "03949b4168c17c97b2f5cbec7965212d2df5405a", + [ + null, + {} + ] ], - [ - "streams/readable-byte-streams/respond-after-enqueue.any.serviceworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] - ] - } + "href-script-element-markup.html": [ + "0c6eb23cb66bc5c3e641c7e53011b030f33c5967", + [ + null, + {} + ] ], - [ - "streams/readable-byte-streams/respond-after-enqueue.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] - ] - } + "href-script-element.html": [ + "48f49085080de3747edbadacae7ee50ffcc65e39", + [ + null, + {} + ] ], + "rellist-feature-detection.svg": [ + "c600d64c38696e43fd4970d12ccbf3848fe78d17", + [ + null, + {} + ] + ] + } + }, + "painting": { + "color-interpolation-animation.html": [ + "14a3fd65fe5e4a2a0aeb1a8b389a0e1a3930d1cc", [ - "streams/readable-byte-streams/respond-after-enqueue.any.sharedworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] - ] - } - ], + null, + {} + ] + ], + "fill-rule-no-interpolation.html": [ + "85f563e1502c84c56eb20e4633da604ff5190f03", [ - "streams/readable-byte-streams/respond-after-enqueue.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] - ] - } + null, + {} ] ], - "tee.any.js": [ - "7dd5ba3f3fb013964b738d50d0c76a05d7c9d583", + "inheritance.svg": [ + "e79ac3b310e2f372d074a4b793c2d2485c82f9bd", [ - "streams/readable-byte-streams/tee.any.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/rs-utils.js" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/recording-streams.js" - ], - [ - "script", - "../resources/rs-test-templates.js" - ] - ] - } + null, + {} + ] + ], + "parsing": { + "color-interpolation-computed.svg": [ + "c437a0a908beed1221eaee6e185c4b3216411cc6", + [ + null, + {} + ] ], - [ - "streams/readable-byte-streams/tee.any.serviceworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/rs-utils.js" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/recording-streams.js" - ], - [ - "script", - "../resources/rs-test-templates.js" - ] - ] - } + "color-interpolation-invalid.svg": [ + "11fd05be070350c13fabbc3f2627ae80a381f389", + [ + null, + {} + ] ], - [ - "streams/readable-byte-streams/tee.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/rs-utils.js" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/recording-streams.js" - ], - [ - "script", - "../resources/rs-test-templates.js" - ] - ] - } + "color-interpolation-valid.svg": [ + "9465edb232fb30ed7237f48c159a454e672cd76b", + [ + null, + {} + ] ], - [ - "streams/readable-byte-streams/tee.any.sharedworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/rs-utils.js" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/recording-streams.js" - ], - [ - "script", - "../resources/rs-test-templates.js" - ] - ] - } + "fill-computed.svg": [ + "7012fb6ca6307cb1eef0ba70f4b04e278d2f39ce", + [ + null, + {} + ] ], - [ - "streams/readable-byte-streams/tee.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/rs-utils.js" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/recording-streams.js" - ], - [ - "script", - "../resources/rs-test-templates.js" - ] - ] - } - ] - ] - }, - "readable-streams": { - "async-iterator.any.js": [ - "4b674bea8430f3bc4ab8539c6671f37ba498d75d", - [ - "streams/readable-streams/async-iterator.any.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/rs-utils.js" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/recording-streams.js" - ] - ] - } + "fill-invalid.svg": [ + "1feb867c3ab9e83f96e0566b53c75aa3dccb0653", + [ + null, + {} + ] ], - [ - "streams/readable-streams/async-iterator.any.serviceworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/rs-utils.js" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/recording-streams.js" - ] - ] - } + "fill-opacity-computed.svg": [ + "16843bcceecbbd1833a8c70ad35ee3a33903d4ae", + [ + null, + {} + ] ], - [ - "streams/readable-streams/async-iterator.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/rs-utils.js" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/recording-streams.js" - ] - ] - } + "fill-opacity-invalid.svg": [ + "86726c6ad088a52e7f80f19cb11c9ab04571764f", + [ + null, + {} + ] ], - [ - "streams/readable-streams/async-iterator.any.sharedworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/rs-utils.js" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/recording-streams.js" - ] - ] - } + "fill-opacity-valid.svg": [ + "90d2732b1854785585f2edbb61de1195054c0b7a", + [ + null, + {} + ] + ], + "fill-rule-computed.svg": [ + "293450e13c5b14fdfdc8e2299d516d126da77c3a", + [ + null, + {} + ] + ], + "fill-rule-invalid.svg": [ + "d89a81acbb1533cfb121f851a005dde64f82d996", + [ + null, + {} + ] + ], + "fill-rule-valid.svg": [ + "5112bda894a157a5e773d9927e4fbede73df6bec", + [ + null, + {} + ] + ], + "fill-valid.svg": [ + "d5bb5ceb0f719c31786e3667bdecd01e1fa248d2", + [ + null, + {} + ] + ], + "image-rendering-computed.svg": [ + "c842e05906041cd505fd0e8ff7e2b4b34f8481d9", + [ + null, + {} + ] + ], + "image-rendering-invalid.svg": [ + "5c3cc9f054bf4f0b21ba7c48c49fe810d9841615", + [ + null, + {} + ] + ], + "image-rendering-valid.svg": [ + "18402493f3c779b9427b383cc668033ac46c4936", + [ + null, + {} + ] + ], + "marker-computed.svg": [ + "329dedbbce239c627ccf47c7a14b59b00ac7ebd2", + [ + null, + {} + ] + ], + "marker-end-computed.svg": [ + "da641abb9441a49829f5e8f1f4b5a599914b5515", + [ + null, + {} + ] + ], + "marker-end-invalid.svg": [ + "bc8e5fcc8bab475cdd086f533a7b9d6a82bcff7e", + [ + null, + {} + ] + ], + "marker-end-valid.svg": [ + "5be036e994637be7abfe4440618cd4bb16b5d5a7", + [ + null, + {} + ] + ], + "marker-invalid.svg": [ + "64112cd6a779547dfc6d23ceb92ff9003f1b4669", + [ + null, + {} + ] + ], + "marker-mid-computed.svg": [ + "eddfd6171143906feb118a1bb6534c245a7ea8ff", + [ + null, + {} + ] + ], + "marker-mid-invalid.svg": [ + "25cfbba82eb54a30c09e00580100627ccf0420b5", + [ + null, + {} + ] + ], + "marker-mid-valid.svg": [ + "119fd706b12189342a6ad9d9d94c512df57ccbdc", + [ + null, + {} + ] + ], + "marker-shorthand.svg": [ + "930a4e29402b7998cab922aaac7503f186fd752d", + [ + null, + {} + ] + ], + "marker-start-computed.svg": [ + "08ef87516fcfc0059a3b0ec79e25642273ea7d12", + [ + null, + {} + ] + ], + "marker-start-invalid.svg": [ + "6c1fdbcd4b577f3d5de2f747d74bb34c670ce3bd", + [ + null, + {} + ] + ], + "marker-start-valid.svg": [ + "fd6f2d6fe425ec1e4ab5c7ee6425a5e4ead823bc", + [ + null, + {} + ] + ], + "marker-valid.svg": [ + "23d3f24f5cca3077002f1a02f669df9505ec745b", + [ + null, + {} + ] + ], + "paint-order-computed.svg": [ + "29f5fa91bae31a8f55e895ead7fe999e53fdc963", + [ + null, + {} + ] + ], + "paint-order-invalid.svg": [ + "5043176dd97bd1d99ea2f9674abfa08f06d7383e", + [ + null, + {} + ] + ], + "paint-order-valid.svg": [ + "25759d222d15a18ca49645e1ff10a17b50341f58", + [ + null, + {} + ] + ], + "shape-rendering-computed.svg": [ + "5e8f530d48a0cd5077ebd6aba134e982605d59d9", + [ + null, + {} + ] + ], + "shape-rendering-invalid.svg": [ + "e20ca879dbaf7744157bca497a581d5f6083fcd5", + [ + null, + {} + ] + ], + "shape-rendering-valid.svg": [ + "803609476f8387710391fcc882ef4c6503eb5620", + [ + null, + {} + ] + ], + "stroke-computed.svg": [ + "48214d140f0a6cc43a09cbe4d21a1647f9b19eb6", + [ + null, + {} + ] + ], + "stroke-dasharray-computed.svg": [ + "6253e23c0f0722a4957e1b5999a091e06e9f5f79", + [ + null, + {} + ] + ], + "stroke-dasharray-invalid.svg": [ + "53a9640c8ffbcb2ec511ea808f02574e934e07b8", + [ + null, + {} + ] + ], + "stroke-dasharray-valid.svg": [ + "9326118ceb886c64c936a0dbbf789b87f7302391", + [ + null, + {} + ] + ], + "stroke-dashoffset-computed.svg": [ + "561194827e4118011e03e0e62f83b83f9cef0d7c", + [ + null, + {} + ] + ], + "stroke-dashoffset-invalid.svg": [ + "2040355e2282a59d95a5ace4e1114b0cd14c4741", + [ + null, + {} + ] + ], + "stroke-dashoffset-valid.svg": [ + "846b69ccd2d07846bd77231d427fa514ecfe0d5b", + [ + null, + {} + ] + ], + "stroke-invalid.svg": [ + "a976ccb97742bb9aefc94d6cfd9c1e57ee18a06a", + [ + null, + {} + ] + ], + "stroke-linecap-computed.svg": [ + "a99629f7b9dfd7fc31ab0b7ec8a6bfdc5b9fdafa", + [ + null, + {} + ] + ], + "stroke-linecap-invalid.svg": [ + "ba4bd8640e40328f1fe913f497913df3dd7f3219", + [ + null, + {} + ] + ], + "stroke-linecap-valid.svg": [ + "045c4eef7c708dbb7b33a04104290be8a93bbe2d", + [ + null, + {} + ] + ], + "stroke-linejoin-computed.svg": [ + "3e0633fe57b0ab5ae6276d9e60ac2217db524802", + [ + null, + {} + ] + ], + "stroke-linejoin-invalid.svg": [ + "6a6c4282803ae337685c5465362c9dcf8981d354", + [ + null, + {} + ] + ], + "stroke-linejoin-valid.svg": [ + "876b2f67dd665c358a207fa14abfa470b787e31f", + [ + null, + {} + ] + ], + "stroke-miterlimit-computed.svg": [ + "33e5d2b81e8e698a0c5db645fad29bdc67d39d52", + [ + null, + {} + ] + ], + "stroke-miterlimit-invalid.svg": [ + "c1307dab5b8c81e3ee1c68f37750a1466b022135", + [ + null, + {} + ] + ], + "stroke-miterlimit-valid.svg": [ + "36fd81d29cdf22ca8be540f7d58ac9d4273b1177", + [ + null, + {} + ] + ], + "stroke-opacity-computed.svg": [ + "df58a213ff50835181f1e74eb608aa5aabcbeacb", + [ + null, + {} + ] ], - [ - "streams/readable-streams/async-iterator.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/rs-utils.js" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/recording-streams.js" - ] - ] - } - ] - ], - "bad-strategies.any.js": [ - "49fa4bdbece5b58dfa159b52d615c3505deb269c", - [ - "streams/readable-streams/bad-strategies.any.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] - ] - } + "stroke-opacity-invalid.svg": [ + "af1a954b47491b53fb84881da0dd40e0b40b047d", + [ + null, + {} + ] ], - [ - "streams/readable-streams/bad-strategies.any.serviceworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] - ] - } + "stroke-opacity-valid.svg": [ + "a333363e3834ab594a3b7cb7a6839d230f327ba2", + [ + null, + {} + ] ], - [ - "streams/readable-streams/bad-strategies.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] - ] - } + "stroke-valid.svg": [ + "ce43c1f63310a71544fd2bc2cf81d277fa630cf5", + [ + null, + {} + ] ], - [ - "streams/readable-streams/bad-strategies.any.sharedworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] - ] - } + "stroke-width-computed.svg": [ + "5daa9cafbaa1fbfe98310e4bd074f89063cf6e2d", + [ + null, + {} + ] ], - [ - "streams/readable-streams/bad-strategies.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] - ] - } - ] - ], - "bad-underlying-sources.any.js": [ - "3d77b923d178a0134f3f3d0590be0f4fd836c7a5", - [ - "streams/readable-streams/bad-underlying-sources.any.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] - ] - } + "stroke-width-invalid.svg": [ + "2111e376ac4000096cd13e939ecce1cb652e805f", + [ + null, + {} + ] ], - [ - "streams/readable-streams/bad-underlying-sources.any.serviceworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] - ] - } + "stroke-width-valid.svg": [ + "fa00a9b709dba7da9691ca9b2a564d71c7f4ad90", + [ + null, + {} + ] ], - [ - "streams/readable-streams/bad-underlying-sources.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] - ] - } + "text-rendering-computed.svg": [ + "b9758afefd6aa38031211298e68fac80f9a6bcc1", + [ + null, + {} + ] ], - [ - "streams/readable-streams/bad-underlying-sources.any.sharedworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] - ] - } + "text-rendering-invalid.svg": [ + "92da841cad69b8cce5628439f30da5b189259094", + [ + null, + {} + ] ], - [ - "streams/readable-streams/bad-underlying-sources.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] - ] - } + "text-rendering-valid.svg": [ + "d1a7dbf747efa7c26973773c8233c38c3ff74ea0", + [ + null, + {} + ] ] - ], - "cancel.any.js": [ - "9915c1fb6330c1f2a8143fb956abc9bec5504f3d", - [ - "streams/readable-streams/cancel.any.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/rs-utils.js" - ] - ] - } + }, + "reftests": { + "paint-context-005.svg": [ + "a76c7af88ffa36894476981e78e9148e9c92d88a", + [ + null, + {} + ] + ] + }, + "scripted": { + "paint-order-computed-value-01.svg": [ + "7ea669f1508283f498e9b38030022deac3b091a0", + [ + null, + {} + ] + ] + } + }, + "path": { + "error-handling": { + "bounding.svg": [ + "85c089b25baa814e563e136bcba819e4bd80b2b1", + [ + null, + {} + ] + ] + }, + "interfaces": { + "SVGAnimatedPathData-removed.svg": [ + "b9e62177cb99e561654a32c6707aed7d2d4b9ef9", + [ + null, + {} + ] + ] + }, + "property": { + "d-interpolation-discrete.svg": [ + "5b20a589bb54e0ed985b91e11258e10ff44ef66c", + [ + null, + {} + ] ], - [ - "streams/readable-streams/cancel.any.serviceworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/rs-utils.js" - ] - ] - } + "d-interpolation-relative-absolute.svg": [ + "09d4c70712f8f4cbb37e8dd6d075529500a68179", + [ + null, + {} + ] ], - [ - "streams/readable-streams/cancel.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/rs-utils.js" - ] - ] - } + "d-interpolation-single.svg": [ + "107b607beca6056bf7fc21f0b0e954bb37da5c03", + [ + null, + {} + ] ], - [ - "streams/readable-streams/cancel.any.sharedworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/rs-utils.js" - ] - ] - } + "getComputedStyle.svg": [ + "400f92ec84179ec140ecd2314ceae3341cd415ba", + [ + null, + {} + ] + ], + "serialization.svg": [ + "2ad336d5f72163b2deef18355997a0c3576e3947", + [ + null, + {} + ] ], + "test_style_flush_on_dom_api_with_d_property.html": [ + "248118443b597f6d84d4e84bd3ba73c114c2fc45", + [ + null, + {} + ] + ] + } + }, + "pservers": { + "inheritance.svg": [ + "e08b93da83c7d0fd3e546eaa9b708cdda83eba31", [ - "streams/readable-streams/cancel.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/rs-utils.js" - ] - ] - } + null, + {} ] ], - "constructor.any.js": [ - "0b995f0cb16bde21df887a717690eaa853a988b9", - [ - "streams/readable-streams/constructor.any.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] - ] - } + "parsing": { + "stop-color-computed.svg": [ + "b05a69f10b9e3614f7a588998ea06879df437da7", + [ + null, + {} + ] ], - [ - "streams/readable-streams/constructor.any.serviceworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] - ] - } + "stop-color-invalid.svg": [ + "4eee5444867f6670155327d357dbe3feaea3b309", + [ + null, + {} + ] ], - [ - "streams/readable-streams/constructor.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] - ] - } + "stop-color-valid.svg": [ + "80d6c23b83c35f6dfdbff49cce6fedd9066c77bd", + [ + null, + {} + ] ], - [ - "streams/readable-streams/constructor.any.sharedworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] - ] - } + "stop-opacity-computed.svg": [ + "1ad1e98c5a84ebad5e0129164e0d5616b72e36fc", + [ + null, + {} + ] + ], + "stop-opacity-invalid.svg": [ + "eae9343d1472c215dc237f1dbd1c8e15bc50708b", + [ + null, + {} + ] ], + "stop-opacity-valid.svg": [ + "28b60038a4d5707ae45b5e6e7dbc7f806717eaf9", + [ + null, + {} + ] + ] + }, + "pattern-with-invalid-base-cloned-thcrash.html": [ + "04a453545f5938489eb111a23a16c8c89065ed4e", [ - "streams/readable-streams/constructor.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] - ] - } + null, + {} ] ], - "count-queuing-strategy-integration.any.js": [ - "a8c1b91d0068e316463400395601c995b9f89f40", - [ - "streams/readable-streams/count-queuing-strategy-integration.any.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] - ] - } - ], + "scripted": { + "stop-color-inheritance-currentcolor.svg": [ + "22bf513c862bf8d1ccbac358c71560fd834e545a", + [ + null, + {} + ] + ] + } + }, + "render": { + "foreignObject-in-non-rendered-getComputedStyle.html": [ + "409f1044a33372c8e642ba61a2d4f752061eb975", [ - "streams/readable-streams/count-queuing-strategy-integration.any.serviceworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] - ] - } - ], + null, + {} + ] + ] + }, + "scripted": { + "script-invalid-script-type.html": [ + "9602dd525bd4d2b77b8d4ffadebef9e568a98c77", [ - "streams/readable-streams/count-queuing-strategy-integration.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] - ] - } - ], + null, + {} + ] + ], + "script-runs-in-shadow-tree.html": [ + "9693db333ff18c1e6f39515be29c77d551e4e2fe", [ - "streams/readable-streams/count-queuing-strategy-integration.any.sharedworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] - ] - } - ], + null, + {} + ] + ], + "text-attrs-dxdy-have-length.svg": [ + "a5f07e29a11ad0279b4645059f50573e76f909cc", [ - "streams/readable-streams/count-queuing-strategy-integration.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] - ] - } + null, + {} ] ], - "cross-realm-crash.window.js": [ - "5fc7ce37a5f6d2dbd90b5f898bcd7b198f0c50b0", + "text-attrs-xyrotate-have-length.svg": [ + "79d365ddec846aa603b8da3b0c5d89f92a338083", [ - "streams/readable-streams/cross-realm-crash.window.html", + null, {} ] ], - "default-reader.any.js": [ - "f92862719e47c178e3bdb1ddcf2cfa12b84b4514", + "text-tspan-attrs-have-length.svg": [ + "d189b531d74566ec5c86a899170d3b2eff6568b6", [ - "streams/readable-streams/default-reader.any.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/rs-utils.js" - ] - ] - } - ], + null, + {} + ] + ], + "text-tspan-attrs-indexed-access.svg": [ + "b14b6bfc28e20c9fc296bb41c3d863752b26edd3", [ - "streams/readable-streams/default-reader.any.serviceworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/rs-utils.js" - ] - ] - } - ], + null, + {} + ] + ], + "tspan-attrs-dxdy-have-length.svg": [ + "c8d002f1cef9b687ee2bd69da286f6370ed6cf77", [ - "streams/readable-streams/default-reader.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/rs-utils.js" - ] - ] - } - ], + null, + {} + ] + ], + "tspan-attrs-xyrotate-have-length.svg": [ + "11086aa198ff053c9d86c4bdaf4650fd2aa5596a", [ - "streams/readable-streams/default-reader.any.sharedworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/rs-utils.js" - ] - ] - } - ], + null, + {} + ] + ] + }, + "shapes": { + "animatedPoints-non-animated.html": [ + "5c1758908605d71baf9fe87c9b54ccfab5c5e5cd", [ - "streams/readable-streams/default-reader.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/rs-utils.js" - ] - ] - } + null, + {} ] ], - "floating-point-total-queue-size.any.js": [ - "8b88c21d7f0b531266bbec7cb6d764b51d63db66", + "line-getPointAtLength.svg": [ + "472a64480aee5489add7f693aa1118413a3e9b06", [ - "streams/readable-streams/floating-point-total-queue-size.any.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] - ] - } - ], + null, + {} + ] + ], + "line-pathLength.svg": [ + "c6802d70a11e945e2d69ad0528d984da9b73e094", [ - "streams/readable-streams/floating-point-total-queue-size.any.serviceworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] - ] - } - ], + null, + {} + ] + ], + "rx-ry-not-inherited.svg": [ + "ff943e8b5c4718f57d99e6e520a7897e8356537b", [ - "streams/readable-streams/floating-point-total-queue-size.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] - ] - } + null, + {} + ] + ], + "scripted": { + "disabled-shapes-not-hit.svg": [ + "21ea9078785e865d36f03a3830b6b90f63f3d10a", + [ + null, + {} + ] ], - [ - "streams/readable-streams/floating-point-total-queue-size.any.sharedworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] - ] - } + "shapes-clip-path.svg": [ + "a8277226a5ba542ce408d64a50e319b7d44a7dcd", + [ + null, + {} + ] ], - [ - "streams/readable-streams/floating-point-total-queue-size.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] - ] - } + "stroke-dashes-hit-at-high-scale.svg": [ + "b57a9e0aa7714e7a821c74d24f6578ab7d6286b3", + [ + null, + {} + ] ] - ], - "from.any.js": [ - "58ad4d4add127d933c00af0b36c1d8c16b08f76d", - [ - "streams/readable-streams/from.any.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ] - ] - } + } + }, + "struct": { + "UnknownElement": { + "interface.svg": [ + "987f20c5e4c0589e159f044c57b6e552d2ef987e", + [ + null, + {} + ] + ] + }, + "scripted": { + "autofocus-attribute.svg": [ + "edf200c4c7be31f2e1fea39003b991695610e6c3", + [ + null, + {} + ] ], - [ - "streams/readable-streams/from.any.serviceworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ] - ] - } + "svg-checkIntersection-001.svg": [ + "059cdef2a6b618385a7ae6f4f9522e4ca1a2a3d9", + [ + null, + {} + ] ], - [ - "streams/readable-streams/from.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ] - ] - } + "svg-checkIntersection-002.svg": [ + "1ff1f7829f3cf7192d73549f50743c29d617fa8f", + [ + null, + {} + ] ], - [ - "streams/readable-streams/from.any.sharedworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ] - ] - } + "svg-getIntersectionList-001.svg": [ + "a360bad3d35af84f0d65a4d00391cf454332691e", + [ + null, + {} + ] ], - [ - "streams/readable-streams/from.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ] - ] - } - ] - ], - "garbage-collection.any.js": [ - "13bd1fb34378773ddab521ab0e51e572dc54063a", - [ - "streams/readable-streams/garbage-collection.any.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "/common/gc.js" - ] - ] - } + "svg-getIntersectionList-002.svg": [ + "dd30943569050c210cce66681b6092abc00eb382", + [ + null, + {} + ] ], - [ - "streams/readable-streams/garbage-collection.any.serviceworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "/common/gc.js" - ] - ] - } + "svg-getIntersectionList-003.svg": [ + "b08ea71b36074e1153f6e5a43e9e5ce390a0dd3a", + [ + null, + {} + ] ], - [ - "streams/readable-streams/garbage-collection.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "/common/gc.js" - ] - ] - } + "svg-getIntersectionList-004.svg": [ + "c029a3b0702f6ac82bb6669c5da9d063fb10f5e3", + [ + null, + {} + ] ], - [ - "streams/readable-streams/garbage-collection.any.sharedworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "/common/gc.js" - ] - ] - } + "svg-getIntersectionList-005.svg": [ + "717c15eef5272bb8621744bfe7e2c199f147d17a", + [ + null, + {} + ] + ], + "svg-getIntersectionList-006.svg": [ + "a7b946501377b5512c57286711a51d006d33db62", + [ + null, + {} + ] + ], + "use-external-reload-in-iframe.html": [ + "ab1214d20f1e8f5e29024195c624735ed8c9dfc7", + [ + null, + {} + ] ], + "use-load-error-events.tentative.html": [ + "2c52072e16906575679ab654b7e901a08b5541c7", + [ + null, + {} + ] + ] + }, + "use-getComputedStyle.html": [ + "1e5d5af57cbc042a851bee180a402a05fd177fe3", [ - "streams/readable-streams/garbage-collection.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "/common/gc.js" - ] - ] - } + null, + {} + ] + ] + }, + "styling": { + "css-selectors-case-sensitivity.html": [ + "c1e07a53288681bfd26de7774f810d20eb38b627", + [ + null, + {} ] ], - "general.any.js": [ - "eee3f62215eeb07e6a1c06d004defd98324b270e", + "presentation-attributes-irrelevant.html": [ + "f96d1d9de6f26b0d4fde11156dab87487d6cbdc8", [ - "streams/readable-streams/general.any.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/rs-utils.js" - ] - ] - } - ], + null, + {} + ] + ], + "presentation-attributes-relevant.html": [ + "b5f9343690cc447348b54b280de4e7c27a3d2436", [ - "streams/readable-streams/general.any.serviceworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/rs-utils.js" - ] - ] - } - ], + null, + {} + ] + ], + "presentation-attributes-special-cases.html": [ + "c99ed704cf1dde83a26ed4dd52f537bc8805165e", [ - "streams/readable-streams/general.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/rs-utils.js" - ] - ] - } - ], + null, + {} + ] + ], + "presentation-attributes-unknown.html": [ + "487175b144b8b7a405d4d2f75aaee7b493ab7ea8", [ - "streams/readable-streams/general.any.sharedworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/rs-utils.js" - ] - ] - } - ], + null, + {} + ] + ], + "required-properties.svg": [ + "37bf0fdf7e8ead12ab5b686b56844c82625e6591", [ - "streams/readable-streams/general.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/rs-utils.js" - ] - ] - } + null, + {} ] ], - "global.html": [ - "08665d318eac889dfba85abd0efeb0a3168913df", + "style-sheet-interfaces.svg": [ + "9532e64929001c83cb693d0661145ff0c58ef21f", [ null, {} ] ], - "owning-type-message-port.any.js": [ - "282c1f411485c0e8a17beadb0fad7d14ef634046", + "vector-effect-invalid.html": [ + "18f82502ddd3369d477fba0a7b5f96b3c77150ff", [ - "streams/readable-streams/owning-type-message-port.any.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/rs-utils.js" - ] - ] - } - ], + null, + {} + ] + ] + }, + "text": { + "inheritance.svg": [ + "1f4609d7ac6c5384f68d109733be01c7ea915df4", [ - "streams/readable-streams/owning-type-message-port.any.serviceworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/rs-utils.js" - ] - ] - } + null, + {} + ] + ], + "parsing": { + "inline-size-invalid.svg": [ + "19fd6f64724aa4084f021a23d01a0be1750ea025", + [ + null, + {} + ] ], - [ - "streams/readable-streams/owning-type-message-port.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/rs-utils.js" - ] - ] - } + "inline-size-valid.svg": [ + "3b01cd3448886cf4fb8269e133eb87e92ce98efc", + [ + null, + {} + ] ], - [ - "streams/readable-streams/owning-type-message-port.any.sharedworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/rs-utils.js" - ] - ] - } + "shape-inside-invalid.svg": [ + "15734576dfac27bd616c5f74f4b3f4e5fcf65866", + [ + null, + {} + ] ], - [ - "streams/readable-streams/owning-type-message-port.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/rs-utils.js" - ] - ] - } - ] - ], - "owning-type-video-frame.any.js": [ - "b652f9c5fcb4b67f7ab0405c834020001ad5afff", - [ - "streams/readable-streams/owning-type-video-frame.any.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/rs-utils.js" - ] - ] - } + "shape-inside-valid.svg": [ + "5846917c0013fc38c0a17f939d6ea11688aebf28", + [ + null, + {} + ] ], - [ - "streams/readable-streams/owning-type-video-frame.any.serviceworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/rs-utils.js" - ] - ] - } + "shape-margin-invalid.svg": [ + "0bf74701928192f59d20b60c10341a17cb6d9355", + [ + null, + {} + ] ], - [ - "streams/readable-streams/owning-type-video-frame.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/rs-utils.js" - ] - ] - } + "shape-margin-valid.svg": [ + "2ba50afb8a1337fc29b8dc58d5c5eb4202578dcf", + [ + null, + {} + ] ], - [ - "streams/readable-streams/owning-type-video-frame.any.sharedworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/rs-utils.js" - ] - ] - } + "shape-subtract-invalid.svg": [ + "fb2caef25c4797323dc839d48cd5fe546d022843", + [ + null, + {} + ] ], - [ - "streams/readable-streams/owning-type-video-frame.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/rs-utils.js" - ] - ] - } - ] - ], - "owning-type.any.js": [ - "34c2a55d5134a20ef9450a338278af2ef18612de", - [ - "streams/readable-streams/owning-type.any.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/rs-utils.js" - ] - ] - } + "shape-subtract-valid.svg": [ + "3be94fb8499b1a776298399f07cc1baa069581d4", + [ + null, + {} + ] ], - [ - "streams/readable-streams/owning-type.any.serviceworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/rs-utils.js" - ] - ] - } + "text-anchor-computed.svg": [ + "e11b23fc2316f0178b304437269f94fa95897f22", + [ + null, + {} + ] ], - [ - "streams/readable-streams/owning-type.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/rs-utils.js" - ] - ] - } + "text-anchor-invalid.svg": [ + "69a6a58971264821b3f9d12ce1f8110a34d40fa0", + [ + null, + {} + ] ], - [ - "streams/readable-streams/owning-type.any.sharedworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/rs-utils.js" - ] - ] - } + "text-anchor-valid.svg": [ + "eca651e12275f3ec4ad3e4ee7a89d3ee1d44b721", + [ + null, + {} + ] ], - [ - "streams/readable-streams/owning-type.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/rs-utils.js" - ] - ] - } + "text-decoration-fill-invalid.svg": [ + "19da0821730d5062e006e45eadb3cd3726318302", + [ + null, + {} + ] + ], + "text-decoration-fill-valid.svg": [ + "d2f9447a169d140bacd301d235707c02b30ba81d", + [ + null, + {} + ] + ], + "text-decoration-stroke-invalid.svg": [ + "8d44d6f1c33898fca4a81924ba0d3e05cd3ed7d4", + [ + null, + {} + ] + ], + "text-decoration-stroke-valid.svg": [ + "df64cc9ec3d387f26238b66b92c9f356f2f23e09", + [ + null, + {} + ] ] - ], - "patched-global.any.js": [ - "c208824c8644695771cfbe4dd4ace71ed4b49df5", - [ - "streams/readable-streams/patched-global.any.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] - ] - } + }, + "scripted": { + "getextentofchar.html": [ + "1a6bb32b4bf07f22e7e3b44815313882fd8a88c7", + [ + null, + {} + ] ], - [ - "streams/readable-streams/patched-global.any.serviceworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] - ] - } + "getrotationofchar.html": [ + "3bacd471765705e7912d754c0737d052a655a963", + [ + null, + {} + ] ], - [ - "streams/readable-streams/patched-global.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] - ] - } + "getstartpositionofchar-dominant-baseline.html": [ + "7ecfd7848a738a3083e6b0295fa9be0164d01fdd", + [ + null, + {} + ] ], - [ - "streams/readable-streams/patched-global.any.sharedworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] - ] - } + "getsubstringlength-emoji-ligatures.html": [ + "2b6061be5dbde360f259a3b3d3076ef21668961f", + [ + null, + {} + ] ], - [ - "streams/readable-streams/patched-global.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] - ] - } + "lengthadjust.html": [ + "51b06675b0928aaf1d500eaefbd5a683b532a517", + [ + null, + {} + ] + ], + "textlength-inconsistent.svg": [ + "ca899de349c3646ddfbeb547d36c505820cdccc2", + [ + null, + {} + ] + ], + "textpath-textlength-text-anchor-001.tentative.svg": [ + "6c4f50fe871b0126548557976e8391c1d973b5fe", + [ + null, + {} + ] + ], + "transform-dynamic-update.html": [ + "c1ac9197a5f64e260679269e7cf79d1e7ff17192", + [ + null, + {} + ] ] - ], - "read-task-handling.window.js": [ - "2edc0ddddfe692c79474c8570d433ced8df90276", - [ - "streams/readable-streams/read-task-handling.window.html", - { - "script_metadata": [ - [ - "global", - "window,worker" - ] - ] - } + } + }, + "types": { + "elements": { + "SVGGeometryElement-rect.svg": [ + "93d25b6bfddb8c483044db3092d2c0e67ae0fac2", + [ + null, + {} + ] ] - ], - "reentrant-strategies.any.js": [ - "8ae7b98e8d5eefbb603157c69c2d250c79702e29", - [ - "streams/readable-streams/reentrant-strategies.any.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/recording-streams.js" - ], - [ - "script", - "../resources/rs-utils.js" - ], - [ - "script", - "../resources/test-utils.js" - ] - ] - } + }, + "scripted": { + "SVGAnimatedAngle.html": [ + "5fdc9f3cffb0a3aaabe231706afc2c871ecf1ee8", + [ + null, + {} + ] ], - [ - "streams/readable-streams/reentrant-strategies.any.serviceworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/recording-streams.js" - ], - [ - "script", - "../resources/rs-utils.js" - ], - [ - "script", - "../resources/test-utils.js" - ] - ] - } + "SVGAnimatedBoolean.html": [ + "ba52922ed737392688445e21c742ff1f440743fb", + [ + null, + {} + ] ], - [ - "streams/readable-streams/reentrant-strategies.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/recording-streams.js" - ], - [ - "script", - "../resources/rs-utils.js" - ], - [ - "script", - "../resources/test-utils.js" - ] - ] - } + "SVGAnimatedEnumeration-SVGClipPathElement.html": [ + "9727bfb22403f9f8fa8f0d14cad719be25b37132", + [ + null, + {} + ] ], - [ - "streams/readable-streams/reentrant-strategies.any.sharedworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/recording-streams.js" - ], - [ - "script", - "../resources/rs-utils.js" - ], - [ - "script", - "../resources/test-utils.js" - ] - ] - } + "SVGAnimatedEnumeration-SVGComponentTransferFunctionElement.html": [ + "cb4a631af663cdbcac8d50edcef49f536c0e8eb6", + [ + null, + {} + ] ], - [ - "streams/readable-streams/reentrant-strategies.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/recording-streams.js" - ], - [ - "script", - "../resources/rs-utils.js" - ], - [ - "script", - "../resources/test-utils.js" - ] - ] - } - ] - ], - "tee.any.js": [ - "c2c2e48230721163c09f4d4f6d1aee0c9a0a66fa", - [ - "streams/readable-streams/tee.any.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/rs-utils.js" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/recording-streams.js" - ], - [ - "script", - "../resources/rs-test-templates.js" - ] - ] - } + "SVGAnimatedEnumeration-SVGFEColorMatrixElement.html": [ + "ab906119ad88b38a7db0a89c0d16810d67b8b4a7", + [ + null, + {} + ] ], - [ - "streams/readable-streams/tee.any.serviceworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/rs-utils.js" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/recording-streams.js" - ], - [ - "script", - "../resources/rs-test-templates.js" - ] - ] - } + "SVGAnimatedEnumeration-SVGFECompositeElement.html": [ + "0e99f5fe9cb3335f54591d75e75bffdc0262d0d2", + [ + null, + {} + ] ], - [ - "streams/readable-streams/tee.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/rs-utils.js" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/recording-streams.js" - ], - [ - "script", - "../resources/rs-test-templates.js" - ] - ] - } + "SVGAnimatedEnumeration-SVGFEConvolveMatrixElement.html": [ + "b2aff0bd8cc84146488cc277a3eec6905f7686f7", + [ + null, + {} + ] ], - [ - "streams/readable-streams/tee.any.sharedworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/rs-utils.js" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/recording-streams.js" - ], - [ - "script", - "../resources/rs-test-templates.js" - ] - ] - } + "SVGAnimatedEnumeration-SVGFEDisplacementMapElement.html": [ + "14dda6e227e2826299b150af850a12c72dc6fbfa", + [ + null, + {} + ] + ], + "SVGAnimatedEnumeration-SVGFEMorphologyElement.html": [ + "3bf638e5e6b60519e7259f96890ed0c6f11a4316", + [ + null, + {} + ] + ], + "SVGAnimatedEnumeration-SVGFETurbulenceElement.html": [ + "2818a8afa4ac42c5ae7a83646f4e56931dbf748f", + [ + null, + {} + ] + ], + "SVGAnimatedEnumeration-SVGFilterElement.html": [ + "fcf38a8513adcbba0ceb4543340173c85de8ed7c", + [ + null, + {} + ] + ], + "SVGAnimatedEnumeration-SVGGradientElement.html": [ + "a23a66f3d25817fa112f18f5a29ad3f43936f65a", + [ + null, + {} + ] + ], + "SVGAnimatedEnumeration-SVGMarkerElement.html": [ + "61c44d0d178a47f6cbca1864d299d1e1c13ceaf7", + [ + null, + {} + ] + ], + "SVGAnimatedEnumeration-SVGMaskElement.html": [ + "6a0a26bacb7ecd13264ac419dffb97266ead097f", + [ + null, + {} + ] + ], + "SVGAnimatedEnumeration-SVGPatternElement.html": [ + "6c49adee9020f527d9f6fb51ff01204810d4b61e", + [ + null, + {} + ] + ], + "SVGAnimatedEnumeration-SVGTextContentElement.html": [ + "0798c9be666e0c40279364cb2fabb58ee3ffdc0a", + [ + null, + {} + ] + ], + "SVGAnimatedEnumeration-SVGTextPathElement.html": [ + "9841866b5a2a8bb83ac5155ba666a4695e8c269d", + [ + null, + {} + ] + ], + "SVGAnimatedEnumeration.html": [ + "990b884545d70a3f1156e4c070cdac2d6cc2ac79", + [ + null, + {} + ] + ], + "SVGAnimatedInteger.html": [ + "849c13d3671df44b759729572c76f5965965865c", + [ + null, + {} + ] + ], + "SVGAnimatedLength.html": [ + "788849d8e35c274925d8580a579bd5dd64649927", + [ + null, + {} + ] + ], + "SVGAnimatedLengthList.html": [ + "763d804642d18579a4ac82cfe55accc81cbd8637", + [ + null, + {} + ] + ], + "SVGAnimatedNumber.html": [ + "c72cabca1a84b8cf071b91097e23a4039468999b", + [ + null, + {} + ] + ], + "SVGAnimatedNumberList.html": [ + "5737cd4d318f3c93232f057603d25e01a2ef7484", + [ + null, + {} + ] + ], + "SVGAnimatedPreserveAspectRatio.html": [ + "80b96e996974d1bd4439ddd89cdbc96fdfe2763a", + [ + null, + {} + ] + ], + "SVGAnimatedRect.html": [ + "1dfbc77b51266ccc50cadc79a3c0f5dae8f479b9", + [ + null, + {} + ] + ], + "SVGElement.className-01.svg": [ + "38121356a6682f9c184c5b0ed50839211361c515", + [ + null, + {} + ] + ], + "SVGGeometryElement.getPointAtLength-01.svg": [ + "e268386b64e256383b606aa02ac1497e380d8f3f", + [ + null, + {} + ] + ], + "SVGGeometryElement.getPointAtLength-02.svg": [ + "9420503d404522fbc4d90ca5f60f70eb304687e2", + [ + null, + {} + ] + ], + "SVGGeometryElement.getPointAtLength-03.svg": [ + "8805cd2c41cff0a77a5ff7a126b1e43e33e7656c", + [ + null, + {} + ] + ], + "SVGGeometryElement.getPointAtLength-04.svg": [ + "cbff157c2dd71fb655333a18294eee6b564f83cb", + [ + null, + {} + ] ], - [ - "streams/readable-streams/tee.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/rs-utils.js" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/recording-streams.js" - ], - [ - "script", - "../resources/rs-test-templates.js" - ] - ] - } - ] - ], - "templated.any.js": [ - "dc75b805a10d63ac933f9fd05af27c38d11b6fea", - [ - "streams/readable-streams/templated.any.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/rs-test-templates.js" - ] - ] - } + "SVGGeometryElement.getPointAtLength-05.svg": [ + "a8dc208fd58aa54e977f6d68ebb3dcb07bcd76ea", + [ + null, + {} + ] ], - [ - "streams/readable-streams/templated.any.serviceworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/rs-test-templates.js" - ] - ] - } + "SVGGeometryElement.getTotalLength-01.svg": [ + "49c8c165d70d66064643b50bd369ee4c5eaf05b6", + [ + null, + {} + ] ], - [ - "streams/readable-streams/templated.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/rs-test-templates.js" - ] - ] - } + "SVGGeometryElement.isPointInFill-01.svg": [ + "3714c2a8dac0d41d7cb992ece6fa702e7286d2d4", + [ + null, + {} + ] ], - [ - "streams/readable-streams/templated.any.sharedworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/rs-test-templates.js" - ] - ] - } + "SVGGeometryElement.isPointInStroke-01.svg": [ + "78ba96d7db63fbb42b8f41f7c0a7778c96b64eff", + [ + null, + {} + ] ], - [ - "streams/readable-streams/templated.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/rs-test-templates.js" - ] - ] - } - ] - ] - }, - "transferable": { - "deserialize-error.window.js": [ - "64cf2bbfb1293e90a67df02cebddeee51ae0ef78", - [ - "streams/transferable/deserialize-error.window.html", - { - "script_metadata": [ - [ - "script", - "/common/get-host-info.sub.js" - ], - [ - "script", - "resources/create-wasm-module.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ] - ], - "readable-stream.html": [ - "b1ede4695bf4cd73a74fb43d52d471a72534d210", - [ - null, - {} - ] - ], - "reason.html": [ - "4251aa85b816bb24a00143b642cf8410a4132366", - [ - null, - {} - ] - ], - "service-worker.https.html": [ - "2ca7f19c910f767a9482ff15ff88bda11971a9fe", - [ - null, - {} - ] - ], - "shared-worker.html": [ - "cd0415402d5018e2f76f4996edd4e7827adc8ab1", - [ - null, - {} - ] - ], - "transfer-with-messageport.window.js": [ - "37f8c9df169607a4565f76d04c7cc56bc408af47", - [ - "streams/transferable/transfer-with-messageport.window.html", - {} - ] - ], - "transform-stream-members.any.js": [ - "05914e12ccbe574ffe006cb35dab0ec717828b5f", - [ - "streams/transferable/transform-stream-members.any.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,shadowrealm" - ] - ] - } + "SVGGeometryElement.isPointInStroke-02.svg": [ + "909b035ef4779dd52f3e923a54efb63c526a3457", + [ + null, + {} + ] ], - [ - "streams/transferable/transform-stream-members.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,shadowrealm" - ] - ] - } + "SVGGraphicsElement-clone.svg": [ + "2ef0e074809ebeebb6a115524e09385cb64080f1", + [ + null, + {} + ] ], - [ - "streams/transferable/transform-stream-members.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,shadowrealm" - ] - ] - } - ] - ], - "transform-stream.html": [ - "355d5d807433d75c02adff23e228d050b7772c0f", - [ - null, - {} - ] - ], - "window.html": [ - "11c868356b69a1f628cdd8891df6a66c327161da", - [ - null, - {} - ] - ], - "worker.html": [ - "c5dc9fc62f8cf24c9b45289651724fe3774f305d", - [ - null, - {} - ] - ], - "writable-stream.html": [ - "7e25dad94d4cfd8090e8becba0d5a4fe14ce6512", - [ - null, - {} - ] - ] - }, - "transform-streams": { - "backpressure.any.js": [ - "47a21fb7e71fed837832dd1b91b5100a3513131d", - [ - "streams/transform-streams/backpressure.any.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/recording-streams.js" - ], - [ - "script", - "../resources/test-utils.js" - ] - ] - } + "SVGGraphicsElement.getBBox-01.html": [ + "773b06e5043d8d942b793a03d967a8acc925d5b1", + [ + null, + {} + ] ], - [ - "streams/transform-streams/backpressure.any.serviceworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/recording-streams.js" - ], - [ - "script", - "../resources/test-utils.js" - ] - ] - } + "SVGGraphicsElement.getBBox-02.html": [ + "0efd590710c693db36da4ebc4f9b948e875d6363", + [ + null, + {} + ] ], - [ - "streams/transform-streams/backpressure.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/recording-streams.js" - ], - [ - "script", - "../resources/test-utils.js" - ] - ] - } + "SVGGraphicsElement.getBBox-03.html": [ + "0bb8a11fe7a50c1c1ef2dc55da10f471346e0ec8", + [ + null, + {} + ] ], - [ - "streams/transform-streams/backpressure.any.sharedworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/recording-streams.js" - ], - [ - "script", - "../resources/test-utils.js" - ] - ] - } + "SVGGraphicsElement.getBBox-04.html": [ + "2b5a5eb2bb9310670b37805a6daf7c35e9101e0a", + [ + null, + {} + ] ], - [ - "streams/transform-streams/backpressure.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/recording-streams.js" - ], - [ - "script", - "../resources/test-utils.js" - ] - ] - } - ] - ], - "cancel.any.js": [ - "5c7fc4eae5d55b84a562192726066a82b3c19858", - [ - "streams/transform-streams/cancel.any.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ] - ] - } + "SVGGraphicsElement.getScreenCTM.html": [ + "7e5dfc649f89112cb8b4d31352a5b1e8788739fa", + [ + null, + {} + ] ], - [ - "streams/transform-streams/cancel.any.serviceworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ] - ] - } + "SVGGraphicsElement.svg": [ + "893882b3cce452b39eef410ea6dbed10181faca1", + [ + null, + {} + ] ], - [ - "streams/transform-streams/cancel.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ] - ] - } + "SVGLength-cap.html": [ + "058e9a72b1090fa7aaa965239750457b2a866c03", + [ + null, + {} + ] ], - [ - "streams/transform-streams/cancel.any.sharedworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ] - ] - } + "SVGLength-ch.html": [ + "6e82a85d1c195dfdec9c03391da61969431db90e", + [ + null, + {} + ] ], - [ - "streams/transform-streams/cancel.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ] - ] - } - ] - ], - "errors.any.js": [ - "bea060b6590818f0d6c3e95309b1d1e8bcc2a9a1", - [ - "streams/transform-streams/errors.any.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ] - ] - } + "SVGLength-ic.html": [ + "2dfb0e1c42be71e8a4333e4d42affb851f506c2f", + [ + null, + {} + ] ], - [ - "streams/transform-streams/errors.any.serviceworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ] - ] - } + "SVGLength-lh.html": [ + "56287eacff2586a29c66e9a2e945e40c8ff2de82", + [ + null, + {} + ] ], - [ - "streams/transform-streams/errors.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ] - ] - } + "SVGLength-px-with-context.html": [ + "7cbe27f83a3be8a2f106eb27bc6540d0274ec56c", + [ + null, + {} + ] ], - [ - "streams/transform-streams/errors.any.sharedworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ] - ] - } + "SVGLength-px.html": [ + "191112a826e2a91cbcf391e3b89565115f986964", + [ + null, + {} + ] ], - [ - "streams/transform-streams/errors.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ] - ] - } - ] - ], - "flush.any.js": [ - "c95d8ae1186518c507fccda83bf3d8f164f42f8c", - [ - "streams/transform-streams/flush.any.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ] - ] - } + "SVGLength-rem.html": [ + "73ea00edc25db600235149d22a68f5a9ad9d3948", + [ + null, + {} + ] ], - [ - "streams/transform-streams/flush.any.serviceworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ] - ] - } + "SVGLength-rlh.html": [ + "1d1670bd81dea6b9aaf253b28ff9312914e14f7c", + [ + null, + {} + ] ], - [ - "streams/transform-streams/flush.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ] - ] - } + "SVGLength-viewport.html": [ + "402210779b20267bcfe8e5d76aff5b2e42bd90b1", + [ + null, + {} + ] ], - [ - "streams/transform-streams/flush.any.sharedworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ] - ] - } + "SVGLength-zoom.html": [ + "5b8cb16b94f322151b1e97c2560650b8a097f50b", + [ + null, + {} + ] ], - [ - "streams/transform-streams/flush.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ] - ] - } - ] - ], - "general.any.js": [ - "a40ef30843ec4da7ccbe1b382a5b6132cf1e19c9", - [ - "streams/transform-streams/general.any.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/rs-utils.js" - ] - ] - } + "SVGLength.html": [ + "7436f5940c5d7432ab318759d3bb83df597c35af", + [ + null, + {} + ] ], - [ - "streams/transform-streams/general.any.serviceworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/rs-utils.js" - ] - ] - } + "SVGLengthList-appendItem.html": [ + "5af8dbf4009a2a5952e32d8fdc58060fef15bc87", + [ + null, + {} + ] ], - [ - "streams/transform-streams/general.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/rs-utils.js" - ] - ] - } + "SVGLengthList-appendItemFromClearedList.html": [ + "e76491ec3221a33f5f378c0bf44552e78c5bf944", + [ + null, + {} + ] + ], + "SVGLengthList-basics.html": [ + "685074d519fae3f5d59bd7c10f6d5a7c51f16fbf", + [ + null, + {} + ] + ], + "SVGLengthList-getItem.html": [ + "ca27810e72d2d33fd865caa31d4a600ba9a11b40", + [ + null, + {} + ] ], + "SVGPoint.html": [ + "cdf44e29f20bd3440195752f4122d758a4d24659", + [ + null, + {} + ] + ], + "event-handler-all-document-element-events.svg": [ + "69b7aaa171ab0bd1e35b884fe39f97cd5f37897a", + [ + null, + {} + ] + ] + } + } + }, + "svg-aam": { + "name": { + "comp_host_language_label.html": [ + "81f9dab2e6b6a2be5984d1afea6ce8038eda2b68", [ - "streams/transform-streams/general.any.sharedworker.html", + null, { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/rs-utils.js" - ] - ] + "testdriver": true } - ], + ] + ] + }, + "role": { + "role-img.tentative.html": [ + "57fd17cddfc85b7fc695fba53a67fc7ff365a612", [ - "streams/transform-streams/general.any.worker.html", + null, { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/rs-utils.js" - ] - ] + "testdriver": true } ] ], - "invalid-realm.tentative.window.js": [ - "57cdfd94862dfe7832164e13eec7bcc4f302c3de", + "roles-generic.html": [ + "d5d46b792cad4395188a2e2ac087b72f6603a82c", [ - "streams/transform-streams/invalid-realm.tentative.window.html", - {} + null, + { + "testdriver": true + } ] ], - "lipfuzz.any.js": [ - "e334705db44354cbb79c130f25cbbd65d58633ee", + "roles.html": [ + "cc104662bdb3524cd930989618f08c12d3e12bd1", [ - "streams/transform-streams/lipfuzz.any.html", + null, { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] - ] + "testdriver": true } - ], - [ - "streams/transform-streams/lipfuzz.any.serviceworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] + ] + ] + } + }, + "timing-entrytypes-registry": { + "registry.any.js": [ + "4db249b16bea55e678f62721ee1002b012fc0bbf", + [ + "timing-entrytypes-registry/registry.any.html", + { + "script_metadata": [ + [ + "script", + "resources/utils.js" ] - } - ], - [ - "streams/transform-streams/lipfuzz.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] + ] + } + ], + [ + "timing-entrytypes-registry/registry.any.worker.html", + { + "script_metadata": [ + [ + "script", + "resources/utils.js" ] - } - ], - [ - "streams/transform-streams/lipfuzz.any.sharedworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] + ] + } + ] + ], + "registry.window.js": [ + "21ef2230e9ebea5b853e243c51905b92098fcd95", + [ + "timing-entrytypes-registry/registry.window.html", + { + "script_metadata": [ + [ + "script", + "resources/utils.js" ] - } - ], - [ - "streams/transform-streams/lipfuzz.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] + ] + } + ] + ] + }, + "top-level-storage-access-api": { + "requestStorageAccessFor-insecure.sub.window.js": [ + "0852483ce54e04ee0927e618d751a6eb231f14cb", + [ + "top-level-storage-access-api/requestStorageAccessFor-insecure.sub.window.html", + { + "script_metadata": [ + [ + "script", + "/storage-access-api/helpers.js" + ], + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" ] - } - ] - ], - "patched-global.any.js": [ - "cc111eda452f0f771cd03f9f642ed7b596cc5ea0", - [ - "streams/transform-streams/patched-global.any.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] + ] + } + ] + ], + "requestStorageAccessFor.sub.https.window.js": [ + "dd2975e49c02193475a034987365df1d0f69ac81", + [ + "top-level-storage-access-api/requestStorageAccessFor.sub.https.window.html", + { + "script_metadata": [ + [ + "script", + "/storage-access-api/helpers.js" + ], + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" ] - } - ], - [ - "streams/transform-streams/patched-global.any.serviceworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] + ] + } + ] + ], + "top-level-storage-access-permission.sub.https.window.js": [ + "466b6f3bbed03642248ce40367b0794d3b2e4eb3", + [ + "top-level-storage-access-api/top-level-storage-access-permission.sub.https.window.html", + { + "script_metadata": [ + [ + "script", + "/storage-access-api/helpers.js" + ], + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" ] - } - ], - [ - "streams/transform-streams/patched-global.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] + ] + } + ] + ] + }, + "touch-events": { + "expose-legacy-touch-event-apis.html": [ + "2dab74dccd60f3b737a7a57362e28aac85a6cbd3", + [ + null, + {} + ] + ], + "historical.html": [ + "16ddf519037ca52272280d1768eed33f349d82d4", + [ + null, + {} + ] + ], + "idlharness.window.js": [ + "88573286a2739465fa11ecb04647b8653f43305b", + [ + "touch-events/idlharness.window.html", + { + "script_metadata": [ + [ + "script", + "/resources/WebIDLParser.js" + ], + [ + "script", + "/resources/idlharness.js" ] - } - ], + ] + } + ] + ], + "mouseevents-after-touchend.tentative.html": [ + "3032fadf193613ac1374c1ea5e3ab083374f6f3f", + [ + null, + { + "testdriver": true, + "timeout": "long" + } + ] + ], + "multi-touch-interactions.html": [ + "a10416bdfd458cc7008ffc401153be08c7e068d0", + [ + null, + { + "testdriver": true + } + ] + ], + "multi-touch-interfaces.html": [ + "8b5965c2c915bd88ee6811378e6e1e5c7e499fb7", + [ + null, + { + "testdriver": true + } + ] + ], + "single-touch-vertical-rl.html": [ + "623e57e8a118a228453a3ecd099d19dbd17fded3", + [ + null, + { + "testdriver": true + } + ] + ], + "single-touch.html": [ + "4db96c208d62fe4b09558cce8312d4aba1d39836", + [ + null, + { + "testdriver": true + } + ] + ], + "touch-globaleventhandler-interface.html": [ + "1513cdaa21e8619dbf83d4d15227075ad275477e", + [ + null, + {} + ] + ], + "touch-touchevent-constructor.html": [ + "e2d0950d5e27aa9905a9c2e1ca26242ed57fee53", + [ + null, + {} + ] + ] + }, + "trust-tokens": { + "end-to-end": { + "has-trust-token-with-no-top-frame.tentative.https.html": [ + "bc92422e36e12e1e3bca39a6aeaa56af5f30525c", [ - "streams/transform-streams/patched-global.any.sharedworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] + null, + {} + ] + ] + }, + "trust-token-parameter-validation-xhr.tentative.https.html": [ + "883c438fa93be67e44c2da172fca00a45a8d3ddc", + [ + null, + {} + ] + ], + "trust-token-parameter-validation.tentative.https.html": [ + "cf24b232e834383655e3d54b0a81fad3810454fc", + [ + null, + {} + ] + ] + }, + "trusted-types": { + "DOMParser-parseFromString-regression.html": [ + "941d1750b4a3d4fd0c53a48c62689f9665e64dc3", + [ + null, + {} + ] + ], + "DOMParser-parseFromString.html": [ + "2dfc37686bca15431c216a50d29f9f9eed2782e0", + [ + null, + {} + ] + ], + "DOMWindowTimers-setTimeout-setInterval.html": [ + "40310771e4d06af3bcc2734b3e088645be60551a", + [ + null, + {} + ] + ], + "Document-execCommand.html": [ + "7619133655f41f7c5cdcdcea115edaf1e338b977", + [ + null, + {} + ] + ], + "Document-write-exception-order.xhtml": [ + "db7c0631243477d5f34a0e2bfbe3c587ca1d123d", + [ + null, + {} + ] + ], + "Document-write.html": [ + "7902733f67c23bad9529505565308a6e5a8db887", + [ + null, + {} + ] + ], + "Element-insertAdjacentHTML.html": [ + "6a9329b3fbf2fdfb4f00ce2acde7c38d6843d92f", + [ + null, + {} + ] + ], + "Element-insertAdjacentText.html": [ + "f6221362c17d6231e0921d866b1cdc642fea9d39", + [ + null, + {} + ] + ], + "Element-outerHTML.html": [ + "c8daddfe9955196bf0b69410263cb7c01e473e5e", + [ + null, + {} + ] + ], + "Element-setAttribute-respects-Elements-node-documents-globals-CSP.html": [ + "aafe3c70313cb420a1efede51891f949d7aa33b8", + [ + null, + {} + ] + ], + "Element-setAttribute.html": [ + "9f6eec7da2f9ba35cb009d5deb845ec4aa4393f4", + [ + null, + {} + ] + ], + "Element-setAttributeNS.html": [ + "67e8236febd77ed3b544126d8c5f9dd37cc513ab", + [ + null, + {} + ] + ], + "Element-toggleAttribute.html": [ + "c3b141f8cbd1557221fabc192ebc0b75505b8c87", + [ + null, + {} + ] + ], + "GlobalEventHandlers-onclick.html": [ + "0fdde778cc8863600ecdcc57a6d6281b52a777d4", + [ + null, + {} + ] + ], + "HTMLElement-generic.html": [ + "832411b5f56ca01ebf84c27726c205220823aa18", + [ + null, + {} + ] + ], + "HTMLScriptElement-in-xhtml-document.tentative.https.xhtml": [ + "6cf49f922ae4d8414d392786da731396f2db80d9", + [ + null, + {} + ] + ], + "HTMLScriptElement-internal-slot.html": [ + "96629c1012290fdc14ee55342929378e1e3bc2c6", + [ + null, + {} + ] + ], + "Node-multiple-arguments-tt-enforced.html": [ + "3a82c264ae4380caf410a79af0bc8ce14b1a6de2", + [ + null, + {} + ] + ], + "Node-multiple-arguments.html": [ + "64b04656d35ba922c528581975682fbd61b5e5a1", + [ + null, + {} + ] + ], + "Range-createContextualFragment.html": [ + "3a880a53778acb165fd5d957eeaca22685baf2b5", + [ + null, + {} + ] + ], + "SVGScriptElement-internal-slot.html": [ + "0f7e4eaeaacf12e6cf3236823f391b61c9f4a961", + [ + null, + {} + ] + ], + "TrustedType-AttributeNodes.html": [ + "f4269a5d40d02d372c57dd09486f3ff8b3b499a9", + [ + null, + {} + ] + ], + "TrustedTypePolicy-CSP-no-name.html": [ + "b1c7f51ddb3a14603cf6f11ea437484f09366c74", + [ + null, + {} + ] + ], + "TrustedTypePolicy-CSP-wildcard.html": [ + "cdc683dad3b6d3028166f23ade82a8b8cd30d001", + [ + null, + {} + ] + ], + "TrustedTypePolicy-createXXX.html": [ + "112d1ae636aaa8f0ffafd68bd73aff11208874fb", + [ + null, + {} + ] + ], + "TrustedTypePolicyFactory-blocking.tentative.html": [ + "6ae71b69880a0313a549b586a04fa38b4be466e2", + [ + null, + {} + ] + ], + "TrustedTypePolicyFactory-constants.html": [ + "551084ca4b6e001ce49213a3d12491a4aedaf8f4", + [ + null, + {} + ] + ], + "TrustedTypePolicyFactory-createPolicy-createXYZTests.html": [ + "72308a2ae8407abcd96e929251610b1f3c716b02", + [ + null, + {} + ] + ], + "TrustedTypePolicyFactory-createPolicy-cspTests-noNamesGiven.html": [ + "15728b9888f3cb0c7d9f509c86949f8942a66a22", + [ + null, + {} + ] + ], + "TrustedTypePolicyFactory-createPolicy-cspTests-none-none-name.html": [ + "769861e027a2705d81709b40498a02d71bd374e3", + [ + null, + {} + ] + ], + "TrustedTypePolicyFactory-createPolicy-cspTests-none-none.html": [ + "81f8185ff8614ddb8877a4346416a633af54ee3e", + [ + null, + {} + ] + ], + "TrustedTypePolicyFactory-createPolicy-cspTests-none-skip.html": [ + "d0920497d944e961950c6aaa1bbb0dc2f2debe8c", + [ + null, + {} + ] + ], + "TrustedTypePolicyFactory-createPolicy-cspTests-none.html": [ + "48c75937ead158af880674f9781409e5a07c0aa2", + [ + null, + {} + ] + ], + "TrustedTypePolicyFactory-createPolicy-cspTests-wildcard.html": [ + "9200708545c0420f8882a85fcfbfa8b4d464f6bf", + [ + null, + {} + ] + ], + "TrustedTypePolicyFactory-createPolicy-cspTests.html": [ + "a564f9553f4eea04c152bb58acdd50dc31a95641", + [ + null, + {} + ] + ], + "TrustedTypePolicyFactory-createPolicy-nameTests.html": [ + "35870926dc6c24952a76f4378fa3cd641389d83b", + [ + null, + {} + ] + ], + "TrustedTypePolicyFactory-createPolicy-unenforced.html": [ + "293444820216e17adb8c4f02a1615d7dfbfe2e6e", + [ + null, + {} + ] + ], + "TrustedTypePolicyFactory-defaultPolicy.html": [ + "7ac09d8bb96c0ef163590db1552012651648b68b", + [ + null, + {} + ] + ], + "TrustedTypePolicyFactory-getAttributeType-namespace.html": [ + "0f0d820e289fd12d2c3c7200a1ebb944f4b4b58a", + [ + null, + {} + ] + ], + "TrustedTypePolicyFactory-getAttributeType-svg.html": [ + "e6f6cbdb1de5f07ba01b3ee3b92beee83ce20a0e", + [ + null, + {} + ] + ], + "TrustedTypePolicyFactory-getPropertyType.tentative.html": [ + "e7218e9333a213df8643b628fc8dae294ef47ee0", + [ + null, + {} + ] + ], + "TrustedTypePolicyFactory-isXXX.html": [ + "a7df477d00e26b65e72624edb9dd0fe4bb9ee90a", + [ + null, + {} + ] + ], + "TrustedTypePolicyFactory-metadata.tentative.html": [ + "e7772bf0d150ad687c9e51339cae0a3c4a7a1fea", + [ + null, + { + "timeout": "long" + } + ] + ], + "Window-TrustedTypes.html": [ + "718c763afafd12bfa498eb8827fb1b12b509c51d", + [ + null, + {} + ] + ], + "WorkerGlobalScope-eval.html": [ + "9248784924d003c41620745dda2fe92fa42662e0", + [ + null, + {} + ] + ], + "WorkerGlobalScope-importScripts.html": [ + "9853b1bc44845155ef889b7b5ee93c877844e019", + [ + null, + {} + ] + ], + "block-Document-execCommand.html": [ + "7a26bff3ea967812ed4ec97161c173c861ad498f", + [ + null, + {} + ] + ], + "block-string-assignment-to-DOMParser-parseFromString.html": [ + "dd912e6b8dea596141630d7b9d18ab6bbe8c9925", + [ + null, + {} + ] + ], + "block-string-assignment-to-DOMWindowTimers-setTimeout-setInterval.html": [ + "2f8a99a94294f4d1808b92aca9dfbcf3b52b6091", + [ + null, + {} + ] + ], + "block-string-assignment-to-Document-parseHTMLUnsafe.html": [ + "405da5f1643eccc0a22b31ff91a044ac6237843d", + [ + null, + {} + ] + ], + "block-string-assignment-to-Document-write.html": [ + "8fcdc8b2c6fb931bcd2aeb401da0254658900aba", + [ + null, + {} + ] + ], + "block-string-assignment-to-Element-insertAdjacentHTML.html": [ + "e4fec3a8a70dbfbdb92668a8b84395163557d0b1", + [ + null, + {} + ] + ], + "block-string-assignment-to-Element-outerHTML.html": [ + "acf5a42622ca9d38b61e3c6b0d9cbd852dd73fc5", + [ + null, + {} + ] + ], + "block-string-assignment-to-Element-setAttribute.html": [ + "4cc877efb2ffdaec32fc76a47c00ac9f55f1bfcb", + [ + null, + {} + ] + ], + "block-string-assignment-to-Element-setAttributeNS.html": [ + "78c8c0db9893802284093998b35df833b627e76b", + [ + null, + {} + ] + ], + "block-string-assignment-to-Element-setHTMLUnsafe.html": [ + "34975f9d6883eccb8763dc781b03bc9e70614a42", + [ + null, + {} + ] + ], + "block-string-assignment-to-HTMLElement-generic.html": [ + "a9764c02584c16eb8119b8bddded2dc8a47a4be9", + [ + null, + {} + ] + ], + "block-string-assignment-to-Range-createContextualFragment.html": [ + "79111204934e689d2ce56fbb010cc3b261537c6b", + [ + null, + {} + ] + ], + "block-string-assignment-to-ShadowRoot-setHTMLUnsafe.html": [ + "a76543b3f68c7e7ba9e516f7b13540a9017b8a65", + [ + null, + {} + ] + ], + "block-string-assignment-to-attribute-via-attribute-node.html": [ + "91ac9b6485ce9a70c9c7f131af898179507e571e", + [ + null, + {} + ] + ], + "block-text-node-insertion-into-script-element.html": [ + "adadfe5a7ad5034672307e13e5edaf13a9fd4e1e", + [ + null, + {} + ] + ], + "block-text-node-insertion-into-svg-script-element.html": [ + "5f0fb78f9bd90ef6035636cd18310d428d5056d9", + [ + null, + {} + ] + ], + "csp-block-eval.html": [ + "e3911bf9e6a9340a35906d9ec70f71f6b8152951", + [ + null, + {} + ] + ], + "default-policy-callback-arguments.html": [ + "9b07be00261655e264cbe70f3b8dda67deec4152", + [ + null, + {} + ] + ], + "default-policy-report-only.html": [ + "9d5f83e8939d754962545ac38fadf51256faf39c", + [ + null, + {} + ] + ], + "default-policy.html": [ + "47fdf1b1d4489c73ba5e304fe311027acf626881", + [ + null, + {} + ] + ], + "empty-default-policy-report-only.html": [ + "1ba9c5ec18e5da33725aaa9499977930563c4ba9", + [ + null, + {} + ] + ], + "empty-default-policy.html": [ + "d31b48ecd5a86670b7c6ea3c4d993cd3f11946df", + [ + null, + {} + ] + ], + "eval-csp-no-tt.html": [ + "5c44d854c6a3ea7cd6f0896872d1d0a6bd53610c", + [ + null, + {} + ] + ], + "eval-csp-tt-default-policy-mutate.html": [ + "f7909a32a6ecdd92e902a1034b11c0f8c94b98b4", + [ + null, + {} + ] + ], + "eval-csp-tt-default-policy.html": [ + "4ca9c562f506b3a226213d69a85781929439b56c", + [ + null, + {} + ] + ], + "eval-csp-tt-no-default-policy.html": [ + "c4e5d0911ac5714f650d107b11e9415181a0aaae", + [ + null, + {} + ] + ], + "eval-function-constructor.html": [ + "a20bc4a78db14daa627159e1c96a48c744382903", + [ + null, + {} + ] + ], + "eval-no-csp-no-tt-default-policy.html": [ + "18b9441c7a1a97ab0620db78580619a3e2f53ddb", + [ + null, + {} + ] + ], + "eval-no-csp-no-tt.html": [ + "3f9799864d4aa5a0ffaf713ba6d9d9a3d99e94ce", + [ + null, + {} + ] + ], + "eval-with-permissive-csp.html": [ + "b3dc352017675a2634aa96ac1fdea01b55ce9243", + [ + null, + {} + ] + ], + "idlharness.window.js": [ + "07847fdb39ea21b3feeebc10501d3aa6bdf97881", + [ + "trusted-types/idlharness.window.html", + { + "script_metadata": [ + [ + "script", + "/resources/WebIDLParser.js" + ], + [ + "script", + "/resources/idlharness.js" ] - } - ], - [ - "streams/transform-streams/patched-global.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] + ] + } + ] + ], + "modify-attributes-in-callback.html": [ + "4f94e0887220051bcd8aadccdab20bb596b2fc62", + [ + null, + {} + ] + ], + "no-require-trusted-types-for-report-only.html": [ + "651bf0a7199beab43e4f00d3c72462ffda1905f2", + [ + null, + {} + ] + ], + "no-require-trusted-types-for.html": [ + "651bf0a7199beab43e4f00d3c72462ffda1905f2", + [ + null, + {} + ] + ], + "require-trusted-types-for-report-only.html": [ + "25b4440ef4117010bb7da7c8f3ad87f01d3bf55f", + [ + null, + {} + ] + ], + "require-trusted-types-for.html": [ + "b0dcd9cc930024f51fbfb2c522fe04a9ddcdb9e5", + [ + null, + {} + ] + ], + "trusted-types-createHTMLDocument.html": [ + "cf209cca80060d709bf975dc69ac158eb3e92835", + [ + null, + {} + ] + ], + "trusted-types-duplicate-names-list-report-only.html": [ + "46ca2edb6fb57b354b3a80f327dbfbe6760f21c6", + [ + null, + {} + ] + ], + "trusted-types-duplicate-names-list.html": [ + "404619b5f7a17c43a1609e4ecc9f4e48ace945f5", + [ + null, + {} + ] + ], + "trusted-types-duplicate-names-without-enforcement.html": [ + "d625ab4e6179eb9ce021938dc9e5d92af56cd1c8", + [ + null, + {} + ] + ], + "trusted-types-duplicate-names.html": [ + "decce5356467f9f4e6a8886c6b6eff7194bf2385", + [ + null, + {} + ] + ], + "trusted-types-eval-reporting-no-unsafe-eval.html": [ + "afdd0018cd1479eecb7b0fa31dc2221e678c0704", + [ + null, + {} + ] + ], + "trusted-types-eval-reporting-report-only.html": [ + "39dba61730ea72e02f3e42406df52f3b5992c5d0", + [ + null, + {} + ] + ], + "trusted-types-eval-reporting.html": [ + "fbe9425dbef6b2fccbd0c8e7beea35034676da42", + [ + null, + {} + ] + ], + "trusted-types-event-handlers.html": [ + "8dd70757e34d8984bd829c0428f3e41f3c6ef405", + [ + null, + {} + ] + ], + "trusted-types-from-literal.tentative.html": [ + "a7d5659e16a1471ac5cb900dce7b3a102a14af89", + [ + null, + {} + ] + ], + "trusted-types-navigation.html": [ + "2113711902ae787cb3ad5d0e44eaed0fc2e99b87", + [ + null, + {} + ] + ], + "trusted-types-report-only.html": [ + "fcb77841163d9a09774497d2b8588f85c2a42b06", + [ + null, + {} + ] + ], + "trusted-types-reporting-check-report.html": [ + "ae5ac25052d34be4d64bada3fb23283c783978ee", + [ + null, + {} + ] + ], + "trusted-types-reporting.html": [ + "5a7a64b52bd267360dc8a3d1a7b8a53baa2235b8", + [ + null, + { + "timeout": "long" + } + ] + ], + "trusted-types-source-file-path.html": [ + "6e87c25a7f0998a2117de2f73f4adc3df9b024b5", + [ + null, + {} + ] + ], + "trusted-types-svg-script-set-href.html": [ + "9b8a528fca44e8f5872d7a70597b7be8544609df", + [ + null, + {} + ] + ], + "trusted-types-svg-script.html": [ + "4d604f353c944a64e2606819b9c6607d1ad6502e", + [ + null, + {} + ] + ], + "trusted-types-tojson.html": [ + "72c538309941389b1fad9a24d7db75f55138d855", + [ + null, + {} + ] + ], + "tt-block-eval.html": [ + "13178bd44bf17f06c6d6d46433dcad273367a364", + [ + null, + {} + ] + ], + "worker-constructor.https.html": [ + "319041cf331806f7a7f53a5955216f5f11b22266", + [ + null, + {} + ] + ] + }, + "ua-client-hints": { + "idlharness.https.any.js": [ + "13a9225b47f72043915a8cbca5a84b1a42375c7e", + [ + "ua-client-hints/idlharness.https.any.html", + { + "script_metadata": [ + [ + "script", + "/resources/WebIDLParser.js" + ], + [ + "script", + "/resources/idlharness.js" ] - } - ] + ] + } ], - "properties.any.js": [ - "dbfd1aa372b907e1647c9101212c918eec7489b8", - [ - "streams/transform-streams/properties.any.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] + [ + "ua-client-hints/idlharness.https.any.worker.html", + { + "script_metadata": [ + [ + "script", + "/resources/WebIDLParser.js" + ], + [ + "script", + "/resources/idlharness.js" ] - } - ], - [ - "streams/transform-streams/properties.any.serviceworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] + ] + } + ] + ], + "useragentdata.https.any.js": [ + "fa588355181a18f9413f1d13129d1f991837e316", + [ + "ua-client-hints/useragentdata.https.any.html", + { + "script_metadata": [ + [ + "title", + "tests for navigator.userAgentData" ] - } - ], + ] + } + ], + [ + "ua-client-hints/useragentdata.https.any.worker.html", + { + "script_metadata": [ + [ + "title", + "tests for navigator.userAgentData" + ] + ] + } + ] + ] + }, + "uievents": { + "click": { + "auxclick_event.html": [ + "8bb2e137f5bce9333e4687b7603432195107745b", [ - "streams/transform-streams/properties.any.shadowrealm.html", + null, { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] - ] + "testdriver": true } - ], + ] + ], + "click_event_target_child_parent.html": [ + "a09e5532affd93cafca51391591b7ff882636310", [ - "streams/transform-streams/properties.any.sharedworker.html", + null, { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] - ] + "testdriver": true } - ], + ] + ], + "click_event_target_siblings.html": [ + "24d64dc9ac344f9c856241221d7323b162434932", [ - "streams/transform-streams/properties.any.worker.html", + null, { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] - ] + "testdriver": true } ] ], - "reentrant-strategies.any.js": [ - "a6d459655856a7da4f4185b33c5e516c73f51868", + "click_events_on_input.html": [ + "2f380eb4514bc79df891b409c9007271c7f66923", [ - "streams/transform-streams/reentrant-strategies.any.html", + null, { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/recording-streams.js" - ], - [ - "script", - "../resources/rs-utils.js" - ], - [ - "script", - "../resources/test-utils.js" - ] - ] + "testdriver": true } - ], + ] + ], + "contextmenu_event.html": [ + "7a33d0aa38c47af832d57304f4b804e19952953c", [ - "streams/transform-streams/reentrant-strategies.any.serviceworker.html", + null, { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/recording-streams.js" - ], - [ - "script", - "../resources/rs-utils.js" - ], - [ - "script", - "../resources/test-utils.js" - ] - ] + "testdriver": true } - ], + ] + ], + "dblclick_event_mouse.html": [ + "50324f6dfdf7785db66d9af031f779d0189e0e57", [ - "streams/transform-streams/reentrant-strategies.any.shadowrealm.html", + null, { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/recording-streams.js" - ], - [ - "script", - "../resources/rs-utils.js" - ], - [ - "script", - "../resources/test-utils.js" - ] - ] + "testdriver": true } - ], + ] + ] + }, + "constructors": { + "inputevent-constructor.html": [ + "3876abcd430e3f2dbdc58e57d8f179721a67cc77", [ - "streams/transform-streams/reentrant-strategies.any.sharedworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/recording-streams.js" - ], - [ - "script", - "../resources/rs-utils.js" - ], - [ - "script", - "../resources/test-utils.js" - ] + null, + {} + ] + ] + }, + "historical.html": [ + "5aa76f41ac56a7466fa5f7bfaaa1982a8c4215bc", + [ + null, + {} + ] + ], + "idlharness.window.js": [ + "ca8d23e4f6fdeee7ff20a1d1a1482ca868bd0650", + [ + "uievents/idlharness.window.html", + { + "script_metadata": [ + [ + "script", + "/resources/WebIDLParser.js" + ], + [ + "script", + "/resources/idlharness.js" + ], + [ + "timeout", + "long" ] - } - ], + ], + "timeout": "long" + } + ] + ], + "interface": { + "click-event.htm": [ + "b45dc29063e62eafffa8690a86dfeca3eb768c48", [ - "streams/transform-streams/reentrant-strategies.any.worker.html", + null, + {} + ] + ], + "keyboard-accesskey-click-event.html": [ + "93363c2e55784c423cec5926caa5c4e912bc7119", + [ + null, { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/recording-streams.js" - ], - [ - "script", - "../resources/rs-utils.js" - ], - [ - "script", - "../resources/test-utils.js" - ] - ] + "testdriver": true } ] ], - "strategies.any.js": [ - "57e113e668ce2478a654a4e5ae5c9872e002c7fa", + "keyboard-click-event.html": [ + "2b5e06d9c1167ff762e38c36315d9e993ed9d243", [ - "streams/transform-streams/strategies.any.html", + null, { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/recording-streams.js" - ], - [ - "script", - "../resources/test-utils.js" - ] - ] + "testdriver": true } - ], + ] + ] + }, + "keyboard": { + "modifier-keys-combinations.html": [ + "1b364ff72ce539b31ef86f4a1bcf75aed6868845", [ - "streams/transform-streams/strategies.any.serviceworker.html", + null, { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/recording-streams.js" - ], - [ - "script", - "../resources/test-utils.js" - ] - ] + "testdriver": true } - ], + ] + ], + "modifier-keys.html": [ + "635e5d3b7797e1fcde058f81dda1b3b2132ee375", [ - "streams/transform-streams/strategies.any.shadowrealm.html", + null, { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/recording-streams.js" - ], - [ - "script", - "../resources/test-utils.js" - ] - ] + "testdriver": true } - ], + ] + ] + }, + "legacy": { + "Event-subclasses-init.html": [ + "a79a9f18adba6e329b6be8c45724417b4e337fde", [ - "streams/transform-streams/strategies.any.sharedworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/recording-streams.js" - ], + null, + {} + ] + ] + }, + "legacy-domevents-tests": { + "approved": { + "ProcessingInstruction.DOMCharacterDataModified.html": [ + "2da0a389e2e3bc51861fef752b11a629203897d0", + [ + null, + {} + ] + ], + "dispatchEvent.click.checkbox.html": [ + "8cb548f84c60eb6b528c1049884649b26c4f18ba", + [ + null, + {} + ] + ], + "domnodeinserted.html": [ + "e5064d8d46cd9aad4768aa81dacb18b989e2c993", + [ + null, + {} + ] + ], + "stopImmediatePropagation.effect.html": [ + "a414d60298acece6dce5d970e6f0448a99fd65da", + [ + null, + {} + ] + ], + "stopPropagation.deferred.effect.html": [ + "93489c63b45254efbb15ddbc52b1984897b1525c", + [ + null, + {} + ] + ] + }, + "submissions": { + "Microsoft": { + "converted": { + "EventListener.dispatch.new.event.html": [ + "e0ab7e0d3e417cd4595d7590d9d12d6d25bbc366", [ - "script", - "../resources/test-utils.js" + null, + {} ] ] } - ], + } + } + }, + "mouse": { + "attributes.html": [ + "bbc388445c052293091739db39719d5e3a27e1a5", [ - "streams/transform-streams/strategies.any.worker.html", + null, { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/recording-streams.js" - ], - [ - "script", - "../resources/test-utils.js" - ] - ] + "testdriver": true } ] ], - "terminate.any.js": [ - "a959e70fe693397a4a1a0f24d45fabead2cdc6f8", + "cancel-mousedown-in-subframe.html": [ + "07350377354cda3c3fbafada0ff67700d01d06a0", [ - "streams/transform-streams/terminate.any.html", + null, { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/recording-streams.js" - ], - [ - "script", - "../resources/test-utils.js" - ] - ] + "testdriver": true } - ], + ] + ], + "layout_change_should_fire_mouseover.html": [ + "49257ae60d19dc69d523f735fc0e5ccbde1663bf", [ - "streams/transform-streams/terminate.any.serviceworker.html", + null, { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/recording-streams.js" - ], - [ - "script", - "../resources/test-utils.js" - ] - ] + "testdriver": true } - ], + ] + ], + "mouse_boundary_events_after_reappending_last_over_target.tentative.html": [ + "62eef0f03e13cc9b549d829f755564cfd97b267d", [ - "streams/transform-streams/terminate.any.shadowrealm.html", + null, { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/recording-streams.js" - ], - [ - "script", - "../resources/test-utils.js" - ] - ] + "testdriver": true } - ], + ] + ], + "mouse_boundary_events_after_removing_last_over_element.html": [ + "817c5d9ecc8bda182af96ad2fcf883ce737d86c7", [ - "streams/transform-streams/terminate.any.sharedworker.html", + null, { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/recording-streams.js" - ], - [ - "script", - "../resources/test-utils.js" - ] - ] + "testdriver": true } - ], + ] + ], + "mouse_buttons_back_forward.html": [ + "2323bc10269a7238fbe655aa1341d9dde210e3a6", [ - "streams/transform-streams/terminate.any.worker.html", + null, { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/recording-streams.js" - ], - [ - "script", - "../resources/test-utils.js" - ] - ] + "testdriver": true } ] - ] - }, - "writable-streams": { - "aborting.any.js": [ - "9171dbe158f00ccbf6f6e4083cce3ec9f959e755", + ], + "mouseenter-mouseleave-on-drag.html": [ + "c36a1501c0bb44a8c88f50e4e7a1337aee7b6e8c", [ - "streams/writable-streams/aborting.any.html", + null, { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/recording-streams.js" - ] - ] + "testdriver": true } - ], + ] + ], + "mouseevent_move_button.html": [ + "edde11d022e81969957cf99578c394db8697f461", [ - "streams/writable-streams/aborting.any.serviceworker.html", + null, { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/recording-streams.js" - ] - ] + "testdriver": true, + "timeout": "long" } - ], + ] + ], + "mousemove_prevent_default_action.html": [ + "4caf98087fbf4372dc5ad28afdb48cd0bae6cea2", [ - "streams/writable-streams/aborting.any.shadowrealm.html", + null, { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/recording-streams.js" - ] - ] + "testdriver": true } - ], + ] + ], + "mouseover-at-removing-mousedown-target.html": [ + "959dcef6812ac5ed01857bf18d6db09054898b44", [ - "streams/writable-streams/aborting.any.sharedworker.html", + "uievents/mouse/mouseover-at-removing-mousedown-target.html?duration=16", { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/recording-streams.js" - ] - ] + "testdriver": true, + "timeout": "long" } ], [ - "streams/writable-streams/aborting.any.worker.html", + "uievents/mouse/mouseover-at-removing-mousedown-target.html?duration=42", { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/recording-streams.js" - ] - ] + "testdriver": true, + "timeout": "long" } ] ], - "bad-strategies.any.js": [ - "a1ef0791168f99186925acbe869ac8449e0f4e79", + "synthetic-mouse-enter-leave-over-out-button-state-after-target-removed.tentative.html": [ + "fad82f850d4677698fbb07d98739bc4c777951ec", [ - "streams/writable-streams/bad-strategies.any.html", + "uievents/mouse/synthetic-mouse-enter-leave-over-out-button-state-after-target-removed.tentative.html?buttonType=LEFT&button=0&buttons=1", { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] - ] + "testdriver": true } ], [ - "streams/writable-streams/bad-strategies.any.serviceworker.html", + "uievents/mouse/synthetic-mouse-enter-leave-over-out-button-state-after-target-removed.tentative.html?buttonType=MIDDLE&button=1&buttons=4", { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] - ] + "testdriver": true } + ] + ] + }, + "order-of-events": { + "focus-events": { + "focus-automated-blink-webkit.html": [ + "41de4541366540ca189c3237cd2d5de0efb0f9ed", + [ + null, + {} + ] ], - [ - "streams/writable-streams/bad-strategies.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] - ] - } + "focus-contained.html": [ + "8df612c1080a82ed4ffaae0c72287735af1e8cf0", + [ + null, + { + "testdriver": true + } + ] ], - [ - "streams/writable-streams/bad-strategies.any.sharedworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] - ] - } + "focus-management-expectations.html": [ + "1845c15d71679276b6fbf4a19188d111da5ea70b", + [ + null, + { + "testdriver": true + } + ] + ], + "focus.html": [ + "7942674a70b7941cd1c23cee1251c43524362d57", + [ + null, + { + "testdriver": true + } + ] + ] + }, + "mouse-events": { + "click-cancel.html": [ + "082c2a0cc3e60de4cb5da4b03796458451de2899", + [ + null, + { + "testdriver": true + } + ] + ], + "click-on-body.html": [ + "45453c75ca89356f750af873ba4dce2f42d03425", + [ + null, + { + "testdriver": true + } + ] + ], + "click-on-div.html": [ + "bf06d8251cf6c956b2a1c351d2f6a45cd449bea3", + [ + null, + { + "testdriver": true + } + ] + ], + "click-on-html.html": [ + "e93acc674970f62cf835a43d57731044dd0aa0c6", + [ + null, + { + "testdriver": true + } + ] + ], + "click-order.html": [ + "1285a31efc69022cebafc67cd4a9b291149f3f0a", + [ + null, + { + "testdriver": true + } + ] + ], + "mouseevents-mousemove.htm": [ + "98a35bbcf6b74a748a3f7d32f5eadcff7c500978", + [ + null, + { + "testdriver": true + } + ] + ], + "mousemove-across.html": [ + "52d5a93cf9afe7e4963b8c3f6902e9f3456e17d9", + [ + null, + { + "testdriver": true + } + ] + ], + "mousemove-between.html": [ + "f9c422cc9364f793d8cdcb88d1a0379812953aba", + [ + null, + { + "testdriver": true + } + ] + ], + "mouseover-out.html": [ + "f10518c7f15fb60e43eee66f15dd39c1fe843f17", + [ + null, + { + "testdriver": true + } + ] ], + "wheel-basic.html": [ + "1a43022d2928bd704b25a7b48443264268d7088c", + [ + null, + { + "testdriver": true + } + ] + ], + "wheel-scrolling.html": [ + "44e76bff6cb2a779b69c3677e738d947351e06a7", + [ + null, + { + "testdriver": true + } + ] + ] + } + }, + "textInput": { + "api.html": [ + "a88184e500178c36678aa428d7073505e959e561", [ - "streams/writable-streams/bad-strategies.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] - ] - } + null, + {} ] ], - "bad-underlying-sinks.any.js": [ - "3c434ffe60ccb98f6c8eb96a06d0c61af46b283d", + "backspace.html": [ + "c9b2f8bee4e1e4f27aa366322744fdd603b2ba1e", [ - "streams/writable-streams/bad-underlying-sinks.any.html", + null, { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/recording-streams.js" - ] - ] + "testdriver": true } - ], + ] + ], + "basic.html": [ + "6335167faa84f5c41d88cc7fa98886f29b10cd6a", [ - "streams/writable-streams/bad-underlying-sinks.any.serviceworker.html", + null, { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/recording-streams.js" - ] - ] + "testdriver": true } - ], + ] + ], + "delete-selection.html": [ + "f77e8c6e98a1ec1e5eef59a4c1274c268a024169", [ - "streams/writable-streams/bad-underlying-sinks.any.shadowrealm.html", + null, { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/recording-streams.js" - ] - ] + "testdriver": true } - ], + ] + ], + "delete.html": [ + "2d696fba71a8f7d55d3ee56cf5eb22b7e7373673", [ - "streams/writable-streams/bad-underlying-sinks.any.sharedworker.html", + null, { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/recording-streams.js" - ] - ] + "testdriver": true } - ], + ] + ], + "enter-input.html": [ + "032503694dc8f8df83af3f4280dc6ce9d998827a", [ - "streams/writable-streams/bad-underlying-sinks.any.worker.html", + null, { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/recording-streams.js" - ] - ] + "testdriver": true } ] ], - "byte-length-queuing-strategy.any.js": [ - "eed86ee7004ea15e288def1f3d511ba6fe39d820", + "enter-textarea-contenteditable.html": [ + "60891df982e9f6f212829a5e1ddd5f5e1b54dc51", [ - "streams/writable-streams/byte-length-queuing-strategy.any.html", + null, { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] - ] + "testdriver": true } - ], - [ - "streams/writable-streams/byte-length-queuing-strategy.any.serviceworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] + ] + ] + } + }, + "upgrade-insecure-requests": { + "gen": { + "iframe-blank-inherit.meta": { + "unset": { + "fetch.https.html": [ + "b601fbbf3dbfb46800f1f57f8bba204011967611", + [ + null, + { + "timeout": "long" + } + ] + ], + "iframe-tag.https.html": [ + "fbc73e5872a7a5b9d31502b5ba68db1ce63604bb", + [ + null, + { + "timeout": "long" + } + ] + ], + "img-tag.https.html": [ + "b7b4ba03ee3f4b463c52eb1c7bdd8b343cb4d5a2", + [ + null, + { + "timeout": "long" + } + ] + ], + "sharedworker-classic.https.html": [ + "3d9fc6eeb928ed5f6eca4eb0e0c2e3c1a41c2a68", + [ + null, + { + "timeout": "long" + } + ] + ], + "sharedworker-import-data.https.html": [ + "0f345eb901e37ad299a2cfc2497599740e790901", + [ + null, + { + "timeout": "long" + } + ] + ], + "sharedworker-import.https.html": [ + "70ccb7af79bbd31d600c444a6f9985cfb032f448", + [ + null, + { + "timeout": "long" + } + ] + ], + "sharedworker-module.https.html": [ + "c58a8b741c89ab1d98c3993b49b4b122650115df", + [ + null, + { + "timeout": "long" + } + ] + ], + "websocket.https.html": [ + "a053ac832cf54359acd14232295edc27aebc5c1e", + [ + null, + { + "timeout": "long" + } + ] + ], + "worker-classic.https.html": [ + "abc67d750240e48d39ada45e5c632383434baf2d", + [ + null, + { + "timeout": "long" + } + ] + ], + "worker-import-data.https.html": [ + "f61176cda2be4084fa54b7d773edf5799cf256f7", + [ + null, + { + "timeout": "long" + } + ] + ], + "worker-import.https.html": [ + "d9f3a8cd2309317fa2dd6cfd771efb0bd6a58223", + [ + null, + { + "timeout": "long" + } + ] + ], + "worker-module.https.html": [ + "e82a6917d975ed7b91ceb5e332fddd90311a6a01", + [ + null, + { + "timeout": "long" + } + ] + ], + "worklet-animation-import-data.https.html": [ + "7b54ed289efb36f4b762a149368dcdfdb4097417", + [ + null, + { + "timeout": "long" + } + ] + ], + "worklet-animation.https.html": [ + "1d7e1fe5982fdd5c4b25306955de76a4b532c578", + [ + null, + { + "timeout": "long" + } + ] + ], + "worklet-audio-import-data.https.html": [ + "81a4e8a2f832e7745b40348da507d73c11219a1a", + [ + null, + { + "timeout": "long" + } + ] + ], + "worklet-audio.https.html": [ + "0aed1e59ac6efd5ccc720dadf40de4fa0203812b", + [ + null, + { + "timeout": "long" + } + ] + ], + "worklet-layout-import-data.https.html": [ + "c143066c787c166415b97bb08ee52afa46aadead", + [ + null, + { + "timeout": "long" + } + ] + ], + "worklet-layout.https.html": [ + "3095104f855cc75ed10eb4bd09b5bbc66412fab5", + [ + null, + { + "timeout": "long" + } + ] + ], + "worklet-paint-import-data.https.html": [ + "c7d7f35d1306e209593112ec47ad1bc4e3959e39", + [ + null, + { + "timeout": "long" + } + ] + ], + "worklet-paint.https.html": [ + "43892ec28450221d9883b297b47eff09ebb6fdf7", + [ + null, + { + "timeout": "long" + } + ] + ], + "xhr.https.html": [ + "dd17493029e8c0dce49f4e488b5a3e8d3db3786f", + [ + null, + { + "timeout": "long" + } + ] + ] + }, + "upgrade": { + "fetch.https.html": [ + "24d3ed9946b95212767d3a4d304f12068c78fcf8", + [ + null, + { + "timeout": "long" + } + ] + ], + "iframe-tag.https.html": [ + "57fec0607ed54cee338fee7e31ce2c8b06655658", + [ + null, + { + "timeout": "long" + } + ] + ], + "img-tag.https.html": [ + "0639eb49fc56f900bcf6b35625e554c9be9994e2", + [ + null, + { + "timeout": "long" + } + ] + ], + "sharedworker-classic.https.html": [ + "5e59b508df0dd4b171143832a57b26740398fd4b", + [ + null, + { + "timeout": "long" + } + ] + ], + "sharedworker-import-data.https.html": [ + "6132933adfb0534b7f8db48ee1ad6cb15f36bf90", + [ + null, + { + "timeout": "long" + } + ] + ], + "sharedworker-import.https.html": [ + "23ccc739e9794aa661731b3baf27b3d8810fc229", + [ + null, + { + "timeout": "long" + } + ] + ], + "sharedworker-module.https.html": [ + "2d48b7037bdc48eb347821c7af336b24c98a54ca", + [ + null, + { + "timeout": "long" + } + ] + ], + "websocket.https.html": [ + "a2e6ad6cafc4fc8253b9520965c49bb5cf523be9", + [ + null, + { + "timeout": "long" + } + ] + ], + "worker-classic.https.html": [ + "b707f78738d52baafdeca247b6fd610cf2f34fe1", + [ + null, + { + "timeout": "long" + } + ] + ], + "worker-import-data.https.html": [ + "d66684ecee5c3d7d983194aae3d5729981b68179", + [ + null, + { + "timeout": "long" + } + ] + ], + "worker-import.https.html": [ + "17a9e122503b08f33476730711cdf523567b213a", + [ + null, + { + "timeout": "long" + } + ] + ], + "worker-module.https.html": [ + "2207fcded26f98d83da30addf3eaac291f022617", + [ + null, + { + "timeout": "long" + } + ] + ], + "worklet-animation-import-data.https.html": [ + "78b39da45b4cdf957d3da97bb7c0946b31204a66", + [ + null, + { + "timeout": "long" + } + ] + ], + "worklet-animation.https.html": [ + "b560ec687e7f3b0f80bd5b474e14aa13c624d8b4", + [ + null, + { + "timeout": "long" + } + ] + ], + "worklet-audio-import-data.https.html": [ + "4098618e8278d722c29f43fc9f7f56770a8a4fb9", + [ + null, + { + "timeout": "long" + } + ] + ], + "worklet-audio.https.html": [ + "9dd58b98ab70de7129a0b7f28aaa73b0ea6f9d6d", + [ + null, + { + "timeout": "long" + } + ] + ], + "worklet-layout-import-data.https.html": [ + "5690227c4380287cb6641fcfe85981bd4f0102db", + [ + null, + { + "timeout": "long" + } + ] + ], + "worklet-layout.https.html": [ + "07aecb674317af92edf0fe461106d26fc60c115b", + [ + null, + { + "timeout": "long" + } + ] + ], + "worklet-paint-import-data.https.html": [ + "0bfe4cbfa4c063ad5c5d7db12f0478f6cee81a5b", + [ + null, + { + "timeout": "long" + } + ] + ], + "worklet-paint.https.html": [ + "887fe458cda421172290813862a2b0a31aff3163", + [ + null, + { + "timeout": "long" + } + ] + ], + "xhr.https.html": [ + "de3a6213649215d499c1a6e5867c71391d525bae", + [ + null, + { + "timeout": "long" + } + ] + ] + } + }, + "sharedworker-classic-data.http-rp": { + "upgrade": { + "fetch.https.html": [ + "4184e7c158c12b46d2d794e286319dae847a0347", + [ + null, + { + "timeout": "long" + } + ] + ], + "websocket.https.html": [ + "c41e4cde41f510b811c3b8aec859aeb8d864cae8", + [ + null, + { + "timeout": "long" + } + ] + ], + "xhr.https.html": [ + "62a5883cadb84de71f1c2b0d3b59d4b7cb4cf962", + [ + null, + { + "timeout": "long" + } + ] + ] + } + }, + "sharedworker-classic-data.meta": { + "unset": { + "fetch.https.html": [ + "2a7dbda8b59889d2dfa35490d10aca24e001f3d8", + [ + null, + { + "timeout": "long" + } + ] + ], + "websocket.https.html": [ + "116967e02074081ddbe0ee5176d9b745b43e4d23", + [ + null, + { + "timeout": "long" + } + ] + ], + "xhr.https.html": [ + "fa60413af5e6aed779cc71bf07dc9f7381e87dcd", + [ + null, + { + "timeout": "long" + } + ] + ] + }, + "upgrade": { + "fetch.https.html": [ + "fb39f9bc5c826e34d9c143bc0b98baaf57809d47", + [ + null, + { + "timeout": "long" + } + ] + ], + "websocket.https.html": [ + "4347f0118885cf42eaeb2e7afc5199b3f732a568", + [ + null, + { + "timeout": "long" + } + ] + ], + "xhr.https.html": [ + "d5f9b891b5c23eb9f0a12701f3be0e83c572a072", + [ + null, + { + "timeout": "long" + } + ] + ] + } + }, + "sharedworker-classic.http-rp": { + "upgrade": { + "fetch.https.html": [ + "1d8b60fea6cccaa767b1e86836af04007e6a6510", + [ + null, + { + "timeout": "long" + } + ] + ], + "websocket.https.html": [ + "bb031af962aef49f24a1d9958bbd2c52abb137ef", + [ + null, + { + "timeout": "long" + } + ] + ], + "xhr.https.html": [ + "00c297642fea2ece71b8879d17ad2724f493c0c2", + [ + null, + { + "timeout": "long" + } + ] + ] + } + }, + "sharedworker-module-data.http-rp": { + "upgrade": { + "fetch.https.html": [ + "a69ca6ebb13f386adac79299865d05c1c8753349", + [ + null, + { + "timeout": "long" + } + ] + ], + "websocket.https.html": [ + "df2014e4491b3442e36a92d39e49bb99df09302a", + [ + null, + { + "timeout": "long" + } + ] + ], + "xhr.https.html": [ + "8790654a036b12c13cf9a2c48c102f84b4cc6039", + [ + null, + { + "timeout": "long" + } + ] + ] + } + }, + "sharedworker-module-data.meta": { + "unset": { + "fetch.https.html": [ + "9f8b280cf47e5ea9864dbc16a0bb5a754b9aff88", + [ + null, + { + "timeout": "long" + } + ] + ], + "websocket.https.html": [ + "9861314634870ded51ab4539e9d61a1fb856fa3b", + [ + null, + { + "timeout": "long" + } + ] + ], + "xhr.https.html": [ + "d71d1f76ed77a83b0216cc85fcf8f18342f77085", + [ + null, + { + "timeout": "long" + } + ] + ] + }, + "upgrade": { + "fetch.https.html": [ + "63cca40cd25ea280d87805100a94208715f7c6f9", + [ + null, + { + "timeout": "long" + } + ] + ], + "websocket.https.html": [ + "36bac646a02d69de9da34768698458ba335846f9", + [ + null, + { + "timeout": "long" + } + ] + ], + "xhr.https.html": [ + "279e92e9f17d7a32217622a5dbb0f51b3ac167fb", + [ + null, + { + "timeout": "long" + } + ] + ] + } + }, + "sharedworker-module.http-rp": { + "upgrade": { + "fetch.https.html": [ + "593c92fa5062c326a8ab669874bd377098f84aa5", + [ + null, + { + "timeout": "long" + } + ] + ], + "websocket.https.html": [ + "6be3b239aab29610d256e2ee0bccf4e1947f127e", + [ + null, + { + "timeout": "long" + } + ] + ], + "xhr.https.html": [ + "d307b33c4911f7252133e6aca425e7e94b9b1aa3", + [ + null, + { + "timeout": "long" + } + ] + ] + } + }, + "srcdoc-inherit.meta": { + "unset": { + "fetch.https.html": [ + "f8585f64d36f71b94a127707a5867598dd5b7d4f", + [ + null, + { + "timeout": "long" + } + ] + ], + "iframe-tag.https.html": [ + "8b63807eaae7712a33da1ba292fd14b6195604ab", + [ + null, + { + "timeout": "long" + } + ] + ], + "img-tag.https.html": [ + "e7eb4050e2e66578f2f767ba312f2ccf82236a89", + [ + null, + { + "timeout": "long" + } + ] + ], + "sharedworker-classic.https.html": [ + "89db3b1be91cb324f60dbc77c1b2a17fb653fd4a", + [ + null, + { + "timeout": "long" + } + ] + ], + "sharedworker-import-data.https.html": [ + "6e61de3bc4a99118667e3d2c614ab7abe7b48a21", + [ + null, + { + "timeout": "long" + } + ] + ], + "sharedworker-import.https.html": [ + "754365142a53ba799dab5f212b8e9fe3a180bd87", + [ + null, + { + "timeout": "long" + } + ] + ], + "sharedworker-module.https.html": [ + "e9031bccb9459be5ffb94b12ada8efc37e70fdfc", + [ + null, + { + "timeout": "long" + } + ] + ], + "websocket.https.html": [ + "dfc63fe9b0a7ecac98e46fddbb7207181c985fe3", + [ + null, + { + "timeout": "long" + } + ] + ], + "worker-classic.https.html": [ + "819ef182e91368891d117a2ee50399a86e0ed16f", + [ + null, + { + "timeout": "long" + } + ] + ], + "worker-import-data.https.html": [ + "c060b0196daa6fd0f30f8ff5de3e399a5dd98315", + [ + null, + { + "timeout": "long" + } + ] + ], + "worker-import.https.html": [ + "8472deaee08033d05dbd2bde65e8f44518e153e2", + [ + null, + { + "timeout": "long" + } + ] + ], + "worker-module.https.html": [ + "0282683b9d061ca9ec86817bdbd4a466704b7916", + [ + null, + { + "timeout": "long" + } + ] + ], + "worklet-animation-import-data.https.html": [ + "0692fb893c609ea0d0e262b20d2fd053c6334668", + [ + null, + { + "timeout": "long" + } + ] + ], + "worklet-animation.https.html": [ + "7ec880806dedaaf50af66ad673bb0d7cb8ae9b92", + [ + null, + { + "timeout": "long" + } + ] + ], + "worklet-audio-import-data.https.html": [ + "40160b4fef12c8d0280fc9b4b2f4e0107a4e41bc", + [ + null, + { + "timeout": "long" + } + ] + ], + "worklet-audio.https.html": [ + "8dbc7012eda3ee4c35a583220c40af411b35afea", + [ + null, + { + "timeout": "long" + } + ] + ], + "worklet-layout-import-data.https.html": [ + "c2808ac643c0831d1b696ae798cad9be5518a46c", + [ + null, + { + "timeout": "long" + } + ] + ], + "worklet-layout.https.html": [ + "cc19e2775c8bf01e1d30f63b3d935422008bc8f8", + [ + null, + { + "timeout": "long" + } + ] + ], + "worklet-paint-import-data.https.html": [ + "3ba203f3f9c0e47c539c3cb5c30a2d765138f298", + [ + null, + { + "timeout": "long" + } + ] + ], + "worklet-paint.https.html": [ + "62a48a1661589a852f75515fee103ad8f5f742e4", + [ + null, + { + "timeout": "long" + } + ] + ], + "xhr.https.html": [ + "3b5047d512aa40e106e98bb21955369b7c966f9a", + [ + null, + { + "timeout": "long" + } + ] + ] + }, + "upgrade": { + "fetch.https.html": [ + "117e32f3f504de40ec27f5d5c3a3d16fc77acb74", + [ + null, + { + "timeout": "long" + } + ] + ], + "iframe-tag.https.html": [ + "679cb54eb2940749b45537739c913c55ddd471b8", + [ + null, + { + "timeout": "long" + } + ] + ], + "img-tag.https.html": [ + "e9744a3aec032a36798e0e1593572c00612874b2", + [ + null, + { + "timeout": "long" + } + ] + ], + "sharedworker-classic.https.html": [ + "3be481acf37aba5fdb419fb94d9b3702b23c9c07", + [ + null, + { + "timeout": "long" + } + ] + ], + "sharedworker-import-data.https.html": [ + "cbd2fabdea74f53a2317c93cef886a990ccf8cbc", + [ + null, + { + "timeout": "long" + } + ] + ], + "sharedworker-import.https.html": [ + "b2444a8c8ae9fe71c7980d2ace34a6f48c103a2a", + [ + null, + { + "timeout": "long" + } + ] + ], + "sharedworker-module.https.html": [ + "91e6ecd08e26430c16af4e26688ff93745b2f585", + [ + null, + { + "timeout": "long" + } + ] + ], + "websocket.https.html": [ + "c7f3c265d8c275b792c97f9e0adc2d702acf1517", + [ + null, + { + "timeout": "long" + } + ] + ], + "worker-classic.https.html": [ + "7c0677a61c9342e11cf95c668afe19db3497f99e", + [ + null, + { + "timeout": "long" + } + ] + ], + "worker-import-data.https.html": [ + "f90e9bd4a8dbd394b855c490e7653f7ca1babd71", + [ + null, + { + "timeout": "long" + } + ] + ], + "worker-import.https.html": [ + "a8370a0a6f87538bc901acb087a77190544e3a3f", + [ + null, + { + "timeout": "long" + } + ] + ], + "worker-module.https.html": [ + "ccd461add227faadf4a0cba5786678fc76cbcbca", + [ + null, + { + "timeout": "long" + } + ] + ], + "worklet-animation-import-data.https.html": [ + "c34a6d0782254b85a33e4c0e8ee84acd8e61a6bd", + [ + null, + { + "timeout": "long" + } + ] + ], + "worklet-animation.https.html": [ + "6be85c5e452f0596b5e9901e323b008f8f4d4b0a", + [ + null, + { + "timeout": "long" + } + ] + ], + "worklet-audio-import-data.https.html": [ + "b0ee36fa6ff332677c333e82225cbda443664c91", + [ + null, + { + "timeout": "long" + } + ] + ], + "worklet-audio.https.html": [ + "9636d3f55743c136e2a2aed3e8b97287fb368a6b", + [ + null, + { + "timeout": "long" + } + ] + ], + "worklet-layout-import-data.https.html": [ + "a0b031e4991ea281c6763113706fc74104543833", + [ + null, + { + "timeout": "long" + } + ] + ], + "worklet-layout.https.html": [ + "663d0b8238ef5169029b50dfeb3a24a6485c9610", + [ + null, + { + "timeout": "long" + } + ] + ], + "worklet-paint-import-data.https.html": [ + "48d31775224653afa35b6f994ba7acf986459bec", + [ + null, + { + "timeout": "long" + } + ] + ], + "worklet-paint.https.html": [ + "69a4c90ec61f29266f759cc3bfeafe36e5e1d362", + [ + null, + { + "timeout": "long" + } + ] + ], + "xhr.https.html": [ + "c326a81661837f1895bb89b5d09785e251e294ba", + [ + null, + { + "timeout": "long" + } + ] + ] + } + }, + "top.http-rp": { + "upgrade": { + "fetch.https.html": [ + "ff9f627f551f44e63f17bbc4151d4b4a3245da29", + [ + null, + { + "timeout": "long" + } + ] + ], + "iframe-tag.https.html": [ + "d78bcbd80101ef8c9364777593125a586f3202b0", + [ + null, + { + "timeout": "long" + } + ] + ], + "img-tag.https.html": [ + "9950b5b5f515447a7540dd52518b998193736f62", + [ + null, + { + "timeout": "long" + } + ] + ], + "sharedworker-classic.https.html": [ + "677dfad716289b5d0ad17a5839956dc38226e393", + [ + null, + { + "timeout": "long" + } + ] + ], + "sharedworker-import-data.https.html": [ + "7e268a47af4d140093771cbebf014e27dfd2b2c1", + [ + null, + { + "timeout": "long" + } + ] + ], + "sharedworker-import.https.html": [ + "3041d08f1831efaa07bb9bfaaf16cda65cd8f9b5", + [ + null, + { + "timeout": "long" + } + ] + ], + "sharedworker-module.https.html": [ + "4e20a8ab3dfbbfcb0f6489f7111dace180f33b29", + [ + null, + { + "timeout": "long" + } + ] + ], + "websocket.https.html": [ + "5573cace64057ec7455b6620a9dfb26b81497caa", + [ + null, + { + "timeout": "long" + } + ] + ], + "worker-classic.https.html": [ + "434818d1275d25191ae7e574ec4f9fb5ae651e03", + [ + null, + { + "timeout": "long" + } + ] + ], + "worker-import-data.https.html": [ + "85e1a9c08fe6c9260e6f6ea9baef43a26ee3f09e", + [ + null, + { + "timeout": "long" + } + ] + ], + "worker-import.https.html": [ + "7098954a871ee59e576c3b823f6baed5f2a3e8f9", + [ + null, + { + "timeout": "long" + } + ] + ], + "worker-module.https.html": [ + "5b0dc16408f2d5ca5e76e8c6fc7e98eb7481ccd5", + [ + null, + { + "timeout": "long" + } + ] + ], + "worklet-animation-import-data.https.html": [ + "a485bfc509061408d2ec9fe8440c1681b20e4822", + [ + null, + { + "timeout": "long" + } + ] + ], + "worklet-animation.https.html": [ + "511ff4625c1134c30a86479c65b077585803578e", + [ + null, + { + "timeout": "long" + } + ] + ], + "worklet-audio-import-data.https.html": [ + "5822f29c88ba40a62265de37593090938c04d491", + [ + null, + { + "timeout": "long" + } + ] + ], + "worklet-audio.https.html": [ + "296e8af847b4f3041a729c9af2297b0d6935316d", + [ + null, + { + "timeout": "long" + } + ] + ], + "worklet-layout-import-data.https.html": [ + "b7546cc6113a9c69f8d5841d4c0ec7969df0cf2e", + [ + null, + { + "timeout": "long" + } + ] + ], + "worklet-layout.https.html": [ + "3ded6cdf25c150914b7d465406857481d69d2ca4", + [ + null, + { + "timeout": "long" + } + ] + ], + "worklet-paint-import-data.https.html": [ + "fdc8c9106e67b80710db1581baca8afa02d51d62", + [ + null, + { + "timeout": "long" + } + ] + ], + "worklet-paint.https.html": [ + "2646219a98936d70190ad3e39c368ffec7f6ba41", + [ + null, + { + "timeout": "long" + } + ] + ], + "xhr.https.html": [ + "c85f01adc1d03dffe7d9a18ca0c6e5b8a9dcfa42", + [ + null, + { + "timeout": "long" + } + ] + ] + } + }, + "top.meta": { + "unset": { + "fetch.https.html": [ + "39148c015beb6f73f505d0cc9a49e54f3d87a917", + [ + null, + { + "timeout": "long" + } + ] + ], + "iframe-tag.https.html": [ + "12ef5a5b7001d4c1eb9c2cdd23c63df7c5edf5ac", + [ + null, + { + "timeout": "long" + } + ] + ], + "img-tag.https.html": [ + "a78db7560ad855e899d2356351889096d880289c", + [ + null, + { + "timeout": "long" + } + ] + ], + "sharedworker-classic.https.html": [ + "4c5295cf7bfd79feb8d6792d31f6ac43ea0733b0", + [ + null, + { + "timeout": "long" + } + ] + ], + "sharedworker-import-data.https.html": [ + "dde524fb0fc1c9067a3051dba29aa7be9ed8a027", + [ + null, + { + "timeout": "long" + } + ] + ], + "sharedworker-import.https.html": [ + "fbba95b65acda8468387d0a7b03fa0f8daa6937e", + [ + null, + { + "timeout": "long" + } + ] + ], + "sharedworker-module.https.html": [ + "26776e4df76599ab75d2e58e49098aec66e24612", + [ + null, + { + "timeout": "long" + } + ] + ], + "websocket.https.html": [ + "e074d9d82ead194e20fa1929659ad4d75e5cf9a8", + [ + null, + { + "timeout": "long" + } + ] + ], + "worker-classic.https.html": [ + "aa01452b6418ec47d473869120a476059d370d5a", + [ + null, + { + "timeout": "long" + } + ] + ], + "worker-import-data.https.html": [ + "3669e03083693207e7209c83bff865d417b398fa", + [ + null, + { + "timeout": "long" + } + ] + ], + "worker-import.https.html": [ + "4743c2c9103868a4ec7b2312877022ef89c04ea1", + [ + null, + { + "timeout": "long" + } + ] + ], + "worker-module.https.html": [ + "6e5cce8af6d1a66dd99157ac77311504ac721092", + [ + null, + { + "timeout": "long" + } + ] + ], + "worklet-animation-import-data.https.html": [ + "4ffc90cd8fc98c67c14aba56326873e8c5fd615b", + [ + null, + { + "timeout": "long" + } ] - } - ], - [ - "streams/writable-streams/byte-length-queuing-strategy.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] + ], + "worklet-animation.https.html": [ + "114f59fbea8af18b72e237e1a62e0167ffef028b", + [ + null, + { + "timeout": "long" + } ] - } - ], - [ - "streams/writable-streams/byte-length-queuing-strategy.any.sharedworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] + ], + "worklet-audio-import-data.https.html": [ + "cad1c3580d38c5ad81ded3bc29fe2798012a1d31", + [ + null, + { + "timeout": "long" + } ] - } - ], - [ - "streams/writable-streams/byte-length-queuing-strategy.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] + ], + "worklet-audio.https.html": [ + "16ce32b7311eb1cbd1c1221a6bcb85cd58de7f53", + [ + null, + { + "timeout": "long" + } ] - } - ] - ], - "close.any.js": [ - "45261e7ca7e01dd056df13cbc8a6816ba7ba9b22", - [ - "streams/writable-streams/close.any.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/recording-streams.js" - ] + ], + "worklet-layout-import-data.https.html": [ + "a6c633e97d691b35335cb31b8427944219cba85a", + [ + null, + { + "timeout": "long" + } ] - } - ], - [ - "streams/writable-streams/close.any.serviceworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/recording-streams.js" - ] + ], + "worklet-layout.https.html": [ + "9c7f82d9e201bbacb7457c2ad69c34c5e20e2d80", + [ + null, + { + "timeout": "long" + } ] - } - ], - [ - "streams/writable-streams/close.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/recording-streams.js" - ] + ], + "worklet-paint-import-data.https.html": [ + "7b484d0a4c45e58b61a428e0ab561f17c82f9e03", + [ + null, + { + "timeout": "long" + } ] - } - ], - [ - "streams/writable-streams/close.any.sharedworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/recording-streams.js" - ] + ], + "worklet-paint.https.html": [ + "dcf2a137289d62be118898f1e51a4a17dccffda2", + [ + null, + { + "timeout": "long" + } ] - } - ], - [ - "streams/writable-streams/close.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/recording-streams.js" - ] + ], + "xhr.https.html": [ + "ccb4ecf4acd4cc6e79ae0a5fcae5821cda76b102", + [ + null, + { + "timeout": "long" + } ] - } - ] - ], - "constructor.any.js": [ - "0abc7ef545ea0bf8a220f501a401ead93d82bf7f", - [ - "streams/writable-streams/constructor.any.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] + ] + }, + "upgrade": { + "fetch.https.html": [ + "5b3d886a8aafe2211df3247c5ed4d8bfe36cbd44", + [ + null, + { + "timeout": "long" + } ] - } - ], - [ - "streams/writable-streams/constructor.any.serviceworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] + ], + "iframe-tag.https.html": [ + "76ad9eacc358f91c5e8e0eecbc03dcccbb9234b5", + [ + null, + { + "timeout": "long" + } ] - } - ], - [ - "streams/writable-streams/constructor.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] + ], + "img-tag.https.html": [ + "6fe8940e13509ed27d964f873ca6954c5e46864a", + [ + null, + { + "timeout": "long" + } ] - } - ], - [ - "streams/writable-streams/constructor.any.sharedworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] + ], + "sharedworker-classic.https.html": [ + "b8ad00fa477e052708527b6b85e1621111c5a328", + [ + null, + { + "timeout": "long" + } ] - } - ], - [ - "streams/writable-streams/constructor.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] + ], + "sharedworker-import-data.https.html": [ + "3ed32403341fb922196e6aa730313d681573b797", + [ + null, + { + "timeout": "long" + } ] - } - ] - ], - "count-queuing-strategy.any.js": [ - "8211757530d3233e4bfeacd4d431861e6c7c7481", - [ - "streams/writable-streams/count-queuing-strategy.any.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] + ], + "sharedworker-import.https.html": [ + "eea7d4dc6389638858a984901482bdc46d893318", + [ + null, + { + "timeout": "long" + } ] - } - ], - [ - "streams/writable-streams/count-queuing-strategy.any.serviceworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] + ], + "sharedworker-module.https.html": [ + "7ac0ce75a285c5cefa41b1d0693ffe4ed9d51b8a", + [ + null, + { + "timeout": "long" + } ] - } - ], - [ - "streams/writable-streams/count-queuing-strategy.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] + ], + "websocket.https.html": [ + "fa47869c32d50e591316cb47656208604c842f94", + [ + null, + { + "timeout": "long" + } ] - } - ], - [ - "streams/writable-streams/count-queuing-strategy.any.sharedworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] + ], + "worker-classic.https.html": [ + "376440f7bf3d4994a7e714a48963c41df6e2f681", + [ + null, + { + "timeout": "long" + } ] - } - ], - [ - "streams/writable-streams/count-queuing-strategy.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] + ], + "worker-import-data.https.html": [ + "0cb1533b2aa5373e2a4a2b988149c91925bdc8bb", + [ + null, + { + "timeout": "long" + } ] - } - ] - ], - "error.any.js": [ - "d08c8a54863bb9693e76116946bd118592d6928c", - [ - "streams/writable-streams/error.any.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] + ], + "worker-import.https.html": [ + "020dc7946d958e5c33c455f649056888e5c367b6", + [ + null, + { + "timeout": "long" + } ] - } - ], - [ - "streams/writable-streams/error.any.serviceworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] + ], + "worker-module.https.html": [ + "c6100c45be549f583d8c0d7c4509c474fc55cafe", + [ + null, + { + "timeout": "long" + } ] - } - ], - [ - "streams/writable-streams/error.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] + ], + "worklet-animation-import-data.https.html": [ + "99b161ff5efaf0d4d650c24d24e1d09e73c5b0d5", + [ + null, + { + "timeout": "long" + } ] - } - ], - [ - "streams/writable-streams/error.any.sharedworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] + ], + "worklet-animation.https.html": [ + "ddded11818a31d45c633523a8c32db3d27cf09b4", + [ + null, + { + "timeout": "long" + } ] - } - ], - [ - "streams/writable-streams/error.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] + ], + "worklet-audio-import-data.https.html": [ + "99e634cfaefc0f78dd916234924b31da750547c2", + [ + null, + { + "timeout": "long" + } ] - } - ] - ], - "floating-point-total-queue-size.any.js": [ - "20a14fc19a51e004d16667fd78643ff48792d89c", - [ - "streams/writable-streams/floating-point-total-queue-size.any.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] + ], + "worklet-audio.https.html": [ + "e49a11154c1a2c3f39e16b1c062af7a9c9524190", + [ + null, + { + "timeout": "long" + } ] - } - ], - [ - "streams/writable-streams/floating-point-total-queue-size.any.serviceworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] + ], + "worklet-layout-import-data.https.html": [ + "c0b3b47918fa8e341915d2f69bce7dd3b71a00ad", + [ + null, + { + "timeout": "long" + } ] - } - ], - [ - "streams/writable-streams/floating-point-total-queue-size.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] + ], + "worklet-layout.https.html": [ + "917e5f064a869d48e08f53e6775503bd0ceb71ed", + [ + null, + { + "timeout": "long" + } ] - } - ], - [ - "streams/writable-streams/floating-point-total-queue-size.any.sharedworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] + ], + "worklet-paint-import-data.https.html": [ + "847e38a536527b85a29774d4fe383c574d9acab0", + [ + null, + { + "timeout": "long" + } ] - } - ], - [ - "streams/writable-streams/floating-point-total-queue-size.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] + ], + "worklet-paint.https.html": [ + "09a5ac2eb73c5bd4ec30a348917f8febc9ce8c5b", + [ + null, + { + "timeout": "long" + } ] - } - ] - ], - "general.any.js": [ - "48f8eeb89e41eec32225b44be7c2e80132b970d4", - [ - "streams/writable-streams/general.any.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] + ], + "xhr.https.html": [ + "4d16491a4df4647c501579612c90e4fb5d048742", + [ + null, + { + "timeout": "long" + } ] - } - ], - [ - "streams/writable-streams/general.any.serviceworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] + ] + } + }, + "worker-classic-data.meta": { + "unset": { + "fetch.https.html": [ + "607c6828e43d58187c65b62313faa580e8fc8dd4", + [ + null, + { + "timeout": "long" + } ] - } - ], - [ - "streams/writable-streams/general.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] + ], + "websocket.https.html": [ + "2b140fabc9f3155e7d48945de22718116eb3a255", + [ + null, + { + "timeout": "long" + } ] - } - ], - [ - "streams/writable-streams/general.any.sharedworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] + ], + "xhr.https.html": [ + "044aeb16765d0652f2b4ec1c14db4f5f35e02d57", + [ + null, + { + "timeout": "long" + } ] - } - ], - [ - "streams/writable-streams/general.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] + ] + }, + "upgrade": { + "fetch.https.html": [ + "a7e4b9bd7b532404af55d8244a4f0a406b32be8c", + [ + null, + { + "timeout": "long" + } ] - } - ] - ], - "properties.any.js": [ - "ae0549f0871b4866877dffbccf8803eeaa897d06", - [ - "streams/writable-streams/properties.any.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] + ], + "websocket.https.html": [ + "d1ac903673214906e514d98f2030b7de2eb46c13", + [ + null, + { + "timeout": "long" + } ] - } - ], - [ - "streams/writable-streams/properties.any.serviceworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] + ], + "xhr.https.html": [ + "5ecc9293b5afb108137b6c6abcf226f46b0bceaa", + [ + null, + { + "timeout": "long" + } ] - } - ], - [ - "streams/writable-streams/properties.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] + ] + } + }, + "worker-classic.http-rp": { + "upgrade": { + "fetch.https.html": [ + "0d9eb0b56a5b9b3a321bebebcc4efbc93bff3c19", + [ + null, + { + "timeout": "long" + } ] - } - ], - [ - "streams/writable-streams/properties.any.sharedworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] + ], + "websocket.https.html": [ + "117973e408aa3da737ece6183c31062bfc54fa9e", + [ + null, + { + "timeout": "long" + } ] - } - ], - [ - "streams/writable-streams/properties.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ] + ], + "worker-classic.https.html": [ + "af144c38a6d1265021a16b47aa1c186bfb9b8fe0", + [ + null, + { + "timeout": "long" + } ] - } - ] - ], - "reentrant-strategy.any.js": [ - "18ce9e84759a11bed4f4b31f5e82cf6948a2b739", - [ - "streams/writable-streams/reentrant-strategy.any.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/recording-streams.js" - ] + ], + "worker-module.https.html": [ + "f91b6c413ae3798e91831fd19d1469d65781831a", + [ + null, + { + "timeout": "long" + } ] - } - ], - [ - "streams/writable-streams/reentrant-strategy.any.serviceworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/recording-streams.js" - ] + ], + "xhr.https.html": [ + "edca66b94300ebebd38d660c659c8d3b4f842213", + [ + null, + { + "timeout": "long" + } ] - } - ], - [ - "streams/writable-streams/reentrant-strategy.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/recording-streams.js" - ] + ] + } + }, + "worker-module-data.http-rp": { + "upgrade": { + "fetch.https.html": [ + "9ff76bc7878fa283dac081d136c60de6cd4807b6", + [ + null, + { + "timeout": "long" + } ] - } - ], - [ - "streams/writable-streams/reentrant-strategy.any.sharedworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/recording-streams.js" - ] + ], + "websocket.https.html": [ + "2d8c1bef7eed4b13454c2fbcee399dfe47c285a2", + [ + null, + { + "timeout": "long" + } ] - } - ], - [ - "streams/writable-streams/reentrant-strategy.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/recording-streams.js" - ] + ], + "xhr.https.html": [ + "b406ddd6dab9cf12efa39e17c0b6671c17360a44", + [ + null, + { + "timeout": "long" + } ] - } - ] - ], - "start.any.js": [ - "17972b568ceb24fee7a758a9d7a1147b26a030d6", - [ - "streams/writable-streams/start.any.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/recording-streams.js" - ] + ] + } + }, + "worker-module-data.meta": { + "unset": { + "fetch.https.html": [ + "4a65c521dfdc8aa428fff3eef1e4342130b5a6e4", + [ + null, + { + "timeout": "long" + } ] - } - ], - [ - "streams/writable-streams/start.any.serviceworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/recording-streams.js" - ] + ], + "websocket.https.html": [ + "27e0c78bb8e20de711d27a9bf159066a8e1be3d4", + [ + null, + { + "timeout": "long" + } ] - } - ], - [ - "streams/writable-streams/start.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/recording-streams.js" - ] + ], + "xhr.https.html": [ + "eaad29b7d47b82619c49cbdd823fbf371d076a72", + [ + null, + { + "timeout": "long" + } ] - } - ], - [ - "streams/writable-streams/start.any.sharedworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/recording-streams.js" - ] + ] + }, + "upgrade": { + "fetch.https.html": [ + "c0692396730c20a3f31656ec2360d8136860e459", + [ + null, + { + "timeout": "long" + } ] - } - ], - [ - "streams/writable-streams/start.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/recording-streams.js" - ] + ], + "websocket.https.html": [ + "0173f7986b03472771c1bddd115808188c9d8a4f", + [ + null, + { + "timeout": "long" + } ] - } - ] - ], - "write.any.js": [ - "20a2885bf3512ab6da3bb9aeecbc0e48022e741c", - [ - "streams/writable-streams/write.any.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/recording-streams.js" - ] + ], + "xhr.https.html": [ + "5cce5cce98530bd48b0d3784d04a087326ade89a", + [ + null, + { + "timeout": "long" + } ] - } - ], - [ - "streams/writable-streams/write.any.serviceworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/recording-streams.js" - ] + ] + } + }, + "worker-module.http-rp": { + "upgrade": { + "fetch.https.html": [ + "d904dccf267a4e9ac3b69f5a11a7744b577ac66d", + [ + null, + { + "timeout": "long" + } ] - } - ], - [ - "streams/writable-streams/write.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/recording-streams.js" - ] + ], + "websocket.https.html": [ + "62fb899cd091daa3ee86baddf3ba0c2325776a89", + [ + null, + { + "timeout": "long" + } ] - } - ], - [ - "streams/writable-streams/write.any.sharedworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/recording-streams.js" - ] + ], + "worker-classic.https.html": [ + "edd3a00c57a524e5f265187590f68d2a9c36374c", + [ + null, + { + "timeout": "long" + } ] - } - ], - [ - "streams/writable-streams/write.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,shadowrealm" - ], - [ - "script", - "../resources/test-utils.js" - ], - [ - "script", - "../resources/recording-streams.js" - ] + ], + "worker-module.https.html": [ + "c1f8057c9e4876248db1e060ae0d1e35aa1086e1", + [ + null, + { + "timeout": "long" + } ] - } - ] - ] - } - }, - "subapps": { - "add-error.tentative.https.html": [ - "defe4743c6ab290683af9b57f193508c5743c4e0", - [ - null, - { - "testdriver": true + ], + "xhr.https.html": [ + "eca7811d0baa0fc6fd076c45e6b6a6bd1ad2a8e8", + [ + null, + { + "timeout": "long" + } + ] + ] } - ] - ], - "add-success.tentative.https.html": [ - "a9a439b36ac9a9095be58eef3767136d402d9071", + } + }, + "link-upgrade.sub.https.html": [ + "46788e8883cad6f9ee91993d6f2b36985cc96de3", [ null, { - "testdriver": true + "timeout": "long" } ] - ], - "idlharness.tentative.https.window.js": [ - "65a1156188b1f8d952d8a3dd0744af9232124157", + ] + }, + "url": { + "IdnaTestV2.window.js": [ + "8873886bdab8a0d00fdece2fc81977a0f345cb53", [ - "subapps/idlharness.tentative.https.window.html", - { - "script_metadata": [ - [ - "script", - "/resources/WebIDLParser.js" - ], - [ - "script", - "/resources/idlharness.js" - ] - ] - } + "url/IdnaTestV2.window.html", + {} ] ], - "insecure-context-error.tentative.html": [ - "ada4a846e896cf8c89d0e6db7b6bf3b9772624f8", + "a-element-origin-xhtml.xhtml": [ + "e68e68dda2ad6cc51ad0c1bfeaea9573f007a5e0", [ null, {} ] ], - "list-error.tentative.https.html": [ - "1161318acd42c3f8d29796cba9bbd338ece2b428", + "a-element-origin.html": [ + "7015f853f01a1d3216897c3d51443ffbd11cb3e5", [ null, {} ] ], - "list-success.tentative.https.html": [ - "ea4f96124a912f361abb1a9ca73bd08aa77776ad", + "a-element-xhtml.xhtml": [ + "610481a7819d622e3051d57869e92344b46b811a", [ - null, + "url/a-element-xhtml.xhtml?exclude=(file|javascript|mailto)", + {} + ], + [ + "url/a-element-xhtml.xhtml?include=file", + {} + ], + [ + "url/a-element-xhtml.xhtml?include=javascript", + {} + ], + [ + "url/a-element-xhtml.xhtml?include=mailto", {} ] ], - "remove-error.tentative.https.html": [ - "a7271905dc7d19b4778d59e7f2c59274b4f7b813", + "a-element.html": [ + "a7621d2ded76c4cc170da656613ca6bd687f803c", [ - null, + "url/a-element.html?exclude=(file|javascript|mailto)", + {} + ], + [ + "url/a-element.html?include=file", + {} + ], + [ + "url/a-element.html?include=javascript", + {} + ], + [ + "url/a-element.html?include=mailto", {} ] ], - "remove-success.tentative.https.html": [ - "ad60d6398dd848e935898810673d3aac3eba0333", + "data-uri-fragment.html": [ + "e77d96f03d821d4fdcd8cfa17f05ebe1b8237fe7", [ null, {} ] - ] - }, - "subresource-integrity": { - "subresource-integrity.html": [ - "355e1da1d750dde181127af96eca99e40b8f6b6f", + ], + "failure.html": [ + "d95b1d52d672379745affe6972ccb9ee26c44295", [ null, - {} + { + "timeout": "long" + } ] - ] - }, - "svg": { - "animations": { - "accumulate-values-width-animation.html": [ - "7813494a6a2cb9ad33a16d65a6b6869f9c639ce9", - [ - null, - {} - ] - ], - "additive-from-to-width-animation.html": [ - "0899f5e0b53120cb116b781f6f0dbdfaa7ee26f9", - [ - null, - {} - ] - ], - "additive-type-by-animation.html": [ - "2dc7732dd6effc05e5eac59305de8ed4e22ab9d0", - [ - null, - {} - ] - ], - "additive-values-width-animation.html": [ - "5b874f5a4f838cd9b3d3c9e9d3e2917862d79ee5", - [ - null, - {} - ] - ], - "animVal-basics.html": [ - "7eb968af01e0b23fa270a71f8788415ea3eed049", - [ - null, - {} - ] - ], - "animate-calcMode-spline-by.html": [ - "5ce9bcc763e50e34afefb67b0fddd20b8a5ad247", - [ - null, - {} - ] - ], - "animate-calcMode-spline-from-by.html": [ - "1f15760c7d845a42e89b7ae9d15e602658a795a8", - [ - null, - {} - ] - ], - "animate-calcMode-spline-from-to.html": [ - "4d6080083148b6567d66bc92834e36bbd226b310", - [ - null, - {} - ] - ], - "animate-calcMode-spline-to.html": [ - "4a26cd716ed5c74c96a43108686d97b854f853d4", - [ - null, - {} - ] - ], - "animate-calcMode-spline-values.html": [ - "46952aa45db5d5ca05f085f25e9ebd0339085dfb", - [ - null, - {} - ] - ], - "animate-color-calcMode-discrete.html": [ - "980f39282e33f3cb89f91c8652071a9a8d6a83b7", - [ - null, - {} - ] - ], - "animate-color-fill-currentColor.html": [ - "2780ce2ac9a8e69ae10c1ffda3b56e741127e241", - [ - null, - {} - ] - ], - "animate-color-fill-from-by.html": [ - "410b27b75a732f2e846d9d17bac421a6fdbda8cb", - [ - null, - {} - ] - ], - "animate-color-transparent.html": [ - "e2a946cfb0b14337c82bd3920e5d958dfc5e8ee5", - [ - null, - {} - ] - ], - "animate-css-xml-attributeType.html": [ - "4494eb773693d2c65620030f975d13db21c60077", - [ - null, - {} - ] - ], - "animate-currentColor.html": [ - "a8b3c1f16f25823f674c69f0c2bd472b8b044c4a", - [ - null, - {} - ] - ], - "animate-dynamic-update-attributeName.html": [ - "47ca52526ae127ba16d009dad63772e4cd343de2", - [ - null, - {} - ] - ], - "animate-elem-02-t-drt.html": [ - "31f34ce56f8beddc12d5097d28c29d76bb0d6760", - [ - null, - {} - ] - ], - "animate-elem-14-t-drt.html": [ - "64fc35f596fd7768ce41dedc6b46136868f89ff8", - [ - null, - {} - ] - ], - "animate-elem-15-t-drt.html": [ - "9d5cb1b437bc7d7fe40dc5a26f20e450f733c4f5", - [ - null, - {} - ] - ], - "animate-elem-16-t-drt.html": [ - "0ac98e2fc80f1549bb07abf858b7e9665a289f96", - [ - null, - {} - ] - ], - "animate-elem-17-t-drt.html": [ - "1b101491953b95fcaffad8e1e8ae1e13edfff1b8", - [ - null, - {} - ] - ], - "animate-elem-18-t-drt.html": [ - "4f9dbb7765812acc3d338ac7966a5a5b8ebcd6dd", - [ - null, - {} - ] - ], - "animate-elem-19-t-drt.html": [ - "9b9d61c90bddf6862fabe222b3f4488e546e124f", - [ - null, - {} - ] - ], - "animate-end-attribute-numeric-precision.html": [ - "d0515ac850e86cd99091bfe78f1ef07bc2de9980", - [ - null, - {} - ] - ], - "animate-fill-freeze-with-repeatDur.html": [ - "aab9eacff26bbf684cb15c33203ebf3da263f502", - [ - null, - {} - ] - ], - "animate-from-to-keyTimes.html": [ - "7295bcdb630f4423bd2a2280d2f082a87a92d63d", - [ - null, - {} - ] - ], - "animate-gradient-transform.html": [ - "ddb9946fda6b45c35c02a154b6047058c1a1470c", - [ - null, - {} - ] - ], - "animate-inherit-css-property.html": [ - "a8b56bab2bfa6a8b61f14fbf31d9760fc537ccc7", - [ - null, - {} - ] - ], - "animate-insert-begin.html": [ - "5155391a9123e995ba52a7ebaa76d863eaa0ead8", - [ - null, - {} - ] - ], - "animate-insert-no-begin.html": [ - "3db406ecd4823c39bbae6204797ca70451f5d049", - [ - null, - {} - ] - ], - "animate-keySplines.html": [ - "0b02f71d3fa4cecc07e455f2d7000922db46bcc9", - [ - null, - {} - ] - ], - "animate-marker-orient-from-angle-to-angle.html": [ - "a9c16740e63292022682a24f801a4dd88eb46c79", - [ - null, - {} - ] - ], - "animate-marker-orient-from-angle-to-auto.html": [ - "40fc57b4f3c9bdc2c9a68e59c1d15495cc445124", - [ - null, - {} - ] - ], - "animate-marker-orient-from-auto-to-auto-start-reverse.html": [ - "b7a4e68562da576fc2ea0221c51f19afaa879ad7", - [ - null, - {} - ] - ], - "animate-marker-orient-to-angle.html": [ - "6b4ba2bfef2fd6bbd15d05b47a97f8b2d4adf5c2", - [ - null, - {} - ] - ], - "animate-number-calcMode-discrete-keyTimes.html": [ - "0e80e03f887ba2de095e8f65bd6e952767350248", - [ - null, - {} - ] - ], - "animate-number-calcMode-discrete.html": [ - "11563233b4f228325efb15ce9f9ba8d9ef71eece", - [ - null, - {} - ] - ], - "animate-path-animation-Cc-Ss.tentative.html": [ - "69b3cc7af4cf00c301c1e2e6d86641181b356b5a", - [ - null, - {} - ] - ], - "animate-path-animation-Ll-Vv-Hh.tentative.html": [ - "8a1e2cb032f268f3609521d33fa6d4d9d9f96cb7", - [ - null, - {} - ] - ], - "animate-path-animation-Mm-Aa-Z.tentative.html": [ - "fd0787792f85a6f6b1dcb920b949d484e6fa9cfd", - [ - null, - {} - ] - ], - "animate-path-animation-Qq-Tt.tentative.html": [ - "e8b0ad8f71aa31aa969eea3e6d66dee36ff79353", - [ - null, - {} - ] - ], - "animate-path-animation-cC-sS-inverse.tentative.html": [ - "5b19f69b2d2ceec98bba6bcabdc8f43738aaa7d2", - [ - null, - {} - ] - ], - "animate-path-animation-lL-vV-hH-inverse.tentative.html": [ - "3a96eb294542221fe122aa2facdb286e52da8b6d", - [ - null, - {} - ] - ], - "animate-path-animation-mM-aA-Z-inverse.tentative.html": [ - "df32a4a2500fc9f3ba2e805c49bd12fc35678bf2", - [ - null, - {} - ] - ], - "animate-path-animation-qQ-tT-inverse.tentative.html": [ - "6ae4d1f1dcd540d1439c9c364307b514f0fde9c0", - [ - null, - {} - ] - ], - "animate-path-to-animation.tentative.html": [ - "a20a33f6a48c4349d947c1872efac9a25864fb8b", - [ - null, - {} - ] - ], - "animate-reset-freeze.html": [ - "0b0d90003dcabbc2bf3dc255c30c4b8b5d535e5b", - [ - null, - {} - ] - ], - "animate-stop-currentcolor.html": [ - "1536035dec58709256e5d09fec22eae999a0a00d", - [ - null, - {} - ] - ], - "animateMotion-base.html": [ - "e69b121a06be5ac23798b6b9babb0ddfca032e25", - [ - null, - {} - ] - ], - "animateMotion-circle.html": [ - "3cf713f904849108efda2c1f2423a701c9fd4fa7", - [ - null, - {} - ] - ], - "animateMotion-display-none.html": [ - "104744c17f8359ce3d50a95a0e8999ffa78e43a3", - [ - null, - {} - ] - ], - "animateMotion-ellipse.html": [ - "109ae4f58698a4b47a1e1f1adfd39a24773db0a7", - [ - null, - {} - ] - ], - "animateMotion-fill-freeze.html": [ - "4e768efb0046972fdb62f9af6545134d97a9495c", - [ - null, - {} - ] - ], - "animateMotion-fill-remove.html": [ - "aeb74b4b0f22f14dca63e0c82a08da28bc88d1b8", - [ - null, - {} - ] - ], - "animateMotion-from-to-rotate-auto.html": [ - "faa58fe39b8e2fb5b23688434c04a238c5b4bb4f", - [ - null, - {} - ] - ], - "animateMotion-keyPoints-001.html": [ - "1397bd6039037f1c8b55685b967042c863a0a705", - [ - null, - {} - ] - ], - "animateMotion-line.html": [ - "f304de62dcfa8f6762220a1d4e099af304b1da15", - [ - null, - {} - ] - ], - "animateMotion-mpath.html": [ - "dece63675fec969b10ed9eea1f4bda244b5fc338", - [ - null, - {} - ] - ], - "animateMotion-multiple.html": [ - "494d75a78550b40b7618f951b3cb81ec8c92fe55", - [ - null, - {} - ] - ], - "animateMotion-rect.html": [ - "8853b047c3609026a90b72dbd4414e09a791a082", - [ - null, - {} - ] - ], - "animateMotion-still.html": [ - "bf9007ac2f38fe9dbe85a9f56de28358ecb82b91", - [ - null, - {} - ] - ], - "animateTransform-pattern-transform.html": [ - "614444bf71c63bdef13226a3c8208625ec364517", - [ - null, - {} - ] - ], - "attribute-value-unaffected-by-animation-001.html": [ - "21271ff0308f189b5ecc29d84bbb408f3135840e", - [ - null, - {} - ] - ], - "attribute-value-unaffected-by-animation-002.html": [ - "29878d02cbd7594213d8f42c0406d988e1fe37b9", - [ - null, - {} - ] - ], - "attributeTypes.html": [ - "7a9ad43dd98e00f7e2af4957365441a29aedf8e6", - [ - null, - {} - ] - ], - "begin-attribute-mutation.html": [ - "f28c8e9ad1ab06ae10cb9a6e883bd80ff58a8974", - [ - null, - {} - ] - ], - "begin-event.svg": [ - "c673dff9f6282b481309ba4898a9a2424417815f", - [ - null, - {} - ] - ], - "beginelement-instance-time-1.html": [ - "aa1cb8c983d482439fccc6d91b50e69585f4d404", - [ - null, - {} - ] - ], - "beginevents-1.html": [ - "92debaf82a85f972c605fad3dd7a15daae26a912", - [ - null, - {} - ] - ], - "change-css-property-while-animating-fill-freeze.html": [ - "6774c3475a681f9fc91e8280ded739e9e65f4606", - [ - null, - {} - ] - ], - "change-css-property-while-animating-fill-remove.html": [ - "a4e8a3ac40724c46fbf69b4038a279318a9067f6", - [ - null, - {} - ] - ], - "change-target-while-animating-SVG-property.html": [ - "68aa63a39d3acf927de8f2fae47c7b2ceac9e4a9", - [ - null, - {} - ] - ], - "correct-events-for-short-animations-with-syncbases.html": [ - "19e7eef8c1ce470d67c2eaecf2f07a9d2907f2c1", - [ - null, - {} - ] - ], - "custom-events.html": [ - "1c49106b510821b2cd5765908dcb878329929026", - [ - null, - {} - ] - ], - "cyclic-syncbase-2.html": [ - "7e27f469e877829a63051ecfc17be7a63b125bf1", - [ - null, - {} - ] - ], - "cyclic-syncbase-events.html": [ - "09d5c2e7b803af66199f8e08479b29a653f22dd2", - [ - null, - {} - ] - ], - "cyclic-syncbase.html": [ - "c0351156e310a8a6f0fca3ebee506b80983a53bb", - [ - null, - {} - ] - ], - "dependent-begin-on-syncbase.html": [ - "591fb64ed801b9cad22764976ad7134e30b967cb", - [ - null, - {} - ] - ], - "dependent-end-on-syncbase.html": [ - "4879e5f6ce8774f176526406ecff680bba65b6a9", - [ - null, - {} - ] - ], - "end-attribute-change-end-time.html": [ - "9f05d7d405d364a1eadfa104c1c4bd90a2bf3b8c", - [ - null, - {} - ] - ], - "end-event.svg": [ - "aa0854d6924e43997330adad348f326f9a12103a", - [ - null, - {} - ] - ], - "event-listeners.html": [ - "ca2b9b72f5bce40e9ded3da72251eccaf73c6995", - [ - null, - {} - ] - ], - "eventbase-non-svg-element.html": [ - "f4e7f793e41dd3de8b3e1c19da9387edffa62baf", - [ - null, - {} - ] - ], - "first-interval-in-the-past-contribute.html": [ - "a4c7383b8eefbc439645ffd444cea98584ac1c81", - [ - null, - {} - ] - ], - "first-interval-in-the-past-dont-contribute.html": [ - "1e9281ae03bb41ac44822efe7549519b5b9e9f32", - [ - null, - {} - ] - ], - "force-use-shadow-tree-recreation-while-animating.html": [ - "7a60e0280baa67ef8731b7bdc737788d326c3c24", - [ - null, - {} - ] - ], - "interval-restart-events.html": [ - "3c3ad89a3230bb03048dc3fc9727558de511bee9", - [ - null, - {} - ] - ], - "keysplines-x-limits.html": [ - "376f04e659eb74cdff621583888e0e15fda73385", - [ - null, - {} - ] - ], - "keysplines-y-limits.html": [ - "ccfbbe39576c55e032a1808fec2b1796c570a09b", - [ - null, - {} - ] - ], - "multiple-animations-ending.html": [ - "a9b7853bb0ed49a11af24d020766248ebd7d4bbe", - [ - null, - {} - ] - ], - "multiple-animations-fill-freeze.html": [ - "d4a71dcac286f5bcd97b3b3ce6642e58e75f3d54", - [ - null, - {} - ] - ], - "multiple-begin-additive-animation.html": [ - "9e75bdf17a449df09e72986c95bd3493e56f9221", - [ - null, - {} - ] - ], - "non-additive-type-by-animation.html": [ - "b596f735446a61592774b89569d80e776f8a39be", - [ - null, - {} - ] - ], - "non-additive-type-from-by-animation.html": [ - "e974e38177526e2e4bd8344712c37b00dc2e2bda", - [ - null, - {} - ] - ], - "onbegin.svg": [ - "d3de366f470d2c36f3c235ad4ee81e548eaf15d9", - [ - null, - {} - ] - ], - "onend.svg": [ - "46b78af37ac14e58a56669056c3b4fad2916f88f", - [ - null, - {} - ] - ], - "onrepeat.svg": [ - "cd4a265b31e8e7f3ea3d72b53a6c0e88f2e3be88", - [ - null, - {} - ] - ], - "pruning-first-interval.html": [ - "5a1d1463beaec5b8c3e86406de6138960de8e5ab", - [ - null, - {} - ] - ], - "reinserting-svg-into-document.html": [ - "28d9dc93ceb9ef4b088c9d973d9212c9a3a8d1e0", - [ - null, - {} - ] - ], - "remove-animation-element-while-animation-is-running.html": [ - "764d25b69f158e028d8ec9fe14e1c43840d00925", - [ - null, - {} - ] - ], - "repeat-event.svg": [ - "0a9a3cb893b3d287b26a8fe5e957e7514e218b1e", - [ - null, - {} - ] + ], + "historical.any.js": [ + "9c4b5f0ae9bfad36ab84373342d8a52d72e23077", + [ + "url/historical.any.html", + {} ], - "repeat-iteration-event-001.svg": [ - "0cf7a7adacaef14cd91993d70d9c8292453d111a", - [ - null, - {} - ] + [ + "url/historical.any.worker.html", + {} + ] + ], + "idlharness-shadowrealm.window.js": [ + "2373f84e0e251a967c221ee63a1f7076bb089f78", + [ + "url/idlharness-shadowrealm.window.html", + { + "script_metadata": [ + [ + "script", + "/resources/idlharness-shadowrealm.js" + ] + ] + } + ] + ], + "idlharness.any.js": [ + "4a0e52f12b3c32b63cd4723b6b68bfd793e02700", + [ + "url/idlharness.any.html", + { + "script_metadata": [ + [ + "script", + "/resources/WebIDLParser.js" + ], + [ + "script", + "/resources/idlharness.js" + ] + ] + } ], - "repeat-iteration-event-002.svg": [ - "6d2f379a82d525932cf754a40b2223d3eaed3b1d", - [ - null, - {} - ] + [ + "url/idlharness.any.worker.html", + { + "script_metadata": [ + [ + "script", + "/resources/WebIDLParser.js" + ], + [ + "script", + "/resources/idlharness.js" + ] + ] + } + ] + ], + "javascript-urls.window.js": [ + "4f617beca17082dc8459acb73bca781900170593", + [ + "url/javascript-urls.window.html", + {} + ] + ], + "percent-encoding.window.js": [ + "dcb5c1e55b21b7830fe79f61f071c33b97bb986a", + [ + "url/percent-encoding.window.html", + {} + ] + ], + "toascii.window.js": [ + "cdc488ec28526f530031b66b63b3c23ff7dad430", + [ + "url/toascii.window.html", + {} + ] + ], + "url-constructor.any.js": [ + "b4b639b813e9752db24c38e94dcf57c084ee52fd", + [ + "url/url-constructor.any.html?exclude=(file|javascript|mailto)", + { + "script_metadata": [ + [ + "script", + "/common/subset-tests-by-key.js" + ], + [ + "timeout", + "long" + ], + [ + "variant", + "?include=file" + ], + [ + "variant", + "?include=javascript" + ], + [ + "variant", + "?include=mailto" + ], + [ + "variant", + "?exclude=(file|javascript|mailto)" + ] + ], + "timeout": "long" + } ], - "repeat-iteration-event-003.svg": [ - "50cb47e61e6219cd1c7841b5992780580e9dff1c", - [ - null, - {} - ] + [ + "url/url-constructor.any.html?include=file", + { + "script_metadata": [ + [ + "script", + "/common/subset-tests-by-key.js" + ], + [ + "timeout", + "long" + ], + [ + "variant", + "?include=file" + ], + [ + "variant", + "?include=javascript" + ], + [ + "variant", + "?include=mailto" + ], + [ + "variant", + "?exclude=(file|javascript|mailto)" + ] + ], + "timeout": "long" + } ], - "repeat-iteration-event-004.svg": [ - "93c12d6662f8f4c08f9695f8c98ba5e80dcc9612", - [ - null, - {} - ] + [ + "url/url-constructor.any.html?include=javascript", + { + "script_metadata": [ + [ + "script", + "/common/subset-tests-by-key.js" + ], + [ + "timeout", + "long" + ], + [ + "variant", + "?include=file" + ], + [ + "variant", + "?include=javascript" + ], + [ + "variant", + "?include=mailto" + ], + [ + "variant", + "?exclude=(file|javascript|mailto)" + ] + ], + "timeout": "long" + } ], - "repeat-iteration-event-005.svg": [ - "63ba7fbcd9f9d3760d7c4380e3863de516b09d2f", - [ - null, - {} - ] + [ + "url/url-constructor.any.html?include=mailto", + { + "script_metadata": [ + [ + "script", + "/common/subset-tests-by-key.js" + ], + [ + "timeout", + "long" + ], + [ + "variant", + "?include=file" + ], + [ + "variant", + "?include=javascript" + ], + [ + "variant", + "?include=mailto" + ], + [ + "variant", + "?exclude=(file|javascript|mailto)" + ] + ], + "timeout": "long" + } ], - "repeat-iteration-event-006.svg": [ - "de4c8f1dae1cff994dc896f1ef0feac8c1bd147d", - [ - null, - {} - ] + [ + "url/url-constructor.any.worker.html?exclude=(file|javascript|mailto)", + { + "script_metadata": [ + [ + "script", + "/common/subset-tests-by-key.js" + ], + [ + "timeout", + "long" + ], + [ + "variant", + "?include=file" + ], + [ + "variant", + "?include=javascript" + ], + [ + "variant", + "?include=mailto" + ], + [ + "variant", + "?exclude=(file|javascript|mailto)" + ] + ], + "timeout": "long" + } ], - "repeatcount-numeric-limit.tentative.svg": [ - "aa0432559bf916c1172c3d30b3bc105cbfb25fdd", - [ - null, - {} - ] + [ + "url/url-constructor.any.worker.html?include=file", + { + "script_metadata": [ + [ + "script", + "/common/subset-tests-by-key.js" + ], + [ + "timeout", + "long" + ], + [ + "variant", + "?include=file" + ], + [ + "variant", + "?include=javascript" + ], + [ + "variant", + "?include=mailto" + ], + [ + "variant", + "?exclude=(file|javascript|mailto)" + ] + ], + "timeout": "long" + } ], - "repeatn-remove-add-animation.html": [ - "8098a8853568a10370bf35f444c6de5d842f07fe", - [ - null, - {} - ] + [ + "url/url-constructor.any.worker.html?include=javascript", + { + "script_metadata": [ + [ + "script", + "/common/subset-tests-by-key.js" + ], + [ + "timeout", + "long" + ], + [ + "variant", + "?include=file" + ], + [ + "variant", + "?include=javascript" + ], + [ + "variant", + "?include=mailto" + ], + [ + "variant", + "?exclude=(file|javascript|mailto)" + ] + ], + "timeout": "long" + } ], - "restart-never-and-begin-click.html": [ - "1a94c8c25b8fe1363993b6bd2635a77bcbf8e87c", - [ - null, - { - "testdriver": true - } - ] + [ + "url/url-constructor.any.worker.html?include=mailto", + { + "script_metadata": [ + [ + "script", + "/common/subset-tests-by-key.js" + ], + [ + "timeout", + "long" + ], + [ + "variant", + "?include=file" + ], + [ + "variant", + "?include=javascript" + ], + [ + "variant", + "?include=mailto" + ], + [ + "variant", + "?exclude=(file|javascript|mailto)" + ] + ], + "timeout": "long" + } + ] + ], + "url-origin.any.js": [ + "b9e0c8585312f6f297a879e979f90212eab3868b", + [ + "url/url-origin.any.html", + {} ], - "scripted": { - "SVGAnimationElement-exceptions.html": [ - "fe06ac1a376d8f772d5ca1ba4ccf5b0ce672ab4c", - [ - null, - {} - ] - ], - "SVGAnimationElement-getStartTime.html": [ - "fec3ff4db207306c8ac895d41d0de6f4bdc4ff34", - [ - null, - {} - ] - ], - "animatetransform-type-missing-value-default.html": [ - "aceca27f4cc725e3354f8870addb5d8697af58ab", - [ - null, - {} - ] - ], - "end-element-on-inactive-element.svg": [ - "34be9b9781f707d488e284c3285b82009557366b", - [ - null, - {} - ] - ], - "onhover-syncbases.html": [ - "de757f369af36db7a072ffa4b4216faa56063ecd", - [ - null, - {} - ] - ], - "paced-value-animation-overwrites-keyTimes.html": [ - "56f67dc5ed1ceeeea347b703f5048b289f95131b", - [ - null, - {} - ] - ] - }, - "seeking-events-1.html": [ - "8a93b45aa199f0581de07ab37cdd7ea34ebbf080", - [ - null, - {} - ] + [ + "url/url-origin.any.worker.html", + {} + ] + ], + "url-searchparams.any.js": [ + "9bba12e89cefd1aa3a79e6de601cd37120f2297a", + [ + "url/url-searchparams.any.html", + {} ], - "seeking-events-2.html": [ - "4bfe05b84d82faf6b9f41a0db610aea23eaa09a5", - [ - null, - {} - ] + [ + "url/url-searchparams.any.worker.html", + {} + ] + ], + "url-setters-a-area.window.js": [ + "6a5e762cd42fe89de25bef44dcad8c537b5b9874", + [ + "url/url-setters-a-area.window.html?exclude=(file|javascript|mailto)", + { + "script_metadata": [ + [ + "script", + "/common/subset-tests-by-key.js" + ], + [ + "variant", + "?include=file" + ], + [ + "variant", + "?include=javascript" + ], + [ + "variant", + "?include=mailto" + ], + [ + "variant", + "?exclude=(file|javascript|mailto)" + ] + ] + } ], - "seeking-events-3.html": [ - "0a8530c212763e3665f424b31f91c7113b2bf3b1", - [ - null, - {} - ] + [ + "url/url-setters-a-area.window.html?include=file", + { + "script_metadata": [ + [ + "script", + "/common/subset-tests-by-key.js" + ], + [ + "variant", + "?include=file" + ], + [ + "variant", + "?include=javascript" + ], + [ + "variant", + "?include=mailto" + ], + [ + "variant", + "?exclude=(file|javascript|mailto)" + ] + ] + } ], - "seeking-events-4.html": [ - "5877f0df3aaa292b5728cdbf53e0024ee35f235e", - [ - null, - {} - ] + [ + "url/url-setters-a-area.window.html?include=javascript", + { + "script_metadata": [ + [ + "script", + "/common/subset-tests-by-key.js" + ], + [ + "variant", + "?include=file" + ], + [ + "variant", + "?include=javascript" + ], + [ + "variant", + "?include=mailto" + ], + [ + "variant", + "?exclude=(file|javascript|mailto)" + ] + ] + } ], - "seeking-events-5.html": [ - "8d660be615f71e79160246b0402d0783b6a2f1df", - [ - null, - {} - ] + [ + "url/url-setters-a-area.window.html?include=mailto", + { + "script_metadata": [ + [ + "script", + "/common/subset-tests-by-key.js" + ], + [ + "variant", + "?include=file" + ], + [ + "variant", + "?include=javascript" + ], + [ + "variant", + "?include=mailto" + ], + [ + "variant", + "?exclude=(file|javascript|mailto)" + ] + ] + } + ] + ], + "url-setters-stripping.any.js": [ + "ac90cc17e0bfd5d26adb329ce1a506d14cbb3698", + [ + "url/url-setters-stripping.any.html", + {} ], - "seeking-events-6.html": [ - "05dfece67ac0dcc410a49adbd7337db61bc99bf3", - [ - null, - {} - ] + [ + "url/url-setters-stripping.any.worker.html", + {} + ] + ], + "url-setters.any.js": [ + "fe88175ac63446927030867fcdacaae768c522c7", + [ + "url/url-setters.any.html?exclude=(file|javascript|mailto)", + { + "script_metadata": [ + [ + "script", + "/common/subset-tests-by-key.js" + ], + [ + "variant", + "?include=file" + ], + [ + "variant", + "?include=javascript" + ], + [ + "variant", + "?include=mailto" + ], + [ + "variant", + "?exclude=(file|javascript|mailto)" + ] + ] + } ], - "seeking-events-7.html": [ - "b3804f84cba026a37891f5b612959ef7e6c3ece7", - [ - null, - {} - ] + [ + "url/url-setters.any.html?include=file", + { + "script_metadata": [ + [ + "script", + "/common/subset-tests-by-key.js" + ], + [ + "variant", + "?include=file" + ], + [ + "variant", + "?include=javascript" + ], + [ + "variant", + "?include=mailto" + ], + [ + "variant", + "?exclude=(file|javascript|mailto)" + ] + ] + } ], - "seeking-events-8.html": [ - "f679f2f06fbef77ce3875d054791d3f1051e2ca9", - [ - null, - {} - ] + [ + "url/url-setters.any.html?include=javascript", + { + "script_metadata": [ + [ + "script", + "/common/subset-tests-by-key.js" + ], + [ + "variant", + "?include=file" + ], + [ + "variant", + "?include=javascript" + ], + [ + "variant", + "?include=mailto" + ], + [ + "variant", + "?exclude=(file|javascript|mailto)" + ] + ] + } ], - "seeking-to-large-time.html": [ - "2f89200cbbc688dc4de7a53f8087c8a40791d360", - [ - null, - {} - ] + [ + "url/url-setters.any.html?include=mailto", + { + "script_metadata": [ + [ + "script", + "/common/subset-tests-by-key.js" + ], + [ + "variant", + "?include=file" + ], + [ + "variant", + "?include=javascript" + ], + [ + "variant", + "?include=mailto" + ], + [ + "variant", + "?exclude=(file|javascript|mailto)" + ] + ] + } ], - "short-simple-duration-and-fractional-repeatcount.html": [ - "025dd5092d3bb77707423b316f10bef8f2fb927d", - [ - null, - {} - ] + [ + "url/url-setters.any.worker.html?exclude=(file|javascript|mailto)", + { + "script_metadata": [ + [ + "script", + "/common/subset-tests-by-key.js" + ], + [ + "variant", + "?include=file" + ], + [ + "variant", + "?include=javascript" + ], + [ + "variant", + "?include=mailto" + ], + [ + "variant", + "?exclude=(file|javascript|mailto)" + ] + ] + } ], - "single-values-animation.html": [ - "40aa3461866cf4c32316d86216dcfe4298be7718", - [ - null, - {} - ] + [ + "url/url-setters.any.worker.html?include=file", + { + "script_metadata": [ + [ + "script", + "/common/subset-tests-by-key.js" + ], + [ + "variant", + "?include=file" + ], + [ + "variant", + "?include=javascript" + ], + [ + "variant", + "?include=mailto" + ], + [ + "variant", + "?exclude=(file|javascript|mailto)" + ] + ] + } ], - "slider-switch.html": [ - "59aa8f29ca54c1f809d1c7080ab9a5038a9d80fe", - [ - null, - {} - ] + [ + "url/url-setters.any.worker.html?include=javascript", + { + "script_metadata": [ + [ + "script", + "/common/subset-tests-by-key.js" + ], + [ + "variant", + "?include=file" + ], + [ + "variant", + "?include=javascript" + ], + [ + "variant", + "?include=mailto" + ], + [ + "variant", + "?exclude=(file|javascript|mailto)" + ] + ] + } ], - "spaces-at-end-of-path-data.html": [ - "235259beccadb2a7d52097918dbde91c07a49b5e", - [ - null, - {} - ] + [ + "url/url-setters.any.worker.html?include=mailto", + { + "script_metadata": [ + [ + "script", + "/common/subset-tests-by-key.js" + ], + [ + "variant", + "?include=file" + ], + [ + "variant", + "?include=javascript" + ], + [ + "variant", + "?include=mailto" + ], + [ + "variant", + "?exclude=(file|javascript|mailto)" + ] + ] + } + ] + ], + "url-statics-canparse.any.js": [ + "74f3da31f0d17527147b4de716cec6d6574f5a66", + [ + "url/url-statics-canparse.any.html", + {} ], - "svgangle-animation-deg-to-grad.html": [ - "7a8146336879a8dccaf8e663d7556e408a8e0048", - [ - null, - {} - ] + [ + "url/url-statics-canparse.any.worker.html", + {} + ] + ], + "url-statics-parse.any.js": [ + "0822e9da07af6a69c2c5e5cc747d312891afbef2", + [ + "url/url-statics-parse.any.html", + {} ], - "svgangle-animation-deg-to-rad.html": [ - "b8ad7300cfa03083409b99ab40299ef6be9ac7dd", - [ - null, - {} - ] + [ + "url/url-statics-parse.any.worker.html", + {} + ] + ], + "url-tojson.any.js": [ + "65165f96c572d9b01fe6a5e27339882c387260dd", + [ + "url/url-tojson.any.html", + {} ], - "svgangle-animation-grad-to-deg.html": [ - "dd5822db8122bf9cf327967faf4afaefbe86805b", - [ - null, - {} - ] + [ + "url/url-tojson.any.worker.html", + {} + ] + ], + "urlencoded-parser.any.js": [ + "847465cb9214e1feac1babb6a1b86ecec9597028", + [ + "url/urlencoded-parser.any.html", + {} ], - "svgangle-animation-grad-to-rad.html": [ - "28bef66d0ff3372f255b3383cb2bec790d0281cb", - [ - null, - {} - ] + [ + "url/urlencoded-parser.any.worker.html", + {} + ] + ], + "urlsearchparams-append.any.js": [ + "5a7376144d0637e52cd470491f88779220b43b99", + [ + "url/urlsearchparams-append.any.html", + {} ], - "svgangle-animation-rad-to-deg.html": [ - "412f384cc7b1b9c85ebc72eabc3648b9c0a164d7", - [ - null, - {} - ] + [ + "url/urlsearchparams-append.any.worker.html", + {} + ] + ], + "urlsearchparams-constructor.any.js": [ + "d482911350ba0fabeb127d0fb78cbd1dd71d4d45", + [ + "url/urlsearchparams-constructor.any.html", + {} ], - "svgangle-animation-rad-to-grad.html": [ - "d27c052be2e1a45afe9a05a9939b4aea72db89a8", - [ - null, - {} - ] + [ + "url/urlsearchparams-constructor.any.worker.html", + {} + ] + ], + "urlsearchparams-delete.any.js": [ + "c597142c51d5bf3cdea286cf7a6e191d4e3be828", + [ + "url/urlsearchparams-delete.any.html", + {} ], - "svgangle-animation-unitType.html": [ - "fc306360c0f09cc57b5c82abbc315d9320bb8d91", - [ - null, - {} - ] + [ + "url/urlsearchparams-delete.any.worker.html", + {} + ] + ], + "urlsearchparams-foreach.any.js": [ + "ff19643ac220d123be45f01af45fedde8d2d05c1", + [ + "url/urlsearchparams-foreach.any.html", + {} ], - "svgboolean-animation-1.html": [ - "3e3de673a3c34432b85dd8f630acaeb1f5de93c6", - [ - null, - {} - ] + [ + "url/urlsearchparams-foreach.any.worker.html", + {} + ] + ], + "urlsearchparams-get.any.js": [ + "a2610fc933a772b36157e04e90877e48b632327e", + [ + "url/urlsearchparams-get.any.html", + {} ], - "svgenum-animation-1.html": [ - "05b75e9ad81d5e979834ef25a42ab9f3a42f1d12", - [ - null, - {} - ] + [ + "url/urlsearchparams-get.any.worker.html", + {} + ] + ], + "urlsearchparams-getall.any.js": [ + "5d1a35352acf2c7c35f372a6c0462e98948c6569", + [ + "url/urlsearchparams-getall.any.html", + {} ], - "svgenum-animation-10.html": [ - "e645ea5066fcb24dc90e3f026be57ac5b9f5e175", - [ - null, - {} - ] + [ + "url/urlsearchparams-getall.any.worker.html", + {} + ] + ], + "urlsearchparams-has.any.js": [ + "2133a5da2f8b91cbb070436f74be9a2b84f32699", + [ + "url/urlsearchparams-has.any.html", + {} ], - "svgenum-animation-11.html": [ - "ebf8409f2e08a05748d588bb58c0d3592cb378fb", - [ - null, - {} - ] + [ + "url/urlsearchparams-has.any.worker.html", + {} + ] + ], + "urlsearchparams-set.any.js": [ + "eb24cac87b6dca1d3dd3bb2ed083745be3e1ca36", + [ + "url/urlsearchparams-set.any.html", + {} ], - "svgenum-animation-12.html": [ - "bd60bbc20c42c8000d3d8459d47c03775c7211be", - [ - null, - {} - ] + [ + "url/urlsearchparams-set.any.worker.html", + {} + ] + ], + "urlsearchparams-size.any.js": [ + "7b3abc7c0b421cdb327921712a965aaaa03278b2", + [ + "url/urlsearchparams-size.any.html", + {} ], - "svgenum-animation-13.html": [ - "c6dbb0c44dece98c0b4b63e2733636631e4648f3", - [ - null, - {} - ] + [ + "url/urlsearchparams-size.any.worker.html", + {} + ] + ], + "urlsearchparams-sort.any.js": [ + "4fd8cef69239d26eb6241df180453aedf00cc050", + [ + "url/urlsearchparams-sort.any.html", + {} ], - "svgenum-animation-2.html": [ - "a1e27a5ef3e60003dedb3440ef4e9b972f696ccd", - [ - null, - {} - ] + [ + "url/urlsearchparams-sort.any.worker.html", + {} + ] + ], + "urlsearchparams-stringifier.any.js": [ + "6187db64b1747d294a18cf0d2182b2f045d29a7b", + [ + "url/urlsearchparams-stringifier.any.html", + {} ], - "svgenum-animation-3.html": [ - "5ed9f5aa8819510f8a7701e5edb7d00fb716aa70", - [ - null, - {} - ] + [ + "url/urlsearchparams-stringifier.any.worker.html", + {} + ] + ] + }, + "urlpattern": { + "urlpattern-compare.any.js": [ + "8db38adfd41d47dd5f9b5d588002bec0d5b2adfe", + [ + "urlpattern/urlpattern-compare.any.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "resources/urlpattern-compare-tests.js" + ] + ] + } ], - "svgenum-animation-4.html": [ - "652e49655e1027ce7a6a8c3d6ad29d76eb6fc85b", - [ - null, - {} - ] + [ + "urlpattern/urlpattern-compare.any.serviceworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "resources/urlpattern-compare-tests.js" + ] + ] + } ], - "svgenum-animation-5.html": [ - "1487918bde23a642fd5a49de844b5e880d662f27", - [ - null, - {} - ] + [ + "urlpattern/urlpattern-compare.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "resources/urlpattern-compare-tests.js" + ] + ] + } ], - "svgenum-animation-6.html": [ - "e60c93bbbf67cbfbe0bfe7a7f655ac3cb2feb44e", - [ - null, - {} - ] + [ + "urlpattern/urlpattern-compare.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "resources/urlpattern-compare-tests.js" + ] + ] + } + ] + ], + "urlpattern-compare.https.any.js": [ + "8db38adfd41d47dd5f9b5d588002bec0d5b2adfe", + [ + "urlpattern/urlpattern-compare.https.any.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "resources/urlpattern-compare-tests.js" + ] + ] + } ], - "svgenum-animation-7.html": [ - "4e2d27e581c687106d3056f825ad11b2efaefdd4", - [ - null, - {} - ] + [ + "urlpattern/urlpattern-compare.https.any.serviceworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "resources/urlpattern-compare-tests.js" + ] + ] + } ], - "svgenum-animation-8.html": [ - "cd00e46d56d7133b565adebad45aa4efe341313f", - [ - null, - {} - ] + [ + "urlpattern/urlpattern-compare.https.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "resources/urlpattern-compare-tests.js" + ] + ] + } ], - "svgenum-animation-9.html": [ - "8aa9d6a761803b726c4de7f8a6eee1df31c2a55c", - [ - null, - {} - ] + [ + "urlpattern/urlpattern-compare.https.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "resources/urlpattern-compare-tests.js" + ] + ] + } + ] + ], + "urlpattern-hasregexpgroups.any.js": [ + "33133d2511b065ca94cc5e793066cc8111b4d6e6", + [ + "urlpattern/urlpattern-hasregexpgroups.any.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "resources/urlpattern-hasregexpgroups-tests.js" + ] + ] + } ], - "svginteger-animation-1.html": [ - "7803541691858ddf64f63c7486ad369254572220", - [ - null, - {} - ] + [ + "urlpattern/urlpattern-hasregexpgroups.any.serviceworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "resources/urlpattern-hasregexpgroups-tests.js" + ] + ] + } ], - "svginteger-animation-2.html": [ - "25ef7ff08effb49c9953981756d482846b590aaf", - [ - null, - {} - ] + [ + "urlpattern/urlpattern-hasregexpgroups.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "resources/urlpattern-hasregexpgroups-tests.js" + ] + ] + } ], - "svglength-additive-by-1.html": [ - "67549890cff56769c3df9973266b76e128f90c6d", - [ - null, - {} - ] + [ + "urlpattern/urlpattern-hasregexpgroups.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "resources/urlpattern-hasregexpgroups-tests.js" + ] + ] + } + ] + ], + "urlpattern.any.js": [ + "7d47d22609bf8eb14386b0363e36b86f77b2780d", + [ + "urlpattern/urlpattern.any.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "resources/urlpatterntests.js" + ] + ] + } ], - "svglength-additive-by-2.html": [ - "e08c99cb63eebf462bcd037ad0219145b291aa9f", - [ - null, - {} - ] + [ + "urlpattern/urlpattern.any.serviceworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "resources/urlpatterntests.js" + ] + ] + } ], - "svglength-additive-by-3.html": [ - "b5ac7a033ec2524e9bd8119227dcc88f63924254", - [ - null, - {} - ] + [ + "urlpattern/urlpattern.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "resources/urlpatterntests.js" + ] + ] + } ], - "svglength-additive-by-4.html": [ - "10e8bd7b491a9083141dd4d260db951046096fe2", - [ - null, - {} - ] + [ + "urlpattern/urlpattern.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "resources/urlpatterntests.js" + ] + ] + } + ] + ], + "urlpattern.https.any.js": [ + "7d47d22609bf8eb14386b0363e36b86f77b2780d", + [ + "urlpattern/urlpattern.https.any.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "resources/urlpatterntests.js" + ] + ] + } ], - "svglength-additive-by-6.html": [ - "43beafe220e4c02d312da9fe4a653054d40d3d0d", - [ - null, - {} - ] + [ + "urlpattern/urlpattern.https.any.serviceworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "resources/urlpatterntests.js" + ] + ] + } ], - "svglength-additive-by-7.html": [ - "7c1dde4a7c6262d64130ef84e4fa0b05b360b154", - [ - null, - {} - ] + [ + "urlpattern/urlpattern.https.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "resources/urlpatterntests.js" + ] + ] + } ], - "svglength-additive-by-8.html": [ - "459fc7382a596292d913ab9643be6b32a32726e2", - [ - null, - {} - ] + [ + "urlpattern/urlpattern.https.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "resources/urlpatterntests.js" + ] + ] + } + ] + ] + }, + "user-timing": { + "buffered-flag.any.js": [ + "f938c8522d829a5d4c0a28483fb1196be5512323", + [ + "user-timing/buffered-flag.any.html", + {} ], - "svglength-additive-from-by-1.html": [ - "ce458e0266c68665a68adab94aa706ed4ccb4a84", - [ - null, - {} - ] + [ + "user-timing/buffered-flag.any.worker.html", + {} + ] + ], + "case-sensitivity.any.js": [ + "1c0b0dcac361fe02eefc1dd5035955d10dc37151", + [ + "user-timing/case-sensitivity.any.html", + {} ], - "svglength-additive-from-by-2.html": [ - "1ac7eed4e1b3d03b5b44dde6fad6209f21ab0aa4", - [ - null, - {} - ] + [ + "user-timing/case-sensitivity.any.worker.html", + {} + ] + ], + "clearMarks.html": [ + "92c60a3bbb856bd05bf13f12bde09dac7eefb6e6", + [ + null, + {} + ] + ], + "clearMeasures.html": [ + "54d41005698305844088b347c11982c626947504", + [ + null, + {} + ] + ], + "clear_all_marks.any.js": [ + "35cd2a04f610369f69442bd27e2e8f00f01a27b1", + [ + "user-timing/clear_all_marks.any.html", + {} ], - "svglength-additive-from-by-3.html": [ - "1c22f351da43b6723a360706c23ed6f351844e70", - [ - null, - {} - ] + [ + "user-timing/clear_all_marks.any.worker.html", + {} + ] + ], + "clear_all_measures.any.js": [ + "32c993f2827a301feb7bcb69c11317d4020f12f2", + [ + "user-timing/clear_all_measures.any.html", + {} ], - "svglength-additive-from-by-4.html": [ - "998c37458f98538333395d74e1f89a21ac7f0548", - [ - null, - {} - ] + [ + "user-timing/clear_all_measures.any.worker.html", + {} + ] + ], + "clear_non_existent_mark.any.js": [ + "c7d8b4786134015f7aea7ab1852ef7ad0277926b", + [ + "user-timing/clear_non_existent_mark.any.html", + {} ], - "svglength-animation-LengthModeHeight.html": [ - "2bb409e8e10ea7ba72fdf882e8c7a300e822c1ce", - [ - null, - {} - ] + [ + "user-timing/clear_non_existent_mark.any.worker.html", + {} + ] + ], + "clear_non_existent_measure.any.js": [ + "9de0b5f266d4e2815f28fb29468ea571ba7a1bad", + [ + "user-timing/clear_non_existent_measure.any.html", + {} ], - "svglength-animation-LengthModeOther.html": [ - "1fd9e0a3b9b0f2093f35769dc91a1badea5b4a86", - [ - null, - {} - ] + [ + "user-timing/clear_non_existent_measure.any.worker.html", + {} + ] + ], + "clear_one_mark.any.js": [ + "c180199d8c9f9224311d09c2299d2f1220dff970", + [ + "user-timing/clear_one_mark.any.html", + {} ], - "svglength-animation-LengthModeWidth.html": [ - "9481d434b9a11f8f2753497924a762a5c1e95662", - [ - null, - {} - ] + [ + "user-timing/clear_one_mark.any.worker.html", + {} + ] + ], + "clear_one_measure.any.js": [ + "a5e663772c8bbe9ce9f845ac471fbf10dd5a2867", + [ + "user-timing/clear_one_measure.any.html", + {} ], - "svglength-animation-invalid-value-1.html": [ - "90a45efa32045efad2f01c7e675ee45db802fda1", - [ - null, - {} - ] + [ + "user-timing/clear_one_measure.any.worker.html", + {} + ] + ], + "entry_type.any.js": [ + "1e37453d09d42ea9c530bc2902cccb8f66fd6efd", + [ + "user-timing/entry_type.any.html", + {} ], - "svglength-animation-invalid-value-2.html": [ - "f9a6bcc40d1425080cfa7793d99011a07a6d9572", - [ - null, - {} - ] + [ + "user-timing/entry_type.any.worker.html", + {} + ] + ], + "idlharness-shadowrealm.window.js": [ + "340da96f749d4910af1c487fa3ae0fa9d91f4d59", + [ + "user-timing/idlharness-shadowrealm.window.html", + { + "script_metadata": [ + [ + "script", + "/resources/idlharness-shadowrealm.js" + ] + ] + } + ] + ], + "idlharness.any.js": [ + "511f2d0455b833a895ae9e52230ef82681851142", + [ + "user-timing/idlharness.any.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "/resources/WebIDLParser.js" + ], + [ + "script", + "/resources/idlharness.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "svglength-animation-invalid-value-3.html": [ - "1e16245001a5354ec6304651e3dbdd29a60c5485", - [ - null, - {} - ] + [ + "user-timing/idlharness.any.serviceworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "/resources/WebIDLParser.js" + ], + [ + "script", + "/resources/idlharness.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "svglength-animation-number-to-number.html": [ - "0b4fca52ec0f878023ce6ba62fcde0e7426bbc8d", - [ - null, - {} - ] + [ + "user-timing/idlharness.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "/resources/WebIDLParser.js" + ], + [ + "script", + "/resources/idlharness.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "svglength-animation-px-to-cm.html": [ - "f51beed02b3df9382df78d5ba211c9555bfd5d87", - [ - null, - {} - ] + [ + "user-timing/idlharness.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "/resources/WebIDLParser.js" + ], + [ + "script", + "/resources/idlharness.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } + ] + ], + "invoke_with_timing_attributes.html": [ + "1df94a3006d7fb93039875d1cdb0b4c34385d54f", + [ + null, + {} + ] + ], + "invoke_with_timing_attributes.worker.js": [ + "32677c64d3bd5f63e5182541634c3e9abb0a0bea", + [ + "user-timing/invoke_with_timing_attributes.worker.html", + {} + ] + ], + "invoke_without_parameter.html": [ + "114435e59befbba8f760d45e1413ffc56d2e864b", + [ + null, + {} + ] + ], + "mark-entry-constructor.any.js": [ + "ef9c403dda67236893e72f0f65a4bff4718b12ed", + [ + "user-timing/mark-entry-constructor.any.html", + { + "script_metadata": [ + [ + "script", + "resources/user-timing-helper.js" + ] + ] + } ], - "svglength-animation-px-to-ems.html": [ - "e65125303e10d3572cc53abef54d8cad4a781df2", - [ - null, - {} - ] + [ + "user-timing/mark-entry-constructor.any.worker.html", + { + "script_metadata": [ + [ + "script", + "resources/user-timing-helper.js" + ] + ] + } + ] + ], + "mark-errors.any.js": [ + "39bafc045cb721c520d99b3f38c8e460bf6d4bcc", + [ + "user-timing/mark-errors.any.html", + {} ], - "svglength-animation-px-to-in.html": [ - "a55b357187aa01dc9eaace04a89eb17cd2ad6557", - [ - null, - {} - ] + [ + "user-timing/mark-errors.any.worker.html", + {} + ] + ], + "mark-l3.any.js": [ + "407a5c8bba6a3c82a05df6a54d829b37f3a72264", + [ + "user-timing/mark-l3.any.html", + { + "script_metadata": [ + [ + "script", + "resources/user-timing-helper.js" + ] + ] + } ], - "svglength-animation-px-to-number.html": [ - "8eab444caa3eda56eda3f5600f5f031d68b8d60e", - [ - null, - {} - ] + [ + "user-timing/mark-l3.any.worker.html", + { + "script_metadata": [ + [ + "script", + "resources/user-timing-helper.js" + ] + ] + } + ] + ], + "mark-measure-feature-detection.html": [ + "6f1ad489e95680fc5d1be4e25dcaa2eeee9a0aa5", + [ + null, + {} + ] + ], + "mark-measure-return-objects.any.js": [ + "bb15c5839818babf731bfec600395e13e5b794aa", + [ + "user-timing/mark-measure-return-objects.any.html", + {} ], - "svglength-animation-px-to-pc.html": [ - "62d9d9964f1dc9a1952cf45417572fc6a13a99cc", - [ - null, - {} - ] + [ + "user-timing/mark-measure-return-objects.any.worker.html", + {} + ] + ], + "mark.any.js": [ + "7e814d2074ca8bb9015bea02b741ce9875decec2", + [ + "user-timing/mark.any.html", + {} ], - "svglength-animation-px-to-pt.html": [ - "d86e09075788d37c05f418252686fe3d8c56b87a", - [ - null, - {} - ] + [ + "user-timing/mark.any.worker.html", + {} + ] + ], + "mark.html": [ + "e03e9e6247adabb186783e06a493dcc3a7ecb464", + [ + null, + {} + ] + ], + "mark_exceptions.html": [ + "b445c6b8778ae7aa0cff1cfcdbe789c2b0ddfc7d", + [ + null, + {} + ] + ], + "measure-exceptions.html": [ + "2836eaee2a86c10997893f3e9b77c86079030019", + [ + null, + {} + ] + ], + "measure-l3.any.js": [ + "642b55ab635e2c021d99c1aaf3e924ca2c5c0c29", + [ + "user-timing/measure-l3.any.html", + { + "script_metadata": [ + [ + "script", + "resources/user-timing-helper.js" + ] + ] + } ], - "svglength-animation-px-to-px.html": [ - "fdeb773375a290d6f925d42be90dd0401222947f", - [ - null, - {} - ] + [ + "user-timing/measure-l3.any.worker.html", + { + "script_metadata": [ + [ + "script", + "resources/user-timing-helper.js" + ] + ] + } + ] + ], + "measure-with-dict.any.js": [ + "b452feb0de6fbb4749208baf0153bb12ab79ef04", + [ + "user-timing/measure-with-dict.any.html", + { + "script_metadata": [ + [ + "script", + "resources/user-timing-helper.js" + ] + ] + } ], - "svglength-animation-unitType.html": [ - "4cd6d2d3af5e94e259195cc1d5599132dd8a69b6", - [ - null, - {} - ] + [ + "user-timing/measure-with-dict.any.worker.html", + { + "script_metadata": [ + [ + "script", + "resources/user-timing-helper.js" + ] + ] + } + ] + ], + "measure.html": [ + "40f71a3362b581f3d0b23f5c0202a5d400a499b9", + [ + null, + {} + ] + ], + "measure_associated_with_navigation_timing.html": [ + "a874ad9172026b16409aac5a25eb4cb1bb9842b8", + [ + null, + {} + ] + ], + "measure_exception.html": [ + "5c1aa086c0fc882e4dd3c10ee2da637ead46b373", + [ + null, + {} + ] + ], + "measure_exceptions_navigation_timing.html": [ + "b1868b2cb6b3cb1b27b4774a9b30156b5b8952a7", + [ + null, + {} + ] + ], + "measure_navigation_timing.html": [ + "d6480d27a261c90dbe8c7cd9ddb3e20131efc068", + [ + null, + {} + ] + ], + "measure_syntax_err.any.js": [ + "9b762a40906351500527b9464837f50c04f77f3b", + [ + "user-timing/measure_syntax_err.any.html", + {} ], - "svglength-animation-values.html": [ - "a3e485320b0e76b9e6cc5c176c4e114d939f56bb", - [ - null, - {} - ] + [ + "user-timing/measure_syntax_err.any.worker.html", + {} + ] + ], + "measures.html": [ + "0de68965ddb9c7a53ca5595874bb20a3d7d2ca71", + [ + null, + {} + ] + ], + "performance-measure-invalid.worker.js": [ + "bab3c35dcb6db5541faa2b69b4e18a4bf8feaaea", + [ + "user-timing/performance-measure-invalid.worker.html", + {} + ] + ], + "structured-serialize-detail.any.js": [ + "dcceffde278df17a1dcf86f9ee11c519bbdc1abd", + [ + "user-timing/structured-serialize-detail.any.html", + {} ], - "svglengthlist-animation-1.html": [ - "198fc8a6fef879ea9397f6668b38a10a9b4d755a", - [ - null, - {} - ] + [ + "user-timing/structured-serialize-detail.any.worker.html", + {} + ] + ], + "supported-usertiming-types.any.js": [ + "ea3b2fe9dc90f70f3998a94a1460460b8b8b5992", + [ + "user-timing/supported-usertiming-types.any.html", + {} ], - "svglengthlist-animation-2.html": [ - "c1c91b83f0f652d3d04e277c3a13d116af291147", - [ - null, - {} - ] + [ + "user-timing/supported-usertiming-types.any.worker.html", + {} + ] + ], + "user-timing-tojson.html": [ + "6aef7fa904ab958a4c3f8600ea592fac418d0522", + [ + null, + {} + ] + ], + "user_timing_exists.any.js": [ + "adf9052ebd58d8b3bb7ad85bca385095212b38ea", + [ + "user-timing/user_timing_exists.any.html", + {} ], - "svglengthlist-animation-3.html": [ - "d26e67a8a05a049378bda86cc15ff2e5dbedc2fa", + [ + "user-timing/user_timing_exists.any.worker.html", + {} + ] + ] + }, + "vibration": { + "api-is-present.html": [ + "70aa4047e11b9708aa300c878164cde0da811ec1", + [ + null, + {} + ] + ], + "idlharness.window.js": [ + "a3cfbc11e03f18c741e779af8ed5ce59b2e18385", + [ + "vibration/idlharness.window.html", + { + "script_metadata": [ + [ + "script", + "/resources/WebIDLParser.js" + ], + [ + "script", + "/resources/idlharness.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } + ] + ], + "invalid-values.html": [ + "b5a3f39ac68c80c74ad43381519267c63c421786", + [ + null, + {} + ] + ], + "silent-ignore.html": [ + "a04c648bd181c24af4e63e8d3cb5ad6ca706654a", + [ + null, + { + "testdriver": true + } + ] + ] + }, + "video-rvfc": { + "idlharness.window.js": [ + "fa9e4e0988bf67c88dccd297cf564bb97d5de6bd", + [ + "video-rvfc/idlharness.window.html", + { + "script_metadata": [ + [ + "script", + "/resources/WebIDLParser.js" + ], + [ + "script", + "/resources/idlharness.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } + ] + ], + "request-video-frame-callback-before-xr-session.https.html": [ + "5277fbba92fbf63579ad4d4d5a2ca1dc2e356cd6", + [ + null, + {} + ] + ], + "request-video-frame-callback-dom.html": [ + "c1804b4edd0c986aa161dfc13179983c04ace404", + [ + null, + {} + ] + ], + "request-video-frame-callback-during-xr-session.https.html": [ + "7afbabcee0b7760d852f4e0139f4693b7f402190", + [ + null, + {} + ] + ], + "request-video-frame-callback-parallel.html": [ + "682fd0ac8f6a22006e015c2f9b621da84fe53e04", + [ + null, + {} + ] + ], + "request-video-frame-callback-repeating.html": [ + "38e4abafd4afe963232ec7427afa5cbd57bc734d", + [ + null, + {} + ] + ], + "request-video-frame-callback-webrtc.https.html": [ + "22c90f8460500dd126b133caa177b92332a310d5", + [ + null, + {} + ] + ], + "request-video-frame-callback.html": [ + "256216e8fc098482baf267d95fc5f2ceca430c53", + [ + null, + {} + ] + ] + }, + "virtual-keyboard": { + "idlharness.https.window.js": [ + "8a40e68575f0fc7383f660346e8b98c646c798e2", + [ + "virtual-keyboard/idlharness.https.window.html", + { + "script_metadata": [ + [ + "timeout", + "long" + ], + [ + "script", + "/resources/WebIDLParser.js" + ], + [ + "script", + "/resources/idlharness.js" + ] + ], + "timeout": "long" + } + ] + ], + "virtual-keyboard-policy.html": [ + "67782020d3c8049093a70097271fe4d943ae1be2", + [ + null, + {} + ] + ], + "virtual-keyboard-type.https.html": [ + "47d09ce04781a4c7c1aec62336542f8ca06e0d71", + [ + null, + {} + ] + ] + }, + "visual-viewport": { + "page-and-offset-in-iframe.html": [ + "086c816956e8f33929e9e0c3249c9d0555a6e565", + [ + null, + { + "testdriver": true + } + ] + ], + "resize-event-order.html": [ + "41a13728bc3ff61cfc32bb02839eab5a11d1d33b", + [ + null, + { + "testdriver": true + } + ] + ], + "scroll-event-order.html": [ + "da5b77c0e26a3950dfd1e4d3018dbbbabeb67f9b", + [ + null, + { + "testdriver": true + } + ] + ], + "viewport-no-resize-event-on-overflow-recalc.html": [ + "dcb9432da83cb21b6f0403080d3c7b3b5df1659e", + [ + null, + {} + ] + ], + "viewport-read-size-causes-layout.html": [ + "0520a7cf8056cf65a996ea953232544d34c56bb0", + [ + null, + {} + ] + ], + "viewport-read-size-in-iframe-causes-layout.html": [ + "a08f7e876fcbe51b6ad2cb9fd1083b904ca1b459", + [ + null, + {} + ] + ], + "viewport-resize-event-on-iframe-show.html": [ + "688148a88fb21f899a16a710f24dd4836631fd13", + [ + null, + {} + ] + ], + "viewport-resize-event-on-iframe-size-change.html": [ + "802fee7879200a8e9352a54ba0a5f9719ca5f401", + [ + null, + {} + ] + ], + "viewport-resize-event-on-load-overflowing-page.html": [ + "d5dc1deae7279d3dc1b8c67a3a92e65c7a5e409d", + [ + null, + {} + ] + ], + "viewport-scrollbars-cause-resize-in-iframe.html": [ + "ce9ec3276886b5786ffe1309251469e92f29e1a9", + [ + null, + {} + ] + ], + "viewport-scrollbars-cause-resize.html": [ + "086e8d92b087afe8aea2fbc91c1f96dd7d328e72", + [ + null, + {} + ] + ], + "viewport-segments.tentative.html": [ + "c90ed29d730dbaf98b1638893c8688d8b574cf04", + [ + null, + {} + ] + ], + "viewport-type.html": [ + "7a9ca425c082cad059f6870afaafcbf4f64a7ae5", + [ + null, + {} + ] + ], + "viewport-unscaled-scale-iframe.html": [ + "30d9bfbe8967a4bd3f1a5f802f7a4103172d73b9", + [ + null, + {} + ] + ], + "viewport-unscaled-scale.html": [ + "b83015d8d167abe583d335a85bb9941ee7fe47b0", + [ + null, + {} + ] + ], + "viewport-unscaled-scroll-iframe.html": [ + "f9e3023ab795120385dd9f8bd55a87e0a94a08f7", + [ + null, + {} + ] + ], + "viewport-unscaled-scroll.html": [ + "93623d19625030ce0b42711b1b29db901c2fdf06", + [ + null, + {} + ] + ], + "viewport-unscaled-size-iframe.html": [ + "31df6a05fdaeba424ac8b4bcbb1a6e09ef5c0fcc", + [ + null, + {} + ] + ], + "viewport-unscaled-size.html": [ + "8ad9fb2cfeb44c10320c742c3e8de4a733105c78", + [ + null, + {} + ] + ] + }, + "wai-aria": { + "idlharness.window.js": [ + "590bf9e2e9fec8773a4ba01fd34bb71250a58c33", + [ + "wai-aria/idlharness.window.html", + { + "script_metadata": [ + [ + "script", + "/resources/WebIDLParser.js" + ], + [ + "script", + "/resources/idlharness.js" + ] + ] + } + ] + ], + "role": { + "abstract-roles.html": [ + "520ecf2dbb398d3978543b915813257e9c7a7b1c", [ null, { - "timeout": "long" + "testdriver": true } ] ], - "svglengthlist-animation-4.html": [ - "0e890ab5f5a16e53ce10a3f7c68e99a25e764989", + "basic.html": [ + "5fbe1fe2aa50cc5b00a59280286c471e69049eef", [ null, - {} + { + "testdriver": true + } ] ], - "svglengthlist-animation-5.html": [ - "5d0bc2b4836fcc934b4676eb1d79e23e15b5e148", + "button-roles.html": [ + "23d0cd22d619f0c25cef10241151f09b30d25211", [ null, - {} + { + "testdriver": true + } ] ], - "svglengthlist-animation-unitType.html": [ - "0dcb8a7962f53f5fc864a2492dff49bd73477427", + "contextual-roles.html": [ + "234f42bb7928bf930b49c9f5ff04d79397816507", [ null, - {} + { + "testdriver": true + } ] ], - "svgnumber-animation-1.html": [ - "72c2d736771868b615d723958324307a6f96be66", + "contextual-roles.tentative.html": [ + "efec67b7ae57b5b177f131c5bf9feb70406b0a10", [ null, - {} + { + "testdriver": true + } ] ], - "svgnumber-animation-2.html": [ - "1654480ffced7d79bf28595664bc6dc8d524ba07", + "fallback-roles.html": [ + "98011570b4f074bf23871a91f404e74ea6001674", [ null, - {} + { + "testdriver": true + } ] ], - "svgnumber-animation-3.html": [ - "255eeb0a94c66f6337af8079f6eef8e6416586e4", + "form-roles.html": [ + "935899c583be85b4a8593567a94e87c826dc0d87", [ null, - {} + { + "testdriver": true + } ] ], - "svgnumber-animation-4.html": [ - "758138d6678a2afa778c766b9072e47307e5341d", + "generic-roles.html": [ + "9a67312dd8cfbfdf2cb194cc5ac1d40b3c20afab", [ null, - {} + { + "testdriver": true + } ] ], - "svgnumberlist-animation-1.html": [ - "aabb7d7daa159409706ad2ff59e54220218f25a2", + "grid-roles.html": [ + "c67119725869c0a6411686fe1840f08c920fec9c", [ null, - {} + { + "testdriver": true + } ] ], - "svgnumberlist-animation-2.html": [ - "e62bbf68602dbe439b2659aac3727f8f6c40e2d0", + "grid-roles.tentative.html": [ + "49d54195c908557adf38e35ef6b7e4c9fe9c80c1", [ null, - {} + { + "testdriver": true + } ] ], - "svgnumberoptionalnumber-animation-1.html": [ - "b20855140ffcd398778d3375aa9ac395aa221776", + "invalid-roles.html": [ + "3f4255083e1adf05202cad3a4ae8d4a58b7f5e07", [ null, - {} + { + "testdriver": true + } ] ], - "svgnumberoptionalnumber-animation-2.html": [ - "db2576533ce22a0a4aa68d8113ae858bf1cf17aa", + "list-roles.html": [ + "da097ce67e8932b6d4ec4d9a533b8b8fdf43b20c", [ null, - {} + { + "testdriver": true + } ] ], - "svgnumberoptionalnumber-animation-3.html": [ - "974c1d7034a86e585c84cf9576fb231db7601fc3", + "list-roles.tentative.html": [ + "3106424ac3668ecdb3dbf48f499af134dd479fa4", [ null, - {} + { + "testdriver": true + } ] ], - "svgnumberoptionalnumber-animation-4.html": [ - "4c734b5373762e9844511f5ac7b550743a50f0b2", + "listbox-roles.html": [ + "100ef6bca72e6d8ad74c183e1245bed8f151cad8", [ null, - {} + { + "testdriver": true + } ] ], - "svgpath-animation-1.tentative.html": [ - "3df821d7c310f6c1607786f14a6c6bafef272fb5", + "listbox-roles.tentative.html": [ + "e32c565aa9aa175204224ce7c13ca27679458913", [ null, - {} + { + "testdriver": true + } ] ], - "svgpointlist-animation-1.html": [ - "a3340ba83a2a0f6846d0a9e7faa1c27dd49a1383", + "menu-roles.html": [ + "edb5cce5021c6a815d0f1aac7b82967daa7cb84c", [ null, - {} + { + "testdriver": true + } ] ], - "svgpointlist-animation-2.html": [ - "e0819cd519c7e0a6a05bdd8e6cfa0991433f0f99", + "menu-roles.tentative.html": [ + "98e032e16e0d848c722cec7ba25b208ba5e30d66", [ null, - {} + { + "testdriver": true + } ] ], - "svgrect-animation-1.html": [ - "d13ccff418ff36c3f928e45aa14766a0d041e988", + "region-roles.html": [ + "d80570a97bcdddff7ba6669b792d76de72836913", [ null, - {} + { + "testdriver": true + } ] ], - "svgrect-animation-2.html": [ - "86f5368a3adfa4e40e84327f9170a74c231d0b03", + "role_none_conflict_resolution.html": [ + "9e2ee6ccfe59cea79d39d915b175aec413a1fa85", [ null, - {} + { + "testdriver": true + } ] ], - "svgstring-animation-1.html": [ - "259dfbd27a0a1f203dd3faf6feaad106d782a2b0", + "roles.html": [ + "844da3ce47b0f3ec55ed489b24d27f0bdfc3f380", [ null, - {} + { + "testdriver": true + } ] ], - "svgstring-animation-fallback-to-discrete.html": [ - "8cf6c34af0d4af11e4fa89a9d495936bda0cbfa9", + "roles.tentative.html": [ + "a889c9934ffe236010cc0105f4db762ed1124296", [ null, - {} + { + "testdriver": true + } ] ], - "svgtransform-animation-1.html": [ - "618ba9a31c00bf2ff56bf842ad1ec40fdbfc73fa", + "synonym-roles.html": [ + "f9d3d7d0a9a9958e9a62d2e8f5b2fe33db968985", [ null, - {} + { + "testdriver": true + } ] ], - "svgtransform-animation-discrete.html": [ - "17b78a2787d0becf64b90136fcf0f6f966404baa", + "tab-roles.html": [ + "f84504e0b45c8c831a8eb60acbf2bd7d664070b0", [ null, - {} + { + "testdriver": true + } ] ], - "switching-animated-target-to-unknown-element.html": [ - "fef86a723eebede0641f0fd46f7a2672b184457e", + "tab-roles.tentative.html": [ + "17dd85f6c598f711db85e341c84e4f46220b64ac", [ null, - {} + { + "testdriver": true + } ] ], - "syncbase-remove-add-while-running.html": [ - "61b9604a7b6751a156c48431b89fa2f3cd1af551", - [ - null, - {} - ] - ] - }, - "coordinate-systems": { - "outer-svg-intrinsic-size-001.html": [ - "0d9e2393ad0a16685fca1d5f2b9c378fbe2c851b", + "table-roles.html": [ + "c43533fc77aa1e6d7ee5ab1b94696edcffce7fe3", [ null, - {} + { + "testdriver": true + } ] ], - "outer-svg-intrinsic-size-002.html": [ - "8a65d6491842e150b3fcfc29759667b40764bc09", + "tree-roles.html": [ + "cc56b3a56bd64eab7c929627f7e7a1d88423100e", [ null, - {} + { + "testdriver": true + } ] ], - "svgtransformlist-replaceitem.html": [ - "3322dc91abc51956c67b3d8d82515d33cf1b2fc5", + "tree-roles.tentative.html": [ + "4c6d56ba298e7de4fdfa4f18160130459132fd2a", [ null, - {} + { + "testdriver": true + } ] ] - }, - "embedded": { - "image-crossorigin.sub.html": [ - "531512ec168003a55bd687b1b8db010e161f1b0e", - [ - null, - {} - ] + } + }, + "wasm": { + "create_multiple_memory.worker.js": [ + "5bb1dcfc8a1aa56f0e748dfccd1e65ab48657d45", + [ + "wasm/create_multiple_memory.worker.html", + {} ] - }, - "extensibility": { - "foreignObject": { - "containing-block.html": [ - "da0728c96b5d0eb81435efad329bdcc3ee4dfb26", - [ - null, - {} - ] - ], - "getboundingclientrect.html": [ - "82941bd14b3c6935a6b6a17b89fb390bc1b01b8f", - [ - null, - {} - ] - ], - "properties.svg": [ - "dd198f177dfb2906ce6be9184df9fbbb8feefe93", - [ - null, - {} - ] - ] - }, - "interfaces": { - "foreignObject-graphics.svg": [ - "7745e91f0a3b0308898e13e451b3871e084ae144", - [ - null, - {} - ] - ] - } - }, - "geometry": { - "inheritance.svg": [ - "760328ac31818d86a9410fd7c412d803e30416a2", - [ - null, - {} - ] - ], - "parsing": { - "cx-computed.svg": [ - "c349a6b97c11c6b3078464fd94c75469f9509dec", - [ - null, - {} - ] - ], - "cx-invalid.svg": [ - "4b1b90158fcc7c1747f8b1ab382cd78f394f142c", - [ - null, - {} - ] - ], - "cx-valid.svg": [ - "a96fee56555d69297ab833536ed3177cedfd7145", - [ - null, - {} - ] - ], - "cy-computed.svg": [ - "a37c99560b92edb64fc9083646d0c095fc5ac0b7", + ], + "jsapi": { + "constructor": { + "compile.any.js": [ + "f822aa30e69eb954677d02730923a37b2a0bfabc", [ null, - {} - ] - ], - "cy-invalid.svg": [ - "528eed02ceadb26ff53a42c9950bf508170c2c83", + { + "jsshell": true, + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "cy-valid.svg": [ - "022445662b7d9d519ca28a1eeca47c9199ceafca", + "wasm/jsapi/constructor/compile.any.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "height-computed.svg": [ - "bcc1f9d0e11ab8e223a2aa238ac448273f93ea08", + "wasm/jsapi/constructor/compile.any.shadowrealm.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ] + ] + } + ], [ - null, - {} + "wasm/jsapi/constructor/compile.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ] + ] + } ] ], - "r-computed.svg": [ - "ac897cd91ae21a616545ac6841d3540ca64f599d", + "instantiate-bad-imports.any.js": [ + "e4926c8d70a86e0d7ef241e05e0ca79fd6904178", [ null, - {} - ] - ], - "r-invalid.svg": [ - "a14c52266ce2b7b66847a18327cab0346d083115", + { + "jsshell": true, + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ], + [ + "script", + "/wasm/jsapi/bad-imports.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "r-valid.svg": [ - "70cd5503b795cef3f5db7eb4db1034d63b3e63fc", + "wasm/jsapi/constructor/instantiate-bad-imports.any.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ], + [ + "script", + "/wasm/jsapi/bad-imports.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "rx-computed.svg": [ - "c07368b5f2aa8010d0e56ef6778e8ae8155d4729", + "wasm/jsapi/constructor/instantiate-bad-imports.any.shadowrealm.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ], + [ + "script", + "/wasm/jsapi/bad-imports.js" + ] + ] + } + ], [ - null, - {} + "wasm/jsapi/constructor/instantiate-bad-imports.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ], + [ + "script", + "/wasm/jsapi/bad-imports.js" + ] + ] + } ] ], - "rx-invalid.svg": [ - "9ce0603bea13ceb2cf06c7da8ba0ac2b4ccb04a1", + "instantiate.any.js": [ + "34e005c4700932b0be2ee3370f20f8605d08d5bd", [ null, - {} - ] - ], - "rx-valid.svg": [ - "9d156b3cccfd6bb967372bb2c9ade6fc9527efd9", + { + "jsshell": true, + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ], + [ + "script", + "/wasm/jsapi/instanceTestFactory.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "ry-computed.svg": [ - "8e54bd219db02c279de3387da6a5646a8345a529", + "wasm/jsapi/constructor/instantiate.any.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ], + [ + "script", + "/wasm/jsapi/instanceTestFactory.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "ry-invalid.svg": [ - "5938ae830d52ad752a3f502a2308e9efae57dcdb", + "wasm/jsapi/constructor/instantiate.any.shadowrealm.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ], + [ + "script", + "/wasm/jsapi/instanceTestFactory.js" + ] + ] + } + ], [ - null, - {} + "wasm/jsapi/constructor/instantiate.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ], + [ + "script", + "/wasm/jsapi/instanceTestFactory.js" + ] + ] + } ] ], - "ry-valid.svg": [ - "178c0c007d649d75bd51a52a31f5c046eba9fd28", + "multi-value.any.js": [ + "8786f9b953ba18bfceaf8af4c7307562c668d61a", [ null, - {} - ] - ], - "sizing-properties-computed.svg": [ - "01713fbbe29ffaf0374fc55917c1909ffc09ef05", + { + "jsshell": true, + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "width-computed.svg": [ - "1af3de12347af146aad2cff7447a753942beaf60", + "wasm/jsapi/constructor/multi-value.any.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "x-computed.svg": [ - "458c343814c94c1a715e9603741a1d2933a3ab2e", + "wasm/jsapi/constructor/multi-value.any.shadowrealm.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ] + ] + } + ], [ - null, - {} + "wasm/jsapi/constructor/multi-value.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ] + ] + } ] ], - "x-invalid.svg": [ - "31ad29524e11dc5fe95c970506691953f0e611d0", + "toStringTag.any.js": [ + "5fae8304f8c0f60aa47c6fcd8b6269a35784e759", [ null, - {} - ] - ], - "x-valid.svg": [ - "2b06f26ac4c2b7ec0bf2b295854dc8d15fed130e", + { + "jsshell": true, + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ] + ] + } + ], [ - null, - {} - ] - ], - "y-computed.svg": [ - "c3dc874215aee1d56d8f4bb0d91965924a7da9a5", + "wasm/jsapi/constructor/toStringTag.any.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ] + ] + } + ], [ - null, - {} - ] - ], - "y-invalid.svg": [ - "d6ea944dbd649d1ec73da75e162f2ac3a3dfa818", + "wasm/jsapi/constructor/toStringTag.any.shadowrealm.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ] + ] + } + ], [ - null, - {} + "wasm/jsapi/constructor/toStringTag.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ] + ] + } ] ], - "y-valid.svg": [ - "aad0e4e2937064224de6a2313379fb43ffdf8322", + "validate.any.js": [ + "fce43d1e175f489cbf9e5fbb752038e739db9609", [ null, - {} - ] - ] - }, - "svg-baseval-in-display-none.html": [ - "fa52d1b4c3f0918ee13127decf4b2e3d878bcf67", - [ - null, - {} - ] - ], - "svg-image-intrinsic-size-with-cssstyle-auto-dynamic-image-change.html": [ - "8d5e2e982e82bd73e45cf86688e637a65f5d6535", - [ - null, - {} - ] - ], - "svg-image-intrinsic-size-with-cssstyle-auto.html": [ - "92fb7bc533e1b78f832f5be71c6b78a52d9fc1fc", - [ - null, - {} - ] - ] - }, - "historical.html": [ - "47935c64616bd001f8ddfa7b9be6d76b653e54f8", - [ - null, - {} - ] - ], - "idlharness.window.js": [ - "04cf99729e423435378d390407dbc7c526346ad5", - [ - "svg/idlharness.window.html", - { - "script_metadata": [ - [ - "timeout", - "long" - ], - [ - "script", - "/resources/WebIDLParser.js" - ], - [ - "script", - "/resources/idlharness.js" - ] + { + "jsshell": true, + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ] + ] + } ], - "timeout": "long" - } - ] - ], - "interact": { - "inheritance.svg": [ - "e67f19ed43529af5e34683b6853ae870435be014", - [ - null, - {} - ] - ], - "parsing": { - "pointer-events-computed.svg": [ - "e168d6d9b50695377f6beba1c8296eeea355d6d8", [ - null, - {} - ] - ], - "pointer-events-invalid.svg": [ - "12f1c48ece8e1ff160652547432191f4450c3808", + "wasm/jsapi/constructor/validate.any.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "pointer-events-valid.svg": [ - "d72aee627323846828ca16c561444adefcddea89", + "wasm/jsapi/constructor/validate.any.shadowrealm.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ] + ] + } + ], [ - null, - {} + "wasm/jsapi/constructor/validate.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ] + ] + } ] ] }, - "script-common.html": [ - "fc2ae3ba01a0ac512f4a4c180890f03260442bc6", - [ - null, - {} - ] - ], - "script-content.svg": [ - "94836f7c0331cb8a1caebacef02a75018b2b4ddb", - [ - null, - {} - ] - ], - "scripted": { - "async-01.svg": [ - "a56ef34ae547ac0f696b52f1d89cc25c3a826a80", + "exception": { + "basic.tentative.any.js": [ + "cacce99d9cb227055754554b8369809c92885ded", [ null, { - "timeout": "long" + "jsshell": true, + "script_metadata": [ + [ + "global", + "window,worker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ] + ] } - ] - ], - "composed.window.svg": [ - "b63dcf024439446e0624f98cfa9f7ceb01544524", - [ - null, - {} - ] - ], - "defer-01.svg": [ - "93e54c3f0ef644b5e447ec771b20dff43c2a07fc", - [ - null, - {} - ] - ], - "ellipse-hittest.html": [ - "70b54e0726fbfe349cebaac13d1b4101c2e50327", - [ - null, - {} - ] - ], - "focus-events.svg": [ - "bf307b79fdf10c578d93332f57d4de2ab844eb34", - [ - null, - {} - ] - ], - "focus-tabindex-default-value.svg": [ - "3af1acffd8de01618fb1dc9e8a753bcbb0357f1c", + ], [ - null, - {} - ] - ], - "module-01.svg": [ - "ea70391e922aaa4a65826d28ed3bb7bb5c1a2dd0", + "wasm/jsapi/exception/basic.tentative.any.html", + { + "script_metadata": [ + [ + "global", + "window,worker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "rect-hittest-001.html": [ - "4256628bc6a68684f8e99df81f255301a836e39a", + "wasm/jsapi/exception/basic.tentative.any.serviceworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "rect-hittest-002.html": [ - "7eb70f85308cc6ad29ec7a1657c7fe00bf49fc58", + "wasm/jsapi/exception/basic.tentative.any.shadowrealm.html", + { + "script_metadata": [ + [ + "global", + "window,worker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "svg-pointer-events-bbox.html": [ - "8db9149c231d1f4812b76610e3488ecd74787625", + "wasm/jsapi/exception/basic.tentative.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ] + ] + } + ], [ - null, - {} + "wasm/jsapi/exception/basic.tentative.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ] + ] + } ] ], - "svg-root-border-radius.html": [ - "87d8d233be9cfdd060003bfcc5e8d10c1f20d7a5", + "constructor.tentative.any.js": [ + "a46d1816c351d2e4fae1dbb962a0c2b59c1ef18a", [ null, - {} - ] - ], - "svg-small-big-path.html": [ - "ba0e403f6d690d4f176f4060ab4b1327091eb6ae", + { + "jsshell": true, + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "tabindex-focus-flag.svg": [ - "29ba209b2badecaac695a678540cc53e5c4ed3f5", + "wasm/jsapi/exception/constructor.tentative.any.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ] + ] + } + ], [ - null, - {} - ] - ] - } - }, - "linking": { - "scripted": { - "a-download-click.svg": [ - "b728603d547582b15ff6b0d32bc39e8021fa2bae", + "wasm/jsapi/exception/constructor.tentative.any.shadowrealm.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ] + ] + } + ], [ - null, - {} + "wasm/jsapi/exception/constructor.tentative.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ] + ] + } ] ], - "a.rel-getter-01.svg": [ - "f4f1fdb4f3af9233b7121f828e47d2ccaae7a975", + "getArg.tentative.any.js": [ + "87719c7ebdfb85ca378d668a83f743ff8da3a5b5", [ null, - {} - ] - ], - "a.rel-setter-01.svg": [ - "55470a81b56973667cf5aae33ef4b4a78e686bab", + { + "jsshell": true, + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/memory/assertions.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "a.text-getter-01.svg": [ - "d0b26f2042e4cfdc12ef9211b0408db6b22d91af", + "wasm/jsapi/exception/getArg.tentative.any.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/memory/assertions.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "a.text-setter-01.svg": [ - "53ad8fce9a6979ae7c81566958b6732ebe975b87", + "wasm/jsapi/exception/getArg.tentative.any.shadowrealm.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/memory/assertions.js" + ] + ] + } + ], [ - null, - {} + "wasm/jsapi/exception/getArg.tentative.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/memory/assertions.js" + ] + ] + } ] ], - "href-animate-element.html": [ - "5220495d796a3bf6a95ff38db213cdb98aaa5a20", + "identity.tentative.any.js": [ + "2675668ec73a9545b53be2566094652d706e4571", [ null, - {} - ] - ], - "href-mpath-element.html": [ - "03949b4168c17c97b2f5cbec7965212d2df5405a", + { + "jsshell": true, + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "href-script-element-markup.html": [ - "0c6eb23cb66bc5c3e641c7e53011b030f33c5967", + "wasm/jsapi/exception/identity.tentative.any.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "href-script-element.html": [ - "48f49085080de3747edbadacae7ee50ffcc65e39", + "wasm/jsapi/exception/identity.tentative.any.shadowrealm.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ] + ] + } + ], [ - null, - {} + "wasm/jsapi/exception/identity.tentative.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ] + ] + } ] ], - "rellist-feature-detection.svg": [ - "c600d64c38696e43fd4970d12ccbf3848fe78d17", - [ - null, - {} - ] - ] - } - }, - "painting": { - "color-interpolation-animation.html": [ - "14a3fd65fe5e4a2a0aeb1a8b389a0e1a3930d1cc", - [ - null, - {} - ] - ], - "fill-rule-no-interpolation.html": [ - "85f563e1502c84c56eb20e4633da604ff5190f03", - [ - null, - {} - ] - ], - "inheritance.svg": [ - "e79ac3b310e2f372d074a4b793c2d2485c82f9bd", - [ - null, - {} - ] - ], - "parsing": { - "color-interpolation-computed.svg": [ - "c437a0a908beed1221eaee6e185c4b3216411cc6", + "is.tentative.any.js": [ + "840d00bf0d47a915505202085f88450e5b4632f5", [ null, - {} - ] - ], - "color-interpolation-invalid.svg": [ - "11fd05be070350c13fabbc3f2627ae80a381f389", + { + "jsshell": true, + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/memory/assertions.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "color-interpolation-valid.svg": [ - "9465edb232fb30ed7237f48c159a454e672cd76b", + "wasm/jsapi/exception/is.tentative.any.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/memory/assertions.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "fill-computed.svg": [ - "7012fb6ca6307cb1eef0ba70f4b04e278d2f39ce", + "wasm/jsapi/exception/is.tentative.any.shadowrealm.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/memory/assertions.js" + ] + ] + } + ], [ - null, - {} + "wasm/jsapi/exception/is.tentative.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/memory/assertions.js" + ] + ] + } ] ], - "fill-invalid.svg": [ - "1feb867c3ab9e83f96e0566b53c75aa3dccb0653", + "toString.tentative.any.js": [ + "6885cf0deb6918ccd5f49d9ecb98e9fc6619d250", [ null, - {} - ] - ], - "fill-opacity-computed.svg": [ - "16843bcceecbbd1833a8c70ad35ee3a33903d4ae", + { + "jsshell": true, + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ] + ] + } + ], [ - null, - {} - ] - ], - "fill-opacity-invalid.svg": [ - "86726c6ad088a52e7f80f19cb11c9ab04571764f", + "wasm/jsapi/exception/toString.tentative.any.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ] + ] + } + ], [ - null, - {} - ] - ], - "fill-opacity-valid.svg": [ - "90d2732b1854785585f2edbb61de1195054c0b7a", + "wasm/jsapi/exception/toString.tentative.any.shadowrealm.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ] + ] + } + ], [ - null, - {} + "wasm/jsapi/exception/toString.tentative.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ] + ] + } ] - ], - "fill-rule-computed.svg": [ - "293450e13c5b14fdfdc8e2299d516d126da77c3a", + ] + }, + "function": { + "call.tentative.any.js": [ + "2e63d5fa103fd1736200622525602a07287caa98", [ null, - {} - ] - ], - "fill-rule-invalid.svg": [ - "d89a81acbb1533cfb121f851a005dde64f82d996", + { + "jsshell": true, + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "fill-rule-valid.svg": [ - "5112bda894a157a5e773d9927e4fbede73df6bec", + "wasm/jsapi/function/call.tentative.any.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "fill-valid.svg": [ - "d5bb5ceb0f719c31786e3667bdecd01e1fa248d2", + "wasm/jsapi/function/call.tentative.any.shadowrealm.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ] + ] + } + ], [ - null, - {} + "wasm/jsapi/function/call.tentative.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ] + ] + } ] ], - "image-rendering-computed.svg": [ - "c842e05906041cd505fd0e8ff7e2b4b34f8481d9", + "constructor.tentative.any.js": [ + "fc92fcfaf0cf497c2bab3fd3a78d22c91a343ab7", [ null, - {} - ] - ], - "image-rendering-invalid.svg": [ - "5c3cc9f054bf4f0b21ba7c48c49fe810d9841615", + { + "jsshell": true, + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "image-rendering-valid.svg": [ - "18402493f3c779b9427b383cc668033ac46c4936", + "wasm/jsapi/function/constructor.tentative.any.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "marker-computed.svg": [ - "329dedbbce239c627ccf47c7a14b59b00ac7ebd2", + "wasm/jsapi/function/constructor.tentative.any.shadowrealm.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ] + ] + } + ], [ - null, - {} + "wasm/jsapi/function/constructor.tentative.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ] + ] + } ] ], - "marker-end-computed.svg": [ - "da641abb9441a49829f5e8f1f4b5a599914b5515", + "table.tentative.any.js": [ + "f0dd6ea6f8589a01853e73cce565d01491f3c35e", [ null, - {} - ] - ], - "marker-end-invalid.svg": [ - "bc8e5fcc8bab475cdd086f533a7b9d6a82bcff7e", + { + "jsshell": true, + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "marker-end-valid.svg": [ - "5be036e994637be7abfe4440618cd4bb16b5d5a7", + "wasm/jsapi/function/table.tentative.any.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "marker-invalid.svg": [ - "64112cd6a779547dfc6d23ceb92ff9003f1b4669", + "wasm/jsapi/function/table.tentative.any.shadowrealm.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ] + ] + } + ], [ - null, - {} + "wasm/jsapi/function/table.tentative.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ] + ] + } ] ], - "marker-mid-computed.svg": [ - "eddfd6171143906feb118a1bb6534c245a7ea8ff", + "type.tentative.any.js": [ + "72a7f1bfbe5e0a91752bda2d06b3c1fcfaade6a3", [ null, - {} - ] - ], - "marker-mid-invalid.svg": [ - "25cfbba82eb54a30c09e00580100627ccf0420b5", + { + "jsshell": true, + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "marker-mid-valid.svg": [ - "119fd706b12189342a6ad9d9d94c512df57ccbdc", + "wasm/jsapi/function/type.tentative.any.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "marker-shorthand.svg": [ - "930a4e29402b7998cab922aaac7503f186fd752d", + "wasm/jsapi/function/type.tentative.any.shadowrealm.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ] + ] + } + ], [ - null, - {} + "wasm/jsapi/function/type.tentative.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ] + ] + } ] - ], - "marker-start-computed.svg": [ - "08ef87516fcfc0059a3b0ec79e25642273ea7d12", + ] + }, + "functions": { + "entry-different-function-realm.html": [ + "3af3dd924fb435e8cdcd4bb19f01948b77318dbf", [ null, {} ] ], - "marker-start-invalid.svg": [ - "6c1fdbcd4b577f3d5de2f747d74bb34c670ce3bd", + "entry.html": [ + "15018074491054dcb9e2f95c0d9c9d1691c9161a", [ null, {} ] ], - "marker-start-valid.svg": [ - "fd6f2d6fe425ec1e4ab5c7ee6425a5e4ead823bc", + "incumbent.html": [ + "cb2763297709a8ecdddd8541d2b332577102cd35", [ null, {} ] - ], - "marker-valid.svg": [ - "23d3f24f5cca3077002f1a02f669df9505ec745b", + ] + }, + "gc": { + "casts.tentative.any.js": [ + "cce06224fd40c70f037dbf575388c26106480a0e", [ null, - {} - ] - ], - "paint-order-computed.svg": [ - "29f5fa91bae31a8f55e895ead7fe999e53fdc963", + { + "jsshell": true, + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "paint-order-invalid.svg": [ - "5043176dd97bd1d99ea2f9674abfa08f06d7383e", + "wasm/jsapi/gc/casts.tentative.any.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ] + ] + } + ], [ - null, - {} + "wasm/jsapi/gc/casts.tentative.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ] + ] + } ] ], - "paint-order-valid.svg": [ - "25759d222d15a18ca49645e1ff10a17b50341f58", + "exported-object.tentative.any.js": [ + "b572f140067fda658eb18ab82c880b3697172aba", [ null, - {} - ] - ], - "shape-rendering-computed.svg": [ - "5e8f530d48a0cd5077ebd6aba134e982605d59d9", + { + "jsshell": true, + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "shape-rendering-invalid.svg": [ - "e20ca879dbaf7744157bca497a581d5f6083fcd5", + "wasm/jsapi/gc/exported-object.tentative.any.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ] + ] + } + ], [ - null, - {} + "wasm/jsapi/gc/exported-object.tentative.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ] + ] + } ] ], - "shape-rendering-valid.svg": [ - "803609476f8387710391fcc882ef4c6503eb5620", + "i31.tentative.any.js": [ + "17fd82440cc8b29c6826d32e46f52b5c2a0323a1", [ null, - {} - ] - ], - "stroke-computed.svg": [ - "48214d140f0a6cc43a09cbe4d21a1647f9b19eb6", + { + "jsshell": true, + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "stroke-dasharray-computed.svg": [ - "6253e23c0f0722a4957e1b5999a091e06e9f5f79", + "wasm/jsapi/gc/i31.tentative.any.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ] + ] + } + ], [ - null, - {} + "wasm/jsapi/gc/i31.tentative.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ] + ] + } ] - ], - "stroke-dasharray-invalid.svg": [ - "53a9640c8ffbcb2ec511ea808f02574e934e07b8", + ] + }, + "global": { + "constructor.any.js": [ + "f83f77a5c3ecf349ea63891f4ebcfc2109ae2606", [ null, - {} - ] - ], - "stroke-dasharray-valid.svg": [ - "9326118ceb886c64c936a0dbbf789b87f7302391", + { + "jsshell": true, + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "stroke-dashoffset-computed.svg": [ - "561194827e4118011e03e0e62f83b83f9cef0d7c", + "wasm/jsapi/global/constructor.any.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "stroke-dashoffset-invalid.svg": [ - "2040355e2282a59d95a5ace4e1114b0cd14c4741", + "wasm/jsapi/global/constructor.any.shadowrealm.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ] + ] + } + ], [ - null, - {} + "wasm/jsapi/global/constructor.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ] + ] + } ] ], - "stroke-dashoffset-valid.svg": [ - "846b69ccd2d07846bd77231d427fa514ecfe0d5b", + "toString.any.js": [ + "b308498982ee5d62bb230f0d9f0503ad14e798ec", [ null, - {} - ] - ], - "stroke-invalid.svg": [ - "a976ccb97742bb9aefc94d6cfd9c1e57ee18a06a", + { + "jsshell": true, + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ] + ] + } + ], [ - null, - {} - ] - ], - "stroke-linecap-computed.svg": [ - "a99629f7b9dfd7fc31ab0b7ec8a6bfdc5b9fdafa", + "wasm/jsapi/global/toString.any.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ] + ] + } + ], [ - null, - {} - ] - ], - "stroke-linecap-invalid.svg": [ - "ba4bd8640e40328f1fe913f497913df3dd7f3219", + "wasm/jsapi/global/toString.any.shadowrealm.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ] + ] + } + ], [ - null, - {} + "wasm/jsapi/global/toString.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ] + ] + } ] ], - "stroke-linecap-valid.svg": [ - "045c4eef7c708dbb7b33a04104290be8a93bbe2d", + "type.tentative.any.js": [ + "78d612529dd3f39a71bb37b073dbd725766b73ed", [ null, - {} - ] - ], - "stroke-linejoin-computed.svg": [ - "3e0633fe57b0ab5ae6276d9e60ac2217db524802", + { + "jsshell": true, + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "stroke-linejoin-invalid.svg": [ - "6a6c4282803ae337685c5465362c9dcf8981d354", + "wasm/jsapi/global/type.tentative.any.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "stroke-linejoin-valid.svg": [ - "876b2f67dd665c358a207fa14abfa470b787e31f", + "wasm/jsapi/global/type.tentative.any.shadowrealm.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ] + ] + } + ], [ - null, - {} + "wasm/jsapi/global/type.tentative.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ] + ] + } ] ], - "stroke-miterlimit-computed.svg": [ - "33e5d2b81e8e698a0c5db645fad29bdc67d39d52", + "value-get-set.any.js": [ + "bee5581f41814e21578f285c8765a259a7f85a97", [ null, - {} - ] - ], - "stroke-miterlimit-invalid.svg": [ - "c1307dab5b8c81e3ee1c68f37750a1466b022135", + { + "jsshell": true, + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ] + ] + } + ], [ - null, - {} - ] - ], - "stroke-miterlimit-valid.svg": [ - "36fd81d29cdf22ca8be540f7d58ac9d4273b1177", + "wasm/jsapi/global/value-get-set.any.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ] + ] + } + ], [ - null, - {} - ] - ], - "stroke-opacity-computed.svg": [ - "df58a213ff50835181f1e74eb608aa5aabcbeacb", + "wasm/jsapi/global/value-get-set.any.shadowrealm.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ] + ] + } + ], [ - null, - {} + "wasm/jsapi/global/value-get-set.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ] + ] + } ] ], - "stroke-opacity-invalid.svg": [ - "af1a954b47491b53fb84881da0dd40e0b40b047d", + "valueOf.any.js": [ + "5bcb171825898801643acb94bcb3242d5869e95e", [ null, - {} - ] - ], - "stroke-opacity-valid.svg": [ - "a333363e3834ab594a3b7cb7a6839d230f327ba2", + { + "jsshell": true, + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ] + ] + } + ], [ - null, - {} - ] - ], - "stroke-valid.svg": [ - "ce43c1f63310a71544fd2bc2cf81d277fa630cf5", + "wasm/jsapi/global/valueOf.any.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ] + ] + } + ], [ - null, - {} - ] - ], - "stroke-width-computed.svg": [ - "5daa9cafbaa1fbfe98310e4bd074f89063cf6e2d", + "wasm/jsapi/global/valueOf.any.shadowrealm.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ] + ] + } + ], [ - null, - {} + "wasm/jsapi/global/valueOf.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ] + ] + } ] + ] + }, + "idlharness.any.js": [ + "98713d4bf6e43af90c705e55c59be277463b9e0b", + [ + "wasm/jsapi/idlharness.any.html", + { + "script_metadata": [ + [ + "script", + "/resources/WebIDLParser.js" + ], + [ + "script", + "/resources/idlharness.js" + ], + [ + "script", + "../resources/load_wasm.js" + ] + ] + } ], - "stroke-width-invalid.svg": [ - "2111e376ac4000096cd13e939ecce1cb652e805f", + [ + "wasm/jsapi/idlharness.any.worker.html", + { + "script_metadata": [ + [ + "script", + "/resources/WebIDLParser.js" + ], + [ + "script", + "/resources/idlharness.js" + ], + [ + "script", + "../resources/load_wasm.js" + ] + ] + } + ] + ], + "instance": { + "constructor-bad-imports.any.js": [ + "1ef4f8423de857d9a910f84d5199922d04e1f76d", [ null, - {} - ] - ], - "stroke-width-valid.svg": [ - "fa00a9b709dba7da9691ca9b2a564d71c7f4ad90", + { + "jsshell": true, + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ], + [ + "script", + "/wasm/jsapi/bad-imports.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "text-rendering-computed.svg": [ - "b9758afefd6aa38031211298e68fac80f9a6bcc1", + "wasm/jsapi/instance/constructor-bad-imports.any.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ], + [ + "script", + "/wasm/jsapi/bad-imports.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "text-rendering-invalid.svg": [ - "92da841cad69b8cce5628439f30da5b189259094", + "wasm/jsapi/instance/constructor-bad-imports.any.shadowrealm.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ], + [ + "script", + "/wasm/jsapi/bad-imports.js" + ] + ] + } + ], [ - null, - {} + "wasm/jsapi/instance/constructor-bad-imports.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ], + [ + "script", + "/wasm/jsapi/bad-imports.js" + ] + ] + } ] ], - "text-rendering-valid.svg": [ - "d1a7dbf747efa7c26973773c8233c38c3ff74ea0", - [ - null, - {} - ] - ] - }, - "scripted": { - "paint-order-computed-value-01.svg": [ - "7ea669f1508283f498e9b38030022deac3b091a0", + "constructor-caching.any.js": [ + "f969364d93f4620b4c08b021c8bb98afbad84241", [ null, - {} - ] - ] - } - }, - "path": { - "error-handling": { - "bounding.svg": [ - "85c089b25baa814e563e136bcba819e4bd80b2b1", + { + "jsshell": true, + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ] + ] + } + ], [ - null, - {} - ] - ] - }, - "interfaces": { - "SVGAnimatedPathData-removed.svg": [ - "b9e62177cb99e561654a32c6707aed7d2d4b9ef9", + "wasm/jsapi/instance/constructor-caching.any.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ] + ] + } + ], [ - null, - {} - ] - ] - }, - "property": { - "d-interpolation-discrete.svg": [ - "5b20a589bb54e0ed985b91e11258e10ff44ef66c", + "wasm/jsapi/instance/constructor-caching.any.shadowrealm.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ] + ] + } + ], [ - null, - {} + "wasm/jsapi/instance/constructor-caching.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ] + ] + } ] ], - "d-interpolation-relative-absolute.svg": [ - "09d4c70712f8f4cbb37e8dd6d075529500a68179", + "constructor.any.js": [ + "24bf97356c83a739e881a597cffd3dda5674db97", [ null, - {} - ] - ], - "d-interpolation-single.svg": [ - "107b607beca6056bf7fc21f0b0e954bb37da5c03", + { + "jsshell": true, + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ], + [ + "script", + "/wasm/jsapi/instanceTestFactory.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "getComputedStyle.svg": [ - "400f92ec84179ec140ecd2314ceae3341cd415ba", + "wasm/jsapi/instance/constructor.any.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ], + [ + "script", + "/wasm/jsapi/instanceTestFactory.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "serialization.svg": [ - "3199beb92b2e86270799828ef3c3c4ab21bf0a53", + "wasm/jsapi/instance/constructor.any.shadowrealm.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ], + [ + "script", + "/wasm/jsapi/instanceTestFactory.js" + ] + ] + } + ], [ - null, - {} + "wasm/jsapi/instance/constructor.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ], + [ + "script", + "/wasm/jsapi/instanceTestFactory.js" + ] + ] + } ] ], - "test_style_flush_on_dom_api_with_d_property.html": [ - "248118443b597f6d84d4e84bd3ba73c114c2fc45", + "exports.any.js": [ + "f7244923d83c51037cfe6186da49ee909b11498f", [ null, - {} - ] - ] - } - }, - "pservers": { - "inheritance.svg": [ - "e08b93da83c7d0fd3e546eaa9b708cdda83eba31", - [ - null, - {} - ] - ], - "parsing": { - "stop-color-computed.svg": [ - "b05a69f10b9e3614f7a588998ea06879df437da7", + { + "jsshell": true, + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "stop-color-invalid.svg": [ - "4eee5444867f6670155327d357dbe3feaea3b309", + "wasm/jsapi/instance/exports.any.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "stop-color-valid.svg": [ - "80d6c23b83c35f6dfdbff49cce6fedd9066c77bd", + "wasm/jsapi/instance/exports.any.shadowrealm.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ] + ] + } + ], [ - null, - {} + "wasm/jsapi/instance/exports.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ] + ] + } ] ], - "stop-opacity-computed.svg": [ - "1ad1e98c5a84ebad5e0129164e0d5616b72e36fc", + "toString.any.js": [ + "d77037d65b9c25a2114273ec4558479b92f29f08", [ null, - {} - ] - ], - "stop-opacity-invalid.svg": [ - "eae9343d1472c215dc237f1dbd1c8e15bc50708b", + { + "jsshell": true, + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "stop-opacity-valid.svg": [ - "28b60038a4d5707ae45b5e6e7dbc7f806717eaf9", + "wasm/jsapi/instance/toString.any.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ] + ] + } + ], [ - null, - {} - ] - ] - }, - "pattern-with-invalid-base-cloned-thcrash.html": [ - "04a453545f5938489eb111a23a16c8c89065ed4e", - [ - null, - {} - ] - ], - "scripted": { - "stop-color-inheritance-currentcolor.svg": [ - "22bf513c862bf8d1ccbac358c71560fd834e545a", + "wasm/jsapi/instance/toString.any.shadowrealm.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ] + ] + } + ], [ - null, - {} + "wasm/jsapi/instance/toString.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ] + ] + } ] ] - } - }, - "render": { - "foreignObject-in-non-rendered-getComputedStyle.html": [ - "409f1044a33372c8e642ba61a2d4f752061eb975", - [ - null, - {} - ] - ] - }, - "scripted": { - "script-invalid-script-type.html": [ - "9602dd525bd4d2b77b8d4ffadebef9e568a98c77", - [ - null, - {} - ] - ], - "script-runs-in-shadow-tree.html": [ - "9693db333ff18c1e6f39515be29c77d551e4e2fe", - [ - null, - {} - ] - ], - "text-attrs-dxdy-have-length.svg": [ - "a5f07e29a11ad0279b4645059f50573e76f909cc", - [ - null, - {} - ] - ], - "text-attrs-xyrotate-have-length.svg": [ - "79d365ddec846aa603b8da3b0c5d89f92a338083", - [ - null, - {} - ] - ], - "text-tspan-attrs-have-length.svg": [ - "d189b531d74566ec5c86a899170d3b2eff6568b6", - [ - null, - {} - ] - ], - "text-tspan-attrs-indexed-access.svg": [ - "b14b6bfc28e20c9fc296bb41c3d863752b26edd3", - [ - null, - {} - ] - ], - "tspan-attrs-dxdy-have-length.svg": [ - "c8d002f1cef9b687ee2bd69da286f6370ed6cf77", - [ - null, - {} - ] - ], - "tspan-attrs-xyrotate-have-length.svg": [ - "11086aa198ff053c9d86c4bdaf4650fd2aa5596a", - [ - null, - {} - ] - ] - }, - "shapes": { - "animatedPoints-non-animated.html": [ - "5c1758908605d71baf9fe87c9b54ccfab5c5e5cd", + }, + "interface.any.js": [ + "8256fc209a7f6506d683bebd17e899b3b9e4a6eb", [ null, - {} - ] - ], - "line-getPointAtLength.svg": [ - "472a64480aee5489add7f693aa1118413a3e9b06", + { + "jsshell": true, + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "line-pathLength.svg": [ - "c6802d70a11e945e2d69ad0528d984da9b73e094", + "wasm/jsapi/interface.any.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "rx-ry-not-inherited.svg": [ - "ff943e8b5c4718f57d99e6e520a7897e8356537b", + "wasm/jsapi/interface.any.shadowrealm.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ] + ] + } + ], [ - null, - {} + "wasm/jsapi/interface.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ] + ] + } ] ], - "scripted": { - "disabled-shapes-not-hit.svg": [ - "21ea9078785e865d36f03a3830b6b90f63f3d10a", + "memory": { + "buffer.any.js": [ + "fb1d1200b892be1eb7aea66db343db491e921a8d", [ null, - {} - ] - ], - "shapes-clip-path.svg": [ - "a8277226a5ba542ce408d64a50e319b7d44a7dcd", + { + "jsshell": true, + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell" + ] + ] + } + ], [ - null, - {} + "wasm/jsapi/memory/buffer.any.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell" + ] + ] + } + ], + [ + "wasm/jsapi/memory/buffer.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell" + ] + ] + } ] ], - "stroke-dashes-hit-at-high-scale.svg": [ - "b57a9e0aa7714e7a821c74d24f6578ab7d6286b3", + "constructor-shared.tentative.any.js": [ + "0134b307749ed7004b9ac5f18597942409d72121", [ null, - {} - ] - ] - } - }, - "struct": { - "UnknownElement": { - "interface.svg": [ - "987f20c5e4c0589e159f044c57b6e552d2ef987e", + { + "jsshell": true, + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ], + [ + "script", + "/wasm/jsapi/memory/assertions.js" + ] + ] + } + ], [ - null, - {} - ] - ] - }, - "scripted": { - "autofocus-attribute.svg": [ - "edf200c4c7be31f2e1fea39003b991695610e6c3", + "wasm/jsapi/memory/constructor-shared.tentative.any.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ], + [ + "script", + "/wasm/jsapi/memory/assertions.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "svg-checkIntersection-001.svg": [ - "059cdef2a6b618385a7ae6f4f9522e4ca1a2a3d9", + "wasm/jsapi/memory/constructor-shared.tentative.any.shadowrealm.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ], + [ + "script", + "/wasm/jsapi/memory/assertions.js" + ] + ] + } + ], [ - null, - {} + "wasm/jsapi/memory/constructor-shared.tentative.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ], + [ + "script", + "/wasm/jsapi/memory/assertions.js" + ] + ] + } ] ], - "svg-getIntersectionList-001.svg": [ - "a360bad3d35af84f0d65a4d00391cf454332691e", + "constructor-types.tentative.any.js": [ + "4653c6686a78e4785f7f2293d7cee676467af55f", [ null, - {} - ] - ], - "svg-getIntersectionList-002.svg": [ - "c2c1f8e425af84c68e4dc7a51c68e1c668e2b4b1", + { + "jsshell": true, + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ], + [ + "script", + "/wasm/jsapi/memory/assertions.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "svg-getIntersectionList-003.svg": [ - "b08ea71b36074e1153f6e5a43e9e5ce390a0dd3a", + "wasm/jsapi/memory/constructor-types.tentative.any.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ], + [ + "script", + "/wasm/jsapi/memory/assertions.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "svg-getIntersectionList-004.svg": [ - "c029a3b0702f6ac82bb6669c5da9d063fb10f5e3", + "wasm/jsapi/memory/constructor-types.tentative.any.shadowrealm.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ], + [ + "script", + "/wasm/jsapi/memory/assertions.js" + ] + ] + } + ], [ - null, - {} + "wasm/jsapi/memory/constructor-types.tentative.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ], + [ + "script", + "/wasm/jsapi/memory/assertions.js" + ] + ] + } ] ], - "use-load-error-events.tentative.html": [ - "2c52072e16906575679ab654b7e901a08b5541c7", - [ - null, - {} - ] - ] - }, - "use-getComputedStyle.html": [ - "1e5d5af57cbc042a851bee180a402a05fd177fe3", - [ - null, - {} - ] - ] - }, - "styling": { - "css-selectors-case-sensitivity.html": [ - "c1e07a53288681bfd26de7774f810d20eb38b627", - [ - null, - {} - ] - ], - "presentation-attributes-irrelevant.html": [ - "f96d1d9de6f26b0d4fde11156dab87487d6cbdc8", - [ - null, - {} - ] - ], - "presentation-attributes-relevant.html": [ - "b5f9343690cc447348b54b280de4e7c27a3d2436", - [ - null, - {} - ] - ], - "presentation-attributes-special-cases.html": [ - "c99ed704cf1dde83a26ed4dd52f537bc8805165e", - [ - null, - {} - ] - ], - "presentation-attributes-unknown.html": [ - "487175b144b8b7a405d4d2f75aaee7b493ab7ea8", - [ - null, - {} - ] - ], - "required-properties.svg": [ - "37bf0fdf7e8ead12ab5b686b56844c82625e6591", - [ - null, - {} - ] - ], - "style-sheet-interfaces.svg": [ - "9532e64929001c83cb693d0661145ff0c58ef21f", - [ - null, - {} - ] - ] - }, - "text": { - "inheritance.svg": [ - "1f4609d7ac6c5384f68d109733be01c7ea915df4", - [ - null, - {} - ] - ], - "parsing": { - "inline-size-invalid.svg": [ - "19fd6f64724aa4084f021a23d01a0be1750ea025", + "constructor.any.js": [ + "8f413c9f48a86dee005b37d175dda03a322bb74a", [ null, - {} - ] - ], - "inline-size-valid.svg": [ - "3b01cd3448886cf4fb8269e133eb87e92ce98efc", + { + "jsshell": true, + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ], + [ + "script", + "/wasm/jsapi/memory/assertions.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "shape-inside-invalid.svg": [ - "15734576dfac27bd616c5f74f4b3f4e5fcf65866", + "wasm/jsapi/memory/constructor.any.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ], + [ + "script", + "/wasm/jsapi/memory/assertions.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "shape-inside-valid.svg": [ - "5846917c0013fc38c0a17f939d6ea11688aebf28", + "wasm/jsapi/memory/constructor.any.shadowrealm.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ], + [ + "script", + "/wasm/jsapi/memory/assertions.js" + ] + ] + } + ], [ - null, - {} + "wasm/jsapi/memory/constructor.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ], + [ + "script", + "/wasm/jsapi/memory/assertions.js" + ] + ] + } ] ], - "shape-margin-invalid.svg": [ - "0bf74701928192f59d20b60c10341a17cb6d9355", + "grow.any.js": [ + "2eafe5761eaa6d23dcfa459648bc69882361c8e9", [ null, - {} - ] - ], - "shape-margin-valid.svg": [ - "2ba50afb8a1337fc29b8dc58d5c5eb4202578dcf", + { + "jsshell": true, + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/memory/assertions.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "shape-subtract-invalid.svg": [ - "fb2caef25c4797323dc839d48cd5fe546d022843", + "wasm/jsapi/memory/grow.any.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/memory/assertions.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "shape-subtract-valid.svg": [ - "3be94fb8499b1a776298399f07cc1baa069581d4", + "wasm/jsapi/memory/grow.any.shadowrealm.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/memory/assertions.js" + ] + ] + } + ], [ - null, - {} + "wasm/jsapi/memory/grow.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/memory/assertions.js" + ] + ] + } ] ], - "text-anchor-computed.svg": [ - "e11b23fc2316f0178b304437269f94fa95897f22", + "toString.any.js": [ + "f4059f7657722759ce4fc950c4850916d102deda", [ null, - {} - ] - ], - "text-anchor-invalid.svg": [ - "69a6a58971264821b3f9d12ce1f8110a34d40fa0", + { + "jsshell": true, + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell" + ] + ] + } + ], [ - null, - {} - ] - ], - "text-anchor-valid.svg": [ - "eca651e12275f3ec4ad3e4ee7a89d3ee1d44b721", + "wasm/jsapi/memory/toString.any.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell" + ] + ] + } + ], [ - null, - {} + "wasm/jsapi/memory/toString.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell" + ] + ] + } ] ], - "text-decoration-fill-invalid.svg": [ - "19da0821730d5062e006e45eadb3cd3726318302", + "type.tentative.any.js": [ + "3f6531f5967ed74973b0b7aa715c83a97d2095a2", [ null, - {} - ] - ], - "text-decoration-fill-valid.svg": [ - "d2f9447a169d140bacd301d235707c02b30ba81d", + { + "jsshell": true, + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "text-decoration-stroke-invalid.svg": [ - "8d44d6f1c33898fca4a81924ba0d3e05cd3ed7d4", + "wasm/jsapi/memory/type.tentative.any.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "text-decoration-stroke-valid.svg": [ - "df64cc9ec3d387f26238b66b92c9f356f2f23e09", + "wasm/jsapi/memory/type.tentative.any.shadowrealm.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ] + ] + } + ], [ - null, - {} + "wasm/jsapi/memory/type.tentative.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ] + ] + } ] ] }, - "scripted": { - "getextentofchar.html": [ - "1a6bb32b4bf07f22e7e3b44815313882fd8a88c7", + "module": { + "constructor.any.js": [ + "95604aabe475a85ab282273a8a5cb9dce61380b7", [ null, - {} + { + "jsshell": true, + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ] + ] + } + ], + [ + "wasm/jsapi/module/constructor.any.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ] + ] + } + ], + [ + "wasm/jsapi/module/constructor.any.shadowrealm.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ] + ] + } + ], + [ + "wasm/jsapi/module/constructor.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ] + ] + } ] ], - "getrotationofchar.html": [ - "3bacd471765705e7912d754c0737d052a655a963", + "customSections.any.js": [ + "96958316e061d72f4ec3cbe0041bd75577f02097", [ null, - {} + { + "jsshell": true, + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ] + ] + } + ], + [ + "wasm/jsapi/module/customSections.any.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ] + ] + } + ], + [ + "wasm/jsapi/module/customSections.any.shadowrealm.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ] + ] + } + ], + [ + "wasm/jsapi/module/customSections.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ] + ] + } ] ], - "getstartpositionofchar-dominant-baseline.html": [ - "7ecfd7848a738a3083e6b0295fa9be0164d01fdd", + "exports.any.js": [ + "0c32e984a2cad1feba8dc949ae4a83f84a9db45e", [ null, - {} - ] - ], - "getsubstringlength-emoji-ligatures.html": [ - "2b6061be5dbde360f259a3b3d3076ef21668961f", + { + "jsshell": true, + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ] + ] + } + ], + [ + "wasm/jsapi/module/exports.any.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ] + ] + } + ], + [ + "wasm/jsapi/module/exports.any.shadowrealm.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ] + ] + } + ], [ - null, - {} + "wasm/jsapi/module/exports.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ] + ] + } ] ], - "lengthadjust.html": [ - "51b06675b0928aaf1d500eaefbd5a683b532a517", + "imports.any.js": [ + "2ab1725359f187c8d321b8e8622bb7a453b590dc", [ null, - {} - ] - ], - "textlength-inconsistent.svg": [ - "ca899de349c3646ddfbeb547d36c505820cdccc2", + { + "jsshell": true, + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "textpath-textlength-text-anchor-001.tentative.svg": [ - "6c4f50fe871b0126548557976e8391c1d973b5fe", + "wasm/jsapi/module/imports.any.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "transform-dynamic-update.html": [ - "c1ac9197a5f64e260679269e7cf79d1e7ff17192", + "wasm/jsapi/module/imports.any.shadowrealm.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ] + ] + } + ], [ - null, - {} + "wasm/jsapi/module/imports.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ] + ] + } ] - ] - } - }, - "types": { - "elements": { - "SVGGeometryElement-rect.svg": [ - "93d25b6bfddb8c483044db3092d2c0e67ae0fac2", + ], + "moduleSource.tentative.any.js": [ + "8a94cdd48cd497ad8af1ebe3c49f8483700b4692", [ null, - {} - ] - ] - }, - "scripted": { - "SVGAnimatedAngle.html": [ - "5fdc9f3cffb0a3aaabe231706afc2c871ecf1ee8", + { + "jsshell": true, + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "SVGAnimatedBoolean.html": [ - "ba52922ed737392688445e21c742ff1f440743fb", + "wasm/jsapi/module/moduleSource.tentative.any.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "SVGAnimatedEnumeration-SVGClipPathElement.html": [ - "9727bfb22403f9f8fa8f0d14cad719be25b37132", + "wasm/jsapi/module/moduleSource.tentative.any.shadowrealm.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ] + ] + } + ], [ - null, - {} + "wasm/jsapi/module/moduleSource.tentative.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ] + ] + } ] ], - "SVGAnimatedEnumeration-SVGComponentTransferFunctionElement.html": [ - "cb4a631af663cdbcac8d50edcef49f536c0e8eb6", + "toString.any.js": [ + "10c707979d5bdc16809f15627e407f862e6eac59", [ null, - {} - ] - ], - "SVGAnimatedEnumeration-SVGFEColorMatrixElement.html": [ - "ab906119ad88b38a7db0a89c0d16810d67b8b4a7", + { + "jsshell": true, + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "SVGAnimatedEnumeration-SVGFECompositeElement.html": [ - "0e99f5fe9cb3335f54591d75e75bffdc0262d0d2", + "wasm/jsapi/module/toString.any.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "SVGAnimatedEnumeration-SVGFEConvolveMatrixElement.html": [ - "b2aff0bd8cc84146488cc277a3eec6905f7686f7", + "wasm/jsapi/module/toString.any.shadowrealm.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ] + ] + } + ], [ - null, - {} + "wasm/jsapi/module/toString.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ] + ] + } ] + ] + }, + "proto-from-ctor-realm.html": [ + "45405b52900bf95554635293502338b07026e62f", + [ + null, + {} + ] + ], + "prototypes.any.js": [ + "2316f7d9b4eeb5ea821df8cfa24cc3daf07030f3", + [ + null, + { + "jsshell": true, + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ] + ] + } ], - "SVGAnimatedEnumeration-SVGFEDisplacementMapElement.html": [ - "14dda6e227e2826299b150af850a12c72dc6fbfa", - [ - null, - {} - ] + [ + "wasm/jsapi/prototypes.any.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ] + ] + } ], - "SVGAnimatedEnumeration-SVGFEMorphologyElement.html": [ - "3bf638e5e6b60519e7259f96890ed0c6f11a4316", - [ - null, - {} - ] + [ + "wasm/jsapi/prototypes.any.shadowrealm.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ] + ] + } ], - "SVGAnimatedEnumeration-SVGFETurbulenceElement.html": [ - "2818a8afa4ac42c5ae7a83646f4e56931dbf748f", + [ + "wasm/jsapi/prototypes.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ] + ] + } + ] + ], + "table": { + "constructor-types.tentative.any.js": [ + "b4015bdc6f7503ded5e7c2cf3817d62949417bee", [ null, - {} - ] - ], - "SVGAnimatedEnumeration-SVGFilterElement.html": [ - "fcf38a8513adcbba0ceb4543340173c85de8ed7c", + { + "jsshell": true, + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ], + [ + "script", + "/wasm/jsapi/table/assertions.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "SVGAnimatedEnumeration-SVGGradientElement.html": [ - "a23a66f3d25817fa112f18f5a29ad3f43936f65a", + "wasm/jsapi/table/constructor-types.tentative.any.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ], + [ + "script", + "/wasm/jsapi/table/assertions.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "SVGAnimatedEnumeration-SVGMarkerElement.html": [ - "61c44d0d178a47f6cbca1864d299d1e1c13ceaf7", + "wasm/jsapi/table/constructor-types.tentative.any.shadowrealm.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ], + [ + "script", + "/wasm/jsapi/table/assertions.js" + ] + ] + } + ], [ - null, - {} + "wasm/jsapi/table/constructor-types.tentative.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ], + [ + "script", + "/wasm/jsapi/table/assertions.js" + ] + ] + } ] ], - "SVGAnimatedEnumeration-SVGMaskElement.html": [ - "6a0a26bacb7ecd13264ac419dffb97266ead097f", + "constructor.any.js": [ + "51b1070d413586d159ea3d38304a652f3efea947", [ null, - {} - ] - ], - "SVGAnimatedEnumeration-SVGPatternElement.html": [ - "6c49adee9020f527d9f6fb51ff01204810d4b61e", + { + "jsshell": true, + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ], + [ + "script", + "/wasm/jsapi/table/assertions.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "SVGAnimatedEnumeration-SVGTextContentElement.html": [ - "0798c9be666e0c40279364cb2fabb58ee3ffdc0a", + "wasm/jsapi/table/constructor.any.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ], + [ + "script", + "/wasm/jsapi/table/assertions.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "SVGAnimatedEnumeration-SVGTextPathElement.html": [ - "9841866b5a2a8bb83ac5155ba666a4695e8c269d", + "wasm/jsapi/table/constructor.any.shadowrealm.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ], + [ + "script", + "/wasm/jsapi/table/assertions.js" + ] + ] + } + ], [ - null, - {} + "wasm/jsapi/table/constructor.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ], + [ + "script", + "/wasm/jsapi/table/assertions.js" + ] + ] + } ] ], - "SVGAnimatedEnumeration.html": [ - "990b884545d70a3f1156e4c070cdac2d6cc2ac79", + "get-set.any.js": [ + "abe6fecac9860c09228218dc528786345315048e", [ null, - {} - ] - ], - "SVGAnimatedInteger.html": [ - "849c13d3671df44b759729572c76f5965965865c", + { + "jsshell": true, + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ], + [ + "script", + "assertions.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "SVGAnimatedLength.html": [ - "788849d8e35c274925d8580a579bd5dd64649927", + "wasm/jsapi/table/get-set.any.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ], + [ + "script", + "assertions.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "SVGAnimatedLengthList.html": [ - "763d804642d18579a4ac82cfe55accc81cbd8637", + "wasm/jsapi/table/get-set.any.shadowrealm.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ], + [ + "script", + "assertions.js" + ] + ] + } + ], [ - null, - {} + "wasm/jsapi/table/get-set.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ], + [ + "script", + "assertions.js" + ] + ] + } ] ], - "SVGAnimatedNumber.html": [ - "c72cabca1a84b8cf071b91097e23a4039468999b", + "grow.any.js": [ + "4038f1e64934b073fa0eae83a9e6115abcda99e1", [ null, - {} - ] - ], - "SVGAnimatedNumberList.html": [ - "5737cd4d318f3c93232f057603d25e01a2ef7484", + { + "jsshell": true, + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ], + [ + "script", + "assertions.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "SVGAnimatedPreserveAspectRatio.html": [ - "80b96e996974d1bd4439ddd89cdbc96fdfe2763a", + "wasm/jsapi/table/grow.any.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ], + [ + "script", + "assertions.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "SVGAnimatedRect.html": [ - "1dfbc77b51266ccc50cadc79a3c0f5dae8f479b9", + "wasm/jsapi/table/grow.any.shadowrealm.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ], + [ + "script", + "assertions.js" + ] + ] + } + ], [ - null, - {} + "wasm/jsapi/table/grow.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ], + [ + "script", + "assertions.js" + ] + ] + } ] ], - "SVGElement.className-01.svg": [ - "38121356a6682f9c184c5b0ed50839211361c515", + "length.any.js": [ + "0e6de3f83e1ecf584dbe3ff7b82c5ec03e128577", [ null, - {} - ] - ], - "SVGGeometryElement.getPointAtLength-01.svg": [ - "e268386b64e256383b606aa02ac1497e380d8f3f", + { + "jsshell": true, + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ] + ] + } + ], [ - null, - {} - ] - ], - "SVGGeometryElement.getPointAtLength-02.svg": [ - "9420503d404522fbc4d90ca5f60f70eb304687e2", + "wasm/jsapi/table/length.any.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ] + ] + } + ], [ - null, - {} - ] - ], - "SVGGeometryElement.getPointAtLength-03.svg": [ - "8805cd2c41cff0a77a5ff7a126b1e43e33e7656c", + "wasm/jsapi/table/length.any.shadowrealm.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ] + ] + } + ], [ - null, - {} + "wasm/jsapi/table/length.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ] + ] + } ] ], - "SVGGeometryElement.getPointAtLength-04.svg": [ - "cbff157c2dd71fb655333a18294eee6b564f83cb", + "toString.any.js": [ + "b5fb25b9c1e95458b17c618bc8cf0faf75aaab84", [ null, - {} - ] - ], - "SVGGeometryElement.getPointAtLength-05.svg": [ - "a8dc208fd58aa54e977f6d68ebb3dcb07bcd76ea", + { + "jsshell": true, + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ] + ] + } + ], [ - null, - {} - ] - ], - "SVGGeometryElement.getTotalLength-01.svg": [ - "49c8c165d70d66064643b50bd369ee4c5eaf05b6", + "wasm/jsapi/table/toString.any.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ] + ] + } + ], [ - null, - {} - ] - ], - "SVGGeometryElement.isPointInFill-01.svg": [ - "3714c2a8dac0d41d7cb992ece6fa702e7286d2d4", + "wasm/jsapi/table/toString.any.shadowrealm.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ] + ] + } + ], [ - null, - {} + "wasm/jsapi/table/toString.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ] + ] + } ] ], - "SVGGeometryElement.isPointInStroke-01.svg": [ - "78ba96d7db63fbb42b8f41f7c0a7778c96b64eff", + "type.tentative.any.js": [ + "ef9bbc5aa4a228e4cdc10658ef9f14157103021d", [ null, - {} - ] - ], - "SVGGeometryElement.isPointInStroke-02.svg": [ - "909b035ef4779dd52f3e923a54efb63c526a3457", + { + "jsshell": true, + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "SVGGraphicsElement-clone.svg": [ - "2ef0e074809ebeebb6a115524e09385cb64080f1", + "wasm/jsapi/table/type.tentative.any.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "SVGGraphicsElement.getBBox-01.html": [ - "773b06e5043d8d942b793a03d967a8acc925d5b1", + "wasm/jsapi/table/type.tentative.any.shadowrealm.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ] + ] + } + ], [ - null, - {} + "wasm/jsapi/table/type.tentative.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ] + ] + } ] - ], - "SVGGraphicsElement.getBBox-02.html": [ - "0efd590710c693db36da4ebc4f9b948e875d6363", + ] + }, + "tag": { + "constructor.tentative.any.js": [ + "54edf8c8f59258fbc9e6373fe737a22507640239", [ null, - {} - ] - ], - "SVGGraphicsElement.getBBox-03.html": [ - "0bb8a11fe7a50c1c1ef2dc55da10f471346e0ec8", + { + "jsshell": true, + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "SVGGraphicsElement.svg": [ - "893882b3cce452b39eef410ea6dbed10181faca1", + "wasm/jsapi/tag/constructor.tentative.any.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "SVGLength-cap.html": [ - "1eb308b0b8ebed4b84c5b91705f370b85ffaf40b", + "wasm/jsapi/tag/constructor.tentative.any.shadowrealm.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ] + ] + } + ], [ - null, - {} + "wasm/jsapi/tag/constructor.tentative.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ] + ] + } ] ], - "SVGLength-ch.html": [ - "fcacbd2e228fe9d63df701dd1a945f2cec3fb5fb", + "toString.tentative.any.js": [ + "76fff0feef063d123b34618ec461c0f8b1303075", [ null, - {} - ] - ], - "SVGLength-ic.html": [ - "583a964444ecc5dc3878d11e62c3e884084a89b0", + { + "jsshell": true, + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ] + ] + } + ], [ - null, - {} - ] - ], - "SVGLength-lh.html": [ - "023d04fbd0c507a7f16168256653773f7525b9dc", + "wasm/jsapi/tag/toString.tentative.any.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ] + ] + } + ], [ - null, - {} - ] - ], - "SVGLength-px-with-context.html": [ - "7cbe27f83a3be8a2f106eb27bc6540d0274ec56c", + "wasm/jsapi/tag/toString.tentative.any.shadowrealm.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ] + ] + } + ], [ - null, - {} + "wasm/jsapi/tag/toString.tentative.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ] + ] + } ] ], - "SVGLength-px.html": [ - "25ce286197a49e9d06dc184b2fc8a89d15cd5ed5", + "type.tentative.any.js": [ + "58c96078bfe39daecb9dd821204a4969b5b4caa4", [ null, - {} - ] - ], - "SVGLength-rem.html": [ - "c89f937cf37211c19b21c8a1812fb831820b28f7", + { + "jsshell": true, + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "SVGLength-viewport.html": [ - "2a29c0ba54978fa732b60460689e34d08db93448", + "wasm/jsapi/tag/type.tentative.any.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "SVGLength.html": [ - "7436f5940c5d7432ab318759d3bb83df597c35af", + "wasm/jsapi/tag/type.tentative.any.shadowrealm.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ] + ] + } + ], [ - null, - {} + "wasm/jsapi/tag/type.tentative.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker,jsshell,shadowrealm" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ] + ] + } ] - ], - "SVGLengthList-appendItem.html": [ - "5af8dbf4009a2a5952e32d8fdc58060fef15bc87", + ] + } + }, + "serialization": { + "arraybuffer": { + "transfer.window.js": [ + "0258581b1eb0ae56bd851e37ef93b1672b91182d", [ - null, + "wasm/serialization/arraybuffer/transfer.window.html", {} ] - ], - "SVGLengthList-appendItemFromClearedList.html": [ - "e76491ec3221a33f5f378c0bf44552e78c5bf944", + ] + }, + "module": { + "broadcastchannel-success-and-failure.html": [ + "0d11cc595be2d16ad795be8199ed2ae7abe79974", [ null, {} ] ], - "SVGLengthList-basics.html": [ - "685074d519fae3f5d59bd7c10f6d5a7c51f16fbf", + "broadcastchannel-success.html": [ + "ddc242b82ef99403f48dfff0963c8576a73e0b31", [ null, {} ] ], - "SVGLengthList-getItem.html": [ - "ca27810e72d2d33fd865caa31d4a600ba9a11b40", + "cross-origin-module-sharing-fails.html": [ + "cd3e99b9eca131316965262f84b22002e66b62cd", [ null, {} ] ], - "SVGPoint.html": [ - "cdf44e29f20bd3440195752f4122d758a4d24659", + "identity-not-preserved.html": [ + "24bb3b16d8c50600a634d62d4c48c49dfb3b120e", [ null, {} ] ], - "event-handler-all-document-element-events.svg": [ - "69b7aaa171ab0bd1e35b884fe39f97cd5f37897a", + "nested-worker-success.any.js": [ + "84fbd92a29c9ef2784a01508b6f3e70962857dc5", [ - null, - {} - ] - ] - } - } - }, - "svg-aam": { - "name": { - "comp_host_language_label.html": [ - "81f9dab2e6b6a2be5984d1afea6ce8038eda2b68", - [ - null, - { - "testdriver": true - } - ] - ] - }, - "role": { - "roles-generic.html": [ - "e7fe9f33de55588ee45ddc66bbeaf7dec8e1711f", - [ - null, - { - "testdriver": true - } - ] - ], - "roles.html": [ - "cc104662bdb3524cd930989618f08c12d3e12bd1", - [ - null, - { - "testdriver": true - } - ] - ] - } - }, - "timing-entrytypes-registry": { - "registry.any.js": [ - "4db249b16bea55e678f62721ee1002b012fc0bbf", - [ - "timing-entrytypes-registry/registry.any.html", - { - "script_metadata": [ - [ - "script", - "resources/utils.js" - ] - ] - } - ], - [ - "timing-entrytypes-registry/registry.any.worker.html", - { - "script_metadata": [ - [ - "script", - "resources/utils.js" - ] - ] - } - ] - ], - "registry.window.js": [ - "21ef2230e9ebea5b853e243c51905b92098fcd95", - [ - "timing-entrytypes-registry/registry.window.html", - { - "script_metadata": [ - [ - "script", - "resources/utils.js" - ] - ] - } - ] - ] - }, - "top-level-storage-access-api": { - "tentative": { - "requestStorageAccessFor-insecure.sub.window.js": [ - "0852483ce54e04ee0927e618d751a6eb231f14cb", - [ - "top-level-storage-access-api/tentative/requestStorageAccessFor-insecure.sub.window.html", - { - "script_metadata": [ - [ - "script", - "/storage-access-api/helpers.js" - ], - [ - "script", - "/resources/testdriver.js" - ], - [ - "script", - "/resources/testdriver-vendor.js" - ] - ] - } - ] - ], - "requestStorageAccessFor.sub.https.window.js": [ - "dd2975e49c02193475a034987365df1d0f69ac81", - [ - "top-level-storage-access-api/tentative/requestStorageAccessFor.sub.https.window.html", - { - "script_metadata": [ - [ - "script", - "/storage-access-api/helpers.js" - ], - [ - "script", - "/resources/testdriver.js" - ], - [ - "script", - "/resources/testdriver-vendor.js" - ] - ] - } - ] - ], - "top-level-storage-access-permission.sub.https.window.js": [ - "466b6f3bbed03642248ce40367b0794d3b2e4eb3", - [ - "top-level-storage-access-api/tentative/top-level-storage-access-permission.sub.https.window.html", - { - "script_metadata": [ - [ - "script", - "/storage-access-api/helpers.js" - ], - [ - "script", - "/resources/testdriver.js" - ], - [ - "script", - "/resources/testdriver-vendor.js" - ] - ] - } - ] - ] - } - }, - "touch-events": { - "expose-legacy-touch-event-apis.html": [ - "2dab74dccd60f3b737a7a57362e28aac85a6cbd3", - [ - null, - {} - ] - ], - "historical.html": [ - "16ddf519037ca52272280d1768eed33f349d82d4", - [ - null, - {} - ] - ], - "idlharness.window.js": [ - "88573286a2739465fa11ecb04647b8653f43305b", - [ - "touch-events/idlharness.window.html", - { - "script_metadata": [ - [ - "script", - "/resources/WebIDLParser.js" - ], - [ - "script", - "/resources/idlharness.js" - ] - ] - } - ] - ], - "multi-touch-interactions.html": [ - "a10416bdfd458cc7008ffc401153be08c7e068d0", - [ - null, - { - "testdriver": true - } - ] - ], - "multi-touch-interfaces.html": [ - "8b5965c2c915bd88ee6811378e6e1e5c7e499fb7", - [ - null, - { - "testdriver": true - } - ] - ], - "single-touch-vertical-rl.html": [ - "857007b1f8a5c548da2e2c306cb80bdea96bf2e5", - [ - null, - { - "testdriver": true - } - ] - ], - "single-touch.html": [ - "4db96c208d62fe4b09558cce8312d4aba1d39836", - [ - null, - { - "testdriver": true - } - ] - ], - "touch-globaleventhandler-interface.html": [ - "1513cdaa21e8619dbf83d4d15227075ad275477e", - [ - null, - {} - ] - ], - "touch-touchevent-constructor.html": [ - "e2d0950d5e27aa9905a9c2e1ca26242ed57fee53", - [ - null, - {} - ] - ] - }, - "trust-tokens": { - "end-to-end": { - "has-trust-token-with-no-top-frame.tentative.https.html": [ - "a384bec3c26d644ad9e993a965d58ed439e5abb3", - [ - null, - {} - ] - ] - }, - "trust-token-parameter-validation-xhr.tentative.https.html": [ - "883c438fa93be67e44c2da172fca00a45a8d3ddc", - [ - null, - {} - ] - ], - "trust-token-parameter-validation.tentative.https.html": [ - "cf24b232e834383655e3d54b0a81fad3810454fc", - [ - null, - {} - ] - ] - }, - "trusted-types": { - "DOMParser-parseFromString-regression.html": [ - "941d1750b4a3d4fd0c53a48c62689f9665e64dc3", - [ - null, - {} - ] - ], - "DOMParser-parseFromString.html": [ - "2dfc37686bca15431c216a50d29f9f9eed2782e0", - [ - null, - {} - ] - ], - "DOMWindowTimers-setTimeout-setInterval.html": [ - "2ad47555a92dd09f3d47e378be86e826c270d544", - [ - null, - {} - ] - ], - "Document-execCommand.html": [ - "7619133655f41f7c5cdcdcea115edaf1e338b977", - [ - null, - {} - ] - ], - "Document-write.html": [ - "87e9e724699efc3f0edde3afade4cf53ec2c9c3e", - [ - null, - {} - ] - ], - "Element-insertAdjacentHTML.html": [ - "6a9329b3fbf2fdfb4f00ce2acde7c38d6843d92f", - [ - null, - {} - ] - ], - "Element-insertAdjacentText.html": [ - "f6221362c17d6231e0921d866b1cdc642fea9d39", - [ - null, - {} - ] - ], - "Element-outerHTML.html": [ - "c8daddfe9955196bf0b69410263cb7c01e473e5e", - [ - null, - {} - ] - ], - "Element-setAttribute.html": [ - "cd6617915bdd16343ff2499e09991fba50b444bc", - [ - null, - {} - ] - ], - "Element-setAttributeNS.html": [ - "67e8236febd77ed3b544126d8c5f9dd37cc513ab", - [ - null, - {} - ] - ], - "GlobalEventHandlers-onclick.html": [ - "0fdde778cc8863600ecdcc57a6d6281b52a777d4", - [ - null, - {} - ] - ], - "HTMLElement-generic.html": [ - "8e54fa9c570fa9ff15002f38460ebb8565311abf", - [ - null, - {} - ] - ], - "HTMLScriptElement-in-xhtml-document.tentative.https.xhtml": [ - "6cf49f922ae4d8414d392786da731396f2db80d9", - [ - null, - {} - ] - ], - "HTMLScriptElement-internal-slot.html": [ - "3a4b905f462f3f19f8d22424e80d01ea1e702b58", - [ - null, - {} - ] - ], - "Node-multiple-arguments.html": [ - "64b04656d35ba922c528581975682fbd61b5e5a1", - [ - null, - {} - ] - ], - "Range-createContextualFragment.html": [ - "3a880a53778acb165fd5d957eeaca22685baf2b5", - [ - null, - {} - ] - ], - "TrustedType-AttributeNodes.html": [ - "6b0066570043cf320a9b3a58c30d6afa88cc1ec6", - [ - null, - {} - ] - ], - "TrustedTypePolicy-CSP-no-name.html": [ - "b1c7f51ddb3a14603cf6f11ea437484f09366c74", - [ - null, - {} - ] - ], - "TrustedTypePolicy-CSP-wildcard.html": [ - "cdc683dad3b6d3028166f23ade82a8b8cd30d001", - [ - null, - {} - ] - ], - "TrustedTypePolicy-createXXX.html": [ - "112d1ae636aaa8f0ffafd68bd73aff11208874fb", - [ - null, - {} - ] - ], - "TrustedTypePolicyFactory-blocking.html": [ - "6ae71b69880a0313a549b586a04fa38b4be466e2", - [ - null, - {} - ] - ], - "TrustedTypePolicyFactory-constants.html": [ - "551084ca4b6e001ce49213a3d12491a4aedaf8f4", - [ - null, - {} - ] - ], - "TrustedTypePolicyFactory-createPolicy-createXYZTests.html": [ - "746d89fa3f8c3f21cb64d6fb348de15ef9b1f3e2", - [ - null, - {} - ] - ], - "TrustedTypePolicyFactory-createPolicy-cspTests-noNamesGiven.html": [ - "15728b9888f3cb0c7d9f509c86949f8942a66a22", - [ - null, - {} - ] - ], - "TrustedTypePolicyFactory-createPolicy-cspTests-none-skip.html": [ - "d0920497d944e961950c6aaa1bbb0dc2f2debe8c", - [ - null, - {} - ] - ], - "TrustedTypePolicyFactory-createPolicy-cspTests-none.html": [ - "48c75937ead158af880674f9781409e5a07c0aa2", - [ - null, - {} - ] - ], - "TrustedTypePolicyFactory-createPolicy-cspTests-wildcard.html": [ - "9200708545c0420f8882a85fcfbfa8b4d464f6bf", - [ - null, - {} - ] - ], - "TrustedTypePolicyFactory-createPolicy-cspTests.html": [ - "3a56546151e4e8fcef6bfecafa42cd50dd01ebcc", - [ - null, - {} - ] - ], - "TrustedTypePolicyFactory-createPolicy-nameTests.html": [ - "9fdafb2ccf04bf2808e3399d64c83a131c8648d2", - [ - null, - {} - ] - ], - "TrustedTypePolicyFactory-createPolicy-unenforced.html": [ - "293444820216e17adb8c4f02a1615d7dfbfe2e6e", - [ - null, - {} - ] - ], - "TrustedTypePolicyFactory-defaultPolicy.html": [ - "7ac09d8bb96c0ef163590db1552012651648b68b", - [ - null, - {} - ] - ], - "TrustedTypePolicyFactory-getAttributeType-namespace.html": [ - "0f0d820e289fd12d2c3c7200a1ebb944f4b4b58a", - [ - null, - {} - ] - ], - "TrustedTypePolicyFactory-getPropertyType.html": [ - "21aba668ccdc3f10948c199259a848655ac0ae08", - [ - null, - {} - ] - ], - "TrustedTypePolicyFactory-isXXX.html": [ - "a7df477d00e26b65e72624edb9dd0fe4bb9ee90a", - [ - null, - {} - ] - ], - "TrustedTypePolicyFactory-metadata.html": [ - "70a5b4466617c5d5e42c69b500fbc8653403c782", - [ - null, - { - "timeout": "long" - } - ] - ], - "Window-TrustedTypes.html": [ - "718c763afafd12bfa498eb8827fb1b12b509c51d", - [ - null, - {} - ] - ], - "WorkerGlobalScope-eval.html": [ - "9248784924d003c41620745dda2fe92fa42662e0", - [ - null, - {} - ] - ], - "WorkerGlobalScope-importScripts.html": [ - "9853b1bc44845155ef889b7b5ee93c877844e019", - [ - null, - {} - ] - ], - "block-Document-execCommand.html": [ - "87759cdc19716c4c269d13a1bb6e6a4d995b4b7d", - [ - null, - {} - ] - ], - "block-Node-multiple-arguments.html": [ - "c3e7671534e70b959b30c8ed9cc16429ee23c45d", - [ - null, - {} - ] - ], - "block-string-assignment-to-DOMParser-parseFromString.html": [ - "dd912e6b8dea596141630d7b9d18ab6bbe8c9925", - [ - null, - {} - ] - ], - "block-string-assignment-to-DOMWindowTimers-setTimeout-setInterval.html": [ - "c24715718d17561f779c6df7098f4c0b874675a9", - [ - null, - {} - ] - ], - "block-string-assignment-to-Document-write.html": [ - "974203c1133a43afd87069b41b29ab1e5460a36d", - [ - null, - {} - ] - ], - "block-string-assignment-to-Element-insertAdjacentHTML.html": [ - "228887d0423d3144afd684ace223bc16a7124f9f", - [ - null, - {} - ] - ], - "block-string-assignment-to-Element-outerHTML.html": [ - "9b6cf72cb4017c86e0d0862f967c9b26cea0c149", - [ - null, - {} - ] - ], - "block-string-assignment-to-Element-setAttribute.html": [ - "1d39a804f39c0891bc59c0d08f14fd22ee278de1", - [ - null, - {} - ] - ], - "block-string-assignment-to-Element-setAttributeNS.html": [ - "346e077a666507d0a5eba4bed6893c8c16adad6a", - [ - null, - {} - ] - ], - "block-string-assignment-to-HTMLElement-generic.html": [ - "9e780c1ed23dccb92ea10eaa83613422a9e59a77", - [ - null, - {} - ] - ], - "block-string-assignment-to-Range-createContextualFragment.html": [ - "79111204934e689d2ce56fbb010cc3b261537c6b", - [ - null, - {} - ] - ], - "block-string-assignment-to-attribute-via-attribute-node.html": [ - "b881e8cb37e2d020b7f07e63a39ecf157b65fb50", - [ - null, - {} - ] - ], - "block-text-node-insertion-into-script-element.html": [ - "08e3e695530302c8875d127bc4d36e2085a1a1d4", - [ - null, - {} - ] - ], - "csp-block-eval.html": [ - "e3911bf9e6a9340a35906d9ec70f71f6b8152951", - [ - null, - {} - ] - ], - "default-policy-callback-arguments.html": [ - "a4a9c9e351289142b963ec8c56b4e4dbcbe0a639", - [ - null, - {} - ] - ], - "default-policy-report-only.html": [ - "1cff751a80194bfaef6095617a89a423b76e70b2", - [ - null, - {} - ] - ], - "default-policy.html": [ - "debde85cdac9d7bb1bcb19b56f7063fea0a53241", - [ - null, - {} - ] - ], - "empty-default-policy-report-only.html": [ - "1ba9c5ec18e5da33725aaa9499977930563c4ba9", - [ - null, - {} - ] - ], - "empty-default-policy.html": [ - "d31b48ecd5a86670b7c6ea3c4d993cd3f11946df", - [ - null, - {} - ] - ], - "eval-csp-no-tt.html": [ - "6720d80fe762b3b2f4b5507f91d57d9d6a43374b", - [ - null, - {} - ] - ], - "eval-csp-tt-default-policy.html": [ - "9afe571199c9b48003dbe89fc445e9de32e85222", - [ - null, - {} - ] - ], - "eval-csp-tt-no-default-policy.html": [ - "8c4aba11ecbbc54f3b6b8e9a1d9787b3461a7f45", - [ - null, - {} - ] - ], - "eval-function-constructor.html": [ - "a20bc4a78db14daa627159e1c96a48c744382903", - [ - null, - {} - ] - ], - "eval-no-csp-no-tt-default-policy.html": [ - "d36afbc8ac429516a4baab6816281b1a54308eee", - [ - null, - {} - ] - ], - "eval-no-csp-no-tt.html": [ - "3013c084470767a88dc5df3e93e8fdb9b19d9bc3", - [ - null, - {} - ] - ], - "eval-with-permissive-csp.html": [ - "8910d4e7ef0fa983e61308bc149eaad971c183a5", - [ - null, - {} - ] - ], - "no-require-trusted-types-for-report-only.html": [ - "651bf0a7199beab43e4f00d3c72462ffda1905f2", - [ - null, - {} - ] - ], - "no-require-trusted-types-for.html": [ - "651bf0a7199beab43e4f00d3c72462ffda1905f2", - [ - null, - {} - ] - ], - "require-trusted-types-for-report-only.html": [ - "25b4440ef4117010bb7da7c8f3ad87f01d3bf55f", - [ - null, - {} - ] - ], - "require-trusted-types-for.html": [ - "2a3820a89b8ad36c324139bf75fab8d72d7087a4", - [ - null, - {} - ] - ], - "trusted-types-createHTMLDocument.html": [ - "e4af2eb59029a11aaa5490023fbb942063cd3722", - [ - null, - {} - ] - ], - "trusted-types-duplicate-names-list-report-only.html": [ - "46ca2edb6fb57b354b3a80f327dbfbe6760f21c6", - [ - null, - {} - ] - ], - "trusted-types-duplicate-names-list.html": [ - "afb2f5f7c4b7f6ddfe8da004750017e6c7f01f9a", - [ - null, - {} - ] - ], - "trusted-types-duplicate-names-without-enforcement.html": [ - "afef457a9c2328c69c9856a045a94613629a44f7", - [ - null, - {} - ] - ], - "trusted-types-duplicate-names.html": [ - "decce5356467f9f4e6a8886c6b6eff7194bf2385", - [ - null, - {} - ] - ], - "trusted-types-eval-reporting-no-unsafe-eval.html": [ - "2b0922d212379cf7e7803fbe24cb3007884270c0", - [ - null, - {} - ] - ], - "trusted-types-eval-reporting-report-only.html": [ - "4e8ac5a2f43c97740269901fceb65db6b02752a5", - [ - null, - {} - ] - ], - "trusted-types-eval-reporting.html": [ - "73bb011349405bbee430cfcb9b0eb966b7faf8fa", - [ - null, - {} - ] - ], - "trusted-types-event-handlers.html": [ - "9dd7133cbb0b5b75b4bc04b8e05762e7981ad864", - [ - null, - {} - ] - ], - "trusted-types-from-literal.html": [ - "a7d5659e16a1471ac5cb900dce7b3a102a14af89", - [ - null, - {} - ] - ], - "trusted-types-navigation.html": [ - "2113711902ae787cb3ad5d0e44eaed0fc2e99b87", - [ - null, - {} - ] - ], - "trusted-types-report-only.html": [ - "fcb77841163d9a09774497d2b8588f85c2a42b06", - [ - null, - {} - ] - ], - "trusted-types-reporting-check-report.html": [ - "ae5ac25052d34be4d64bada3fb23283c783978ee", - [ - null, - {} - ] - ], - "trusted-types-reporting.html": [ - "9db307db60d963308ef970790da8e6cb70b02550", - [ - null, - { - "timeout": "long" - } - ] - ], - "trusted-types-source-file-path.html": [ - "6e87c25a7f0998a2117de2f73f4adc3df9b024b5", - [ - null, - {} - ] - ], - "trusted-types-svg-script.html": [ - "946f825fa3eecd05247e1a2b16396ee4d3f7af11", - [ - null, - {} - ] - ], - "trusted-types-tojson.html": [ - "72c538309941389b1fad9a24d7db75f55138d855", - [ - null, - {} - ] - ], - "tt-block-eval.html": [ - "13178bd44bf17f06c6d6d46433dcad273367a364", - [ - null, - {} - ] - ], - "worker-constructor.https.html": [ - "6e127b11a5b593360cc6e3b5155d93deb580a75a", - [ - null, - {} - ] - ] - }, - "ua-client-hints": { - "idlharness.https.any.js": [ - "13a9225b47f72043915a8cbca5a84b1a42375c7e", - [ - "ua-client-hints/idlharness.https.any.html", - { - "script_metadata": [ - [ - "script", - "/resources/WebIDLParser.js" - ], - [ - "script", - "/resources/idlharness.js" - ] + "wasm/serialization/module/nested-worker-success.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "dedicatedworker,sharedworker" + ], + [ + "script", + "resources/test-incrementer.js" + ] + ] + } + ], + [ + "wasm/serialization/module/nested-worker-success.any.worker.html", + { + "script_metadata": [ + [ + "global", + "dedicatedworker,sharedworker" + ], + [ + "script", + "resources/test-incrementer.js" + ] + ] + } ] - } - ], - [ - "ua-client-hints/idlharness.https.any.worker.html", - { - "script_metadata": [ - [ - "script", - "/resources/WebIDLParser.js" - ], - [ - "script", - "/resources/idlharness.js" - ] + ], + "no-transferring.html": [ + "2f0f674b1fcfd460f60714abba6dc03b377cafbb", + [ + null, + {} ] - } - ] - ], - "useragentdata.https.any.js": [ - "fa588355181a18f9413f1d13129d1f991837e316", - [ - "ua-client-hints/useragentdata.https.any.html", - { - "script_metadata": [ - [ - "title", - "tests for navigator.userAgentData" - ] + ], + "serialization-via-history.html": [ + "38d4301d70bc896680169158ec480a2f74d533b1", + [ + null, + {} ] - } - ], - [ - "ua-client-hints/useragentdata.https.any.worker.html", - { - "script_metadata": [ - [ - "title", - "tests for navigator.userAgentData" - ] + ], + "serialization-via-idb.any.js": [ + "2591d2fe7478adf4628a1ca9b39a2fc0541fba16", + [ + "wasm/serialization/module/serialization-via-idb.any.html", + { + "script_metadata": [ + [ + "script", + "/IndexedDB/resources/support.js" + ] + ] + } + ], + [ + "wasm/serialization/module/serialization-via-idb.any.worker.html", + { + "script_metadata": [ + [ + "script", + "/IndexedDB/resources/support.js" + ] + ] + } ] - } - ] - ] - }, - "uievents": { - "click": { - "auxclick_event.html": [ - "8bb2e137f5bce9333e4687b7603432195107745b", - [ - null, - { - "testdriver": true - } - ] - ], - "click_event_target_child_parent.html": [ - "a09e5532affd93cafca51391591b7ff882636310", - [ - null, - { - "testdriver": true - } - ] - ], - "click_event_target_siblings.html": [ - "24d64dc9ac344f9c856241221d7323b162434932", - [ - null, - { - "testdriver": true - } - ] - ], - "click_events_on_input.html": [ - "2f380eb4514bc79df891b409c9007271c7f66923", - [ - null, - { - "testdriver": true - } - ] - ], - "contextmenu_event.html": [ - "7a33d0aa38c47af832d57304f4b804e19952953c", - [ - null, - { - "testdriver": true - } - ] - ], - "dblclick_event_mouse.html": [ - "50324f6dfdf7785db66d9af031f779d0189e0e57", - [ - null, - { - "testdriver": true - } - ] - ] - }, - "constructors": { - "inputevent-constructor.html": [ - "3876abcd430e3f2dbdc58e57d8f179721a67cc77", - [ - null, - {} - ] - ] - }, - "historical.html": [ - "d2d33b44c7050e2b5d235347b194f6acecdfbfdd", - [ - null, - {} - ] - ], - "idlharness.window.js": [ - "c3919e355835cd9d7264a95efa5bc09ecc6a5e8d", - [ - "uievents/idlharness.window.html", - { - "script_metadata": [ - [ - "script", - "/resources/WebIDLParser.js" - ], - [ - "script", - "/resources/idlharness.js" - ], - [ - "timeout", - "long" - ] + ], + "serialization-via-notifications-api.any.js": [ + "3672192df798a13dd086fa4b86c5125ac87a6c51", + [ + "wasm/serialization/module/serialization-via-notifications-api.any.html", + {} ], - "timeout": "long" - } - ] - ], - "interface": { - "click-event.htm": [ - "b45dc29063e62eafffa8690a86dfeca3eb768c48", - [ - null, - {} - ] - ], - "keyboard-accesskey-click-event.html": [ - "f90101e31efc4e21643dccfaadb9f20658ecee6e", - [ - null, - { - "testdriver": true - } - ] - ], - "keyboard-click-event.html": [ - "2b5e06d9c1167ff762e38c36315d9e993ed9d243", - [ - null, - { - "testdriver": true - } - ] - ] - }, - "keyboard": { - "modifier-keys-combinations.html": [ - "1b364ff72ce539b31ef86f4a1bcf75aed6868845", - [ - null, - { - "testdriver": true - } - ] - ], - "modifier-keys.html": [ - "635e5d3b7797e1fcde058f81dda1b3b2132ee375", - [ - null, - { - "testdriver": true - } - ] - ] - }, - "legacy": { - "Event-subclasses-init.html": [ - "a79a9f18adba6e329b6be8c45724417b4e337fde", - [ - null, - {} - ] - ] - }, - "legacy-domevents-tests": { - "approved": { - "ProcessingInstruction.DOMCharacterDataModified.html": [ - "2da0a389e2e3bc51861fef752b11a629203897d0", + [ + "wasm/serialization/module/serialization-via-notifications-api.any.worker.html", + {} + ] + ], + "share-module-cross-origin-fails.sub.html": [ + "5a52b9669839ff319f3b7ad88ce1aaf9059a4729", [ null, {} ] ], - "dispatchEvent.click.checkbox.html": [ - "8cb548f84c60eb6b528c1049884649b26c4f18ba", + "window-domain-success.sub.html": [ + "07360d8264df01e20123697bf2e635fc66ebacfe", [ null, {} ] ], - "domnodeinserted.html": [ - "e5064d8d46cd9aad4768aa81dacb18b989e2c993", + "window-messagechannel-success.html": [ + "e686c8113561d94e860a774771aa69b974696716", [ null, {} ] ], - "stopImmediatePropagation.effect.html": [ - "a414d60298acece6dce5d970e6f0448a99fd65da", + "window-serviceworker-failure.https.html": [ + "d7285e2fa3d5150914c0ea0dfb1dd2bd15c8ae14", [ null, {} ] ], - "stopPropagation.deferred.effect.html": [ - "93489c63b45254efbb15ddbc52b1984897b1525c", + "window-sharedworker-failure.html": [ + "667e985a30b53c0ecadfd4c68f6217b87a7a5b98", + [ + null, + {} + ] + ], + "window-similar-but-cross-origin-success.sub.html": [ + "a615547de09634632c1115180534bea5594835e3", + [ + null, + {} + ] + ], + "window-simple-success.html": [ + "6f2ccf465e93a160c73df548fc58774a5040f0e6", [ null, {} ] ] - }, - "submissions": { - "Microsoft": { - "converted": { - "EventListener.dispatch.new.event.html": [ - "e0ab7e0d3e417cd4595d7590d9d12d6d25bbc366", + } + }, + "webapi": { + "abort.any.js": [ + "f5ddd353aa9e358409d82b98f816dd01d45d53f9", + [ + "wasm/webapi/abort.any.html", + {} + ], + [ + "wasm/webapi/abort.any.worker.html", + {} + ] + ], + "body.any.js": [ + "4db7e8d123cfb6bba8b2a429cd5bc6ac1efb89ef", + [ + "wasm/webapi/body.any.html", + { + "script_metadata": [ [ - null, - {} + "global", + "window,worker" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" ] ] } - } - } - }, - "mouse": { - "attributes.html": [ - "bbc388445c052293091739db39719d5e3a27e1a5", + ], [ - null, + "wasm/webapi/body.any.serviceworker.html", { - "testdriver": true + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ] + ] } - ] - ], - "cancel-mousedown-in-subframe.html": [ - "07350377354cda3c3fbafada0ff67700d01d06a0", + ], [ - null, + "wasm/webapi/body.any.sharedworker.html", { - "testdriver": true + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ] + ] } - ] - ], - "layout_change_should_fire_mouseover.html": [ - "49257ae60d19dc69d523f735fc0e5ccbde1663bf", + ], [ - null, + "wasm/webapi/body.any.worker.html", { - "testdriver": true + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ] + ] } ] ], - "mouse_buttons_back_forward.html": [ - "2323bc10269a7238fbe655aa1341d9dde210e3a6", + "contenttype.any.js": [ + "0a2f5f1122ce4601c594fc68ca2ace99035d2fdb", [ - null, + "wasm/webapi/contenttype.any.html", { - "testdriver": true + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ] + ] } - ] - ], - "mouseenter-mouseleave-on-drag.html": [ - "c36a1501c0bb44a8c88f50e4e7a1337aee7b6e8c", + ], [ - null, + "wasm/webapi/contenttype.any.serviceworker.html", { - "testdriver": true + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ] + ] } - ] - ], - "mouseevent_move_button.html": [ - "edde11d022e81969957cf99578c394db8697f461", + ], [ - null, + "wasm/webapi/contenttype.any.sharedworker.html", { - "testdriver": true, - "timeout": "long" + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ] + ] } - ] - ], - "mousemove_prevent_default_action.tentative.html": [ - "4caf98087fbf4372dc5ad28afdb48cd0bae6cea2", + ], [ - null, + "wasm/webapi/contenttype.any.worker.html", { - "testdriver": true + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ] + ] } ] ], - "synthetic-mouse-enter-leave-over-out-button-state-after-target-removed.tentative.html": [ - "fad82f850d4677698fbb07d98739bc4c777951ec", + "empty-body.any.js": [ + "0771647b708ec3b347b0bb62039377ed623b634d", [ - "uievents/mouse/synthetic-mouse-enter-leave-over-out-button-state-after-target-removed.tentative.html?buttonType=LEFT&button=0&buttons=1", + "wasm/webapi/empty-body.any.html", { - "testdriver": true + "script_metadata": [ + [ + "global", + "window,worker" + ] + ] } ], [ - "uievents/mouse/synthetic-mouse-enter-leave-over-out-button-state-after-target-removed.tentative.html?buttonType=MIDDLE&button=1&buttons=4", + "wasm/webapi/empty-body.any.serviceworker.html", { - "testdriver": true + "script_metadata": [ + [ + "global", + "window,worker" + ] + ] + } + ], + [ + "wasm/webapi/empty-body.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ] + ] + } + ], + [ + "wasm/webapi/empty-body.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ] + ] } ] - ] - }, - "order-of-events": { - "focus-events": { - "focus-automated-blink-webkit.html": [ - "41de4541366540ca189c3237cd2d5de0efb0f9ed", + ], + "esm-integration": { + "execute-start.tentative.html": [ + "a35adbe8ebfc1cc1bf92b9979621da29c797889f", [ null, {} ] ], - "focus-contained.html": [ - "8df612c1080a82ed4ffaae0c72287735af1e8cf0", + "exported-names.tentative.html": [ + "16a9c59787bc94f050c2fcdc522625858adcd03f", [ null, - { - "testdriver": true - } + {} ] ], - "focus-management-expectations.html": [ - "1845c15d71679276b6fbf4a19188d111da5ea70b", + "invalid-bytecode.tentative.html": [ + "0e447dbee510428691de42e7b34f0b9daef56565", [ null, - { - "testdriver": true - } + {} ] ], - "focus.html": [ - "7942674a70b7941cd1c23cee1251c43524362d57", + "js-wasm-cycle-errors.tentative.html": [ + "f45e06ece5f3bc411ffa1e0c45b39f6b7afe75b9", [ null, - { - "testdriver": true - } + {} ] - ] - }, - "mouse-events": { - "click-cancel.html": [ - "082c2a0cc3e60de4cb5da4b03796458451de2899", + ], + "js-wasm-cycle.tentative.html": [ + "38b0d3203c27d82fa6a0008d2ebdac31af3ac935", [ null, - { - "testdriver": true - } + {} ] ], - "click-on-body.html": [ - "45453c75ca89356f750af873ba4dce2f42d03425", + "module-parse-error.tentative.html": [ + "0e447dbee510428691de42e7b34f0b9daef56565", [ null, - { - "testdriver": true - } + {} ] ], - "click-on-div.html": [ - "bf06d8251cf6c956b2a1c351d2f6a45cd449bea3", + "resolve-export.tentative.html": [ + "14688221021d53725a503a763a60ee8ddbafb9c9", [ null, - { - "testdriver": true - } + {} ] ], - "click-on-html.html": [ - "e93acc674970f62cf835a43d57731044dd0aa0c6", + "script-src-allows-wasm.tentative.html": [ + "07faf9a5a1cff52532c01d0b80c29fbd83fd2dbc", [ null, - { - "testdriver": true - } + {} ] ], - "click-order.html": [ - "1285a31efc69022cebafc67cd4a9b291149f3f0a", + "script-src-blocks-wasm.tentative.sub.html": [ + "0d5c7ca6ed57fd8067eca705eec3526f381f5185", [ null, - { - "testdriver": true - } + {} ] ], - "mouseevents-mousemove.htm": [ - "98a35bbcf6b74a748a3f7d32f5eadcff7c500978", + "source-phase.tentative.html": [ + "870b16bd0a0ce8db80d403fc12aeecaf5e6ccedb", [ null, - { - "testdriver": true - } + {} ] ], - "mousemove-across.html": [ - "52d5a93cf9afe7e4963b8c3f6902e9f3456e17d9", + "wasm-import-wasm-export.tentative.html": [ + "3761a22f218db0b4a5e9cafd246aa58935e9d4fd", [ null, - { - "testdriver": true - } + {} ] ], - "mousemove-between.html": [ - "f9c422cc9364f793d8cdcb88d1a0379812953aba", + "wasm-import.tentative.html": [ + "243cfd46e4bdf0685a3340f90cae44b1fdf8c11e", [ null, - { - "testdriver": true - } + {} ] ], - "mouseover-out.html": [ - "f10518c7f15fb60e43eee66f15dd39c1fe843f17", + "wasm-js-cycle.tentative.html": [ + "298d4d40b0006e2b6505a9d09383e083ad0039c0", [ null, - { - "testdriver": true - } + {} ] ], - "wheel-basic.html": [ - "1a43022d2928bd704b25a7b48443264268d7088c", + "wasm-to-wasm-link-error.tentative.html": [ + "6c43e72b09bfe7ea43ca7d589ada5692297f865e", [ null, - { - "testdriver": true - } + {} ] ], - "wheel-scrolling.html": [ - "44e76bff6cb2a779b69c3677e738d947351e06a7", + "worker-import-source-phase.tentative.html": [ + "e193f3efc69330779408e56fddf09348fb6249fc", [ null, - { - "testdriver": true - } - ] - ] - } - } - }, - "upgrade-insecure-requests": { - "gen": { - "iframe-blank-inherit.meta": { - "unset": { - "fetch.https.html": [ - "b601fbbf3dbfb46800f1f57f8bba204011967611", - [ - null, - { - "timeout": "long" - } - ] - ], - "iframe-tag.https.html": [ - "fbc73e5872a7a5b9d31502b5ba68db1ce63604bb", - [ - null, - { - "timeout": "long" - } - ] - ], - "img-tag.https.html": [ - "b7b4ba03ee3f4b463c52eb1c7bdd8b343cb4d5a2", - [ - null, - { - "timeout": "long" - } - ] - ], - "sharedworker-classic.https.html": [ - "3d9fc6eeb928ed5f6eca4eb0e0c2e3c1a41c2a68", - [ - null, - { - "timeout": "long" - } - ] - ], - "sharedworker-import-data.https.html": [ - "0f345eb901e37ad299a2cfc2497599740e790901", - [ - null, - { - "timeout": "long" - } - ] - ], - "sharedworker-import.https.html": [ - "70ccb7af79bbd31d600c444a6f9985cfb032f448", - [ - null, - { - "timeout": "long" - } - ] - ], - "sharedworker-module.https.html": [ - "c58a8b741c89ab1d98c3993b49b4b122650115df", - [ - null, - { - "timeout": "long" - } - ] - ], - "websocket.https.html": [ - "a053ac832cf54359acd14232295edc27aebc5c1e", - [ - null, - { - "timeout": "long" - } - ] - ], - "worker-classic.https.html": [ - "abc67d750240e48d39ada45e5c632383434baf2d", - [ - null, - { - "timeout": "long" - } - ] - ], - "worker-import-data.https.html": [ - "f61176cda2be4084fa54b7d773edf5799cf256f7", - [ - null, - { - "timeout": "long" - } - ] - ], - "worker-import.https.html": [ - "d9f3a8cd2309317fa2dd6cfd771efb0bd6a58223", - [ - null, - { - "timeout": "long" - } - ] - ], - "worker-module.https.html": [ - "e82a6917d975ed7b91ceb5e332fddd90311a6a01", - [ - null, - { - "timeout": "long" - } - ] - ], - "worklet-animation-import-data.https.html": [ - "7b54ed289efb36f4b762a149368dcdfdb4097417", - [ - null, - { - "timeout": "long" - } - ] - ], - "worklet-animation.https.html": [ - "1d7e1fe5982fdd5c4b25306955de76a4b532c578", - [ - null, - { - "timeout": "long" - } - ] - ], - "worklet-audio-import-data.https.html": [ - "81a4e8a2f832e7745b40348da507d73c11219a1a", - [ - null, - { - "timeout": "long" - } - ] - ], - "worklet-audio.https.html": [ - "0aed1e59ac6efd5ccc720dadf40de4fa0203812b", - [ - null, - { - "timeout": "long" - } - ] - ], - "worklet-layout-import-data.https.html": [ - "c143066c787c166415b97bb08ee52afa46aadead", - [ - null, - { - "timeout": "long" - } - ] - ], - "worklet-layout.https.html": [ - "3095104f855cc75ed10eb4bd09b5bbc66412fab5", - [ - null, - { - "timeout": "long" - } - ] - ], - "worklet-paint-import-data.https.html": [ - "c7d7f35d1306e209593112ec47ad1bc4e3959e39", - [ - null, - { - "timeout": "long" - } - ] - ], - "worklet-paint.https.html": [ - "43892ec28450221d9883b297b47eff09ebb6fdf7", - [ - null, - { - "timeout": "long" - } - ] - ], - "xhr.https.html": [ - "dd17493029e8c0dce49f4e488b5a3e8d3db3786f", - [ - null, - { - "timeout": "long" - } - ] - ] - }, - "upgrade": { - "fetch.https.html": [ - "24d3ed9946b95212767d3a4d304f12068c78fcf8", - [ - null, - { - "timeout": "long" - } - ] - ], - "iframe-tag.https.html": [ - "57fec0607ed54cee338fee7e31ce2c8b06655658", - [ - null, - { - "timeout": "long" - } - ] - ], - "img-tag.https.html": [ - "0639eb49fc56f900bcf6b35625e554c9be9994e2", - [ - null, - { - "timeout": "long" - } - ] - ], - "sharedworker-classic.https.html": [ - "5e59b508df0dd4b171143832a57b26740398fd4b", - [ - null, - { - "timeout": "long" - } - ] - ], - "sharedworker-import-data.https.html": [ - "6132933adfb0534b7f8db48ee1ad6cb15f36bf90", - [ - null, - { - "timeout": "long" - } - ] - ], - "sharedworker-import.https.html": [ - "23ccc739e9794aa661731b3baf27b3d8810fc229", - [ - null, - { - "timeout": "long" - } - ] - ], - "sharedworker-module.https.html": [ - "2d48b7037bdc48eb347821c7af336b24c98a54ca", - [ - null, - { - "timeout": "long" - } - ] - ], - "websocket.https.html": [ - "a2e6ad6cafc4fc8253b9520965c49bb5cf523be9", - [ - null, - { - "timeout": "long" - } - ] - ], - "worker-classic.https.html": [ - "b707f78738d52baafdeca247b6fd610cf2f34fe1", - [ - null, - { - "timeout": "long" - } - ] - ], - "worker-import-data.https.html": [ - "d66684ecee5c3d7d983194aae3d5729981b68179", - [ - null, - { - "timeout": "long" - } - ] - ], - "worker-import.https.html": [ - "17a9e122503b08f33476730711cdf523567b213a", - [ - null, - { - "timeout": "long" - } - ] - ], - "worker-module.https.html": [ - "2207fcded26f98d83da30addf3eaac291f022617", - [ - null, - { - "timeout": "long" - } - ] - ], - "worklet-animation-import-data.https.html": [ - "78b39da45b4cdf957d3da97bb7c0946b31204a66", - [ - null, - { - "timeout": "long" - } - ] - ], - "worklet-animation.https.html": [ - "b560ec687e7f3b0f80bd5b474e14aa13c624d8b4", - [ - null, - { - "timeout": "long" - } - ] - ], - "worklet-audio-import-data.https.html": [ - "4098618e8278d722c29f43fc9f7f56770a8a4fb9", - [ - null, - { - "timeout": "long" - } - ] - ], - "worklet-audio.https.html": [ - "9dd58b98ab70de7129a0b7f28aaa73b0ea6f9d6d", - [ - null, - { - "timeout": "long" - } - ] - ], - "worklet-layout-import-data.https.html": [ - "5690227c4380287cb6641fcfe85981bd4f0102db", - [ - null, - { - "timeout": "long" - } - ] - ], - "worklet-layout.https.html": [ - "07aecb674317af92edf0fe461106d26fc60c115b", - [ - null, - { - "timeout": "long" - } - ] - ], - "worklet-paint-import-data.https.html": [ - "0bfe4cbfa4c063ad5c5d7db12f0478f6cee81a5b", - [ - null, - { - "timeout": "long" - } - ] - ], - "worklet-paint.https.html": [ - "887fe458cda421172290813862a2b0a31aff3163", - [ - null, - { - "timeout": "long" - } - ] - ], - "xhr.https.html": [ - "de3a6213649215d499c1a6e5867c71391d525bae", - [ - null, - { - "timeout": "long" - } - ] - ] - } - }, - "sharedworker-classic-data.http-rp": { - "upgrade": { - "fetch.https.html": [ - "4184e7c158c12b46d2d794e286319dae847a0347", - [ - null, - { - "timeout": "long" - } - ] - ], - "websocket.https.html": [ - "c41e4cde41f510b811c3b8aec859aeb8d864cae8", - [ - null, - { - "timeout": "long" - } - ] - ], - "xhr.https.html": [ - "62a5883cadb84de71f1c2b0d3b59d4b7cb4cf962", - [ - null, - { - "timeout": "long" - } - ] - ] - } - }, - "sharedworker-classic-data.meta": { - "unset": { - "fetch.https.html": [ - "2a7dbda8b59889d2dfa35490d10aca24e001f3d8", - [ - null, - { - "timeout": "long" - } - ] - ], - "websocket.https.html": [ - "116967e02074081ddbe0ee5176d9b745b43e4d23", - [ - null, - { - "timeout": "long" - } - ] - ], - "xhr.https.html": [ - "fa60413af5e6aed779cc71bf07dc9f7381e87dcd", - [ - null, - { - "timeout": "long" - } - ] - ] - }, - "upgrade": { - "fetch.https.html": [ - "fb39f9bc5c826e34d9c143bc0b98baaf57809d47", - [ - null, - { - "timeout": "long" - } - ] - ], - "websocket.https.html": [ - "4347f0118885cf42eaeb2e7afc5199b3f732a568", - [ - null, - { - "timeout": "long" - } - ] - ], - "xhr.https.html": [ - "d5f9b891b5c23eb9f0a12701f3be0e83c572a072", - [ - null, - { - "timeout": "long" - } - ] - ] - } - }, - "sharedworker-classic.http-rp": { - "upgrade": { - "fetch.https.html": [ - "1d8b60fea6cccaa767b1e86836af04007e6a6510", - [ - null, - { - "timeout": "long" - } - ] - ], - "websocket.https.html": [ - "bb031af962aef49f24a1d9958bbd2c52abb137ef", - [ - null, - { - "timeout": "long" - } - ] - ], - "xhr.https.html": [ - "00c297642fea2ece71b8879d17ad2724f493c0c2", - [ - null, - { - "timeout": "long" - } - ] - ] - } - }, - "sharedworker-module-data.http-rp": { - "upgrade": { - "fetch.https.html": [ - "a69ca6ebb13f386adac79299865d05c1c8753349", - [ - null, - { - "timeout": "long" - } - ] - ], - "websocket.https.html": [ - "df2014e4491b3442e36a92d39e49bb99df09302a", - [ - null, - { - "timeout": "long" - } - ] - ], - "xhr.https.html": [ - "8790654a036b12c13cf9a2c48c102f84b4cc6039", - [ - null, - { - "timeout": "long" - } - ] - ] - } - }, - "sharedworker-module-data.meta": { - "unset": { - "fetch.https.html": [ - "9f8b280cf47e5ea9864dbc16a0bb5a754b9aff88", - [ - null, - { - "timeout": "long" - } - ] - ], - "websocket.https.html": [ - "9861314634870ded51ab4539e9d61a1fb856fa3b", - [ - null, - { - "timeout": "long" - } - ] - ], - "xhr.https.html": [ - "d71d1f76ed77a83b0216cc85fcf8f18342f77085", - [ - null, - { - "timeout": "long" - } - ] - ] - }, - "upgrade": { - "fetch.https.html": [ - "63cca40cd25ea280d87805100a94208715f7c6f9", - [ - null, - { - "timeout": "long" - } - ] - ], - "websocket.https.html": [ - "36bac646a02d69de9da34768698458ba335846f9", - [ - null, - { - "timeout": "long" - } - ] - ], - "xhr.https.html": [ - "279e92e9f17d7a32217622a5dbb0f51b3ac167fb", - [ - null, - { - "timeout": "long" - } - ] - ] - } - }, - "sharedworker-module.http-rp": { - "upgrade": { - "fetch.https.html": [ - "593c92fa5062c326a8ab669874bd377098f84aa5", - [ - null, - { - "timeout": "long" - } - ] - ], - "websocket.https.html": [ - "6be3b239aab29610d256e2ee0bccf4e1947f127e", - [ - null, - { - "timeout": "long" - } - ] - ], - "xhr.https.html": [ - "d307b33c4911f7252133e6aca425e7e94b9b1aa3", - [ - null, - { - "timeout": "long" - } - ] - ] - } - }, - "srcdoc-inherit.meta": { - "unset": { - "fetch.https.html": [ - "f8585f64d36f71b94a127707a5867598dd5b7d4f", - [ - null, - { - "timeout": "long" - } - ] - ], - "iframe-tag.https.html": [ - "8b63807eaae7712a33da1ba292fd14b6195604ab", - [ - null, - { - "timeout": "long" - } - ] - ], - "img-tag.https.html": [ - "e7eb4050e2e66578f2f767ba312f2ccf82236a89", - [ - null, - { - "timeout": "long" - } - ] - ], - "sharedworker-classic.https.html": [ - "89db3b1be91cb324f60dbc77c1b2a17fb653fd4a", - [ - null, - { - "timeout": "long" - } - ] - ], - "sharedworker-import-data.https.html": [ - "6e61de3bc4a99118667e3d2c614ab7abe7b48a21", - [ - null, - { - "timeout": "long" - } - ] - ], - "sharedworker-import.https.html": [ - "754365142a53ba799dab5f212b8e9fe3a180bd87", - [ - null, - { - "timeout": "long" - } - ] - ], - "sharedworker-module.https.html": [ - "e9031bccb9459be5ffb94b12ada8efc37e70fdfc", - [ - null, - { - "timeout": "long" - } - ] - ], - "websocket.https.html": [ - "dfc63fe9b0a7ecac98e46fddbb7207181c985fe3", - [ - null, - { - "timeout": "long" - } - ] - ], - "worker-classic.https.html": [ - "819ef182e91368891d117a2ee50399a86e0ed16f", - [ - null, - { - "timeout": "long" - } - ] - ], - "worker-import-data.https.html": [ - "c060b0196daa6fd0f30f8ff5de3e399a5dd98315", - [ - null, - { - "timeout": "long" - } - ] - ], - "worker-import.https.html": [ - "8472deaee08033d05dbd2bde65e8f44518e153e2", - [ - null, - { - "timeout": "long" - } - ] - ], - "worker-module.https.html": [ - "0282683b9d061ca9ec86817bdbd4a466704b7916", - [ - null, - { - "timeout": "long" - } - ] - ], - "worklet-animation-import-data.https.html": [ - "0692fb893c609ea0d0e262b20d2fd053c6334668", - [ - null, - { - "timeout": "long" - } - ] - ], - "worklet-animation.https.html": [ - "7ec880806dedaaf50af66ad673bb0d7cb8ae9b92", - [ - null, - { - "timeout": "long" - } - ] - ], - "worklet-audio-import-data.https.html": [ - "40160b4fef12c8d0280fc9b4b2f4e0107a4e41bc", - [ - null, - { - "timeout": "long" - } - ] - ], - "worklet-audio.https.html": [ - "8dbc7012eda3ee4c35a583220c40af411b35afea", - [ - null, - { - "timeout": "long" - } - ] - ], - "worklet-layout-import-data.https.html": [ - "c2808ac643c0831d1b696ae798cad9be5518a46c", - [ - null, - { - "timeout": "long" - } - ] - ], - "worklet-layout.https.html": [ - "cc19e2775c8bf01e1d30f63b3d935422008bc8f8", - [ - null, - { - "timeout": "long" - } - ] - ], - "worklet-paint-import-data.https.html": [ - "3ba203f3f9c0e47c539c3cb5c30a2d765138f298", - [ - null, - { - "timeout": "long" - } - ] - ], - "worklet-paint.https.html": [ - "62a48a1661589a852f75515fee103ad8f5f742e4", - [ - null, - { - "timeout": "long" - } - ] - ], - "xhr.https.html": [ - "3b5047d512aa40e106e98bb21955369b7c966f9a", - [ - null, - { - "timeout": "long" - } - ] + {} ] - }, - "upgrade": { - "fetch.https.html": [ - "117e32f3f504de40ec27f5d5c3a3d16fc77acb74", - [ - null, - { - "timeout": "long" - } - ] - ], - "iframe-tag.https.html": [ - "679cb54eb2940749b45537739c913c55ddd471b8", - [ - null, - { - "timeout": "long" - } - ] - ], - "img-tag.https.html": [ - "e9744a3aec032a36798e0e1593572c00612874b2", - [ - null, - { - "timeout": "long" - } - ] - ], - "sharedworker-classic.https.html": [ - "3be481acf37aba5fdb419fb94d9b3702b23c9c07", - [ - null, - { - "timeout": "long" - } - ] - ], - "sharedworker-import-data.https.html": [ - "cbd2fabdea74f53a2317c93cef886a990ccf8cbc", - [ - null, - { - "timeout": "long" - } - ] - ], - "sharedworker-import.https.html": [ - "b2444a8c8ae9fe71c7980d2ace34a6f48c103a2a", - [ - null, - { - "timeout": "long" - } - ] - ], - "sharedworker-module.https.html": [ - "91e6ecd08e26430c16af4e26688ff93745b2f585", - [ - null, - { - "timeout": "long" - } - ] - ], - "websocket.https.html": [ - "c7f3c265d8c275b792c97f9e0adc2d702acf1517", - [ - null, - { - "timeout": "long" - } - ] - ], - "worker-classic.https.html": [ - "7c0677a61c9342e11cf95c668afe19db3497f99e", - [ - null, - { - "timeout": "long" - } - ] - ], - "worker-import-data.https.html": [ - "f90e9bd4a8dbd394b855c490e7653f7ca1babd71", - [ - null, - { - "timeout": "long" - } - ] - ], - "worker-import.https.html": [ - "a8370a0a6f87538bc901acb087a77190544e3a3f", - [ - null, - { - "timeout": "long" - } - ] - ], - "worker-module.https.html": [ - "ccd461add227faadf4a0cba5786678fc76cbcbca", - [ - null, - { - "timeout": "long" - } - ] - ], - "worklet-animation-import-data.https.html": [ - "c34a6d0782254b85a33e4c0e8ee84acd8e61a6bd", - [ - null, - { - "timeout": "long" - } - ] - ], - "worklet-animation.https.html": [ - "6be85c5e452f0596b5e9901e323b008f8f4d4b0a", - [ - null, - { - "timeout": "long" - } - ] - ], - "worklet-audio-import-data.https.html": [ - "b0ee36fa6ff332677c333e82225cbda443664c91", - [ - null, - { - "timeout": "long" - } - ] - ], - "worklet-audio.https.html": [ - "9636d3f55743c136e2a2aed3e8b97287fb368a6b", - [ - null, - { - "timeout": "long" - } - ] - ], - "worklet-layout-import-data.https.html": [ - "a0b031e4991ea281c6763113706fc74104543833", - [ - null, - { - "timeout": "long" - } - ] - ], - "worklet-layout.https.html": [ - "663d0b8238ef5169029b50dfeb3a24a6485c9610", - [ - null, - { - "timeout": "long" - } - ] - ], - "worklet-paint-import-data.https.html": [ - "48d31775224653afa35b6f994ba7acf986459bec", - [ - null, - { - "timeout": "long" - } - ] - ], - "worklet-paint.https.html": [ - "69a4c90ec61f29266f759cc3bfeafe36e5e1d362", - [ - null, - { - "timeout": "long" - } - ] - ], - "xhr.https.html": [ - "c326a81661837f1895bb89b5d09785e251e294ba", - [ - null, - { - "timeout": "long" - } - ] + ], + "worker-import.tentative.html": [ + "739f2d3f28cc68bd07de0986c6073c17701933a5", + [ + null, + {} ] - } - }, - "top.http-rp": { - "upgrade": { - "fetch.https.html": [ - "ff9f627f551f44e63f17bbc4151d4b4a3245da29", - [ - null, - { - "timeout": "long" - } - ] - ], - "iframe-tag.https.html": [ - "d78bcbd80101ef8c9364777593125a586f3202b0", - [ - null, - { - "timeout": "long" - } - ] - ], - "img-tag.https.html": [ - "9950b5b5f515447a7540dd52518b998193736f62", - [ - null, - { - "timeout": "long" - } - ] - ], - "sharedworker-classic.https.html": [ - "677dfad716289b5d0ad17a5839956dc38226e393", - [ - null, - { - "timeout": "long" - } - ] - ], - "sharedworker-import-data.https.html": [ - "7e268a47af4d140093771cbebf014e27dfd2b2c1", - [ - null, - { - "timeout": "long" - } - ] - ], - "sharedworker-import.https.html": [ - "3041d08f1831efaa07bb9bfaaf16cda65cd8f9b5", - [ - null, - { - "timeout": "long" - } - ] - ], - "sharedworker-module.https.html": [ - "4e20a8ab3dfbbfcb0f6489f7111dace180f33b29", - [ - null, - { - "timeout": "long" - } - ] - ], - "websocket.https.html": [ - "5573cace64057ec7455b6620a9dfb26b81497caa", - [ - null, - { - "timeout": "long" - } - ] - ], - "worker-classic.https.html": [ - "434818d1275d25191ae7e574ec4f9fb5ae651e03", - [ - null, - { - "timeout": "long" - } - ] - ], - "worker-import-data.https.html": [ - "85e1a9c08fe6c9260e6f6ea9baef43a26ee3f09e", - [ - null, - { - "timeout": "long" - } - ] - ], - "worker-import.https.html": [ - "7098954a871ee59e576c3b823f6baed5f2a3e8f9", - [ - null, - { - "timeout": "long" - } - ] - ], - "worker-module.https.html": [ - "5b0dc16408f2d5ca5e76e8c6fc7e98eb7481ccd5", - [ - null, - { - "timeout": "long" - } - ] - ], - "worklet-animation-import-data.https.html": [ - "a485bfc509061408d2ec9fe8440c1681b20e4822", - [ - null, - { - "timeout": "long" - } - ] - ], - "worklet-animation.https.html": [ - "511ff4625c1134c30a86479c65b077585803578e", - [ - null, - { - "timeout": "long" - } - ] - ], - "worklet-audio-import-data.https.html": [ - "5822f29c88ba40a62265de37593090938c04d491", - [ - null, - { - "timeout": "long" - } - ] - ], - "worklet-audio.https.html": [ - "296e8af847b4f3041a729c9af2297b0d6935316d", - [ - null, - { - "timeout": "long" - } - ] - ], - "worklet-layout-import-data.https.html": [ - "b7546cc6113a9c69f8d5841d4c0ec7969df0cf2e", - [ - null, - { - "timeout": "long" - } - ] - ], - "worklet-layout.https.html": [ - "3ded6cdf25c150914b7d465406857481d69d2ca4", - [ - null, - { - "timeout": "long" - } - ] - ], - "worklet-paint-import-data.https.html": [ - "fdc8c9106e67b80710db1581baca8afa02d51d62", - [ - null, - { - "timeout": "long" - } - ] - ], - "worklet-paint.https.html": [ - "2646219a98936d70190ad3e39c368ffec7f6ba41", - [ - null, - { - "timeout": "long" - } - ] - ], - "xhr.https.html": [ - "c85f01adc1d03dffe7d9a18ca0c6e5b8a9dcfa42", - [ - null, - { - "timeout": "long" - } - ] + ], + "worker.tentative.html": [ + "6145dd04ff8c8d33600570e63bc2bce871417420", + [ + null, + {} ] - } + ] }, - "top.meta": { - "unset": { - "fetch.https.html": [ - "39148c015beb6f73f505d0cc9a49e54f3d87a917", - [ - null, - { - "timeout": "long" - } - ] - ], - "iframe-tag.https.html": [ - "12ef5a5b7001d4c1eb9c2cdd23c63df7c5edf5ac", - [ - null, - { - "timeout": "long" - } - ] - ], - "img-tag.https.html": [ - "a78db7560ad855e899d2356351889096d880289c", - [ - null, - { - "timeout": "long" - } - ] - ], - "sharedworker-classic.https.html": [ - "4c5295cf7bfd79feb8d6792d31f6ac43ea0733b0", - [ - null, - { - "timeout": "long" - } - ] - ], - "sharedworker-import-data.https.html": [ - "dde524fb0fc1c9067a3051dba29aa7be9ed8a027", - [ - null, - { - "timeout": "long" - } + "historical.any.js": [ + "257112c4160f5424d12d175319322c2f5ae1576b", + [ + "wasm/webapi/historical.any.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ] ] - ], - "sharedworker-import.https.html": [ - "fbba95b65acda8468387d0a7b03fa0f8daa6937e", - [ - null, - { - "timeout": "long" - } + } + ], + [ + "wasm/webapi/historical.any.serviceworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ] ] - ], - "sharedworker-module.https.html": [ - "26776e4df76599ab75d2e58e49098aec66e24612", - [ - null, - { - "timeout": "long" - } + } + ], + [ + "wasm/webapi/historical.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ] ] - ], - "websocket.https.html": [ - "e074d9d82ead194e20fa1929659ad4d75e5cf9a8", - [ - null, - { - "timeout": "long" - } + } + ], + [ + "wasm/webapi/historical.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ] ] - ], - "worker-classic.https.html": [ - "aa01452b6418ec47d473869120a476059d370d5a", - [ - null, - { - "timeout": "long" - } + } + ] + ], + "idlharness.any.js": [ + "0c4669e6caa7b2b7a9c0a89f13cc11605a9067c4", + [ + "wasm/webapi/idlharness.any.html", + { + "script_metadata": [ + [ + "script", + "/resources/WebIDLParser.js" + ], + [ + "script", + "/resources/idlharness.js" + ] ] - ], - "worker-import-data.https.html": [ - "3669e03083693207e7209c83bff865d417b398fa", - [ - null, - { - "timeout": "long" - } + } + ], + [ + "wasm/webapi/idlharness.any.worker.html", + { + "script_metadata": [ + [ + "script", + "/resources/WebIDLParser.js" + ], + [ + "script", + "/resources/idlharness.js" + ] ] - ], - "worker-import.https.html": [ - "4743c2c9103868a4ec7b2312877022ef89c04ea1", - [ - null, - { - "timeout": "long" - } + } + ] + ], + "instantiateStreaming-bad-imports.any.js": [ + "38ecc40252e51d4a4daf9f1a58d31b0ec79c4ea3", + [ + "wasm/webapi/instantiateStreaming-bad-imports.any.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ], + [ + "script", + "/wasm/jsapi/bad-imports.js" + ] ] - ], - "worker-module.https.html": [ - "6e5cce8af6d1a66dd99157ac77311504ac721092", - [ - null, - { - "timeout": "long" - } + } + ], + [ + "wasm/webapi/instantiateStreaming-bad-imports.any.serviceworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ], + [ + "script", + "/wasm/jsapi/bad-imports.js" + ] ] - ], - "worklet-animation-import-data.https.html": [ - "4ffc90cd8fc98c67c14aba56326873e8c5fd615b", - [ - null, - { - "timeout": "long" - } + } + ], + [ + "wasm/webapi/instantiateStreaming-bad-imports.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ], + [ + "script", + "/wasm/jsapi/bad-imports.js" + ] ] - ], - "worklet-animation.https.html": [ - "114f59fbea8af18b72e237e1a62e0167ffef028b", - [ - null, - { - "timeout": "long" - } + } + ], + [ + "wasm/webapi/instantiateStreaming-bad-imports.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ], + [ + "script", + "/wasm/jsapi/bad-imports.js" + ] ] - ], - "worklet-audio-import-data.https.html": [ - "cad1c3580d38c5ad81ded3bc29fe2798012a1d31", - [ - null, - { - "timeout": "long" - } + } + ] + ], + "instantiateStreaming.any.js": [ + "cf3a5e7331f30ed05f96b26d7a913bebe2d827ac", + [ + "wasm/webapi/instantiateStreaming.any.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ], + [ + "script", + "/wasm/jsapi/instanceTestFactory.js" + ] ] - ], - "worklet-audio.https.html": [ - "16ce32b7311eb1cbd1c1221a6bcb85cd58de7f53", - [ - null, - { - "timeout": "long" - } + } + ], + [ + "wasm/webapi/instantiateStreaming.any.serviceworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ], + [ + "script", + "/wasm/jsapi/instanceTestFactory.js" + ] ] - ], - "worklet-layout-import-data.https.html": [ - "a6c633e97d691b35335cb31b8427944219cba85a", - [ - null, - { - "timeout": "long" - } + } + ], + [ + "wasm/webapi/instantiateStreaming.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ], + [ + "script", + "/wasm/jsapi/instanceTestFactory.js" + ] ] - ], - "worklet-layout.https.html": [ - "9c7f82d9e201bbacb7457c2ad69c34c5e20e2d80", - [ - null, - { - "timeout": "long" - } + } + ], + [ + "wasm/webapi/instantiateStreaming.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ], + [ + "script", + "/wasm/jsapi/assertions.js" + ], + [ + "script", + "/wasm/jsapi/instanceTestFactory.js" + ] ] - ], - "worklet-paint-import-data.https.html": [ - "7b484d0a4c45e58b61a428e0ab561f17c82f9e03", - [ - null, - { - "timeout": "long" - } + } + ] + ], + "invalid-args.any.js": [ + "b27e018a984e398b6c001426abdf8cfdc641f782", + [ + "wasm/webapi/invalid-args.any.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ] ] - ], - "worklet-paint.https.html": [ - "dcf2a137289d62be118898f1e51a4a17dccffda2", - [ - null, - { - "timeout": "long" - } + } + ], + [ + "wasm/webapi/invalid-args.any.serviceworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ] ] - ], - "xhr.https.html": [ - "ccb4ecf4acd4cc6e79ae0a5fcae5821cda76b102", - [ - null, - { - "timeout": "long" - } + } + ], + [ + "wasm/webapi/invalid-args.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ] ] - ] - }, - "upgrade": { - "fetch.https.html": [ - "5b3d886a8aafe2211df3247c5ed4d8bfe36cbd44", - [ - null, - { - "timeout": "long" - } + } + ], + [ + "wasm/webapi/invalid-args.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ] ] - ], - "iframe-tag.https.html": [ - "76ad9eacc358f91c5e8e0eecbc03dcccbb9234b5", - [ - null, - { - "timeout": "long" - } + } + ] + ], + "invalid-code.any.js": [ + "37373d49971a3d89b04720cc10669f4929fc9142", + [ + "wasm/webapi/invalid-code.any.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ] ] - ], - "img-tag.https.html": [ - "6fe8940e13509ed27d964f873ca6954c5e46864a", - [ - null, - { - "timeout": "long" - } + } + ], + [ + "wasm/webapi/invalid-code.any.serviceworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ] ] - ], - "sharedworker-classic.https.html": [ - "b8ad00fa477e052708527b6b85e1621111c5a328", - [ - null, - { - "timeout": "long" - } + } + ], + [ + "wasm/webapi/invalid-code.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ] ] - ], - "sharedworker-import-data.https.html": [ - "3ed32403341fb922196e6aa730313d681573b797", - [ - null, - { - "timeout": "long" - } + } + ], + [ + "wasm/webapi/invalid-code.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ] ] - ], - "sharedworker-import.https.html": [ - "eea7d4dc6389638858a984901482bdc46d893318", - [ - null, - { - "timeout": "long" - } + } + ] + ], + "modified-contenttype.any.js": [ + "354930517c73ea54162a655c2c12e93b40cc1a73", + [ + "wasm/webapi/modified-contenttype.any.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ] ] - ], - "sharedworker-module.https.html": [ - "7ac0ce75a285c5cefa41b1d0693ffe4ed9d51b8a", - [ - null, - { - "timeout": "long" - } + } + ], + [ + "wasm/webapi/modified-contenttype.any.serviceworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ] ] - ], - "websocket.https.html": [ - "fa47869c32d50e591316cb47656208604c842f94", - [ - null, - { - "timeout": "long" - } + } + ], + [ + "wasm/webapi/modified-contenttype.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ] ] - ], - "worker-classic.https.html": [ - "376440f7bf3d4994a7e714a48963c41df6e2f681", - [ - null, - { - "timeout": "long" - } + } + ], + [ + "wasm/webapi/modified-contenttype.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "/wasm/jsapi/wasm-module-builder.js" + ] ] - ], - "worker-import-data.https.html": [ - "0cb1533b2aa5373e2a4a2b988149c91925bdc8bb", - [ - null, - { - "timeout": "long" - } + } + ] + ], + "origin.sub.any.js": [ + "bf7901eeddee7c28413031198c4f138b7a23d6ea", + [ + "wasm/webapi/origin.sub.any.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ] ] - ], - "worker-import.https.html": [ - "020dc7946d958e5c33c455f649056888e5c367b6", - [ - null, - { - "timeout": "long" - } + } + ], + [ + "wasm/webapi/origin.sub.any.serviceworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ] ] - ], - "worker-module.https.html": [ - "c6100c45be549f583d8c0d7c4509c474fc55cafe", - [ - null, - { - "timeout": "long" - } + } + ], + [ + "wasm/webapi/origin.sub.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ] ] - ], - "worklet-animation-import-data.https.html": [ - "99b161ff5efaf0d4d650c24d24e1d09e73c5b0d5", - [ - null, - { - "timeout": "long" - } + } + ], + [ + "wasm/webapi/origin.sub.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ] ] - ], - "worklet-animation.https.html": [ - "ddded11818a31d45c633523a8c32db3d27cf09b4", - [ - null, - { - "timeout": "long" - } + } + ] + ], + "rejected-arg.any.js": [ + "49018db5e89eb0fa49bf9b6fa1017c9bfea7c3cd", + [ + "wasm/webapi/rejected-arg.any.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ] ] - ], - "worklet-audio-import-data.https.html": [ - "99e634cfaefc0f78dd916234924b31da750547c2", - [ - null, - { - "timeout": "long" - } + } + ], + [ + "wasm/webapi/rejected-arg.any.serviceworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ] ] - ], - "worklet-audio.https.html": [ - "e49a11154c1a2c3f39e16b1c062af7a9c9524190", - [ - null, - { - "timeout": "long" - } + } + ], + [ + "wasm/webapi/rejected-arg.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ] ] - ], - "worklet-layout-import-data.https.html": [ - "c0b3b47918fa8e341915d2f69bce7dd3b71a00ad", - [ - null, - { - "timeout": "long" - } + } + ], + [ + "wasm/webapi/rejected-arg.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ] ] - ], - "worklet-layout.https.html": [ - "917e5f064a869d48e08f53e6775503bd0ceb71ed", - [ - null, - { - "timeout": "long" - } + } + ] + ], + "status.any.js": [ + "f3859646cc54b9ebd3106f2614828f956cd95205", + [ + "wasm/webapi/status.any.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ] ] - ], - "worklet-paint-import-data.https.html": [ - "847e38a536527b85a29774d4fe383c574d9acab0", - [ - null, - { - "timeout": "long" - } + } + ], + [ + "wasm/webapi/status.any.serviceworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ] ] - ], - "worklet-paint.https.html": [ - "09a5ac2eb73c5bd4ec30a348917f8febc9ce8c5b", - [ - null, - { - "timeout": "long" - } + } + ], + [ + "wasm/webapi/status.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ] ] - ], - "xhr.https.html": [ - "4d16491a4df4647c501579612c90e4fb5d048742", - [ - null, - { - "timeout": "long" - } + } + ], + [ + "wasm/webapi/status.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ] ] + } + ] + ], + "wasm_stream_compile_test.html": [ + "790410e425befd2d4e74a75202cf738a1c91b8ed", + [ + null, + {} + ] + ], + "wasm_stream_instantiate_test.html": [ + "f39f6504953f5e4cc9b7f6905331237e84b5cdc2", + [ + null, + {} + ] + ] + } + }, + "web-animations": { + "animation-model": { + "animation-types": { + "accumulation-per-property-001.html": [ + "a3fd115563b3c934bf3f75fad0eabde1eae7e1e9", + [ + null, + {} ] - } + ], + "accumulation-per-property-002.html": [ + "5cf411edf6ed3b052fab1f76442daca66433cec0", + [ + null, + {} + ] + ], + "addition-per-property-001.html": [ + "2fbec2c4cd0a4fdc78d3c08486d34780e483e7d9", + [ + null, + {} + ] + ], + "addition-per-property-002.html": [ + "3b1c40e3c730b1428a2d4f1e4c8d70f8574c7432", + [ + null, + {} + ] + ], + "discrete.html": [ + "76f42bc7a409de96a737c6e7a3f411b9d6bdd9d1", + [ + null, + {} + ] + ], + "display.tentative.html": [ + "6b28dcd9648d3ad3034474f89aa06869b3d58e20", + [ + null, + {} + ] + ], + "interpolation-per-property-001.html": [ + "97f28224733511e37bf83bc7e653a2b4ff7f88b6", + [ + null, + {} + ] + ], + "interpolation-per-property-002.html": [ + "9ccc613cfc64dff7e4c4d5e9edf5963d3282da40", + [ + null, + {} + ] + ], + "scrollbar-interpolation.html": [ + "bc02dd00b97ba84f55e132069833f16827164525", + [ + null, + {} + ] + ], + "visibility.html": [ + "f5a60b4e2c7bb3c70a45353c7734dd0dff51d780", + [ + null, + {} + ] + ] }, - "worker-classic-data.meta": { - "unset": { - "fetch.https.html": [ - "607c6828e43d58187c65b62313faa580e8fc8dd4", - [ - null, - { - "timeout": "long" - } - ] - ], - "websocket.https.html": [ - "2b140fabc9f3155e7d48945de22718116eb3a255", - [ - null, - { - "timeout": "long" - } - ] - ], - "xhr.https.html": [ - "044aeb16765d0652f2b4ec1c14db4f5f35e02d57", - [ - null, - { - "timeout": "long" - } - ] + "combining-effects": { + "applying-interpolated-transform.html": [ + "c101b5f0cfcf133e87da1323a5cffa71b2d5f4f8", + [ + null, + {} ] - }, - "upgrade": { - "fetch.https.html": [ - "a7e4b9bd7b532404af55d8244a4f0a406b32be8c", - [ - null, - { - "timeout": "long" - } - ] - ], - "websocket.https.html": [ - "d1ac903673214906e514d98f2030b7de2eb46c13", - [ - null, - { - "timeout": "long" - } - ] - ], - "xhr.https.html": [ - "5ecc9293b5afb108137b6c6abcf226f46b0bceaa", - [ - null, - { - "timeout": "long" - } - ] + ], + "applying-the-composited-result.html": [ + "336115e5779837241b4316bff5e2fec7e857e518", + [ + null, + {} ] - } + ], + "effect-composition.html": [ + "70a8cdd92c2c89d7a19611fe0bed429728f7c536", + [ + null, + {} + ] + ] }, - "worker-classic.http-rp": { - "upgrade": { - "fetch.https.html": [ - "0d9eb0b56a5b9b3a321bebebcc4efbc93bff3c19", - [ - null, - { - "timeout": "long" - } - ] - ], - "websocket.https.html": [ - "117973e408aa3da737ece6183c31062bfc54fa9e", + "keyframe-effects": { + "background-shorthand.html": [ + "f186643331f6f016c7ca67ba6bc5b0041f13e4dc", + [ + null, + {} + ] + ], + "computed-keyframes-shorthands.html": [ + "ff62a23bce00900ddaac1a5249524bc2cc827968", + [ + null, + {} + ] + ], + "effect-value-context-filling.html": [ + "fcb7f131266c47bb225aa78458ba96b043a47e41", + [ + null, + {} + ] + ], + "effect-value-context.html": [ + "3730a02098ad317ee5bee5018f2a672f81276c3a", + [ + null, + {} + ] + ], + "effect-value-interval-distance.html": [ + "6bf5d8cd468b89ca729bce9e51b99bb44ea5549e", + [ + null, + {} + ] + ], + "effect-value-iteration-composite-operation.html": [ + "abfda86f4d1fbc620efcf3c5ddc3148be057096d", + [ + null, + {} + ] + ], + "effect-value-overlapping-keyframes.html": [ + "a2a0683921c9db5ced6bdd03ff0064414714e771", + [ + null, + {} + ] + ], + "effect-value-replaced-animations.html": [ + "d40a01fdd2a8c13649383d9cc1a8483ce84be902", + [ + null, + {} + ] + ], + "effect-value-transformed-distance.html": [ + "a33d6d4f24676356b59b6b431968d8486df50615", + [ + null, + {} + ] + ], + "keyframe-exceptions.html": [ + "4cb4be76a8a2d5b2db51408046485c74afa4827b", + [ + null, + {} + ] + ] + } + }, + "idlharness.window.js": [ + "aaf6f58e7bd2fae48f5f94bc6fa127b4d4653c51", + [ + "web-animations/idlharness.window.html", + { + "script_metadata": [ [ - null, - { - "timeout": "long" - } - ] - ], - "worker-classic.https.html": [ - "af144c38a6d1265021a16b47aa1c186bfb9b8fe0", + "script", + "/resources/WebIDLParser.js" + ], [ - null, - { - "timeout": "long" - } - ] - ], - "worker-module.https.html": [ - "f91b6c413ae3798e91831fd19d1469d65781831a", + "script", + "/resources/idlharness.js" + ], [ - null, - { - "timeout": "long" - } + "timeout", + "long" ] ], - "xhr.https.html": [ - "edca66b94300ebebd38d660c659c8d3b4f842213", - [ - null, - { - "timeout": "long" - } - ] - ] + "timeout": "long" } + ] + ], + "interfaces": { + "Animatable": { + "animate-no-browsing-context.html": [ + "61a7502a988f96437574bc2949a8978d326003e9", + [ + null, + {} + ] + ], + "animate.html": [ + "28e803d6905705ad7167b99060e1c06db21dd384", + [ + null, + {} + ] + ], + "getAnimations-iframe.html": [ + "1851878c418bb0b8654bcb5e0a78c686a13d51a5", + [ + null, + {} + ] + ], + "getAnimations.html": [ + "fd8719299dbc0d2233f8f16bc08cfa3c20684746", + [ + null, + {} + ] + ] }, - "worker-module-data.http-rp": { - "upgrade": { - "fetch.https.html": [ - "9ff76bc7878fa283dac081d136c60de6cd4807b6", - [ - null, - { - "timeout": "long" - } - ] - ], - "websocket.https.html": [ - "2d8c1bef7eed4b13454c2fbcee399dfe47c285a2", - [ - null, - { - "timeout": "long" - } - ] - ], - "xhr.https.html": [ - "b406ddd6dab9cf12efa39e17c0b6671c17360a44", - [ - null, - { - "timeout": "long" - } - ] + "Animation": { + "cancel.html": [ + "a7da9755dd5b647e0d6f1a8c0d2cf8cc115ee64d", + [ + null, + {} ] - } + ], + "commitStyles.html": [ + "9a7dbea8b8649bb4580e60fef1e1530a84f2b13f", + [ + null, + {} + ] + ], + "constructor.html": [ + "e964c10ee44ea2d3860e64ddd22853f9fdecad3d", + [ + null, + {} + ] + ], + "effect.html": [ + "cb8bc09c366a4f53b44d804ac3f7794f175677f4", + [ + null, + {} + ] + ], + "finished.html": [ + "bee4fd8fb7a63137f45681dccc3b53d3570eefc8", + [ + null, + {} + ] + ], + "id.html": [ + "5b9586bfaf962e73dd418212e407e6d529ecdfd6", + [ + null, + {} + ] + ], + "oncancel.html": [ + "d5391196092c9671c2c22c1c035bc173bbef7b4f", + [ + null, + {} + ] + ], + "onfinish.html": [ + "b58fea0362f412af753b87dbf55c6ee226a32736", + [ + null, + {} + ] + ], + "onremove.html": [ + "1a41a3d21c1768cff4289e3cb497937ac4a81f43", + [ + null, + {} + ] + ], + "pause.html": [ + "1d1bd5fd89aedd6055cd2a3ab0c2c59fcb353a7e", + [ + null, + {} + ] + ], + "pending.html": [ + "c200f9e97739e802488d416b79fc5f6084655c6c", + [ + null, + {} + ] + ], + "persist.html": [ + "c18993cbc44427af1b3ceeeedb4dcbac42d7957c", + [ + null, + {} + ] + ], + "play.html": [ + "6c5d604b1e4c88bfffe03238e059dc2b97c6947d", + [ + null, + {} + ] + ], + "progress.tentative.html": [ + "38f37cbfeb8dfb3febb1c524ce1aae48b9a832e7", + [ + null, + {} + ] + ], + "ready.html": [ + "462e2a0484451e4cff1f0ffce84d2ea3bd7b456a", + [ + null, + {} + ] + ], + "scroll-timeline-progress.tentative.html": [ + "b40e72482ba9c4c3b95eff305741e3d852ae1d65", + [ + null, + {} + ] + ], + "startTime.html": [ + "61f76955a398d6286ce08891145efd1f345f63d5", + [ + null, + {} + ] + ], + "style-change-events.html": [ + "d2d6e9d4c9be9a91c42c0aba48759d0dae824774", + [ + null, + {} + ] + ] }, - "worker-module-data.meta": { - "unset": { - "fetch.https.html": [ - "4a65c521dfdc8aa428fff3eef1e4342130b5a6e4", - [ - null, - { - "timeout": "long" - } - ] - ], - "websocket.https.html": [ - "27e0c78bb8e20de711d27a9bf159066a8e1be3d4", - [ - null, - { - "timeout": "long" - } - ] - ], - "xhr.https.html": [ - "eaad29b7d47b82619c49cbdd823fbf371d076a72", - [ - null, - { - "timeout": "long" - } - ] + "AnimationEffect": { + "getComputedTiming.html": [ + "10bd193361e03210c6ac3a976919f0b189db0136", + [ + null, + {} ] - }, - "upgrade": { - "fetch.https.html": [ - "c0692396730c20a3f31656ec2360d8136860e459", - [ - null, - { - "timeout": "long" - } - ] - ], - "websocket.https.html": [ - "0173f7986b03472771c1bddd115808188c9d8a4f", - [ - null, - { - "timeout": "long" - } - ] - ], - "xhr.https.html": [ - "5cce5cce98530bd48b0d3784d04a087326ade89a", - [ - null, - { - "timeout": "long" - } - ] + ], + "updateTiming.html": [ + "6a340c0bf47a298d3c04340e91d8026680aa9ba1", + [ + null, + {} ] - } + ] }, - "worker-module.http-rp": { - "upgrade": { - "fetch.https.html": [ - "d904dccf267a4e9ac3b69f5a11a7744b577ac66d", - [ - null, - { - "timeout": "long" - } - ] - ], - "websocket.https.html": [ - "62fb899cd091daa3ee86baddf3ba0c2325776a89", - [ - null, - { - "timeout": "long" - } - ] - ], - "worker-classic.https.html": [ - "edd3a00c57a524e5f265187590f68d2a9c36374c", - [ - null, - { - "timeout": "long" - } - ] - ], - "worker-module.https.html": [ - "c1f8057c9e4876248db1e060ae0d1e35aa1086e1", - [ - null, - { - "timeout": "long" - } - ] - ], - "xhr.https.html": [ - "eca7811d0baa0fc6fd076c45e6b6a6bd1ad2a8e8", - [ - null, - { - "timeout": "long" - } - ] + "AnimationPlaybackEvent": { + "constructor.html": [ + "1c40a3fb211c1bd3e33e6c6c6325b1d25e3b981d", + [ + null, + {} ] - } + ] + }, + "Document": { + "timeline.html": [ + "b8b4d74d5e536a111449fd0268424ac06a151b95", + [ + null, + {} + ] + ] + }, + "DocumentOrShadowRoot": { + "getAnimations.html": [ + "9bcc042a8fed318be44d09fd2436cd97ba9c4086", + [ + null, + {} + ] + ] + }, + "DocumentTimeline": { + "constructor.html": [ + "ca0997ac8f9012b7d019760be97e09fa0f837179", + [ + null, + {} + ] + ], + "style-change-events.html": [ + "c1607e6fb92943c580802025e4a4cc617a747144", + [ + null, + {} + ] + ] + }, + "KeyframeEffect": { + "composite.html": [ + "bcca2cad243abb3fe4d43dc2052e08af3e58499d", + [ + null, + {} + ] + ], + "constructor.html": [ + "f9d552e63ec55aefaab282d7dc9a352cc00fb263", + [ + null, + {} + ] + ], + "copy-constructor.html": [ + "e3bc0db00a7e84b1b0116b78c86905fc70d076f5", + [ + null, + {} + ] + ], + "getKeyframes.html": [ + "1f8d267e4a660c80b9820ff516079dbd71042f94", + [ + null, + {} + ] + ], + "iterationComposite.html": [ + "bbb8ee2a3261fcb98cda7a83056467bc0b20dac6", + [ + null, + {} + ] + ], + "processing-a-keyframes-argument-001.html": [ + "2252248e2387e776e91342e35362bad46f4a7309", + [ + null, + {} + ] + ], + "processing-a-keyframes-argument-002.html": [ + "8620f883f98f17a71adcbd7364c6ae942d830a45", + [ + null, + {} + ] + ], + "setKeyframes.html": [ + "a5c81a29bd9d975c93e652edb614f6dbb1570e3b", + [ + null, + {} + ] + ], + "style-change-events.html": [ + "eecf170cd902a3160ade8b4a95fb8ef16851f656", + [ + null, + {} + ] + ], + "target.html": [ + "58d17b98d51039bcedf8bc0ea4bdeea2bdfc7386", + [ + null, + {} + ] + ] } }, - "link-upgrade.sub.https.html": [ - "46788e8883cad6f9ee91993d6f2b36985cc96de3", - [ - null, - { - "timeout": "long" - } + "responsive": { + "assorted-lengths.html": [ + "50e01f766ce0b63d2e4077223f87ede7b593abf7", + [ + null, + {} + ] + ], + "background-position-responsive.html": [ + "7b1a6cd4dbfe0fa1fac615a9bcbe42a7a47d8a6f", + [ + null, + {} + ] + ], + "backgroundPosition.html": [ + "cd6c6991a361bfecd70bdecbea946570153b68b7", + [ + null, + {} + ] + ], + "backgroundSize.html": [ + "1e9ccf96a1a2bc4580c20e665fed138a0db2ba4a", + [ + null, + {} + ] + ], + "baselineShift.html": [ + "4ccaaf33ac6faeaf3bc4aefefb15e744c66f9192", + [ + null, + {} + ] + ], + "borderImageWidth.html": [ + "4b832889bd6ba3ad86e05e55677cb6dbc4321126", + [ + null, + {} + ] + ], + "borderRadius.html": [ + "c59696ec90555697b74bbbf58f2d63317c7d9f54", + [ + null, + {} + ] + ], + "borderWidth.html": [ + "090d9a185a5209a28b5831bb93bf1e675aa58380", + [ + null, + {} + ] + ], + "box-shadow-responsive.html": [ + "4f5325dca6d5b965e75378ed19e39c8a5068c5c2", + [ + null, + {} + ] + ], + "boxShadow.html": [ + "bd1911132dd20b8d8efbc40b0d91ab0e9777d093", + [ + null, + {} + ] + ], + "clip.html": [ + "316e977576a96f36524beba4cf41d614b2a098f4", + [ + null, + {} + ] + ], + "columnCount.html": [ + "c92d5cbf8fb2ae91fb40f15982360adb8ce88725", + [ + null, + {} + ] + ], + "columnGap.html": [ + "43d44152cb510e647c4ab6e11f48785c7e4c0eac", + [ + null, + {} + ] + ], + "d.html": [ + "55c6c23a0e305e8d439b4f9230acb84657463e37", + [ + null, + {} + ] + ], + "font-size-adjust.html": [ + "282ec7fedebbdac49407e6a928f20642aa202157", + [ + null, + {} + ] + ], + "fontSize.html": [ + "d65aeacd46b20dc9a2be539e0bba7ac513d2d6ff", + [ + null, + {} + ] + ], + "fontWeight.html": [ + "e8fbbae0e7e4c7cf119c5bdee2853b981afc1071", + [ + null, + {} + ] + ], + "lineHeight.html": [ + "03d45e54c168e5d9b2e6bf39a8d0b40793b73a3d", + [ + null, + {} + ] + ], + "minHeight.html": [ + "07474bc3f44e067b7c5097a3c30f96fd39842e45", + [ + null, + {} + ] + ], + "offset-path.html": [ + "eff8ede60f8f767450c07c56759e674591112e29", + [ + null, + {} + ] + ], + "offsetDistance.html": [ + "d56da9c76727afcafc802c0d8fb218da0070b516", + [ + null, + {} + ] + ], + "offsetRotate.html": [ + "f0957e15c5de0718d49df4be5adb401de54cb9ad", + [ + null, + {} + ] + ], + "opacity.html": [ + "0bedfc879a5a608400db3c0957375f7d0a805fc4", + [ + null, + {} + ] + ], + "perspective.html": [ + "f32b4dbad326e780355b1530ac41496cd8602b27", + [ + null, + {} + ] + ], + "rotate.html": [ + "b0e42132006a128b482da46c29e301d9fac2ba3a", + [ + null, + {} + ] + ], + "rowGap.html": [ + "b7dae62f238fb39d886c71bb8df616bcbdb30d8b", + [ + null, + {} + ] + ], + "shapeMargin.html": [ + "02d6151ad0f7b87e82d8ffc7e7284f5bb8e8ad1b", + [ + null, + {} + ] + ], + "shapeOutside.html": [ + "2a54576a335cc2be2bed17d995d59b180e84f08a", + [ + null, + {} + ] + ], + "strokeDasharray.html": [ + "a1ccb30e907a22eb21f71c6570c7ff28a391e280", + [ + null, + {} + ] + ], + "text-size-adjust.html": [ + "203b067a779c88c5c5e5ec3f538d5d056ebf80be", + [ + null, + {} + ] + ], + "textIndent.html": [ + "430417d28bd6f5e667f3b5a75b3c5ff20e596ce1", + [ + null, + {} + ] + ], + "to-color-change.html": [ + "6c3fcccf62c46512f671deddab146a7f316089f9", + [ + null, + {} + ] + ], + "to-inherited-change.html": [ + "96ef5d24e1cc000d95920302506405fe2ac3d2c4", + [ + null, + {} + ] + ], + "to-style-change.html": [ + "8f4bf4c8b51aa528560adc435f214a06434f7254", + [ + null, + {} + ] + ], + "transform.html": [ + "d57f8b136ac56543906355329b205452d7f01ffd", + [ + null, + {} + ] + ], + "translate.html": [ + "8df4d8577de2889e3f2a5ef52c25eeaccc1069a5", + [ + null, + {} + ] + ], + "verticalAlign.html": [ + "af81fa481b62b08e2edb1d6478602f3fe22c0654", + [ + null, + {} + ] + ], + "width.html": [ + "9f5bf5a29de0d7bdbd3c1dacf34fd3c51aea5010", + [ + null, + {} + ] ] - ] + }, + "timing-model": { + "animation-effects": { + "active-time.html": [ + "a2feb2323c3308d8e9cd4aa99a8bd0f67940f821", + [ + null, + {} + ] + ], + "current-iteration.html": [ + "24464ce05f5c0f26240b63166d754a29b140dd0e", + [ + null, + {} + ] + ], + "local-time.html": [ + "79437d9f5420408c6bea34b6dd1f0d5a0aeec8f9", + [ + null, + {} + ] + ], + "phases-and-states.html": [ + "a33dbf517e893547160c42f3326a2e417a9709e3", + [ + null, + {} + ] + ], + "simple-iteration-progress.html": [ + "3c42f79a7101e44195938137414d05cf6ff503ef", + [ + null, + {} + ] + ] + }, + "animations": { + "canceling-an-animation.html": [ + "f296ac4da786e7685ff1117ec063f949f1f4ca5a", + [ + null, + {} + ] + ], + "finishing-an-animation.html": [ + "fbf6558f781e624ed9ea7c9470e78d75d0854cb2", + [ + null, + {} + ] + ], + "invalidating-animation-before-start-time-synced.html": [ + "653e46906a7195ff5e9dc9f06df8acef4f4a2905", + [ + null, + {} + ] + ], + "pausing-an-animation.html": [ + "dd9522cb353436ac5fcdf368c80a252258ab3d26", + [ + null, + {} + ] + ], + "play-states.html": [ + "ec7d8c842fc9329c3508c22916ce59a236006296", + [ + null, + {} + ] + ], + "playing-an-animation.html": [ + "01e036ae57cafb045bc91003c02eb4262d659880", + [ + null, + {} + ] + ], + "reversing-an-animation.html": [ + "8d869d72aaffc44f07c6d3e30cd26ac53ac281d3", + [ + null, + {} + ] + ], + "seamlessly-updating-the-playback-rate-of-an-animation.html": [ + "dffbeabd599a2c3cab376191f9030b697deecc21", + [ + null, + {} + ] + ], + "setting-the-current-time-of-an-animation.html": [ + "809877345f7f6c6d4b94cdfe090ea6b8e9848f8e", + [ + null, + {} + ] + ], + "setting-the-playback-rate-of-an-animation.html": [ + "a1f9e4f3acea04337dd0147fbfa373f950a67409", + [ + null, + {} + ] + ], + "setting-the-start-time-of-an-animation.html": [ + "fee3f1e0de7940beeb46178080c2638454a4af29", + [ + null, + {} + ] + ], + "setting-the-target-effect-of-an-animation.html": [ + "60ea1850fc5c15ea91c075d8929d8a3dce2b4f89", + [ + null, + {} + ] + ], + "setting-the-timeline-of-an-animation.html": [ + "d4f802152c57b0f0c43a649472c48d19541f4d97", + [ + null, + {} + ] + ], + "the-current-time-of-an-animation.html": [ + "77a6b716d22062998529b58382e0205e6f017980", + [ + null, + {} + ] + ], + "updating-the-finished-state.html": [ + "4d3cc7950b09bdffc826dfa9ffd885e6dea5e9ac", + [ + null, + { + "timeout": "long" + } + ] + ] + }, + "time-transformations": { + "transformed-progress.html": [ + "a8fae03db5a3c14dd2c060879a0e9d20f5861276", + [ + null, + {} + ] + ] + }, + "timelines": { + "document-timelines.html": [ + "c71d73331c1cf028bb3c18de361f36aa2ad5dbda", + [ + null, + {} + ] + ], + "sibling-iframe-timeline.html": [ + "8a611c8579943a6ec3038bdadde967596afcfd2a", + [ + null, + {} + ] + ], + "timelines.html": [ + "1609f85939eaa76732910f29c9ae6024c052d25f", + [ + null, + {} + ] + ], + "update-and-send-events-replacement.html": [ + "d6ed734831868b5238d656ca83b440c6c515ea04", + [ + null, + {} + ] + ], + "update-and-send-events.html": [ + "255e013f27a729858310cb545b22d12da283ade5", + [ + null, + { + "timeout": "long" + } + ] + ] + } + } }, - "url": { - "IdnaTestV2.window.js": [ - "8873886bdab8a0d00fdece2fc81977a0f345cb53", - [ - "url/IdnaTestV2.window.html", - {} - ] - ], - "a-element-origin-xhtml.xhtml": [ - "effcf04bee3fb0def0b32bd92df5008fbd27e063", - [ - null, - {} - ] - ], - "a-element-origin.html": [ - "9cc8e94cbed06056fe4529b74499d8ae94dc8523", - [ - null, - {} - ] - ], - "a-element-xhtml.xhtml": [ - "05bec4ce4b2f1e5a1f825ba6428fa41413943f9c", - [ - "url/a-element-xhtml.xhtml?exclude=(file|javascript|mailto)", - {} + "web-bundle": { + "subresource-loading": { + "accept-header.https.tentative.html": [ + "68b13e53c662f9c9e56bb9a72f0cd1aa00a46182", + [ + null, + {} + ] ], - [ - "url/a-element-xhtml.xhtml?include=file", - {} + "coep.https.tentative.html": [ + "5e48cb73524aac8eed838b6ab8570fce0ee207ae", + [ + null, + {} + ] ], - [ - "url/a-element-xhtml.xhtml?include=javascript", - {} + "corp.https.tentative.html": [ + "3c46de6c76890aec078cb576e87d67006620631d", + [ + null, + {} + ] ], - [ - "url/a-element-xhtml.xhtml?include=mailto", - {} - ] - ], - "a-element.html": [ - "3429e07ec3f3f7d4cd15af6d2aa883e44ba78ac0", - [ - "url/a-element.html?exclude=(file|javascript|mailto)", - {} + "credentials.https.tentative.sub.html": [ + "37efc37e6d722e38f082ac3e2373f48cee4cc6e6", + [ + null, + {} + ] ], - [ - "url/a-element.html?include=file", - {} + "csp-allowed.https.tentative.html": [ + "890a5ba5bc999d4bdcf631d1257ff160d6dd6503", + [ + null, + {} + ] + ], + "csp-blocked.https.tentative.html": [ + "6e5e82d5399cf1e3b7f99743e188ec8fc8af6881", + [ + null, + {} + ] + ], + "csp-blockes-bundle.https.tentative.html": [ + "06cef8c118a7ae43573cbb1c1e16e88bf4b7af3a", + [ + null, + {} + ] + ], + "element-removal.https.tentative.html": [ + "87ab8a9f15d02a986014a429cdfa7f1ee90fb2cc", + [ + null, + {} + ] + ], + "invalid-json.https.tentative.html": [ + "f4f9405e2de7eef2f5133f708ab582c5e1da20de", + [ + null, + {} + ] + ], + "nested-bundle.https.tentative.html": [ + "2e5b102e68462a86b13a5861b727f4538504f1ef", + [ + null, + {} + ] + ], + "network-error.https.tentative.sub.html": [ + "3ebab3fa90259a8dfa4675d32eaf6294ec2c1ad6", + [ + null, + {} + ] + ], + "not-found.https.tentative.html": [ + "efcb6bc9fb1bd55addc8a96acc8c10119b5ee3b3", + [ + null, + {} + ] + ], + "path-restriction.https.tentative.html": [ + "1d7b6f204b3c3c52cbc73fabd3027c9cb5c413a6", + [ + null, + {} + ] + ], + "relative-url-in-web-bundle-cors.https.tentative.sub.html": [ + "32f333b67eb8e0d3cd9b29ee466af0c356e4ab1e", + [ + null, + {} + ] + ], + "relative-url-in-web-bundle.https.tentative.html": [ + "0b7f63c21c701724a8f3423d4bbfde6de81b0e28", + [ + null, + {} + ] + ], + "relative-url-resources.https.tentative.html": [ + "1b79b157c4f5ad369ad1a3156f852311d02d3db6", + [ + null, + {} + ] + ], + "relative-url-scopes.https.tentative.html": [ + "40a49d55d39f395a950a7da4493b1747685fcf0f", + [ + null, + {} + ] + ], + "relative-url-static-element.https.tentative.html": [ + "55030e234bf8a3205dbeb90e0fd35c9d816fdac7", + [ + null, + {} + ] + ], + "relative-url-with-base.https.tentative.html": [ + "3c7e1a380c0e2c2f57310173ea42dc8d187f75b4", + [ + null, + {} + ] + ], + "request-destination.https.tentative.sub.html": [ + "da12f3d042655d334452f85c1d232046f1b7f409", + [ + null, + {} + ] + ], + "resource-timing-attributes-consistent.https.tentative.sub.html": [ + "3231d69ae9ca2cce17cda917f3cd071867f0c8a8", + [ + null, + {} + ] + ], + "resource-timing.https.tentative.html": [ + "c486cf1711fcf203756a4afc9b73ec52b2a71da2", + [ + null, + {} + ] + ], + "reuse-web-bundle-resource.https.tentative.html": [ + "81d87bcbf0237fe74594cd8ed7f4b19042719dd4", + [ + null, + {} + ] + ], + "service-worker-controlled.https.tentative.html": [ + "b2e9abe5be3491f3976db746a691bb4de43c017e", + [ + null, + {} + ] + ], + "static-element-with-base.https.tentative.sub.html": [ + "886d9cb783b3726710cf60bc20e5d41fcfd97ec1", + [ + null, + {} + ] ], - [ - "url/a-element.html?include=javascript", - {} + "static-element.https.tentative.sub.html": [ + "198c8f8e5cf88b1e799d101a539b2dc41ec6bea0", + [ + null, + {} + ] ], - [ - "url/a-element.html?include=mailto", - {} - ] - ], - "data-uri-fragment.html": [ - "e77d96f03d821d4fdcd8cfa17f05ebe1b8237fe7", - [ - null, - {} + "subresource-load.https.tentative.sub.html": [ + "10c207020c2e3de5d8aaf053617adaa3d42786f2", + [ + null, + {} + ] + ], + "supports-webbundle.https.tentative.html": [ + "9beae287a00f5a2a48c26b9ed95970ecb5db2577", + [ + null, + {} + ] ] - ], - "failure.html": [ - "e61f462f97456f34cc40ff37cbfdeac9d00545df", + } + }, + "web-locks": { + "acquire.https.any.js": [ + "54ae6f30e7add6f45c6b5ba7161999b5a6078871", [ - null, + "web-locks/acquire.https.any.html", { - "timeout": "long" + "script_metadata": [ + [ + "title", + "Web Locks API: navigator.locks.request method" + ], + [ + "script", + "resources/helpers.js" + ], + [ + "global", + "window,dedicatedworker,sharedworker,serviceworker" + ] + ] } - ] - ], - "historical.any.js": [ - "9c4b5f0ae9bfad36ab84373342d8a52d72e23077", - [ - "url/historical.any.html", - {} ], [ - "url/historical.any.worker.html", - {} - ] - ], - "idlharness-shadowrealm.window.js": [ - "2373f84e0e251a967c221ee63a1f7076bb089f78", - [ - "url/idlharness-shadowrealm.window.html", + "web-locks/acquire.https.any.serviceworker.html", { "script_metadata": [ + [ + "title", + "Web Locks API: navigator.locks.request method" + ], [ "script", - "/resources/idlharness-shadowrealm.js" + "resources/helpers.js" + ], + [ + "global", + "window,dedicatedworker,sharedworker,serviceworker" ] ] } - ] - ], - "idlharness.any.js": [ - "4a0e52f12b3c32b63cd4723b6b68bfd793e02700", + ], [ - "url/idlharness.any.html", + "web-locks/acquire.https.any.sharedworker.html", { "script_metadata": [ [ - "script", - "/resources/WebIDLParser.js" + "title", + "Web Locks API: navigator.locks.request method" ], [ "script", - "/resources/idlharness.js" + "resources/helpers.js" + ], + [ + "global", + "window,dedicatedworker,sharedworker,serviceworker" ] ] } ], [ - "url/idlharness.any.worker.html", + "web-locks/acquire.https.any.worker.html", { "script_metadata": [ [ - "script", - "/resources/WebIDLParser.js" + "title", + "Web Locks API: navigator.locks.request method" ], [ "script", - "/resources/idlharness.js" + "resources/helpers.js" + ], + [ + "global", + "window,dedicatedworker,sharedworker,serviceworker" ] ] } ] ], - "javascript-urls.window.js": [ - "4f617beca17082dc8459acb73bca781900170593", - [ - "url/javascript-urls.window.html", - {} + "bfcache": { + "abort.tentative.https.html": [ + "35d9b11270d7850107d914601a5872c8c1d354aa", + [ + null, + { + "timeout": "long" + } + ] + ], + "held.tentative.https.html": [ + "9d670c58892370bd07d801602fccc982cafc6220", + [ + null, + { + "timeout": "long" + } + ] + ], + "release-across-thread.tentative.https.html": [ + "374cee8b6d248836847dc58057fae1e984d911e7", + [ + null, + { + "timeout": "long" + } + ] + ], + "release.tentative.https.html": [ + "97f542fc2eeee0e1c7a246c9e0c58471c0ce7477", + [ + null, + { + "timeout": "long" + } + ] + ], + "sharedworker-multiple.tentative.https.html": [ + "71a79bc5fa417ce2be7779d55d73f53e95c90943", + [ + null, + { + "timeout": "long" + } + ] ] - ], - "percent-encoding.window.js": [ - "dcb5c1e55b21b7830fe79f61f071c33b97bb986a", + }, + "clientids.https.html": [ + "7a3ffe45e1ebaac4ad85b76dbfd2523c0d5d7f82", [ - "url/percent-encoding.window.html", + null, {} ] ], - "toascii.window.js": [ - "cdc488ec28526f530031b66b63b3c23ff7dad430", + "frames.https.html": [ + "980b2fe7470bebec16193a6b1f641acc5ddaadce", [ - "url/toascii.window.html", + null, {} ] ], - "url-constructor.any.js": [ - "bea06d025b718820286d26ea1804fe98c559d2d9", + "held.https.any.js": [ + "7fc4c7354054c08a70e6b1ad050958c0303af5fa", [ - "url/url-constructor.any.html?exclude=(file|javascript|mailto)", + "web-locks/held.https.any.html", { "script_metadata": [ [ - "script", - "/common/subset-tests-by-key.js" + "title", + "Web Locks API: Lock held until callback result resolves" ], [ - "timeout", - "long" + "script", + "resources/helpers.js" ], [ - "variant", - "?include=file" - ], + "global", + "window,dedicatedworker,sharedworker,serviceworker" + ] + ] + } + ], + [ + "web-locks/held.https.any.serviceworker.html", + { + "script_metadata": [ [ - "variant", - "?include=javascript" + "title", + "Web Locks API: Lock held until callback result resolves" ], [ - "variant", - "?include=mailto" + "script", + "resources/helpers.js" ], [ - "variant", - "?exclude=(file|javascript|mailto)" + "global", + "window,dedicatedworker,sharedworker,serviceworker" ] - ], - "timeout": "long" + ] } ], [ - "url/url-constructor.any.html?include=file", + "web-locks/held.https.any.sharedworker.html", { "script_metadata": [ [ - "script", - "/common/subset-tests-by-key.js" + "title", + "Web Locks API: Lock held until callback result resolves" ], [ - "timeout", - "long" + "script", + "resources/helpers.js" ], [ - "variant", - "?include=file" - ], + "global", + "window,dedicatedworker,sharedworker,serviceworker" + ] + ] + } + ], + [ + "web-locks/held.https.any.worker.html", + { + "script_metadata": [ [ - "variant", - "?include=javascript" + "title", + "Web Locks API: Lock held until callback result resolves" ], [ - "variant", - "?include=mailto" + "script", + "resources/helpers.js" ], [ - "variant", - "?exclude=(file|javascript|mailto)" + "global", + "window,dedicatedworker,sharedworker,serviceworker" ] - ], - "timeout": "long" + ] } - ], + ] + ], + "idlharness.https.any.js": [ + "2df7831c3405720f62428eb2c8722c7d172f743e", [ - "url/url-constructor.any.html?include=javascript", + "web-locks/idlharness.https.any.html", { "script_metadata": [ [ "script", - "/common/subset-tests-by-key.js" - ], - [ - "timeout", - "long" - ], - [ - "variant", - "?include=file" + "/resources/WebIDLParser.js" ], [ - "variant", - "?include=javascript" + "script", + "/resources/idlharness.js" ], [ - "variant", - "?include=mailto" + "global", + "window,dedicatedworker,sharedworker,serviceworker" ], [ - "variant", - "?exclude=(file|javascript|mailto)" + "timeout", + "long" ] ], "timeout": "long" } ], [ - "url/url-constructor.any.html?include=mailto", + "web-locks/idlharness.https.any.serviceworker.html", { "script_metadata": [ [ "script", - "/common/subset-tests-by-key.js" - ], - [ - "timeout", - "long" - ], - [ - "variant", - "?include=file" + "/resources/WebIDLParser.js" ], [ - "variant", - "?include=javascript" + "script", + "/resources/idlharness.js" ], [ - "variant", - "?include=mailto" + "global", + "window,dedicatedworker,sharedworker,serviceworker" ], [ - "variant", - "?exclude=(file|javascript|mailto)" + "timeout", + "long" ] ], "timeout": "long" } ], [ - "url/url-constructor.any.worker.html?exclude=(file|javascript|mailto)", + "web-locks/idlharness.https.any.sharedworker.html", { "script_metadata": [ [ "script", - "/common/subset-tests-by-key.js" - ], - [ - "timeout", - "long" - ], - [ - "variant", - "?include=file" + "/resources/WebIDLParser.js" ], [ - "variant", - "?include=javascript" + "script", + "/resources/idlharness.js" ], [ - "variant", - "?include=mailto" + "global", + "window,dedicatedworker,sharedworker,serviceworker" ], [ - "variant", - "?exclude=(file|javascript|mailto)" + "timeout", + "long" ] ], "timeout": "long" } ], [ - "url/url-constructor.any.worker.html?include=file", + "web-locks/idlharness.https.any.worker.html", { "script_metadata": [ [ "script", - "/common/subset-tests-by-key.js" - ], - [ - "timeout", - "long" - ], - [ - "variant", - "?include=file" + "/resources/WebIDLParser.js" ], [ - "variant", - "?include=javascript" + "script", + "/resources/idlharness.js" ], [ - "variant", - "?include=mailto" + "global", + "window,dedicatedworker,sharedworker,serviceworker" ], [ - "variant", - "?exclude=(file|javascript|mailto)" + "timeout", + "long" ] ], "timeout": "long" } - ], + ] + ], + "ifAvailable.https.any.js": [ + "63e6d568fe513512cb558bd66eebea1b625d54c6", [ - "url/url-constructor.any.worker.html?include=javascript", + "web-locks/ifAvailable.https.any.html", { "script_metadata": [ [ - "script", - "/common/subset-tests-by-key.js" + "title", + "Web Locks API: ifAvailable option" ], [ - "timeout", - "long" + "script", + "resources/helpers.js" ], [ - "variant", - "?include=file" - ], + "global", + "window,dedicatedworker,sharedworker,serviceworker" + ] + ] + } + ], + [ + "web-locks/ifAvailable.https.any.serviceworker.html", + { + "script_metadata": [ [ - "variant", - "?include=javascript" + "title", + "Web Locks API: ifAvailable option" ], [ - "variant", - "?include=mailto" + "script", + "resources/helpers.js" ], [ - "variant", - "?exclude=(file|javascript|mailto)" + "global", + "window,dedicatedworker,sharedworker,serviceworker" ] - ], - "timeout": "long" + ] } ], [ - "url/url-constructor.any.worker.html?include=mailto", + "web-locks/ifAvailable.https.any.sharedworker.html", { "script_metadata": [ [ - "script", - "/common/subset-tests-by-key.js" + "title", + "Web Locks API: ifAvailable option" ], [ - "timeout", - "long" + "script", + "resources/helpers.js" ], [ - "variant", - "?include=file" - ], + "global", + "window,dedicatedworker,sharedworker,serviceworker" + ] + ] + } + ], + [ + "web-locks/ifAvailable.https.any.worker.html", + { + "script_metadata": [ [ - "variant", - "?include=javascript" + "title", + "Web Locks API: ifAvailable option" ], [ - "variant", - "?include=mailto" + "script", + "resources/helpers.js" ], [ - "variant", - "?exclude=(file|javascript|mailto)" + "global", + "window,dedicatedworker,sharedworker,serviceworker" ] - ], - "timeout": "long" + ] } ] ], - "url-origin.any.js": [ - "599984c6c17dfe160269058c6780b900c23057ee", - [ - "url/url-origin.any.html", - {} - ], - [ - "url/url-origin.any.worker.html", - {} - ] - ], - "url-searchparams.any.js": [ - "9bba12e89cefd1aa3a79e6de601cd37120f2297a", - [ - "url/url-searchparams.any.html", - {} - ], - [ - "url/url-searchparams.any.worker.html", - {} - ] - ], - "url-setters-a-area.window.js": [ - "6a5e762cd42fe89de25bef44dcad8c537b5b9874", + "lock-attributes.https.any.js": [ + "d1c03103e0b7d7cf460b51e7cd974a7615c89955", [ - "url/url-setters-a-area.window.html?exclude=(file|javascript|mailto)", + "web-locks/lock-attributes.https.any.html", { "script_metadata": [ [ - "script", - "/common/subset-tests-by-key.js" - ], - [ - "variant", - "?include=file" - ], - [ - "variant", - "?include=javascript" - ], - [ - "variant", - "?include=mailto" + "title", + "Web Locks API: Lock Attributes" ], [ - "variant", - "?exclude=(file|javascript|mailto)" + "global", + "window,dedicatedworker,sharedworker,serviceworker" ] ] } ], [ - "url/url-setters-a-area.window.html?include=file", + "web-locks/lock-attributes.https.any.serviceworker.html", { "script_metadata": [ [ - "script", - "/common/subset-tests-by-key.js" - ], - [ - "variant", - "?include=file" - ], - [ - "variant", - "?include=javascript" - ], - [ - "variant", - "?include=mailto" + "title", + "Web Locks API: Lock Attributes" ], [ - "variant", - "?exclude=(file|javascript|mailto)" + "global", + "window,dedicatedworker,sharedworker,serviceworker" ] ] } ], [ - "url/url-setters-a-area.window.html?include=javascript", + "web-locks/lock-attributes.https.any.sharedworker.html", { "script_metadata": [ [ - "script", - "/common/subset-tests-by-key.js" - ], - [ - "variant", - "?include=file" - ], - [ - "variant", - "?include=javascript" - ], - [ - "variant", - "?include=mailto" + "title", + "Web Locks API: Lock Attributes" ], [ - "variant", - "?exclude=(file|javascript|mailto)" + "global", + "window,dedicatedworker,sharedworker,serviceworker" ] ] } ], [ - "url/url-setters-a-area.window.html?include=mailto", + "web-locks/lock-attributes.https.any.worker.html", { "script_metadata": [ [ - "script", - "/common/subset-tests-by-key.js" - ], - [ - "variant", - "?include=file" - ], - [ - "variant", - "?include=javascript" - ], - [ - "variant", - "?include=mailto" + "title", + "Web Locks API: Lock Attributes" ], [ - "variant", - "?exclude=(file|javascript|mailto)" + "global", + "window,dedicatedworker,sharedworker,serviceworker" ] ] } ] ], - "url-setters-stripping.any.js": [ - "ac90cc17e0bfd5d26adb329ce1a506d14cbb3698", - [ - "url/url-setters-stripping.any.html", - {} - ], - [ - "url/url-setters-stripping.any.worker.html", - {} - ] - ], - "url-setters.any.js": [ - "fe88175ac63446927030867fcdacaae768c522c7", + "mode-exclusive.https.any.js": [ + "8450e237c3555a75b929d8b1c419678908628ddd", [ - "url/url-setters.any.html?exclude=(file|javascript|mailto)", + "web-locks/mode-exclusive.https.any.html", { "script_metadata": [ [ - "script", - "/common/subset-tests-by-key.js" - ], - [ - "variant", - "?include=file" - ], - [ - "variant", - "?include=javascript" - ], - [ - "variant", - "?include=mailto" + "title", + "Web Locks API: Exclusive Mode" ], [ - "variant", - "?exclude=(file|javascript|mailto)" + "global", + "window,dedicatedworker,sharedworker,serviceworker" ] ] } ], [ - "url/url-setters.any.html?include=file", + "web-locks/mode-exclusive.https.any.serviceworker.html", { "script_metadata": [ [ - "script", - "/common/subset-tests-by-key.js" - ], - [ - "variant", - "?include=file" + "title", + "Web Locks API: Exclusive Mode" ], [ - "variant", - "?include=javascript" - ], + "global", + "window,dedicatedworker,sharedworker,serviceworker" + ] + ] + } + ], + [ + "web-locks/mode-exclusive.https.any.sharedworker.html", + { + "script_metadata": [ [ - "variant", - "?include=mailto" + "title", + "Web Locks API: Exclusive Mode" ], [ - "variant", - "?exclude=(file|javascript|mailto)" + "global", + "window,dedicatedworker,sharedworker,serviceworker" ] ] } ], [ - "url/url-setters.any.html?include=javascript", + "web-locks/mode-exclusive.https.any.worker.html", { "script_metadata": [ [ - "script", - "/common/subset-tests-by-key.js" + "title", + "Web Locks API: Exclusive Mode" ], [ - "variant", - "?include=file" - ], + "global", + "window,dedicatedworker,sharedworker,serviceworker" + ] + ] + } + ] + ], + "mode-mixed.https.any.js": [ + "5f34588693f94e4c7d42b5943931978a60be9e8a", + [ + "web-locks/mode-mixed.https.any.html", + { + "script_metadata": [ [ - "variant", - "?include=javascript" + "title", + "Web Locks API: Mixed Modes" ], [ - "variant", - "?include=mailto" + "script", + "resources/helpers.js" ], [ - "variant", - "?exclude=(file|javascript|mailto)" + "global", + "window,dedicatedworker,sharedworker,serviceworker" ] ] } ], [ - "url/url-setters.any.html?include=mailto", + "web-locks/mode-mixed.https.any.serviceworker.html", { "script_metadata": [ [ - "script", - "/common/subset-tests-by-key.js" - ], - [ - "variant", - "?include=file" - ], - [ - "variant", - "?include=javascript" + "title", + "Web Locks API: Mixed Modes" ], [ - "variant", - "?include=mailto" + "script", + "resources/helpers.js" ], [ - "variant", - "?exclude=(file|javascript|mailto)" + "global", + "window,dedicatedworker,sharedworker,serviceworker" ] ] } ], [ - "url/url-setters.any.worker.html?exclude=(file|javascript|mailto)", + "web-locks/mode-mixed.https.any.sharedworker.html", { "script_metadata": [ [ - "script", - "/common/subset-tests-by-key.js" - ], - [ - "variant", - "?include=file" - ], - [ - "variant", - "?include=javascript" + "title", + "Web Locks API: Mixed Modes" ], [ - "variant", - "?include=mailto" + "script", + "resources/helpers.js" ], [ - "variant", - "?exclude=(file|javascript|mailto)" + "global", + "window,dedicatedworker,sharedworker,serviceworker" ] ] } ], [ - "url/url-setters.any.worker.html?include=file", + "web-locks/mode-mixed.https.any.worker.html", { "script_metadata": [ [ - "script", - "/common/subset-tests-by-key.js" + "title", + "Web Locks API: Mixed Modes" ], [ - "variant", - "?include=file" + "script", + "resources/helpers.js" ], [ - "variant", - "?include=javascript" - ], + "global", + "window,dedicatedworker,sharedworker,serviceworker" + ] + ] + } + ] + ], + "mode-shared.https.any.js": [ + "fc4a6012fab5675bcceafdd6f7d17b6bc5a67e64", + [ + "web-locks/mode-shared.https.any.html", + { + "script_metadata": [ [ - "variant", - "?include=mailto" + "title", + "Web Locks API: Shared Mode" ], [ - "variant", - "?exclude=(file|javascript|mailto)" + "global", + "window,dedicatedworker,sharedworker,serviceworker" ] ] } ], [ - "url/url-setters.any.worker.html?include=javascript", + "web-locks/mode-shared.https.any.serviceworker.html", { "script_metadata": [ [ - "script", - "/common/subset-tests-by-key.js" - ], - [ - "variant", - "?include=file" - ], - [ - "variant", - "?include=javascript" - ], - [ - "variant", - "?include=mailto" + "title", + "Web Locks API: Shared Mode" ], [ - "variant", - "?exclude=(file|javascript|mailto)" + "global", + "window,dedicatedworker,sharedworker,serviceworker" ] ] } ], [ - "url/url-setters.any.worker.html?include=mailto", + "web-locks/mode-shared.https.any.sharedworker.html", { "script_metadata": [ [ - "script", - "/common/subset-tests-by-key.js" - ], - [ - "variant", - "?include=file" + "title", + "Web Locks API: Shared Mode" ], [ - "variant", - "?include=javascript" - ], + "global", + "window,dedicatedworker,sharedworker,serviceworker" + ] + ] + } + ], + [ + "web-locks/mode-shared.https.any.worker.html", + { + "script_metadata": [ [ - "variant", - "?include=mailto" + "title", + "Web Locks API: Shared Mode" ], [ - "variant", - "?exclude=(file|javascript|mailto)" + "global", + "window,dedicatedworker,sharedworker,serviceworker" ] ] } ] ], - "url-statics-canparse.any.js": [ - "74f3da31f0d17527147b4de716cec6d6574f5a66", - [ - "url/url-statics-canparse.any.html", - {} - ], - [ - "url/url-statics-canparse.any.worker.html", - {} - ] - ], - "url-tojson.any.js": [ - "65165f96c572d9b01fe6a5e27339882c387260dd", - [ - "url/url-tojson.any.html", - {} - ], - [ - "url/url-tojson.any.worker.html", - {} - ] - ], - "urlencoded-parser.any.js": [ - "847465cb9214e1feac1babb6a1b86ecec9597028", - [ - "url/urlencoded-parser.any.html", - {} - ], - [ - "url/urlencoded-parser.any.worker.html", - {} - ] - ], - "urlsearchparams-append.any.js": [ - "5a7376144d0637e52cd470491f88779220b43b99", - [ - "url/urlsearchparams-append.any.html", - {} - ], - [ - "url/urlsearchparams-append.any.worker.html", - {} - ] - ], - "urlsearchparams-constructor.any.js": [ - "d482911350ba0fabeb127d0fb78cbd1dd71d4d45", - [ - "url/urlsearchparams-constructor.any.html", - {} - ], - [ - "url/urlsearchparams-constructor.any.worker.html", - {} - ] - ], - "urlsearchparams-delete.any.js": [ - "c597142c51d5bf3cdea286cf7a6e191d4e3be828", - [ - "url/urlsearchparams-delete.any.html", - {} - ], - [ - "url/urlsearchparams-delete.any.worker.html", - {} - ] - ], - "urlsearchparams-foreach.any.js": [ - "ff19643ac220d123be45f01af45fedde8d2d05c1", - [ - "url/urlsearchparams-foreach.any.html", - {} - ], - [ - "url/urlsearchparams-foreach.any.worker.html", - {} - ] - ], - "urlsearchparams-get.any.js": [ - "a2610fc933a772b36157e04e90877e48b632327e", - [ - "url/urlsearchparams-get.any.html", - {} - ], - [ - "url/urlsearchparams-get.any.worker.html", - {} - ] - ], - "urlsearchparams-getall.any.js": [ - "5d1a35352acf2c7c35f372a6c0462e98948c6569", - [ - "url/urlsearchparams-getall.any.html", - {} - ], + "non-fully-active.https.html": [ + "56a5372044daaca92297b9d19871fa4d7f82fae7", [ - "url/urlsearchparams-getall.any.worker.html", + null, {} ] ], - "urlsearchparams-has.any.js": [ - "2133a5da2f8b91cbb070436f74be9a2b84f32699", + "non-secure-context.any.js": [ + "94553591f372492a1d1085d6edf23715872c0d83", [ - "url/urlsearchparams-has.any.html", - {} + "web-locks/non-secure-context.any.html", + { + "script_metadata": [ + [ + "title", + "Web Locks API: API not available in non-secure context" + ], + [ + "global", + "window,dedicatedworker,sharedworker" + ] + ] + } ], [ - "url/urlsearchparams-has.any.worker.html", - {} - ] - ], - "urlsearchparams-set.any.js": [ - "eb24cac87b6dca1d3dd3bb2ed083745be3e1ca36", - [ - "url/urlsearchparams-set.any.html", - {} + "web-locks/non-secure-context.any.sharedworker.html", + { + "script_metadata": [ + [ + "title", + "Web Locks API: API not available in non-secure context" + ], + [ + "global", + "window,dedicatedworker,sharedworker" + ] + ] + } ], [ - "url/urlsearchparams-set.any.worker.html", - {} + "web-locks/non-secure-context.any.worker.html", + { + "script_metadata": [ + [ + "title", + "Web Locks API: API not available in non-secure context" + ], + [ + "global", + "window,dedicatedworker,sharedworker" + ] + ] + } ] ], - "urlsearchparams-size.any.js": [ - "7b3abc7c0b421cdb327921712a965aaaa03278b2", - [ - "url/urlsearchparams-size.any.html", - {} - ], + "opaque-origin.https.html": [ + "3ba636ecd8040b5b1b9d8b441176d50b791a6582", [ - "url/urlsearchparams-size.any.worker.html", + null, {} ] ], - "urlsearchparams-sort.any.js": [ - "4fd8cef69239d26eb6241df180453aedf00cc050", - [ - "url/urlsearchparams-sort.any.html", - {} - ], + "partitioned-web-locks.tentative.https.html": [ + "aa9c9b6984253b16a5fae5c2d06271d2a4374fee", [ - "url/urlsearchparams-sort.any.worker.html", + null, {} ] ], - "urlsearchparams-stringifier.any.js": [ - "6187db64b1747d294a18cf0d2182b2f045d29a7b", - [ - "url/urlsearchparams-stringifier.any.html", - {} - ], - [ - "url/urlsearchparams-stringifier.any.worker.html", - {} - ] - ] - }, - "urlpattern": { - "urlpattern-compare.any.js": [ - "8db38adfd41d47dd5f9b5d588002bec0d5b2adfe", + "query-empty.https.any.js": [ + "88ffdb7f810d6d3e698a507da97220684ad3ecfe", [ - "urlpattern/urlpattern-compare.any.html", + "web-locks/query-empty.https.any.html", { "script_metadata": [ [ - "global", - "window,worker" + "title", + "Web Locks API: navigator.locks.query method - no locks held" ], [ "script", - "resources/urlpattern-compare-tests.js" + "resources/helpers.js" + ], + [ + "global", + "window,dedicatedworker,sharedworker,serviceworker" ] ] } ], [ - "urlpattern/urlpattern-compare.any.serviceworker.html", + "web-locks/query-empty.https.any.serviceworker.html", { "script_metadata": [ [ - "global", - "window,worker" + "title", + "Web Locks API: navigator.locks.query method - no locks held" ], [ "script", - "resources/urlpattern-compare-tests.js" + "resources/helpers.js" + ], + [ + "global", + "window,dedicatedworker,sharedworker,serviceworker" ] ] } ], [ - "urlpattern/urlpattern-compare.any.sharedworker.html", + "web-locks/query-empty.https.any.sharedworker.html", { "script_metadata": [ [ - "global", - "window,worker" + "title", + "Web Locks API: navigator.locks.query method - no locks held" ], [ "script", - "resources/urlpattern-compare-tests.js" + "resources/helpers.js" + ], + [ + "global", + "window,dedicatedworker,sharedworker,serviceworker" ] ] } ], [ - "urlpattern/urlpattern-compare.any.worker.html", + "web-locks/query-empty.https.any.worker.html", { "script_metadata": [ [ - "global", - "window,worker" + "title", + "Web Locks API: navigator.locks.query method - no locks held" ], [ "script", - "resources/urlpattern-compare-tests.js" + "resources/helpers.js" + ], + [ + "global", + "window,dedicatedworker,sharedworker,serviceworker" ] ] } ] ], - "urlpattern-compare.https.any.js": [ - "8db38adfd41d47dd5f9b5d588002bec0d5b2adfe", + "query-ordering.https.html": [ + "d5e722baf75b6b4a77bf0943ddecd620499dc03a", [ - "urlpattern/urlpattern-compare.https.any.html", + null, + {} + ] + ], + "query.https.any.js": [ + "14fdeca7a426c44ac9027a3a2494e235d0ac1844", + [ + "web-locks/query.https.any.html", { "script_metadata": [ [ - "global", - "window,worker" + "title", + "Web Locks API: navigator.locks.query method" ], [ "script", - "resources/urlpattern-compare-tests.js" + "resources/helpers.js" ] ] } ], [ - "urlpattern/urlpattern-compare.https.any.serviceworker.html", + "web-locks/query.https.any.worker.html", { "script_metadata": [ [ - "global", - "window,worker" + "title", + "Web Locks API: navigator.locks.query method" ], [ "script", - "resources/urlpattern-compare-tests.js" + "resources/helpers.js" ] ] } - ], + ] + ], + "resource-names.https.any.js": [ + "1031b3f7ba2e34129870db73088be0bc384ab2f8", [ - "urlpattern/urlpattern-compare.https.any.sharedworker.html", + "web-locks/resource-names.https.any.html", { "script_metadata": [ + [ + "title", + "Web Locks API: Resources DOMString edge cases" + ], [ "global", - "window,worker" + "window,dedicatedworker,sharedworker,serviceworker" + ] + ] + } + ], + [ + "web-locks/resource-names.https.any.serviceworker.html", + { + "script_metadata": [ + [ + "title", + "Web Locks API: Resources DOMString edge cases" ], [ - "script", - "resources/urlpattern-compare-tests.js" + "global", + "window,dedicatedworker,sharedworker,serviceworker" ] ] } ], [ - "urlpattern/urlpattern-compare.https.any.worker.html", + "web-locks/resource-names.https.any.sharedworker.html", { "script_metadata": [ + [ + "title", + "Web Locks API: Resources DOMString edge cases" + ], [ "global", - "window,worker" + "window,dedicatedworker,sharedworker,serviceworker" + ] + ] + } + ], + [ + "web-locks/resource-names.https.any.worker.html", + { + "script_metadata": [ + [ + "title", + "Web Locks API: Resources DOMString edge cases" ], [ - "script", - "resources/urlpattern-compare-tests.js" + "global", + "window,dedicatedworker,sharedworker,serviceworker" ] ] } ] ], - "urlpattern-hasregexpgroups.any.js": [ - "33133d2511b065ca94cc5e793066cc8111b4d6e6", + "secure-context.https.any.js": [ + "29ae7aea475f2db169718507431adb4c6ff78eeb", [ - "urlpattern/urlpattern-hasregexpgroups.any.html", + "web-locks/secure-context.https.any.html", { "script_metadata": [ [ - "global", - "window,worker" + "title", + "Web Locks API: API requires secure context" ], [ - "script", - "resources/urlpattern-hasregexpgroups-tests.js" + "global", + "window,dedicatedworker,sharedworker,serviceworker" ] ] } ], [ - "urlpattern/urlpattern-hasregexpgroups.any.serviceworker.html", + "web-locks/secure-context.https.any.serviceworker.html", { "script_metadata": [ [ - "global", - "window,worker" + "title", + "Web Locks API: API requires secure context" ], [ - "script", - "resources/urlpattern-hasregexpgroups-tests.js" + "global", + "window,dedicatedworker,sharedworker,serviceworker" ] ] } ], [ - "urlpattern/urlpattern-hasregexpgroups.any.sharedworker.html", + "web-locks/secure-context.https.any.sharedworker.html", { "script_metadata": [ [ - "global", - "window,worker" + "title", + "Web Locks API: API requires secure context" ], [ - "script", - "resources/urlpattern-hasregexpgroups-tests.js" + "global", + "window,dedicatedworker,sharedworker,serviceworker" ] ] } ], [ - "urlpattern/urlpattern-hasregexpgroups.any.worker.html", + "web-locks/secure-context.https.any.worker.html", { "script_metadata": [ [ - "global", - "window,worker" + "title", + "Web Locks API: API requires secure context" ], [ - "script", - "resources/urlpattern-hasregexpgroups-tests.js" + "global", + "window,dedicatedworker,sharedworker,serviceworker" ] ] } ] ], - "urlpattern.any.js": [ - "7d47d22609bf8eb14386b0363e36b86f77b2780d", + "signal.https.any.js": [ + "5a37e3ae87182eb2ea1909c9e5e29b3f50fd248b", [ - "urlpattern/urlpattern.any.html", + "web-locks/signal.https.any.html", { "script_metadata": [ [ - "global", - "window,worker" + "title", + "Web Locks API: AbortSignal integration" ], [ "script", - "resources/urlpatterntests.js" + "resources/helpers.js" + ], + [ + "global", + "window,dedicatedworker,sharedworker,serviceworker" ] ] } ], [ - "urlpattern/urlpattern.any.serviceworker.html", + "web-locks/signal.https.any.serviceworker.html", { "script_metadata": [ [ - "global", - "window,worker" + "title", + "Web Locks API: AbortSignal integration" ], [ "script", - "resources/urlpatterntests.js" + "resources/helpers.js" + ], + [ + "global", + "window,dedicatedworker,sharedworker,serviceworker" ] ] } ], [ - "urlpattern/urlpattern.any.sharedworker.html", + "web-locks/signal.https.any.sharedworker.html", { "script_metadata": [ [ - "global", - "window,worker" + "title", + "Web Locks API: AbortSignal integration" ], [ "script", - "resources/urlpatterntests.js" + "resources/helpers.js" + ], + [ + "global", + "window,dedicatedworker,sharedworker,serviceworker" ] ] } ], [ - "urlpattern/urlpattern.any.worker.html", + "web-locks/signal.https.any.worker.html", { "script_metadata": [ [ - "global", - "window,worker" + "title", + "Web Locks API: AbortSignal integration" ], [ "script", - "resources/urlpatterntests.js" + "resources/helpers.js" + ], + [ + "global", + "window,dedicatedworker,sharedworker,serviceworker" ] ] } ] ], - "urlpattern.https.any.js": [ - "7d47d22609bf8eb14386b0363e36b86f77b2780d", + "steal.https.any.js": [ + "d165b9d179fb14ac9843401db6b8ee07c9470afe", [ - "urlpattern/urlpattern.https.any.html", + "web-locks/steal.https.any.html", { "script_metadata": [ [ - "global", - "window,worker" + "title", + "Web Locks API: steal option" ], [ "script", - "resources/urlpatterntests.js" + "resources/helpers.js" + ], + [ + "global", + "window,dedicatedworker,sharedworker,serviceworker" ] ] } ], [ - "urlpattern/urlpattern.https.any.serviceworker.html", + "web-locks/steal.https.any.serviceworker.html", { "script_metadata": [ [ - "global", - "window,worker" + "title", + "Web Locks API: steal option" ], [ "script", - "resources/urlpatterntests.js" + "resources/helpers.js" + ], + [ + "global", + "window,dedicatedworker,sharedworker,serviceworker" ] ] } ], [ - "urlpattern/urlpattern.https.any.sharedworker.html", + "web-locks/steal.https.any.sharedworker.html", { "script_metadata": [ [ - "global", - "window,worker" + "title", + "Web Locks API: steal option" ], [ "script", - "resources/urlpatterntests.js" + "resources/helpers.js" + ], + [ + "global", + "window,dedicatedworker,sharedworker,serviceworker" ] ] } ], [ - "urlpattern/urlpattern.https.any.worker.html", + "web-locks/steal.https.any.worker.html", { "script_metadata": [ [ - "global", - "window,worker" + "title", + "Web Locks API: steal option" ], [ "script", - "resources/urlpatterntests.js" - ] - ] - } - ] - ] - }, - "user-timing": { - "buffered-flag.any.js": [ - "f938c8522d829a5d4c0a28483fb1196be5512323", - [ - "user-timing/buffered-flag.any.html", - {} - ], - [ - "user-timing/buffered-flag.any.worker.html", - {} - ] - ], - "case-sensitivity.any.js": [ - "1c0b0dcac361fe02eefc1dd5035955d10dc37151", - [ - "user-timing/case-sensitivity.any.html", - {} - ], - [ - "user-timing/case-sensitivity.any.worker.html", - {} - ] - ], - "clearMarks.html": [ - "92c60a3bbb856bd05bf13f12bde09dac7eefb6e6", - [ - null, - {} - ] - ], - "clearMeasures.html": [ - "54d41005698305844088b347c11982c626947504", - [ - null, - {} - ] - ], - "clear_all_marks.any.js": [ - "35cd2a04f610369f69442bd27e2e8f00f01a27b1", - [ - "user-timing/clear_all_marks.any.html", - {} - ], - [ - "user-timing/clear_all_marks.any.worker.html", - {} - ] - ], - "clear_all_measures.any.js": [ - "32c993f2827a301feb7bcb69c11317d4020f12f2", - [ - "user-timing/clear_all_measures.any.html", - {} - ], - [ - "user-timing/clear_all_measures.any.worker.html", - {} - ] - ], - "clear_non_existent_mark.any.js": [ - "c7d8b4786134015f7aea7ab1852ef7ad0277926b", - [ - "user-timing/clear_non_existent_mark.any.html", - {} - ], - [ - "user-timing/clear_non_existent_mark.any.worker.html", - {} - ] - ], - "clear_non_existent_measure.any.js": [ - "9de0b5f266d4e2815f28fb29468ea571ba7a1bad", - [ - "user-timing/clear_non_existent_measure.any.html", - {} - ], - [ - "user-timing/clear_non_existent_measure.any.worker.html", - {} - ] - ], - "clear_one_mark.any.js": [ - "c180199d8c9f9224311d09c2299d2f1220dff970", - [ - "user-timing/clear_one_mark.any.html", - {} - ], - [ - "user-timing/clear_one_mark.any.worker.html", - {} - ] - ], - "clear_one_measure.any.js": [ - "a5e663772c8bbe9ce9f845ac471fbf10dd5a2867", - [ - "user-timing/clear_one_measure.any.html", - {} - ], - [ - "user-timing/clear_one_measure.any.worker.html", - {} - ] - ], - "entry_type.any.js": [ - "1e37453d09d42ea9c530bc2902cccb8f66fd6efd", - [ - "user-timing/entry_type.any.html", - {} - ], - [ - "user-timing/entry_type.any.worker.html", - {} - ] - ], - "idlharness-shadowrealm.window.js": [ - "340da96f749d4910af1c487fa3ae0fa9d91f4d59", - [ - "user-timing/idlharness-shadowrealm.window.html", - { - "script_metadata": [ + "resources/helpers.js" + ], [ - "script", - "/resources/idlharness-shadowrealm.js" + "global", + "window,dedicatedworker,sharedworker,serviceworker" ] ] } ] ], - "idlharness.any.js": [ - "511f2d0455b833a895ae9e52230ef82681851142", + "storage-buckets.tentative.https.any.js": [ + "a6b4f59a95d715aaff638a3c2b3a6c9ab3532ab8", [ - "user-timing/idlharness.any.html", + "web-locks/storage-buckets.tentative.https.any.html", { "script_metadata": [ [ - "global", - "window,worker" + "title", + "Web Locks API: Storage Buckets have independent lock sets" ], [ "script", - "/resources/WebIDLParser.js" + "resources/helpers.js" ], [ "script", - "/resources/idlharness.js" + "/storage/buckets/resources/util.js" ], [ - "timeout", - "long" + "global", + "window,dedicatedworker,sharedworker,serviceworker" ] - ], - "timeout": "long" + ] } ], [ - "user-timing/idlharness.any.serviceworker.html", + "web-locks/storage-buckets.tentative.https.any.serviceworker.html", { "script_metadata": [ [ - "global", - "window,worker" + "title", + "Web Locks API: Storage Buckets have independent lock sets" ], [ "script", - "/resources/WebIDLParser.js" + "resources/helpers.js" ], [ "script", - "/resources/idlharness.js" + "/storage/buckets/resources/util.js" ], [ - "timeout", - "long" + "global", + "window,dedicatedworker,sharedworker,serviceworker" ] - ], - "timeout": "long" + ] } ], [ - "user-timing/idlharness.any.sharedworker.html", + "web-locks/storage-buckets.tentative.https.any.sharedworker.html", { "script_metadata": [ [ - "global", - "window,worker" + "title", + "Web Locks API: Storage Buckets have independent lock sets" ], [ "script", - "/resources/WebIDLParser.js" + "resources/helpers.js" ], [ "script", - "/resources/idlharness.js" + "/storage/buckets/resources/util.js" ], [ - "timeout", - "long" + "global", + "window,dedicatedworker,sharedworker,serviceworker" ] - ], - "timeout": "long" + ] } ], [ - "user-timing/idlharness.any.worker.html", + "web-locks/storage-buckets.tentative.https.any.worker.html", { "script_metadata": [ [ - "global", - "window,worker" + "title", + "Web Locks API: Storage Buckets have independent lock sets" ], [ "script", - "/resources/WebIDLParser.js" + "resources/helpers.js" ], [ "script", - "/resources/idlharness.js" + "/storage/buckets/resources/util.js" ], [ - "timeout", - "long" + "global", + "window,dedicatedworker,sharedworker,serviceworker" ] - ], - "timeout": "long" + ] } ] ], - "invoke_with_timing_attributes.html": [ - "1df94a3006d7fb93039875d1cdb0b4c34385d54f", - [ - null, - {} - ] - ], - "invoke_with_timing_attributes.worker.js": [ - "32677c64d3bd5f63e5182541634c3e9abb0a0bea", - [ - "user-timing/invoke_with_timing_attributes.worker.html", - {} - ] - ], - "invoke_without_parameter.html": [ - "114435e59befbba8f760d45e1413ffc56d2e864b", + "workers.https.html": [ + "9fe38dbe38c798bf39aac0bd79a5dbabbcebfc68", [ null, {} ] - ], - "mark-entry-constructor.any.js": [ - "ef9c403dda67236893e72f0f65a4bff4718b12ed", - [ - "user-timing/mark-entry-constructor.any.html", - { - "script_metadata": [ - [ - "script", - "resources/user-timing-helper.js" - ] - ] - } - ], + ] + }, + "web-nfc": { + "NDEFMessage_constructor.https.window.js": [ + "f4d9a441b4c0c9a3ae2a0121c075471a34ecbf8d", [ - "user-timing/mark-entry-constructor.any.worker.html", + "web-nfc/NDEFMessage_constructor.https.window.html", { "script_metadata": [ [ "script", - "resources/user-timing-helper.js" + "resources/nfc-helpers.js" ] ] } ] ], - "mark-errors.any.js": [ - "39bafc045cb721c520d99b3f38c8e460bf6d4bcc", - [ - "user-timing/mark-errors.any.html", - {} - ], + "NDEFMessage_recursion-limit.https.window.js": [ + "49a69524d95e6e734096cfa29970be1596285e46", [ - "user-timing/mark-errors.any.worker.html", + "web-nfc/NDEFMessage_recursion-limit.https.window.html", {} ] ], - "mark-l3.any.js": [ - "407a5c8bba6a3c82a05df6a54d829b37f3a72264", - [ - "user-timing/mark-l3.any.html", - { - "script_metadata": [ - [ - "script", - "resources/user-timing-helper.js" - ] - ] - } - ], + "NDEFReader_make-read-only.https.window.js": [ + "f5872088ca6b19564e6ab870f814e217efb12202", [ - "user-timing/mark-l3.any.worker.html", + "web-nfc/NDEFReader_make-read-only.https.window.html", { "script_metadata": [ [ "script", - "resources/user-timing-helper.js" + "resources/nfc-helpers.js" ] ] } ] ], - "mark-measure-feature-detection.html": [ - "6f1ad489e95680fc5d1be4e25dcaa2eeee9a0aa5", - [ - null, - {} - ] - ], - "mark-measure-return-objects.any.js": [ - "bb15c5839818babf731bfec600395e13e5b794aa", - [ - "user-timing/mark-measure-return-objects.any.html", - {} - ], - [ - "user-timing/mark-measure-return-objects.any.worker.html", - {} - ] - ], - "mark.any.js": [ - "7e814d2074ca8bb9015bea02b741ce9875decec2", - [ - "user-timing/mark.any.html", - {} - ], - [ - "user-timing/mark.any.worker.html", - {} - ] - ], - "mark.html": [ - "e03e9e6247adabb186783e06a493dcc3a7ecb464", + "NDEFReader_scan.https.html": [ + "a1a4a04db7a9b2dd0c2123ec68a8d50950362332", [ null, {} ] ], - "mark_exceptions.html": [ - "b445c6b8778ae7aa0cff1cfcdbe789c2b0ddfc7d", + "NDEFReader_scan_iframe.https.html": [ + "6967c76ecd6d6bf6bfcb26c146931312f224734a", [ null, {} ] ], - "measure-exceptions.html": [ - "2836eaee2a86c10997893f3e9b77c86079030019", + "NDEFReader_write.https.html": [ + "0463b779de9c5e79fa8a1c25d10c4a1866022c35", [ null, {} ] ], - "measure-l3.any.js": [ - "642b55ab635e2c021d99c1aaf3e924ca2c5c0c29", - [ - "user-timing/measure-l3.any.html", - { - "script_metadata": [ - [ - "script", - "resources/user-timing-helper.js" - ] - ] - } - ], + "NDEFReadingEvent_constructor.https.window.js": [ + "d812dbaf186024acce66f3403ccf2fcf0378d739", [ - "user-timing/measure-l3.any.worker.html", + "web-nfc/NDEFReadingEvent_constructor.https.window.html", { "script_metadata": [ [ "script", - "resources/user-timing-helper.js" + "resources/nfc-helpers.js" ] ] } ] ], - "measure-with-dict.any.js": [ - "b452feb0de6fbb4749208baf0153bb12ab79ef04", - [ - "user-timing/measure-with-dict.any.html", - { - "script_metadata": [ - [ - "script", - "resources/user-timing-helper.js" - ] - ] - } - ], + "NDEFRecord_constructor.https.window.js": [ + "57c5bf021268735418e63e2b40559d5861ee45c1", [ - "user-timing/measure-with-dict.any.worker.html", + "web-nfc/NDEFRecord_constructor.https.window.html", { "script_metadata": [ [ "script", - "resources/user-timing-helper.js" + "resources/nfc-helpers.js" ] ] } ] ], - "measure.html": [ - "40f71a3362b581f3d0b23f5c0202a5d400a499b9", - [ - null, - {} - ] - ], - "measure_associated_with_navigation_timing.html": [ - "a874ad9172026b16409aac5a25eb4cb1bb9842b8", - [ - null, - {} - ] - ], - "measure_exception.html": [ - "5c1aa086c0fc882e4dd3c10ee2da637ead46b373", - [ - null, - {} - ] - ], - "measure_exceptions_navigation_timing.html": [ - "b1868b2cb6b3cb1b27b4774a9b30156b5b8952a7", - [ - null, - {} - ] - ], - "measure_navigation_timing.html": [ - "d6480d27a261c90dbe8c7cd9ddb3e20131efc068", - [ - null, - {} - ] - ], - "measure_syntax_err.any.js": [ - "9b762a40906351500527b9464837f50c04f77f3b", - [ - "user-timing/measure_syntax_err.any.html", - {} - ], - [ - "user-timing/measure_syntax_err.any.worker.html", - {} - ] - ], - "measures.html": [ - "0de68965ddb9c7a53ca5595874bb20a3d7d2ca71", - [ - null, - {} - ] - ], - "performance-measure-invalid.worker.js": [ - "bab3c35dcb6db5541faa2b69b4e18a4bf8feaaea", - [ - "user-timing/performance-measure-invalid.worker.html", - {} - ] - ], - "structured-serialize-detail.any.js": [ - "dcceffde278df17a1dcf86f9ee11c519bbdc1abd", - [ - "user-timing/structured-serialize-detail.any.html", - {} - ], - [ - "user-timing/structured-serialize-detail.any.worker.html", - {} - ] - ], - "supported-usertiming-types.any.js": [ - "ea3b2fe9dc90f70f3998a94a1460460b8b8b5992", - [ - "user-timing/supported-usertiming-types.any.html", - {} - ], - [ - "user-timing/supported-usertiming-types.any.worker.html", - {} - ] - ], - "user-timing-tojson.html": [ - "6aef7fa904ab958a4c3f8600ea592fac418d0522", - [ - null, - {} - ] - ], - "user_timing_exists.any.js": [ - "adf9052ebd58d8b3bb7ad85bca385095212b38ea", - [ - "user-timing/user_timing_exists.any.html", - {} - ], - [ - "user-timing/user_timing_exists.any.worker.html", - {} - ] - ] - }, - "vibration": { - "api-is-present.html": [ - "70aa4047e11b9708aa300c878164cde0da811ec1", - [ - null, - {} - ] - ], - "idlharness.window.js": [ - "a3cfbc11e03f18c741e779af8ed5ce59b2e18385", + "idlharness.https.window.js": [ + "72b5793f48e08c54157428ce3bf94982e23ba9b2", [ - "vibration/idlharness.window.html", + "web-nfc/idlharness.https.window.html", { "script_metadata": [ [ @@ -734081,28 +767151,37 @@ } ] ], - "invalid-values.html": [ - "b5a3f39ac68c80c74ad43381519267c63c421786", + "nfc_insecure_context.html": [ + "8c2eb5a14275b7a301ac418b2c5be48bd03705ed", [ null, {} ] ], - "silent-ignore.html": [ - "a04c648bd181c24af4e63e8d3cb5ad6ca706654a", + "nfc_permission.https.window.js": [ + "9cb4209d2f49a9ab104c8c5db66273c5acdc943d", [ - null, + "web-nfc/nfc_permission.https.window.html", { - "testdriver": true + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ] + ] } ] ] }, - "video-rvfc": { - "idlharness.window.js": [ - "fa9e4e0988bf67c88dccd297cf564bb97d5de6bd", + "web-otp": { + "idlharness.https.window.js": [ + "ef4983b1ab6b21be19c696fd7787b1196e97ee6c", [ - "video-rvfc/idlharness.window.html", + "web-otp/idlharness.https.window.html", { "script_metadata": [ [ @@ -734112,77 +767191,63 @@ [ "script", "/resources/idlharness.js" - ], - [ - "timeout", - "long" ] - ], - "timeout": "long" + ] } ] - ], - "request-video-frame-callback-before-xr-session.https.html": [ - "5277fbba92fbf63579ad4d4d5a2ca1dc2e356cd6", + ] + }, + "web-share": { + "canShare-files.https.html": [ + "2c2f2ff9699020b0ffcaf97c65aa75eaafe799e2", [ null, {} ] ], - "request-video-frame-callback-dom.html": [ - "c1804b4edd0c986aa161dfc13179983c04ace404", + "canShare-insecure.http.html": [ + "ce81c7c0c8a4e6d023257fce6cbd5ed802fabc2c", [ null, {} ] ], - "request-video-frame-callback-during-xr-session.https.html": [ - "7afbabcee0b7760d852f4e0139f4693b7f402190", + "canShare.https.html": [ + "f0aed9a2446da0eef05c280fe4fe5b71757c8fb2", [ null, {} ] ], - "request-video-frame-callback-parallel.html": [ - "682fd0ac8f6a22006e015c2f9b621da84fe53e04", + "disabled-by-permissions-policy-cross-origin.https.sub.html": [ + "773da84c0c5bdd068b3a6a103f6f218270851f5b", [ null, {} ] ], - "request-video-frame-callback-repeating.html": [ - "38e4abafd4afe963232ec7427afa5cbd57bc734d", + "disabled-by-permissions-policy.https.sub.html": [ + "e9ea903965032e4165beb31ef3311bc22f95f249", [ null, - {} + { + "testdriver": true + } ] ], - "request-video-frame-callback-webrtc.https.html": [ - "22c90f8460500dd126b133caa177b92332a310d5", + "feature-policy-listed.tentative.html": [ + "8f709e68e7535b3878d061fee98dbeab8f8b2231", [ null, {} ] ], - "request-video-frame-callback.html": [ - "256216e8fc098482baf267d95fc5f2ceca430c53", - [ - null, - {} - ] - ] - }, - "virtual-keyboard": { "idlharness.https.window.js": [ - "8a40e68575f0fc7383f660346e8b98c646c798e2", + "fbe59864af99c0a55b83e942f0e40f4d45de72a6", [ - "virtual-keyboard/idlharness.https.window.html", + "web-share/idlharness.https.window.html", { "script_metadata": [ - [ - "timeout", - "long" - ], [ "script", "/resources/WebIDLParser.js" @@ -734190,39 +767255,18 @@ [ "script", "/resources/idlharness.js" + ], + [ + "timeout", + "long" ] ], "timeout": "long" } ] ], - "virtual-keyboard-policy.html": [ - "67782020d3c8049093a70097271fe4d943ae1be2", - [ - null, - {} - ] - ], - "virtual-keyboard-type.https.html": [ - "47d09ce04781a4c7c1aec62336542f8ca06e0d71", - [ - null, - {} - ] - ] - }, - "visual-viewport": { - "page-and-offset-in-iframe.html": [ - "086c816956e8f33929e9e0c3249c9d0555a6e565", - [ - null, - { - "testdriver": true - } - ] - ], - "resize-event-order.html": [ - "41a13728bc3ff61cfc32bb02839eab5a11d1d33b", + "share-consume-activation.https.html": [ + "301469f83d8a6f27aa2ef0b87eb0e6fa583ecf2a", [ null, { @@ -734230,8 +767274,8 @@ } ] ], - "scroll-event-order.html": [ - "da5b77c0e26a3950dfd1e4d3018dbbbabeb67f9b", + "share-empty.https.html": [ + "0bca2f29607f03e14243a9088f69efaf9809b365", [ null, { @@ -734239,5178 +767283,4719 @@ } ] ], - "viewport-no-resize-event-on-overflow-recalc.html": [ - "dcb9432da83cb21b6f0403080d3c7b3b5df1659e", - [ - null, - {} - ] - ], - "viewport-read-size-causes-layout.html": [ - "0520a7cf8056cf65a996ea953232544d34c56bb0", - [ - null, - {} - ] - ], - "viewport-read-size-in-iframe-causes-layout.html": [ - "a08f7e876fcbe51b6ad2cb9fd1083b904ca1b459", - [ - null, - {} - ] - ], - "viewport-resize-event-on-iframe-show.html": [ - "688148a88fb21f899a16a710f24dd4836631fd13", - [ - null, - {} - ] - ], - "viewport-resize-event-on-iframe-size-change.html": [ - "802fee7879200a8e9352a54ba0a5f9719ca5f401", - [ - null, - {} - ] - ], - "viewport-resize-event-on-load-overflowing-page.html": [ - "d5dc1deae7279d3dc1b8c67a3a92e65c7a5e409d", - [ - null, - {} - ] - ], - "viewport-scrollbars-cause-resize-in-iframe.html": [ - "ce9ec3276886b5786ffe1309251469e92f29e1a9", - [ - null, - {} - ] - ], - "viewport-scrollbars-cause-resize.html": [ - "086e8d92b087afe8aea2fbc91c1f96dd7d328e72", - [ - null, - {} - ] - ], - "viewport-segments.tentative.html": [ - "c90ed29d730dbaf98b1638893c8688d8b574cf04", - [ - null, - {} - ] - ], - "viewport-type.html": [ - "7a9ca425c082cad059f6870afaafcbf4f64a7ae5", + "share-securecontext.http.html": [ + "6344330c6b47b32e3872f3168c0edb604aef5499", [ null, {} ] ], - "viewport-unscaled-scale-iframe.html": [ - "30d9bfbe8967a4bd3f1a5f802f7a4103172d73b9", + "share-sharePromise-internal-slot.https.html": [ + "eb8bf7e4c7a321787c6a7882d0cdf30c9a59ec67", [ null, - {} + { + "testdriver": true + } ] ], - "viewport-unscaled-scale.html": [ - "b83015d8d167abe583d335a85bb9941ee7fe47b0", + "share-url-invalid.https.html": [ + "cb76458c24c5632f4a97d3f8f5a744fc46d7b6a0", [ null, - {} + { + "testdriver": true + } ] ], - "viewport-unscaled-scroll-iframe.html": [ - "f9e3023ab795120385dd9f8bd55a87e0a94a08f7", + "share-without-user-gesture.https.html": [ + "1b2a764dbe8d634ecfdb92bdbca8809d5c87d843", [ null, {} ] ], - "viewport-unscaled-scroll.html": [ - "93623d19625030ce0b42711b1b29db901c2fdf06", + "test-fully-active.https.html": [ + "46991d3370f6f55b4ca59dc8cd3bd14bf628e9a2", [ null, - {} + { + "testdriver": true + } ] - ], - "viewport-unscaled-size-iframe.html": [ - "31df6a05fdaeba424ac8b4bcbb1a6e09ef5c0fcc", + ] + }, + "webaudio": { + "historical.html": [ + "1f3146c39d5e6917ae593c9d3f0efa80b1e9567a", [ null, {} ] ], - "viewport-unscaled-size.html": [ - "8ad9fb2cfeb44c10320c742c3e8de4a733105c78", - [ - null, - {} - ] - ] - }, - "wai-aria": { - "idlharness.window.js": [ - "590bf9e2e9fec8773a4ba01fd34bb71250a58c33", + "idlharness.https.window.js": [ + "e941a75c26752c6359ccef31b0635759cd784c0c", [ - "wai-aria/idlharness.window.html", + "webaudio/idlharness.https.window.html", { "script_metadata": [ [ "script", - "/resources/WebIDLParser.js" - ], - [ - "script", - "/resources/idlharness.js" - ] - ] - } - ] - ], - "role": { - "abstract-roles.html": [ - "520ecf2dbb398d3978543b915813257e9c7a7b1c", - [ - null, - { - "testdriver": true - } - ] - ], - "basic.html": [ - "5fbe1fe2aa50cc5b00a59280286c471e69049eef", - [ - null, - { - "testdriver": true - } - ] - ], - "button-roles.html": [ - "23d0cd22d619f0c25cef10241151f09b30d25211", - [ - null, - { - "testdriver": true - } - ] - ], - "contextual-roles.html": [ - "90b1842f0898b797f13ba3480e634f5dd28abbc5", - [ - null, - { - "testdriver": true - } - ] - ], - "fallback-roles.html": [ - "98011570b4f074bf23871a91f404e74ea6001674", - [ - null, - { - "testdriver": true - } - ] - ], - "form-roles.html": [ - "935899c583be85b4a8593567a94e87c826dc0d87", - [ - null, - { - "testdriver": true - } - ] - ], - "grid-roles.html": [ - "c40771ba9f2e6825e3d120b70bd2eb5d2231bf28", - [ - null, - { - "testdriver": true - } - ] - ], - "invalid-roles.html": [ - "3f4255083e1adf05202cad3a4ae8d4a58b7f5e07", - [ - null, - { - "testdriver": true - } - ] - ], - "list-roles.html": [ - "71c672c60132c73a554799b99e6c8ebebf5b9067", - [ - null, - { - "testdriver": true - } - ] - ], - "listbox-roles.html": [ - "50208229278d4f49e0651d4e3e18a10d457d16a8", - [ - null, - { - "testdriver": true - } - ] - ], - "menu-roles.html": [ - "4af4d8d2ff02c841178fd197430cc82d00239430", - [ - null, - { - "testdriver": true - } - ] - ], - "region-roles.html": [ - "d80570a97bcdddff7ba6669b792d76de72836913", - [ - null, - { - "testdriver": true - } - ] - ], - "role_none_conflict_resolution.html": [ - "9e2ee6ccfe59cea79d39d915b175aec413a1fa85", - [ - null, - { - "testdriver": true - } - ] - ], - "roles.html": [ - "844da3ce47b0f3ec55ed489b24d27f0bdfc3f380", - [ - null, - { - "testdriver": true - } - ] - ], - "synonym-roles.html": [ - "f9d3d7d0a9a9958e9a62d2e8f5b2fe33db968985", - [ - null, - { - "testdriver": true - } - ] - ], - "tab-roles.html": [ - "e3d14741c84516e1c6aa51987a1c5485a3b4545a", - [ - null, - { - "testdriver": true - } - ] - ], - "table-roles.html": [ - "6ffb94218d6174eaa061adb512d378855a808c37", - [ - null, - { - "testdriver": true - } - ] - ], - "tree-roles.html": [ - "eb1084040deb6bba5ba8d266882b6177132442b3", - [ - null, - { - "testdriver": true - } - ] - ] - } - }, - "wasm": { - "create_multiple_memory.worker.js": [ - "5bb1dcfc8a1aa56f0e748dfccd1e65ab48657d45", - [ - "wasm/create_multiple_memory.worker.html", - {} + "/resources/WebIDLParser.js" + ], + [ + "script", + "/resources/idlharness.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ] ], - "jsapi": { - "constructor": { - "compile.any.js": [ - "f822aa30e69eb954677d02730923a37b2a0bfabc", + "the-audio-api": { + "processing-model": { + "cycle-without-delay.html": [ + "cab0f6ca8e7f04fb97bd4087d00e936524ebead9", [ null, - { - "jsshell": true, - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ] - ] - } - ], - [ - "wasm/jsapi/constructor/compile.any.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ] - ] - } - ], - [ - "wasm/jsapi/constructor/compile.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ] - ] - } - ], - [ - "wasm/jsapi/constructor/compile.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ] - ] - } + {} ] ], - "instantiate-bad-imports.any.js": [ - "e4926c8d70a86e0d7ef241e05e0ca79fd6904178", + "delay-time-clamping.html": [ + "fa010df3cd51389a2629f757c9201778cc7f4aa5", [ null, - { - "jsshell": true, - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ], - [ - "script", - "/wasm/jsapi/bad-imports.js" - ] - ] - } - ], - [ - "wasm/jsapi/constructor/instantiate-bad-imports.any.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ], - [ - "script", - "/wasm/jsapi/bad-imports.js" - ] - ] - } - ], - [ - "wasm/jsapi/constructor/instantiate-bad-imports.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ], - [ - "script", - "/wasm/jsapi/bad-imports.js" - ] - ] - } - ], - [ - "wasm/jsapi/constructor/instantiate-bad-imports.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ], - [ - "script", - "/wasm/jsapi/bad-imports.js" - ] - ] - } + {} ] ], - "instantiate.any.js": [ - "34e005c4700932b0be2ee3370f20f8605d08d5bd", + "feedback-delay-time.html": [ + "96c2eb065866c3f42342e81c35fea50b75340939", [ null, - { - "jsshell": true, - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ], - [ - "script", - "/wasm/jsapi/instanceTestFactory.js" - ] - ] - } - ], + {} + ] + ] + }, + "the-analysernode-interface": { + "ctor-analyser.html": [ + "a9aa4831516c6a5cefa7c8b4f67f3ef246d24777", [ - "wasm/jsapi/constructor/instantiate.any.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ], - [ - "script", - "/wasm/jsapi/instanceTestFactory.js" - ] - ] - } - ], + null, + {} + ] + ], + "realtimeanalyser-basic.html": [ + "e176d6111e81fbff6ce75d63bec563bede61de6b", [ - "wasm/jsapi/constructor/instantiate.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ], - [ - "script", - "/wasm/jsapi/instanceTestFactory.js" - ] - ] - } - ], + null, + {} + ] + ], + "realtimeanalyser-fft-scaling.html": [ + "043bd5890a04c162720b401f2482bd6c1f26bcbc", [ - "wasm/jsapi/constructor/instantiate.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ], - [ - "script", - "/wasm/jsapi/instanceTestFactory.js" - ] - ] - } + null, + {} ] ], - "multi-value.any.js": [ - "8786f9b953ba18bfceaf8af4c7307562c668d61a", + "realtimeanalyser-fft-sizing.html": [ + "7ee6a2237edd209256ac2d46be6893a5305383a0", [ null, - { - "jsshell": true, - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ] - ] - } - ], + {} + ] + ], + "test-analyser-gain.html": [ + "dff51a74c5943557503e8a0024ce56556c1150b0", [ - "wasm/jsapi/constructor/multi-value.any.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ] - ] - } - ], + null, + {} + ] + ], + "test-analyser-minimum.html": [ + "ab0fe6b2d6094f38d04a016f90b6873a5827da06", [ - "wasm/jsapi/constructor/multi-value.any.shadowrealm.html", + null, { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ] - ] + "timeout": "long" } - ], + ] + ], + "test-analyser-output.html": [ + "43d56b8990e1c5101283f58f650bbc0efc801666", [ - "wasm/jsapi/constructor/multi-value.any.worker.html", + null, { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ] - ] + "timeout": "long" } ] ], - "toStringTag.any.js": [ - "5fae8304f8c0f60aa47c6fcd8b6269a35784e759", + "test-analyser-scale.html": [ + "904b14bede544ac63a08dc422df63fb59d53c048", [ null, - { - "jsshell": true, - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ] - ] - } - ], + {} + ] + ], + "test-analysernode.html": [ + "e8325388d1bf01e7bebe881ad0da1583f0e2f481", [ - "wasm/jsapi/constructor/toStringTag.any.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ] - ] - } - ], + null, + {} + ] + ] + }, + "the-audiobuffer-interface": { + "acquire-the-content.html": [ + "70f5d8e32caa2eba5f090cb0deca6d27206b6401", [ - "wasm/jsapi/constructor/toStringTag.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ] - ] - } - ], + null, + {} + ] + ], + "audiobuffer-copy-channel.html": [ + "c0cd49d32520fdf3c55248b1130da64d5845097d", [ - "wasm/jsapi/constructor/toStringTag.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ] - ] - } + null, + {} ] ], - "validate.any.js": [ - "fce43d1e175f489cbf9e5fbb752038e739db9609", + "audiobuffer-getChannelData.html": [ + "612a91cf4ef60f6f1d441d27e2ab86f32b94f0fd", [ null, - { - "jsshell": true, - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ] - ] - } - ], + {} + ] + ], + "audiobuffer-reuse.html": [ + "dabe323cbe2226d32c63576199eda61c1aecb168", [ - "wasm/jsapi/constructor/validate.any.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ] - ] - } - ], + null, + {} + ] + ], + "audiobuffer.html": [ + "a2c4581c4e80069f227fe29078bc3eb6409c8b4e", [ - "wasm/jsapi/constructor/validate.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ] - ] - } - ], + null, + {} + ] + ], + "ctor-audiobuffer.html": [ + "fbe6e42e3178f84d108bfd1c62518a4d13eb2dff", [ - "wasm/jsapi/constructor/validate.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ] - ] - } + null, + {} ] ] }, - "exception": { - "basic.tentative.any.js": [ - "cacce99d9cb227055754554b8369809c92885ded", + "the-audiobuffersourcenode-interface": { + "active-processing.https.html": [ + "25565b7686601b23c4c920c5095b42a2a606a195", [ null, - { - "jsshell": true, - "script_metadata": [ - [ - "global", - "window,worker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ] - ] - } - ], - [ - "wasm/jsapi/exception/basic.tentative.any.html", - { - "script_metadata": [ - [ - "global", - "window,worker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ] - ] - } - ], - [ - "wasm/jsapi/exception/basic.tentative.any.serviceworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ] - ] - } - ], - [ - "wasm/jsapi/exception/basic.tentative.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,worker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ] - ] - } - ], - [ - "wasm/jsapi/exception/basic.tentative.any.sharedworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ] - ] - } - ], - [ - "wasm/jsapi/exception/basic.tentative.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,worker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ] - ] - } + {} ] ], - "constructor.tentative.any.js": [ - "a46d1816c351d2e4fae1dbb962a0c2b59c1ef18a", + "audiobuffersource-basic.html": [ + "6ce7eb0c103f1d087d99ff6a995976e6ff8d594b", [ null, - { - "jsshell": true, - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ] - ] - } - ], - [ - "wasm/jsapi/exception/constructor.tentative.any.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ] - ] - } - ], + {} + ] + ], + "audiobuffersource-channels.html": [ + "f3f16c4c648166dfdb394a41881d4a515d097e86", [ - "wasm/jsapi/exception/constructor.tentative.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ] - ] - } - ], + null, + {} + ] + ], + "audiobuffersource-duration-loop.html": [ + "abb8983cc0b1b1306faff44239050af91b655153", [ - "wasm/jsapi/exception/constructor.tentative.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ] - ] - } + null, + {} ] ], - "getArg.tentative.any.js": [ - "87719c7ebdfb85ca378d668a83f743ff8da3a5b5", + "audiobuffersource-ended.html": [ + "b9922f61ef399bf558a2f6d3c61154b9f14a512f", [ null, - { - "jsshell": true, - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/memory/assertions.js" - ] - ] - } - ], + {} + ] + ], + "audiobuffersource-grain.html": [ + "f554304a21eedff3af541c68bea6530b502bc22c", [ - "wasm/jsapi/exception/getArg.tentative.any.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/memory/assertions.js" - ] - ] - } - ], + null, + {} + ] + ], + "audiobuffersource-multi-channels.html": [ + "4e0de21e96fa8470f5305d9405bdccf8f937e660", [ - "wasm/jsapi/exception/getArg.tentative.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/memory/assertions.js" - ] - ] - } - ], + null, + {} + ] + ], + "audiobuffersource-null.html": [ + "b5b1ec0c3db2f02557d0be7f7c2d6499ea3ae8a7", [ - "wasm/jsapi/exception/getArg.tentative.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/memory/assertions.js" - ] - ] - } + null, + {} ] ], - "identity.tentative.any.js": [ - "2675668ec73a9545b53be2566094652d706e4571", + "audiobuffersource-one-sample-loop.html": [ + "af1454a5a9f4644058c71715de7541e4800d2feb", [ null, - { - "jsshell": true, - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ] - ] - } - ], + {} + ] + ], + "audiobuffersource-playbackrate-zero.html": [ + "5624054e3289a18d48fab3b4942f3bb16b9d1c03", [ - "wasm/jsapi/exception/identity.tentative.any.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ] - ] - } - ], + null, + {} + ] + ], + "audiobuffersource-start.html": [ + "19331954b0b20cfb0bc193f94118b0aced467dc8", [ - "wasm/jsapi/exception/identity.tentative.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ] - ] - } - ], + null, + {} + ] + ], + "audiosource-onended.html": [ + "20ef4a1c6381ffddd73f097de838dfe110b0e4e3", [ - "wasm/jsapi/exception/identity.tentative.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ] - ] - } + null, + {} ] ], - "is.tentative.any.js": [ - "840d00bf0d47a915505202085f88450e5b4632f5", + "audiosource-time-limits.html": [ + "3ac9c05938c2cac600f548ee796aedc48d470e63", [ null, - { - "jsshell": true, - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/memory/assertions.js" - ] - ] - } - ], + {} + ] + ], + "buffer-resampling.html": [ + "c181ceb8e0fad83067e11ec8aefe70f79ccf071c", [ - "wasm/jsapi/exception/is.tentative.any.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/memory/assertions.js" - ] - ] - } - ], + null, + {} + ] + ], + "ctor-audiobuffersource.html": [ + "c1c3203451e62587b1aa864e85c63617c36c2a3d", [ - "wasm/jsapi/exception/is.tentative.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/memory/assertions.js" - ] - ] - } - ], + null, + {} + ] + ], + "note-grain-on-play.html": [ + "37c4462addb675dfe0635e23e8485710b32542df", [ - "wasm/jsapi/exception/is.tentative.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/memory/assertions.js" - ] - ] - } + null, + {} ] ], - "toString.tentative.any.js": [ - "6885cf0deb6918ccd5f49d9ecb98e9fc6619d250", + "note-grain-on-timing.html": [ + "0db297b42cca3de45cdd212af1373fdc553729a5", [ null, - { - "jsshell": true, - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ] - ] - } - ], + {} + ] + ], + "sample-accurate-scheduling.html": [ + "fd244e8a5f62c9910d17058c0edc8c1cb8cf8880", [ - "wasm/jsapi/exception/toString.tentative.any.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ] - ] - } - ], + null, + {} + ] + ], + "sub-sample-buffer-stitching.html": [ + "3700bfa8ce806a57a4df6c050a9d299d9274edea", [ - "wasm/jsapi/exception/toString.tentative.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ] - ] - } - ], + null, + {} + ] + ], + "sub-sample-scheduling.html": [ + "8c627f90f22ca322daf890b9f2482fe0daad2176", [ - "wasm/jsapi/exception/toString.tentative.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ] - ] - } + null, + {} ] ] }, - "function": { - "call.tentative.any.js": [ - "2e63d5fa103fd1736200622525602a07287caa98", + "the-audiocontext-interface": { + "audiocontext-detached-execution-context.html": [ + "a83fa1dbe676852cb8a0a3a06feaa3d6b5f5db69", [ null, - { - "jsshell": true, - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ] - ] - } - ], + {} + ] + ], + "audiocontext-getoutputtimestamp-cross-realm.html": [ + "5889faf7ccd10b9a67ca3457c8c009dfc16d5e20", [ - "wasm/jsapi/function/call.tentative.any.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ] - ] - } - ], + null, + {} + ] + ], + "audiocontext-getoutputtimestamp.html": [ + "952f38b1edceb62ab3f99c25777ebdb2c59e691a", [ - "wasm/jsapi/function/call.tentative.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ] - ] - } - ], + null, + {} + ] + ], + "audiocontext-not-fully-active.html": [ + "e4f6001eda3e295b69b6989680e04bd67412f7a6", [ - "wasm/jsapi/function/call.tentative.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ] - ] - } + null, + {} ] ], - "constructor.tentative.any.js": [ - "fc92fcfaf0cf497c2bab3fd3a78d22c91a343ab7", + "audiocontext-sinkid-constructor.https.html": [ + "d2dc54aee6a7f93e846244e1f3ab88c3774cf917", [ null, - { - "jsshell": true, - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ] - ] - } - ], + {} + ] + ], + "audiocontext-sinkid-setsinkid.https.html": [ + "61d2586bfb7d43a406fc661d31806c85c96904b0", [ - "wasm/jsapi/function/constructor.tentative.any.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ] - ] - } - ], + null, + {} + ] + ], + "audiocontext-sinkid-state-change.https.html": [ + "8462b5261981f2b33de5682ce3e6130d69c01122", [ - "wasm/jsapi/function/constructor.tentative.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ] - ] - } - ], + null, + {} + ] + ], + "audiocontext-state-change-after-close.http.window.js": [ + "eccb0d172d02c9bafc07a358d80a0ac9aacff174", [ - "wasm/jsapi/function/constructor.tentative.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ] - ] - } + "webaudio/the-audio-api/the-audiocontext-interface/audiocontext-state-change-after-close.http.window.html", + {} ] ], - "table.tentative.any.js": [ - "f0dd6ea6f8589a01853e73cce565d01491f3c35e", + "audiocontext-suspend-resume-close.html": [ + "c011f336df4424bd0ba00180dbe27d8b58d44c3f", [ null, - { - "jsshell": true, - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ] - ] - } - ], + {} + ] + ], + "audiocontext-suspend-resume.html": [ + "ff3daebf39635a0a62951b387195bb463619202d", [ - "wasm/jsapi/function/table.tentative.any.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ] - ] - } - ], + null, + {} + ] + ], + "audiocontextoptions.html": [ + "136abedaa8458f3ce5d003e8cc52db8c346f1a15", [ - "wasm/jsapi/function/table.tentative.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ] - ] - } - ], + null, + {} + ] + ], + "constructor-allowed-to-start.html": [ + "f866b5f7a1cb408c1a0c26c21c99bb7a28d53e82", [ - "wasm/jsapi/function/table.tentative.any.worker.html", + null, { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ] - ] + "testdriver": true } ] ], - "type.tentative.any.js": [ - "72a7f1bfbe5e0a91752bda2d06b3c1fcfaade6a3", + "processing-after-resume.https.html": [ + "e000ab124fefa6f0eea4e5517d04436428c0cd8c", [ null, - { - "jsshell": true, - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ] - ] - } - ], + {} + ] + ], + "promise-methods-after-discard.html": [ + "2fb3c5a50bbad8d061e2e896ac6b3ab9f0bda849", [ - "wasm/jsapi/function/type.tentative.any.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ] - ] - } - ], + null, + {} + ] + ], + "suspend-after-construct.html": [ + "596a825c3db8b02e645cb1098222e89e737e12cb", [ - "wasm/jsapi/function/type.tentative.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ] - ] - } - ], + null, + {} + ] + ], + "suspend-with-navigation.html": [ + "b9328ae95d74aab9e3d0ae1ca509980c7c78ebb7", [ - "wasm/jsapi/function/type.tentative.any.worker.html", + null, { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ] - ] + "timeout": "long" } ] ] }, - "functions": { - "entry-different-function-realm.html": [ - "3af3dd924fb435e8cdcd4bb19f01948b77318dbf", + "the-audionode-interface": { + "audionode-channel-rules.html": [ + "9067e6869bcf682e4f3f945d567a2d8a300d9f4b", [ null, {} ] ], - "entry.html": [ - "15018074491054dcb9e2f95c0d9c9d1691c9161a", + "audionode-connect-method-chaining.html": [ + "02caea667bba2de523488174053aa251892eeec2", [ null, {} ] ], - "incumbent.html": [ - "cb2763297709a8ecdddd8541d2b332577102cd35", + "audionode-connect-order.html": [ + "eca15dedfa0fdcd7b575fb45ad0804c3fc636ada", [ null, {} ] - ] - }, - "gc": { - "casts.tentative.any.js": [ - "cce06224fd40c70f037dbf575388c26106480a0e", + ], + "audionode-connect-return-value.html": [ + "3af44fb7afcad39c9c3dc3dbc4f82cee38294b79", [ null, - { - "jsshell": true, - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ] - ] - } - ], - [ - "wasm/jsapi/gc/casts.tentative.any.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ] - ] - } - ], - [ - "wasm/jsapi/gc/casts.tentative.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ] - ] - } + {} ] ], - "exported-object.tentative.any.js": [ - "b572f140067fda658eb18ab82c880b3697172aba", + "audionode-disconnect-audioparam.html": [ + "0b09edd4a7007e54721c4e1d8fb1112e71e5cb1a", [ null, - { - "jsshell": true, - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ] - ] - } - ], + {} + ] + ], + "audionode-disconnect.html": [ + "65b93222d1002e227ab1ad2e29b6e140b65bd9e4", [ - "wasm/jsapi/gc/exported-object.tentative.any.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ] - ] - } - ], + null, + {} + ] + ], + "audionode-iframe.window.js": [ + "89bdf2aa9824eaae0c93ca548fe9fe46181285f1", [ - "wasm/jsapi/gc/exported-object.tentative.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ] - ] - } + "webaudio/the-audio-api/the-audionode-interface/audionode-iframe.window.html", + {} ] ], - "i31.tentative.any.js": [ - "17fd82440cc8b29c6826d32e46f52b5c2a0323a1", + "audionode.html": [ + "3d14cd5b01fb5ae976f05bfc9ddf99b9cb9080a7", [ null, - { - "jsshell": true, - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ] - ] - } - ], + {} + ] + ], + "channel-mode-interp-basic.html": [ + "35cfca8e4eec6809832845aa48388d0a30c602fb", [ - "wasm/jsapi/gc/i31.tentative.any.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ] - ] - } - ], + null, + {} + ] + ], + "different-contexts.html": [ + "f763d3478784a3e4e7255d67726ec5cfdfad5214", [ - "wasm/jsapi/gc/i31.tentative.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ] - ] - } + null, + {} ] ] }, - "global": { - "constructor.any.js": [ - "f83f77a5c3ecf349ea63891f4ebcfc2109ae2606", + "the-audioparam-interface": { + "adding-events.html": [ + "ab527b6695cef3f17fa2e41e6d2dc6fa1b36c32a", [ null, - { - "jsshell": true, - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ] - ] - } - ], + {} + ] + ], + "audioparam-cancel-and-hold.html": [ + "0a8e7a7f2f67ab837a6ca17577afa018858e86bf", [ - "wasm/jsapi/global/constructor.any.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ] - ] - } - ], + null, + {} + ] + ], + "audioparam-close.html": [ + "b5555b0137af4c1c8f6c5578de4bc9c5eedfe405", [ - "wasm/jsapi/global/constructor.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ] - ] - } - ], + null, + {} + ] + ], + "audioparam-connect-audioratesignal.html": [ + "b0455f86bc0f9880980c1e83fe729d5b6d698f13", [ - "wasm/jsapi/global/constructor.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ] - ] - } + null, + {} ] ], - "toString.any.js": [ - "b308498982ee5d62bb230f0d9f0503ad14e798ec", + "audioparam-default-value.window.js": [ + "ae55f217f4cabf3192fe13b156c5af745d61f380", + [ + "webaudio/the-audio-api/the-audioparam-interface/audioparam-default-value.window.html", + {} + ] + ], + "audioparam-exceptional-values.html": [ + "982731d33843544d2f70af72a51e9bd878bbf486", [ null, - { - "jsshell": true, - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ] - ] - } - ], + {} + ] + ], + "audioparam-exponentialRampToValueAtTime.html": [ + "bec4c1286b4aaf7ba1b7aa7209ff41dad6c02dbd", [ - "wasm/jsapi/global/toString.any.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ] - ] - } - ], + null, + {} + ] + ], + "audioparam-large-endtime.html": [ + "d8f38eeba0857a352badbdbeef3eca8bf9a6f087", [ - "wasm/jsapi/global/toString.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ] - ] - } - ], + null, + {} + ] + ], + "audioparam-linearRampToValueAtTime.html": [ + "509c254d92d891a1f4e6820760e757b03d02366f", [ - "wasm/jsapi/global/toString.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ] - ] - } + null, + {} ] ], - "type.tentative.any.js": [ - "78d612529dd3f39a71bb37b073dbd725766b73ed", + "audioparam-method-chaining.html": [ + "ffe46035fd7d7ac0129f869e4e9cb46e1768e57b", [ null, - { - "jsshell": true, - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ] - ] - } - ], + {} + ] + ], + "audioparam-nominal-range.html": [ + "517fc6e956745aeb27ab151305a81abbb637fb64", [ - "wasm/jsapi/global/type.tentative.any.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ] - ] - } - ], + null, + {} + ] + ], + "audioparam-setTargetAtTime.html": [ + "faf00c007b375a365bbb6b00e4051d44852d0fdc", [ - "wasm/jsapi/global/type.tentative.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ] - ] - } - ], + null, + {} + ] + ], + "audioparam-setValueAtTime.html": [ + "ab2edfd009f1320fdb8e0a49dffb984baed36f05", [ - "wasm/jsapi/global/type.tentative.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ] - ] - } + null, + {} ] ], - "value-get-set.any.js": [ - "bee5581f41814e21578f285c8765a259a7f85a97", + "audioparam-setValueCurve-exceptions.html": [ + "ed0c15fb9b3bdf5a9c79e48f97949b21ac05a952", [ null, - { - "jsshell": true, - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ] - ] - } - ], + {} + ] + ], + "audioparam-setValueCurveAtTime.html": [ + "de8406244bc386981c0527629e3685f250c6a659", [ - "wasm/jsapi/global/value-get-set.any.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ] - ] - } - ], + null, + {} + ] + ], + "audioparam-summingjunction.html": [ + "9084942f7032cd00d9d57b8d4d1f6ba2742ab57f", [ - "wasm/jsapi/global/value-get-set.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ] - ] - } - ], + null, + {} + ] + ], + "automation-rate.html": [ + "a3c11994bbe37f26aa1c2eafbb4f287d559fae34", [ - "wasm/jsapi/global/value-get-set.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ] - ] - } + null, + {} ] ], - "valueOf.any.js": [ - "5bcb171825898801643acb94bcb3242d5869e95e", + "cancel-scheduled-values.html": [ + "ac1da8cd51badb3243d32dc8f15a494f1866f583", [ null, - { - "jsshell": true, - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ] - ] - } - ], + {} + ] + ], + "event-insertion.html": [ + "b846f982ab29faf2010dfac249f7ba031dcba172", [ - "wasm/jsapi/global/valueOf.any.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ] - ] - } - ], + null, + {} + ] + ], + "exponentialRamp-special-cases.html": [ + "d1978098218f3aac04a6190b6c72377494dc5636", [ - "wasm/jsapi/global/valueOf.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ] - ] - } - ], + null, + {} + ] + ], + "k-rate-audiobuffersource-connections.html": [ + "0b94bd70f9f7c5da26654845ec784d6805f4117e", [ - "wasm/jsapi/global/valueOf.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ] - ] - } + null, + {} ] - ] - }, - "idlharness.any.js": [ - "98713d4bf6e43af90c705e55c59be277463b9e0b", - [ - "wasm/jsapi/idlharness.any.html", - { - "script_metadata": [ - [ - "script", - "/resources/WebIDLParser.js" - ], - [ - "script", - "/resources/idlharness.js" - ], - [ - "script", - "../resources/load_wasm.js" - ] - ] - } ], - [ - "wasm/jsapi/idlharness.any.worker.html", - { - "script_metadata": [ - [ - "script", - "/resources/WebIDLParser.js" - ], - [ - "script", - "/resources/idlharness.js" - ], - [ - "script", - "../resources/load_wasm.js" - ] - ] - } - ] - ], - "instance": { - "constructor-bad-imports.any.js": [ - "1ef4f8423de857d9a910f84d5199922d04e1f76d", + "k-rate-audioworklet-connections.https.html": [ + "4d2eb40d5520fd49310ab2dc16934890fdc858a2", [ null, - { - "jsshell": true, - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ], - [ - "script", - "/wasm/jsapi/bad-imports.js" - ] - ] - } - ], + {} + ] + ], + "k-rate-audioworklet.https.html": [ + "e891da6da2b02924aac74b9e850677dc080b57b0", [ - "wasm/jsapi/instance/constructor-bad-imports.any.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ], - [ - "script", - "/wasm/jsapi/bad-imports.js" - ] - ] - } - ], + null, + {} + ] + ], + "k-rate-biquad-connection.html": [ + "ab9df8740fab30d0395750590f9832b65f257a92", [ - "wasm/jsapi/instance/constructor-bad-imports.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ], - [ - "script", - "/wasm/jsapi/bad-imports.js" - ] - ] - } - ], + null, + {} + ] + ], + "k-rate-biquad.html": [ + "85ae4f175fe182a4bf993443163dea14f00fa203", [ - "wasm/jsapi/instance/constructor-bad-imports.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ], - [ - "script", - "/wasm/jsapi/bad-imports.js" - ] - ] - } + null, + {} ] ], - "constructor-caching.any.js": [ - "f969364d93f4620b4c08b021c8bb98afbad84241", + "k-rate-connections.html": [ + "730f03e5619577abf98c30b5566cddeeccf31551", [ null, - { - "jsshell": true, - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ] - ] - } - ], + {} + ] + ], + "k-rate-constant-source.html": [ + "0bea5c91f8538e6b0e9d587af1b5c8e4b018ab62", [ - "wasm/jsapi/instance/constructor-caching.any.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ] - ] - } - ], + null, + {} + ] + ], + "k-rate-delay-connections.html": [ + "fcf66f2e3ef79438f412848ee64b9e73ab06554a", [ - "wasm/jsapi/instance/constructor-caching.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ] - ] - } - ], + null, + {} + ] + ], + "k-rate-delay.html": [ + "5465c3943089e36b7dc95f65454904115beda55f", + [ + null, + {} + ] + ], + "k-rate-dynamics-compressor-connections.html": [ + "c1755cd1559474a464024a2b0344c5dd1d95e803", + [ + null, + {} + ] + ], + "k-rate-gain.html": [ + "887d9f78db8a79b0aae96b9cdf818cde7b33aa6c", + [ + null, + {} + ] + ], + "k-rate-oscillator-connections.html": [ + "475b36436728709ad58d25ee300af094ea208eac", + [ + null, + {} + ] + ], + "k-rate-oscillator.html": [ + "6803f55eab00bbfb9766cc044a7240e6b4a0fda0", [ - "wasm/jsapi/instance/constructor-caching.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ] - ] - } + null, + {} ] ], - "constructor.any.js": [ - "24bf97356c83a739e881a597cffd3dda5674db97", + "k-rate-panner-connections.html": [ + "001cf63bd36dccea41112f865f6b0747f8168906", [ null, - { - "jsshell": true, - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ], - [ - "script", - "/wasm/jsapi/instanceTestFactory.js" - ] - ] - } - ], + {} + ] + ], + "k-rate-panner.html": [ + "60200b24712c29a92d73b6215b85f734999b8209", [ - "wasm/jsapi/instance/constructor.any.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ], - [ - "script", - "/wasm/jsapi/instanceTestFactory.js" - ] - ] - } - ], + null, + {} + ] + ], + "k-rate-stereo-panner.html": [ + "06905b89c31884ca9f5ec012a2263d68840d043f", [ - "wasm/jsapi/instance/constructor.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ], - [ - "script", - "/wasm/jsapi/instanceTestFactory.js" - ] - ] - } - ], + null, + {} + ] + ], + "moderate-exponentialRamp.html": [ + "cf32d253ae625cf82f9475b5469dfdef9973cc8f", [ - "wasm/jsapi/instance/constructor.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ], - [ - "script", - "/wasm/jsapi/instanceTestFactory.js" - ] - ] - } + null, + {} ] ], - "exports.any.js": [ - "f7244923d83c51037cfe6186da49ee909b11498f", + "nan-param.html": [ + "e9b8f0accbd1b0359275615f3ef12bd7e9317c4f", [ null, - { - "jsshell": true, - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ] - ] - } - ], + {} + ] + ], + "retrospective-exponentialRampToValueAtTime.html": [ + "c81c3ad23eb9c10f5cf6499bada9ed58bca68b24", [ - "wasm/jsapi/instance/exports.any.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ] - ] - } - ], + null, + {} + ] + ], + "retrospective-linearRampToValueAtTime.html": [ + "9f5e55fe55fec3be2af3b9b468cc329dd62e9616", [ - "wasm/jsapi/instance/exports.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ] - ] - } - ], + null, + {} + ] + ], + "retrospective-setTargetAtTime.html": [ + "41a37bdb913efbf7a9c392b1130cc0bd9a65c251", [ - "wasm/jsapi/instance/exports.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ] - ] - } + null, + {} ] ], - "toString.any.js": [ - "d77037d65b9c25a2114273ec4558479b92f29f08", + "retrospective-setValueAtTime.html": [ + "32cdc6307fcfd3ed53abb460702601b39cf8b5ed", [ null, - { - "jsshell": true, - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ] - ] - } - ], + {} + ] + ], + "retrospective-setValueCurveAtTime.html": [ + "451b6ea82969506aa75d65e0fa3170c106c87abb", [ - "wasm/jsapi/instance/toString.any.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ] - ] - } - ], + null, + {} + ] + ], + "set-target-conv.html": [ + "2ed076cccf758caaec1c381e89254b10ff7cd7d5", [ - "wasm/jsapi/instance/toString.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ] - ] - } - ], + null, + {} + ] + ], + "setTargetAtTime-after-event-within-block.html": [ + "ca02b0db975de7bd80b4b5cd701acdd7e512e0de", [ - "wasm/jsapi/instance/toString.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ] - ] - } + null, + {} + ] + ], + "setValueAtTime-within-block.html": [ + "36fde2b9964953f196a811add078c63610373334", + [ + null, + {} ] ] }, - "interface.any.js": [ - "8256fc209a7f6506d683bebd17e899b3b9e4a6eb", - [ - null, - { - "jsshell": true, - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ] - ] - } + "the-audioworklet-interface": { + "audioworklet-addmodule-resolution.https.html": [ + "dc324b22d6539d5383ed53f68ab911f6e96fd0dd", + [ + null, + {} + ] ], - [ - "wasm/jsapi/interface.any.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ] - ] - } + "audioworklet-audioparam-iterable.https.html": [ + "9e93f48ab878c5f9208dae7a6d2278cd98ab4529", + [ + null, + {} + ] ], - [ - "wasm/jsapi/interface.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ] - ] - } + "audioworklet-audioparam-size.https.html": [ + "9578b268815a89d31457df8cdd7a088e9df13c7c", + [ + null, + {} + ] ], - [ - "wasm/jsapi/interface.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ] - ] - } - ] - ], - "memory": { - "buffer.any.js": [ - "fb1d1200b892be1eb7aea66db343db491e921a8d", + "audioworklet-audioparam.https.html": [ + "8e51470f646f63abaed321c3efd3e9e25906edea", [ null, - { - "jsshell": true, - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell" - ] - ] - } - ], + {} + ] + ], + "audioworklet-denormals.https.window.js": [ + "39b9be56e6484e78fee1e86d4974ef09ec37b4ca", [ - "wasm/jsapi/memory/buffer.any.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell" - ] - ] - } - ], + "webaudio/the-audio-api/the-audioworklet-interface/audioworklet-denormals.https.window.html", + {} + ] + ], + "audioworklet-messageport.https.html": [ + "546bd1d0d0e34480113290bcc5008f0240be8d4a", [ - "wasm/jsapi/memory/buffer.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell" - ] - ] - } + null, + {} ] ], - "constructor-shared.tentative.any.js": [ - "0134b307749ed7004b9ac5f18597942409d72121", + "audioworklet-postmessage-sharedarraybuffer.https.html": [ + "a5dd004981157c8791c391fbb71e4aa2620559c8", [ null, - { - "jsshell": true, - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ], - [ - "script", - "/wasm/jsapi/memory/assertions.js" - ] - ] - } - ], + {} + ] + ], + "audioworklet-registerprocessor-called-on-globalthis.https.html": [ + "718cadffc716f04548af6caeeca9e075846b6d46", [ - "wasm/jsapi/memory/constructor-shared.tentative.any.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ], - [ - "script", - "/wasm/jsapi/memory/assertions.js" - ] - ] - } - ], + null, + {} + ] + ], + "audioworklet-registerprocessor-constructor.https.window.js": [ + "679480b480d64d19e825f63ad3798a50d0e3204b", [ - "wasm/jsapi/memory/constructor-shared.tentative.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ], - [ - "script", - "/wasm/jsapi/memory/assertions.js" - ] - ] - } - ], + "webaudio/the-audio-api/the-audioworklet-interface/audioworklet-registerprocessor-constructor.https.window.html", + {} + ] + ], + "audioworklet-registerprocessor-dynamic.https.html": [ + "de31f71427d5cd29e61935e8f82217e1c8bc0341", [ - "wasm/jsapi/memory/constructor-shared.tentative.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ], - [ - "script", - "/wasm/jsapi/memory/assertions.js" - ] - ] - } + null, + {} ] ], - "constructor-types.tentative.any.js": [ - "4653c6686a78e4785f7f2293d7cee676467af55f", + "audioworklet-suspend.https.html": [ + "685546aeb5e2f96e77e9c88cec19946f2b0fcb16", [ null, - { - "jsshell": true, - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ], - [ - "script", - "/wasm/jsapi/memory/assertions.js" - ] - ] - } - ], + {} + ] + ], + "audioworklet-throw-onmessage.https.html": [ + "3a480464e9d8ff9b8747eb02ada05c52f4d118e0", [ - "wasm/jsapi/memory/constructor-types.tentative.any.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ], - [ - "script", - "/wasm/jsapi/memory/assertions.js" - ] - ] - } - ], + null, + {} + ] + ], + "audioworkletglobalscope-sample-rate.https.html": [ + "84458d0aaa77788b6de7ccd09b64f18a6bf9ede4", [ - "wasm/jsapi/memory/constructor-types.tentative.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ], - [ - "script", - "/wasm/jsapi/memory/assertions.js" - ] - ] - } - ], + null, + {} + ] + ], + "audioworkletglobalscope-timing-info.https.html": [ + "5f4bee7c5312c89207a25801cd0c2d6055ec00b5", [ - "wasm/jsapi/memory/constructor-types.tentative.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ], - [ - "script", - "/wasm/jsapi/memory/assertions.js" - ] - ] - } + null, + {} ] ], - "constructor.any.js": [ - "8f413c9f48a86dee005b37d175dda03a322bb74a", + "audioworkletnode-automatic-pull.https.html": [ + "330b359f7d9c4dbe24056a763ef3473389839192", [ null, - { - "jsshell": true, - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ], - [ - "script", - "/wasm/jsapi/memory/assertions.js" - ] - ] - } - ], + {} + ] + ], + "audioworkletnode-channel-count.https.html": [ + "11c237f19dd9d966d0367cc3c837c998886270fa", [ - "wasm/jsapi/memory/constructor.any.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ], - [ - "script", - "/wasm/jsapi/memory/assertions.js" - ] - ] - } - ], + null, + {} + ] + ], + "audioworkletnode-construction.https.html": [ + "8b7704a781b712c0129b650da898ed79baad794c", [ - "wasm/jsapi/memory/constructor.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ], - [ - "script", - "/wasm/jsapi/memory/assertions.js" - ] - ] - } - ], + null, + {} + ] + ], + "audioworkletnode-constructor-options.https.html": [ + "d3347d265e42365dcba1190c9a91a30a7e2a6589", [ - "wasm/jsapi/memory/constructor.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ], - [ - "script", - "/wasm/jsapi/memory/assertions.js" - ] - ] - } + null, + {} ] ], - "grow.any.js": [ - "2eafe5761eaa6d23dcfa459648bc69882361c8e9", + "audioworkletnode-disconnected-input.https.html": [ + "c58502af01192c13884f303b8345a017af9ad3a9", [ null, - { - "jsshell": true, - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/memory/assertions.js" - ] - ] - } - ], + {} + ] + ], + "audioworkletnode-onerror.https.html": [ + "95126a8c867787852583add14849efacde1dcaa4", [ - "wasm/jsapi/memory/grow.any.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/memory/assertions.js" - ] - ] - } - ], + null, + {} + ] + ], + "audioworkletnode-output-channel-count.https.html": [ + "8dafa2f8111a8b522be5540a2fbf4f9a3ee5cd6e", [ - "wasm/jsapi/memory/grow.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/memory/assertions.js" - ] - ] - } - ], + null, + {} + ] + ], + "audioworkletprocessor-options.https.html": [ + "ea840ed11ad59bdcbb62773b43c4e404a2903233", [ - "wasm/jsapi/memory/grow.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/memory/assertions.js" - ] - ] - } + null, + {} ] ], - "toString.any.js": [ - "f4059f7657722759ce4fc950c4850916d102deda", + "audioworkletprocessor-param-getter-overridden.https.html": [ + "e3fb6e533df8ccaa88564f836239e0c9e9c1d5e4", [ null, - { - "jsshell": true, - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell" - ] - ] - } - ], + {} + ] + ], + "audioworkletprocessor-process-frozen-array.https.html": [ + "ce0cfa40b691d859d372c9e6da7ff54fe64bbbe1", [ - "wasm/jsapi/memory/toString.any.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell" - ] - ] - } - ], + null, + {} + ] + ], + "audioworkletprocessor-process-zero-outputs.https.html": [ + "e1c19f0d759566f9d138eb2a05cc31e6d55575cf", [ - "wasm/jsapi/memory/toString.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell" - ] - ] - } + null, + {} ] ], - "type.tentative.any.js": [ - "3f6531f5967ed74973b0b7aa715c83a97d2095a2", + "audioworkletprocessor-promises.https.html": [ + "079b57b959ad089b9ca43dcd1a42b2fd0d032d3a", [ null, - { - "jsshell": true, - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ] - ] - } - ], + {} + ] + ], + "audioworkletprocessor-unconnected-outputs.https.window.js": [ + "16adddd3394d6d956234376343fb53062038ea59", [ - "wasm/jsapi/memory/type.tentative.any.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ] - ] - } - ], + "webaudio/the-audio-api/the-audioworklet-interface/audioworkletprocessor-unconnected-outputs.https.window.html", + {} + ] + ], + "baseaudiocontext-audioworklet.https.html": [ + "4281f56379bb20f1e173c22c99ab208d2be0fdd4", [ - "wasm/jsapi/memory/type.tentative.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ] - ] - } - ], + null, + {} + ] + ], + "extended-audioworkletnode-with-parameters.https.html": [ + "75f4aa4020d303c91209d1de4f6efb127b5f3eb0", [ - "wasm/jsapi/memory/type.tentative.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ] - ] - } + null, + {} ] - ] - }, - "module": { - "constructor.any.js": [ - "95604aabe475a85ab282273a8a5cb9dce61380b7", + ], + "process-getter.https.html": [ + "a4c59123a104600c148f620bb32c78f112fdd12a", [ null, - { - "jsshell": true, - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ] - ] - } - ], + {} + ] + ], + "process-parameters.https.html": [ + "4c6a10dfab3c29c0d3009e2a9650ad2d498c869a", [ - "wasm/jsapi/module/constructor.any.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ] - ] - } - ], + null, + {} + ] + ], + "processor-construction-port.https.html": [ + "6f1aa592250a3dc355ce792ce637ff67b32560a3", [ - "wasm/jsapi/module/constructor.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ] - ] - } - ], + null, + {} + ] + ], + "simple-input-output.https.html": [ + "7b9e7f0ac3d36f9f94fbbfffb1c15f8da05745c3", [ - "wasm/jsapi/module/constructor.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ] - ] - } + null, + {} ] ], - "customSections.any.js": [ - "96958316e061d72f4ec3cbe0041bd75577f02097", + "suspended-context-messageport.https.html": [ + "f6fa6ddd98613016ff9aeb92aa2929aa81e20f75", [ null, - { - "jsshell": true, - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ] - ] - } - ], + {} + ] + ] + }, + "the-biquadfilternode-interface": { + "biquad-allpass.html": [ + "86618f9e46dbc1b5462f949cadf703ac59993577", [ - "wasm/jsapi/module/customSections.any.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ] - ] - } - ], + null, + {} + ] + ], + "biquad-automation.html": [ + "d459d16fb1ad6774553e896f88c47968c6da5917", [ - "wasm/jsapi/module/customSections.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ] - ] - } - ], + null, + {} + ] + ], + "biquad-bandpass.html": [ + "166aa9b3cb8813db11e245edbcea628bf87ef051", [ - "wasm/jsapi/module/customSections.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ] - ] - } + null, + {} ] ], - "exports.any.js": [ - "0c32e984a2cad1feba8dc949ae4a83f84a9db45e", + "biquad-basic.html": [ + "441e98a251187c3cc600299681306d29df11e618", [ null, - { - "jsshell": true, - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ] - ] - } - ], + {} + ] + ], + "biquad-getFrequencyResponse.html": [ + "23222e4df9698d408b886ea108cc4c732a7d61fe", [ - "wasm/jsapi/module/exports.any.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ] - ] - } - ], + null, + {} + ] + ], + "biquad-highpass.html": [ + "45c335bc4b894838a28f6aa6c452d4b6a98c824a", [ - "wasm/jsapi/module/exports.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ] - ] - } - ], + null, + {} + ] + ], + "biquad-highshelf.html": [ + "345195f104e673e0e2481481f0b5e4cd5dbc0dea", [ - "wasm/jsapi/module/exports.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ] - ] - } + null, + {} ] ], - "imports.any.js": [ - "2ab1725359f187c8d321b8e8622bb7a453b590dc", + "biquad-lowpass.html": [ + "d20786e36b16d7ba36841dd5fcfb30c081113fb2", [ null, - { - "jsshell": true, - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ] - ] - } - ], + {} + ] + ], + "biquad-lowshelf.html": [ + "ab76cefd4bc3de478a2c450638b8adf5de5a929c", [ - "wasm/jsapi/module/imports.any.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ] - ] - } - ], + null, + {} + ] + ], + "biquad-notch.html": [ + "98e6e6e02c0813692c579821b48b84959cb89367", [ - "wasm/jsapi/module/imports.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ] - ] - } - ], + null, + {} + ] + ], + "biquad-peaking.html": [ + "90b7c1546de30e1099379e1672ea48edca7c6ba4", [ - "wasm/jsapi/module/imports.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ] - ] - } + null, + {} ] ], - "moduleSource.tentative.any.js": [ - "a3d09d55d6ec2eff483b80d7e4d177c649f324c7", + "biquad-tail.html": [ + "3141bf7ff31fd39101e0635ad4febdd090f679eb", [ null, - { - "jsshell": true, - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ] - ] - } - ], + {} + ] + ], + "biquadfilternode-basic.html": [ + "7e71d073024cb2040b7a4d7ea5ff681f803e21b0", [ - "wasm/jsapi/module/moduleSource.tentative.any.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ] - ] - } - ], + null, + {} + ] + ], + "ctor-biquadfilter.html": [ + "e63479f985920745f75b857fa7b639417d5bf208", [ - "wasm/jsapi/module/moduleSource.tentative.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ] - ] - } - ], + null, + {} + ] + ], + "no-dezippering.html": [ + "79dc27035c7dbd8176f980278bdddab55a76c731", [ - "wasm/jsapi/module/moduleSource.tentative.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ] - ] - } + null, + {} + ] + ] + }, + "the-channelmergernode-interface": { + "active-processing.https.html": [ + "9012526bdc64e5e62d246045465b84aef8d06f76", + [ + null, + {} ] ], - "toString.any.js": [ - "10c707979d5bdc16809f15627e407f862e6eac59", + "audiochannelmerger-basic.html": [ + "71a62f176f8eefd9b9168b2c222cc6d1c752d3a5", [ null, - { - "jsshell": true, - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ] - ] - } - ], + {} + ] + ], + "audiochannelmerger-disconnect.html": [ + "ad74d5e00457e6ccd1b165940ecad140a423d247", [ - "wasm/jsapi/module/toString.any.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ] - ] - } - ], + null, + {} + ] + ], + "audiochannelmerger-input-non-default.html": [ + "6fe77ab7634bb8e6c63ba61625dc4b61ce19389d", [ - "wasm/jsapi/module/toString.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ] - ] - } - ], + null, + {} + ] + ], + "audiochannelmerger-input.html": [ + "66a70dcb3babb4e9a96229dd247addae828f14d3", [ - "wasm/jsapi/module/toString.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ] - ] - } + null, + {} + ] + ], + "ctor-channelmerger.html": [ + "0d6b45c56df0f43a0eac3f364cadca2e4669c6ed", + [ + null, + {} ] ] }, - "proto-from-ctor-realm.html": [ - "45405b52900bf95554635293502338b07026e62f", - [ - null, - {} - ] - ], - "prototypes.any.js": [ - "2316f7d9b4eeb5ea821df8cfa24cc3daf07030f3", - [ - null, - { - "jsshell": true, - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ] - ] - } - ], - [ - "wasm/jsapi/prototypes.any.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ] - ] - } - ], - [ - "wasm/jsapi/prototypes.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ] - ] - } + "the-channelsplitternode-interface": { + "audiochannelsplitter.html": [ + "954c71a96b288530e6c22878fed7a91f42091dc2", + [ + null, + {} + ] ], - [ - "wasm/jsapi/prototypes.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ] - ] - } + "ctor-channelsplitter.html": [ + "b7165bac33a36dc8778e7d90ff52f987bf459f5d", + [ + null, + {} + ] ] - ], - "table": { - "constructor-types.tentative.any.js": [ - "b4015bdc6f7503ded5e7c2cf3817d62949417bee", + }, + "the-constantsourcenode-interface": { + "constant-source-basic.html": [ + "4f925df5cd642746dccce76be94b28b501a2ac52", [ null, - { - "jsshell": true, - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ], - [ - "script", - "/wasm/jsapi/table/assertions.js" - ] - ] - } - ], + {} + ] + ], + "constant-source-onended.html": [ + "64bc54f21b32fece90c58e70c22112ff24735576", [ - "wasm/jsapi/table/constructor-types.tentative.any.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ], - [ - "script", - "/wasm/jsapi/table/assertions.js" - ] - ] - } - ], + null, + {} + ] + ], + "constant-source-output.html": [ + "5990376cff65b88b1bcba184b089ca62c2d50eed", [ - "wasm/jsapi/table/constructor-types.tentative.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ], - [ - "script", - "/wasm/jsapi/table/assertions.js" - ] - ] - } - ], + null, + {} + ] + ], + "ctor-constantsource.html": [ + "ea4a65e146babcdad6d1c5429a1250963d120378", [ - "wasm/jsapi/table/constructor-types.tentative.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ], - [ - "script", - "/wasm/jsapi/table/assertions.js" - ] - ] - } + null, + {} ] ], - "constructor.any.js": [ - "51b1070d413586d159ea3d38304a652f3efea947", + "test-constantsourcenode.html": [ + "9dd03ea1167eb983a8d67c1e3799ae8c796cca86", [ null, - { - "jsshell": true, - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ], - [ - "script", - "/wasm/jsapi/table/assertions.js" - ] - ] - } - ], + {} + ] + ] + }, + "the-convolvernode-interface": { + "active-processing.https.html": [ + "0712d6bccefd71730994b78cf26caabaaf1d92d2", [ - "wasm/jsapi/table/constructor.any.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ], - [ - "script", - "/wasm/jsapi/table/assertions.js" - ] - ] - } - ], + null, + {} + ] + ], + "convolution-mono-mono.html": [ + "570efebe220e94e68ffe3f067595e4cfe766a1b4", [ - "wasm/jsapi/table/constructor.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ], - [ - "script", - "/wasm/jsapi/table/assertions.js" - ] - ] - } - ], + null, + {} + ] + ], + "convolver-cascade.html": [ + "20bdfbdf4e35a99168df41a68e6bb8a792e7ca8c", [ - "wasm/jsapi/table/constructor.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ], - [ - "script", - "/wasm/jsapi/table/assertions.js" - ] - ] - } + null, + {} ] ], - "get-set.any.js": [ - "abe6fecac9860c09228218dc528786345315048e", + "convolver-channels.html": [ + "ac4f198d7c1449f38ca14963f73b0d3d90b40b5b", [ null, - { - "jsshell": true, - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ], - [ - "script", - "assertions.js" - ] - ] - } - ], + {} + ] + ], + "convolver-response-1-chan.html": [ + "e239a5e86f9797c1fdaf8dfdc705937ef45e8110", [ - "wasm/jsapi/table/get-set.any.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ], - [ - "script", - "assertions.js" - ] - ] - } - ], + null, + {} + ] + ], + "convolver-response-2-chan.html": [ + "a73eb3f8abb1c974366d5e528c3d30353443edc7", [ - "wasm/jsapi/table/get-set.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ], - [ - "script", - "assertions.js" - ] - ] - } - ], + null, + {} + ] + ], + "convolver-response-4-chan.html": [ + "f188d87b71f4c5d134feebd10ba95ffe165debb1", [ - "wasm/jsapi/table/get-set.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ], - [ - "script", - "assertions.js" - ] - ] - } + null, + {} ] ], - "grow.any.js": [ - "4038f1e64934b073fa0eae83a9e6115abcda99e1", + "convolver-setBuffer-already-has-value.html": [ + "ce2d5fcfe940b89b4ed04bc62a7be5f15131b64b", [ null, - { - "jsshell": true, - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ], - [ - "script", - "assertions.js" - ] - ] - } - ], + {} + ] + ], + "convolver-setBuffer-null.html": [ + "d35b8ec54b61d3c998e90dc0739b97bca4c1b022", [ - "wasm/jsapi/table/grow.any.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ], - [ - "script", - "assertions.js" - ] - ] - } - ], + null, + {} + ] + ], + "convolver-upmixing-1-channel-response.html": [ + "b0b3a5965e1d0f8e2de211b06ceeca58e417a16f", [ - "wasm/jsapi/table/grow.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ], - [ - "script", - "assertions.js" - ] - ] - } - ], + null, + {} + ] + ], + "ctor-convolver.html": [ + "28a0fc1c3c75e5b5804d892798ad8f38aa3216e3", [ - "wasm/jsapi/table/grow.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ], - [ - "script", - "assertions.js" - ] - ] - } + null, + {} ] ], - "length.any.js": [ - "0e6de3f83e1ecf584dbe3ff7b82c5ec03e128577", + "realtime-conv.html": [ + "505f0f03f54c6292969a510f7eb643340bbf76e3", [ null, - { - "jsshell": true, - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ] - ] - } - ], + {} + ] + ], + "transferred-buffer-output.html": [ + "e37a98c3861b6c2f0139b870d745ad0977fff10b", [ - "wasm/jsapi/table/length.any.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ] - ] - } - ], + null, + {} + ] + ] + }, + "the-delaynode-interface": { + "ctor-delay.html": [ + "e7ccefc655364d20bb240beacc81a4f7a10806dd", [ - "wasm/jsapi/table/length.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ] - ] - } - ], + null, + {} + ] + ], + "delay-test.html": [ + "6277c253ec0daffea06fa924d11e4e6f8d5b03f1", [ - "wasm/jsapi/table/length.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ] - ] - } + null, + {} ] ], - "toString.any.js": [ - "b5fb25b9c1e95458b17c618bc8cf0faf75aaab84", + "delaynode-channel-count-1.html": [ + "dd964ef9e36b1fb46f58c570d8337917541d80d1", [ null, - { - "jsshell": true, - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ] - ] - } - ], + {} + ] + ], + "delaynode-max-default-delay.html": [ + "ef526c96ffcfc2d420b421ab63d02d9a5486f3cc", [ - "wasm/jsapi/table/toString.any.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ] - ] - } - ], + null, + {} + ] + ], + "delaynode-max-nondefault-delay.html": [ + "3be07255e15b7dc33d96bf08b08b9e029b080d5f", [ - "wasm/jsapi/table/toString.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ] - ] - } - ], + null, + {} + ] + ], + "delaynode-maxdelay.html": [ + "a43ceeb7be9371864b7449c491d196d892b5e3d3", [ - "wasm/jsapi/table/toString.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ] - ] - } + null, + {} + ] + ], + "delaynode-maxdelaylimit.html": [ + "caf2f85dfd459b2d48526b8f4c13b37b2bceaddb", + [ + null, + {} + ] + ], + "delaynode-scheduling.html": [ + "af6c54950a18256b84d0d72c3dda59987ada2012", + [ + null, + {} ] ], - "type.tentative.any.js": [ - "ef9bbc5aa4a228e4cdc10658ef9f14157103021d", + "delaynode.html": [ + "da508e439fb328534e4cfc23568cec4bd54f08c6", [ null, - { - "jsshell": true, - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ] - ] - } - ], + {} + ] + ], + "maxdelay-rounding.html": [ + "84d9f181389cb879fd97cbb2e3bb6740bcc89b2f", [ - "wasm/jsapi/table/type.tentative.any.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ] - ] - } - ], + null, + {} + ] + ], + "no-dezippering.html": [ + "ccca103a3bc8583efb101048efb580fe21708ee3", [ - "wasm/jsapi/table/type.tentative.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ] - ] - } - ], + null, + {} + ] + ] + }, + "the-destinationnode-interface": { + "destination.html": [ + "1af0e0f010b3c83c36e705c537510ee91159fb38", [ - "wasm/jsapi/table/type.tentative.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ] - ] - } + null, + {} ] ] }, - "tag": { - "constructor.tentative.any.js": [ - "54edf8c8f59258fbc9e6373fe737a22507640239", + "the-dynamicscompressornode-interface": { + "ctor-dynamicscompressor.html": [ + "c2460dfa1ddd26a5c2e199873c0b28189275ff83", [ null, - { - "jsshell": true, - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ] - ] - } - ], + {} + ] + ], + "dynamicscompressor-basic.html": [ + "6c602010d0e3a9a7c4199b8923600676a5f5d3a1", [ - "wasm/jsapi/tag/constructor.tentative.any.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ] - ] - } - ], + null, + {} + ] + ] + }, + "the-gainnode-interface": { + "ctor-gain.html": [ + "dec273e9698702c5b1ee476a5c2e343bbc6e5bb6", [ - "wasm/jsapi/tag/constructor.tentative.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ] - ] - } - ], + null, + {} + ] + ], + "gain-basic.html": [ + "de2ba11a7f30c3ca386e25f9fa10ff5375cddaef", [ - "wasm/jsapi/tag/constructor.tentative.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ] - ] - } + null, + {} ] ], - "toString.tentative.any.js": [ - "76fff0feef063d123b34618ec461c0f8b1303075", + "gain.html": [ + "c41f4c908056aba804bc691c335e528fd1e2f44f", [ null, - { - "jsshell": true, - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ] - ] - } - ], + {} + ] + ], + "no-dezippering.html": [ + "6326d00dfb78efefd8a179e87dc53b531584895d", [ - "wasm/jsapi/tag/toString.tentative.any.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ] - ] - } - ], + null, + {} + ] + ] + }, + "the-iirfilternode-interface": { + "ctor-iirfilter.html": [ + "e884d487af8fc89b6b162177c7402eac692c02e3", [ - "wasm/jsapi/tag/toString.tentative.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ] - ] - } - ], + null, + {} + ] + ], + "iirfilter-basic.html": [ + "7828f05226151ebf7d6c7ec984cae1f90ef848d2", [ - "wasm/jsapi/tag/toString.tentative.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ] - ] - } + null, + {} ] ], - "type.tentative.any.js": [ - "58c96078bfe39daecb9dd821204a4969b5b4caa4", + "iirfilter-getFrequencyResponse.html": [ + "c98555f1610693abaa0bbe858e826bd1f776fb5b", [ null, - { - "jsshell": true, - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ] - ] - } - ], + {} + ] + ], + "iirfilter.html": [ + "aa38a6bfcadf6f7401f0068ef33e1145aae37c56", [ - "wasm/jsapi/tag/type.tentative.any.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ] - ] - } - ], + null, + {} + ] + ], + "test-iirfilternode.html": [ + "001a2a6172438207b50c16f707bd74a1524fd3dc", [ - "wasm/jsapi/tag/type.tentative.any.shadowrealm.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ] - ] - } - ], + null, + {} + ] + ] + }, + "the-mediaelementaudiosourcenode-interface": { + "cors-check.https.html": [ + "38bd94a037c3b15e59fe6e99acbf013636de9003", [ - "wasm/jsapi/tag/type.tentative.any.worker.html", + null, + {} + ] + ], + "mediaElementAudioSourceToScriptProcessorTest.html": [ + "56d0787b7673b11d903de23159b49ba15b85c1f4", + [ + null, + {} + ] + ], + "no-cors.https.html": [ + "de2f0b7dd3b680cbb38d1b0546c6656b1e03e1b2", + [ + null, + {} + ] + ], + "setSinkId-with-MediaElementAudioSourceNode.https.html": [ + "af71782717ae07682f63ad6e3f45c74bb28b3415", + [ + null, { - "script_metadata": [ - [ - "global", - "window,dedicatedworker,jsshell,shadowrealm" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ] - ] + "testdriver": true } ] ] - } - }, - "serialization": { - "arraybuffer": { - "transfer.window.js": [ - "0258581b1eb0ae56bd851e37ef93b1672b91182d", + }, + "the-mediastreamaudiodestinationnode-interface": { + "ctor-mediastreamaudiodestination.html": [ + "5d3fd0c26f4aa0347e2682b303d9bedbcc2b7600", [ - "wasm/serialization/arraybuffer/transfer.window.html", + null, {} ] ] }, - "module": { - "broadcastchannel-success-and-failure.html": [ - "0d11cc595be2d16ad795be8199ed2ae7abe79974", + "the-mediastreamaudiosourcenode-interface": { + "mediastreamaudiosourcenode-ctor.html": [ + "a711419656979bccaca95e08f26035ebd2a0c4c9", [ null, {} ] ], - "broadcastchannel-success.html": [ - "ddc242b82ef99403f48dfff0963c8576a73e0b31", + "mediastreamaudiosourcenode-routing.html": [ + "816eba0b29ae616e09099544e839b85bb0a8bea5", + [ + null, + {} + ] + ] + }, + "the-offlineaudiocontext-interface": { + "ctor-offlineaudiocontext.html": [ + "4b6863103622c5fb248dee3e3eb20d955275d037", [ null, {} ] ], - "cross-origin-module-sharing-fails.html": [ - "cd3e99b9eca131316965262f84b22002e66b62cd", + "current-time-block-size.html": [ + "ee976f7f72aa2530754c115fe7039f17c058f744", [ null, {} ] ], - "identity-not-preserved.html": [ - "24bb3b16d8c50600a634d62d4c48c49dfb3b120e", + "offlineaudiocontext-detached-execution-context.html": [ + "6eafd15fd243d3004ca887c61755c97d85f9f025", [ null, {} ] ], - "nested-worker-success.any.js": [ - "84fbd92a29c9ef2784a01508b6f3e70962857dc5", + "startrendering-after-discard.html": [ + "dd610ec3352673d75f4b285bcfab92647487236c", [ - "wasm/serialization/module/nested-worker-success.any.sharedworker.html", - { - "script_metadata": [ - [ - "global", - "dedicatedworker,sharedworker" - ], - [ - "script", - "resources/test-incrementer.js" - ] - ] - } - ], + null, + {} + ] + ] + }, + "the-oscillatornode-interface": { + "ctor-oscillator.html": [ + "bf50195a5b3bf7a9f49186f7892577381ba80c1a", [ - "wasm/serialization/module/nested-worker-success.any.worker.html", - { - "script_metadata": [ - [ - "global", - "dedicatedworker,sharedworker" - ], - [ - "script", - "resources/test-incrementer.js" - ] - ] - } + null, + {} ] ], - "no-transferring.html": [ - "2f0f674b1fcfd460f60714abba6dc03b377cafbb", + "detune-limiting.html": [ + "81a1293d0355ed448e60c0e31ad4435ea708e224", [ null, {} ] ], - "serialization-via-history.html": [ - "38d4301d70bc896680169158ec480a2f74d533b1", + "detune-overflow.html": [ + "28c28bc1db5fe0680c931a7dafecc9c93b82fb47", [ null, {} ] ], - "serialization-via-idb.any.js": [ - "2591d2fe7478adf4628a1ca9b39a2fc0541fba16", + "osc-basic-waveform.html": [ + "ce6e262fa9f60fdf66498d6f787e315f7176f93f", [ - "wasm/serialization/module/serialization-via-idb.any.html", - { - "script_metadata": [ - [ - "script", - "/IndexedDB/resources/support.js" - ] - ] - } - ], + null, + {} + ] + ] + }, + "the-pannernode-interface": { + "automation-changes.html": [ + "8aa73552aab5e1639ac95e4ae7e06c725c9cad0c", [ - "wasm/serialization/module/serialization-via-idb.any.worker.html", - { - "script_metadata": [ - [ - "script", - "/IndexedDB/resources/support.js" - ] - ] - } + null, + {} ] ], - "serialization-via-notifications-api.any.js": [ - "3672192df798a13dd086fa4b86c5125ac87a6c51", + "ctor-panner.html": [ + "c434aa8c6a50bc2763f7a9233db06466c501c7ac", [ - "wasm/serialization/module/serialization-via-notifications-api.any.html", + null, {} - ], + ] + ], + "distance-exponential.html": [ + "383e2c67b6ae479eb2b44a33a30ce8a5eedfc64c", [ - "wasm/serialization/module/serialization-via-notifications-api.any.worker.html", + null, {} ] ], - "share-module-cross-origin-fails.sub.html": [ - "5a52b9669839ff319f3b7ad88ce1aaf9059a4729", + "distance-inverse.html": [ + "a4ff984e09df660c1eae8f62333a3ab23ca106b0", [ null, {} ] ], - "window-domain-success.sub.html": [ - "07360d8264df01e20123697bf2e635fc66ebacfe", + "distance-linear.html": [ + "812fea3ebab1283df213263492226bad774c4e22", [ null, {} ] ], - "window-messagechannel-success.html": [ - "e686c8113561d94e860a774771aa69b974696716", + "panner-automation-basic.html": [ + "5c3df0e6fdf85f9cf33314c0748e72b515f40e6f", [ null, {} ] ], - "window-serviceworker-failure.https.html": [ - "d7285e2fa3d5150914c0ea0dfb1dd2bd15c8ae14", + "panner-automation-equalpower-stereo.html": [ + "7afc9c2a39d4dc71ffdcc780a855458bd1278a6c", [ null, {} ] ], - "window-sharedworker-failure.html": [ - "667e985a30b53c0ecadfd4c68f6217b87a7a5b98", + "panner-automation-position.html": [ + "8e09e869acb4b5a0e5dd94e2401494c690954208", [ null, {} ] ], - "window-similar-but-cross-origin-success.sub.html": [ - "a615547de09634632c1115180534bea5594835e3", + "panner-azimuth.html": [ + "d09f2ec352f052e987178a7ea0cb8a2b83283ccf", [ null, {} ] ], - "window-simple-success.html": [ - "6f2ccf465e93a160c73df548fc58774a5040f0e6", + "panner-distance-clamping.html": [ + "78c1ec6dc2d439475371a3b77c25f5af761206ad", [ null, {} ] - ] - } - }, - "webapi": { - "abort.any.js": [ - "f5ddd353aa9e358409d82b98f816dd01d45d53f9", - [ - "wasm/webapi/abort.any.html", - {} - ], - [ - "wasm/webapi/abort.any.worker.html", - {} - ] - ], - "body.any.js": [ - "4db7e8d123cfb6bba8b2a429cd5bc6ac1efb89ef", - [ - "wasm/webapi/body.any.html", - { - "script_metadata": [ - [ - "global", - "window,worker" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ] - ] - } - ], - [ - "wasm/webapi/body.any.serviceworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ] - ] - } - ], - [ - "wasm/webapi/body.any.sharedworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ] - ] - } - ], - [ - "wasm/webapi/body.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,worker" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ] - ] - } - ] - ], - "contenttype.any.js": [ - "0a2f5f1122ce4601c594fc68ca2ace99035d2fdb", - [ - "wasm/webapi/contenttype.any.html", - { - "script_metadata": [ - [ - "global", - "window,worker" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ] - ] - } ], - [ - "wasm/webapi/contenttype.any.serviceworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ] - ] - } + "panner-equalpower-stereo.html": [ + "2a0225b3f666365c3a3348a311459a3a3cab7fd7", + [ + null, + {} + ] ], - [ - "wasm/webapi/contenttype.any.sharedworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ] - ] - } + "panner-equalpower.html": [ + "3ff21b651f28184ed5a0d1b7ef4b4e09651a34ac", + [ + null, + {} + ] ], - [ - "wasm/webapi/contenttype.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,worker" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ] - ] - } - ] - ], - "empty-body.any.js": [ - "0771647b708ec3b347b0bb62039377ed623b634d", - [ - "wasm/webapi/empty-body.any.html", - { - "script_metadata": [ - [ - "global", - "window,worker" - ] - ] - } + "panner-rolloff-clamping.html": [ + "387f87301092ebd725ed240cc70f0df7ec69a5ab", + [ + null, + {} + ] ], - [ - "wasm/webapi/empty-body.any.serviceworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker" - ] - ] - } + "pannernode-basic.window.js": [ + "298fce0f208cf28cc1872e6a1b8701203df9c19e", + [ + "webaudio/the-audio-api/the-pannernode-interface/pannernode-basic.window.html", + {} + ] ], - [ - "wasm/webapi/empty-body.any.sharedworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker" - ] - ] - } + "pannernode-setposition-throws.html": [ + "2053411943719d647ac0f17ac71d0beb742102c9", + [ + null, + {} + ] ], - [ - "wasm/webapi/empty-body.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,worker" - ] - ] - } + "test-pannernode-automation.html": [ + "ce474b10b5122eaf40b8b6d1af874ad7ec9bff70", + [ + null, + {} + ] ] - ], - "esm-integration": { - "execute-start.tentative.html": [ - "a35adbe8ebfc1cc1bf92b9979621da29c797889f", + }, + "the-periodicwave-interface": { + "createPeriodicWaveInfiniteValuesThrows.html": [ + "928f45bd8feb70fbc7d59da367a08028a456477c", [ null, {} ] ], - "exported-names.tentative.html": [ - "16a9c59787bc94f050c2fcdc522625858adcd03f", + "periodicWave.html": [ + "fe42f8ad50484d4f09a4aa4d15cbd93336f51b92", [ null, {} ] - ], - "invalid-bytecode.tentative.html": [ - "0e447dbee510428691de42e7b34f0b9daef56565", + ] + }, + "the-scriptprocessornode-interface": { + "simple-input-output.html": [ + "7fd20e67a7079ab3c02d490e458cb762006e0ca0", [ null, {} ] - ], - "js-wasm-cycle-errors.tentative.html": [ - "f45e06ece5f3bc411ffa1e0c45b39f6b7afe75b9", + ] + }, + "the-stereopanner-interface": { + "ctor-stereopanner.html": [ + "9409f1ffce2110c177332388988d7ddb559d3ae2", [ null, {} ] ], - "js-wasm-cycle.tentative.html": [ - "38b0d3203c27d82fa6a0008d2ebdac31af3ac935", + "no-dezippering.html": [ + "355db8b9dc3c77f9b6854e4e5a853641d4aa1743", [ null, {} ] ], - "module-parse-error.tentative.html": [ - "0e447dbee510428691de42e7b34f0b9daef56565", + "stereopannernode-basic.html": [ + "48bacb08c6dfb33e7d3b43e9dfda7c080bbf224d", [ null, {} ] ], - "resolve-export.tentative.html": [ - "14688221021d53725a503a763a60ee8ddbafb9c9", + "stereopannernode-panning.html": [ + "f683fd78bf981698d77c58e83dc7b933f852266e", [ null, {} ] - ], - "source-phase.tentative.html": [ - "eb415a4c6f1666c0cb1901188e60febb299458ff", + ] + }, + "the-waveshapernode-interface": { + "ctor-waveshaper.html": [ + "7aa33ca5aa3323754755ebfda200976b0b292730", [ null, {} ] ], - "wasm-import-wasm-export.tentative.html": [ - "3761a22f218db0b4a5e9cafd246aa58935e9d4fd", + "curve-tests.html": [ + "d09cf78fd84131326b2412fba96a2bf7be82b9b9", [ null, {} ] ], - "wasm-import.tentative.html": [ - "243cfd46e4bdf0685a3340f90cae44b1fdf8c11e", + "silent-inputs.html": [ + "45d2c9ad4b3cb903ad29f7269d389d9e353a0faa", [ null, {} ] ], - "wasm-js-cycle.tentative.html": [ - "298d4d40b0006e2b6505a9d09383e083ad0039c0", + "waveshaper-copy-curve.html": [ + "e897ac08a10abdc5824de6f9548e56a0e313d0c4", [ null, {} ] ], - "wasm-to-wasm-link-error.tentative.html": [ - "6c43e72b09bfe7ea43ca7d589ada5692297f865e", + "waveshaper-limits.html": [ + "13e88be567b3470ec28a7c0cd7785d1ebcd6c988", [ null, {} ] ], - "worker-import.tentative.html": [ - "739f2d3f28cc68bd07de0986c6073c17701933a5", + "waveshaper-simple.html": [ + "affd0c58afaf41b0be30a51eb7aa6ca26db8a1c7", [ null, {} ] ], - "worker.tentative.html": [ - "6145dd04ff8c8d33600570e63bc2bce871417420", + "waveshaper.html": [ + "5e6ed24e9ea30f20d8a0342f958a9f52a1785a0a", [ null, {} ] ] - }, - "historical.any.js": [ - "257112c4160f5424d12d175319322c2f5ae1576b", - [ - "wasm/webapi/historical.any.html", - { - "script_metadata": [ - [ - "global", - "window,worker" - ] + } + } + }, + "webauthn": { + "conditional-mediation.https.html": [ + "1eb2ba3b1e750b261b2ae71fbf6172c624503cb2", + [ + null, + { + "testdriver": true + } + ] + ], + "createcredential-abort.https.html": [ + "d175e660e71821509045528e8cb026967e594f1a", + [ + null, + { + "testdriver": true, + "timeout": "long" + } + ] + ], + "createcredential-attachment.https.html": [ + "e9458ad5604875e2ba430647cd434e561556a675", + [ + null, + { + "testdriver": true, + "timeout": "long" + } + ] + ], + "createcredential-badargs-authnrselection.https.html": [ + "85b0f9053866a878185b0a2aaf6bab068bd65b86", + [ + null, + { + "testdriver": true, + "timeout": "long" + } + ] + ], + "createcredential-badargs-challenge.https.html": [ + "4fa41df11dd43d720cc9467580913455ab2a60ec", + [ + null, + { + "testdriver": true, + "timeout": "long" + } + ] + ], + "createcredential-badargs-rp.https.html": [ + "5e3c38821bc3946a58a080d471c23fe369b2e870", + [ + null, + { + "testdriver": true, + "timeout": "long" + } + ] + ], + "createcredential-badargs-user.https.html": [ + "e487242571769125238e87f0d22731a54c58bed5", + [ + null, + { + "testdriver": true, + "timeout": "long" + } + ] + ], + "createcredential-cross-origin-iframe.https.sub.html": [ + "ecf99f68a2b4688391ebaf4bd4be1aa79ba342df", + [ + null, + { + "testdriver": true, + "timeout": "long" + } + ] + ], + "createcredential-excludecredentials.https.html": [ + "2b1eec19b7b3a806150d13c77d8cfd1ea01973a6", + [ + null, + { + "testdriver": true, + "timeout": "long" + } + ] + ], + "createcredential-extensions.https.html": [ + "5a55a8d860ea5a93aa4fc857f19ccdaeb0238008", + [ + null, + { + "testdriver": true, + "timeout": "long" + } + ] + ], + "createcredential-getpublickey.https.html": [ + "215519913dbcf060afaaa4114491ed1498c5b49a", + [ + null, + { + "testdriver": true, + "timeout": "long" + } + ] + ], + "createcredential-hints.https.html": [ + "a662bcef46f156c212fcd81feb7d69b613f551c3", + [ + null, + { + "testdriver": true, + "timeout": "long" + } + ] + ], + "createcredential-large-blob-not-supported.https.html": [ + "167a65b92262759e652009e51c5f8ad6f2e4ac1e", + [ + null, + { + "testdriver": true, + "timeout": "long" + } + ] + ], + "createcredential-large-blob-supported.https.html": [ + "5c07745a49dfeb1084b50bdeb6adf6463f74a348", + [ + null, + { + "testdriver": true, + "timeout": "long" + } + ] + ], + "createcredential-minpinlength.https.html": [ + "a92898c848c01e5223c462d58c902d4a676bf7f2", + [ + null, + { + "testdriver": true, + "timeout": "long" + } + ] + ], + "createcredential-passing.https.html": [ + "4124c2247ea3af01eb89e7a4e0cc0b8c326d8527", + [ + null, + { + "testdriver": true, + "timeout": "long" + } + ] + ], + "createcredential-prf.https.html": [ + "ac2d5b5f36031d6f1508a2b5fe20c2690ae269e8", + [ + null, + { + "testdriver": true, + "timeout": "long" + } + ] + ], + "createcredential-pubkeycredparams.https.html": [ + "cb830bfe92aa1110ddb964c082daec0e13d6386d", + [ + null, + { + "testdriver": true, + "timeout": "long" + } + ] + ], + "createcredential-resident-key.https.html": [ + "d64ec14c00d38e49eaa91142b55f47c2e336670d", + [ + null, + { + "testdriver": true, + "timeout": "long" + } + ] + ], + "createcredential-timeout.https.html": [ + "fc35a6e72f0a76a4ff410df71b346109cc215681", + [ + null, + { + "testdriver": true, + "timeout": "long" + } + ] + ], + "credblob-not-supported.https.html": [ + "0f9514ba5e4022770cd9059f61c0581b3e0cd56c", + [ + null, + { + "testdriver": true, + "timeout": "long" + } + ] + ], + "credblob-supported.https.html": [ + "c69091fbc4019038531de326c59141a09cea9a00", + [ + null, + { + "testdriver": true, + "timeout": "long" + } + ] + ], + "getcredential-abort.https.html": [ + "958f65daf1bccfe6200bb4a06e9cd75e06f4346d", + [ + null, + { + "timeout": "long" + } + ] + ], + "getcredential-allowcredentials.https.html": [ + "0263774142c685af898135ce782475f75d559c3e", + [ + null, + { + "testdriver": true, + "timeout": "long" + } + ] + ], + "getcredential-attachment.https.html": [ + "7ab7235af501287bd9bc96d09ec549702e359dce", + [ + null, + { + "testdriver": true, + "timeout": "long" + } + ] + ], + "getcredential-badargs-rpid.https.html": [ + "3f9d3f2177fd9624da6bebfabedae7c57f3152a8", + [ + null, + { + "testdriver": true, + "timeout": "long" + } + ] + ], + "getcredential-badargs-userverification.https.html": [ + "8c15a76403e3c5c5d55752d4f6916614c29f7b10", + [ + null, + { + "testdriver": true, + "timeout": "long" + } + ] + ], + "getcredential-extensions.https.html": [ + "16c1e5745719568f11a41697e2bbe2f0bb7b0a5e", + [ + null, + { + "testdriver": true, + "timeout": "long" + } + ] + ], + "getcredential-hints.https.html": [ + "45f6e6b48e2167fabb826f55f084c1b4a5a3501c", + [ + null, + { + "testdriver": true, + "timeout": "long" + } + ] + ], + "getcredential-large-blob-not-supported.https.html": [ + "97cea30f27f491bf0fd1aec6fe6e4734d48e591a", + [ + null, + { + "testdriver": true, + "timeout": "long" + } + ] + ], + "getcredential-large-blob-supported.https.html": [ + "c7cc0dfc4ae7c6d20385f0ba71798f6209c8676d", + [ + null, + { + "testdriver": true, + "timeout": "long" + } + ] + ], + "getcredential-passing.https.html": [ + "7c730d7183ad4ec8d7208ed7229aa5957be2722e", + [ + null, + { + "testdriver": true, + "timeout": "long" + } + ] + ], + "getcredential-prf.https.html": [ + "40dfc5cad33921e3f5c00865a74cf79e5f81e26e", + [ + null, + { + "testdriver": true, + "timeout": "long" + } + ] + ], + "getcredential-rk-passing.https.html": [ + "8c0254fee4258478e5920c30f693c84e07cfcb2e", + [ + null, + { + "testdriver": true, + "timeout": "long" + } + ] + ], + "getcredential-timeout.https.html": [ + "c4d8aed38c63afa9fc1b720e244a918ebb1e8e0d", + [ + null, + { + "testdriver": true, + "timeout": "long" + } + ] + ], + "idlharness.https.window.js": [ + "ff0efcb656a740e9fdee2a3cc8dbfddda9b2a563", + [ + "webauthn/idlharness.https.window.html", + { + "script_metadata": [ + [ + "timeout", + "long" + ], + [ + "script", + "/resources/WebIDLParser.js" + ], + [ + "script", + "/resources/idlharness.js" + ], + [ + "script", + "helpers.js" ] - } - ], - [ - "wasm/webapi/historical.any.serviceworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker" - ] + ], + "timeout": "long" + } + ] + ], + "public-key-credential-creation-options-from-json.https.window.js": [ + "b3882146f0c5fcf05740c39b622ea4e5a486d6e3", + [ + "webauthn/public-key-credential-creation-options-from-json.https.window.html", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ], + [ + "script", + "/resources/utils.js" + ], + [ + "script", + "helpers.js" ] - } - ], - [ - "wasm/webapi/historical.any.sharedworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker" - ] + ] + } + ] + ], + "public-key-credential-request-options-from-json.https.window.js": [ + "6bcfe03e4d9b1bd4e4742e931ce07e1891ff97d6", + [ + "webauthn/public-key-credential-request-options-from-json.https.window.html", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ], + [ + "script", + "/resources/utils.js" + ], + [ + "script", + "helpers.js" ] - } - ], - [ - "wasm/webapi/historical.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,worker" - ] + ] + } + ] + ], + "public-key-credential-to-json.https.window.js": [ + "2f805d3ab7a888c98ee27f867732b5c95cfcbb01", + [ + "webauthn/public-key-credential-to-json.https.window.html", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ], + [ + "script", + "/resources/utils.js" + ], + [ + "script", + "helpers.js" ] - } - ] + ] + } + ] + ], + "remote-desktop-client-override.tentative.https.html": [ + "888dca2e9c4bdc98c002107a6899f0b884690555", + [ + null, + { + "testdriver": true, + "timeout": "long" + } + ] + ], + "securecontext.http.html": [ + "27d2dbfce3e9c15c453597fc53b745426d33aae4", + [ + null, + {} + ] + ], + "securecontext.https.html": [ + "f927004702443be4d23f2c206ee1b4d07a0e1bea", + [ + null, + {} + ] + ], + "storecredential.https.html": [ + "726b289fbd18e8bd7646f2d6ad0b88b718c16293", + [ + null, + { + "testdriver": true, + "timeout": "long" + } + ] + ], + "webauthn-testdriver-basic.https.html": [ + "5751928301ff6c75593881f6e0bb0c5f93076d8c", + [ + null, + { + "testdriver": true + } + ] + ] + }, + "webcodecs": { + "audio-data-serialization.any.js": [ + "280934cd0595f40dc81936f8362edab8a96fa43f", + [ + "webcodecs/audio-data-serialization.any.html", + { + "script_metadata": [ + [ + "global", + "window" + ], + [ + "script", + "/common/media.js" + ], + [ + "script", + "/webcodecs/utils.js" + ] + ] + } + ] + ], + "audio-data.any.js": [ + "67fef3c83c858f29005a1019e8a2d49b4999568f", + [ + "webcodecs/audio-data.any.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/common/media.js" + ], + [ + "script", + "/webcodecs/utils.js" + ] + ] + } ], - "idlharness.any.js": [ - "0c4669e6caa7b2b7a9c0a89f13cc11605a9067c4", - [ - "wasm/webapi/idlharness.any.html", - { - "script_metadata": [ - [ - "script", - "/resources/WebIDLParser.js" - ], - [ - "script", - "/resources/idlharness.js" - ] + [ + "webcodecs/audio-data.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/common/media.js" + ], + [ + "script", + "/webcodecs/utils.js" ] - } - ], - [ - "wasm/webapi/idlharness.any.worker.html", - { - "script_metadata": [ - [ - "script", - "/resources/WebIDLParser.js" - ], - [ - "script", - "/resources/idlharness.js" - ] + ] + } + ] + ], + "audio-data.crossOriginIsolated.https.any.js": [ + "a5cb47867052b5c0dc034511439e7d3b2307a225", + [ + "webcodecs/audio-data.crossOriginIsolated.https.any.html", + { + "script_metadata": [ + [ + "global", + "window" + ], + [ + "script", + "/common/media.js" + ], + [ + "script", + "/webcodecs/utils.js" ] - } - ] + ] + } + ] + ], + "audio-decoder.crossOriginIsolated.https.any.js": [ + "17009e0118c1e92401cf6952e35100bc33692df0", + [ + "webcodecs/audio-decoder.crossOriginIsolated.https.any.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/utils.js" + ] + ] + } ], - "instantiateStreaming-bad-imports.any.js": [ - "38ecc40252e51d4a4daf9f1a58d31b0ec79c4ea3", - [ - "wasm/webapi/instantiateStreaming-bad-imports.any.html", - { - "script_metadata": [ - [ - "global", - "window,worker" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ], - [ - "script", - "/wasm/jsapi/bad-imports.js" - ] + [ + "webcodecs/audio-decoder.crossOriginIsolated.https.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/utils.js" ] - } - ], - [ - "wasm/webapi/instantiateStreaming-bad-imports.any.serviceworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ], - [ - "script", - "/wasm/jsapi/bad-imports.js" - ] + ] + } + ] + ], + "audio-decoder.https.any.js": [ + "666d3a159f16adb593ff3f942b409957f7e0f749", + [ + "webcodecs/audio-decoder.https.any.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/utils.js" + ] + ] + } + ], + [ + "webcodecs/audio-decoder.https.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/utils.js" + ] + ] + } + ] + ], + "audio-encoder-codec-specific.https.any.js": [ + "e3396f999aa54de36eacf49b2b3aceb2ec7e6c52", + [ + "webcodecs/audio-encoder-codec-specific.https.any.html", + { + "script_metadata": [ + [ + "global", + "window" + ], + [ + "script", + "/webcodecs/utils.js" + ] + ] + } + ] + ], + "audio-encoder-config.https.any.js": [ + "ad5d56ca492a6cdf4a0be8338c30647db9e616c6", + [ + "webcodecs/audio-encoder-config.https.any.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/utils.js" + ] + ] + } + ], + [ + "webcodecs/audio-encoder-config.https.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/utils.js" + ] + ] + } + ] + ], + "audio-encoder.https.any.js": [ + "51496551cf525b3208be63bb3dbce325a13882ed", + [ + "webcodecs/audio-encoder.https.any.html", + { + "script_metadata": [ + [ + "global", + "window" + ], + [ + "script", + "/webcodecs/utils.js" + ] + ] + } + ] + ], + "audioDecoder-codec-specific.https.any.js": [ + "92513be087011445b306a802f288c7aae8cd7a35", + [ + "webcodecs/audioDecoder-codec-specific.https.any.html?adts_aac", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/utils.js" + ], + [ + "variant", + "?adts_aac" + ], + [ + "variant", + "?mp4_aac" + ], + [ + "variant", + "?mp3" + ], + [ + "variant", + "?opus" + ], + [ + "variant", + "?pcm_alaw" + ], + [ + "variant", + "?pcm_mulaw" + ] + ] + } + ], + [ + "webcodecs/audioDecoder-codec-specific.https.any.html?mp3", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/utils.js" + ], + [ + "variant", + "?adts_aac" + ], + [ + "variant", + "?mp4_aac" + ], + [ + "variant", + "?mp3" + ], + [ + "variant", + "?opus" + ], + [ + "variant", + "?pcm_alaw" + ], + [ + "variant", + "?pcm_mulaw" + ] + ] + } + ], + [ + "webcodecs/audioDecoder-codec-specific.https.any.html?mp4_aac", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/utils.js" + ], + [ + "variant", + "?adts_aac" + ], + [ + "variant", + "?mp4_aac" + ], + [ + "variant", + "?mp3" + ], + [ + "variant", + "?opus" + ], + [ + "variant", + "?pcm_alaw" + ], + [ + "variant", + "?pcm_mulaw" + ] + ] + } + ], + [ + "webcodecs/audioDecoder-codec-specific.https.any.html?opus", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/utils.js" + ], + [ + "variant", + "?adts_aac" + ], + [ + "variant", + "?mp4_aac" + ], + [ + "variant", + "?mp3" + ], + [ + "variant", + "?opus" + ], + [ + "variant", + "?pcm_alaw" + ], + [ + "variant", + "?pcm_mulaw" + ] + ] + } + ], + [ + "webcodecs/audioDecoder-codec-specific.https.any.html?pcm_alaw", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/utils.js" + ], + [ + "variant", + "?adts_aac" + ], + [ + "variant", + "?mp4_aac" + ], + [ + "variant", + "?mp3" + ], + [ + "variant", + "?opus" + ], + [ + "variant", + "?pcm_alaw" + ], + [ + "variant", + "?pcm_mulaw" + ] + ] + } + ], + [ + "webcodecs/audioDecoder-codec-specific.https.any.html?pcm_mulaw", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/utils.js" + ], + [ + "variant", + "?adts_aac" + ], + [ + "variant", + "?mp4_aac" + ], + [ + "variant", + "?mp3" + ], + [ + "variant", + "?opus" + ], + [ + "variant", + "?pcm_alaw" + ], + [ + "variant", + "?pcm_mulaw" + ] + ] + } + ], + [ + "webcodecs/audioDecoder-codec-specific.https.any.worker.html?adts_aac", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/utils.js" + ], + [ + "variant", + "?adts_aac" + ], + [ + "variant", + "?mp4_aac" + ], + [ + "variant", + "?mp3" + ], + [ + "variant", + "?opus" + ], + [ + "variant", + "?pcm_alaw" + ], + [ + "variant", + "?pcm_mulaw" + ] + ] + } + ], + [ + "webcodecs/audioDecoder-codec-specific.https.any.worker.html?mp3", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/utils.js" + ], + [ + "variant", + "?adts_aac" + ], + [ + "variant", + "?mp4_aac" + ], + [ + "variant", + "?mp3" + ], + [ + "variant", + "?opus" + ], + [ + "variant", + "?pcm_alaw" + ], + [ + "variant", + "?pcm_mulaw" + ] + ] + } + ], + [ + "webcodecs/audioDecoder-codec-specific.https.any.worker.html?mp4_aac", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/utils.js" + ], + [ + "variant", + "?adts_aac" + ], + [ + "variant", + "?mp4_aac" + ], + [ + "variant", + "?mp3" + ], + [ + "variant", + "?opus" + ], + [ + "variant", + "?pcm_alaw" + ], + [ + "variant", + "?pcm_mulaw" + ] + ] + } + ], + [ + "webcodecs/audioDecoder-codec-specific.https.any.worker.html?opus", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/utils.js" + ], + [ + "variant", + "?adts_aac" + ], + [ + "variant", + "?mp4_aac" + ], + [ + "variant", + "?mp3" + ], + [ + "variant", + "?opus" + ], + [ + "variant", + "?pcm_alaw" + ], + [ + "variant", + "?pcm_mulaw" + ] + ] + } + ], + [ + "webcodecs/audioDecoder-codec-specific.https.any.worker.html?pcm_alaw", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/utils.js" + ], + [ + "variant", + "?adts_aac" + ], + [ + "variant", + "?mp4_aac" + ], + [ + "variant", + "?mp3" + ], + [ + "variant", + "?opus" + ], + [ + "variant", + "?pcm_alaw" + ], + [ + "variant", + "?pcm_mulaw" + ] + ] + } + ], + [ + "webcodecs/audioDecoder-codec-specific.https.any.worker.html?pcm_mulaw", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/utils.js" + ], + [ + "variant", + "?adts_aac" + ], + [ + "variant", + "?mp4_aac" + ], + [ + "variant", + "?mp3" + ], + [ + "variant", + "?opus" + ], + [ + "variant", + "?pcm_alaw" + ], + [ + "variant", + "?pcm_mulaw" ] - } - ], - [ - "wasm/webapi/instantiateStreaming-bad-imports.any.sharedworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ], - [ - "script", - "/wasm/jsapi/bad-imports.js" - ] + ] + } + ] + ], + "chunk-serialization.any.js": [ + "821a71170d49e966ea8e75fbc7b4e87e793f5cf9", + [ + "webcodecs/chunk-serialization.any.html", + { + "script_metadata": [ + [ + "global", + "window" + ], + [ + "script", + "/common/media.js" + ], + [ + "script", + "/webcodecs/utils.js" ] - } - ], - [ - "wasm/webapi/instantiateStreaming-bad-imports.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,worker" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ], - [ - "script", - "/wasm/jsapi/bad-imports.js" - ] + ] + } + ] + ], + "encoded-audio-chunk.any.js": [ + "1ada120e4d91a3fd0a0d3e4cfb3ef992006ab46b", + [ + "webcodecs/encoded-audio-chunk.any.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/utils.js" ] - } - ] + ] + } ], - "instantiateStreaming.any.js": [ - "cf3a5e7331f30ed05f96b26d7a913bebe2d827ac", - [ - "wasm/webapi/instantiateStreaming.any.html", - { - "script_metadata": [ - [ - "global", - "window,worker" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ], - [ - "script", - "/wasm/jsapi/instanceTestFactory.js" - ] + [ + "webcodecs/encoded-audio-chunk.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/utils.js" ] - } - ], - [ - "wasm/webapi/instantiateStreaming.any.serviceworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ], - [ - "script", - "/wasm/jsapi/instanceTestFactory.js" - ] + ] + } + ] + ], + "encoded-audio-chunk.crossOriginIsolated.https.any.js": [ + "7063d8588700d45c2958738360e070f7d7978f6d", + [ + "webcodecs/encoded-audio-chunk.crossOriginIsolated.https.any.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/utils.js" ] - } - ], - [ - "wasm/webapi/instantiateStreaming.any.sharedworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ], - [ - "script", - "/wasm/jsapi/instanceTestFactory.js" - ] + ] + } + ], + [ + "webcodecs/encoded-audio-chunk.crossOriginIsolated.https.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/utils.js" ] - } - ], - [ - "wasm/webapi/instantiateStreaming.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,worker" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ], - [ - "script", - "/wasm/jsapi/assertions.js" - ], - [ - "script", - "/wasm/jsapi/instanceTestFactory.js" - ] + ] + } + ] + ], + "encoded-video-chunk.any.js": [ + "9b60e59a79311dea38d8cb4cad1d3d1cebf2ff3a", + [ + "webcodecs/encoded-video-chunk.any.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/utils.js" ] - } - ] + ] + } ], - "invalid-args.any.js": [ - "b27e018a984e398b6c001426abdf8cfdc641f782", - [ - "wasm/webapi/invalid-args.any.html", - { - "script_metadata": [ - [ - "global", - "window,worker" - ] + [ + "webcodecs/encoded-video-chunk.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/utils.js" ] - } - ], - [ - "wasm/webapi/invalid-args.any.serviceworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker" - ] + ] + } + ] + ], + "encoded-video-chunk.crossOriginIsolated.https.any.js": [ + "7f414fec1fe9a7abdb14548d6040777e4e67110d", + [ + "webcodecs/encoded-video-chunk.crossOriginIsolated.https.any.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/utils.js" ] - } - ], - [ - "wasm/webapi/invalid-args.any.sharedworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker" - ] + ] + } + ], + [ + "webcodecs/encoded-video-chunk.crossOriginIsolated.https.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/utils.js" ] - } - ], - [ - "wasm/webapi/invalid-args.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,worker" - ] + ] + } + ] + ], + "encodedVideoChunk-serialization.crossAgentCluster.https.html": [ + "fb104a3a1b1aacbf8772371dafce3c2b35084126", + [ + null, + {} + ] + ], + "full-cycle-test.https.any.js": [ + "a63edd04d75ea1c3921456a7179ade7cf39a8375", + [ + "webcodecs/full-cycle-test.https.any.html?av1", + { + "script_metadata": [ + [ + "timeout", + "long" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/video-encoder-utils.js" + ], + [ + "variant", + "?av1" + ], + [ + "variant", + "?av1_444_high" + ], + [ + "variant", + "?vp8" + ], + [ + "variant", + "?vp9_p0" + ], + [ + "variant", + "?vp9_p2" + ], + [ + "variant", + "?vp9_444_p1" + ], + [ + "variant", + "?vp9_444_p3" + ], + [ + "variant", + "?h264_avc" + ], + [ + "variant", + "?h264_annexb" + ], + [ + "variant", + "?h265_hevc" + ], + [ + "variant", + "?h265_annexb" ] - } - ] + ], + "timeout": "long" + } ], - "invalid-code.any.js": [ - "37373d49971a3d89b04720cc10669f4929fc9142", - [ - "wasm/webapi/invalid-code.any.html", - { - "script_metadata": [ - [ - "global", - "window,worker" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ] - ] - } - ], - [ - "wasm/webapi/invalid-code.any.serviceworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ] + [ + "webcodecs/full-cycle-test.https.any.html?av1_444_high", + { + "script_metadata": [ + [ + "timeout", + "long" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/video-encoder-utils.js" + ], + [ + "variant", + "?av1" + ], + [ + "variant", + "?av1_444_high" + ], + [ + "variant", + "?vp8" + ], + [ + "variant", + "?vp9_p0" + ], + [ + "variant", + "?vp9_p2" + ], + [ + "variant", + "?vp9_444_p1" + ], + [ + "variant", + "?vp9_444_p3" + ], + [ + "variant", + "?h264_avc" + ], + [ + "variant", + "?h264_annexb" + ], + [ + "variant", + "?h265_hevc" + ], + [ + "variant", + "?h265_annexb" ] - } - ], - [ - "wasm/webapi/invalid-code.any.sharedworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ] + ], + "timeout": "long" + } + ], + [ + "webcodecs/full-cycle-test.https.any.html?h264_annexb", + { + "script_metadata": [ + [ + "timeout", + "long" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/video-encoder-utils.js" + ], + [ + "variant", + "?av1" + ], + [ + "variant", + "?av1_444_high" + ], + [ + "variant", + "?vp8" + ], + [ + "variant", + "?vp9_p0" + ], + [ + "variant", + "?vp9_p2" + ], + [ + "variant", + "?vp9_444_p1" + ], + [ + "variant", + "?vp9_444_p3" + ], + [ + "variant", + "?h264_avc" + ], + [ + "variant", + "?h264_annexb" + ], + [ + "variant", + "?h265_hevc" + ], + [ + "variant", + "?h265_annexb" ] - } - ], - [ - "wasm/webapi/invalid-code.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,worker" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ] + ], + "timeout": "long" + } + ], + [ + "webcodecs/full-cycle-test.https.any.html?h264_avc", + { + "script_metadata": [ + [ + "timeout", + "long" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/video-encoder-utils.js" + ], + [ + "variant", + "?av1" + ], + [ + "variant", + "?av1_444_high" + ], + [ + "variant", + "?vp8" + ], + [ + "variant", + "?vp9_p0" + ], + [ + "variant", + "?vp9_p2" + ], + [ + "variant", + "?vp9_444_p1" + ], + [ + "variant", + "?vp9_444_p3" + ], + [ + "variant", + "?h264_avc" + ], + [ + "variant", + "?h264_annexb" + ], + [ + "variant", + "?h265_hevc" + ], + [ + "variant", + "?h265_annexb" ] - } - ] + ], + "timeout": "long" + } ], - "modified-contenttype.any.js": [ - "354930517c73ea54162a655c2c12e93b40cc1a73", - [ - "wasm/webapi/modified-contenttype.any.html", - { - "script_metadata": [ - [ - "global", - "window,worker" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ] + [ + "webcodecs/full-cycle-test.https.any.html?h265_annexb", + { + "script_metadata": [ + [ + "timeout", + "long" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/video-encoder-utils.js" + ], + [ + "variant", + "?av1" + ], + [ + "variant", + "?av1_444_high" + ], + [ + "variant", + "?vp8" + ], + [ + "variant", + "?vp9_p0" + ], + [ + "variant", + "?vp9_p2" + ], + [ + "variant", + "?vp9_444_p1" + ], + [ + "variant", + "?vp9_444_p3" + ], + [ + "variant", + "?h264_avc" + ], + [ + "variant", + "?h264_annexb" + ], + [ + "variant", + "?h265_hevc" + ], + [ + "variant", + "?h265_annexb" ] - } - ], - [ - "wasm/webapi/modified-contenttype.any.serviceworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ] + ], + "timeout": "long" + } + ], + [ + "webcodecs/full-cycle-test.https.any.html?h265_hevc", + { + "script_metadata": [ + [ + "timeout", + "long" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/video-encoder-utils.js" + ], + [ + "variant", + "?av1" + ], + [ + "variant", + "?av1_444_high" + ], + [ + "variant", + "?vp8" + ], + [ + "variant", + "?vp9_p0" + ], + [ + "variant", + "?vp9_p2" + ], + [ + "variant", + "?vp9_444_p1" + ], + [ + "variant", + "?vp9_444_p3" + ], + [ + "variant", + "?h264_avc" + ], + [ + "variant", + "?h264_annexb" + ], + [ + "variant", + "?h265_hevc" + ], + [ + "variant", + "?h265_annexb" ] - } - ], - [ - "wasm/webapi/modified-contenttype.any.sharedworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ] + ], + "timeout": "long" + } + ], + [ + "webcodecs/full-cycle-test.https.any.html?vp8", + { + "script_metadata": [ + [ + "timeout", + "long" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/video-encoder-utils.js" + ], + [ + "variant", + "?av1" + ], + [ + "variant", + "?av1_444_high" + ], + [ + "variant", + "?vp8" + ], + [ + "variant", + "?vp9_p0" + ], + [ + "variant", + "?vp9_p2" + ], + [ + "variant", + "?vp9_444_p1" + ], + [ + "variant", + "?vp9_444_p3" + ], + [ + "variant", + "?h264_avc" + ], + [ + "variant", + "?h264_annexb" + ], + [ + "variant", + "?h265_hevc" + ], + [ + "variant", + "?h265_annexb" ] - } - ], - [ - "wasm/webapi/modified-contenttype.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,worker" - ], - [ - "script", - "/wasm/jsapi/wasm-module-builder.js" - ] + ], + "timeout": "long" + } + ], + [ + "webcodecs/full-cycle-test.https.any.html?vp9_444_p1", + { + "script_metadata": [ + [ + "timeout", + "long" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/video-encoder-utils.js" + ], + [ + "variant", + "?av1" + ], + [ + "variant", + "?av1_444_high" + ], + [ + "variant", + "?vp8" + ], + [ + "variant", + "?vp9_p0" + ], + [ + "variant", + "?vp9_p2" + ], + [ + "variant", + "?vp9_444_p1" + ], + [ + "variant", + "?vp9_444_p3" + ], + [ + "variant", + "?h264_avc" + ], + [ + "variant", + "?h264_annexb" + ], + [ + "variant", + "?h265_hevc" + ], + [ + "variant", + "?h265_annexb" ] - } - ] + ], + "timeout": "long" + } ], - "origin.sub.any.js": [ - "bf7901eeddee7c28413031198c4f138b7a23d6ea", - [ - "wasm/webapi/origin.sub.any.html", - { - "script_metadata": [ - [ - "global", - "window,worker" - ] + [ + "webcodecs/full-cycle-test.https.any.html?vp9_444_p3", + { + "script_metadata": [ + [ + "timeout", + "long" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/video-encoder-utils.js" + ], + [ + "variant", + "?av1" + ], + [ + "variant", + "?av1_444_high" + ], + [ + "variant", + "?vp8" + ], + [ + "variant", + "?vp9_p0" + ], + [ + "variant", + "?vp9_p2" + ], + [ + "variant", + "?vp9_444_p1" + ], + [ + "variant", + "?vp9_444_p3" + ], + [ + "variant", + "?h264_avc" + ], + [ + "variant", + "?h264_annexb" + ], + [ + "variant", + "?h265_hevc" + ], + [ + "variant", + "?h265_annexb" ] - } - ], - [ - "wasm/webapi/origin.sub.any.serviceworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker" - ] + ], + "timeout": "long" + } + ], + [ + "webcodecs/full-cycle-test.https.any.html?vp9_p0", + { + "script_metadata": [ + [ + "timeout", + "long" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/video-encoder-utils.js" + ], + [ + "variant", + "?av1" + ], + [ + "variant", + "?av1_444_high" + ], + [ + "variant", + "?vp8" + ], + [ + "variant", + "?vp9_p0" + ], + [ + "variant", + "?vp9_p2" + ], + [ + "variant", + "?vp9_444_p1" + ], + [ + "variant", + "?vp9_444_p3" + ], + [ + "variant", + "?h264_avc" + ], + [ + "variant", + "?h264_annexb" + ], + [ + "variant", + "?h265_hevc" + ], + [ + "variant", + "?h265_annexb" ] - } - ], - [ - "wasm/webapi/origin.sub.any.sharedworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker" - ] + ], + "timeout": "long" + } + ], + [ + "webcodecs/full-cycle-test.https.any.html?vp9_p2", + { + "script_metadata": [ + [ + "timeout", + "long" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/video-encoder-utils.js" + ], + [ + "variant", + "?av1" + ], + [ + "variant", + "?av1_444_high" + ], + [ + "variant", + "?vp8" + ], + [ + "variant", + "?vp9_p0" + ], + [ + "variant", + "?vp9_p2" + ], + [ + "variant", + "?vp9_444_p1" + ], + [ + "variant", + "?vp9_444_p3" + ], + [ + "variant", + "?h264_avc" + ], + [ + "variant", + "?h264_annexb" + ], + [ + "variant", + "?h265_hevc" + ], + [ + "variant", + "?h265_annexb" ] - } - ], - [ - "wasm/webapi/origin.sub.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,worker" - ] + ], + "timeout": "long" + } + ], + [ + "webcodecs/full-cycle-test.https.any.worker.html?av1", + { + "script_metadata": [ + [ + "timeout", + "long" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/video-encoder-utils.js" + ], + [ + "variant", + "?av1" + ], + [ + "variant", + "?av1_444_high" + ], + [ + "variant", + "?vp8" + ], + [ + "variant", + "?vp9_p0" + ], + [ + "variant", + "?vp9_p2" + ], + [ + "variant", + "?vp9_444_p1" + ], + [ + "variant", + "?vp9_444_p3" + ], + [ + "variant", + "?h264_avc" + ], + [ + "variant", + "?h264_annexb" + ], + [ + "variant", + "?h265_hevc" + ], + [ + "variant", + "?h265_annexb" ] - } - ] + ], + "timeout": "long" + } ], - "rejected-arg.any.js": [ - "49018db5e89eb0fa49bf9b6fa1017c9bfea7c3cd", - [ - "wasm/webapi/rejected-arg.any.html", - { - "script_metadata": [ - [ - "global", - "window,worker" - ] + [ + "webcodecs/full-cycle-test.https.any.worker.html?av1_444_high", + { + "script_metadata": [ + [ + "timeout", + "long" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/video-encoder-utils.js" + ], + [ + "variant", + "?av1" + ], + [ + "variant", + "?av1_444_high" + ], + [ + "variant", + "?vp8" + ], + [ + "variant", + "?vp9_p0" + ], + [ + "variant", + "?vp9_p2" + ], + [ + "variant", + "?vp9_444_p1" + ], + [ + "variant", + "?vp9_444_p3" + ], + [ + "variant", + "?h264_avc" + ], + [ + "variant", + "?h264_annexb" + ], + [ + "variant", + "?h265_hevc" + ], + [ + "variant", + "?h265_annexb" ] - } - ], - [ - "wasm/webapi/rejected-arg.any.serviceworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker" - ] + ], + "timeout": "long" + } + ], + [ + "webcodecs/full-cycle-test.https.any.worker.html?h264_annexb", + { + "script_metadata": [ + [ + "timeout", + "long" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/video-encoder-utils.js" + ], + [ + "variant", + "?av1" + ], + [ + "variant", + "?av1_444_high" + ], + [ + "variant", + "?vp8" + ], + [ + "variant", + "?vp9_p0" + ], + [ + "variant", + "?vp9_p2" + ], + [ + "variant", + "?vp9_444_p1" + ], + [ + "variant", + "?vp9_444_p3" + ], + [ + "variant", + "?h264_avc" + ], + [ + "variant", + "?h264_annexb" + ], + [ + "variant", + "?h265_hevc" + ], + [ + "variant", + "?h265_annexb" ] - } - ], - [ - "wasm/webapi/rejected-arg.any.sharedworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker" - ] + ], + "timeout": "long" + } + ], + [ + "webcodecs/full-cycle-test.https.any.worker.html?h264_avc", + { + "script_metadata": [ + [ + "timeout", + "long" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/video-encoder-utils.js" + ], + [ + "variant", + "?av1" + ], + [ + "variant", + "?av1_444_high" + ], + [ + "variant", + "?vp8" + ], + [ + "variant", + "?vp9_p0" + ], + [ + "variant", + "?vp9_p2" + ], + [ + "variant", + "?vp9_444_p1" + ], + [ + "variant", + "?vp9_444_p3" + ], + [ + "variant", + "?h264_avc" + ], + [ + "variant", + "?h264_annexb" + ], + [ + "variant", + "?h265_hevc" + ], + [ + "variant", + "?h265_annexb" ] - } - ], - [ - "wasm/webapi/rejected-arg.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,worker" - ] + ], + "timeout": "long" + } + ], + [ + "webcodecs/full-cycle-test.https.any.worker.html?h265_annexb", + { + "script_metadata": [ + [ + "timeout", + "long" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/video-encoder-utils.js" + ], + [ + "variant", + "?av1" + ], + [ + "variant", + "?av1_444_high" + ], + [ + "variant", + "?vp8" + ], + [ + "variant", + "?vp9_p0" + ], + [ + "variant", + "?vp9_p2" + ], + [ + "variant", + "?vp9_444_p1" + ], + [ + "variant", + "?vp9_444_p3" + ], + [ + "variant", + "?h264_avc" + ], + [ + "variant", + "?h264_annexb" + ], + [ + "variant", + "?h265_hevc" + ], + [ + "variant", + "?h265_annexb" ] - } - ] + ], + "timeout": "long" + } ], - "status.any.js": [ - "f3859646cc54b9ebd3106f2614828f956cd95205", - [ - "wasm/webapi/status.any.html", - { - "script_metadata": [ - [ - "global", - "window,worker" - ] + [ + "webcodecs/full-cycle-test.https.any.worker.html?h265_hevc", + { + "script_metadata": [ + [ + "timeout", + "long" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/video-encoder-utils.js" + ], + [ + "variant", + "?av1" + ], + [ + "variant", + "?av1_444_high" + ], + [ + "variant", + "?vp8" + ], + [ + "variant", + "?vp9_p0" + ], + [ + "variant", + "?vp9_p2" + ], + [ + "variant", + "?vp9_444_p1" + ], + [ + "variant", + "?vp9_444_p3" + ], + [ + "variant", + "?h264_avc" + ], + [ + "variant", + "?h264_annexb" + ], + [ + "variant", + "?h265_hevc" + ], + [ + "variant", + "?h265_annexb" ] - } - ], - [ - "wasm/webapi/status.any.serviceworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker" - ] + ], + "timeout": "long" + } + ], + [ + "webcodecs/full-cycle-test.https.any.worker.html?vp8", + { + "script_metadata": [ + [ + "timeout", + "long" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/video-encoder-utils.js" + ], + [ + "variant", + "?av1" + ], + [ + "variant", + "?av1_444_high" + ], + [ + "variant", + "?vp8" + ], + [ + "variant", + "?vp9_p0" + ], + [ + "variant", + "?vp9_p2" + ], + [ + "variant", + "?vp9_444_p1" + ], + [ + "variant", + "?vp9_444_p3" + ], + [ + "variant", + "?h264_avc" + ], + [ + "variant", + "?h264_annexb" + ], + [ + "variant", + "?h265_hevc" + ], + [ + "variant", + "?h265_annexb" ] - } - ], - [ - "wasm/webapi/status.any.sharedworker.html", - { - "script_metadata": [ - [ - "global", - "window,worker" - ] + ], + "timeout": "long" + } + ], + [ + "webcodecs/full-cycle-test.https.any.worker.html?vp9_444_p1", + { + "script_metadata": [ + [ + "timeout", + "long" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/video-encoder-utils.js" + ], + [ + "variant", + "?av1" + ], + [ + "variant", + "?av1_444_high" + ], + [ + "variant", + "?vp8" + ], + [ + "variant", + "?vp9_p0" + ], + [ + "variant", + "?vp9_p2" + ], + [ + "variant", + "?vp9_444_p1" + ], + [ + "variant", + "?vp9_444_p3" + ], + [ + "variant", + "?h264_avc" + ], + [ + "variant", + "?h264_annexb" + ], + [ + "variant", + "?h265_hevc" + ], + [ + "variant", + "?h265_annexb" ] - } - ], - [ - "wasm/webapi/status.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,worker" - ] + ], + "timeout": "long" + } + ], + [ + "webcodecs/full-cycle-test.https.any.worker.html?vp9_444_p3", + { + "script_metadata": [ + [ + "timeout", + "long" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/video-encoder-utils.js" + ], + [ + "variant", + "?av1" + ], + [ + "variant", + "?av1_444_high" + ], + [ + "variant", + "?vp8" + ], + [ + "variant", + "?vp9_p0" + ], + [ + "variant", + "?vp9_p2" + ], + [ + "variant", + "?vp9_444_p1" + ], + [ + "variant", + "?vp9_444_p3" + ], + [ + "variant", + "?h264_avc" + ], + [ + "variant", + "?h264_annexb" + ], + [ + "variant", + "?h265_hevc" + ], + [ + "variant", + "?h265_annexb" ] - } - ] + ], + "timeout": "long" + } ], - "wasm_stream_compile_test.html": [ - "790410e425befd2d4e74a75202cf738a1c91b8ed", - [ - null, - {} - ] + [ + "webcodecs/full-cycle-test.https.any.worker.html?vp9_p0", + { + "script_metadata": [ + [ + "timeout", + "long" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/video-encoder-utils.js" + ], + [ + "variant", + "?av1" + ], + [ + "variant", + "?av1_444_high" + ], + [ + "variant", + "?vp8" + ], + [ + "variant", + "?vp9_p0" + ], + [ + "variant", + "?vp9_p2" + ], + [ + "variant", + "?vp9_444_p1" + ], + [ + "variant", + "?vp9_444_p3" + ], + [ + "variant", + "?h264_avc" + ], + [ + "variant", + "?h264_annexb" + ], + [ + "variant", + "?h265_hevc" + ], + [ + "variant", + "?h265_annexb" + ] + ], + "timeout": "long" + } ], - "wasm_stream_instantiate_test.html": [ - "f39f6504953f5e4cc9b7f6905331237e84b5cdc2", - [ - null, - {} - ] - ] - } - }, - "web-animations": { - "animation-model": { - "animation-types": { - "accumulation-per-property-001.html": [ - "a3fd115563b3c934bf3f75fad0eabde1eae7e1e9", - [ - null, - {} - ] - ], - "accumulation-per-property-002.html": [ - "5cf411edf6ed3b052fab1f76442daca66433cec0", - [ - null, - {} - ] - ], - "addition-per-property-001.html": [ - "2fbec2c4cd0a4fdc78d3c08486d34780e483e7d9", - [ - null, - {} - ] - ], - "addition-per-property-002.html": [ - "3b1c40e3c730b1428a2d4f1e4c8d70f8574c7432", - [ - null, - {} - ] - ], - "discrete.html": [ - "76f42bc7a409de96a737c6e7a3f411b9d6bdd9d1", - [ - null, - {} - ] - ], - "display.tentative.html": [ - "6b28dcd9648d3ad3034474f89aa06869b3d58e20", - [ - null, - {} - ] - ], - "interpolation-per-property-001.html": [ - "97f28224733511e37bf83bc7e653a2b4ff7f88b6", - [ - null, - {} - ] - ], - "interpolation-per-property-002.html": [ - "9ccc613cfc64dff7e4c4d5e9edf5963d3282da40", - [ - null, - {} - ] - ], - "scrollbar-interpolation.html": [ - "bc02dd00b97ba84f55e132069833f16827164525", - [ - null, - {} - ] - ], - "visibility.html": [ - "f5a60b4e2c7bb3c70a45353c7734dd0dff51d780", - [ - null, - {} - ] - ] - }, - "combining-effects": { - "applying-interpolated-transform.html": [ - "c101b5f0cfcf133e87da1323a5cffa71b2d5f4f8", - [ - null, - {} - ] - ], - "applying-the-composited-result.html": [ - "336115e5779837241b4316bff5e2fec7e857e518", - [ - null, - {} - ] - ], - "effect-composition.html": [ - "70a8cdd92c2c89d7a19611fe0bed429728f7c536", - [ - null, - {} - ] - ] - }, - "keyframe-effects": { - "computed-keyframes-shorthands.html": [ - "ff62a23bce00900ddaac1a5249524bc2cc827968", - [ - null, - {} - ] - ], - "effect-value-context-filling.html": [ - "fcb7f131266c47bb225aa78458ba96b043a47e41", - [ - null, - {} - ] - ], - "effect-value-context.html": [ - "3730a02098ad317ee5bee5018f2a672f81276c3a", - [ - null, - {} - ] - ], - "effect-value-interval-distance.html": [ - "6bf5d8cd468b89ca729bce9e51b99bb44ea5549e", - [ - null, - {} - ] - ], - "effect-value-iteration-composite-operation.html": [ - "abfda86f4d1fbc620efcf3c5ddc3148be057096d", - [ - null, - {} - ] - ], - "effect-value-overlapping-keyframes.html": [ - "a2a0683921c9db5ced6bdd03ff0064414714e771", - [ - null, - {} - ] - ], - "effect-value-replaced-animations.html": [ - "d40a01fdd2a8c13649383d9cc1a8483ce84be902", - [ - null, - {} - ] - ], - "effect-value-transformed-distance.html": [ - "a33d6d4f24676356b59b6b431968d8486df50615", - [ - null, - {} - ] - ], - "keyframe-exceptions.html": [ - "4cb4be76a8a2d5b2db51408046485c74afa4827b", - [ - null, - {} - ] - ] - } - }, - "idlharness.window.js": [ - "aaf6f58e7bd2fae48f5f94bc6fa127b4d4653c51", [ - "web-animations/idlharness.window.html", + "webcodecs/full-cycle-test.https.any.worker.html?vp9_p2", + { + "script_metadata": [ + [ + "timeout", + "long" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/video-encoder-utils.js" + ], + [ + "variant", + "?av1" + ], + [ + "variant", + "?av1_444_high" + ], + [ + "variant", + "?vp8" + ], + [ + "variant", + "?vp9_p0" + ], + [ + "variant", + "?vp9_p2" + ], + [ + "variant", + "?vp9_444_p1" + ], + [ + "variant", + "?vp9_444_p3" + ], + [ + "variant", + "?h264_avc" + ], + [ + "variant", + "?h264_annexb" + ], + [ + "variant", + "?h265_hevc" + ], + [ + "variant", + "?h265_annexb" + ] + ], + "timeout": "long" + } + ] + ], + "idlharness.https.any.js": [ + "f1ed92a15983192b02a11e118d5d0b78b9bcb579", + [ + "webcodecs/idlharness.https.any.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/resources/WebIDLParser.js" + ], + [ + "script", + "/resources/idlharness.js" + ], + [ + "script", + "./utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } + ], + [ + "webcodecs/idlharness.https.any.worker.html", { "script_metadata": [ + [ + "global", + "window,dedicatedworker" + ], [ "script", "/resources/WebIDLParser.js" @@ -739419,6 +772004,10 @@ "script", "/resources/idlharness.js" ], + [ + "script", + "./utils.js" + ], [ "timeout", "long" @@ -739428,2462 +772017,4946 @@ } ] ], - "interfaces": { - "Animatable": { - "animate-no-browsing-context.html": [ - "61a7502a988f96437574bc2949a8978d326003e9", - [ - null, - {} - ] - ], - "animate.html": [ - "28e803d6905705ad7167b99060e1c06db21dd384", - [ - null, - {} - ] - ], - "getAnimations-iframe.html": [ - "1851878c418bb0b8654bcb5e0a78c686a13d51a5", - [ - null, - {} - ] - ], - "getAnimations.html": [ - "fd8719299dbc0d2233f8f16bc08cfa3c20684746", - [ - null, - {} - ] - ] - }, - "Animation": { - "cancel.html": [ - "a7da9755dd5b647e0d6f1a8c0d2cf8cc115ee64d", - [ - null, - {} - ] - ], - "commitStyles.html": [ - "9a7dbea8b8649bb4580e60fef1e1530a84f2b13f", - [ - null, - {} - ] - ], - "constructor.html": [ - "e964c10ee44ea2d3860e64ddd22853f9fdecad3d", - [ - null, - {} - ] - ], - "effect.html": [ - "cb8bc09c366a4f53b44d804ac3f7794f175677f4", - [ - null, - {} - ] - ], - "finished.html": [ - "bee4fd8fb7a63137f45681dccc3b53d3570eefc8", - [ - null, - {} - ] - ], - "id.html": [ - "5b9586bfaf962e73dd418212e407e6d529ecdfd6", - [ - null, - {} - ] - ], - "oncancel.html": [ - "d5391196092c9671c2c22c1c035bc173bbef7b4f", - [ - null, - {} - ] - ], - "onfinish.html": [ - "b58fea0362f412af753b87dbf55c6ee226a32736", - [ - null, - {} - ] - ], - "onremove.html": [ - "1a41a3d21c1768cff4289e3cb497937ac4a81f43", - [ - null, - {} - ] - ], - "pause.html": [ - "1d1bd5fd89aedd6055cd2a3ab0c2c59fcb353a7e", - [ - null, - {} - ] - ], - "pending.html": [ - "c200f9e97739e802488d416b79fc5f6084655c6c", - [ - null, - {} - ] - ], - "persist.html": [ - "c18993cbc44427af1b3ceeeedb4dcbac42d7957c", - [ - null, - {} - ] - ], - "play.html": [ - "6c5d604b1e4c88bfffe03238e059dc2b97c6947d", - [ - null, - {} - ] - ], - "ready.html": [ - "462e2a0484451e4cff1f0ffce84d2ea3bd7b456a", - [ - null, - {} - ] - ], - "startTime.html": [ - "61f76955a398d6286ce08891145efd1f345f63d5", - [ - null, - {} - ] - ], - "style-change-events.html": [ - "0ec21657e3c965acc82a254c60570ea43f77dc00", - [ - null, - {} - ] - ] - }, - "AnimationEffect": { - "getComputedTiming.html": [ - "10bd193361e03210c6ac3a976919f0b189db0136", - [ - null, - {} - ] - ], - "updateTiming.html": [ - "6a340c0bf47a298d3c04340e91d8026680aa9ba1", - [ - null, - {} - ] - ] - }, - "AnimationPlaybackEvent": { - "constructor.html": [ - "1c40a3fb211c1bd3e33e6c6c6325b1d25e3b981d", - [ - null, - {} - ] - ] - }, - "Document": { - "timeline.html": [ - "b8b4d74d5e536a111449fd0268424ac06a151b95", - [ - null, - {} - ] - ] - }, - "DocumentOrShadowRoot": { - "getAnimations.html": [ - "9bcc042a8fed318be44d09fd2436cd97ba9c4086", - [ - null, - {} - ] - ] - }, - "DocumentTimeline": { - "constructor.html": [ - "ca0997ac8f9012b7d019760be97e09fa0f837179", - [ - null, - {} - ] - ], - "style-change-events.html": [ - "c1607e6fb92943c580802025e4a4cc617a747144", - [ - null, - {} - ] - ] - }, - "KeyframeEffect": { - "composite.html": [ - "bcca2cad243abb3fe4d43dc2052e08af3e58499d", - [ - null, - {} - ] - ], - "constructor.html": [ - "f9d552e63ec55aefaab282d7dc9a352cc00fb263", - [ - null, - {} - ] - ], - "copy-constructor.html": [ - "e3bc0db00a7e84b1b0116b78c86905fc70d076f5", - [ - null, - {} - ] - ], - "getKeyframes.html": [ - "1f8d267e4a660c80b9820ff516079dbd71042f94", - [ - null, - {} - ] - ], - "iterationComposite.html": [ - "bbb8ee2a3261fcb98cda7a83056467bc0b20dac6", - [ - null, - {} - ] - ], - "processing-a-keyframes-argument-001.html": [ - "271a47b3011fd623a302f70c9312e34fe2628f1b", - [ - null, - {} + "image-decoder-image-orientation-none.https.html": [ + "2e555dbe21d45f6ab19fc79c9dcc96d42787ad63", + [ + null, + {} + ] + ], + "image-decoder.crossOriginIsolated.https.any.js": [ + "f10cf7a0670a2ea940311291e48f1be967245425", + [ + "webcodecs/image-decoder.crossOriginIsolated.https.any.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/image-decoder-utils.js" + ] ] - ], - "processing-a-keyframes-argument-002.html": [ - "8620f883f98f17a71adcbd7364c6ae942d830a45", - [ - null, - {} + } + ], + [ + "webcodecs/image-decoder.crossOriginIsolated.https.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/image-decoder-utils.js" + ] ] - ], - "setKeyframes.html": [ - "a5c81a29bd9d975c93e652edb614f6dbb1570e3b", - [ - null, - {} + } + ] + ], + "image-decoder.https.any.js": [ + "78eea763aaae2d1801946673c31ccdace0011a2e", + [ + "webcodecs/image-decoder.https.any.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/image-decoder-utils.js" + ] ] - ], - "style-change-events.html": [ - "eecf170cd902a3160ade8b4a95fb8ef16851f656", - [ - null, - {} + } + ], + [ + "webcodecs/image-decoder.https.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/image-decoder-utils.js" + ] ] - ], - "target.html": [ - "58d17b98d51039bcedf8bc0ea4bdeea2bdfc7386", - [ - null, - {} + } + ] + ], + "per-frame-qp-encoding.https.any.js": [ + "8ec96c3f7035d4d02953dea5a2185fe63844df9a", + [ + "webcodecs/per-frame-qp-encoding.https.any.html?av1", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/video-encoder-utils.js" + ], + [ + "variant", + "?av1" + ], + [ + "variant", + "?vp9_p0" + ], + [ + "variant", + "?vp9_p2" + ] ] - ] - } - }, - "responsive": { - "assorted-lengths.html": [ - "50e01f766ce0b63d2e4077223f87ede7b593abf7", - [ - null, - {} - ] - ], - "backgroundPosition.html": [ - "cd6c6991a361bfecd70bdecbea946570153b68b7", - [ - null, - {} - ] - ], - "backgroundSize.html": [ - "1e9ccf96a1a2bc4580c20e665fed138a0db2ba4a", - [ - null, - {} - ] - ], - "baselineShift.html": [ - "4ccaaf33ac6faeaf3bc4aefefb15e744c66f9192", - [ - null, - {} - ] - ], - "borderImageWidth.html": [ - "4b832889bd6ba3ad86e05e55677cb6dbc4321126", - [ - null, - {} - ] - ], - "borderRadius.html": [ - "c59696ec90555697b74bbbf58f2d63317c7d9f54", - [ - null, - {} - ] - ], - "borderWidth.html": [ - "090d9a185a5209a28b5831bb93bf1e675aa58380", - [ - null, - {} - ] - ], - "boxShadow.html": [ - "bd1911132dd20b8d8efbc40b0d91ab0e9777d093", - [ - null, - {} - ] - ], - "clip.html": [ - "316e977576a96f36524beba4cf41d614b2a098f4", - [ - null, - {} - ] - ], - "columnCount.html": [ - "c92d5cbf8fb2ae91fb40f15982360adb8ce88725", - [ - null, - {} - ] - ], - "columnGap.html": [ - "43d44152cb510e647c4ab6e11f48785c7e4c0eac", - [ - null, - {} - ] - ], - "d.html": [ - "55c6c23a0e305e8d439b4f9230acb84657463e37", - [ - null, - {} - ] + } ], - "font-size-adjust.html": [ - "282ec7fedebbdac49407e6a928f20642aa202157", - [ - null, - {} - ] + [ + "webcodecs/per-frame-qp-encoding.https.any.html?vp9_p0", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/video-encoder-utils.js" + ], + [ + "variant", + "?av1" + ], + [ + "variant", + "?vp9_p0" + ], + [ + "variant", + "?vp9_p2" + ] + ] + } ], - "fontSize.html": [ - "d65aeacd46b20dc9a2be539e0bba7ac513d2d6ff", - [ - null, - {} - ] + [ + "webcodecs/per-frame-qp-encoding.https.any.html?vp9_p2", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/video-encoder-utils.js" + ], + [ + "variant", + "?av1" + ], + [ + "variant", + "?vp9_p0" + ], + [ + "variant", + "?vp9_p2" + ] + ] + } ], - "fontWeight.html": [ - "e8fbbae0e7e4c7cf119c5bdee2853b981afc1071", - [ - null, - {} - ] + [ + "webcodecs/per-frame-qp-encoding.https.any.worker.html?av1", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/video-encoder-utils.js" + ], + [ + "variant", + "?av1" + ], + [ + "variant", + "?vp9_p0" + ], + [ + "variant", + "?vp9_p2" + ] + ] + } ], - "lineHeight.html": [ - "03d45e54c168e5d9b2e6bf39a8d0b40793b73a3d", - [ - null, - {} - ] + [ + "webcodecs/per-frame-qp-encoding.https.any.worker.html?vp9_p0", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/video-encoder-utils.js" + ], + [ + "variant", + "?av1" + ], + [ + "variant", + "?vp9_p0" + ], + [ + "variant", + "?vp9_p2" + ] + ] + } ], - "minHeight.html": [ - "07474bc3f44e067b7c5097a3c30f96fd39842e45", - [ - null, - {} - ] + [ + "webcodecs/per-frame-qp-encoding.https.any.worker.html?vp9_p2", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/video-encoder-utils.js" + ], + [ + "variant", + "?av1" + ], + [ + "variant", + "?vp9_p0" + ], + [ + "variant", + "?vp9_p2" + ] + ] + } + ] + ], + "reconfiguring-encoder.https.any.js": [ + "cb0f55efab54940a1eba270daea5d623393aa767", + [ + "webcodecs/reconfiguring-encoder.https.any.html?av1", + { + "script_metadata": [ + [ + "timeout", + "long" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/video-encoder-utils.js" + ], + [ + "variant", + "?av1" + ], + [ + "variant", + "?vp8" + ], + [ + "variant", + "?vp9_p0" + ], + [ + "variant", + "?vp9_p2" + ], + [ + "variant", + "?h264_avc" + ], + [ + "variant", + "?h264_annexb" + ] + ], + "timeout": "long" + } ], - "offset-path.html": [ - "eff8ede60f8f767450c07c56759e674591112e29", - [ - null, - {} - ] + [ + "webcodecs/reconfiguring-encoder.https.any.html?h264_annexb", + { + "script_metadata": [ + [ + "timeout", + "long" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/video-encoder-utils.js" + ], + [ + "variant", + "?av1" + ], + [ + "variant", + "?vp8" + ], + [ + "variant", + "?vp9_p0" + ], + [ + "variant", + "?vp9_p2" + ], + [ + "variant", + "?h264_avc" + ], + [ + "variant", + "?h264_annexb" + ] + ], + "timeout": "long" + } ], - "offsetDistance.html": [ - "d56da9c76727afcafc802c0d8fb218da0070b516", - [ - null, - {} - ] + [ + "webcodecs/reconfiguring-encoder.https.any.html?h264_avc", + { + "script_metadata": [ + [ + "timeout", + "long" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/video-encoder-utils.js" + ], + [ + "variant", + "?av1" + ], + [ + "variant", + "?vp8" + ], + [ + "variant", + "?vp9_p0" + ], + [ + "variant", + "?vp9_p2" + ], + [ + "variant", + "?h264_avc" + ], + [ + "variant", + "?h264_annexb" + ] + ], + "timeout": "long" + } ], - "offsetRotate.html": [ - "f0957e15c5de0718d49df4be5adb401de54cb9ad", - [ - null, - {} - ] + [ + "webcodecs/reconfiguring-encoder.https.any.html?vp8", + { + "script_metadata": [ + [ + "timeout", + "long" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/video-encoder-utils.js" + ], + [ + "variant", + "?av1" + ], + [ + "variant", + "?vp8" + ], + [ + "variant", + "?vp9_p0" + ], + [ + "variant", + "?vp9_p2" + ], + [ + "variant", + "?h264_avc" + ], + [ + "variant", + "?h264_annexb" + ] + ], + "timeout": "long" + } ], - "opacity.html": [ - "0bedfc879a5a608400db3c0957375f7d0a805fc4", - [ - null, - {} - ] + [ + "webcodecs/reconfiguring-encoder.https.any.html?vp9_p0", + { + "script_metadata": [ + [ + "timeout", + "long" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/video-encoder-utils.js" + ], + [ + "variant", + "?av1" + ], + [ + "variant", + "?vp8" + ], + [ + "variant", + "?vp9_p0" + ], + [ + "variant", + "?vp9_p2" + ], + [ + "variant", + "?h264_avc" + ], + [ + "variant", + "?h264_annexb" + ] + ], + "timeout": "long" + } ], - "perspective.html": [ - "f32b4dbad326e780355b1530ac41496cd8602b27", - [ - null, - {} - ] + [ + "webcodecs/reconfiguring-encoder.https.any.html?vp9_p2", + { + "script_metadata": [ + [ + "timeout", + "long" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/video-encoder-utils.js" + ], + [ + "variant", + "?av1" + ], + [ + "variant", + "?vp8" + ], + [ + "variant", + "?vp9_p0" + ], + [ + "variant", + "?vp9_p2" + ], + [ + "variant", + "?h264_avc" + ], + [ + "variant", + "?h264_annexb" + ] + ], + "timeout": "long" + } ], - "rotate.html": [ - "b0e42132006a128b482da46c29e301d9fac2ba3a", - [ - null, - {} - ] + [ + "webcodecs/reconfiguring-encoder.https.any.worker.html?av1", + { + "script_metadata": [ + [ + "timeout", + "long" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/video-encoder-utils.js" + ], + [ + "variant", + "?av1" + ], + [ + "variant", + "?vp8" + ], + [ + "variant", + "?vp9_p0" + ], + [ + "variant", + "?vp9_p2" + ], + [ + "variant", + "?h264_avc" + ], + [ + "variant", + "?h264_annexb" + ] + ], + "timeout": "long" + } ], - "rowGap.html": [ - "b7dae62f238fb39d886c71bb8df616bcbdb30d8b", - [ - null, - {} - ] + [ + "webcodecs/reconfiguring-encoder.https.any.worker.html?h264_annexb", + { + "script_metadata": [ + [ + "timeout", + "long" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/video-encoder-utils.js" + ], + [ + "variant", + "?av1" + ], + [ + "variant", + "?vp8" + ], + [ + "variant", + "?vp9_p0" + ], + [ + "variant", + "?vp9_p2" + ], + [ + "variant", + "?h264_avc" + ], + [ + "variant", + "?h264_annexb" + ] + ], + "timeout": "long" + } ], - "shapeMargin.html": [ - "02d6151ad0f7b87e82d8ffc7e7284f5bb8e8ad1b", - [ - null, - {} - ] + [ + "webcodecs/reconfiguring-encoder.https.any.worker.html?h264_avc", + { + "script_metadata": [ + [ + "timeout", + "long" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/video-encoder-utils.js" + ], + [ + "variant", + "?av1" + ], + [ + "variant", + "?vp8" + ], + [ + "variant", + "?vp9_p0" + ], + [ + "variant", + "?vp9_p2" + ], + [ + "variant", + "?h264_avc" + ], + [ + "variant", + "?h264_annexb" + ] + ], + "timeout": "long" + } ], - "shapeOutside.html": [ - "2a54576a335cc2be2bed17d995d59b180e84f08a", - [ - null, - {} - ] + [ + "webcodecs/reconfiguring-encoder.https.any.worker.html?vp8", + { + "script_metadata": [ + [ + "timeout", + "long" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/video-encoder-utils.js" + ], + [ + "variant", + "?av1" + ], + [ + "variant", + "?vp8" + ], + [ + "variant", + "?vp9_p0" + ], + [ + "variant", + "?vp9_p2" + ], + [ + "variant", + "?h264_avc" + ], + [ + "variant", + "?h264_annexb" + ] + ], + "timeout": "long" + } ], - "strokeDasharray.html": [ - "a1ccb30e907a22eb21f71c6570c7ff28a391e280", - [ - null, - {} - ] + [ + "webcodecs/reconfiguring-encoder.https.any.worker.html?vp9_p0", + { + "script_metadata": [ + [ + "timeout", + "long" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/video-encoder-utils.js" + ], + [ + "variant", + "?av1" + ], + [ + "variant", + "?vp8" + ], + [ + "variant", + "?vp9_p0" + ], + [ + "variant", + "?vp9_p2" + ], + [ + "variant", + "?h264_avc" + ], + [ + "variant", + "?h264_annexb" + ] + ], + "timeout": "long" + } ], - "text-size-adjust.html": [ - "203b067a779c88c5c5e5ec3f538d5d056ebf80be", - [ - null, - {} - ] + [ + "webcodecs/reconfiguring-encoder.https.any.worker.html?vp9_p2", + { + "script_metadata": [ + [ + "timeout", + "long" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/video-encoder-utils.js" + ], + [ + "variant", + "?av1" + ], + [ + "variant", + "?vp8" + ], + [ + "variant", + "?vp9_p0" + ], + [ + "variant", + "?vp9_p2" + ], + [ + "variant", + "?h264_avc" + ], + [ + "variant", + "?h264_annexb" + ] + ], + "timeout": "long" + } + ] + ], + "temporal-svc-encoding.https.any.js": [ + "4d5da00cfe99ac4519f92bf53fc0c94309c44a49", + [ + "webcodecs/temporal-svc-encoding.https.any.html?av1", + { + "script_metadata": [ + [ + "timeout", + "long" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/video-encoder-utils.js" + ], + [ + "variant", + "?av1" + ], + [ + "variant", + "?vp8" + ], + [ + "variant", + "?vp9" + ], + [ + "variant", + "?h264" + ] + ], + "timeout": "long" + } ], - "textIndent.html": [ - "430417d28bd6f5e667f3b5a75b3c5ff20e596ce1", - [ - null, - {} - ] + [ + "webcodecs/temporal-svc-encoding.https.any.html?h264", + { + "script_metadata": [ + [ + "timeout", + "long" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/video-encoder-utils.js" + ], + [ + "variant", + "?av1" + ], + [ + "variant", + "?vp8" + ], + [ + "variant", + "?vp9" + ], + [ + "variant", + "?h264" + ] + ], + "timeout": "long" + } ], - "to-color-change.html": [ - "6c3fcccf62c46512f671deddab146a7f316089f9", - [ - null, - {} - ] + [ + "webcodecs/temporal-svc-encoding.https.any.html?vp8", + { + "script_metadata": [ + [ + "timeout", + "long" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/video-encoder-utils.js" + ], + [ + "variant", + "?av1" + ], + [ + "variant", + "?vp8" + ], + [ + "variant", + "?vp9" + ], + [ + "variant", + "?h264" + ] + ], + "timeout": "long" + } ], - "to-inherited-change.html": [ - "96ef5d24e1cc000d95920302506405fe2ac3d2c4", - [ - null, - {} - ] + [ + "webcodecs/temporal-svc-encoding.https.any.html?vp9", + { + "script_metadata": [ + [ + "timeout", + "long" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/video-encoder-utils.js" + ], + [ + "variant", + "?av1" + ], + [ + "variant", + "?vp8" + ], + [ + "variant", + "?vp9" + ], + [ + "variant", + "?h264" + ] + ], + "timeout": "long" + } ], - "to-style-change.html": [ - "8f4bf4c8b51aa528560adc435f214a06434f7254", - [ - null, - {} - ] + [ + "webcodecs/temporal-svc-encoding.https.any.worker.html?av1", + { + "script_metadata": [ + [ + "timeout", + "long" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/video-encoder-utils.js" + ], + [ + "variant", + "?av1" + ], + [ + "variant", + "?vp8" + ], + [ + "variant", + "?vp9" + ], + [ + "variant", + "?h264" + ] + ], + "timeout": "long" + } ], - "transform.html": [ - "d57f8b136ac56543906355329b205452d7f01ffd", - [ - null, - {} - ] + [ + "webcodecs/temporal-svc-encoding.https.any.worker.html?h264", + { + "script_metadata": [ + [ + "timeout", + "long" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/video-encoder-utils.js" + ], + [ + "variant", + "?av1" + ], + [ + "variant", + "?vp8" + ], + [ + "variant", + "?vp9" + ], + [ + "variant", + "?h264" + ] + ], + "timeout": "long" + } ], - "translate.html": [ - "8df4d8577de2889e3f2a5ef52c25eeaccc1069a5", - [ - null, - {} - ] + [ + "webcodecs/temporal-svc-encoding.https.any.worker.html?vp8", + { + "script_metadata": [ + [ + "timeout", + "long" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/video-encoder-utils.js" + ], + [ + "variant", + "?av1" + ], + [ + "variant", + "?vp8" + ], + [ + "variant", + "?vp9" + ], + [ + "variant", + "?h264" + ] + ], + "timeout": "long" + } ], - "verticalAlign.html": [ - "af81fa481b62b08e2edb1d6478602f3fe22c0654", - [ - null, - {} - ] + [ + "webcodecs/temporal-svc-encoding.https.any.worker.html?vp9", + { + "script_metadata": [ + [ + "timeout", + "long" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/video-encoder-utils.js" + ], + [ + "variant", + "?av1" + ], + [ + "variant", + "?vp8" + ], + [ + "variant", + "?vp9" + ], + [ + "variant", + "?h264" + ] + ], + "timeout": "long" + } ] - }, - "timing-model": { - "animation-effects": { - "active-time.html": [ - "a2feb2323c3308d8e9cd4aa99a8bd0f67940f821", - [ - null, - {} - ] - ], - "current-iteration.html": [ - "24464ce05f5c0f26240b63166d754a29b140dd0e", - [ - null, - {} - ] - ], - "local-time.html": [ - "79437d9f5420408c6bea34b6dd1f0d5a0aeec8f9", - [ - null, - {} - ] - ], - "phases-and-states.html": [ - "a33dbf517e893547160c42f3326a2e417a9709e3", - [ - null, - {} - ] - ], - "simple-iteration-progress.html": [ - "3c42f79a7101e44195938137414d05cf6ff503ef", - [ - null, - {} - ] - ] - }, - "animations": { - "canceling-an-animation.html": [ - "f296ac4da786e7685ff1117ec063f949f1f4ca5a", - [ - null, - {} - ] - ], - "finishing-an-animation.html": [ - "fbf6558f781e624ed9ea7c9470e78d75d0854cb2", - [ - null, - {} - ] - ], - "invalidating-animation-before-start-time-synced.html": [ - "653e46906a7195ff5e9dc9f06df8acef4f4a2905", - [ - null, - {} - ] - ], - "pausing-an-animation.html": [ - "dd9522cb353436ac5fcdf368c80a252258ab3d26", - [ - null, - {} - ] - ], - "play-states.html": [ - "ec7d8c842fc9329c3508c22916ce59a236006296", - [ - null, - {} - ] - ], - "playing-an-animation.html": [ - "01e036ae57cafb045bc91003c02eb4262d659880", - [ - null, - {} - ] - ], - "reversing-an-animation.html": [ - "8d869d72aaffc44f07c6d3e30cd26ac53ac281d3", - [ - null, - {} - ] - ], - "seamlessly-updating-the-playback-rate-of-an-animation.html": [ - "dffbeabd599a2c3cab376191f9030b697deecc21", - [ - null, - {} - ] - ], - "setting-the-current-time-of-an-animation.html": [ - "809877345f7f6c6d4b94cdfe090ea6b8e9848f8e", - [ - null, - {} - ] - ], - "setting-the-playback-rate-of-an-animation.html": [ - "a1f9e4f3acea04337dd0147fbfa373f950a67409", - [ - null, - {} - ] - ], - "setting-the-start-time-of-an-animation.html": [ - "fee3f1e0de7940beeb46178080c2638454a4af29", - [ - null, - {} - ] - ], - "setting-the-target-effect-of-an-animation.html": [ - "60ea1850fc5c15ea91c075d8929d8a3dce2b4f89", - [ - null, - {} - ] - ], - "setting-the-timeline-of-an-animation.html": [ - "d4f802152c57b0f0c43a649472c48d19541f4d97", - [ - null, - {} - ] - ], - "the-current-time-of-an-animation.html": [ - "77a6b716d22062998529b58382e0205e6f017980", - [ - null, - {} - ] - ], - "updating-the-finished-state.html": [ - "4d3cc7950b09bdffc826dfa9ffd885e6dea5e9ac", - [ - null, - { - "timeout": "long" - } + ], + "transfering.https.any.js": [ + "44060b968a8fe4500b80f622b057922d37da2f06", + [ + "webcodecs/transfering.https.any.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker" + ] ] - ] - }, - "time-transformations": { - "transformed-progress.html": [ - "960e333c09268f68d23ba2d0208202f8262ec3ef", - [ - null, - {} + } + ], + [ + "webcodecs/transfering.https.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker" + ] ] - ] - }, - "timelines": { - "document-timelines.html": [ - "c71d73331c1cf028bb3c18de361f36aa2ad5dbda", - [ - null, - {} + } + ] + ], + "video-decoder.crossOriginIsolated.https.any.js": [ + "3232844a31b240eb0f46e1df7a71f3efdd76e1ce", + [ + "webcodecs/video-decoder.crossOriginIsolated.https.any.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/utils.js" + ] ] - ], - "sibling-iframe-timeline.html": [ - "8a611c8579943a6ec3038bdadde967596afcfd2a", - [ - null, - {} + } + ], + [ + "webcodecs/video-decoder.crossOriginIsolated.https.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/utils.js" + ] ] - ], - "timelines.html": [ - "1609f85939eaa76732910f29c9ae6024c052d25f", - [ - null, - {} + } + ] + ], + "video-decoder.https.any.js": [ + "5b3193b8c37a4558945e5e2ae29639c26980ef89", + [ + "webcodecs/video-decoder.https.any.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/utils.js" + ] ] - ], - "update-and-send-events-replacement.html": [ - "d6ed734831868b5238d656ca83b440c6c515ea04", - [ - null, - {} + } + ], + [ + "webcodecs/video-decoder.https.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/utils.js" + ] ] - ], - "update-and-send-events.html": [ - "255e013f27a729858310cb545b22d12da283ade5", - [ - null, - { - "timeout": "long" - } + } + ] + ], + "video-encoder-canvasImageSource.https.html": [ + "0585dcd878350dd918bd0e22dd2bf32e97e86e6e", + [ + null, + {} + ] + ], + "video-encoder-config.https.any.js": [ + "d61958919d78b9e246a7021fa9c19242cb6d7538", + [ + "webcodecs/video-encoder-config.https.any.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/utils.js" + ] ] - ] - } - } - }, - "web-bundle": { - "subresource-loading": { - "accept-header.https.tentative.html": [ - "68b13e53c662f9c9e56bb9a72f0cd1aa00a46182", - [ - null, - {} - ] - ], - "coep.https.tentative.html": [ - "5e48cb73524aac8eed838b6ab8570fce0ee207ae", - [ - null, - {} - ] - ], - "corp.https.tentative.html": [ - "3c46de6c76890aec078cb576e87d67006620631d", - [ - null, - {} - ] - ], - "credentials.https.tentative.sub.html": [ - "37efc37e6d722e38f082ac3e2373f48cee4cc6e6", - [ - null, - {} - ] - ], - "csp-allowed.https.tentative.html": [ - "890a5ba5bc999d4bdcf631d1257ff160d6dd6503", - [ - null, - {} - ] - ], - "csp-blocked.https.tentative.html": [ - "6e5e82d5399cf1e3b7f99743e188ec8fc8af6881", - [ - null, - {} - ] - ], - "csp-blockes-bundle.https.tentative.html": [ - "06cef8c118a7ae43573cbb1c1e16e88bf4b7af3a", - [ - null, - {} - ] - ], - "element-removal.https.tentative.html": [ - "87ab8a9f15d02a986014a429cdfa7f1ee90fb2cc", - [ - null, - {} - ] - ], - "invalid-json.https.tentative.html": [ - "f4f9405e2de7eef2f5133f708ab582c5e1da20de", - [ - null, - {} - ] - ], - "nested-bundle.https.tentative.html": [ - "2e5b102e68462a86b13a5861b727f4538504f1ef", - [ - null, - {} - ] - ], - "network-error.https.tentative.sub.html": [ - "3ebab3fa90259a8dfa4675d32eaf6294ec2c1ad6", - [ - null, - {} - ] - ], - "not-found.https.tentative.html": [ - "efcb6bc9fb1bd55addc8a96acc8c10119b5ee3b3", - [ - null, - {} - ] - ], - "path-restriction.https.tentative.html": [ - "1d7b6f204b3c3c52cbc73fabd3027c9cb5c413a6", - [ - null, - {} - ] - ], - "relative-url-in-web-bundle-cors.https.tentative.sub.html": [ - "32f333b67eb8e0d3cd9b29ee466af0c356e4ab1e", - [ - null, - {} - ] - ], - "relative-url-in-web-bundle.https.tentative.html": [ - "0b7f63c21c701724a8f3423d4bbfde6de81b0e28", - [ - null, - {} - ] - ], - "relative-url-resources.https.tentative.html": [ - "1b79b157c4f5ad369ad1a3156f852311d02d3db6", - [ - null, - {} - ] - ], - "relative-url-scopes.https.tentative.html": [ - "40a49d55d39f395a950a7da4493b1747685fcf0f", - [ - null, - {} - ] - ], - "relative-url-static-element.https.tentative.html": [ - "55030e234bf8a3205dbeb90e0fd35c9d816fdac7", - [ - null, - {} - ] - ], - "relative-url-with-base.https.tentative.html": [ - "3c7e1a380c0e2c2f57310173ea42dc8d187f75b4", - [ - null, - {} - ] - ], - "request-destination.https.tentative.sub.html": [ - "da12f3d042655d334452f85c1d232046f1b7f409", - [ - null, - {} - ] - ], - "resource-timing-attributes-consistent.https.tentative.sub.html": [ - "3231d69ae9ca2cce17cda917f3cd071867f0c8a8", - [ - null, - {} - ] + } ], - "resource-timing.https.tentative.html": [ - "c486cf1711fcf203756a4afc9b73ec52b2a71da2", - [ - null, - {} - ] + [ + "webcodecs/video-encoder-config.https.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/utils.js" + ] + ] + } + ] + ], + "video-encoder-content-hint.https.any.js": [ + "cdc32fe3c64ed7afa09d7ca97b59ac2ad18ffdb3", + [ + "webcodecs/video-encoder-content-hint.https.any.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker" + ] + ] + } ], - "reuse-web-bundle-resource.https.tentative.html": [ - "81d87bcbf0237fe74594cd8ed7f4b19042719dd4", - [ - null, - {} - ] + [ + "webcodecs/video-encoder-content-hint.https.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker" + ] + ] + } + ] + ], + "video-encoder-flush.https.any.js": [ + "291f4df3bc00528f3b2f2b6063d7775fc22237cc", + [ + "webcodecs/video-encoder-flush.https.any.html?av1", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/common/media.js" + ], + [ + "script", + "/webcodecs/utils.js" + ], + [ + "script", + "/webcodecs/video-encoder-utils.js" + ], + [ + "variant", + "?av1" + ], + [ + "variant", + "?vp8" + ], + [ + "variant", + "?h264_avc" + ] + ] + } ], - "service-worker-controlled.https.tentative.html": [ - "b2e9abe5be3491f3976db746a691bb4de43c017e", - [ - null, - {} - ] + [ + "webcodecs/video-encoder-flush.https.any.html?h264_avc", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/common/media.js" + ], + [ + "script", + "/webcodecs/utils.js" + ], + [ + "script", + "/webcodecs/video-encoder-utils.js" + ], + [ + "variant", + "?av1" + ], + [ + "variant", + "?vp8" + ], + [ + "variant", + "?h264_avc" + ] + ] + } ], - "static-element-with-base.https.tentative.sub.html": [ - "886d9cb783b3726710cf60bc20e5d41fcfd97ec1", - [ - null, - {} - ] + [ + "webcodecs/video-encoder-flush.https.any.html?vp8", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/common/media.js" + ], + [ + "script", + "/webcodecs/utils.js" + ], + [ + "script", + "/webcodecs/video-encoder-utils.js" + ], + [ + "variant", + "?av1" + ], + [ + "variant", + "?vp8" + ], + [ + "variant", + "?h264_avc" + ] + ] + } ], - "static-element.https.tentative.sub.html": [ - "198c8f8e5cf88b1e799d101a539b2dc41ec6bea0", - [ - null, - {} - ] + [ + "webcodecs/video-encoder-flush.https.any.worker.html?av1", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/common/media.js" + ], + [ + "script", + "/webcodecs/utils.js" + ], + [ + "script", + "/webcodecs/video-encoder-utils.js" + ], + [ + "variant", + "?av1" + ], + [ + "variant", + "?vp8" + ], + [ + "variant", + "?h264_avc" + ] + ] + } ], - "subresource-load.https.tentative.sub.html": [ - "10c207020c2e3de5d8aaf053617adaa3d42786f2", - [ - null, - {} - ] + [ + "webcodecs/video-encoder-flush.https.any.worker.html?h264_avc", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/common/media.js" + ], + [ + "script", + "/webcodecs/utils.js" + ], + [ + "script", + "/webcodecs/video-encoder-utils.js" + ], + [ + "variant", + "?av1" + ], + [ + "variant", + "?vp8" + ], + [ + "variant", + "?h264_avc" + ] + ] + } ], - "supports-webbundle.https.tentative.html": [ - "9beae287a00f5a2a48c26b9ed95970ecb5db2577", - [ - null, - {} - ] + [ + "webcodecs/video-encoder-flush.https.any.worker.html?vp8", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/common/media.js" + ], + [ + "script", + "/webcodecs/utils.js" + ], + [ + "script", + "/webcodecs/video-encoder-utils.js" + ], + [ + "variant", + "?av1" + ], + [ + "variant", + "?vp8" + ], + [ + "variant", + "?h264_avc" + ] + ] + } ] - } - }, - "web-locks": { - "acquire.tentative.https.any.js": [ - "54ae6f30e7add6f45c6b5ba7161999b5a6078871", + ], + "video-encoder-h264.https.any.js": [ + "e63024a64b40a0e6aa87de869922be7025963f71", [ - "web-locks/acquire.tentative.https.any.html", + "webcodecs/video-encoder-h264.https.any.html?baseline", { "script_metadata": [ [ - "title", - "Web Locks API: navigator.locks.request method" + "global", + "window,dedicatedworker" ], [ "script", - "resources/helpers.js" + "/common/media.js" + ], + [ + "script", + "/webcodecs/utils.js" + ], + [ + "script", + "/webcodecs/video-encoder-utils.js" + ], + [ + "variant", + "?baseline" + ], + [ + "variant", + "?main" + ], + [ + "variant", + "?high" ], + [ + "variant", + "?high-6.2" + ] + ] + } + ], + [ + "webcodecs/video-encoder-h264.https.any.html?high", + { + "script_metadata": [ [ "global", - "window,dedicatedworker,sharedworker,serviceworker" + "window,dedicatedworker" + ], + [ + "script", + "/common/media.js" + ], + [ + "script", + "/webcodecs/utils.js" + ], + [ + "script", + "/webcodecs/video-encoder-utils.js" + ], + [ + "variant", + "?baseline" + ], + [ + "variant", + "?main" + ], + [ + "variant", + "?high" + ], + [ + "variant", + "?high-6.2" ] ] } ], [ - "web-locks/acquire.tentative.https.any.serviceworker.html", + "webcodecs/video-encoder-h264.https.any.html?high-6.2", { "script_metadata": [ [ - "title", - "Web Locks API: navigator.locks.request method" + "global", + "window,dedicatedworker" ], [ "script", - "resources/helpers.js" + "/common/media.js" + ], + [ + "script", + "/webcodecs/utils.js" + ], + [ + "script", + "/webcodecs/video-encoder-utils.js" + ], + [ + "variant", + "?baseline" + ], + [ + "variant", + "?main" + ], + [ + "variant", + "?high" ], + [ + "variant", + "?high-6.2" + ] + ] + } + ], + [ + "webcodecs/video-encoder-h264.https.any.html?main", + { + "script_metadata": [ [ "global", - "window,dedicatedworker,sharedworker,serviceworker" + "window,dedicatedworker" + ], + [ + "script", + "/common/media.js" + ], + [ + "script", + "/webcodecs/utils.js" + ], + [ + "script", + "/webcodecs/video-encoder-utils.js" + ], + [ + "variant", + "?baseline" + ], + [ + "variant", + "?main" + ], + [ + "variant", + "?high" + ], + [ + "variant", + "?high-6.2" ] ] } ], [ - "web-locks/acquire.tentative.https.any.sharedworker.html", + "webcodecs/video-encoder-h264.https.any.worker.html?baseline", { "script_metadata": [ [ - "title", - "Web Locks API: navigator.locks.request method" + "global", + "window,dedicatedworker" ], [ "script", - "resources/helpers.js" + "/common/media.js" + ], + [ + "script", + "/webcodecs/utils.js" + ], + [ + "script", + "/webcodecs/video-encoder-utils.js" + ], + [ + "variant", + "?baseline" + ], + [ + "variant", + "?main" + ], + [ + "variant", + "?high" ], + [ + "variant", + "?high-6.2" + ] + ] + } + ], + [ + "webcodecs/video-encoder-h264.https.any.worker.html?high", + { + "script_metadata": [ [ "global", - "window,dedicatedworker,sharedworker,serviceworker" + "window,dedicatedworker" + ], + [ + "script", + "/common/media.js" + ], + [ + "script", + "/webcodecs/utils.js" + ], + [ + "script", + "/webcodecs/video-encoder-utils.js" + ], + [ + "variant", + "?baseline" + ], + [ + "variant", + "?main" + ], + [ + "variant", + "?high" + ], + [ + "variant", + "?high-6.2" ] ] } ], [ - "web-locks/acquire.tentative.https.any.worker.html", + "webcodecs/video-encoder-h264.https.any.worker.html?high-6.2", { "script_metadata": [ [ - "title", - "Web Locks API: navigator.locks.request method" + "global", + "window,dedicatedworker" ], [ "script", - "resources/helpers.js" + "/common/media.js" + ], + [ + "script", + "/webcodecs/utils.js" + ], + [ + "script", + "/webcodecs/video-encoder-utils.js" + ], + [ + "variant", + "?baseline" + ], + [ + "variant", + "?main" + ], + [ + "variant", + "?high" ], + [ + "variant", + "?high-6.2" + ] + ] + } + ], + [ + "webcodecs/video-encoder-h264.https.any.worker.html?main", + { + "script_metadata": [ [ "global", - "window,dedicatedworker,sharedworker,serviceworker" + "window,dedicatedworker" + ], + [ + "script", + "/common/media.js" + ], + [ + "script", + "/webcodecs/utils.js" + ], + [ + "script", + "/webcodecs/video-encoder-utils.js" + ], + [ + "variant", + "?baseline" + ], + [ + "variant", + "?main" + ], + [ + "variant", + "?high" + ], + [ + "variant", + "?high-6.2" ] ] } ] ], - "bfcache": { - "abort.tentative.https.html": [ - "35d9b11270d7850107d914601a5872c8c1d354aa", - [ - null, - { - "timeout": "long" - } - ] - ], - "held.tentative.https.html": [ - "9d670c58892370bd07d801602fccc982cafc6220", - [ - null, - { - "timeout": "long" - } - ] - ], - "release-across-thread.tentative.https.html": [ - "374cee8b6d248836847dc58057fae1e984d911e7", - [ - null, - { - "timeout": "long" - } - ] - ], - "release.tentative.https.html": [ - "97f542fc2eeee0e1c7a246c9e0c58471c0ce7477", - [ - null, - { - "timeout": "long" - } - ] + "video-encoder.https.any.js": [ + "2746e60917b9e920a9015c925f7dc003021ebd04", + [ + "webcodecs/video-encoder.https.any.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/common/media.js" + ], + [ + "script", + "/webcodecs/utils.js" + ], + [ + "script", + "/webcodecs/video-encoder-utils.js" + ] + ] + } ], - "sharedworker-multiple.tentative.https.html": [ - "71a79bc5fa417ce2be7779d55d73f53e95c90943", - [ - null, - { - "timeout": "long" - } - ] + [ + "webcodecs/video-encoder.https.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/common/media.js" + ], + [ + "script", + "/webcodecs/utils.js" + ], + [ + "script", + "/webcodecs/video-encoder-utils.js" + ] + ] + } ] - }, - "clientids.tentative.https.html": [ - "7a3ffe45e1ebaac4ad85b76dbfd2523c0d5d7f82", + ], + "video-frame-serialization.any.js": [ + "4968c43cda3763fb9b6df7db4dc08a9da40b1868", [ - null, - {} + "webcodecs/video-frame-serialization.any.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/common/media.js" + ], + [ + "script", + "/webcodecs/utils.js" + ] + ] + } + ], + [ + "webcodecs/video-frame-serialization.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/common/media.js" + ], + [ + "script", + "/webcodecs/utils.js" + ] + ] + } ] ], - "frames.tentative.https.html": [ - "980b2fe7470bebec16193a6b1f641acc5ddaadce", + "videoColorSpace.any.js": [ + "3af828a5bdf48effd7a78cccb5c25aaead3a3877", [ - null, - {} + "webcodecs/videoColorSpace.any.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker" + ] + ] + } + ], + [ + "webcodecs/videoColorSpace.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker" + ] + ] + } ] ], - "held.tentative.https.any.js": [ - "7fc4c7354054c08a70e6b1ad050958c0303af5fa", + "videoDecoder-codec-specific.https.any.js": [ + "1c3b8f120dbf8843d6cb61d9b82812a2ced04631", [ - "web-locks/held.tentative.https.any.html", + "webcodecs/videoDecoder-codec-specific.https.any.html?av1", { "script_metadata": [ [ - "title", - "Web Locks API: Lock held until callback result resolves" + "global", + "window,dedicatedworker" ], [ - "script", - "resources/helpers.js" + "variant", + "?av1" + ], + [ + "variant", + "?vp8" + ], + [ + "variant", + "?vp9" + ], + [ + "variant", + "?h264_avc" + ], + [ + "variant", + "?h264_annexb" + ], + [ + "variant", + "?h265_hevc" ], + [ + "variant", + "?h265_annexb" + ] + ] + } + ], + [ + "webcodecs/videoDecoder-codec-specific.https.any.html?h264_annexb", + { + "script_metadata": [ [ "global", - "window,dedicatedworker,sharedworker,serviceworker" + "window,dedicatedworker" + ], + [ + "variant", + "?av1" + ], + [ + "variant", + "?vp8" + ], + [ + "variant", + "?vp9" + ], + [ + "variant", + "?h264_avc" + ], + [ + "variant", + "?h264_annexb" + ], + [ + "variant", + "?h265_hevc" + ], + [ + "variant", + "?h265_annexb" ] ] } ], [ - "web-locks/held.tentative.https.any.serviceworker.html", + "webcodecs/videoDecoder-codec-specific.https.any.html?h264_avc", { "script_metadata": [ [ - "title", - "Web Locks API: Lock held until callback result resolves" + "global", + "window,dedicatedworker" ], [ - "script", - "resources/helpers.js" + "variant", + "?av1" + ], + [ + "variant", + "?vp8" + ], + [ + "variant", + "?vp9" + ], + [ + "variant", + "?h264_avc" ], + [ + "variant", + "?h264_annexb" + ], + [ + "variant", + "?h265_hevc" + ], + [ + "variant", + "?h265_annexb" + ] + ] + } + ], + [ + "webcodecs/videoDecoder-codec-specific.https.any.html?h265_annexb", + { + "script_metadata": [ [ "global", - "window,dedicatedworker,sharedworker,serviceworker" + "window,dedicatedworker" + ], + [ + "variant", + "?av1" + ], + [ + "variant", + "?vp8" + ], + [ + "variant", + "?vp9" + ], + [ + "variant", + "?h264_avc" + ], + [ + "variant", + "?h264_annexb" + ], + [ + "variant", + "?h265_hevc" + ], + [ + "variant", + "?h265_annexb" ] ] } ], [ - "web-locks/held.tentative.https.any.sharedworker.html", + "webcodecs/videoDecoder-codec-specific.https.any.html?h265_hevc", { "script_metadata": [ [ - "title", - "Web Locks API: Lock held until callback result resolves" + "global", + "window,dedicatedworker" ], [ - "script", - "resources/helpers.js" + "variant", + "?av1" + ], + [ + "variant", + "?vp8" + ], + [ + "variant", + "?vp9" + ], + [ + "variant", + "?h264_avc" + ], + [ + "variant", + "?h264_annexb" + ], + [ + "variant", + "?h265_hevc" ], + [ + "variant", + "?h265_annexb" + ] + ] + } + ], + [ + "webcodecs/videoDecoder-codec-specific.https.any.html?vp8", + { + "script_metadata": [ [ "global", - "window,dedicatedworker,sharedworker,serviceworker" + "window,dedicatedworker" + ], + [ + "variant", + "?av1" + ], + [ + "variant", + "?vp8" + ], + [ + "variant", + "?vp9" + ], + [ + "variant", + "?h264_avc" + ], + [ + "variant", + "?h264_annexb" + ], + [ + "variant", + "?h265_hevc" + ], + [ + "variant", + "?h265_annexb" ] ] } ], [ - "web-locks/held.tentative.https.any.worker.html", + "webcodecs/videoDecoder-codec-specific.https.any.html?vp9", { "script_metadata": [ [ - "title", - "Web Locks API: Lock held until callback result resolves" + "global", + "window,dedicatedworker" ], [ - "script", - "resources/helpers.js" + "variant", + "?av1" ], + [ + "variant", + "?vp8" + ], + [ + "variant", + "?vp9" + ], + [ + "variant", + "?h264_avc" + ], + [ + "variant", + "?h264_annexb" + ], + [ + "variant", + "?h265_hevc" + ], + [ + "variant", + "?h265_annexb" + ] + ] + } + ], + [ + "webcodecs/videoDecoder-codec-specific.https.any.worker.html?av1", + { + "script_metadata": [ [ "global", - "window,dedicatedworker,sharedworker,serviceworker" + "window,dedicatedworker" + ], + [ + "variant", + "?av1" + ], + [ + "variant", + "?vp8" + ], + [ + "variant", + "?vp9" + ], + [ + "variant", + "?h264_avc" + ], + [ + "variant", + "?h264_annexb" + ], + [ + "variant", + "?h265_hevc" + ], + [ + "variant", + "?h265_annexb" ] ] } - ] - ], - "idlharness.tentative.https.any.js": [ - "2df7831c3405720f62428eb2c8722c7d172f743e", + ], [ - "web-locks/idlharness.tentative.https.any.html", + "webcodecs/videoDecoder-codec-specific.https.any.worker.html?h264_annexb", { "script_metadata": [ [ - "script", - "/resources/WebIDLParser.js" + "global", + "window,dedicatedworker" ], [ - "script", - "/resources/idlharness.js" + "variant", + "?av1" + ], + [ + "variant", + "?vp8" + ], + [ + "variant", + "?vp9" + ], + [ + "variant", + "?h264_avc" + ], + [ + "variant", + "?h264_annexb" + ], + [ + "variant", + "?h265_hevc" ], + [ + "variant", + "?h265_annexb" + ] + ] + } + ], + [ + "webcodecs/videoDecoder-codec-specific.https.any.worker.html?h264_avc", + { + "script_metadata": [ [ "global", - "window,dedicatedworker,sharedworker,serviceworker" + "window,dedicatedworker" ], [ - "timeout", - "long" + "variant", + "?av1" + ], + [ + "variant", + "?vp8" + ], + [ + "variant", + "?vp9" + ], + [ + "variant", + "?h264_avc" + ], + [ + "variant", + "?h264_annexb" + ], + [ + "variant", + "?h265_hevc" + ], + [ + "variant", + "?h265_annexb" ] - ], - "timeout": "long" + ] } ], [ - "web-locks/idlharness.tentative.https.any.serviceworker.html", + "webcodecs/videoDecoder-codec-specific.https.any.worker.html?h265_annexb", { "script_metadata": [ [ - "script", - "/resources/WebIDLParser.js" + "global", + "window,dedicatedworker" ], [ - "script", - "/resources/idlharness.js" + "variant", + "?av1" + ], + [ + "variant", + "?vp8" + ], + [ + "variant", + "?vp9" + ], + [ + "variant", + "?h264_avc" + ], + [ + "variant", + "?h264_annexb" + ], + [ + "variant", + "?h265_hevc" ], + [ + "variant", + "?h265_annexb" + ] + ] + } + ], + [ + "webcodecs/videoDecoder-codec-specific.https.any.worker.html?h265_hevc", + { + "script_metadata": [ [ "global", - "window,dedicatedworker,sharedworker,serviceworker" + "window,dedicatedworker" ], [ - "timeout", - "long" + "variant", + "?av1" + ], + [ + "variant", + "?vp8" + ], + [ + "variant", + "?vp9" + ], + [ + "variant", + "?h264_avc" + ], + [ + "variant", + "?h264_annexb" + ], + [ + "variant", + "?h265_hevc" + ], + [ + "variant", + "?h265_annexb" ] - ], - "timeout": "long" + ] } ], [ - "web-locks/idlharness.tentative.https.any.sharedworker.html", + "webcodecs/videoDecoder-codec-specific.https.any.worker.html?vp8", { "script_metadata": [ [ - "script", - "/resources/WebIDLParser.js" + "global", + "window,dedicatedworker" ], [ - "script", - "/resources/idlharness.js" + "variant", + "?av1" + ], + [ + "variant", + "?vp8" ], + [ + "variant", + "?vp9" + ], + [ + "variant", + "?h264_avc" + ], + [ + "variant", + "?h264_annexb" + ], + [ + "variant", + "?h265_hevc" + ], + [ + "variant", + "?h265_annexb" + ] + ] + } + ], + [ + "webcodecs/videoDecoder-codec-specific.https.any.worker.html?vp9", + { + "script_metadata": [ [ "global", - "window,dedicatedworker,sharedworker,serviceworker" + "window,dedicatedworker" ], [ - "timeout", - "long" + "variant", + "?av1" + ], + [ + "variant", + "?vp8" + ], + [ + "variant", + "?vp9" + ], + [ + "variant", + "?h264_avc" + ], + [ + "variant", + "?h264_annexb" + ], + [ + "variant", + "?h265_hevc" + ], + [ + "variant", + "?h265_annexb" ] - ], - "timeout": "long" + ] + } + ] + ], + "videoFrame-alpha.any.js": [ + "f4c4dfa737bdeb4eacacf47bff5fd4cae4883eb0", + [ + "webcodecs/videoFrame-alpha.any.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker" + ] + ] } ], [ - "web-locks/idlharness.tentative.https.any.worker.html", + "webcodecs/videoFrame-alpha.any.worker.html", { "script_metadata": [ [ - "script", - "/resources/WebIDLParser.js" + "global", + "window,dedicatedworker" + ] + ] + } + ] + ], + "videoFrame-canvasImageSource.html": [ + "717a0a3643a6b20b3253dae8133a8d57c34b6841", + [ + null, + {} + ] + ], + "videoFrame-construction.any.js": [ + "f49cb62c5c0468df0c9d853d7200b62b1d9ed653", + [ + "webcodecs/videoFrame-construction.any.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker" ], [ "script", - "/resources/idlharness.js" + "/webcodecs/utils.js" ], + [ + "script", + "/webcodecs/videoFrame-utils.js" + ] + ] + } + ], + [ + "webcodecs/videoFrame-construction.any.worker.html", + { + "script_metadata": [ [ "global", - "window,dedicatedworker,sharedworker,serviceworker" + "window,dedicatedworker" ], [ - "timeout", - "long" + "script", + "/webcodecs/utils.js" + ], + [ + "script", + "/webcodecs/videoFrame-utils.js" ] - ], - "timeout": "long" + ] } ] ], - "ifAvailable.tentative.https.any.js": [ - "63e6d568fe513512cb558bd66eebea1b625d54c6", + "videoFrame-construction.crossOriginIsolated.https.any.js": [ + "f5af5c0296ded79c7176c82ecd69513480dce3f8", [ - "web-locks/ifAvailable.tentative.https.any.html", + "webcodecs/videoFrame-construction.crossOriginIsolated.https.any.html", { "script_metadata": [ [ - "title", - "Web Locks API: ifAvailable option" + "global", + "window,dedicatedworker" ], [ "script", - "resources/helpers.js" + "/webcodecs/utils.js" ], [ - "global", - "window,dedicatedworker,sharedworker,serviceworker" + "script", + "/webcodecs/videoFrame-utils.js" ] ] } ], [ - "web-locks/ifAvailable.tentative.https.any.serviceworker.html", + "webcodecs/videoFrame-construction.crossOriginIsolated.https.any.worker.html", { "script_metadata": [ [ - "title", - "Web Locks API: ifAvailable option" + "global", + "window,dedicatedworker" ], [ "script", - "resources/helpers.js" + "/webcodecs/utils.js" ], + [ + "script", + "/webcodecs/videoFrame-utils.js" + ] + ] + } + ] + ], + "videoFrame-construction.crossOriginSource.sub.html": [ + "172580f83cc0283a4d9755600b9973875b843462", + [ + null, + {} + ] + ], + "videoFrame-construction.window.js": [ + "6c9791cea6821a45e80f7928cdbc4d223ba3f6b1", + [ + "webcodecs/videoFrame-construction.window.html", + { + "script_metadata": [ + [ + "script", + "/webcodecs/videoFrame-utils.js" + ] + ] + } + ] + ], + "videoFrame-copyTo-rgb.any.js": [ + "c1075a6445ad3a5b3b8ecb35df7a365fc58dc61a", + [ + "webcodecs/videoFrame-copyTo-rgb.any.html", + { + "script_metadata": [ [ "global", - "window,dedicatedworker,sharedworker,serviceworker" + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/videoFrame-utils.js" + ], + [ + "script", + "/webcodecs/video-encoder-utils.js" ] ] } ], [ - "web-locks/ifAvailable.tentative.https.any.sharedworker.html", + "webcodecs/videoFrame-copyTo-rgb.any.worker.html", { "script_metadata": [ [ - "title", - "Web Locks API: ifAvailable option" + "global", + "window,dedicatedworker" ], [ "script", - "resources/helpers.js" + "/webcodecs/videoFrame-utils.js" ], + [ + "script", + "/webcodecs/video-encoder-utils.js" + ] + ] + } + ] + ], + "videoFrame-copyTo.any.js": [ + "0fa57f43105fd40a01ed83664f0ef46171af876f", + [ + "webcodecs/videoFrame-copyTo.any.html", + { + "script_metadata": [ [ "global", - "window,dedicatedworker,sharedworker,serviceworker" + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/videoFrame-utils.js" ] ] } ], [ - "web-locks/ifAvailable.tentative.https.any.worker.html", + "webcodecs/videoFrame-copyTo.any.worker.html", { "script_metadata": [ [ - "title", - "Web Locks API: ifAvailable option" + "global", + "window,dedicatedworker" ], [ "script", - "resources/helpers.js" + "/webcodecs/videoFrame-utils.js" + ] + ] + } + ] + ], + "videoFrame-copyTo.crossOriginIsolated.https.any.js": [ + "bde3bfae03a7c28531fc18c8dab9bf8c71b3f258", + [ + "webcodecs/videoFrame-copyTo.crossOriginIsolated.https.any.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker" ], + [ + "script", + "/webcodecs/videoFrame-utils.js" + ] + ] + } + ], + [ + "webcodecs/videoFrame-copyTo.crossOriginIsolated.https.any.worker.html", + { + "script_metadata": [ [ "global", - "window,dedicatedworker,sharedworker,serviceworker" + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/videoFrame-utils.js" ] ] } ] ], - "lock-attributes.tentative.https.any.js": [ - "d1c03103e0b7d7cf460b51e7cd974a7615c89955", + "videoFrame-createImageBitmap.any.js": [ + "836971362382f876d7e3b1c26f3124721806264a", [ - "web-locks/lock-attributes.tentative.https.any.html", + "webcodecs/videoFrame-createImageBitmap.any.html", { "script_metadata": [ [ - "title", - "Web Locks API: Lock Attributes" + "global", + "window,dedicatedworker" ], + [ + "script", + "/webcodecs/utils.js" + ] + ] + } + ], + [ + "webcodecs/videoFrame-createImageBitmap.any.worker.html", + { + "script_metadata": [ [ "global", - "window,dedicatedworker,sharedworker,serviceworker" + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/utils.js" + ] + ] + } + ] + ], + "videoFrame-createImageBitmap.https.any.js": [ + "8bcff0e5e6a8c22e05cde194aa2a7c251bd1a44b", + [ + "webcodecs/videoFrame-createImageBitmap.https.any.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/utils.js" ] ] } ], [ - "web-locks/lock-attributes.tentative.https.any.serviceworker.html", + "webcodecs/videoFrame-createImageBitmap.https.any.worker.html", { "script_metadata": [ [ - "title", - "Web Locks API: Lock Attributes" + "global", + "window,dedicatedworker" ], + [ + "script", + "/webcodecs/utils.js" + ] + ] + } + ] + ], + "videoFrame-drawImage-hbd.any.js": [ + "f03fce796b089d9c058aedfc352f7aaada928080", + [ + "webcodecs/videoFrame-drawImage-hbd.any.html", + { + "script_metadata": [ [ "global", - "window,dedicatedworker,sharedworker,serviceworker" + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/utils.js" ] ] } ], [ - "web-locks/lock-attributes.tentative.https.any.sharedworker.html", + "webcodecs/videoFrame-drawImage-hbd.any.worker.html", { "script_metadata": [ [ - "title", - "Web Locks API: Lock Attributes" + "global", + "window,dedicatedworker" ], + [ + "script", + "/webcodecs/utils.js" + ] + ] + } + ] + ], + "videoFrame-drawImage.any.js": [ + "9830181c4f50a83a36c74453f58b403d91f75493", + [ + "webcodecs/videoFrame-drawImage.any.html", + { + "script_metadata": [ [ "global", - "window,dedicatedworker,sharedworker,serviceworker" + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/utils.js" ] ] } ], [ - "web-locks/lock-attributes.tentative.https.any.worker.html", + "webcodecs/videoFrame-drawImage.any.worker.html", { "script_metadata": [ [ - "title", - "Web Locks API: Lock Attributes" + "global", + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/utils.js" + ] + ] + } + ] + ], + "videoFrame-odd-size.any.js": [ + "da9754077f511a70353db09c5fe17486f0430300", + [ + "webcodecs/videoFrame-odd-size.any.html", + { + "script_metadata": [ + [ + "global", + "window,dedicatedworker" ], + [ + "script", + "/webcodecs/videoFrame-utils.js" + ] + ] + } + ], + [ + "webcodecs/videoFrame-odd-size.any.worker.html", + { + "script_metadata": [ [ "global", - "window,dedicatedworker,sharedworker,serviceworker" + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/videoFrame-utils.js" ] ] } ] ], - "mode-exclusive.tentative.https.any.js": [ - "8450e237c3555a75b929d8b1c419678908628ddd", + "videoFrame-serialization.crossAgentCluster.https.html": [ + "e96725bb2866271b4cb0b42f5bef5a111066efd3", + [ + null, + {} + ] + ], + "videoFrame-serialization.https.html": [ + "53eeae28d88cff7f47a6cd25606c9ec8b50fac20", + [ + null, + {} + ] + ], + "videoFrame-texImage.any.js": [ + "2eab6c8cde30c6eb3cb728d3d326e3ac321840cc", [ - "web-locks/mode-exclusive.tentative.https.any.html", + "webcodecs/videoFrame-texImage.any.html", { "script_metadata": [ [ - "title", - "Web Locks API: Exclusive Mode" + "global", + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/utils.js" ], + [ + "script", + "/webcodecs/webgl-test-utils.js" + ] + ] + } + ], + [ + "webcodecs/videoFrame-texImage.any.worker.html", + { + "script_metadata": [ [ "global", - "window,dedicatedworker,sharedworker,serviceworker" + "window,dedicatedworker" + ], + [ + "script", + "/webcodecs/utils.js" + ], + [ + "script", + "/webcodecs/webgl-test-utils.js" ] ] } + ] + ] + }, + "webdriver": { + "tests": { + "classic": { + "idlharness.window.js": [ + "e92e151d89836e06966339daabc6b1be50ded744", + [ + "webdriver/tests/classic/idlharness.window.html", + { + "script_metadata": [ + [ + "script", + "/resources/WebIDLParser.js" + ], + [ + "script", + "/resources/idlharness.js" + ] + ] + } + ] + ] + } + } + }, + "webgl": { + "bufferSubData.html": [ + "a97df9062d6ea964e500059e155b29604edc21b6", + [ + null, + {} + ] + ], + "compressedTexImage2D.html": [ + "a974c65002448c0df1beb97f93d5cd1476f254ca", + [ + null, + {} + ] + ], + "compressedTexSubImage2D.html": [ + "20c5ff9bd3841ca190f2d171842e28076ee00e0f", + [ + null, + {} + ] + ], + "idlharness.any.js": [ + "d6131f4884dfb001990e9427a73f092eef9f2c9e", + [ + "webgl/idlharness.any.html", + { + "script_metadata": [ + [ + "script", + "/resources/WebIDLParser.js" + ], + [ + "script", + "/resources/idlharness.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], [ - "web-locks/mode-exclusive.tentative.https.any.serviceworker.html", + "webgl/idlharness.any.worker.html", { "script_metadata": [ [ - "title", - "Web Locks API: Exclusive Mode" + "script", + "/resources/WebIDLParser.js" ], [ - "global", - "window,dedicatedworker,sharedworker,serviceworker" + "script", + "/resources/idlharness.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } + ] + ], + "texImage2D.html": [ + "86b84d1a999f165ef63fbb24ccf0587e4f6a01a3", + [ + null, + {} + ] + ], + "texSubImage2D.html": [ + "7a6c2091822a2194e851b7adcdd59cc27840df6d", + [ + null, + {} + ] + ], + "uniformMatrixNfv.html": [ + "f75cbcb99724219224c63d0dc595b1c001298500", + [ + null, + {} + ] + ] + }, + "webhid": { + "idlharness.https.window.js": [ + "bdc8419ba8bf4c40ac62634b04ebd962d118c36b", + [ + "webhid/idlharness.https.window.html", + { + "script_metadata": [ + [ + "script", + "/resources/WebIDLParser.js" + ], + [ + "script", + "/resources/idlharness.js" + ] + ] + } + ] + ], + "unload-iframe.https.window.js": [ + "2c0e2c1bb4fc57f7bcfe4d7b66db6579b4931e37", + [ + "webhid/unload-iframe.https.window.html", + {} + ] + ] + }, + "webidl": { + "current-realm.html": [ + "29e07d1f79edc05d69ccc351247894984488ad92", + [ + null, + {} + ] + ], + "ecmascript-binding": { + "allow-resizable.html": [ + "54daa57bce676ab692a5aff0bbd846c4cfbcb6fd", + [ + null, + {} + ] + ], + "attributes-accessors-unique-function-objects.html": [ + "167f55bcef7ead0fd83842ed693265adc9161641", + [ + null, + {} + ] + ], + "builtin-function-properties.any.js": [ + "885bb441ead442e769e580e12d7b126f31c76a31", + [ + "webidl/ecmascript-binding/builtin-function-properties.any.html", + {} + ], + [ + "webidl/ecmascript-binding/builtin-function-properties.any.worker.html", + {} + ] + ], + "class-string-interface.any.js": [ + "ee792d5368389b4f855474bd8077b8d7afd93b19", + [ + "webidl/ecmascript-binding/class-string-interface.any.html", + {} + ], + [ + "webidl/ecmascript-binding/class-string-interface.any.worker.html", + {} + ] + ], + "class-string-iterator-prototype-object.any.js": [ + "5ca549d69cff81521aa9fbc7a4ca6188f38c8e4f", + [ + "webidl/ecmascript-binding/class-string-iterator-prototype-object.any.html", + {} + ], + [ + "webidl/ecmascript-binding/class-string-iterator-prototype-object.any.worker.html", + {} + ] + ], + "class-string-named-properties-object.window.js": [ + "a427a2f8142e5392725f078e1fdb0c179994c593", + [ + "webidl/ecmascript-binding/class-string-named-properties-object.window.html", + {} + ] + ], + "constructors.html": [ + "61993a6200ed56f3664ef72c74839b2d1feaa3b1", + [ + null, + {} + ] + ], + "default-iterator-object.html": [ + "c7e9188521a2ae0bc9f15ff9bcaefc55a5253ce2", + [ + null, + {} + ] + ], + "default-toJSON-cross-realm.html": [ + "79c3097f339b58fe051453543ee922280e057bc0", + [ + null, + {} + ] + ], + "es-exceptions": { + "DOMException-constants.any.js": [ + "bb846a494eb898aed621181f182c1b125f9aaeae", + [ + "webidl/ecmascript-binding/es-exceptions/DOMException-constants.any.html", + {} + ], + [ + "webidl/ecmascript-binding/es-exceptions/DOMException-constants.any.worker.html", + {} + ] + ], + "DOMException-constructor-and-prototype.any.js": [ + "a015470cad6bf7f72541718243e94512671454ad", + [ + "webidl/ecmascript-binding/es-exceptions/DOMException-constructor-and-prototype.any.html", + {} + ], + [ + "webidl/ecmascript-binding/es-exceptions/DOMException-constructor-and-prototype.any.worker.html", + {} + ] + ], + "DOMException-constructor-behavior.any.js": [ + "e9917af2287490c77543146a660d57c822cccf2e", + [ + "webidl/ecmascript-binding/es-exceptions/DOMException-constructor-behavior.any.html", + {} + ], + [ + "webidl/ecmascript-binding/es-exceptions/DOMException-constructor-behavior.any.worker.html", + {} + ] + ], + "DOMException-custom-bindings.any.js": [ + "cd4e5b6341948cb8fad29cc29483dcf6b8444bcd", + [ + "webidl/ecmascript-binding/es-exceptions/DOMException-custom-bindings.any.html", + {} + ], + [ + "webidl/ecmascript-binding/es-exceptions/DOMException-custom-bindings.any.worker.html", + {} + ] + ], + "exceptions.html": [ + "d26c66266994b2e349b4c81d42bc2f66353e6840", + [ + null, + {} + ] + ] + }, + "global-immutable-prototype.any.js": [ + "6291c3ae935608185385e87f769e4f8b5be6cf19", + [ + "webidl/ecmascript-binding/global-immutable-prototype.any.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "Immutability of the global prototype chain" + ] + ] + } + ], + [ + "webidl/ecmascript-binding/global-immutable-prototype.any.serviceworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "Immutability of the global prototype chain" + ] + ] + } + ], + [ + "webidl/ecmascript-binding/global-immutable-prototype.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "Immutability of the global prototype chain" + ] + ] + } + ], + [ + "webidl/ecmascript-binding/global-immutable-prototype.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "title", + "Immutability of the global prototype chain" + ] + ] + } + ] + ], + "global-mutable-prototype.any.js": [ + "eba96e9adf4647e1beb89358f6f15a03610ebfb6", + [ + "webidl/ecmascript-binding/global-mutable-prototype.any.shadowrealm.html", + { + "script_metadata": [ + [ + "global", + "shadowrealm" + ], + [ + "title", + "Mutability of the global prototype chain" + ] + ] + } + ] + ], + "global-object-implicit-this-value-cross-realm.html": [ + "b9939b801cbd803dbb456425fba948d74e816ad7", + [ + null, + {} + ] + ], + "global-object-implicit-this-value.any.js": [ + "4c159c67519c0bdd33b6d2263c94591bfb7e1470", + [ + "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", + [ + null, + {} + ] + ], + "interface-object-set-receiver.html": [ + "ca75a96bbad52e554aa8eaa09489988de3a62826", + [ + null, + {} + ] + ], + "interface-object.html": [ + "132c61ddaed4a31367d00dee5fcb292a9661e9be", + [ + null, + {} + ] + ], + "interface-prototype-constructor-set-receiver.html": [ + "64a2da8eb2da2d1421be64e50595df1d14a180e2", + [ + null, + {} + ] + ], + "interface-prototype-object.html": [ + "299bcf926dc23d3d5e0175515277925141cd87ce", + [ + null, + {} + ] + ], + "invalid-this-value-cross-realm.html": [ + "0535115ac61f43f22054e013a1cc0ec84a3bb8a2", + [ + null, + {} + ] + ], + "iterator-invalidation-foreach.html": [ + "9d2e3b9cb25ce6ee49f3a9c724daf59e51b74a3d", + [ + null, + {} + ] + ], + "iterator-prototype-object.html": [ + "7859c1e46ac46463f070bf2b48a38f54d2e8a8cd", + [ + null, + {} + ] + ], + "legacy-callback-interface-object.html": [ + "627d29507f7dad5b2a8655a38d2f06008170cee8", + [ + null, + {} + ] + ], + "legacy-factor-function-subclass.window.js": [ + "1fd64f41bb2e8ecd95ba15104886e7ec16f3cc6d", + [ + "webidl/ecmascript-binding/legacy-factor-function-subclass.window.html", + {} + ] + ], + "legacy-factory-function-builtin-properties.window.js": [ + "fc5c48aca380c0d6f44bc1331560c015e4cd3343", + [ + "webidl/ecmascript-binding/legacy-factory-function-builtin-properties.window.html", + {} + ] + ], + "legacy-platform-object": { + "DefineOwnProperty.html": [ + "bd7ba19c1a90b66446b5e116187781dbeb786602", + [ + null, + {} + ] + ], + "GetOwnProperty.html": [ + "be3bcc61f0a3aa4867cbcb584f7c3f3de4148afb", + [ + null, + {} + ] + ], + "OwnPropertyKeys.html": [ + "d33980517b1a944a9c87cdd81db4537df1abcadc", + [ + null, + {} + ] + ], + "Set.html": [ + "1390b51cd03b51cb15ceea1519fcd309bf914c86", + [ + null, + {} ] - } + ] + }, + "no-regexp-special-casing.any.js": [ + "4446dbf69c02ab466ad03fd69d6ed3924d8e84a0", + [ + "webidl/ecmascript-binding/no-regexp-special-casing.any.html", + {} + ], + [ + "webidl/ecmascript-binding/no-regexp-special-casing.any.worker.html", + {} + ] ], - [ - "web-locks/mode-exclusive.tentative.https.any.sharedworker.html", - { - "script_metadata": [ - [ - "title", - "Web Locks API: Exclusive Mode" - ], - [ - "global", - "window,dedicatedworker,sharedworker,serviceworker" - ] - ] - } + "observable-array-no-leak-of-internals.window.js": [ + "f93464005d017f6af716bdf66b85834be13012ce", + [ + "webidl/ecmascript-binding/observable-array-no-leak-of-internals.window.html", + {} + ] + ], + "observable-array-ownkeys.window.js": [ + "29b537c4750a385f0000636e79c1c31126be5d5c", + [ + "webidl/ecmascript-binding/observable-array-ownkeys.window.html", + {} + ] + ], + "put-forwards.html": [ + "7d99d65aa21385be8bef633e439a318cb6abaab2", + [ + null, + {} + ] + ], + "replaceable-setter-throws-if-defineownproperty-fails.html": [ + "872bbff960426523ec2bebb47aee22a3dca6e1bc", + [ + null, + {} + ] + ], + "sequence-conversion.html": [ + "40764e9f5776031cb333d79358c814fddc4b0b12", + [ + null, + {} + ] ], + "window-named-properties-object.html": [ + "cc4976890683f444cdd29b9fce591207b0def240", + [ + null, + {} + ] + ] + }, + "idlharness-shadowrealm.window.js": [ + "ab1ca9a0198720d537744cdc8777205317b41f58", [ - "web-locks/mode-exclusive.tentative.https.any.worker.html", + "webidl/idlharness-shadowrealm.window.html", { "script_metadata": [ [ - "title", - "Web Locks API: Exclusive Mode" - ], - [ - "global", - "window,dedicatedworker,sharedworker,serviceworker" + "script", + "/resources/idlharness-shadowrealm.js" ] ] } ] ], - "mode-mixed.tentative.https.any.js": [ - "5f34588693f94e4c7d42b5943931978a60be9e8a", + "idlharness.any.js": [ + "3c662ba8e63f2f585ce1c5674eb1e165e5810313", [ - "web-locks/mode-mixed.tentative.https.any.html", + "webidl/idlharness.any.html", { "script_metadata": [ - [ - "title", - "Web Locks API: Mixed Modes" - ], [ "script", - "resources/helpers.js" + "/resources/WebIDLParser.js" ], [ - "global", - "window,dedicatedworker,sharedworker,serviceworker" + "script", + "/resources/idlharness.js" ] ] } ], [ - "web-locks/mode-mixed.tentative.https.any.serviceworker.html", + "webidl/idlharness.any.worker.html", { "script_metadata": [ - [ - "title", - "Web Locks API: Mixed Modes" - ], [ "script", - "resources/helpers.js" + "/resources/WebIDLParser.js" ], [ - "global", - "window,dedicatedworker,sharedworker,serviceworker" + "script", + "/resources/idlharness.js" ] ] } - ], + ] + ] + }, + "webmessaging": { + "Channel_postMessage_Blob.any.js": [ + "fce814f5887ad186789331d4cc071a06e03e2127", [ - "web-locks/mode-mixed.tentative.https.any.sharedworker.html", + "webmessaging/Channel_postMessage_Blob.any.html", { "script_metadata": [ [ "title", - "Web Locks API: Mixed Modes" + "postMessage() with a Blob" ], [ "script", - "resources/helpers.js" - ], - [ - "global", - "window,dedicatedworker,sharedworker,serviceworker" + "/common/gc.js" ] ] } ], [ - "web-locks/mode-mixed.tentative.https.any.worker.html", + "webmessaging/Channel_postMessage_Blob.any.worker.html", { "script_metadata": [ [ "title", - "Web Locks API: Mixed Modes" + "postMessage() with a Blob" ], [ "script", - "resources/helpers.js" - ], - [ - "global", - "window,dedicatedworker,sharedworker,serviceworker" + "/common/gc.js" ] ] } ] ], - "mode-shared.tentative.https.any.js": [ - "fc4a6012fab5675bcceafdd6f7d17b6bc5a67e64", + "Channel_postMessage_DataCloneErr.any.js": [ + "048820fa6be3e30bc3da1081b69b83725b9b8eb2", [ - "web-locks/mode-shared.tentative.https.any.html", + "webmessaging/Channel_postMessage_DataCloneErr.any.html", { "script_metadata": [ [ "title", - "Web Locks API: Shared Mode" - ], - [ - "global", - "window,dedicatedworker,sharedworker,serviceworker" + "postMessage() with a host object raises DataCloneError" ] ] } ], [ - "web-locks/mode-shared.tentative.https.any.serviceworker.html", + "webmessaging/Channel_postMessage_DataCloneErr.any.worker.html", { "script_metadata": [ [ "title", - "Web Locks API: Shared Mode" - ], - [ - "global", - "window,dedicatedworker,sharedworker,serviceworker" + "postMessage() with a host object raises DataCloneError" ] ] } - ], + ] + ], + "Channel_postMessage_clone_port.any.js": [ + "3dcb902b77b4f30ef3eff56aacfba854d3cdc5c8", [ - "web-locks/mode-shared.tentative.https.any.sharedworker.html", + "webmessaging/Channel_postMessage_clone_port.any.html", { "script_metadata": [ [ "title", - "Web Locks API: Shared Mode" - ], - [ - "global", - "window,dedicatedworker,sharedworker,serviceworker" + "postMessage(): clone a port" ] ] } ], [ - "web-locks/mode-shared.tentative.https.any.worker.html", + "webmessaging/Channel_postMessage_clone_port.any.worker.html", { "script_metadata": [ [ "title", - "Web Locks API: Shared Mode" - ], - [ - "global", - "window,dedicatedworker,sharedworker,serviceworker" + "postMessage(): clone a port" ] ] } ] ], - "non-fully-active.tentative.https.html": [ - "56a5372044daaca92297b9d19871fa4d7f82fae7", - [ - null, - {} - ] - ], - "non-secure-context.tentative.any.js": [ - "94553591f372492a1d1085d6edf23715872c0d83", - [ - "web-locks/non-secure-context.tentative.any.html", - { - "script_metadata": [ - [ - "title", - "Web Locks API: API not available in non-secure context" - ], - [ - "global", - "window,dedicatedworker,sharedworker" - ] - ] - } - ], + "Channel_postMessage_clone_port_error.any.js": [ + "cbee47270c461610695aef5e8f91bb417bf4175c", [ - "web-locks/non-secure-context.tentative.any.sharedworker.html", + "webmessaging/Channel_postMessage_clone_port_error.any.html", { "script_metadata": [ [ "title", - "Web Locks API: API not available in non-secure context" - ], - [ - "global", - "window,dedicatedworker,sharedworker" + "postMessage() DataCloneError: cloning source port" ] ] } ], [ - "web-locks/non-secure-context.tentative.any.worker.html", + "webmessaging/Channel_postMessage_clone_port_error.any.worker.html", { "script_metadata": [ [ "title", - "Web Locks API: API not available in non-secure context" - ], - [ - "global", - "window,dedicatedworker,sharedworker" + "postMessage() DataCloneError: cloning source port" ] ] } ] ], - "opaque-origin.tentative.https.html": [ - "3ba636ecd8040b5b1b9d8b441176d50b791a6582", - [ - null, - {} - ] - ], - "partitioned-web-locks.tentative.https.html": [ - "aa9c9b6984253b16a5fae5c2d06271d2a4374fee", - [ - null, - {} - ] - ], - "query-empty.tentative.https.any.js": [ - "88ffdb7f810d6d3e698a507da97220684ad3ecfe", + "Channel_postMessage_event_properties.any.js": [ + "0fd8c7e90a24ce2a84e60eedeaaef65f752922c5", [ - "web-locks/query-empty.tentative.https.any.html", + "webmessaging/Channel_postMessage_event_properties.any.html", { "script_metadata": [ [ "title", - "Web Locks API: navigator.locks.query method - no locks held" - ], - [ - "script", - "resources/helpers.js" - ], - [ - "global", - "window,dedicatedworker,sharedworker,serviceworker" + "postMessage(): MessageEvent properties" ] ] } ], [ - "web-locks/query-empty.tentative.https.any.serviceworker.html", + "webmessaging/Channel_postMessage_event_properties.any.worker.html", { "script_metadata": [ [ "title", - "Web Locks API: navigator.locks.query method - no locks held" - ], - [ - "script", - "resources/helpers.js" - ], - [ - "global", - "window,dedicatedworker,sharedworker,serviceworker" + "postMessage(): MessageEvent properties" ] ] } - ], + ] + ], + "Channel_postMessage_ports_readonly_array.any.js": [ + "032a54e710feec2517a9272fb5bd4ff6dea7b059", [ - "web-locks/query-empty.tentative.https.any.sharedworker.html", + "webmessaging/Channel_postMessage_ports_readonly_array.any.html", { "script_metadata": [ [ "title", - "Web Locks API: navigator.locks.query method - no locks held" - ], - [ - "script", - "resources/helpers.js" - ], - [ - "global", - "window,dedicatedworker,sharedworker,serviceworker" + "postMessage(): read-only ports array" ] ] } ], [ - "web-locks/query-empty.tentative.https.any.worker.html", + "webmessaging/Channel_postMessage_ports_readonly_array.any.worker.html", { "script_metadata": [ [ "title", - "Web Locks API: navigator.locks.query method - no locks held" - ], - [ - "script", - "resources/helpers.js" - ], - [ - "global", - "window,dedicatedworker,sharedworker,serviceworker" + "postMessage(): read-only ports array" ] ] } ] ], - "query-ordering.tentative.https.html": [ - "d5e722baf75b6b4a77bf0943ddecd620499dc03a", - [ - null, - {} - ] - ], - "query.tentative.https.any.js": [ - "14fdeca7a426c44ac9027a3a2494e235d0ac1844", + "Channel_postMessage_target_source.any.js": [ + "6b7fc7f20d46716d481ae0e200f35fdc8a8eabba", [ - "web-locks/query.tentative.https.any.html", + "webmessaging/Channel_postMessage_target_source.any.html", { "script_metadata": [ [ "title", - "Web Locks API: navigator.locks.query method" - ], - [ - "script", - "resources/helpers.js" + "postMessage(): target port and source port" ] ] } ], [ - "web-locks/query.tentative.https.any.worker.html", + "webmessaging/Channel_postMessage_target_source.any.worker.html", { "script_metadata": [ [ "title", - "Web Locks API: navigator.locks.query method" - ], - [ - "script", - "resources/helpers.js" + "postMessage(): target port and source port" ] ] } ] ], - "resource-names.tentative.https.any.js": [ - "1031b3f7ba2e34129870db73088be0bc384ab2f8", + "Channel_postMessage_transfer_xsite_incoming_messages.window.js": [ + "23237ae1555e67dafcb170ce8fccab4c966f7a2e", [ - "web-locks/resource-names.tentative.https.any.html", + "webmessaging/Channel_postMessage_transfer_xsite_incoming_messages.window.html", { "script_metadata": [ [ - "title", - "Web Locks API: Resources DOMString edge cases" - ], - [ - "global", - "window,dedicatedworker,sharedworker,serviceworker" + "script", + "/common/get-host-info.sub.js" ] ] } - ], + ] + ], + "Channel_postMessage_with_transfer_entangled.any.js": [ + "2226b278440346290066e622fe6abbaab2b93bd2", [ - "web-locks/resource-names.tentative.https.any.serviceworker.html", - { - "script_metadata": [ - [ - "title", - "Web Locks API: Resources DOMString edge cases" - ], - [ - "global", - "window,dedicatedworker,sharedworker,serviceworker" - ] - ] - } + "webmessaging/Channel_postMessage_with_transfer_entangled.any.html", + {} ], [ - "web-locks/resource-names.tentative.https.any.sharedworker.html", - { - "script_metadata": [ - [ - "title", - "Web Locks API: Resources DOMString edge cases" - ], - [ - "global", - "window,dedicatedworker,sharedworker,serviceworker" - ] - ] - } + "webmessaging/Channel_postMessage_with_transfer_entangled.any.worker.html", + {} + ] + ], + "Channel_postMessage_with_transfer_incoming_messages.any.js": [ + "fe2e96220d34d88127dc596eee70d183f7debd18", + [ + "webmessaging/Channel_postMessage_with_transfer_incoming_messages.any.html", + {} ], [ - "web-locks/resource-names.tentative.https.any.worker.html", - { - "script_metadata": [ - [ - "title", - "Web Locks API: Resources DOMString edge cases" - ], - [ - "global", - "window,dedicatedworker,sharedworker,serviceworker" - ] - ] - } + "webmessaging/Channel_postMessage_with_transfer_incoming_messages.any.worker.html", + {} ] ], - "secure-context.tentative.https.any.js": [ - "29ae7aea475f2db169718507431adb4c6ff78eeb", + "Channel_postMessage_with_transfer_outgoing_messages.any.js": [ + "aa80b7589cffa58da6f1d790e7cdbeb95642c6e3", [ - "web-locks/secure-context.tentative.https.any.html", - { - "script_metadata": [ - [ - "title", - "Web Locks API: API requires secure context" - ], - [ - "global", - "window,dedicatedworker,sharedworker,serviceworker" - ] - ] - } + "webmessaging/Channel_postMessage_with_transfer_outgoing_messages.any.html", + {} ], [ - "web-locks/secure-context.tentative.https.any.serviceworker.html", - { - "script_metadata": [ - [ - "title", - "Web Locks API: API requires secure context" - ], - [ - "global", - "window,dedicatedworker,sharedworker,serviceworker" - ] - ] - } - ], + "webmessaging/Channel_postMessage_with_transfer_outgoing_messages.any.worker.html", + {} + ] + ], + "MessageEvent-trusted.any.js": [ + "84187eb571607faa38b81332c73cb5e0f71eee77", [ - "web-locks/secure-context.tentative.https.any.sharedworker.html", + "webmessaging/MessageEvent-trusted.any.html", { "script_metadata": [ [ "title", - "Web Locks API: API requires secure context" - ], - [ - "global", - "window,dedicatedworker,sharedworker,serviceworker" + "MessagePort message events are trusted" ] ] } ], [ - "web-locks/secure-context.tentative.https.any.worker.html", + "webmessaging/MessageEvent-trusted.any.worker.html", { "script_metadata": [ [ "title", - "Web Locks API: API requires secure context" - ], - [ - "global", - "window,dedicatedworker,sharedworker,serviceworker" + "MessagePort message events are trusted" ] ] } ] ], - "signal.tentative.https.any.js": [ - "5a37e3ae87182eb2ea1909c9e5e29b3f50fd248b", + "MessageEvent-trusted.window.js": [ + "11cf48beed9abda7d44816918364982ba1eb8824", [ - "web-locks/signal.tentative.https.any.html", + "webmessaging/MessageEvent-trusted.window.html", { "script_metadata": [ [ "title", - "Web Locks API: AbortSignal integration" - ], - [ - "script", - "resources/helpers.js" - ], - [ - "global", - "window,dedicatedworker,sharedworker,serviceworker" + "MessagePort message events are trusted with window" ] ] } - ], + ] + ], + "MessageEvent.any.js": [ + "0fb2636911ddc6ebc6026f20d8e18a2aa9007404", [ - "web-locks/signal.tentative.https.any.serviceworker.html", + "webmessaging/MessageEvent.any.html", { "script_metadata": [ [ "title", - "Web Locks API: AbortSignal integration" - ], - [ - "script", - "resources/helpers.js" - ], - [ - "global", - "window,dedicatedworker,sharedworker,serviceworker" + "MessageEvent" ] ] } ], [ - "web-locks/signal.tentative.https.any.sharedworker.html", + "webmessaging/MessageEvent.any.worker.html", { "script_metadata": [ [ "title", - "Web Locks API: AbortSignal integration" - ], - [ - "script", - "resources/helpers.js" - ], - [ - "global", - "window,dedicatedworker,sharedworker,serviceworker" + "MessageEvent" ] ] } - ], + ] + ], + "MessageEvent_onmessage_postMessage_infinite_loop.html": [ + "179bc0cc4a1253618e30ffd674fec139c3c0d52a", [ - "web-locks/signal.tentative.https.any.worker.html", - { - "script_metadata": [ - [ - "title", - "Web Locks API: AbortSignal integration" - ], - [ - "script", - "resources/helpers.js" - ], - [ - "global", - "window,dedicatedworker,sharedworker,serviceworker" - ] - ] - } + null, + {} ] ], - "steal.tentative.https.any.js": [ - "d165b9d179fb14ac9843401db6b8ee07c9470afe", + "MessageEvent_properties.htm": [ + "389add98d1f4c40deea0adcc96960862a2aff6b2", + [ + null, + {} + ] + ], + "MessagePort_initial_disabled.any.js": [ + "b897858175618ec6d399bb8ebe8a8af5c77f32cf", [ - "web-locks/steal.tentative.https.any.html", + "webmessaging/MessagePort_initial_disabled.any.html", { "script_metadata": [ [ "title", - "Web Locks API: steal option" - ], - [ - "script", - "resources/helpers.js" - ], - [ - "global", - "window,dedicatedworker,sharedworker,serviceworker" + "MessageChannel: port message queue is initially disabled" ] ] } ], [ - "web-locks/steal.tentative.https.any.serviceworker.html", + "webmessaging/MessagePort_initial_disabled.any.worker.html", { "script_metadata": [ [ "title", - "Web Locks API: steal option" - ], - [ - "script", - "resources/helpers.js" - ], - [ - "global", - "window,dedicatedworker,sharedworker,serviceworker" + "MessageChannel: port message queue is initially disabled" ] ] } - ], + ] + ], + "MessagePort_onmessage_start.any.js": [ + "7ba3a3721023206fa64c810b4c70c75a208ff049", [ - "web-locks/steal.tentative.https.any.sharedworker.html", + "webmessaging/MessagePort_onmessage_start.any.html", { "script_metadata": [ [ "title", - "Web Locks API: steal option" - ], - [ - "script", - "resources/helpers.js" - ], - [ - "global", - "window,dedicatedworker,sharedworker,serviceworker" + "MessageChannel: port.onmessage enables message queue" ] ] } ], [ - "web-locks/steal.tentative.https.any.worker.html", + "webmessaging/MessagePort_onmessage_start.any.worker.html", { "script_metadata": [ [ "title", - "Web Locks API: steal option" - ], - [ - "script", - "resources/helpers.js" - ], - [ - "global", - "window,dedicatedworker,sharedworker,serviceworker" + "MessageChannel: port.onmessage enables message queue" ] ] } ] ], - "storage-buckets.tentative.https.any.js": [ - "a6b4f59a95d715aaff638a3c2b3a6c9ab3532ab8", + "Transferred_objects_unusable.sub.htm": [ + "55c3dbdba18a686011f893be82f5c220b1e7ce74", [ - "web-locks/storage-buckets.tentative.https.any.html", - { - "script_metadata": [ - [ - "title", - "Web Locks API: Storage Buckets have independent lock sets" - ], - [ - "script", - "resources/helpers.js" - ], - [ - "script", - "/storage/buckets/resources/util.js" - ], - [ - "global", - "window,dedicatedworker,sharedworker,serviceworker" - ] - ] - } + null, + {} + ] + ], + "broadcastchannel": { + "basics.any.js": [ + "eec09d65a3aba27feb44bd330e0b5bf9dfdd96a2", + [ + "webmessaging/broadcastchannel/basics.any.html", + {} + ], + [ + "webmessaging/broadcastchannel/basics.any.worker.html", + {} + ] ], - [ - "web-locks/storage-buckets.tentative.https.any.serviceworker.html", - { - "script_metadata": [ - [ - "title", - "Web Locks API: Storage Buckets have independent lock sets" - ], - [ - "script", - "resources/helpers.js" - ], - [ - "script", - "/storage/buckets/resources/util.js" - ], - [ - "global", - "window,dedicatedworker,sharedworker,serviceworker" - ] - ] - } + "blobs.html": [ + "ab5096b63c19b0792b60746ff416fda92a4bbed3", + [ + null, + {} + ] ], - [ - "web-locks/storage-buckets.tentative.https.any.sharedworker.html", - { - "script_metadata": [ - [ - "title", - "Web Locks API: Storage Buckets have independent lock sets" - ], - [ - "script", - "resources/helpers.js" - ], - [ - "script", - "/storage/buckets/resources/util.js" - ], - [ - "global", - "window,dedicatedworker,sharedworker,serviceworker" - ] - ] - } + "cross-origin.html": [ + "ee4b2f21c8e3fec488cb28d72e45a7e918210806", + [ + null, + {} + ] + ], + "cross-partition.https.tentative.html": [ + "4e91da554686ec9f86f63572750296db48c34a4b", + [ + null, + { + "timeout": "long" + } + ] + ], + "detached-iframe.html": [ + "b9b06c3a46463bf50a88ebc545f1ad9ed6ac496a", + [ + null, + {} + ] + ], + "interface.any.js": [ + "35e09d34b418d3c6d2a574bfdedc9e6632a6c09f", + [ + "webmessaging/broadcastchannel/interface.any.html", + {} + ], + [ + "webmessaging/broadcastchannel/interface.any.worker.html", + {} + ] + ], + "opaque-origin.html": [ + "e09d935244b8b6d01e2b3ca62d16198e3f8af6d9", + [ + null, + { + "timeout": "long" + } + ] + ], + "ordering.html": [ + "2d521b9e0ccf94feb42fa9acc09343314f625a87", + [ + null, + {} + ] ], + "origin.window.js": [ + "7e9d602af194b7929f9c4c9cb8e4d3f972a0ea26", + [ + "webmessaging/broadcastchannel/origin.window.html", + {} + ] + ], + "sandbox.html": [ + "aedf3c0d6fe64dca2b3a6058d69d7f3a7f70cc28", + [ + null, + {} + ] + ], + "service-worker.https.html": [ + "d605434ae1ccb02724a901caf5f2325b1719d878", + [ + null, + {} + ] + ], + "workers.html": [ + "8b55492f3cffb35664ed26fe1f3687f52ff457e0", + [ + null, + {} + ] + ] + }, + "event.data.sub.htm": [ + "6858ef4c690b901ef421e84938eb78250d982ddc", [ - "web-locks/storage-buckets.tentative.https.any.worker.html", - { - "script_metadata": [ - [ - "title", - "Web Locks API: Storage Buckets have independent lock sets" - ], - [ - "script", - "resources/helpers.js" - ], - [ - "script", - "/storage/buckets/resources/util.js" - ], - [ - "global", - "window,dedicatedworker,sharedworker,serviceworker" - ] - ] - } + null, + {} ] ], - "workers.tentative.https.html": [ - "9fe38dbe38c798bf39aac0bd79a5dbabbcebfc68", + "event.origin.sub.htm": [ + "5b1ab3e3c37fe08f8db2f2617b79b534ef816485", [ null, {} ] - ] - }, - "web-nfc": { - "NDEFMessage_constructor.https.window.js": [ - "f4d9a441b4c0c9a3ae2a0121c075471a34ecbf8d", + ], + "event.ports.sub.htm": [ + "a4ca24b15ee4328c539198e156e9e1e065ac3067", [ - "web-nfc/NDEFMessage_constructor.https.window.html", - { - "script_metadata": [ - [ - "script", - "resources/nfc-helpers.js" - ] - ] - } + null, + {} ] ], - "NDEFMessage_recursion-limit.https.window.js": [ - "49a69524d95e6e734096cfa29970be1596285e46", + "event.source.htm": [ + "365a5feb476592dd88eb7fa00f563ce556143e95", [ - "web-nfc/NDEFMessage_recursion-limit.https.window.html", + null, {} ] ], - "NDEFReader_make-read-only.https.window.js": [ - "f5872088ca6b19564e6ab870f814e217efb12202", + "event.source.xorigin.sub.htm": [ + "7327f78667303d68cef815e52b729225a7d5234d", [ - "web-nfc/NDEFReader_make-read-only.https.window.html", - { - "script_metadata": [ - [ - "script", - "resources/nfc-helpers.js" + null, + {} + ] + ], + "message-channels": { + "basics.any.js": [ + "5732fb268a0faa029262cfc360bf140123b707c2", + [ + "webmessaging/message-channels/basics.any.html", + { + "script_metadata": [ + [ + "title", + "basic messagechannel test" + ] + ] + } + ], + [ + "webmessaging/message-channels/basics.any.worker.html", + { + "script_metadata": [ + [ + "title", + "basic messagechannel test" + ] ] + } + ] + ], + "close-event": { + "document-destroyed.tentative.window.js": [ + "85e4ad30add19b9a1d733917f6d89ada74c62198", + [ + "webmessaging/message-channels/close-event/document-destroyed.tentative.window.html", + { + "script_metadata": [ + [ + "title", + "Close event test when the document is destroyed." + ], + [ + "script", + "/common/dispatcher/dispatcher.js" + ], + [ + "script", + "/common/get-host-info.sub.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "/html/browsers/browsing-the-web/remote-context-helper/resources/remote-context-helper.js" + ], + [ + "script", + "resources/helper.js" + ] + ] + } ] - } + ], + "entangled-after-back-forward-cache-restore.https.tentative.window.js": [ + "c99e89f02b7ef4e3c9f3df3dcc35fcf020823dd1", + [ + "webmessaging/message-channels/close-event/entangled-after-back-forward-cache-restore.https.tentative.window.html", + { + "script_metadata": [ + [ + "timeout", + "long" + ], + [ + "title", + "Confirm close event is not fired when the page enters BFCache and MessagePort still works after the page is restored." + ], + [ + "script", + "/common/dispatcher/dispatcher.js" + ], + [ + "script", + "/common/get-host-info.sub.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "/html/browsers/browsing-the-web/remote-context-helper/resources/remote-context-helper.js" + ], + [ + "script", + "/service-workers/service-worker/resources/test-helpers.sub.js" + ], + [ + "script", + "/html/browsers/browsing-the-web/back-forward-cache/resources/rc-helper.js" + ] + ], + "timeout": "long" + } + ] + ], + "explicitly-closed.tentative.window.js": [ + "612003d58eaea908ad93294a7bbf777184356a28", + [ + "webmessaging/message-channels/close-event/explicitly-closed.tentative.window.html", + { + "script_metadata": [ + [ + "title", + "Close event test when an entangled port is explicitly closed." + ], + [ + "script", + "/common/dispatcher/dispatcher.js" + ], + [ + "script", + "/common/get-host-info.sub.js" + ], + [ + "script", + "/common/utils.js" + ], + [ + "script", + "/html/browsers/browsing-the-web/remote-context-helper/resources/remote-context-helper.js" + ], + [ + "script", + "resources/helper.js" + ] + ] + } + ] + ], + "garbage-collected.tentative.any.js": [ + "11f19c3b246f90b742ee2969e4dbddfdb06865b1", + [ + "webmessaging/message-channels/close-event/garbage-collected.tentative.any.html", + { + "script_metadata": [ + [ + "title", + "Close event test when an entangled port is GCed." + ], + [ + "script", + "/common/gc.js" + ] + ] + } + ], + [ + "webmessaging/message-channels/close-event/garbage-collected.tentative.any.worker.html", + { + "script_metadata": [ + [ + "title", + "Close event test when an entangled port is GCed." + ], + [ + "script", + "/common/gc.js" + ] + ] + } + ] + ] + }, + "close.any.js": [ + "8741d894b9632653721863eaf44988a27c933e43", + [ + "webmessaging/message-channels/close.any.html", + {} + ], + [ + "webmessaging/message-channels/close.any.worker.html", + {} + ] + ], + "cross-document.html": [ + "f4512ba5a2a66deab9b97d5886ec04a113872c2c", + [ + null, + {} + ] + ], + "detached-iframe.window.js": [ + "c19f50ff9317e2ecab65647a5da2b2464e295a52", + [ + "webmessaging/message-channels/detached-iframe.window.html", + { + "script_metadata": [ + [ + "title", + "MessageChannel in a detached iframe test" + ], + [ + "script", + "/service-workers/service-worker/resources/test-helpers.sub.js" + ], + [ + "script", + "/common/gc.js" + ] + ] + } + ] + ], + "dictionary-transferrable.any.js": [ + "bf49fddb99271fb16262a8029a97ba52041300eb", + [ + "webmessaging/message-channels/dictionary-transferrable.any.html", + { + "script_metadata": [ + [ + "title", + "basic messagechannel with transfer" + ] + ] + } + ], + [ + "webmessaging/message-channels/dictionary-transferrable.any.worker.html", + { + "script_metadata": [ + [ + "title", + "basic messagechannel with transfer" + ] + ] + } + ] + ], + "implied-start.any.js": [ + "460d26b7e401c301b7f7e18ade6eb9bf1870b4c1", + [ + "webmessaging/message-channels/implied-start.any.html", + { + "script_metadata": [ + [ + "title", + "onmessage implied start()" + ] + ] + } + ], + [ + "webmessaging/message-channels/implied-start.any.worker.html", + { + "script_metadata": [ + [ + "title", + "onmessage implied start()" + ] + ] + } + ] + ], + "no-start.any.js": [ + "75b1ea1b26e8f2e1e871122b2ed3dd53a14690fe", + [ + "webmessaging/message-channels/no-start.any.html", + { + "script_metadata": [ + [ + "title", + "without start()" + ] + ] + } + ], + [ + "webmessaging/message-channels/no-start.any.worker.html", + { + "script_metadata": [ + [ + "title", + "without start()" + ] + ] + } + ] + ], + "user-activation.tentative.any.js": [ + "175662873c873476545895d1b4fc18674979e6ce", + [ + "webmessaging/message-channels/user-activation.tentative.any.html", + { + "script_metadata": [ + [ + "title", + "user activation messagechannel test" + ] + ] + } + ], + [ + "webmessaging/message-channels/user-activation.tentative.any.worker.html", + { + "script_metadata": [ + [ + "title", + "user activation messagechannel test" + ] + ] + } + ] + ], + "worker-post-after-close.any.js": [ + "2de0c434de2e28689ab3ae7e7719a368f17ed522", + [ + "webmessaging/message-channels/worker-post-after-close.any.html", + {} + ], + [ + "webmessaging/message-channels/worker-post-after-close.any.worker.html", + {} + ] + ], + "worker.any.js": [ + "633d89a3712f04feacc8df0c705022acc40d9bd8", + [ + "webmessaging/message-channels/worker.any.html", + {} + ], + [ + "webmessaging/message-channels/worker.any.worker.html", + {} + ] ] - ], - "NDEFReader_scan.https.html": [ - "a1a4a04db7a9b2dd0c2123ec68a8d50950362332", + }, + "messageerror.html": [ + "2cb51ee3c06c366529f66815587cef455e267666", [ null, {} ] ], - "NDEFReader_scan_iframe.https.html": [ - "6967c76ecd6d6bf6bfcb26c146931312f224734a", + "multi-globals": { + "broadcastchannel-current.sub.html": [ + "ae2369394e7e182b136a9341d148a5cb33f24600", + [ + null, + {} + ] + ], + "broadcastchannel-incumbent.sub.html": [ + "31a4221c1dbe539b7c6b06d7409526b1435dd33a", + [ + null, + {} + ] + ], + "messageport-current.html": [ + "ee172c6138d4f083574b2e77a21b6a4cfc017994", + [ + null, + {} + ] + ], + "messageport-incumbent.html": [ + "4d47fb8124b560c6d008157576f88c96711de689", + [ + null, + {} + ] + ] + }, + "postMessage_ArrayBuffer.sub.htm": [ + "457cf94fa56dcb60b92aaded544d3cd251b99f3a", [ null, {} ] ], - "NDEFReader_write.https.html": [ - "0463b779de9c5e79fa8a1c25d10c4a1866022c35", + "postMessage_CryptoKey_insecure.sub.html": [ + "8e5bdcb9c6fc82f84beeb561d4c70625dea0b7ee", [ null, {} ] ], - "NDEFReadingEvent_constructor.https.window.js": [ - "d812dbaf186024acce66f3403ccf2fcf0378d739", + "postMessage_Date.sub.htm": [ + "0f89738f3add51ddd3fd9f911705d52059b3fa3f", [ - "web-nfc/NDEFReadingEvent_constructor.https.window.html", - { - "script_metadata": [ - [ - "script", - "resources/nfc-helpers.js" - ] - ] - } + null, + {} ] ], - "NDEFRecord_constructor.https.window.js": [ - "57c5bf021268735418e63e2b40559d5861ee45c1", + "postMessage_Document.htm": [ + "c00a09a8658557c14d4c2925affb2660b9bd76bf", [ - "web-nfc/NDEFRecord_constructor.https.window.html", - { - "script_metadata": [ - [ - "script", - "resources/nfc-helpers.js" - ] - ] - } + null, + {} ] ], - "idlharness.https.window.js": [ - "72b5793f48e08c54157428ce3bf94982e23ba9b2", + "postMessage_Function.htm": [ + "3976cebb747bbe92bf1dc671a297b502954c52e9", [ - "web-nfc/idlharness.https.window.html", - { - "script_metadata": [ - [ - "script", - "/resources/WebIDLParser.js" - ], - [ - "script", - "/resources/idlharness.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } + null, + {} ] ], - "nfc_insecure_context.html": [ - "8c2eb5a14275b7a301ac418b2c5be48bd03705ed", + "postMessage_MessagePorts_sorigin.htm": [ + "6526e972c482999800fc5328899fdca1dd6f6a04", [ null, {} ] ], - "nfc_permission.https.window.js": [ - "9cb4209d2f49a9ab104c8c5db66273c5acdc943d", + "postMessage_MessagePorts_xorigin.sub.htm": [ + "cf2b8eb4c11b0b824a47677079c2d1b8837b3802", [ - "web-nfc/nfc_permission.https.window.html", - { - "script_metadata": [ - [ - "script", - "/resources/testdriver.js" - ], - [ - "script", - "/resources/testdriver-vendor.js" - ] - ] - } + null, + {} ] - ] - }, - "web-otp": { - "idlharness.https.window.js": [ - "ef4983b1ab6b21be19c696fd7787b1196e97ee6c", + ], + "postMessage_MessagePorts_xsite.sub.window.js": [ + "ca1e510edaa09f41350426e143923bb15e6df82b", [ - "web-otp/idlharness.https.window.html", + "webmessaging/postMessage_MessagePorts_xsite.sub.window.html", { "script_metadata": [ [ "script", - "/resources/WebIDLParser.js" - ], - [ - "script", - "/resources/idlharness.js" + "/common/get-host-info.sub.js" ] ] } ] - ] - }, - "web-share": { - "canShare-files.https.html": [ - "2c2f2ff9699020b0ffcaf97c65aa75eaafe799e2", - [ - null, - {} - ] ], - "canShare-insecure.http.html": [ - "ce81c7c0c8a4e6d023257fce6cbd5ed802fabc2c", + "postMessage_arrays.sub.htm": [ + "41e4a75eda616196ab3546943a0913785cbe69be", [ null, {} ] ], - "canShare.https.html": [ - "f0aed9a2446da0eef05c280fe4fe5b71757c8fb2", + "postMessage_asterisk_xorigin.sub.htm": [ + "2fab9431ef408cc34fb3929f91c5e5aaedd3caff", [ null, {} ] ], - "disabled-by-permissions-policy-cross-origin.https.sub.html": [ - "773da84c0c5bdd068b3a6a103f6f218270851f5b", + "postMessage_cross_domain_image_transfer_2d.sub.htm": [ + "4faf979274b292c69dd1a212f9e10de87a22c509", [ null, {} ] ], - "disabled-by-permissions-policy.https.sub.html": [ - "e9ea903965032e4165beb31ef3311bc22f95f249", + "postMessage_crosssite.sub.htm": [ + "25bccd9df27a6688ae823bc15e9badcf7534825e", [ null, - { - "testdriver": true - } + {} ] ], - "feature-policy-listed.tentative.html": [ - "8f709e68e7535b3878d061fee98dbeab8f8b2231", + "postMessage_dup_transfer_objects.htm": [ + "ade9515d3acd42e1a12bd97627a57f7a13e75787", [ null, {} ] ], - "idlharness.https.window.js": [ - "fbe59864af99c0a55b83e942f0e40f4d45de72a6", - [ - "web-share/idlharness.https.window.html", - { - "script_metadata": [ - [ - "script", - "/resources/WebIDLParser.js" - ], - [ - "script", - "/resources/idlharness.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ] - ], - "share-consume-activation.https.html": [ - "301469f83d8a6f27aa2ef0b87eb0e6fa583ecf2a", + "postMessage_invalid_targetOrigin.htm": [ + "e2b39df22df1bbe07f1220b4def7998a5a3f641d", [ null, - { - "testdriver": true - } + {} ] ], - "share-empty.https.html": [ - "0bca2f29607f03e14243a9088f69efaf9809b365", + "postMessage_objects.sub.htm": [ + "dab207188afbb48601c1ae12cec18cd2b080fd96", [ null, - { - "testdriver": true - } + {} ] ], - "share-securecontext.http.html": [ - "6344330c6b47b32e3872f3168c0edb604aef5499", + "postMessage_origin_mismatch.sub.htm": [ + "6c8ac8353a77224d14b2107779b3e69148bfb831", [ null, {} ] ], - "share-sharePromise-internal-slot.https.html": [ - "eb8bf7e4c7a321787c6a7882d0cdf30c9a59ec67", + "postMessage_origin_mismatch_xorigin.sub.htm": [ + "d8e38e2919fb539cd25da785815c45e55db1eecd", [ null, - { - "testdriver": true - } + {} ] ], - "share-url-invalid.https.html": [ - "cb76458c24c5632f4a97d3f8f5a744fc46d7b6a0", + "postMessage_solidus_sorigin.htm": [ + "92f5afb7985731ea35215b2acd3d76b90274fa6a", [ null, - { - "testdriver": true - } + {} ] ], - "share-without-user-gesture.https.html": [ - "1b2a764dbe8d634ecfdb92bdbca8809d5c87d843", + "postMessage_solidus_xorigin.sub.htm": [ + "eebc85432fe4d6d8136326492fc8442c7939d454", [ null, {} ] ], - "test-fully-active.https.html": [ - "46991d3370f6f55b4ca59dc8cd3bd14bf628e9a2", - [ - null, - { - "testdriver": true - } + "with-options": { + "broken-origin.html": [ + "795404b0ecf279a58cad1a477119c7d75d169ead", + [ + null, + {} + ] + ], + "host-specific-origin.html": [ + "5003bcc807c94404c42297a2ceb964eb38d5a1b9", + [ + null, + {} + ] + ], + "message-channel-transferable.html": [ + "d42db10695af68ca0d3f8264d7f703352783ff9b", + [ + null, + {} + ] + ], + "no-target-origin.html": [ + "517466cc4c3ee96ba82d2a27b38050bd2e0fbf53", + [ + null, + {} + ] + ], + "null-transfer.html": [ + "2ea09eb7ab4ada86bd4624e222fbdebc026d95e8", + [ + null, + {} + ] + ], + "one-arg.html": [ + "8246e55f31e0307a6c23fb8951936658028e5595", + [ + null, + {} + ] + ], + "slash-origin.html": [ + "8bfde73774d3974d893272df117643d48f01039e", + [ + null, + {} + ] + ], + "undefined-transferable.html": [ + "a123b7d9bd843f61f6dcf09e4fcab77d80a27200", + [ + null, + {} + ] + ], + "unknown-parameter.html": [ + "de050e74f5e2b5c4a102a3b0be1a43c4c2219117", + [ + null, + {} + ] ] - ] - }, - "webaudio": { - "historical.html": [ - "1f3146c39d5e6917ae593c9d3f0efa80b1e9567a", + }, + "with-ports": { + "001.html": [ + "62dcf5e9bfb893874761c1057d5d11c167679f58", + [ + null, + {} + ] + ], + "002.html": [ + "f7d085937cd5776fd9be5ede6a0417844c88d864", + [ + null, + {} + ] + ], + "003.html": [ + "47ddfbe81a5acefc5995dd39ef0291c42925f3f3", + [ + null, + {} + ] + ], + "004.html": [ + "d129ad119a8d229d4e20647f80f80fe4a6bb07e1", + [ + null, + {} + ] + ], + "005.html": [ + "e803968919836cdbbd65f2c62e2f09b1907d9498", + [ + null, + {} + ] + ], + "006.html": [ + "4e3f1ede8414b5664fedf1b9af03f25e6ee3678a", + [ + null, + {} + ] + ], + "007.html": [ + "c049a1337d32ede71cd625a16ad6db9f12b65350", + [ + null, + {} + ] + ], + "010.html": [ + "05080e3f7ae85a8b276569c6d532e9959bb78646", + [ + null, + {} + ] + ], + "011.html": [ + "782b3208ba4b69c35a595aab7b6d3e1ba2945e66", + [ + null, + {} + ] + ], + "012.html": [ + "6efe4c114ab00e496733a1edda1b497993d8ccd4", + [ + null, + {} + ] + ], + "013.html": [ + "248958ea108c17436a3df5479ea3005270106d2f", + [ + null, + {} + ] + ], + "014.html": [ + "3c970c42adea807a37a19d502c5c46f054e32a69", + [ + null, + {} + ] + ], + "015.html": [ + "a17c97be19a1d5972d1fa4af409f2bfe520759cf", + [ + null, + {} + ] + ], + "016.html": [ + "51cadec7c17609fd39ebbc8fa67b03abebc3f241", + [ + null, + {} + ] + ], + "017.html": [ + "94cd3e6ae2d8a6e6ea19bbe652a7fcdfc1b9c463", + [ + null, + {} + ] + ], + "018.html": [ + "5525206e44483dd73a3abf84465335a4af2ffc49", + [ + null, + {} + ] + ], + "019.html": [ + "e9de6c36e1faaeea6fa43784444f9f300ffb3a3e", + [ + null, + {} + ] + ], + "020.html": [ + "426a3d270008c82b1006adcc3783cbd914d19b34", + [ + null, + {} + ] + ], + "021.html": [ + "2801d45a44aeda6cdc7103c9cd360d3d38260bf3", + [ + null, + {} + ] + ], + "023.html": [ + "e2569a8463f51f0691f572de7024cd93936adb20", + [ + null, + {} + ] + ], + "024.html": [ + "e6c0dcba08676ae72e488302135dfc0d41c9c4c9", + [ + null, + {} + ] + ], + "025.html": [ + "7af2a852ed603c317227621d1eaf51831171956c", + [ + null, + {} + ] + ], + "026.html": [ + "2af90e6be3afe334ee44acb2d07221f6442b6641", + [ + null, + {} + ] + ], + "027.html": [ + "715835125811b13c69a7b820686401a9d0ac899b", + [ + null, + {} + ] + ] + }, + "without-ports": { + "001.html": [ + "09c28c5a5ce53af327ba9b36abb6659605138dc5", + [ + null, + {} + ] + ], + "002.html": [ + "ef3eceb2a0231b4fab4605dbfe356abc62cd6ba7", + [ + null, + {} + ] + ], + "003.html": [ + "6dc1e55777ba3d093d9de7eb4b281e5a1489fa53", + [ + null, + {} + ] + ], + "004.html": [ + "9a9eb81a5de844f44e43e6f1e55d06dbfddbdc65", + [ + null, + {} + ] + ], + "005.html": [ + "ed05a476bc45a4e2c3660f80e9c08c498549f509", + [ + null, + {} + ] + ], + "006.html": [ + "47479ea01184f30e97433c462bc765c5c85344e0", + [ + null, + {} + ] + ], + "007.html": [ + "eb2b5c52e56f3ed1d3aa20c16e5ec099213efac0", + [ + null, + {} + ] + ], + "009.html": [ + "d613b4a07344490806233e43498abf315a638082", + [ + null, + {} + ] + ], + "010.html": [ + "062316f68039e1a1d71f0b7b145b330efd7e3d5e", + [ + null, + {} + ] + ], + "011.html": [ + "cac2990c49a6f51b9e638c64a691f89d12a71e2a", + [ + null, + {} + ] + ], + "012.html": [ + "8eb46539b7efa008ae7472b35a925c8991b6916a", + [ + null, + {} + ] + ], + "013.html": [ + "34ba76221aa96a2d089aa5f70f7c20f5dcd6f086", + [ + null, + {} + ] + ], + "014.html": [ + "f200aa467361dbf1f9dc149993be048591b2b417", + [ + null, + {} + ] + ], + "015.html": [ + "a17c97be19a1d5972d1fa4af409f2bfe520759cf", + [ + null, + {} + ] + ], + "016.html": [ + "51cadec7c17609fd39ebbc8fa67b03abebc3f241", + [ + null, + {} + ] + ], + "017.html": [ + "a4a0483624f60a45e40d9d1dfb2b2e87e054ab55", + [ + null, + {} + ] + ], + "018.html": [ + "207ae36ed836dcad029368c2cf97d8196ec89933", + [ + null, + {} + ] + ], + "019.html": [ + "38e7ca230ed0747795a05963e1cfb59e5022ebbe", + [ + null, + {} + ] + ], + "020.html": [ + "61bfddb901fa27c9a8432517d799be46136a91db", + [ + null, + {} + ] + ], + "021.html": [ + "5072508d9c618921f03a36f840354cdcb3351068", + [ + null, + {} + ] + ], + "023.html": [ + "1e12ac4a55e632f9568a2c22cc6dd44f8a709152", + [ + null, + {} + ] + ], + "024.html": [ + "0e4651593a79862f8fdff1c4f65b4669a7d27bec", + [ + null, + {} + ] + ], + "025.html": [ + "4686febe94e0b24eb9799493d0741a4384ad75e5", + [ + null, + {} + ] + ], + "026.html": [ + "546da8a91b541cde8954eb4068b83e4169a65fea", + [ + null, + {} + ] + ], + "027.html": [ + "36aa9446a5e35e2db4eb53cea5e2b83e4e45aadf", + [ + null, + {} + ] + ], + "028.html": [ + "d51ad7d3b690d5bf852ae95365953c5479cc7a7f", + [ + null, + {} + ] + ], + "029.html": [ + "4b1b38f741c940bf0396b28912dcb4fb4902e393", + [ + null, + {} + ] + ] + }, + "worker_postMessage_user_activation.tentative.html": [ + "203bb149857be5ad8185516a89b1e98d7f2373a0", [ null, {} ] - ], + ] + }, + "webmidi": { "idlharness.https.window.js": [ - "e941a75c26752c6359ccef31b0635759cd784c0c", + "ed7e461603c5f4ac42b9b7a057907609df5700c8", [ - "webaudio/idlharness.https.window.html", + "webmidi/idlharness.https.window.html", { "script_metadata": [ [ @@ -741894,6 +776967,14 @@ "script", "/resources/idlharness.js" ], + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ], [ "timeout", "long" @@ -741902,12045 +776983,27309 @@ "timeout": "long" } ] - ], - "the-audio-api": { - "processing-model": { - "cycle-without-delay.html": [ - "cab0f6ca8e7f04fb97bd4087d00e936524ebead9", - [ - null, - {} - ] - ], - "delay-time-clamping.html": [ - "fa010df3cd51389a2629f757c9201778cc7f4aa5", - [ - null, - {} - ] - ], - "feedback-delay-time.html": [ - "96c2eb065866c3f42342e81c35fea50b75340939", - [ - null, - {} - ] - ] - }, - "the-analysernode-interface": { - "ctor-analyser.html": [ - "a9aa4831516c6a5cefa7c8b4f67f3ef246d24777", - [ - null, - {} - ] - ], - "realtimeanalyser-basic.html": [ - "e176d6111e81fbff6ce75d63bec563bede61de6b", - [ - null, - {} - ] - ], - "realtimeanalyser-fft-scaling.html": [ - "043bd5890a04c162720b401f2482bd6c1f26bcbc", - [ - null, - {} - ] - ], - "realtimeanalyser-fft-sizing.html": [ - "7ee6a2237edd209256ac2d46be6893a5305383a0", - [ - null, - {} - ] - ], - "test-analyser-gain.html": [ - "dff51a74c5943557503e8a0024ce56556c1150b0", - [ - null, - {} - ] - ], - "test-analyser-minimum.html": [ - "ab0fe6b2d6094f38d04a016f90b6873a5827da06", - [ - null, - { - "timeout": "long" - } - ] - ], - "test-analyser-output.html": [ - "43d56b8990e1c5101283f58f650bbc0efc801666", - [ - null, - { - "timeout": "long" - } - ] - ], - "test-analyser-scale.html": [ - "904b14bede544ac63a08dc422df63fb59d53c048", - [ - null, - {} - ] - ], - "test-analysernode.html": [ - "e8325388d1bf01e7bebe881ad0da1583f0e2f481", - [ - null, - {} - ] - ] - }, - "the-audiobuffer-interface": { - "acquire-the-content.html": [ - "70f5d8e32caa2eba5f090cb0deca6d27206b6401", - [ - null, - {} - ] - ], - "audiobuffer-copy-channel.html": [ - "c0cd49d32520fdf3c55248b1130da64d5845097d", - [ - null, - {} - ] - ], - "audiobuffer-getChannelData.html": [ - "612a91cf4ef60f6f1d441d27e2ab86f32b94f0fd", - [ - null, - {} - ] - ], - "audiobuffer-reuse.html": [ - "dabe323cbe2226d32c63576199eda61c1aecb168", - [ - null, - {} - ] - ], - "audiobuffer.html": [ - "a2c4581c4e80069f227fe29078bc3eb6409c8b4e", - [ - null, - {} - ] - ], - "ctor-audiobuffer.html": [ - "fbe6e42e3178f84d108bfd1c62518a4d13eb2dff", - [ - null, - {} - ] - ] - }, - "the-audiobuffersourcenode-interface": { - "active-processing.https.html": [ - "25565b7686601b23c4c920c5095b42a2a606a195", - [ - null, - {} - ] - ], - "audiobuffersource-basic.html": [ - "6ce7eb0c103f1d087d99ff6a995976e6ff8d594b", - [ - null, - {} - ] - ], - "audiobuffersource-channels.html": [ - "f3f16c4c648166dfdb394a41881d4a515d097e86", - [ - null, - {} - ] - ], - "audiobuffersource-duration-loop.html": [ - "abb8983cc0b1b1306faff44239050af91b655153", - [ - null, - {} - ] - ], - "audiobuffersource-ended.html": [ - "b9922f61ef399bf558a2f6d3c61154b9f14a512f", - [ - null, - {} - ] - ], - "audiobuffersource-grain.html": [ - "f554304a21eedff3af541c68bea6530b502bc22c", - [ - null, - {} - ] - ], - "audiobuffersource-multi-channels.html": [ - "4e0de21e96fa8470f5305d9405bdccf8f937e660", - [ - null, - {} - ] - ], - "audiobuffersource-null.html": [ - "b5b1ec0c3db2f02557d0be7f7c2d6499ea3ae8a7", - [ - null, - {} - ] - ], - "audiobuffersource-one-sample-loop.html": [ - "af1454a5a9f4644058c71715de7541e4800d2feb", - [ - null, - {} - ] - ], - "audiobuffersource-playbackrate-zero.html": [ - "5624054e3289a18d48fab3b4942f3bb16b9d1c03", - [ - null, - {} - ] - ], - "audiobuffersource-start.html": [ - "19331954b0b20cfb0bc193f94118b0aced467dc8", - [ - null, - {} - ] - ], - "audiosource-onended.html": [ - "20ef4a1c6381ffddd73f097de838dfe110b0e4e3", - [ - null, - {} - ] - ], - "audiosource-time-limits.html": [ - "3ac9c05938c2cac600f548ee796aedc48d470e63", - [ - null, - {} - ] - ], - "buffer-resampling.html": [ - "c181ceb8e0fad83067e11ec8aefe70f79ccf071c", - [ - null, - {} - ] - ], - "ctor-audiobuffersource.html": [ - "c1c3203451e62587b1aa864e85c63617c36c2a3d", - [ - null, - {} - ] + ] + }, + "webnn": { + "conformance_tests": { + "abs.https.any.js": [ + "ca9f3d3ca94fa02e51e58b0c9783ed63faf5d738", + [ + "webnn/conformance_tests/abs.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise abs operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "note-grain-on-play.html": [ - "37c4462addb675dfe0635e23e8485710b32542df", - [ - null, - {} - ] + [ + "webnn/conformance_tests/abs.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise abs operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "note-grain-on-timing.html": [ - "0db297b42cca3de45cdd212af1373fdc553729a5", - [ - null, - {} - ] + [ + "webnn/conformance_tests/abs.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise abs operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "sample-accurate-scheduling.html": [ - "5fafd024eef9b476f4d97b2ebaa2190a4ca520d5", - [ - null, - {} - ] + [ + "webnn/conformance_tests/abs.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise abs operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "sub-sample-buffer-stitching.html": [ - "3700bfa8ce806a57a4df6c050a9d299d9274edea", - [ - null, - {} - ] + [ + "webnn/conformance_tests/abs.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise abs operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "sub-sample-scheduling.html": [ - "8c627f90f22ca322daf890b9f2482fe0daad2176", - [ - null, - {} - ] + [ + "webnn/conformance_tests/abs.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise abs operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ] - }, - "the-audiocontext-interface": { - "audiocontext-detached-execution-context.html": [ - "a83fa1dbe676852cb8a0a3a06feaa3d6b5f5db69", - [ - null, - {} - ] - ], - "audiocontext-getoutputtimestamp-cross-realm.html": [ - "5889faf7ccd10b9a67ca3457c8c009dfc16d5e20", - [ - null, - {} - ] - ], - "audiocontext-getoutputtimestamp.html": [ - "952f38b1edceb62ab3f99c25777ebdb2c59e691a", - [ - null, - {} - ] - ], - "audiocontext-not-fully-active.html": [ - "e4f6001eda3e295b69b6989680e04bd67412f7a6", - [ - null, - {} - ] - ], - "audiocontext-sinkid-constructor.https.html": [ - "d2dc54aee6a7f93e846244e1f3ab88c3774cf917", - [ - null, - {} - ] - ], - "audiocontext-sinkid-setsinkid.https.html": [ - "61d2586bfb7d43a406fc661d31806c85c96904b0", - [ - null, - {} - ] - ], - "audiocontext-sinkid-state-change.https.html": [ - "8462b5261981f2b33de5682ce3e6130d69c01122", - [ - null, - {} - ] - ], - "audiocontext-state-change-after-close.http.window.js": [ - "c2e845365079b775ebfbd6b294b265724f7c9e22", - [ - "webaudio/the-audio-api/the-audiocontext-interface/audiocontext-state-change-after-close.http.window.html", - { - "script_metadata": [ - [ - "script", - "/resources/testharness.js" - ], - [ - "script", - "/resources/testharnessreport.js" - ] + ], + "add.https.any.js": [ + "17c04d1d2c188d67d415f5347b839a866bf4d55f", + [ + "webnn/conformance_tests/add.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise add operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" ] - } - ] - ], - "audiocontext-suspend-resume-close.html": [ - "c011f336df4424bd0ba00180dbe27d8b58d44c3f", - [ - null, - {} - ] - ], - "audiocontext-suspend-resume.html": [ - "ff3daebf39635a0a62951b387195bb463619202d", - [ - null, - {} - ] - ], - "audiocontextoptions.html": [ - "136abedaa8458f3ce5d003e8cc52db8c346f1a15", - [ - null, - {} - ] + ], + "timeout": "long" + } ], - "constructor-allowed-to-start.html": [ - "f866b5f7a1cb408c1a0c26c21c99bb7a28d53e82", - [ - null, - { - "testdriver": true - } - ] + [ + "webnn/conformance_tests/add.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise add operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "processing-after-resume.https.html": [ - "e000ab124fefa6f0eea4e5517d04436428c0cd8c", - [ - null, - {} - ] + [ + "webnn/conformance_tests/add.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise add operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "promise-methods-after-discard.html": [ - "2fb3c5a50bbad8d061e2e896ac6b3ab9f0bda849", - [ - null, - {} - ] + [ + "webnn/conformance_tests/add.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise add operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "suspend-after-construct.html": [ - "596a825c3db8b02e645cb1098222e89e737e12cb", - [ - null, - {} - ] + [ + "webnn/conformance_tests/add.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise add operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "suspend-with-navigation.html": [ - "b9328ae95d74aab9e3d0ae1ca509980c7c78ebb7", - [ - null, - { - "timeout": "long" - } - ] + [ + "webnn/conformance_tests/add.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise add operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ] - }, - "the-audionode-interface": { - "audionode-channel-rules.html": [ - "9067e6869bcf682e4f3f945d567a2d8a300d9f4b", - [ - null, - {} - ] - ], - "audionode-connect-method-chaining.html": [ - "02caea667bba2de523488174053aa251892eeec2", - [ - null, - {} - ] - ], - "audionode-connect-order.html": [ - "eca15dedfa0fdcd7b575fb45ad0804c3fc636ada", - [ - null, - {} - ] - ], - "audionode-connect-return-value.html": [ - "3af44fb7afcad39c9c3dc3dbc4f82cee38294b79", - [ - null, - {} - ] - ], - "audionode-disconnect-audioparam.html": [ - "0b09edd4a7007e54721c4e1d8fb1112e71e5cb1a", - [ - null, - {} - ] + ], + "arg_min_max.https.any.js": [ + "e730f5135e8a49d80324d24532ebcc862cd5ef62", + [ + "webnn/conformance_tests/arg_min_max.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API argMin/Max operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "audionode-disconnect.html": [ - "65b93222d1002e227ab1ad2e29b6e140b65bd9e4", - [ - null, - {} - ] + [ + "webnn/conformance_tests/arg_min_max.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API argMin/Max operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "audionode-iframe.window.js": [ - "89bdf2aa9824eaae0c93ca548fe9fe46181285f1", - [ - "webaudio/the-audio-api/the-audionode-interface/audionode-iframe.window.html", - {} - ] + [ + "webnn/conformance_tests/arg_min_max.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API argMin/Max operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "audionode.html": [ - "0b57d27e8e1a7b7339d0e47641cbba27ab419612", - [ - null, - {} - ] + [ + "webnn/conformance_tests/arg_min_max.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API argMin/Max operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "channel-mode-interp-basic.html": [ - "35cfca8e4eec6809832845aa48388d0a30c602fb", - [ - null, - {} - ] + [ + "webnn/conformance_tests/arg_min_max.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API argMin/Max operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "different-contexts.html": [ - "f763d3478784a3e4e7255d67726ec5cfdfad5214", - [ - null, - {} - ] + [ + "webnn/conformance_tests/arg_min_max.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API argMin/Max operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ] - }, - "the-audioparam-interface": { - "adding-events.html": [ - "ab527b6695cef3f17fa2e41e6d2dc6fa1b36c32a", - [ - null, - {} - ] - ], - "audioparam-cancel-and-hold.html": [ - "0a8e7a7f2f67ab837a6ca17577afa018858e86bf", - [ - null, - {} - ] - ], - "audioparam-close.html": [ - "b5555b0137af4c1c8f6c5578de4bc9c5eedfe405", - [ - null, - {} - ] - ], - "audioparam-connect-audioratesignal.html": [ - "b0455f86bc0f9880980c1e83fe729d5b6d698f13", - [ - null, - {} - ] - ], - "audioparam-default-value.window.js": [ - "359df111846403c1ba9038792dabd6e8989f9d96", - [ - "webaudio/the-audio-api/the-audioparam-interface/audioparam-default-value.window.html", - { - "script_metadata": [ - [ - "script", - "/resources/testharness.js" - ], - [ - "script", - "/resources/testharnessreport.js" - ] + ], + "batch_normalization.https.any.js": [ + "08dda14db28e781db2defc683b9fc86964d3f30a", + [ + "webnn/conformance_tests/batch_normalization.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API batchNormalization operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" ] - } - ] - ], - "audioparam-exceptional-values.html": [ - "982731d33843544d2f70af72a51e9bd878bbf486", - [ - null, - {} - ] - ], - "audioparam-exponentialRampToValueAtTime.html": [ - "bec4c1286b4aaf7ba1b7aa7209ff41dad6c02dbd", - [ - null, - {} - ] - ], - "audioparam-large-endtime.html": [ - "d8f38eeba0857a352badbdbeef3eca8bf9a6f087", - [ - null, - {} - ] - ], - "audioparam-linearRampToValueAtTime.html": [ - "509c254d92d891a1f4e6820760e757b03d02366f", - [ - null, - {} - ] - ], - "audioparam-method-chaining.html": [ - "ffe46035fd7d7ac0129f869e4e9cb46e1768e57b", - [ - null, - {} - ] - ], - "audioparam-nominal-range.html": [ - "517fc6e956745aeb27ab151305a81abbb637fb64", - [ - null, - {} - ] - ], - "audioparam-setTargetAtTime.html": [ - "faf00c007b375a365bbb6b00e4051d44852d0fdc", - [ - null, - {} - ] - ], - "audioparam-setValueAtTime.html": [ - "ab2edfd009f1320fdb8e0a49dffb984baed36f05", - [ - null, - {} - ] + ], + "timeout": "long" + } ], - "audioparam-setValueCurve-exceptions.html": [ - "ed0c15fb9b3bdf5a9c79e48f97949b21ac05a952", - [ - null, - {} - ] + [ + "webnn/conformance_tests/batch_normalization.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API batchNormalization operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "audioparam-setValueCurveAtTime.html": [ - "de8406244bc386981c0527629e3685f250c6a659", - [ - null, - {} - ] + [ + "webnn/conformance_tests/batch_normalization.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API batchNormalization operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "audioparam-summingjunction.html": [ - "9084942f7032cd00d9d57b8d4d1f6ba2742ab57f", - [ - null, - {} - ] + [ + "webnn/conformance_tests/batch_normalization.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API batchNormalization operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "automation-rate.html": [ - "a3c11994bbe37f26aa1c2eafbb4f287d559fae34", - [ - null, - {} - ] + [ + "webnn/conformance_tests/batch_normalization.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API batchNormalization operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "cancel-scheduled-values.html": [ - "ac1da8cd51badb3243d32dc8f15a494f1866f583", - [ - null, - {} - ] + [ + "webnn/conformance_tests/batch_normalization.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API batchNormalization operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } + ] + ], + "buffer.https.any.js": [ + "31a33d9e70654d9c9a10baf7326e2bc86f015982", + [ + "webnn/conformance_tests/buffer.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API buffer operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "event-insertion.html": [ - "b846f982ab29faf2010dfac249f7ba031dcba172", - [ - null, - {} - ] + [ + "webnn/conformance_tests/buffer.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API buffer operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "exponentialRamp-special-cases.html": [ - "d1978098218f3aac04a6190b6c72377494dc5636", - [ - null, - {} - ] + [ + "webnn/conformance_tests/buffer.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API buffer operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "k-rate-audiobuffersource-connections.html": [ - "0b94bd70f9f7c5da26654845ec784d6805f4117e", - [ - null, - {} - ] + [ + "webnn/conformance_tests/buffer.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API buffer operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "k-rate-audioworklet-connections.https.html": [ - "4d2eb40d5520fd49310ab2dc16934890fdc858a2", - [ - null, - {} - ] + [ + "webnn/conformance_tests/buffer.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API buffer operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "k-rate-audioworklet.https.html": [ - "e891da6da2b02924aac74b9e850677dc080b57b0", - [ - null, - {} - ] + [ + "webnn/conformance_tests/buffer.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API buffer operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } + ] + ], + "byob_readbuffer.https.any.js": [ + "3b9546c50f0c63da99f0ae4db328f120ad09a8bd", + [ + "webnn/conformance_tests/byob_readbuffer.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API buffer operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "k-rate-biquad-connection.html": [ - "ab9df8740fab30d0395750590f9832b65f257a92", - [ - null, - {} - ] + [ + "webnn/conformance_tests/byob_readbuffer.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API buffer operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "k-rate-biquad.html": [ - "85ae4f175fe182a4bf993443163dea14f00fa203", - [ - null, - {} - ] + [ + "webnn/conformance_tests/byob_readbuffer.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API buffer operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "k-rate-connections.html": [ - "730f03e5619577abf98c30b5566cddeeccf31551", - [ - null, - {} - ] + [ + "webnn/conformance_tests/byob_readbuffer.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API buffer operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "k-rate-constant-source.html": [ - "0bea5c91f8538e6b0e9d587af1b5c8e4b018ab62", - [ - null, - {} - ] + [ + "webnn/conformance_tests/byob_readbuffer.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API buffer operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "k-rate-delay-connections.html": [ - "fcf66f2e3ef79438f412848ee64b9e73ab06554a", - [ - null, - {} - ] + [ + "webnn/conformance_tests/byob_readbuffer.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API buffer operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } + ] + ], + "cast.https.any.js": [ + "a4223736f612173e8fe76635ece98011515123ef", + [ + "webnn/conformance_tests/cast.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API cast operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "k-rate-delay.html": [ - "5465c3943089e36b7dc95f65454904115beda55f", - [ - null, - {} - ] + [ + "webnn/conformance_tests/cast.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API cast operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "k-rate-dynamics-compressor-connections.html": [ - "c1755cd1559474a464024a2b0344c5dd1d95e803", - [ - null, - {} - ] + [ + "webnn/conformance_tests/cast.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API cast operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "k-rate-gain.html": [ - "887d9f78db8a79b0aae96b9cdf818cde7b33aa6c", - [ - null, - {} - ] + [ + "webnn/conformance_tests/cast.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API cast operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "k-rate-oscillator-connections.html": [ - "475b36436728709ad58d25ee300af094ea208eac", - [ - null, - {} - ] + [ + "webnn/conformance_tests/cast.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API cast operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "k-rate-oscillator.html": [ - "6803f55eab00bbfb9766cc044a7240e6b4a0fda0", - [ - null, - {} - ] + [ + "webnn/conformance_tests/cast.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API cast operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } + ] + ], + "ceil.https.any.js": [ + "2e490bd1ecb07110b4160a69a44da1d1cdc1769f", + [ + "webnn/conformance_tests/ceil.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise ceil operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "k-rate-panner-connections.html": [ - "001cf63bd36dccea41112f865f6b0747f8168906", - [ - null, - {} - ] + [ + "webnn/conformance_tests/ceil.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise ceil operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "k-rate-panner.html": [ - "60200b24712c29a92d73b6215b85f734999b8209", - [ - null, - {} - ] + [ + "webnn/conformance_tests/ceil.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise ceil operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "k-rate-stereo-panner.html": [ - "06905b89c31884ca9f5ec012a2263d68840d043f", - [ - null, - {} - ] + [ + "webnn/conformance_tests/ceil.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise ceil operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "moderate-exponentialRamp.html": [ - "cf32d253ae625cf82f9475b5469dfdef9973cc8f", - [ - null, - {} - ] + [ + "webnn/conformance_tests/ceil.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise ceil operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "nan-param.html": [ - "e9b8f0accbd1b0359275615f3ef12bd7e9317c4f", - [ - null, - {} - ] + [ + "webnn/conformance_tests/ceil.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise ceil operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } + ] + ], + "clamp.https.any.js": [ + "115ddabc6d66d5161f547d16c94e54af5d32233d", + [ + "webnn/conformance_tests/clamp.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API clamp operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "retrospective-exponentialRampToValueAtTime.html": [ - "c81c3ad23eb9c10f5cf6499bada9ed58bca68b24", - [ - null, - {} - ] + [ + "webnn/conformance_tests/clamp.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API clamp operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "retrospective-linearRampToValueAtTime.html": [ - "9f5e55fe55fec3be2af3b9b468cc329dd62e9616", - [ - null, - {} - ] + [ + "webnn/conformance_tests/clamp.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API clamp operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "retrospective-setTargetAtTime.html": [ - "41a37bdb913efbf7a9c392b1130cc0bd9a65c251", - [ - null, - {} - ] + [ + "webnn/conformance_tests/clamp.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API clamp operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "retrospective-setValueAtTime.html": [ - "32cdc6307fcfd3ed53abb460702601b39cf8b5ed", - [ - null, - {} - ] + [ + "webnn/conformance_tests/clamp.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API clamp operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "retrospective-setValueCurveAtTime.html": [ - "451b6ea82969506aa75d65e0fa3170c106c87abb", - [ - null, - {} - ] + [ + "webnn/conformance_tests/clamp.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API clamp operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } + ] + ], + "compute-arraybufferview-with-bigger-arraybuffer.https.any.js": [ + "e1e647ee50cf49049ff5901403a328cee2983950", + [ + "webnn/conformance_tests/compute-arraybufferview-with-bigger-arraybuffer.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN MLContext.compute() for ArrayBufferView created from bigger ArrayBuffer" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ] + ] + } ], - "set-target-conv.html": [ - "2ed076cccf758caaec1c381e89254b10ff7cd7d5", - [ - null, - {} - ] + [ + "webnn/conformance_tests/compute-arraybufferview-with-bigger-arraybuffer.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN MLContext.compute() for ArrayBufferView created from bigger ArrayBuffer" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ] + ] + } ], - "setTargetAtTime-after-event-within-block.html": [ - "ca02b0db975de7bd80b4b5cd701acdd7e512e0de", - [ - null, - {} - ] + [ + "webnn/conformance_tests/compute-arraybufferview-with-bigger-arraybuffer.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN MLContext.compute() for ArrayBufferView created from bigger ArrayBuffer" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ] + ] + } ], - "setValueAtTime-within-block.html": [ - "36fde2b9964953f196a811add078c63610373334", - [ - null, - {} - ] - ] - }, - "the-audioworklet-interface": { - "audioworklet-addmodule-resolution.https.html": [ - "dc324b22d6539d5383ed53f68ab911f6e96fd0dd", - [ - null, - {} - ] + [ + "webnn/conformance_tests/compute-arraybufferview-with-bigger-arraybuffer.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN MLContext.compute() for ArrayBufferView created from bigger ArrayBuffer" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ] + ] + } ], - "audioworklet-audioparam-iterable.https.html": [ - "9e93f48ab878c5f9208dae7a6d2278cd98ab4529", - [ - null, - {} - ] + [ + "webnn/conformance_tests/compute-arraybufferview-with-bigger-arraybuffer.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN MLContext.compute() for ArrayBufferView created from bigger ArrayBuffer" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ] + ] + } ], - "audioworklet-audioparam-size.https.html": [ - "9578b268815a89d31457df8cdd7a088e9df13c7c", - [ - null, - {} - ] + [ + "webnn/conformance_tests/compute-arraybufferview-with-bigger-arraybuffer.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN MLContext.compute() for ArrayBufferView created from bigger ArrayBuffer" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ] + ] + } + ] + ], + "concat.https.any.js": [ + "6beb089e84efd8fce9f7dc6eb4b2ca8afa25646b", + [ + "webnn/conformance_tests/concat.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API concat operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "audioworklet-audioparam.https.html": [ - "8e51470f646f63abaed321c3efd3e9e25906edea", - [ - null, - {} - ] + [ + "webnn/conformance_tests/concat.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API concat operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "audioworklet-denormals.https.window.js": [ - "39b9be56e6484e78fee1e86d4974ef09ec37b4ca", - [ - "webaudio/the-audio-api/the-audioworklet-interface/audioworklet-denormals.https.window.html", - {} - ] + [ + "webnn/conformance_tests/concat.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API concat operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "audioworklet-messageport.https.html": [ - "546bd1d0d0e34480113290bcc5008f0240be8d4a", - [ - null, - {} - ] + [ + "webnn/conformance_tests/concat.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API concat operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "audioworklet-postmessage-sharedarraybuffer.https.html": [ - "a5dd004981157c8791c391fbb71e4aa2620559c8", - [ - null, - {} - ] + [ + "webnn/conformance_tests/concat.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API concat operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "audioworklet-registerprocessor-called-on-globalthis.https.html": [ - "718cadffc716f04548af6caeeca9e075846b6d46", - [ - null, - {} - ] + [ + "webnn/conformance_tests/concat.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API concat operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } + ] + ], + "conv2d.https.any.js": [ + "b3354728634a9bf5848f75ce1d13abd0a3375453", + [ + "webnn/conformance_tests/conv2d.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API conv2d operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "audioworklet-registerprocessor-constructor.https.window.js": [ - "679480b480d64d19e825f63ad3798a50d0e3204b", - [ - "webaudio/the-audio-api/the-audioworklet-interface/audioworklet-registerprocessor-constructor.https.window.html", - {} - ] + [ + "webnn/conformance_tests/conv2d.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API conv2d operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "audioworklet-registerprocessor-dynamic.https.html": [ - "de31f71427d5cd29e61935e8f82217e1c8bc0341", - [ - null, - {} - ] + [ + "webnn/conformance_tests/conv2d.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API conv2d operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "audioworklet-suspend.https.html": [ - "685546aeb5e2f96e77e9c88cec19946f2b0fcb16", - [ - null, - {} - ] + [ + "webnn/conformance_tests/conv2d.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API conv2d operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "audioworklet-throw-onmessage.https.html": [ - "3a480464e9d8ff9b8747eb02ada05c52f4d118e0", - [ - null, - {} - ] + [ + "webnn/conformance_tests/conv2d.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API conv2d operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "audioworkletglobalscope-sample-rate.https.html": [ - "84458d0aaa77788b6de7ccd09b64f18a6bf9ede4", - [ - null, - {} - ] + [ + "webnn/conformance_tests/conv2d.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API conv2d operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } + ] + ], + "conv_transpose2d.https.any.js": [ + "a76f180b55667756bc09bb635488721b1c340e62", + [ + "webnn/conformance_tests/conv_transpose2d.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API convTranspose2d operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "audioworkletglobalscope-timing-info.https.html": [ - "5f4bee7c5312c89207a25801cd0c2d6055ec00b5", - [ - null, - {} - ] + [ + "webnn/conformance_tests/conv_transpose2d.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API convTranspose2d operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "audioworkletnode-automatic-pull.https.html": [ - "330b359f7d9c4dbe24056a763ef3473389839192", - [ - null, - {} - ] + [ + "webnn/conformance_tests/conv_transpose2d.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API convTranspose2d operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "audioworkletnode-channel-count.https.html": [ - "11c237f19dd9d966d0367cc3c837c998886270fa", - [ - null, - {} - ] + [ + "webnn/conformance_tests/conv_transpose2d.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API convTranspose2d operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "audioworkletnode-construction.https.html": [ - "8b7704a781b712c0129b650da898ed79baad794c", - [ - null, - {} - ] + [ + "webnn/conformance_tests/conv_transpose2d.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API convTranspose2d operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "audioworkletnode-constructor-options.https.html": [ - "d3347d265e42365dcba1190c9a91a30a7e2a6589", - [ - null, - {} - ] + [ + "webnn/conformance_tests/conv_transpose2d.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API convTranspose2d operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } + ] + ], + "cos.https.any.js": [ + "5ad92e7014a8b826ddd7c622f1edb5d9a6a6fda0", + [ + "webnn/conformance_tests/cos.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise cos operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "audioworkletnode-disconnected-input.https.html": [ - "c58502af01192c13884f303b8345a017af9ad3a9", - [ - null, - {} - ] + [ + "webnn/conformance_tests/cos.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise cos operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "audioworkletnode-onerror.https.html": [ - "95126a8c867787852583add14849efacde1dcaa4", - [ - null, - {} - ] + [ + "webnn/conformance_tests/cos.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise cos operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "audioworkletnode-output-channel-count.https.html": [ - "8dafa2f8111a8b522be5540a2fbf4f9a3ee5cd6e", - [ - null, - {} - ] + [ + "webnn/conformance_tests/cos.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise cos operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "audioworkletprocessor-options.https.html": [ - "ea840ed11ad59bdcbb62773b43c4e404a2903233", - [ - null, - {} - ] + [ + "webnn/conformance_tests/cos.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise cos operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "audioworkletprocessor-param-getter-overridden.https.html": [ - "e3fb6e533df8ccaa88564f836239e0c9e9c1d5e4", - [ - null, - {} - ] + [ + "webnn/conformance_tests/cos.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise cos operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } + ] + ], + "div.https.any.js": [ + "69183ee1097b1aacd36f863383fc5b846741e0a4", + [ + "webnn/conformance_tests/div.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise div operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "audioworkletprocessor-process-frozen-array.https.html": [ - "33627204a6f538eba77bd8346952404814e4affa", - [ - null, - {} - ] + [ + "webnn/conformance_tests/div.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise div operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "audioworkletprocessor-process-zero-outputs.https.html": [ - "e1c19f0d759566f9d138eb2a05cc31e6d55575cf", - [ - null, - {} - ] + [ + "webnn/conformance_tests/div.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise div operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "audioworkletprocessor-promises.https.html": [ - "079b57b959ad089b9ca43dcd1a42b2fd0d032d3a", - [ - null, - {} - ] + [ + "webnn/conformance_tests/div.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise div operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "baseaudiocontext-audioworklet.https.html": [ - "4281f56379bb20f1e173c22c99ab208d2be0fdd4", - [ - null, - {} - ] + [ + "webnn/conformance_tests/div.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise div operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "extended-audioworkletnode-with-parameters.https.html": [ - "75f4aa4020d303c91209d1de4f6efb127b5f3eb0", - [ - null, - {} - ] + [ + "webnn/conformance_tests/div.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise div operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } + ] + ], + "elu.https.any.js": [ + "75b982944ba972cd01fd7fe606a4e062511ec524", + [ + "webnn/conformance_tests/elu.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API elu operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "process-getter.https.html": [ - "a4c59123a104600c148f620bb32c78f112fdd12a", - [ - null, - {} - ] + [ + "webnn/conformance_tests/elu.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API elu operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "process-parameters.https.html": [ - "4c6a10dfab3c29c0d3009e2a9650ad2d498c869a", - [ - null, - {} - ] + [ + "webnn/conformance_tests/elu.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API elu operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "processor-construction-port.https.html": [ - "6f1aa592250a3dc355ce792ce637ff67b32560a3", - [ - null, - {} - ] + [ + "webnn/conformance_tests/elu.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API elu operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "simple-input-output.https.html": [ - "7b9e7f0ac3d36f9f94fbbfffb1c15f8da05745c3", - [ - null, - {} - ] + [ + "webnn/conformance_tests/elu.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API elu operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "suspended-context-messageport.https.html": [ - "f6fa6ddd98613016ff9aeb92aa2929aa81e20f75", - [ - null, - {} - ] + [ + "webnn/conformance_tests/elu.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API elu operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ] - }, - "the-biquadfilternode-interface": { - "biquad-allpass.html": [ - "86618f9e46dbc1b5462f949cadf703ac59993577", - [ - null, - {} - ] + ], + "equal.https.any.js": [ + "c763786d4aff522f8be95750cd4f033490c1db90", + [ + "webnn/conformance_tests/equal.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise equal operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "biquad-automation.html": [ - "d459d16fb1ad6774553e896f88c47968c6da5917", - [ - null, - {} - ] + [ + "webnn/conformance_tests/equal.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise equal operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "biquad-bandpass.html": [ - "166aa9b3cb8813db11e245edbcea628bf87ef051", - [ - null, - {} - ] + [ + "webnn/conformance_tests/equal.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise equal operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "biquad-basic.html": [ - "441e98a251187c3cc600299681306d29df11e618", - [ - null, - {} - ] + [ + "webnn/conformance_tests/equal.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise equal operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "biquad-getFrequencyResponse.html": [ - "23222e4df9698d408b886ea108cc4c732a7d61fe", - [ - null, - {} - ] + [ + "webnn/conformance_tests/equal.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise equal operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "biquad-highpass.html": [ - "45c335bc4b894838a28f6aa6c452d4b6a98c824a", - [ - null, - {} - ] + [ + "webnn/conformance_tests/equal.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise equal operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } + ] + ], + "erf.https.any.js": [ + "78fc81ea74a693f0ebe4a76bf186de007a427000", + [ + "webnn/conformance_tests/erf.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise erf operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "biquad-highshelf.html": [ - "345195f104e673e0e2481481f0b5e4cd5dbc0dea", - [ - null, - {} - ] + [ + "webnn/conformance_tests/erf.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise erf operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "biquad-lowpass.html": [ - "d20786e36b16d7ba36841dd5fcfb30c081113fb2", - [ - null, - {} - ] + [ + "webnn/conformance_tests/erf.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise erf operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "biquad-lowshelf.html": [ - "ab76cefd4bc3de478a2c450638b8adf5de5a929c", - [ - null, - {} - ] + [ + "webnn/conformance_tests/erf.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise erf operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "biquad-notch.html": [ - "98e6e6e02c0813692c579821b48b84959cb89367", - [ - null, - {} - ] + [ + "webnn/conformance_tests/erf.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise erf operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/erf.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise erf operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } + ] + ], + "exp.https.any.js": [ + "9d67712ee60cdf14584ad8c66a9df02d62fee822", + [ + "webnn/conformance_tests/exp.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise exp operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "biquad-peaking.html": [ - "90b7c1546de30e1099379e1672ea48edca7c6ba4", - [ - null, - {} - ] + [ + "webnn/conformance_tests/exp.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise exp operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "biquad-tail.html": [ - "3141bf7ff31fd39101e0635ad4febdd090f679eb", - [ - null, - {} - ] + [ + "webnn/conformance_tests/exp.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise exp operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "biquadfilternode-basic.html": [ - "7e71d073024cb2040b7a4d7ea5ff681f803e21b0", - [ - null, - {} - ] + [ + "webnn/conformance_tests/exp.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise exp operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "ctor-biquadfilter.html": [ - "e63479f985920745f75b857fa7b639417d5bf208", - [ - null, - {} - ] + [ + "webnn/conformance_tests/exp.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise exp operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "no-dezippering.html": [ - "79dc27035c7dbd8176f980278bdddab55a76c731", - [ - null, - {} - ] + [ + "webnn/conformance_tests/exp.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise exp operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ] - }, - "the-channelmergernode-interface": { - "active-processing.https.html": [ - "9012526bdc64e5e62d246045465b84aef8d06f76", - [ - null, - {} - ] + ], + "expand.https.any.js": [ + "6f94795370fab10c825a74534ae2cbc3bf74eb15", + [ + "webnn/conformance_tests/expand.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API expand operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "audiochannelmerger-basic.html": [ - "71a62f176f8eefd9b9168b2c222cc6d1c752d3a5", - [ - null, - {} - ] + [ + "webnn/conformance_tests/expand.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API expand operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "audiochannelmerger-disconnect.html": [ - "ad74d5e00457e6ccd1b165940ecad140a423d247", - [ - null, - {} - ] + [ + "webnn/conformance_tests/expand.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API expand operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "audiochannelmerger-input-non-default.html": [ - "6fe77ab7634bb8e6c63ba61625dc4b61ce19389d", - [ - null, - {} - ] + [ + "webnn/conformance_tests/expand.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API expand operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "audiochannelmerger-input.html": [ - "66a70dcb3babb4e9a96229dd247addae828f14d3", - [ - null, - {} - ] + [ + "webnn/conformance_tests/expand.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API expand operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "ctor-channelmerger.html": [ - "0d6b45c56df0f43a0eac3f364cadca2e4669c6ed", - [ - null, - {} - ] + [ + "webnn/conformance_tests/expand.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API expand operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ] - }, - "the-channelsplitternode-interface": { - "audiochannelsplitter.html": [ - "954c71a96b288530e6c22878fed7a91f42091dc2", - [ - null, - {} - ] + ], + "floor.https.any.js": [ + "4cca407cd4c3df4bba1e94a68ca2adbd97d26927", + [ + "webnn/conformance_tests/floor.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise floor operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "ctor-channelsplitter.html": [ - "b7165bac33a36dc8778e7d90ff52f987bf459f5d", - [ - null, - {} - ] - ] - }, - "the-constantsourcenode-interface": { - "constant-source-basic.html": [ - "4f925df5cd642746dccce76be94b28b501a2ac52", - [ - null, - {} - ] + [ + "webnn/conformance_tests/floor.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise floor operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "constant-source-onended.html": [ - "64bc54f21b32fece90c58e70c22112ff24735576", - [ - null, - {} - ] + [ + "webnn/conformance_tests/floor.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise floor operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "constant-source-output.html": [ - "5990376cff65b88b1bcba184b089ca62c2d50eed", - [ - null, - {} - ] + [ + "webnn/conformance_tests/floor.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise floor operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "ctor-constantsource.html": [ - "ea4a65e146babcdad6d1c5429a1250963d120378", - [ - null, - {} - ] + [ + "webnn/conformance_tests/floor.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise floor operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "test-constantsourcenode.html": [ - "9dd03ea1167eb983a8d67c1e3799ae8c796cca86", - [ - null, - {} - ] + [ + "webnn/conformance_tests/floor.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise floor operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ] - }, - "the-convolvernode-interface": { - "active-processing.https.html": [ - "0712d6bccefd71730994b78cf26caabaaf1d92d2", - [ - null, - {} - ] - ], - "convolution-mono-mono.html": [ - "570efebe220e94e68ffe3f067595e4cfe766a1b4", - [ - null, - {} - ] - ], - "convolver-cascade.html": [ - "20bdfbdf4e35a99168df41a68e6bb8a792e7ca8c", - [ - null, - {} - ] + ], + "gather.https.any.js": [ + "3befa3818fcef7abd4aaeb9d28bae84f53546940", + [ + "webnn/conformance_tests/gather.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API gather operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "convolver-channels.html": [ - "ac4f198d7c1449f38ca14963f73b0d3d90b40b5b", - [ - null, - {} - ] + [ + "webnn/conformance_tests/gather.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API gather operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "convolver-response-1-chan.html": [ - "e239a5e86f9797c1fdaf8dfdc705937ef45e8110", - [ - null, - {} - ] + [ + "webnn/conformance_tests/gather.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API gather operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "convolver-response-2-chan.html": [ - "a73eb3f8abb1c974366d5e528c3d30353443edc7", - [ - null, - {} - ] + [ + "webnn/conformance_tests/gather.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API gather operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "convolver-response-4-chan.html": [ - "f188d87b71f4c5d134feebd10ba95ffe165debb1", - [ - null, - {} - ] + [ + "webnn/conformance_tests/gather.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API gather operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "convolver-setBuffer-already-has-value.html": [ - "ce2d5fcfe940b89b4ed04bc62a7be5f15131b64b", - [ - null, - {} - ] + [ + "webnn/conformance_tests/gather.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API gather operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } + ] + ], + "gelu.https.any.js": [ + "446c5bc4effb9727c3577b588f361952ba3ee0ae", + [ + "webnn/conformance_tests/gelu.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API gelu operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "convolver-setBuffer-null.html": [ - "d35b8ec54b61d3c998e90dc0739b97bca4c1b022", - [ - null, - {} - ] + [ + "webnn/conformance_tests/gelu.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API gelu operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "convolver-upmixing-1-channel-response.html": [ - "b0b3a5965e1d0f8e2de211b06ceeca58e417a16f", - [ - null, - {} - ] + [ + "webnn/conformance_tests/gelu.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API gelu operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "ctor-convolver.html": [ - "28a0fc1c3c75e5b5804d892798ad8f38aa3216e3", - [ - null, - {} - ] + [ + "webnn/conformance_tests/gelu.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API gelu operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "realtime-conv.html": [ - "505f0f03f54c6292969a510f7eb643340bbf76e3", - [ - null, - {} - ] + [ + "webnn/conformance_tests/gelu.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API gelu operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "transferred-buffer-output.html": [ - "e37a98c3861b6c2f0139b870d745ad0977fff10b", - [ - null, - {} - ] + [ + "webnn/conformance_tests/gelu.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API gelu operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ] - }, - "the-delaynode-interface": { - "ctor-delay.html": [ - "e7ccefc655364d20bb240beacc81a4f7a10806dd", - [ - null, - {} - ] - ], - "delay-test.html": [ - "6277c253ec0daffea06fa924d11e4e6f8d5b03f1", - [ - null, - {} - ] + ], + "gemm.https.any.js": [ + "70b2ecb5e1e72670eefa03994020bc13e41e87e4", + [ + "webnn/conformance_tests/gemm.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API gemm operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "delaynode-channel-count-1.html": [ - "dd964ef9e36b1fb46f58c570d8337917541d80d1", - [ - null, - {} - ] + [ + "webnn/conformance_tests/gemm.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API gemm operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "delaynode-max-default-delay.html": [ - "ef526c96ffcfc2d420b421ab63d02d9a5486f3cc", - [ - null, - {} - ] + [ + "webnn/conformance_tests/gemm.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API gemm operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "delaynode-max-nondefault-delay.html": [ - "3be07255e15b7dc33d96bf08b08b9e029b080d5f", - [ - null, - {} - ] + [ + "webnn/conformance_tests/gemm.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API gemm operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "delaynode-maxdelay.html": [ - "a43ceeb7be9371864b7449c491d196d892b5e3d3", - [ - null, - {} - ] + [ + "webnn/conformance_tests/gemm.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API gemm operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "delaynode-maxdelaylimit.html": [ - "caf2f85dfd459b2d48526b8f4c13b37b2bceaddb", - [ - null, - {} - ] + [ + "webnn/conformance_tests/gemm.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API gemm operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } + ] + ], + "greater.https.any.js": [ + "e9a63b1682a69ca3ad988ed7e6bd377d7ad6589c", + [ + "webnn/conformance_tests/greater.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise greater operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "delaynode-scheduling.html": [ - "af6c54950a18256b84d0d72c3dda59987ada2012", - [ - null, - {} - ] + [ + "webnn/conformance_tests/greater.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise greater operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "delaynode.html": [ - "da508e439fb328534e4cfc23568cec4bd54f08c6", - [ - null, - {} - ] + [ + "webnn/conformance_tests/greater.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise greater operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "maxdelay-rounding.html": [ - "84d9f181389cb879fd97cbb2e3bb6740bcc89b2f", - [ - null, - {} - ] + [ + "webnn/conformance_tests/greater.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise greater operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "no-dezippering.html": [ - "ccca103a3bc8583efb101048efb580fe21708ee3", - [ - null, - {} - ] - ] - }, - "the-destinationnode-interface": { - "destination.html": [ - "1af0e0f010b3c83c36e705c537510ee91159fb38", - [ - null, - {} - ] - ] - }, - "the-dynamicscompressornode-interface": { - "ctor-dynamicscompressor.html": [ - "c2460dfa1ddd26a5c2e199873c0b28189275ff83", - [ - null, - {} - ] + [ + "webnn/conformance_tests/greater.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise greater operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "dynamicscompressor-basic.html": [ - "6c602010d0e3a9a7c4199b8923600676a5f5d3a1", - [ - null, - {} - ] + [ + "webnn/conformance_tests/greater.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise greater operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ] - }, - "the-gainnode-interface": { - "ctor-gain.html": [ - "dec273e9698702c5b1ee476a5c2e343bbc6e5bb6", - [ - null, - {} - ] - ], - "gain-basic.html": [ - "de2ba11a7f30c3ca386e25f9fa10ff5375cddaef", - [ - null, - {} - ] - ], - "gain.html": [ - "c41f4c908056aba804bc691c335e528fd1e2f44f", - [ - null, - {} - ] + ], + "greater_or_equal.https.any.js": [ + "2f2f572eba3be796aa0a53a7b6b9888851ee62b1", + [ + "webnn/conformance_tests/greater_or_equal.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise greaterOrEqual operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "no-dezippering.html": [ - "6326d00dfb78efefd8a179e87dc53b531584895d", - [ - null, - {} - ] - ] - }, - "the-iirfilternode-interface": { - "ctor-iirfilter.html": [ - "e884d487af8fc89b6b162177c7402eac692c02e3", - [ - null, - {} - ] + [ + "webnn/conformance_tests/greater_or_equal.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise greaterOrEqual operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "iirfilter-basic.html": [ - "7828f05226151ebf7d6c7ec984cae1f90ef848d2", - [ - null, - {} - ] + [ + "webnn/conformance_tests/greater_or_equal.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise greaterOrEqual operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "iirfilter-getFrequencyResponse.html": [ - "c98555f1610693abaa0bbe858e826bd1f776fb5b", - [ - null, - {} - ] + [ + "webnn/conformance_tests/greater_or_equal.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise greaterOrEqual operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "iirfilter.html": [ - "aa38a6bfcadf6f7401f0068ef33e1145aae37c56", - [ - null, - {} - ] + [ + "webnn/conformance_tests/greater_or_equal.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise greaterOrEqual operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "test-iirfilternode.html": [ - "001a2a6172438207b50c16f707bd74a1524fd3dc", - [ - null, - {} - ] + [ + "webnn/conformance_tests/greater_or_equal.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise greaterOrEqual operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ] - }, - "the-mediaelementaudiosourcenode-interface": { - "cors-check.https.html": [ - "38bd94a037c3b15e59fe6e99acbf013636de9003", - [ - null, - {} - ] + ], + "gru.https.any.js": [ + "d14fd2eec49668dbd13e33320d09e57b35c39f73", + [ + "webnn/conformance_tests/gru.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API gru operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "mediaElementAudioSourceToScriptProcessorTest.html": [ - "56d0787b7673b11d903de23159b49ba15b85c1f4", - [ - null, - {} - ] + [ + "webnn/conformance_tests/gru.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API gru operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "no-cors.https.html": [ - "de2f0b7dd3b680cbb38d1b0546c6656b1e03e1b2", - [ - null, - {} - ] + [ + "webnn/conformance_tests/gru.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API gru operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "setSinkId-with-MediaElementAudioSourceNode.https.html": [ - "af71782717ae07682f63ad6e3f45c74bb28b3415", - [ - null, - { - "testdriver": true - } - ] - ] - }, - "the-mediastreamaudiodestinationnode-interface": { - "ctor-mediastreamaudiodestination.html": [ - "5d3fd0c26f4aa0347e2682b303d9bedbcc2b7600", - [ - null, - {} - ] - ] - }, - "the-mediastreamaudiosourcenode-interface": { - "mediastreamaudiosourcenode-ctor.html": [ - "a711419656979bccaca95e08f26035ebd2a0c4c9", - [ - null, - {} - ] + [ + "webnn/conformance_tests/gru.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API gru operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "mediastreamaudiosourcenode-routing.html": [ - "816eba0b29ae616e09099544e839b85bb0a8bea5", - [ - null, - {} - ] - ] - }, - "the-offlineaudiocontext-interface": { - "ctor-offlineaudiocontext.html": [ - "4b6863103622c5fb248dee3e3eb20d955275d037", - [ - null, - {} - ] + [ + "webnn/conformance_tests/gru.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API gru operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "current-time-block-size.html": [ - "ee976f7f72aa2530754c115fe7039f17c058f744", - [ - null, - {} - ] + [ + "webnn/conformance_tests/gru.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API gru operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } + ] + ], + "gru_cell.https.any.js": [ + "f8aa3ac9cf78fead8fdb741b7135b421a860d452", + [ + "webnn/conformance_tests/gru_cell.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API gruCell operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "offlineaudiocontext-detached-execution-context.html": [ - "6eafd15fd243d3004ca887c61755c97d85f9f025", - [ - null, - {} - ] + [ + "webnn/conformance_tests/gru_cell.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API gruCell operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "startrendering-after-discard.html": [ - "dd610ec3352673d75f4b285bcfab92647487236c", - [ - null, - {} - ] - ] - }, - "the-oscillatornode-interface": { - "ctor-oscillator.html": [ - "bf50195a5b3bf7a9f49186f7892577381ba80c1a", - [ - null, - {} - ] + [ + "webnn/conformance_tests/gru_cell.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API gruCell operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "detune-limiting.html": [ - "81a1293d0355ed448e60c0e31ad4435ea708e224", - [ - null, - {} - ] + [ + "webnn/conformance_tests/gru_cell.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API gruCell operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "detune-overflow.html": [ - "28c28bc1db5fe0680c931a7dafecc9c93b82fb47", - [ - null, - {} - ] + [ + "webnn/conformance_tests/gru_cell.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API gruCell operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "osc-basic-waveform.html": [ - "b34c96855fdbb26428c64ed879d41ec787fb8d85", - [ - null, - {} - ] + [ + "webnn/conformance_tests/gru_cell.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API gruCell operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ] - }, - "the-pannernode-interface": { - "automation-changes.html": [ - "8aa73552aab5e1639ac95e4ae7e06c725c9cad0c", - [ - null, - {} - ] + ], + "hard_sigmoid.https.any.js": [ + "4ab915958e1d044cd91b3c9e30aedc13bc0f43b2", + [ + "webnn/conformance_tests/hard_sigmoid.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API hardSigmoid operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "ctor-panner.html": [ - "c434aa8c6a50bc2763f7a9233db06466c501c7ac", - [ - null, - {} - ] + [ + "webnn/conformance_tests/hard_sigmoid.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API hardSigmoid operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "distance-exponential.html": [ - "383e2c67b6ae479eb2b44a33a30ce8a5eedfc64c", - [ - null, - {} - ] + [ + "webnn/conformance_tests/hard_sigmoid.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API hardSigmoid operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "distance-inverse.html": [ - "a4ff984e09df660c1eae8f62333a3ab23ca106b0", - [ - null, - {} - ] + [ + "webnn/conformance_tests/hard_sigmoid.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API hardSigmoid operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "distance-linear.html": [ - "812fea3ebab1283df213263492226bad774c4e22", - [ - null, - {} - ] + [ + "webnn/conformance_tests/hard_sigmoid.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API hardSigmoid operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "panner-automation-basic.html": [ - "5c3df0e6fdf85f9cf33314c0748e72b515f40e6f", - [ - null, - {} - ] + [ + "webnn/conformance_tests/hard_sigmoid.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API hardSigmoid operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } + ] + ], + "hard_swish.https.any.js": [ + "480b696d77fad72f18771955c517b866160fa4e3", + [ + "webnn/conformance_tests/hard_swish.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API tanh operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "panner-automation-equalpower-stereo.html": [ - "7afc9c2a39d4dc71ffdcc780a855458bd1278a6c", - [ - null, - {} - ] + [ + "webnn/conformance_tests/hard_swish.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API tanh operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "panner-automation-position.html": [ - "8e09e869acb4b5a0e5dd94e2401494c690954208", - [ - null, - {} - ] + [ + "webnn/conformance_tests/hard_swish.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API tanh operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "panner-azimuth.html": [ - "d09f2ec352f052e987178a7ea0cb8a2b83283ccf", - [ - null, - {} - ] + [ + "webnn/conformance_tests/hard_swish.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API tanh operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "panner-distance-clamping.html": [ - "78c1ec6dc2d439475371a3b77c25f5af761206ad", - [ - null, - {} - ] + [ + "webnn/conformance_tests/hard_swish.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API tanh operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "panner-equalpower-stereo.html": [ - "2a0225b3f666365c3a3348a311459a3a3cab7fd7", - [ - null, - {} - ] + [ + "webnn/conformance_tests/hard_swish.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API tanh operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } + ] + ], + "identity.https.any.js": [ + "ca4239145b142cb27d85f1ce89d5a910835e5168", + [ + "webnn/conformance_tests/identity.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise identity operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "panner-equalpower.html": [ - "3ff21b651f28184ed5a0d1b7ef4b4e09651a34ac", - [ - null, - {} - ] + [ + "webnn/conformance_tests/identity.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise identity operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "panner-rolloff-clamping.html": [ - "387f87301092ebd725ed240cc70f0df7ec69a5ab", - [ - null, - {} - ] + [ + "webnn/conformance_tests/identity.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise identity operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "pannernode-basic.window.js": [ - "298fce0f208cf28cc1872e6a1b8701203df9c19e", - [ - "webaudio/the-audio-api/the-pannernode-interface/pannernode-basic.window.html", - {} - ] + [ + "webnn/conformance_tests/identity.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise identity operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "pannernode-setposition-throws.html": [ - "2053411943719d647ac0f17ac71d0beb742102c9", - [ - null, - {} - ] + [ + "webnn/conformance_tests/identity.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise identity operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "test-pannernode-automation.html": [ - "ce474b10b5122eaf40b8b6d1af874ad7ec9bff70", - [ - null, - {} - ] + [ + "webnn/conformance_tests/identity.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise identity operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ] - }, - "the-periodicwave-interface": { - "createPeriodicWaveInfiniteValuesThrows.html": [ - "928f45bd8feb70fbc7d59da367a08028a456477c", - [ - null, - {} - ] + ], + "instance_normalization.https.any.js": [ + "5790b20d8e802543ed8a1697971de39d50081251", + [ + "webnn/conformance_tests/instance_normalization.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API instanceNormalization operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "periodicWave.html": [ - "fe42f8ad50484d4f09a4aa4d15cbd93336f51b92", - [ - null, - {} - ] - ] - }, - "the-scriptprocessornode-interface": { - "simple-input-output.html": [ - "7fd20e67a7079ab3c02d490e458cb762006e0ca0", - [ - null, - {} - ] - ] - }, - "the-stereopanner-interface": { - "ctor-stereopanner.html": [ - "9409f1ffce2110c177332388988d7ddb559d3ae2", - [ - null, - {} - ] + [ + "webnn/conformance_tests/instance_normalization.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API instanceNormalization operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "no-dezippering.html": [ - "355db8b9dc3c77f9b6854e4e5a853641d4aa1743", - [ - null, - {} - ] + [ + "webnn/conformance_tests/instance_normalization.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API instanceNormalization operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "stereopannernode-basic.html": [ - "48bacb08c6dfb33e7d3b43e9dfda7c080bbf224d", - [ - null, - {} - ] + [ + "webnn/conformance_tests/instance_normalization.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API instanceNormalization operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "stereopannernode-panning.html": [ - "f683fd78bf981698d77c58e83dc7b933f852266e", - [ - null, - {} - ] - ] - }, - "the-waveshapernode-interface": { - "ctor-waveshaper.html": [ - "7aa33ca5aa3323754755ebfda200976b0b292730", - [ - null, - {} - ] + [ + "webnn/conformance_tests/instance_normalization.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API instanceNormalization operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "curve-tests.html": [ - "d09cf78fd84131326b2412fba96a2bf7be82b9b9", - [ - null, - {} - ] + [ + "webnn/conformance_tests/instance_normalization.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API instanceNormalization operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } + ] + ], + "layer_normalization.https.any.js": [ + "84b90ca2779e2027294a212a468b325bd5999bcc", + [ + "webnn/conformance_tests/layer_normalization.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API layerNormalization operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "silent-inputs.html": [ - "45d2c9ad4b3cb903ad29f7269d389d9e353a0faa", - [ - null, - {} - ] + [ + "webnn/conformance_tests/layer_normalization.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API layerNormalization operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "waveshaper-copy-curve.html": [ - "e897ac08a10abdc5824de6f9548e56a0e313d0c4", - [ - null, - {} - ] + [ + "webnn/conformance_tests/layer_normalization.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API layerNormalization operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "waveshaper-limits.html": [ - "13e88be567b3470ec28a7c0cd7785d1ebcd6c988", - [ - null, - {} - ] + [ + "webnn/conformance_tests/layer_normalization.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API layerNormalization operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "waveshaper-simple.html": [ - "affd0c58afaf41b0be30a51eb7aa6ca26db8a1c7", - [ - null, - {} - ] + [ + "webnn/conformance_tests/layer_normalization.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API layerNormalization operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], - "waveshaper.html": [ - "8bfa009b181d4fc43f35e3bda7733923c2e08500", - [ - null, - {} - ] - ] - } - } - }, - "webauthn": { - "conditional-mediation.https.html": [ - "1eb2ba3b1e750b261b2ae71fbf6172c624503cb2", - [ - null, - { - "testdriver": true - } - ] - ], - "createcredential-abort.https.html": [ - "d175e660e71821509045528e8cb026967e594f1a", - [ - null, - { - "testdriver": true, - "timeout": "long" - } - ] - ], - "createcredential-attachment.https.html": [ - "e9458ad5604875e2ba430647cd434e561556a675", - [ - null, - { - "testdriver": true, - "timeout": "long" - } - ] - ], - "createcredential-badargs-authnrselection.https.html": [ - "85b0f9053866a878185b0a2aaf6bab068bd65b86", - [ - null, - { - "testdriver": true, - "timeout": "long" - } - ] - ], - "createcredential-badargs-challenge.https.html": [ - "4fa41df11dd43d720cc9467580913455ab2a60ec", - [ - null, - { - "testdriver": true, - "timeout": "long" - } - ] - ], - "createcredential-badargs-rp.https.html": [ - "5e3c38821bc3946a58a080d471c23fe369b2e870", - [ - null, - { - "testdriver": true, - "timeout": "long" - } - ] - ], - "createcredential-badargs-user.https.html": [ - "e487242571769125238e87f0d22731a54c58bed5", - [ - null, - { - "testdriver": true, - "timeout": "long" - } - ] - ], - "createcredential-excludecredentials.https.html": [ - "2b1eec19b7b3a806150d13c77d8cfd1ea01973a6", - [ - null, - { - "testdriver": true, - "timeout": "long" - } - ] - ], - "createcredential-extensions.https.html": [ - "5a55a8d860ea5a93aa4fc857f19ccdaeb0238008", - [ - null, - { - "testdriver": true, - "timeout": "long" - } - ] - ], - "createcredential-getpublickey.https.html": [ - "215519913dbcf060afaaa4114491ed1498c5b49a", - [ - null, - { - "testdriver": true, - "timeout": "long" - } - ] - ], - "createcredential-hints.https.html": [ - "a662bcef46f156c212fcd81feb7d69b613f551c3", - [ - null, - { - "testdriver": true, - "timeout": "long" - } - ] - ], - "createcredential-large-blob-not-supported.https.html": [ - "167a65b92262759e652009e51c5f8ad6f2e4ac1e", - [ - null, - { - "testdriver": true, - "timeout": "long" - } - ] - ], - "createcredential-large-blob-supported.https.html": [ - "5c07745a49dfeb1084b50bdeb6adf6463f74a348", - [ - null, - { - "testdriver": true, - "timeout": "long" - } - ] - ], - "createcredential-minpinlength.https.html": [ - "a92898c848c01e5223c462d58c902d4a676bf7f2", - [ - null, - { - "testdriver": true, - "timeout": "long" - } - ] - ], - "createcredential-passing.https.html": [ - "f64a4ff0397222b21379265591a2f09a9b906c97", - [ - null, - { - "testdriver": true, - "timeout": "long" - } - ] - ], - "createcredential-prf.https.html": [ - "ac2d5b5f36031d6f1508a2b5fe20c2690ae269e8", - [ - null, - { - "testdriver": true, - "timeout": "long" - } - ] - ], - "createcredential-pubkeycredparams.https.html": [ - "d1df7952d6766744280b460a18d2e561a5527e5d", - [ - null, - { - "testdriver": true, - "timeout": "long" - } - ] - ], - "createcredential-resident-key.https.html": [ - "d64ec14c00d38e49eaa91142b55f47c2e336670d", - [ - null, - { - "testdriver": true, - "timeout": "long" - } - ] - ], - "createcredential-timeout.https.html": [ - "fc35a6e72f0a76a4ff410df71b346109cc215681", - [ - null, - { - "testdriver": true, - "timeout": "long" - } - ] - ], - "credblob-not-supported.https.html": [ - "0f9514ba5e4022770cd9059f61c0581b3e0cd56c", - [ - null, - { - "testdriver": true, - "timeout": "long" - } - ] - ], - "credblob-supported.https.html": [ - "c69091fbc4019038531de326c59141a09cea9a00", - [ - null, - { - "testdriver": true, - "timeout": "long" - } - ] - ], - "getcredential-abort.https.html": [ - "958f65daf1bccfe6200bb4a06e9cd75e06f4346d", - [ - null, - { - "timeout": "long" - } - ] - ], - "getcredential-attachment.https.html": [ - "7ab7235af501287bd9bc96d09ec549702e359dce", - [ - null, - { - "testdriver": true, - "timeout": "long" - } - ] - ], - "getcredential-badargs-rpid.https.html": [ - "3f9d3f2177fd9624da6bebfabedae7c57f3152a8", - [ - null, - { - "testdriver": true, - "timeout": "long" - } - ] - ], - "getcredential-badargs-userverification.https.html": [ - "8c15a76403e3c5c5d55752d4f6916614c29f7b10", - [ - null, - { - "testdriver": true, - "timeout": "long" - } - ] - ], - "getcredential-extensions.https.html": [ - "16c1e5745719568f11a41697e2bbe2f0bb7b0a5e", - [ - null, - { - "testdriver": true, - "timeout": "long" - } - ] - ], - "getcredential-hints.https.html": [ - "45f6e6b48e2167fabb826f55f084c1b4a5a3501c", - [ - null, - { - "testdriver": true, - "timeout": "long" - } - ] - ], - "getcredential-large-blob-not-supported.https.html": [ - "97cea30f27f491bf0fd1aec6fe6e4734d48e591a", - [ - null, - { - "testdriver": true, - "timeout": "long" - } - ] - ], - "getcredential-large-blob-supported.https.html": [ - "c7cc0dfc4ae7c6d20385f0ba71798f6209c8676d", - [ - null, - { - "testdriver": true, - "timeout": "long" - } - ] - ], - "getcredential-passing.https.html": [ - "7c730d7183ad4ec8d7208ed7229aa5957be2722e", - [ - null, - { - "testdriver": true, - "timeout": "long" - } - ] - ], - "getcredential-prf.https.html": [ - "40dfc5cad33921e3f5c00865a74cf79e5f81e26e", - [ - null, - { - "testdriver": true, - "timeout": "long" - } - ] - ], - "getcredential-rk-passing.https.html": [ - "8c0254fee4258478e5920c30f693c84e07cfcb2e", - [ - null, - { - "testdriver": true, - "timeout": "long" - } - ] - ], - "getcredential-timeout.https.html": [ - "c4d8aed38c63afa9fc1b720e244a918ebb1e8e0d", - [ - null, - { - "testdriver": true, - "timeout": "long" - } - ] - ], - "idlharness.https.window.js": [ - "ff0efcb656a740e9fdee2a3cc8dbfddda9b2a563", - [ - "webauthn/idlharness.https.window.html", - { - "script_metadata": [ - [ - "timeout", - "long" + [ + "webnn/conformance_tests/layer_normalization.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API layerNormalization operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "script", - "/resources/WebIDLParser.js" + "timeout": "long" + } + ] + ], + "leaky_relu.https.any.js": [ + "f14489b1295a0722fc59642b329aa8756dd9c684", + [ + "webnn/conformance_tests/leaky_relu.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API leakyRelu operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "script", - "/resources/idlharness.js" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/leaky_relu.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API leakyRelu operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "script", - "helpers.js" - ] - ], - "timeout": "long" - } - ] - ], - "public-key-credential-creation-options-from-json.https.window.js": [ - "c0f1a08cf903b8b0f504df08e56be00c3a1e3248", - [ - "webauthn/public-key-credential-creation-options-from-json.https.window.html", - { - "script_metadata": [ - [ - "script", - "/resources/testdriver.js" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/leaky_relu.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API leakyRelu operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "script", - "/resources/testdriver-vendor.js" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/leaky_relu.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API leakyRelu operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "script", - "/resources/utils.js" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/leaky_relu.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API leakyRelu operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "script", - "helpers.js" - ] - ] - } - ] - ], - "public-key-credential-to-json.https.window.js": [ - "8ef25132197dda690d7ad36f63307f4a4f8ef7f1", - [ - "webauthn/public-key-credential-to-json.https.window.html", - { - "script_metadata": [ - [ - "script", - "/resources/testdriver.js" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/leaky_relu.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API leakyRelu operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "script", - "/resources/testdriver-vendor.js" + "timeout": "long" + } + ] + ], + "lesser.https.any.js": [ + "f7200bc21d8a1d8b33c9f088c28f12a976228291", + [ + "webnn/conformance_tests/lesser.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise lesser operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "script", - "/resources/utils.js" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/lesser.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise lesser operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "script", - "helpers.js" - ] - ] - } - ] - ], - "remote-desktop-client-override.tentative.https.html": [ - "888dca2e9c4bdc98c002107a6899f0b884690555", - [ - null, - { - "testdriver": true, - "timeout": "long" - } - ] - ], - "securecontext.http.html": [ - "27d2dbfce3e9c15c453597fc53b745426d33aae4", - [ - null, - {} - ] - ], - "securecontext.https.html": [ - "f927004702443be4d23f2c206ee1b4d07a0e1bea", - [ - null, - {} - ] - ], - "storecredential.https.html": [ - "726b289fbd18e8bd7646f2d6ad0b88b718c16293", - [ - null, - { - "testdriver": true, - "timeout": "long" - } - ] - ], - "webauthn-testdriver-basic.https.html": [ - "5751928301ff6c75593881f6e0bb0c5f93076d8c", - [ - null, - { - "testdriver": true - } - ] - ] - }, - "webcodecs": { - "audio-data-serialization.any.js": [ - "280934cd0595f40dc81936f8362edab8a96fa43f", - [ - "webcodecs/audio-data-serialization.any.html", - { - "script_metadata": [ - [ - "global", - "window" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/lesser.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise lesser operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "script", - "/common/media.js" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/lesser.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise lesser operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "script", - "/webcodecs/utils.js" - ] - ] - } - ] - ], - "audio-data.any.js": [ - "4c2d96ab80edb0fcd2c5dd1776430e143eb5bc5f", - [ - "webcodecs/audio-data.any.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/lesser.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise lesser operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "script", - "/common/media.js" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/lesser.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise lesser operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "script", - "/webcodecs/utils.js" - ] - ] - } + "timeout": "long" + } + ] ], - [ - "webcodecs/audio-data.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "/common/media.js" + "lesser_or_equal.https.any.js": [ + "fce69f611253b6a2410b5d5b268df43cac5b4f39", + [ + "webnn/conformance_tests/lesser_or_equal.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise lesserOrEqual operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "script", - "/webcodecs/utils.js" - ] - ] - } - ] - ], - "audio-data.crossOriginIsolated.https.any.js": [ - "a5cb47867052b5c0dc034511439e7d3b2307a225", - [ - "webcodecs/audio-data.crossOriginIsolated.https.any.html", - { - "script_metadata": [ - [ - "global", - "window" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/lesser_or_equal.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise lesserOrEqual operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "script", - "/common/media.js" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/lesser_or_equal.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise lesserOrEqual operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "script", - "/webcodecs/utils.js" - ] - ] - } - ] - ], - "audio-decoder.crossOriginIsolated.https.any.js": [ - "17009e0118c1e92401cf6952e35100bc33692df0", - [ - "webcodecs/audio-decoder.crossOriginIsolated.https.any.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/lesser_or_equal.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise lesserOrEqual operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "script", - "/webcodecs/utils.js" - ] - ] - } - ], - [ - "webcodecs/audio-decoder.crossOriginIsolated.https.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/lesser_or_equal.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise lesserOrEqual operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "script", - "/webcodecs/utils.js" - ] - ] - } - ] - ], - "audio-decoder.https.any.js": [ - "79ba22157abba6dcc890fd72b3328bdd0b7f7093", - [ - "webcodecs/audio-decoder.https.any.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/lesser_or_equal.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise lesserOrEqual operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "script", - "/webcodecs/utils.js" - ] - ] - } + "timeout": "long" + } + ] ], - [ - "webcodecs/audio-decoder.https.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" + "linear.https.any.js": [ + "da4115bcfa62a0cf768382236efe04c55941446d", + [ + "webnn/conformance_tests/linear.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API linear operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "script", - "/webcodecs/utils.js" - ] - ] - } - ] - ], - "audio-encoder-codec-specific.https.any.js": [ - "e3396f999aa54de36eacf49b2b3aceb2ec7e6c52", - [ - "webcodecs/audio-encoder-codec-specific.https.any.html", - { - "script_metadata": [ - [ - "global", - "window" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/linear.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API linear operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "script", - "/webcodecs/utils.js" - ] - ] - } - ] - ], - "audio-encoder-config.https.any.js": [ - "3be8eb3f6d36d270808ca0a418387fc83245ea12", - [ - "webcodecs/audio-encoder-config.https.any.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/linear.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API linear operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "script", - "/webcodecs/utils.js" - ] - ] - } - ], - [ - "webcodecs/audio-encoder-config.https.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/linear.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API linear operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "script", - "/webcodecs/utils.js" - ] - ] - } - ] - ], - "audio-encoder.https.any.js": [ - "51496551cf525b3208be63bb3dbce325a13882ed", - [ - "webcodecs/audio-encoder.https.any.html", - { - "script_metadata": [ - [ - "global", - "window" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/linear.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API linear operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "script", - "/webcodecs/utils.js" - ] - ] - } - ] - ], - "audioDecoder-codec-specific.https.any.js": [ - "92513be087011445b306a802f288c7aae8cd7a35", - [ - "webcodecs/audioDecoder-codec-specific.https.any.html?adts_aac", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/linear.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API linear operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "script", - "/webcodecs/utils.js" + "timeout": "long" + } + ] + ], + "log.https.any.js": [ + "a8d5b006ebbb6ac9e8835adcc6433228274bee44", + [ + "webnn/conformance_tests/log.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise log operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?adts_aac" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/log.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise log operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?mp4_aac" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/log.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise log operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?mp3" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/log.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise log operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?opus" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/log.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise log operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?pcm_alaw" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/log.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise log operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?pcm_mulaw" - ] - ] - } + "timeout": "long" + } + ] ], - [ - "webcodecs/audioDecoder-codec-specific.https.any.html?mp3", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "/webcodecs/utils.js" + "logical_not.https.any.js": [ + "51db74cd3ae2178c293d88b4b87dd1c1fbe2a15a", + [ + "webnn/conformance_tests/logical_not.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise logicalNot operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?adts_aac" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/logical_not.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise logicalNot operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?mp4_aac" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/logical_not.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise logicalNot operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?mp3" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/logical_not.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise logicalNot operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?opus" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/logical_not.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise logicalNot operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?pcm_alaw" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/logical_not.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise logicalNot operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?pcm_mulaw" - ] - ] - } + "timeout": "long" + } + ] ], - [ - "webcodecs/audioDecoder-codec-specific.https.any.html?mp4_aac", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "/webcodecs/utils.js" + "lstm.https.any.js": [ + "8b6cf73715c5247bbdec8f215682244af438174d", + [ + "webnn/conformance_tests/lstm.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API lstm operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?adts_aac" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/lstm.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API lstm operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?mp4_aac" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/lstm.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API lstm operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?mp3" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/lstm.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API lstm operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?opus" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/lstm.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API lstm operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?pcm_alaw" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/lstm.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API lstm operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?pcm_mulaw" - ] - ] - } + "timeout": "long" + } + ] ], - [ - "webcodecs/audioDecoder-codec-specific.https.any.html?opus", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "/webcodecs/utils.js" + "lstm_cell.https.any.js": [ + "9bc71a6224c937a04e2944f787ee9b2f17c4e02d", + [ + "webnn/conformance_tests/lstm_cell.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API lstmCell operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?adts_aac" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/lstm_cell.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API lstmCell operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?mp4_aac" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/lstm_cell.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API lstmCell operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?mp3" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/lstm_cell.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API lstmCell operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?opus" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/lstm_cell.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API lstmCell operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?pcm_alaw" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/lstm_cell.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API lstmCell operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?pcm_mulaw" - ] - ] - } + "timeout": "long" + } + ] ], - [ - "webcodecs/audioDecoder-codec-specific.https.any.html?pcm_alaw", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "/webcodecs/utils.js" + "matmul.https.any.js": [ + "58410a6046327f9f7741f57b5a6f82ed3be43d87", + [ + "webnn/conformance_tests/matmul.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API matmul operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?adts_aac" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/matmul.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API matmul operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?mp4_aac" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/matmul.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API matmul operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?mp3" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/matmul.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API matmul operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?opus" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/matmul.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API matmul operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?pcm_alaw" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/matmul.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API matmul operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?pcm_mulaw" - ] - ] - } + "timeout": "long" + } + ] ], - [ - "webcodecs/audioDecoder-codec-specific.https.any.html?pcm_mulaw", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "/webcodecs/utils.js" + "max.https.any.js": [ + "0c28b85994da6e6482b529477ea0d7517ae8d29c", + [ + "webnn/conformance_tests/max.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise max operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?adts_aac" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/max.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise max operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?mp4_aac" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/max.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise max operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?mp3" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/max.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise max operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?opus" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/max.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise max operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?pcm_alaw" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/max.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise max operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?pcm_mulaw" - ] - ] - } + "timeout": "long" + } + ] ], - [ - "webcodecs/audioDecoder-codec-specific.https.any.worker.html?adts_aac", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "/webcodecs/utils.js" + "min.https.any.js": [ + "2892bc1ec0f21fa893b0aac115bbdcd2412058b5", + [ + "webnn/conformance_tests/min.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise min operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?adts_aac" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/min.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise min operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?mp4_aac" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/min.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise min operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?mp3" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/min.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise min operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?opus" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/min.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise min operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?pcm_alaw" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/min.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise min operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?pcm_mulaw" - ] - ] - } + "timeout": "long" + } + ] ], - [ - "webcodecs/audioDecoder-codec-specific.https.any.worker.html?mp3", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "/webcodecs/utils.js" + "mul.https.any.js": [ + "d46a4d9074464d48076bb21a4b340262aa8e3725", + [ + "webnn/conformance_tests/mul.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise mul operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?adts_aac" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/mul.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise mul operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?mp4_aac" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/mul.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise mul operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?mp3" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/mul.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise mul operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?opus" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/mul.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise mul operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?pcm_alaw" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/mul.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise mul operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?pcm_mulaw" - ] - ] - } + "timeout": "long" + } + ] ], - [ - "webcodecs/audioDecoder-codec-specific.https.any.worker.html?mp4_aac", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "/webcodecs/utils.js" + "neg.https.any.js": [ + "8ffe3623567206786e0a4785a75ea18ea9d1b7b9", + [ + "webnn/conformance_tests/neg.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise neg operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?adts_aac" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/neg.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise neg operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?mp4_aac" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/neg.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise neg operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?mp3" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/neg.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise neg operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?opus" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/neg.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise neg operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?pcm_alaw" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/neg.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise neg operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?pcm_mulaw" - ] - ] - } + "timeout": "long" + } + ] ], - [ - "webcodecs/audioDecoder-codec-specific.https.any.worker.html?opus", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "/webcodecs/utils.js" + "pad.https.any.js": [ + "c05f18f83c2800fc5511eebf7116696982f55a61", + [ + "webnn/conformance_tests/pad.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API pad operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?adts_aac" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/pad.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API pad operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?mp4_aac" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/pad.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API pad operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?mp3" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/pad.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API pad operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?opus" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/pad.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API pad operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?pcm_alaw" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/pad.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API pad operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?pcm_mulaw" - ] - ] - } + "timeout": "long" + } + ] ], - [ - "webcodecs/audioDecoder-codec-specific.https.any.worker.html?pcm_alaw", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "/webcodecs/utils.js" + "parallel-compute.https.any.js": [ + "3b9c41276ad3cb9ef993fcf3184d5d3bf0c207ff", + [ + "webnn/conformance_tests/parallel-compute.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "test parallel WebNN API compute operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?adts_aac" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/parallel-compute.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "test parallel WebNN API compute operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?mp4_aac" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/parallel-compute.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "test parallel WebNN API compute operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?mp3" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/parallel-compute.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "test parallel WebNN API compute operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?opus" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/parallel-compute.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "test parallel WebNN API compute operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?pcm_alaw" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/parallel-compute.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "test parallel WebNN API compute operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?pcm_mulaw" - ] - ] - } + "timeout": "long" + } + ] ], - [ - "webcodecs/audioDecoder-codec-specific.https.any.worker.html?pcm_mulaw", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "/webcodecs/utils.js" - ], - [ - "variant", - "?adts_aac" - ], - [ - "variant", - "?mp4_aac" - ], - [ - "variant", - "?mp3" + "parallel-dispatch.https.any.js": [ + "2ba1f6cf442bd0f6a36b135df7f8ed865ec98efe", + [ + "webnn/conformance_tests/parallel-dispatch.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "test parallel WebNN API dispatch calls" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?opus" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/parallel-dispatch.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "test parallel WebNN API dispatch calls" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?pcm_alaw" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/parallel-dispatch.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "test parallel WebNN API dispatch calls" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?pcm_mulaw" - ] - ] - } - ] - ], - "chunk-serialization.any.js": [ - "821a71170d49e966ea8e75fbc7b4e87e793f5cf9", - [ - "webcodecs/chunk-serialization.any.html", - { - "script_metadata": [ - [ - "global", - "window" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/parallel-dispatch.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "test parallel WebNN API dispatch calls" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "script", - "/common/media.js" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/parallel-dispatch.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "test parallel WebNN API dispatch calls" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "script", - "/webcodecs/utils.js" - ] - ] - } - ] - ], - "encoded-audio-chunk.any.js": [ - "1ada120e4d91a3fd0a0d3e4cfb3ef992006ab46b", - [ - "webcodecs/encoded-audio-chunk.any.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/parallel-dispatch.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "test parallel WebNN API dispatch calls" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "script", - "/webcodecs/utils.js" - ] - ] - } + "timeout": "long" + } + ] ], - [ - "webcodecs/encoded-audio-chunk.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" + "pooling.https.any.js": [ + "9dfd6ba0ca4b4a2dbfd2448a947c9b13da4f00f6", + [ + "webnn/conformance_tests/pooling.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API pooling operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "script", - "/webcodecs/utils.js" - ] - ] - } - ] - ], - "encoded-audio-chunk.crossOriginIsolated.https.any.js": [ - "7063d8588700d45c2958738360e070f7d7978f6d", - [ - "webcodecs/encoded-audio-chunk.crossOriginIsolated.https.any.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/pooling.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API pooling operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "script", - "/webcodecs/utils.js" - ] - ] - } - ], - [ - "webcodecs/encoded-audio-chunk.crossOriginIsolated.https.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/pooling.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API pooling operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "script", - "/webcodecs/utils.js" - ] - ] - } - ] - ], - "encoded-video-chunk.any.js": [ - "9b60e59a79311dea38d8cb4cad1d3d1cebf2ff3a", - [ - "webcodecs/encoded-video-chunk.any.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/pooling.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API pooling operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "script", - "/webcodecs/utils.js" - ] - ] - } - ], - [ - "webcodecs/encoded-video-chunk.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/pooling.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API pooling operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "script", - "/webcodecs/utils.js" - ] - ] - } - ] - ], - "encoded-video-chunk.crossOriginIsolated.https.any.js": [ - "7f414fec1fe9a7abdb14548d6040777e4e67110d", - [ - "webcodecs/encoded-video-chunk.crossOriginIsolated.https.any.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/pooling.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API pooling operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "script", - "/webcodecs/utils.js" - ] - ] - } + "timeout": "long" + } + ] ], - [ - "webcodecs/encoded-video-chunk.crossOriginIsolated.https.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "/webcodecs/utils.js" - ] - ] - } - ] - ], - "encodedVideoChunk-serialization.crossAgentCluster.https.html": [ - "fb104a3a1b1aacbf8772371dafce3c2b35084126", - [ - null, - {} - ] - ], - "full-cycle-test.https.any.js": [ - "670c72ac328da404b29f3ec41b955223acfd94cd", - [ - "webcodecs/full-cycle-test.https.any.html?av1", - { - "script_metadata": [ - [ - "timeout", - "long" - ], - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "/webcodecs/video-encoder-utils.js" - ], - [ - "variant", - "?av1" - ], - [ - "variant", - "?vp8" + "pow.https.any.js": [ + "3da766df69df6184d719789bcdfbb9ab8773d439", + [ + "webnn/conformance_tests/pow.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise pow operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?vp9_p0" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/pow.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise pow operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?vp9_p2" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/pow.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise pow operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?h264_avc" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/pow.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise pow operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?h264_annexb" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/pow.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise pow operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?h265_hevc" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/pow.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise pow operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?h265_annexb" - ] - ], - "timeout": "long" - } + "timeout": "long" + } + ] ], - [ - "webcodecs/full-cycle-test.https.any.html?h264_annexb", - { - "script_metadata": [ - [ - "timeout", - "long" - ], - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "/webcodecs/video-encoder-utils.js" - ], - [ - "variant", - "?av1" - ], - [ - "variant", - "?vp8" + "prelu.https.any.js": [ + "4730d4e2d17ac5f694a9e6a69c1648a4c7740e33", + [ + "webnn/conformance_tests/prelu.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API prelu operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?vp9_p0" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/prelu.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API prelu operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?vp9_p2" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/prelu.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API prelu operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?h264_avc" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/prelu.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API prelu operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?h264_annexb" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/prelu.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API prelu operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?h265_hevc" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/prelu.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API prelu operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?h265_annexb" - ] - ], - "timeout": "long" - } + "timeout": "long" + } + ] ], - [ - "webcodecs/full-cycle-test.https.any.html?h264_avc", - { - "script_metadata": [ - [ - "timeout", - "long" - ], - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "/webcodecs/video-encoder-utils.js" - ], - [ - "variant", - "?av1" - ], - [ - "variant", - "?vp8" + "reciprocal.https.any.js": [ + "a97c00e2b996ba13b052a4ec79e2208ab5b2e384", + [ + "webnn/conformance_tests/reciprocal.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise reciprocal operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?vp9_p0" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/reciprocal.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise reciprocal operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?vp9_p2" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/reciprocal.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise reciprocal operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?h264_avc" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/reciprocal.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise reciprocal operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?h264_annexb" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/reciprocal.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise reciprocal operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?h265_hevc" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/reciprocal.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise reciprocal operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?h265_annexb" - ] - ], - "timeout": "long" - } + "timeout": "long" + } + ] ], - [ - "webcodecs/full-cycle-test.https.any.html?h265_annexb", - { - "script_metadata": [ - [ - "timeout", - "long" - ], - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "/webcodecs/video-encoder-utils.js" - ], - [ - "variant", - "?av1" - ], - [ - "variant", - "?vp8" + "reduce_l1.https.any.js": [ + "f15de087cf0ae164569e93c26afd6525fe3e8c8a", + [ + "webnn/conformance_tests/reduce_l1.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API reduction operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?vp9_p0" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/reduce_l1.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API reduction operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?vp9_p2" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/reduce_l1.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API reduction operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?h264_avc" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/reduce_l1.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API reduction operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?h264_annexb" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/reduce_l1.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API reduction operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?h265_hevc" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/reduce_l1.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API reduction operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?h265_annexb" - ] - ], - "timeout": "long" - } + "timeout": "long" + } + ] ], - [ - "webcodecs/full-cycle-test.https.any.html?h265_hevc", - { - "script_metadata": [ - [ - "timeout", - "long" - ], - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "/webcodecs/video-encoder-utils.js" - ], - [ - "variant", - "?av1" - ], - [ - "variant", - "?vp8" + "reduce_l2.https.any.js": [ + "7c1d45434620306203c05b2c9365e2caff4b1f70", + [ + "webnn/conformance_tests/reduce_l2.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API reduction operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?vp9_p0" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/reduce_l2.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API reduction operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?vp9_p2" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/reduce_l2.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API reduction operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?h264_avc" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/reduce_l2.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API reduction operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?h264_annexb" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/reduce_l2.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API reduction operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?h265_hevc" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/reduce_l2.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API reduction operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?h265_annexb" - ] - ], - "timeout": "long" - } + "timeout": "long" + } + ] ], - [ - "webcodecs/full-cycle-test.https.any.html?vp8", - { - "script_metadata": [ - [ - "timeout", - "long" - ], - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "/webcodecs/video-encoder-utils.js" - ], - [ - "variant", - "?av1" - ], - [ - "variant", - "?vp8" + "reduce_log_sum.https.any.js": [ + "47a88732dedc937b32d58d548e8fea35676bf3d8", + [ + "webnn/conformance_tests/reduce_log_sum.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API reduction operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?vp9_p0" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/reduce_log_sum.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API reduction operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?vp9_p2" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/reduce_log_sum.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API reduction operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?h264_avc" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/reduce_log_sum.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API reduction operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?h264_annexb" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/reduce_log_sum.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API reduction operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?h265_hevc" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/reduce_log_sum.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API reduction operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?h265_annexb" - ] - ], - "timeout": "long" - } + "timeout": "long" + } + ] ], - [ - "webcodecs/full-cycle-test.https.any.html?vp9_p0", - { - "script_metadata": [ - [ - "timeout", - "long" - ], - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "/webcodecs/video-encoder-utils.js" - ], - [ - "variant", - "?av1" - ], - [ - "variant", - "?vp8" + "reduce_log_sum_exp.https.any.js": [ + "5ba2e39307784618975c2cb1bbeba3a048d11fe0", + [ + "webnn/conformance_tests/reduce_log_sum_exp.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API reduction operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?vp9_p0" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/reduce_log_sum_exp.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API reduction operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?vp9_p2" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/reduce_log_sum_exp.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API reduction operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?h264_avc" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/reduce_log_sum_exp.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API reduction operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?h264_annexb" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/reduce_log_sum_exp.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API reduction operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?h265_hevc" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/reduce_log_sum_exp.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API reduction operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?h265_annexb" - ] - ], - "timeout": "long" - } + "timeout": "long" + } + ] ], - [ - "webcodecs/full-cycle-test.https.any.html?vp9_p2", - { - "script_metadata": [ - [ - "timeout", - "long" - ], - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "/webcodecs/video-encoder-utils.js" - ], - [ - "variant", - "?av1" - ], - [ - "variant", - "?vp8" + "reduce_max.https.any.js": [ + "709b25b0ad311e4717cc1b857c1412d98617f9fe", + [ + "webnn/conformance_tests/reduce_max.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API reduction operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?vp9_p0" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/reduce_max.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API reduction operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?vp9_p2" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/reduce_max.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API reduction operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?h264_avc" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/reduce_max.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API reduction operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?h264_annexb" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/reduce_max.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API reduction operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?h265_hevc" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/reduce_max.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API reduction operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?h265_annexb" - ] - ], - "timeout": "long" - } + "timeout": "long" + } + ] ], - [ - "webcodecs/full-cycle-test.https.any.worker.html?av1", - { - "script_metadata": [ - [ - "timeout", - "long" - ], - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "/webcodecs/video-encoder-utils.js" - ], - [ - "variant", - "?av1" - ], - [ - "variant", - "?vp8" + "reduce_mean.https.any.js": [ + "21fa1a5102c703c4aaded366df4f30b19f83075f", + [ + "webnn/conformance_tests/reduce_mean.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API reduction operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?vp9_p0" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/reduce_mean.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API reduction operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?vp9_p2" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/reduce_mean.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API reduction operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?h264_avc" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/reduce_mean.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API reduction operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?h264_annexb" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/reduce_mean.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API reduction operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?h265_hevc" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/reduce_mean.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API reduction operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?h265_annexb" - ] - ], - "timeout": "long" - } + "timeout": "long" + } + ] ], - [ - "webcodecs/full-cycle-test.https.any.worker.html?h264_annexb", - { - "script_metadata": [ - [ - "timeout", - "long" - ], - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "/webcodecs/video-encoder-utils.js" - ], - [ - "variant", - "?av1" - ], - [ - "variant", - "?vp8" + "reduce_min.https.any.js": [ + "6cc38d6a0782ab8f5a7191b591776483a4fe73fc", + [ + "webnn/conformance_tests/reduce_min.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API reduction operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?vp9_p0" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/reduce_min.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API reduction operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?vp9_p2" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/reduce_min.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API reduction operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?h264_avc" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/reduce_min.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API reduction operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?h264_annexb" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/reduce_min.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API reduction operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?h265_hevc" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/reduce_min.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API reduction operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?h265_annexb" - ] - ], - "timeout": "long" - } + "timeout": "long" + } + ] ], - [ - "webcodecs/full-cycle-test.https.any.worker.html?h264_avc", - { - "script_metadata": [ - [ - "timeout", - "long" - ], - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "/webcodecs/video-encoder-utils.js" + "reduce_product.https.any.js": [ + "745f83b3ceabc47193762c0fdeca2df2a519e7ef", + [ + "webnn/conformance_tests/reduce_product.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API reduction operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?av1" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/reduce_product.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API reduction operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?vp8" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/reduce_product.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API reduction operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?vp9_p0" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/reduce_product.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API reduction operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?vp9_p2" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/reduce_product.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API reduction operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?h264_avc" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/reduce_product.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API reduction operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?h264_annexb" + "timeout": "long" + } + ] + ], + "reduce_sum.https.any.js": [ + "9aec31d3f6826bd5113cfa430bf8c276d6351983", + [ + "webnn/conformance_tests/reduce_sum.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API reduction operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?h265_hevc" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/reduce_sum.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API reduction operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?h265_annexb" - ] - ], - "timeout": "long" - } - ], - [ - "webcodecs/full-cycle-test.https.any.worker.html?h265_annexb", - { - "script_metadata": [ - [ - "timeout", - "long" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/reduce_sum.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API reduction operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "global", - "window,dedicatedworker" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/reduce_sum.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API reduction operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "script", - "/webcodecs/video-encoder-utils.js" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/reduce_sum.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API reduction operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?av1" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/reduce_sum.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API reduction operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?vp8" + "timeout": "long" + } + ] + ], + "reduce_sum_square.https.any.js": [ + "10930c44c6e7bd47703973d19966fef393a1b566", + [ + "webnn/conformance_tests/reduce_sum_square.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API reduction operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?vp9_p0" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/reduce_sum_square.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API reduction operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?vp9_p2" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/reduce_sum_square.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API reduction operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?h264_avc" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/reduce_sum_square.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API reduction operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?h264_annexb" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/reduce_sum_square.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API reduction operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?h265_hevc" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/reduce_sum_square.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API reduction operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?h265_annexb" - ] - ], - "timeout": "long" - } + "timeout": "long" + } + ] ], - [ - "webcodecs/full-cycle-test.https.any.worker.html?h265_hevc", - { - "script_metadata": [ - [ - "timeout", - "long" - ], - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "/webcodecs/video-encoder-utils.js" - ], - [ - "variant", - "?av1" - ], - [ - "variant", - "?vp8" + "relu.https.any.js": [ + "45388383fffe1ec681fd581d7a717215d0921485", + [ + "webnn/conformance_tests/relu.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API relu operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?vp9_p0" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/relu.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API relu operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?vp9_p2" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/relu.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API relu operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?h264_avc" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/relu.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API relu operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?h264_annexb" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/relu.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API relu operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?h265_hevc" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/relu.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API relu operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?h265_annexb" - ] - ], - "timeout": "long" - } + "timeout": "long" + } + ] ], - [ - "webcodecs/full-cycle-test.https.any.worker.html?vp8", - { - "script_metadata": [ - [ - "timeout", - "long" - ], - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "/webcodecs/video-encoder-utils.js" - ], - [ - "variant", - "?av1" - ], - [ - "variant", - "?vp8" + "resample2d.https.any.js": [ + "bedd348fe58961048a6d23b0d82ac2b2701ef630", + [ + "webnn/conformance_tests/resample2d.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API resample2d operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?vp9_p0" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/resample2d.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API resample2d operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?vp9_p2" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/resample2d.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API resample2d operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?h264_avc" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/resample2d.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API resample2d operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?h264_annexb" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/resample2d.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API resample2d operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?h265_hevc" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/resample2d.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API resample2d operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?h265_annexb" - ] - ], - "timeout": "long" - } + "timeout": "long" + } + ] ], - [ - "webcodecs/full-cycle-test.https.any.worker.html?vp9_p0", - { - "script_metadata": [ - [ - "timeout", - "long" + "reshape.https.any.js": [ + "212e93575bc04636b5d72eae5c2691c72c2a6409", + [ + "webnn/conformance_tests/reshape.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API reshape operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "global", - "window,dedicatedworker" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/reshape.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API reshape operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "script", - "/webcodecs/video-encoder-utils.js" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/reshape.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API reshape operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?av1" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/reshape.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API reshape operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?vp8" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/reshape.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API reshape operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?vp9_p0" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/reshape.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API reshape operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?vp9_p2" + "timeout": "long" + } + ] + ], + "sigmoid.https.any.js": [ + "5bcdb39969c69231e964a7a5bee04203fa001322", + [ + "webnn/conformance_tests/sigmoid.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API sigmoid operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?h264_avc" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/sigmoid.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API sigmoid operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?h264_annexb" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/sigmoid.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API sigmoid operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?h265_hevc" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/sigmoid.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API sigmoid operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?h265_annexb" - ] - ], - "timeout": "long" - } - ], - [ - "webcodecs/full-cycle-test.https.any.worker.html?vp9_p2", - { - "script_metadata": [ - [ - "timeout", - "long" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/sigmoid.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API sigmoid operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "global", - "window,dedicatedworker" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/sigmoid.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API sigmoid operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "script", - "/webcodecs/video-encoder-utils.js" + "timeout": "long" + } + ] + ], + "sin.https.any.js": [ + "30fc9a54f8f02bdec3e4493bee38c8b4e3af30b1", + [ + "webnn/conformance_tests/sin.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise sin operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?av1" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/sin.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise sin operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?vp8" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/sin.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise sin operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?vp9_p0" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/sin.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise sin operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?vp9_p2" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/sin.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise sin operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?h264_avc" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/sin.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise sin operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?h264_annexb" + "timeout": "long" + } + ] + ], + "slice.https.any.js": [ + "1c53d45fd5c05218a3542c307f5acc409be16a96", + [ + "webnn/conformance_tests/slice.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API slice operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?h265_hevc" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/slice.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API slice operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?h265_annexb" - ] - ], - "timeout": "long" - } - ] - ], - "idlharness.https.any.js": [ - "f1ed92a15983192b02a11e118d5d0b78b9bcb579", - [ - "webcodecs/idlharness.https.any.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/slice.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API slice operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "script", - "/resources/WebIDLParser.js" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/slice.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API slice operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "script", - "/resources/idlharness.js" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/slice.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API slice operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "script", - "./utils.js" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/slice.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API slice operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } + "timeout": "long" + } + ] ], - [ - "webcodecs/idlharness.https.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "/resources/WebIDLParser.js" + "softmax.https.any.js": [ + "28c0ff5ecac22930636a156198ae0fac89396cbf", + [ + "webnn/conformance_tests/softmax.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API softmax operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "script", - "/resources/idlharness.js" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/softmax.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API softmax operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "script", - "./utils.js" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/softmax.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API softmax operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ] - ], - "image-decoder-image-orientation-none.https.html": [ - "2e555dbe21d45f6ab19fc79c9dcc96d42787ad63", - [ - null, - {} - ] - ], - "image-decoder.crossOriginIsolated.https.any.js": [ - "f10cf7a0670a2ea940311291e48f1be967245425", - [ - "webcodecs/image-decoder.crossOriginIsolated.https.any.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/softmax.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API softmax operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "script", - "/webcodecs/image-decoder-utils.js" - ] - ] - } - ], - [ - "webcodecs/image-decoder.crossOriginIsolated.https.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/softmax.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API softmax operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "script", - "/webcodecs/image-decoder-utils.js" - ] - ] - } - ] - ], - "image-decoder.https.any.js": [ - "78eea763aaae2d1801946673c31ccdace0011a2e", - [ - "webcodecs/image-decoder.https.any.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/softmax.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API softmax operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "script", - "/webcodecs/image-decoder-utils.js" - ] - ] - } + "timeout": "long" + } + ] ], - [ - "webcodecs/image-decoder.https.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "/webcodecs/image-decoder-utils.js" - ] - ] - } - ] - ], - "per-frame-qp-encoding.https.any.js": [ - "8ec96c3f7035d4d02953dea5a2185fe63844df9a", - [ - "webcodecs/per-frame-qp-encoding.https.any.html?av1", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "/webcodecs/video-encoder-utils.js" - ], - [ - "variant", - "?av1" + "softplus.https.any.js": [ + "2b45700493edadf94acbfebcadae339f4dd5786f", + [ + "webnn/conformance_tests/softplus.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API softplus operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?vp9_p0" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/softplus.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API softplus operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?vp9_p2" - ] - ] - } - ], - [ - "webcodecs/per-frame-qp-encoding.https.any.html?vp9_p0", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/softplus.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API softplus operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "script", - "/webcodecs/video-encoder-utils.js" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/softplus.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API softplus operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?av1" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/softplus.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API softplus operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?vp9_p0" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/softplus.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API softplus operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?vp9_p2" - ] - ] - } + "timeout": "long" + } + ] ], - [ - "webcodecs/per-frame-qp-encoding.https.any.html?vp9_p2", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" + "softsign.https.any.js": [ + "06560af48a5fb656c3eb8adbc2317e1da1a1573a", + [ + "webnn/conformance_tests/softsign.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API softsign operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "script", - "/webcodecs/video-encoder-utils.js" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/softsign.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API softsign operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?av1" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/softsign.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API softsign operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?vp9_p0" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/softsign.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API softsign operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?vp9_p2" - ] - ] - } - ], - [ - "webcodecs/per-frame-qp-encoding.https.any.worker.html?av1", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/softsign.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API softsign operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "script", - "/webcodecs/video-encoder-utils.js" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/softsign.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API softsign operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?av1" + "timeout": "long" + } + ] + ], + "split.https.any.js": [ + "eee757f29766df13e1eb8cff92198a7586325a7e", + [ + "webnn/conformance_tests/split.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API split operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?vp9_p0" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/split.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API split operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?vp9_p2" - ] - ] - } - ], - [ - "webcodecs/per-frame-qp-encoding.https.any.worker.html?vp9_p0", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/split.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API split operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "script", - "/webcodecs/video-encoder-utils.js" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/split.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API split operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?av1" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/split.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API split operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?vp9_p0" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/split.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API split operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?vp9_p2" - ] - ] - } + "timeout": "long" + } + ] ], - [ - "webcodecs/per-frame-qp-encoding.https.any.worker.html?vp9_p2", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" + "sqrt.https.any.js": [ + "aa24dc5501f3fd325c935dcc531febb2ab7a4824", + [ + "webnn/conformance_tests/sqrt.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise sqrt operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "script", - "/webcodecs/video-encoder-utils.js" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/sqrt.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise sqrt operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?av1" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/sqrt.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise sqrt operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?vp9_p0" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/sqrt.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise sqrt operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?vp9_p2" - ] - ] - } - ] - ], - "reconfiguring-encoder.https.any.js": [ - "cb0f55efab54940a1eba270daea5d623393aa767", - [ - "webcodecs/reconfiguring-encoder.https.any.html?av1", - { - "script_metadata": [ - [ - "timeout", - "long" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/sqrt.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise sqrt operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "global", - "window,dedicatedworker" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/sqrt.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise sqrt operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "script", - "/webcodecs/video-encoder-utils.js" + "timeout": "long" + } + ] + ], + "sub.https.any.js": [ + "c034cf7b0ada3816691a73cb5ce7b3154ca2ae17", + [ + "webnn/conformance_tests/sub.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise sub operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?av1" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/sub.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise sub operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?vp8" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/sub.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise sub operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?vp9_p0" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/sub.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise sub operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?vp9_p2" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/sub.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise sub operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?h264_avc" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/sub.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise sub operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?h264_annexb" - ] - ], - "timeout": "long" - } + "timeout": "long" + } + ] ], - [ - "webcodecs/reconfiguring-encoder.https.any.html?h264_annexb", - { - "script_metadata": [ - [ - "timeout", - "long" - ], - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "/webcodecs/video-encoder-utils.js" + "tan.https.any.js": [ + "5fcf0e689968551cce42716f59cf9e4b39e86d56", + [ + "webnn/conformance_tests/tan.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise tan operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?av1" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/tan.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise tan operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?vp8" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/tan.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise tan operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?vp9_p0" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/tan.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise tan operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?vp9_p2" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/tan.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise tan operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?h264_avc" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/tan.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API element-wise tan operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?h264_annexb" - ] - ], - "timeout": "long" - } + "timeout": "long" + } + ] ], - [ - "webcodecs/reconfiguring-encoder.https.any.html?h264_avc", - { - "script_metadata": [ - [ - "timeout", - "long" - ], - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "/webcodecs/video-encoder-utils.js" + "tanh.https.any.js": [ + "8fc7317a2cf56627a4bae7c69dbef44ddc0b66bc", + [ + "webnn/conformance_tests/tanh.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API tanh operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?av1" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/tanh.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API tanh operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?vp8" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/tanh.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API tanh operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?vp9_p0" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/tanh.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API tanh operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?vp9_p2" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/tanh.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API tanh operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?h264_avc" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/tanh.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API tanh operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?h264_annexb" - ] - ], - "timeout": "long" - } + "timeout": "long" + } + ] ], - [ - "webcodecs/reconfiguring-encoder.https.any.html?vp8", - { - "script_metadata": [ - [ - "timeout", - "long" - ], - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "/webcodecs/video-encoder-utils.js" + "transpose.https.any.js": [ + "61f043a9b0fcef01419c577052dbf33878e5adae", + [ + "webnn/conformance_tests/transpose.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API transpose operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?av1" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/transpose.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API transpose operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?vp8" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/transpose.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API transpose operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?vp9_p0" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/transpose.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API transpose operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?vp9_p2" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/transpose.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API transpose operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?h264_avc" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/transpose.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API transpose operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?h264_annexb" - ] - ], - "timeout": "long" - } + "timeout": "long" + } + ] ], - [ - "webcodecs/reconfiguring-encoder.https.any.html?vp9_p0", - { - "script_metadata": [ - [ - "timeout", - "long" - ], - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "/webcodecs/video-encoder-utils.js" + "triangular.https.any.js": [ + "7c79518d43f9514510bb611f2add6c1a5f2f6573", + [ + "webnn/conformance_tests/triangular.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API triangular operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?av1" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/triangular.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API triangular operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?vp8" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/triangular.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API triangular operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?vp9_p0" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/triangular.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API triangular operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?vp9_p2" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/triangular.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API triangular operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?h264_avc" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/triangular.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API triangular operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?h264_annexb" - ] - ], - "timeout": "long" - } + "timeout": "long" + } + ] ], - [ - "webcodecs/reconfiguring-encoder.https.any.html?vp9_p2", - { - "script_metadata": [ - [ - "timeout", - "long" - ], - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "/webcodecs/video-encoder-utils.js" + "where.https.any.js": [ + "957f82860839e0edb0b6d9a19e4a9b792fe8afc0", + [ + "webnn/conformance_tests/where.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API where operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?av1" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/where.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API where operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?vp8" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/where.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API where operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?vp9_p0" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/where.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API where operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?vp9_p2" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/where.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "test WebNN API where operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?h264_avc" + "timeout": "long" + } + ], + [ + "webnn/conformance_tests/where.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "test WebNN API where operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "timeout", + "long" + ] ], - [ - "variant", - "?h264_annexb" - ] - ], - "timeout": "long" - } - ], + "timeout": "long" + } + ] + ] + }, + "idlharness.https.any.js": [ + "6c95e534a4cd6b597beedddbf46969bf19a134f6", [ - "webcodecs/reconfiguring-encoder.https.any.worker.html?av1", + "webnn/idlharness.https.any.html", { "script_metadata": [ - [ - "timeout", - "long" - ], [ "global", "window,dedicatedworker" ], [ "script", - "/webcodecs/video-encoder-utils.js" - ], - [ - "variant", - "?av1" - ], - [ - "variant", - "?vp8" - ], - [ - "variant", - "?vp9_p0" + "/resources/WebIDLParser.js" ], [ - "variant", - "?vp9_p2" + "script", + "/resources/idlharness.js" ], [ - "variant", - "?h264_avc" + "script", + "./resources/utils.js" ], - [ - "variant", - "?h264_annexb" - ] - ], - "timeout": "long" - } - ], - [ - "webcodecs/reconfiguring-encoder.https.any.worker.html?h264_annexb", - { - "script_metadata": [ [ "timeout", "long" - ], - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "/webcodecs/video-encoder-utils.js" - ], - [ - "variant", - "?av1" - ], - [ - "variant", - "?vp8" - ], - [ - "variant", - "?vp9_p0" - ], - [ - "variant", - "?vp9_p2" - ], - [ - "variant", - "?h264_avc" - ], - [ - "variant", - "?h264_annexb" ] ], "timeout": "long" } ], [ - "webcodecs/reconfiguring-encoder.https.any.worker.html?h264_avc", + "webnn/idlharness.https.any.worker.html", { "script_metadata": [ - [ - "timeout", - "long" - ], [ "global", "window,dedicatedworker" ], [ "script", - "/webcodecs/video-encoder-utils.js" - ], - [ - "variant", - "?av1" - ], - [ - "variant", - "?vp8" - ], - [ - "variant", - "?vp9_p0" + "/resources/WebIDLParser.js" ], [ - "variant", - "?vp9_p2" + "script", + "/resources/idlharness.js" ], [ - "variant", - "?h264_avc" + "script", + "./resources/utils.js" ], - [ - "variant", - "?h264_annexb" - ] - ], - "timeout": "long" - } - ], - [ - "webcodecs/reconfiguring-encoder.https.any.worker.html?vp8", - { - "script_metadata": [ [ "timeout", "long" - ], - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "/webcodecs/video-encoder-utils.js" - ], - [ - "variant", - "?av1" - ], - [ - "variant", - "?vp8" - ], - [ - "variant", - "?vp9_p0" - ], - [ - "variant", - "?vp9_p2" - ], - [ - "variant", - "?h264_avc" - ], - [ - "variant", - "?h264_annexb" ] ], "timeout": "long" } + ] + ], + "validation_tests": { + "argMinMax.https.any.js": [ + "3d3f714871581f7e1f0814945a0032cbe6d98f93", + [ + "webnn/validation_tests/argMinMax.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API argMin/Max operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], + [ + "webnn/validation_tests/argMinMax.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API argMin/Max operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], + [ + "webnn/validation_tests/argMinMax.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API argMin/Max operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], + [ + "webnn/validation_tests/argMinMax.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API argMin/Max operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], + [ + "webnn/validation_tests/argMinMax.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API argMin/Max operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], + [ + "webnn/validation_tests/argMinMax.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API argMin/Max operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ] ], - [ - "webcodecs/reconfiguring-encoder.https.any.worker.html?vp9_p0", - { - "script_metadata": [ - [ - "timeout", - "long" - ], - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "/webcodecs/video-encoder-utils.js" - ], - [ - "variant", - "?av1" - ], - [ - "variant", - "?vp8" - ], - [ - "variant", - "?vp9_p0" - ], - [ - "variant", - "?vp9_p2" - ], - [ - "variant", - "?h264_avc" - ], - [ - "variant", - "?h264_annexb" + "batchNormalization.https.any.js": [ + "6a884de3ee3301df229213a8c2be0821108fe458", + [ + "webnn/validation_tests/batchNormalization.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API batchNormalization operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] ] - ], - "timeout": "long" - } + } + ], + [ + "webnn/validation_tests/batchNormalization.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API batchNormalization operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], + [ + "webnn/validation_tests/batchNormalization.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API batchNormalization operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], + [ + "webnn/validation_tests/batchNormalization.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API batchNormalization operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], + [ + "webnn/validation_tests/batchNormalization.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API batchNormalization operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], + [ + "webnn/validation_tests/batchNormalization.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API batchNormalization operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ] ], - [ - "webcodecs/reconfiguring-encoder.https.any.worker.html?vp9_p2", - { - "script_metadata": [ - [ - "timeout", - "long" - ], - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "/webcodecs/video-encoder-utils.js" + "build-more-than-once.https.any.js": [ + "c4cbcae8f32d60b31060a46455a26fe842ce66a5", + [ + "webnn/validation_tests/build-more-than-once.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "ensure MLMLGraphBuilder may build at most one MLGraph" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], + [ + "webnn/validation_tests/build-more-than-once.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "ensure MLMLGraphBuilder may build at most one MLGraph" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], + [ + "webnn/validation_tests/build-more-than-once.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "ensure MLMLGraphBuilder may build at most one MLGraph" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], + [ + "webnn/validation_tests/build-more-than-once.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "ensure MLMLGraphBuilder may build at most one MLGraph" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], + [ + "webnn/validation_tests/build-more-than-once.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "ensure MLMLGraphBuilder may build at most one MLGraph" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], + [ + "webnn/validation_tests/build-more-than-once.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "ensure MLMLGraphBuilder may build at most one MLGraph" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ] + ], + "cast.https.any.js": [ + "b20d8186900619f2cd053fa38b6e16c490b0e2f9", + [ + "webnn/validation_tests/cast.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API cast operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], + [ + "webnn/validation_tests/cast.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API cast operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], + [ + "webnn/validation_tests/cast.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API cast operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], + [ + "webnn/validation_tests/cast.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API cast operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], + [ + "webnn/validation_tests/cast.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API cast operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], + [ + "webnn/validation_tests/cast.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API cast operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ] + ], + "clamp.https.any.js": [ + "8302961e2c481413e0a6e39e44fc4424562e030a", + [ + "webnn/validation_tests/clamp.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API clamp operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], + [ + "webnn/validation_tests/clamp.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API clamp operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], + [ + "webnn/validation_tests/clamp.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API clamp operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], + [ + "webnn/validation_tests/clamp.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API clamp operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], + [ + "webnn/validation_tests/clamp.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API clamp operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], + [ + "webnn/validation_tests/clamp.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API clamp operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ] + ], + "compute-multiple-arraybufferviews-sharing-same-arraybuffer.https.any.js": [ + "65bd805c31f6b1f282b30b66da92cc7cc644181b", + [ + "webnn/validation_tests/compute-multiple-arraybufferviews-sharing-same-arraybuffer.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "ensure WebNN MLContext.compute() rejecting detached buffers" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], + [ + "webnn/validation_tests/compute-multiple-arraybufferviews-sharing-same-arraybuffer.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "ensure WebNN MLContext.compute() rejecting detached buffers" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], + [ + "webnn/validation_tests/compute-multiple-arraybufferviews-sharing-same-arraybuffer.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "ensure WebNN MLContext.compute() rejecting detached buffers" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], + [ + "webnn/validation_tests/compute-multiple-arraybufferviews-sharing-same-arraybuffer.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "ensure WebNN MLContext.compute() rejecting detached buffers" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], + [ + "webnn/validation_tests/compute-multiple-arraybufferviews-sharing-same-arraybuffer.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "ensure WebNN MLContext.compute() rejecting detached buffers" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], + [ + "webnn/validation_tests/compute-multiple-arraybufferviews-sharing-same-arraybuffer.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "ensure WebNN MLContext.compute() rejecting detached buffers" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ] + ], + "concat.https.any.js": [ + "4902caf6619c606aa7155111b9584aa4563fcfd7", + [ + "webnn/validation_tests/concat.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API concat operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], + [ + "webnn/validation_tests/concat.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API concat operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], + [ + "webnn/validation_tests/concat.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API concat operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], + [ + "webnn/validation_tests/concat.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API concat operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], + [ + "webnn/validation_tests/concat.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API concat operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], + [ + "webnn/validation_tests/concat.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API concat operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ] + ], + "constant-changed-buffer.https.any.js": [ + "1a516c0b1d4f26dc87dc414a7c98d5579ea5a329", + [ + "webnn/validation_tests/constant-changed-buffer.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "ensure MLGraphBuilder.constant() handles buffers which change" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], + [ + "webnn/validation_tests/constant-changed-buffer.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "ensure MLGraphBuilder.constant() handles buffers which change" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], + [ + "webnn/validation_tests/constant-changed-buffer.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "ensure MLGraphBuilder.constant() handles buffers which change" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], + [ + "webnn/validation_tests/constant-changed-buffer.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "ensure MLGraphBuilder.constant() handles buffers which change" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], + [ + "webnn/validation_tests/constant-changed-buffer.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "ensure MLGraphBuilder.constant() handles buffers which change" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], + [ + "webnn/validation_tests/constant-changed-buffer.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "ensure MLGraphBuilder.constant() handles buffers which change" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ] + ], + "constant.https.any.js": [ + "d101d92fb80970940ee10af169af584734f7bc83", + [ + "webnn/validation_tests/constant.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API constant interface" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], + [ + "webnn/validation_tests/constant.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API constant interface" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], + [ + "webnn/validation_tests/constant.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API constant interface" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], + [ + "webnn/validation_tests/constant.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API constant interface" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], + [ + "webnn/validation_tests/constant.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API constant interface" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], + [ + "webnn/validation_tests/constant.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API constant interface" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ] + ], + "conv2d.https.any.js": [ + "553de7af9668174ab6d2eb1f6e21e13688449130", + [ + "webnn/validation_tests/conv2d.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API conv2d operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], + [ + "webnn/validation_tests/conv2d.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API conv2d operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], + [ + "webnn/validation_tests/conv2d.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API conv2d operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], + [ + "webnn/validation_tests/conv2d.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API conv2d operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], + [ + "webnn/validation_tests/conv2d.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API conv2d operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], + [ + "webnn/validation_tests/conv2d.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API conv2d operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ] + ], + "convTranspose2d.https.any.js": [ + "b9704c208ccb47f1951e88ccbd734909b76b2ece", + [ + "webnn/validation_tests/convTranspose2d.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API convTranspose2d operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], + [ + "webnn/validation_tests/convTranspose2d.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API convTranspose2d operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], + [ + "webnn/validation_tests/convTranspose2d.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API convTranspose2d operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], + [ + "webnn/validation_tests/convTranspose2d.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API convTranspose2d operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], + [ + "webnn/validation_tests/convTranspose2d.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API convTranspose2d operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], + [ + "webnn/validation_tests/convTranspose2d.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API convTranspose2d operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ] + ], + "createContext.https.any.js": [ + "0357c88335ff01c978563456977838f3adf9513d", + [ + "webnn/validation_tests/createContext.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API createContext()" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], + [ + "webnn/validation_tests/createContext.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API createContext()" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], + [ + "webnn/validation_tests/createContext.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API createContext()" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], + [ + "webnn/validation_tests/createContext.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API createContext()" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], + [ + "webnn/validation_tests/createContext.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API createContext()" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], + [ + "webnn/validation_tests/createContext.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API createContext()" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ] + ], + "destroyContext.https.any.js": [ + "ba0661ae6f8e3da28d03ffbf1cdfdea97a7e2fd7", + [ + "webnn/validation_tests/destroyContext.https.any.html?cpu", + { + "script_metadata": [ + [ + "timeout", + "long" + ], + [ + "title", + "validation tests for WebNN API MLContext::destroy()" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ] ], - [ - "variant", - "?av1" + "timeout": "long" + } + ], + [ + "webnn/validation_tests/destroyContext.https.any.html?gpu", + { + "script_metadata": [ + [ + "timeout", + "long" + ], + [ + "title", + "validation tests for WebNN API MLContext::destroy()" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ] ], - [ - "variant", - "?vp8" + "timeout": "long" + } + ], + [ + "webnn/validation_tests/destroyContext.https.any.html?npu", + { + "script_metadata": [ + [ + "timeout", + "long" + ], + [ + "title", + "validation tests for WebNN API MLContext::destroy()" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ] ], - [ - "variant", - "?vp9_p0" + "timeout": "long" + } + ], + [ + "webnn/validation_tests/destroyContext.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "timeout", + "long" + ], + [ + "title", + "validation tests for WebNN API MLContext::destroy()" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ] ], - [ - "variant", - "?vp9_p2" + "timeout": "long" + } + ], + [ + "webnn/validation_tests/destroyContext.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "timeout", + "long" + ], + [ + "title", + "validation tests for WebNN API MLContext::destroy()" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ] ], - [ - "variant", - "?h264_avc" + "timeout": "long" + } + ], + [ + "webnn/validation_tests/destroyContext.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "timeout", + "long" + ], + [ + "title", + "validation tests for WebNN API MLContext::destroy()" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ] ], - [ - "variant", - "?h264_annexb" + "timeout": "long" + } + ] + ], + "elementwise-binary.https.any.js": [ + "fc0616f569b3970a5b274017e676c180f4623b9a", + [ + "webnn/validation_tests/elementwise-binary.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API element-wise binary operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] ] - ], - "timeout": "long" - } - ] - ], - "temporal-svc-encoding.https.any.js": [ - "7cf7225e5dbda4b56ae0a33bc99b85acddc155d2", - [ - "webcodecs/temporal-svc-encoding.https.any.html?av1", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "/webcodecs/video-encoder-utils.js" - ], - [ - "variant", - "?av1" - ], - [ - "variant", - "?vp8" - ], - [ - "variant", - "?vp9" - ], - [ - "variant", - "?h264" + } + ], + [ + "webnn/validation_tests/elementwise-binary.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API element-wise binary operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] ] - ] - } - ], - [ - "webcodecs/temporal-svc-encoding.https.any.html?h264", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "/webcodecs/video-encoder-utils.js" - ], - [ - "variant", - "?av1" - ], - [ - "variant", - "?vp8" - ], - [ - "variant", - "?vp9" - ], - [ - "variant", - "?h264" + } + ], + [ + "webnn/validation_tests/elementwise-binary.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API element-wise binary operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] ] - ] - } - ], - [ - "webcodecs/temporal-svc-encoding.https.any.html?vp8", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "/webcodecs/video-encoder-utils.js" - ], - [ - "variant", - "?av1" - ], - [ - "variant", - "?vp8" - ], - [ - "variant", - "?vp9" - ], - [ - "variant", - "?h264" + } + ], + [ + "webnn/validation_tests/elementwise-binary.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API element-wise binary operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] ] - ] - } - ], - [ - "webcodecs/temporal-svc-encoding.https.any.html?vp9", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "/webcodecs/video-encoder-utils.js" - ], - [ - "variant", - "?av1" - ], - [ - "variant", - "?vp8" - ], - [ - "variant", - "?vp9" - ], - [ - "variant", - "?h264" + } + ], + [ + "webnn/validation_tests/elementwise-binary.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API element-wise binary operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] ] - ] - } - ], - [ - "webcodecs/temporal-svc-encoding.https.any.worker.html?av1", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "/webcodecs/video-encoder-utils.js" - ], - [ - "variant", - "?av1" - ], - [ - "variant", - "?vp8" - ], - [ - "variant", - "?vp9" - ], - [ - "variant", - "?h264" + } + ], + [ + "webnn/validation_tests/elementwise-binary.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API element-wise binary operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] ] - ] - } + } + ] ], - [ - "webcodecs/temporal-svc-encoding.https.any.worker.html?h264", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "/webcodecs/video-encoder-utils.js" - ], - [ - "variant", - "?av1" - ], - [ - "variant", - "?vp8" - ], - [ - "variant", - "?vp9" - ], - [ - "variant", - "?h264" + "elementwise-logical.https.any.js": [ + "bada9e7648b1eb3bf80db4ba29146bed784db018", + [ + "webnn/validation_tests/elementwise-logical.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API element-wise logical operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] ] - ] - } - ], - [ - "webcodecs/temporal-svc-encoding.https.any.worker.html?vp8", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "/webcodecs/video-encoder-utils.js" - ], - [ - "variant", - "?av1" - ], - [ - "variant", - "?vp8" - ], - [ - "variant", - "?vp9" - ], - [ - "variant", - "?h264" + } + ], + [ + "webnn/validation_tests/elementwise-logical.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API element-wise logical operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] ] - ] - } - ], - [ - "webcodecs/temporal-svc-encoding.https.any.worker.html?vp9", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "/webcodecs/video-encoder-utils.js" - ], - [ - "variant", - "?av1" - ], - [ - "variant", - "?vp8" - ], - [ - "variant", - "?vp9" - ], - [ - "variant", - "?h264" + } + ], + [ + "webnn/validation_tests/elementwise-logical.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API element-wise logical operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] ] - ] - } - ] - ], - "transfering.https.any.js": [ - "44060b968a8fe4500b80f622b057922d37da2f06", - [ - "webcodecs/transfering.https.any.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" + } + ], + [ + "webnn/validation_tests/elementwise-logical.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API element-wise logical operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] ] - ] - } - ], - [ - "webcodecs/transfering.https.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" + } + ], + [ + "webnn/validation_tests/elementwise-logical.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API element-wise logical operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] ] - ] - } - ] - ], - "video-decoder.crossOriginIsolated.https.any.js": [ - "3232844a31b240eb0f46e1df7a71f3efdd76e1ce", - [ - "webcodecs/video-decoder.crossOriginIsolated.https.any.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "/webcodecs/utils.js" + } + ], + [ + "webnn/validation_tests/elementwise-logical.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API element-wise logical operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] ] - ] - } + } + ] ], - [ - "webcodecs/video-decoder.crossOriginIsolated.https.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "/webcodecs/utils.js" + "elementwise-unary.https.any.js": [ + "5de8cb19c9ec7c01de9a938295019e11f32f296e", + [ + "webnn/validation_tests/elementwise-unary.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API element-wise unary operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] ] - ] - } - ] - ], - "video-decoder.https.any.js": [ - "77a610bd4ea2ca090ba029cdf1239e83184873b8", - [ - "webcodecs/video-decoder.https.any.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "/webcodecs/utils.js" + } + ], + [ + "webnn/validation_tests/elementwise-unary.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API element-wise unary operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] ] - ] - } - ], - [ - "webcodecs/video-decoder.https.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "/webcodecs/utils.js" + } + ], + [ + "webnn/validation_tests/elementwise-unary.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API element-wise unary operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] ] - ] - } - ] - ], - "video-encoder-config.https.any.js": [ - "5011bfdd0a8506f3c236d3cdaf197458f5cc9a45", - [ - "webcodecs/video-encoder-config.https.any.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "/webcodecs/utils.js" + } + ], + [ + "webnn/validation_tests/elementwise-unary.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API element-wise unary operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] ] - ] - } - ], - [ - "webcodecs/video-encoder-config.https.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "/webcodecs/utils.js" + } + ], + [ + "webnn/validation_tests/elementwise-unary.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API element-wise unary operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] ] - ] - } - ] - ], - "video-encoder-content-hint.https.any.js": [ - "cdc32fe3c64ed7afa09d7ca97b59ac2ad18ffdb3", - [ - "webcodecs/video-encoder-content-hint.https.any.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" + } + ], + [ + "webnn/validation_tests/elementwise-unary.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API element-wise unary operations" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] ] - ] - } + } + ] ], - [ - "webcodecs/video-encoder-content-hint.https.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" + "elu.https.any.js": [ + "4236925aed188ea4e09072d95dc54b0c6087841b", + [ + "webnn/validation_tests/elu.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API elu operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] ] - ] - } - ] - ], - "video-encoder-flush.https.any.js": [ - "8f1724bc8571df44127cbb32a80915ded9b74687", - [ - "webcodecs/video-encoder-flush.https.any.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "/common/media.js" - ], - [ - "script", - "/webcodecs/utils.js" - ], - [ - "script", - "/webcodecs/video-encoder-utils.js" + } + ], + [ + "webnn/validation_tests/elu.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API elu operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] ] - ] - } - ], - [ - "webcodecs/video-encoder-flush.https.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "/common/media.js" - ], - [ - "script", - "/webcodecs/utils.js" - ], - [ - "script", - "/webcodecs/video-encoder-utils.js" + } + ], + [ + "webnn/validation_tests/elu.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API elu operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] ] - ] - } - ] - ], - "video-encoder-h264.https.any.js": [ - "82370a8338c2c46a42449d0111cd5f97cd85ddbd", - [ - "webcodecs/video-encoder-h264.https.any.html?baseline", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "/common/media.js" - ], - [ - "script", - "/webcodecs/utils.js" - ], - [ - "script", - "/webcodecs/video-encoder-utils.js" - ], - [ - "variant", - "?baseline" - ], - [ - "variant", - "?main" - ], - [ - "variant", - "?high" + } + ], + [ + "webnn/validation_tests/elu.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API elu operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] ] - ] - } - ], - [ - "webcodecs/video-encoder-h264.https.any.html?high", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "/common/media.js" - ], - [ - "script", - "/webcodecs/utils.js" - ], - [ - "script", - "/webcodecs/video-encoder-utils.js" - ], - [ - "variant", - "?baseline" - ], - [ - "variant", - "?main" - ], - [ - "variant", - "?high" + } + ], + [ + "webnn/validation_tests/elu.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API elu operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] ] - ] - } - ], - [ - "webcodecs/video-encoder-h264.https.any.html?main", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "/common/media.js" - ], - [ - "script", - "/webcodecs/utils.js" - ], - [ - "script", - "/webcodecs/video-encoder-utils.js" - ], - [ - "variant", - "?baseline" - ], - [ - "variant", - "?main" - ], - [ - "variant", - "?high" + } + ], + [ + "webnn/validation_tests/elu.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API elu operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] ] - ] - } + } + ] ], - [ - "webcodecs/video-encoder-h264.https.any.worker.html?baseline", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "/common/media.js" - ], - [ - "script", - "/webcodecs/utils.js" - ], - [ - "script", - "/webcodecs/video-encoder-utils.js" - ], - [ - "variant", - "?baseline" - ], - [ - "variant", - "?main" - ], - [ - "variant", - "?high" + "expand.https.any.js": [ + "12349a33f8cfb160b191ce9186c969963455f2f9", + [ + "webnn/validation_tests/expand.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API expand operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] ] - ] - } - ], - [ - "webcodecs/video-encoder-h264.https.any.worker.html?high", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "/common/media.js" - ], - [ - "script", - "/webcodecs/utils.js" - ], - [ - "script", - "/webcodecs/video-encoder-utils.js" - ], - [ - "variant", - "?baseline" - ], - [ - "variant", - "?main" - ], - [ - "variant", - "?high" + } + ], + [ + "webnn/validation_tests/expand.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API expand operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] ] - ] - } - ], - [ - "webcodecs/video-encoder-h264.https.any.worker.html?main", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "/common/media.js" - ], - [ - "script", - "/webcodecs/utils.js" - ], - [ - "script", - "/webcodecs/video-encoder-utils.js" - ], - [ - "variant", - "?baseline" - ], - [ - "variant", - "?main" - ], - [ - "variant", - "?high" + } + ], + [ + "webnn/validation_tests/expand.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API expand operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] ] - ] - } - ] - ], - "video-encoder.https.any.js": [ - "2746e60917b9e920a9015c925f7dc003021ebd04", - [ - "webcodecs/video-encoder.https.any.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "/common/media.js" - ], - [ - "script", - "/webcodecs/utils.js" - ], - [ - "script", - "/webcodecs/video-encoder-utils.js" + } + ], + [ + "webnn/validation_tests/expand.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API expand operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] ] - ] - } - ], - [ - "webcodecs/video-encoder.https.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "/common/media.js" - ], - [ - "script", - "/webcodecs/utils.js" - ], - [ - "script", - "/webcodecs/video-encoder-utils.js" + } + ], + [ + "webnn/validation_tests/expand.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API expand operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] ] - ] - } - ] - ], - "video-frame-serialization.any.js": [ - "4968c43cda3763fb9b6df7db4dc08a9da40b1868", - [ - "webcodecs/video-frame-serialization.any.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "/common/media.js" - ], - [ - "script", - "/webcodecs/utils.js" + } + ], + [ + "webnn/validation_tests/expand.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API expand operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] ] - ] - } + } + ] ], - [ - "webcodecs/video-frame-serialization.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "/common/media.js" - ], - [ - "script", - "/webcodecs/utils.js" + "gather.https.any.js": [ + "ec728314a3c01cbac1542238c68fdf842c4a535e", + [ + "webnn/validation_tests/gather.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API gather operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] ] - ] - } - ] - ], - "videoColorSpace.any.js": [ - "3af828a5bdf48effd7a78cccb5c25aaead3a3877", - [ - "webcodecs/videoColorSpace.any.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" + } + ], + [ + "webnn/validation_tests/gather.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API gather operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] ] - ] - } + } + ], + [ + "webnn/validation_tests/gather.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API gather operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], + [ + "webnn/validation_tests/gather.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API gather operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], + [ + "webnn/validation_tests/gather.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API gather operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], + [ + "webnn/validation_tests/gather.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API gather operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ] ], - [ - "webcodecs/videoColorSpace.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" + "gelu.https.any.js": [ + "c02c2923af49540d9da82819917e5d983eeedeee", + [ + "webnn/validation_tests/gelu.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API gelu operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] ] - ] - } - ] - ], - "videoDecoder-codec-specific.https.any.js": [ - "a3acb82ab2624970506d15680dd9730f5ff80fcb", - [ - "webcodecs/videoDecoder-codec-specific.https.any.html?av1", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" - ], - [ - "variant", - "?av1" - ], - [ - "variant", - "?vp8" - ], - [ - "variant", - "?vp9" - ], - [ - "variant", - "?h264_avc" - ], - [ - "variant", - "?h264_annexb" - ], - [ - "variant", - "?h265_hevc" - ], - [ - "variant", - "?h265_annexb" + } + ], + [ + "webnn/validation_tests/gelu.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API gelu operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] ] - ] - } + } + ], + [ + "webnn/validation_tests/gelu.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API gelu operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], + [ + "webnn/validation_tests/gelu.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API gelu operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], + [ + "webnn/validation_tests/gelu.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API gelu operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], + [ + "webnn/validation_tests/gelu.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API gelu operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ] ], - [ - "webcodecs/videoDecoder-codec-specific.https.any.html?h264_annexb", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" - ], - [ - "variant", - "?av1" - ], - [ - "variant", - "?vp8" - ], - [ - "variant", - "?vp9" - ], - [ - "variant", - "?h264_avc" - ], - [ - "variant", - "?h264_annexb" - ], - [ - "variant", - "?h265_hevc" - ], - [ - "variant", - "?h265_annexb" + "gemm.https.any.js": [ + "30cddcf5ec5e057711f0c0db3e3ca44acb89d5cd", + [ + "webnn/validation_tests/gemm.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API gemm operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], + [ + "webnn/validation_tests/gemm.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API gemm operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], + [ + "webnn/validation_tests/gemm.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API gemm operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] ] - ] - } - ], - [ - "webcodecs/videoDecoder-codec-specific.https.any.html?h264_avc", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" - ], - [ - "variant", - "?av1" - ], - [ - "variant", - "?vp8" - ], - [ - "variant", - "?vp9" - ], - [ - "variant", - "?h264_avc" - ], - [ - "variant", - "?h264_annexb" - ], - [ - "variant", - "?h265_hevc" - ], - [ - "variant", - "?h265_annexb" + } + ], + [ + "webnn/validation_tests/gemm.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API gemm operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] ] - ] - } - ], - [ - "webcodecs/videoDecoder-codec-specific.https.any.html?h265_annexb", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" - ], - [ - "variant", - "?av1" - ], - [ - "variant", - "?vp8" - ], - [ - "variant", - "?vp9" - ], - [ - "variant", - "?h264_avc" - ], - [ - "variant", - "?h264_annexb" - ], - [ - "variant", - "?h265_hevc" - ], - [ - "variant", - "?h265_annexb" + } + ], + [ + "webnn/validation_tests/gemm.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API gemm operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] ] - ] - } - ], - [ - "webcodecs/videoDecoder-codec-specific.https.any.html?h265_hevc", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" - ], - [ - "variant", - "?av1" - ], - [ - "variant", - "?vp8" - ], - [ - "variant", - "?vp9" - ], - [ - "variant", - "?h264_avc" - ], - [ - "variant", - "?h264_annexb" - ], - [ - "variant", - "?h265_hevc" - ], - [ - "variant", - "?h265_annexb" + } + ], + [ + "webnn/validation_tests/gemm.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API gemm operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] ] - ] - } + } + ] ], - [ - "webcodecs/videoDecoder-codec-specific.https.any.html?vp8", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" - ], - [ - "variant", - "?av1" - ], - [ - "variant", - "?vp8" - ], - [ - "variant", - "?vp9" - ], - [ - "variant", - "?h264_avc" - ], - [ - "variant", - "?h264_annexb" - ], - [ - "variant", - "?h265_hevc" - ], - [ - "variant", - "?h265_annexb" + "gru.https.any.js": [ + "00a39e4d37d365977630a34a87f2ae4ab16ef684", + [ + "webnn/validation_tests/gru.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API gru operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] ] - ] - } - ], - [ - "webcodecs/videoDecoder-codec-specific.https.any.html?vp9", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" - ], - [ - "variant", - "?av1" - ], - [ - "variant", - "?vp8" - ], - [ - "variant", - "?vp9" - ], - [ - "variant", - "?h264_avc" - ], - [ - "variant", - "?h264_annexb" - ], - [ - "variant", - "?h265_hevc" - ], - [ - "variant", - "?h265_annexb" + } + ], + [ + "webnn/validation_tests/gru.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API gru operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] ] - ] - } - ], - [ - "webcodecs/videoDecoder-codec-specific.https.any.worker.html?av1", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" - ], - [ - "variant", - "?av1" - ], - [ - "variant", - "?vp8" - ], - [ - "variant", - "?vp9" - ], - [ - "variant", - "?h264_avc" - ], - [ - "variant", - "?h264_annexb" - ], - [ - "variant", - "?h265_hevc" - ], - [ - "variant", - "?h265_annexb" + } + ], + [ + "webnn/validation_tests/gru.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API gru operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] ] - ] - } - ], - [ - "webcodecs/videoDecoder-codec-specific.https.any.worker.html?h264_annexb", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" - ], - [ - "variant", - "?av1" - ], - [ - "variant", - "?vp8" - ], - [ - "variant", - "?vp9" - ], - [ - "variant", - "?h264_avc" - ], - [ - "variant", - "?h264_annexb" - ], - [ - "variant", - "?h265_hevc" - ], - [ - "variant", - "?h265_annexb" + } + ], + [ + "webnn/validation_tests/gru.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API gru operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] ] - ] - } - ], - [ - "webcodecs/videoDecoder-codec-specific.https.any.worker.html?h264_avc", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" - ], - [ - "variant", - "?av1" - ], - [ - "variant", - "?vp8" - ], - [ - "variant", - "?vp9" - ], - [ - "variant", - "?h264_avc" - ], - [ - "variant", - "?h264_annexb" - ], - [ - "variant", - "?h265_hevc" - ], - [ - "variant", - "?h265_annexb" + } + ], + [ + "webnn/validation_tests/gru.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API gru operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] ] - ] - } - ], - [ - "webcodecs/videoDecoder-codec-specific.https.any.worker.html?h265_annexb", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" - ], - [ - "variant", - "?av1" - ], - [ - "variant", - "?vp8" - ], - [ - "variant", - "?vp9" - ], - [ - "variant", - "?h264_avc" - ], - [ - "variant", - "?h264_annexb" - ], - [ - "variant", - "?h265_hevc" - ], - [ - "variant", - "?h265_annexb" + } + ], + [ + "webnn/validation_tests/gru.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API gru operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] ] - ] - } + } + ] ], - [ - "webcodecs/videoDecoder-codec-specific.https.any.worker.html?h265_hevc", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" - ], - [ - "variant", - "?av1" - ], - [ - "variant", - "?vp8" - ], - [ - "variant", - "?vp9" - ], - [ - "variant", - "?h264_avc" - ], - [ - "variant", - "?h264_annexb" - ], - [ - "variant", - "?h265_hevc" - ], - [ - "variant", - "?h265_annexb" + "gruCell.https.any.js": [ + "02408da56e2427e95e743d23de74fb1c58a6737e", + [ + "webnn/validation_tests/gruCell.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API gruCell operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] ] - ] - } - ], - [ - "webcodecs/videoDecoder-codec-specific.https.any.worker.html?vp8", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" - ], - [ - "variant", - "?av1" - ], - [ - "variant", - "?vp8" - ], - [ - "variant", - "?vp9" - ], - [ - "variant", - "?h264_avc" - ], - [ - "variant", - "?h264_annexb" - ], - [ - "variant", - "?h265_hevc" - ], - [ - "variant", - "?h265_annexb" + } + ], + [ + "webnn/validation_tests/gruCell.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API gruCell operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] ] - ] - } - ], - [ - "webcodecs/videoDecoder-codec-specific.https.any.worker.html?vp9", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" - ], - [ - "variant", - "?av1" - ], - [ - "variant", - "?vp8" - ], - [ - "variant", - "?vp9" - ], - [ - "variant", - "?h264_avc" - ], - [ - "variant", - "?h264_annexb" - ], - [ - "variant", - "?h265_hevc" - ], - [ - "variant", - "?h265_annexb" + } + ], + [ + "webnn/validation_tests/gruCell.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API gruCell operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] ] - ] - } - ] - ], - "videoFrame-alpha.any.js": [ - "f4c4dfa737bdeb4eacacf47bff5fd4cae4883eb0", - [ - "webcodecs/videoFrame-alpha.any.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" + } + ], + [ + "webnn/validation_tests/gruCell.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API gruCell operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] ] - ] - } - ], - [ - "webcodecs/videoFrame-alpha.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" + } + ], + [ + "webnn/validation_tests/gruCell.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API gruCell operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] ] - ] - } - ] - ], - "videoFrame-canvasImageSource.html": [ - "717a0a3643a6b20b3253dae8133a8d57c34b6841", - [ - null, - {} - ] - ], - "videoFrame-construction.any.js": [ - "9f2929aedec6c136c0738e2f96b4f4c32516f448", - [ - "webcodecs/videoFrame-construction.any.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "/webcodecs/utils.js" - ], - [ - "script", - "/webcodecs/videoFrame-utils.js" + } + ], + [ + "webnn/validation_tests/gruCell.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API gruCell operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] ] - ] - } + } + ] ], - [ - "webcodecs/videoFrame-construction.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "/webcodecs/utils.js" - ], - [ - "script", - "/webcodecs/videoFrame-utils.js" + "hardSigmoid.https.any.js": [ + "b0104dfc2c2729c62fd732972bb07ad0a1542533", + [ + "webnn/validation_tests/hardSigmoid.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API hardSigmoid operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] ] - ] - } - ] - ], - "videoFrame-construction.crossOriginIsolated.https.any.js": [ - "f5af5c0296ded79c7176c82ecd69513480dce3f8", - [ - "webcodecs/videoFrame-construction.crossOriginIsolated.https.any.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "/webcodecs/utils.js" - ], - [ - "script", - "/webcodecs/videoFrame-utils.js" + } + ], + [ + "webnn/validation_tests/hardSigmoid.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API hardSigmoid operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] ] - ] - } - ], - [ - "webcodecs/videoFrame-construction.crossOriginIsolated.https.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "/webcodecs/utils.js" - ], - [ - "script", - "/webcodecs/videoFrame-utils.js" + } + ], + [ + "webnn/validation_tests/hardSigmoid.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API hardSigmoid operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] ] - ] - } - ] - ], - "videoFrame-construction.crossOriginSource.sub.html": [ - "172580f83cc0283a4d9755600b9973875b843462", - [ - null, - {} - ] - ], - "videoFrame-construction.window.js": [ - "6c9791cea6821a45e80f7928cdbc4d223ba3f6b1", - [ - "webcodecs/videoFrame-construction.window.html", - { - "script_metadata": [ - [ - "script", - "/webcodecs/videoFrame-utils.js" + } + ], + [ + "webnn/validation_tests/hardSigmoid.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API hardSigmoid operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] ] - ] - } - ] - ], - "videoFrame-copyTo.any.js": [ - "0fa57f43105fd40a01ed83664f0ef46171af876f", - [ - "webcodecs/videoFrame-copyTo.any.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "/webcodecs/videoFrame-utils.js" + } + ], + [ + "webnn/validation_tests/hardSigmoid.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API hardSigmoid operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] ] - ] - } + } + ], + [ + "webnn/validation_tests/hardSigmoid.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API hardSigmoid operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ] ], - [ - "webcodecs/videoFrame-copyTo.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "/webcodecs/videoFrame-utils.js" + "hardSwish.https.any.js": [ + "53c78c8c81df2af2b2f2759f646626d2de2b3c93", + [ + "webnn/validation_tests/hardSwish.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API hardSwish operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] ] - ] - } - ] - ], - "videoFrame-copyTo.crossOriginIsolated.https.any.js": [ - "bde3bfae03a7c28531fc18c8dab9bf8c71b3f258", - [ - "webcodecs/videoFrame-copyTo.crossOriginIsolated.https.any.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "/webcodecs/videoFrame-utils.js" + } + ], + [ + "webnn/validation_tests/hardSwish.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API hardSwish operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] ] - ] - } - ], - [ - "webcodecs/videoFrame-copyTo.crossOriginIsolated.https.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "/webcodecs/videoFrame-utils.js" + } + ], + [ + "webnn/validation_tests/hardSwish.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API hardSwish operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] ] - ] - } - ] - ], - "videoFrame-createImageBitmap.any.js": [ - "836971362382f876d7e3b1c26f3124721806264a", - [ - "webcodecs/videoFrame-createImageBitmap.any.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "/webcodecs/utils.js" + } + ], + [ + "webnn/validation_tests/hardSwish.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API hardSwish operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] ] - ] - } - ], - [ - "webcodecs/videoFrame-createImageBitmap.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "/webcodecs/utils.js" + } + ], + [ + "webnn/validation_tests/hardSwish.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API hardSwish operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] ] - ] - } - ] - ], - "videoFrame-createImageBitmap.https.any.js": [ - "8bcff0e5e6a8c22e05cde194aa2a7c251bd1a44b", - [ - "webcodecs/videoFrame-createImageBitmap.https.any.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "/webcodecs/utils.js" + } + ], + [ + "webnn/validation_tests/hardSwish.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API hardSwish operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] ] - ] - } + } + ] ], - [ - "webcodecs/videoFrame-createImageBitmap.https.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "/webcodecs/utils.js" + "input.https.any.js": [ + "07d9185cee6bd22d89fb0ac9fcd3a5c2e6942570", + [ + "webnn/validation_tests/input.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API input interface" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] ] - ] - } - ] - ], - "videoFrame-drawImage.any.js": [ - "9830181c4f50a83a36c74453f58b403d91f75493", - [ - "webcodecs/videoFrame-drawImage.any.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "/webcodecs/utils.js" + } + ], + [ + "webnn/validation_tests/input.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API input interface" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] ] - ] - } - ], - [ - "webcodecs/videoFrame-drawImage.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "/webcodecs/utils.js" + } + ], + [ + "webnn/validation_tests/input.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API input interface" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] ] - ] - } - ] - ], - "videoFrame-odd-size.any.js": [ - "da9754077f511a70353db09c5fe17486f0430300", - [ - "webcodecs/videoFrame-odd-size.any.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "/webcodecs/videoFrame-utils.js" + } + ], + [ + "webnn/validation_tests/input.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API input interface" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] ] - ] - } - ], - [ - "webcodecs/videoFrame-odd-size.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "/webcodecs/videoFrame-utils.js" + } + ], + [ + "webnn/validation_tests/input.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API input interface" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] ] - ] - } - ] - ], - "videoFrame-serialization.crossAgentCluster.https.html": [ - "967f02ec2cb4a38259d7c0eaa18a8d9d64866a91", - [ - null, - {} - ] - ], - "videoFrame-serialization.https.html": [ - "53eeae28d88cff7f47a6cd25606c9ec8b50fac20", - [ - null, - {} - ] - ], - "videoFrame-texImage.any.js": [ - "2eab6c8cde30c6eb3cb728d3d326e3ac321840cc", - [ - "webcodecs/videoFrame-texImage.any.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "/webcodecs/utils.js" - ], - [ - "script", - "/webcodecs/webgl-test-utils.js" + } + ], + [ + "webnn/validation_tests/input.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API input interface" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] ] - ] - } + } + ] ], - [ - "webcodecs/videoFrame-texImage.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "/webcodecs/utils.js" - ], - [ - "script", - "/webcodecs/webgl-test-utils.js" + "instanceNormalization.https.any.js": [ + "0777d982f6d4faa1d4e24382217b760b0baa1443", + [ + "webnn/validation_tests/instanceNormalization.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API instanceNormalization operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] ] - ] - } - ] - ] - }, - "webdriver": { - "tests": { - "classic": { - "idlharness.window.js": [ - "e92e151d89836e06966339daabc6b1be50ded744", - [ - "webdriver/tests/classic/idlharness.window.html", - { - "script_metadata": [ - [ - "script", - "/resources/WebIDLParser.js" - ], - [ - "script", - "/resources/idlharness.js" - ] + } + ], + [ + "webnn/validation_tests/instanceNormalization.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API instanceNormalization operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" ] - } - ] - ] - } - } - }, - "webgl": { - "bufferSubData.html": [ - "a97df9062d6ea964e500059e155b29604edc21b6", - [ - null, - {} - ] - ], - "compressedTexImage2D.html": [ - "a974c65002448c0df1beb97f93d5cd1476f254ca", - [ - null, - {} - ] - ], - "compressedTexSubImage2D.html": [ - "20c5ff9bd3841ca190f2d171842e28076ee00e0f", - [ - null, - {} - ] - ], - "idlharness.any.js": [ - "d6131f4884dfb001990e9427a73f092eef9f2c9e", - [ - "webgl/idlharness.any.html", - { - "script_metadata": [ - [ - "script", - "/resources/WebIDLParser.js" - ], - [ - "script", - "/resources/idlharness.js" - ], - [ - "timeout", - "long" ] - ], - "timeout": "long" - } - ], - [ - "webgl/idlharness.any.worker.html", - { - "script_metadata": [ - [ - "script", - "/resources/WebIDLParser.js" - ], - [ - "script", - "/resources/idlharness.js" - ], - [ - "timeout", - "long" + } + ], + [ + "webnn/validation_tests/instanceNormalization.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API instanceNormalization operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] ] - ], - "timeout": "long" - } - ] - ], - "texImage2D.html": [ - "86b84d1a999f165ef63fbb24ccf0587e4f6a01a3", - [ - null, - {} - ] - ], - "texSubImage2D.html": [ - "7a6c2091822a2194e851b7adcdd59cc27840df6d", - [ - null, - {} - ] - ], - "uniformMatrixNfv.html": [ - "f75cbcb99724219224c63d0dc595b1c001298500", - [ - null, - {} - ] - ] - }, - "webhid": { - "idlharness.https.window.js": [ - "bdc8419ba8bf4c40ac62634b04ebd962d118c36b", - [ - "webhid/idlharness.https.window.html", - { - "script_metadata": [ - [ - "script", - "/resources/WebIDLParser.js" - ], - [ - "script", - "/resources/idlharness.js" + } + ], + [ + "webnn/validation_tests/instanceNormalization.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API instanceNormalization operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] ] - ] - } - ] - ], - "unload-iframe.https.window.js": [ - "2c0e2c1bb4fc57f7bcfe4d7b66db6579b4931e37", - [ - "webhid/unload-iframe.https.window.html", - {} - ] - ] - }, - "webidl": { - "current-realm.html": [ - "29e07d1f79edc05d69ccc351247894984488ad92", - [ - null, - {} - ] - ], - "ecmascript-binding": { - "allow-resizable.html": [ - "54daa57bce676ab692a5aff0bbd846c4cfbcb6fd", + } + ], [ - null, - {} - ] - ], - "attributes-accessors-unique-function-objects.html": [ - "167f55bcef7ead0fd83842ed693265adc9161641", + "webnn/validation_tests/instanceNormalization.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API instanceNormalization operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], [ - null, - {} + "webnn/validation_tests/instanceNormalization.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API instanceNormalization operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } ] ], - "builtin-function-properties.any.js": [ - "885bb441ead442e769e580e12d7b126f31c76a31", + "layerNormalization.https.any.js": [ + "50e48cca6e39bd41fce25082011859676100a0ec", [ - "webidl/ecmascript-binding/builtin-function-properties.any.html", - {} + "webnn/validation_tests/layerNormalization.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API layerNormalization operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], + [ + "webnn/validation_tests/layerNormalization.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API layerNormalization operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], + [ + "webnn/validation_tests/layerNormalization.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API layerNormalization operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], + [ + "webnn/validation_tests/layerNormalization.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API layerNormalization operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], + [ + "webnn/validation_tests/layerNormalization.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API layerNormalization operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } ], [ - "webidl/ecmascript-binding/builtin-function-properties.any.worker.html", - {} + "webnn/validation_tests/layerNormalization.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API layerNormalization operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } ] ], - "class-string-interface.any.js": [ - "ee792d5368389b4f855474bd8077b8d7afd93b19", + "leakyRelu.https.any.js": [ + "6766763cd749aa33a3dcc72e0409942b03cc15f8", [ - "webidl/ecmascript-binding/class-string-interface.any.html", - {} + "webnn/validation_tests/leakyRelu.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API leakyRelu operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } ], [ - "webidl/ecmascript-binding/class-string-interface.any.worker.html", - {} - ] - ], - "class-string-iterator-prototype-object.any.js": [ - "5ca549d69cff81521aa9fbc7a4ca6188f38c8e4f", - [ - "webidl/ecmascript-binding/class-string-iterator-prototype-object.any.html", - {} + "webnn/validation_tests/leakyRelu.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API leakyRelu operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } ], [ - "webidl/ecmascript-binding/class-string-iterator-prototype-object.any.worker.html", - {} - ] - ], - "class-string-named-properties-object.window.js": [ - "a427a2f8142e5392725f078e1fdb0c179994c593", + "webnn/validation_tests/leakyRelu.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API leakyRelu operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], [ - "webidl/ecmascript-binding/class-string-named-properties-object.window.html", - {} - ] - ], - "constructors.html": [ - "61993a6200ed56f3664ef72c74839b2d1feaa3b1", + "webnn/validation_tests/leakyRelu.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API leakyRelu operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "default-iterator-object.html": [ - "c7e9188521a2ae0bc9f15ff9bcaefc55a5253ce2", + "webnn/validation_tests/leakyRelu.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API leakyRelu operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], [ - null, - {} + "webnn/validation_tests/leakyRelu.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API leakyRelu operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } ] ], - "default-toJSON-cross-realm.html": [ - "79c3097f339b58fe051453543ee922280e057bc0", + "linear.https.any.js": [ + "936843374b992f9fa7703642448e93f0edc36187", [ - null, - {} - ] - ], - "es-exceptions": { - "DOMException-constants.any.js": [ - "bb846a494eb898aed621181f182c1b125f9aaeae", - [ - "webidl/ecmascript-binding/es-exceptions/DOMException-constants.any.html", - {} - ], - [ - "webidl/ecmascript-binding/es-exceptions/DOMException-constants.any.worker.html", - {} - ] - ], - "DOMException-constructor-and-prototype.any.js": [ - "a015470cad6bf7f72541718243e94512671454ad", - [ - "webidl/ecmascript-binding/es-exceptions/DOMException-constructor-and-prototype.any.html", - {} - ], - [ - "webidl/ecmascript-binding/es-exceptions/DOMException-constructor-and-prototype.any.worker.html", - {} - ] - ], - "DOMException-constructor-behavior.any.js": [ - "e9917af2287490c77543146a660d57c822cccf2e", - [ - "webidl/ecmascript-binding/es-exceptions/DOMException-constructor-behavior.any.html", - {} - ], - [ - "webidl/ecmascript-binding/es-exceptions/DOMException-constructor-behavior.any.worker.html", - {} - ] - ], - "DOMException-custom-bindings.any.js": [ - "cd4e5b6341948cb8fad29cc29483dcf6b8444bcd", - [ - "webidl/ecmascript-binding/es-exceptions/DOMException-custom-bindings.any.html", - {} - ], - [ - "webidl/ecmascript-binding/es-exceptions/DOMException-custom-bindings.any.worker.html", - {} - ] + "webnn/validation_tests/linear.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API linear operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } ], - "exceptions.html": [ - "d26c66266994b2e349b4c81d42bc2f66353e6840", - [ - null, - {} - ] - ] - }, - "global-immutable-prototype.any.js": [ - "6291c3ae935608185385e87f769e4f8b5be6cf19", [ - "webidl/ecmascript-binding/global-immutable-prototype.any.html", + "webnn/validation_tests/linear.https.any.html?gpu", { "script_metadata": [ + [ + "title", + "validation tests for WebNN API linear operation" + ], [ "global", - "window,worker" + "window,dedicatedworker" ], [ - "title", - "Immutability of the global prototype chain" + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" ] ] } ], [ - "webidl/ecmascript-binding/global-immutable-prototype.any.serviceworker.html", + "webnn/validation_tests/linear.https.any.html?npu", { "script_metadata": [ + [ + "title", + "validation tests for WebNN API linear operation" + ], [ "global", - "window,worker" + "window,dedicatedworker" ], [ - "title", - "Immutability of the global prototype chain" + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" ] ] } ], [ - "webidl/ecmascript-binding/global-immutable-prototype.any.sharedworker.html", + "webnn/validation_tests/linear.https.any.worker.html?cpu", { "script_metadata": [ + [ + "title", + "validation tests for WebNN API linear operation" + ], [ "global", - "window,worker" + "window,dedicatedworker" ], [ - "title", - "Immutability of the global prototype chain" + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" ] ] } ], [ - "webidl/ecmascript-binding/global-immutable-prototype.any.worker.html", + "webnn/validation_tests/linear.https.any.worker.html?gpu", { "script_metadata": [ + [ + "title", + "validation tests for WebNN API linear operation" + ], [ "global", - "window,worker" + "window,dedicatedworker" ], [ - "title", - "Immutability of the global prototype chain" + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" ] ] } - ] - ], - "global-object-implicit-this-value-cross-realm.html": [ - "b9939b801cbd803dbb456425fba948d74e816ad7", + ], [ - null, - {} + "webnn/validation_tests/linear.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API linear operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } ] ], - "global-object-implicit-this-value.any.js": [ - "4c159c67519c0bdd33b6d2263c94591bfb7e1470", + "lstm.https.any.js": [ + "c0d1c5100f63cf6172dd7e76442a6a9de54384dd", [ - "webidl/ecmascript-binding/global-object-implicit-this-value.any.html", + "webnn/validation_tests/lstm.https.any.html?cpu", { "script_metadata": [ + [ + "title", + "validation tests for WebNN API lstm operation" + ], [ "global", - "window,worker" + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" ] ] } ], [ - "webidl/ecmascript-binding/global-object-implicit-this-value.any.serviceworker.html", + "webnn/validation_tests/lstm.https.any.html?gpu", { "script_metadata": [ + [ + "title", + "validation tests for WebNN API lstm operation" + ], [ "global", - "window,worker" + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" ] ] } ], [ - "webidl/ecmascript-binding/global-object-implicit-this-value.any.sharedworker.html", + "webnn/validation_tests/lstm.https.any.html?npu", { "script_metadata": [ + [ + "title", + "validation tests for WebNN API lstm operation" + ], [ "global", - "window,worker" + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" ] ] } ], [ - "webidl/ecmascript-binding/global-object-implicit-this-value.any.worker.html", + "webnn/validation_tests/lstm.https.any.worker.html?cpu", { "script_metadata": [ + [ + "title", + "validation tests for WebNN API lstm operation" + ], [ "global", - "window,worker" + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" ] ] } - ] - ], - "has-instance.html": [ - "caf0be47290607f9d63b42dde96c31816a1f7376", + ], [ - null, - {} - ] - ], - "interface-object-set-receiver.html": [ - "ca75a96bbad52e554aa8eaa09489988de3a62826", + "webnn/validation_tests/lstm.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API lstm operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], [ - null, - {} + "webnn/validation_tests/lstm.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API lstm operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } ] ], - "interface-object.html": [ - "132c61ddaed4a31367d00dee5fcb292a9661e9be", + "lstmCell.https.any.js": [ + "eb00ace187fba904ac61fdd1bb02420b18521735", [ - null, - {} - ] - ], - "interface-prototype-constructor-set-receiver.html": [ - "64a2da8eb2da2d1421be64e50595df1d14a180e2", + "webnn/validation_tests/lstmCell.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API lstmCell operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "interface-prototype-object.html": [ - "299bcf926dc23d3d5e0175515277925141cd87ce", + "webnn/validation_tests/lstmCell.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API lstmCell operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "invalid-this-value-cross-realm.html": [ - "0535115ac61f43f22054e013a1cc0ec84a3bb8a2", + "webnn/validation_tests/lstmCell.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API lstmCell operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "iterator-invalidation-foreach.html": [ - "9d2e3b9cb25ce6ee49f3a9c724daf59e51b74a3d", + "webnn/validation_tests/lstmCell.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API lstmCell operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "iterator-prototype-object.html": [ - "7859c1e46ac46463f070bf2b48a38f54d2e8a8cd", + "webnn/validation_tests/lstmCell.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API lstmCell operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], [ - null, - {} + "webnn/validation_tests/lstmCell.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API lstmCell operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } ] ], - "legacy-callback-interface-object.html": [ - "627d29507f7dad5b2a8655a38d2f06008170cee8", + "matmul.https.any.js": [ + "981d8f35708d8b731c753fc0f092d461fc61b30f", [ - null, - {} - ] - ], - "legacy-factor-function-subclass.window.js": [ - "1fd64f41bb2e8ecd95ba15104886e7ec16f3cc6d", + "webnn/validation_tests/matmul.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API matmul operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], [ - "webidl/ecmascript-binding/legacy-factor-function-subclass.window.html", - {} - ] - ], - "legacy-platform-object": { - "DefineOwnProperty.html": [ - "bd7ba19c1a90b66446b5e116187781dbeb786602", - [ - null, - {} - ] + "webnn/validation_tests/matmul.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API matmul operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } ], - "GetOwnProperty.html": [ - "be3bcc61f0a3aa4867cbcb584f7c3f3de4148afb", - [ - null, - {} - ] + [ + "webnn/validation_tests/matmul.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API matmul operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } ], - "OwnPropertyKeys.html": [ - "d33980517b1a944a9c87cdd81db4537df1abcadc", - [ - null, - {} - ] + [ + "webnn/validation_tests/matmul.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API matmul operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } ], - "Set.html": [ - "1390b51cd03b51cb15ceea1519fcd309bf914c86", - [ - null, - {} - ] - ] - }, - "no-regexp-special-casing.any.js": [ - "4446dbf69c02ab466ad03fd69d6ed3924d8e84a0", [ - "webidl/ecmascript-binding/no-regexp-special-casing.any.html", - {} + "webnn/validation_tests/matmul.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API matmul operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } ], [ - "webidl/ecmascript-binding/no-regexp-special-casing.any.worker.html", - {} + "webnn/validation_tests/matmul.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API matmul operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } ] ], - "observable-array-no-leak-of-internals.window.js": [ - "f93464005d017f6af716bdf66b85834be13012ce", + "pad.https.any.js": [ + "3f5c30b84cb8e99fcdf92220afc8b9262470cc3a", [ - "webidl/ecmascript-binding/observable-array-no-leak-of-internals.window.html", - {} - ] - ], - "observable-array-ownkeys.window.js": [ - "29b537c4750a385f0000636e79c1c31126be5d5c", + "webnn/validation_tests/pad.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API pad operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], [ - "webidl/ecmascript-binding/observable-array-ownkeys.window.html", - {} - ] - ], - "put-forwards.html": [ - "7d99d65aa21385be8bef633e439a318cb6abaab2", + "webnn/validation_tests/pad.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API pad operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "replaceable-setter-throws-if-defineownproperty-fails.html": [ - "872bbff960426523ec2bebb47aee22a3dca6e1bc", + "webnn/validation_tests/pad.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API pad operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "sequence-conversion.html": [ - "40764e9f5776031cb333d79358c814fddc4b0b12", + "webnn/validation_tests/pad.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API pad operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], [ - null, - {} + "webnn/validation_tests/pad.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API pad operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], + [ + "webnn/validation_tests/pad.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API pad operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } ] ], - "window-named-properties-object.html": [ - "cc4976890683f444cdd29b9fce591207b0def240", + "pooling-and-reduction-keep-dims.https.any.js": [ + "5a30aaf02be49fd8843e6378f4ff90ceb5f0cea6", [ - null, - {} - ] - ] - }, - "idlharness-shadowrealm.window.js": [ - "ab1ca9a0198720d537744cdc8777205317b41f58", - [ - "webidl/idlharness-shadowrealm.window.html", - { - "script_metadata": [ - [ - "script", - "/resources/idlharness-shadowrealm.js" - ] - ] - } - ] - ], - "idlharness.any.js": [ - "3c662ba8e63f2f585ce1c5674eb1e165e5810313", - [ - "webidl/idlharness.any.html", - { - "script_metadata": [ - [ - "script", - "/resources/WebIDLParser.js" + "webnn/validation_tests/pooling-and-reduction-keep-dims.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "validation tests for pooling and reduction operators keep dimensions" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "script", + "../resources/utils_validation.js" + ], + [ + "timeout", + "long" + ] ], - [ - "script", - "/resources/idlharness.js" - ] - ] - } - ], - [ - "webidl/idlharness.any.worker.html", - { - "script_metadata": [ - [ - "script", - "/resources/WebIDLParser.js" + "timeout": "long" + } + ], + [ + "webnn/validation_tests/pooling-and-reduction-keep-dims.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "validation tests for pooling and reduction operators keep dimensions" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "script", + "../resources/utils_validation.js" + ], + [ + "timeout", + "long" + ] ], - [ - "script", - "/resources/idlharness.js" - ] - ] - } - ] - ] - }, - "webmessaging": { - "Channel_postMessage_Blob.any.js": [ - "fce814f5887ad186789331d4cc071a06e03e2127", - [ - "webmessaging/Channel_postMessage_Blob.any.html", - { - "script_metadata": [ - [ - "title", - "postMessage() with a Blob" + "timeout": "long" + } + ], + [ + "webnn/validation_tests/pooling-and-reduction-keep-dims.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "validation tests for pooling and reduction operators keep dimensions" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "script", + "../resources/utils_validation.js" + ], + [ + "timeout", + "long" + ] ], - [ - "script", - "/common/gc.js" - ] - ] - } - ], - [ - "webmessaging/Channel_postMessage_Blob.any.worker.html", - { - "script_metadata": [ - [ - "title", - "postMessage() with a Blob" + "timeout": "long" + } + ], + [ + "webnn/validation_tests/pooling-and-reduction-keep-dims.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "validation tests for pooling and reduction operators keep dimensions" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "script", + "../resources/utils_validation.js" + ], + [ + "timeout", + "long" + ] ], - [ - "script", - "/common/gc.js" - ] - ] - } - ] - ], - "Channel_postMessage_DataCloneErr.any.js": [ - "048820fa6be3e30bc3da1081b69b83725b9b8eb2", - [ - "webmessaging/Channel_postMessage_DataCloneErr.any.html", - { - "script_metadata": [ - [ - "title", - "postMessage() with a host object raises DataCloneError" - ] - ] - } - ], - [ - "webmessaging/Channel_postMessage_DataCloneErr.any.worker.html", - { - "script_metadata": [ - [ - "title", - "postMessage() with a host object raises DataCloneError" - ] - ] - } - ] - ], - "Channel_postMessage_clone_port.any.js": [ - "3dcb902b77b4f30ef3eff56aacfba854d3cdc5c8", - [ - "webmessaging/Channel_postMessage_clone_port.any.html", - { - "script_metadata": [ - [ - "title", - "postMessage(): clone a port" - ] - ] - } - ], - [ - "webmessaging/Channel_postMessage_clone_port.any.worker.html", - { - "script_metadata": [ - [ - "title", - "postMessage(): clone a port" - ] - ] - } - ] - ], - "Channel_postMessage_clone_port_error.any.js": [ - "cbee47270c461610695aef5e8f91bb417bf4175c", - [ - "webmessaging/Channel_postMessage_clone_port_error.any.html", - { - "script_metadata": [ - [ - "title", - "postMessage() DataCloneError: cloning source port" - ] - ] - } - ], - [ - "webmessaging/Channel_postMessage_clone_port_error.any.worker.html", - { - "script_metadata": [ - [ - "title", - "postMessage() DataCloneError: cloning source port" - ] - ] - } - ] - ], - "Channel_postMessage_event_properties.any.js": [ - "0fd8c7e90a24ce2a84e60eedeaaef65f752922c5", - [ - "webmessaging/Channel_postMessage_event_properties.any.html", - { - "script_metadata": [ - [ - "title", - "postMessage(): MessageEvent properties" - ] - ] - } - ], - [ - "webmessaging/Channel_postMessage_event_properties.any.worker.html", - { - "script_metadata": [ - [ - "title", - "postMessage(): MessageEvent properties" - ] - ] - } - ] - ], - "Channel_postMessage_ports_readonly_array.any.js": [ - "032a54e710feec2517a9272fb5bd4ff6dea7b059", - [ - "webmessaging/Channel_postMessage_ports_readonly_array.any.html", - { - "script_metadata": [ - [ - "title", - "postMessage(): read-only ports array" - ] - ] - } - ], - [ - "webmessaging/Channel_postMessage_ports_readonly_array.any.worker.html", - { - "script_metadata": [ - [ - "title", - "postMessage(): read-only ports array" - ] - ] - } - ] - ], - "Channel_postMessage_target_source.any.js": [ - "6b7fc7f20d46716d481ae0e200f35fdc8a8eabba", - [ - "webmessaging/Channel_postMessage_target_source.any.html", - { - "script_metadata": [ - [ - "title", - "postMessage(): target port and source port" - ] - ] - } - ], - [ - "webmessaging/Channel_postMessage_target_source.any.worker.html", - { - "script_metadata": [ - [ - "title", - "postMessage(): target port and source port" - ] - ] - } - ] - ], - "Channel_postMessage_transfer_xsite_incoming_messages.window.js": [ - "23237ae1555e67dafcb170ce8fccab4c966f7a2e", - [ - "webmessaging/Channel_postMessage_transfer_xsite_incoming_messages.window.html", - { - "script_metadata": [ - [ - "script", - "/common/get-host-info.sub.js" - ] - ] - } - ] - ], - "Channel_postMessage_with_transfer_entangled.any.js": [ - "2226b278440346290066e622fe6abbaab2b93bd2", - [ - "webmessaging/Channel_postMessage_with_transfer_entangled.any.html", - {} - ], - [ - "webmessaging/Channel_postMessage_with_transfer_entangled.any.worker.html", - {} - ] - ], - "Channel_postMessage_with_transfer_incoming_messages.any.js": [ - "fe2e96220d34d88127dc596eee70d183f7debd18", - [ - "webmessaging/Channel_postMessage_with_transfer_incoming_messages.any.html", - {} - ], - [ - "webmessaging/Channel_postMessage_with_transfer_incoming_messages.any.worker.html", - {} - ] - ], - "Channel_postMessage_with_transfer_outgoing_messages.any.js": [ - "aa80b7589cffa58da6f1d790e7cdbeb95642c6e3", - [ - "webmessaging/Channel_postMessage_with_transfer_outgoing_messages.any.html", - {} - ], - [ - "webmessaging/Channel_postMessage_with_transfer_outgoing_messages.any.worker.html", - {} - ] - ], - "MessageEvent-trusted.any.js": [ - "84187eb571607faa38b81332c73cb5e0f71eee77", - [ - "webmessaging/MessageEvent-trusted.any.html", - { - "script_metadata": [ - [ - "title", - "MessagePort message events are trusted" - ] - ] - } - ], - [ - "webmessaging/MessageEvent-trusted.any.worker.html", - { - "script_metadata": [ - [ - "title", - "MessagePort message events are trusted" - ] - ] - } - ] - ], - "MessageEvent-trusted.window.js": [ - "11cf48beed9abda7d44816918364982ba1eb8824", - [ - "webmessaging/MessageEvent-trusted.window.html", - { - "script_metadata": [ - [ - "title", - "MessagePort message events are trusted with window" - ] - ] - } - ] - ], - "MessageEvent.any.js": [ - "0fb2636911ddc6ebc6026f20d8e18a2aa9007404", - [ - "webmessaging/MessageEvent.any.html", - { - "script_metadata": [ - [ - "title", - "MessageEvent" - ] - ] - } - ], - [ - "webmessaging/MessageEvent.any.worker.html", - { - "script_metadata": [ - [ - "title", - "MessageEvent" - ] - ] - } - ] - ], - "MessageEvent_onmessage_postMessage_infinite_loop.html": [ - "179bc0cc4a1253618e30ffd674fec139c3c0d52a", - [ - null, - {} - ] - ], - "MessageEvent_properties.htm": [ - "389add98d1f4c40deea0adcc96960862a2aff6b2", - [ - null, - {} - ] - ], - "MessagePort_initial_disabled.any.js": [ - "b897858175618ec6d399bb8ebe8a8af5c77f32cf", - [ - "webmessaging/MessagePort_initial_disabled.any.html", - { - "script_metadata": [ - [ - "title", - "MessageChannel: port message queue is initially disabled" - ] - ] - } - ], - [ - "webmessaging/MessagePort_initial_disabled.any.worker.html", - { - "script_metadata": [ - [ - "title", - "MessageChannel: port message queue is initially disabled" - ] - ] - } - ] - ], - "MessagePort_onmessage_start.any.js": [ - "7ba3a3721023206fa64c810b4c70c75a208ff049", - [ - "webmessaging/MessagePort_onmessage_start.any.html", - { - "script_metadata": [ - [ - "title", - "MessageChannel: port.onmessage enables message queue" - ] - ] - } - ], - [ - "webmessaging/MessagePort_onmessage_start.any.worker.html", - { - "script_metadata": [ - [ - "title", - "MessageChannel: port.onmessage enables message queue" - ] - ] - } - ] - ], - "Transferred_objects_unusable.sub.htm": [ - "55c3dbdba18a686011f893be82f5c220b1e7ce74", - [ - null, - {} - ] - ], - "broadcastchannel": { - "basics.any.js": [ - "eec09d65a3aba27feb44bd330e0b5bf9dfdd96a2", + "timeout": "long" + } + ], [ - "webmessaging/broadcastchannel/basics.any.html", - {} + "webnn/validation_tests/pooling-and-reduction-keep-dims.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "validation tests for pooling and reduction operators keep dimensions" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "script", + "../resources/utils_validation.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ], [ - "webmessaging/broadcastchannel/basics.any.worker.html", - {} + "webnn/validation_tests/pooling-and-reduction-keep-dims.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "validation tests for pooling and reduction operators keep dimensions" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils.js" + ], + [ + "script", + "../resources/utils_validation.js" + ], + [ + "timeout", + "long" + ] + ], + "timeout": "long" + } ] ], - "blobs.html": [ - "ab5096b63c19b0792b60746ff416fda92a4bbed3", + "pooling.https.any.js": [ + "119132cf638f564b4b388c22f0db81058cdb014e", [ - null, - {} - ] - ], - "cross-origin.html": [ - "ee4b2f21c8e3fec488cb28d72e45a7e918210806", + "webnn/validation_tests/pooling.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API pooling operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "cross-partition.https.tentative.html": [ - "4e91da554686ec9f86f63572750296db48c34a4b", + "webnn/validation_tests/pooling.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API pooling operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], [ - null, + "webnn/validation_tests/pooling.https.any.html?npu", { - "timeout": "long" + "script_metadata": [ + [ + "title", + "validation tests for WebNN API pooling operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] } - ] - ], - "detached-iframe.html": [ - "b9b06c3a46463bf50a88ebc545f1ad9ed6ac496a", + ], [ - null, - {} - ] - ], - "interface.any.js": [ - "35e09d34b418d3c6d2a574bfdedc9e6632a6c09f", + "webnn/validation_tests/pooling.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API pooling operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], [ - "webmessaging/broadcastchannel/interface.any.html", - {} + "webnn/validation_tests/pooling.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API pooling operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } ], [ - "webmessaging/broadcastchannel/interface.any.worker.html", - {} + "webnn/validation_tests/pooling.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API pooling operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } ] ], - "opaque-origin.html": [ - "e09d935244b8b6d01e2b3ca62d16198e3f8af6d9", + "prelu.https.any.js": [ + "5b1b95c70f110e5668696f63c96764c911261835", [ - null, + "webnn/validation_tests/prelu.https.any.html?cpu", { - "timeout": "long" + "script_metadata": [ + [ + "title", + "validation tests for WebNN API prelu operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] } - ] - ], - "ordering.html": [ - "2d521b9e0ccf94feb42fa9acc09343314f625a87", + ], [ - null, - {} - ] - ], - "origin.window.js": [ - "7e9d602af194b7929f9c4c9cb8e4d3f972a0ea26", + "webnn/validation_tests/prelu.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API prelu operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], [ - "webmessaging/broadcastchannel/origin.window.html", - {} - ] - ], - "sandbox.html": [ - "aedf3c0d6fe64dca2b3a6058d69d7f3a7f70cc28", + "webnn/validation_tests/prelu.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API prelu operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "service-worker.https.html": [ - "d605434ae1ccb02724a901caf5f2325b1719d878", + "webnn/validation_tests/prelu.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API prelu operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], [ - null, - {} - ] - ], - "workers.html": [ - "8b55492f3cffb35664ed26fe1f3687f52ff457e0", + "webnn/validation_tests/prelu.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API prelu operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ], [ - null, - {} - ] - ] - }, - "event.data.sub.htm": [ - "6858ef4c690b901ef421e84938eb78250d982ddc", - [ - null, - {} - ] - ], - "event.origin.sub.htm": [ - "5b1ab3e3c37fe08f8db2f2617b79b534ef816485", - [ - null, - {} - ] - ], - "event.ports.sub.htm": [ - "a4ca24b15ee4328c539198e156e9e1e065ac3067", - [ - null, - {} - ] - ], - "event.source.htm": [ - "365a5feb476592dd88eb7fa00f563ce556143e95", - [ - null, - {} - ] - ], - "event.source.xorigin.sub.htm": [ - "7327f78667303d68cef815e52b729225a7d5234d", - [ - null, - {} - ] - ], - "message-channels": { - "basics.any.js": [ - "5732fb268a0faa029262cfc360bf140123b707c2", + "webnn/validation_tests/prelu.https.any.worker.html?npu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API prelu operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } + ] + ], + "reduction.https.any.js": [ + "57931f3aec4751408f78108c3d0fdca66a11bfe9", [ - "webmessaging/message-channels/basics.any.html", + "webnn/validation_tests/reduction.https.any.html?cpu", { "script_metadata": [ [ "title", - "basic messagechannel test" + "validation tests for WebNN API reduction operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" ] ] } ], [ - "webmessaging/message-channels/basics.any.worker.html", + "webnn/validation_tests/reduction.https.any.html?gpu", { "script_metadata": [ [ "title", - "basic messagechannel test" + "validation tests for WebNN API reduction operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" ] ] } - ] - ], - "close-event": { - "document-destroyed.tentative.window.js": [ - "85e4ad30add19b9a1d733917f6d89ada74c62198", - [ - "webmessaging/message-channels/close-event/document-destroyed.tentative.window.html", - { - "script_metadata": [ - [ - "title", - "Close event test when the document is destroyed." - ], - [ - "script", - "/common/dispatcher/dispatcher.js" - ], - [ - "script", - "/common/get-host-info.sub.js" - ], - [ - "script", - "/common/utils.js" - ], - [ - "script", - "/html/browsers/browsing-the-web/remote-context-helper/resources/remote-context-helper.js" - ], - [ - "script", - "resources/helper.js" - ] - ] - } - ] ], - "entangled-after-back-forward-cache-restore.https.tentative.window.js": [ - "c99e89f02b7ef4e3c9f3df3dcc35fcf020823dd1", - [ - "webmessaging/message-channels/close-event/entangled-after-back-forward-cache-restore.https.tentative.window.html", - { - "script_metadata": [ - [ - "timeout", - "long" - ], - [ - "title", - "Confirm close event is not fired when the page enters BFCache and MessagePort still works after the page is restored." - ], - [ - "script", - "/common/dispatcher/dispatcher.js" - ], - [ - "script", - "/common/get-host-info.sub.js" - ], - [ - "script", - "/common/utils.js" - ], - [ - "script", - "/html/browsers/browsing-the-web/remote-context-helper/resources/remote-context-helper.js" - ], - [ - "script", - "/service-workers/service-worker/resources/test-helpers.sub.js" - ], - [ - "script", - "/html/browsers/browsing-the-web/back-forward-cache/resources/rc-helper.js" - ] + [ + "webnn/validation_tests/reduction.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API reduction operation" ], - "timeout": "long" - } - ] - ], - "explicitly-closed.tentative.window.js": [ - "612003d58eaea908ad93294a7bbf777184356a28", - [ - "webmessaging/message-channels/close-event/explicitly-closed.tentative.window.html", - { - "script_metadata": [ - [ - "title", - "Close event test when an entangled port is explicitly closed." - ], - [ - "script", - "/common/dispatcher/dispatcher.js" - ], - [ - "script", - "/common/get-host-info.sub.js" - ], - [ - "script", - "/common/utils.js" - ], - [ - "script", - "/html/browsers/browsing-the-web/remote-context-helper/resources/remote-context-helper.js" - ], - [ - "script", - "resources/helper.js" - ] - ] - } - ] - ], - "garbage-collected.tentative.any.js": [ - "11f19c3b246f90b742ee2969e4dbddfdb06865b1", - [ - "webmessaging/message-channels/close-event/garbage-collected.tentative.any.html", - { - "script_metadata": [ - [ - "title", - "Close event test when an entangled port is GCed." - ], - [ - "script", - "/common/gc.js" - ] - ] - } - ], - [ - "webmessaging/message-channels/close-event/garbage-collected.tentative.any.worker.html", - { - "script_metadata": [ - [ - "title", - "Close event test when an entangled port is GCed." - ], - [ - "script", - "/common/gc.js" - ] + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" ] - } - ] - ] - }, - "close.any.js": [ - "8741d894b9632653721863eaf44988a27c933e43", - [ - "webmessaging/message-channels/close.any.html", - {} + ] + } ], [ - "webmessaging/message-channels/close.any.worker.html", - {} - ] - ], - "cross-document.html": [ - "f4512ba5a2a66deab9b97d5886ec04a113872c2c", - [ - null, - {} - ] - ], - "detached-iframe.window.js": [ - "c19f50ff9317e2ecab65647a5da2b2464e295a52", - [ - "webmessaging/message-channels/detached-iframe.window.html", + "webnn/validation_tests/reduction.https.any.worker.html?cpu", { "script_metadata": [ [ "title", - "MessageChannel in a detached iframe test" + "validation tests for WebNN API reduction operation" ], [ - "script", - "/service-workers/service-worker/resources/test-helpers.sub.js" + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" ], [ "script", - "/common/gc.js" + "../resources/utils_validation.js" ] ] } - ] - ], - "dictionary-transferrable.any.js": [ - "bf49fddb99271fb16262a8029a97ba52041300eb", + ], [ - "webmessaging/message-channels/dictionary-transferrable.any.html", + "webnn/validation_tests/reduction.https.any.worker.html?gpu", { "script_metadata": [ [ "title", - "basic messagechannel with transfer" + "validation tests for WebNN API reduction operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" ] ] } ], [ - "webmessaging/message-channels/dictionary-transferrable.any.worker.html", + "webnn/validation_tests/reduction.https.any.worker.html?npu", { "script_metadata": [ [ "title", - "basic messagechannel with transfer" + "validation tests for WebNN API reduction operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" ] ] } ] ], - "implied-start.any.js": [ - "460d26b7e401c301b7f7e18ade6eb9bf1870b4c1", + "relu.https.any.js": [ + "7bd61fe413b2a83eeadb8dca55c2595cb857cede", [ - "webmessaging/message-channels/implied-start.any.html", + "webnn/validation_tests/relu.https.any.html?cpu", { "script_metadata": [ [ "title", - "onmessage implied start()" + "validation tests for WebNN API relu operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" ] ] } ], [ - "webmessaging/message-channels/implied-start.any.worker.html", + "webnn/validation_tests/relu.https.any.html?gpu", { "script_metadata": [ [ "title", - "onmessage implied start()" + "validation tests for WebNN API relu operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" ] ] } - ] - ], - "no-start.any.js": [ - "75b1ea1b26e8f2e1e871122b2ed3dd53a14690fe", + ], [ - "webmessaging/message-channels/no-start.any.html", + "webnn/validation_tests/relu.https.any.html?npu", { "script_metadata": [ [ "title", - "without start()" + "validation tests for WebNN API relu operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" ] ] } ], [ - "webmessaging/message-channels/no-start.any.worker.html", + "webnn/validation_tests/relu.https.any.worker.html?cpu", { "script_metadata": [ [ "title", - "without start()" + "validation tests for WebNN API relu operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" ] ] } - ] - ], - "user-activation.tentative.any.js": [ - "175662873c873476545895d1b4fc18674979e6ce", + ], [ - "webmessaging/message-channels/user-activation.tentative.any.html", + "webnn/validation_tests/relu.https.any.worker.html?gpu", { "script_metadata": [ [ "title", - "user activation messagechannel test" + "validation tests for WebNN API relu operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" ] ] } ], [ - "webmessaging/message-channels/user-activation.tentative.any.worker.html", + "webnn/validation_tests/relu.https.any.worker.html?npu", { "script_metadata": [ [ "title", - "user activation messagechannel test" + "validation tests for WebNN API relu operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" ] ] } ] ], - "worker-post-after-close.any.js": [ - "2de0c434de2e28689ab3ae7e7719a368f17ed522", + "resample2d.https.any.js": [ + "777c1fc6bb8bafe2cfad0c080495b334936fbc6f", [ - "webmessaging/message-channels/worker-post-after-close.any.html", - {} + "webnn/validation_tests/resample2d.https.any.html?cpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API resample2d operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } ], [ - "webmessaging/message-channels/worker-post-after-close.any.worker.html", - {} - ] - ], - "worker.any.js": [ - "633d89a3712f04feacc8df0c705022acc40d9bd8", - [ - "webmessaging/message-channels/worker.any.html", - {} + "webnn/validation_tests/resample2d.https.any.html?gpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API resample2d operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] + } ], [ - "webmessaging/message-channels/worker.any.worker.html", - {} - ] - ] - }, - "messageerror.html": [ - "2cb51ee3c06c366529f66815587cef455e267666", - [ - null, - {} - ] - ], - "multi-globals": { - "broadcastchannel-current.sub.html": [ - "ae2369394e7e182b136a9341d148a5cb33f24600", - [ - null, - {} - ] - ], - "broadcastchannel-incumbent.sub.html": [ - "31a4221c1dbe539b7c6b06d7409526b1435dd33a", - [ - null, - {} - ] - ], - "messageport-current.html": [ - "ee172c6138d4f083574b2e77a21b6a4cfc017994", - [ - null, - {} - ] - ], - "messageport-incumbent.html": [ - "4d47fb8124b560c6d008157576f88c96711de689", - [ - null, - {} - ] - ] - }, - "postMessage_ArrayBuffer.sub.htm": [ - "457cf94fa56dcb60b92aaded544d3cd251b99f3a", - [ - null, - {} - ] - ], - "postMessage_CryptoKey_insecure.sub.html": [ - "8e5bdcb9c6fc82f84beeb561d4c70625dea0b7ee", - [ - null, - {} - ] - ], - "postMessage_Date.sub.htm": [ - "0f89738f3add51ddd3fd9f911705d52059b3fa3f", - [ - null, - {} - ] - ], - "postMessage_Document.htm": [ - "c00a09a8658557c14d4c2925affb2660b9bd76bf", - [ - null, - {} - ] - ], - "postMessage_Function.htm": [ - "3976cebb747bbe92bf1dc671a297b502954c52e9", - [ - null, - {} - ] - ], - "postMessage_MessagePorts_sorigin.htm": [ - "6526e972c482999800fc5328899fdca1dd6f6a04", - [ - null, - {} - ] - ], - "postMessage_MessagePorts_xorigin.sub.htm": [ - "cf2b8eb4c11b0b824a47677079c2d1b8837b3802", - [ - null, - {} - ] - ], - "postMessage_MessagePorts_xsite.sub.window.js": [ - "ca1e510edaa09f41350426e143923bb15e6df82b", - [ - "webmessaging/postMessage_MessagePorts_xsite.sub.window.html", - { - "script_metadata": [ - [ - "script", - "/common/get-host-info.sub.js" + "webnn/validation_tests/resample2d.https.any.html?npu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API resample2d operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] ] - ] - } - ] - ], - "postMessage_arrays.sub.htm": [ - "41e4a75eda616196ab3546943a0913785cbe69be", - [ - null, - {} - ] - ], - "postMessage_asterisk_xorigin.sub.htm": [ - "2fab9431ef408cc34fb3929f91c5e5aaedd3caff", - [ - null, - {} - ] - ], - "postMessage_cross_domain_image_transfer_2d.sub.htm": [ - "4faf979274b292c69dd1a212f9e10de87a22c509", - [ - null, - {} - ] - ], - "postMessage_crosssite.sub.htm": [ - "25bccd9df27a6688ae823bc15e9badcf7534825e", - [ - null, - {} - ] - ], - "postMessage_dup_transfer_objects.htm": [ - "ade9515d3acd42e1a12bd97627a57f7a13e75787", - [ - null, - {} - ] - ], - "postMessage_invalid_targetOrigin.htm": [ - "e2b39df22df1bbe07f1220b4def7998a5a3f641d", - [ - null, - {} - ] - ], - "postMessage_objects.sub.htm": [ - "dab207188afbb48601c1ae12cec18cd2b080fd96", - [ - null, - {} - ] - ], - "postMessage_origin_mismatch.sub.htm": [ - "6c8ac8353a77224d14b2107779b3e69148bfb831", - [ - null, - {} - ] - ], - "postMessage_origin_mismatch_xorigin.sub.htm": [ - "d8e38e2919fb539cd25da785815c45e55db1eecd", - [ - null, - {} - ] - ], - "postMessage_solidus_sorigin.htm": [ - "92f5afb7985731ea35215b2acd3d76b90274fa6a", - [ - null, - {} - ] - ], - "postMessage_solidus_xorigin.sub.htm": [ - "eebc85432fe4d6d8136326492fc8442c7939d454", - [ - null, - {} - ] - ], - "with-options": { - "broken-origin.html": [ - "795404b0ecf279a58cad1a477119c7d75d169ead", - [ - null, - {} - ] - ], - "host-specific-origin.html": [ - "5003bcc807c94404c42297a2ceb964eb38d5a1b9", - [ - null, - {} - ] - ], - "message-channel-transferable.html": [ - "d42db10695af68ca0d3f8264d7f703352783ff9b", - [ - null, - {} - ] - ], - "no-target-origin.html": [ - "517466cc4c3ee96ba82d2a27b38050bd2e0fbf53", - [ - null, - {} - ] - ], - "null-transfer.html": [ - "2ea09eb7ab4ada86bd4624e222fbdebc026d95e8", - [ - null, - {} - ] - ], - "one-arg.html": [ - "8246e55f31e0307a6c23fb8951936658028e5595", - [ - null, - {} - ] - ], - "slash-origin.html": [ - "8bfde73774d3974d893272df117643d48f01039e", - [ - null, - {} - ] - ], - "undefined-transferable.html": [ - "a123b7d9bd843f61f6dcf09e4fcab77d80a27200", - [ - null, - {} - ] - ], - "unknown-parameter.html": [ - "de050e74f5e2b5c4a102a3b0be1a43c4c2219117", - [ - null, - {} - ] - ] - }, - "with-ports": { - "001.html": [ - "62dcf5e9bfb893874761c1057d5d11c167679f58", - [ - null, - {} - ] - ], - "002.html": [ - "f7d085937cd5776fd9be5ede6a0417844c88d864", - [ - null, - {} - ] - ], - "003.html": [ - "47ddfbe81a5acefc5995dd39ef0291c42925f3f3", - [ - null, - {} - ] - ], - "004.html": [ - "d129ad119a8d229d4e20647f80f80fe4a6bb07e1", - [ - null, - {} - ] - ], - "005.html": [ - "e803968919836cdbbd65f2c62e2f09b1907d9498", - [ - null, - {} - ] - ], - "006.html": [ - "4e3f1ede8414b5664fedf1b9af03f25e6ee3678a", - [ - null, - {} - ] - ], - "007.html": [ - "c049a1337d32ede71cd625a16ad6db9f12b65350", - [ - null, - {} - ] - ], - "010.html": [ - "05080e3f7ae85a8b276569c6d532e9959bb78646", - [ - null, - {} - ] - ], - "011.html": [ - "782b3208ba4b69c35a595aab7b6d3e1ba2945e66", - [ - null, - {} - ] - ], - "012.html": [ - "6efe4c114ab00e496733a1edda1b497993d8ccd4", - [ - null, - {} - ] - ], - "013.html": [ - "248958ea108c17436a3df5479ea3005270106d2f", - [ - null, - {} - ] - ], - "014.html": [ - "3c970c42adea807a37a19d502c5c46f054e32a69", - [ - null, - {} - ] - ], - "015.html": [ - "a17c97be19a1d5972d1fa4af409f2bfe520759cf", - [ - null, - {} - ] - ], - "016.html": [ - "51cadec7c17609fd39ebbc8fa67b03abebc3f241", - [ - null, - {} - ] - ], - "017.html": [ - "94cd3e6ae2d8a6e6ea19bbe652a7fcdfc1b9c463", - [ - null, - {} - ] - ], - "018.html": [ - "5525206e44483dd73a3abf84465335a4af2ffc49", - [ - null, - {} - ] - ], - "019.html": [ - "e9de6c36e1faaeea6fa43784444f9f300ffb3a3e", - [ - null, - {} - ] - ], - "020.html": [ - "426a3d270008c82b1006adcc3783cbd914d19b34", - [ - null, - {} - ] - ], - "021.html": [ - "2801d45a44aeda6cdc7103c9cd360d3d38260bf3", - [ - null, - {} - ] - ], - "023.html": [ - "e2569a8463f51f0691f572de7024cd93936adb20", - [ - null, - {} - ] - ], - "024.html": [ - "e6c0dcba08676ae72e488302135dfc0d41c9c4c9", - [ - null, - {} - ] - ], - "025.html": [ - "7af2a852ed603c317227621d1eaf51831171956c", - [ - null, - {} - ] - ], - "026.html": [ - "2af90e6be3afe334ee44acb2d07221f6442b6641", - [ - null, - {} - ] - ], - "027.html": [ - "715835125811b13c69a7b820686401a9d0ac899b", - [ - null, - {} - ] - ] - }, - "without-ports": { - "001.html": [ - "09c28c5a5ce53af327ba9b36abb6659605138dc5", - [ - null, - {} - ] - ], - "002.html": [ - "ef3eceb2a0231b4fab4605dbfe356abc62cd6ba7", - [ - null, - {} - ] - ], - "003.html": [ - "6dc1e55777ba3d093d9de7eb4b281e5a1489fa53", - [ - null, - {} - ] - ], - "004.html": [ - "9a9eb81a5de844f44e43e6f1e55d06dbfddbdc65", - [ - null, - {} - ] - ], - "005.html": [ - "ed05a476bc45a4e2c3660f80e9c08c498549f509", - [ - null, - {} - ] - ], - "006.html": [ - "47479ea01184f30e97433c462bc765c5c85344e0", - [ - null, - {} - ] - ], - "007.html": [ - "eb2b5c52e56f3ed1d3aa20c16e5ec099213efac0", - [ - null, - {} - ] - ], - "009.html": [ - "d613b4a07344490806233e43498abf315a638082", - [ - null, - {} - ] - ], - "010.html": [ - "062316f68039e1a1d71f0b7b145b330efd7e3d5e", - [ - null, - {} - ] - ], - "011.html": [ - "cac2990c49a6f51b9e638c64a691f89d12a71e2a", - [ - null, - {} - ] - ], - "012.html": [ - "8eb46539b7efa008ae7472b35a925c8991b6916a", - [ - null, - {} - ] - ], - "013.html": [ - "34ba76221aa96a2d089aa5f70f7c20f5dcd6f086", - [ - null, - {} - ] - ], - "014.html": [ - "f200aa467361dbf1f9dc149993be048591b2b417", - [ - null, - {} - ] - ], - "015.html": [ - "a17c97be19a1d5972d1fa4af409f2bfe520759cf", - [ - null, - {} - ] - ], - "016.html": [ - "51cadec7c17609fd39ebbc8fa67b03abebc3f241", - [ - null, - {} - ] - ], - "017.html": [ - "a4a0483624f60a45e40d9d1dfb2b2e87e054ab55", - [ - null, - {} - ] - ], - "018.html": [ - "207ae36ed836dcad029368c2cf97d8196ec89933", - [ - null, - {} - ] - ], - "019.html": [ - "38e7ca230ed0747795a05963e1cfb59e5022ebbe", - [ - null, - {} - ] - ], - "020.html": [ - "61bfddb901fa27c9a8432517d799be46136a91db", - [ - null, - {} - ] - ], - "021.html": [ - "5072508d9c618921f03a36f840354cdcb3351068", - [ - null, - {} - ] - ], - "023.html": [ - "1e12ac4a55e632f9568a2c22cc6dd44f8a709152", - [ - null, - {} - ] - ], - "024.html": [ - "0e4651593a79862f8fdff1c4f65b4669a7d27bec", - [ - null, - {} - ] - ], - "025.html": [ - "4686febe94e0b24eb9799493d0741a4384ad75e5", - [ - null, - {} - ] - ], - "026.html": [ - "546da8a91b541cde8954eb4068b83e4169a65fea", - [ - null, - {} - ] - ], - "027.html": [ - "36aa9446a5e35e2db4eb53cea5e2b83e4e45aadf", - [ - null, - {} - ] - ], - "028.html": [ - "d51ad7d3b690d5bf852ae95365953c5479cc7a7f", - [ - null, - {} - ] - ], - "029.html": [ - "4b1b38f741c940bf0396b28912dcb4fb4902e393", + } + ], [ - null, - {} - ] - ] - }, - "worker_postMessage_user_activation.tentative.html": [ - "203bb149857be5ad8185516a89b1e98d7f2373a0", - [ - null, - {} - ] - ] - }, - "webmidi": { - "idlharness.https.window.js": [ - "8fbd6a903c462948c7b7cc61c5cb3f5c11605a90", - [ - "webmidi/idlharness.https.window.html", - { - "script_metadata": [ - [ - "script", - "/resources/WebIDLParser.js" - ], - [ - "script", - "/resources/idlharness.js" - ], - [ - "script", - "/resources/testdriver.js" - ], - [ - "script", - "/resources/testdriver-vendor.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ] - ] - }, - "webnn": { - "arg_min_max.https.any.js": [ - "cff1d6a955ce31fbecde084f8407a8f53bf6b889", - [ - "webnn/arg_min_max.https.any.html", - { - "script_metadata": [ - [ - "title", - "test WebNN API argMin/Max operations" - ], - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "./resources/utils.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ], - [ - "webnn/arg_min_max.https.any.worker.html", - { - "script_metadata": [ - [ - "title", - "test WebNN API argMin/Max operations" - ], - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "./resources/utils.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ] - ], - "batch_normalization.https.any.js": [ - "15e66a8bc06b2e73c19f910c765428b89b3f3b3d", - [ - "webnn/batch_normalization.https.any.html", - { - "script_metadata": [ - [ - "title", - "test WebNN API batchNormalization operation" - ], - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "./resources/utils.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ], - [ - "webnn/batch_normalization.https.any.worker.html", - { - "script_metadata": [ - [ - "title", - "test WebNN API batchNormalization operation" - ], - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "./resources/utils.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ] - ], - "clamp.https.any.js": [ - "9818aed7c12be552b24427efa3beb78547ef2e0e", - [ - "webnn/clamp.https.any.html", - { - "script_metadata": [ - [ - "title", - "test WebNN API clamp operation" - ], - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "./resources/utils.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ], - [ - "webnn/clamp.https.any.worker.html", - { - "script_metadata": [ - [ - "title", - "test WebNN API clamp operation" - ], - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "./resources/utils.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ] - ], - "concat.https.any.js": [ - "cce43e492ff4c5347bf8fd1d8c558ae97ea4a65a", - [ - "webnn/concat.https.any.html", - { - "script_metadata": [ - [ - "title", - "test WebNN API concat operation" - ], - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "./resources/utils.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ], - [ - "webnn/concat.https.any.worker.html", - { - "script_metadata": [ - [ - "title", - "test WebNN API concat operation" - ], - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "./resources/utils.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ] - ], - "conv2d.https.any.js": [ - "b26b35ec676457d4d21c5f20fd0aff9eab3baf8e", - [ - "webnn/conv2d.https.any.html", - { - "script_metadata": [ - [ - "title", - "test WebNN API conv2d operation" - ], - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "./resources/utils.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ], - [ - "webnn/conv2d.https.any.worker.html", - { - "script_metadata": [ - [ - "title", - "test WebNN API conv2d operation" - ], - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "./resources/utils.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ] - ], - "conv_transpose2d.https.any.js": [ - "99e76b825e55a59c590b86b2b7e1983d8e2b0650", - [ - "webnn/conv_transpose2d.https.any.html", - { - "script_metadata": [ - [ - "title", - "test WebNN API convTranspose2d operation" - ], - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "./resources/utils.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ], - [ - "webnn/conv_transpose2d.https.any.worker.html", - { - "script_metadata": [ - [ - "title", - "test WebNN API convTranspose2d operation" - ], - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "./resources/utils.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ] - ], - "elementwise_binary.https.any.js": [ - "06c2404f95489da2c2558639d9b631c8c2124295", - [ - "webnn/elementwise_binary.https.any.html", - { - "script_metadata": [ - [ - "title", - "test WebNN API element-wise binary operations" - ], - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "./resources/utils.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ], - [ - "webnn/elementwise_binary.https.any.worker.html", - { - "script_metadata": [ - [ - "title", - "test WebNN API element-wise binary operations" - ], - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "./resources/utils.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ] - ], - "elementwise_logical.https.any.js": [ - "e614b94df5e906630bf656889690b2c22d5b6d46", - [ - "webnn/elementwise_logical.https.any.html", - { - "script_metadata": [ - [ - "title", - "test WebNN API element-wise logical operations" - ], - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "./resources/utils.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ], - [ - "webnn/elementwise_logical.https.any.worker.html", - { - "script_metadata": [ - [ - "title", - "test WebNN API element-wise logical operations" - ], - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "./resources/utils.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ] - ], - "elementwise_unary.https.any.js": [ - "4cdfee5bcb07f8ab011460f23564e081372267ac", - [ - "webnn/elementwise_unary.https.any.html", - { - "script_metadata": [ - [ - "title", - "test WebNN API element-wise unary operations" - ], - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "./resources/utils.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ], - [ - "webnn/elementwise_unary.https.any.worker.html", - { - "script_metadata": [ - [ - "title", - "test WebNN API element-wise unary operations" - ], - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "./resources/utils.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ] - ], - "elu.https.any.js": [ - "57b624b5daa50e72ab87af69c22e61051c1c72e2", - [ - "webnn/elu.https.any.html", - { - "script_metadata": [ - [ - "title", - "test WebNN API elu operation" - ], - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "./resources/utils.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ], - [ - "webnn/elu.https.any.worker.html", - { - "script_metadata": [ - [ - "title", - "test WebNN API elu operation" - ], - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "./resources/utils.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ] - ], - "expand.https.any.js": [ - "11abb9baa89da3a819ca67f99a83109c433fc88e", - [ - "webnn/expand.https.any.html", - { - "script_metadata": [ - [ - "title", - "test WebNN API expand operation" - ], - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "./resources/utils.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ], - [ - "webnn/expand.https.any.worker.html", - { - "script_metadata": [ - [ - "title", - "test WebNN API expand operation" - ], - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "./resources/utils.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ] - ], - "gemm.https.any.js": [ - "e5de9521fba767d5269b0829af3e55248e16f6fc", - [ - "webnn/gemm.https.any.html", - { - "script_metadata": [ - [ - "title", - "test WebNN API gemm operation" - ], - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "./resources/utils.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ], - [ - "webnn/gemm.https.any.worker.html", - { - "script_metadata": [ - [ - "title", - "test WebNN API gemm operation" - ], - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "./resources/utils.js" - ], - [ - "timeout", - "long" + "webnn/validation_tests/resample2d.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API resample2d operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] ] - ], - "timeout": "long" - } - ] - ], - "gpu": { - "arg_min_max.https.any.js": [ - "76092ea92e6931f64f24f068341fe7335fd58259", + } + ], [ - "webnn/gpu/arg_min_max.https.any.html", + "webnn/validation_tests/resample2d.https.any.worker.html?gpu", { "script_metadata": [ [ "title", - "test WebNN API argMin/Max operations" + "validation tests for WebNN API resample2d operation" ], [ "global", "window,dedicatedworker" ], [ - "script", - "../resources/utils.js" + "variant", + "?cpu" ], [ - "timeout", - "long" + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" ] - ], - "timeout": "long" + ] } ], [ - "webnn/gpu/arg_min_max.https.any.worker.html", + "webnn/validation_tests/resample2d.https.any.worker.html?npu", { "script_metadata": [ [ "title", - "test WebNN API argMin/Max operations" + "validation tests for WebNN API resample2d operation" ], [ "global", "window,dedicatedworker" ], [ - "script", - "../resources/utils.js" + "variant", + "?cpu" ], [ - "timeout", - "long" + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" ] - ], - "timeout": "long" + ] } ] ], - "batch_normalization.https.any.js": [ - "90b6def636d1090dc0fe19368fbb5ac38d0133cd", + "reshape.https.any.js": [ + "7bf4a523c28f27603baf33af8146c7e7f636f9fb", [ - "webnn/gpu/batch_normalization.https.any.html", + "webnn/validation_tests/reshape.https.any.html?cpu", { "script_metadata": [ [ "title", - "test WebNN API batchNormalization operation" + "validation tests for WebNN API reshape operation" ], [ "global", "window,dedicatedworker" ], [ - "script", - "../resources/utils.js" + "variant", + "?cpu" ], [ - "timeout", - "long" + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" ] - ], - "timeout": "long" + ] } ], [ - "webnn/gpu/batch_normalization.https.any.worker.html", + "webnn/validation_tests/reshape.https.any.html?gpu", { "script_metadata": [ [ "title", - "test WebNN API batchNormalization operation" + "validation tests for WebNN API reshape operation" ], [ "global", "window,dedicatedworker" ], [ - "script", - "../resources/utils.js" + "variant", + "?cpu" ], [ - "timeout", - "long" + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" ] - ], - "timeout": "long" + ] } - ] - ], - "clamp.https.any.js": [ - "98313868b6d6802cea00603caad49288dc4a7c99", + ], [ - "webnn/gpu/clamp.https.any.html", + "webnn/validation_tests/reshape.https.any.html?npu", { "script_metadata": [ [ "title", - "test WebNN API clamp operation" + "validation tests for WebNN API reshape operation" ], [ "global", "window,dedicatedworker" ], [ - "script", - "../resources/utils.js" + "variant", + "?cpu" ], [ - "timeout", - "long" + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" ] - ], - "timeout": "long" + ] } ], [ - "webnn/gpu/clamp.https.any.worker.html", + "webnn/validation_tests/reshape.https.any.worker.html?cpu", { "script_metadata": [ [ "title", - "test WebNN API clamp operation" + "validation tests for WebNN API reshape operation" ], [ "global", "window,dedicatedworker" ], [ - "script", - "../resources/utils.js" + "variant", + "?cpu" ], [ - "timeout", - "long" + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" ] - ], - "timeout": "long" + ] } - ] - ], - "concat.https.any.js": [ - "07073724feeade9df491c566ef31f1141376c2c3", + ], [ - "webnn/gpu/concat.https.any.html", + "webnn/validation_tests/reshape.https.any.worker.html?gpu", { "script_metadata": [ [ "title", - "test WebNN API concat operation" + "validation tests for WebNN API reshape operation" ], [ "global", "window,dedicatedworker" ], [ - "script", - "../resources/utils.js" + "variant", + "?cpu" ], [ - "timeout", - "long" + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" ] - ], - "timeout": "long" + ] } ], [ - "webnn/gpu/concat.https.any.worker.html", + "webnn/validation_tests/reshape.https.any.worker.html?npu", { "script_metadata": [ [ "title", - "test WebNN API concat operation" + "validation tests for WebNN API reshape operation" ], [ "global", "window,dedicatedworker" ], [ - "script", - "../resources/utils.js" + "variant", + "?cpu" ], [ - "timeout", - "long" + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" ] - ], - "timeout": "long" + ] } ] ], - "conv2d.https.any.js": [ - "b3986b65551a087d51abff83d72e012cf8147a34", + "sigmoid.https.any.js": [ + "271bef211169047249dac7ee51250fa0a72d23a1", [ - "webnn/gpu/conv2d.https.any.html", + "webnn/validation_tests/sigmoid.https.any.html?cpu", { "script_metadata": [ [ "title", - "test WebNN API conv2d operation" + "validation tests for WebNN API sigmoid operation" ], [ "global", "window,dedicatedworker" ], [ - "script", - "../resources/utils.js" + "variant", + "?cpu" ], [ - "timeout", - "long" + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" ] - ], - "timeout": "long" + ] } ], [ - "webnn/gpu/conv2d.https.any.worker.html", + "webnn/validation_tests/sigmoid.https.any.html?gpu", { "script_metadata": [ [ "title", - "test WebNN API conv2d operation" + "validation tests for WebNN API sigmoid operation" ], [ "global", "window,dedicatedworker" ], [ - "script", - "../resources/utils.js" + "variant", + "?cpu" ], [ - "timeout", - "long" + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" ] - ], - "timeout": "long" + ] } - ] - ], - "conv_transpose2d.https.any.js": [ - "020bfa9c972d9d1fe50157601fe7a8bd35331a19", + ], [ - "webnn/gpu/conv_transpose2d.https.any.html", + "webnn/validation_tests/sigmoid.https.any.html?npu", { "script_metadata": [ [ "title", - "test WebNN API convTranspose2d operation" + "validation tests for WebNN API sigmoid operation" ], [ "global", "window,dedicatedworker" ], [ - "script", - "../resources/utils.js" + "variant", + "?cpu" ], [ - "timeout", - "long" + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" ] - ], - "timeout": "long" + ] } ], [ - "webnn/gpu/conv_transpose2d.https.any.worker.html", + "webnn/validation_tests/sigmoid.https.any.worker.html?cpu", { "script_metadata": [ [ "title", - "test WebNN API convTranspose2d operation" + "validation tests for WebNN API sigmoid operation" ], [ "global", "window,dedicatedworker" ], [ - "script", - "../resources/utils.js" + "variant", + "?cpu" ], [ - "timeout", - "long" + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" ] - ], - "timeout": "long" + ] } - ] - ], - "elementwise_binary.https.any.js": [ - "035d0c77c0310a18f2fe45a707a170e670d70606", + ], [ - "webnn/gpu/elementwise_binary.https.any.html", + "webnn/validation_tests/sigmoid.https.any.worker.html?gpu", { "script_metadata": [ [ "title", - "test WebNN API element-wise binary operations" + "validation tests for WebNN API sigmoid operation" ], [ "global", "window,dedicatedworker" ], [ - "script", - "../resources/utils.js" + "variant", + "?cpu" ], [ - "timeout", - "long" + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" ] - ], - "timeout": "long" + ] } ], [ - "webnn/gpu/elementwise_binary.https.any.worker.html", + "webnn/validation_tests/sigmoid.https.any.worker.html?npu", { "script_metadata": [ [ "title", - "test WebNN API element-wise binary operations" + "validation tests for WebNN API sigmoid operation" ], [ "global", "window,dedicatedworker" ], [ - "script", - "../resources/utils.js" + "variant", + "?cpu" ], [ - "timeout", - "long" + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" ] - ], - "timeout": "long" + ] } ] ], - "elementwise_logical.https.any.js": [ - "f597ce8e0b259eaecc57c50437ae50a1a520695c", + "slice.https.any.js": [ + "d2ca2c678f06e612ab5fff573afdc191b6cd90bc", [ - "webnn/gpu/elementwise_logical.https.any.html", + "webnn/validation_tests/slice.https.any.html?cpu", { "script_metadata": [ [ "title", - "test WebNN API element-wise logical operations" + "validation tests for WebNN API slice operation" ], [ "global", "window,dedicatedworker" ], [ - "script", - "../resources/utils.js" + "variant", + "?cpu" ], [ - "timeout", - "long" + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" ] - ], - "timeout": "long" + ] } ], [ - "webnn/gpu/elementwise_logical.https.any.worker.html", + "webnn/validation_tests/slice.https.any.html?gpu", { "script_metadata": [ [ "title", - "test WebNN API element-wise logical operations" + "validation tests for WebNN API slice operation" ], [ "global", "window,dedicatedworker" ], [ - "script", - "../resources/utils.js" + "variant", + "?cpu" ], [ - "timeout", - "long" + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" ] - ], - "timeout": "long" + ] } - ] - ], - "elementwise_unary.https.any.js": [ - "45978f91ec4c5d7f0d00fd7d4abe4661788a38b8", + ], [ - "webnn/gpu/elementwise_unary.https.any.html", + "webnn/validation_tests/slice.https.any.html?npu", { "script_metadata": [ [ "title", - "test WebNN API element-wise unary operations" + "validation tests for WebNN API slice operation" ], [ "global", "window,dedicatedworker" ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], [ "script", - "../resources/utils.js" + "../resources/utils_validation.js" + ] + ] + } + ], + [ + "webnn/validation_tests/slice.https.any.worker.html?cpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API slice operation" ], [ - "timeout", - "long" + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" ] - ], - "timeout": "long" + ] + } + ], + [ + "webnn/validation_tests/slice.https.any.worker.html?gpu", + { + "script_metadata": [ + [ + "title", + "validation tests for WebNN API slice operation" + ], + [ + "global", + "window,dedicatedworker" + ], + [ + "variant", + "?cpu" + ], + [ + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" + ] + ] } ], [ - "webnn/gpu/elementwise_unary.https.any.worker.html", + "webnn/validation_tests/slice.https.any.worker.html?npu", { "script_metadata": [ [ "title", - "test WebNN API element-wise unary operations" + "validation tests for WebNN API slice operation" ], [ "global", "window,dedicatedworker" ], [ - "script", - "../resources/utils.js" + "variant", + "?cpu" ], [ - "timeout", - "long" + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" ] - ], - "timeout": "long" + ] } ] ], - "elu.https.any.js": [ - "965bb4d35f1eb5fcee530b4977b66f628a3e2469", + "softmax.https.any.js": [ + "8c9e65f6eee6880cdfaf8de691bec791c180fb44", [ - "webnn/gpu/elu.https.any.html", + "webnn/validation_tests/softmax.https.any.html?cpu", { "script_metadata": [ [ "title", - "test WebNN API elu operation" + "validation tests for WebNN API softmax operation" ], [ "global", "window,dedicatedworker" ], [ - "script", - "../resources/utils.js" + "variant", + "?cpu" ], [ - "timeout", - "long" + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" ] - ], - "timeout": "long" + ] } ], [ - "webnn/gpu/elu.https.any.worker.html", + "webnn/validation_tests/softmax.https.any.html?gpu", { "script_metadata": [ [ "title", - "test WebNN API elu operation" + "validation tests for WebNN API softmax operation" ], [ "global", "window,dedicatedworker" ], [ - "script", - "../resources/utils.js" + "variant", + "?cpu" ], [ - "timeout", - "long" + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" ] - ], - "timeout": "long" + ] } - ] - ], - "expand.https.any.js": [ - "82fa891a39933aa5420ce88e8d888e359732faa7", + ], [ - "webnn/gpu/expand.https.any.html", + "webnn/validation_tests/softmax.https.any.html?npu", { "script_metadata": [ [ "title", - "test WebNN API expand operation" + "validation tests for WebNN API softmax operation" ], [ "global", "window,dedicatedworker" ], [ - "script", - "../resources/utils.js" + "variant", + "?cpu" ], [ - "timeout", - "long" + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" ] - ], - "timeout": "long" + ] } ], [ - "webnn/gpu/expand.https.any.worker.html", + "webnn/validation_tests/softmax.https.any.worker.html?cpu", { "script_metadata": [ [ "title", - "test WebNN API expand operation" + "validation tests for WebNN API softmax operation" ], [ "global", "window,dedicatedworker" ], [ - "script", - "../resources/utils.js" + "variant", + "?cpu" ], [ - "timeout", - "long" + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" ] - ], - "timeout": "long" + ] } - ] - ], - "gemm.https.any.js": [ - "a19dc39bbc87e845eadbf74ea369780bd38e90dc", + ], [ - "webnn/gpu/gemm.https.any.html", + "webnn/validation_tests/softmax.https.any.worker.html?gpu", { "script_metadata": [ [ "title", - "test WebNN API gemm operation" + "validation tests for WebNN API softmax operation" ], [ "global", "window,dedicatedworker" ], [ - "script", - "../resources/utils.js" + "variant", + "?cpu" ], [ - "timeout", - "long" + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" ] - ], - "timeout": "long" + ] } ], [ - "webnn/gpu/gemm.https.any.worker.html", + "webnn/validation_tests/softmax.https.any.worker.html?npu", { "script_metadata": [ [ "title", - "test WebNN API gemm operation" + "validation tests for WebNN API softmax operation" ], [ "global", "window,dedicatedworker" ], [ - "script", - "../resources/utils.js" + "variant", + "?cpu" ], [ - "timeout", - "long" + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" ] - ], - "timeout": "long" + ] } ] ], - "hard_sigmoid.https.any.js": [ - "b6f2f53b320f61f62af5288cb25dfa97acce52df", + "softplus.https.any.js": [ + "72049573a48f12caf86181879a74a82a03db7474", [ - "webnn/gpu/hard_sigmoid.https.any.html", + "webnn/validation_tests/softplus.https.any.html?cpu", { "script_metadata": [ [ "title", - "test WebNN API hardSigmoid operation" + "validation tests for WebNN API softplus operation" ], [ "global", "window,dedicatedworker" ], [ - "script", - "../resources/utils.js" + "variant", + "?cpu" ], [ - "timeout", - "long" + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" ] - ], - "timeout": "long" + ] } ], [ - "webnn/gpu/hard_sigmoid.https.any.worker.html", + "webnn/validation_tests/softplus.https.any.html?gpu", { "script_metadata": [ [ "title", - "test WebNN API hardSigmoid operation" + "validation tests for WebNN API softplus operation" ], [ "global", "window,dedicatedworker" ], [ - "script", - "../resources/utils.js" + "variant", + "?cpu" ], [ - "timeout", - "long" + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" ] - ], - "timeout": "long" + ] } - ] - ], - "hard_swish.https.any.js": [ - "a1731490bd4f584596d410f9c3aad55864c00f1c", + ], [ - "webnn/gpu/hard_swish.https.any.html", + "webnn/validation_tests/softplus.https.any.html?npu", { "script_metadata": [ [ "title", - "test WebNN API tanh operation" + "validation tests for WebNN API softplus operation" ], [ "global", "window,dedicatedworker" ], [ - "script", - "../resources/utils.js" + "variant", + "?cpu" ], [ - "timeout", - "long" + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" ] - ], - "timeout": "long" + ] } ], [ - "webnn/gpu/hard_swish.https.any.worker.html", + "webnn/validation_tests/softplus.https.any.worker.html?cpu", { "script_metadata": [ [ "title", - "test WebNN API tanh operation" + "validation tests for WebNN API softplus operation" ], [ "global", "window,dedicatedworker" ], [ - "script", - "../resources/utils.js" + "variant", + "?cpu" ], [ - "timeout", - "long" + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" ] - ], - "timeout": "long" + ] } - ] - ], - "leaky_relu.https.any.js": [ - "f3a7bd8ba536003f55715f1a0c6d5311fd62a6a4", + ], [ - "webnn/gpu/leaky_relu.https.any.html", + "webnn/validation_tests/softplus.https.any.worker.html?gpu", { "script_metadata": [ [ "title", - "test WebNN API leakyRelu operation" + "validation tests for WebNN API softplus operation" ], [ "global", "window,dedicatedworker" ], [ - "script", - "../resources/utils.js" + "variant", + "?cpu" ], [ - "timeout", - "long" + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" ] - ], - "timeout": "long" + ] } ], [ - "webnn/gpu/leaky_relu.https.any.worker.html", + "webnn/validation_tests/softplus.https.any.worker.html?npu", { "script_metadata": [ [ "title", - "test WebNN API leakyRelu operation" + "validation tests for WebNN API softplus operation" ], [ "global", "window,dedicatedworker" ], [ - "script", - "../resources/utils.js" + "variant", + "?cpu" ], [ - "timeout", - "long" + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" ] - ], - "timeout": "long" + ] } ] ], - "linear.https.any.js": [ - "48b8d82c1e5a00fa1b7be9443ae60935b0bdf871", + "softsign.https.any.js": [ + "59a0199a3fb75aca3f82a580a15af0230eeccc7e", [ - "webnn/gpu/linear.https.any.html", + "webnn/validation_tests/softsign.https.any.html?cpu", { "script_metadata": [ [ "title", - "test WebNN API linear operation" + "validation tests for WebNN API softsign operation" ], [ "global", "window,dedicatedworker" ], [ - "script", - "../resources/utils.js" + "variant", + "?cpu" ], [ - "timeout", - "long" + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" ] - ], - "timeout": "long" + ] } ], [ - "webnn/gpu/linear.https.any.worker.html", + "webnn/validation_tests/softsign.https.any.html?gpu", { "script_metadata": [ [ "title", - "test WebNN API linear operation" + "validation tests for WebNN API softsign operation" ], [ "global", "window,dedicatedworker" ], [ - "script", - "../resources/utils.js" + "variant", + "?cpu" ], [ - "timeout", - "long" + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" ] - ], - "timeout": "long" + ] } - ] - ], - "matmul.https.any.js": [ - "01fed04e3d3dbe8c6fd279e104b20fdb1ac5c1af", + ], [ - "webnn/gpu/matmul.https.any.html", + "webnn/validation_tests/softsign.https.any.html?npu", { "script_metadata": [ [ "title", - "test WebNN API matmul operation" + "validation tests for WebNN API softsign operation" ], [ "global", "window,dedicatedworker" ], [ - "script", - "../resources/utils.js" + "variant", + "?cpu" ], [ - "timeout", - "long" + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" ] - ], - "timeout": "long" + ] } ], [ - "webnn/gpu/matmul.https.any.worker.html", + "webnn/validation_tests/softsign.https.any.worker.html?cpu", { "script_metadata": [ [ "title", - "test WebNN API matmul operation" + "validation tests for WebNN API softsign operation" ], [ "global", "window,dedicatedworker" ], [ - "script", - "../resources/utils.js" + "variant", + "?cpu" ], [ - "timeout", - "long" + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" ] - ], - "timeout": "long" + ] } - ] - ], - "pad.https.any.js": [ - "26d1bf0f3858b2bb18c85a88a352589afa430983", + ], [ - "webnn/gpu/pad.https.any.html", + "webnn/validation_tests/softsign.https.any.worker.html?gpu", { "script_metadata": [ [ "title", - "test WebNN API pad operation" + "validation tests for WebNN API softsign operation" ], [ "global", "window,dedicatedworker" ], [ - "script", - "../resources/utils.js" + "variant", + "?cpu" ], [ - "timeout", - "long" + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" ] - ], - "timeout": "long" + ] } ], [ - "webnn/gpu/pad.https.any.worker.html", + "webnn/validation_tests/softsign.https.any.worker.html?npu", { "script_metadata": [ [ "title", - "test WebNN API pad operation" + "validation tests for WebNN API softsign operation" ], [ "global", "window,dedicatedworker" ], [ - "script", - "../resources/utils.js" + "variant", + "?cpu" ], [ - "timeout", - "long" + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" ] - ], - "timeout": "long" + ] } ] ], - "pooling.https.any.js": [ - "ab12881881249537f7523d26efaed8eb6606a635", + "split.https.any.js": [ + "31b0c449385fc1613b0949b5986fdacd01430168", [ - "webnn/gpu/pooling.https.any.html", + "webnn/validation_tests/split.https.any.html?cpu", { "script_metadata": [ [ "title", - "test WebNN API pooling operations" + "validation tests for WebNN API split operation" ], [ "global", "window,dedicatedworker" ], [ - "script", - "../resources/utils.js" + "variant", + "?cpu" ], [ - "timeout", - "long" + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" ] - ], - "timeout": "long" + ] } ], [ - "webnn/gpu/pooling.https.any.worker.html", + "webnn/validation_tests/split.https.any.html?gpu", { "script_metadata": [ [ "title", - "test WebNN API pooling operations" + "validation tests for WebNN API split operation" ], [ "global", "window,dedicatedworker" ], [ - "script", - "../resources/utils.js" + "variant", + "?cpu" ], [ - "timeout", - "long" + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" ] - ], - "timeout": "long" + ] } - ] - ], - "prelu.https.any.js": [ - "5a1580e662ad819739097f9f15cdad51a881505e", + ], [ - "webnn/gpu/prelu.https.any.html", + "webnn/validation_tests/split.https.any.html?npu", { "script_metadata": [ [ "title", - "test WebNN API prelu operation" + "validation tests for WebNN API split operation" ], [ "global", "window,dedicatedworker" ], [ - "script", - "../resources/utils.js" + "variant", + "?cpu" ], [ - "timeout", - "long" + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" ] - ], - "timeout": "long" + ] } ], [ - "webnn/gpu/prelu.https.any.worker.html", + "webnn/validation_tests/split.https.any.worker.html?cpu", { "script_metadata": [ [ "title", - "test WebNN API prelu operation" + "validation tests for WebNN API split operation" ], [ "global", "window,dedicatedworker" ], [ - "script", - "../resources/utils.js" + "variant", + "?cpu" ], [ - "timeout", - "long" + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" ] - ], - "timeout": "long" + ] } - ] - ], - "reduction.https.any.js": [ - "69f9b64df4eeef927fafaf4951a1eb0a9639f416", + ], [ - "webnn/gpu/reduction.https.any.html", + "webnn/validation_tests/split.https.any.worker.html?gpu", { "script_metadata": [ [ "title", - "test WebNN API reduction operation" + "validation tests for WebNN API split operation" ], [ "global", "window,dedicatedworker" ], [ - "script", - "../resources/utils.js" + "variant", + "?cpu" ], [ - "timeout", - "long" + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" ] - ], - "timeout": "long" + ] } ], [ - "webnn/gpu/reduction.https.any.worker.html", + "webnn/validation_tests/split.https.any.worker.html?npu", { "script_metadata": [ [ "title", - "test WebNN API reduction operation" + "validation tests for WebNN API split operation" ], [ "global", "window,dedicatedworker" ], [ - "script", - "../resources/utils.js" + "variant", + "?cpu" ], [ - "timeout", - "long" + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" ] - ], - "timeout": "long" + ] } ] ], - "relu.https.any.js": [ - "dc09846e3b36c4b5aaeab8f2e64de35763bfefc3", + "tanh.https.any.js": [ + "b7ddf461c52152a5c7969ebdf9771eb67dd42b95", [ - "webnn/gpu/relu.https.any.html", + "webnn/validation_tests/tanh.https.any.html?cpu", { "script_metadata": [ [ "title", - "test WebNN API relu operation" + "validation tests for WebNN API tanh operation" ], [ "global", "window,dedicatedworker" ], [ - "script", - "../resources/utils.js" + "variant", + "?cpu" ], [ - "timeout", - "long" + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" ] - ], - "timeout": "long" + ] } ], [ - "webnn/gpu/relu.https.any.worker.html", + "webnn/validation_tests/tanh.https.any.html?gpu", { "script_metadata": [ [ "title", - "test WebNN API relu operation" + "validation tests for WebNN API tanh operation" ], [ "global", "window,dedicatedworker" ], [ - "script", - "../resources/utils.js" + "variant", + "?cpu" ], [ - "timeout", - "long" + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" ] - ], - "timeout": "long" + ] } - ] - ], - "reshape.https.any.js": [ - "e5145e2403e1c32ecbfab5caaec66ac2de835dd2", + ], [ - "webnn/gpu/reshape.https.any.html", + "webnn/validation_tests/tanh.https.any.html?npu", { "script_metadata": [ [ "title", - "test WebNN API reshape operation" + "validation tests for WebNN API tanh operation" ], [ "global", "window,dedicatedworker" ], [ - "script", - "../resources/utils.js" + "variant", + "?cpu" ], [ - "timeout", - "long" + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" ] - ], - "timeout": "long" + ] } ], [ - "webnn/gpu/reshape.https.any.worker.html", + "webnn/validation_tests/tanh.https.any.worker.html?cpu", { "script_metadata": [ [ "title", - "test WebNN API reshape operation" + "validation tests for WebNN API tanh operation" ], [ "global", "window,dedicatedworker" ], [ - "script", - "../resources/utils.js" + "variant", + "?cpu" ], [ - "timeout", - "long" + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" ] - ], - "timeout": "long" + ] } - ] - ], - "sigmoid.https.any.js": [ - "6c85f5b3037fb33c75b1c38a68296d7fbc7c830d", + ], [ - "webnn/gpu/sigmoid.https.any.html", + "webnn/validation_tests/tanh.https.any.worker.html?gpu", { "script_metadata": [ [ "title", - "test WebNN API sigmoid operation" + "validation tests for WebNN API tanh operation" ], [ "global", "window,dedicatedworker" ], [ - "script", - "../resources/utils.js" + "variant", + "?cpu" ], [ - "timeout", - "long" + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" ] - ], - "timeout": "long" + ] } ], [ - "webnn/gpu/sigmoid.https.any.worker.html", + "webnn/validation_tests/tanh.https.any.worker.html?npu", { "script_metadata": [ [ "title", - "test WebNN API sigmoid operation" + "validation tests for WebNN API tanh operation" ], [ "global", "window,dedicatedworker" ], [ - "script", - "../resources/utils.js" + "variant", + "?cpu" ], [ - "timeout", - "long" + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" ] - ], - "timeout": "long" + ] } ] ], - "slice.https.any.js": [ - "98e5f422dad504cfe937b21be12a0d108305ae29", + "transpose.https.any.js": [ + "f9eda1d68b6c3bda5ccca08564f96c9ba6b98636", [ - "webnn/gpu/slice.https.any.html", + "webnn/validation_tests/transpose.https.any.html?cpu", { "script_metadata": [ [ "title", - "test WebNN API slice operation" + "validation tests for WebNN API transpose operation" ], [ "global", "window,dedicatedworker" ], [ - "script", - "../resources/utils.js" + "variant", + "?cpu" ], [ - "timeout", - "long" + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" ] - ], - "timeout": "long" + ] } ], [ - "webnn/gpu/slice.https.any.worker.html", + "webnn/validation_tests/transpose.https.any.html?gpu", { "script_metadata": [ [ "title", - "test WebNN API slice operation" + "validation tests for WebNN API transpose operation" ], [ "global", "window,dedicatedworker" ], [ - "script", - "../resources/utils.js" + "variant", + "?cpu" ], [ - "timeout", - "long" + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" ] - ], - "timeout": "long" + ] } - ] - ], - "softmax.https.any.js": [ - "9170dd0e145b5996c4922d355b37810430e71258", + ], [ - "webnn/gpu/softmax.https.any.html", + "webnn/validation_tests/transpose.https.any.html?npu", { "script_metadata": [ [ "title", - "test WebNN API softmax operation" + "validation tests for WebNN API transpose operation" ], [ "global", "window,dedicatedworker" ], [ - "script", - "../resources/utils.js" + "variant", + "?cpu" ], [ - "timeout", - "long" + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" ] - ], - "timeout": "long" + ] } ], [ - "webnn/gpu/softmax.https.any.worker.html", + "webnn/validation_tests/transpose.https.any.worker.html?cpu", { "script_metadata": [ [ "title", - "test WebNN API softmax operation" + "validation tests for WebNN API transpose operation" ], [ "global", "window,dedicatedworker" ], [ - "script", - "../resources/utils.js" + "variant", + "?cpu" ], [ - "timeout", - "long" + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" ] - ], - "timeout": "long" + ] } - ] - ], - "softplus.https.any.js": [ - "a61e5beaefdfdbeeeca6b79798c6cf5a335ec0f8", + ], [ - "webnn/gpu/softplus.https.any.html", + "webnn/validation_tests/transpose.https.any.worker.html?gpu", { "script_metadata": [ [ "title", - "test WebNN API softplus operation" + "validation tests for WebNN API transpose operation" ], [ "global", "window,dedicatedworker" ], [ - "script", - "../resources/utils.js" + "variant", + "?cpu" ], [ - "timeout", - "long" + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" ] - ], - "timeout": "long" + ] } ], [ - "webnn/gpu/softplus.https.any.worker.html", + "webnn/validation_tests/transpose.https.any.worker.html?npu", { "script_metadata": [ [ "title", - "test WebNN API softplus operation" + "validation tests for WebNN API transpose operation" ], [ "global", "window,dedicatedworker" ], [ - "script", - "../resources/utils.js" + "variant", + "?cpu" ], [ - "timeout", - "long" + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" ] - ], - "timeout": "long" + ] } ] ], - "softsign.https.any.js": [ - "f598cbfcef486581d230a323c66c67cdce792cb7", + "triangular.https.any.js": [ + "320c4ab56592e1d4421b283569a2787c4a707f6d", [ - "webnn/gpu/softsign.https.any.html", + "webnn/validation_tests/triangular.https.any.html?cpu", { "script_metadata": [ [ "title", - "test WebNN API softsign operation" + "validation tests for WebNN API triangular operation" ], [ "global", "window,dedicatedworker" ], [ - "script", - "../resources/utils.js" + "variant", + "?cpu" ], [ - "timeout", - "long" + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" ] - ], - "timeout": "long" + ] } ], [ - "webnn/gpu/softsign.https.any.worker.html", + "webnn/validation_tests/triangular.https.any.html?gpu", { "script_metadata": [ [ "title", - "test WebNN API softsign operation" + "validation tests for WebNN API triangular operation" ], [ "global", "window,dedicatedworker" ], [ - "script", - "../resources/utils.js" + "variant", + "?cpu" ], [ - "timeout", - "long" + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" ] - ], - "timeout": "long" + ] } - ] - ], - "split.https.any.js": [ - "8eecd76fa1b58c28d6302932b975273b0d478c9f", + ], [ - "webnn/gpu/split.https.any.html", + "webnn/validation_tests/triangular.https.any.html?npu", { "script_metadata": [ [ "title", - "test WebNN API split operation" + "validation tests for WebNN API triangular operation" ], [ "global", "window,dedicatedworker" ], [ - "script", - "../resources/utils.js" + "variant", + "?cpu" ], [ - "timeout", - "long" + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" ] - ], - "timeout": "long" + ] } ], [ - "webnn/gpu/split.https.any.worker.html", + "webnn/validation_tests/triangular.https.any.worker.html?cpu", { "script_metadata": [ [ "title", - "test WebNN API split operation" + "validation tests for WebNN API triangular operation" ], [ "global", "window,dedicatedworker" ], [ - "script", - "../resources/utils.js" + "variant", + "?cpu" ], [ - "timeout", - "long" + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" ] - ], - "timeout": "long" + ] } - ] - ], - "squeeze.https.any.js": [ - "29ce3e4f91beac10dea19170b68fb91863a3ca7e", + ], [ - "webnn/gpu/squeeze.https.any.html", + "webnn/validation_tests/triangular.https.any.worker.html?gpu", { "script_metadata": [ [ "title", - "test WebNN API squeeze operation" + "validation tests for WebNN API triangular operation" ], [ "global", "window,dedicatedworker" ], [ - "script", - "../resources/utils.js" + "variant", + "?cpu" ], [ - "timeout", - "long" + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" ] - ], - "timeout": "long" + ] } ], [ - "webnn/gpu/squeeze.https.any.worker.html", + "webnn/validation_tests/triangular.https.any.worker.html?npu", { "script_metadata": [ [ "title", - "test WebNN API squeeze operation" + "validation tests for WebNN API triangular operation" ], [ "global", "window,dedicatedworker" ], [ - "script", - "../resources/utils.js" + "variant", + "?cpu" ], [ - "timeout", - "long" + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" ] - ], - "timeout": "long" + ] } ] ], - "tanh.https.any.js": [ - "15a9eeb013c0559102292266c279685369ff1afe", + "where.https.any.js": [ + "884b4857317fb4d88f4de98ad198a35c4506c78b", [ - "webnn/gpu/tanh.https.any.html", + "webnn/validation_tests/where.https.any.html?cpu", { "script_metadata": [ [ "title", - "test WebNN API tanh operation" + "validation tests for WebNN API where operation" ], [ "global", "window,dedicatedworker" ], [ - "script", - "../resources/utils.js" + "variant", + "?cpu" ], [ - "timeout", - "long" + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" ] - ], - "timeout": "long" + ] } ], [ - "webnn/gpu/tanh.https.any.worker.html", + "webnn/validation_tests/where.https.any.html?gpu", { "script_metadata": [ [ "title", - "test WebNN API tanh operation" + "validation tests for WebNN API where operation" ], [ "global", "window,dedicatedworker" ], [ - "script", - "../resources/utils.js" + "variant", + "?cpu" ], [ - "timeout", - "long" + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" ] - ], - "timeout": "long" + ] } - ] - ], - "transpose.https.any.js": [ - "074e18a488372f9534238bd3031fab52d4c62371", + ], [ - "webnn/gpu/transpose.https.any.html", + "webnn/validation_tests/where.https.any.html?npu", { "script_metadata": [ [ "title", - "test WebNN API transpose operation" + "validation tests for WebNN API where operation" ], [ "global", "window,dedicatedworker" ], [ - "script", - "../resources/utils.js" + "variant", + "?cpu" ], [ - "timeout", - "long" + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" ] - ], - "timeout": "long" + ] } ], [ - "webnn/gpu/transpose.https.any.worker.html", + "webnn/validation_tests/where.https.any.worker.html?cpu", { "script_metadata": [ [ "title", - "test WebNN API transpose operation" + "validation tests for WebNN API where operation" ], [ "global", "window,dedicatedworker" ], [ - "script", - "../resources/utils.js" + "variant", + "?cpu" ], [ - "timeout", - "long" + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" ] - ], - "timeout": "long" + ] } - ] - ], - "where.https.any.js": [ - "ec0c5530a044b4b44077743eede15f75fea0afe3", + ], [ - "webnn/gpu/where.https.any.html", + "webnn/validation_tests/where.https.any.worker.html?gpu", { "script_metadata": [ [ "title", - "test WebNN API where operation" + "validation tests for WebNN API where operation" ], [ "global", "window,dedicatedworker" ], [ - "script", - "../resources/utils.js" + "variant", + "?cpu" ], [ - "timeout", - "long" + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" ] - ], - "timeout": "long" + ] } ], [ - "webnn/gpu/where.https.any.worker.html", + "webnn/validation_tests/where.https.any.worker.html?npu", { "script_metadata": [ [ "title", - "test WebNN API where operation" + "validation tests for WebNN API where operation" ], [ "global", "window,dedicatedworker" ], [ - "script", - "../resources/utils.js" + "variant", + "?cpu" ], [ - "timeout", - "long" + "variant", + "?gpu" + ], + [ + "variant", + "?npu" + ], + [ + "script", + "../resources/utils_validation.js" ] - ], - "timeout": "long" + ] } ] ] - }, - "hard_sigmoid.https.any.js": [ - "81bd5124ce90f09da63b292def464701101e9b15", - [ - "webnn/hard_sigmoid.https.any.html", - { - "script_metadata": [ - [ - "title", - "test WebNN API hardSigmoid operation" - ], - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "./resources/utils.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ], - [ - "webnn/hard_sigmoid.https.any.worker.html", - { - "script_metadata": [ - [ - "title", - "test WebNN API hardSigmoid operation" - ], - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "./resources/utils.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ] - ], - "hard_swish.https.any.js": [ - "052c7f2a208013ffca4d5c4ddb09404cd69d17d5", - [ - "webnn/hard_swish.https.any.html", - { - "script_metadata": [ - [ - "title", - "test WebNN API tanh operation" - ], - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "./resources/utils.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ], - [ - "webnn/hard_swish.https.any.worker.html", - { - "script_metadata": [ - [ - "title", - "test WebNN API tanh operation" - ], - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "./resources/utils.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ] - ], - "idlharness.https.any.js": [ - "65e21d5a1dc5c7ce7cb4558144a5d838b899d3ce", - [ - "webnn/idlharness.https.any.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "/resources/WebIDLParser.js" - ], - [ - "script", - "/resources/idlharness.js" - ], - [ - "script", - "./resources/utils.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ], - [ - "webnn/idlharness.https.any.worker.html", - { - "script_metadata": [ - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "/resources/WebIDLParser.js" - ], - [ - "script", - "/resources/idlharness.js" - ], - [ - "script", - "./resources/utils.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ] - ], - "leaky_relu.https.any.js": [ - "61539ce92ea8611f0c929e390fb8d06a9259c7c4", - [ - "webnn/leaky_relu.https.any.html", - { - "script_metadata": [ - [ - "title", - "test WebNN API leakyRelu operation" - ], - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "./resources/utils.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ], - [ - "webnn/leaky_relu.https.any.worker.html", - { - "script_metadata": [ - [ - "title", - "test WebNN API leakyRelu operation" - ], - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "./resources/utils.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ] - ], - "linear.https.any.js": [ - "4b2c05540b7fec01a6142af2351204213d436259", - [ - "webnn/linear.https.any.html", - { - "script_metadata": [ - [ - "title", - "test WebNN API linear operation" - ], - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "./resources/utils.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ], - [ - "webnn/linear.https.any.worker.html", - { - "script_metadata": [ - [ - "title", - "test WebNN API linear operation" - ], - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "./resources/utils.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ] - ], - "matmul.https.any.js": [ - "8a9882afe613c68fb1fd948c2310f91eb9cb8009", - [ - "webnn/matmul.https.any.html", - { - "script_metadata": [ - [ - "title", - "test WebNN API matmul operation" - ], - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "./resources/utils.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ], - [ - "webnn/matmul.https.any.worker.html", - { - "script_metadata": [ - [ - "title", - "test WebNN API matmul operation" - ], - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "./resources/utils.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ] - ], - "pad.https.any.js": [ - "05eec653c6c64eb3a199be891870bf616cf993ae", - [ - "webnn/pad.https.any.html", - { - "script_metadata": [ - [ - "title", - "test WebNN API pad operation" - ], - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "./resources/utils.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ], - [ - "webnn/pad.https.any.worker.html", - { - "script_metadata": [ - [ - "title", - "test WebNN API pad operation" - ], - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "./resources/utils.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ] - ], - "pooling.https.any.js": [ - "df19e5770948402356177c8a0b11b88814912c0e", - [ - "webnn/pooling.https.any.html", - { - "script_metadata": [ - [ - "title", - "test WebNN API pooling operations" - ], - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "./resources/utils.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ], - [ - "webnn/pooling.https.any.worker.html", - { - "script_metadata": [ - [ - "title", - "test WebNN API pooling operations" - ], - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "./resources/utils.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ] - ], - "prelu.https.any.js": [ - "c1b2e9fa2a0afffb60eec2c1445a230bca8030f9", - [ - "webnn/prelu.https.any.html", - { - "script_metadata": [ - [ - "title", - "test WebNN API prelu operation" - ], - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "./resources/utils.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ], - [ - "webnn/prelu.https.any.worker.html", - { - "script_metadata": [ - [ - "title", - "test WebNN API prelu operation" - ], - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "./resources/utils.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ] - ], - "reduction.https.any.js": [ - "20bd74d8dee84bcf32ccf24362a73a6854cf9462", - [ - "webnn/reduction.https.any.html", - { - "script_metadata": [ - [ - "title", - "test WebNN API reduction operation" - ], - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "./resources/utils.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ], - [ - "webnn/reduction.https.any.worker.html", - { - "script_metadata": [ - [ - "title", - "test WebNN API reduction operation" - ], - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "./resources/utils.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ] - ], - "relu.https.any.js": [ - "42b64e11de0eda64f587cce901861fda8e2b7ce3", - [ - "webnn/relu.https.any.html", - { - "script_metadata": [ - [ - "title", - "test WebNN API relu operation" - ], - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "./resources/utils.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ], - [ - "webnn/relu.https.any.worker.html", - { - "script_metadata": [ - [ - "title", - "test WebNN API relu operation" - ], - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "./resources/utils.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ] - ], - "reshape.https.any.js": [ - "e0733635f8755bf1a1540e7f225754ab24d66003", - [ - "webnn/reshape.https.any.html", - { - "script_metadata": [ - [ - "title", - "test WebNN API reshape operation" - ], - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "./resources/utils.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ], - [ - "webnn/reshape.https.any.worker.html", - { - "script_metadata": [ - [ - "title", - "test WebNN API reshape operation" - ], - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "./resources/utils.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ] - ], - "sigmoid.https.any.js": [ - "e904d8dfa7814107f0f2f2707eaebaa600533941", - [ - "webnn/sigmoid.https.any.html", - { - "script_metadata": [ - [ - "title", - "test WebNN API sigmoid operation" - ], - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "./resources/utils.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ], - [ - "webnn/sigmoid.https.any.worker.html", - { - "script_metadata": [ - [ - "title", - "test WebNN API sigmoid operation" - ], - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "./resources/utils.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ] - ], - "slice.https.any.js": [ - "cb7acefc0539a904d165a12ca5fdd9541206012e", - [ - "webnn/slice.https.any.html", - { - "script_metadata": [ - [ - "title", - "test WebNN API slice operation" - ], - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "./resources/utils.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ], - [ - "webnn/slice.https.any.worker.html", - { - "script_metadata": [ - [ - "title", - "test WebNN API slice operation" - ], - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "./resources/utils.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ] - ], - "softmax.https.any.js": [ - "8e5342bd75a0d85c671ecf9f7a5fbeadf805822f", - [ - "webnn/softmax.https.any.html", - { - "script_metadata": [ - [ - "title", - "test WebNN API softmax operation" - ], - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "./resources/utils.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ], - [ - "webnn/softmax.https.any.worker.html", - { - "script_metadata": [ - [ - "title", - "test WebNN API softmax operation" - ], - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "./resources/utils.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ] - ], - "softplus.https.any.js": [ - "7096f64a043a91fba09c91df70114666c8980664", - [ - "webnn/softplus.https.any.html", - { - "script_metadata": [ - [ - "title", - "test WebNN API softplus operation" - ], - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "./resources/utils.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ], - [ - "webnn/softplus.https.any.worker.html", - { - "script_metadata": [ - [ - "title", - "test WebNN API softplus operation" - ], - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "./resources/utils.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ] - ], - "softsign.https.any.js": [ - "61a7d5365fabca290eaeb400c961a107558e17ed", - [ - "webnn/softsign.https.any.html", - { - "script_metadata": [ - [ - "title", - "test WebNN API softsign operation" - ], - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "./resources/utils.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ], - [ - "webnn/softsign.https.any.worker.html", - { - "script_metadata": [ - [ - "title", - "test WebNN API softsign operation" - ], - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "./resources/utils.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ] - ], - "split.https.any.js": [ - "b6fc5b4d98d53b05e0a39a10d00e1eef23f6b6ef", - [ - "webnn/split.https.any.html", - { - "script_metadata": [ - [ - "title", - "test WebNN API split operation" - ], - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "./resources/utils.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ], - [ - "webnn/split.https.any.worker.html", - { - "script_metadata": [ - [ - "title", - "test WebNN API split operation" - ], - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "./resources/utils.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ] - ], - "squeeze.https.any.js": [ - "8b9310d65d4abed071bc081e9efc5f758740fc10", - [ - "webnn/squeeze.https.any.html", - { - "script_metadata": [ - [ - "title", - "test WebNN API squeeze operation" - ], - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "./resources/utils.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ], - [ - "webnn/squeeze.https.any.worker.html", - { - "script_metadata": [ - [ - "title", - "test WebNN API squeeze operation" - ], - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "./resources/utils.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ] - ], - "tanh.https.any.js": [ - "d0d45e754b271d9bed389f3e2958ad1c15e3bf78", - [ - "webnn/tanh.https.any.html", - { - "script_metadata": [ - [ - "title", - "test WebNN API tanh operation" - ], - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "./resources/utils.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ], - [ - "webnn/tanh.https.any.worker.html", - { - "script_metadata": [ - [ - "title", - "test WebNN API tanh operation" - ], - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "./resources/utils.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ] - ], - "transpose.https.any.js": [ - "63a123342aa3501ababcf14a0c811e7dc040ba4e", - [ - "webnn/transpose.https.any.html", - { - "script_metadata": [ - [ - "title", - "test WebNN API transpose operation" - ], - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "./resources/utils.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ], - [ - "webnn/transpose.https.any.worker.html", - { - "script_metadata": [ - [ - "title", - "test WebNN API transpose operation" - ], - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "./resources/utils.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ] - ], - "where.https.any.js": [ - "306128a814227550d3ce5de7d650d9d64ba67b60", - [ - "webnn/where.https.any.html", - { - "script_metadata": [ - [ - "title", - "test WebNN API where operation" - ], - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "./resources/utils.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ], - [ - "webnn/where.https.any.worker.html", - { - "script_metadata": [ - [ - "title", - "test WebNN API where operation" - ], - [ - "global", - "window,dedicatedworker" - ], - [ - "script", - "./resources/utils.js" - ], - [ - "timeout", - "long" - ] - ], - "timeout": "long" - } - ] - ] + } }, "webrtc": { "RTCCertificate-postMessage.html": [ @@ -753972,14 +804317,14 @@ ] ], "RTCConfiguration-iceServers.html": [ - "1893ba02f3042abe14db2cce50903f917b9280ff", + "aa66bfbb2bfff0febc9404e4b73e0637a3226a70", [ null, {} ] ], "RTCConfiguration-iceTransportPolicy.html": [ - "ebc79048a3ae390b229fc9c73fb2535f21b3ceda", + "b84e6a30db0fe214b72d2192223cd00f93300645", [ null, { @@ -754054,7 +804399,7 @@ ] ], "RTCDataChannel-close.html": [ - "64534fc50707747f2835671c638cb6ba16e317b0", + "e215d95ed9a932692d066a06c05dc84d36db8215", [ null, { @@ -754085,6 +804430,15 @@ {} ] ], + "RTCDataChannel-send-close.html": [ + "4ffe4a2019739cd640e53360083c8fd324193dc3", + [ + null, + { + "timeout": "long" + } + ] + ], "RTCDataChannel-send.html": [ "193f38cd780292e95daceda0aade957ac53c95cc", [ @@ -754116,14 +804470,14 @@ ] ], "RTCError.html": [ - "bcc5749bf7d5e69fd3d674ac33564403e41e9985", + "2650c54f9a77400169922001b19406e6bd611514", [ null, {} ] ], "RTCIceCandidate-constructor.html": [ - "66d696207962f8669dd6d3c28800241e80f4ab4a", + "b760c7b05a565c97c9c75287d11ca8cc83258d1f", [ null, {} @@ -754139,14 +804493,16 @@ ] ], "RTCIceTransport.html": [ - "fe12c384e5e5b3f8ab2e2b96b740d91959d16d94", + "e80418bdc456f02924678fcb2fccbc4044bdefdb", [ null, - {} + { + "timeout": "long" + } ] ], "RTCPeerConnection-GC.https.html": [ - "cd9c33224ef22a414b9958d7051b784748535085", + "282c362a2d4ae2836862502b23a09c32db424288", [ null, { @@ -754193,6 +804549,15 @@ {} ] ], + "RTCPeerConnection-addTcpIceCandidate.html": [ + "ca7a682708f589941fdca2b8495ee40a89917d49", + [ + null, + { + "timeout": "long" + } + ] + ], "RTCPeerConnection-addTrack.https.html": [ "91665822c4901dfab7ba8813ce60a8c79073a371", [ @@ -754247,14 +804612,14 @@ ] ], "RTCPeerConnection-createAnswer.html": [ - "1970db0737ab2aaa52380e62a96a49647f4ad8b8", + "7e31dda62906c93fc2bd4907d09bc56e5c6c465f", [ null, {} ] ], "RTCPeerConnection-createDataChannel.html": [ - "cddbd02c7bf22420532b5dc0d5a691660b5f44ec", + "373630ff77236668a1e32ed56e7340594d110996", [ null, { @@ -754263,21 +804628,21 @@ ] ], "RTCPeerConnection-createOffer.html": [ - "704fa3c6467e377447b140fbcd7b27cb1d9d20dc", + "4eabdffa04afee71e89a3a5c56a8257d1c4663b0", [ null, {} ] ], "RTCPeerConnection-description-attributes-timing.https.html": [ - "2d2565c3e1e0734a42231522d77129506491d2c1", + "bb23d2a39a19883fb60528113af10e4565edf385", [ null, {} ] ], "RTCPeerConnection-explicit-rollback-iceGatheringState.html": [ - "e39b985bef2fe65d359e16152b8cff322016fd08", + "a28275047e4f6a4463fa164a39fb81a2fbbc084f", [ null, {} @@ -754291,7 +804656,7 @@ ] ], "RTCPeerConnection-getStats.https.html": [ - "4889bcf4dd011bb9feb3c84c6dec5fe6f0a086d1", + "85ce8bc9f5522dffa27f3feb336b75f75d11b3e2", [ null, { @@ -754314,7 +804679,7 @@ ] ], "RTCPeerConnection-iceConnectionState-disconnected.https.html": [ - "af55a0c003512f98dc96d11c07e8a5099ed1f5ea", + "04c2b9c333cb8960185882e14551f4117d97440b", [ null, { @@ -754323,7 +804688,7 @@ ] ], "RTCPeerConnection-iceConnectionState.https.html": [ - "5361cb2c1af2b6cd9606798cca63b4e7e9f0a20b", + "9e0afb7ce693f2388fd53c31103837e3273da35a", [ null, { @@ -754332,14 +804697,16 @@ ] ], "RTCPeerConnection-iceGatheringState.html": [ - "6afaf0fbfbd1dc212027a117c6ea36ddbf9d8d10", + "32a68953bc59311967c8e59c82cf70cecae3f32e", [ null, - {} + { + "timeout": "long" + } ] ], "RTCPeerConnection-mandatory-getStats.https.html": [ - "b12800803828719921d197d48d463e2560b1076b", + "ba04a4546912d30a9b3306bba5457d594d2a5f08", [ null, { @@ -754474,21 +804841,21 @@ ] ], "RTCPeerConnection-setLocalDescription-answer.html": [ - "4c207890960c78954bea5c230688b38ca430582e", + "1d80eb8295c0547ec1c0951a8c5366a3d7f7f21e", [ null, {} ] ], "RTCPeerConnection-setLocalDescription-offer.html": [ - "88f1de5ed892ce0cf3f4f3b114b6775678fb1f26", + "2be83a01ce465ad459b1d08998bafd4cf6d27b43", [ null, {} ] ], "RTCPeerConnection-setLocalDescription-parameterless.https.html": [ - "5a7a76319a0571961d7dacc3d1562327089587bd", + "23d1e09a9dbf6c8c48deb8b92d5e0b2b8a87f851", [ null, {} @@ -754502,7 +804869,7 @@ ] ], "RTCPeerConnection-setLocalDescription-rollback.html": [ - "787edc92e7a393c0ed6f0a210209d83c96c8fd9b", + "08d0393cb76b6a778abc7ff4ee39cfce31d47f30", [ null, {} @@ -754530,7 +804897,7 @@ ] ], "RTCPeerConnection-setRemoteDescription-offer.html": [ - "d5acb7e1c933aa13a774b69f54ba4282905d2f4d", + "d95ecafc336b151428081ed2c830f31e90a768f4", [ null, {} @@ -754551,7 +804918,7 @@ ] ], "RTCPeerConnection-setRemoteDescription-rollback.html": [ - "0e6213d70832fecc25aae7954f6cf5190b4f0a48", + "a72fa6673826bc5512da26e9da2be93833a1db9f", [ null, {} @@ -754574,7 +804941,7 @@ ] ], "RTCPeerConnection-setRemoteDescription.html": [ - "c170f766bd3655b16c0eea1c5514e9e15aac8402", + "e2bec7dd91759bd6ef13f7f2eb931b8317ee73ad", [ null, {} @@ -754619,11 +804986,22 @@ {} ] ], + "RTCRtpParameters-codec.html": [ + "9903776cceb7de610d0aa3d24625d1ee16206aba", + [ + null, + { + "timeout": "long" + } + ] + ], "RTCRtpParameters-codecs.html": [ - "f5fa65e2ac9be706a72feb49c09b37def65986e8", + "933677f792b84568b00e1c9a852d7e8fcd2b9e4e", [ null, - {} + { + "timeout": "long" + } ] ], "RTCRtpParameters-encodings.html": [ @@ -754661,6 +805039,15 @@ {} ] ], + "RTCRtpReceiver-audio-jitterBufferTarget-stats.https.html": [ + "005286497cb10598582024684a24df84e331f3cd", + [ + null, + { + "timeout": "long" + } + ] + ], "RTCRtpReceiver-getCapabilities.html": [ "21dcae208afc456e4ca56b690a7e75f44657457c", [ @@ -754669,21 +805056,21 @@ ] ], "RTCRtpReceiver-getContributingSources.https.html": [ - "7245d477cc8994098e1d0af2a8a5ddbf2f57620e", + "a5913f6e8407f644003df272be6d289292156884", [ null, {} ] ], "RTCRtpReceiver-getParameters.html": [ - "7047ce7d1f363b7d2e06ebbebea11736abcccf3e", + "14ec74b66a0329479c83d074e9b97b90347c9a46", [ null, {} ] ], "RTCRtpReceiver-getStats.https.html": [ - "39948ed6f7f0db4ccc205329116b2353d80fee71", + "2fcf33dc2e4aac738f3da39663a7812320deb5e2", [ null, { @@ -754692,7 +805079,23 @@ ] ], "RTCRtpReceiver-getSynchronizationSources.https.html": [ - "8436a44ebcd227fa934ceba5488918b10d92acd3", + "cb5336f3f3523d0684e48de42f2666a6e6a3aa50", + [ + null, + { + "timeout": "long" + } + ] + ], + "RTCRtpReceiver-jitterBufferTarget.html": [ + "448162d3a2fbbb94d85fd87f2072026a64dd821a", + [ + null, + {} + ] + ], + "RTCRtpReceiver-video-jitterBufferTarget-stats.html": [ + "d69d7f51990df8f73b3a09569b389407172de9dc", [ null, { @@ -754700,6 +805103,13 @@ } ] ], + "RTCRtpReceiver.https.html": [ + "eea013140f393a8c04cb5c19c673bdd08f899a6c", + [ + null, + {} + ] + ], "RTCRtpSender-encode-same-track-twice.https.html": [ "568543da70f8360a80f9ed0e633f55f35f57aa92", [ @@ -754716,8 +805126,15 @@ {} ] ], + "RTCRtpSender-getParameters.html": [ + "6c47153c8365aff1a0c93740635ef87c6b589b26", + [ + null, + {} + ] + ], "RTCRtpSender-getStats.https.html": [ - "62c01aafa6a959f25bfd072a512ddc4b66ed1878", + "6aeed650e58c7be225b773095b8f035cd216d5d0", [ null, { @@ -754734,6 +805151,15 @@ } ] ], + "RTCRtpSender-setParameters-keyFrame.html": [ + "030bc7cadf776086f4a52e7ad078c7e52dad83f8", + [ + null, + { + "timeout": "long" + } + ] + ], "RTCRtpSender-setParameters.html": [ "7c8740dd1dd42c6546d315eb496e9562470f6d48", [ @@ -754758,7 +805184,7 @@ ] ], "RTCRtpSender.https.html": [ - "d17115c46af24eba05a812c683d3fc8d2b07d7c6", + "21058dfeedcad9fef7c4ffbc23f0c5cef196277f", [ null, {} @@ -754772,7 +805198,7 @@ ] ], "RTCRtpTransceiver-setCodecPreferences.html": [ - "f779f5a94ca4959004c90f2331783ceed4c21820", + "b3129b49869fec05f351ff3403f785eb2fe1fcc3", [ null, {} @@ -754953,14 +805379,14 @@ ] ], "back-forward-cache-with-open-webrtc-connection.https.window.js": [ - "4a4807d5141123cd1cf7e85cc1c8e29623944f59", + "de797b3f2c541f3d432a17807ea366f342167e06", [ "webrtc/back-forward-cache-with-open-webrtc-connection.https.window.html", { "script_metadata": [ [ "title", - "Testing BFCache support for page with open WebRTC connection." + "Testing BFCache support for page with open WebRTC connection and live MediaStreamTrack." ], [ "script", @@ -754981,8 +805407,13 @@ [ "script", "resources/webrtc-test-helpers.sub.js" + ], + [ + "timeout", + "long" ] - ] + ], + "timeout": "long" } ] ], @@ -754994,14 +805425,14 @@ ] ], "historical.html": [ - "ae7a29dec0c184d5bc52e2db14b919bdd6b700b3", + "e30a7bc7d355953b75034a5ddf84085c3b8273f7", [ null, {} ] ], "idlharness.https.window.js": [ - "98685f1cd12378e715b5b35317387abea137ba00", + "611494f641d6060e69fe79e7ab975341703969fa", [ "webrtc/idlharness.https.window.html", { @@ -755044,6 +805475,15 @@ } ] ], + "munge-dont.html": [ + "b5f0a4cb63ba728d76cdae6c6deeb724dc09f5ce", + [ + null, + { + "timeout": "long" + } + ] + ], "onaddstream.https.html": [ "b5e8a402b88aa29e0ffc0f3046ee46b88d4b6fed", [ @@ -755052,6 +805492,13 @@ "testdriver": true } ] + ], + "simplecall_callbacks.https.html": [ + "f7b0ba7944139b5164be880d3b7e8df9b1c0e7be", + [ + null, + {} + ] ] }, "no-media-call.html": [ @@ -755103,8 +805550,26 @@ } ] ], + "codecs-filtered-by-direction.https.html": [ + "ed1d65e4b00f8615046e16cd38b0345836863729", + [ + null, + { + "timeout": "long" + } + ] + ], + "codecs-subsequent-offer.https.html": [ + "fc9240e950b7209a2b124801a3e3a5bf3b079ab4", + [ + null, + { + "timeout": "long" + } + ] + ], "crypto-suite.https.html": [ - "2c8b1f6491dbab3d9567ab1a3b667c574ed53b15", + "c3941e409ffa10f2a85fb0cd0cd7d59732fbf717", [ null, {} @@ -755202,6 +805667,13 @@ {} ] ], + "pt-no-bundle.html": [ + "e434d2e86fa4c082b8b6e44de8b5fe0fb9729c9a", + [ + null, + {} + ] + ], "rtp-clockrate.html": [ "4177420050f582094d8fe293aac1665bdaea798e", [ @@ -755212,7 +805684,7 @@ ] ], "rtp-demuxing.html": [ - "de08b2197f2985ac049024d1e5f44408d776f2e2", + "e53f1ff76f4bb0911fe6ad006b6707844a182ae4", [ null, { @@ -755256,7 +805728,7 @@ ] ], "sdes-dont-dont-dont.html": [ - "e938c84c8bfe39683b689ac42e2a3f9d53244073", + "dcf7ad1b5467a17226cdb3144b00c0689cf8149b", [ null, { @@ -755300,14 +805772,14 @@ ] ], "video-codecs.https.html": [ - "4ce0618bca3007e4193b98a95b0a6d030cc24b5f", + "2fbb4ae28f64b07da1bc8defa1f8c65fc448604d", [ null, {} ] ], "vp8-fmtp.html": [ - "16ea635949f14bfec18005c0803a9bc99d6809ec", + "f52d6b11fb5f56eac358a253f684025efa5ae9fd", [ null, { @@ -755417,6 +805889,15 @@ } ] ], + "setParameters-maxFramerate.https.html": [ + "e404787dbd8ace1445a3f860d735cf0593d57821", + [ + null, + { + "timeout": "long" + } + ] + ], "vp8.https.html": [ "3d04bc71726e719dbed700cfc72d301924b73030", [ @@ -755428,7 +805909,7 @@ ] ], "vp9-scalability-mode.https.html": [ - "9dc8a3103d6062402354fa29caae29178cf105d6", + "8d8f974fcdcb6ec641df5d931dc5f7fac35228d3", [ null, { @@ -755457,98 +805938,15 @@ ] }, "webrtc-encoded-transform": { - "RTCEncodedAudioFrame-clone.https.html": [ - "83cf642d77f486cca425160fbc5a0b91517a0197", - [ - null, - { - "testdriver": true - } - ] - ], - "RTCEncodedAudioFrame-receive-cloned.https.html": [ - "66ce0bbcefb80a6f143861179f55b5e121f0194d", - [ - null, - { - "testdriver": true - } - ] - ], - "RTCEncodedAudioFrame-send-incoming.https.html": [ - "1e2bbc95bd1d45131b98e7378ad0f9ad90b5bbdb", - [ - null, - { - "testdriver": true - } - ] - ], - "RTCEncodedAudioFrame-serviceworker-failure.https.html": [ - "d6d8578dbdf5385f4f1ba85f68f610ce3727cd38", - [ - null, - { - "testdriver": true - } - ] - ], - "RTCEncodedVideoFrame-clone.https.html": [ - "0c51df25bbb3952772280ad5b9f46d96096c3079", - [ - null, - { - "testdriver": true - } - ] - ], - "RTCEncodedVideoFrame-serviceworker-failure.https.html": [ - "b95c673f41eaa0fe91b5ea54063bef58550ab520", + "RTCRtpScriptTransform-bad-chunk.https.html": [ + "a837f627f25edf709115407fcc7bce70dcd4f078", [ null, - { - "testdriver": true - } - ] - ], - "RTCPeerConnection-insertable-streams-audio.https.html": [ - "23af1c2b63616449875dd98a9e32cf67d43528d6", - [ - null, - { - "testdriver": true - } - ] - ], - "RTCPeerConnection-insertable-streams-errors.https.html": [ - "d36df8227bf4ed76e23c26ed8f21e478b5f90fe5", - [ - null, - { - "testdriver": true - } - ] - ], - "RTCPeerConnection-insertable-streams-simulcast.https.html": [ - "cb33e458d18cdf65b3dd0e68a1da080efb8aa394", - [ - null, - { - "testdriver": true - } - ] - ], - "RTCPeerConnection-insertable-streams-video-frames.https.html": [ - "d7fb0888468765f03e52dbf128e7c3766b636142", - [ - null, - { - "testdriver": true - } + {} ] ], - "RTCPeerConnection-insertable-streams-video.https.html": [ - "aa0ff474e9737e6562ed597c7d75afb3e0cf8004", + "RTCRtpScriptTransform-encoded-transform.https.html": [ + "c935644f0c6f7e71b50cd241bebdea9cc92826e7", [ null, { @@ -755556,8 +805954,8 @@ } ] ], - "RTCPeerConnection-insertable-streams-worker.https.html": [ - "cb31057cac9f52b70122838a41456eb1484bfa5a", + "RTCRtpScriptTransform-sender-worker-single-frame.https.html": [ + "bc5cfd9d6c4f7df4aa27e8e8d548d905d7ab75ff", [ null, { @@ -755672,15 +806070,6 @@ } ] ], - "set-metadata.https.html": [ - "c4699598cf92f53fcf2c4765ef46704a4f7ef6fa", - [ - null, - { - "testdriver": true - } - ] - ], "sframe-keys.https.html": [ "c87ac12e2965af471eb30a5b60f35f43d3924d43", [ @@ -755719,7 +806108,135 @@ null, {} ] - ] + ], + "tentative": { + "RTCEncodedAudioFrame-clone.https.html": [ + "9f07713d4439c676fd7a5cc2f7d32af92a350e19", + [ + null, + { + "testdriver": true + } + ] + ], + "RTCEncodedAudioFrame-metadata.https.html": [ + "609467b5e3ecdc2b777321da15fb64f713985082", + [ + null, + { + "testdriver": true + } + ] + ], + "RTCEncodedAudioFrame-receive-cloned.https.html": [ + "3077632a3b4408b2874b3345abfee511e4832710", + [ + null, + { + "testdriver": true + } + ] + ], + "RTCEncodedAudioFrame-send-incoming.https.html": [ + "02f3b17e0c271b7e5c6f1b25d5bbb12b6156c4f4", + [ + null, + { + "testdriver": true + } + ] + ], + "RTCEncodedAudioFrame-serviceworker-failure.https.html": [ + "b2f5f5e94c8ee19ef754213897a133d1fe06422e", + [ + null, + { + "testdriver": true + } + ] + ], + "RTCEncodedVideoFrame-clone.https.html": [ + "324c44f1934522f4dc21aef2cc56ddcca528373d", + [ + null, + { + "testdriver": true + } + ] + ], + "RTCEncodedVideoFrame-metadata.https.html": [ + "77e1ed118f21c5a47aaff1c1548e73e06dcf9666", + [ + null, + { + "testdriver": true + } + ] + ], + "RTCEncodedVideoFrame-serviceworker-failure.https.html": [ + "e725e5ce12cec388270e9a10f760af77db7d402e", + [ + null, + { + "testdriver": true + } + ] + ], + "RTCPeerConnection-insertable-streams-audio.https.html": [ + "83d284146a0c438200c5fc168f9f0a800ba971bb", + [ + null, + { + "testdriver": true + } + ] + ], + "RTCPeerConnection-insertable-streams-errors.https.html": [ + "a0c68c400a291ffd5852a8ae1ee9dd58368a22c7", + [ + null, + { + "testdriver": true + } + ] + ], + "RTCPeerConnection-insertable-streams-simulcast.https.html": [ + "834644674e811cdd3e211ae9b658142036e009c4", + [ + null, + { + "testdriver": true + } + ] + ], + "RTCPeerConnection-insertable-streams-video-frames.https.html": [ + "d3db116ff603ffa59bcb0a2599cb446d321311f6", + [ + null, + { + "testdriver": true + } + ] + ], + "RTCPeerConnection-insertable-streams-video.https.html": [ + "5334b8d1f94a5e66caf39867c6f56283c9288070", + [ + null, + { + "testdriver": true + } + ] + ], + "RTCPeerConnection-insertable-streams-worker.https.html": [ + "94943f8b6960e474b28c27afc5c9e779c67ef08e", + [ + null, + { + "testdriver": true + } + ] + ] + } }, "webrtc-extensions": { "RTCOAuthCredential.html": [ @@ -755736,31 +806253,8 @@ {} ] ], - "RTCRtpParameters-codec.html": [ - "cce2c1661f7d7761da12d2ee4ba7be1446fcfe9b", - [ - null, - {} - ] - ], - "RTCRtpReceiver-jitterBufferTarget-stats.html": [ - "33f71800bd8ed53eb7b0446e6535997bccb7b01a", - [ - null, - { - "timeout": "long" - } - ] - ], - "RTCRtpReceiver-jitterBufferTarget.html": [ - "448162d3a2fbbb94d85fd87f2072026a64dd821a", - [ - null, - {} - ] - ], "RTCRtpSynchronizationSource-captureTimestamp.html": [ - "60b4ed0a74f556f149b308d0389d334dc5d5fda9", + "22ca5709b5f4f4e6bd4daf91e3a9c9504845b7f7", [ null, { @@ -755769,7 +806263,7 @@ ] ], "RTCRtpSynchronizationSource-senderCaptureTimeOffset.html": [ - "63ad9bf888c3815b6a4c5d6b494077273aaf3dec", + "88bd75bfaa43914df47a1e394904e6952737a11b", [ null, { @@ -755867,14 +806361,14 @@ }, "webrtc-stats": { "getStats-remote-candidate-address.html": [ - "08e2aec90e6836cdcd05b448d2d581eec3bd5535", + "d30f2252bf23fe6ceb69349af2106e56885573b6", [ null, {} ] ], "hardware-capability-stats.https.html": [ - "49f80d4b652b0f9161d245c9a4259fc5717961bf", + "a6293e850044ab7d56c10cf84e21252ce93f6d4a", [ null, { @@ -755918,7 +806412,7 @@ ] ], "supported-stats.https.html": [ - "c2319964973762ecf585992e0fb0991226c0c29d", + "677736f3cd8f33963c53d4fa9bee0c52f4826a5f", [ null, { @@ -755965,7 +806459,7 @@ ] ], "RTCRtpParameters-scalability.html": [ - "ff28c2b5e95636708568cdc20c5da5fc2db0dcba", + "134a28bd5e13eaf47ced84a5694f9a38f4851b05", [ null, { @@ -758514,7 +809008,7 @@ ] ], "Create-blocked-port.any.js": [ - "2962312ff5f7fd8f09332a8124dd5fb559f2cb8b", + "b8e3e26445e27a6a13673c38b84da00f61f63906", [ "websockets/Create-blocked-port.any.html?default", { @@ -761273,6 +811767,147 @@ } ] ], + "Send-binary-arraybufferview-float16.any.js": [ + "7251ebfed2a35117e80f19655c8bb7138910c6e7", + [ + "websockets/Send-binary-arraybufferview-float16.any.html?default", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "?default" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Send-binary-arraybufferview-float16.any.html?wpt_flags=h2", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "?default" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Send-binary-arraybufferview-float16.any.html?wss", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "?default" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Send-binary-arraybufferview-float16.any.worker.html?default", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "?default" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Send-binary-arraybufferview-float16.any.worker.html?wpt_flags=h2", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "?default" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ], + [ + "websockets/Send-binary-arraybufferview-float16.any.worker.html?wss", + { + "script_metadata": [ + [ + "script", + "constants.sub.js" + ], + [ + "variant", + "?default" + ], + [ + "variant", + "?wpt_flags=h2" + ], + [ + "variant", + "?wss" + ] + ] + } + ] + ], "Send-binary-arraybufferview-float32.any.js": [ "47ee5b1170b8d20ba217395e693ecdceb774810a", [ @@ -767232,9 +817867,495 @@ ], "timeout": "long" } - ], + ], + [ + "websockets/stream/tentative/backpressure-receive.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-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": [ + "e4a80f6e1c071b33b032e699ba3e0de2c1c8572e", + [ + "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-send.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" + } + ] + ], + "close.any.js": [ + "ad41dc6e2e9fd3fcff4af10da30c548a60d8e880", [ - "websockets/stream/tentative/backpressure-receive.any.html?wss", + "websockets/stream/tentative/close.any.html?default", { "script_metadata": [ [ @@ -767250,8 +818371,8 @@ "window,worker" ], [ - "timeout", - "long" + "variant", + "?default" ], [ "variant", @@ -767261,12 +818382,11 @@ "variant", "?wpt_flags=h2" ] - ], - "timeout": "long" + ] } ], [ - "websockets/stream/tentative/backpressure-receive.any.serviceworker.html?wpt_flags=h2", + "websockets/stream/tentative/close.any.html?wpt_flags=h2", { "script_metadata": [ [ @@ -767282,8 +818402,8 @@ "window,worker" ], [ - "timeout", - "long" + "variant", + "?default" ], [ "variant", @@ -767293,12 +818413,11 @@ "variant", "?wpt_flags=h2" ] - ], - "timeout": "long" + ] } ], [ - "websockets/stream/tentative/backpressure-receive.any.serviceworker.html?wss", + "websockets/stream/tentative/close.any.html?wss", { "script_metadata": [ [ @@ -767314,8 +818433,8 @@ "window,worker" ], [ - "timeout", - "long" + "variant", + "?default" ], [ "variant", @@ -767325,12 +818444,11 @@ "variant", "?wpt_flags=h2" ] - ], - "timeout": "long" + ] } ], [ - "websockets/stream/tentative/backpressure-receive.any.sharedworker.html?wpt_flags=h2", + "websockets/stream/tentative/close.any.serviceworker.html?default", { "script_metadata": [ [ @@ -767346,8 +818464,8 @@ "window,worker" ], [ - "timeout", - "long" + "variant", + "?default" ], [ "variant", @@ -767357,12 +818475,11 @@ "variant", "?wpt_flags=h2" ] - ], - "timeout": "long" + ] } ], [ - "websockets/stream/tentative/backpressure-receive.any.sharedworker.html?wss", + "websockets/stream/tentative/close.any.serviceworker.html?wpt_flags=h2", { "script_metadata": [ [ @@ -767378,8 +818495,8 @@ "window,worker" ], [ - "timeout", - "long" + "variant", + "?default" ], [ "variant", @@ -767389,12 +818506,11 @@ "variant", "?wpt_flags=h2" ] - ], - "timeout": "long" + ] } ], [ - "websockets/stream/tentative/backpressure-receive.any.worker.html?wpt_flags=h2", + "websockets/stream/tentative/close.any.serviceworker.html?wss", { "script_metadata": [ [ @@ -767410,8 +818526,8 @@ "window,worker" ], [ - "timeout", - "long" + "variant", + "?default" ], [ "variant", @@ -767421,12 +818537,11 @@ "variant", "?wpt_flags=h2" ] - ], - "timeout": "long" + ] } ], [ - "websockets/stream/tentative/backpressure-receive.any.worker.html?wss", + "websockets/stream/tentative/close.any.sharedworker.html?default", { "script_metadata": [ [ @@ -767442,8 +818557,8 @@ "window,worker" ], [ - "timeout", - "long" + "variant", + "?default" ], [ "variant", @@ -767453,15 +818568,11 @@ "variant", "?wpt_flags=h2" ] - ], - "timeout": "long" + ] } - ] - ], - "backpressure-send.any.js": [ - "e4a80f6e1c071b33b032e699ba3e0de2c1c8572e", + ], [ - "websockets/stream/tentative/backpressure-send.any.html?wpt_flags=h2", + "websockets/stream/tentative/close.any.sharedworker.html?wpt_flags=h2", { "script_metadata": [ [ @@ -767477,8 +818588,8 @@ "window,worker" ], [ - "timeout", - "long" + "variant", + "?default" ], [ "variant", @@ -767488,12 +818599,11 @@ "variant", "?wpt_flags=h2" ] - ], - "timeout": "long" + ] } ], [ - "websockets/stream/tentative/backpressure-send.any.html?wss", + "websockets/stream/tentative/close.any.sharedworker.html?wss", { "script_metadata": [ [ @@ -767509,8 +818619,8 @@ "window,worker" ], [ - "timeout", - "long" + "variant", + "?default" ], [ "variant", @@ -767520,12 +818630,11 @@ "variant", "?wpt_flags=h2" ] - ], - "timeout": "long" + ] } ], [ - "websockets/stream/tentative/backpressure-send.any.serviceworker.html?wpt_flags=h2", + "websockets/stream/tentative/close.any.worker.html?default", { "script_metadata": [ [ @@ -767541,8 +818650,8 @@ "window,worker" ], [ - "timeout", - "long" + "variant", + "?default" ], [ "variant", @@ -767552,12 +818661,11 @@ "variant", "?wpt_flags=h2" ] - ], - "timeout": "long" + ] } ], [ - "websockets/stream/tentative/backpressure-send.any.serviceworker.html?wss", + "websockets/stream/tentative/close.any.worker.html?wpt_flags=h2", { "script_metadata": [ [ @@ -767573,8 +818681,8 @@ "window,worker" ], [ - "timeout", - "long" + "variant", + "?default" ], [ "variant", @@ -767584,12 +818692,11 @@ "variant", "?wpt_flags=h2" ] - ], - "timeout": "long" + ] } ], [ - "websockets/stream/tentative/backpressure-send.any.sharedworker.html?wpt_flags=h2", + "websockets/stream/tentative/close.any.worker.html?wss", { "script_metadata": [ [ @@ -767605,8 +818712,8 @@ "window,worker" ], [ - "timeout", - "long" + "variant", + "?default" ], [ "variant", @@ -767616,12 +818723,14 @@ "variant", "?wpt_flags=h2" ] - ], - "timeout": "long" + ] } - ], + ] + ], + "constructor.any.js": [ + "66df97430355f174d2c334e138db8b5e73a391aa", [ - "websockets/stream/tentative/backpressure-send.any.sharedworker.html?wss", + "websockets/stream/tentative/constructor.any.html?wpt_flags=h2", { "script_metadata": [ [ @@ -767636,10 +818745,6 @@ "global", "window,worker" ], - [ - "timeout", - "long" - ], [ "variant", "?wss" @@ -767648,12 +818753,11 @@ "variant", "?wpt_flags=h2" ] - ], - "timeout": "long" + ] } ], [ - "websockets/stream/tentative/backpressure-send.any.worker.html?wpt_flags=h2", + "websockets/stream/tentative/constructor.any.html?wss", { "script_metadata": [ [ @@ -767668,10 +818772,6 @@ "global", "window,worker" ], - [ - "timeout", - "long" - ], [ "variant", "?wss" @@ -767680,12 +818780,11 @@ "variant", "?wpt_flags=h2" ] - ], - "timeout": "long" + ] } ], [ - "websockets/stream/tentative/backpressure-send.any.worker.html?wss", + "websockets/stream/tentative/constructor.any.serviceworker.html?wpt_flags=h2", { "script_metadata": [ [ @@ -767701,8 +818800,31 @@ "window,worker" ], [ - "timeout", - "long" + "variant", + "?wss" + ], + [ + "variant", + "?wpt_flags=h2" + ] + ] + } + ], + [ + "websockets/stream/tentative/constructor.any.serviceworker.html?wss", + { + "script_metadata": [ + [ + "script", + "../../constants.sub.js" + ], + [ + "script", + "resources/url-constants.js" + ], + [ + "global", + "window,worker" ], [ "variant", @@ -767712,15 +818834,11 @@ "variant", "?wpt_flags=h2" ] - ], - "timeout": "long" + ] } - ] - ], - "close.any.js": [ - "2be9034872e909b834d8d2bab3975e1c2f8b25e9", + ], [ - "websockets/stream/tentative/close.any.html?wpt_flags=h2", + "websockets/stream/tentative/constructor.any.sharedworker.html?wpt_flags=h2", { "script_metadata": [ [ @@ -767747,7 +818865,7 @@ } ], [ - "websockets/stream/tentative/close.any.html?wss", + "websockets/stream/tentative/constructor.any.sharedworker.html?wss", { "script_metadata": [ [ @@ -767774,7 +818892,7 @@ } ], [ - "websockets/stream/tentative/close.any.serviceworker.html?wpt_flags=h2", + "websockets/stream/tentative/constructor.any.worker.html?wpt_flags=h2", { "script_metadata": [ [ @@ -767801,7 +818919,7 @@ } ], [ - "websockets/stream/tentative/close.any.serviceworker.html?wss", + "websockets/stream/tentative/constructor.any.worker.html?wss", { "script_metadata": [ [ @@ -767826,9 +818944,12 @@ ] ] } - ], + ] + ], + "remote-close.any.js": [ + "b7fd321914a4e6f9bf70d431bca591a7c5460675", [ - "websockets/stream/tentative/close.any.sharedworker.html?wpt_flags=h2", + "websockets/stream/tentative/remote-close.any.html?default", { "script_metadata": [ [ @@ -767843,6 +818964,10 @@ "global", "window,worker" ], + [ + "variant", + "?default" + ], [ "variant", "?wss" @@ -767855,7 +818980,7 @@ } ], [ - "websockets/stream/tentative/close.any.sharedworker.html?wss", + "websockets/stream/tentative/remote-close.any.html?wpt_flags=h2", { "script_metadata": [ [ @@ -767870,6 +818995,10 @@ "global", "window,worker" ], + [ + "variant", + "?default" + ], [ "variant", "?wss" @@ -767882,7 +819011,7 @@ } ], [ - "websockets/stream/tentative/close.any.worker.html?wpt_flags=h2", + "websockets/stream/tentative/remote-close.any.html?wss", { "script_metadata": [ [ @@ -767897,6 +819026,10 @@ "global", "window,worker" ], + [ + "variant", + "?default" + ], [ "variant", "?wss" @@ -767909,7 +819042,7 @@ } ], [ - "websockets/stream/tentative/close.any.worker.html?wss", + "websockets/stream/tentative/remote-close.any.serviceworker.html?default", { "script_metadata": [ [ @@ -767924,6 +819057,10 @@ "global", "window,worker" ], + [ + "variant", + "?default" + ], [ "variant", "?wss" @@ -767934,12 +819071,9 @@ ] ] } - ] - ], - "constructor.any.js": [ - "4d67d81cf288cba2eb3a12a8050dbd323dfd1c55", + ], [ - "websockets/stream/tentative/constructor.any.html?wpt_flags=h2", + "websockets/stream/tentative/remote-close.any.serviceworker.html?wpt_flags=h2", { "script_metadata": [ [ @@ -767954,6 +819088,10 @@ "global", "window,worker" ], + [ + "variant", + "?default" + ], [ "variant", "?wss" @@ -767966,7 +819104,7 @@ } ], [ - "websockets/stream/tentative/constructor.any.html?wss", + "websockets/stream/tentative/remote-close.any.serviceworker.html?wss", { "script_metadata": [ [ @@ -767981,6 +819119,10 @@ "global", "window,worker" ], + [ + "variant", + "?default" + ], [ "variant", "?wss" @@ -767993,7 +819135,7 @@ } ], [ - "websockets/stream/tentative/constructor.any.serviceworker.html?wpt_flags=h2", + "websockets/stream/tentative/remote-close.any.sharedworker.html?default", { "script_metadata": [ [ @@ -768008,6 +819150,10 @@ "global", "window,worker" ], + [ + "variant", + "?default" + ], [ "variant", "?wss" @@ -768020,7 +819166,7 @@ } ], [ - "websockets/stream/tentative/constructor.any.serviceworker.html?wss", + "websockets/stream/tentative/remote-close.any.sharedworker.html?wpt_flags=h2", { "script_metadata": [ [ @@ -768035,6 +819181,10 @@ "global", "window,worker" ], + [ + "variant", + "?default" + ], [ "variant", "?wss" @@ -768047,7 +819197,7 @@ } ], [ - "websockets/stream/tentative/constructor.any.sharedworker.html?wpt_flags=h2", + "websockets/stream/tentative/remote-close.any.sharedworker.html?wss", { "script_metadata": [ [ @@ -768062,6 +819212,10 @@ "global", "window,worker" ], + [ + "variant", + "?default" + ], [ "variant", "?wss" @@ -768074,7 +819228,7 @@ } ], [ - "websockets/stream/tentative/constructor.any.sharedworker.html?wss", + "websockets/stream/tentative/remote-close.any.worker.html?default", { "script_metadata": [ [ @@ -768089,6 +819243,10 @@ "global", "window,worker" ], + [ + "variant", + "?default" + ], [ "variant", "?wss" @@ -768101,7 +819259,7 @@ } ], [ - "websockets/stream/tentative/constructor.any.worker.html?wpt_flags=h2", + "websockets/stream/tentative/remote-close.any.worker.html?wpt_flags=h2", { "script_metadata": [ [ @@ -768116,6 +819274,10 @@ "global", "window,worker" ], + [ + "variant", + "?default" + ], [ "variant", "?wss" @@ -768128,7 +819290,7 @@ } ], [ - "websockets/stream/tentative/constructor.any.worker.html?wss", + "websockets/stream/tentative/remote-close.any.worker.html?wss", { "script_metadata": [ [ @@ -768143,6 +819305,10 @@ "global", "window,worker" ], + [ + "variant", + "?default" + ], [ "variant", "?wss" @@ -768154,6 +819320,53 @@ ] } ] + ], + "websocket-error.any.js": [ + "b114bbb3e3495d2ae4ce0c75454539d4b2fddea7", + [ + "websockets/stream/tentative/websocket-error.any.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ] + ] + } + ], + [ + "websockets/stream/tentative/websocket-error.any.serviceworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ] + ] + } + ], + [ + "websockets/stream/tentative/websocket-error.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ] + ] + } + ], + [ + "websockets/stream/tentative/websocket-error.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ] + ] + } + ] ] } }, @@ -768389,24 +819602,24 @@ } ] ], - "localstorage-about-blank-3P-iframe-opens-3P-window.partitioned.tentative.html": [ + "localstorage-about-blank-3P-iframe-opens-3P-window.partitioned.html": [ "de94fb2cf435de13665e5d7aa0abc0ac2fcc035d", [ null, {} ] ], - "localstorage-basic-partitioned.tentative.sub.html": [ - "7ed49b1e9a0eb5f576a61674332ebb92611561e8", + "localstorage-basic-partitioned.sub.html": [ + "3d5b1e93ce5ef66ea9ef7b76bfb6a6e3a6bafe72", [ null, {} ] ], - "localstorage-cross-origin-iframe.tentative.https.window.js": [ + "localstorage-cross-origin-iframe.https.window.js": [ "39812f27a003757317d566cafbd7d31bfd205199", [ - "webstorage/localstorage-cross-origin-iframe.tentative.https.window.html", + "webstorage/localstorage-cross-origin-iframe.https.window.html", { "script_metadata": [ [ @@ -768440,8 +819653,8 @@ {} ] ], - "sessionStorage-basic-partitioned.tentative.sub.html": [ - "30575bfaf1a579a7667ad677718684d181d7187d", + "sessionStorage-basic-partitioned.sub.html": [ + "38525b99a23497a17de34fde6e3aec4a56370594", [ null, {} @@ -768763,7 +819976,7 @@ ] ], "close.https.any.js": [ - "0d8579584fbb21e74595588f663ef21c3b028c63", + "d7271b61cfdfa132e370400162afeea80591698c", [ "webtransport/close.https.any.html", { @@ -768834,7 +820047,274 @@ } ], [ - "webtransport/close.https.any.worker.html", + "webtransport/close.https.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "/common/get-host-info.sub.js" + ], + [ + "script", + "resources/webtransport-test-helpers.sub.js" + ], + [ + "script", + "/common/utils.js" + ] + ] + } + ] + ], + "connect.https.any.js": [ + "93df5fe3f478df382918a49368d1a3ad0c5242aa", + [ + "webtransport/connect.https.any.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "/common/get-host-info.sub.js" + ], + [ + "script", + "resources/webtransport-test-helpers.sub.js" + ] + ] + } + ], + [ + "webtransport/connect.https.any.serviceworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "/common/get-host-info.sub.js" + ], + [ + "script", + "resources/webtransport-test-helpers.sub.js" + ] + ] + } + ], + [ + "webtransport/connect.https.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "/common/get-host-info.sub.js" + ], + [ + "script", + "resources/webtransport-test-helpers.sub.js" + ] + ] + } + ], + [ + "webtransport/connect.https.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "/common/get-host-info.sub.js" + ], + [ + "script", + "resources/webtransport-test-helpers.sub.js" + ] + ] + } + ] + ], + "constructor.https.any.js": [ + "0f39c4993bd99c9fd99b845bbafc01330215b840", + [ + "webtransport/constructor.https.any.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "/common/get-host-info.sub.js" + ], + [ + "script", + "resources/webtransport-test-helpers.sub.js" + ], + [ + "script", + "/common/utils.js" + ] + ] + } + ], + [ + "webtransport/constructor.https.any.serviceworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "/common/get-host-info.sub.js" + ], + [ + "script", + "resources/webtransport-test-helpers.sub.js" + ], + [ + "script", + "/common/utils.js" + ] + ] + } + ], + [ + "webtransport/constructor.https.any.sharedworker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "/common/get-host-info.sub.js" + ], + [ + "script", + "resources/webtransport-test-helpers.sub.js" + ], + [ + "script", + "/common/utils.js" + ] + ] + } + ], + [ + "webtransport/constructor.https.any.worker.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "/common/get-host-info.sub.js" + ], + [ + "script", + "resources/webtransport-test-helpers.sub.js" + ], + [ + "script", + "/common/utils.js" + ] + ] + } + ] + ], + "csp-fail.https.window.js": [ + "f2e49fad99c5407a02b72f2ada4c8c9be703d65f", + [ + "webtransport/csp-fail.https.window.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "/common/get-host-info.sub.js" + ], + [ + "script", + "resources/webtransport-test-helpers.sub.js" + ] + ] + } + ] + ], + "csp-pass.https.window.js": [ + "3c315d078f6cd7e6a2d5b4530fc0b8b42af8cffb", + [ + "webtransport/csp-pass.https.window.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "/common/get-host-info.sub.js" + ], + [ + "script", + "resources/webtransport-test-helpers.sub.js" + ] + ] + } + ] + ], + "datagram-bad-chunk.https.any.js": [ + "92601dec9a5a52eb5b0f33d5a430b20de3a72c0b", + [ + "webtransport/datagram-bad-chunk.https.any.html", + { + "script_metadata": [ + [ + "global", + "window,worker" + ], + [ + "script", + "/common/get-host-info.sub.js" + ], + [ + "script", + "resources/webtransport-test-helpers.sub.js" + ], + [ + "script", + "/common/utils.js" + ] + ] + } + ], + [ + "webtransport/datagram-bad-chunk.https.any.serviceworker.html", { "script_metadata": [ [ @@ -768855,12 +820335,9 @@ ] ] } - ] - ], - "connect.https.any.js": [ - "93df5fe3f478df382918a49368d1a3ad0c5242aa", + ], [ - "webtransport/connect.https.any.html", + "webtransport/datagram-bad-chunk.https.any.sharedworker.html", { "script_metadata": [ [ @@ -768874,12 +820351,16 @@ [ "script", "resources/webtransport-test-helpers.sub.js" + ], + [ + "script", + "/common/utils.js" ] ] } ], [ - "webtransport/connect.https.any.serviceworker.html", + "webtransport/datagram-bad-chunk.https.any.worker.html", { "script_metadata": [ [ @@ -768893,12 +820374,26 @@ [ "script", "resources/webtransport-test-helpers.sub.js" + ], + [ + "script", + "/common/utils.js" ] ] } - ], + ] + ], + "datagram-cancel-crash.https.window.js": [ + "fae613e2138cc6cf1437024a9f32d155fd053793", [ - "webtransport/connect.https.any.sharedworker.html", + "webtransport/datagram-cancel-crash.https.window.html", + {} + ] + ], + "datagrams.https.any.js": [ + "d5b8e3bbda158707bb5273628ec1abea7206d1ac", + [ + "webtransport/datagrams.https.any.html", { "script_metadata": [ [ @@ -768917,7 +820412,7 @@ } ], [ - "webtransport/connect.https.any.worker.html", + "webtransport/datagrams.https.any.serviceworker.html", { "script_metadata": [ [ @@ -768934,12 +820429,9 @@ ] ] } - ] - ], - "constructor.https.any.js": [ - "0f39c4993bd99c9fd99b845bbafc01330215b840", + ], [ - "webtransport/constructor.https.any.html", + "webtransport/datagrams.https.any.sharedworker.html", { "script_metadata": [ [ @@ -768953,16 +820445,12 @@ [ "script", "resources/webtransport-test-helpers.sub.js" - ], - [ - "script", - "/common/utils.js" ] ] } ], [ - "webtransport/constructor.https.any.serviceworker.html", + "webtransport/datagrams.https.any.worker.html", { "script_metadata": [ [ @@ -768976,16 +820464,15 @@ [ "script", "resources/webtransport-test-helpers.sub.js" - ], - [ - "script", - "/common/utils.js" ] ] } - ], + ] + ], + "echo-large-bidirectional-streams.https.any.js": [ + "3f46530327eea602c781a60a524b8c5cf5094e87", [ - "webtransport/constructor.https.any.sharedworker.html", + "webtransport/echo-large-bidirectional-streams.https.any.html", { "script_metadata": [ [ @@ -768999,16 +820486,12 @@ [ "script", "resources/webtransport-test-helpers.sub.js" - ], - [ - "script", - "/common/utils.js" ] ] } ], [ - "webtransport/constructor.https.any.worker.html", + "webtransport/echo-large-bidirectional-streams.https.any.serviceworker.html", { "script_metadata": [ [ @@ -769022,19 +820505,12 @@ [ "script", "resources/webtransport-test-helpers.sub.js" - ], - [ - "script", - "/common/utils.js" ] ] } - ] - ], - "csp-fail.https.window.js": [ - "f2e49fad99c5407a02b72f2ada4c8c9be703d65f", + ], [ - "webtransport/csp-fail.https.window.html", + "webtransport/echo-large-bidirectional-streams.https.any.sharedworker.html", { "script_metadata": [ [ @@ -769051,12 +820527,9 @@ ] ] } - ] - ], - "csp-pass.https.window.js": [ - "3c315d078f6cd7e6a2d5b4530fc0b8b42af8cffb", + ], [ - "webtransport/csp-pass.https.window.html", + "webtransport/echo-large-bidirectional-streams.https.any.worker.html", { "script_metadata": [ [ @@ -769075,17 +820548,10 @@ } ] ], - "datagram-cancel-crash.https.window.js": [ - "fae613e2138cc6cf1437024a9f32d155fd053793", - [ - "webtransport/datagram-cancel-crash.https.window.html", - {} - ] - ], - "datagrams.https.any.js": [ - "d5b8e3bbda158707bb5273628ec1abea7206d1ac", + "idlharness.https.any.js": [ + "248bc41abe5565408056ba4bddaac29ebb6f5a9b", [ - "webtransport/datagrams.https.any.html", + "webtransport/idlharness.https.any.html", { "script_metadata": [ [ @@ -769094,17 +820560,17 @@ ], [ "script", - "/common/get-host-info.sub.js" + "/resources/WebIDLParser.js" ], [ "script", - "resources/webtransport-test-helpers.sub.js" + "/resources/idlharness.js" ] ] } ], [ - "webtransport/datagrams.https.any.serviceworker.html", + "webtransport/idlharness.https.any.serviceworker.html", { "script_metadata": [ [ @@ -769113,17 +820579,17 @@ ], [ "script", - "/common/get-host-info.sub.js" + "/resources/WebIDLParser.js" ], [ "script", - "resources/webtransport-test-helpers.sub.js" + "/resources/idlharness.js" ] ] } ], [ - "webtransport/datagrams.https.any.sharedworker.html", + "webtransport/idlharness.https.any.sharedworker.html", { "script_metadata": [ [ @@ -769132,17 +820598,17 @@ ], [ "script", - "/common/get-host-info.sub.js" + "/resources/WebIDLParser.js" ], [ "script", - "resources/webtransport-test-helpers.sub.js" + "/resources/idlharness.js" ] ] } ], [ - "webtransport/datagrams.https.any.worker.html", + "webtransport/idlharness.https.any.worker.html", { "script_metadata": [ [ @@ -769151,20 +820617,27 @@ ], [ "script", - "/common/get-host-info.sub.js" + "/resources/WebIDLParser.js" ], [ "script", - "resources/webtransport-test-helpers.sub.js" + "/resources/idlharness.js" ] ] } ] ], - "echo-large-bidirectional-streams.https.any.js": [ - "3f46530327eea602c781a60a524b8c5cf5094e87", + "in-removed-iframe.https.html": [ + "76204ac6a118404a595ec138c000ea32e73120aa", [ - "webtransport/echo-large-bidirectional-streams.https.any.html", + null, + {} + ] + ], + "sendorder.https.any.js": [ + "96944fb39b39d4d9e25b1c82a5b1b966fbb193ff", + [ + "webtransport/sendorder.https.any.html", { "script_metadata": [ [ @@ -769178,12 +820651,16 @@ [ "script", "resources/webtransport-test-helpers.sub.js" + ], + [ + "script", + "/common/utils.js" ] ] } ], [ - "webtransport/echo-large-bidirectional-streams.https.any.serviceworker.html", + "webtransport/sendorder.https.any.serviceworker.html", { "script_metadata": [ [ @@ -769197,12 +820674,16 @@ [ "script", "resources/webtransport-test-helpers.sub.js" + ], + [ + "script", + "/common/utils.js" ] ] } ], [ - "webtransport/echo-large-bidirectional-streams.https.any.sharedworker.html", + "webtransport/sendorder.https.any.sharedworker.html", { "script_metadata": [ [ @@ -769216,12 +820697,16 @@ [ "script", "resources/webtransport-test-helpers.sub.js" + ], + [ + "script", + "/common/utils.js" ] ] } ], [ - "webtransport/echo-large-bidirectional-streams.https.any.worker.html", + "webtransport/sendorder.https.any.worker.html", { "script_metadata": [ [ @@ -769235,15 +820720,19 @@ [ "script", "resources/webtransport-test-helpers.sub.js" + ], + [ + "script", + "/common/utils.js" ] ] } ] ], - "idlharness.https.any.js": [ - "248bc41abe5565408056ba4bddaac29ebb6f5a9b", + "sendstream-bad-chunk.https.any.js": [ + "013390879bd35ee637e58e6157265c4738b72aa8", [ - "webtransport/idlharness.https.any.html", + "webtransport/sendstream-bad-chunk.https.any.html", { "script_metadata": [ [ @@ -769252,17 +820741,21 @@ ], [ "script", - "/resources/WebIDLParser.js" + "/common/get-host-info.sub.js" ], [ "script", - "/resources/idlharness.js" + "resources/webtransport-test-helpers.sub.js" + ], + [ + "script", + "/common/utils.js" ] ] } ], [ - "webtransport/idlharness.https.any.serviceworker.html", + "webtransport/sendstream-bad-chunk.https.any.serviceworker.html", { "script_metadata": [ [ @@ -769271,17 +820764,21 @@ ], [ "script", - "/resources/WebIDLParser.js" + "/common/get-host-info.sub.js" ], [ "script", - "/resources/idlharness.js" + "resources/webtransport-test-helpers.sub.js" + ], + [ + "script", + "/common/utils.js" ] ] } ], [ - "webtransport/idlharness.https.any.sharedworker.html", + "webtransport/sendstream-bad-chunk.https.any.sharedworker.html", { "script_metadata": [ [ @@ -769290,17 +820787,21 @@ ], [ "script", - "/resources/WebIDLParser.js" + "/common/get-host-info.sub.js" ], [ "script", - "/resources/idlharness.js" + "resources/webtransport-test-helpers.sub.js" + ], + [ + "script", + "/common/utils.js" ] ] } ], [ - "webtransport/idlharness.https.any.worker.html", + "webtransport/sendstream-bad-chunk.https.any.worker.html", { "script_metadata": [ [ @@ -769309,27 +820810,24 @@ ], [ "script", - "/resources/WebIDLParser.js" + "/common/get-host-info.sub.js" ], [ "script", - "/resources/idlharness.js" + "resources/webtransport-test-helpers.sub.js" + ], + [ + "script", + "/common/utils.js" ] ] } ] ], - "in-removed-iframe.https.html": [ - "76204ac6a118404a595ec138c000ea32e73120aa", - [ - null, - {} - ] - ], - "sendorder.https.any.js": [ - "96944fb39b39d4d9e25b1c82a5b1b966fbb193ff", + "server-certificate-hashes.https.any.js": [ + "01efab1191b70398884e4cc5ac6ef0fc45e597b4", [ - "webtransport/sendorder.https.any.html", + "webtransport/server-certificate-hashes.https.any.html", { "script_metadata": [ [ @@ -769343,16 +820841,12 @@ [ "script", "resources/webtransport-test-helpers.sub.js" - ], - [ - "script", - "/common/utils.js" ] ] } ], [ - "webtransport/sendorder.https.any.serviceworker.html", + "webtransport/server-certificate-hashes.https.any.serviceworker.html", { "script_metadata": [ [ @@ -769366,16 +820860,12 @@ [ "script", "resources/webtransport-test-helpers.sub.js" - ], - [ - "script", - "/common/utils.js" ] ] } ], [ - "webtransport/sendorder.https.any.sharedworker.html", + "webtransport/server-certificate-hashes.https.any.sharedworker.html", { "script_metadata": [ [ @@ -769389,16 +820879,12 @@ [ "script", "resources/webtransport-test-helpers.sub.js" - ], - [ - "script", - "/common/utils.js" ] ] } ], [ - "webtransport/sendorder.https.any.worker.html", + "webtransport/server-certificate-hashes.https.any.worker.html", { "script_metadata": [ [ @@ -769412,19 +820898,15 @@ [ "script", "resources/webtransport-test-helpers.sub.js" - ], - [ - "script", - "/common/utils.js" ] ] } ] ], - "server-certificate-hashes.https.any.js": [ - "01efab1191b70398884e4cc5ac6ef0fc45e597b4", + "stats.https.any.js": [ + "49015e896f535e6f13ac29fad294fdb7b1ecf0e8", [ - "webtransport/server-certificate-hashes.https.any.html", + "webtransport/stats.https.any.html", { "script_metadata": [ [ @@ -769443,7 +820925,7 @@ } ], [ - "webtransport/server-certificate-hashes.https.any.serviceworker.html", + "webtransport/stats.https.any.serviceworker.html", { "script_metadata": [ [ @@ -769462,7 +820944,7 @@ } ], [ - "webtransport/server-certificate-hashes.https.any.sharedworker.html", + "webtransport/stats.https.any.sharedworker.html", { "script_metadata": [ [ @@ -769481,7 +820963,7 @@ } ], [ - "webtransport/server-certificate-hashes.https.any.worker.html", + "webtransport/stats.https.any.worker.html", { "script_metadata": [ [ @@ -769812,7 +821294,7 @@ ] ], "sandboxed_iframe.https.window.js": [ - "b63f4094803239fd34f3609be5035a1e8e017670", + "0311db8849186ee2ae553c9e1a2247e3fa948b6a", [ "webusb/requestDevice/sandboxed_iframe.https.window.html", {} @@ -770144,7 +821626,7 @@ ] ], "usbDevice.https.any.js": [ - "804af2afb9db3a0d5fafbeb26aed64f89badb1b3", + "a716e847c415b90e3904cb5d4f60c570bd856c7c", [ "webusb/usbDevice.https.any.html", { @@ -770484,7 +821966,7 @@ ] ], "region.html": [ - "ae51c5f6039c70b15b0be10a94491a42bd2c4946", + "8196858bc56786cf7960149feac62d2c417e31d9", [ null, {} @@ -770649,7 +822131,7 @@ ] ], "tree-building.html": [ - "6cd617decef98394beb152c6a1ebf862d6b40957", + "06bc8b9d62d56e7efdd3cf408404b4ad6b1b2a4e", [ null, {} @@ -771115,6 +822597,13 @@ {} ] ], + "depth_sensing_preferences.https.html": [ + "f6392016d40294552481ee36a43ad7f7b5d0161b", + [ + null, + {} + ] + ], "gpu": { "depth_sensing_gpu_dataUnavailable.https.html": [ "018edf7693452d69753758dc0db8e25a36d8615c", @@ -771490,7 +822979,7 @@ ] ], "render_state_update.https.html": [ - "3801a42947a792cc2e5b625dd7fc1efa9ac8da35", + "d335f0fb694c269f640ac9a752c3dbf39774990b", [ null, {} @@ -771531,13 +823020,6 @@ {} ] ], - "webxr-supported-by-feature-policy.html": [ - "2843849a34a818a1a7abd73ea873917a1739988d", - [ - null, - {} - ] - ], "webxr_availability.http.sub.html": [ "515b2ad1a8d015120032ea56c473922a2af73e85", [ @@ -772039,16 +823521,6 @@ } ] ], - "multi-screen-window-open-fullscreen.tentative.https.html": [ - "008c53d4e749c6550b1824c69bf1467f7fe759c7", - [ - null, - { - "testdriver": true, - "timeout": "long" - } - ] - ], "multi-screen-window-open.tentative.https.html": [ "708e571c27f950ed414d5e5ea9981bfdec93880a", [ @@ -772231,6 +823703,13 @@ } ] ], + "Worker-creation-happens-in-parallel.https.html": [ + "887d95f3df68589ce8fc3e1c9cc1e1b0755ed15e", + [ + null, + {} + ] + ], "Worker-custom-event.any.js": [ "d7e983aaddc59dcd05eeadb75ea5ac30cf0a6e28", [ @@ -772327,6 +823806,13 @@ {} ] ], + "Worker-postMessage-happens-in-parallel.https.html": [ + "3b8683f79dcd4a1189768a9daa1ea1b24008c337", + [ + null, + {} + ] + ], "Worker-replace-event-handler.any.js": [ "ff7c764f2bdd51ca83de1f6048a9fe00c29047d6", [ @@ -772547,10 +824033,10 @@ {} ] ], - "WorkerGlobalScope_requestAnimationFrame.tentative.worker.js": [ + "WorkerGlobalScope_requestAnimationFrame.worker.js": [ "e1b0b9f15a696237a135696b0f010067a77d4bea", [ - "workers/WorkerGlobalScope_requestAnimationFrame.tentative.worker.html", + "workers/WorkerGlobalScope_requestAnimationFrame.worker.html", {} ] ], @@ -772788,7 +824274,7 @@ ] ], "WorkerNavigator_userAgentData.https.html": [ - "8c22d8f8672b36ffee651ef594e13f17f8fc4175", + "a46c530cefe3ef1ade047b0016e184060b8c0666", [ null, {} @@ -774495,6 +825981,140 @@ {} ] ], + "same-site-cookies": { + "first-party.all.tentative.https.window.js": [ + "ac6030e654031d33bdf9c47f7b6d848fb514248b", + [ + "workers/same-site-cookies/first-party.all.tentative.https.window.html", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ], + [ + "script", + "/workers/same-site-cookies/resources/util.js" + ] + ] + } + ] + ], + "first-party.default.tentative.https.window.js": [ + "2c64ff628f5b86e09005c2b8a5b4f90d5af2bffd", + [ + "workers/same-site-cookies/first-party.default.tentative.https.window.html", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ], + [ + "script", + "/workers/same-site-cookies/resources/util.js" + ] + ] + } + ] + ], + "first-party.none.tentative.https.window.js": [ + "76a8b1d8bcb50e97c633c1ab096f81425e463d08", + [ + "workers/same-site-cookies/first-party.none.tentative.https.window.html", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ], + [ + "script", + "/workers/same-site-cookies/resources/util.js" + ] + ] + } + ] + ], + "third-party.all.tentative.sub.https.window.js": [ + "21b53819d93f7a1b0cf1db4f13e32316150cec6d", + [ + "workers/same-site-cookies/third-party.all.tentative.sub.https.window.html", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ], + [ + "script", + "/workers/same-site-cookies/resources/util.js" + ] + ] + } + ] + ], + "third-party.default.tentative.sub.https.window.js": [ + "bf499c1992c91f0401c3f38067eb3e6208147bfe", + [ + "workers/same-site-cookies/third-party.default.tentative.sub.https.window.html", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ], + [ + "script", + "/workers/same-site-cookies/resources/util.js" + ] + ] + } + ] + ], + "third-party.none.tentative.sub.https.window.js": [ + "f00e585f77839274c51b8099b623095c7932bfd1", + [ + "workers/same-site-cookies/third-party.none.tentative.sub.https.window.html", + { + "script_metadata": [ + [ + "script", + "/resources/testdriver.js" + ], + [ + "script", + "/resources/testdriver-vendor.js" + ], + [ + "script", + "/workers/same-site-cookies/resources/util.js" + ] + ] + } + ] + ] + }, "semantics": { "encodings": { "001.html": [ @@ -774535,7 +826155,7 @@ }, "interface-objects": { "001.worker.js": [ - "873e8701bb6b2cac49ae9b1e377239d22c014d83", + "a95da5638f52a87d4818cfb9542eac9e3995aa5a", [ "workers/semantics/interface-objects/001.worker.html", {} @@ -774549,7 +826169,7 @@ ] ], "003.any.js": [ - "974756c5080c8110110cae89bc7ff1d541036fc8", + "9dcc024ab7b38f5821243695c8087d9bb74f4461", [ "workers/semantics/interface-objects/003.any.sharedworker.html", { @@ -774828,7 +826448,7 @@ ] ], "shared-worker-options-mismatch.html": [ - "604f69a43671137edbd2672fb417d1b342d86b51", + "76beda937fbd12e45c41e7c44fde2c769cb7b55f", [ null, {} @@ -775079,7 +826699,7 @@ ] ], "invalid.html": [ - "26b2905e4d44c2534af70930e2ea24876ed0f556", + "6c0ed90f735c59fe7c832a634779eab56914437c", [ null, {} @@ -778016,7 +829636,7 @@ ] ], "send-data-sharedarraybuffer.any.js": [ - "79774c3d30b4c15787cba224fce89b72d74e8cb6", + "a87160c56b1dc5365aa76f4e6e63eef6ce7aa8ad", [ "xhr/send-data-sharedarraybuffer.any.html", { @@ -780225,13 +831845,6 @@ {} ] ], - "border-left-width-078.xht": [ - "4b79c7e7a3fcfce8d44f639d94f10073773ca00b", - [ - null, - {} - ] - ], "border-left-width-092.xht": [ "96fa1c30622e0725d5b4942b0e66d997f41840e8", [ @@ -781568,13 +833181,6 @@ ] }, "cascade-import": { - "cascade-import-001.xht": [ - "6068c6ab7ecb79310e666b0e3f29eb1d5dadce88", - [ - null, - {} - ] - ], "cascade-import-002.xht": [ "14e7156c8399fc58ee74e71ed0d5e8c7e8e04f29", [ @@ -783249,13 +834855,6 @@ {} ] ], - "font-size-119.xht": [ - "8141516c7d7cb1e88e2df20c736151b36b06492e", - [ - null, - {} - ] - ], "font-size-applies-to-001.xht": [ "e77b744c6cc8c75ef23c19f8391f391e269b5711", [ @@ -785053,13 +836652,6 @@ {} ] ], - "vertical-align-baseline-006.xht": [ - "7d142e1794ed55328cbe56abc62d9a137bc6b027", - [ - null, - {} - ] - ], "vertical-align-baseline-006a.xht": [ "084110c370e08d65e761e9e109a9ddfd62732b91", [ @@ -785067,13 +836659,6 @@ {} ] ], - "vertical-align-baseline-010.xht": [ - "1e5a0df855c9941b7056f3ba1b0138ed35d55d43", - [ - null, - {} - ] - ], "vertical-align-boxes-001.xht": [ "3534f496514ec6bc68f7877f63b8ebab5c9c6e29", [ @@ -785286,20 +836871,6 @@ {} ] ], - "counter-increment-auto-reset-001.xht": [ - "e2951607445d2a43293a491cf87d8e0eeb470af8", - [ - null, - {} - ] - ], - "counter-increment-display-001.xht": [ - "e4d8630fb30cc27da2ab2d1dfcea2e42f389a778", - [ - null, - {} - ] - ], "counter-increment-display-002.xht": [ "730964a23af54fa87eebf2fc666265c770ec6e94", [ @@ -785328,13 +836899,6 @@ {} ] ], - "counter-increment-not-generated-001.xht": [ - "641eafd7191dea9e8a1be7f89a5f9051667280e0", - [ - null, - {} - ] - ], "counter-increment-visibility-002.xht": [ "e4d7af57ed06ce27c5102659ee73071a2d7a6c9f", [ @@ -785573,13 +837137,6 @@ {} ] ], - "counter-reset-display-001.xht": [ - "a6c1b389f15cb4d08c6023e7907c4ace5dc11f2d", - [ - null, - {} - ] - ], "counter-reset-increment-001.xht": [ "865e56570a6126a6dca45814bf841d500af84995", [ @@ -785594,13 +837151,6 @@ {} ] ], - "counter-reset-not-generated-001.xht": [ - "1aa6e9a4c3dd728f289ab8c31feaff185f9140ad", - [ - null, - {} - ] - ], "counter-reset-sibling-001.xht": [ "94bafd766b9d5c9780b5a670cbb99ff90a62585e", [ @@ -786268,13 +837818,6 @@ {} ] ], - "margin-collapse-012.xht": [ - "1111ea8828533d4378250ad7dcd76b84ff45b492", - [ - null, - {} - ] - ], "margin-collapse-029.xht": [ "0eea0036f32e4460a044895d515eba1f01800de2", [ @@ -786478,13 +838021,6 @@ {} ] ], - "margin-collapse-clear-001.xht": [ - "64bb404982646a49a4bb5f2f972a2e381910f2d0", - [ - null, - {} - ] - ], "margin-collapse-clear-004.xht": [ "5be63f6100487c7e1c79e7cf6ecd7b9695ab6b23", [ @@ -786499,13 +838035,6 @@ {} ] ], - "margin-collapse-clear-007.xht": [ - "4c320ac1876f5b3c0f3ae36266c9384a33792156", - [ - null, - {} - ] - ], "margin-collapse-clear-010.xht": [ "19cc99be49cae97dfdad96f69b654b4680feae14", [ @@ -786513,13 +838042,6 @@ {} ] ], - "margin-left-applies-to-008.xht": [ - "2121019ae84d7cc23db9b2f7614384341c570448", - [ - null, - {} - ] - ], "margin-left-applies-to-010.xht": [ "beea15e4d4d5c442c8c47aeae2666252084d8eed", [ @@ -786569,20 +838091,6 @@ {} ] ], - "padding-applies-to-016.xht": [ - "7023f79cd11090fc74db126ff187b63882f69938", - [ - null, - {} - ] - ], - "padding-applies-to-017.xht": [ - "8ff267c081cea05c6e569b45876b7911174d41b7", - [ - null, - {} - ] - ], "padding-bottom-036.xht": [ "ab6935022dee9b1778e57fac0a801aedcb457fd6", [ @@ -786781,13 +838289,6 @@ {} ] ], - "block-non-replaced-width-002.xht": [ - "cf14e37ab7ef4e38a19d97c7965277729b2e76f1", - [ - null, - {} - ] - ], "block-non-replaced-width-008.xht": [ "9843753c5990c5e084f1293a5ba8479c592be9e1", [ @@ -787061,13 +838562,6 @@ {} ] ], - "max-width-014.xht": [ - "83c75c6528d1d9e279c77c735d4c7f10828cf0a9", - [ - null, - {} - ] - ], "max-width-108.xht": [ "f9f71319c1a2dc325cd394cf1e5e7aa7905ccedb", [ @@ -787145,13 +838639,6 @@ {} ] ], - "min-width-014.xht": [ - "538b701cd650a2190c52bae23ce7972ffb5ae331", - [ - null, - {} - ] - ], "min-width-applies-to-010.xht": [ "7d01d9c49379ea79f6e7a9b87394e1c604e5e90e", [ @@ -787187,13 +838674,6 @@ {} ] ], - "width-014.xht": [ - "c0094c463b5942428035270c0914bf0a12a739e2", - [ - null, - {} - ] - ], "width-applies-to-010.xht": [ "acd3bf2ba4d7e0a466a39487129741df65b6176e", [ @@ -787745,20 +839225,6 @@ {} ] ], - "first-line-pseudo-007.xht": [ - "6cdacc605824ff60183ada151446ecd16f187562", - [ - null, - {} - ] - ], - "first-line-pseudo-008.xht": [ - "19b867f7e12d1c3b2b26aad50baf8f2a7303aeda", - [ - null, - {} - ] - ], "first-line-pseudo-010.xht": [ "f07bb02c0bc250850c80308562010fe40a63753e", [ @@ -787801,13 +839267,6 @@ {} ] ], - "first-line-selector-004.xht": [ - "b19368d4ba7b3aa6ce035c1747533a29f08965e6", - [ - null, - {} - ] - ], "first-line-selector-006.xht": [ "192e0678e4a97dd5440cf7b96105d98e538cecdb", [ @@ -787880,55 +839339,6 @@ {} ] ], - "character-encoding-031.xht": [ - "3e8bac6a3fe6036034e1ab1d73ad11538885e679", - [ - null, - {} - ] - ], - "character-encoding-032.xht": [ - "04c6cf4d1f80137ff65c0f502e357fea5ab5beda", - [ - null, - {} - ] - ], - "character-encoding-033.xht": [ - "8042c899f37f1a0d14152bd26eaa57f233dd43a4", - [ - null, - {} - ] - ], - "character-encoding-034.xht": [ - "ab6ded6bd3ec74a769defd2c4dccd010b6b0039b", - [ - null, - {} - ] - ], - "character-encoding-035.xht": [ - "12896b0f75650c12b42d58007c9fc99b7ffc8444", - [ - null, - {} - ] - ], - "character-encoding-036.xht": [ - "2a9ab495c20d68519396cd46708364924cee6970", - [ - null, - {} - ] - ], - "character-encoding-037.xht": [ - "02c28caf1f5852f867e61a8522690f2122e66163", - [ - null, - {} - ] - ], "character-encoding-038.xht": [ "880ff589552a36713566080b393dbb12c642f6a9", [ @@ -794284,510 +845694,6 @@ {} ] ], - "outline-color-003.xht": [ - "fc9fac98b6a2fcd40a00aa35e4f9cc6666178dfc", - [ - null, - {} - ] - ], - "outline-color-004.xht": [ - "08ac66c1238e4de846057585c2bd91c3dfdd7b5c", - [ - null, - {} - ] - ], - "outline-color-005.xht": [ - "e0a087b281111d665d60d328d83dbb7ab29c251a", - [ - null, - {} - ] - ], - "outline-color-006.xht": [ - "aa50cd495f45b5d5565ecfa5661dd66fb6403292", - [ - null, - {} - ] - ], - "outline-color-009.xht": [ - "72be4c5e3fb96e47f7b64095c4755a4bbd188858", - [ - null, - {} - ] - ], - "outline-color-010.xht": [ - "394d4646150f9a28d1b0156826c0ea096f2609e3", - [ - null, - {} - ] - ], - "outline-color-011.xht": [ - "9b1035a4d21c2221ea9c1bded84dbf5c3359d24e", - [ - null, - {} - ] - ], - "outline-color-012.xht": [ - "75f7ae9877b21058b6a4074872b52eb3e9501cef", - [ - null, - {} - ] - ], - "outline-color-014.xht": [ - "52dbe6cf8e4eaa405575b773d4a3b9bae07dcbc3", - [ - null, - {} - ] - ], - "outline-color-015.xht": [ - "03b17219f0e82d22b7990b91323bf3c9bb3976d7", - [ - null, - {} - ] - ], - "outline-color-016.xht": [ - "9b7d9e3fccc6015a2d750208a5ce78c41b23fd90", - [ - null, - {} - ] - ], - "outline-color-017.xht": [ - "ec30fb6ece768397c287f7c0495a226807bd135a", - [ - null, - {} - ] - ], - "outline-color-019.xht": [ - "10beda0520e5f47c789cb8e8a5aaab6cf47e93ba", - [ - null, - {} - ] - ], - "outline-color-020.xht": [ - "4c52916dba4405bf2c33a8bed616395dbbbffb4b", - [ - null, - {} - ] - ], - "outline-color-021.xht": [ - "1ed0b6f3f50f2965c9c1ddd57acd8ee617f7af0c", - [ - null, - {} - ] - ], - "outline-color-022.xht": [ - "0aceeb2797baad64fc1bfd58278a37b13a1e2097", - [ - null, - {} - ] - ], - "outline-color-026.xht": [ - "98585d11e823d150cdd0fac07e969c168f90b2b5", - [ - null, - {} - ] - ], - "outline-color-027.xht": [ - "0dd858235ca910d9afed70691110dd2b5e04152e", - [ - null, - {} - ] - ], - "outline-color-028.xht": [ - "3c2a2f7c4d83b3a2503b9c80f530542ff8b5eaaf", - [ - null, - {} - ] - ], - "outline-color-029.xht": [ - "6d283099da91ac7a2305dea2ee328f3c6798c232", - [ - null, - {} - ] - ], - "outline-color-032.xht": [ - "6e2683eb1e4976b58dd0f09d6ddb781e8eb4f747", - [ - null, - {} - ] - ], - "outline-color-033.xht": [ - "f215bb3012b2e61f4a98b01bf1cf399db58c31f0", - [ - null, - {} - ] - ], - "outline-color-034.xht": [ - "e36154d1bd26812a275cc058b99551eca4a6ade0", - [ - null, - {} - ] - ], - "outline-color-035.xht": [ - "bf2fd9b7f6199f6c2c7333c23d4a8521dc115aec", - [ - null, - {} - ] - ], - "outline-color-037.xht": [ - "94558c796a237e051ed51c323e4e9e552c7850b7", - [ - null, - {} - ] - ], - "outline-color-038.xht": [ - "cd9d295bbb2a7208433244e265043b18ea897daf", - [ - null, - {} - ] - ], - "outline-color-039.xht": [ - "8eec350cbf0926991260a6fab2d9ac69c5c27a3e", - [ - null, - {} - ] - ], - "outline-color-040.xht": [ - "e1411591abe29331d89b71479f0d6eceae053122", - [ - null, - {} - ] - ], - "outline-color-042.xht": [ - "ce23bf4437e5789693681857bf7f88d4afe8b2e1", - [ - null, - {} - ] - ], - "outline-color-043.xht": [ - "285ffff0df1b1e7f49cd02c790eec571811cba56", - [ - null, - {} - ] - ], - "outline-color-044.xht": [ - "73a5edb87594eb5e7f019d40e22e38c326d895e0", - [ - null, - {} - ] - ], - "outline-color-045.xht": [ - "0766a5633cbe596ed9e599589395586a40e562df", - [ - null, - {} - ] - ], - "outline-color-055.xht": [ - "fc8e03955d889b23d187e6e0a35378b9bea34be3", - [ - null, - {} - ] - ], - "outline-color-056.xht": [ - "072878eebacdb495dbc0ff4a08f1d12b6b8839b1", - [ - null, - {} - ] - ], - "outline-color-057.xht": [ - "dbf9b7e14688ef8bce014d56aef847d4ff22cf2d", - [ - null, - {} - ] - ], - "outline-color-060.xht": [ - "9af35b1f307efac231b6c0e466805836166a5f4e", - [ - null, - {} - ] - ], - "outline-color-063.xht": [ - "4b4a59a338ab4e392b36db904bb6510a895660e6", - [ - null, - {} - ] - ], - "outline-color-064.xht": [ - "1c79116778469a3f82256a2272b6cc552e525b6a", - [ - null, - {} - ] - ], - "outline-color-065.xht": [ - "638fc551615ff6b0dbbb46de3940b0df6517a6f8", - [ - null, - {} - ] - ], - "outline-color-066.xht": [ - "3643ac65bcfaf58de619c76bec2d18006f9efcfc", - [ - null, - {} - ] - ], - "outline-color-067.xht": [ - "0e6c5be02a6c325556cdb1aceebe51054d74610a", - [ - null, - {} - ] - ], - "outline-color-068.xht": [ - "89b77d12cae552f21cd81cddad3f6c8525fce33d", - [ - null, - {} - ] - ], - "outline-color-076.xht": [ - "909c50756ecd061c4ebeca27d4278f22fb45cc23", - [ - null, - {} - ] - ], - "outline-color-077.xht": [ - "1e34e4e605db5fab67ef233ab433a1b81af0507e", - [ - null, - {} - ] - ], - "outline-color-078.xht": [ - "dbe54938f6ff9ff39e582059cdc0c23018f2af17", - [ - null, - {} - ] - ], - "outline-color-080.xht": [ - "1c3594327943dfd9a117f4aea3d6dfc770134199", - [ - null, - {} - ] - ], - "outline-color-083.xht": [ - "63a0a2276a5e7f0136e1a8ac3f973c9b4378391e", - [ - null, - {} - ] - ], - "outline-color-084.xht": [ - "9388d576ba08d6f3cae252918d4a8603f3ae24a5", - [ - null, - {} - ] - ], - "outline-color-085.xht": [ - "b3fe617557f225a64aeb6839ebe33a7e96bbd925", - [ - null, - {} - ] - ], - "outline-color-086.xht": [ - "3e02c58ece075c5a7b5725aed6e1472b45eb1ac9", - [ - null, - {} - ] - ], - "outline-color-087.xht": [ - "4e50e0c1124039bb61257504699c09289fe01ecc", - [ - null, - {} - ] - ], - "outline-color-088.xht": [ - "081c024fb2763f2312b70bf881e33ddb20ac7060", - [ - null, - {} - ] - ], - "outline-color-096.xht": [ - "47acaac4823e85661fae2099b0ba3aa9dd757311", - [ - null, - {} - ] - ], - "outline-color-097.xht": [ - "22695edc19bace5b2ebdaef9064d737704bdfedf", - [ - null, - {} - ] - ], - "outline-color-098.xht": [ - "4b64681777c3c5ca3451412d397c80ff3fc5f407", - [ - null, - {} - ] - ], - "outline-color-100.xht": [ - "e49ccf9bf6723372565aae617f0a2cfa7c2b8e63", - [ - null, - {} - ] - ], - "outline-color-103.xht": [ - "c7db3c5fdf025831dd9016c6ec28b3ab46d312d8", - [ - null, - {} - ] - ], - "outline-color-104.xht": [ - "1c233b9efb5e74aa86e64795500b7bd676d34425", - [ - null, - {} - ] - ], - "outline-color-105.xht": [ - "be5647977bfc6ba159b6898c45c19bca062a4baf", - [ - null, - {} - ] - ], - "outline-color-106.xht": [ - "53f8612f5ed411f1f05429883d97a9bc55ed81d8", - [ - null, - {} - ] - ], - "outline-color-107.xht": [ - "ec2baec1cea147b3d2261ab0b8f6fc03e727d0b8", - [ - null, - {} - ] - ], - "outline-color-108.xht": [ - "c594dcf86c0adaf568cdfea0f28e490adb253a72", - [ - null, - {} - ] - ], - "outline-color-116.xht": [ - "4a6804be17cd38e9d1d4ee067d707a48cbbd8e3f", - [ - null, - {} - ] - ], - "outline-color-117.xht": [ - "f688c5c593a171886eb2e91e44f31c3fa09a95c4", - [ - null, - {} - ] - ], - "outline-color-118.xht": [ - "87eea213ab299c0acbc0d28a6e0afc98f1ee3235", - [ - null, - {} - ] - ], - "outline-color-120.xht": [ - "f57de8633b6f6281a4e222ebcf91eb375ffe7723", - [ - null, - {} - ] - ], - "outline-color-123.xht": [ - "5714c14a1e1aaa2f6d919c54bea785501f037a55", - [ - null, - {} - ] - ], - "outline-color-124.xht": [ - "c552ae69cc462cb002062226cfe3b32b55377f93", - [ - null, - {} - ] - ], - "outline-color-125.xht": [ - "5be5f3774daedc77ea9bde8ef60cc902d87af842", - [ - null, - {} - ] - ], - "outline-color-126.xht": [ - "88ff60bc176f13fb575f92a291518bd6db92d040", - [ - null, - {} - ] - ], - "outline-color-127.xht": [ - "abca8308d76c698a6a56b70751b55a0cf4db2b51", - [ - null, - {} - ] - ], - "outline-color-128.xht": [ - "de5070a35625bbafd40dc714c56002229de5e8cb", - [ - null, - {} - ] - ], "outline-color-129.xht": [ "4c5148c2620f5a3e3d0c49fceb2f5d87f30ac9c7", [ @@ -794795,111 +845701,6 @@ {} ] ], - "outline-color-131.xht": [ - "45bc6a9afbaebab71b45883754b31e94a851f4ef", - [ - null, - {} - ] - ], - "outline-color-132.xht": [ - "9d48c842886688130c76e3d52f9ddf3123d8e64f", - [ - null, - {} - ] - ], - "outline-color-133.xht": [ - "44f91a3b57774243424bbd5dd8c4177c5374ab01", - [ - null, - {} - ] - ], - "outline-color-134.xht": [ - "55b9e9d1cfd79b767186bb9aaba79eafe3602d2b", - [ - null, - {} - ] - ], - "outline-color-135.xht": [ - "874712372b666d5e9f881c57ba2de451ab9b115b", - [ - null, - {} - ] - ], - "outline-color-136.xht": [ - "4d4cf17e0d44270a97e1aa253d7e8c81756fd3aa", - [ - null, - {} - ] - ], - "outline-color-137.xht": [ - "02fedc25b0f1b58e7f20e2b06761a5933d0bbba2", - [ - null, - {} - ] - ], - "outline-color-138.xht": [ - "afd9d8aa82c3a52bb8e32760b052cee1447e422c", - [ - null, - {} - ] - ], - "outline-color-139.xht": [ - "9fcf203cee5a4b49dbda78b861bc4a95cdd1e10c", - [ - null, - {} - ] - ], - "outline-color-140.xht": [ - "60aa999768b621782b3c9431b51385177a9dd664", - [ - null, - {} - ] - ], - "outline-color-141.xht": [ - "3400c9a3c8dffce9fa8251b7cd3f6dd96756fc9a", - [ - null, - {} - ] - ], - "outline-color-142.xht": [ - "37950f49b026afee5fa69c1c2687f23a9672c118", - [ - null, - {} - ] - ], - "outline-color-143.xht": [ - "88e1a322c3c6b19363d520a3cc88b709e04e60ec", - [ - null, - {} - ] - ], - "outline-color-144.xht": [ - "93b39a25eb70ea8d259149f6b7e019719b7e2380", - [ - null, - {} - ] - ], - "outline-color-145.xht": [ - "f93f849e666278c4090a86f51a9542cd21c4dba8", - [ - null, - {} - ] - ], "outline-color-174.xht": [ "9dc1afb1cb4be61114b88842bb9de3177e6c2efc", [ @@ -798139,6 +848940,148 @@ ] ] }, + "css-overflow": { + "overflow-alignment-block-001.html": [ + "20192eb2f10ab73a4107b3ddb78efed55f4a127c", + [ + null, + {} + ] + ], + "overflow-alignment-block-002.html": [ + "587f7394449fb053c5554f1f5a28b4a559badc90", + [ + null, + {} + ] + ], + "overflow-alignment-flex-col-reverse-001.html": [ + "30cb6c92db74a6aacd675b2e06cc8c29942ff804", + [ + null, + {} + ] + ], + "overflow-alignment-flex-col-reverse-002.html": [ + "a6252391c49ec2fc27f5214322363823329c26a1", + [ + null, + {} + ] + ], + "overflow-alignment-flex-col-reverse-overflow-001.html": [ + "0a98dae690bec44df55734ab0a04d42e1045cf85", + [ + null, + {} + ] + ], + "overflow-alignment-flex-col-reverse-overflow-002.html": [ + "d5c842e4b70116aaaadbc520d2d3031e3a59b2d4", + [ + null, + {} + ] + ], + "overflow-alignment-flex-col-wrap-001.html": [ + "b980b94314c5056f4a33fb98a83144f807cc593c", + [ + null, + {} + ] + ], + "overflow-alignment-flex-col-wrap-002.html": [ + "195a877ccd467c0df08af47005ae7191c3a0c0de", + [ + null, + {} + ] + ], + "overflow-alignment-flex-col-wrap-overflow-001.html": [ + "59815fa0aa93a6d25aa448673eb0965f476b09d9", + [ + null, + {} + ] + ], + "overflow-alignment-flex-col-wrap-overflow-002.html": [ + "cb0ce12b9e9a3032b314e246e0a363e6435d4b37", + [ + null, + {} + ] + ], + "overflow-alignment-flex-row-reverse-001.html": [ + "c41e7ce3e5262c7ce90216160ffd4375d8ee4f87", + [ + null, + {} + ] + ], + "overflow-alignment-flex-row-reverse-002.html": [ + "a032d59e6758b01d049e1a084da8bb145dfb7d1b", + [ + null, + {} + ] + ], + "overflow-alignment-flex-row-reverse-overflow-001.html": [ + "fbc0ef02bf776996f8ab6738ef6eb6ad34e337db", + [ + null, + {} + ] + ], + "overflow-alignment-flex-row-reverse-overflow-002.html": [ + "a1b9f4bae8664769050440d55dd6919c333f94ec", + [ + null, + {} + ] + ], + "overflow-alignment-flex-row-wrap-001.html": [ + "51f02add772c8c0614016994561e304ad41daf74", + [ + null, + {} + ] + ], + "overflow-alignment-flex-row-wrap-002.html": [ + "e5ee089d0c4ffb0342a9dcaf4e74bab64cbe5429", + [ + null, + {} + ] + ], + "overflow-alignment-flex-row-wrap-overflow-001.html": [ + "63f5ef2c8ea3d03e3ba3361f065d088037981d11", + [ + null, + {} + ] + ], + "overflow-alignment-flex-row-wrap-overflow-002.html": [ + "e1d3fb2c7d91ce0c21fe70b8ce9f988c140ba1d9", + [ + null, + {} + ] + ], + "overflow-alignment-grid-001.html": [ + "bf98b62116da30f43e3be503ec90edf06714c794", + [ + null, + {} + ] + ], + "overflow-alignment-grid-002.html": [ + "76d3886d7c6a1213dc15c9e252f20a8557ed9f21", + [ + null, + {} + ] + ] + }, "css-round-display": { "polar-anchor-center-001.html": [ "2af9546a0c916790ed2cb5a7cc5f5f135043a885", @@ -798263,13 +849206,6 @@ ] }, "css-sizing": { - "intrinsic-percent-non-replaced-002.html": [ - "748aa5f8f7149841ea0cd47770a722e9f3d8f934", - [ - null, - {} - ] - ], "replaced-fractional-height-from-aspect-ratio.html": [ "d97c3f133ebec02ce5569e95826ab3237b7559c7", [ @@ -800345,10 +851281,46 @@ "webdriver": { "tests": { "bidi": { + "browser": { + "create_user_context": { + "create_user_context.py": [ + "f495498d0722131b728e1fb2c3fcb96afeb26b67", + [ + null, + {} + ] + ] + }, + "get_user_contexts": { + "get_user_contexts.py": [ + "b0f4d0e47c4fb0937b9645e1f10b57a73235d322", + [ + null, + {} + ] + ] + }, + "remove_user_context": { + "invalid.py": [ + "5e51499a2d4c9a31c74acf9be54082934782f638", + [ + null, + {} + ] + ], + "user_context.py": [ + "49a8397474bb5c9f22a3fde580c17e26c6cd54aa", + [ + null, + {} + ] + ] + } + }, "browsing_context": { "activate": { "activate.py": [ - "0abbbbac38e3477b4998892c5e93c940e319e0d4", + "f6e5b9d27a8a90584c290555b7ba6b8b2192b77c", [ null, {} @@ -800364,14 +851336,14 @@ }, "capture_screenshot": { "capture_screenshot.py": [ - "40497ce6ac7908239ea641b8c75a0a85c34613d7", + "414f5ae2d01ea63afc7b30f7f84515e6d3e554ff", [ null, {} ] ], "clip.py": [ - "8300e962b92c50c019c0afd3347c5c79cdb0c0d6", + "67d4b0d06c431c0afddc989f0b408c5b10813d42", [ null, {} @@ -800406,15 +851378,6 @@ ] ] }, - "classic_interop": { - "window_handle.py": [ - "4f36fba1973cd84e8fe2059741af677f6e6e0594", - [ - null, - {} - ] - ] - }, "close": { "close.py": [ "21bf7411e563c11179abfee8fd740edece1ea277", @@ -800424,7 +851387,14 @@ ] ], "invalid.py": [ - "7c73a83b1325d1f4adc037efe7912b6d6b5e3922", + "2eb8190e13b490b1029aea2c5d9a5e83650df2e8", + [ + null, + {} + ] + ], + "prompt_unload.py": [ + "065e8f3249429b438ebd867c9d9fe03c1a192348", [ null, {} @@ -800433,7 +851403,14 @@ }, "context_created": { "context_created.py": [ - "9b0926c09752a1c4f1a417d1a0ac2ae2e6fe7925", + "1c9683c6b377869b1c2be7363528e40a28a91aec", + [ + null, + {} + ] + ], + "original_opener.py": [ + "18c9483e7ce83389472f7a3bef0617a3ef180083", [ null, {} @@ -800442,7 +851419,14 @@ }, "context_destroyed": { "context_destroyed.py": [ - "0dad8bc21d4eaf8aba1225a1688041792a7f9e1b", + "17f7acf2f9b68911b1c9fb2cf882918edf894a6a", + [ + null, + {} + ] + ], + "original_opener.py": [ + "5c51b0e444ecd126818bca822ebd33498f675f9c", [ null, {} @@ -800458,21 +851442,28 @@ ] ], "invalid.py": [ - "bad840172453ec1b1338be664d31875d57c7d197", + "3f2cc886d0e8ace5476e55102fb141a18b45a055", [ null, {} ] ], "reference_context.py": [ - "ffc95ef41ca4390aa0cc8db4f768929a5da652a0", + "8511495594b40d00ab4a3a90a0788ab0848020af", [ null, {} ] ], "type.py": [ - "55ce7b44282a86f195f874b10b4cab0e58f3cd37", + "17703d60123e28571919cd87d5c90143f4bad7bf", + [ + null, + {} + ] + ], + "user_context.py": [ + "490188c265d461d285772bb6c9c79215b6b5ff6d", [ null, {} @@ -800490,14 +851481,14 @@ }, "fragment_navigated": { "fragment_navigated.py": [ - "a4bd012588d28af69af634b06b288274c63a35ff", + "14fa226056188d33e65e2492a83de1824ee2413c", [ null, {} ] ], "history_api.py": [ - "0af0a71c2b8eb3c398761581767bac18b6beea4e", + "8ae06d28904e06196abf60b9336cb26b598d58a7", [ null, {} @@ -800506,7 +851497,7 @@ }, "get_tree": { "frames.py": [ - "b1936d31d0b7a5e3c27ce1a4193f3f8e3a63811c", + "4fd220ed8fc4426f540bf9eedad9e1d8ac399a05", [ null, {} @@ -800520,14 +851511,21 @@ ] ], "max_depth.py": [ - "ca1d0edfa1b8225c9e603a56e097ec97e4098630", + "b855b8e7eba06b56a63ee2dd4f64b0e88d8a7513", + [ + null, + {} + ] + ], + "original_opener.py": [ + "ceec74933fc3e665642eb2ffc862dd1558f27047", [ null, {} ] ], "root.py": [ - "74d11c600330fb6ce05dee24fa306a8a597f843d", + "40e9f8ac93b81b5c499133db9682798683725131", [ null, {} @@ -800536,7 +851534,7 @@ }, "handle_user_prompt": { "handle_user_prompt.py": [ - "767305405c656cd0fe4bcf4e29c312e002c98bd0", + "9044f220bcc8d242a15b415a76882f102ee9d9dc", [ null, {} @@ -800568,35 +851566,21 @@ ] ], "invalid.py": [ - "ff00de91ed00a33a27904bfd2622bfa3a3484d68", + "52aabca2670e45ae24a05ce49087dcfbf0de4a2d", [ null, {} ] ], "locator.py": [ - "656eaddc1fc40c85050c3e267e45da3e47ed1b54", + "f2782509d93522cdd7ab94ecc774f46d88e30e1f", [ null, {} ] ], "max_node_count.py": [ - "4652026e96fae72c40c1ce87cad9e5ef836b3725", - [ - null, - {} - ] - ], - "ownership.py": [ - "b1830c740a90ef77f0260e3d4dae4e37f6ba0f9d", - [ - null, - {} - ] - ], - "sandbox.py": [ - "efa431bf190aaec7305958a079032e7264932a2b", + "9d9c05260bc0ba096c40cb7d9f3e598f8549c420", [ null, {} @@ -800610,7 +851594,7 @@ ] ], "start_nodes.py": [ - "707d83a337d8ff309e2727475f61e8940207b14b", + "351020af4c2d9f74a3aed55db014808af02ac622", [ null, {} @@ -800633,7 +851617,7 @@ ] ], "error.py": [ - "ba23e77300042ca08878b7887d09e08f747845dd", + "c6c32b88dee99884637e308f9f5e17a3cb1cd480", [ null, {} @@ -800668,7 +851652,7 @@ ] ], "navigate.py": [ - "934fd3554f7dc607e6ad663b34e6a30fb921906d", + "8f2fd4822abc88e614fab629f7879ce95744f55a", [ null, {} @@ -800682,9 +851666,18 @@ ] ] }, + "navigation_failed": { + "navigation_failed.py": [ + "bf72e6e4278adc364f15f1ab3cbe4f6b7ae100f0", + [ + null, + {} + ] + ] + }, "navigation_started": { "navigation_started.py": [ - "af91f0110aa0c3af0610ed46b34bb14ec57ac926", + "bc711814d3aa11b52db1d2f98774650802a17024", [ null, {} @@ -800783,7 +851776,7 @@ ] ], "wait.py": [ - "1024b787f0889865962f91849137eff402dfe38a", + "a9f113a2a9a4e4c8cca932b942d13ca1da507cf5", [ null, { @@ -800794,7 +851787,7 @@ }, "set_viewport": { "device_pixel_ratio.py": [ - "e4db779bd5dd5492af4997531fdc9c397718795b", + "76a4ef7ecd28c6977762404820f61c1b2dfd5dea", [ null, {} @@ -800808,7 +851801,7 @@ ] ], "viewport.py": [ - "60f9e47040fc23f5f741ddd87128103227b3cb11", + "e9ff8517f264a84918b90cd7e102a432eeedcdb9", [ null, {} @@ -800817,21 +851810,21 @@ }, "traverse_history": { "context.py": [ - "7635c0e9ddd8a4413cc5aeb8af4ff4bbe5ae574a", + "2635dcfa287218dc1afabeea5c8186d3a1ee4109", [ null, {} ] ], "delta.py": [ - "05f4d99544fc850d8a9a325fe2e0eed49dbdf768", + "3bd0087250c14bd08bd22227046ac7ceb0a2a77f", [ null, {} ] ], "invalid.py": [ - "abb0d69c937d0a052f95431a674a3cfc45914a29", + "c6a90601e70da8af00723daa2924914969c5cea5", [ null, {} @@ -800839,8 +851832,15 @@ ] }, "user_prompt_closed": { + "beforeunload.py": [ + "ab16526fdb177417269ff93c2e3d8abfdf730e56", + [ + null, + {} + ] + ], "user_prompt_closed.py": [ - "68a0eed1922ea8a5520190f7babb85f315719c70", + "fdb9e8b3ca7d5cc642ec69517f065887b16cdc24", [ null, {} @@ -800848,8 +851848,22 @@ ] }, "user_prompt_opened": { + "beforeunload.py": [ + "782cc766507419568ff668648d16b63cd67a3780", + [ + null, + {} + ] + ], + "handler.py": [ + "2aa67056f80f313b8a36bddd414ec20ecca5b427", + [ + null, + {} + ] + ], "user_prompt_opened.py": [ - "fcd030116df57cdfa176d125942f5000a7641006", + "c24128004f73a8b09a61991837b1dad103f91789", [ null, {} @@ -800866,10 +851880,37 @@ ] ] }, + "external": { + "permissions": { + "set_permission": { + "invalid.py": [ + "d7172160721cec9e5fec0e4b1fa70125e5da0ef2", + [ + null, + {} + ] + ], + "set_permission.py": [ + "574f2149841dd69e579bebca6efaaf25b007c255", + [ + null, + {} + ] + ], + "user_context.py": [ + "b45ddb12b7e59093210dfdf55d3d9008918b0b41", + [ + null, + {} + ] + ] + } + } + }, "input": { "perform_actions": { "invalid.py": [ - "4ae3039f473e16ebe6350196822e8e5e7a4c00e3", + "1c5983159c1cf878a6664432dea8cdce47722957", [ null, {} @@ -800883,7 +851924,7 @@ ] ], "key_events.py": [ - "e93c132e0ac434e6c5f3cb2954d85da0e9c95551", + "275b542b11280792de1ad7ef1ea42270290a3130", [ null, { @@ -800898,6 +851939,13 @@ {} ] ], + "key_tentative.py": [ + "1f7053c24997e1d604246bd086e72dbe182d575f", + [ + null, + {} + ] + ], "pointer.py": [ "6109450a23c1d49215a2cc4ef8547789d568eb79", [ @@ -800957,7 +852005,7 @@ ] ], "wheel.py": [ - "4f897479e235d82e6b1556acef68a5626eeb9f72", + "3129e9b0e63ca15092f6264ce8eecfef471d0abd", [ null, {} @@ -800994,7 +852042,37 @@ ] ], "sequence.py": [ - "603b29414153ff65aad67391c018439452c3a2e7", + "7c68fd299f782bf10a5c078df1a7b98890550cdf", + [ + null, + {} + ] + ], + "sequence_tentative.py": [ + "f4799a0315436d6e7421b2992c7f85aa0c405be5", + [ + null, + {} + ] + ] + }, + "set_files": { + "context.py": [ + "f9a39f2bfbcbddcae2e3d6b3a969efa5c68d418e", + [ + null, + {} + ] + ], + "files.py": [ + "df91861752cf4cdc3ff267535d939b0127ca2994", + [ + null, + {} + ] + ], + "invalid.py": [ + "6527f462c9b91beac01d7212639613dfda8d6167", [ null, {} @@ -801002,6 +852080,22 @@ ] } }, + "integration": { + "cookies_with_network_events.py": [ + "49ca96f61603425479a5bb2bb43ee83e5cefd90f", + [ + null, + {} + ] + ], + "navigation.py": [ + "23615040c78710d0810591983f183c5cc8954b40", + [ + null, + {} + ] + ] + }, "log": { "entry_added": { "console.py": [ @@ -801058,21 +852152,28 @@ "network": { "add_intercept": { "add_intercept.py": [ - "7648eb1934fa37d2eaef4ff1ed9be5a2d3859dbc", + "c073e1cc3260f08d3b781102dfcdcd54804f60ce", + [ + null, + {} + ] + ], + "contexts.py": [ + "7606b2368b6af60b190fe73185a06c3aa8dd85a7", [ null, {} ] ], "invalid.py": [ - "ac7b2738548425f8aab010e6be9145c2cad8f296", + "0821ba7782eb3e71bafae8c05d98e6a6e3a6f926", [ null, {} ] ], "phase_auth_required.py": [ - "dd322a23405e2f3d999c46fc3b0361bd67ffc012", + "0df3e9e86afddafc7f03e5925d47f2173f482e65", [ null, {} @@ -801086,7 +852187,7 @@ ] ], "url_patterns.py": [ - "517a94ffc4b0172e4668c235b206381b4f26b716", + "cee5f5d8225460a2fcaeaf5d12cf3d9ba7d0eefb", [ null, {} @@ -801095,14 +852196,14 @@ }, "auth_required": { "auth_required.py": [ - "9a24946cde9c449039db83ef018ff03845baf874", + "8ae539056429b4651cee0fcab4d6dce639a9a8c5", [ null, {} ] ], "unsubscribe.py": [ - "cf818fee6f5af92ee69b80eee2149ef744026019", + "0bbf8df266731055cc58f12836468fa45c1bfe2c", [ null, {} @@ -801111,7 +852212,14 @@ }, "before_request_sent": { "before_request_sent.py": [ - "c92337e5075bf0b4eb6fff85dcc550d181f6588e", + "f8d1f7ba786bef57da02badc7b3506c1505b0408", + [ + null, + {} + ] + ], + "before_request_sent_cached.py": [ + "2de71362ae5d117320338cb62bb7c6110d9f33cd", [ null, {} @@ -801120,7 +852228,7 @@ }, "combined": { "network_events.py": [ - "7b6d99727ae116587737abd0c02fd908a6690de9", + "3fbdce53b575a5f39c8f1d5de761d3463273e6a5", [ null, {} @@ -801128,8 +852236,45 @@ ] }, "continue_request": { + "body.py": [ + "da7cff78a502ccf97455df10a7b2718c7f0bf008", + [ + null, + {} + ] + ], + "cookies.py": [ + "d403f279d51f9746c7b6091c601edbc5664dbeaf", + [ + null, + {} + ] + ], + "headers.py": [ + "ed4839ee8062950466d61b0ab8da718c9efebc5c", + [ + null, + {} + ] + ], "invalid.py": [ - "cdc66cfaabb20dde4bd3e3caa0c8c8d948fe87f6", + "9a1a3166f8b47a69e7f98176a8969ccd09183628", + [ + null, + { + "timeout": "long" + } + ] + ], + "method.py": [ + "ed342913adb486aded7eae76e88d190960febeda", + [ + null, + {} + ] + ], + "request.py": [ + "c55e477ad7475060708c27eafe6b8711dfb9ccdb", [ null, {} @@ -801137,8 +852282,24 @@ ] }, "continue_response": { + "credentials.py": [ + "499c8a28c126fccea5ec0af932595d0d2cefadb9", + [ + null, + {} + ] + ], "invalid.py": [ - "b8e1c08e0125fd16d405a9d07848db8a25adc47a", + "41f786ef6d7c62260e267192fc1158484be617fb", + [ + null, + { + "timeout": "long" + } + ] + ], + "request.py": [ + "ae9c94d955e997aea907e60289fa32231a812f8f", [ null, {} @@ -801147,7 +852308,7 @@ }, "continue_with_auth": { "action.py": [ - "a122ce0e4926346950083d57161a277fd567c17a", + "dccdd6a9308004c826a028cd9e5e41ffe128c2b5", [ null, {} @@ -801168,11 +852329,71 @@ null, {} ] + ], + "request.py": [ + "368e46ebe508c9a463e98f3f72a665b8144de51f", + [ + null, + {} + ] + ] + }, + "fetch_error": { + "fetch_error.py": [ + "de6567100a96a4a5303f2ea4e7ec1f576ee8fddb", + [ + null, + {} + ] ] }, "provide_response": { + "body.py": [ + "317f627784baf65ea0664cf1d69a3157e96f31b3", + [ + null, + {} + ] + ], + "cookies.py": [ + "c05321b3b05b50faf6db665ce82ead2125d01c4d", + [ + null, + {} + ] + ], + "headers.py": [ + "0436896ec196f0614206d9efaf4bb54b44eff903", + [ + null, + {} + ] + ], "invalid.py": [ - "eec118a692df3a27d89236d7e2862dd2aca9f35d", + "49177bcb4a0d0b92d57ddf69cdd86c47de9b74c7", + [ + null, + { + "timeout": "long" + } + ] + ], + "reason_phrase.py": [ + "69db8e8ce01af6e6b348113ac71f585a0d1f4082", + [ + null, + {} + ] + ], + "request.py": [ + "099baca02866b8f9b378134e74422963a26bb0ce", + [ + null, + {} + ] + ], + "status_code.py": [ + "4d7a25a92de368d8571c0eca20885bb320c57805", [ null, {} @@ -801199,37 +852420,53 @@ }, "response_completed": { "response_completed.py": [ - "b9b4ae727e56d5505c3221eaa7800584371f1123", + "ba916390ea2ed382197df3d351d8b1bce0074d74", [ null, {} ] ], "response_completed_cached.py": [ - "6457e7d412b7c94016e80bea2734b6a0aa675f8d", + "25503c971db76355751fedb77cd223adfa4193c2", + [ + null, + {} + ] + ] + }, + "response_started": { + "response_started.py": [ + "d2d987d8e4aa61c95d94bb30f935b22b6f43f977", [ null, {} ] ], - "response_completed_status.py": [ - "36e3da667e92c3b5bd4d7f7c32c66b3dc658d77e", + "response_started_cached.py": [ + "2c747f135a1c450bd20dc04806f5d0e4aeeda2f0", [ null, {} ] ] }, - "response_started": { - "response_started.py": [ - "dec743e175559b7068a44f043bce4951a17efcaa", + "set_cache_behavior": { + "contexts.py": [ + "5872a7d12e0d63787616ac4275f2489e91ff570b", [ null, {} ] ], - "response_started_cached.py": [ - "2776950b0eccbe16ae74dde21906cb0dc30140d7", + "invalid.py": [ + "921db569d4f7f7f877116171a8f8753f84d53b24", + [ + null, + {} + ] + ], + "set_cache_behavior.py": [ + "0d55d520c9636a688f32158a7d7e3fb48e599153", [ null, {} @@ -801253,8 +852490,15 @@ {} ] ], + "contexts.py": [ + "135cfb6016df304e2a5c190e18a62478af67fe15", + [ + null, + {} + ] + ], "invalid.py": [ - "54440ff67804b693afd3bae40f0f347e4131f7c7", + "047496b4c210b5369d062234db89a9903e4f0fa9", [ null, {} @@ -801319,14 +852563,7 @@ ] ], "invalid.py": [ - "af94e86efe10c3e353f952111a3054d9d7525cff", - [ - null, - {} - ] - ], - "invalid_tentative.py": [ - "2726178e471dac4212ff8d167221cc55ca81a50f", + "ccd5bcfa439e5bf661715fb31fc9ccb00fe5c09b", [ null, {} @@ -801382,7 +852619,7 @@ ] ], "serialization_options.py": [ - "4084ec482093a88b8d55d59a719710908ad248bc", + "68c8cf9c1cb50bdd0ba5fe4ea0edf6391601ecd8", [ null, {} @@ -801395,31 +852632,22 @@ {} ] ], - "this.py": [ - "2893bb037ac18476a8da70f4f9fdc6c6f053bad9", + "target.py": [ + "d6550d67d5e7e696c41f6d16836822a0cc8e9a0d", [ null, {} ] ], - "user_activation.py": [ - "3c1b039981de20de037c0c2a24849f605b2dd0de", - [ - null, - {} - ] - ] - }, - "classic_interop": { - "node_shared_id.py": [ - "aeb2bc45978829877dbc554bc580151a341c5d44", + "this.py": [ + "2893bb037ac18476a8da70f4f9fdc6c6f053bad9", [ null, {} ] ], - "window_reference.py": [ - "1588303be010842069b1d069fe2a61a7b109d292", + "user_activation.py": [ + "3c1b039981de20de037c0c2a24849f605b2dd0de", [ null, {} @@ -801441,15 +852669,8 @@ {} ] ], - "invalid_tentative.py": [ - "5078166dfde6fda787e6faacf432f81610df0443", - [ - null, - {} - ] - ], "target.py": [ - "bce956d06bedcd760f613808502030cc5effb514", + "f01dcb3b717d9f3ed2586f019da09758e17c999a", [ null, {} @@ -801499,13 +852720,6 @@ {} ] ], - "invalid_tentative.py": [ - "e98a697c80aa07c278a47edb6a30f06d104d9b22", - [ - null, - {} - ] - ], "primitive_values.py": [ "6ca053c0365030f37c0b4c576793b463415dadec", [ @@ -801548,6 +852762,13 @@ {} ] ], + "target.py": [ + "e67a5dd81f7cc06f14dd68e1160bdae419d7c49b", + [ + null, + {} + ] + ], "user_activation.py": [ "cc1f27985e3ef2501e036313d510e6e63ff421c6", [ @@ -801565,7 +852786,7 @@ ] ], "get_realms.py": [ - "4dfce5ab494b6a69550d00120e0a13b737877b9d", + "6e57e7266f09aa9a336c95fbccf6e287276fcff2", [ null, {} @@ -801604,7 +852825,7 @@ }, "realm_created": { "realm_created.py": [ - "25fbbfc9f61944663a461603594117988fc672e8", + "f4dc681a3a2edf4aaa7b513137acb09bd0c2e65f", [ null, {} @@ -801613,7 +852834,7 @@ }, "realm_destroyed": { "realm_destroyed.py": [ - "15309f7aba06001ac7d2adf8956cab330f8c6f5f", + "ac3a67ec74276febc25f2d7ce20b18fa90f7bb28", [ null, {} @@ -801629,7 +852850,7 @@ ] ], "remove_preload_script.py": [ - "b92fb31af0418755ada7b9bd516150744dfacdb4", + "2cf35fb9bb802f61cf97a38628d406e9a75c1e1b", [ null, {} @@ -801646,8 +852867,8 @@ }, "session": { "new": { - "connect.py": [ - "d5872cd3ba542c92f70bd7280598637f903e5aa2", + "bidi_upgrade.py": [ + "1060bef2be95c6fb560b4d8bbafeb02e2a5083e2", [ null, {} @@ -801656,7 +852877,7 @@ }, "status": { "status.py": [ - "13d131bfec5dfc7116a60ab09c2f1354405ef73a", + "f62ad4c5620623749b6f4e770deadddae3c72251", [ null, {} @@ -801679,7 +852900,7 @@ ] ], "invalid.py": [ - "056f6827281e9e0a56b01f76ca296133f38fadf4", + "e553a2e501ebfcef65dc302bcf53c22af975e496", [ null, {} @@ -801702,7 +852923,134 @@ ] ], "invalid.py": [ - "9039f27e47c49798c55f568ee13e21f2d60cd956", + "c286bc09ee04d72aa4048e67078084d985bdcdc3", + [ + null, + {} + ] + ] + } + }, + "storage": { + "delete_cookies": { + "filter.py": [ + "7bfb743cfcf01a297016da60a0c064e6664a345e", + [ + null, + {} + ] + ], + "invalid.py": [ + "ba9c5a5da0ab510473afef3e860eedf71d7676a7", + [ + null, + {} + ] + ], + "partition.py": [ + "bf23abb720ca34b7637f9c612e4f719785d8d8f5", + [ + null, + {} + ] + ] + }, + "get_cookies": { + "filter.py": [ + "efa22f7dc9af7301f63291f2ca2e21120bc261ae", + [ + null, + {} + ] + ], + "invalid.py": [ + "93d0da2ac472a7b406138198c70f9264033403ed", + [ + null, + {} + ] + ], + "partition.py": [ + "dbe882b8cfed194d08e6e5b134cc7ca284d4ad6d", + [ + null, + {} + ] + ] + }, + "set_cookie": { + "cookie_domain.py": [ + "558d49c186c26361ec7f98e363abc34462a0e481", + [ + null, + {} + ] + ], + "cookie_expiry.py": [ + "7aac38da69510bf1147e234d05dacf7b5c351dbe", + [ + null, + {} + ] + ], + "cookie_http_only.py": [ + "b2155d1ac2069336079f86d38c32de4e185460a8", + [ + null, + {} + ] + ], + "cookie_name.py": [ + "0aed1bb6b9882b15f172385424fdb56e00e7a8bd", + [ + null, + {} + ] + ], + "cookie_path.py": [ + "70084dee6e53074e9ce58fcb497697e9b66795bb", + [ + null, + {} + ] + ], + "cookie_same_site.py": [ + "27640bb9a6afda9a3c01a6966a3acc7a112bd9f4", + [ + null, + {} + ] + ], + "cookie_secure.py": [ + "81e462c87cc222ddb35079e0eb6fe9b19fdfa0b1", + [ + null, + {} + ] + ], + "cookie_value.py": [ + "a5a2b082d580f5ee78bd71cdbe221efe75a0ba35", + [ + null, + {} + ] + ], + "invalid.py": [ + "9962d303a14672010b56c30bf502dfaf733300d1", + [ + null, + {} + ] + ], + "page_protocols.py": [ + "295b09c10e9b9bc4a42b9c802207f750d97cb979", + [ + null, + {} + ] + ], + "partition.py": [ + "bb171c6141165ce321b3cd72cd861a187d2b7c9b", [ null, {} @@ -801723,7 +853071,7 @@ }, "add_cookie": { "add.py": [ - "24b71c52fddf529ab89e37ea74202d17cef1329c", + "60b67d051ba18cf5eba33c3672b78d9c8cc2fe5d", [ null, {} @@ -801741,14 +853089,14 @@ }, "back": { "back.py": [ - "dfd194523138f3ed6378eda9634afdb423977c28", + "bfc5e0f4a398ec097896cfc955f0f5efdf317bfc", [ null, {} ] ], "user_prompts.py": [ - "9d04f0f4ab12d98f0313639013fce4f26869a753", + "1020a6aaa613889c3e032510e9eb21b76ca13f1c", [ null, { @@ -801759,14 +853107,14 @@ }, "close_window": { "close.py": [ - "680f471839c7125098042c7c0c44e20674a6e838", + "f606e957d418a70b502bf02ddeff0b7db7a74612", [ null, {} ] ], "user_prompts.py": [ - "c0f9cc7610c21ea97064392eb2e09fce6f853bbc", + "37928f97589dee7f966824103b1396f16c8b5f5a", [ null, { @@ -801813,7 +853161,7 @@ }, "delete_session": { "delete.py": [ - "a3032cc13475bf2980b360d9d140e2d2f58a9034", + "3721ea28e28e3725e24e69b22bad42eecf28dc15", [ null, {} @@ -801831,14 +853179,21 @@ }, "element_clear": { "clear.py": [ - "9a0549ce4f25e17170b2a45ea1e89926c88dcb36", + "0977f60cb632b9fa8a92740be155c99c90adbab9", + [ + null, + {} + ] + ], + "disabled.py": [ + "f0d0fcd9aa9a46dd3c175b8afc116a71422f6b63", [ null, {} ] ], "user_prompts.py": [ - "7a8564a684a7edc5d1af0812b3353f2f5ccba629", + "ccf048bc0a5135c499d0683f8c4818474cd0785f", [ null, { @@ -801884,21 +853239,21 @@ ] ], "interactability.py": [ - "d55860c8746f33ba86468fbfc9952363f01e7110", + "65f8a9015eeaa6a450e603d1ca6e1914516eb506", [ null, {} ] ], "navigate.py": [ - "7616c069632c899ba5771009a2733823d9ab7278", + "407d288a53e87f57612e70fe47e1114480538015", [ null, {} ] ], "scroll_into_view.py": [ - "591847e8816122a91fe6de21f214a34e2af628f8", + "1b9c671efaba12ac42a79ac0f97e84544ce9621e", [ null, {} @@ -801919,7 +853274,7 @@ ] ], "user_prompts.py": [ - "140aceb3cedfe84ec8f9a3ac0285497b6e670285", + "a4c62cbca7784fe8303dad8f5f78d2a72a404aa6", [ null, { @@ -801965,7 +853320,7 @@ ] ], "scroll_into_view.py": [ - "7ccaeaf8142011ccbe7830876147d73853d0b07a", + "af20211251a212476fa198c8e405de07349dfc54", [ null, {} @@ -802046,7 +853401,7 @@ ] ], "user_prompts.py": [ - "e39574fd4ac1b734006614c4ab6caf0a9542676b", + "5243b372e5a5ca81f17b741ab73639be64e68e3e", [ null, { @@ -802120,7 +853475,7 @@ ] ], "user_prompts.py": [ - "48d735ea754c0f74726d5a89f43eabb245b8bc5a", + "74d4c47fc064f7b498def6a838ce36d3d5604ccf", [ null, { @@ -802246,14 +853601,14 @@ }, "forward": { "forward.py": [ - "6774e522105d3aac24d9594af9ffb1b724aff00d", + "8bc75a07c0e61f95802a27b70d4a56ea6f0300a5", [ null, {} ] ], "user_prompts.py": [ - "3eeaf6e71cdb7311614b271257f4cd6d19a2e619", + "dfcba6469d5e6b7101976faa9a836733f13ec710", [ null, { @@ -802309,7 +853664,7 @@ }, "get_alert_text": { "get.py": [ - "7ee7ff1808f928e67ab0e3423c13a885e28db08f", + "e8d0aa04e61d9d5a483702a5cef56a34be9dc641", [ null, {} @@ -802336,7 +853691,7 @@ }, "get_current_url": { "file.py": [ - "ef6ae2383550330bfd41c10fffb41b4545d7007d", + "e94cbcfe5517f215e75ae80b25d133d8ad16210a", [ null, {} @@ -802476,7 +853831,7 @@ }, "get_element_text": { "get.py": [ - "547152b2a72e3c9d27da81c010fd681378e6529d", + "8f832077e1069c75ae9ff6362d49e7aad9fd7c4c", [ null, {} @@ -802494,7 +853849,7 @@ }, "get_named_cookie": { "get.py": [ - "41426532ef1ef54ccc31225b9c39e202c77ee6a9", + "78418dae93b4b71cbed1fc46c3869b26a691ae17", [ null, {} @@ -802539,7 +853894,7 @@ }, "get_title": { "get.py": [ - "e696ec340339e64d68956c3ea3bcfa5e8fceb774", + "1ee76219e10da14059e267eaf758f3ae001d2ad8", [ null, {} @@ -802627,14 +853982,14 @@ }, "is_element_enabled": { "enabled.py": [ - "24fc85fdad2daba04b6770c536d0ae4de9ee95bb", + "9588486dde1c018788d4c4fe93e3c403a2d3a2bd", [ null, {} ] ], "user_prompts.py": [ - "5dd7d582bd3d80a3d3affc4052bc933d75bcbca6", + "a3af947d516314e1b380af5990feedc7be55cfbf", [ null, { @@ -802721,7 +854076,7 @@ }, "navigate_to": { "file.py": [ - "5dae5f5c4d0edfed3113d5d50511b52dfbd111c5", + "213162c7b9228a7f88e08f08aeaa29999fe1b762", [ null, {} @@ -802735,7 +854090,7 @@ ] ], "user_prompts.py": [ - "682bc40f4fe9d4b530b406a74b1451bbf88a5d75", + "db8d094ebbdf556167544b98110e7dd4ac0492c2", [ null, { @@ -802764,10 +854119,12 @@ ] ], "default_values.py": [ - "678d7a8e881ccc0b00c24539165bb38d2521bd40", + "ac544c1338cce015d5360d22e097a9c591661327", [ null, - {} + { + "timeout": "long" + } ] ], "invalid_capabilities.py": [ @@ -802778,7 +854135,7 @@ ] ], "merge.py": [ - "857d289fcaf054492e17ba730c6f530d55fe2640", + "4d36926fd3f063aed95fe5a7f477fd215686f698", [ null, { @@ -802801,14 +854158,14 @@ ] ], "platform_name.py": [ - "54fe4743bed44e75d6771ede5d4b7bf2f267bb95", + "fb87d9d682a2b440237f31cf7db6f699323f2fa5", [ null, {} ] ], "response.py": [ - "43a8d57931143f9cf2b5cb0946f982b003afd85c", + "fa8d56c4493465f7ec945d577a9b3246be28b5dd", [ null, {} @@ -802821,8 +854178,17 @@ {} ] ], + "unhandled_prompt_behavior.py": [ + "05b0f9309162b0a35bba1200713bc0db14acee4f", + [ + null, + { + "timeout": "long" + } + ] + ], "websocket_url.py": [ - "452decc90aa18420459d72886a85d89918a0fb38", + "9ae4bd2e1a082fb81c615520fb8e7e73d92d870a", [ null, {} @@ -802838,14 +854204,14 @@ ] ], "new_tab.py": [ - "f6cacf3c3586bc2962e67be4cacf3fbbc838216d", + "53810e7fb627bba03c33cfcdb8c3beec8f9c8951", [ null, {} ] ], "new_window.py": [ - "a3fce364ccc8ac8e7de942d4718a6eda151464f9", + "cc10d2fb867158c04da9dcdc3185b34f07f017b8", [ null, {} @@ -802863,10 +854229,12 @@ }, "perform_actions": { "invalid.py": [ - "f000477376e7ccded56168f2e9f3d373cbd675aa", + "d83285abbe070d9da645cfda36d18fa7540ab887", [ null, - {} + { + "timeout": "long" + } ] ], "key.py": [ @@ -802906,6 +854274,13 @@ {} ] ], + "key_tentative.py": [ + "62f380da0ec05a6e16c9cc255f6a006cf3e7a6a5", + [ + null, + {} + ] + ], "none.py": [ "b94a8f162d736b858e4564dde3b13a40ef7595c2", [ @@ -802991,7 +854366,7 @@ ] ], "user_prompts.py": [ - "872325bb313dc92359bfaf813f84ac14cfd3a943", + "7fcd720624b1006cb1b5ff43305c79e00279ce0d", [ null, { @@ -803000,7 +854375,7 @@ ] ], "wheel.py": [ - "a75a84378a6ada5623096f858363cb7d7a1c5a5c", + "1c9bf082270429406080baab3373d5ff3f506aed", [ null, {} @@ -803009,7 +854384,7 @@ }, "permissions": { "set.py": [ - "740b93d40e0b5b20a4febeb22ecaa4763cd6a408", + "0bee5d39146cbcc276da015aac82ddf881b51370", [ null, {} @@ -803052,14 +854427,14 @@ }, "refresh": { "refresh.py": [ - "19490a0a458c510a3c0f263d9f233b232e198c30", + "3f434a3012fe18ff8939fe5bc68579932ae14f4d", [ null, {} ] ], "user_prompts.py": [ - "7e944b53b0964e68b897e6315faa0cfa65802143", + "5787533b5727f05370bc3f9257c7723b12a1c0d3", [ null, { @@ -803172,7 +854547,7 @@ }, "switch_to_parent_frame": { "switch.py": [ - "f777d6a767745466fa79705738b26b4c0d60570e", + "184dc4234e2020fba7198cd5ea438b35fcf72048", [ null, {} @@ -803245,6 +854620,36 @@ ] ] } + }, + "interop": { + "beforeunload_prompt.py": [ + "1e47f6906761bc614575cb061a8d57cc23a2cde1", + [ + null, + {} + ] + ], + "frames.py": [ + "b2cafb498703ba24dac0bfe2a158e630f6aa50d5", + [ + null, + {} + ] + ], + "shared_id_node.py": [ + "aeb2bc45978829877dbc554bc580151a341c5d44", + [ + null, + {} + ] + ], + "shared_id_window.py": [ + "d13262b4e5410ca3c8e2e1ce5be5093cba258207", + [ + null, + {} + ] + ] } } } From 3383805343cd6a78414f9ff4fb37319b846cc99a Mon Sep 17 00:00:00 2001 From: "asamuzaK (Kazz)" Date: Sun, 25 Aug 2024 16:26:26 +0900 Subject: [PATCH 04/11] Fix events fired by blur() They should not set relatedTarget. And we should not fire focus/focusin on the document. --- .../living/nodes/HTMLOrSVGElement-impl.js | 6 +- .../focusevents/blur-relatedTarget.html | 105 ++++++++++++++++++ 2 files changed, 107 insertions(+), 4 deletions(-) create mode 100644 test/web-platform-tests/to-upstream/uievents/focusevents/blur-relatedTarget.html diff --git a/lib/jsdom/living/nodes/HTMLOrSVGElement-impl.js b/lib/jsdom/living/nodes/HTMLOrSVGElement-impl.js index 02b683789..7f96ac6b4 100644 --- a/lib/jsdom/living/nodes/HTMLOrSVGElement-impl.js +++ b/lib/jsdom/living/nodes/HTMLOrSVGElement-impl.js @@ -76,10 +76,8 @@ class HTMLOrSVGElementImpl { } this._ownerDocument._lastFocusedElement = null; - focusing.fireFocusEventWithTargetAdjustment("blur", this, this._ownerDocument); - focusing.fireFocusEventWithTargetAdjustment("focusout", this, this._ownerDocument, { bubbles: true }); - focusing.fireFocusEventWithTargetAdjustment("focus", this._ownerDocument, this); - focusing.fireFocusEventWithTargetAdjustment("focusin", this._ownerDocument, this, { bubbles: true }); + focusing.fireFocusEventWithTargetAdjustment("blur", this, null); + focusing.fireFocusEventWithTargetAdjustment("focusout", this, null, { bubbles: true }); this._ownerDocument.getSelection().empty(); } } diff --git a/test/web-platform-tests/to-upstream/uievents/focusevents/blur-relatedTarget.html b/test/web-platform-tests/to-upstream/uievents/focusevents/blur-relatedTarget.html new file mode 100644 index 000000000..b5728ba1d --- /dev/null +++ b/test/web-platform-tests/to-upstream/uievents/focusevents/blur-relatedTarget.html @@ -0,0 +1,105 @@ + + +relatedTarget on blur() + + + + + + + + From 07fab3735a24ed0b443eccdf83dad5a94e7826ea Mon Sep 17 00:00:00 2001 From: Domenic Denicola Date: Sun, 25 Aug 2024 16:43:16 +0900 Subject: [PATCH 05/11] Refactor Window object setup code Restructure Window.js to be less convoluted, with a single createWindow function and no fake Window constructor that operates on a this object but then manually sets is prototype chain anyway. --- lib/jsdom/browser/Window.js | 383 ++++++++++++++-------------- test/web-platform-tests/to-run.yaml | 1 - 2 files changed, 191 insertions(+), 193 deletions(-) diff --git a/lib/jsdom/browser/Window.js b/lib/jsdom/browser/Window.js index 1e7af74c8..b42c2d4d7 100644 --- a/lib/jsdom/browser/Window.js +++ b/lib/jsdom/browser/Window.js @@ -91,60 +91,73 @@ const events = new Set([ // "error" and "beforeunload" are added separately ]); -exports.createWindow = function (options) { - return new Window(options); -}; - const jsGlobalEntriesToInstall = Object.entries(jsGlobals).filter(([name]) => name in global); -// https://html.spec.whatwg.org/#the-window-object -function setupWindow(windowInstance, { runScripts }) { - if (runScripts === "outside-only" || runScripts === "dangerously") { - contextifyWindow(windowInstance); +exports.createWindow = options => { + const makeVMContext = options.runScripts === "outside-only" || options.runScripts === "dangerously"; + + // Bootstrap with an empty object from the Node.js realm. We'll muck with its prototype chain shortly. + const window = {}; + + // Make window into a global object: either via vm, or just aliasing the Node.js globals. + // Also set _globalObject and _globalProxy. + // + // TODO: don't expose _globalObject and _globalProxy as public properties. While you're there, audit usage sites to + // see how necessary they really are. + if (makeVMContext) { + vm.createContext(window); + + window._globalObject = window; + window._globalProxy = vm.runInContext("this", window); // Without this, these globals will only appear to scripts running inside the context using vm.runScript; they will // not appear to scripts running from the outside, including to JSDOM implementation code. for (const [globalName, globalPropDesc] of jsGlobalEntriesToInstall) { - const propDesc = { ...globalPropDesc, value: vm.runInContext(globalName, windowInstance) }; - Object.defineProperty(windowInstance, globalName, propDesc); + const propDesc = { ...globalPropDesc, value: vm.runInContext(globalName, window) }; + Object.defineProperty(window, globalName, propDesc); } } else { + window._globalObject = window._globalProxy = window; + // Without contextifying the window, none of the globals will exist. So, let's at least alias them from the Node.js // context. See https://github.com/jsdom/jsdom/issues/2727 for more background and discussion. for (const [globalName, globalPropDesc] of jsGlobalEntriesToInstall) { const propDesc = { ...globalPropDesc, value: global[globalName] }; - Object.defineProperty(windowInstance, globalName, propDesc); + Object.defineProperty(window, globalName, propDesc); } } - installInterfaces(windowInstance, ["Window"]); + // Create instances of all the web platform interfaces and install them on the window. + installInterfaces(window, ["Window"]); - const EventTargetConstructor = windowInstance.EventTarget; + // Now we have an EventTarget contructor so we can work on the prototype chain. - // eslint-disable-next-line func-name-matching, func-style, no-shadow - const windowConstructor = function Window() { + // eslint-disable-next-line func-name-matching, func-style + const WindowConstructor = function Window() { throw new TypeError("Illegal constructor"); }; - Object.setPrototypeOf(windowConstructor, EventTargetConstructor); + Object.setPrototypeOf(WindowConstructor, window.EventTarget); - Object.defineProperty(windowInstance, "Window", { + Object.defineProperty(window, "Window", { configurable: true, writable: true, - value: windowConstructor + value: WindowConstructor }); - const windowProperties = Object.create(EventTargetConstructor.prototype); - Object.defineProperties(windowProperties, { + // TODO: do an actual WindowProperties object. See https://github.com/jsdom/jsdom/pull/3765 for an attempt. + const windowPropertiesObject = Object.create(window.EventTarget.prototype); + Object.defineProperties(windowPropertiesObject, { [Symbol.toStringTag]: { value: "WindowProperties", configurable: true } }); + namedPropertiesWindow.initializeWindow(window, window._globalProxy); - const windowPrototype = Object.create(windowProperties); + const windowPrototype = Object.create(windowPropertiesObject); Object.defineProperties(windowPrototype, { constructor: { - value: windowConstructor, + value: WindowConstructor, writable: true, configurable: true }, @@ -154,113 +167,123 @@ function setupWindow(windowInstance, { runScripts }) { } }); - windowConstructor.prototype = windowPrototype; - Object.setPrototypeOf(windowInstance, windowPrototype); - if (runScripts === "outside-only" || runScripts === "dangerously") { - const global = vm.runInContext("this", windowInstance); - Object.setPrototypeOf(global, windowPrototype); + WindowConstructor.prototype = windowPrototype; + Object.setPrototypeOf(window, windowPrototype); + if (makeVMContext) { + Object.setPrototypeOf(window._globalProxy, windowPrototype); + + // TODO next major version: include this. + // Object.setPrototypeOf(window.EventTarget.prototype, window.Object.prototype); } - EventTarget.setup(windowInstance, windowInstance); - mixin(windowInstance, WindowEventHandlersImpl.prototype); - mixin(windowInstance, GlobalEventHandlersImpl.prototype); - windowInstance._initGlobalEvents(); + // Now that the prototype chain is fully set up, call the superclass setup. + EventTarget.setup(window, window); + + installEventHandlers(window); + + installOwnProperties(window, options); + + // Not sure why this is necessary... TODO figure it out. + Object.defineProperty(idlUtils.implForWrapper(window), idlUtils.wrapperSymbol, { get: () => window._globalProxy }); + + // Fire or prepare to fire load and pageshow events. + process.nextTick(() => { + if (!window.document) { + return; // window might've been closed already + } + + if (window.document.readyState === "complete") { + fireAnEvent("load", window, undefined, {}, true); + } else { + window.document.addEventListener("load", () => { + fireAnEvent("load", window, undefined, {}, true); + if (!window._document) { + return; // window might've been closed already + } + + const documentImpl = idlUtils.implForWrapper(window._document); + if (!documentImpl._pageShowingFlag) { + documentImpl._pageShowingFlag = true; + fireAPageTransitionEvent("pageshow", window, false); + } + }); + } + }); + + return window; +}; + +function installEventHandlers(window) { + mixin(window, WindowEventHandlersImpl.prototype); + mixin(window, GlobalEventHandlersImpl.prototype); + window._initGlobalEvents(); - Object.defineProperty(windowInstance, "onbeforeunload", { + Object.defineProperty(window, "onbeforeunload", { configurable: true, enumerable: true, get() { - return idlUtils.tryWrapperForImpl(getCurrentEventHandlerValue(this, "beforeunload")); + return idlUtils.tryWrapperForImpl(getCurrentEventHandlerValue(window, "beforeunload")); }, set(V) { if (!idlUtils.isObject(V)) { V = null; } else { - V = OnBeforeUnloadEventHandlerNonNull.convert(windowInstance, V, { + V = OnBeforeUnloadEventHandlerNonNull.convert(window, V, { context: "Failed to set the 'onbeforeunload' property on 'Window': The provided value" }); } - this._setEventHandlerFor("beforeunload", V); + window._setEventHandlerFor("beforeunload", V); } }); - Object.defineProperty(windowInstance, "onerror", { + Object.defineProperty(window, "onerror", { configurable: true, enumerable: true, get() { - return idlUtils.tryWrapperForImpl(getCurrentEventHandlerValue(this, "error")); + return idlUtils.tryWrapperForImpl(getCurrentEventHandlerValue(window, "error")); }, set(V) { if (!idlUtils.isObject(V)) { V = null; } else { - V = OnErrorEventHandlerNonNull.convert(windowInstance, V, { + V = OnErrorEventHandlerNonNull.convert(window, V, { context: "Failed to set the 'onerror' property on 'Window': The provided value" }); } - this._setEventHandlerFor("error", V); + window._setEventHandlerFor("error", V); } }); for (const event of events) { - Object.defineProperty(windowInstance, `on${event}`, { + Object.defineProperty(window, `on${event}`, { configurable: true, enumerable: true, get() { - return idlUtils.tryWrapperForImpl(getCurrentEventHandlerValue(this, event)); + return idlUtils.tryWrapperForImpl(getCurrentEventHandlerValue(window, event)); }, set(V) { if (!idlUtils.isObject(V)) { V = null; } else { - V = EventHandlerNonNull.convert(windowInstance, V, { + V = EventHandlerNonNull.convert(window, V, { context: `Failed to set the 'on${event}' property on 'Window': The provided value` }); } - this._setEventHandlerFor(event, V); + window._setEventHandlerFor(event, V); } }); } - - windowInstance._globalObject = windowInstance; } -function makeReplaceablePropertyDescriptor(property, window) { - const desc = { - set(value) { - Object.defineProperty(window, property, { - configurable: true, - enumerable: true, - writable: true, - value - }); - } - }; - - Object.defineProperty(desc.set, "name", { value: `set ${property}` }); - return desc; -} - -// NOTE: per https://heycam.github.io/webidl/#Global, all properties on the Window object must be own-properties. -// That is why we assign everything inside of the constructor, instead of using a shared prototype. -// You can verify this in e.g. Firefox or Internet Explorer, which do a good job with Web IDL compliance. -function Window(options) { - setupWindow(this, { runScripts: options.runScripts }); - +function installOwnProperties(window, options) { const windowInitialized = performance.now(); - const window = this; - // ### PRIVATE DATA PROPERTIES - this._resourceLoader = options.resourceLoader; - - // vm initialization is deferred until script processing is activated - this._globalProxy = this; - Object.defineProperty(idlUtils.implForWrapper(this), idlUtils.wrapperSymbol, { get: () => this._globalProxy }); + window._resourceLoader = options.resourceLoader; // List options explicitly to be clear which are passed through - this._document = documents.createWrapper(window, { + window._document = documents.createWrapper(window, { parsingMode: options.parsingMode, contentType: options.contentType, encoding: options.encoding, @@ -269,87 +292,82 @@ function Window(options) { lastModified: options.lastModified, referrer: options.referrer, parseOptions: options.parseOptions, - defaultView: this._globalProxy, - global: this, + defaultView: window._globalProxy, + global: window, parentOrigin: options.parentOrigin }, { alwaysUseDocumentClass: true }); - if (vm.isContext(window)) { - const documentImpl = idlUtils.implForWrapper(window._document); - documentImpl._defaultView = window._globalProxy = vm.runInContext("this", window); - } - - const documentOrigin = idlUtils.implForWrapper(this._document)._origin; - this._origin = documentOrigin; + const documentOrigin = idlUtils.implForWrapper(window._document)._origin; + window._origin = documentOrigin; // https://html.spec.whatwg.org/#session-history - this._sessionHistory = new SessionHistory({ - document: idlUtils.implForWrapper(this._document), - url: idlUtils.implForWrapper(this._document)._URL, + window._sessionHistory = new SessionHistory({ + document: idlUtils.implForWrapper(window._document), + url: idlUtils.implForWrapper(window._document)._URL, stateObject: null - }, this); + }, window); - this._virtualConsole = options.virtualConsole; + window._virtualConsole = options.virtualConsole; - this._runScripts = options.runScripts; + window._runScripts = options.runScripts; // Set up the window as if it's a top level window. // If it's not, then references will be corrected by frame/iframe code. - this._parent = this._top = this._globalProxy; - this._frameElement = null; + window._parent = window._top = window._globalProxy; + window._frameElement = null; // This implements window.frames.length, since window.frames returns a // self reference to the window object. This value is incremented in the // HTMLFrameElement implementation. - this._length = 0; + window._length = 0; // https://dom.spec.whatwg.org/#window-current-event - this._currentEvent = undefined; + window._currentEvent = undefined; - this._pretendToBeVisual = options.pretendToBeVisual; - this._storageQuota = options.storageQuota; + window._pretendToBeVisual = options.pretendToBeVisual; + window._storageQuota = options.storageQuota; // Some properties (such as localStorage and sessionStorage) share data // between windows in the same origin. This object is intended // to contain such data. if (options.commonForOrigin && options.commonForOrigin[documentOrigin]) { - this._commonForOrigin = options.commonForOrigin; + window._commonForOrigin = options.commonForOrigin; } else { - this._commonForOrigin = { + window._commonForOrigin = { [documentOrigin]: { localStorageArea: new Map(), sessionStorageArea: new Map(), - windowsInSameOrigin: [this] + windowsInSameOrigin: [window] } }; } - this._currentOriginData = this._commonForOrigin[documentOrigin]; + window._currentOriginData = window._commonForOrigin[documentOrigin]; // ### WEB STORAGE - this._localStorage = Storage.create(window, [], { - associatedWindow: this, - storageArea: this._currentOriginData.localStorageArea, + window._localStorage = Storage.create(window, [], { + associatedWindow: window, + storageArea: window._currentOriginData.localStorageArea, type: "localStorage", - url: this._document.documentURI, - storageQuota: this._storageQuota + url: window._document.documentURI, + storageQuota: window._storageQuota }); - this._sessionStorage = Storage.create(window, [], { - associatedWindow: this, - storageArea: this._currentOriginData.sessionStorageArea, + window._sessionStorage = Storage.create(window, [], { + associatedWindow: window, + storageArea: window._currentOriginData.sessionStorageArea, type: "sessionStorage", - url: this._document.documentURI, - storageQuota: this._storageQuota + url: window._document.documentURI, + storageQuota: window._storageQuota }); // ### SELECTION // https://w3c.github.io/selection-api/#dfn-selection - this._selection = Selection.createImpl(window); + window._selection = Selection.createImpl(window); // https://w3c.github.io/selection-api/#dom-window - this.getSelection = function () { + window.getSelection = function () { return window._selection; }; @@ -362,16 +380,16 @@ function Window(options) { const statusbar = BarProp.create(window); const toolbar = BarProp.create(window); const external = External.create(window); - const navigator = Navigator.create(window, [], { userAgent: this._resourceLoader._userAgent }); + const navigator = Navigator.create(window, [], { userAgent: window._resourceLoader._userAgent }); const performanceImpl = Performance.create(window, [], { timeOrigin: performance.timeOrigin + windowInitialized, nowAtTimeOrigin: windowInitialized }); const screen = Screen.create(window); const crypto = Crypto.create(window); - this._customElementRegistry = CustomElementRegistry.create(window); + window._customElementRegistry = CustomElementRegistry.create(window); - define(this, { + define(window, { get length() { return window._length; }, @@ -443,34 +461,34 @@ function Window(options) { return window._origin; }, get localStorage() { - if (idlUtils.implForWrapper(this._document)._origin === "null") { + if (idlUtils.implForWrapper(window._document)._origin === "null") { throw DOMException.create(window, [ "localStorage is not available for opaque origins", "SecurityError" ]); } - return this._localStorage; + return window._localStorage; }, get sessionStorage() { - if (idlUtils.implForWrapper(this._document)._origin === "null") { + if (idlUtils.implForWrapper(window._document)._origin === "null") { throw DOMException.create(window, [ "sessionStorage is not available for opaque origins", "SecurityError" ]); } - return this._sessionStorage; + return window._sessionStorage; }, get customElements() { - return this._customElementRegistry; + return window._customElementRegistry; }, get event() { return window._currentEvent ? idlUtils.wrapperForImpl(window._currentEvent) : undefined; } }); - Object.defineProperties(this, { + Object.defineProperties(window, { // [Replaceable]: self: makeReplaceablePropertyDescriptor("self", window), locationbar: makeReplaceablePropertyDescriptor("locationbar", window), @@ -495,8 +513,6 @@ function Window(options) { }); - namedPropertiesWindow.initializeWindow(this, this._globalProxy); - // ### METHODS // https://html.spec.whatwg.org/multipage/timers-and-user-prompts.html#timers @@ -506,7 +522,7 @@ function Window(options) { const listOfActiveTimers = new Map(); let latestTimerId = 0; - this.setTimeout = function (handler, timeout = 0, ...args) { + window.setTimeout = function (handler, timeout = 0, ...args) { if (typeof handler !== "function") { handler = webIDLConversions.DOMString(handler); } @@ -514,7 +530,7 @@ function Window(options) { return timerInitializationSteps(handler, timeout, args, { methodContext: window, repeat: false }); }; - this.setInterval = function (handler, timeout = 0, ...args) { + window.setInterval = function (handler, timeout = 0, ...args) { if (typeof handler !== "function") { handler = webIDLConversions.DOMString(handler); } @@ -523,7 +539,7 @@ function Window(options) { return timerInitializationSteps(handler, timeout, args, { methodContext: window, repeat: true }); }; - this.clearTimeout = function (handle = 0) { + window.clearTimeout = function (handle = 0) { handle = webIDLConversions.long(handle); const nodejsTimer = listOfActiveTimers.get(handle); @@ -532,12 +548,12 @@ function Window(options) { listOfActiveTimers.delete(handle); } }; - this.clearInterval = function (handle = 0) { + window.clearInterval = function (handle = 0) { handle = webIDLConversions.long(handle); const nodejsTimer = listOfActiveTimers.get(handle); if (nodejsTimer) { - // We use setTimeout() in timerInitializationSteps even for this.setInterval(). + // We use setTimeout() in timerInitializationSteps even for window.setInterval(). clearTimeout(nodejsTimer); listOfActiveTimers.delete(handle); } @@ -590,8 +606,8 @@ function Window(options) { // https://html.spec.whatwg.org/multipage/timers-and-user-prompts.html#microtask-queuing - this.queueMicrotask = function (callback) { - callback = IDLFunction.convert(this, callback); + window.queueMicrotask = function (callback) { + callback = IDLFunction.convert(window, callback); queueMicrotask(() => { try { @@ -612,9 +628,9 @@ function Window(options) { // requestAnimationFrame() calls outstanding, we don't fire the timer. This helps us track that. let numberOfOngoingAnimationFrameCallbacks = 0; - if (this._pretendToBeVisual) { - this.requestAnimationFrame = function (callback) { - callback = IDLFunction.convert(this, callback); + if (window._pretendToBeVisual) { + window.requestAnimationFrame = function (callback) { + callback = IDLFunction.convert(window, callback); const handle = ++animationFrameCallbackId; mapOfAnimationFrameCallbacks.set(handle, callback); @@ -629,7 +645,7 @@ function Window(options) { return handle; }; - this.cancelAnimationFrame = function (handle) { + window.cancelAnimationFrame = function (handle) { handle = webIDLConversions["unsigned long"](handle); removeAnimationFrameCallback(handle); @@ -703,7 +719,7 @@ function Window(options) { return option; } Object.defineProperty(Option, "prototype", { - value: this.HTMLOptionElement.prototype, + value: window.HTMLOptionElement.prototype, configurable: false, enumerable: false, writable: false @@ -729,7 +745,7 @@ function Window(options) { return img; } Object.defineProperty(Image, "prototype", { - value: this.HTMLImageElement.prototype, + value: window.HTMLImageElement.prototype, configurable: false, enumerable: false, writable: false @@ -753,7 +769,7 @@ function Window(options) { return audio; } Object.defineProperty(Audio, "prototype", { - value: this.HTMLAudioElement.prototype, + value: window.HTMLAudioElement.prototype, configurable: false, enumerable: false, writable: false @@ -765,9 +781,9 @@ function Window(options) { writable: true }); - this.postMessage = postMessage(window); + window.postMessage = postMessage(window); - this.atob = function (str) { + window.atob = function (str) { try { return atob(str); } catch { @@ -779,7 +795,7 @@ function Window(options) { } }; - this.btoa = function (str) { + window.btoa = function (str) { try { return btoa(str); } catch { @@ -791,46 +807,46 @@ function Window(options) { } }; - this.stop = function () { - const manager = idlUtils.implForWrapper(this._document)._requestManager; + window.stop = function () { + const manager = idlUtils.implForWrapper(window._document)._requestManager; if (manager) { manager.close(); } }; - this.close = function () { + window.close = function () { // Recursively close child frame windows, then ourselves (depth-first). - for (let i = 0; i < this.length; ++i) { - this[i].close(); + for (let i = 0; i < window.length; ++i) { + window[i].close(); } // Clear out all listeners. Any in-flight or upcoming events should not get delivered. - idlUtils.implForWrapper(this)._eventListeners = Object.create(null); + idlUtils.implForWrapper(window)._eventListeners = Object.create(null); - if (this._document) { - if (this._document.body) { - this._document.body.innerHTML = ""; + if (window._document) { + if (window._document.body) { + window._document.body.innerHTML = ""; } - if (this._document.close) { + if (window._document.close) { // It's especially important to clear out the listeners here because document.close() causes a "load" event to // fire. - idlUtils.implForWrapper(this._document)._eventListeners = Object.create(null); - this._document.close(); + idlUtils.implForWrapper(window._document)._eventListeners = Object.create(null); + window._document.close(); } - const doc = idlUtils.implForWrapper(this._document); + const doc = idlUtils.implForWrapper(window._document); if (doc._requestManager) { doc._requestManager.close(); } - delete this._document; + delete window._document; } stopAllTimers(); - WebSocketImpl.cleanUpWindow(this); + WebSocketImpl.cleanUpWindow(window); }; - this.getComputedStyle = function (elt, pseudoElt = undefined) { - elt = Element.convert(this, elt); + window.getComputedStyle = function (elt, pseudoElt = undefined) { + elt = Element.convert(window, elt); if (pseudoElt !== undefined && pseudoElt !== null) { pseudoElt = webIDLConversions.DOMString(pseudoElt); } @@ -842,7 +858,7 @@ function Window(options) { throw new TypeError("Tried to get the computed style of a Shadow DOM pseudo-element."); } - notImplemented("window.getComputedStyle(elt, pseudoElt)", this); + notImplemented("window.getComputedStyle(elt, pseudoElt)", window); } const declaration = new CSSStyleDeclaration(); @@ -866,14 +882,14 @@ function Window(options) { return declaration; }; - this.getSelection = function () { + window.getSelection = function () { return window._document.getSelection(); }; // The captureEvents() and releaseEvents() methods must do nothing - this.captureEvents = function () {}; + window.captureEvents = function () {}; - this.releaseEvents = function () {}; + window.releaseEvents = function () {}; // ### PUBLIC DATA PROPERTIES (TODO: should be getters) @@ -883,7 +899,7 @@ function Window(options) { }; } - this.console = { + window.console = { assert: wrapConsoleMethod("assert"), clear: wrapConsoleMethod("clear"), count: wrapConsoleMethod("count"), @@ -911,7 +927,7 @@ function Window(options) { }; } - define(this, { + define(window, { name: "", status: "", devicePixelRatio: 1, @@ -943,37 +959,20 @@ function Window(options) { scrollBy: notImplementedMethod("window.scrollBy"), scrollTo: notImplementedMethod("window.scrollTo") }); +} - // ### INITIALIZATION - - process.nextTick(() => { - if (!window.document) { - return; // window might've been closed already - } - - if (window.document.readyState === "complete") { - fireAnEvent("load", window, undefined, {}, true); - } else { - window.document.addEventListener("load", () => { - fireAnEvent("load", window, undefined, {}, true); - if (!window._document) { - return; // window might've been closed already - } - - const documentImpl = idlUtils.implForWrapper(window._document); - if (!documentImpl._pageShowingFlag) { - documentImpl._pageShowingFlag = true; - fireAPageTransitionEvent("pageshow", window, false); - } +function makeReplaceablePropertyDescriptor(property, window) { + const desc = { + set(value) { + Object.defineProperty(window, property, { + configurable: true, + enumerable: true, + writable: true, + value }); } - }); -} - -function contextifyWindow(window) { - if (vm.isContext(window)) { - return; - } + }; - vm.createContext(window); + Object.defineProperty(desc.set, "name", { value: `set ${property}` }); + return desc; } diff --git a/test/web-platform-tests/to-run.yaml b/test/web-platform-tests/to-run.yaml index ef0c43993..b8011bc0e 100644 --- a/test/web-platform-tests/to-run.yaml +++ b/test/web-platform-tests/to-run.yaml @@ -810,7 +810,6 @@ window-properties.https.html: "Window attribute: status": [fail, Incorrectly implemented as a data property] "Window method: createImageBitmap": [fail, Not implemented] "Window method: matchMedia": [fail, Not implemented] - "Window readonly attribute: applicationCache": [fail, Not implemented] "Window replaceable attribute: devicePixelRatio": [fail, Incorrectly implemented as a data property] "Window replaceable attribute: innerHeight": [fail, Incorrectly implemented as a data property] "Window replaceable attribute: innerWidth": [fail, Incorrectly implemented as a data property] From c3a9aedca3d3bd66bb65d0df191e754fe195df12 Mon Sep 17 00:00:00 2001 From: Domenic Denicola Date: Sun, 25 Aug 2024 16:47:39 +0900 Subject: [PATCH 06/11] Remove upstreamed WPTs These landed upstream in https://github.com/web-platform-tests/wpt/commit/c06e95934369f1e68abd23734da689d0a8a62bd9. --- .../connected-callbacks-template.html | 33 ------------------ .../overwritten-customElements-global.html | 34 ------------------- 2 files changed, 67 deletions(-) delete mode 100644 test/web-platform-tests/to-upstream/custom-elements/connected-callbacks-template.html delete mode 100644 test/web-platform-tests/to-upstream/custom-elements/overwritten-customElements-global.html diff --git a/test/web-platform-tests/to-upstream/custom-elements/connected-callbacks-template.html b/test/web-platform-tests/to-upstream/custom-elements/connected-callbacks-template.html deleted file mode 100644 index ed404332d..000000000 --- a/test/web-platform-tests/to-upstream/custom-elements/connected-callbacks-template.html +++ /dev/null @@ -1,33 +0,0 @@ - - - - - - - - diff --git a/test/web-platform-tests/to-upstream/custom-elements/overwritten-customElements-global.html b/test/web-platform-tests/to-upstream/custom-elements/overwritten-customElements-global.html deleted file mode 100644 index bb5ec8f91..000000000 --- a/test/web-platform-tests/to-upstream/custom-elements/overwritten-customElements-global.html +++ /dev/null @@ -1,34 +0,0 @@ - - - - - - - From a241df63ff8f8df4287cd6b53282f3391a86580d Mon Sep 17 00:00:00 2001 From: Domenic Denicola Date: Sun, 25 Aug 2024 18:33:05 +0900 Subject: [PATCH 07/11] Version 24.1.2 --- AUTHORS.txt | 1 + Changelog.md | 5 +++++ package-lock.json | 2 +- package.json | 7 +++++-- 4 files changed, 12 insertions(+), 3 deletions(-) diff --git a/AUTHORS.txt b/AUTHORS.txt index 023c6c4d9..0550df636 100644 --- a/AUTHORS.txt +++ b/AUTHORS.txt @@ -48,6 +48,7 @@ Brian McDaniel Brian Peacock Carlos Serrano Chad Walker +Chengzhong Wu Chris Buckley Chris Carpita Chris Hughes diff --git a/Changelog.md b/Changelog.md index 7234b5ba0..fdee547b8 100644 --- a/Changelog.md +++ b/Changelog.md @@ -26,6 +26,11 @@ Other guidelines: * Roughly order changes within those groupings by impact. --> +## 24.1.2 + +* Fixed an issue with the `in` operator applied to `EventTarget` methods, e.g. `'addEventListener' in window`, which only appeared in Node.js ≥22.5.0. (legendecas) +* Fixed the events fired by `blur()`: it no longer fires `focus` and `focusin` on the `Document`, and `blur` and `focusout` no longer have their `relatedTarget` property set. (asamuzaK) + ## 24.1.1 * Fixed selection methods to trigger the `selectionchange` event on the `Document` object. (piotr-oles) diff --git a/package-lock.json b/package-lock.json index 072e7920e..2ac9fcf6a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "jsdom", - "version": "24.1.1", + "version": "24.1.2", "lockfileVersion": 3, "requires": true, "packages": { diff --git a/package.json b/package.json index bbe66b031..100186a98 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "jsdom", - "version": "24.1.1", + "version": "24.1.2", "description": "A JavaScript implementation of many web standards", "keywords": [ "dom", @@ -18,7 +18,10 @@ "Pierre-Marie Dartus " ], "license": "MIT", - "repository": "jsdom/jsdom", + "repository": { + "type": "git", + "url": "git+https://github.com/jsdom/jsdom.git" + }, "dependencies": { "cssstyle": "^4.0.1", "data-urls": "^5.0.0", From 46d5d5c946dcfe783e35ece849be91f8f6bd7390 Mon Sep 17 00:00:00 2001 From: Domenic Denicola Date: Sun, 25 Aug 2024 18:51:40 +0900 Subject: [PATCH 08/11] Fix postMessage referenced as a bare property Closes #3755. Also inlines it into Window.js since that's the general pattern for the mess of global functions we currently have. --- lib/jsdom/browser/Window.js | 40 ++++++++++++++++++- lib/jsdom/living/post-message.js | 39 ------------------ lib/jsdom/utils.js | 9 ----- test/helper-unit-tests/utils.js | 22 ---------- test/index.js | 1 - .../webmessaging/global-postMessage.html | 17 ++++++++ 6 files changed, 55 insertions(+), 73 deletions(-) delete mode 100644 lib/jsdom/living/post-message.js delete mode 100644 test/helper-unit-tests/utils.js create mode 100644 test/web-platform-tests/to-upstream/webmessaging/global-postMessage.html diff --git a/lib/jsdom/browser/Window.js b/lib/jsdom/browser/Window.js index b42c2d4d7..632c40a90 100644 --- a/lib/jsdom/browser/Window.js +++ b/lib/jsdom/browser/Window.js @@ -2,6 +2,7 @@ const vm = require("vm"); const webIDLConversions = require("webidl-conversions"); const { CSSStyleDeclaration } = require("cssstyle"); +const whatwgURL = require("whatwg-url"); const notImplemented = require("./not-implemented"); const { installInterfaces } = require("../living/interfaces"); const { define, mixin } = require("../utils"); @@ -13,7 +14,6 @@ const OnBeforeUnloadEventHandlerNonNull = require("../living/generated/OnBeforeU const OnErrorEventHandlerNonNull = require("../living/generated/OnErrorEventHandlerNonNull"); const { fireAPageTransitionEvent } = require("../living/helpers/page-transition-event"); const namedPropertiesWindow = require("../living/named-properties-window"); -const postMessage = require("../living/post-message"); const DOMException = require("../living/generated/DOMException"); const idlUtils = require("../living/generated/utils"); const WebSocketImpl = require("../living/websockets/WebSocket-impl").implementation; @@ -33,6 +33,7 @@ const SessionHistory = require("../living/window/SessionHistory"); const { getDeclarationForElement, getResolvedValue, propertiesWithResolvedValueImplemented, SHADOW_DOM_PSEUDO_REGEXP } = require("../living/helpers/style-rules.js"); const CustomElementRegistry = require("../living/generated/CustomElementRegistry"); +const MessageEvent = require("../living/generated/MessageEvent"); const jsGlobals = require("./js-globals.json"); const GlobalEventHandlersImpl = require("../living/nodes/GlobalEventHandlers-impl").implementation; @@ -781,7 +782,42 @@ function installOwnProperties(window, options) { writable: true }); - window.postMessage = postMessage(window); + window.postMessage = function (message, targetOrigin) { + if (arguments.length < 2) { + throw new TypeError("'postMessage' requires 2 arguments: 'message' and 'targetOrigin'"); + } + + targetOrigin = webIDLConversions.DOMString(targetOrigin); + + if (targetOrigin === "/") { + // TODO: targetOrigin === "/" requires getting incumbent settings object. + // Maybe could be done with Error stack traces?? + return; + } else if (targetOrigin !== "*") { + const parsedURL = whatwgURL.parseURL(targetOrigin); + if (parsedURL === null) { + throw DOMException.create(window, [ + "Failed to execute 'postMessage' on 'Window': " + + "Invalid target origin '" + targetOrigin + "' in a call to 'postMessage'.", + "SyntaxError" + ]); + } + targetOrigin = whatwgURL.serializeURLOrigin(parsedURL); + + if (targetOrigin !== idlUtils.implForWrapper(window._document)._origin) { + // Not implemented. + return; + } + } + + // TODO: event.source - requires reference to incumbent window + // TODO: event.origin - requires reference to incumbent window + // TODO: event.ports + // TODO: event.data - requires structured cloning + setTimeout(() => { + fireAnEvent("message", window, MessageEvent, { data: message }); + }, 0); + }; window.atob = function (str) { try { diff --git a/lib/jsdom/living/post-message.js b/lib/jsdom/living/post-message.js deleted file mode 100644 index 5e66e13d3..000000000 --- a/lib/jsdom/living/post-message.js +++ /dev/null @@ -1,39 +0,0 @@ -"use strict"; -const DOMException = require("./generated/DOMException"); -const MessageEvent = require("./generated/MessageEvent"); -const idlUtils = require("./generated/utils"); -const { isValidTargetOrigin } = require("../utils"); -const { fireAnEvent } = require("./helpers/events"); - -module.exports = function (globalObject) { - return function (message, targetOrigin) { - if (arguments.length < 2) { - throw new TypeError("'postMessage' requires 2 arguments: 'message' and 'targetOrigin'"); - } - - targetOrigin = String(targetOrigin); - - if (!isValidTargetOrigin(targetOrigin)) { - // TODO: Fix me - throw DOMException.create(globalObject, [ - "Failed to execute 'postMessage' on 'Window': " + - "Invalid target origin '" + targetOrigin + "' in a call to 'postMessage'.", - "SyntaxError" - ]); - } - - // TODO: targetOrigin === '/' - requires reference to source window - // See https://github.com/jsdom/jsdom/pull/1140#issuecomment-111587499 - if (targetOrigin !== "*" && targetOrigin !== idlUtils.implForWrapper(globalObject._document)._origin) { - return; - } - - // TODO: event.source - requires reference to source window - // TODO: event.origin - requires reference to source window - // TODO: event.ports - // TODO: event.data - structured clone message - requires cloning DOM nodes - setTimeout(() => { - fireAnEvent("message", this, MessageEvent, { data: message }); - }, 0); - }; -}; diff --git a/lib/jsdom/utils.js b/lib/jsdom/utils.js index bf7179926..43537ce8c 100644 --- a/lib/jsdom/utils.js +++ b/lib/jsdom/utils.js @@ -1,5 +1,4 @@ "use strict"; -const whatwgURL = require("whatwg-url"); const { domSymbolTree } = require("./living/helpers/internal-constants"); const SYMBOL_TREE_POSITION = require("symbol-tree").TreePosition; @@ -68,14 +67,6 @@ exports.memoizeQuery = function memoizeQuery(fn) { }; }; -function isValidAbsoluteURL(str) { - return whatwgURL.parseURL(str) !== null; -} - -exports.isValidTargetOrigin = function (str) { - return str === "*" || str === "/" || isValidAbsoluteURL(str); -}; - exports.simultaneousIterators = function* (first, second) { for (;;) { const firstResult = first.next(); diff --git a/test/helper-unit-tests/utils.js b/test/helper-unit-tests/utils.js deleted file mode 100644 index c21993ccd..000000000 --- a/test/helper-unit-tests/utils.js +++ /dev/null @@ -1,22 +0,0 @@ -"use strict"; -const assert = require("node:assert/strict"); -const { describe, specify } = require("mocha-sugar-free"); - -const utils = require("../../lib/jsdom/utils.js"); - -describe("Helpers: utils.js", () => { - specify("isValidTargetOrigin properly validates target origin", () => { - assert.equal(utils.isValidTargetOrigin("*"), true); - assert.equal(utils.isValidTargetOrigin("/"), true); - assert.equal(utils.isValidTargetOrigin("https://www.google.com/"), true); - assert.equal(utils.isValidTargetOrigin("https://www.google.com"), true); - assert.equal(utils.isValidTargetOrigin("http://www.google.com/"), true); - assert.equal(utils.isValidTargetOrigin("http://www.google.com"), true); - - assert.equal(utils.isValidTargetOrigin("www.google.com/"), false); - assert.equal(utils.isValidTargetOrigin("www.google.com"), false); - assert.equal(utils.isValidTargetOrigin("google.com"), false); - assert.equal(utils.isValidTargetOrigin("google"), false); - assert.equal(utils.isValidTargetOrigin("?"), false); - }); -}); diff --git a/test/index.js b/test/index.js index d40ff82c3..40db9e788 100644 --- a/test/index.js +++ b/test/index.js @@ -17,7 +17,6 @@ require("./api/resources.js"); require("./api/virtual-console.js"); require("./helper-unit-tests/named-properties-tracker.js"); -require("./helper-unit-tests/utils.js"); require("./to-port-to-wpts/class-list.js"); require("./to-port-to-wpts/current-script.js"); diff --git a/test/web-platform-tests/to-upstream/webmessaging/global-postMessage.html b/test/web-platform-tests/to-upstream/webmessaging/global-postMessage.html new file mode 100644 index 000000000..68b972053 --- /dev/null +++ b/test/web-platform-tests/to-upstream/webmessaging/global-postMessage.html @@ -0,0 +1,17 @@ + + +Using the global postMessage() to post a message to oneself + + + + + From 0314f1e42e2fa2735a0f5eb001fe3169a9a25595 Mon Sep 17 00:00:00 2001 From: Domenic Denicola Date: Sun, 25 Aug 2024 19:46:41 +0900 Subject: [PATCH 09/11] Version 24.1.3 --- Changelog.md | 4 ++++ package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/Changelog.md b/Changelog.md index fdee547b8..e50944a89 100644 --- a/Changelog.md +++ b/Changelog.md @@ -26,6 +26,10 @@ Other guidelines: * Roughly order changes within those groupings by impact. --> +## 24.1.3 + +* Fixed calls to `postMessage()` that were done as a bare property (i.e., `postMessage()` instead of `window.postMessage()`). + ## 24.1.2 * Fixed an issue with the `in` operator applied to `EventTarget` methods, e.g. `'addEventListener' in window`, which only appeared in Node.js ≥22.5.0. (legendecas) diff --git a/package-lock.json b/package-lock.json index 2ac9fcf6a..69c7dca7b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "jsdom", - "version": "24.1.2", + "version": "24.1.3", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "jsdom", - "version": "24.1.1", + "version": "24.1.3", "license": "MIT", "dependencies": { "cssstyle": "^4.0.1", diff --git a/package.json b/package.json index 100186a98..543c27446 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "jsdom", - "version": "24.1.2", + "version": "24.1.3", "description": "A JavaScript implementation of many web standards", "keywords": [ "dom", From 784c8a5689372b678525b1be394e4a02e99f647c Mon Sep 17 00:00:00 2001 From: Domenic Denicola Date: Sun, 25 Aug 2024 18:05:56 +0900 Subject: [PATCH 10/11] Set EventTarget.prototype to the jsdom's Object.prototype Previously it was set to the Node.js outer realm's Object.prototype. --- lib/jsdom/browser/Window.js | 4 +--- test/web-platform-tests/to-run.yaml | 2 -- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/lib/jsdom/browser/Window.js b/lib/jsdom/browser/Window.js index 632c40a90..52d011cae 100644 --- a/lib/jsdom/browser/Window.js +++ b/lib/jsdom/browser/Window.js @@ -172,9 +172,7 @@ exports.createWindow = options => { Object.setPrototypeOf(window, windowPrototype); if (makeVMContext) { Object.setPrototypeOf(window._globalProxy, windowPrototype); - - // TODO next major version: include this. - // Object.setPrototypeOf(window.EventTarget.prototype, window.Object.prototype); + Object.setPrototypeOf(window.EventTarget.prototype, window.Object.prototype); } // Now that the prototype chain is fully set up, call the superclass setup. diff --git a/test/web-platform-tests/to-run.yaml b/test/web-platform-tests/to-run.yaml index b8011bc0e..77fc47703 100644 --- a/test/web-platform-tests/to-run.yaml +++ b/test/web-platform-tests/to-run.yaml @@ -824,8 +824,6 @@ window-properties.https.html: "Window replaceable attribute: scrollX": [fail, Incorrectly implemented as a data property] "Window replaceable attribute: scrollY": [fail, Incorrectly implemented as a data property] "constructor": [fail-lt-node22, Incorrectly implemented VM global prototype properties] -window-prototype-chain.html: - "Object.prototype": [fail, Tests Object.prototype which jsdom has trouble with due to VM globals] window-reuse-in-nested-browsing-contexts.tentative.html: "synchronously navigate iframe with no initial src.": [fail, Unknown] "after the first iframe load event, navigate iframe with no initial src.": [fail, Unknown] From c53efc81e75f38a0558fbf3ed75d30b78b4c4898 Mon Sep 17 00:00:00 2001 From: Domenic Denicola Date: Sun, 25 Aug 2024 19:52:11 +0900 Subject: [PATCH 11/11] Version 25.0.0 --- Changelog.md | 8 ++++++++ package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/Changelog.md b/Changelog.md index e50944a89..9ab7df641 100644 --- a/Changelog.md +++ b/Changelog.md @@ -26,6 +26,14 @@ Other guidelines: * Roughly order changes within those groupings by impact. --> +## 25.0.0 + +This major release changes the prototype of a jsdom's `EventTarget.prototype` to point to the `Object.prototype` inside the jsdom, instead of pointing to the Node.js `Object.prototype`. Thus, the prototype chain of `Window` stays entirely within the jsdom, never crossing over into the Node.js realm. + +This only occurs when `runScripts` is set to non-default values of `"dangerously"` or `"outside-only"`, as with the default value, there is no separate `Object.prototype` inside the jsdom. + +This will likely not impact many programs, but could cause some changes in `instanceof` behavior, and so out of an abundance of caution, we're releasing it as a new major version. + ## 24.1.3 * Fixed calls to `postMessage()` that were done as a bare property (i.e., `postMessage()` instead of `window.postMessage()`). diff --git a/package-lock.json b/package-lock.json index 69c7dca7b..115ee01b0 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "jsdom", - "version": "24.1.3", + "version": "25.0.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "jsdom", - "version": "24.1.3", + "version": "25.0.0", "license": "MIT", "dependencies": { "cssstyle": "^4.0.1", diff --git a/package.json b/package.json index 543c27446..2cefa8466 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "jsdom", - "version": "24.1.3", + "version": "25.0.0", "description": "A JavaScript implementation of many web standards", "keywords": [ "dom",